DICOM (Digital Imaging and Communications in Medicine), AKA NEMA PS3, AKA ISO 12052:2006, is a file format and network protocol standard for medical imaging purposes. This parser covers file format, typically written by various medical equipment, such as radiography, computer tomography scans, MRT, ultrasonography, etc.
DICOM defines two transfer syntaxes: implicit and explicit. This
top-level parser attempts to autodetect and handle both of them. If
any problems arise, one can use file_explicit
and file_implicit
subtypes to force parsing in particular transfer syntax.
This page hosts a formal specification of Digital Imaging and Communications in Medicine (DICOM) file format using Kaitai Struct. This specification can be automatically translated into a variety of programming languages to get a parsing library.
// This is a generated file! Please edit source .ksy file and use kaitai-struct-compiler to rebuild
#![allow(unused_imports)]
#![allow(non_snake_case)]
#![allow(non_camel_case_types)]
#![allow(irrefutable_let_patterns)]
#![allow(unused_comparisons)]
extern crate kaitai;
use kaitai::*;
use std::convert::{TryFrom, TryInto};
use std::cell::{Ref, Cell, RefCell};
use std::rc::{Rc, Weak};
/**
* DICOM (Digital Imaging and Communications in Medicine), AKA NEMA
* PS3, AKA ISO 12052:2006, is a file format and network protocol
* standard for medical imaging purposes. This parser covers file
* format, typically written by various medical equipment, such as
* radiography, computer tomography scans, MRT, ultrasonography, etc.
*
* DICOM defines two transfer syntaxes: implicit and explicit. This
* top-level parser attempts to autodetect and handle both of them. If
* any problems arise, one can use `file_explicit` and `file_implicit`
* subtypes to force parsing in particular transfer syntax.
* \sa https://dicom.nema.org/medical/dicom/current/output/html/part10.html#chapter_7 Source
*/
#[derive(Default, Debug, Clone)]
pub struct Dicom {
pub _root: SharedType<Dicom>,
pub _parent: SharedType<Dicom>,
pub _self: SharedType<Self>,
file_header: RefCell<OptRc<Dicom_TFileHeader>>,
elements: RefCell<Vec<OptRc<Dicom_TDataElementImplicit>>>,
_io: RefCell<BytesReader>,
}
impl KStruct for Dicom {
type Root = Dicom;
type Parent = Dicom;
fn read<S: KStream>(
self_rc: &OptRc<Self>,
_io: &S,
_root: SharedType<Self::Root>,
_parent: SharedType<Self::Parent>,
) -> KResult<()> {
*self_rc._io.borrow_mut() = _io.clone();
self_rc._root.set(_root.get());
self_rc._parent.set(_parent.get());
self_rc._self.set(Ok(self_rc.clone()));
let _rrc = self_rc._root.get_value().borrow().upgrade();
let _prc = self_rc._parent.get_value().borrow().upgrade();
let _r = _rrc.as_ref().unwrap();
let t = Self::read_into::<_, Dicom_TFileHeader>(&*_io, Some(self_rc._root.clone()), Some(self_rc._self.clone()))?.into();
*self_rc.file_header.borrow_mut() = t;
*self_rc.elements.borrow_mut() = Vec::new();
{
let mut _i = 0;
while !_io.is_eof() {
let t = Self::read_into::<_, Dicom_TDataElementImplicit>(&*_io, Some(self_rc._root.clone()), None)?.into();
self_rc.elements.borrow_mut().push(t);
_i += 1;
}
}
Ok(())
}
}
impl Dicom {
}
impl Dicom {
pub fn file_header(&self) -> Ref<'_, OptRc<Dicom_TFileHeader>> {
self.file_header.borrow()
}
}
impl Dicom {
pub fn elements(&self) -> Ref<'_, Vec<OptRc<Dicom_TDataElementImplicit>>> {
self.elements.borrow()
}
}
impl Dicom {
pub fn _io(&self) -> Ref<'_, BytesReader> {
self._io.borrow()
}
}
#[derive(Debug, PartialEq, Clone)]
pub enum Dicom_Tags {
FileMetaInformationGroupLength,
FileMetaInformationVersion,
MediaStorageSopClassUid,
MediaStorageSopInstanceUid,
TransferSyntaxUid,
ImplementationClassUid,
ImplementationVersionName,
SourceApplicationEntityTitle,
SendingApplicationEntityTitle,
ReceivingApplicationEntityTitle,
PrivateInformationCreatorUid,
PrivateInformation,
FileSetId,
FileSetDescriptorFileId,
SpecificCharacterSetOfFileSetDescriptorFile,
OffsetOfTheFirstDirectoryRecordOfTheRootDirectoryEntity,
OffsetOfTheLastDirectoryRecordOfTheRootDirectoryEntity,
FileSetConsistencyFlag,
DirectoryRecordSequence,
OffsetOfTheNextDirectoryRecord,
RecordInUseFlag,
OffsetOfReferencedLowerLevelDirectoryEntity,
DirectoryRecordType,
PrivateRecordUid,
ReferencedFileId,
MrdrDirectoryRecordOffset,
ReferencedSopClassUidInFile,
ReferencedSopInstanceUidInFile,
ReferencedTransferSyntaxUidInFile,
ReferencedRelatedGeneralSopClassUidInFile,
NumberOfReferences,
LengthToEnd,
SpecificCharacterSet,
LanguageCodeSequence,
ImageType,
RecognitionCode,
InstanceCreationDate,
InstanceCreationTime,
InstanceCreatorUid,
InstanceCoercionDatetime,
SopClassUid,
SopInstanceUid,
RelatedGeneralSopClassUid,
OriginalSpecializedSopClassUid,
StudyDate,
SeriesDate,
AcquisitionDate,
ContentDate,
OverlayDate,
CurveDate,
AcquisitionDatetime,
StudyTime,
SeriesTime,
AcquisitionTime,
ContentTime,
OverlayTime,
CurveTime,
DataSetType,
DataSetSubtype,
NuclearMedicineSeriesType,
AccessionNumber,
IssuerOfAccessionNumberSequence,
QueryRetrieveLevel,
QueryRetrieveView,
RetrieveAeTitle,
StationAeTitle,
InstanceAvailability,
FailedSopInstanceUidList,
Modality,
ModalitiesInStudy,
SopClassesInStudy,
ConversionType,
PresentationIntentType,
Manufacturer,
InstitutionName,
InstitutionAddress,
InstitutionCodeSequence,
ReferringPhysicianSName,
ReferringPhysicianSAddress,
ReferringPhysicianSTelephoneNumbers,
ReferringPhysicianIdentificationSequence,
ConsultingPhysicianSName,
ConsultingPhysicianIdentificationSequence,
CodeValue,
ExtendedCodeValue,
CodingSchemeDesignator,
CodingSchemeVersion,
CodeMeaning,
MappingResource,
ContextGroupVersion,
ContextGroupLocalVersion,
ExtendedCodeMeaning,
ContextGroupExtensionFlag,
CodingSchemeUid,
ContextGroupExtensionCreatorUid,
ContextIdentifier,
CodingSchemeIdentificationSequence,
CodingSchemeRegistry,
CodingSchemeExternalId,
CodingSchemeName,
CodingSchemeResponsibleOrganization,
ContextUid,
MappingResourceUid,
LongCodeValue,
UrnCodeValue,
EquivalentCodeSequence,
MappingResourceName,
ContextGroupIdentificationSequence,
MappingResourceIdentificationSequence,
TimezoneOffsetFromUtc,
PrivateDataElementCharacteristicsSequence,
PrivateGroupReference,
PrivateCreatorReference,
BlockIdentifyingInformationStatus,
NonidentifyingPrivateElements,
DeidentificationActionSequence,
IdentifyingPrivateElements,
DeidentificationAction,
NetworkId,
StationName,
StudyDescription,
ProcedureCodeSequence,
SeriesDescription,
SeriesDescriptionCodeSequence,
InstitutionalDepartmentName,
PhysicianSOfRecord,
PhysicianSOfRecordIdentificationSequence,
PerformingPhysicianSName,
PerformingPhysicianIdentificationSequence,
NameOfPhysicianSReadingStudy,
PhysicianSReadingStudyIdentificationSequence,
OperatorsName,
OperatorIdentificationSequence,
AdmittingDiagnosesDescription,
AdmittingDiagnosesCodeSequence,
ManufacturerSModelName,
ReferencedResultsSequence,
ReferencedStudySequence,
ReferencedPerformedProcedureStepSequence,
ReferencedSeriesSequence,
ReferencedPatientSequence,
ReferencedVisitSequence,
ReferencedOverlaySequence,
ReferencedStereometricInstanceSequence,
ReferencedWaveformSequence,
ReferencedImageSequence,
ReferencedCurveSequence,
ReferencedInstanceSequence,
ReferencedRealWorldValueMappingInstanceSequence,
ReferencedSopClassUid,
ReferencedSopInstanceUid,
SopClassesSupported,
ReferencedFrameNumber,
SimpleFrameList,
CalculatedFrameList,
TimeRange,
FrameExtractionSequence,
MultiFrameSourceSopInstanceUid,
RetrieveUrl,
TransactionUid,
WarningReason,
FailureReason,
FailedSopSequence,
ReferencedSopSequence,
OtherFailuresSequence,
StudiesContainingOtherReferencedInstancesSequence,
RelatedSeriesSequence,
LossyImageCompressionRetired,
DerivationDescription,
SourceImageSequence,
StageName,
StageNumber,
NumberOfStages,
ViewName,
ViewNumber,
NumberOfEventTimers,
NumberOfViewsInStage,
EventElapsedTimeS,
EventTimerNameS,
EventTimerSequence,
EventTimeOffset,
EventCodeSequence,
StartTrim,
StopTrim,
RecommendedDisplayFrameRate,
TransducerPosition,
TransducerOrientation,
AnatomicStructure,
AnatomicRegionSequence,
AnatomicRegionModifierSequence,
PrimaryAnatomicStructureSequence,
AnatomicStructureSpaceOrRegionSequence,
PrimaryAnatomicStructureModifierSequence,
TransducerPositionSequence,
TransducerPositionModifierSequence,
TransducerOrientationSequence,
TransducerOrientationModifierSequence,
AnatomicStructureSpaceOrRegionCodeSequenceTrial,
AnatomicPortalOfEntranceCodeSequenceTrial,
AnatomicApproachDirectionCodeSequenceTrial,
AnatomicPerspectiveDescriptionTrial,
AnatomicPerspectiveCodeSequenceTrial,
AnatomicLocationOfExaminingInstrumentDescriptionTrial,
AnatomicLocationOfExaminingInstrumentCodeSequenceTrial,
AnatomicStructureSpaceOrRegionModifierCodeSequenceTrial,
OnAxisBackgroundAnatomicStructureCodeSequenceTrial,
AlternateRepresentationSequence,
IrradiationEventUid,
SourceIrradiationEventSequence,
RadiopharmaceuticalAdministrationEventUid,
IdentifyingComments,
FrameType,
ReferencedImageEvidenceSequence,
ReferencedRawDataSequence,
CreatorVersionUid,
DerivationImageSequence,
SourceImageEvidenceSequence,
PixelPresentation,
VolumetricProperties,
VolumeBasedCalculationTechnique,
ComplexImageComponent,
AcquisitionContrast,
DerivationCodeSequence,
ReferencedPresentationStateSequence,
ReferencedOtherPlaneSequence,
FrameDisplaySequence,
RecommendedDisplayFrameRateInFloat,
SkipFrameRangeFlag,
PatientSName,
PatientId,
IssuerOfPatientId,
TypeOfPatientId,
IssuerOfPatientIdQualifiersSequence,
SourcePatientGroupIdentificationSequence,
GroupOfPatientsIdentificationSequence,
SubjectRelativePositionInImage,
PatientSBirthDate,
PatientSBirthTime,
PatientSBirthDateInAlternativeCalendar,
PatientSDeathDateInAlternativeCalendar,
PatientSAlternativeCalendar,
PatientSSex,
PatientSInsurancePlanCodeSequence,
PatientSPrimaryLanguageCodeSequence,
PatientSPrimaryLanguageModifierCodeSequence,
QualityControlSubject,
QualityControlSubjectTypeCodeSequence,
StrainDescription,
StrainNomenclature,
StrainStockNumber,
StrainSourceRegistryCodeSequence,
StrainStockSequence,
StrainSource,
StrainAdditionalInformation,
StrainCodeSequence,
OtherPatientIds,
OtherPatientNames,
OtherPatientIdsSequence,
PatientSBirthName,
PatientSAge,
PatientSSize,
PatientSSizeCodeSequence,
PatientSWeight,
PatientSAddress,
InsurancePlanIdentification,
PatientSMotherSBirthName,
MilitaryRank,
BranchOfService,
MedicalRecordLocator,
ReferencedPatientPhotoSequence,
MedicalAlerts,
Allergies,
CountryOfResidence,
RegionOfResidence,
PatientSTelephoneNumbers,
PatientSTelecomInformation,
EthnicGroup,
Occupation,
SmokingStatus,
AdditionalPatientHistory,
PregnancyStatus,
LastMenstrualDate,
PatientSReligiousPreference,
PatientSpeciesDescription,
PatientSpeciesCodeSequence,
PatientSSexNeutered,
AnatomicalOrientationType,
PatientBreedDescription,
PatientBreedCodeSequence,
BreedRegistrationSequence,
BreedRegistrationNumber,
BreedRegistryCodeSequence,
ResponsiblePerson,
ResponsiblePersonRole,
ResponsibleOrganization,
PatientComments,
ExaminedBodyThickness,
ClinicalTrialSponsorName,
ClinicalTrialProtocolId,
ClinicalTrialProtocolName,
ClinicalTrialSiteId,
ClinicalTrialSiteName,
ClinicalTrialSubjectId,
ClinicalTrialSubjectReadingId,
ClinicalTrialTimePointId,
ClinicalTrialTimePointDescription,
ClinicalTrialCoordinatingCenterName,
PatientIdentityRemoved,
DeIdentificationMethod,
DeIdentificationMethodCodeSequence,
ClinicalTrialSeriesId,
ClinicalTrialSeriesDescription,
ClinicalTrialProtocolEthicsCommitteeName,
ClinicalTrialProtocolEthicsCommitteeApprovalNumber,
ConsentForClinicalTrialUseSequence,
DistributionType,
ConsentForDistributionFlag,
CadFileFormat,
ComponentReferenceSystem,
ComponentManufacturingProcedure,
ComponentManufacturer,
MaterialThickness,
MaterialPipeDiameter,
MaterialIsolationDiameter,
MaterialGrade,
MaterialPropertiesDescription,
MaterialPropertiesFileFormatRetired,
MaterialNotes,
ComponentShape,
CurvatureType,
OuterDiameter,
InnerDiameter,
ComponentWelderIds,
SecondaryApprovalStatus,
SecondaryReviewDate,
SecondaryReviewTime,
SecondaryReviewerName,
RepairId,
MultipleComponentApprovalSequence,
OtherApprovalStatus,
OtherSecondaryApprovalStatus,
ActualEnvironmentalConditions,
ExpiryDate,
EnvironmentalConditions,
EvaluatorSequence,
EvaluatorNumber,
EvaluatorName,
EvaluationAttempt,
IndicationSequence,
IndicationNumber,
IndicationLabel,
IndicationDescription,
IndicationType,
IndicationDisposition,
IndicationRoiSequence,
IndicationPhysicalPropertySequence,
PropertyLabel,
CoordinateSystemNumberOfAxes,
CoordinateSystemAxesSequence,
CoordinateSystemAxisDescription,
CoordinateSystemDataSetMapping,
CoordinateSystemAxisNumber,
CoordinateSystemAxisType,
CoordinateSystemAxisUnits,
CoordinateSystemAxisValues,
CoordinateSystemTransformSequence,
TransformDescription,
TransformNumberOfAxes,
TransformOrderOfAxes,
TransformedAxisUnits,
CoordinateSystemTransformRotationAndScaleMatrix,
CoordinateSystemTransformTranslationMatrix,
InternalDetectorFrameTime,
NumberOfFramesIntegrated,
DetectorTemperatureSequence,
SensorName,
HorizontalOffsetOfSensor,
VerticalOffsetOfSensor,
SensorTemperature,
DarkCurrentSequence,
DarkCurrentCounts,
GainCorrectionReferenceSequence,
AirCounts,
KvUsedInGainCalibration,
MaUsedInGainCalibration,
NumberOfFramesUsedForIntegration,
FilterMaterialUsedInGainCalibration,
FilterThicknessUsedInGainCalibration,
DateOfGainCalibration,
TimeOfGainCalibration,
BadPixelImage,
CalibrationNotes,
PulserEquipmentSequence,
PulserType,
PulserNotes,
ReceiverEquipmentSequence,
AmplifierType,
ReceiverNotes,
PreAmplifierEquipmentSequence,
PreAmplifierNotes,
TransmitTransducerSequence,
ReceiveTransducerSequence,
NumberOfElements,
ElementShape,
ElementDimensionA,
ElementDimensionB,
ElementPitchA,
MeasuredBeamDimensionA,
MeasuredBeamDimensionB,
LocationOfMeasuredBeamDiameter,
NominalFrequency,
MeasuredCenterFrequency,
MeasuredBandwidth,
ElementPitchB,
PulserSettingsSequence,
PulseWidth,
ExcitationFrequency,
ModulationType,
Damping,
ReceiverSettingsSequence,
AcquiredSoundpathLength,
AcquisitionCompressionType,
AcquisitionSampleSize,
RectifierSmoothing,
DacSequence,
DacType,
DacGainPoints,
DacTimePoints,
DacAmplitude,
PreAmplifierSettingsSequence,
TransmitTransducerSettingsSequence,
ReceiveTransducerSettingsSequence,
IncidentAngle,
CouplingTechnique,
CouplingMedium,
CouplingVelocity,
ProbeCenterLocationX,
ProbeCenterLocationZ,
SoundPathLength,
DelayLawIdentifier,
GateSettingsSequence,
GateThreshold,
VelocityOfSound,
CalibrationSettingsSequence,
CalibrationProcedure,
ProcedureVersion,
ProcedureCreationDate,
ProcedureExpirationDate,
ProcedureLastModifiedDate,
CalibrationTime,
CalibrationDate,
ProbeDriveEquipmentSequence,
DriveType,
ProbeDriveNotes,
DriveProbeSequence,
ProbeInductance,
ProbeResistance,
ReceiveProbeSequence,
ProbeDriveSettingsSequence,
BridgeResistors,
ProbeOrientationAngle,
UserSelectedGainY,
UserSelectedPhase,
UserSelectedOffsetX,
UserSelectedOffsetY,
ChannelSettingsSequence,
ChannelThreshold,
ScannerSettingsSequence,
ScanProcedure,
TranslationRateX,
TranslationRateY,
ChannelOverlap,
ImageQualityIndicatorType,
ImageQualityIndicatorMaterial,
ImageQualityIndicatorSize,
LinacEnergy,
LinacOutput,
ActiveAperture,
TotalAperture,
ApertureElevation,
MainLobeAngle,
MainRoofAngle,
ConnectorType,
WedgeModelNumber,
WedgeAngleFloat,
WedgeRoofAngle,
WedgeElement1Position,
WedgeMaterialVelocity,
WedgeMaterial,
WedgeOffsetZ,
WedgeOriginOffsetX,
WedgeTimeDelay,
WedgeName,
WedgeManufacturerName,
WedgeDescription,
NominalBeamAngle,
WedgeOffsetX,
WedgeOffsetY,
WedgeTotalLength,
WedgeInContactLength,
WedgeFrontGap,
WedgeTotalHeight,
WedgeFrontHeight,
WedgeRearHeight,
WedgeTotalWidth,
WedgeInContactWidth,
WedgeChamferHeight,
WedgeCurve,
RadiusAlongTheWedge,
ContrastBolusAgent,
ContrastBolusAgentSequence,
ContrastBolusT1Relaxivity,
ContrastBolusAdministrationRouteSequence,
BodyPartExamined,
ScanningSequence,
SequenceVariant,
ScanOptions,
MrAcquisitionType,
SequenceName,
AngioFlag,
InterventionDrugInformationSequence,
InterventionDrugStopTime,
InterventionDrugDose,
InterventionDrugCodeSequence,
AdditionalDrugSequence,
Radionuclide,
Radiopharmaceutical,
EnergyWindowCenterline,
EnergyWindowTotalWidth,
InterventionDrugName,
InterventionDrugStartTime,
InterventionSequence,
TherapyType,
InterventionStatus,
TherapyDescription,
InterventionDescription,
CineRate,
InitialCineRunState,
SliceThickness,
Kvp,
CountsAccumulated,
AcquisitionTerminationCondition,
EffectiveDuration,
AcquisitionStartCondition,
AcquisitionStartConditionData,
AcquisitionTerminationConditionData,
RepetitionTime,
EchoTime,
InversionTime,
NumberOfAverages,
ImagingFrequency,
ImagedNucleus,
EchoNumberS,
MagneticFieldStrength,
SpacingBetweenSlices,
NumberOfPhaseEncodingSteps,
DataCollectionDiameter,
EchoTrainLength,
PercentSampling,
PercentPhaseFieldOfView,
PixelBandwidth,
DeviceSerialNumber,
DeviceUid,
DeviceId,
PlateId,
GeneratorId,
GridId,
CassetteId,
GantryId,
SecondaryCaptureDeviceId,
HardcopyCreationDeviceId,
DateOfSecondaryCapture,
TimeOfSecondaryCapture,
SecondaryCaptureDeviceManufacturer,
HardcopyDeviceManufacturer,
SecondaryCaptureDeviceManufacturerSModelName,
SecondaryCaptureDeviceSoftwareVersions,
HardcopyDeviceSoftwareVersion,
HardcopyDeviceManufacturerSModelName,
SoftwareVersionS,
VideoImageFormatAcquired,
DigitalImageFormatAcquired,
ProtocolName,
ContrastBolusRoute,
ContrastBolusVolume,
ContrastBolusStartTime,
ContrastBolusStopTime,
ContrastBolusTotalDose,
SyringeCounts,
ContrastFlowRate,
ContrastFlowDuration,
ContrastBolusIngredient,
ContrastBolusIngredientConcentration,
SpatialResolution,
TriggerTime,
TriggerSourceOrType,
NominalInterval,
FrameTime,
CardiacFramingType,
FrameTimeVector,
FrameDelay,
ImageTriggerDelay,
MultiplexGroupTimeOffset,
TriggerTimeOffset,
SynchronizationTrigger,
SynchronizationChannel,
TriggerSamplePosition,
RadiopharmaceuticalRoute,
RadiopharmaceuticalVolume,
RadiopharmaceuticalStartTime,
RadiopharmaceuticalStopTime,
RadionuclideTotalDose,
RadionuclideHalfLife,
RadionuclidePositronFraction,
RadiopharmaceuticalSpecificActivity,
RadiopharmaceuticalStartDatetime,
RadiopharmaceuticalStopDatetime,
BeatRejectionFlag,
LowRRValue,
HighRRValue,
IntervalsAcquired,
IntervalsRejected,
PvcRejection,
SkipBeats,
HeartRate,
CardiacNumberOfImages,
TriggerWindow,
ReconstructionDiameter,
DistanceSourceToDetector,
DistanceSourceToPatient,
EstimatedRadiographicMagnificationFactor,
GantryDetectorTilt,
GantryDetectorSlew,
TableHeight,
TableTraverse,
TableMotion,
TableVerticalIncrement,
TableLateralIncrement,
TableLongitudinalIncrement,
TableAngle,
TableType,
RotationDirection,
AngularPosition,
RadialPosition,
ScanArc,
AngularStep,
CenterOfRotationOffset,
RotationOffset,
FieldOfViewShape,
FieldOfViewDimensionS,
ExposureTime,
XRayTubeCurrent,
Exposure,
ExposureInAs,
AveragePulseWidth,
RadiationSetting,
RectificationType,
RadiationMode,
ImageAndFluoroscopyAreaDoseProduct,
FilterType,
TypeOfFilters,
IntensifierSize,
ImagerPixelSpacing,
Grid,
GeneratorPower,
CollimatorGridName,
CollimatorType,
FocalDistance,
XFocusCenter,
YFocusCenter,
FocalSpotS,
AnodeTargetMaterial,
BodyPartThickness,
CompressionForce,
PaddleDescription,
DateOfLastCalibration,
TimeOfLastCalibration,
DatetimeOfLastCalibration,
ConvolutionKernel,
UpperLowerPixelValues,
ActualFrameDuration,
CountRate,
PreferredPlaybackSequencing,
ReceiveCoilName,
TransmitCoilName,
PlateType,
PhosphorType,
WaterEquivalentDiameter,
WaterEquivalentDiameterCalculationMethodCodeSequence,
ScanVelocity,
WholeBodyTechnique,
ScanLength,
AcquisitionMatrix,
InPlanePhaseEncodingDirection,
FlipAngle,
VariableFlipAngleFlag,
Sar,
DbDt,
B1rms,
AcquisitionDeviceProcessingDescription,
AcquisitionDeviceProcessingCode,
CassetteOrientation,
CassetteSize,
ExposuresOnPlate,
RelativeXRayExposure,
ExposureIndex,
TargetExposureIndex,
DeviationIndex,
ColumnAngulation,
TomoLayerHeight,
TomoAngle,
TomoTime,
TomoType,
TomoClass,
NumberOfTomosynthesisSourceImages,
PositionerMotion,
PositionerType,
PositionerPrimaryAngle,
PositionerSecondaryAngle,
PositionerPrimaryAngleIncrement,
PositionerSecondaryAngleIncrement,
DetectorPrimaryAngle,
DetectorSecondaryAngle,
ShutterShape,
ShutterLeftVerticalEdge,
ShutterRightVerticalEdge,
ShutterUpperHorizontalEdge,
ShutterLowerHorizontalEdge,
CenterOfCircularShutter,
RadiusOfCircularShutter,
VerticesOfThePolygonalShutter,
ShutterPresentationValue,
ShutterOverlayGroup,
ShutterPresentationColorCielabValue,
CollimatorShape,
CollimatorLeftVerticalEdge,
CollimatorRightVerticalEdge,
CollimatorUpperHorizontalEdge,
CollimatorLowerHorizontalEdge,
CenterOfCircularCollimator,
RadiusOfCircularCollimator,
VerticesOfThePolygonalCollimator,
AcquisitionTimeSynchronized,
TimeSource,
TimeDistributionProtocol,
NtpSourceAddress,
PageNumberVector,
FrameLabelVector,
FramePrimaryAngleVector,
FrameSecondaryAngleVector,
SliceLocationVector,
DisplayWindowLabelVector,
NominalScannedPixelSpacing,
DigitizingDeviceTransportDirection,
RotationOfScannedFilm,
BiopsyTargetSequence,
TargetUid,
LocalizingCursorPosition,
CalculatedTargetPosition,
TargetLabel,
DisplayedZValue,
IvusAcquisition,
IvusPullbackRate,
IvusGatedRate,
IvusPullbackStartFrameNumber,
IvusPullbackStopFrameNumber,
LesionNumber,
AcquisitionComments,
OutputPower,
TransducerData,
FocusDepth,
ProcessingFunction,
PostprocessingFunction,
MechanicalIndex,
BoneThermalIndex,
CranialThermalIndex,
SoftTissueThermalIndex,
SoftTissueFocusThermalIndex,
SoftTissueSurfaceThermalIndex,
DynamicRange,
TotalGain,
DepthOfScanField,
PatientPosition,
ViewPosition,
ProjectionEponymousNameCodeSequence,
ImageTransformationMatrix,
ImageTranslationVector,
Sensitivity,
SequenceOfUltrasoundRegions,
RegionSpatialFormat,
RegionDataType,
RegionFlags,
RegionLocationMinX0,
RegionLocationMinY0,
RegionLocationMaxX1,
RegionLocationMaxY1,
ReferencePixelX0,
ReferencePixelY0,
PhysicalUnitsXDirection,
PhysicalUnitsYDirection,
ReferencePixelPhysicalValueX,
ReferencePixelPhysicalValueY,
PhysicalDeltaX,
PhysicalDeltaY,
TransducerFrequency,
TransducerType,
PulseRepetitionFrequency,
DopplerCorrectionAngle,
SteeringAngle,
DopplerSampleVolumeXPositionRetired,
DopplerSampleVolumeXPosition,
DopplerSampleVolumeYPositionRetired,
DopplerSampleVolumeYPosition,
TmLinePositionX0Retired,
TmLinePositionX0,
TmLinePositionY0Retired,
TmLinePositionY0,
TmLinePositionX1Retired,
TmLinePositionX1,
TmLinePositionY1Retired,
TmLinePositionY1,
PixelComponentOrganization,
PixelComponentMask,
PixelComponentRangeStart,
PixelComponentRangeStop,
PixelComponentPhysicalUnits,
PixelComponentDataType,
NumberOfTableBreakPoints,
TableOfXBreakPoints,
TableOfYBreakPoints,
NumberOfTableEntries,
TableOfPixelValues,
TableOfParameterValues,
RWaveTimeVector,
DetectorConditionsNominalFlag,
DetectorTemperature,
DetectorType,
DetectorConfiguration,
DetectorDescription,
DetectorMode,
DetectorId,
DateOfLastDetectorCalibration,
TimeOfLastDetectorCalibration,
ExposuresOnDetectorSinceLastCalibration,
ExposuresOnDetectorSinceManufactured,
DetectorTimeSinceLastExposure,
DetectorActiveTime,
DetectorActivationOffsetFromExposure,
DetectorBinning,
DetectorElementPhysicalSize,
DetectorElementSpacing,
DetectorActiveShape,
DetectorActiveDimensionS,
DetectorActiveOrigin,
DetectorManufacturerName,
DetectorManufacturerSModelName,
FieldOfViewOrigin,
FieldOfViewRotation,
FieldOfViewHorizontalFlip,
PixelDataAreaOriginRelativeToFov,
PixelDataAreaRotationAngleRelativeToFov,
GridAbsorbingMaterial,
GridSpacingMaterial,
GridThickness,
GridPitch,
GridAspectRatio,
GridPeriod,
GridFocalDistance,
FilterMaterial,
FilterThicknessMinimum,
FilterThicknessMaximum,
FilterBeamPathLengthMinimum,
FilterBeamPathLengthMaximum,
ExposureControlMode,
ExposureControlModeDescription,
ExposureStatus,
PhototimerSetting,
ExposureTimeInS,
XRayTubeCurrentInA,
ContentQualification,
PulseSequenceName,
MrImagingModifierSequence,
EchoPulseSequence,
InversionRecovery,
FlowCompensation,
MultipleSpinEcho,
MultiPlanarExcitation,
PhaseContrast,
TimeOfFlightContrast,
Spoiling,
SteadyStatePulseSequence,
EchoPlanarPulseSequence,
TagAngleFirstAxis,
MagnetizationTransfer,
T2Preparation,
BloodSignalNulling,
SaturationRecovery,
SpectrallySelectedSuppression,
SpectrallySelectedExcitation,
SpatialPreSaturation,
Tagging,
OversamplingPhase,
TagSpacingFirstDimension,
GeometryOfKSpaceTraversal,
SegmentedKSpaceTraversal,
RectilinearPhaseEncodeReordering,
TagThickness,
PartialFourierDirection,
CardiacSynchronizationTechnique,
ReceiveCoilManufacturerName,
MrReceiveCoilSequence,
ReceiveCoilType,
QuadratureReceiveCoil,
MultiCoilDefinitionSequence,
MultiCoilConfiguration,
MultiCoilElementName,
MultiCoilElementUsed,
MrTransmitCoilSequence,
TransmitCoilManufacturerName,
TransmitCoilType,
SpectralWidth,
ChemicalShiftReference,
VolumeLocalizationTechnique,
MrAcquisitionFrequencyEncodingSteps,
DeCoupling,
DeCoupledNucleus,
DeCouplingFrequency,
DeCouplingMethod,
DeCouplingChemicalShiftReference,
KSpaceFiltering,
TimeDomainFiltering,
NumberOfZeroFills,
BaselineCorrection,
ParallelReductionFactorInPlane,
CardiacRRIntervalSpecified,
AcquisitionDuration,
FrameAcquisitionDatetime,
DiffusionDirectionality,
DiffusionGradientDirectionSequence,
ParallelAcquisition,
ParallelAcquisitionTechnique,
InversionTimes,
MetaboliteMapDescription,
PartialFourier,
EffectiveEchoTime,
MetaboliteMapCodeSequence,
ChemicalShiftSequence,
CardiacSignalSource,
DiffusionBValue,
DiffusionGradientOrientation,
VelocityEncodingDirection,
VelocityEncodingMinimumValue,
VelocityEncodingAcquisitionSequence,
NumberOfKSpaceTrajectories,
CoverageOfKSpace,
SpectroscopyAcquisitionPhaseRows,
ParallelReductionFactorInPlaneRetired,
TransmitterFrequency,
ResonantNucleus,
FrequencyCorrection,
MrSpectroscopyFovGeometrySequence,
SlabThickness,
SlabOrientation,
MidSlabPosition,
MrSpatialSaturationSequence,
MrTimingAndRelatedParametersSequence,
MrEchoSequence,
MrModifierSequence,
MrDiffusionSequence,
CardiacSynchronizationSequence,
MrAveragesSequence,
MrFovGeometrySequence,
VolumeLocalizationSequence,
SpectroscopyAcquisitionDataColumns,
DiffusionAnisotropyType,
FrameReferenceDatetime,
MrMetaboliteMapSequence,
ParallelReductionFactorOutOfPlane,
SpectroscopyAcquisitionOutOfPlanePhaseSteps,
BulkMotionStatus,
ParallelReductionFactorSecondInPlane,
CardiacBeatRejectionTechnique,
RespiratoryMotionCompensationTechnique,
RespiratorySignalSource,
BulkMotionCompensationTechnique,
BulkMotionSignalSource,
ApplicableSafetyStandardAgency,
ApplicableSafetyStandardDescription,
OperatingModeSequence,
OperatingModeType,
OperatingMode,
SpecificAbsorptionRateDefinition,
GradientOutputType,
SpecificAbsorptionRateValue,
GradientOutput,
FlowCompensationDirection,
TaggingDelay,
RespiratoryMotionCompensationTechniqueDescription,
RespiratorySignalSourceId,
ChemicalShiftMinimumIntegrationLimitInHz,
ChemicalShiftMaximumIntegrationLimitInHz,
MrVelocityEncodingSequence,
FirstOrderPhaseCorrection,
WaterReferencedPhaseCorrection,
MrSpectroscopyAcquisitionType,
RespiratoryCyclePosition,
VelocityEncodingMaximumValue,
TagSpacingSecondDimension,
TagAngleSecondAxis,
FrameAcquisitionDuration,
MrImageFrameTypeSequence,
MrSpectroscopyFrameTypeSequence,
MrAcquisitionPhaseEncodingStepsInPlane,
MrAcquisitionPhaseEncodingStepsOutOfPlane,
SpectroscopyAcquisitionPhaseColumns,
CardiacCyclePosition,
SpecificAbsorptionRateSequence,
RfEchoTrainLength,
GradientEchoTrainLength,
ArterialSpinLabelingContrast,
MrArterialSpinLabelingSequence,
AslTechniqueDescription,
AslSlabNumber,
AslSlabThickness,
AslSlabOrientation,
AslMidSlabPosition,
AslContext,
AslPulseTrainDuration,
AslCrusherFlag,
AslCrusherFlowLimit,
AslCrusherDescription,
AslBolusCutOffFlag,
AslBolusCutOffTimingSequence,
AslBolusCutOffTechnique,
AslBolusCutOffDelayTime,
AslSlabSequence,
ChemicalShiftMinimumIntegrationLimitInPpm,
ChemicalShiftMaximumIntegrationLimitInPpm,
WaterReferenceAcquisition,
EchoPeakPosition,
CtAcquisitionTypeSequence,
AcquisitionType,
TubeAngle,
CtAcquisitionDetailsSequence,
RevolutionTime,
SingleCollimationWidth,
TotalCollimationWidth,
CtTableDynamicsSequence,
TableSpeed,
TableFeedPerRotation,
SpiralPitchFactor,
CtGeometrySequence,
DataCollectionCenterPatient,
CtReconstructionSequence,
ReconstructionAlgorithm,
ConvolutionKernelGroup,
ReconstructionFieldOfView,
ReconstructionTargetCenterPatient,
ReconstructionAngle,
ImageFilter,
CtExposureSequence,
ReconstructionPixelSpacing,
ExposureModulationType,
EstimatedDoseSaving,
CtXRayDetailsSequence,
CtPositionSequence,
TablePosition,
ExposureTimeInMs,
CtImageFrameTypeSequence,
XRayTubeCurrentInMa,
ExposureInMas,
ConstantVolumeFlag,
FluoroscopyFlag,
DistanceSourceToDataCollectionCenter,
ContrastBolusAgentNumber,
ContrastBolusIngredientCodeSequence,
ContrastAdministrationProfileSequence,
ContrastBolusUsageSequence,
ContrastBolusAgentAdministered,
ContrastBolusAgentDetected,
ContrastBolusAgentPhase,
Ctdivol,
CtdiPhantomTypeCodeSequence,
CalciumScoringMassFactorPatient,
CalciumScoringMassFactorDevice,
EnergyWeightingFactor,
CtAdditionalXRaySourceSequence,
ProjectionPixelCalibrationSequence,
DistanceSourceToIsocenter,
DistanceObjectToTableTop,
ObjectPixelSpacingInCenterOfBeam,
PositionerPositionSequence,
TablePositionSequence,
CollimatorShapeSequence,
PlanesInAcquisition,
XaXrfFrameCharacteristicsSequence,
FrameAcquisitionSequence,
XRayReceptorType,
AcquisitionProtocolName,
AcquisitionProtocolDescription,
ContrastBolusIngredientOpaque,
DistanceReceptorPlaneToDetectorHousing,
IntensifierActiveShape,
IntensifierActiveDimensionS,
PhysicalDetectorSize,
PositionOfIsocenterProjection,
FieldOfViewSequence,
FieldOfViewDescription,
ExposureControlSensingRegionsSequence,
ExposureControlSensingRegionShape,
ExposureControlSensingRegionLeftVerticalEdge,
ExposureControlSensingRegionRightVerticalEdge,
ExposureControlSensingRegionUpperHorizontalEdge,
ExposureControlSensingRegionLowerHorizontalEdge,
CenterOfCircularExposureControlSensingRegion,
RadiusOfCircularExposureControlSensingRegion,
VerticesOfThePolygonalExposureControlSensingRegion,
ColumnAngulationPatient,
BeamAngle,
FrameDetectorParametersSequence,
CalculatedAnatomyThickness,
CalibrationSequence,
ObjectThicknessSequence,
PlaneIdentification,
FieldOfViewDimensionSInFloat,
IsocenterReferenceSystemSequence,
PositionerIsocenterPrimaryAngle,
PositionerIsocenterSecondaryAngle,
PositionerIsocenterDetectorRotationAngle,
TableXPositionToIsocenter,
TableYPositionToIsocenter,
TableZPositionToIsocenter,
TableHorizontalRotationAngle,
TableHeadTiltAngle,
TableCradleTiltAngle,
FrameDisplayShutterSequence,
AcquiredImageAreaDoseProduct,
CArmPositionerTabletopRelationship,
XRayGeometrySequence,
IrradiationEventIdentificationSequence,
XRay3dFrameTypeSequence,
ContributingSourcesSequence,
XRay3dAcquisitionSequence,
PrimaryPositionerScanArc,
SecondaryPositionerScanArc,
PrimaryPositionerScanStartAngle,
SecondaryPositionerScanStartAngle,
PrimaryPositionerIncrement,
SecondaryPositionerIncrement,
StartAcquisitionDatetime,
EndAcquisitionDatetime,
PrimaryPositionerIncrementSign,
SecondaryPositionerIncrementSign,
ApplicationName,
ApplicationVersion,
ApplicationManufacturer,
AlgorithmType,
AlgorithmDescription,
XRay3dReconstructionSequence,
ReconstructionDescription,
PerProjectionAcquisitionSequence,
DetectorPositionSequence,
XRayAcquisitionDoseSequence,
XRaySourceIsocenterPrimaryAngle,
XRaySourceIsocenterSecondaryAngle,
BreastSupportIsocenterPrimaryAngle,
BreastSupportIsocenterSecondaryAngle,
BreastSupportXPositionToIsocenter,
BreastSupportYPositionToIsocenter,
BreastSupportZPositionToIsocenter,
DetectorIsocenterPrimaryAngle,
DetectorIsocenterSecondaryAngle,
DetectorXPositionToIsocenter,
DetectorYPositionToIsocenter,
DetectorZPositionToIsocenter,
XRayGridSequence,
XRayFilterSequence,
DetectorActiveAreaTlhcPosition,
DetectorActiveAreaOrientation,
PositionerPrimaryAngleDirection,
DiffusionBMatrixSequence,
DiffusionBValueXx,
DiffusionBValueXy,
DiffusionBValueXz,
DiffusionBValueYy,
DiffusionBValueYz,
DiffusionBValueZz,
FunctionalMrSequence,
FunctionalSettlingPhaseFramesPresent,
FunctionalSyncPulse,
SettlingPhaseFrame,
DecayCorrectionDatetime,
StartDensityThreshold,
StartRelativeDensityDifferenceThreshold,
StartCardiacTriggerCountThreshold,
StartRespiratoryTriggerCountThreshold,
TerminationCountsThreshold,
TerminationDensityThreshold,
TerminationRelativeDensityThreshold,
TerminationTimeThreshold,
TerminationCardiacTriggerCountThreshold,
TerminationRespiratoryTriggerCountThreshold,
DetectorGeometry,
TransverseDetectorSeparation,
AxialDetectorDimension,
RadiopharmaceuticalAgentNumber,
PetFrameAcquisitionSequence,
PetDetectorMotionDetailsSequence,
PetTableDynamicsSequence,
PetPositionSequence,
PetFrameCorrectionFactorsSequence,
RadiopharmaceuticalUsageSequence,
AttenuationCorrectionSource,
NumberOfIterations,
NumberOfSubsets,
PetReconstructionSequence,
PetFrameTypeSequence,
TimeOfFlightInformationUsed,
ReconstructionType,
DecayCorrected,
AttenuationCorrected,
ScatterCorrected,
DeadTimeCorrected,
GantryMotionCorrected,
PatientMotionCorrected,
CountLossNormalizationCorrected,
RandomsCorrected,
NonUniformRadialSamplingCorrected,
SensitivityCalibrated,
DetectorNormalizationCorrection,
IterativeReconstructionMethod,
AttenuationCorrectionTemporalRelationship,
PatientPhysiologicalStateSequence,
PatientPhysiologicalStateCodeSequence,
DepthSOfFocus,
ExcludedIntervalsSequence,
ExclusionStartDatetime,
ExclusionDuration,
UsImageDescriptionSequence,
ImageDataTypeSequence,
DataType,
TransducerScanPatternCodeSequence,
AliasedDataType,
PositionMeasuringDeviceUsed,
TransducerGeometryCodeSequence,
TransducerBeamSteeringCodeSequence,
TransducerApplicationCodeSequence,
ZeroVelocityPixelValue,
ContributingEquipmentSequence,
ContributionDatetime,
ContributionDescription,
StudyInstanceUid,
SeriesInstanceUid,
StudyId,
SeriesNumber,
AcquisitionNumber,
InstanceNumber,
IsotopeNumber,
PhaseNumber,
IntervalNumber,
TimeSlotNumber,
AngleNumber,
ItemNumber,
PatientOrientation,
OverlayNumber,
CurveNumber,
LutNumber,
ImagePosition,
ImagePositionPatient,
ImageOrientation,
ImageOrientationPatient,
Location,
FrameOfReferenceUid,
Laterality,
ImageLaterality,
ImageGeometryType,
MaskingImage,
ReportNumber,
TemporalPositionIdentifier,
NumberOfTemporalPositions,
TemporalResolution,
SynchronizationFrameOfReferenceUid,
SopInstanceUidOfConcatenationSource,
SeriesInStudy,
AcquisitionsInSeries,
ImagesInAcquisition,
ImagesInSeries,
AcquisitionsInStudy,
ImagesInStudy,
Reference,
PositionReferenceIndicator,
SliceLocation,
OtherStudyNumbers,
NumberOfPatientRelatedStudies,
NumberOfPatientRelatedSeries,
NumberOfPatientRelatedInstances,
NumberOfStudyRelatedSeries,
NumberOfStudyRelatedInstances,
NumberOfSeriesRelatedInstances,
ModifyingDeviceId,
ModifiedImageId,
ModifiedImageDate,
ModifyingDeviceManufacturer,
ModifiedImageTime,
ModifiedImageDescription,
ImageComments,
OriginalImageIdentification,
OriginalImageIdentificationNomenclature,
StackId,
InStackPositionNumber,
FrameAnatomySequence,
FrameLaterality,
FrameContentSequence,
PlanePositionSequence,
PlaneOrientationSequence,
TemporalPositionIndex,
NominalCardiacTriggerDelayTime,
NominalCardiacTriggerTimePriorToRPeak,
ActualCardiacTriggerTimePriorToRPeak,
FrameAcquisitionNumber,
DimensionIndexValues,
FrameComments,
ConcatenationUid,
InConcatenationNumber,
InConcatenationTotalNumber,
DimensionOrganizationUid,
DimensionIndexPointer,
FunctionalGroupPointer,
UnassignedSharedConvertedAttributesSequence,
UnassignedPerFrameConvertedAttributesSequence,
ConversionSourceAttributesSequence,
DimensionIndexPrivateCreator,
DimensionOrganizationSequence,
DimensionIndexSequence,
ConcatenationFrameOffsetNumber,
FunctionalGroupPrivateCreator,
NominalPercentageOfCardiacPhase,
NominalPercentageOfRespiratoryPhase,
StartingRespiratoryAmplitude,
StartingRespiratoryPhase,
EndingRespiratoryAmplitude,
EndingRespiratoryPhase,
RespiratoryTriggerType,
RRIntervalTimeNominal,
ActualCardiacTriggerDelayTime,
RespiratorySynchronizationSequence,
RespiratoryIntervalTime,
NominalRespiratoryTriggerDelayTime,
RespiratoryTriggerDelayThreshold,
ActualRespiratoryTriggerDelayTime,
ImagePositionVolume,
ImageOrientationVolume,
UltrasoundAcquisitionGeometry,
ApexPosition,
VolumeToTransducerMappingMatrix,
VolumeToTableMappingMatrix,
VolumeToTransducerRelationship,
PatientFrameOfReferenceSource,
TemporalPositionTimeOffset,
PlanePositionVolumeSequence,
PlaneOrientationVolumeSequence,
TemporalPositionSequence,
DimensionOrganizationType,
VolumeFrameOfReferenceUid,
TableFrameOfReferenceUid,
DimensionDescriptionLabel,
PatientOrientationInFrameSequence,
FrameLabel,
AcquisitionIndex,
ContributingSopInstancesReferenceSequence,
ReconstructionIndex,
LightPathFilterPassThroughWavelength,
LightPathFilterPassBand,
ImagePathFilterPassThroughWavelength,
ImagePathFilterPassBand,
PatientEyeMovementCommanded,
PatientEyeMovementCommandCodeSequence,
SphericalLensPower,
CylinderLensPower,
CylinderAxis,
EmmetropicMagnification,
IntraOcularPressure,
HorizontalFieldOfView,
PupilDilated,
DegreeOfDilation,
StereoBaselineAngle,
StereoBaselineDisplacement,
StereoHorizontalPixelOffset,
StereoVerticalPixelOffset,
StereoRotation,
AcquisitionDeviceTypeCodeSequence,
IlluminationTypeCodeSequence,
LightPathFilterTypeStackCodeSequence,
ImagePathFilterTypeStackCodeSequence,
LensesCodeSequence,
ChannelDescriptionCodeSequence,
RefractiveStateSequence,
MydriaticAgentCodeSequence,
RelativeImagePositionCodeSequence,
CameraAngleOfView,
StereoPairsSequence,
LeftImageSequence,
RightImageSequence,
StereoPairsPresent,
AxialLengthOfTheEye,
OphthalmicFrameLocationSequence,
ReferenceCoordinates,
DepthSpatialResolution,
MaximumDepthDistortion,
AlongScanSpatialResolution,
MaximumAlongScanDistortion,
OphthalmicImageOrientation,
DepthOfTransverseImage,
MydriaticAgentConcentrationUnitsSequence,
AcrossScanSpatialResolution,
MaximumAcrossScanDistortion,
MydriaticAgentConcentration,
IlluminationWaveLength,
IlluminationPower,
IlluminationBandwidth,
MydriaticAgentSequence,
OphthalmicAxialMeasurementsRightEyeSequence,
OphthalmicAxialMeasurementsLeftEyeSequence,
OphthalmicAxialMeasurementsDeviceType,
OphthalmicAxialLengthMeasurementsType,
OphthalmicAxialLengthSequence,
OphthalmicAxialLength,
LensStatusCodeSequence,
VitreousStatusCodeSequence,
IolFormulaCodeSequence,
IolFormulaDetail,
KeratometerIndex,
SourceOfOphthalmicAxialLengthCodeSequence,
TargetRefraction,
RefractiveProcedureOccurred,
RefractiveSurgeryTypeCodeSequence,
OphthalmicUltrasoundMethodCodeSequence,
OphthalmicAxialLengthMeasurementsSequence,
IolPower,
PredictedRefractiveError,
OphthalmicAxialLengthVelocity,
LensStatusDescription,
VitreousStatusDescription,
IolPowerSequence,
LensConstantSequence,
IolManufacturer,
LensConstantDescription,
ImplantName,
KeratometryMeasurementTypeCodeSequence,
ImplantPartNumber,
ReferencedOphthalmicAxialMeasurementsSequence,
OphthalmicAxialLengthMeasurementsSegmentNameCodeSequence,
RefractiveErrorBeforeRefractiveSurgeryCodeSequence,
IolPowerForExactEmmetropia,
IolPowerForExactTargetRefraction,
AnteriorChamberDepthDefinitionCodeSequence,
LensThicknessSequence,
AnteriorChamberDepthSequence,
LensThickness,
AnteriorChamberDepth,
SourceOfLensThicknessDataCodeSequence,
SourceOfAnteriorChamberDepthDataCodeSequence,
SourceOfRefractiveMeasurementsSequence,
SourceOfRefractiveMeasurementsCodeSequence,
OphthalmicAxialLengthMeasurementModified,
OphthalmicAxialLengthDataSourceCodeSequence,
OphthalmicAxialLengthAcquisitionMethodCodeSequence,
SignalToNoiseRatio,
OphthalmicAxialLengthDataSourceDescription,
OphthalmicAxialLengthMeasurementsTotalLengthSequence,
OphthalmicAxialLengthMeasurementsSegmentalLengthSequence,
OphthalmicAxialLengthMeasurementsLengthSummationSequence,
UltrasoundOphthalmicAxialLengthMeasurementsSequence,
OpticalOphthalmicAxialLengthMeasurementsSequence,
UltrasoundSelectedOphthalmicAxialLengthSequence,
OphthalmicAxialLengthSelectionMethodCodeSequence,
OpticalSelectedOphthalmicAxialLengthSequence,
SelectedSegmentalOphthalmicAxialLengthSequence,
SelectedTotalOphthalmicAxialLengthSequence,
OphthalmicAxialLengthQualityMetricSequence,
OphthalmicAxialLengthQualityMetricTypeCodeSequence,
OphthalmicAxialLengthQualityMetricTypeDescription,
IntraocularLensCalculationsRightEyeSequence,
IntraocularLensCalculationsLeftEyeSequence,
ReferencedOphthalmicAxialLengthMeasurementQcImageSequence,
OphthalmicMappingDeviceType,
AcquisitionMethodCodeSequence,
AcquisitionMethodAlgorithmSequence,
OphthalmicThicknessMapTypeCodeSequence,
OphthalmicThicknessMappingNormalsSequence,
RetinalThicknessDefinitionCodeSequence,
PixelValueMappingToCodedConceptSequence,
MappedPixelValue,
PixelValueMappingExplanation,
OphthalmicThicknessMapQualityThresholdSequence,
OphthalmicThicknessMapThresholdQualityRating,
AnatomicStructureReferencePoint,
RegistrationToLocalizerSequence,
RegisteredLocalizerUnits,
RegisteredLocalizerTopLeftHandCorner,
RegisteredLocalizerBottomRightHandCorner,
OphthalmicThicknessMapQualityRatingSequence,
RelevantOptAttributesSequence,
TransformationMethodCodeSequence,
TransformationAlgorithmSequence,
OphthalmicAxialLengthMethod,
OphthalmicFov,
TwoDimensionalToThreeDimensionalMapSequence,
WideFieldOphthalmicPhotographyQualityRatingSequence,
WideFieldOphthalmicPhotographyQualityThresholdSequence,
WideFieldOphthalmicPhotographyThresholdQualityRating,
XCoordinatesCenterPixelViewAngle,
YCoordinatesCenterPixelViewAngle,
NumberOfMapPoints,
TwoDimensionalToThreeDimensionalMapData,
VisualFieldHorizontalExtent,
VisualFieldVerticalExtent,
VisualFieldShape,
ScreeningTestModeCodeSequence,
MaximumStimulusLuminance,
BackgroundLuminance,
StimulusColorCodeSequence,
BackgroundIlluminationColorCodeSequence,
StimulusArea,
StimulusPresentationTime,
FixationSequence,
FixationMonitoringCodeSequence,
VisualFieldCatchTrialSequence,
FixationCheckedQuantity,
PatientNotProperlyFixatedQuantity,
PresentedVisualStimuliDataFlag,
NumberOfVisualStimuli,
ExcessiveFixationLossesDataFlag,
ExcessiveFixationLosses,
StimuliRetestingQuantity,
CommentsOnPatientSPerformanceOfVisualField,
FalseNegativesEstimateFlag,
FalseNegativesEstimate,
NegativeCatchTrialsQuantity,
FalseNegativesQuantity,
ExcessiveFalseNegativesDataFlag,
ExcessiveFalseNegatives,
FalsePositivesEstimateFlag,
FalsePositivesEstimate,
CatchTrialsDataFlag,
PositiveCatchTrialsQuantity,
TestPointNormalsDataFlag,
TestPointNormalsSequence,
GlobalDeviationProbabilityNormalsFlag,
FalsePositivesQuantity,
ExcessiveFalsePositivesDataFlag,
ExcessiveFalsePositives,
VisualFieldTestNormalsFlag,
ResultsNormalsSequence,
AgeCorrectedSensitivityDeviationAlgorithmSequence,
GlobalDeviationFromNormal,
GeneralizedDefectSensitivityDeviationAlgorithmSequence,
LocalizedDeviationFromNormal,
PatientReliabilityIndicator,
VisualFieldMeanSensitivity,
GlobalDeviationProbability,
LocalDeviationProbabilityNormalsFlag,
LocalizedDeviationProbability,
ShortTermFluctuationCalculated,
ShortTermFluctuation,
ShortTermFluctuationProbabilityCalculated,
ShortTermFluctuationProbability,
CorrectedLocalizedDeviationFromNormalCalculated,
CorrectedLocalizedDeviationFromNormal,
CorrectedLocalizedDeviationFromNormalProbabilityCalculated,
CorrectedLocalizedDeviationFromNormalProbability,
GlobalDeviationProbabilitySequence,
LocalizedDeviationProbabilitySequence,
FovealSensitivityMeasured,
FovealSensitivity,
VisualFieldTestDuration,
VisualFieldTestPointSequence,
VisualFieldTestPointXCoordinate,
VisualFieldTestPointYCoordinate,
AgeCorrectedSensitivityDeviationValue,
StimulusResults,
SensitivityValue,
RetestStimulusSeen,
RetestSensitivityValue,
VisualFieldTestPointNormalsSequence,
QuantifiedDefect,
AgeCorrectedSensitivityDeviationProbabilityValue,
GeneralizedDefectCorrectedSensitivityDeviationFlag,
GeneralizedDefectCorrectedSensitivityDeviationValue,
GeneralizedDefectCorrectedSensitivityDeviationProbabilityValue,
MinimumSensitivityValue,
BlindSpotLocalized,
BlindSpotXCoordinate,
BlindSpotYCoordinate,
VisualAcuityMeasurementSequence,
RefractiveParametersUsedOnPatientSequence,
MeasurementLaterality,
OphthalmicPatientClinicalInformationLeftEyeSequence,
OphthalmicPatientClinicalInformationRightEyeSequence,
FovealPointNormativeDataFlag,
FovealPointProbabilityValue,
ScreeningBaselineMeasured,
ScreeningBaselineMeasuredSequence,
ScreeningBaselineType,
ScreeningBaselineValue,
AlgorithmSource,
DataSetName,
DataSetVersion,
DataSetSource,
DataSetDescription,
VisualFieldTestReliabilityGlobalIndexSequence,
VisualFieldGlobalResultsIndexSequence,
DataObservationSequence,
IndexNormalsFlag,
IndexProbability,
IndexProbabilitySequence,
SamplesPerPixel,
SamplesPerPixelUsed,
PhotometricInterpretation,
ImageDimensions,
PlanarConfiguration,
NumberOfFrames,
FrameIncrementPointer,
FrameDimensionPointer,
Rows,
Columns,
Planes,
UltrasoundColorDataPresent,
PixelSpacing,
ZoomFactor,
ZoomCenter,
PixelAspectRatio,
ImageFormat,
ManipulatedImage,
CorrectedImage,
CompressionRecognitionCode,
CompressionCode,
CompressionOriginator,
CompressionLabel,
CompressionDescription,
CompressionSequence,
CompressionStepPointers,
RepeatInterval,
BitsGrouped,
PerimeterTable,
PerimeterValue,
PredictorRows,
PredictorColumns,
PredictorConstants,
BlockedPixels,
BlockRows,
BlockColumns,
RowOverlap,
ColumnOverlap,
BitsAllocated,
BitsStored,
HighBit,
PixelRepresentation,
SmallestValidPixelValue,
LargestValidPixelValue,
SmallestImagePixelValue,
LargestImagePixelValue,
SmallestPixelValueInSeries,
LargestPixelValueInSeries,
SmallestImagePixelValueInPlane,
LargestImagePixelValueInPlane,
PixelPaddingValue,
PixelPaddingRangeLimit,
FloatPixelPaddingValue,
DoubleFloatPixelPaddingValue,
FloatPixelPaddingRangeLimit,
DoubleFloatPixelPaddingRangeLimit,
ImageLocation,
QualityControlImage,
BurnedInAnnotation,
RecognizableVisualFeatures,
LongitudinalTemporalInformationModified,
ReferencedColorPaletteInstanceUid,
TransformLabel,
TransformVersionNumber,
NumberOfTransformSteps,
SequenceOfCompressedData,
DetailsOfCoefficients,
DctLabel,
DataBlockDescription,
DataBlock,
NormalizationFactorFormat,
ZonalMapNumberFormat,
ZonalMapLocation,
ZonalMapFormat,
AdaptiveMapFormat,
CodeNumberFormat,
PixelSpacingCalibrationType,
PixelSpacingCalibrationDescription,
PixelIntensityRelationship,
PixelIntensityRelationshipSign,
WindowCenter,
WindowWidth,
RescaleIntercept,
RescaleSlope,
RescaleType,
WindowCenterWidthExplanation,
VoiLutFunction,
GrayScale,
RecommendedViewingMode,
GrayLookupTableDescriptor,
RedPaletteColorLookupTableDescriptor,
GreenPaletteColorLookupTableDescriptor,
BluePaletteColorLookupTableDescriptor,
AlphaPaletteColorLookupTableDescriptor,
LargeRedPaletteColorLookupTableDescriptor,
LargeGreenPaletteColorLookupTableDescriptor,
LargeBluePaletteColorLookupTableDescriptor,
PaletteColorLookupTableUid,
GrayLookupTableData,
RedPaletteColorLookupTableData,
GreenPaletteColorLookupTableData,
BluePaletteColorLookupTableData,
AlphaPaletteColorLookupTableData,
LargeRedPaletteColorLookupTableData,
LargeGreenPaletteColorLookupTableData,
LargeBluePaletteColorLookupTableData,
LargePaletteColorLookupTableUid,
SegmentedRedPaletteColorLookupTableData,
SegmentedGreenPaletteColorLookupTableData,
SegmentedBluePaletteColorLookupTableData,
SegmentedAlphaPaletteColorLookupTableData,
BreastImplantPresent,
PartialView,
PartialViewDescription,
PartialViewCodeSequence,
SpatialLocationsPreserved,
DataFrameAssignmentSequence,
DataPathAssignment,
BitsMappedToColorLookupTable,
BlendingLut1Sequence,
BlendingLut1TransferFunction,
BlendingWeightConstant,
BlendingLookupTableDescriptor,
BlendingLookupTableData,
EnhancedPaletteColorLookupTableSequence,
BlendingLut2Sequence,
BlendingLut2TransferFunction,
DataPathId,
RgbLutTransferFunction,
AlphaLutTransferFunction,
IccProfile,
ColorSpace,
LossyImageCompression,
LossyImageCompressionRatio,
LossyImageCompressionMethod,
ModalityLutSequence,
LutDescriptor,
LutExplanation,
ModalityLutType,
LutData,
VoiLutSequence,
SoftcopyVoiLutSequence,
ImagePresentationComments,
BiPlaneAcquisitionSequence,
RepresentativeFrameNumber,
FrameNumbersOfInterestFoi,
FrameOfInterestDescription,
FrameOfInterestType,
MaskPointerS,
RWavePointer,
MaskSubtractionSequence,
MaskOperation,
ApplicableFrameRange,
MaskFrameNumbers,
ContrastFrameAveraging,
MaskSubPixelShift,
TidOffset,
MaskOperationExplanation,
EquipmentAdministratorSequence,
NumberOfDisplaySubsystems,
CurrentConfigurationId,
DisplaySubsystemId,
DisplaySubsystemName,
DisplaySubsystemDescription,
SystemStatus,
SystemStatusComment,
TargetLuminanceCharacteristicsSequence,
LuminanceCharacteristicsId,
DisplaySubsystemConfigurationSequence,
ConfigurationId,
ConfigurationName,
ConfigurationDescription,
ReferencedTargetLuminanceCharacteristicsId,
QaResultsSequence,
DisplaySubsystemQaResultsSequence,
ConfigurationQaResultsSequence,
MeasurementEquipmentSequence,
MeasurementFunctions,
MeasurementEquipmentType,
VisualEvaluationResultSequence,
DisplayCalibrationResultSequence,
DdlValue,
CiexyWhitePoint,
DisplayFunctionType,
GammaValue,
NumberOfLuminancePoints,
LuminanceResponseSequence,
TargetMinimumLuminance,
TargetMaximumLuminance,
LuminanceValue,
LuminanceResponseDescription,
WhitePointFlag,
DisplayDeviceTypeCodeSequence,
DisplaySubsystemSequence,
LuminanceResultSequence,
AmbientLightValueSource,
MeasuredCharacteristics,
LuminanceUniformityResultSequence,
VisualEvaluationTestSequence,
TestResult,
TestResultComment,
TestImageValidation,
TestPatternCodeSequence,
MeasurementPatternCodeSequence,
VisualEvaluationMethodCodeSequence,
PixelDataProviderUrl,
DataPointRows,
DataPointColumns,
SignalDomainColumns,
LargestMonochromePixelValue,
DataRepresentation,
PixelMeasuresSequence,
FrameVoiLutSequence,
PixelValueTransformationSequence,
SignalDomainRows,
DisplayFilterPercentage,
FramePixelShiftSequence,
SubtractionItemId,
PixelIntensityRelationshipLutSequence,
FramePixelDataPropertiesSequence,
GeometricalProperties,
GeometricMaximumDistortion,
ImageProcessingApplied,
MaskSelectionMode,
LutFunction,
MaskVisibilityPercentage,
PixelShiftSequence,
RegionPixelShiftSequence,
VerticesOfTheRegion,
MultiFramePresentationSequence,
PixelShiftFrameRange,
LutFrameRange,
ImageToEquipmentMappingMatrix,
EquipmentCoordinateSystemIdentification,
StudyStatusId,
StudyPriorityId,
StudyIdIssuer,
StudyVerifiedDate,
StudyVerifiedTime,
StudyReadDate,
StudyReadTime,
ScheduledStudyStartDate,
ScheduledStudyStartTime,
ScheduledStudyStopDate,
ScheduledStudyStopTime,
ScheduledStudyLocation,
ScheduledStudyLocationAeTitle,
ReasonForStudy,
RequestingPhysicianIdentificationSequence,
RequestingPhysician,
RequestingService,
RequestingServiceCodeSequence,
StudyArrivalDate,
StudyArrivalTime,
StudyCompletionDate,
StudyCompletionTime,
StudyComponentStatusId,
RequestedProcedureDescription,
RequestedProcedureCodeSequence,
RequestedContrastAgent,
StudyComments,
ReferencedPatientAliasSequence,
VisitStatusId,
AdmissionId,
IssuerOfAdmissionId,
IssuerOfAdmissionIdSequence,
RouteOfAdmissions,
ScheduledAdmissionDate,
ScheduledAdmissionTime,
ScheduledDischargeDate,
ScheduledDischargeTime,
ScheduledPatientInstitutionResidence,
AdmittingDate,
AdmittingTime,
DischargeDate,
DischargeTime,
DischargeDiagnosisDescription,
DischargeDiagnosisCodeSequence,
SpecialNeeds,
ServiceEpisodeId,
IssuerOfServiceEpisodeId,
ServiceEpisodeDescription,
IssuerOfServiceEpisodeIdSequence,
PertinentDocumentsSequence,
PertinentResourcesSequence,
ResourceDescription,
CurrentPatientLocation,
PatientSInstitutionResidence,
PatientState,
PatientClinicalTrialParticipationSequence,
VisitComments,
WaveformOriginality,
NumberOfWaveformChannels,
NumberOfWaveformSamples,
SamplingFrequency,
MultiplexGroupLabel,
ChannelDefinitionSequence,
WaveformChannelNumber,
ChannelLabel,
ChannelStatus,
ChannelSourceSequence,
ChannelSourceModifiersSequence,
SourceWaveformSequence,
ChannelDerivationDescription,
ChannelSensitivity,
ChannelSensitivityUnitsSequence,
ChannelSensitivityCorrectionFactor,
ChannelBaseline,
ChannelTimeSkew,
ChannelSampleSkew,
ChannelOffset,
WaveformBitsStored,
FilterLowFrequency,
FilterHighFrequency,
NotchFilterFrequency,
NotchFilterBandwidth,
WaveformDataDisplayScale,
WaveformDisplayBackgroundCielabValue,
WaveformPresentationGroupSequence,
PresentationGroupNumber,
ChannelDisplaySequence,
ChannelRecommendedDisplayCielabValue,
ChannelPosition,
DisplayShadingFlag,
FractionalChannelDisplayScale,
AbsoluteChannelDisplayScale,
MultiplexedAudioChannelsDescriptionCodeSequence,
ChannelIdentificationCode,
ChannelMode,
ScheduledStationAeTitle,
ScheduledProcedureStepStartDate,
ScheduledProcedureStepStartTime,
ScheduledProcedureStepEndDate,
ScheduledProcedureStepEndTime,
ScheduledPerformingPhysicianSName,
ScheduledProcedureStepDescription,
ScheduledProtocolCodeSequence,
ScheduledProcedureStepId,
StageCodeSequence,
ScheduledPerformingPhysicianIdentificationSequence,
ScheduledStationName,
ScheduledProcedureStepLocation,
PreMedication,
ScheduledProcedureStepStatus,
OrderPlacerIdentifierSequence,
OrderFillerIdentifierSequence,
LocalNamespaceEntityId,
UniversalEntityId,
UniversalEntityIdType,
IdentifierTypeCode,
AssigningFacilitySequence,
AssigningJurisdictionCodeSequence,
AssigningAgencyOrDepartmentCodeSequence,
ScheduledProcedureStepSequence,
ReferencedNonImageCompositeSopInstanceSequence,
PerformedStationAeTitle,
PerformedStationName,
PerformedLocation,
PerformedProcedureStepStartDate,
PerformedProcedureStepStartTime,
PerformedProcedureStepEndDate,
PerformedProcedureStepEndTime,
PerformedProcedureStepStatus,
PerformedProcedureStepId,
PerformedProcedureStepDescription,
PerformedProcedureTypeDescription,
PerformedProtocolCodeSequence,
PerformedProtocolType,
ScheduledStepAttributesSequence,
RequestAttributesSequence,
CommentsOnThePerformedProcedureStep,
PerformedProcedureStepDiscontinuationReasonCodeSequence,
QuantitySequence,
Quantity,
MeasuringUnitsSequence,
BillingItemSequence,
TotalTimeOfFluoroscopy,
TotalNumberOfExposures,
EntranceDose,
ExposedArea,
DistanceSourceToEntrance,
DistanceSourceToSupport,
ExposureDoseSequence,
CommentsOnRadiationDose,
XRayOutput,
HalfValueLayer,
OrganDose,
OrganExposed,
BillingProcedureStepSequence,
FilmConsumptionSequence,
BillingSuppliesAndDevicesSequence,
ReferencedProcedureStepSequence,
PerformedSeriesSequence,
CommentsOnTheScheduledProcedureStep,
ProtocolContextSequence,
ContentItemModifierSequence,
ScheduledSpecimenSequence,
SpecimenAccessionNumber,
ContainerIdentifier,
IssuerOfTheContainerIdentifierSequence,
AlternateContainerIdentifierSequence,
ContainerTypeCodeSequence,
ContainerDescription,
ContainerComponentSequence,
SpecimenSequence,
SpecimenIdentifier,
SpecimenDescriptionSequenceTrial,
SpecimenDescriptionTrial,
SpecimenUid,
AcquisitionContextSequence,
AcquisitionContextDescription,
SpecimenDescriptionSequence,
IssuerOfTheSpecimenIdentifierSequence,
SpecimenTypeCodeSequence,
SpecimenShortDescription,
SpecimenDetailedDescription,
SpecimenPreparationSequence,
SpecimenPreparationStepContentItemSequence,
SpecimenLocalizationContentItemSequence,
SlideIdentifier,
ImageCenterPointCoordinatesSequence,
XOffsetInSlideCoordinateSystem,
YOffsetInSlideCoordinateSystem,
ZOffsetInSlideCoordinateSystem,
PixelSpacingSequence,
CoordinateSystemAxisCodeSequence,
MeasurementUnitsCodeSequence,
VitalStainCodeSequenceTrial,
RequestedProcedureId,
ReasonForTheRequestedProcedure,
RequestedProcedurePriority,
PatientTransportArrangements,
RequestedProcedureLocation,
PlacerOrderNumberProcedure,
FillerOrderNumberProcedure,
ConfidentialityCode,
ReportingPriority,
ReasonForRequestedProcedureCodeSequence,
NamesOfIntendedRecipientsOfResults,
IntendedRecipientsOfResultsIdentificationSequence,
ReasonForPerformedProcedureCodeSequence,
RequestedProcedureDescriptionTrial,
PersonIdentificationCodeSequence,
PersonSAddress,
PersonSTelephoneNumbers,
PersonSTelecomInformation,
RequestedProcedureComments,
ReasonForTheImagingServiceRequest,
IssueDateOfImagingServiceRequest,
IssueTimeOfImagingServiceRequest,
PlacerOrderNumberImagingServiceRequestRetired,
FillerOrderNumberImagingServiceRequestRetired,
OrderEnteredBy,
OrderEntererSLocation,
OrderCallbackPhoneNumber,
OrderCallbackTelecomInformation,
PlacerOrderNumberImagingServiceRequest,
FillerOrderNumberImagingServiceRequest,
ImagingServiceRequestComments,
ConfidentialityConstraintOnPatientDataDescription,
GeneralPurposeScheduledProcedureStepStatus,
GeneralPurposePerformedProcedureStepStatus,
GeneralPurposeScheduledProcedureStepPriority,
ScheduledProcessingApplicationsCodeSequence,
ScheduledProcedureStepStartDatetime,
MultipleCopiesFlag,
PerformedProcessingApplicationsCodeSequence,
HumanPerformerCodeSequence,
ScheduledProcedureStepModificationDatetime,
ExpectedCompletionDatetime,
ResultingGeneralPurposePerformedProcedureStepsSequence,
ReferencedGeneralPurposeScheduledProcedureStepSequence,
ScheduledWorkitemCodeSequence,
PerformedWorkitemCodeSequence,
InputAvailabilityFlag,
InputInformationSequence,
RelevantInformationSequence,
ReferencedGeneralPurposeScheduledProcedureStepTransactionUid,
ScheduledStationNameCodeSequence,
ScheduledStationClassCodeSequence,
ScheduledStationGeographicLocationCodeSequence,
PerformedStationNameCodeSequence,
PerformedStationClassCodeSequence,
PerformedStationGeographicLocationCodeSequence,
RequestedSubsequentWorkitemCodeSequence,
NonDicomOutputCodeSequence,
OutputInformationSequence,
ScheduledHumanPerformersSequence,
ActualHumanPerformersSequence,
HumanPerformerSOrganization,
HumanPerformerSName,
RawDataHandling,
InputReadinessState,
PerformedProcedureStepStartDatetime,
PerformedProcedureStepEndDatetime,
ProcedureStepCancellationDatetime,
OutputDestinationSequence,
DicomStorageSequence,
StowRsStorageSequence,
StorageUrl,
XdsStorageSequence,
EntranceDoseInMgy,
ParametricMapFrameTypeSequence,
ReferencedImageRealWorldValueMappingSequence,
RealWorldValueMappingSequence,
PixelValueMappingCodeSequence,
LutLabel,
RealWorldValueLastValueMapped,
RealWorldValueLutData,
DoubleFloatRealWorldValueLastValueMapped,
DoubleFloatRealWorldValueFirstValueMapped,
RealWorldValueFirstValueMapped,
QuantityDefinitionSequence,
RealWorldValueIntercept,
RealWorldValueSlope,
FindingsFlagTrial,
RelationshipType,
FindingsSequenceTrial,
FindingsGroupUidTrial,
ReferencedFindingsGroupUidTrial,
FindingsGroupRecordingDateTrial,
FindingsGroupRecordingTimeTrial,
FindingsSourceCategoryCodeSequenceTrial,
VerifyingOrganization,
DocumentingOrganizationIdentifierCodeSequenceTrial,
VerificationDatetime,
ObservationDatetime,
ValueType,
ConceptNameCodeSequence,
MeasurementPrecisionDescriptionTrial,
ContinuityOfContent,
UrgencyOrPriorityAlertsTrial,
SequencingIndicatorTrial,
DocumentIdentifierCodeSequenceTrial,
DocumentAuthorTrial,
DocumentAuthorIdentifierCodeSequenceTrial,
IdentifierCodeSequenceTrial,
VerifyingObserverSequence,
ObjectBinaryIdentifierTrial,
VerifyingObserverName,
DocumentingObserverIdentifierCodeSequenceTrial,
AuthorObserverSequence,
ParticipantSequence,
CustodialOrganizationSequence,
ParticipationType,
ParticipationDatetime,
ObserverType,
ProcedureIdentifierCodeSequenceTrial,
VerifyingObserverIdentificationCodeSequence,
ObjectDirectoryBinaryIdentifierTrial,
EquivalentCdaDocumentSequence,
ReferencedWaveformChannels,
DateOfDocumentOrVerbalTransactionTrial,
TimeOfDocumentCreationOrVerbalTransactionTrial,
Datetime,
Date,
Time,
PersonName,
Uid,
ReportStatusIdTrial,
TemporalRangeType,
ReferencedSamplePositions,
ReferencedFrameNumbers,
ReferencedTimeOffsets,
ReferencedDatetime,
TextValue,
FloatingPointValue,
RationalNumeratorValue,
RationalDenominatorValue,
ObservationCategoryCodeSequenceTrial,
ConceptCodeSequence,
BibliographicCitationTrial,
PurposeOfReferenceCodeSequence,
ObservationUid,
ReferencedObservationUidTrial,
ReferencedObservationClassTrial,
ReferencedObjectObservationClassTrial,
AnnotationGroupNumber,
ObservationDateTrial,
ObservationTimeTrial,
MeasurementAutomationTrial,
ModifierCodeSequence,
IdentificationDescriptionTrial,
CoordinatesSetGeometricTypeTrial,
AlgorithmCodeSequenceTrial,
AlgorithmDescriptionTrial,
PixelCoordinatesSetTrial,
MeasuredValueSequence,
NumericValueQualifierCodeSequence,
CurrentObserverTrial,
NumericValue,
ReferencedAccessionSequenceTrial,
ReportStatusCommentTrial,
ProcedureContextSequenceTrial,
VerbalSourceTrial,
AddressTrial,
TelephoneNumberTrial,
VerbalSourceIdentifierCodeSequenceTrial,
PredecessorDocumentsSequence,
ReferencedRequestSequence,
PerformedProcedureCodeSequence,
CurrentRequestedProcedureEvidenceSequence,
ReportDetailSequenceTrial,
PertinentOtherEvidenceSequence,
Hl7StructuredDocumentReferenceSequence,
ObservationSubjectUidTrial,
ObservationSubjectClassTrial,
ObservationSubjectTypeCodeSequenceTrial,
CompletionFlag,
CompletionFlagDescription,
VerificationFlag,
ArchiveRequested,
PreliminaryFlag,
ContentTemplateSequence,
IdenticalDocumentsSequence,
ObservationSubjectContextFlagTrial,
ObserverContextFlagTrial,
ProcedureContextFlagTrial,
ContentSequence,
RelationshipSequenceTrial,
RelationshipTypeCodeSequenceTrial,
LanguageCodeSequenceTrial,
UniformResourceLocatorTrial,
WaveformAnnotationSequence,
TemplateIdentifier,
TemplateVersion,
TemplateLocalVersion,
TemplateExtensionFlag,
TemplateExtensionOrganizationUid,
TemplateExtensionCreatorUid,
ReferencedContentItemIdentifier,
Hl7InstanceIdentifier,
Hl7DocumentEffectiveTime,
Hl7DocumentTypeCodeSequence,
DocumentClassCodeSequence,
RetrieveUri,
RetrieveLocationUid,
TypeOfInstances,
DicomRetrievalSequence,
DicomMediaRetrievalSequence,
WadoRetrievalSequence,
XdsRetrievalSequence,
WadoRsRetrievalSequence,
RepositoryUniqueId,
HomeCommunityId,
DocumentTitle,
EncapsulatedDocument,
MimeTypeOfEncapsulatedDocument,
SourceInstanceSequence,
ListOfMimeTypes,
ProductPackageIdentifier,
SubstanceAdministrationApproval,
ApprovalStatusFurtherDescription,
ApprovalStatusDatetime,
ProductTypeCodeSequence,
ProductName,
ProductDescription,
ProductLotIdentifier,
ProductExpirationDatetime,
SubstanceAdministrationDatetime,
SubstanceAdministrationNotes,
SubstanceAdministrationDeviceId,
ProductParameterSequence,
SubstanceAdministrationParameterSequence,
LensDescription,
RightLensSequence,
LeftLensSequence,
UnspecifiedLateralityLensSequence,
CylinderSequence,
PrismSequence,
HorizontalPrismPower,
HorizontalPrismBase,
VerticalPrismPower,
VerticalPrismBase,
LensSegmentType,
OpticalTransmittance,
ChannelWidth,
PupilSize,
CornealSize,
AutorefractionRightEyeSequence,
AutorefractionLeftEyeSequence,
DistancePupillaryDistance,
NearPupillaryDistance,
IntermediatePupillaryDistance,
OtherPupillaryDistance,
KeratometryRightEyeSequence,
KeratometryLeftEyeSequence,
SteepKeratometricAxisSequence,
RadiusOfCurvature,
KeratometricPower,
KeratometricAxis,
FlatKeratometricAxisSequence,
BackgroundColor,
Optotype,
OptotypePresentation,
SubjectiveRefractionRightEyeSequence,
SubjectiveRefractionLeftEyeSequence,
AddNearSequence,
AddIntermediateSequence,
AddOtherSequence,
AddPower,
ViewingDistance,
VisualAcuityTypeCodeSequence,
VisualAcuityRightEyeSequence,
VisualAcuityLeftEyeSequence,
VisualAcuityBothEyesOpenSequence,
ViewingDistanceType,
VisualAcuityModifiers,
DecimalVisualAcuity,
OptotypeDetailedDefinition,
ReferencedRefractiveMeasurementsSequence,
SpherePower,
CylinderPower,
CornealTopographySurface,
CornealVertexLocation,
PupilCentroidXCoordinate,
PupilCentroidYCoordinate,
EquivalentPupilRadius,
CornealTopographyMapTypeCodeSequence,
VerticesOfTheOutlineOfPupil,
CornealTopographyMappingNormalsSequence,
MaximumCornealCurvatureSequence,
MaximumCornealCurvature,
MaximumCornealCurvatureLocation,
MinimumKeratometricSequence,
SimulatedKeratometricCylinderSequence,
AverageCornealPower,
CornealISValue,
AnalyzedArea,
SurfaceRegularityIndex,
SurfaceAsymmetryIndex,
CornealEccentricityIndex,
KeratoconusPredictionIndex,
DecimalPotentialVisualAcuity,
CornealTopographyMapQualityEvaluation,
SourceImageCornealProcessedDataSequence,
CornealPointLocation,
CornealPointEstimated,
AxialPower,
TangentialPower,
RefractivePower,
RelativeElevation,
CornealWavefront,
ImagedVolumeWidth,
ImagedVolumeHeight,
ImagedVolumeDepth,
TotalPixelMatrixColumns,
TotalPixelMatrixRows,
TotalPixelMatrixOriginSequence,
SpecimenLabelInImage,
FocusMethod,
ExtendedDepthOfField,
NumberOfFocalPlanes,
DistanceBetweenFocalPlanes,
RecommendedAbsentPixelCielabValue,
IlluminatorTypeCodeSequence,
ImageOrientationSlide,
OpticalPathSequence,
OpticalPathIdentifier,
OpticalPathDescription,
IlluminationColorCodeSequence,
SpecimenReferenceSequence,
CondenserLensPower,
ObjectiveLensPower,
ObjectiveLensNumericalAperture,
PaletteColorLookupTableSequence,
ReferencedImageNavigationSequence,
TopLeftHandCornerOfLocalizerArea,
BottomRightHandCornerOfLocalizerArea,
OpticalPathIdentificationSequence,
PlanePositionSlideSequence,
ColumnPositionInTotalImagePixelMatrix,
RowPositionInTotalImagePixelMatrix,
PixelOriginInterpretation,
CalibrationImage,
DeviceSequence,
ContainerComponentTypeCodeSequence,
ContainerComponentThickness,
DeviceLength,
ContainerComponentWidth,
DeviceDiameter,
DeviceDiameterUnits,
DeviceVolume,
InterMarkerDistance,
ContainerComponentMaterial,
ContainerComponentId,
ContainerComponentLength,
ContainerComponentDiameter,
ContainerComponentDescription,
DeviceDescription,
ContrastBolusIngredientPercentByVolume,
OctFocalDistance,
BeamSpotSize,
EffectiveRefractiveIndex,
OctAcquisitionDomain,
OctOpticalCenterWavelength,
AxialResolution,
RangingDepth,
ALineRate,
ALinesPerFrame,
CatheterRotationalRate,
ALinePixelSpacing,
ModeOfPercutaneousAccessSequence,
IntravascularOctFrameTypeSequence,
OctZOffsetApplied,
IntravascularFrameContentSequence,
IntravascularLongitudinalDistance,
IntravascularOctFrameContentSequence,
OctZOffsetCorrection,
CatheterDirectionOfRotation,
SeamLineLocation,
FirstALineLocation,
SeamLineIndex,
NumberOfPaddedALines,
InterpolationType,
RefractiveIndexApplied,
EnergyWindowVector,
NumberOfEnergyWindows,
EnergyWindowInformationSequence,
EnergyWindowRangeSequence,
EnergyWindowLowerLimit,
EnergyWindowUpperLimit,
RadiopharmaceuticalInformationSequence,
ResidualSyringeCounts,
EnergyWindowName,
DetectorVector,
NumberOfDetectors,
DetectorInformationSequence,
PhaseVector,
NumberOfPhases,
PhaseInformationSequence,
NumberOfFramesInPhase,
PhaseDelay,
PauseBetweenFrames,
PhaseDescription,
RotationVector,
NumberOfRotations,
RotationInformationSequence,
NumberOfFramesInRotation,
RRIntervalVector,
NumberOfRRIntervals,
GatedInformationSequence,
DataInformationSequence,
TimeSlotVector,
NumberOfTimeSlots,
TimeSlotInformationSequence,
TimeSlotTime,
SliceVector,
NumberOfSlices,
AngularViewVector,
TimeSliceVector,
NumberOfTimeSlices,
StartAngle,
TypeOfDetectorMotion,
TriggerVector,
NumberOfTriggersInPhase,
ViewCodeSequence,
ViewModifierCodeSequence,
RadionuclideCodeSequence,
AdministrationRouteCodeSequence,
RadiopharmaceuticalCodeSequence,
CalibrationDataSequence,
EnergyWindowNumber,
ImageId,
PatientOrientationCodeSequence,
PatientOrientationModifierCodeSequence,
PatientGantryRelationshipCodeSequence,
SliceProgressionDirection,
ScanProgressionDirection,
SeriesType,
Units,
CountsSource,
ReprojectionMethod,
SuvType,
RandomsCorrectionMethod,
AttenuationCorrectionMethod,
DecayCorrection,
ReconstructionMethod,
DetectorLinesOfResponseUsed,
ScatterCorrectionMethod,
AxialAcceptance,
AxialMash,
TransverseMash,
DetectorElementSize,
CoincidenceWindowWidth,
SecondaryCountsType,
FrameReferenceTime,
PrimaryPromptsCountsAccumulated,
SecondaryCountsAccumulated,
SliceSensitivityFactor,
DecayFactor,
DoseCalibrationFactor,
ScatterFractionFactor,
DeadTimeFactor,
ImageIndex,
CountsIncluded,
DeadTimeCorrectionFlag,
HistogramSequence,
HistogramNumberOfBins,
HistogramFirstBinValue,
HistogramLastBinValue,
HistogramBinWidth,
HistogramExplanation,
HistogramData,
SegmentationType,
SegmentSequence,
SegmentedPropertyCategoryCodeSequence,
SegmentNumber,
SegmentLabel,
SegmentDescription,
SegmentAlgorithmType,
SegmentAlgorithmName,
SegmentIdentificationSequence,
ReferencedSegmentNumber,
RecommendedDisplayGrayscaleValue,
RecommendedDisplayCielabValue,
MaximumFractionalValue,
SegmentedPropertyTypeCodeSequence,
SegmentationFractionalType,
SegmentedPropertyTypeModifierCodeSequence,
UsedSegmentsSequence,
TrackingId,
TrackingUid,
DeformableRegistrationSequence,
SourceFrameOfReferenceUid,
DeformableRegistrationGridSequence,
GridDimensions,
GridResolution,
VectorGridData,
PreDeformationMatrixRegistrationSequence,
PostDeformationMatrixRegistrationSequence,
NumberOfSurfaces,
SurfaceSequence,
SurfaceNumber,
SurfaceComments,
SurfaceProcessing,
SurfaceProcessingRatio,
SurfaceProcessingDescription,
RecommendedPresentationOpacity,
RecommendedPresentationType,
FiniteVolume,
Manifold,
SurfacePointsSequence,
SurfacePointsNormalsSequence,
SurfaceMeshPrimitivesSequence,
NumberOfSurfacePoints,
PointCoordinatesData,
PointPositionAccuracy,
MeanPointDistance,
MaximumPointDistance,
PointsBoundingBoxCoordinates,
AxisOfRotation,
CenterOfRotation,
NumberOfVectors,
VectorDimensionality,
VectorAccuracy,
VectorCoordinateData,
TrianglePointIndexList,
EdgePointIndexList,
VertexPointIndexList,
TriangleStripSequence,
TriangleFanSequence,
LineSequence,
PrimitivePointIndexList,
SurfaceCount,
ReferencedSurfaceSequence,
ReferencedSurfaceNumber,
SegmentSurfaceGenerationAlgorithmIdentificationSequence,
SegmentSurfaceSourceInstanceSequence,
AlgorithmFamilyCodeSequence,
AlgorithmNameCodeSequence,
AlgorithmVersion,
AlgorithmParameters,
FacetSequence,
SurfaceProcessingAlgorithmIdentificationSequence,
AlgorithmName,
RecommendedPointRadius,
RecommendedLineThickness,
LongPrimitivePointIndexList,
LongTrianglePointIndexList,
LongEdgePointIndexList,
LongVertexPointIndexList,
TrackSetSequence,
TrackSequence,
RecommendedDisplayCielabValueList,
TrackingAlgorithmIdentificationSequence,
TrackSetNumber,
TrackSetLabel,
TrackSetDescription,
TrackSetAnatomicalTypeCodeSequence,
MeasurementsSequence,
TrackSetStatisticsSequence,
FloatingPointValues,
TrackPointIndexList,
TrackStatisticsSequence,
MeasurementValuesSequence,
DiffusionAcquisitionCodeSequence,
DiffusionModelCodeSequence,
ImplantSize,
ImplantTemplateVersion,
ReplacedImplantTemplateSequence,
ImplantType,
DerivationImplantTemplateSequence,
OriginalImplantTemplateSequence,
EffectiveDatetime,
ImplantTargetAnatomySequence,
InformationFromManufacturerSequence,
NotificationFromManufacturerSequence,
InformationIssueDatetime,
InformationSummary,
ImplantRegulatoryDisapprovalCodeSequence,
OverallTemplateSpatialTolerance,
HpglDocumentSequence,
HpglDocumentId,
HpglDocumentLabel,
ViewOrientationCodeSequence,
ViewOrientationModifier,
HpglDocumentScaling,
HpglDocument,
HpglContourPenNumber,
HpglPenSequence,
HpglPenNumber,
HpglPenLabel,
HpglPenDescription,
RecommendedRotationPoint,
BoundingRectangle,
ImplantTemplate3dModelSurfaceNumber,
SurfaceModelDescriptionSequence,
SurfaceModelLabel,
SurfaceModelScalingFactor,
MaterialsCodeSequence,
CoatingMaterialsCodeSequence,
ImplantTypeCodeSequence,
FixationMethodCodeSequence,
MatingFeatureSetsSequence,
MatingFeatureSetId,
MatingFeatureSetLabel,
MatingFeatureSequence,
MatingFeatureId,
MatingFeatureDegreeOfFreedomSequence,
DegreeOfFreedomId,
DegreeOfFreedomType,
Tag2dMatingFeatureCoordinatesSequence,
ReferencedHpglDocumentId,
Tag2dMatingPoint,
Tag2dMatingAxes,
Tag2dDegreeOfFreedomSequence,
Tag3dDegreeOfFreedomAxis,
RangeOfFreedom,
Tag3dMatingPoint,
Tag3dMatingAxes,
Tag2dDegreeOfFreedomAxis,
PlanningLandmarkPointSequence,
PlanningLandmarkLineSequence,
PlanningLandmarkPlaneSequence,
PlanningLandmarkId,
PlanningLandmarkDescription,
PlanningLandmarkIdentificationCodeSequence,
Tag2dPointCoordinatesSequence,
Tag2dPointCoordinates,
Tag3dPointCoordinates,
Tag2dLineCoordinatesSequence,
Tag2dLineCoordinates,
Tag3dLineCoordinates,
Tag2dPlaneCoordinatesSequence,
Tag2dPlaneIntersection,
Tag3dPlaneOrigin,
Tag3dPlaneNormal,
GraphicAnnotationSequence,
GraphicLayer,
BoundingBoxAnnotationUnits,
AnchorPointAnnotationUnits,
GraphicAnnotationUnits,
UnformattedTextValue,
TextObjectSequence,
GraphicObjectSequence,
BoundingBoxTopLeftHandCorner,
BoundingBoxBottomRightHandCorner,
BoundingBoxTextHorizontalJustification,
AnchorPoint,
AnchorPointVisibility,
GraphicDimensions,
NumberOfGraphicPoints,
GraphicData,
GraphicType,
GraphicFilled,
ImageRotationRetired,
ImageHorizontalFlip,
ImageRotation,
DisplayedAreaTopLeftHandCornerTrial,
DisplayedAreaBottomRightHandCornerTrial,
DisplayedAreaTopLeftHandCorner,
DisplayedAreaBottomRightHandCorner,
DisplayedAreaSelectionSequence,
GraphicLayerSequence,
GraphicLayerOrder,
GraphicLayerRecommendedDisplayGrayscaleValue,
GraphicLayerRecommendedDisplayRgbValue,
GraphicLayerDescription,
ContentLabel,
ContentDescription,
PresentationCreationDate,
PresentationCreationTime,
ContentCreatorSName,
ContentCreatorSIdentificationCodeSequence,
AlternateContentDescriptionSequence,
PresentationSizeMode,
PresentationPixelSpacing,
PresentationPixelAspectRatio,
PresentationPixelMagnificationRatio,
GraphicGroupLabel,
GraphicGroupDescription,
CompoundGraphicSequence,
CompoundGraphicInstanceId,
FontName,
FontNameType,
CssFontName,
RotationAngle,
TextStyleSequence,
LineStyleSequence,
FillStyleSequence,
GraphicGroupSequence,
TextColorCielabValue,
HorizontalAlignment,
VerticalAlignment,
ShadowStyle,
ShadowOffsetX,
ShadowOffsetY,
ShadowColorCielabValue,
Underlined,
Bold,
Italic,
PatternOnColorCielabValue,
PatternOffColorCielabValue,
LineThickness,
LineDashingStyle,
LinePattern,
FillPattern,
FillMode,
ShadowOpacity,
GapLength,
DiameterOfVisibility,
RotationPoint,
TickAlignment,
ShowTickLabel,
TickLabelAlignment,
CompoundGraphicUnits,
PatternOnOpacity,
PatternOffOpacity,
MajorTicksSequence,
TickPosition,
TickLabel,
CompoundGraphicType,
GraphicGroupId,
ShapeType,
RegistrationSequence,
MatrixRegistrationSequence,
MatrixSequence,
FrameOfReferenceToDisplayedCoordinateSystemTransformationMatrix,
FrameOfReferenceTransformationMatrixType,
RegistrationTypeCodeSequence,
FiducialDescription,
FiducialIdentifier,
FiducialIdentifierCodeSequence,
ContourUncertaintyRadius,
UsedFiducialsSequence,
GraphicCoordinatesDataSequence,
FiducialUid,
FiducialSetSequence,
FiducialSequence,
GraphicLayerRecommendedDisplayCielabValue,
BlendingSequence,
RelativeOpacity,
ReferencedSpatialRegistrationSequence,
BlendingPosition,
PresentationDisplayCollectionUid,
PresentationSequenceCollectionUid,
PresentationSequencePositionIndex,
RenderedImageReferenceSequence,
VolumetricPresentationStateInputSequence,
PresentationInputType,
InputSequencePositionIndex,
Crop,
CroppingSpecificationIndex,
CompositingMethod,
VolumetricPresentationInputNumber,
ImageVolumeGeometry,
VolumeCroppingSequence,
VolumeCroppingMethod,
BoundingBoxCrop,
ObliqueCroppingPlaneSequence,
Plane,
PlaneNormal,
CroppingSpecificationNumber,
MultiPlanarReconstructionStyle,
MprThicknessType,
MprSlabThickness,
MprTopLeftHandCorner,
MprViewWidthDirection,
MprViewWidth,
NumberOfVolumetricCurvePoints,
VolumetricCurvePoints,
MprViewHeightDirection,
MprViewHeight,
PresentationStateClassificationComponentSequence,
ComponentType,
ComponentInputSequence,
VolumetricPresentationInputIndex,
PresentationStateCompositorComponentSequence,
WeightingTransferFunctionSequence,
WeightingLookupTableDescriptor,
WeightingLookupTableData,
VolumetricAnnotationSequence,
ReferencedStructuredContextSequence,
ReferencedContentItem,
VolumetricPresentationInputAnnotationSequence,
AnnotationClipping,
PresentationAnimationStyle,
RecommendedAnimationRate,
AnimationCurveSequence,
AnimationStepSize,
HangingProtocolName,
HangingProtocolDescription,
HangingProtocolLevel,
HangingProtocolCreator,
HangingProtocolCreationDatetime,
HangingProtocolDefinitionSequence,
HangingProtocolUserIdentificationCodeSequence,
HangingProtocolUserGroupName,
SourceHangingProtocolSequence,
NumberOfPriorsReferenced,
ImageSetsSequence,
ImageSetSelectorSequence,
ImageSetSelectorUsageFlag,
SelectorAttribute,
SelectorValueNumber,
TimeBasedImageSetsSequence,
ImageSetNumber,
ImageSetSelectorCategory,
RelativeTime,
RelativeTimeUnits,
AbstractPriorValue,
AbstractPriorCodeSequence,
ImageSetLabel,
SelectorAttributeVr,
SelectorSequencePointer,
SelectorSequencePointerPrivateCreator,
SelectorAttributePrivateCreator,
SelectorAeValue,
SelectorAsValue,
SelectorAtValue,
SelectorDaValue,
SelectorCsValue,
SelectorDtValue,
SelectorIsValue,
SelectorObValue,
SelectorLoValue,
SelectorOfValue,
SelectorLtValue,
SelectorOwValue,
SelectorPnValue,
SelectorTmValue,
SelectorShValue,
SelectorUnValue,
SelectorStValue,
SelectorUcValue,
SelectorUtValue,
SelectorUrValue,
SelectorDsValue,
SelectorOdValue,
SelectorFdValue,
SelectorOlValue,
SelectorFlValue,
SelectorUlValue,
SelectorUsValue,
SelectorSlValue,
SelectorSsValue,
SelectorUiValue,
SelectorCodeSequenceValue,
NumberOfScreens,
NominalScreenDefinitionSequence,
NumberOfVerticalPixels,
NumberOfHorizontalPixels,
DisplayEnvironmentSpatialPosition,
ScreenMinimumGrayscaleBitDepth,
ScreenMinimumColorBitDepth,
ApplicationMaximumRepaintTime,
DisplaySetsSequence,
DisplaySetNumber,
DisplaySetLabel,
DisplaySetPresentationGroup,
DisplaySetPresentationGroupDescription,
PartialDataDisplayHandling,
SynchronizedScrollingSequence,
DisplaySetScrollingGroup,
NavigationIndicatorSequence,
NavigationDisplaySet,
ReferenceDisplaySets,
ImageBoxesSequence,
ImageBoxNumber,
ImageBoxLayoutType,
ImageBoxTileHorizontalDimension,
ImageBoxTileVerticalDimension,
ImageBoxScrollDirection,
ImageBoxSmallScrollType,
ImageBoxSmallScrollAmount,
ImageBoxLargeScrollType,
ImageBoxLargeScrollAmount,
ImageBoxOverlapPriority,
CineRelativeToRealTime,
FilterOperationsSequence,
FilterByCategory,
FilterByAttributePresence,
FilterByOperator,
StructuredDisplayBackgroundCielabValue,
EmptyImageBoxCielabValue,
StructuredDisplayImageBoxSequence,
StructuredDisplayTextBoxSequence,
ReferencedFirstFrameSequence,
ImageBoxSynchronizationSequence,
SynchronizedImageBoxList,
TypeOfSynchronization,
BlendingOperationType,
ReformattingOperationType,
ReformattingThickness,
ReformattingInterval,
ReformattingOperationInitialViewDirection,
Tag3dRenderingType,
SortingOperationsSequence,
SortByCategory,
SortingDirection,
DisplaySetPatientOrientation,
VoiType,
PseudoColorType,
PseudoColorPaletteInstanceReferenceSequence,
ShowGrayscaleInverted,
ShowImageTrueSizeFlag,
ShowGraphicAnnotationFlag,
ShowPatientDemographicsFlag,
ShowAcquisitionTechniquesFlag,
DisplaySetHorizontalJustification,
DisplaySetVerticalJustification,
ContinuationStartMeterset,
ContinuationEndMeterset,
ProcedureStepState,
ProcedureStepProgressInformationSequence,
ProcedureStepProgress,
ProcedureStepProgressDescription,
ProcedureStepCommunicationsUriSequence,
ContactUri,
ContactDisplayName,
ProcedureStepDiscontinuationReasonCodeSequence,
BeamTaskSequence,
BeamTaskType,
BeamOrderIndexTrial,
AutosequenceFlag,
TableTopVerticalAdjustedPosition,
TableTopLongitudinalAdjustedPosition,
TableTopLateralAdjustedPosition,
PatientSupportAdjustedAngle,
TableTopEccentricAdjustedAngle,
TableTopPitchAdjustedAngle,
TableTopRollAdjustedAngle,
DeliveryVerificationImageSequence,
VerificationImageTiming,
DoubleExposureFlag,
DoubleExposureOrdering,
DoubleExposureMetersetTrial,
DoubleExposureFieldDeltaTrial,
RelatedReferenceRtImageSequence,
GeneralMachineVerificationSequence,
ConventionalMachineVerificationSequence,
IonMachineVerificationSequence,
FailedAttributesSequence,
OverriddenAttributesSequence,
ConventionalControlPointVerificationSequence,
IonControlPointVerificationSequence,
AttributeOccurrenceSequence,
AttributeOccurrencePointer,
AttributeItemSelector,
AttributeOccurrencePrivateCreator,
SelectorSequencePointerItems,
ScheduledProcedureStepPriority,
WorklistLabel,
ProcedureStepLabel,
ScheduledProcessingParametersSequence,
PerformedProcessingParametersSequence,
UnifiedProcedureStepPerformedProcedureSequence,
RelatedProcedureStepSequence,
ProcedureStepRelationshipType,
ReplacedProcedureStepSequence,
DeletionLock,
ReceivingAe,
RequestingAe,
ReasonForCancellation,
ScpStatus,
SubscriptionListStatus,
UnifiedProcedureStepListStatus,
BeamOrderIndex,
DoubleExposureMeterset,
DoubleExposureFieldDelta,
BrachyTaskSequence,
ContinuationStartTotalReferenceAirKerma,
ContinuationEndTotalReferenceAirKerma,
ContinuationPulseNumber,
ChannelDeliveryOrderSequence,
ReferencedChannelNumber,
StartCumulativeTimeWeight,
EndCumulativeTimeWeight,
OmittedChannelSequence,
ReasonForChannelOmission,
ReasonForChannelOmissionDescription,
ChannelDeliveryOrderIndex,
ChannelDeliveryContinuationSequence,
OmittedApplicationSetupSequence,
ImplantAssemblyTemplateName,
ImplantAssemblyTemplateIssuer,
ImplantAssemblyTemplateVersion,
ReplacedImplantAssemblyTemplateSequence,
ImplantAssemblyTemplateType,
OriginalImplantAssemblyTemplateSequence,
DerivationImplantAssemblyTemplateSequence,
ImplantAssemblyTemplateTargetAnatomySequence,
ProcedureTypeCodeSequence,
SurgicalTechnique,
ComponentTypesSequence,
ComponentTypeCodeSequence,
ExclusiveComponentType,
MandatoryComponentType,
ComponentSequence,
ComponentId,
ComponentAssemblySequence,
Component1ReferencedId,
Component1ReferencedMatingFeatureSetId,
Component1ReferencedMatingFeatureId,
Component2ReferencedId,
Component2ReferencedMatingFeatureSetId,
Component2ReferencedMatingFeatureId,
ImplantTemplateGroupName,
ImplantTemplateGroupDescription,
ImplantTemplateGroupIssuer,
ImplantTemplateGroupVersion,
ReplacedImplantTemplateGroupSequence,
ImplantTemplateGroupTargetAnatomySequence,
ImplantTemplateGroupMembersSequence,
ImplantTemplateGroupMemberId,
Tag3dImplantTemplateGroupMemberMatchingPoint,
Tag3dImplantTemplateGroupMemberMatchingAxes,
ImplantTemplateGroupMemberMatching2dCoordinatesSequence,
Tag2dImplantTemplateGroupMemberMatchingPoint,
Tag2dImplantTemplateGroupMemberMatchingAxes,
ImplantTemplateGroupVariationDimensionSequence,
ImplantTemplateGroupVariationDimensionName,
ImplantTemplateGroupVariationDimensionRankSequence,
ReferencedImplantTemplateGroupMemberId,
ImplantTemplateGroupVariationDimensionRank,
SurfaceScanAcquisitionTypeCodeSequence,
SurfaceScanModeCodeSequence,
RegistrationMethodCodeSequence,
ShotDurationTime,
ShotOffsetTime,
SurfacePointPresentationValueData,
SurfacePointColorCielabValueData,
UvMappingSequence,
TextureLabel,
UValueData,
VValueData,
ReferencedTextureSequence,
ReferencedSurfaceDataSequence,
AssessmentSummary,
AssessmentSummaryDescription,
AssessedSopInstanceSequence,
ReferencedComparisonSopInstanceSequence,
NumberOfAssessmentObservations,
AssessmentObservationsSequence,
ObservationSignificance,
ObservationDescription,
StructuredConstraintObservationSequence,
AssessedAttributeValueSequence,
AssessmentSetId,
AssessmentRequesterSequence,
SelectorAttributeName,
SelectorAttributeKeyword,
AssessmentTypeCodeSequence,
ObservationBasisCodeSequence,
AssessmentLabel,
ConstraintType,
SpecificationSelectionGuidance,
ConstraintValueSequence,
RecommendedDefaultValueSequence,
ConstraintViolationSignificance,
ConstraintViolationCondition,
StorageMediaFileSetId,
StorageMediaFileSetUid,
IconImageSequence,
TopicTitle,
TopicSubject,
TopicAuthor,
TopicKeywords,
SopInstanceStatus,
SopAuthorizationDatetime,
SopAuthorizationComment,
AuthorizationEquipmentCertificationNumber,
MacIdNumber,
MacCalculationTransferSyntaxUid,
MacAlgorithm,
DataElementsSigned,
DigitalSignatureUid,
DigitalSignatureDatetime,
CertificateType,
CertificateOfSigner,
Signature,
CertifiedTimestampType,
CertifiedTimestamp,
DigitalSignaturePurposeCodeSequence,
ReferencedDigitalSignatureSequence,
ReferencedSopInstanceMacSequence,
Mac,
EncryptedAttributesSequence,
EncryptedContentTransferSyntaxUid,
EncryptedContent,
ModifiedAttributesSequence,
OriginalAttributesSequence,
AttributeModificationDatetime,
ModifyingSystem,
SourceOfPreviousValues,
ReasonForTheAttributeModification,
NumberOfCopies,
PrinterConfigurationSequence,
PrintPriority,
MediumType,
FilmDestination,
FilmSessionLabel,
MemoryAllocation,
MaximumMemoryAllocation,
ColorImagePrintingFlag,
CollationFlag,
AnnotationFlag,
ImageOverlayFlag,
PresentationLutFlag,
ImageBoxPresentationLutFlag,
MemoryBitDepth,
PrintingBitDepth,
MediaInstalledSequence,
OtherMediaAvailableSequence,
SupportedImageDisplayFormatsSequence,
ReferencedFilmBoxSequence,
ReferencedStoredPrintSequence,
ImageDisplayFormat,
AnnotationDisplayFormatId,
FilmOrientation,
FilmSizeId,
PrinterResolutionId,
DefaultPrinterResolutionId,
MagnificationType,
SmoothingType,
DefaultMagnificationType,
OtherMagnificationTypesAvailable,
DefaultSmoothingType,
OtherSmoothingTypesAvailable,
BorderDensity,
EmptyImageDensity,
MinDensity,
MaxDensity,
Trim,
ConfigurationInformation,
ConfigurationInformationDescription,
MaximumCollatedFilms,
Illumination,
ReflectedAmbientLight,
PrinterPixelSpacing,
ReferencedFilmSessionSequence,
ReferencedImageBoxSequence,
ReferencedBasicAnnotationBoxSequence,
ImageBoxPosition,
Polarity,
RequestedImageSize,
RequestedDecimateCropBehavior,
RequestedResolutionId,
RequestedImageSizeFlag,
DecimateCropResult,
BasicGrayscaleImageSequence,
BasicColorImageSequence,
ReferencedImageOverlayBoxSequence,
ReferencedVoiLutBoxSequence,
AnnotationPosition,
TextString,
ReferencedOverlayPlaneSequence,
ReferencedOverlayPlaneGroups,
OverlayPixelDataSequence,
OverlayMagnificationType,
OverlaySmoothingType,
OverlayOrImageMagnification,
MagnifyToNumberOfColumns,
OverlayForegroundDensity,
OverlayBackgroundDensity,
OverlayMode,
ThresholdDensity,
ReferencedImageBoxSequenceRetired,
PresentationLutSequence,
PresentationLutShape,
ReferencedPresentationLutSequence,
PrintJobId,
ExecutionStatus,
ExecutionStatusInfo,
CreationDate,
CreationTime,
Originator,
DestinationAe,
OwnerId,
NumberOfFilms,
ReferencedPrintJobSequencePullStoredPrint,
PrinterStatus,
PrinterStatusInfo,
PrinterName,
PrintQueueId,
QueueStatus,
PrintJobDescriptionSequence,
ReferencedPrintJobSequence,
PrintManagementCapabilitiesSequence,
PrinterCharacteristicsSequence,
FilmBoxContentSequence,
ImageBoxContentSequence,
AnnotationContentSequence,
ImageOverlayBoxContentSequence,
PresentationLutContentSequence,
ProposedStudySequence,
OriginalImageSequence,
LabelUsingInformationExtractedFromInstances,
LabelText,
LabelStyleSelection,
MediaDisposition,
BarcodeValue,
BarcodeSymbology,
AllowMediaSplitting,
IncludeNonDicomObjects,
IncludeDisplayApplication,
PreserveCompositeInstancesAfterMediaCreation,
TotalNumberOfPiecesOfMediaCreated,
RequestedMediaApplicationProfile,
ReferencedStorageMediaSequence,
FailureAttributes,
AllowLossyCompression,
RequestPriority,
RtImageLabel,
RtImageName,
RtImageDescription,
ReportedValuesOrigin,
RtImagePlane,
XRayImageReceptorTranslation,
XRayImageReceptorAngle,
RtImageOrientation,
ImagePlanePixelSpacing,
RtImagePosition,
RadiationMachineName,
RadiationMachineSad,
RadiationMachineSsd,
RtImageSid,
SourceToReferenceObjectDistance,
FractionNumber,
ExposureSequence,
MetersetExposure,
DiaphragmPosition,
FluenceMapSequence,
FluenceDataSource,
FluenceDataScale,
PrimaryFluenceModeSequence,
FluenceMode,
FluenceModeId,
DvhType,
DoseUnits,
DoseType,
SpatialTransformOfDose,
DoseComment,
NormalizationPoint,
DoseSummationType,
GridFrameOffsetVector,
DoseGridScaling,
RtDoseRoiSequence,
DoseValue,
TissueHeterogeneityCorrection,
DvhNormalizationPoint,
DvhNormalizationDoseValue,
DvhSequence,
DvhDoseScaling,
DvhVolumeUnits,
DvhNumberOfBins,
DvhData,
DvhReferencedRoiSequence,
DvhRoiContributionType,
DvhMinimumDose,
DvhMaximumDose,
DvhMeanDose,
StructureSetLabel,
StructureSetName,
StructureSetDescription,
StructureSetDate,
StructureSetTime,
ReferencedFrameOfReferenceSequence,
RtReferencedStudySequence,
RtReferencedSeriesSequence,
ContourImageSequence,
PredecessorStructureSetSequence,
StructureSetRoiSequence,
RoiNumber,
ReferencedFrameOfReferenceUid,
RoiName,
RoiDescription,
RoiDisplayColor,
RoiVolume,
RtRelatedRoiSequence,
RtRoiRelationship,
RoiGenerationAlgorithm,
RoiGenerationDescription,
RoiContourSequence,
ContourSequence,
ContourGeometricType,
ContourSlabThickness,
ContourOffsetVector,
NumberOfContourPoints,
ContourNumber,
AttachedContours,
ContourData,
RtRoiObservationsSequence,
ObservationNumber,
ReferencedRoiNumber,
RoiObservationLabel,
RtRoiIdentificationCodeSequence,
RoiObservationDescription,
RelatedRtRoiObservationsSequence,
RtRoiInterpretedType,
RoiInterpreter,
RoiPhysicalPropertiesSequence,
RoiPhysicalProperty,
RoiPhysicalPropertyValue,
RoiElementalCompositionSequence,
RoiElementalCompositionAtomicNumber,
RoiElementalCompositionAtomicMassFraction,
AdditionalRtRoiIdentificationCodeSequence,
FrameOfReferenceRelationshipSequence,
RelatedFrameOfReferenceUid,
FrameOfReferenceTransformationType,
FrameOfReferenceTransformationMatrix,
FrameOfReferenceTransformationComment,
MeasuredDoseReferenceSequence,
MeasuredDoseDescription,
MeasuredDoseType,
MeasuredDoseValue,
TreatmentSessionBeamSequence,
TreatmentSessionIonBeamSequence,
CurrentFractionNumber,
TreatmentControlPointDate,
TreatmentControlPointTime,
TreatmentTerminationStatus,
TreatmentTerminationCode,
TreatmentVerificationStatus,
ReferencedTreatmentRecordSequence,
SpecifiedPrimaryMeterset,
SpecifiedSecondaryMeterset,
DeliveredPrimaryMeterset,
DeliveredSecondaryMeterset,
SpecifiedTreatmentTime,
DeliveredTreatmentTime,
ControlPointDeliverySequence,
IonControlPointDeliverySequence,
SpecifiedMeterset,
DeliveredMeterset,
MetersetRateSet,
MetersetRateDelivered,
ScanSpotMetersetsDelivered,
DoseRateDelivered,
TreatmentSummaryCalculatedDoseReferenceSequence,
CumulativeDoseToDoseReference,
FirstTreatmentDate,
MostRecentTreatmentDate,
NumberOfFractionsDelivered,
OverrideSequence,
ParameterSequencePointer,
OverrideParameterPointer,
ParameterItemIndex,
MeasuredDoseReferenceNumber,
ParameterPointer,
OverrideReason,
CorrectedParameterSequence,
CorrectionValue,
CalculatedDoseReferenceSequence,
CalculatedDoseReferenceNumber,
CalculatedDoseReferenceDescription,
CalculatedDoseReferenceDoseValue,
StartMeterset,
EndMeterset,
ReferencedMeasuredDoseReferenceSequence,
ReferencedMeasuredDoseReferenceNumber,
ReferencedCalculatedDoseReferenceSequence,
ReferencedCalculatedDoseReferenceNumber,
BeamLimitingDeviceLeafPairsSequence,
RecordedWedgeSequence,
RecordedCompensatorSequence,
RecordedBlockSequence,
TreatmentSummaryMeasuredDoseReferenceSequence,
RecordedSnoutSequence,
RecordedRangeShifterSequence,
RecordedLateralSpreadingDeviceSequence,
RecordedRangeModulatorSequence,
RecordedSourceSequence,
SourceSerialNumber,
TreatmentSessionApplicationSetupSequence,
ApplicationSetupCheck,
RecordedBrachyAccessoryDeviceSequence,
ReferencedBrachyAccessoryDeviceNumber,
RecordedChannelSequence,
SpecifiedChannelTotalTime,
DeliveredChannelTotalTime,
SpecifiedNumberOfPulses,
DeliveredNumberOfPulses,
SpecifiedPulseRepetitionInterval,
DeliveredPulseRepetitionInterval,
RecordedSourceApplicatorSequence,
ReferencedSourceApplicatorNumber,
RecordedChannelShieldSequence,
ReferencedChannelShieldNumber,
BrachyControlPointDeliveredSequence,
SafePositionExitDate,
SafePositionExitTime,
SafePositionReturnDate,
SafePositionReturnTime,
PulseSpecificBrachyControlPointDeliveredSequence,
PulseNumber,
BrachyPulseControlPointDeliveredSequence,
CurrentTreatmentStatus,
TreatmentStatusComment,
FractionGroupSummarySequence,
ReferencedFractionNumber,
FractionGroupType,
BeamStopperPosition,
FractionStatusSummarySequence,
TreatmentDate,
TreatmentTime,
RtPlanLabel,
RtPlanName,
RtPlanDescription,
RtPlanDate,
RtPlanTime,
TreatmentProtocols,
PlanIntent,
TreatmentSites,
RtPlanGeometry,
PrescriptionDescription,
DoseReferenceSequence,
DoseReferenceNumber,
DoseReferenceUid,
DoseReferenceStructureType,
NominalBeamEnergyUnit,
DoseReferenceDescription,
DoseReferencePointCoordinates,
NominalPriorDose,
DoseReferenceType,
ConstraintWeight,
DeliveryWarningDose,
DeliveryMaximumDose,
TargetMinimumDose,
TargetPrescriptionDose,
TargetMaximumDose,
TargetUnderdoseVolumeFraction,
OrganAtRiskFullVolumeDose,
OrganAtRiskLimitDose,
OrganAtRiskMaximumDose,
OrganAtRiskOverdoseVolumeFraction,
ToleranceTableSequence,
ToleranceTableNumber,
ToleranceTableLabel,
GantryAngleTolerance,
BeamLimitingDeviceAngleTolerance,
BeamLimitingDeviceToleranceSequence,
BeamLimitingDevicePositionTolerance,
SnoutPositionTolerance,
PatientSupportAngleTolerance,
TableTopEccentricAngleTolerance,
TableTopPitchAngleTolerance,
TableTopRollAngleTolerance,
TableTopVerticalPositionTolerance,
TableTopLongitudinalPositionTolerance,
TableTopLateralPositionTolerance,
RtPlanRelationship,
FractionGroupSequence,
FractionGroupNumber,
FractionGroupDescription,
NumberOfFractionsPlanned,
NumberOfFractionPatternDigitsPerDay,
RepeatFractionCycleLength,
FractionPattern,
NumberOfBeams,
BeamDoseSpecificationPoint,
BeamDose,
BeamMeterset,
BeamDosePointDepth,
BeamDosePointEquivalentDepth,
BeamDosePointSsd,
BeamDoseMeaning,
BeamDoseVerificationControlPointSequence,
AverageBeamDosePointDepth,
AverageBeamDosePointEquivalentDepth,
AverageBeamDosePointSsd,
BeamDoseType,
AlternateBeamDose,
AlternateBeamDoseType,
NumberOfBrachyApplicationSetups,
BrachyApplicationSetupDoseSpecificationPoint,
BrachyApplicationSetupDose,
BeamSequence,
TreatmentMachineName,
PrimaryDosimeterUnit,
SourceAxisDistance,
BeamLimitingDeviceSequence,
RtBeamLimitingDeviceType,
SourceToBeamLimitingDeviceDistance,
IsocenterToBeamLimitingDeviceDistance,
NumberOfLeafJawPairs,
LeafPositionBoundaries,
BeamNumber,
BeamName,
BeamDescription,
BeamType,
BeamDeliveryDurationLimit,
RadiationType,
HighDoseTechniqueType,
ReferenceImageNumber,
PlannedVerificationImageSequence,
ImagingDeviceSpecificAcquisitionParameters,
TreatmentDeliveryType,
NumberOfWedges,
WedgeSequence,
WedgeNumber,
WedgeType,
WedgeId,
WedgeAngle,
WedgeFactor,
TotalWedgeTrayWaterEquivalentThickness,
WedgeOrientation,
IsocenterToWedgeTrayDistance,
SourceToWedgeTrayDistance,
WedgeThinEdgePosition,
BolusId,
BolusDescription,
EffectiveWedgeAngle,
NumberOfCompensators,
MaterialId,
TotalCompensatorTrayFactor,
CompensatorSequence,
CompensatorNumber,
CompensatorId,
SourceToCompensatorTrayDistance,
CompensatorRows,
CompensatorColumns,
CompensatorPixelSpacing,
CompensatorPosition,
CompensatorTransmissionData,
CompensatorThicknessData,
NumberOfBoli,
CompensatorType,
CompensatorTrayId,
NumberOfBlocks,
TotalBlockTrayFactor,
TotalBlockTrayWaterEquivalentThickness,
BlockSequence,
BlockTrayId,
SourceToBlockTrayDistance,
IsocenterToBlockTrayDistance,
BlockType,
AccessoryCode,
BlockDivergence,
BlockMountingPosition,
BlockNumber,
BlockName,
BlockThickness,
BlockTransmission,
BlockNumberOfPoints,
BlockData,
ApplicatorSequence,
ApplicatorId,
ApplicatorType,
ApplicatorDescription,
CumulativeDoseReferenceCoefficient,
FinalCumulativeMetersetWeight,
NumberOfControlPoints,
ControlPointSequence,
ControlPointIndex,
NominalBeamEnergy,
DoseRateSet,
WedgePositionSequence,
WedgePosition,
BeamLimitingDevicePositionSequence,
LeafJawPositions,
GantryAngle,
GantryRotationDirection,
BeamLimitingDeviceAngle,
BeamLimitingDeviceRotationDirection,
PatientSupportAngle,
PatientSupportRotationDirection,
TableTopEccentricAxisDistance,
TableTopEccentricAngle,
TableTopEccentricRotationDirection,
TableTopVerticalPosition,
TableTopLongitudinalPosition,
TableTopLateralPosition,
IsocenterPosition,
SurfaceEntryPoint,
SourceToSurfaceDistance,
AverageBeamDosePointSourceToExternalContourDistance,
SourceToExternalContourDistance,
ExternalContourEntryPoint,
CumulativeMetersetWeight,
TableTopPitchAngle,
TableTopPitchRotationDirection,
TableTopRollAngle,
TableTopRollRotationDirection,
HeadFixationAngle,
GantryPitchAngle,
GantryPitchRotationDirection,
GantryPitchAngleTolerance,
FixationEye,
ChairHeadFramePosition,
HeadFixationAngleTolerance,
ChairHeadFramePositionTolerance,
FixationLightAzimuthalAngleTolerance,
FixationLightPolarAngleTolerance,
PatientSetupSequence,
PatientSetupNumber,
PatientSetupLabel,
PatientAdditionalPosition,
FixationDeviceSequence,
FixationDeviceType,
FixationDeviceLabel,
FixationDeviceDescription,
FixationDevicePosition,
FixationDevicePitchAngle,
FixationDeviceRollAngle,
ShieldingDeviceSequence,
ShieldingDeviceType,
ShieldingDeviceLabel,
ShieldingDeviceDescription,
ShieldingDevicePosition,
SetupTechnique,
SetupTechniqueDescription,
SetupDeviceSequence,
SetupDeviceType,
SetupDeviceLabel,
SetupDeviceDescription,
SetupDeviceParameter,
SetupReferenceDescription,
TableTopVerticalSetupDisplacement,
TableTopLongitudinalSetupDisplacement,
TableTopLateralSetupDisplacement,
BrachyTreatmentTechnique,
BrachyTreatmentType,
TreatmentMachineSequence,
SourceSequence,
SourceNumber,
SourceType,
SourceManufacturer,
ActiveSourceDiameter,
ActiveSourceLength,
SourceModelId,
SourceDescription,
SourceEncapsulationNominalThickness,
SourceEncapsulationNominalTransmission,
SourceIsotopeName,
SourceIsotopeHalfLife,
SourceStrengthUnits,
ReferenceAirKermaRate,
SourceStrength,
SourceStrengthReferenceDate,
SourceStrengthReferenceTime,
ApplicationSetupSequence,
ApplicationSetupType,
ApplicationSetupNumber,
ApplicationSetupName,
ApplicationSetupManufacturer,
TemplateNumber,
TemplateType,
TemplateName,
TotalReferenceAirKerma,
BrachyAccessoryDeviceSequence,
BrachyAccessoryDeviceNumber,
BrachyAccessoryDeviceId,
BrachyAccessoryDeviceType,
BrachyAccessoryDeviceName,
BrachyAccessoryDeviceNominalThickness,
BrachyAccessoryDeviceNominalTransmission,
ChannelSequence,
ChannelNumber,
ChannelLength,
ChannelTotalTime,
SourceMovementType,
NumberOfPulses,
PulseRepetitionInterval,
SourceApplicatorNumber,
SourceApplicatorId,
SourceApplicatorType,
SourceApplicatorName,
SourceApplicatorLength,
SourceApplicatorManufacturer,
SourceApplicatorWallNominalThickness,
SourceApplicatorWallNominalTransmission,
SourceApplicatorStepSize,
TransferTubeNumber,
TransferTubeLength,
ChannelShieldSequence,
ChannelShieldNumber,
ChannelShieldId,
ChannelShieldName,
ChannelShieldNominalThickness,
ChannelShieldNominalTransmission,
FinalCumulativeTimeWeight,
BrachyControlPointSequence,
ControlPointRelativePosition,
ControlPoint3dPosition,
CumulativeTimeWeight,
CompensatorDivergence,
CompensatorMountingPosition,
SourceToCompensatorDistance,
TotalCompensatorTrayWaterEquivalentThickness,
IsocenterToCompensatorTrayDistance,
CompensatorColumnOffset,
IsocenterToCompensatorDistances,
CompensatorRelativeStoppingPowerRatio,
CompensatorMillingToolDiameter,
IonRangeCompensatorSequence,
CompensatorDescription,
RadiationMassNumber,
RadiationAtomicNumber,
RadiationChargeState,
ScanMode,
ModulatedScanModeType,
VirtualSourceAxisDistances,
SnoutSequence,
SnoutPosition,
SnoutId,
NumberOfRangeShifters,
RangeShifterSequence,
RangeShifterNumber,
RangeShifterId,
RangeShifterType,
RangeShifterDescription,
NumberOfLateralSpreadingDevices,
LateralSpreadingDeviceSequence,
LateralSpreadingDeviceNumber,
LateralSpreadingDeviceId,
LateralSpreadingDeviceType,
LateralSpreadingDeviceDescription,
LateralSpreadingDeviceWaterEquivalentThickness,
NumberOfRangeModulators,
RangeModulatorSequence,
RangeModulatorNumber,
RangeModulatorId,
RangeModulatorType,
RangeModulatorDescription,
BeamCurrentModulationId,
PatientSupportType,
PatientSupportId,
PatientSupportAccessoryCode,
TrayAccessoryCode,
FixationLightAzimuthalAngle,
FixationLightPolarAngle,
MetersetRate,
RangeShifterSettingsSequence,
RangeShifterSetting,
IsocenterToRangeShifterDistance,
RangeShifterWaterEquivalentThickness,
LateralSpreadingDeviceSettingsSequence,
LateralSpreadingDeviceSetting,
IsocenterToLateralSpreadingDeviceDistance,
RangeModulatorSettingsSequence,
RangeModulatorGatingStartValue,
RangeModulatorGatingStopValue,
RangeModulatorGatingStartWaterEquivalentThickness,
RangeModulatorGatingStopWaterEquivalentThickness,
IsocenterToRangeModulatorDistance,
ScanSpotTuneId,
ScanSpotPrescribedIndices,
NumberOfScanSpotPositions,
ScanSpotReordered,
ScanSpotPositionMap,
ScanSpotReorderingAllowed,
ScanSpotMetersetWeights,
ScanningSpotSize,
NumberOfPaintings,
IonToleranceTableSequence,
IonBeamSequence,
IonBeamLimitingDeviceSequence,
IonBlockSequence,
IonControlPointSequence,
IonWedgeSequence,
IonWedgePositionSequence,
ReferencedSetupImageSequence,
SetupImageComment,
MotionSynchronizationSequence,
ControlPointOrientation,
GeneralAccessorySequence,
GeneralAccessoryId,
GeneralAccessoryDescription,
GeneralAccessoryType,
GeneralAccessoryNumber,
SourceToGeneralAccessoryDistance,
ApplicatorGeometrySequence,
ApplicatorApertureShape,
ApplicatorOpening,
ApplicatorOpeningX,
ApplicatorOpeningY,
SourceToApplicatorMountingPositionDistance,
NumberOfBlockSlabItems,
BlockSlabSequence,
BlockSlabThickness,
BlockSlabNumber,
DeviceMotionControlSequence,
DeviceMotionExecutionMode,
DeviceMotionObservationMode,
DeviceMotionParameterCodeSequence,
DistalDepthFraction,
DistalDepth,
NominalRangeModulationFractions,
NominalRangeModulatedRegionDepths,
DepthDoseParametersSequence,
DeliveredDepthDoseParametersSequence,
DeliveredDistalDepthFraction,
DeliveredDistalDepth,
DeliveredNominalRangeModulationFractions,
DeliveredNominalRangeModulatedRegionDepths,
DeliveredReferenceDoseDefinition,
ReferenceDoseDefinition,
ReferencedRtPlanSequence,
ReferencedBeamSequence,
ReferencedBeamNumber,
ReferencedReferenceImageNumber,
StartCumulativeMetersetWeight,
EndCumulativeMetersetWeight,
ReferencedBrachyApplicationSetupSequence,
ReferencedBrachyApplicationSetupNumber,
ReferencedSourceNumber,
ReferencedFractionGroupSequence,
ReferencedFractionGroupNumber,
ReferencedVerificationImageSequence,
ReferencedReferenceImageSequence,
ReferencedDoseReferenceSequence,
ReferencedDoseReferenceNumber,
BrachyReferencedDoseReferenceSequence,
ReferencedStructureSetSequence,
ReferencedPatientSetupNumber,
ReferencedDoseSequence,
ReferencedToleranceTableNumber,
ReferencedBolusSequence,
ReferencedWedgeNumber,
ReferencedCompensatorNumber,
ReferencedBlockNumber,
ReferencedControlPointIndex,
ReferencedControlPointSequence,
ReferencedStartControlPointIndex,
ReferencedStopControlPointIndex,
ReferencedRangeShifterNumber,
ReferencedLateralSpreadingDeviceNumber,
ReferencedRangeModulatorNumber,
OmittedBeamTaskSequence,
ReasonForOmission,
ReasonForOmissionDescription,
ApprovalStatus,
ReviewDate,
ReviewTime,
ReviewerName,
Arbitrary,
TextComments,
ResultsId,
ResultsIdIssuer,
ReferencedInterpretationSequence,
ReportProductionStatusTrial,
InterpretationRecordedDate,
InterpretationRecordedTime,
InterpretationRecorder,
ReferenceToRecordedSound,
InterpretationTranscriptionDate,
InterpretationTranscriptionTime,
InterpretationTranscriber,
InterpretationText,
InterpretationAuthor,
InterpretationApproverSequence,
InterpretationApprovalDate,
InterpretationApprovalTime,
PhysicianApprovingInterpretation,
InterpretationDiagnosisDescription,
InterpretationDiagnosisCodeSequence,
ResultsDistributionListSequence,
DistributionName,
DistributionAddress,
InterpretationId,
InterpretationIdIssuer,
InterpretationTypeId,
InterpretationStatusId,
Impressions,
ResultsComments,
LowEnergyDetectors,
HighEnergyDetectors,
DetectorGeometrySequence,
ThreatRoiVoxelSequence,
ThreatRoiBase,
ThreatRoiExtents,
ThreatRoiBitmap,
RouteSegmentId,
GantryType,
OoiOwnerType,
RouteSegmentSequence,
PotentialThreatObjectId,
ThreatSequence,
ThreatCategory,
ThreatCategoryDescription,
AtdAbilityAssessment,
AtdAssessmentFlag,
AtdAssessmentProbability,
Mass,
Density,
ZEffective,
BoardingPassId,
CenterOfMass,
CenterOfPto,
BoundingPolygon,
RouteSegmentStartLocationId,
RouteSegmentEndLocationId,
RouteSegmentLocationIdType,
AbortReason,
VolumeOfPto,
AbortFlag,
RouteSegmentStartTime,
RouteSegmentEndTime,
TdrType,
InternationalRouteSegment,
ThreatDetectionAlgorithmAndVersion,
AssignedLocation,
AlarmDecisionTime,
AlarmDecision,
NumberOfTotalObjects,
NumberOfAlarmObjects,
PtoRepresentationSequence,
AtdAssessmentSequence,
TipType,
Version,
OoiOwnerCreationTime,
OoiType,
OoiSize,
AcquisitionStatus,
BasisMaterialsCodeSequence,
PhantomType,
OoiOwnerSequence,
ScanType,
ItineraryId,
ItineraryIdType,
ItineraryIdAssigningAuthority,
RouteId,
RouteIdAssigningAuthority,
InboundArrivalType,
CarrierId,
CarrierIdAssigningAuthority,
SourceOrientation,
SourcePosition,
BeltHeight,
AlgorithmRoutingCodeSequence,
TransportClassification,
OoiTypeDescriptor,
TotalProcessingTime,
DetectorCalibrationData,
AdditionalScreeningPerformed,
AdditionalInspectionSelectionCriteria,
AdditionalInspectionMethodSequence,
AitDeviceType,
QrMeasurementsSequence,
TargetMaterialSequence,
SnrThreshold,
ImageScaleRepresentation,
ReferencedPtoSequence,
ReferencedTdrInstanceSequence,
PtoLocationDescription,
AnomalyLocatorIndicatorSequence,
AnomalyLocatorIndicator,
PtoRegionSequence,
InspectionSelectionCriteria,
SecondaryInspectionMethodSequence,
PrcsToRcsOrientation,
MacParametersSequence,
SharedFunctionalGroupsSequence,
PerFrameFunctionalGroupsSequence,
WaveformSequence,
ChannelMinimumValue,
ChannelMaximumValue,
WaveformBitsAllocated,
WaveformSampleInterpretation,
WaveformPaddingValue,
WaveformData,
FirstOrderPhaseCorrectionAngle,
SpectroscopyData,
FloatPixelData,
DoubleFloatPixelData,
PixelData,
CoefficientsSdvn,
CoefficientsSdhn,
CoefficientsSddn,
DigitalSignaturesSequence,
DataSetTrailingPadding,
Item,
ItemDelimitationItem,
SequenceDelimitationItem,
Unknown(i64),
}
impl TryFrom<i64> for Dicom_Tags {
type Error = KError;
fn try_from(flag: i64) -> KResult<Dicom_Tags> {
match flag {
131072 => Ok(Dicom_Tags::FileMetaInformationGroupLength),
131073 => Ok(Dicom_Tags::FileMetaInformationVersion),
131074 => Ok(Dicom_Tags::MediaStorageSopClassUid),
131075 => Ok(Dicom_Tags::MediaStorageSopInstanceUid),
131088 => Ok(Dicom_Tags::TransferSyntaxUid),
131090 => Ok(Dicom_Tags::ImplementationClassUid),
131091 => Ok(Dicom_Tags::ImplementationVersionName),
131094 => Ok(Dicom_Tags::SourceApplicationEntityTitle),
131095 => Ok(Dicom_Tags::SendingApplicationEntityTitle),
131096 => Ok(Dicom_Tags::ReceivingApplicationEntityTitle),
131328 => Ok(Dicom_Tags::PrivateInformationCreatorUid),
131330 => Ok(Dicom_Tags::PrivateInformation),
266544 => Ok(Dicom_Tags::FileSetId),
266561 => Ok(Dicom_Tags::FileSetDescriptorFileId),
266562 => Ok(Dicom_Tags::SpecificCharacterSetOfFileSetDescriptorFile),
266752 => Ok(Dicom_Tags::OffsetOfTheFirstDirectoryRecordOfTheRootDirectoryEntity),
266754 => Ok(Dicom_Tags::OffsetOfTheLastDirectoryRecordOfTheRootDirectoryEntity),
266770 => Ok(Dicom_Tags::FileSetConsistencyFlag),
266784 => Ok(Dicom_Tags::DirectoryRecordSequence),
267264 => Ok(Dicom_Tags::OffsetOfTheNextDirectoryRecord),
267280 => Ok(Dicom_Tags::RecordInUseFlag),
267296 => Ok(Dicom_Tags::OffsetOfReferencedLowerLevelDirectoryEntity),
267312 => Ok(Dicom_Tags::DirectoryRecordType),
267314 => Ok(Dicom_Tags::PrivateRecordUid),
267520 => Ok(Dicom_Tags::ReferencedFileId),
267524 => Ok(Dicom_Tags::MrdrDirectoryRecordOffset),
267536 => Ok(Dicom_Tags::ReferencedSopClassUidInFile),
267537 => Ok(Dicom_Tags::ReferencedSopInstanceUidInFile),
267538 => Ok(Dicom_Tags::ReferencedTransferSyntaxUidInFile),
267546 => Ok(Dicom_Tags::ReferencedRelatedGeneralSopClassUidInFile),
267776 => Ok(Dicom_Tags::NumberOfReferences),
524289 => Ok(Dicom_Tags::LengthToEnd),
524293 => Ok(Dicom_Tags::SpecificCharacterSet),
524294 => Ok(Dicom_Tags::LanguageCodeSequence),
524296 => Ok(Dicom_Tags::ImageType),
524304 => Ok(Dicom_Tags::RecognitionCode),
524306 => Ok(Dicom_Tags::InstanceCreationDate),
524307 => Ok(Dicom_Tags::InstanceCreationTime),
524308 => Ok(Dicom_Tags::InstanceCreatorUid),
524309 => Ok(Dicom_Tags::InstanceCoercionDatetime),
524310 => Ok(Dicom_Tags::SopClassUid),
524312 => Ok(Dicom_Tags::SopInstanceUid),
524314 => Ok(Dicom_Tags::RelatedGeneralSopClassUid),
524315 => Ok(Dicom_Tags::OriginalSpecializedSopClassUid),
524320 => Ok(Dicom_Tags::StudyDate),
524321 => Ok(Dicom_Tags::SeriesDate),
524322 => Ok(Dicom_Tags::AcquisitionDate),
524323 => Ok(Dicom_Tags::ContentDate),
524324 => Ok(Dicom_Tags::OverlayDate),
524325 => Ok(Dicom_Tags::CurveDate),
524330 => Ok(Dicom_Tags::AcquisitionDatetime),
524336 => Ok(Dicom_Tags::StudyTime),
524337 => Ok(Dicom_Tags::SeriesTime),
524338 => Ok(Dicom_Tags::AcquisitionTime),
524339 => Ok(Dicom_Tags::ContentTime),
524340 => Ok(Dicom_Tags::OverlayTime),
524341 => Ok(Dicom_Tags::CurveTime),
524352 => Ok(Dicom_Tags::DataSetType),
524353 => Ok(Dicom_Tags::DataSetSubtype),
524354 => Ok(Dicom_Tags::NuclearMedicineSeriesType),
524368 => Ok(Dicom_Tags::AccessionNumber),
524369 => Ok(Dicom_Tags::IssuerOfAccessionNumberSequence),
524370 => Ok(Dicom_Tags::QueryRetrieveLevel),
524371 => Ok(Dicom_Tags::QueryRetrieveView),
524372 => Ok(Dicom_Tags::RetrieveAeTitle),
524373 => Ok(Dicom_Tags::StationAeTitle),
524374 => Ok(Dicom_Tags::InstanceAvailability),
524376 => Ok(Dicom_Tags::FailedSopInstanceUidList),
524384 => Ok(Dicom_Tags::Modality),
524385 => Ok(Dicom_Tags::ModalitiesInStudy),
524386 => Ok(Dicom_Tags::SopClassesInStudy),
524388 => Ok(Dicom_Tags::ConversionType),
524392 => Ok(Dicom_Tags::PresentationIntentType),
524400 => Ok(Dicom_Tags::Manufacturer),
524416 => Ok(Dicom_Tags::InstitutionName),
524417 => Ok(Dicom_Tags::InstitutionAddress),
524418 => Ok(Dicom_Tags::InstitutionCodeSequence),
524432 => Ok(Dicom_Tags::ReferringPhysicianSName),
524434 => Ok(Dicom_Tags::ReferringPhysicianSAddress),
524436 => Ok(Dicom_Tags::ReferringPhysicianSTelephoneNumbers),
524438 => Ok(Dicom_Tags::ReferringPhysicianIdentificationSequence),
524444 => Ok(Dicom_Tags::ConsultingPhysicianSName),
524445 => Ok(Dicom_Tags::ConsultingPhysicianIdentificationSequence),
524544 => Ok(Dicom_Tags::CodeValue),
524545 => Ok(Dicom_Tags::ExtendedCodeValue),
524546 => Ok(Dicom_Tags::CodingSchemeDesignator),
524547 => Ok(Dicom_Tags::CodingSchemeVersion),
524548 => Ok(Dicom_Tags::CodeMeaning),
524549 => Ok(Dicom_Tags::MappingResource),
524550 => Ok(Dicom_Tags::ContextGroupVersion),
524551 => Ok(Dicom_Tags::ContextGroupLocalVersion),
524552 => Ok(Dicom_Tags::ExtendedCodeMeaning),
524555 => Ok(Dicom_Tags::ContextGroupExtensionFlag),
524556 => Ok(Dicom_Tags::CodingSchemeUid),
524557 => Ok(Dicom_Tags::ContextGroupExtensionCreatorUid),
524559 => Ok(Dicom_Tags::ContextIdentifier),
524560 => Ok(Dicom_Tags::CodingSchemeIdentificationSequence),
524562 => Ok(Dicom_Tags::CodingSchemeRegistry),
524564 => Ok(Dicom_Tags::CodingSchemeExternalId),
524565 => Ok(Dicom_Tags::CodingSchemeName),
524566 => Ok(Dicom_Tags::CodingSchemeResponsibleOrganization),
524567 => Ok(Dicom_Tags::ContextUid),
524568 => Ok(Dicom_Tags::MappingResourceUid),
524569 => Ok(Dicom_Tags::LongCodeValue),
524576 => Ok(Dicom_Tags::UrnCodeValue),
524577 => Ok(Dicom_Tags::EquivalentCodeSequence),
524578 => Ok(Dicom_Tags::MappingResourceName),
524579 => Ok(Dicom_Tags::ContextGroupIdentificationSequence),
524580 => Ok(Dicom_Tags::MappingResourceIdentificationSequence),
524801 => Ok(Dicom_Tags::TimezoneOffsetFromUtc),
525056 => Ok(Dicom_Tags::PrivateDataElementCharacteristicsSequence),
525057 => Ok(Dicom_Tags::PrivateGroupReference),
525058 => Ok(Dicom_Tags::PrivateCreatorReference),
525059 => Ok(Dicom_Tags::BlockIdentifyingInformationStatus),
525060 => Ok(Dicom_Tags::NonidentifyingPrivateElements),
525061 => Ok(Dicom_Tags::DeidentificationActionSequence),
525062 => Ok(Dicom_Tags::IdentifyingPrivateElements),
525063 => Ok(Dicom_Tags::DeidentificationAction),
528384 => Ok(Dicom_Tags::NetworkId),
528400 => Ok(Dicom_Tags::StationName),
528432 => Ok(Dicom_Tags::StudyDescription),
528434 => Ok(Dicom_Tags::ProcedureCodeSequence),
528446 => Ok(Dicom_Tags::SeriesDescription),
528447 => Ok(Dicom_Tags::SeriesDescriptionCodeSequence),
528448 => Ok(Dicom_Tags::InstitutionalDepartmentName),
528456 => Ok(Dicom_Tags::PhysicianSOfRecord),
528457 => Ok(Dicom_Tags::PhysicianSOfRecordIdentificationSequence),
528464 => Ok(Dicom_Tags::PerformingPhysicianSName),
528466 => Ok(Dicom_Tags::PerformingPhysicianIdentificationSequence),
528480 => Ok(Dicom_Tags::NameOfPhysicianSReadingStudy),
528482 => Ok(Dicom_Tags::PhysicianSReadingStudyIdentificationSequence),
528496 => Ok(Dicom_Tags::OperatorsName),
528498 => Ok(Dicom_Tags::OperatorIdentificationSequence),
528512 => Ok(Dicom_Tags::AdmittingDiagnosesDescription),
528516 => Ok(Dicom_Tags::AdmittingDiagnosesCodeSequence),
528528 => Ok(Dicom_Tags::ManufacturerSModelName),
528640 => Ok(Dicom_Tags::ReferencedResultsSequence),
528656 => Ok(Dicom_Tags::ReferencedStudySequence),
528657 => Ok(Dicom_Tags::ReferencedPerformedProcedureStepSequence),
528661 => Ok(Dicom_Tags::ReferencedSeriesSequence),
528672 => Ok(Dicom_Tags::ReferencedPatientSequence),
528677 => Ok(Dicom_Tags::ReferencedVisitSequence),
528688 => Ok(Dicom_Tags::ReferencedOverlaySequence),
528692 => Ok(Dicom_Tags::ReferencedStereometricInstanceSequence),
528698 => Ok(Dicom_Tags::ReferencedWaveformSequence),
528704 => Ok(Dicom_Tags::ReferencedImageSequence),
528709 => Ok(Dicom_Tags::ReferencedCurveSequence),
528714 => Ok(Dicom_Tags::ReferencedInstanceSequence),
528715 => Ok(Dicom_Tags::ReferencedRealWorldValueMappingInstanceSequence),
528720 => Ok(Dicom_Tags::ReferencedSopClassUid),
528725 => Ok(Dicom_Tags::ReferencedSopInstanceUid),
528730 => Ok(Dicom_Tags::SopClassesSupported),
528736 => Ok(Dicom_Tags::ReferencedFrameNumber),
528737 => Ok(Dicom_Tags::SimpleFrameList),
528738 => Ok(Dicom_Tags::CalculatedFrameList),
528739 => Ok(Dicom_Tags::TimeRange),
528740 => Ok(Dicom_Tags::FrameExtractionSequence),
528743 => Ok(Dicom_Tags::MultiFrameSourceSopInstanceUid),
528784 => Ok(Dicom_Tags::RetrieveUrl),
528789 => Ok(Dicom_Tags::TransactionUid),
528790 => Ok(Dicom_Tags::WarningReason),
528791 => Ok(Dicom_Tags::FailureReason),
528792 => Ok(Dicom_Tags::FailedSopSequence),
528793 => Ok(Dicom_Tags::ReferencedSopSequence),
528794 => Ok(Dicom_Tags::OtherFailuresSequence),
528896 => Ok(Dicom_Tags::StudiesContainingOtherReferencedInstancesSequence),
528976 => Ok(Dicom_Tags::RelatedSeriesSequence),
532752 => Ok(Dicom_Tags::LossyImageCompressionRetired),
532753 => Ok(Dicom_Tags::DerivationDescription),
532754 => Ok(Dicom_Tags::SourceImageSequence),
532768 => Ok(Dicom_Tags::StageName),
532770 => Ok(Dicom_Tags::StageNumber),
532772 => Ok(Dicom_Tags::NumberOfStages),
532775 => Ok(Dicom_Tags::ViewName),
532776 => Ok(Dicom_Tags::ViewNumber),
532777 => Ok(Dicom_Tags::NumberOfEventTimers),
532778 => Ok(Dicom_Tags::NumberOfViewsInStage),
532784 => Ok(Dicom_Tags::EventElapsedTimeS),
532786 => Ok(Dicom_Tags::EventTimerNameS),
532787 => Ok(Dicom_Tags::EventTimerSequence),
532788 => Ok(Dicom_Tags::EventTimeOffset),
532789 => Ok(Dicom_Tags::EventCodeSequence),
532802 => Ok(Dicom_Tags::StartTrim),
532803 => Ok(Dicom_Tags::StopTrim),
532804 => Ok(Dicom_Tags::RecommendedDisplayFrameRate),
532992 => Ok(Dicom_Tags::TransducerPosition),
532996 => Ok(Dicom_Tags::TransducerOrientation),
533000 => Ok(Dicom_Tags::AnatomicStructure),
533016 => Ok(Dicom_Tags::AnatomicRegionSequence),
533024 => Ok(Dicom_Tags::AnatomicRegionModifierSequence),
533032 => Ok(Dicom_Tags::PrimaryAnatomicStructureSequence),
533033 => Ok(Dicom_Tags::AnatomicStructureSpaceOrRegionSequence),
533040 => Ok(Dicom_Tags::PrimaryAnatomicStructureModifierSequence),
533056 => Ok(Dicom_Tags::TransducerPositionSequence),
533058 => Ok(Dicom_Tags::TransducerPositionModifierSequence),
533060 => Ok(Dicom_Tags::TransducerOrientationSequence),
533062 => Ok(Dicom_Tags::TransducerOrientationModifierSequence),
533073 => Ok(Dicom_Tags::AnatomicStructureSpaceOrRegionCodeSequenceTrial),
533075 => Ok(Dicom_Tags::AnatomicPortalOfEntranceCodeSequenceTrial),
533077 => Ok(Dicom_Tags::AnatomicApproachDirectionCodeSequenceTrial),
533078 => Ok(Dicom_Tags::AnatomicPerspectiveDescriptionTrial),
533079 => Ok(Dicom_Tags::AnatomicPerspectiveCodeSequenceTrial),
533080 => Ok(Dicom_Tags::AnatomicLocationOfExaminingInstrumentDescriptionTrial),
533081 => Ok(Dicom_Tags::AnatomicLocationOfExaminingInstrumentCodeSequenceTrial),
533082 => Ok(Dicom_Tags::AnatomicStructureSpaceOrRegionModifierCodeSequenceTrial),
533084 => Ok(Dicom_Tags::OnAxisBackgroundAnatomicStructureCodeSequenceTrial),
536577 => Ok(Dicom_Tags::AlternateRepresentationSequence),
536592 => Ok(Dicom_Tags::IrradiationEventUid),
536593 => Ok(Dicom_Tags::SourceIrradiationEventSequence),
536594 => Ok(Dicom_Tags::RadiopharmaceuticalAdministrationEventUid),
540672 => Ok(Dicom_Tags::IdentifyingComments),
561159 => Ok(Dicom_Tags::FrameType),
561298 => Ok(Dicom_Tags::ReferencedImageEvidenceSequence),
561441 => Ok(Dicom_Tags::ReferencedRawDataSequence),
561443 => Ok(Dicom_Tags::CreatorVersionUid),
561444 => Ok(Dicom_Tags::DerivationImageSequence),
561492 => Ok(Dicom_Tags::SourceImageEvidenceSequence),
561669 => Ok(Dicom_Tags::PixelPresentation),
561670 => Ok(Dicom_Tags::VolumetricProperties),
561671 => Ok(Dicom_Tags::VolumeBasedCalculationTechnique),
561672 => Ok(Dicom_Tags::ComplexImageComponent),
561673 => Ok(Dicom_Tags::AcquisitionContrast),
561685 => Ok(Dicom_Tags::DerivationCodeSequence),
561719 => Ok(Dicom_Tags::ReferencedPresentationStateSequence),
562192 => Ok(Dicom_Tags::ReferencedOtherPlaneSequence),
562264 => Ok(Dicom_Tags::FrameDisplaySequence),
562265 => Ok(Dicom_Tags::RecommendedDisplayFrameRateInFloat),
562272 => Ok(Dicom_Tags::SkipFrameRangeFlag),
1048592 => Ok(Dicom_Tags::PatientSName),
1048608 => Ok(Dicom_Tags::PatientId),
1048609 => Ok(Dicom_Tags::IssuerOfPatientId),
1048610 => Ok(Dicom_Tags::TypeOfPatientId),
1048612 => Ok(Dicom_Tags::IssuerOfPatientIdQualifiersSequence),
1048614 => Ok(Dicom_Tags::SourcePatientGroupIdentificationSequence),
1048615 => Ok(Dicom_Tags::GroupOfPatientsIdentificationSequence),
1048616 => Ok(Dicom_Tags::SubjectRelativePositionInImage),
1048624 => Ok(Dicom_Tags::PatientSBirthDate),
1048626 => Ok(Dicom_Tags::PatientSBirthTime),
1048627 => Ok(Dicom_Tags::PatientSBirthDateInAlternativeCalendar),
1048628 => Ok(Dicom_Tags::PatientSDeathDateInAlternativeCalendar),
1048629 => Ok(Dicom_Tags::PatientSAlternativeCalendar),
1048640 => Ok(Dicom_Tags::PatientSSex),
1048656 => Ok(Dicom_Tags::PatientSInsurancePlanCodeSequence),
1048833 => Ok(Dicom_Tags::PatientSPrimaryLanguageCodeSequence),
1048834 => Ok(Dicom_Tags::PatientSPrimaryLanguageModifierCodeSequence),
1049088 => Ok(Dicom_Tags::QualityControlSubject),
1049089 => Ok(Dicom_Tags::QualityControlSubjectTypeCodeSequence),
1049106 => Ok(Dicom_Tags::StrainDescription),
1049107 => Ok(Dicom_Tags::StrainNomenclature),
1049108 => Ok(Dicom_Tags::StrainStockNumber),
1049109 => Ok(Dicom_Tags::StrainSourceRegistryCodeSequence),
1049110 => Ok(Dicom_Tags::StrainStockSequence),
1049111 => Ok(Dicom_Tags::StrainSource),
1049112 => Ok(Dicom_Tags::StrainAdditionalInformation),
1049113 => Ok(Dicom_Tags::StrainCodeSequence),
1052672 => Ok(Dicom_Tags::OtherPatientIds),
1052673 => Ok(Dicom_Tags::OtherPatientNames),
1052674 => Ok(Dicom_Tags::OtherPatientIdsSequence),
1052677 => Ok(Dicom_Tags::PatientSBirthName),
1052688 => Ok(Dicom_Tags::PatientSAge),
1052704 => Ok(Dicom_Tags::PatientSSize),
1052705 => Ok(Dicom_Tags::PatientSSizeCodeSequence),
1052720 => Ok(Dicom_Tags::PatientSWeight),
1052736 => Ok(Dicom_Tags::PatientSAddress),
1052752 => Ok(Dicom_Tags::InsurancePlanIdentification),
1052768 => Ok(Dicom_Tags::PatientSMotherSBirthName),
1052800 => Ok(Dicom_Tags::MilitaryRank),
1052801 => Ok(Dicom_Tags::BranchOfService),
1052816 => Ok(Dicom_Tags::MedicalRecordLocator),
1052928 => Ok(Dicom_Tags::ReferencedPatientPhotoSequence),
1056768 => Ok(Dicom_Tags::MedicalAlerts),
1057040 => Ok(Dicom_Tags::Allergies),
1057104 => Ok(Dicom_Tags::CountryOfResidence),
1057106 => Ok(Dicom_Tags::RegionOfResidence),
1057108 => Ok(Dicom_Tags::PatientSTelephoneNumbers),
1057109 => Ok(Dicom_Tags::PatientSTelecomInformation),
1057120 => Ok(Dicom_Tags::EthnicGroup),
1057152 => Ok(Dicom_Tags::Occupation),
1057184 => Ok(Dicom_Tags::SmokingStatus),
1057200 => Ok(Dicom_Tags::AdditionalPatientHistory),
1057216 => Ok(Dicom_Tags::PregnancyStatus),
1057232 => Ok(Dicom_Tags::LastMenstrualDate),
1057264 => Ok(Dicom_Tags::PatientSReligiousPreference),
1057281 => Ok(Dicom_Tags::PatientSpeciesDescription),
1057282 => Ok(Dicom_Tags::PatientSpeciesCodeSequence),
1057283 => Ok(Dicom_Tags::PatientSSexNeutered),
1057296 => Ok(Dicom_Tags::AnatomicalOrientationType),
1057426 => Ok(Dicom_Tags::PatientBreedDescription),
1057427 => Ok(Dicom_Tags::PatientBreedCodeSequence),
1057428 => Ok(Dicom_Tags::BreedRegistrationSequence),
1057429 => Ok(Dicom_Tags::BreedRegistrationNumber),
1057430 => Ok(Dicom_Tags::BreedRegistryCodeSequence),
1057431 => Ok(Dicom_Tags::ResponsiblePerson),
1057432 => Ok(Dicom_Tags::ResponsiblePersonRole),
1057433 => Ok(Dicom_Tags::ResponsibleOrganization),
1064960 => Ok(Dicom_Tags::PatientComments),
1086513 => Ok(Dicom_Tags::ExaminedBodyThickness),
1179664 => Ok(Dicom_Tags::ClinicalTrialSponsorName),
1179680 => Ok(Dicom_Tags::ClinicalTrialProtocolId),
1179681 => Ok(Dicom_Tags::ClinicalTrialProtocolName),
1179696 => Ok(Dicom_Tags::ClinicalTrialSiteId),
1179697 => Ok(Dicom_Tags::ClinicalTrialSiteName),
1179712 => Ok(Dicom_Tags::ClinicalTrialSubjectId),
1179714 => Ok(Dicom_Tags::ClinicalTrialSubjectReadingId),
1179728 => Ok(Dicom_Tags::ClinicalTrialTimePointId),
1179729 => Ok(Dicom_Tags::ClinicalTrialTimePointDescription),
1179744 => Ok(Dicom_Tags::ClinicalTrialCoordinatingCenterName),
1179746 => Ok(Dicom_Tags::PatientIdentityRemoved),
1179747 => Ok(Dicom_Tags::DeIdentificationMethod),
1179748 => Ok(Dicom_Tags::DeIdentificationMethodCodeSequence),
1179761 => Ok(Dicom_Tags::ClinicalTrialSeriesId),
1179762 => Ok(Dicom_Tags::ClinicalTrialSeriesDescription),
1179777 => Ok(Dicom_Tags::ClinicalTrialProtocolEthicsCommitteeName),
1179778 => Ok(Dicom_Tags::ClinicalTrialProtocolEthicsCommitteeApprovalNumber),
1179779 => Ok(Dicom_Tags::ConsentForClinicalTrialUseSequence),
1179780 => Ok(Dicom_Tags::DistributionType),
1179781 => Ok(Dicom_Tags::ConsentForDistributionFlag),
1310755 => Ok(Dicom_Tags::CadFileFormat),
1310756 => Ok(Dicom_Tags::ComponentReferenceSystem),
1310757 => Ok(Dicom_Tags::ComponentManufacturingProcedure),
1310760 => Ok(Dicom_Tags::ComponentManufacturer),
1310768 => Ok(Dicom_Tags::MaterialThickness),
1310770 => Ok(Dicom_Tags::MaterialPipeDiameter),
1310772 => Ok(Dicom_Tags::MaterialIsolationDiameter),
1310786 => Ok(Dicom_Tags::MaterialGrade),
1310788 => Ok(Dicom_Tags::MaterialPropertiesDescription),
1310789 => Ok(Dicom_Tags::MaterialPropertiesFileFormatRetired),
1310790 => Ok(Dicom_Tags::MaterialNotes),
1310800 => Ok(Dicom_Tags::ComponentShape),
1310802 => Ok(Dicom_Tags::CurvatureType),
1310804 => Ok(Dicom_Tags::OuterDiameter),
1310806 => Ok(Dicom_Tags::InnerDiameter),
1310976 => Ok(Dicom_Tags::ComponentWelderIds),
1310977 => Ok(Dicom_Tags::SecondaryApprovalStatus),
1310978 => Ok(Dicom_Tags::SecondaryReviewDate),
1310979 => Ok(Dicom_Tags::SecondaryReviewTime),
1310980 => Ok(Dicom_Tags::SecondaryReviewerName),
1310981 => Ok(Dicom_Tags::RepairId),
1310982 => Ok(Dicom_Tags::MultipleComponentApprovalSequence),
1310983 => Ok(Dicom_Tags::OtherApprovalStatus),
1310984 => Ok(Dicom_Tags::OtherSecondaryApprovalStatus),
1314832 => Ok(Dicom_Tags::ActualEnvironmentalConditions),
1314848 => Ok(Dicom_Tags::ExpiryDate),
1314880 => Ok(Dicom_Tags::EnvironmentalConditions),
1318914 => Ok(Dicom_Tags::EvaluatorSequence),
1318916 => Ok(Dicom_Tags::EvaluatorNumber),
1318918 => Ok(Dicom_Tags::EvaluatorName),
1318920 => Ok(Dicom_Tags::EvaluationAttempt),
1318930 => Ok(Dicom_Tags::IndicationSequence),
1318932 => Ok(Dicom_Tags::IndicationNumber),
1318934 => Ok(Dicom_Tags::IndicationLabel),
1318936 => Ok(Dicom_Tags::IndicationDescription),
1318938 => Ok(Dicom_Tags::IndicationType),
1318940 => Ok(Dicom_Tags::IndicationDisposition),
1318942 => Ok(Dicom_Tags::IndicationRoiSequence),
1318960 => Ok(Dicom_Tags::IndicationPhysicalPropertySequence),
1318962 => Ok(Dicom_Tags::PropertyLabel),
1319426 => Ok(Dicom_Tags::CoordinateSystemNumberOfAxes),
1319428 => Ok(Dicom_Tags::CoordinateSystemAxesSequence),
1319430 => Ok(Dicom_Tags::CoordinateSystemAxisDescription),
1319432 => Ok(Dicom_Tags::CoordinateSystemDataSetMapping),
1319434 => Ok(Dicom_Tags::CoordinateSystemAxisNumber),
1319436 => Ok(Dicom_Tags::CoordinateSystemAxisType),
1319438 => Ok(Dicom_Tags::CoordinateSystemAxisUnits),
1319440 => Ok(Dicom_Tags::CoordinateSystemAxisValues),
1319456 => Ok(Dicom_Tags::CoordinateSystemTransformSequence),
1319458 => Ok(Dicom_Tags::TransformDescription),
1319460 => Ok(Dicom_Tags::TransformNumberOfAxes),
1319462 => Ok(Dicom_Tags::TransformOrderOfAxes),
1319464 => Ok(Dicom_Tags::TransformedAxisUnits),
1319466 => Ok(Dicom_Tags::CoordinateSystemTransformRotationAndScaleMatrix),
1319468 => Ok(Dicom_Tags::CoordinateSystemTransformTranslationMatrix),
1323025 => Ok(Dicom_Tags::InternalDetectorFrameTime),
1323026 => Ok(Dicom_Tags::NumberOfFramesIntegrated),
1323040 => Ok(Dicom_Tags::DetectorTemperatureSequence),
1323042 => Ok(Dicom_Tags::SensorName),
1323044 => Ok(Dicom_Tags::HorizontalOffsetOfSensor),
1323046 => Ok(Dicom_Tags::VerticalOffsetOfSensor),
1323048 => Ok(Dicom_Tags::SensorTemperature),
1323072 => Ok(Dicom_Tags::DarkCurrentSequence),
1323088 => Ok(Dicom_Tags::DarkCurrentCounts),
1323104 => Ok(Dicom_Tags::GainCorrectionReferenceSequence),
1323120 => Ok(Dicom_Tags::AirCounts),
1323121 => Ok(Dicom_Tags::KvUsedInGainCalibration),
1323122 => Ok(Dicom_Tags::MaUsedInGainCalibration),
1323123 => Ok(Dicom_Tags::NumberOfFramesUsedForIntegration),
1323124 => Ok(Dicom_Tags::FilterMaterialUsedInGainCalibration),
1323125 => Ok(Dicom_Tags::FilterThicknessUsedInGainCalibration),
1323126 => Ok(Dicom_Tags::DateOfGainCalibration),
1323127 => Ok(Dicom_Tags::TimeOfGainCalibration),
1323136 => Ok(Dicom_Tags::BadPixelImage),
1323161 => Ok(Dicom_Tags::CalibrationNotes),
1327106 => Ok(Dicom_Tags::PulserEquipmentSequence),
1327108 => Ok(Dicom_Tags::PulserType),
1327110 => Ok(Dicom_Tags::PulserNotes),
1327112 => Ok(Dicom_Tags::ReceiverEquipmentSequence),
1327114 => Ok(Dicom_Tags::AmplifierType),
1327116 => Ok(Dicom_Tags::ReceiverNotes),
1327118 => Ok(Dicom_Tags::PreAmplifierEquipmentSequence),
1327119 => Ok(Dicom_Tags::PreAmplifierNotes),
1327120 => Ok(Dicom_Tags::TransmitTransducerSequence),
1327121 => Ok(Dicom_Tags::ReceiveTransducerSequence),
1327122 => Ok(Dicom_Tags::NumberOfElements),
1327123 => Ok(Dicom_Tags::ElementShape),
1327124 => Ok(Dicom_Tags::ElementDimensionA),
1327125 => Ok(Dicom_Tags::ElementDimensionB),
1327126 => Ok(Dicom_Tags::ElementPitchA),
1327127 => Ok(Dicom_Tags::MeasuredBeamDimensionA),
1327128 => Ok(Dicom_Tags::MeasuredBeamDimensionB),
1327129 => Ok(Dicom_Tags::LocationOfMeasuredBeamDiameter),
1327130 => Ok(Dicom_Tags::NominalFrequency),
1327131 => Ok(Dicom_Tags::MeasuredCenterFrequency),
1327132 => Ok(Dicom_Tags::MeasuredBandwidth),
1327133 => Ok(Dicom_Tags::ElementPitchB),
1327136 => Ok(Dicom_Tags::PulserSettingsSequence),
1327138 => Ok(Dicom_Tags::PulseWidth),
1327140 => Ok(Dicom_Tags::ExcitationFrequency),
1327142 => Ok(Dicom_Tags::ModulationType),
1327144 => Ok(Dicom_Tags::Damping),
1327152 => Ok(Dicom_Tags::ReceiverSettingsSequence),
1327153 => Ok(Dicom_Tags::AcquiredSoundpathLength),
1327154 => Ok(Dicom_Tags::AcquisitionCompressionType),
1327155 => Ok(Dicom_Tags::AcquisitionSampleSize),
1327156 => Ok(Dicom_Tags::RectifierSmoothing),
1327157 => Ok(Dicom_Tags::DacSequence),
1327158 => Ok(Dicom_Tags::DacType),
1327160 => Ok(Dicom_Tags::DacGainPoints),
1327162 => Ok(Dicom_Tags::DacTimePoints),
1327164 => Ok(Dicom_Tags::DacAmplitude),
1327168 => Ok(Dicom_Tags::PreAmplifierSettingsSequence),
1327184 => Ok(Dicom_Tags::TransmitTransducerSettingsSequence),
1327185 => Ok(Dicom_Tags::ReceiveTransducerSettingsSequence),
1327186 => Ok(Dicom_Tags::IncidentAngle),
1327188 => Ok(Dicom_Tags::CouplingTechnique),
1327190 => Ok(Dicom_Tags::CouplingMedium),
1327191 => Ok(Dicom_Tags::CouplingVelocity),
1327192 => Ok(Dicom_Tags::ProbeCenterLocationX),
1327193 => Ok(Dicom_Tags::ProbeCenterLocationZ),
1327194 => Ok(Dicom_Tags::SoundPathLength),
1327196 => Ok(Dicom_Tags::DelayLawIdentifier),
1327200 => Ok(Dicom_Tags::GateSettingsSequence),
1327202 => Ok(Dicom_Tags::GateThreshold),
1327204 => Ok(Dicom_Tags::VelocityOfSound),
1327216 => Ok(Dicom_Tags::CalibrationSettingsSequence),
1327218 => Ok(Dicom_Tags::CalibrationProcedure),
1327220 => Ok(Dicom_Tags::ProcedureVersion),
1327222 => Ok(Dicom_Tags::ProcedureCreationDate),
1327224 => Ok(Dicom_Tags::ProcedureExpirationDate),
1327226 => Ok(Dicom_Tags::ProcedureLastModifiedDate),
1327228 => Ok(Dicom_Tags::CalibrationTime),
1327230 => Ok(Dicom_Tags::CalibrationDate),
1327232 => Ok(Dicom_Tags::ProbeDriveEquipmentSequence),
1327233 => Ok(Dicom_Tags::DriveType),
1327234 => Ok(Dicom_Tags::ProbeDriveNotes),
1327235 => Ok(Dicom_Tags::DriveProbeSequence),
1327236 => Ok(Dicom_Tags::ProbeInductance),
1327237 => Ok(Dicom_Tags::ProbeResistance),
1327238 => Ok(Dicom_Tags::ReceiveProbeSequence),
1327239 => Ok(Dicom_Tags::ProbeDriveSettingsSequence),
1327240 => Ok(Dicom_Tags::BridgeResistors),
1327241 => Ok(Dicom_Tags::ProbeOrientationAngle),
1327243 => Ok(Dicom_Tags::UserSelectedGainY),
1327244 => Ok(Dicom_Tags::UserSelectedPhase),
1327245 => Ok(Dicom_Tags::UserSelectedOffsetX),
1327246 => Ok(Dicom_Tags::UserSelectedOffsetY),
1327249 => Ok(Dicom_Tags::ChannelSettingsSequence),
1327250 => Ok(Dicom_Tags::ChannelThreshold),
1327258 => Ok(Dicom_Tags::ScannerSettingsSequence),
1327259 => Ok(Dicom_Tags::ScanProcedure),
1327260 => Ok(Dicom_Tags::TranslationRateX),
1327261 => Ok(Dicom_Tags::TranslationRateY),
1327263 => Ok(Dicom_Tags::ChannelOverlap),
1327264 => Ok(Dicom_Tags::ImageQualityIndicatorType),
1327265 => Ok(Dicom_Tags::ImageQualityIndicatorMaterial),
1327266 => Ok(Dicom_Tags::ImageQualityIndicatorSize),
1331202 => Ok(Dicom_Tags::LinacEnergy),
1331204 => Ok(Dicom_Tags::LinacOutput),
1331456 => Ok(Dicom_Tags::ActiveAperture),
1331457 => Ok(Dicom_Tags::TotalAperture),
1331458 => Ok(Dicom_Tags::ApertureElevation),
1331459 => Ok(Dicom_Tags::MainLobeAngle),
1331460 => Ok(Dicom_Tags::MainRoofAngle),
1331461 => Ok(Dicom_Tags::ConnectorType),
1331462 => Ok(Dicom_Tags::WedgeModelNumber),
1331463 => Ok(Dicom_Tags::WedgeAngleFloat),
1331464 => Ok(Dicom_Tags::WedgeRoofAngle),
1331465 => Ok(Dicom_Tags::WedgeElement1Position),
1331466 => Ok(Dicom_Tags::WedgeMaterialVelocity),
1331467 => Ok(Dicom_Tags::WedgeMaterial),
1331468 => Ok(Dicom_Tags::WedgeOffsetZ),
1331469 => Ok(Dicom_Tags::WedgeOriginOffsetX),
1331470 => Ok(Dicom_Tags::WedgeTimeDelay),
1331471 => Ok(Dicom_Tags::WedgeName),
1331472 => Ok(Dicom_Tags::WedgeManufacturerName),
1331473 => Ok(Dicom_Tags::WedgeDescription),
1331474 => Ok(Dicom_Tags::NominalBeamAngle),
1331475 => Ok(Dicom_Tags::WedgeOffsetX),
1331476 => Ok(Dicom_Tags::WedgeOffsetY),
1331477 => Ok(Dicom_Tags::WedgeTotalLength),
1331478 => Ok(Dicom_Tags::WedgeInContactLength),
1331479 => Ok(Dicom_Tags::WedgeFrontGap),
1331480 => Ok(Dicom_Tags::WedgeTotalHeight),
1331481 => Ok(Dicom_Tags::WedgeFrontHeight),
1331482 => Ok(Dicom_Tags::WedgeRearHeight),
1331483 => Ok(Dicom_Tags::WedgeTotalWidth),
1331484 => Ok(Dicom_Tags::WedgeInContactWidth),
1331485 => Ok(Dicom_Tags::WedgeChamferHeight),
1331486 => Ok(Dicom_Tags::WedgeCurve),
1331487 => Ok(Dicom_Tags::RadiusAlongTheWedge),
1572880 => Ok(Dicom_Tags::ContrastBolusAgent),
1572882 => Ok(Dicom_Tags::ContrastBolusAgentSequence),
1572883 => Ok(Dicom_Tags::ContrastBolusT1Relaxivity),
1572884 => Ok(Dicom_Tags::ContrastBolusAdministrationRouteSequence),
1572885 => Ok(Dicom_Tags::BodyPartExamined),
1572896 => Ok(Dicom_Tags::ScanningSequence),
1572897 => Ok(Dicom_Tags::SequenceVariant),
1572898 => Ok(Dicom_Tags::ScanOptions),
1572899 => Ok(Dicom_Tags::MrAcquisitionType),
1572900 => Ok(Dicom_Tags::SequenceName),
1572901 => Ok(Dicom_Tags::AngioFlag),
1572902 => Ok(Dicom_Tags::InterventionDrugInformationSequence),
1572903 => Ok(Dicom_Tags::InterventionDrugStopTime),
1572904 => Ok(Dicom_Tags::InterventionDrugDose),
1572905 => Ok(Dicom_Tags::InterventionDrugCodeSequence),
1572906 => Ok(Dicom_Tags::AdditionalDrugSequence),
1572912 => Ok(Dicom_Tags::Radionuclide),
1572913 => Ok(Dicom_Tags::Radiopharmaceutical),
1572914 => Ok(Dicom_Tags::EnergyWindowCenterline),
1572915 => Ok(Dicom_Tags::EnergyWindowTotalWidth),
1572916 => Ok(Dicom_Tags::InterventionDrugName),
1572917 => Ok(Dicom_Tags::InterventionDrugStartTime),
1572918 => Ok(Dicom_Tags::InterventionSequence),
1572919 => Ok(Dicom_Tags::TherapyType),
1572920 => Ok(Dicom_Tags::InterventionStatus),
1572921 => Ok(Dicom_Tags::TherapyDescription),
1572922 => Ok(Dicom_Tags::InterventionDescription),
1572928 => Ok(Dicom_Tags::CineRate),
1572930 => Ok(Dicom_Tags::InitialCineRunState),
1572944 => Ok(Dicom_Tags::SliceThickness),
1572960 => Ok(Dicom_Tags::Kvp),
1572976 => Ok(Dicom_Tags::CountsAccumulated),
1572977 => Ok(Dicom_Tags::AcquisitionTerminationCondition),
1572978 => Ok(Dicom_Tags::EffectiveDuration),
1572979 => Ok(Dicom_Tags::AcquisitionStartCondition),
1572980 => Ok(Dicom_Tags::AcquisitionStartConditionData),
1572981 => Ok(Dicom_Tags::AcquisitionTerminationConditionData),
1572992 => Ok(Dicom_Tags::RepetitionTime),
1572993 => Ok(Dicom_Tags::EchoTime),
1572994 => Ok(Dicom_Tags::InversionTime),
1572995 => Ok(Dicom_Tags::NumberOfAverages),
1572996 => Ok(Dicom_Tags::ImagingFrequency),
1572997 => Ok(Dicom_Tags::ImagedNucleus),
1572998 => Ok(Dicom_Tags::EchoNumberS),
1572999 => Ok(Dicom_Tags::MagneticFieldStrength),
1573000 => Ok(Dicom_Tags::SpacingBetweenSlices),
1573001 => Ok(Dicom_Tags::NumberOfPhaseEncodingSteps),
1573008 => Ok(Dicom_Tags::DataCollectionDiameter),
1573009 => Ok(Dicom_Tags::EchoTrainLength),
1573011 => Ok(Dicom_Tags::PercentSampling),
1573012 => Ok(Dicom_Tags::PercentPhaseFieldOfView),
1573013 => Ok(Dicom_Tags::PixelBandwidth),
1576960 => Ok(Dicom_Tags::DeviceSerialNumber),
1576962 => Ok(Dicom_Tags::DeviceUid),
1576963 => Ok(Dicom_Tags::DeviceId),
1576964 => Ok(Dicom_Tags::PlateId),
1576965 => Ok(Dicom_Tags::GeneratorId),
1576966 => Ok(Dicom_Tags::GridId),
1576967 => Ok(Dicom_Tags::CassetteId),
1576968 => Ok(Dicom_Tags::GantryId),
1576976 => Ok(Dicom_Tags::SecondaryCaptureDeviceId),
1576977 => Ok(Dicom_Tags::HardcopyCreationDeviceId),
1576978 => Ok(Dicom_Tags::DateOfSecondaryCapture),
1576980 => Ok(Dicom_Tags::TimeOfSecondaryCapture),
1576982 => Ok(Dicom_Tags::SecondaryCaptureDeviceManufacturer),
1576983 => Ok(Dicom_Tags::HardcopyDeviceManufacturer),
1576984 => Ok(Dicom_Tags::SecondaryCaptureDeviceManufacturerSModelName),
1576985 => Ok(Dicom_Tags::SecondaryCaptureDeviceSoftwareVersions),
1576986 => Ok(Dicom_Tags::HardcopyDeviceSoftwareVersion),
1576987 => Ok(Dicom_Tags::HardcopyDeviceManufacturerSModelName),
1576992 => Ok(Dicom_Tags::SoftwareVersionS),
1576994 => Ok(Dicom_Tags::VideoImageFormatAcquired),
1576995 => Ok(Dicom_Tags::DigitalImageFormatAcquired),
1577008 => Ok(Dicom_Tags::ProtocolName),
1577024 => Ok(Dicom_Tags::ContrastBolusRoute),
1577025 => Ok(Dicom_Tags::ContrastBolusVolume),
1577026 => Ok(Dicom_Tags::ContrastBolusStartTime),
1577027 => Ok(Dicom_Tags::ContrastBolusStopTime),
1577028 => Ok(Dicom_Tags::ContrastBolusTotalDose),
1577029 => Ok(Dicom_Tags::SyringeCounts),
1577030 => Ok(Dicom_Tags::ContrastFlowRate),
1577031 => Ok(Dicom_Tags::ContrastFlowDuration),
1577032 => Ok(Dicom_Tags::ContrastBolusIngredient),
1577033 => Ok(Dicom_Tags::ContrastBolusIngredientConcentration),
1577040 => Ok(Dicom_Tags::SpatialResolution),
1577056 => Ok(Dicom_Tags::TriggerTime),
1577057 => Ok(Dicom_Tags::TriggerSourceOrType),
1577058 => Ok(Dicom_Tags::NominalInterval),
1577059 => Ok(Dicom_Tags::FrameTime),
1577060 => Ok(Dicom_Tags::CardiacFramingType),
1577061 => Ok(Dicom_Tags::FrameTimeVector),
1577062 => Ok(Dicom_Tags::FrameDelay),
1577063 => Ok(Dicom_Tags::ImageTriggerDelay),
1577064 => Ok(Dicom_Tags::MultiplexGroupTimeOffset),
1577065 => Ok(Dicom_Tags::TriggerTimeOffset),
1577066 => Ok(Dicom_Tags::SynchronizationTrigger),
1577068 => Ok(Dicom_Tags::SynchronizationChannel),
1577070 => Ok(Dicom_Tags::TriggerSamplePosition),
1577072 => Ok(Dicom_Tags::RadiopharmaceuticalRoute),
1577073 => Ok(Dicom_Tags::RadiopharmaceuticalVolume),
1577074 => Ok(Dicom_Tags::RadiopharmaceuticalStartTime),
1577075 => Ok(Dicom_Tags::RadiopharmaceuticalStopTime),
1577076 => Ok(Dicom_Tags::RadionuclideTotalDose),
1577077 => Ok(Dicom_Tags::RadionuclideHalfLife),
1577078 => Ok(Dicom_Tags::RadionuclidePositronFraction),
1577079 => Ok(Dicom_Tags::RadiopharmaceuticalSpecificActivity),
1577080 => Ok(Dicom_Tags::RadiopharmaceuticalStartDatetime),
1577081 => Ok(Dicom_Tags::RadiopharmaceuticalStopDatetime),
1577088 => Ok(Dicom_Tags::BeatRejectionFlag),
1577089 => Ok(Dicom_Tags::LowRRValue),
1577090 => Ok(Dicom_Tags::HighRRValue),
1577091 => Ok(Dicom_Tags::IntervalsAcquired),
1577092 => Ok(Dicom_Tags::IntervalsRejected),
1577093 => Ok(Dicom_Tags::PvcRejection),
1577094 => Ok(Dicom_Tags::SkipBeats),
1577096 => Ok(Dicom_Tags::HeartRate),
1577104 => Ok(Dicom_Tags::CardiacNumberOfImages),
1577108 => Ok(Dicom_Tags::TriggerWindow),
1577216 => Ok(Dicom_Tags::ReconstructionDiameter),
1577232 => Ok(Dicom_Tags::DistanceSourceToDetector),
1577233 => Ok(Dicom_Tags::DistanceSourceToPatient),
1577236 => Ok(Dicom_Tags::EstimatedRadiographicMagnificationFactor),
1577248 => Ok(Dicom_Tags::GantryDetectorTilt),
1577249 => Ok(Dicom_Tags::GantryDetectorSlew),
1577264 => Ok(Dicom_Tags::TableHeight),
1577265 => Ok(Dicom_Tags::TableTraverse),
1577268 => Ok(Dicom_Tags::TableMotion),
1577269 => Ok(Dicom_Tags::TableVerticalIncrement),
1577270 => Ok(Dicom_Tags::TableLateralIncrement),
1577271 => Ok(Dicom_Tags::TableLongitudinalIncrement),
1577272 => Ok(Dicom_Tags::TableAngle),
1577274 => Ok(Dicom_Tags::TableType),
1577280 => Ok(Dicom_Tags::RotationDirection),
1577281 => Ok(Dicom_Tags::AngularPosition),
1577282 => Ok(Dicom_Tags::RadialPosition),
1577283 => Ok(Dicom_Tags::ScanArc),
1577284 => Ok(Dicom_Tags::AngularStep),
1577285 => Ok(Dicom_Tags::CenterOfRotationOffset),
1577286 => Ok(Dicom_Tags::RotationOffset),
1577287 => Ok(Dicom_Tags::FieldOfViewShape),
1577289 => Ok(Dicom_Tags::FieldOfViewDimensionS),
1577296 => Ok(Dicom_Tags::ExposureTime),
1577297 => Ok(Dicom_Tags::XRayTubeCurrent),
1577298 => Ok(Dicom_Tags::Exposure),
1577299 => Ok(Dicom_Tags::ExposureInAs),
1577300 => Ok(Dicom_Tags::AveragePulseWidth),
1577301 => Ok(Dicom_Tags::RadiationSetting),
1577302 => Ok(Dicom_Tags::RectificationType),
1577306 => Ok(Dicom_Tags::RadiationMode),
1577310 => Ok(Dicom_Tags::ImageAndFluoroscopyAreaDoseProduct),
1577312 => Ok(Dicom_Tags::FilterType),
1577313 => Ok(Dicom_Tags::TypeOfFilters),
1577314 => Ok(Dicom_Tags::IntensifierSize),
1577316 => Ok(Dicom_Tags::ImagerPixelSpacing),
1577318 => Ok(Dicom_Tags::Grid),
1577328 => Ok(Dicom_Tags::GeneratorPower),
1577344 => Ok(Dicom_Tags::CollimatorGridName),
1577345 => Ok(Dicom_Tags::CollimatorType),
1577346 => Ok(Dicom_Tags::FocalDistance),
1577347 => Ok(Dicom_Tags::XFocusCenter),
1577348 => Ok(Dicom_Tags::YFocusCenter),
1577360 => Ok(Dicom_Tags::FocalSpotS),
1577361 => Ok(Dicom_Tags::AnodeTargetMaterial),
1577376 => Ok(Dicom_Tags::BodyPartThickness),
1577378 => Ok(Dicom_Tags::CompressionForce),
1577380 => Ok(Dicom_Tags::PaddleDescription),
1577472 => Ok(Dicom_Tags::DateOfLastCalibration),
1577473 => Ok(Dicom_Tags::TimeOfLastCalibration),
1577474 => Ok(Dicom_Tags::DatetimeOfLastCalibration),
1577488 => Ok(Dicom_Tags::ConvolutionKernel),
1577536 => Ok(Dicom_Tags::UpperLowerPixelValues),
1577538 => Ok(Dicom_Tags::ActualFrameDuration),
1577539 => Ok(Dicom_Tags::CountRate),
1577540 => Ok(Dicom_Tags::PreferredPlaybackSequencing),
1577552 => Ok(Dicom_Tags::ReceiveCoilName),
1577553 => Ok(Dicom_Tags::TransmitCoilName),
1577568 => Ok(Dicom_Tags::PlateType),
1577569 => Ok(Dicom_Tags::PhosphorType),
1577585 => Ok(Dicom_Tags::WaterEquivalentDiameter),
1577586 => Ok(Dicom_Tags::WaterEquivalentDiameterCalculationMethodCodeSequence),
1577728 => Ok(Dicom_Tags::ScanVelocity),
1577729 => Ok(Dicom_Tags::WholeBodyTechnique),
1577730 => Ok(Dicom_Tags::ScanLength),
1577744 => Ok(Dicom_Tags::AcquisitionMatrix),
1577746 => Ok(Dicom_Tags::InPlanePhaseEncodingDirection),
1577748 => Ok(Dicom_Tags::FlipAngle),
1577749 => Ok(Dicom_Tags::VariableFlipAngleFlag),
1577750 => Ok(Dicom_Tags::Sar),
1577752 => Ok(Dicom_Tags::DbDt),
1577760 => Ok(Dicom_Tags::B1rms),
1577984 => Ok(Dicom_Tags::AcquisitionDeviceProcessingDescription),
1577985 => Ok(Dicom_Tags::AcquisitionDeviceProcessingCode),
1577986 => Ok(Dicom_Tags::CassetteOrientation),
1577987 => Ok(Dicom_Tags::CassetteSize),
1577988 => Ok(Dicom_Tags::ExposuresOnPlate),
1577989 => Ok(Dicom_Tags::RelativeXRayExposure),
1578001 => Ok(Dicom_Tags::ExposureIndex),
1578002 => Ok(Dicom_Tags::TargetExposureIndex),
1578003 => Ok(Dicom_Tags::DeviationIndex),
1578064 => Ok(Dicom_Tags::ColumnAngulation),
1578080 => Ok(Dicom_Tags::TomoLayerHeight),
1578096 => Ok(Dicom_Tags::TomoAngle),
1578112 => Ok(Dicom_Tags::TomoTime),
1578128 => Ok(Dicom_Tags::TomoType),
1578129 => Ok(Dicom_Tags::TomoClass),
1578133 => Ok(Dicom_Tags::NumberOfTomosynthesisSourceImages),
1578240 => Ok(Dicom_Tags::PositionerMotion),
1578248 => Ok(Dicom_Tags::PositionerType),
1578256 => Ok(Dicom_Tags::PositionerPrimaryAngle),
1578257 => Ok(Dicom_Tags::PositionerSecondaryAngle),
1578272 => Ok(Dicom_Tags::PositionerPrimaryAngleIncrement),
1578273 => Ok(Dicom_Tags::PositionerSecondaryAngleIncrement),
1578288 => Ok(Dicom_Tags::DetectorPrimaryAngle),
1578289 => Ok(Dicom_Tags::DetectorSecondaryAngle),
1578496 => Ok(Dicom_Tags::ShutterShape),
1578498 => Ok(Dicom_Tags::ShutterLeftVerticalEdge),
1578500 => Ok(Dicom_Tags::ShutterRightVerticalEdge),
1578502 => Ok(Dicom_Tags::ShutterUpperHorizontalEdge),
1578504 => Ok(Dicom_Tags::ShutterLowerHorizontalEdge),
1578512 => Ok(Dicom_Tags::CenterOfCircularShutter),
1578514 => Ok(Dicom_Tags::RadiusOfCircularShutter),
1578528 => Ok(Dicom_Tags::VerticesOfThePolygonalShutter),
1578530 => Ok(Dicom_Tags::ShutterPresentationValue),
1578531 => Ok(Dicom_Tags::ShutterOverlayGroup),
1578532 => Ok(Dicom_Tags::ShutterPresentationColorCielabValue),
1578752 => Ok(Dicom_Tags::CollimatorShape),
1578754 => Ok(Dicom_Tags::CollimatorLeftVerticalEdge),
1578756 => Ok(Dicom_Tags::CollimatorRightVerticalEdge),
1578758 => Ok(Dicom_Tags::CollimatorUpperHorizontalEdge),
1578760 => Ok(Dicom_Tags::CollimatorLowerHorizontalEdge),
1578768 => Ok(Dicom_Tags::CenterOfCircularCollimator),
1578770 => Ok(Dicom_Tags::RadiusOfCircularCollimator),
1578784 => Ok(Dicom_Tags::VerticesOfThePolygonalCollimator),
1579008 => Ok(Dicom_Tags::AcquisitionTimeSynchronized),
1579009 => Ok(Dicom_Tags::TimeSource),
1579010 => Ok(Dicom_Tags::TimeDistributionProtocol),
1579011 => Ok(Dicom_Tags::NtpSourceAddress),
1581057 => Ok(Dicom_Tags::PageNumberVector),
1581058 => Ok(Dicom_Tags::FrameLabelVector),
1581059 => Ok(Dicom_Tags::FramePrimaryAngleVector),
1581060 => Ok(Dicom_Tags::FrameSecondaryAngleVector),
1581061 => Ok(Dicom_Tags::SliceLocationVector),
1581062 => Ok(Dicom_Tags::DisplayWindowLabelVector),
1581072 => Ok(Dicom_Tags::NominalScannedPixelSpacing),
1581088 => Ok(Dicom_Tags::DigitizingDeviceTransportDirection),
1581104 => Ok(Dicom_Tags::RotationOfScannedFilm),
1581121 => Ok(Dicom_Tags::BiopsyTargetSequence),
1581122 => Ok(Dicom_Tags::TargetUid),
1581123 => Ok(Dicom_Tags::LocalizingCursorPosition),
1581124 => Ok(Dicom_Tags::CalculatedTargetPosition),
1581125 => Ok(Dicom_Tags::TargetLabel),
1581126 => Ok(Dicom_Tags::DisplayedZValue),
1585408 => Ok(Dicom_Tags::IvusAcquisition),
1585409 => Ok(Dicom_Tags::IvusPullbackRate),
1585410 => Ok(Dicom_Tags::IvusGatedRate),
1585411 => Ok(Dicom_Tags::IvusPullbackStartFrameNumber),
1585412 => Ok(Dicom_Tags::IvusPullbackStopFrameNumber),
1585413 => Ok(Dicom_Tags::LesionNumber),
1589248 => Ok(Dicom_Tags::AcquisitionComments),
1593344 => Ok(Dicom_Tags::OutputPower),
1593360 => Ok(Dicom_Tags::TransducerData),
1593362 => Ok(Dicom_Tags::FocusDepth),
1593376 => Ok(Dicom_Tags::ProcessingFunction),
1593377 => Ok(Dicom_Tags::PostprocessingFunction),
1593378 => Ok(Dicom_Tags::MechanicalIndex),
1593380 => Ok(Dicom_Tags::BoneThermalIndex),
1593382 => Ok(Dicom_Tags::CranialThermalIndex),
1593383 => Ok(Dicom_Tags::SoftTissueThermalIndex),
1593384 => Ok(Dicom_Tags::SoftTissueFocusThermalIndex),
1593385 => Ok(Dicom_Tags::SoftTissueSurfaceThermalIndex),
1593392 => Ok(Dicom_Tags::DynamicRange),
1593408 => Ok(Dicom_Tags::TotalGain),
1593424 => Ok(Dicom_Tags::DepthOfScanField),
1593600 => Ok(Dicom_Tags::PatientPosition),
1593601 => Ok(Dicom_Tags::ViewPosition),
1593604 => Ok(Dicom_Tags::ProjectionEponymousNameCodeSequence),
1593872 => Ok(Dicom_Tags::ImageTransformationMatrix),
1593874 => Ok(Dicom_Tags::ImageTranslationVector),
1597440 => Ok(Dicom_Tags::Sensitivity),
1597457 => Ok(Dicom_Tags::SequenceOfUltrasoundRegions),
1597458 => Ok(Dicom_Tags::RegionSpatialFormat),
1597460 => Ok(Dicom_Tags::RegionDataType),
1597462 => Ok(Dicom_Tags::RegionFlags),
1597464 => Ok(Dicom_Tags::RegionLocationMinX0),
1597466 => Ok(Dicom_Tags::RegionLocationMinY0),
1597468 => Ok(Dicom_Tags::RegionLocationMaxX1),
1597470 => Ok(Dicom_Tags::RegionLocationMaxY1),
1597472 => Ok(Dicom_Tags::ReferencePixelX0),
1597474 => Ok(Dicom_Tags::ReferencePixelY0),
1597476 => Ok(Dicom_Tags::PhysicalUnitsXDirection),
1597478 => Ok(Dicom_Tags::PhysicalUnitsYDirection),
1597480 => Ok(Dicom_Tags::ReferencePixelPhysicalValueX),
1597482 => Ok(Dicom_Tags::ReferencePixelPhysicalValueY),
1597484 => Ok(Dicom_Tags::PhysicalDeltaX),
1597486 => Ok(Dicom_Tags::PhysicalDeltaY),
1597488 => Ok(Dicom_Tags::TransducerFrequency),
1597489 => Ok(Dicom_Tags::TransducerType),
1597490 => Ok(Dicom_Tags::PulseRepetitionFrequency),
1597492 => Ok(Dicom_Tags::DopplerCorrectionAngle),
1597494 => Ok(Dicom_Tags::SteeringAngle),
1597496 => Ok(Dicom_Tags::DopplerSampleVolumeXPositionRetired),
1597497 => Ok(Dicom_Tags::DopplerSampleVolumeXPosition),
1597498 => Ok(Dicom_Tags::DopplerSampleVolumeYPositionRetired),
1597499 => Ok(Dicom_Tags::DopplerSampleVolumeYPosition),
1597500 => Ok(Dicom_Tags::TmLinePositionX0Retired),
1597501 => Ok(Dicom_Tags::TmLinePositionX0),
1597502 => Ok(Dicom_Tags::TmLinePositionY0Retired),
1597503 => Ok(Dicom_Tags::TmLinePositionY0),
1597504 => Ok(Dicom_Tags::TmLinePositionX1Retired),
1597505 => Ok(Dicom_Tags::TmLinePositionX1),
1597506 => Ok(Dicom_Tags::TmLinePositionY1Retired),
1597507 => Ok(Dicom_Tags::TmLinePositionY1),
1597508 => Ok(Dicom_Tags::PixelComponentOrganization),
1597510 => Ok(Dicom_Tags::PixelComponentMask),
1597512 => Ok(Dicom_Tags::PixelComponentRangeStart),
1597514 => Ok(Dicom_Tags::PixelComponentRangeStop),
1597516 => Ok(Dicom_Tags::PixelComponentPhysicalUnits),
1597518 => Ok(Dicom_Tags::PixelComponentDataType),
1597520 => Ok(Dicom_Tags::NumberOfTableBreakPoints),
1597522 => Ok(Dicom_Tags::TableOfXBreakPoints),
1597524 => Ok(Dicom_Tags::TableOfYBreakPoints),
1597526 => Ok(Dicom_Tags::NumberOfTableEntries),
1597528 => Ok(Dicom_Tags::TableOfPixelValues),
1597530 => Ok(Dicom_Tags::TableOfParameterValues),
1597536 => Ok(Dicom_Tags::RWaveTimeVector),
1601536 => Ok(Dicom_Tags::DetectorConditionsNominalFlag),
1601537 => Ok(Dicom_Tags::DetectorTemperature),
1601540 => Ok(Dicom_Tags::DetectorType),
1601541 => Ok(Dicom_Tags::DetectorConfiguration),
1601542 => Ok(Dicom_Tags::DetectorDescription),
1601544 => Ok(Dicom_Tags::DetectorMode),
1601546 => Ok(Dicom_Tags::DetectorId),
1601548 => Ok(Dicom_Tags::DateOfLastDetectorCalibration),
1601550 => Ok(Dicom_Tags::TimeOfLastDetectorCalibration),
1601552 => Ok(Dicom_Tags::ExposuresOnDetectorSinceLastCalibration),
1601553 => Ok(Dicom_Tags::ExposuresOnDetectorSinceManufactured),
1601554 => Ok(Dicom_Tags::DetectorTimeSinceLastExposure),
1601556 => Ok(Dicom_Tags::DetectorActiveTime),
1601558 => Ok(Dicom_Tags::DetectorActivationOffsetFromExposure),
1601562 => Ok(Dicom_Tags::DetectorBinning),
1601568 => Ok(Dicom_Tags::DetectorElementPhysicalSize),
1601570 => Ok(Dicom_Tags::DetectorElementSpacing),
1601572 => Ok(Dicom_Tags::DetectorActiveShape),
1601574 => Ok(Dicom_Tags::DetectorActiveDimensionS),
1601576 => Ok(Dicom_Tags::DetectorActiveOrigin),
1601578 => Ok(Dicom_Tags::DetectorManufacturerName),
1601579 => Ok(Dicom_Tags::DetectorManufacturerSModelName),
1601584 => Ok(Dicom_Tags::FieldOfViewOrigin),
1601586 => Ok(Dicom_Tags::FieldOfViewRotation),
1601588 => Ok(Dicom_Tags::FieldOfViewHorizontalFlip),
1601590 => Ok(Dicom_Tags::PixelDataAreaOriginRelativeToFov),
1601592 => Ok(Dicom_Tags::PixelDataAreaRotationAngleRelativeToFov),
1601600 => Ok(Dicom_Tags::GridAbsorbingMaterial),
1601601 => Ok(Dicom_Tags::GridSpacingMaterial),
1601602 => Ok(Dicom_Tags::GridThickness),
1601604 => Ok(Dicom_Tags::GridPitch),
1601606 => Ok(Dicom_Tags::GridAspectRatio),
1601608 => Ok(Dicom_Tags::GridPeriod),
1601612 => Ok(Dicom_Tags::GridFocalDistance),
1601616 => Ok(Dicom_Tags::FilterMaterial),
1601618 => Ok(Dicom_Tags::FilterThicknessMinimum),
1601620 => Ok(Dicom_Tags::FilterThicknessMaximum),
1601622 => Ok(Dicom_Tags::FilterBeamPathLengthMinimum),
1601624 => Ok(Dicom_Tags::FilterBeamPathLengthMaximum),
1601632 => Ok(Dicom_Tags::ExposureControlMode),
1601634 => Ok(Dicom_Tags::ExposureControlModeDescription),
1601636 => Ok(Dicom_Tags::ExposureStatus),
1601637 => Ok(Dicom_Tags::PhototimerSetting),
1605968 => Ok(Dicom_Tags::ExposureTimeInS),
1605969 => Ok(Dicom_Tags::XRayTubeCurrentInA),
1609732 => Ok(Dicom_Tags::ContentQualification),
1609733 => Ok(Dicom_Tags::PulseSequenceName),
1609734 => Ok(Dicom_Tags::MrImagingModifierSequence),
1609736 => Ok(Dicom_Tags::EchoPulseSequence),
1609737 => Ok(Dicom_Tags::InversionRecovery),
1609744 => Ok(Dicom_Tags::FlowCompensation),
1609745 => Ok(Dicom_Tags::MultipleSpinEcho),
1609746 => Ok(Dicom_Tags::MultiPlanarExcitation),
1609748 => Ok(Dicom_Tags::PhaseContrast),
1609749 => Ok(Dicom_Tags::TimeOfFlightContrast),
1609750 => Ok(Dicom_Tags::Spoiling),
1609751 => Ok(Dicom_Tags::SteadyStatePulseSequence),
1609752 => Ok(Dicom_Tags::EchoPlanarPulseSequence),
1609753 => Ok(Dicom_Tags::TagAngleFirstAxis),
1609760 => Ok(Dicom_Tags::MagnetizationTransfer),
1609761 => Ok(Dicom_Tags::T2Preparation),
1609762 => Ok(Dicom_Tags::BloodSignalNulling),
1609764 => Ok(Dicom_Tags::SaturationRecovery),
1609765 => Ok(Dicom_Tags::SpectrallySelectedSuppression),
1609766 => Ok(Dicom_Tags::SpectrallySelectedExcitation),
1609767 => Ok(Dicom_Tags::SpatialPreSaturation),
1609768 => Ok(Dicom_Tags::Tagging),
1609769 => Ok(Dicom_Tags::OversamplingPhase),
1609776 => Ok(Dicom_Tags::TagSpacingFirstDimension),
1609778 => Ok(Dicom_Tags::GeometryOfKSpaceTraversal),
1609779 => Ok(Dicom_Tags::SegmentedKSpaceTraversal),
1609780 => Ok(Dicom_Tags::RectilinearPhaseEncodeReordering),
1609781 => Ok(Dicom_Tags::TagThickness),
1609782 => Ok(Dicom_Tags::PartialFourierDirection),
1609783 => Ok(Dicom_Tags::CardiacSynchronizationTechnique),
1609793 => Ok(Dicom_Tags::ReceiveCoilManufacturerName),
1609794 => Ok(Dicom_Tags::MrReceiveCoilSequence),
1609795 => Ok(Dicom_Tags::ReceiveCoilType),
1609796 => Ok(Dicom_Tags::QuadratureReceiveCoil),
1609797 => Ok(Dicom_Tags::MultiCoilDefinitionSequence),
1609798 => Ok(Dicom_Tags::MultiCoilConfiguration),
1609799 => Ok(Dicom_Tags::MultiCoilElementName),
1609800 => Ok(Dicom_Tags::MultiCoilElementUsed),
1609801 => Ok(Dicom_Tags::MrTransmitCoilSequence),
1609808 => Ok(Dicom_Tags::TransmitCoilManufacturerName),
1609809 => Ok(Dicom_Tags::TransmitCoilType),
1609810 => Ok(Dicom_Tags::SpectralWidth),
1609811 => Ok(Dicom_Tags::ChemicalShiftReference),
1609812 => Ok(Dicom_Tags::VolumeLocalizationTechnique),
1609816 => Ok(Dicom_Tags::MrAcquisitionFrequencyEncodingSteps),
1609817 => Ok(Dicom_Tags::DeCoupling),
1609824 => Ok(Dicom_Tags::DeCoupledNucleus),
1609825 => Ok(Dicom_Tags::DeCouplingFrequency),
1609826 => Ok(Dicom_Tags::DeCouplingMethod),
1609827 => Ok(Dicom_Tags::DeCouplingChemicalShiftReference),
1609828 => Ok(Dicom_Tags::KSpaceFiltering),
1609829 => Ok(Dicom_Tags::TimeDomainFiltering),
1609830 => Ok(Dicom_Tags::NumberOfZeroFills),
1609831 => Ok(Dicom_Tags::BaselineCorrection),
1609833 => Ok(Dicom_Tags::ParallelReductionFactorInPlane),
1609840 => Ok(Dicom_Tags::CardiacRRIntervalSpecified),
1609843 => Ok(Dicom_Tags::AcquisitionDuration),
1609844 => Ok(Dicom_Tags::FrameAcquisitionDatetime),
1609845 => Ok(Dicom_Tags::DiffusionDirectionality),
1609846 => Ok(Dicom_Tags::DiffusionGradientDirectionSequence),
1609847 => Ok(Dicom_Tags::ParallelAcquisition),
1609848 => Ok(Dicom_Tags::ParallelAcquisitionTechnique),
1609849 => Ok(Dicom_Tags::InversionTimes),
1609856 => Ok(Dicom_Tags::MetaboliteMapDescription),
1609857 => Ok(Dicom_Tags::PartialFourier),
1609858 => Ok(Dicom_Tags::EffectiveEchoTime),
1609859 => Ok(Dicom_Tags::MetaboliteMapCodeSequence),
1609860 => Ok(Dicom_Tags::ChemicalShiftSequence),
1609861 => Ok(Dicom_Tags::CardiacSignalSource),
1609863 => Ok(Dicom_Tags::DiffusionBValue),
1609865 => Ok(Dicom_Tags::DiffusionGradientOrientation),
1609872 => Ok(Dicom_Tags::VelocityEncodingDirection),
1609873 => Ok(Dicom_Tags::VelocityEncodingMinimumValue),
1609874 => Ok(Dicom_Tags::VelocityEncodingAcquisitionSequence),
1609875 => Ok(Dicom_Tags::NumberOfKSpaceTrajectories),
1609876 => Ok(Dicom_Tags::CoverageOfKSpace),
1609877 => Ok(Dicom_Tags::SpectroscopyAcquisitionPhaseRows),
1609878 => Ok(Dicom_Tags::ParallelReductionFactorInPlaneRetired),
1609880 => Ok(Dicom_Tags::TransmitterFrequency),
1609984 => Ok(Dicom_Tags::ResonantNucleus),
1609985 => Ok(Dicom_Tags::FrequencyCorrection),
1609987 => Ok(Dicom_Tags::MrSpectroscopyFovGeometrySequence),
1609988 => Ok(Dicom_Tags::SlabThickness),
1609989 => Ok(Dicom_Tags::SlabOrientation),
1609990 => Ok(Dicom_Tags::MidSlabPosition),
1609991 => Ok(Dicom_Tags::MrSpatialSaturationSequence),
1610002 => Ok(Dicom_Tags::MrTimingAndRelatedParametersSequence),
1610004 => Ok(Dicom_Tags::MrEchoSequence),
1610005 => Ok(Dicom_Tags::MrModifierSequence),
1610007 => Ok(Dicom_Tags::MrDiffusionSequence),
1610008 => Ok(Dicom_Tags::CardiacSynchronizationSequence),
1610009 => Ok(Dicom_Tags::MrAveragesSequence),
1610021 => Ok(Dicom_Tags::MrFovGeometrySequence),
1610022 => Ok(Dicom_Tags::VolumeLocalizationSequence),
1610023 => Ok(Dicom_Tags::SpectroscopyAcquisitionDataColumns),
1610055 => Ok(Dicom_Tags::DiffusionAnisotropyType),
1610065 => Ok(Dicom_Tags::FrameReferenceDatetime),
1610066 => Ok(Dicom_Tags::MrMetaboliteMapSequence),
1610069 => Ok(Dicom_Tags::ParallelReductionFactorOutOfPlane),
1610073 => Ok(Dicom_Tags::SpectroscopyAcquisitionOutOfPlanePhaseSteps),
1610086 => Ok(Dicom_Tags::BulkMotionStatus),
1610088 => Ok(Dicom_Tags::ParallelReductionFactorSecondInPlane),
1610089 => Ok(Dicom_Tags::CardiacBeatRejectionTechnique),
1610096 => Ok(Dicom_Tags::RespiratoryMotionCompensationTechnique),
1610097 => Ok(Dicom_Tags::RespiratorySignalSource),
1610098 => Ok(Dicom_Tags::BulkMotionCompensationTechnique),
1610099 => Ok(Dicom_Tags::BulkMotionSignalSource),
1610100 => Ok(Dicom_Tags::ApplicableSafetyStandardAgency),
1610101 => Ok(Dicom_Tags::ApplicableSafetyStandardDescription),
1610102 => Ok(Dicom_Tags::OperatingModeSequence),
1610103 => Ok(Dicom_Tags::OperatingModeType),
1610104 => Ok(Dicom_Tags::OperatingMode),
1610105 => Ok(Dicom_Tags::SpecificAbsorptionRateDefinition),
1610112 => Ok(Dicom_Tags::GradientOutputType),
1610113 => Ok(Dicom_Tags::SpecificAbsorptionRateValue),
1610114 => Ok(Dicom_Tags::GradientOutput),
1610115 => Ok(Dicom_Tags::FlowCompensationDirection),
1610116 => Ok(Dicom_Tags::TaggingDelay),
1610117 => Ok(Dicom_Tags::RespiratoryMotionCompensationTechniqueDescription),
1610118 => Ok(Dicom_Tags::RespiratorySignalSourceId),
1610133 => Ok(Dicom_Tags::ChemicalShiftMinimumIntegrationLimitInHz),
1610134 => Ok(Dicom_Tags::ChemicalShiftMaximumIntegrationLimitInHz),
1610135 => Ok(Dicom_Tags::MrVelocityEncodingSequence),
1610136 => Ok(Dicom_Tags::FirstOrderPhaseCorrection),
1610137 => Ok(Dicom_Tags::WaterReferencedPhaseCorrection),
1610240 => Ok(Dicom_Tags::MrSpectroscopyAcquisitionType),
1610260 => Ok(Dicom_Tags::RespiratoryCyclePosition),
1610263 => Ok(Dicom_Tags::VelocityEncodingMaximumValue),
1610264 => Ok(Dicom_Tags::TagSpacingSecondDimension),
1610265 => Ok(Dicom_Tags::TagAngleSecondAxis),
1610272 => Ok(Dicom_Tags::FrameAcquisitionDuration),
1610278 => Ok(Dicom_Tags::MrImageFrameTypeSequence),
1610279 => Ok(Dicom_Tags::MrSpectroscopyFrameTypeSequence),
1610289 => Ok(Dicom_Tags::MrAcquisitionPhaseEncodingStepsInPlane),
1610290 => Ok(Dicom_Tags::MrAcquisitionPhaseEncodingStepsOutOfPlane),
1610292 => Ok(Dicom_Tags::SpectroscopyAcquisitionPhaseColumns),
1610294 => Ok(Dicom_Tags::CardiacCyclePosition),
1610297 => Ok(Dicom_Tags::SpecificAbsorptionRateSequence),
1610304 => Ok(Dicom_Tags::RfEchoTrainLength),
1610305 => Ok(Dicom_Tags::GradientEchoTrainLength),
1610320 => Ok(Dicom_Tags::ArterialSpinLabelingContrast),
1610321 => Ok(Dicom_Tags::MrArterialSpinLabelingSequence),
1610322 => Ok(Dicom_Tags::AslTechniqueDescription),
1610323 => Ok(Dicom_Tags::AslSlabNumber),
1610324 => Ok(Dicom_Tags::AslSlabThickness),
1610325 => Ok(Dicom_Tags::AslSlabOrientation),
1610326 => Ok(Dicom_Tags::AslMidSlabPosition),
1610327 => Ok(Dicom_Tags::AslContext),
1610328 => Ok(Dicom_Tags::AslPulseTrainDuration),
1610329 => Ok(Dicom_Tags::AslCrusherFlag),
1610330 => Ok(Dicom_Tags::AslCrusherFlowLimit),
1610331 => Ok(Dicom_Tags::AslCrusherDescription),
1610332 => Ok(Dicom_Tags::AslBolusCutOffFlag),
1610333 => Ok(Dicom_Tags::AslBolusCutOffTimingSequence),
1610334 => Ok(Dicom_Tags::AslBolusCutOffTechnique),
1610335 => Ok(Dicom_Tags::AslBolusCutOffDelayTime),
1610336 => Ok(Dicom_Tags::AslSlabSequence),
1610389 => Ok(Dicom_Tags::ChemicalShiftMinimumIntegrationLimitInPpm),
1610390 => Ok(Dicom_Tags::ChemicalShiftMaximumIntegrationLimitInPpm),
1610391 => Ok(Dicom_Tags::WaterReferenceAcquisition),
1610392 => Ok(Dicom_Tags::EchoPeakPosition),
1610497 => Ok(Dicom_Tags::CtAcquisitionTypeSequence),
1610498 => Ok(Dicom_Tags::AcquisitionType),
1610499 => Ok(Dicom_Tags::TubeAngle),
1610500 => Ok(Dicom_Tags::CtAcquisitionDetailsSequence),
1610501 => Ok(Dicom_Tags::RevolutionTime),
1610502 => Ok(Dicom_Tags::SingleCollimationWidth),
1610503 => Ok(Dicom_Tags::TotalCollimationWidth),
1610504 => Ok(Dicom_Tags::CtTableDynamicsSequence),
1610505 => Ok(Dicom_Tags::TableSpeed),
1610512 => Ok(Dicom_Tags::TableFeedPerRotation),
1610513 => Ok(Dicom_Tags::SpiralPitchFactor),
1610514 => Ok(Dicom_Tags::CtGeometrySequence),
1610515 => Ok(Dicom_Tags::DataCollectionCenterPatient),
1610516 => Ok(Dicom_Tags::CtReconstructionSequence),
1610517 => Ok(Dicom_Tags::ReconstructionAlgorithm),
1610518 => Ok(Dicom_Tags::ConvolutionKernelGroup),
1610519 => Ok(Dicom_Tags::ReconstructionFieldOfView),
1610520 => Ok(Dicom_Tags::ReconstructionTargetCenterPatient),
1610521 => Ok(Dicom_Tags::ReconstructionAngle),
1610528 => Ok(Dicom_Tags::ImageFilter),
1610529 => Ok(Dicom_Tags::CtExposureSequence),
1610530 => Ok(Dicom_Tags::ReconstructionPixelSpacing),
1610531 => Ok(Dicom_Tags::ExposureModulationType),
1610532 => Ok(Dicom_Tags::EstimatedDoseSaving),
1610533 => Ok(Dicom_Tags::CtXRayDetailsSequence),
1610534 => Ok(Dicom_Tags::CtPositionSequence),
1610535 => Ok(Dicom_Tags::TablePosition),
1610536 => Ok(Dicom_Tags::ExposureTimeInMs),
1610537 => Ok(Dicom_Tags::CtImageFrameTypeSequence),
1610544 => Ok(Dicom_Tags::XRayTubeCurrentInMa),
1610546 => Ok(Dicom_Tags::ExposureInMas),
1610547 => Ok(Dicom_Tags::ConstantVolumeFlag),
1610548 => Ok(Dicom_Tags::FluoroscopyFlag),
1610549 => Ok(Dicom_Tags::DistanceSourceToDataCollectionCenter),
1610551 => Ok(Dicom_Tags::ContrastBolusAgentNumber),
1610552 => Ok(Dicom_Tags::ContrastBolusIngredientCodeSequence),
1610560 => Ok(Dicom_Tags::ContrastAdministrationProfileSequence),
1610561 => Ok(Dicom_Tags::ContrastBolusUsageSequence),
1610562 => Ok(Dicom_Tags::ContrastBolusAgentAdministered),
1610563 => Ok(Dicom_Tags::ContrastBolusAgentDetected),
1610564 => Ok(Dicom_Tags::ContrastBolusAgentPhase),
1610565 => Ok(Dicom_Tags::Ctdivol),
1610566 => Ok(Dicom_Tags::CtdiPhantomTypeCodeSequence),
1610577 => Ok(Dicom_Tags::CalciumScoringMassFactorPatient),
1610578 => Ok(Dicom_Tags::CalciumScoringMassFactorDevice),
1610579 => Ok(Dicom_Tags::EnergyWeightingFactor),
1610592 => Ok(Dicom_Tags::CtAdditionalXRaySourceSequence),
1610753 => Ok(Dicom_Tags::ProjectionPixelCalibrationSequence),
1610754 => Ok(Dicom_Tags::DistanceSourceToIsocenter),
1610755 => Ok(Dicom_Tags::DistanceObjectToTableTop),
1610756 => Ok(Dicom_Tags::ObjectPixelSpacingInCenterOfBeam),
1610757 => Ok(Dicom_Tags::PositionerPositionSequence),
1610758 => Ok(Dicom_Tags::TablePositionSequence),
1610759 => Ok(Dicom_Tags::CollimatorShapeSequence),
1610768 => Ok(Dicom_Tags::PlanesInAcquisition),
1610770 => Ok(Dicom_Tags::XaXrfFrameCharacteristicsSequence),
1610775 => Ok(Dicom_Tags::FrameAcquisitionSequence),
1610784 => Ok(Dicom_Tags::XRayReceptorType),
1610787 => Ok(Dicom_Tags::AcquisitionProtocolName),
1610788 => Ok(Dicom_Tags::AcquisitionProtocolDescription),
1610789 => Ok(Dicom_Tags::ContrastBolusIngredientOpaque),
1610790 => Ok(Dicom_Tags::DistanceReceptorPlaneToDetectorHousing),
1610791 => Ok(Dicom_Tags::IntensifierActiveShape),
1610792 => Ok(Dicom_Tags::IntensifierActiveDimensionS),
1610793 => Ok(Dicom_Tags::PhysicalDetectorSize),
1610800 => Ok(Dicom_Tags::PositionOfIsocenterProjection),
1610802 => Ok(Dicom_Tags::FieldOfViewSequence),
1610803 => Ok(Dicom_Tags::FieldOfViewDescription),
1610804 => Ok(Dicom_Tags::ExposureControlSensingRegionsSequence),
1610805 => Ok(Dicom_Tags::ExposureControlSensingRegionShape),
1610806 => Ok(Dicom_Tags::ExposureControlSensingRegionLeftVerticalEdge),
1610807 => Ok(Dicom_Tags::ExposureControlSensingRegionRightVerticalEdge),
1610808 => Ok(Dicom_Tags::ExposureControlSensingRegionUpperHorizontalEdge),
1610809 => Ok(Dicom_Tags::ExposureControlSensingRegionLowerHorizontalEdge),
1610816 => Ok(Dicom_Tags::CenterOfCircularExposureControlSensingRegion),
1610817 => Ok(Dicom_Tags::RadiusOfCircularExposureControlSensingRegion),
1610818 => Ok(Dicom_Tags::VerticesOfThePolygonalExposureControlSensingRegion),
1610823 => Ok(Dicom_Tags::ColumnAngulationPatient),
1610825 => Ok(Dicom_Tags::BeamAngle),
1610833 => Ok(Dicom_Tags::FrameDetectorParametersSequence),
1610834 => Ok(Dicom_Tags::CalculatedAnatomyThickness),
1610837 => Ok(Dicom_Tags::CalibrationSequence),
1610838 => Ok(Dicom_Tags::ObjectThicknessSequence),
1610839 => Ok(Dicom_Tags::PlaneIdentification),
1610849 => Ok(Dicom_Tags::FieldOfViewDimensionSInFloat),
1610850 => Ok(Dicom_Tags::IsocenterReferenceSystemSequence),
1610851 => Ok(Dicom_Tags::PositionerIsocenterPrimaryAngle),
1610852 => Ok(Dicom_Tags::PositionerIsocenterSecondaryAngle),
1610853 => Ok(Dicom_Tags::PositionerIsocenterDetectorRotationAngle),
1610854 => Ok(Dicom_Tags::TableXPositionToIsocenter),
1610855 => Ok(Dicom_Tags::TableYPositionToIsocenter),
1610856 => Ok(Dicom_Tags::TableZPositionToIsocenter),
1610857 => Ok(Dicom_Tags::TableHorizontalRotationAngle),
1610864 => Ok(Dicom_Tags::TableHeadTiltAngle),
1610865 => Ok(Dicom_Tags::TableCradleTiltAngle),
1610866 => Ok(Dicom_Tags::FrameDisplayShutterSequence),
1610867 => Ok(Dicom_Tags::AcquiredImageAreaDoseProduct),
1610868 => Ok(Dicom_Tags::CArmPositionerTabletopRelationship),
1610870 => Ok(Dicom_Tags::XRayGeometrySequence),
1610871 => Ok(Dicom_Tags::IrradiationEventIdentificationSequence),
1611012 => Ok(Dicom_Tags::XRay3dFrameTypeSequence),
1611014 => Ok(Dicom_Tags::ContributingSourcesSequence),
1611015 => Ok(Dicom_Tags::XRay3dAcquisitionSequence),
1611016 => Ok(Dicom_Tags::PrimaryPositionerScanArc),
1611017 => Ok(Dicom_Tags::SecondaryPositionerScanArc),
1611024 => Ok(Dicom_Tags::PrimaryPositionerScanStartAngle),
1611025 => Ok(Dicom_Tags::SecondaryPositionerScanStartAngle),
1611028 => Ok(Dicom_Tags::PrimaryPositionerIncrement),
1611029 => Ok(Dicom_Tags::SecondaryPositionerIncrement),
1611030 => Ok(Dicom_Tags::StartAcquisitionDatetime),
1611031 => Ok(Dicom_Tags::EndAcquisitionDatetime),
1611032 => Ok(Dicom_Tags::PrimaryPositionerIncrementSign),
1611033 => Ok(Dicom_Tags::SecondaryPositionerIncrementSign),
1611044 => Ok(Dicom_Tags::ApplicationName),
1611045 => Ok(Dicom_Tags::ApplicationVersion),
1611046 => Ok(Dicom_Tags::ApplicationManufacturer),
1611047 => Ok(Dicom_Tags::AlgorithmType),
1611048 => Ok(Dicom_Tags::AlgorithmDescription),
1611056 => Ok(Dicom_Tags::XRay3dReconstructionSequence),
1611057 => Ok(Dicom_Tags::ReconstructionDescription),
1611064 => Ok(Dicom_Tags::PerProjectionAcquisitionSequence),
1611073 => Ok(Dicom_Tags::DetectorPositionSequence),
1611074 => Ok(Dicom_Tags::XRayAcquisitionDoseSequence),
1611075 => Ok(Dicom_Tags::XRaySourceIsocenterPrimaryAngle),
1611076 => Ok(Dicom_Tags::XRaySourceIsocenterSecondaryAngle),
1611077 => Ok(Dicom_Tags::BreastSupportIsocenterPrimaryAngle),
1611078 => Ok(Dicom_Tags::BreastSupportIsocenterSecondaryAngle),
1611079 => Ok(Dicom_Tags::BreastSupportXPositionToIsocenter),
1611080 => Ok(Dicom_Tags::BreastSupportYPositionToIsocenter),
1611081 => Ok(Dicom_Tags::BreastSupportZPositionToIsocenter),
1611088 => Ok(Dicom_Tags::DetectorIsocenterPrimaryAngle),
1611089 => Ok(Dicom_Tags::DetectorIsocenterSecondaryAngle),
1611090 => Ok(Dicom_Tags::DetectorXPositionToIsocenter),
1611091 => Ok(Dicom_Tags::DetectorYPositionToIsocenter),
1611092 => Ok(Dicom_Tags::DetectorZPositionToIsocenter),
1611093 => Ok(Dicom_Tags::XRayGridSequence),
1611094 => Ok(Dicom_Tags::XRayFilterSequence),
1611095 => Ok(Dicom_Tags::DetectorActiveAreaTlhcPosition),
1611096 => Ok(Dicom_Tags::DetectorActiveAreaOrientation),
1611097 => Ok(Dicom_Tags::PositionerPrimaryAngleDirection),
1611265 => Ok(Dicom_Tags::DiffusionBMatrixSequence),
1611266 => Ok(Dicom_Tags::DiffusionBValueXx),
1611267 => Ok(Dicom_Tags::DiffusionBValueXy),
1611268 => Ok(Dicom_Tags::DiffusionBValueXz),
1611269 => Ok(Dicom_Tags::DiffusionBValueYy),
1611270 => Ok(Dicom_Tags::DiffusionBValueYz),
1611271 => Ok(Dicom_Tags::DiffusionBValueZz),
1611297 => Ok(Dicom_Tags::FunctionalMrSequence),
1611298 => Ok(Dicom_Tags::FunctionalSettlingPhaseFramesPresent),
1611299 => Ok(Dicom_Tags::FunctionalSyncPulse),
1611300 => Ok(Dicom_Tags::SettlingPhaseFrame),
1611521 => Ok(Dicom_Tags::DecayCorrectionDatetime),
1611541 => Ok(Dicom_Tags::StartDensityThreshold),
1611542 => Ok(Dicom_Tags::StartRelativeDensityDifferenceThreshold),
1611543 => Ok(Dicom_Tags::StartCardiacTriggerCountThreshold),
1611544 => Ok(Dicom_Tags::StartRespiratoryTriggerCountThreshold),
1611545 => Ok(Dicom_Tags::TerminationCountsThreshold),
1611552 => Ok(Dicom_Tags::TerminationDensityThreshold),
1611553 => Ok(Dicom_Tags::TerminationRelativeDensityThreshold),
1611554 => Ok(Dicom_Tags::TerminationTimeThreshold),
1611555 => Ok(Dicom_Tags::TerminationCardiacTriggerCountThreshold),
1611556 => Ok(Dicom_Tags::TerminationRespiratoryTriggerCountThreshold),
1611557 => Ok(Dicom_Tags::DetectorGeometry),
1611558 => Ok(Dicom_Tags::TransverseDetectorSeparation),
1611559 => Ok(Dicom_Tags::AxialDetectorDimension),
1611561 => Ok(Dicom_Tags::RadiopharmaceuticalAgentNumber),
1611570 => Ok(Dicom_Tags::PetFrameAcquisitionSequence),
1611571 => Ok(Dicom_Tags::PetDetectorMotionDetailsSequence),
1611572 => Ok(Dicom_Tags::PetTableDynamicsSequence),
1611573 => Ok(Dicom_Tags::PetPositionSequence),
1611574 => Ok(Dicom_Tags::PetFrameCorrectionFactorsSequence),
1611575 => Ok(Dicom_Tags::RadiopharmaceuticalUsageSequence),
1611576 => Ok(Dicom_Tags::AttenuationCorrectionSource),
1611577 => Ok(Dicom_Tags::NumberOfIterations),
1611584 => Ok(Dicom_Tags::NumberOfSubsets),
1611593 => Ok(Dicom_Tags::PetReconstructionSequence),
1611601 => Ok(Dicom_Tags::PetFrameTypeSequence),
1611605 => Ok(Dicom_Tags::TimeOfFlightInformationUsed),
1611606 => Ok(Dicom_Tags::ReconstructionType),
1611608 => Ok(Dicom_Tags::DecayCorrected),
1611609 => Ok(Dicom_Tags::AttenuationCorrected),
1611616 => Ok(Dicom_Tags::ScatterCorrected),
1611617 => Ok(Dicom_Tags::DeadTimeCorrected),
1611618 => Ok(Dicom_Tags::GantryMotionCorrected),
1611619 => Ok(Dicom_Tags::PatientMotionCorrected),
1611620 => Ok(Dicom_Tags::CountLossNormalizationCorrected),
1611621 => Ok(Dicom_Tags::RandomsCorrected),
1611622 => Ok(Dicom_Tags::NonUniformRadialSamplingCorrected),
1611623 => Ok(Dicom_Tags::SensitivityCalibrated),
1611624 => Ok(Dicom_Tags::DetectorNormalizationCorrection),
1611625 => Ok(Dicom_Tags::IterativeReconstructionMethod),
1611632 => Ok(Dicom_Tags::AttenuationCorrectionTemporalRelationship),
1611633 => Ok(Dicom_Tags::PatientPhysiologicalStateSequence),
1611634 => Ok(Dicom_Tags::PatientPhysiologicalStateCodeSequence),
1611777 => Ok(Dicom_Tags::DepthSOfFocus),
1611779 => Ok(Dicom_Tags::ExcludedIntervalsSequence),
1611780 => Ok(Dicom_Tags::ExclusionStartDatetime),
1611781 => Ok(Dicom_Tags::ExclusionDuration),
1611782 => Ok(Dicom_Tags::UsImageDescriptionSequence),
1611783 => Ok(Dicom_Tags::ImageDataTypeSequence),
1611784 => Ok(Dicom_Tags::DataType),
1611785 => Ok(Dicom_Tags::TransducerScanPatternCodeSequence),
1611787 => Ok(Dicom_Tags::AliasedDataType),
1611788 => Ok(Dicom_Tags::PositionMeasuringDeviceUsed),
1611789 => Ok(Dicom_Tags::TransducerGeometryCodeSequence),
1611790 => Ok(Dicom_Tags::TransducerBeamSteeringCodeSequence),
1611791 => Ok(Dicom_Tags::TransducerApplicationCodeSequence),
1611792 => Ok(Dicom_Tags::ZeroVelocityPixelValue),
1613825 => Ok(Dicom_Tags::ContributingEquipmentSequence),
1613826 => Ok(Dicom_Tags::ContributionDatetime),
1613827 => Ok(Dicom_Tags::ContributionDescription),
2097165 => Ok(Dicom_Tags::StudyInstanceUid),
2097166 => Ok(Dicom_Tags::SeriesInstanceUid),
2097168 => Ok(Dicom_Tags::StudyId),
2097169 => Ok(Dicom_Tags::SeriesNumber),
2097170 => Ok(Dicom_Tags::AcquisitionNumber),
2097171 => Ok(Dicom_Tags::InstanceNumber),
2097172 => Ok(Dicom_Tags::IsotopeNumber),
2097173 => Ok(Dicom_Tags::PhaseNumber),
2097174 => Ok(Dicom_Tags::IntervalNumber),
2097175 => Ok(Dicom_Tags::TimeSlotNumber),
2097176 => Ok(Dicom_Tags::AngleNumber),
2097177 => Ok(Dicom_Tags::ItemNumber),
2097184 => Ok(Dicom_Tags::PatientOrientation),
2097186 => Ok(Dicom_Tags::OverlayNumber),
2097188 => Ok(Dicom_Tags::CurveNumber),
2097190 => Ok(Dicom_Tags::LutNumber),
2097200 => Ok(Dicom_Tags::ImagePosition),
2097202 => Ok(Dicom_Tags::ImagePositionPatient),
2097205 => Ok(Dicom_Tags::ImageOrientation),
2097207 => Ok(Dicom_Tags::ImageOrientationPatient),
2097232 => Ok(Dicom_Tags::Location),
2097234 => Ok(Dicom_Tags::FrameOfReferenceUid),
2097248 => Ok(Dicom_Tags::Laterality),
2097250 => Ok(Dicom_Tags::ImageLaterality),
2097264 => Ok(Dicom_Tags::ImageGeometryType),
2097280 => Ok(Dicom_Tags::MaskingImage),
2097322 => Ok(Dicom_Tags::ReportNumber),
2097408 => Ok(Dicom_Tags::TemporalPositionIdentifier),
2097413 => Ok(Dicom_Tags::NumberOfTemporalPositions),
2097424 => Ok(Dicom_Tags::TemporalResolution),
2097664 => Ok(Dicom_Tags::SynchronizationFrameOfReferenceUid),
2097730 => Ok(Dicom_Tags::SopInstanceUidOfConcatenationSource),
2101248 => Ok(Dicom_Tags::SeriesInStudy),
2101249 => Ok(Dicom_Tags::AcquisitionsInSeries),
2101250 => Ok(Dicom_Tags::ImagesInAcquisition),
2101251 => Ok(Dicom_Tags::ImagesInSeries),
2101252 => Ok(Dicom_Tags::AcquisitionsInStudy),
2101253 => Ok(Dicom_Tags::ImagesInStudy),
2101280 => Ok(Dicom_Tags::Reference),
2101312 => Ok(Dicom_Tags::PositionReferenceIndicator),
2101313 => Ok(Dicom_Tags::SliceLocation),
2101360 => Ok(Dicom_Tags::OtherStudyNumbers),
2101760 => Ok(Dicom_Tags::NumberOfPatientRelatedStudies),
2101762 => Ok(Dicom_Tags::NumberOfPatientRelatedSeries),
2101764 => Ok(Dicom_Tags::NumberOfPatientRelatedInstances),
2101766 => Ok(Dicom_Tags::NumberOfStudyRelatedSeries),
2101768 => Ok(Dicom_Tags::NumberOfStudyRelatedInstances),
2101769 => Ok(Dicom_Tags::NumberOfSeriesRelatedInstances),
2110465 => Ok(Dicom_Tags::ModifyingDeviceId),
2110466 => Ok(Dicom_Tags::ModifiedImageId),
2110467 => Ok(Dicom_Tags::ModifiedImageDate),
2110468 => Ok(Dicom_Tags::ModifyingDeviceManufacturer),
2110469 => Ok(Dicom_Tags::ModifiedImageTime),
2110470 => Ok(Dicom_Tags::ModifiedImageDescription),
2113536 => Ok(Dicom_Tags::ImageComments),
2117632 => Ok(Dicom_Tags::OriginalImageIdentification),
2117634 => Ok(Dicom_Tags::OriginalImageIdentificationNomenclature),
2134102 => Ok(Dicom_Tags::StackId),
2134103 => Ok(Dicom_Tags::InStackPositionNumber),
2134129 => Ok(Dicom_Tags::FrameAnatomySequence),
2134130 => Ok(Dicom_Tags::FrameLaterality),
2134289 => Ok(Dicom_Tags::FrameContentSequence),
2134291 => Ok(Dicom_Tags::PlanePositionSequence),
2134294 => Ok(Dicom_Tags::PlaneOrientationSequence),
2134312 => Ok(Dicom_Tags::TemporalPositionIndex),
2134355 => Ok(Dicom_Tags::NominalCardiacTriggerDelayTime),
2134356 => Ok(Dicom_Tags::NominalCardiacTriggerTimePriorToRPeak),
2134357 => Ok(Dicom_Tags::ActualCardiacTriggerTimePriorToRPeak),
2134358 => Ok(Dicom_Tags::FrameAcquisitionNumber),
2134359 => Ok(Dicom_Tags::DimensionIndexValues),
2134360 => Ok(Dicom_Tags::FrameComments),
2134369 => Ok(Dicom_Tags::ConcatenationUid),
2134370 => Ok(Dicom_Tags::InConcatenationNumber),
2134371 => Ok(Dicom_Tags::InConcatenationTotalNumber),
2134372 => Ok(Dicom_Tags::DimensionOrganizationUid),
2134373 => Ok(Dicom_Tags::DimensionIndexPointer),
2134375 => Ok(Dicom_Tags::FunctionalGroupPointer),
2134384 => Ok(Dicom_Tags::UnassignedSharedConvertedAttributesSequence),
2134385 => Ok(Dicom_Tags::UnassignedPerFrameConvertedAttributesSequence),
2134386 => Ok(Dicom_Tags::ConversionSourceAttributesSequence),
2134547 => Ok(Dicom_Tags::DimensionIndexPrivateCreator),
2134561 => Ok(Dicom_Tags::DimensionOrganizationSequence),
2134562 => Ok(Dicom_Tags::DimensionIndexSequence),
2134568 => Ok(Dicom_Tags::ConcatenationFrameOffsetNumber),
2134584 => Ok(Dicom_Tags::FunctionalGroupPrivateCreator),
2134593 => Ok(Dicom_Tags::NominalPercentageOfCardiacPhase),
2134597 => Ok(Dicom_Tags::NominalPercentageOfRespiratoryPhase),
2134598 => Ok(Dicom_Tags::StartingRespiratoryAmplitude),
2134599 => Ok(Dicom_Tags::StartingRespiratoryPhase),
2134600 => Ok(Dicom_Tags::EndingRespiratoryAmplitude),
2134601 => Ok(Dicom_Tags::EndingRespiratoryPhase),
2134608 => Ok(Dicom_Tags::RespiratoryTriggerType),
2134609 => Ok(Dicom_Tags::RRIntervalTimeNominal),
2134610 => Ok(Dicom_Tags::ActualCardiacTriggerDelayTime),
2134611 => Ok(Dicom_Tags::RespiratorySynchronizationSequence),
2134612 => Ok(Dicom_Tags::RespiratoryIntervalTime),
2134613 => Ok(Dicom_Tags::NominalRespiratoryTriggerDelayTime),
2134614 => Ok(Dicom_Tags::RespiratoryTriggerDelayThreshold),
2134615 => Ok(Dicom_Tags::ActualRespiratoryTriggerDelayTime),
2134785 => Ok(Dicom_Tags::ImagePositionVolume),
2134786 => Ok(Dicom_Tags::ImageOrientationVolume),
2134791 => Ok(Dicom_Tags::UltrasoundAcquisitionGeometry),
2134792 => Ok(Dicom_Tags::ApexPosition),
2134793 => Ok(Dicom_Tags::VolumeToTransducerMappingMatrix),
2134794 => Ok(Dicom_Tags::VolumeToTableMappingMatrix),
2134795 => Ok(Dicom_Tags::VolumeToTransducerRelationship),
2134796 => Ok(Dicom_Tags::PatientFrameOfReferenceSource),
2134797 => Ok(Dicom_Tags::TemporalPositionTimeOffset),
2134798 => Ok(Dicom_Tags::PlanePositionVolumeSequence),
2134799 => Ok(Dicom_Tags::PlaneOrientationVolumeSequence),
2134800 => Ok(Dicom_Tags::TemporalPositionSequence),
2134801 => Ok(Dicom_Tags::DimensionOrganizationType),
2134802 => Ok(Dicom_Tags::VolumeFrameOfReferenceUid),
2134803 => Ok(Dicom_Tags::TableFrameOfReferenceUid),
2135073 => Ok(Dicom_Tags::DimensionDescriptionLabel),
2135120 => Ok(Dicom_Tags::PatientOrientationInFrameSequence),
2135123 => Ok(Dicom_Tags::FrameLabel),
2135320 => Ok(Dicom_Tags::AcquisitionIndex),
2135337 => Ok(Dicom_Tags::ContributingSopInstancesReferenceSequence),
2135350 => Ok(Dicom_Tags::ReconstructionIndex),
2228225 => Ok(Dicom_Tags::LightPathFilterPassThroughWavelength),
2228226 => Ok(Dicom_Tags::LightPathFilterPassBand),
2228227 => Ok(Dicom_Tags::ImagePathFilterPassThroughWavelength),
2228228 => Ok(Dicom_Tags::ImagePathFilterPassBand),
2228229 => Ok(Dicom_Tags::PatientEyeMovementCommanded),
2228230 => Ok(Dicom_Tags::PatientEyeMovementCommandCodeSequence),
2228231 => Ok(Dicom_Tags::SphericalLensPower),
2228232 => Ok(Dicom_Tags::CylinderLensPower),
2228233 => Ok(Dicom_Tags::CylinderAxis),
2228234 => Ok(Dicom_Tags::EmmetropicMagnification),
2228235 => Ok(Dicom_Tags::IntraOcularPressure),
2228236 => Ok(Dicom_Tags::HorizontalFieldOfView),
2228237 => Ok(Dicom_Tags::PupilDilated),
2228238 => Ok(Dicom_Tags::DegreeOfDilation),
2228240 => Ok(Dicom_Tags::StereoBaselineAngle),
2228241 => Ok(Dicom_Tags::StereoBaselineDisplacement),
2228242 => Ok(Dicom_Tags::StereoHorizontalPixelOffset),
2228243 => Ok(Dicom_Tags::StereoVerticalPixelOffset),
2228244 => Ok(Dicom_Tags::StereoRotation),
2228245 => Ok(Dicom_Tags::AcquisitionDeviceTypeCodeSequence),
2228246 => Ok(Dicom_Tags::IlluminationTypeCodeSequence),
2228247 => Ok(Dicom_Tags::LightPathFilterTypeStackCodeSequence),
2228248 => Ok(Dicom_Tags::ImagePathFilterTypeStackCodeSequence),
2228249 => Ok(Dicom_Tags::LensesCodeSequence),
2228250 => Ok(Dicom_Tags::ChannelDescriptionCodeSequence),
2228251 => Ok(Dicom_Tags::RefractiveStateSequence),
2228252 => Ok(Dicom_Tags::MydriaticAgentCodeSequence),
2228253 => Ok(Dicom_Tags::RelativeImagePositionCodeSequence),
2228254 => Ok(Dicom_Tags::CameraAngleOfView),
2228256 => Ok(Dicom_Tags::StereoPairsSequence),
2228257 => Ok(Dicom_Tags::LeftImageSequence),
2228258 => Ok(Dicom_Tags::RightImageSequence),
2228264 => Ok(Dicom_Tags::StereoPairsPresent),
2228272 => Ok(Dicom_Tags::AxialLengthOfTheEye),
2228273 => Ok(Dicom_Tags::OphthalmicFrameLocationSequence),
2228274 => Ok(Dicom_Tags::ReferenceCoordinates),
2228277 => Ok(Dicom_Tags::DepthSpatialResolution),
2228278 => Ok(Dicom_Tags::MaximumDepthDistortion),
2228279 => Ok(Dicom_Tags::AlongScanSpatialResolution),
2228280 => Ok(Dicom_Tags::MaximumAlongScanDistortion),
2228281 => Ok(Dicom_Tags::OphthalmicImageOrientation),
2228289 => Ok(Dicom_Tags::DepthOfTransverseImage),
2228290 => Ok(Dicom_Tags::MydriaticAgentConcentrationUnitsSequence),
2228296 => Ok(Dicom_Tags::AcrossScanSpatialResolution),
2228297 => Ok(Dicom_Tags::MaximumAcrossScanDistortion),
2228302 => Ok(Dicom_Tags::MydriaticAgentConcentration),
2228309 => Ok(Dicom_Tags::IlluminationWaveLength),
2228310 => Ok(Dicom_Tags::IlluminationPower),
2228311 => Ok(Dicom_Tags::IlluminationBandwidth),
2228312 => Ok(Dicom_Tags::MydriaticAgentSequence),
2232327 => Ok(Dicom_Tags::OphthalmicAxialMeasurementsRightEyeSequence),
2232328 => Ok(Dicom_Tags::OphthalmicAxialMeasurementsLeftEyeSequence),
2232329 => Ok(Dicom_Tags::OphthalmicAxialMeasurementsDeviceType),
2232336 => Ok(Dicom_Tags::OphthalmicAxialLengthMeasurementsType),
2232338 => Ok(Dicom_Tags::OphthalmicAxialLengthSequence),
2232345 => Ok(Dicom_Tags::OphthalmicAxialLength),
2232356 => Ok(Dicom_Tags::LensStatusCodeSequence),
2232357 => Ok(Dicom_Tags::VitreousStatusCodeSequence),
2232360 => Ok(Dicom_Tags::IolFormulaCodeSequence),
2232361 => Ok(Dicom_Tags::IolFormulaDetail),
2232371 => Ok(Dicom_Tags::KeratometerIndex),
2232373 => Ok(Dicom_Tags::SourceOfOphthalmicAxialLengthCodeSequence),
2232375 => Ok(Dicom_Tags::TargetRefraction),
2232377 => Ok(Dicom_Tags::RefractiveProcedureOccurred),
2232384 => Ok(Dicom_Tags::RefractiveSurgeryTypeCodeSequence),
2232388 => Ok(Dicom_Tags::OphthalmicUltrasoundMethodCodeSequence),
2232400 => Ok(Dicom_Tags::OphthalmicAxialLengthMeasurementsSequence),
2232403 => Ok(Dicom_Tags::IolPower),
2232404 => Ok(Dicom_Tags::PredictedRefractiveError),
2232409 => Ok(Dicom_Tags::OphthalmicAxialLengthVelocity),
2232421 => Ok(Dicom_Tags::LensStatusDescription),
2232422 => Ok(Dicom_Tags::VitreousStatusDescription),
2232464 => Ok(Dicom_Tags::IolPowerSequence),
2232466 => Ok(Dicom_Tags::LensConstantSequence),
2232467 => Ok(Dicom_Tags::IolManufacturer),
2232468 => Ok(Dicom_Tags::LensConstantDescription),
2232469 => Ok(Dicom_Tags::ImplantName),
2232470 => Ok(Dicom_Tags::KeratometryMeasurementTypeCodeSequence),
2232471 => Ok(Dicom_Tags::ImplantPartNumber),
2232576 => Ok(Dicom_Tags::ReferencedOphthalmicAxialMeasurementsSequence),
2232577 => Ok(Dicom_Tags::OphthalmicAxialLengthMeasurementsSegmentNameCodeSequence),
2232579 => Ok(Dicom_Tags::RefractiveErrorBeforeRefractiveSurgeryCodeSequence),
2232609 => Ok(Dicom_Tags::IolPowerForExactEmmetropia),
2232610 => Ok(Dicom_Tags::IolPowerForExactTargetRefraction),
2232613 => Ok(Dicom_Tags::AnteriorChamberDepthDefinitionCodeSequence),
2232615 => Ok(Dicom_Tags::LensThicknessSequence),
2232616 => Ok(Dicom_Tags::AnteriorChamberDepthSequence),
2232624 => Ok(Dicom_Tags::LensThickness),
2232625 => Ok(Dicom_Tags::AnteriorChamberDepth),
2232626 => Ok(Dicom_Tags::SourceOfLensThicknessDataCodeSequence),
2232627 => Ok(Dicom_Tags::SourceOfAnteriorChamberDepthDataCodeSequence),
2232628 => Ok(Dicom_Tags::SourceOfRefractiveMeasurementsSequence),
2232629 => Ok(Dicom_Tags::SourceOfRefractiveMeasurementsCodeSequence),
2232640 => Ok(Dicom_Tags::OphthalmicAxialLengthMeasurementModified),
2232656 => Ok(Dicom_Tags::OphthalmicAxialLengthDataSourceCodeSequence),
2232659 => Ok(Dicom_Tags::OphthalmicAxialLengthAcquisitionMethodCodeSequence),
2232661 => Ok(Dicom_Tags::SignalToNoiseRatio),
2232665 => Ok(Dicom_Tags::OphthalmicAxialLengthDataSourceDescription),
2232848 => Ok(Dicom_Tags::OphthalmicAxialLengthMeasurementsTotalLengthSequence),
2232849 => Ok(Dicom_Tags::OphthalmicAxialLengthMeasurementsSegmentalLengthSequence),
2232850 => Ok(Dicom_Tags::OphthalmicAxialLengthMeasurementsLengthSummationSequence),
2232864 => Ok(Dicom_Tags::UltrasoundOphthalmicAxialLengthMeasurementsSequence),
2232869 => Ok(Dicom_Tags::OpticalOphthalmicAxialLengthMeasurementsSequence),
2232880 => Ok(Dicom_Tags::UltrasoundSelectedOphthalmicAxialLengthSequence),
2232912 => Ok(Dicom_Tags::OphthalmicAxialLengthSelectionMethodCodeSequence),
2232917 => Ok(Dicom_Tags::OpticalSelectedOphthalmicAxialLengthSequence),
2232919 => Ok(Dicom_Tags::SelectedSegmentalOphthalmicAxialLengthSequence),
2232928 => Ok(Dicom_Tags::SelectedTotalOphthalmicAxialLengthSequence),
2232930 => Ok(Dicom_Tags::OphthalmicAxialLengthQualityMetricSequence),
2232933 => Ok(Dicom_Tags::OphthalmicAxialLengthQualityMetricTypeCodeSequence),
2232947 => Ok(Dicom_Tags::OphthalmicAxialLengthQualityMetricTypeDescription),
2233088 => Ok(Dicom_Tags::IntraocularLensCalculationsRightEyeSequence),
2233104 => Ok(Dicom_Tags::IntraocularLensCalculationsLeftEyeSequence),
2233136 => Ok(Dicom_Tags::ReferencedOphthalmicAxialLengthMeasurementQcImageSequence),
2233365 => Ok(Dicom_Tags::OphthalmicMappingDeviceType),
2233376 => Ok(Dicom_Tags::AcquisitionMethodCodeSequence),
2233379 => Ok(Dicom_Tags::AcquisitionMethodAlgorithmSequence),
2233398 => Ok(Dicom_Tags::OphthalmicThicknessMapTypeCodeSequence),
2233411 => Ok(Dicom_Tags::OphthalmicThicknessMappingNormalsSequence),
2233413 => Ok(Dicom_Tags::RetinalThicknessDefinitionCodeSequence),
2233424 => Ok(Dicom_Tags::PixelValueMappingToCodedConceptSequence),
2233426 => Ok(Dicom_Tags::MappedPixelValue),
2233428 => Ok(Dicom_Tags::PixelValueMappingExplanation),
2233432 => Ok(Dicom_Tags::OphthalmicThicknessMapQualityThresholdSequence),
2233440 => Ok(Dicom_Tags::OphthalmicThicknessMapThresholdQualityRating),
2233443 => Ok(Dicom_Tags::AnatomicStructureReferencePoint),
2233445 => Ok(Dicom_Tags::RegistrationToLocalizerSequence),
2233446 => Ok(Dicom_Tags::RegisteredLocalizerUnits),
2233447 => Ok(Dicom_Tags::RegisteredLocalizerTopLeftHandCorner),
2233448 => Ok(Dicom_Tags::RegisteredLocalizerBottomRightHandCorner),
2233456 => Ok(Dicom_Tags::OphthalmicThicknessMapQualityRatingSequence),
2233458 => Ok(Dicom_Tags::RelevantOptAttributesSequence),
2233618 => Ok(Dicom_Tags::TransformationMethodCodeSequence),
2233619 => Ok(Dicom_Tags::TransformationAlgorithmSequence),
2233621 => Ok(Dicom_Tags::OphthalmicAxialLengthMethod),
2233623 => Ok(Dicom_Tags::OphthalmicFov),
2233624 => Ok(Dicom_Tags::TwoDimensionalToThreeDimensionalMapSequence),
2233637 => Ok(Dicom_Tags::WideFieldOphthalmicPhotographyQualityRatingSequence),
2233638 => Ok(Dicom_Tags::WideFieldOphthalmicPhotographyQualityThresholdSequence),
2233639 => Ok(Dicom_Tags::WideFieldOphthalmicPhotographyThresholdQualityRating),
2233640 => Ok(Dicom_Tags::XCoordinatesCenterPixelViewAngle),
2233641 => Ok(Dicom_Tags::YCoordinatesCenterPixelViewAngle),
2233648 => Ok(Dicom_Tags::NumberOfMapPoints),
2233649 => Ok(Dicom_Tags::TwoDimensionalToThreeDimensionalMapData),
2359312 => Ok(Dicom_Tags::VisualFieldHorizontalExtent),
2359313 => Ok(Dicom_Tags::VisualFieldVerticalExtent),
2359314 => Ok(Dicom_Tags::VisualFieldShape),
2359318 => Ok(Dicom_Tags::ScreeningTestModeCodeSequence),
2359320 => Ok(Dicom_Tags::MaximumStimulusLuminance),
2359328 => Ok(Dicom_Tags::BackgroundLuminance),
2359329 => Ok(Dicom_Tags::StimulusColorCodeSequence),
2359332 => Ok(Dicom_Tags::BackgroundIlluminationColorCodeSequence),
2359333 => Ok(Dicom_Tags::StimulusArea),
2359336 => Ok(Dicom_Tags::StimulusPresentationTime),
2359346 => Ok(Dicom_Tags::FixationSequence),
2359347 => Ok(Dicom_Tags::FixationMonitoringCodeSequence),
2359348 => Ok(Dicom_Tags::VisualFieldCatchTrialSequence),
2359349 => Ok(Dicom_Tags::FixationCheckedQuantity),
2359350 => Ok(Dicom_Tags::PatientNotProperlyFixatedQuantity),
2359351 => Ok(Dicom_Tags::PresentedVisualStimuliDataFlag),
2359352 => Ok(Dicom_Tags::NumberOfVisualStimuli),
2359353 => Ok(Dicom_Tags::ExcessiveFixationLossesDataFlag),
2359360 => Ok(Dicom_Tags::ExcessiveFixationLosses),
2359362 => Ok(Dicom_Tags::StimuliRetestingQuantity),
2359364 => Ok(Dicom_Tags::CommentsOnPatientSPerformanceOfVisualField),
2359365 => Ok(Dicom_Tags::FalseNegativesEstimateFlag),
2359366 => Ok(Dicom_Tags::FalseNegativesEstimate),
2359368 => Ok(Dicom_Tags::NegativeCatchTrialsQuantity),
2359376 => Ok(Dicom_Tags::FalseNegativesQuantity),
2359377 => Ok(Dicom_Tags::ExcessiveFalseNegativesDataFlag),
2359378 => Ok(Dicom_Tags::ExcessiveFalseNegatives),
2359379 => Ok(Dicom_Tags::FalsePositivesEstimateFlag),
2359380 => Ok(Dicom_Tags::FalsePositivesEstimate),
2359381 => Ok(Dicom_Tags::CatchTrialsDataFlag),
2359382 => Ok(Dicom_Tags::PositiveCatchTrialsQuantity),
2359383 => Ok(Dicom_Tags::TestPointNormalsDataFlag),
2359384 => Ok(Dicom_Tags::TestPointNormalsSequence),
2359385 => Ok(Dicom_Tags::GlobalDeviationProbabilityNormalsFlag),
2359392 => Ok(Dicom_Tags::FalsePositivesQuantity),
2359393 => Ok(Dicom_Tags::ExcessiveFalsePositivesDataFlag),
2359394 => Ok(Dicom_Tags::ExcessiveFalsePositives),
2359395 => Ok(Dicom_Tags::VisualFieldTestNormalsFlag),
2359396 => Ok(Dicom_Tags::ResultsNormalsSequence),
2359397 => Ok(Dicom_Tags::AgeCorrectedSensitivityDeviationAlgorithmSequence),
2359398 => Ok(Dicom_Tags::GlobalDeviationFromNormal),
2359399 => Ok(Dicom_Tags::GeneralizedDefectSensitivityDeviationAlgorithmSequence),
2359400 => Ok(Dicom_Tags::LocalizedDeviationFromNormal),
2359401 => Ok(Dicom_Tags::PatientReliabilityIndicator),
2359408 => Ok(Dicom_Tags::VisualFieldMeanSensitivity),
2359409 => Ok(Dicom_Tags::GlobalDeviationProbability),
2359410 => Ok(Dicom_Tags::LocalDeviationProbabilityNormalsFlag),
2359411 => Ok(Dicom_Tags::LocalizedDeviationProbability),
2359412 => Ok(Dicom_Tags::ShortTermFluctuationCalculated),
2359413 => Ok(Dicom_Tags::ShortTermFluctuation),
2359414 => Ok(Dicom_Tags::ShortTermFluctuationProbabilityCalculated),
2359415 => Ok(Dicom_Tags::ShortTermFluctuationProbability),
2359416 => Ok(Dicom_Tags::CorrectedLocalizedDeviationFromNormalCalculated),
2359417 => Ok(Dicom_Tags::CorrectedLocalizedDeviationFromNormal),
2359424 => Ok(Dicom_Tags::CorrectedLocalizedDeviationFromNormalProbabilityCalculated),
2359425 => Ok(Dicom_Tags::CorrectedLocalizedDeviationFromNormalProbability),
2359427 => Ok(Dicom_Tags::GlobalDeviationProbabilitySequence),
2359429 => Ok(Dicom_Tags::LocalizedDeviationProbabilitySequence),
2359430 => Ok(Dicom_Tags::FovealSensitivityMeasured),
2359431 => Ok(Dicom_Tags::FovealSensitivity),
2359432 => Ok(Dicom_Tags::VisualFieldTestDuration),
2359433 => Ok(Dicom_Tags::VisualFieldTestPointSequence),
2359440 => Ok(Dicom_Tags::VisualFieldTestPointXCoordinate),
2359441 => Ok(Dicom_Tags::VisualFieldTestPointYCoordinate),
2359442 => Ok(Dicom_Tags::AgeCorrectedSensitivityDeviationValue),
2359443 => Ok(Dicom_Tags::StimulusResults),
2359444 => Ok(Dicom_Tags::SensitivityValue),
2359445 => Ok(Dicom_Tags::RetestStimulusSeen),
2359446 => Ok(Dicom_Tags::RetestSensitivityValue),
2359447 => Ok(Dicom_Tags::VisualFieldTestPointNormalsSequence),
2359448 => Ok(Dicom_Tags::QuantifiedDefect),
2359552 => Ok(Dicom_Tags::AgeCorrectedSensitivityDeviationProbabilityValue),
2359554 => Ok(Dicom_Tags::GeneralizedDefectCorrectedSensitivityDeviationFlag),
2359555 => Ok(Dicom_Tags::GeneralizedDefectCorrectedSensitivityDeviationValue),
2359556 => Ok(Dicom_Tags::GeneralizedDefectCorrectedSensitivityDeviationProbabilityValue),
2359557 => Ok(Dicom_Tags::MinimumSensitivityValue),
2359558 => Ok(Dicom_Tags::BlindSpotLocalized),
2359559 => Ok(Dicom_Tags::BlindSpotXCoordinate),
2359560 => Ok(Dicom_Tags::BlindSpotYCoordinate),
2359568 => Ok(Dicom_Tags::VisualAcuityMeasurementSequence),
2359570 => Ok(Dicom_Tags::RefractiveParametersUsedOnPatientSequence),
2359571 => Ok(Dicom_Tags::MeasurementLaterality),
2359572 => Ok(Dicom_Tags::OphthalmicPatientClinicalInformationLeftEyeSequence),
2359573 => Ok(Dicom_Tags::OphthalmicPatientClinicalInformationRightEyeSequence),
2359575 => Ok(Dicom_Tags::FovealPointNormativeDataFlag),
2359576 => Ok(Dicom_Tags::FovealPointProbabilityValue),
2359584 => Ok(Dicom_Tags::ScreeningBaselineMeasured),
2359586 => Ok(Dicom_Tags::ScreeningBaselineMeasuredSequence),
2359588 => Ok(Dicom_Tags::ScreeningBaselineType),
2359590 => Ok(Dicom_Tags::ScreeningBaselineValue),
2359810 => Ok(Dicom_Tags::AlgorithmSource),
2360070 => Ok(Dicom_Tags::DataSetName),
2360071 => Ok(Dicom_Tags::DataSetVersion),
2360072 => Ok(Dicom_Tags::DataSetSource),
2360073 => Ok(Dicom_Tags::DataSetDescription),
2360087 => Ok(Dicom_Tags::VisualFieldTestReliabilityGlobalIndexSequence),
2360096 => Ok(Dicom_Tags::VisualFieldGlobalResultsIndexSequence),
2360101 => Ok(Dicom_Tags::DataObservationSequence),
2360120 => Ok(Dicom_Tags::IndexNormalsFlag),
2360129 => Ok(Dicom_Tags::IndexProbability),
2360132 => Ok(Dicom_Tags::IndexProbabilitySequence),
2621442 => Ok(Dicom_Tags::SamplesPerPixel),
2621443 => Ok(Dicom_Tags::SamplesPerPixelUsed),
2621444 => Ok(Dicom_Tags::PhotometricInterpretation),
2621445 => Ok(Dicom_Tags::ImageDimensions),
2621446 => Ok(Dicom_Tags::PlanarConfiguration),
2621448 => Ok(Dicom_Tags::NumberOfFrames),
2621449 => Ok(Dicom_Tags::FrameIncrementPointer),
2621450 => Ok(Dicom_Tags::FrameDimensionPointer),
2621456 => Ok(Dicom_Tags::Rows),
2621457 => Ok(Dicom_Tags::Columns),
2621458 => Ok(Dicom_Tags::Planes),
2621460 => Ok(Dicom_Tags::UltrasoundColorDataPresent),
2621488 => Ok(Dicom_Tags::PixelSpacing),
2621489 => Ok(Dicom_Tags::ZoomFactor),
2621490 => Ok(Dicom_Tags::ZoomCenter),
2621492 => Ok(Dicom_Tags::PixelAspectRatio),
2621504 => Ok(Dicom_Tags::ImageFormat),
2621520 => Ok(Dicom_Tags::ManipulatedImage),
2621521 => Ok(Dicom_Tags::CorrectedImage),
2621535 => Ok(Dicom_Tags::CompressionRecognitionCode),
2621536 => Ok(Dicom_Tags::CompressionCode),
2621537 => Ok(Dicom_Tags::CompressionOriginator),
2621538 => Ok(Dicom_Tags::CompressionLabel),
2621539 => Ok(Dicom_Tags::CompressionDescription),
2621541 => Ok(Dicom_Tags::CompressionSequence),
2621542 => Ok(Dicom_Tags::CompressionStepPointers),
2621544 => Ok(Dicom_Tags::RepeatInterval),
2621545 => Ok(Dicom_Tags::BitsGrouped),
2621552 => Ok(Dicom_Tags::PerimeterTable),
2621553 => Ok(Dicom_Tags::PerimeterValue),
2621568 => Ok(Dicom_Tags::PredictorRows),
2621569 => Ok(Dicom_Tags::PredictorColumns),
2621570 => Ok(Dicom_Tags::PredictorConstants),
2621584 => Ok(Dicom_Tags::BlockedPixels),
2621585 => Ok(Dicom_Tags::BlockRows),
2621586 => Ok(Dicom_Tags::BlockColumns),
2621587 => Ok(Dicom_Tags::RowOverlap),
2621588 => Ok(Dicom_Tags::ColumnOverlap),
2621696 => Ok(Dicom_Tags::BitsAllocated),
2621697 => Ok(Dicom_Tags::BitsStored),
2621698 => Ok(Dicom_Tags::HighBit),
2621699 => Ok(Dicom_Tags::PixelRepresentation),
2621700 => Ok(Dicom_Tags::SmallestValidPixelValue),
2621701 => Ok(Dicom_Tags::LargestValidPixelValue),
2621702 => Ok(Dicom_Tags::SmallestImagePixelValue),
2621703 => Ok(Dicom_Tags::LargestImagePixelValue),
2621704 => Ok(Dicom_Tags::SmallestPixelValueInSeries),
2621705 => Ok(Dicom_Tags::LargestPixelValueInSeries),
2621712 => Ok(Dicom_Tags::SmallestImagePixelValueInPlane),
2621713 => Ok(Dicom_Tags::LargestImagePixelValueInPlane),
2621728 => Ok(Dicom_Tags::PixelPaddingValue),
2621729 => Ok(Dicom_Tags::PixelPaddingRangeLimit),
2621730 => Ok(Dicom_Tags::FloatPixelPaddingValue),
2621731 => Ok(Dicom_Tags::DoubleFloatPixelPaddingValue),
2621732 => Ok(Dicom_Tags::FloatPixelPaddingRangeLimit),
2621733 => Ok(Dicom_Tags::DoubleFloatPixelPaddingRangeLimit),
2621952 => Ok(Dicom_Tags::ImageLocation),
2622208 => Ok(Dicom_Tags::QualityControlImage),
2622209 => Ok(Dicom_Tags::BurnedInAnnotation),
2622210 => Ok(Dicom_Tags::RecognizableVisualFeatures),
2622211 => Ok(Dicom_Tags::LongitudinalTemporalInformationModified),
2622212 => Ok(Dicom_Tags::ReferencedColorPaletteInstanceUid),
2622464 => Ok(Dicom_Tags::TransformLabel),
2622465 => Ok(Dicom_Tags::TransformVersionNumber),
2622466 => Ok(Dicom_Tags::NumberOfTransformSteps),
2622467 => Ok(Dicom_Tags::SequenceOfCompressedData),
2622468 => Ok(Dicom_Tags::DetailsOfCoefficients),
2623232 => Ok(Dicom_Tags::DctLabel),
2623233 => Ok(Dicom_Tags::DataBlockDescription),
2623234 => Ok(Dicom_Tags::DataBlock),
2623248 => Ok(Dicom_Tags::NormalizationFactorFormat),
2623264 => Ok(Dicom_Tags::ZonalMapNumberFormat),
2623265 => Ok(Dicom_Tags::ZonalMapLocation),
2623266 => Ok(Dicom_Tags::ZonalMapFormat),
2623280 => Ok(Dicom_Tags::AdaptiveMapFormat),
2623296 => Ok(Dicom_Tags::CodeNumberFormat),
2624002 => Ok(Dicom_Tags::PixelSpacingCalibrationType),
2624004 => Ok(Dicom_Tags::PixelSpacingCalibrationDescription),
2625600 => Ok(Dicom_Tags::PixelIntensityRelationship),
2625601 => Ok(Dicom_Tags::PixelIntensityRelationshipSign),
2625616 => Ok(Dicom_Tags::WindowCenter),
2625617 => Ok(Dicom_Tags::WindowWidth),
2625618 => Ok(Dicom_Tags::RescaleIntercept),
2625619 => Ok(Dicom_Tags::RescaleSlope),
2625620 => Ok(Dicom_Tags::RescaleType),
2625621 => Ok(Dicom_Tags::WindowCenterWidthExplanation),
2625622 => Ok(Dicom_Tags::VoiLutFunction),
2625664 => Ok(Dicom_Tags::GrayScale),
2625680 => Ok(Dicom_Tags::RecommendedViewingMode),
2625792 => Ok(Dicom_Tags::GrayLookupTableDescriptor),
2625793 => Ok(Dicom_Tags::RedPaletteColorLookupTableDescriptor),
2625794 => Ok(Dicom_Tags::GreenPaletteColorLookupTableDescriptor),
2625795 => Ok(Dicom_Tags::BluePaletteColorLookupTableDescriptor),
2625796 => Ok(Dicom_Tags::AlphaPaletteColorLookupTableDescriptor),
2625809 => Ok(Dicom_Tags::LargeRedPaletteColorLookupTableDescriptor),
2625810 => Ok(Dicom_Tags::LargeGreenPaletteColorLookupTableDescriptor),
2625811 => Ok(Dicom_Tags::LargeBluePaletteColorLookupTableDescriptor),
2625945 => Ok(Dicom_Tags::PaletteColorLookupTableUid),
2626048 => Ok(Dicom_Tags::GrayLookupTableData),
2626049 => Ok(Dicom_Tags::RedPaletteColorLookupTableData),
2626050 => Ok(Dicom_Tags::GreenPaletteColorLookupTableData),
2626051 => Ok(Dicom_Tags::BluePaletteColorLookupTableData),
2626052 => Ok(Dicom_Tags::AlphaPaletteColorLookupTableData),
2626065 => Ok(Dicom_Tags::LargeRedPaletteColorLookupTableData),
2626066 => Ok(Dicom_Tags::LargeGreenPaletteColorLookupTableData),
2626067 => Ok(Dicom_Tags::LargeBluePaletteColorLookupTableData),
2626068 => Ok(Dicom_Tags::LargePaletteColorLookupTableUid),
2626081 => Ok(Dicom_Tags::SegmentedRedPaletteColorLookupTableData),
2626082 => Ok(Dicom_Tags::SegmentedGreenPaletteColorLookupTableData),
2626083 => Ok(Dicom_Tags::SegmentedBluePaletteColorLookupTableData),
2626084 => Ok(Dicom_Tags::SegmentedAlphaPaletteColorLookupTableData),
2626304 => Ok(Dicom_Tags::BreastImplantPresent),
2626384 => Ok(Dicom_Tags::PartialView),
2626385 => Ok(Dicom_Tags::PartialViewDescription),
2626386 => Ok(Dicom_Tags::PartialViewCodeSequence),
2626394 => Ok(Dicom_Tags::SpatialLocationsPreserved),
2626561 => Ok(Dicom_Tags::DataFrameAssignmentSequence),
2626562 => Ok(Dicom_Tags::DataPathAssignment),
2626563 => Ok(Dicom_Tags::BitsMappedToColorLookupTable),
2626564 => Ok(Dicom_Tags::BlendingLut1Sequence),
2626565 => Ok(Dicom_Tags::BlendingLut1TransferFunction),
2626566 => Ok(Dicom_Tags::BlendingWeightConstant),
2626567 => Ok(Dicom_Tags::BlendingLookupTableDescriptor),
2626568 => Ok(Dicom_Tags::BlendingLookupTableData),
2626571 => Ok(Dicom_Tags::EnhancedPaletteColorLookupTableSequence),
2626572 => Ok(Dicom_Tags::BlendingLut2Sequence),
2626573 => Ok(Dicom_Tags::BlendingLut2TransferFunction),
2626574 => Ok(Dicom_Tags::DataPathId),
2626575 => Ok(Dicom_Tags::RgbLutTransferFunction),
2626576 => Ok(Dicom_Tags::AlphaLutTransferFunction),
2629632 => Ok(Dicom_Tags::IccProfile),
2629634 => Ok(Dicom_Tags::ColorSpace),
2629904 => Ok(Dicom_Tags::LossyImageCompression),
2629906 => Ok(Dicom_Tags::LossyImageCompressionRatio),
2629908 => Ok(Dicom_Tags::LossyImageCompressionMethod),
2633728 => Ok(Dicom_Tags::ModalityLutSequence),
2633730 => Ok(Dicom_Tags::LutDescriptor),
2633731 => Ok(Dicom_Tags::LutExplanation),
2633732 => Ok(Dicom_Tags::ModalityLutType),
2633734 => Ok(Dicom_Tags::LutData),
2633744 => Ok(Dicom_Tags::VoiLutSequence),
2634000 => Ok(Dicom_Tags::SoftcopyVoiLutSequence),
2637824 => Ok(Dicom_Tags::ImagePresentationComments),
2641920 => Ok(Dicom_Tags::BiPlaneAcquisitionSequence),
2646032 => Ok(Dicom_Tags::RepresentativeFrameNumber),
2646048 => Ok(Dicom_Tags::FrameNumbersOfInterestFoi),
2646050 => Ok(Dicom_Tags::FrameOfInterestDescription),
2646051 => Ok(Dicom_Tags::FrameOfInterestType),
2646064 => Ok(Dicom_Tags::MaskPointerS),
2646080 => Ok(Dicom_Tags::RWavePointer),
2646272 => Ok(Dicom_Tags::MaskSubtractionSequence),
2646273 => Ok(Dicom_Tags::MaskOperation),
2646274 => Ok(Dicom_Tags::ApplicableFrameRange),
2646288 => Ok(Dicom_Tags::MaskFrameNumbers),
2646290 => Ok(Dicom_Tags::ContrastFrameAveraging),
2646292 => Ok(Dicom_Tags::MaskSubPixelShift),
2646304 => Ok(Dicom_Tags::TidOffset),
2646416 => Ok(Dicom_Tags::MaskOperationExplanation),
2650112 => Ok(Dicom_Tags::EquipmentAdministratorSequence),
2650113 => Ok(Dicom_Tags::NumberOfDisplaySubsystems),
2650114 => Ok(Dicom_Tags::CurrentConfigurationId),
2650115 => Ok(Dicom_Tags::DisplaySubsystemId),
2650116 => Ok(Dicom_Tags::DisplaySubsystemName),
2650117 => Ok(Dicom_Tags::DisplaySubsystemDescription),
2650118 => Ok(Dicom_Tags::SystemStatus),
2650119 => Ok(Dicom_Tags::SystemStatusComment),
2650120 => Ok(Dicom_Tags::TargetLuminanceCharacteristicsSequence),
2650121 => Ok(Dicom_Tags::LuminanceCharacteristicsId),
2650122 => Ok(Dicom_Tags::DisplaySubsystemConfigurationSequence),
2650123 => Ok(Dicom_Tags::ConfigurationId),
2650124 => Ok(Dicom_Tags::ConfigurationName),
2650125 => Ok(Dicom_Tags::ConfigurationDescription),
2650126 => Ok(Dicom_Tags::ReferencedTargetLuminanceCharacteristicsId),
2650127 => Ok(Dicom_Tags::QaResultsSequence),
2650128 => Ok(Dicom_Tags::DisplaySubsystemQaResultsSequence),
2650129 => Ok(Dicom_Tags::ConfigurationQaResultsSequence),
2650130 => Ok(Dicom_Tags::MeasurementEquipmentSequence),
2650131 => Ok(Dicom_Tags::MeasurementFunctions),
2650132 => Ok(Dicom_Tags::MeasurementEquipmentType),
2650133 => Ok(Dicom_Tags::VisualEvaluationResultSequence),
2650134 => Ok(Dicom_Tags::DisplayCalibrationResultSequence),
2650135 => Ok(Dicom_Tags::DdlValue),
2650136 => Ok(Dicom_Tags::CiexyWhitePoint),
2650137 => Ok(Dicom_Tags::DisplayFunctionType),
2650138 => Ok(Dicom_Tags::GammaValue),
2650139 => Ok(Dicom_Tags::NumberOfLuminancePoints),
2650140 => Ok(Dicom_Tags::LuminanceResponseSequence),
2650141 => Ok(Dicom_Tags::TargetMinimumLuminance),
2650142 => Ok(Dicom_Tags::TargetMaximumLuminance),
2650143 => Ok(Dicom_Tags::LuminanceValue),
2650144 => Ok(Dicom_Tags::LuminanceResponseDescription),
2650145 => Ok(Dicom_Tags::WhitePointFlag),
2650146 => Ok(Dicom_Tags::DisplayDeviceTypeCodeSequence),
2650147 => Ok(Dicom_Tags::DisplaySubsystemSequence),
2650148 => Ok(Dicom_Tags::LuminanceResultSequence),
2650149 => Ok(Dicom_Tags::AmbientLightValueSource),
2650150 => Ok(Dicom_Tags::MeasuredCharacteristics),
2650151 => Ok(Dicom_Tags::LuminanceUniformityResultSequence),
2650152 => Ok(Dicom_Tags::VisualEvaluationTestSequence),
2650153 => Ok(Dicom_Tags::TestResult),
2650154 => Ok(Dicom_Tags::TestResultComment),
2650155 => Ok(Dicom_Tags::TestImageValidation),
2650156 => Ok(Dicom_Tags::TestPatternCodeSequence),
2650157 => Ok(Dicom_Tags::MeasurementPatternCodeSequence),
2650158 => Ok(Dicom_Tags::VisualEvaluationMethodCodeSequence),
2654176 => Ok(Dicom_Tags::PixelDataProviderUrl),
2658305 => Ok(Dicom_Tags::DataPointRows),
2658306 => Ok(Dicom_Tags::DataPointColumns),
2658307 => Ok(Dicom_Tags::SignalDomainColumns),
2658457 => Ok(Dicom_Tags::LargestMonochromePixelValue),
2658568 => Ok(Dicom_Tags::DataRepresentation),
2658576 => Ok(Dicom_Tags::PixelMeasuresSequence),
2658610 => Ok(Dicom_Tags::FrameVoiLutSequence),
2658629 => Ok(Dicom_Tags::PixelValueTransformationSequence),
2658869 => Ok(Dicom_Tags::SignalDomainRows),
2659345 => Ok(Dicom_Tags::DisplayFilterPercentage),
2659349 => Ok(Dicom_Tags::FramePixelShiftSequence),
2659350 => Ok(Dicom_Tags::SubtractionItemId),
2659362 => Ok(Dicom_Tags::PixelIntensityRelationshipLutSequence),
2659395 => Ok(Dicom_Tags::FramePixelDataPropertiesSequence),
2659396 => Ok(Dicom_Tags::GeometricalProperties),
2659397 => Ok(Dicom_Tags::GeometricMaximumDistortion),
2659398 => Ok(Dicom_Tags::ImageProcessingApplied),
2659412 => Ok(Dicom_Tags::MaskSelectionMode),
2659444 => Ok(Dicom_Tags::LutFunction),
2659448 => Ok(Dicom_Tags::MaskVisibilityPercentage),
2659585 => Ok(Dicom_Tags::PixelShiftSequence),
2659586 => Ok(Dicom_Tags::RegionPixelShiftSequence),
2659587 => Ok(Dicom_Tags::VerticesOfTheRegion),
2659589 => Ok(Dicom_Tags::MultiFramePresentationSequence),
2659590 => Ok(Dicom_Tags::PixelShiftFrameRange),
2659591 => Ok(Dicom_Tags::LutFrameRange),
2659616 => Ok(Dicom_Tags::ImageToEquipmentMappingMatrix),
2659639 => Ok(Dicom_Tags::EquipmentCoordinateSystemIdentification),
3276810 => Ok(Dicom_Tags::StudyStatusId),
3276812 => Ok(Dicom_Tags::StudyPriorityId),
3276818 => Ok(Dicom_Tags::StudyIdIssuer),
3276850 => Ok(Dicom_Tags::StudyVerifiedDate),
3276851 => Ok(Dicom_Tags::StudyVerifiedTime),
3276852 => Ok(Dicom_Tags::StudyReadDate),
3276853 => Ok(Dicom_Tags::StudyReadTime),
3280896 => Ok(Dicom_Tags::ScheduledStudyStartDate),
3280897 => Ok(Dicom_Tags::ScheduledStudyStartTime),
3280912 => Ok(Dicom_Tags::ScheduledStudyStopDate),
3280913 => Ok(Dicom_Tags::ScheduledStudyStopTime),
3280928 => Ok(Dicom_Tags::ScheduledStudyLocation),
3280929 => Ok(Dicom_Tags::ScheduledStudyLocationAeTitle),
3280944 => Ok(Dicom_Tags::ReasonForStudy),
3280945 => Ok(Dicom_Tags::RequestingPhysicianIdentificationSequence),
3280946 => Ok(Dicom_Tags::RequestingPhysician),
3280947 => Ok(Dicom_Tags::RequestingService),
3280948 => Ok(Dicom_Tags::RequestingServiceCodeSequence),
3280960 => Ok(Dicom_Tags::StudyArrivalDate),
3280961 => Ok(Dicom_Tags::StudyArrivalTime),
3280976 => Ok(Dicom_Tags::StudyCompletionDate),
3280977 => Ok(Dicom_Tags::StudyCompletionTime),
3280981 => Ok(Dicom_Tags::StudyComponentStatusId),
3280992 => Ok(Dicom_Tags::RequestedProcedureDescription),
3280996 => Ok(Dicom_Tags::RequestedProcedureCodeSequence),
3281008 => Ok(Dicom_Tags::RequestedContrastAgent),
3293184 => Ok(Dicom_Tags::StudyComments),
3670020 => Ok(Dicom_Tags::ReferencedPatientAliasSequence),
3670024 => Ok(Dicom_Tags::VisitStatusId),
3670032 => Ok(Dicom_Tags::AdmissionId),
3670033 => Ok(Dicom_Tags::IssuerOfAdmissionId),
3670036 => Ok(Dicom_Tags::IssuerOfAdmissionIdSequence),
3670038 => Ok(Dicom_Tags::RouteOfAdmissions),
3670042 => Ok(Dicom_Tags::ScheduledAdmissionDate),
3670043 => Ok(Dicom_Tags::ScheduledAdmissionTime),
3670044 => Ok(Dicom_Tags::ScheduledDischargeDate),
3670045 => Ok(Dicom_Tags::ScheduledDischargeTime),
3670046 => Ok(Dicom_Tags::ScheduledPatientInstitutionResidence),
3670048 => Ok(Dicom_Tags::AdmittingDate),
3670049 => Ok(Dicom_Tags::AdmittingTime),
3670064 => Ok(Dicom_Tags::DischargeDate),
3670066 => Ok(Dicom_Tags::DischargeTime),
3670080 => Ok(Dicom_Tags::DischargeDiagnosisDescription),
3670084 => Ok(Dicom_Tags::DischargeDiagnosisCodeSequence),
3670096 => Ok(Dicom_Tags::SpecialNeeds),
3670112 => Ok(Dicom_Tags::ServiceEpisodeId),
3670113 => Ok(Dicom_Tags::IssuerOfServiceEpisodeId),
3670114 => Ok(Dicom_Tags::ServiceEpisodeDescription),
3670116 => Ok(Dicom_Tags::IssuerOfServiceEpisodeIdSequence),
3670272 => Ok(Dicom_Tags::PertinentDocumentsSequence),
3670273 => Ok(Dicom_Tags::PertinentResourcesSequence),
3670274 => Ok(Dicom_Tags::ResourceDescription),
3670784 => Ok(Dicom_Tags::CurrentPatientLocation),
3671040 => Ok(Dicom_Tags::PatientSInstitutionResidence),
3671296 => Ok(Dicom_Tags::PatientState),
3671298 => Ok(Dicom_Tags::PatientClinicalTrialParticipationSequence),
3686400 => Ok(Dicom_Tags::VisitComments),
3801092 => Ok(Dicom_Tags::WaveformOriginality),
3801093 => Ok(Dicom_Tags::NumberOfWaveformChannels),
3801104 => Ok(Dicom_Tags::NumberOfWaveformSamples),
3801114 => Ok(Dicom_Tags::SamplingFrequency),
3801120 => Ok(Dicom_Tags::MultiplexGroupLabel),
3801600 => Ok(Dicom_Tags::ChannelDefinitionSequence),
3801602 => Ok(Dicom_Tags::WaveformChannelNumber),
3801603 => Ok(Dicom_Tags::ChannelLabel),
3801605 => Ok(Dicom_Tags::ChannelStatus),
3801608 => Ok(Dicom_Tags::ChannelSourceSequence),
3801609 => Ok(Dicom_Tags::ChannelSourceModifiersSequence),
3801610 => Ok(Dicom_Tags::SourceWaveformSequence),
3801612 => Ok(Dicom_Tags::ChannelDerivationDescription),
3801616 => Ok(Dicom_Tags::ChannelSensitivity),
3801617 => Ok(Dicom_Tags::ChannelSensitivityUnitsSequence),
3801618 => Ok(Dicom_Tags::ChannelSensitivityCorrectionFactor),
3801619 => Ok(Dicom_Tags::ChannelBaseline),
3801620 => Ok(Dicom_Tags::ChannelTimeSkew),
3801621 => Ok(Dicom_Tags::ChannelSampleSkew),
3801624 => Ok(Dicom_Tags::ChannelOffset),
3801626 => Ok(Dicom_Tags::WaveformBitsStored),
3801632 => Ok(Dicom_Tags::FilterLowFrequency),
3801633 => Ok(Dicom_Tags::FilterHighFrequency),
3801634 => Ok(Dicom_Tags::NotchFilterFrequency),
3801635 => Ok(Dicom_Tags::NotchFilterBandwidth),
3801648 => Ok(Dicom_Tags::WaveformDataDisplayScale),
3801649 => Ok(Dicom_Tags::WaveformDisplayBackgroundCielabValue),
3801664 => Ok(Dicom_Tags::WaveformPresentationGroupSequence),
3801665 => Ok(Dicom_Tags::PresentationGroupNumber),
3801666 => Ok(Dicom_Tags::ChannelDisplaySequence),
3801668 => Ok(Dicom_Tags::ChannelRecommendedDisplayCielabValue),
3801669 => Ok(Dicom_Tags::ChannelPosition),
3801670 => Ok(Dicom_Tags::DisplayShadingFlag),
3801671 => Ok(Dicom_Tags::FractionalChannelDisplayScale),
3801672 => Ok(Dicom_Tags::AbsoluteChannelDisplayScale),
3801856 => Ok(Dicom_Tags::MultiplexedAudioChannelsDescriptionCodeSequence),
3801857 => Ok(Dicom_Tags::ChannelIdentificationCode),
3801858 => Ok(Dicom_Tags::ChannelMode),
4194305 => Ok(Dicom_Tags::ScheduledStationAeTitle),
4194306 => Ok(Dicom_Tags::ScheduledProcedureStepStartDate),
4194307 => Ok(Dicom_Tags::ScheduledProcedureStepStartTime),
4194308 => Ok(Dicom_Tags::ScheduledProcedureStepEndDate),
4194309 => Ok(Dicom_Tags::ScheduledProcedureStepEndTime),
4194310 => Ok(Dicom_Tags::ScheduledPerformingPhysicianSName),
4194311 => Ok(Dicom_Tags::ScheduledProcedureStepDescription),
4194312 => Ok(Dicom_Tags::ScheduledProtocolCodeSequence),
4194313 => Ok(Dicom_Tags::ScheduledProcedureStepId),
4194314 => Ok(Dicom_Tags::StageCodeSequence),
4194315 => Ok(Dicom_Tags::ScheduledPerformingPhysicianIdentificationSequence),
4194320 => Ok(Dicom_Tags::ScheduledStationName),
4194321 => Ok(Dicom_Tags::ScheduledProcedureStepLocation),
4194322 => Ok(Dicom_Tags::PreMedication),
4194336 => Ok(Dicom_Tags::ScheduledProcedureStepStatus),
4194342 => Ok(Dicom_Tags::OrderPlacerIdentifierSequence),
4194343 => Ok(Dicom_Tags::OrderFillerIdentifierSequence),
4194353 => Ok(Dicom_Tags::LocalNamespaceEntityId),
4194354 => Ok(Dicom_Tags::UniversalEntityId),
4194355 => Ok(Dicom_Tags::UniversalEntityIdType),
4194357 => Ok(Dicom_Tags::IdentifierTypeCode),
4194358 => Ok(Dicom_Tags::AssigningFacilitySequence),
4194361 => Ok(Dicom_Tags::AssigningJurisdictionCodeSequence),
4194362 => Ok(Dicom_Tags::AssigningAgencyOrDepartmentCodeSequence),
4194560 => Ok(Dicom_Tags::ScheduledProcedureStepSequence),
4194848 => Ok(Dicom_Tags::ReferencedNonImageCompositeSopInstanceSequence),
4194881 => Ok(Dicom_Tags::PerformedStationAeTitle),
4194882 => Ok(Dicom_Tags::PerformedStationName),
4194883 => Ok(Dicom_Tags::PerformedLocation),
4194884 => Ok(Dicom_Tags::PerformedProcedureStepStartDate),
4194885 => Ok(Dicom_Tags::PerformedProcedureStepStartTime),
4194896 => Ok(Dicom_Tags::PerformedProcedureStepEndDate),
4194897 => Ok(Dicom_Tags::PerformedProcedureStepEndTime),
4194898 => Ok(Dicom_Tags::PerformedProcedureStepStatus),
4194899 => Ok(Dicom_Tags::PerformedProcedureStepId),
4194900 => Ok(Dicom_Tags::PerformedProcedureStepDescription),
4194901 => Ok(Dicom_Tags::PerformedProcedureTypeDescription),
4194912 => Ok(Dicom_Tags::PerformedProtocolCodeSequence),
4194913 => Ok(Dicom_Tags::PerformedProtocolType),
4194928 => Ok(Dicom_Tags::ScheduledStepAttributesSequence),
4194933 => Ok(Dicom_Tags::RequestAttributesSequence),
4194944 => Ok(Dicom_Tags::CommentsOnThePerformedProcedureStep),
4194945 => Ok(Dicom_Tags::PerformedProcedureStepDiscontinuationReasonCodeSequence),
4194963 => Ok(Dicom_Tags::QuantitySequence),
4194964 => Ok(Dicom_Tags::Quantity),
4194965 => Ok(Dicom_Tags::MeasuringUnitsSequence),
4194966 => Ok(Dicom_Tags::BillingItemSequence),
4195072 => Ok(Dicom_Tags::TotalTimeOfFluoroscopy),
4195073 => Ok(Dicom_Tags::TotalNumberOfExposures),
4195074 => Ok(Dicom_Tags::EntranceDose),
4195075 => Ok(Dicom_Tags::ExposedArea),
4195078 => Ok(Dicom_Tags::DistanceSourceToEntrance),
4195079 => Ok(Dicom_Tags::DistanceSourceToSupport),
4195086 => Ok(Dicom_Tags::ExposureDoseSequence),
4195088 => Ok(Dicom_Tags::CommentsOnRadiationDose),
4195090 => Ok(Dicom_Tags::XRayOutput),
4195092 => Ok(Dicom_Tags::HalfValueLayer),
4195094 => Ok(Dicom_Tags::OrganDose),
4195096 => Ok(Dicom_Tags::OrganExposed),
4195104 => Ok(Dicom_Tags::BillingProcedureStepSequence),
4195105 => Ok(Dicom_Tags::FilmConsumptionSequence),
4195108 => Ok(Dicom_Tags::BillingSuppliesAndDevicesSequence),
4195120 => Ok(Dicom_Tags::ReferencedProcedureStepSequence),
4195136 => Ok(Dicom_Tags::PerformedSeriesSequence),
4195328 => Ok(Dicom_Tags::CommentsOnTheScheduledProcedureStep),
4195392 => Ok(Dicom_Tags::ProtocolContextSequence),
4195393 => Ok(Dicom_Tags::ContentItemModifierSequence),
4195584 => Ok(Dicom_Tags::ScheduledSpecimenSequence),
4195594 => Ok(Dicom_Tags::SpecimenAccessionNumber),
4195602 => Ok(Dicom_Tags::ContainerIdentifier),
4195603 => Ok(Dicom_Tags::IssuerOfTheContainerIdentifierSequence),
4195605 => Ok(Dicom_Tags::AlternateContainerIdentifierSequence),
4195608 => Ok(Dicom_Tags::ContainerTypeCodeSequence),
4195610 => Ok(Dicom_Tags::ContainerDescription),
4195616 => Ok(Dicom_Tags::ContainerComponentSequence),
4195664 => Ok(Dicom_Tags::SpecimenSequence),
4195665 => Ok(Dicom_Tags::SpecimenIdentifier),
4195666 => Ok(Dicom_Tags::SpecimenDescriptionSequenceTrial),
4195667 => Ok(Dicom_Tags::SpecimenDescriptionTrial),
4195668 => Ok(Dicom_Tags::SpecimenUid),
4195669 => Ok(Dicom_Tags::AcquisitionContextSequence),
4195670 => Ok(Dicom_Tags::AcquisitionContextDescription),
4195680 => Ok(Dicom_Tags::SpecimenDescriptionSequence),
4195682 => Ok(Dicom_Tags::IssuerOfTheSpecimenIdentifierSequence),
4195738 => Ok(Dicom_Tags::SpecimenTypeCodeSequence),
4195840 => Ok(Dicom_Tags::SpecimenShortDescription),
4195842 => Ok(Dicom_Tags::SpecimenDetailedDescription),
4195856 => Ok(Dicom_Tags::SpecimenPreparationSequence),
4195858 => Ok(Dicom_Tags::SpecimenPreparationStepContentItemSequence),
4195872 => Ok(Dicom_Tags::SpecimenLocalizationContentItemSequence),
4196090 => Ok(Dicom_Tags::SlideIdentifier),
4196122 => Ok(Dicom_Tags::ImageCenterPointCoordinatesSequence),
4196138 => Ok(Dicom_Tags::XOffsetInSlideCoordinateSystem),
4196154 => Ok(Dicom_Tags::YOffsetInSlideCoordinateSystem),
4196170 => Ok(Dicom_Tags::ZOffsetInSlideCoordinateSystem),
4196568 => Ok(Dicom_Tags::PixelSpacingSequence),
4196570 => Ok(Dicom_Tags::CoordinateSystemAxisCodeSequence),
4196586 => Ok(Dicom_Tags::MeasurementUnitsCodeSequence),
4196856 => Ok(Dicom_Tags::VitalStainCodeSequenceTrial),
4198401 => Ok(Dicom_Tags::RequestedProcedureId),
4198402 => Ok(Dicom_Tags::ReasonForTheRequestedProcedure),
4198403 => Ok(Dicom_Tags::RequestedProcedurePriority),
4198404 => Ok(Dicom_Tags::PatientTransportArrangements),
4198405 => Ok(Dicom_Tags::RequestedProcedureLocation),
4198406 => Ok(Dicom_Tags::PlacerOrderNumberProcedure),
4198407 => Ok(Dicom_Tags::FillerOrderNumberProcedure),
4198408 => Ok(Dicom_Tags::ConfidentialityCode),
4198409 => Ok(Dicom_Tags::ReportingPriority),
4198410 => Ok(Dicom_Tags::ReasonForRequestedProcedureCodeSequence),
4198416 => Ok(Dicom_Tags::NamesOfIntendedRecipientsOfResults),
4198417 => Ok(Dicom_Tags::IntendedRecipientsOfResultsIdentificationSequence),
4198418 => Ok(Dicom_Tags::ReasonForPerformedProcedureCodeSequence),
4198496 => Ok(Dicom_Tags::RequestedProcedureDescriptionTrial),
4198657 => Ok(Dicom_Tags::PersonIdentificationCodeSequence),
4198658 => Ok(Dicom_Tags::PersonSAddress),
4198659 => Ok(Dicom_Tags::PersonSTelephoneNumbers),
4198660 => Ok(Dicom_Tags::PersonSTelecomInformation),
4199424 => Ok(Dicom_Tags::RequestedProcedureComments),
4202497 => Ok(Dicom_Tags::ReasonForTheImagingServiceRequest),
4202500 => Ok(Dicom_Tags::IssueDateOfImagingServiceRequest),
4202501 => Ok(Dicom_Tags::IssueTimeOfImagingServiceRequest),
4202502 => Ok(Dicom_Tags::PlacerOrderNumberImagingServiceRequestRetired),
4202503 => Ok(Dicom_Tags::FillerOrderNumberImagingServiceRequestRetired),
4202504 => Ok(Dicom_Tags::OrderEnteredBy),
4202505 => Ok(Dicom_Tags::OrderEntererSLocation),
4202512 => Ok(Dicom_Tags::OrderCallbackPhoneNumber),
4202513 => Ok(Dicom_Tags::OrderCallbackTelecomInformation),
4202518 => Ok(Dicom_Tags::PlacerOrderNumberImagingServiceRequest),
4202519 => Ok(Dicom_Tags::FillerOrderNumberImagingServiceRequest),
4203520 => Ok(Dicom_Tags::ImagingServiceRequestComments),
4206593 => Ok(Dicom_Tags::ConfidentialityConstraintOnPatientDataDescription),
4210689 => Ok(Dicom_Tags::GeneralPurposeScheduledProcedureStepStatus),
4210690 => Ok(Dicom_Tags::GeneralPurposePerformedProcedureStepStatus),
4210691 => Ok(Dicom_Tags::GeneralPurposeScheduledProcedureStepPriority),
4210692 => Ok(Dicom_Tags::ScheduledProcessingApplicationsCodeSequence),
4210693 => Ok(Dicom_Tags::ScheduledProcedureStepStartDatetime),
4210694 => Ok(Dicom_Tags::MultipleCopiesFlag),
4210695 => Ok(Dicom_Tags::PerformedProcessingApplicationsCodeSequence),
4210697 => Ok(Dicom_Tags::HumanPerformerCodeSequence),
4210704 => Ok(Dicom_Tags::ScheduledProcedureStepModificationDatetime),
4210705 => Ok(Dicom_Tags::ExpectedCompletionDatetime),
4210709 => Ok(Dicom_Tags::ResultingGeneralPurposePerformedProcedureStepsSequence),
4210710 => Ok(Dicom_Tags::ReferencedGeneralPurposeScheduledProcedureStepSequence),
4210712 => Ok(Dicom_Tags::ScheduledWorkitemCodeSequence),
4210713 => Ok(Dicom_Tags::PerformedWorkitemCodeSequence),
4210720 => Ok(Dicom_Tags::InputAvailabilityFlag),
4210721 => Ok(Dicom_Tags::InputInformationSequence),
4210722 => Ok(Dicom_Tags::RelevantInformationSequence),
4210723 => Ok(Dicom_Tags::ReferencedGeneralPurposeScheduledProcedureStepTransactionUid),
4210725 => Ok(Dicom_Tags::ScheduledStationNameCodeSequence),
4210726 => Ok(Dicom_Tags::ScheduledStationClassCodeSequence),
4210727 => Ok(Dicom_Tags::ScheduledStationGeographicLocationCodeSequence),
4210728 => Ok(Dicom_Tags::PerformedStationNameCodeSequence),
4210729 => Ok(Dicom_Tags::PerformedStationClassCodeSequence),
4210736 => Ok(Dicom_Tags::PerformedStationGeographicLocationCodeSequence),
4210737 => Ok(Dicom_Tags::RequestedSubsequentWorkitemCodeSequence),
4210738 => Ok(Dicom_Tags::NonDicomOutputCodeSequence),
4210739 => Ok(Dicom_Tags::OutputInformationSequence),
4210740 => Ok(Dicom_Tags::ScheduledHumanPerformersSequence),
4210741 => Ok(Dicom_Tags::ActualHumanPerformersSequence),
4210742 => Ok(Dicom_Tags::HumanPerformerSOrganization),
4210743 => Ok(Dicom_Tags::HumanPerformerSName),
4210752 => Ok(Dicom_Tags::RawDataHandling),
4210753 => Ok(Dicom_Tags::InputReadinessState),
4210768 => Ok(Dicom_Tags::PerformedProcedureStepStartDatetime),
4210769 => Ok(Dicom_Tags::PerformedProcedureStepEndDatetime),
4210770 => Ok(Dicom_Tags::ProcedureStepCancellationDatetime),
4210800 => Ok(Dicom_Tags::OutputDestinationSequence),
4210801 => Ok(Dicom_Tags::DicomStorageSequence),
4210802 => Ok(Dicom_Tags::StowRsStorageSequence),
4210803 => Ok(Dicom_Tags::StorageUrl),
4210804 => Ok(Dicom_Tags::XdsStorageSequence),
4227842 => Ok(Dicom_Tags::EntranceDoseInMgy),
4231314 => Ok(Dicom_Tags::ParametricMapFrameTypeSequence),
4231316 => Ok(Dicom_Tags::ReferencedImageRealWorldValueMappingSequence),
4231318 => Ok(Dicom_Tags::RealWorldValueMappingSequence),
4231320 => Ok(Dicom_Tags::PixelValueMappingCodeSequence),
4231696 => Ok(Dicom_Tags::LutLabel),
4231697 => Ok(Dicom_Tags::RealWorldValueLastValueMapped),
4231698 => Ok(Dicom_Tags::RealWorldValueLutData),
4231699 => Ok(Dicom_Tags::DoubleFloatRealWorldValueLastValueMapped),
4231700 => Ok(Dicom_Tags::DoubleFloatRealWorldValueFirstValueMapped),
4231702 => Ok(Dicom_Tags::RealWorldValueFirstValueMapped),
4231712 => Ok(Dicom_Tags::QuantityDefinitionSequence),
4231716 => Ok(Dicom_Tags::RealWorldValueIntercept),
4231717 => Ok(Dicom_Tags::RealWorldValueSlope),
4235271 => Ok(Dicom_Tags::FindingsFlagTrial),
4235280 => Ok(Dicom_Tags::RelationshipType),
4235296 => Ok(Dicom_Tags::FindingsSequenceTrial),
4235297 => Ok(Dicom_Tags::FindingsGroupUidTrial),
4235298 => Ok(Dicom_Tags::ReferencedFindingsGroupUidTrial),
4235299 => Ok(Dicom_Tags::FindingsGroupRecordingDateTrial),
4235300 => Ok(Dicom_Tags::FindingsGroupRecordingTimeTrial),
4235302 => Ok(Dicom_Tags::FindingsSourceCategoryCodeSequenceTrial),
4235303 => Ok(Dicom_Tags::VerifyingOrganization),
4235304 => Ok(Dicom_Tags::DocumentingOrganizationIdentifierCodeSequenceTrial),
4235312 => Ok(Dicom_Tags::VerificationDatetime),
4235314 => Ok(Dicom_Tags::ObservationDatetime),
4235328 => Ok(Dicom_Tags::ValueType),
4235331 => Ok(Dicom_Tags::ConceptNameCodeSequence),
4235335 => Ok(Dicom_Tags::MeasurementPrecisionDescriptionTrial),
4235344 => Ok(Dicom_Tags::ContinuityOfContent),
4235351 => Ok(Dicom_Tags::UrgencyOrPriorityAlertsTrial),
4235360 => Ok(Dicom_Tags::SequencingIndicatorTrial),
4235366 => Ok(Dicom_Tags::DocumentIdentifierCodeSequenceTrial),
4235367 => Ok(Dicom_Tags::DocumentAuthorTrial),
4235368 => Ok(Dicom_Tags::DocumentAuthorIdentifierCodeSequenceTrial),
4235376 => Ok(Dicom_Tags::IdentifierCodeSequenceTrial),
4235379 => Ok(Dicom_Tags::VerifyingObserverSequence),
4235380 => Ok(Dicom_Tags::ObjectBinaryIdentifierTrial),
4235381 => Ok(Dicom_Tags::VerifyingObserverName),
4235382 => Ok(Dicom_Tags::DocumentingObserverIdentifierCodeSequenceTrial),
4235384 => Ok(Dicom_Tags::AuthorObserverSequence),
4235386 => Ok(Dicom_Tags::ParticipantSequence),
4235388 => Ok(Dicom_Tags::CustodialOrganizationSequence),
4235392 => Ok(Dicom_Tags::ParticipationType),
4235394 => Ok(Dicom_Tags::ParticipationDatetime),
4235396 => Ok(Dicom_Tags::ObserverType),
4235397 => Ok(Dicom_Tags::ProcedureIdentifierCodeSequenceTrial),
4235400 => Ok(Dicom_Tags::VerifyingObserverIdentificationCodeSequence),
4235401 => Ok(Dicom_Tags::ObjectDirectoryBinaryIdentifierTrial),
4235408 => Ok(Dicom_Tags::EquivalentCdaDocumentSequence),
4235440 => Ok(Dicom_Tags::ReferencedWaveformChannels),
4235536 => Ok(Dicom_Tags::DateOfDocumentOrVerbalTransactionTrial),
4235538 => Ok(Dicom_Tags::TimeOfDocumentCreationOrVerbalTransactionTrial),
4235552 => Ok(Dicom_Tags::Datetime),
4235553 => Ok(Dicom_Tags::Date),
4235554 => Ok(Dicom_Tags::Time),
4235555 => Ok(Dicom_Tags::PersonName),
4235556 => Ok(Dicom_Tags::Uid),
4235557 => Ok(Dicom_Tags::ReportStatusIdTrial),
4235568 => Ok(Dicom_Tags::TemporalRangeType),
4235570 => Ok(Dicom_Tags::ReferencedSamplePositions),
4235574 => Ok(Dicom_Tags::ReferencedFrameNumbers),
4235576 => Ok(Dicom_Tags::ReferencedTimeOffsets),
4235578 => Ok(Dicom_Tags::ReferencedDatetime),
4235616 => Ok(Dicom_Tags::TextValue),
4235617 => Ok(Dicom_Tags::FloatingPointValue),
4235618 => Ok(Dicom_Tags::RationalNumeratorValue),
4235619 => Ok(Dicom_Tags::RationalDenominatorValue),
4235623 => Ok(Dicom_Tags::ObservationCategoryCodeSequenceTrial),
4235624 => Ok(Dicom_Tags::ConceptCodeSequence),
4235626 => Ok(Dicom_Tags::BibliographicCitationTrial),
4235632 => Ok(Dicom_Tags::PurposeOfReferenceCodeSequence),
4235633 => Ok(Dicom_Tags::ObservationUid),
4235634 => Ok(Dicom_Tags::ReferencedObservationUidTrial),
4235635 => Ok(Dicom_Tags::ReferencedObservationClassTrial),
4235636 => Ok(Dicom_Tags::ReferencedObjectObservationClassTrial),
4235648 => Ok(Dicom_Tags::AnnotationGroupNumber),
4235666 => Ok(Dicom_Tags::ObservationDateTrial),
4235667 => Ok(Dicom_Tags::ObservationTimeTrial),
4235668 => Ok(Dicom_Tags::MeasurementAutomationTrial),
4235669 => Ok(Dicom_Tags::ModifierCodeSequence),
4235812 => Ok(Dicom_Tags::IdentificationDescriptionTrial),
4235920 => Ok(Dicom_Tags::CoordinatesSetGeometricTypeTrial),
4235926 => Ok(Dicom_Tags::AlgorithmCodeSequenceTrial),
4235927 => Ok(Dicom_Tags::AlgorithmDescriptionTrial),
4235930 => Ok(Dicom_Tags::PixelCoordinatesSetTrial),
4236032 => Ok(Dicom_Tags::MeasuredValueSequence),
4236033 => Ok(Dicom_Tags::NumericValueQualifierCodeSequence),
4236039 => Ok(Dicom_Tags::CurrentObserverTrial),
4236042 => Ok(Dicom_Tags::NumericValue),
4236051 => Ok(Dicom_Tags::ReferencedAccessionSequenceTrial),
4236090 => Ok(Dicom_Tags::ReportStatusCommentTrial),
4236096 => Ok(Dicom_Tags::ProcedureContextSequenceTrial),
4236114 => Ok(Dicom_Tags::VerbalSourceTrial),
4236115 => Ok(Dicom_Tags::AddressTrial),
4236116 => Ok(Dicom_Tags::TelephoneNumberTrial),
4236120 => Ok(Dicom_Tags::VerbalSourceIdentifierCodeSequenceTrial),
4236128 => Ok(Dicom_Tags::PredecessorDocumentsSequence),
4236144 => Ok(Dicom_Tags::ReferencedRequestSequence),
4236146 => Ok(Dicom_Tags::PerformedProcedureCodeSequence),
4236149 => Ok(Dicom_Tags::CurrentRequestedProcedureEvidenceSequence),
4236160 => Ok(Dicom_Tags::ReportDetailSequenceTrial),
4236165 => Ok(Dicom_Tags::PertinentOtherEvidenceSequence),
4236176 => Ok(Dicom_Tags::Hl7StructuredDocumentReferenceSequence),
4236290 => Ok(Dicom_Tags::ObservationSubjectUidTrial),
4236291 => Ok(Dicom_Tags::ObservationSubjectClassTrial),
4236292 => Ok(Dicom_Tags::ObservationSubjectTypeCodeSequenceTrial),
4236433 => Ok(Dicom_Tags::CompletionFlag),
4236434 => Ok(Dicom_Tags::CompletionFlagDescription),
4236435 => Ok(Dicom_Tags::VerificationFlag),
4236436 => Ok(Dicom_Tags::ArchiveRequested),
4236438 => Ok(Dicom_Tags::PreliminaryFlag),
4236548 => Ok(Dicom_Tags::ContentTemplateSequence),
4236581 => Ok(Dicom_Tags::IdenticalDocumentsSequence),
4236800 => Ok(Dicom_Tags::ObservationSubjectContextFlagTrial),
4236801 => Ok(Dicom_Tags::ObserverContextFlagTrial),
4236803 => Ok(Dicom_Tags::ProcedureContextFlagTrial),
4237104 => Ok(Dicom_Tags::ContentSequence),
4237105 => Ok(Dicom_Tags::RelationshipSequenceTrial),
4237106 => Ok(Dicom_Tags::RelationshipTypeCodeSequenceTrial),
4237124 => Ok(Dicom_Tags::LanguageCodeSequenceTrial),
4237714 => Ok(Dicom_Tags::UniformResourceLocatorTrial),
4239392 => Ok(Dicom_Tags::WaveformAnnotationSequence),
4250368 => Ok(Dicom_Tags::TemplateIdentifier),
4250374 => Ok(Dicom_Tags::TemplateVersion),
4250375 => Ok(Dicom_Tags::TemplateLocalVersion),
4250379 => Ok(Dicom_Tags::TemplateExtensionFlag),
4250380 => Ok(Dicom_Tags::TemplateExtensionOrganizationUid),
4250381 => Ok(Dicom_Tags::TemplateExtensionCreatorUid),
4250483 => Ok(Dicom_Tags::ReferencedContentItemIdentifier),
4251649 => Ok(Dicom_Tags::Hl7InstanceIdentifier),
4251652 => Ok(Dicom_Tags::Hl7DocumentEffectiveTime),
4251654 => Ok(Dicom_Tags::Hl7DocumentTypeCodeSequence),
4251656 => Ok(Dicom_Tags::DocumentClassCodeSequence),
4251664 => Ok(Dicom_Tags::RetrieveUri),
4251665 => Ok(Dicom_Tags::RetrieveLocationUid),
4251680 => Ok(Dicom_Tags::TypeOfInstances),
4251681 => Ok(Dicom_Tags::DicomRetrievalSequence),
4251682 => Ok(Dicom_Tags::DicomMediaRetrievalSequence),
4251683 => Ok(Dicom_Tags::WadoRetrievalSequence),
4251684 => Ok(Dicom_Tags::XdsRetrievalSequence),
4251685 => Ok(Dicom_Tags::WadoRsRetrievalSequence),
4251696 => Ok(Dicom_Tags::RepositoryUniqueId),
4251697 => Ok(Dicom_Tags::HomeCommunityId),
4325392 => Ok(Dicom_Tags::DocumentTitle),
4325393 => Ok(Dicom_Tags::EncapsulatedDocument),
4325394 => Ok(Dicom_Tags::MimeTypeOfEncapsulatedDocument),
4325395 => Ok(Dicom_Tags::SourceInstanceSequence),
4325396 => Ok(Dicom_Tags::ListOfMimeTypes),
4456449 => Ok(Dicom_Tags::ProductPackageIdentifier),
4456450 => Ok(Dicom_Tags::SubstanceAdministrationApproval),
4456451 => Ok(Dicom_Tags::ApprovalStatusFurtherDescription),
4456452 => Ok(Dicom_Tags::ApprovalStatusDatetime),
4456455 => Ok(Dicom_Tags::ProductTypeCodeSequence),
4456456 => Ok(Dicom_Tags::ProductName),
4456457 => Ok(Dicom_Tags::ProductDescription),
4456458 => Ok(Dicom_Tags::ProductLotIdentifier),
4456459 => Ok(Dicom_Tags::ProductExpirationDatetime),
4456464 => Ok(Dicom_Tags::SubstanceAdministrationDatetime),
4456465 => Ok(Dicom_Tags::SubstanceAdministrationNotes),
4456466 => Ok(Dicom_Tags::SubstanceAdministrationDeviceId),
4456467 => Ok(Dicom_Tags::ProductParameterSequence),
4456473 => Ok(Dicom_Tags::SubstanceAdministrationParameterSequence),
4587538 => Ok(Dicom_Tags::LensDescription),
4587540 => Ok(Dicom_Tags::RightLensSequence),
4587541 => Ok(Dicom_Tags::LeftLensSequence),
4587542 => Ok(Dicom_Tags::UnspecifiedLateralityLensSequence),
4587544 => Ok(Dicom_Tags::CylinderSequence),
4587560 => Ok(Dicom_Tags::PrismSequence),
4587568 => Ok(Dicom_Tags::HorizontalPrismPower),
4587570 => Ok(Dicom_Tags::HorizontalPrismBase),
4587572 => Ok(Dicom_Tags::VerticalPrismPower),
4587574 => Ok(Dicom_Tags::VerticalPrismBase),
4587576 => Ok(Dicom_Tags::LensSegmentType),
4587584 => Ok(Dicom_Tags::OpticalTransmittance),
4587586 => Ok(Dicom_Tags::ChannelWidth),
4587588 => Ok(Dicom_Tags::PupilSize),
4587590 => Ok(Dicom_Tags::CornealSize),
4587600 => Ok(Dicom_Tags::AutorefractionRightEyeSequence),
4587602 => Ok(Dicom_Tags::AutorefractionLeftEyeSequence),
4587616 => Ok(Dicom_Tags::DistancePupillaryDistance),
4587618 => Ok(Dicom_Tags::NearPupillaryDistance),
4587619 => Ok(Dicom_Tags::IntermediatePupillaryDistance),
4587620 => Ok(Dicom_Tags::OtherPupillaryDistance),
4587632 => Ok(Dicom_Tags::KeratometryRightEyeSequence),
4587633 => Ok(Dicom_Tags::KeratometryLeftEyeSequence),
4587636 => Ok(Dicom_Tags::SteepKeratometricAxisSequence),
4587637 => Ok(Dicom_Tags::RadiusOfCurvature),
4587638 => Ok(Dicom_Tags::KeratometricPower),
4587639 => Ok(Dicom_Tags::KeratometricAxis),
4587648 => Ok(Dicom_Tags::FlatKeratometricAxisSequence),
4587666 => Ok(Dicom_Tags::BackgroundColor),
4587668 => Ok(Dicom_Tags::Optotype),
4587669 => Ok(Dicom_Tags::OptotypePresentation),
4587671 => Ok(Dicom_Tags::SubjectiveRefractionRightEyeSequence),
4587672 => Ok(Dicom_Tags::SubjectiveRefractionLeftEyeSequence),
4587776 => Ok(Dicom_Tags::AddNearSequence),
4587777 => Ok(Dicom_Tags::AddIntermediateSequence),
4587778 => Ok(Dicom_Tags::AddOtherSequence),
4587780 => Ok(Dicom_Tags::AddPower),
4587782 => Ok(Dicom_Tags::ViewingDistance),
4587809 => Ok(Dicom_Tags::VisualAcuityTypeCodeSequence),
4587810 => Ok(Dicom_Tags::VisualAcuityRightEyeSequence),
4587811 => Ok(Dicom_Tags::VisualAcuityLeftEyeSequence),
4587812 => Ok(Dicom_Tags::VisualAcuityBothEyesOpenSequence),
4587813 => Ok(Dicom_Tags::ViewingDistanceType),
4587829 => Ok(Dicom_Tags::VisualAcuityModifiers),
4587831 => Ok(Dicom_Tags::DecimalVisualAcuity),
4587833 => Ok(Dicom_Tags::OptotypeDetailedDefinition),
4587845 => Ok(Dicom_Tags::ReferencedRefractiveMeasurementsSequence),
4587846 => Ok(Dicom_Tags::SpherePower),
4587847 => Ok(Dicom_Tags::CylinderPower),
4588033 => Ok(Dicom_Tags::CornealTopographySurface),
4588034 => Ok(Dicom_Tags::CornealVertexLocation),
4588035 => Ok(Dicom_Tags::PupilCentroidXCoordinate),
4588036 => Ok(Dicom_Tags::PupilCentroidYCoordinate),
4588037 => Ok(Dicom_Tags::EquivalentPupilRadius),
4588039 => Ok(Dicom_Tags::CornealTopographyMapTypeCodeSequence),
4588040 => Ok(Dicom_Tags::VerticesOfTheOutlineOfPupil),
4588048 => Ok(Dicom_Tags::CornealTopographyMappingNormalsSequence),
4588049 => Ok(Dicom_Tags::MaximumCornealCurvatureSequence),
4588050 => Ok(Dicom_Tags::MaximumCornealCurvature),
4588051 => Ok(Dicom_Tags::MaximumCornealCurvatureLocation),
4588053 => Ok(Dicom_Tags::MinimumKeratometricSequence),
4588056 => Ok(Dicom_Tags::SimulatedKeratometricCylinderSequence),
4588064 => Ok(Dicom_Tags::AverageCornealPower),
4588068 => Ok(Dicom_Tags::CornealISValue),
4588071 => Ok(Dicom_Tags::AnalyzedArea),
4588080 => Ok(Dicom_Tags::SurfaceRegularityIndex),
4588082 => Ok(Dicom_Tags::SurfaceAsymmetryIndex),
4588084 => Ok(Dicom_Tags::CornealEccentricityIndex),
4588086 => Ok(Dicom_Tags::KeratoconusPredictionIndex),
4588088 => Ok(Dicom_Tags::DecimalPotentialVisualAcuity),
4588098 => Ok(Dicom_Tags::CornealTopographyMapQualityEvaluation),
4588100 => Ok(Dicom_Tags::SourceImageCornealProcessedDataSequence),
4588103 => Ok(Dicom_Tags::CornealPointLocation),
4588104 => Ok(Dicom_Tags::CornealPointEstimated),
4588105 => Ok(Dicom_Tags::AxialPower),
4588112 => Ok(Dicom_Tags::TangentialPower),
4588113 => Ok(Dicom_Tags::RefractivePower),
4588114 => Ok(Dicom_Tags::RelativeElevation),
4588115 => Ok(Dicom_Tags::CornealWavefront),
4718593 => Ok(Dicom_Tags::ImagedVolumeWidth),
4718594 => Ok(Dicom_Tags::ImagedVolumeHeight),
4718595 => Ok(Dicom_Tags::ImagedVolumeDepth),
4718598 => Ok(Dicom_Tags::TotalPixelMatrixColumns),
4718599 => Ok(Dicom_Tags::TotalPixelMatrixRows),
4718600 => Ok(Dicom_Tags::TotalPixelMatrixOriginSequence),
4718608 => Ok(Dicom_Tags::SpecimenLabelInImage),
4718609 => Ok(Dicom_Tags::FocusMethod),
4718610 => Ok(Dicom_Tags::ExtendedDepthOfField),
4718611 => Ok(Dicom_Tags::NumberOfFocalPlanes),
4718612 => Ok(Dicom_Tags::DistanceBetweenFocalPlanes),
4718613 => Ok(Dicom_Tags::RecommendedAbsentPixelCielabValue),
4718848 => Ok(Dicom_Tags::IlluminatorTypeCodeSequence),
4718850 => Ok(Dicom_Tags::ImageOrientationSlide),
4718853 => Ok(Dicom_Tags::OpticalPathSequence),
4718854 => Ok(Dicom_Tags::OpticalPathIdentifier),
4718855 => Ok(Dicom_Tags::OpticalPathDescription),
4718856 => Ok(Dicom_Tags::IlluminationColorCodeSequence),
4718864 => Ok(Dicom_Tags::SpecimenReferenceSequence),
4718865 => Ok(Dicom_Tags::CondenserLensPower),
4718866 => Ok(Dicom_Tags::ObjectiveLensPower),
4718867 => Ok(Dicom_Tags::ObjectiveLensNumericalAperture),
4718880 => Ok(Dicom_Tags::PaletteColorLookupTableSequence),
4719104 => Ok(Dicom_Tags::ReferencedImageNavigationSequence),
4719105 => Ok(Dicom_Tags::TopLeftHandCornerOfLocalizerArea),
4719106 => Ok(Dicom_Tags::BottomRightHandCornerOfLocalizerArea),
4719111 => Ok(Dicom_Tags::OpticalPathIdentificationSequence),
4719130 => Ok(Dicom_Tags::PlanePositionSlideSequence),
4719134 => Ok(Dicom_Tags::ColumnPositionInTotalImagePixelMatrix),
4719135 => Ok(Dicom_Tags::RowPositionInTotalImagePixelMatrix),
4719361 => Ok(Dicom_Tags::PixelOriginInterpretation),
5242884 => Ok(Dicom_Tags::CalibrationImage),
5242896 => Ok(Dicom_Tags::DeviceSequence),
5242898 => Ok(Dicom_Tags::ContainerComponentTypeCodeSequence),
5242899 => Ok(Dicom_Tags::ContainerComponentThickness),
5242900 => Ok(Dicom_Tags::DeviceLength),
5242901 => Ok(Dicom_Tags::ContainerComponentWidth),
5242902 => Ok(Dicom_Tags::DeviceDiameter),
5242903 => Ok(Dicom_Tags::DeviceDiameterUnits),
5242904 => Ok(Dicom_Tags::DeviceVolume),
5242905 => Ok(Dicom_Tags::InterMarkerDistance),
5242906 => Ok(Dicom_Tags::ContainerComponentMaterial),
5242907 => Ok(Dicom_Tags::ContainerComponentId),
5242908 => Ok(Dicom_Tags::ContainerComponentLength),
5242909 => Ok(Dicom_Tags::ContainerComponentDiameter),
5242910 => Ok(Dicom_Tags::ContainerComponentDescription),
5242912 => Ok(Dicom_Tags::DeviceDescription),
5373953 => Ok(Dicom_Tags::ContrastBolusIngredientPercentByVolume),
5373954 => Ok(Dicom_Tags::OctFocalDistance),
5373955 => Ok(Dicom_Tags::BeamSpotSize),
5373956 => Ok(Dicom_Tags::EffectiveRefractiveIndex),
5373958 => Ok(Dicom_Tags::OctAcquisitionDomain),
5373959 => Ok(Dicom_Tags::OctOpticalCenterWavelength),
5373960 => Ok(Dicom_Tags::AxialResolution),
5373961 => Ok(Dicom_Tags::RangingDepth),
5373969 => Ok(Dicom_Tags::ALineRate),
5373970 => Ok(Dicom_Tags::ALinesPerFrame),
5373971 => Ok(Dicom_Tags::CatheterRotationalRate),
5373972 => Ok(Dicom_Tags::ALinePixelSpacing),
5373974 => Ok(Dicom_Tags::ModeOfPercutaneousAccessSequence),
5373989 => Ok(Dicom_Tags::IntravascularOctFrameTypeSequence),
5373990 => Ok(Dicom_Tags::OctZOffsetApplied),
5373991 => Ok(Dicom_Tags::IntravascularFrameContentSequence),
5373992 => Ok(Dicom_Tags::IntravascularLongitudinalDistance),
5373993 => Ok(Dicom_Tags::IntravascularOctFrameContentSequence),
5374000 => Ok(Dicom_Tags::OctZOffsetCorrection),
5374001 => Ok(Dicom_Tags::CatheterDirectionOfRotation),
5374003 => Ok(Dicom_Tags::SeamLineLocation),
5374004 => Ok(Dicom_Tags::FirstALineLocation),
5374006 => Ok(Dicom_Tags::SeamLineIndex),
5374008 => Ok(Dicom_Tags::NumberOfPaddedALines),
5374009 => Ok(Dicom_Tags::InterpolationType),
5374010 => Ok(Dicom_Tags::RefractiveIndexApplied),
5505040 => Ok(Dicom_Tags::EnergyWindowVector),
5505041 => Ok(Dicom_Tags::NumberOfEnergyWindows),
5505042 => Ok(Dicom_Tags::EnergyWindowInformationSequence),
5505043 => Ok(Dicom_Tags::EnergyWindowRangeSequence),
5505044 => Ok(Dicom_Tags::EnergyWindowLowerLimit),
5505045 => Ok(Dicom_Tags::EnergyWindowUpperLimit),
5505046 => Ok(Dicom_Tags::RadiopharmaceuticalInformationSequence),
5505047 => Ok(Dicom_Tags::ResidualSyringeCounts),
5505048 => Ok(Dicom_Tags::EnergyWindowName),
5505056 => Ok(Dicom_Tags::DetectorVector),
5505057 => Ok(Dicom_Tags::NumberOfDetectors),
5505058 => Ok(Dicom_Tags::DetectorInformationSequence),
5505072 => Ok(Dicom_Tags::PhaseVector),
5505073 => Ok(Dicom_Tags::NumberOfPhases),
5505074 => Ok(Dicom_Tags::PhaseInformationSequence),
5505075 => Ok(Dicom_Tags::NumberOfFramesInPhase),
5505078 => Ok(Dicom_Tags::PhaseDelay),
5505080 => Ok(Dicom_Tags::PauseBetweenFrames),
5505081 => Ok(Dicom_Tags::PhaseDescription),
5505104 => Ok(Dicom_Tags::RotationVector),
5505105 => Ok(Dicom_Tags::NumberOfRotations),
5505106 => Ok(Dicom_Tags::RotationInformationSequence),
5505107 => Ok(Dicom_Tags::NumberOfFramesInRotation),
5505120 => Ok(Dicom_Tags::RRIntervalVector),
5505121 => Ok(Dicom_Tags::NumberOfRRIntervals),
5505122 => Ok(Dicom_Tags::GatedInformationSequence),
5505123 => Ok(Dicom_Tags::DataInformationSequence),
5505136 => Ok(Dicom_Tags::TimeSlotVector),
5505137 => Ok(Dicom_Tags::NumberOfTimeSlots),
5505138 => Ok(Dicom_Tags::TimeSlotInformationSequence),
5505139 => Ok(Dicom_Tags::TimeSlotTime),
5505152 => Ok(Dicom_Tags::SliceVector),
5505153 => Ok(Dicom_Tags::NumberOfSlices),
5505168 => Ok(Dicom_Tags::AngularViewVector),
5505280 => Ok(Dicom_Tags::TimeSliceVector),
5505281 => Ok(Dicom_Tags::NumberOfTimeSlices),
5505536 => Ok(Dicom_Tags::StartAngle),
5505538 => Ok(Dicom_Tags::TypeOfDetectorMotion),
5505552 => Ok(Dicom_Tags::TriggerVector),
5505553 => Ok(Dicom_Tags::NumberOfTriggersInPhase),
5505568 => Ok(Dicom_Tags::ViewCodeSequence),
5505570 => Ok(Dicom_Tags::ViewModifierCodeSequence),
5505792 => Ok(Dicom_Tags::RadionuclideCodeSequence),
5505794 => Ok(Dicom_Tags::AdministrationRouteCodeSequence),
5505796 => Ok(Dicom_Tags::RadiopharmaceuticalCodeSequence),
5505798 => Ok(Dicom_Tags::CalibrationDataSequence),
5505800 => Ok(Dicom_Tags::EnergyWindowNumber),
5506048 => Ok(Dicom_Tags::ImageId),
5506064 => Ok(Dicom_Tags::PatientOrientationCodeSequence),
5506066 => Ok(Dicom_Tags::PatientOrientationModifierCodeSequence),
5506068 => Ok(Dicom_Tags::PatientGantryRelationshipCodeSequence),
5506304 => Ok(Dicom_Tags::SliceProgressionDirection),
5506305 => Ok(Dicom_Tags::ScanProgressionDirection),
5509120 => Ok(Dicom_Tags::SeriesType),
5509121 => Ok(Dicom_Tags::Units),
5509122 => Ok(Dicom_Tags::CountsSource),
5509124 => Ok(Dicom_Tags::ReprojectionMethod),
5509126 => Ok(Dicom_Tags::SuvType),
5509376 => Ok(Dicom_Tags::RandomsCorrectionMethod),
5509377 => Ok(Dicom_Tags::AttenuationCorrectionMethod),
5509378 => Ok(Dicom_Tags::DecayCorrection),
5509379 => Ok(Dicom_Tags::ReconstructionMethod),
5509380 => Ok(Dicom_Tags::DetectorLinesOfResponseUsed),
5509381 => Ok(Dicom_Tags::ScatterCorrectionMethod),
5509632 => Ok(Dicom_Tags::AxialAcceptance),
5509633 => Ok(Dicom_Tags::AxialMash),
5509634 => Ok(Dicom_Tags::TransverseMash),
5509635 => Ok(Dicom_Tags::DetectorElementSize),
5509648 => Ok(Dicom_Tags::CoincidenceWindowWidth),
5509664 => Ok(Dicom_Tags::SecondaryCountsType),
5509888 => Ok(Dicom_Tags::FrameReferenceTime),
5509904 => Ok(Dicom_Tags::PrimaryPromptsCountsAccumulated),
5509905 => Ok(Dicom_Tags::SecondaryCountsAccumulated),
5509920 => Ok(Dicom_Tags::SliceSensitivityFactor),
5509921 => Ok(Dicom_Tags::DecayFactor),
5509922 => Ok(Dicom_Tags::DoseCalibrationFactor),
5509923 => Ok(Dicom_Tags::ScatterFractionFactor),
5509924 => Ok(Dicom_Tags::DeadTimeFactor),
5509936 => Ok(Dicom_Tags::ImageIndex),
5510144 => Ok(Dicom_Tags::CountsIncluded),
5510145 => Ok(Dicom_Tags::DeadTimeCorrectionFlag),
6303744 => Ok(Dicom_Tags::HistogramSequence),
6303746 => Ok(Dicom_Tags::HistogramNumberOfBins),
6303748 => Ok(Dicom_Tags::HistogramFirstBinValue),
6303750 => Ok(Dicom_Tags::HistogramLastBinValue),
6303752 => Ok(Dicom_Tags::HistogramBinWidth),
6303760 => Ok(Dicom_Tags::HistogramExplanation),
6303776 => Ok(Dicom_Tags::HistogramData),
6422529 => Ok(Dicom_Tags::SegmentationType),
6422530 => Ok(Dicom_Tags::SegmentSequence),
6422531 => Ok(Dicom_Tags::SegmentedPropertyCategoryCodeSequence),
6422532 => Ok(Dicom_Tags::SegmentNumber),
6422533 => Ok(Dicom_Tags::SegmentLabel),
6422534 => Ok(Dicom_Tags::SegmentDescription),
6422536 => Ok(Dicom_Tags::SegmentAlgorithmType),
6422537 => Ok(Dicom_Tags::SegmentAlgorithmName),
6422538 => Ok(Dicom_Tags::SegmentIdentificationSequence),
6422539 => Ok(Dicom_Tags::ReferencedSegmentNumber),
6422540 => Ok(Dicom_Tags::RecommendedDisplayGrayscaleValue),
6422541 => Ok(Dicom_Tags::RecommendedDisplayCielabValue),
6422542 => Ok(Dicom_Tags::MaximumFractionalValue),
6422543 => Ok(Dicom_Tags::SegmentedPropertyTypeCodeSequence),
6422544 => Ok(Dicom_Tags::SegmentationFractionalType),
6422545 => Ok(Dicom_Tags::SegmentedPropertyTypeModifierCodeSequence),
6422546 => Ok(Dicom_Tags::UsedSegmentsSequence),
6422560 => Ok(Dicom_Tags::TrackingId),
6422561 => Ok(Dicom_Tags::TrackingUid),
6553602 => Ok(Dicom_Tags::DeformableRegistrationSequence),
6553603 => Ok(Dicom_Tags::SourceFrameOfReferenceUid),
6553605 => Ok(Dicom_Tags::DeformableRegistrationGridSequence),
6553607 => Ok(Dicom_Tags::GridDimensions),
6553608 => Ok(Dicom_Tags::GridResolution),
6553609 => Ok(Dicom_Tags::VectorGridData),
6553615 => Ok(Dicom_Tags::PreDeformationMatrixRegistrationSequence),
6553616 => Ok(Dicom_Tags::PostDeformationMatrixRegistrationSequence),
6684673 => Ok(Dicom_Tags::NumberOfSurfaces),
6684674 => Ok(Dicom_Tags::SurfaceSequence),
6684675 => Ok(Dicom_Tags::SurfaceNumber),
6684676 => Ok(Dicom_Tags::SurfaceComments),
6684681 => Ok(Dicom_Tags::SurfaceProcessing),
6684682 => Ok(Dicom_Tags::SurfaceProcessingRatio),
6684683 => Ok(Dicom_Tags::SurfaceProcessingDescription),
6684684 => Ok(Dicom_Tags::RecommendedPresentationOpacity),
6684685 => Ok(Dicom_Tags::RecommendedPresentationType),
6684686 => Ok(Dicom_Tags::FiniteVolume),
6684688 => Ok(Dicom_Tags::Manifold),
6684689 => Ok(Dicom_Tags::SurfacePointsSequence),
6684690 => Ok(Dicom_Tags::SurfacePointsNormalsSequence),
6684691 => Ok(Dicom_Tags::SurfaceMeshPrimitivesSequence),
6684693 => Ok(Dicom_Tags::NumberOfSurfacePoints),
6684694 => Ok(Dicom_Tags::PointCoordinatesData),
6684695 => Ok(Dicom_Tags::PointPositionAccuracy),
6684696 => Ok(Dicom_Tags::MeanPointDistance),
6684697 => Ok(Dicom_Tags::MaximumPointDistance),
6684698 => Ok(Dicom_Tags::PointsBoundingBoxCoordinates),
6684699 => Ok(Dicom_Tags::AxisOfRotation),
6684700 => Ok(Dicom_Tags::CenterOfRotation),
6684702 => Ok(Dicom_Tags::NumberOfVectors),
6684703 => Ok(Dicom_Tags::VectorDimensionality),
6684704 => Ok(Dicom_Tags::VectorAccuracy),
6684705 => Ok(Dicom_Tags::VectorCoordinateData),
6684707 => Ok(Dicom_Tags::TrianglePointIndexList),
6684708 => Ok(Dicom_Tags::EdgePointIndexList),
6684709 => Ok(Dicom_Tags::VertexPointIndexList),
6684710 => Ok(Dicom_Tags::TriangleStripSequence),
6684711 => Ok(Dicom_Tags::TriangleFanSequence),
6684712 => Ok(Dicom_Tags::LineSequence),
6684713 => Ok(Dicom_Tags::PrimitivePointIndexList),
6684714 => Ok(Dicom_Tags::SurfaceCount),
6684715 => Ok(Dicom_Tags::ReferencedSurfaceSequence),
6684716 => Ok(Dicom_Tags::ReferencedSurfaceNumber),
6684717 => Ok(Dicom_Tags::SegmentSurfaceGenerationAlgorithmIdentificationSequence),
6684718 => Ok(Dicom_Tags::SegmentSurfaceSourceInstanceSequence),
6684719 => Ok(Dicom_Tags::AlgorithmFamilyCodeSequence),
6684720 => Ok(Dicom_Tags::AlgorithmNameCodeSequence),
6684721 => Ok(Dicom_Tags::AlgorithmVersion),
6684722 => Ok(Dicom_Tags::AlgorithmParameters),
6684724 => Ok(Dicom_Tags::FacetSequence),
6684725 => Ok(Dicom_Tags::SurfaceProcessingAlgorithmIdentificationSequence),
6684726 => Ok(Dicom_Tags::AlgorithmName),
6684727 => Ok(Dicom_Tags::RecommendedPointRadius),
6684728 => Ok(Dicom_Tags::RecommendedLineThickness),
6684736 => Ok(Dicom_Tags::LongPrimitivePointIndexList),
6684737 => Ok(Dicom_Tags::LongTrianglePointIndexList),
6684738 => Ok(Dicom_Tags::LongEdgePointIndexList),
6684739 => Ok(Dicom_Tags::LongVertexPointIndexList),
6684929 => Ok(Dicom_Tags::TrackSetSequence),
6684930 => Ok(Dicom_Tags::TrackSequence),
6684931 => Ok(Dicom_Tags::RecommendedDisplayCielabValueList),
6684932 => Ok(Dicom_Tags::TrackingAlgorithmIdentificationSequence),
6684933 => Ok(Dicom_Tags::TrackSetNumber),
6684934 => Ok(Dicom_Tags::TrackSetLabel),
6684935 => Ok(Dicom_Tags::TrackSetDescription),
6684936 => Ok(Dicom_Tags::TrackSetAnatomicalTypeCodeSequence),
6684961 => Ok(Dicom_Tags::MeasurementsSequence),
6684964 => Ok(Dicom_Tags::TrackSetStatisticsSequence),
6684965 => Ok(Dicom_Tags::FloatingPointValues),
6684969 => Ok(Dicom_Tags::TrackPointIndexList),
6684976 => Ok(Dicom_Tags::TrackStatisticsSequence),
6684978 => Ok(Dicom_Tags::MeasurementValuesSequence),
6684979 => Ok(Dicom_Tags::DiffusionAcquisitionCodeSequence),
6684980 => Ok(Dicom_Tags::DiffusionModelCodeSequence),
6840848 => Ok(Dicom_Tags::ImplantSize),
6840865 => Ok(Dicom_Tags::ImplantTemplateVersion),
6840866 => Ok(Dicom_Tags::ReplacedImplantTemplateSequence),
6840867 => Ok(Dicom_Tags::ImplantType),
6840868 => Ok(Dicom_Tags::DerivationImplantTemplateSequence),
6840869 => Ok(Dicom_Tags::OriginalImplantTemplateSequence),
6840870 => Ok(Dicom_Tags::EffectiveDatetime),
6840880 => Ok(Dicom_Tags::ImplantTargetAnatomySequence),
6840928 => Ok(Dicom_Tags::InformationFromManufacturerSequence),
6840933 => Ok(Dicom_Tags::NotificationFromManufacturerSequence),
6840944 => Ok(Dicom_Tags::InformationIssueDatetime),
6840960 => Ok(Dicom_Tags::InformationSummary),
6840992 => Ok(Dicom_Tags::ImplantRegulatoryDisapprovalCodeSequence),
6840997 => Ok(Dicom_Tags::OverallTemplateSpatialTolerance),
6841024 => Ok(Dicom_Tags::HpglDocumentSequence),
6841040 => Ok(Dicom_Tags::HpglDocumentId),
6841045 => Ok(Dicom_Tags::HpglDocumentLabel),
6841056 => Ok(Dicom_Tags::ViewOrientationCodeSequence),
6841072 => Ok(Dicom_Tags::ViewOrientationModifier),
6841074 => Ok(Dicom_Tags::HpglDocumentScaling),
6841088 => Ok(Dicom_Tags::HpglDocument),
6841104 => Ok(Dicom_Tags::HpglContourPenNumber),
6841120 => Ok(Dicom_Tags::HpglPenSequence),
6841136 => Ok(Dicom_Tags::HpglPenNumber),
6841152 => Ok(Dicom_Tags::HpglPenLabel),
6841157 => Ok(Dicom_Tags::HpglPenDescription),
6841158 => Ok(Dicom_Tags::RecommendedRotationPoint),
6841159 => Ok(Dicom_Tags::BoundingRectangle),
6841168 => Ok(Dicom_Tags::ImplantTemplate3dModelSurfaceNumber),
6841184 => Ok(Dicom_Tags::SurfaceModelDescriptionSequence),
6841216 => Ok(Dicom_Tags::SurfaceModelLabel),
6841232 => Ok(Dicom_Tags::SurfaceModelScalingFactor),
6841248 => Ok(Dicom_Tags::MaterialsCodeSequence),
6841252 => Ok(Dicom_Tags::CoatingMaterialsCodeSequence),
6841256 => Ok(Dicom_Tags::ImplantTypeCodeSequence),
6841260 => Ok(Dicom_Tags::FixationMethodCodeSequence),
6841264 => Ok(Dicom_Tags::MatingFeatureSetsSequence),
6841280 => Ok(Dicom_Tags::MatingFeatureSetId),
6841296 => Ok(Dicom_Tags::MatingFeatureSetLabel),
6841312 => Ok(Dicom_Tags::MatingFeatureSequence),
6841328 => Ok(Dicom_Tags::MatingFeatureId),
6841344 => Ok(Dicom_Tags::MatingFeatureDegreeOfFreedomSequence),
6841360 => Ok(Dicom_Tags::DegreeOfFreedomId),
6841376 => Ok(Dicom_Tags::DegreeOfFreedomType),
6841392 => Ok(Dicom_Tags::Tag2dMatingFeatureCoordinatesSequence),
6841408 => Ok(Dicom_Tags::ReferencedHpglDocumentId),
6841424 => Ok(Dicom_Tags::Tag2dMatingPoint),
6841440 => Ok(Dicom_Tags::Tag2dMatingAxes),
6841456 => Ok(Dicom_Tags::Tag2dDegreeOfFreedomSequence),
6841488 => Ok(Dicom_Tags::Tag3dDegreeOfFreedomAxis),
6841504 => Ok(Dicom_Tags::RangeOfFreedom),
6841536 => Ok(Dicom_Tags::Tag3dMatingPoint),
6841552 => Ok(Dicom_Tags::Tag3dMatingAxes),
6841584 => Ok(Dicom_Tags::Tag2dDegreeOfFreedomAxis),
6841600 => Ok(Dicom_Tags::PlanningLandmarkPointSequence),
6841616 => Ok(Dicom_Tags::PlanningLandmarkLineSequence),
6841632 => Ok(Dicom_Tags::PlanningLandmarkPlaneSequence),
6841648 => Ok(Dicom_Tags::PlanningLandmarkId),
6841664 => Ok(Dicom_Tags::PlanningLandmarkDescription),
6841669 => Ok(Dicom_Tags::PlanningLandmarkIdentificationCodeSequence),
6841680 => Ok(Dicom_Tags::Tag2dPointCoordinatesSequence),
6841696 => Ok(Dicom_Tags::Tag2dPointCoordinates),
6841744 => Ok(Dicom_Tags::Tag3dPointCoordinates),
6841760 => Ok(Dicom_Tags::Tag2dLineCoordinatesSequence),
6841776 => Ok(Dicom_Tags::Tag2dLineCoordinates),
6841808 => Ok(Dicom_Tags::Tag3dLineCoordinates),
6841824 => Ok(Dicom_Tags::Tag2dPlaneCoordinatesSequence),
6841840 => Ok(Dicom_Tags::Tag2dPlaneIntersection),
6841872 => Ok(Dicom_Tags::Tag3dPlaneOrigin),
6841888 => Ok(Dicom_Tags::Tag3dPlaneNormal),
7340033 => Ok(Dicom_Tags::GraphicAnnotationSequence),
7340034 => Ok(Dicom_Tags::GraphicLayer),
7340035 => Ok(Dicom_Tags::BoundingBoxAnnotationUnits),
7340036 => Ok(Dicom_Tags::AnchorPointAnnotationUnits),
7340037 => Ok(Dicom_Tags::GraphicAnnotationUnits),
7340038 => Ok(Dicom_Tags::UnformattedTextValue),
7340040 => Ok(Dicom_Tags::TextObjectSequence),
7340041 => Ok(Dicom_Tags::GraphicObjectSequence),
7340048 => Ok(Dicom_Tags::BoundingBoxTopLeftHandCorner),
7340049 => Ok(Dicom_Tags::BoundingBoxBottomRightHandCorner),
7340050 => Ok(Dicom_Tags::BoundingBoxTextHorizontalJustification),
7340052 => Ok(Dicom_Tags::AnchorPoint),
7340053 => Ok(Dicom_Tags::AnchorPointVisibility),
7340064 => Ok(Dicom_Tags::GraphicDimensions),
7340065 => Ok(Dicom_Tags::NumberOfGraphicPoints),
7340066 => Ok(Dicom_Tags::GraphicData),
7340067 => Ok(Dicom_Tags::GraphicType),
7340068 => Ok(Dicom_Tags::GraphicFilled),
7340096 => Ok(Dicom_Tags::ImageRotationRetired),
7340097 => Ok(Dicom_Tags::ImageHorizontalFlip),
7340098 => Ok(Dicom_Tags::ImageRotation),
7340112 => Ok(Dicom_Tags::DisplayedAreaTopLeftHandCornerTrial),
7340113 => Ok(Dicom_Tags::DisplayedAreaBottomRightHandCornerTrial),
7340114 => Ok(Dicom_Tags::DisplayedAreaTopLeftHandCorner),
7340115 => Ok(Dicom_Tags::DisplayedAreaBottomRightHandCorner),
7340122 => Ok(Dicom_Tags::DisplayedAreaSelectionSequence),
7340128 => Ok(Dicom_Tags::GraphicLayerSequence),
7340130 => Ok(Dicom_Tags::GraphicLayerOrder),
7340134 => Ok(Dicom_Tags::GraphicLayerRecommendedDisplayGrayscaleValue),
7340135 => Ok(Dicom_Tags::GraphicLayerRecommendedDisplayRgbValue),
7340136 => Ok(Dicom_Tags::GraphicLayerDescription),
7340160 => Ok(Dicom_Tags::ContentLabel),
7340161 => Ok(Dicom_Tags::ContentDescription),
7340162 => Ok(Dicom_Tags::PresentationCreationDate),
7340163 => Ok(Dicom_Tags::PresentationCreationTime),
7340164 => Ok(Dicom_Tags::ContentCreatorSName),
7340166 => Ok(Dicom_Tags::ContentCreatorSIdentificationCodeSequence),
7340167 => Ok(Dicom_Tags::AlternateContentDescriptionSequence),
7340288 => Ok(Dicom_Tags::PresentationSizeMode),
7340289 => Ok(Dicom_Tags::PresentationPixelSpacing),
7340290 => Ok(Dicom_Tags::PresentationPixelAspectRatio),
7340291 => Ok(Dicom_Tags::PresentationPixelMagnificationRatio),
7340551 => Ok(Dicom_Tags::GraphicGroupLabel),
7340552 => Ok(Dicom_Tags::GraphicGroupDescription),
7340553 => Ok(Dicom_Tags::CompoundGraphicSequence),
7340582 => Ok(Dicom_Tags::CompoundGraphicInstanceId),
7340583 => Ok(Dicom_Tags::FontName),
7340584 => Ok(Dicom_Tags::FontNameType),
7340585 => Ok(Dicom_Tags::CssFontName),
7340592 => Ok(Dicom_Tags::RotationAngle),
7340593 => Ok(Dicom_Tags::TextStyleSequence),
7340594 => Ok(Dicom_Tags::LineStyleSequence),
7340595 => Ok(Dicom_Tags::FillStyleSequence),
7340596 => Ok(Dicom_Tags::GraphicGroupSequence),
7340609 => Ok(Dicom_Tags::TextColorCielabValue),
7340610 => Ok(Dicom_Tags::HorizontalAlignment),
7340611 => Ok(Dicom_Tags::VerticalAlignment),
7340612 => Ok(Dicom_Tags::ShadowStyle),
7340613 => Ok(Dicom_Tags::ShadowOffsetX),
7340614 => Ok(Dicom_Tags::ShadowOffsetY),
7340615 => Ok(Dicom_Tags::ShadowColorCielabValue),
7340616 => Ok(Dicom_Tags::Underlined),
7340617 => Ok(Dicom_Tags::Bold),
7340624 => Ok(Dicom_Tags::Italic),
7340625 => Ok(Dicom_Tags::PatternOnColorCielabValue),
7340626 => Ok(Dicom_Tags::PatternOffColorCielabValue),
7340627 => Ok(Dicom_Tags::LineThickness),
7340628 => Ok(Dicom_Tags::LineDashingStyle),
7340629 => Ok(Dicom_Tags::LinePattern),
7340630 => Ok(Dicom_Tags::FillPattern),
7340631 => Ok(Dicom_Tags::FillMode),
7340632 => Ok(Dicom_Tags::ShadowOpacity),
7340641 => Ok(Dicom_Tags::GapLength),
7340642 => Ok(Dicom_Tags::DiameterOfVisibility),
7340659 => Ok(Dicom_Tags::RotationPoint),
7340660 => Ok(Dicom_Tags::TickAlignment),
7340664 => Ok(Dicom_Tags::ShowTickLabel),
7340665 => Ok(Dicom_Tags::TickLabelAlignment),
7340674 => Ok(Dicom_Tags::CompoundGraphicUnits),
7340676 => Ok(Dicom_Tags::PatternOnOpacity),
7340677 => Ok(Dicom_Tags::PatternOffOpacity),
7340679 => Ok(Dicom_Tags::MajorTicksSequence),
7340680 => Ok(Dicom_Tags::TickPosition),
7340681 => Ok(Dicom_Tags::TickLabel),
7340692 => Ok(Dicom_Tags::CompoundGraphicType),
7340693 => Ok(Dicom_Tags::GraphicGroupId),
7340806 => Ok(Dicom_Tags::ShapeType),
7340808 => Ok(Dicom_Tags::RegistrationSequence),
7340809 => Ok(Dicom_Tags::MatrixRegistrationSequence),
7340810 => Ok(Dicom_Tags::MatrixSequence),
7340811 => Ok(Dicom_Tags::FrameOfReferenceToDisplayedCoordinateSystemTransformationMatrix),
7340812 => Ok(Dicom_Tags::FrameOfReferenceTransformationMatrixType),
7340813 => Ok(Dicom_Tags::RegistrationTypeCodeSequence),
7340815 => Ok(Dicom_Tags::FiducialDescription),
7340816 => Ok(Dicom_Tags::FiducialIdentifier),
7340817 => Ok(Dicom_Tags::FiducialIdentifierCodeSequence),
7340818 => Ok(Dicom_Tags::ContourUncertaintyRadius),
7340820 => Ok(Dicom_Tags::UsedFiducialsSequence),
7340824 => Ok(Dicom_Tags::GraphicCoordinatesDataSequence),
7340826 => Ok(Dicom_Tags::FiducialUid),
7340828 => Ok(Dicom_Tags::FiducialSetSequence),
7340830 => Ok(Dicom_Tags::FiducialSequence),
7341057 => Ok(Dicom_Tags::GraphicLayerRecommendedDisplayCielabValue),
7341058 => Ok(Dicom_Tags::BlendingSequence),
7341059 => Ok(Dicom_Tags::RelativeOpacity),
7341060 => Ok(Dicom_Tags::ReferencedSpatialRegistrationSequence),
7341061 => Ok(Dicom_Tags::BlendingPosition),
7344385 => Ok(Dicom_Tags::PresentationDisplayCollectionUid),
7344386 => Ok(Dicom_Tags::PresentationSequenceCollectionUid),
7344387 => Ok(Dicom_Tags::PresentationSequencePositionIndex),
7344388 => Ok(Dicom_Tags::RenderedImageReferenceSequence),
7344641 => Ok(Dicom_Tags::VolumetricPresentationStateInputSequence),
7344642 => Ok(Dicom_Tags::PresentationInputType),
7344643 => Ok(Dicom_Tags::InputSequencePositionIndex),
7344644 => Ok(Dicom_Tags::Crop),
7344645 => Ok(Dicom_Tags::CroppingSpecificationIndex),
7344646 => Ok(Dicom_Tags::CompositingMethod),
7344647 => Ok(Dicom_Tags::VolumetricPresentationInputNumber),
7344648 => Ok(Dicom_Tags::ImageVolumeGeometry),
7344897 => Ok(Dicom_Tags::VolumeCroppingSequence),
7344898 => Ok(Dicom_Tags::VolumeCroppingMethod),
7344899 => Ok(Dicom_Tags::BoundingBoxCrop),
7344900 => Ok(Dicom_Tags::ObliqueCroppingPlaneSequence),
7344901 => Ok(Dicom_Tags::Plane),
7344902 => Ok(Dicom_Tags::PlaneNormal),
7344905 => Ok(Dicom_Tags::CroppingSpecificationNumber),
7345409 => Ok(Dicom_Tags::MultiPlanarReconstructionStyle),
7345410 => Ok(Dicom_Tags::MprThicknessType),
7345411 => Ok(Dicom_Tags::MprSlabThickness),
7345413 => Ok(Dicom_Tags::MprTopLeftHandCorner),
7345415 => Ok(Dicom_Tags::MprViewWidthDirection),
7345416 => Ok(Dicom_Tags::MprViewWidth),
7345420 => Ok(Dicom_Tags::NumberOfVolumetricCurvePoints),
7345421 => Ok(Dicom_Tags::VolumetricCurvePoints),
7345425 => Ok(Dicom_Tags::MprViewHeightDirection),
7345426 => Ok(Dicom_Tags::MprViewHeight),
7346177 => Ok(Dicom_Tags::PresentationStateClassificationComponentSequence),
7346178 => Ok(Dicom_Tags::ComponentType),
7346179 => Ok(Dicom_Tags::ComponentInputSequence),
7346180 => Ok(Dicom_Tags::VolumetricPresentationInputIndex),
7346181 => Ok(Dicom_Tags::PresentationStateCompositorComponentSequence),
7346182 => Ok(Dicom_Tags::WeightingTransferFunctionSequence),
7346183 => Ok(Dicom_Tags::WeightingLookupTableDescriptor),
7346184 => Ok(Dicom_Tags::WeightingLookupTableData),
7346433 => Ok(Dicom_Tags::VolumetricAnnotationSequence),
7346435 => Ok(Dicom_Tags::ReferencedStructuredContextSequence),
7346436 => Ok(Dicom_Tags::ReferencedContentItem),
7346437 => Ok(Dicom_Tags::VolumetricPresentationInputAnnotationSequence),
7346439 => Ok(Dicom_Tags::AnnotationClipping),
7346689 => Ok(Dicom_Tags::PresentationAnimationStyle),
7346691 => Ok(Dicom_Tags::RecommendedAnimationRate),
7346692 => Ok(Dicom_Tags::AnimationCurveSequence),
7346693 => Ok(Dicom_Tags::AnimationStepSize),
7471106 => Ok(Dicom_Tags::HangingProtocolName),
7471108 => Ok(Dicom_Tags::HangingProtocolDescription),
7471110 => Ok(Dicom_Tags::HangingProtocolLevel),
7471112 => Ok(Dicom_Tags::HangingProtocolCreator),
7471114 => Ok(Dicom_Tags::HangingProtocolCreationDatetime),
7471116 => Ok(Dicom_Tags::HangingProtocolDefinitionSequence),
7471118 => Ok(Dicom_Tags::HangingProtocolUserIdentificationCodeSequence),
7471120 => Ok(Dicom_Tags::HangingProtocolUserGroupName),
7471122 => Ok(Dicom_Tags::SourceHangingProtocolSequence),
7471124 => Ok(Dicom_Tags::NumberOfPriorsReferenced),
7471136 => Ok(Dicom_Tags::ImageSetsSequence),
7471138 => Ok(Dicom_Tags::ImageSetSelectorSequence),
7471140 => Ok(Dicom_Tags::ImageSetSelectorUsageFlag),
7471142 => Ok(Dicom_Tags::SelectorAttribute),
7471144 => Ok(Dicom_Tags::SelectorValueNumber),
7471152 => Ok(Dicom_Tags::TimeBasedImageSetsSequence),
7471154 => Ok(Dicom_Tags::ImageSetNumber),
7471156 => Ok(Dicom_Tags::ImageSetSelectorCategory),
7471160 => Ok(Dicom_Tags::RelativeTime),
7471162 => Ok(Dicom_Tags::RelativeTimeUnits),
7471164 => Ok(Dicom_Tags::AbstractPriorValue),
7471166 => Ok(Dicom_Tags::AbstractPriorCodeSequence),
7471168 => Ok(Dicom_Tags::ImageSetLabel),
7471184 => Ok(Dicom_Tags::SelectorAttributeVr),
7471186 => Ok(Dicom_Tags::SelectorSequencePointer),
7471188 => Ok(Dicom_Tags::SelectorSequencePointerPrivateCreator),
7471190 => Ok(Dicom_Tags::SelectorAttributePrivateCreator),
7471198 => Ok(Dicom_Tags::SelectorAeValue),
7471199 => Ok(Dicom_Tags::SelectorAsValue),
7471200 => Ok(Dicom_Tags::SelectorAtValue),
7471201 => Ok(Dicom_Tags::SelectorDaValue),
7471202 => Ok(Dicom_Tags::SelectorCsValue),
7471203 => Ok(Dicom_Tags::SelectorDtValue),
7471204 => Ok(Dicom_Tags::SelectorIsValue),
7471205 => Ok(Dicom_Tags::SelectorObValue),
7471206 => Ok(Dicom_Tags::SelectorLoValue),
7471207 => Ok(Dicom_Tags::SelectorOfValue),
7471208 => Ok(Dicom_Tags::SelectorLtValue),
7471209 => Ok(Dicom_Tags::SelectorOwValue),
7471210 => Ok(Dicom_Tags::SelectorPnValue),
7471211 => Ok(Dicom_Tags::SelectorTmValue),
7471212 => Ok(Dicom_Tags::SelectorShValue),
7471213 => Ok(Dicom_Tags::SelectorUnValue),
7471214 => Ok(Dicom_Tags::SelectorStValue),
7471215 => Ok(Dicom_Tags::SelectorUcValue),
7471216 => Ok(Dicom_Tags::SelectorUtValue),
7471217 => Ok(Dicom_Tags::SelectorUrValue),
7471218 => Ok(Dicom_Tags::SelectorDsValue),
7471219 => Ok(Dicom_Tags::SelectorOdValue),
7471220 => Ok(Dicom_Tags::SelectorFdValue),
7471221 => Ok(Dicom_Tags::SelectorOlValue),
7471222 => Ok(Dicom_Tags::SelectorFlValue),
7471224 => Ok(Dicom_Tags::SelectorUlValue),
7471226 => Ok(Dicom_Tags::SelectorUsValue),
7471228 => Ok(Dicom_Tags::SelectorSlValue),
7471230 => Ok(Dicom_Tags::SelectorSsValue),
7471231 => Ok(Dicom_Tags::SelectorUiValue),
7471232 => Ok(Dicom_Tags::SelectorCodeSequenceValue),
7471360 => Ok(Dicom_Tags::NumberOfScreens),
7471362 => Ok(Dicom_Tags::NominalScreenDefinitionSequence),
7471364 => Ok(Dicom_Tags::NumberOfVerticalPixels),
7471366 => Ok(Dicom_Tags::NumberOfHorizontalPixels),
7471368 => Ok(Dicom_Tags::DisplayEnvironmentSpatialPosition),
7471370 => Ok(Dicom_Tags::ScreenMinimumGrayscaleBitDepth),
7471372 => Ok(Dicom_Tags::ScreenMinimumColorBitDepth),
7471374 => Ok(Dicom_Tags::ApplicationMaximumRepaintTime),
7471616 => Ok(Dicom_Tags::DisplaySetsSequence),
7471618 => Ok(Dicom_Tags::DisplaySetNumber),
7471619 => Ok(Dicom_Tags::DisplaySetLabel),
7471620 => Ok(Dicom_Tags::DisplaySetPresentationGroup),
7471622 => Ok(Dicom_Tags::DisplaySetPresentationGroupDescription),
7471624 => Ok(Dicom_Tags::PartialDataDisplayHandling),
7471632 => Ok(Dicom_Tags::SynchronizedScrollingSequence),
7471634 => Ok(Dicom_Tags::DisplaySetScrollingGroup),
7471636 => Ok(Dicom_Tags::NavigationIndicatorSequence),
7471638 => Ok(Dicom_Tags::NavigationDisplaySet),
7471640 => Ok(Dicom_Tags::ReferenceDisplaySets),
7471872 => Ok(Dicom_Tags::ImageBoxesSequence),
7471874 => Ok(Dicom_Tags::ImageBoxNumber),
7471876 => Ok(Dicom_Tags::ImageBoxLayoutType),
7471878 => Ok(Dicom_Tags::ImageBoxTileHorizontalDimension),
7471880 => Ok(Dicom_Tags::ImageBoxTileVerticalDimension),
7471888 => Ok(Dicom_Tags::ImageBoxScrollDirection),
7471890 => Ok(Dicom_Tags::ImageBoxSmallScrollType),
7471892 => Ok(Dicom_Tags::ImageBoxSmallScrollAmount),
7471894 => Ok(Dicom_Tags::ImageBoxLargeScrollType),
7471896 => Ok(Dicom_Tags::ImageBoxLargeScrollAmount),
7471904 => Ok(Dicom_Tags::ImageBoxOverlapPriority),
7471920 => Ok(Dicom_Tags::CineRelativeToRealTime),
7472128 => Ok(Dicom_Tags::FilterOperationsSequence),
7472130 => Ok(Dicom_Tags::FilterByCategory),
7472132 => Ok(Dicom_Tags::FilterByAttributePresence),
7472134 => Ok(Dicom_Tags::FilterByOperator),
7472160 => Ok(Dicom_Tags::StructuredDisplayBackgroundCielabValue),
7472161 => Ok(Dicom_Tags::EmptyImageBoxCielabValue),
7472162 => Ok(Dicom_Tags::StructuredDisplayImageBoxSequence),
7472164 => Ok(Dicom_Tags::StructuredDisplayTextBoxSequence),
7472167 => Ok(Dicom_Tags::ReferencedFirstFrameSequence),
7472176 => Ok(Dicom_Tags::ImageBoxSynchronizationSequence),
7472178 => Ok(Dicom_Tags::SynchronizedImageBoxList),
7472180 => Ok(Dicom_Tags::TypeOfSynchronization),
7472384 => Ok(Dicom_Tags::BlendingOperationType),
7472400 => Ok(Dicom_Tags::ReformattingOperationType),
7472402 => Ok(Dicom_Tags::ReformattingThickness),
7472404 => Ok(Dicom_Tags::ReformattingInterval),
7472406 => Ok(Dicom_Tags::ReformattingOperationInitialViewDirection),
7472416 => Ok(Dicom_Tags::Tag3dRenderingType),
7472640 => Ok(Dicom_Tags::SortingOperationsSequence),
7472642 => Ok(Dicom_Tags::SortByCategory),
7472644 => Ok(Dicom_Tags::SortingDirection),
7472896 => Ok(Dicom_Tags::DisplaySetPatientOrientation),
7472898 => Ok(Dicom_Tags::VoiType),
7472900 => Ok(Dicom_Tags::PseudoColorType),
7472901 => Ok(Dicom_Tags::PseudoColorPaletteInstanceReferenceSequence),
7472902 => Ok(Dicom_Tags::ShowGrayscaleInverted),
7472912 => Ok(Dicom_Tags::ShowImageTrueSizeFlag),
7472914 => Ok(Dicom_Tags::ShowGraphicAnnotationFlag),
7472916 => Ok(Dicom_Tags::ShowPatientDemographicsFlag),
7472918 => Ok(Dicom_Tags::ShowAcquisitionTechniquesFlag),
7472919 => Ok(Dicom_Tags::DisplaySetHorizontalJustification),
7472920 => Ok(Dicom_Tags::DisplaySetVerticalJustification),
7602464 => Ok(Dicom_Tags::ContinuationStartMeterset),
7602465 => Ok(Dicom_Tags::ContinuationEndMeterset),
7606272 => Ok(Dicom_Tags::ProcedureStepState),
7606274 => Ok(Dicom_Tags::ProcedureStepProgressInformationSequence),
7606276 => Ok(Dicom_Tags::ProcedureStepProgress),
7606278 => Ok(Dicom_Tags::ProcedureStepProgressDescription),
7606280 => Ok(Dicom_Tags::ProcedureStepCommunicationsUriSequence),
7606282 => Ok(Dicom_Tags::ContactUri),
7606284 => Ok(Dicom_Tags::ContactDisplayName),
7606286 => Ok(Dicom_Tags::ProcedureStepDiscontinuationReasonCodeSequence),
7606304 => Ok(Dicom_Tags::BeamTaskSequence),
7606306 => Ok(Dicom_Tags::BeamTaskType),
7606308 => Ok(Dicom_Tags::BeamOrderIndexTrial),
7606309 => Ok(Dicom_Tags::AutosequenceFlag),
7606310 => Ok(Dicom_Tags::TableTopVerticalAdjustedPosition),
7606311 => Ok(Dicom_Tags::TableTopLongitudinalAdjustedPosition),
7606312 => Ok(Dicom_Tags::TableTopLateralAdjustedPosition),
7606314 => Ok(Dicom_Tags::PatientSupportAdjustedAngle),
7606315 => Ok(Dicom_Tags::TableTopEccentricAdjustedAngle),
7606316 => Ok(Dicom_Tags::TableTopPitchAdjustedAngle),
7606317 => Ok(Dicom_Tags::TableTopRollAdjustedAngle),
7606320 => Ok(Dicom_Tags::DeliveryVerificationImageSequence),
7606322 => Ok(Dicom_Tags::VerificationImageTiming),
7606324 => Ok(Dicom_Tags::DoubleExposureFlag),
7606326 => Ok(Dicom_Tags::DoubleExposureOrdering),
7606328 => Ok(Dicom_Tags::DoubleExposureMetersetTrial),
7606330 => Ok(Dicom_Tags::DoubleExposureFieldDeltaTrial),
7606336 => Ok(Dicom_Tags::RelatedReferenceRtImageSequence),
7606338 => Ok(Dicom_Tags::GeneralMachineVerificationSequence),
7606340 => Ok(Dicom_Tags::ConventionalMachineVerificationSequence),
7606342 => Ok(Dicom_Tags::IonMachineVerificationSequence),
7606344 => Ok(Dicom_Tags::FailedAttributesSequence),
7606346 => Ok(Dicom_Tags::OverriddenAttributesSequence),
7606348 => Ok(Dicom_Tags::ConventionalControlPointVerificationSequence),
7606350 => Ok(Dicom_Tags::IonControlPointVerificationSequence),
7606352 => Ok(Dicom_Tags::AttributeOccurrenceSequence),
7606354 => Ok(Dicom_Tags::AttributeOccurrencePointer),
7606356 => Ok(Dicom_Tags::AttributeItemSelector),
7606358 => Ok(Dicom_Tags::AttributeOccurrencePrivateCreator),
7606359 => Ok(Dicom_Tags::SelectorSequencePointerItems),
7606784 => Ok(Dicom_Tags::ScheduledProcedureStepPriority),
7606786 => Ok(Dicom_Tags::WorklistLabel),
7606788 => Ok(Dicom_Tags::ProcedureStepLabel),
7606800 => Ok(Dicom_Tags::ScheduledProcessingParametersSequence),
7606802 => Ok(Dicom_Tags::PerformedProcessingParametersSequence),
7606806 => Ok(Dicom_Tags::UnifiedProcedureStepPerformedProcedureSequence),
7606816 => Ok(Dicom_Tags::RelatedProcedureStepSequence),
7606818 => Ok(Dicom_Tags::ProcedureStepRelationshipType),
7606820 => Ok(Dicom_Tags::ReplacedProcedureStepSequence),
7606832 => Ok(Dicom_Tags::DeletionLock),
7606836 => Ok(Dicom_Tags::ReceivingAe),
7606838 => Ok(Dicom_Tags::RequestingAe),
7606840 => Ok(Dicom_Tags::ReasonForCancellation),
7606850 => Ok(Dicom_Tags::ScpStatus),
7606852 => Ok(Dicom_Tags::SubscriptionListStatus),
7606854 => Ok(Dicom_Tags::UnifiedProcedureStepListStatus),
7607076 => Ok(Dicom_Tags::BeamOrderIndex),
7607096 => Ok(Dicom_Tags::DoubleExposureMeterset),
7607098 => Ok(Dicom_Tags::DoubleExposureFieldDelta),
7607297 => Ok(Dicom_Tags::BrachyTaskSequence),
7607298 => Ok(Dicom_Tags::ContinuationStartTotalReferenceAirKerma),
7607299 => Ok(Dicom_Tags::ContinuationEndTotalReferenceAirKerma),
7607300 => Ok(Dicom_Tags::ContinuationPulseNumber),
7607301 => Ok(Dicom_Tags::ChannelDeliveryOrderSequence),
7607302 => Ok(Dicom_Tags::ReferencedChannelNumber),
7607303 => Ok(Dicom_Tags::StartCumulativeTimeWeight),
7607304 => Ok(Dicom_Tags::EndCumulativeTimeWeight),
7607305 => Ok(Dicom_Tags::OmittedChannelSequence),
7607306 => Ok(Dicom_Tags::ReasonForChannelOmission),
7607307 => Ok(Dicom_Tags::ReasonForChannelOmissionDescription),
7607308 => Ok(Dicom_Tags::ChannelDeliveryOrderIndex),
7607309 => Ok(Dicom_Tags::ChannelDeliveryContinuationSequence),
7607310 => Ok(Dicom_Tags::OmittedApplicationSetupSequence),
7733249 => Ok(Dicom_Tags::ImplantAssemblyTemplateName),
7733251 => Ok(Dicom_Tags::ImplantAssemblyTemplateIssuer),
7733254 => Ok(Dicom_Tags::ImplantAssemblyTemplateVersion),
7733256 => Ok(Dicom_Tags::ReplacedImplantAssemblyTemplateSequence),
7733258 => Ok(Dicom_Tags::ImplantAssemblyTemplateType),
7733260 => Ok(Dicom_Tags::OriginalImplantAssemblyTemplateSequence),
7733262 => Ok(Dicom_Tags::DerivationImplantAssemblyTemplateSequence),
7733264 => Ok(Dicom_Tags::ImplantAssemblyTemplateTargetAnatomySequence),
7733280 => Ok(Dicom_Tags::ProcedureTypeCodeSequence),
7733296 => Ok(Dicom_Tags::SurgicalTechnique),
7733298 => Ok(Dicom_Tags::ComponentTypesSequence),
7733300 => Ok(Dicom_Tags::ComponentTypeCodeSequence),
7733302 => Ok(Dicom_Tags::ExclusiveComponentType),
7733304 => Ok(Dicom_Tags::MandatoryComponentType),
7733312 => Ok(Dicom_Tags::ComponentSequence),
7733333 => Ok(Dicom_Tags::ComponentId),
7733344 => Ok(Dicom_Tags::ComponentAssemblySequence),
7733360 => Ok(Dicom_Tags::Component1ReferencedId),
7733376 => Ok(Dicom_Tags::Component1ReferencedMatingFeatureSetId),
7733392 => Ok(Dicom_Tags::Component1ReferencedMatingFeatureId),
7733408 => Ok(Dicom_Tags::Component2ReferencedId),
7733424 => Ok(Dicom_Tags::Component2ReferencedMatingFeatureSetId),
7733440 => Ok(Dicom_Tags::Component2ReferencedMatingFeatureId),
7864321 => Ok(Dicom_Tags::ImplantTemplateGroupName),
7864336 => Ok(Dicom_Tags::ImplantTemplateGroupDescription),
7864352 => Ok(Dicom_Tags::ImplantTemplateGroupIssuer),
7864356 => Ok(Dicom_Tags::ImplantTemplateGroupVersion),
7864358 => Ok(Dicom_Tags::ReplacedImplantTemplateGroupSequence),
7864360 => Ok(Dicom_Tags::ImplantTemplateGroupTargetAnatomySequence),
7864362 => Ok(Dicom_Tags::ImplantTemplateGroupMembersSequence),
7864366 => Ok(Dicom_Tags::ImplantTemplateGroupMemberId),
7864400 => Ok(Dicom_Tags::Tag3dImplantTemplateGroupMemberMatchingPoint),
7864416 => Ok(Dicom_Tags::Tag3dImplantTemplateGroupMemberMatchingAxes),
7864432 => Ok(Dicom_Tags::ImplantTemplateGroupMemberMatching2dCoordinatesSequence),
7864464 => Ok(Dicom_Tags::Tag2dImplantTemplateGroupMemberMatchingPoint),
7864480 => Ok(Dicom_Tags::Tag2dImplantTemplateGroupMemberMatchingAxes),
7864496 => Ok(Dicom_Tags::ImplantTemplateGroupVariationDimensionSequence),
7864498 => Ok(Dicom_Tags::ImplantTemplateGroupVariationDimensionName),
7864500 => Ok(Dicom_Tags::ImplantTemplateGroupVariationDimensionRankSequence),
7864502 => Ok(Dicom_Tags::ReferencedImplantTemplateGroupMemberId),
7864504 => Ok(Dicom_Tags::ImplantTemplateGroupVariationDimensionRank),
8388609 => Ok(Dicom_Tags::SurfaceScanAcquisitionTypeCodeSequence),
8388610 => Ok(Dicom_Tags::SurfaceScanModeCodeSequence),
8388611 => Ok(Dicom_Tags::RegistrationMethodCodeSequence),
8388612 => Ok(Dicom_Tags::ShotDurationTime),
8388613 => Ok(Dicom_Tags::ShotOffsetTime),
8388614 => Ok(Dicom_Tags::SurfacePointPresentationValueData),
8388615 => Ok(Dicom_Tags::SurfacePointColorCielabValueData),
8388616 => Ok(Dicom_Tags::UvMappingSequence),
8388617 => Ok(Dicom_Tags::TextureLabel),
8388624 => Ok(Dicom_Tags::UValueData),
8388625 => Ok(Dicom_Tags::VValueData),
8388626 => Ok(Dicom_Tags::ReferencedTextureSequence),
8388627 => Ok(Dicom_Tags::ReferencedSurfaceDataSequence),
8519681 => Ok(Dicom_Tags::AssessmentSummary),
8519683 => Ok(Dicom_Tags::AssessmentSummaryDescription),
8519684 => Ok(Dicom_Tags::AssessedSopInstanceSequence),
8519685 => Ok(Dicom_Tags::ReferencedComparisonSopInstanceSequence),
8519686 => Ok(Dicom_Tags::NumberOfAssessmentObservations),
8519687 => Ok(Dicom_Tags::AssessmentObservationsSequence),
8519688 => Ok(Dicom_Tags::ObservationSignificance),
8519690 => Ok(Dicom_Tags::ObservationDescription),
8519692 => Ok(Dicom_Tags::StructuredConstraintObservationSequence),
8519696 => Ok(Dicom_Tags::AssessedAttributeValueSequence),
8519702 => Ok(Dicom_Tags::AssessmentSetId),
8519703 => Ok(Dicom_Tags::AssessmentRequesterSequence),
8519704 => Ok(Dicom_Tags::SelectorAttributeName),
8519705 => Ok(Dicom_Tags::SelectorAttributeKeyword),
8519713 => Ok(Dicom_Tags::AssessmentTypeCodeSequence),
8519714 => Ok(Dicom_Tags::ObservationBasisCodeSequence),
8519715 => Ok(Dicom_Tags::AssessmentLabel),
8519730 => Ok(Dicom_Tags::ConstraintType),
8519731 => Ok(Dicom_Tags::SpecificationSelectionGuidance),
8519732 => Ok(Dicom_Tags::ConstraintValueSequence),
8519733 => Ok(Dicom_Tags::RecommendedDefaultValueSequence),
8519734 => Ok(Dicom_Tags::ConstraintViolationSignificance),
8519735 => Ok(Dicom_Tags::ConstraintViolationCondition),
8913200 => Ok(Dicom_Tags::StorageMediaFileSetId),
8913216 => Ok(Dicom_Tags::StorageMediaFileSetUid),
8913408 => Ok(Dicom_Tags::IconImageSequence),
8915204 => Ok(Dicom_Tags::TopicTitle),
8915206 => Ok(Dicom_Tags::TopicSubject),
8915216 => Ok(Dicom_Tags::TopicAuthor),
8915218 => Ok(Dicom_Tags::TopicKeywords),
16778256 => Ok(Dicom_Tags::SopInstanceStatus),
16778272 => Ok(Dicom_Tags::SopAuthorizationDatetime),
16778276 => Ok(Dicom_Tags::SopAuthorizationComment),
16778278 => Ok(Dicom_Tags::AuthorizationEquipmentCertificationNumber),
67108869 => Ok(Dicom_Tags::MacIdNumber),
67108880 => Ok(Dicom_Tags::MacCalculationTransferSyntaxUid),
67108885 => Ok(Dicom_Tags::MacAlgorithm),
67108896 => Ok(Dicom_Tags::DataElementsSigned),
67109120 => Ok(Dicom_Tags::DigitalSignatureUid),
67109125 => Ok(Dicom_Tags::DigitalSignatureDatetime),
67109136 => Ok(Dicom_Tags::CertificateType),
67109141 => Ok(Dicom_Tags::CertificateOfSigner),
67109152 => Ok(Dicom_Tags::Signature),
67109637 => Ok(Dicom_Tags::CertifiedTimestampType),
67109648 => Ok(Dicom_Tags::CertifiedTimestamp),
67109889 => Ok(Dicom_Tags::DigitalSignaturePurposeCodeSequence),
67109890 => Ok(Dicom_Tags::ReferencedDigitalSignatureSequence),
67109891 => Ok(Dicom_Tags::ReferencedSopInstanceMacSequence),
67109892 => Ok(Dicom_Tags::Mac),
67110144 => Ok(Dicom_Tags::EncryptedAttributesSequence),
67110160 => Ok(Dicom_Tags::EncryptedContentTransferSyntaxUid),
67110176 => Ok(Dicom_Tags::EncryptedContent),
67110224 => Ok(Dicom_Tags::ModifiedAttributesSequence),
67110241 => Ok(Dicom_Tags::OriginalAttributesSequence),
67110242 => Ok(Dicom_Tags::AttributeModificationDatetime),
67110243 => Ok(Dicom_Tags::ModifyingSystem),
67110244 => Ok(Dicom_Tags::SourceOfPreviousValues),
67110245 => Ok(Dicom_Tags::ReasonForTheAttributeModification),
536870928 => Ok(Dicom_Tags::NumberOfCopies),
536870942 => Ok(Dicom_Tags::PrinterConfigurationSequence),
536870944 => Ok(Dicom_Tags::PrintPriority),
536870960 => Ok(Dicom_Tags::MediumType),
536870976 => Ok(Dicom_Tags::FilmDestination),
536870992 => Ok(Dicom_Tags::FilmSessionLabel),
536871008 => Ok(Dicom_Tags::MemoryAllocation),
536871009 => Ok(Dicom_Tags::MaximumMemoryAllocation),
536871010 => Ok(Dicom_Tags::ColorImagePrintingFlag),
536871011 => Ok(Dicom_Tags::CollationFlag),
536871013 => Ok(Dicom_Tags::AnnotationFlag),
536871015 => Ok(Dicom_Tags::ImageOverlayFlag),
536871017 => Ok(Dicom_Tags::PresentationLutFlag),
536871018 => Ok(Dicom_Tags::ImageBoxPresentationLutFlag),
536871072 => Ok(Dicom_Tags::MemoryBitDepth),
536871073 => Ok(Dicom_Tags::PrintingBitDepth),
536871074 => Ok(Dicom_Tags::MediaInstalledSequence),
536871076 => Ok(Dicom_Tags::OtherMediaAvailableSequence),
536871080 => Ok(Dicom_Tags::SupportedImageDisplayFormatsSequence),
536872192 => Ok(Dicom_Tags::ReferencedFilmBoxSequence),
536872208 => Ok(Dicom_Tags::ReferencedStoredPrintSequence),
537919504 => Ok(Dicom_Tags::ImageDisplayFormat),
537919536 => Ok(Dicom_Tags::AnnotationDisplayFormatId),
537919552 => Ok(Dicom_Tags::FilmOrientation),
537919568 => Ok(Dicom_Tags::FilmSizeId),
537919570 => Ok(Dicom_Tags::PrinterResolutionId),
537919572 => Ok(Dicom_Tags::DefaultPrinterResolutionId),
537919584 => Ok(Dicom_Tags::MagnificationType),
537919616 => Ok(Dicom_Tags::SmoothingType),
537919654 => Ok(Dicom_Tags::DefaultMagnificationType),
537919655 => Ok(Dicom_Tags::OtherMagnificationTypesAvailable),
537919656 => Ok(Dicom_Tags::DefaultSmoothingType),
537919657 => Ok(Dicom_Tags::OtherSmoothingTypesAvailable),
537919744 => Ok(Dicom_Tags::BorderDensity),
537919760 => Ok(Dicom_Tags::EmptyImageDensity),
537919776 => Ok(Dicom_Tags::MinDensity),
537919792 => Ok(Dicom_Tags::MaxDensity),
537919808 => Ok(Dicom_Tags::Trim),
537919824 => Ok(Dicom_Tags::ConfigurationInformation),
537919826 => Ok(Dicom_Tags::ConfigurationInformationDescription),
537919828 => Ok(Dicom_Tags::MaximumCollatedFilms),
537919838 => Ok(Dicom_Tags::Illumination),
537919840 => Ok(Dicom_Tags::ReflectedAmbientLight),
537920374 => Ok(Dicom_Tags::PrinterPixelSpacing),
537920768 => Ok(Dicom_Tags::ReferencedFilmSessionSequence),
537920784 => Ok(Dicom_Tags::ReferencedImageBoxSequence),
537920800 => Ok(Dicom_Tags::ReferencedBasicAnnotationBoxSequence),
538968080 => Ok(Dicom_Tags::ImageBoxPosition),
538968096 => Ok(Dicom_Tags::Polarity),
538968112 => Ok(Dicom_Tags::RequestedImageSize),
538968128 => Ok(Dicom_Tags::RequestedDecimateCropBehavior),
538968144 => Ok(Dicom_Tags::RequestedResolutionId),
538968224 => Ok(Dicom_Tags::RequestedImageSizeFlag),
538968226 => Ok(Dicom_Tags::DecimateCropResult),
538968336 => Ok(Dicom_Tags::BasicGrayscaleImageSequence),
538968337 => Ok(Dicom_Tags::BasicColorImageSequence),
538968368 => Ok(Dicom_Tags::ReferencedImageOverlayBoxSequence),
538968384 => Ok(Dicom_Tags::ReferencedVoiLutBoxSequence),
540016656 => Ok(Dicom_Tags::AnnotationPosition),
540016672 => Ok(Dicom_Tags::TextString),
541065232 => Ok(Dicom_Tags::ReferencedOverlayPlaneSequence),
541065233 => Ok(Dicom_Tags::ReferencedOverlayPlaneGroups),
541065248 => Ok(Dicom_Tags::OverlayPixelDataSequence),
541065312 => Ok(Dicom_Tags::OverlayMagnificationType),
541065328 => Ok(Dicom_Tags::OverlaySmoothingType),
541065330 => Ok(Dicom_Tags::OverlayOrImageMagnification),
541065332 => Ok(Dicom_Tags::MagnifyToNumberOfColumns),
541065344 => Ok(Dicom_Tags::OverlayForegroundDensity),
541065346 => Ok(Dicom_Tags::OverlayBackgroundDensity),
541065360 => Ok(Dicom_Tags::OverlayMode),
541065472 => Ok(Dicom_Tags::ThresholdDensity),
541066496 => Ok(Dicom_Tags::ReferencedImageBoxSequenceRetired),
542113808 => Ok(Dicom_Tags::PresentationLutSequence),
542113824 => Ok(Dicom_Tags::PresentationLutShape),
542115072 => Ok(Dicom_Tags::ReferencedPresentationLutSequence),
553648144 => Ok(Dicom_Tags::PrintJobId),
553648160 => Ok(Dicom_Tags::ExecutionStatus),
553648176 => Ok(Dicom_Tags::ExecutionStatusInfo),
553648192 => Ok(Dicom_Tags::CreationDate),
553648208 => Ok(Dicom_Tags::CreationTime),
553648240 => Ok(Dicom_Tags::Originator),
553648448 => Ok(Dicom_Tags::DestinationAe),
553648480 => Ok(Dicom_Tags::OwnerId),
553648496 => Ok(Dicom_Tags::NumberOfFilms),
553649408 => Ok(Dicom_Tags::ReferencedPrintJobSequencePullStoredPrint),
554696720 => Ok(Dicom_Tags::PrinterStatus),
554696736 => Ok(Dicom_Tags::PrinterStatusInfo),
554696752 => Ok(Dicom_Tags::PrinterName),
554696857 => Ok(Dicom_Tags::PrintQueueId),
555745296 => Ok(Dicom_Tags::QueueStatus),
555745360 => Ok(Dicom_Tags::PrintJobDescriptionSequence),
555745392 => Ok(Dicom_Tags::ReferencedPrintJobSequence),
556793872 => Ok(Dicom_Tags::PrintManagementCapabilitiesSequence),
556793877 => Ok(Dicom_Tags::PrinterCharacteristicsSequence),
556793904 => Ok(Dicom_Tags::FilmBoxContentSequence),
556793920 => Ok(Dicom_Tags::ImageBoxContentSequence),
556793936 => Ok(Dicom_Tags::AnnotationContentSequence),
556793952 => Ok(Dicom_Tags::ImageOverlayBoxContentSequence),
556793984 => Ok(Dicom_Tags::PresentationLutContentSequence),
556794016 => Ok(Dicom_Tags::ProposedStudySequence),
556794048 => Ok(Dicom_Tags::OriginalImageSequence),
570425345 => Ok(Dicom_Tags::LabelUsingInformationExtractedFromInstances),
570425346 => Ok(Dicom_Tags::LabelText),
570425347 => Ok(Dicom_Tags::LabelStyleSelection),
570425348 => Ok(Dicom_Tags::MediaDisposition),
570425349 => Ok(Dicom_Tags::BarcodeValue),
570425350 => Ok(Dicom_Tags::BarcodeSymbology),
570425351 => Ok(Dicom_Tags::AllowMediaSplitting),
570425352 => Ok(Dicom_Tags::IncludeNonDicomObjects),
570425353 => Ok(Dicom_Tags::IncludeDisplayApplication),
570425354 => Ok(Dicom_Tags::PreserveCompositeInstancesAfterMediaCreation),
570425355 => Ok(Dicom_Tags::TotalNumberOfPiecesOfMediaCreated),
570425356 => Ok(Dicom_Tags::RequestedMediaApplicationProfile),
570425357 => Ok(Dicom_Tags::ReferencedStorageMediaSequence),
570425358 => Ok(Dicom_Tags::FailureAttributes),
570425359 => Ok(Dicom_Tags::AllowLossyCompression),
570425376 => Ok(Dicom_Tags::RequestPriority),
805437442 => Ok(Dicom_Tags::RtImageLabel),
805437443 => Ok(Dicom_Tags::RtImageName),
805437444 => Ok(Dicom_Tags::RtImageDescription),
805437450 => Ok(Dicom_Tags::ReportedValuesOrigin),
805437452 => Ok(Dicom_Tags::RtImagePlane),
805437453 => Ok(Dicom_Tags::XRayImageReceptorTranslation),
805437454 => Ok(Dicom_Tags::XRayImageReceptorAngle),
805437456 => Ok(Dicom_Tags::RtImageOrientation),
805437457 => Ok(Dicom_Tags::ImagePlanePixelSpacing),
805437458 => Ok(Dicom_Tags::RtImagePosition),
805437472 => Ok(Dicom_Tags::RadiationMachineName),
805437474 => Ok(Dicom_Tags::RadiationMachineSad),
805437476 => Ok(Dicom_Tags::RadiationMachineSsd),
805437478 => Ok(Dicom_Tags::RtImageSid),
805437480 => Ok(Dicom_Tags::SourceToReferenceObjectDistance),
805437481 => Ok(Dicom_Tags::FractionNumber),
805437488 => Ok(Dicom_Tags::ExposureSequence),
805437490 => Ok(Dicom_Tags::MetersetExposure),
805437492 => Ok(Dicom_Tags::DiaphragmPosition),
805437504 => Ok(Dicom_Tags::FluenceMapSequence),
805437505 => Ok(Dicom_Tags::FluenceDataSource),
805437506 => Ok(Dicom_Tags::FluenceDataScale),
805437520 => Ok(Dicom_Tags::PrimaryFluenceModeSequence),
805437521 => Ok(Dicom_Tags::FluenceMode),
805437522 => Ok(Dicom_Tags::FluenceModeId),
805568513 => Ok(Dicom_Tags::DvhType),
805568514 => Ok(Dicom_Tags::DoseUnits),
805568516 => Ok(Dicom_Tags::DoseType),
805568517 => Ok(Dicom_Tags::SpatialTransformOfDose),
805568518 => Ok(Dicom_Tags::DoseComment),
805568520 => Ok(Dicom_Tags::NormalizationPoint),
805568522 => Ok(Dicom_Tags::DoseSummationType),
805568524 => Ok(Dicom_Tags::GridFrameOffsetVector),
805568526 => Ok(Dicom_Tags::DoseGridScaling),
805568528 => Ok(Dicom_Tags::RtDoseRoiSequence),
805568530 => Ok(Dicom_Tags::DoseValue),
805568532 => Ok(Dicom_Tags::TissueHeterogeneityCorrection),
805568576 => Ok(Dicom_Tags::DvhNormalizationPoint),
805568578 => Ok(Dicom_Tags::DvhNormalizationDoseValue),
805568592 => Ok(Dicom_Tags::DvhSequence),
805568594 => Ok(Dicom_Tags::DvhDoseScaling),
805568596 => Ok(Dicom_Tags::DvhVolumeUnits),
805568598 => Ok(Dicom_Tags::DvhNumberOfBins),
805568600 => Ok(Dicom_Tags::DvhData),
805568608 => Ok(Dicom_Tags::DvhReferencedRoiSequence),
805568610 => Ok(Dicom_Tags::DvhRoiContributionType),
805568624 => Ok(Dicom_Tags::DvhMinimumDose),
805568626 => Ok(Dicom_Tags::DvhMaximumDose),
805568628 => Ok(Dicom_Tags::DvhMeanDose),
805699586 => Ok(Dicom_Tags::StructureSetLabel),
805699588 => Ok(Dicom_Tags::StructureSetName),
805699590 => Ok(Dicom_Tags::StructureSetDescription),
805699592 => Ok(Dicom_Tags::StructureSetDate),
805699593 => Ok(Dicom_Tags::StructureSetTime),
805699600 => Ok(Dicom_Tags::ReferencedFrameOfReferenceSequence),
805699602 => Ok(Dicom_Tags::RtReferencedStudySequence),
805699604 => Ok(Dicom_Tags::RtReferencedSeriesSequence),
805699606 => Ok(Dicom_Tags::ContourImageSequence),
805699608 => Ok(Dicom_Tags::PredecessorStructureSetSequence),
805699616 => Ok(Dicom_Tags::StructureSetRoiSequence),
805699618 => Ok(Dicom_Tags::RoiNumber),
805699620 => Ok(Dicom_Tags::ReferencedFrameOfReferenceUid),
805699622 => Ok(Dicom_Tags::RoiName),
805699624 => Ok(Dicom_Tags::RoiDescription),
805699626 => Ok(Dicom_Tags::RoiDisplayColor),
805699628 => Ok(Dicom_Tags::RoiVolume),
805699632 => Ok(Dicom_Tags::RtRelatedRoiSequence),
805699635 => Ok(Dicom_Tags::RtRoiRelationship),
805699638 => Ok(Dicom_Tags::RoiGenerationAlgorithm),
805699640 => Ok(Dicom_Tags::RoiGenerationDescription),
805699641 => Ok(Dicom_Tags::RoiContourSequence),
805699648 => Ok(Dicom_Tags::ContourSequence),
805699650 => Ok(Dicom_Tags::ContourGeometricType),
805699652 => Ok(Dicom_Tags::ContourSlabThickness),
805699653 => Ok(Dicom_Tags::ContourOffsetVector),
805699654 => Ok(Dicom_Tags::NumberOfContourPoints),
805699656 => Ok(Dicom_Tags::ContourNumber),
805699657 => Ok(Dicom_Tags::AttachedContours),
805699664 => Ok(Dicom_Tags::ContourData),
805699712 => Ok(Dicom_Tags::RtRoiObservationsSequence),
805699714 => Ok(Dicom_Tags::ObservationNumber),
805699716 => Ok(Dicom_Tags::ReferencedRoiNumber),
805699717 => Ok(Dicom_Tags::RoiObservationLabel),
805699718 => Ok(Dicom_Tags::RtRoiIdentificationCodeSequence),
805699720 => Ok(Dicom_Tags::RoiObservationDescription),
805699744 => Ok(Dicom_Tags::RelatedRtRoiObservationsSequence),
805699748 => Ok(Dicom_Tags::RtRoiInterpretedType),
805699750 => Ok(Dicom_Tags::RoiInterpreter),
805699760 => Ok(Dicom_Tags::RoiPhysicalPropertiesSequence),
805699762 => Ok(Dicom_Tags::RoiPhysicalProperty),
805699764 => Ok(Dicom_Tags::RoiPhysicalPropertyValue),
805699766 => Ok(Dicom_Tags::RoiElementalCompositionSequence),
805699767 => Ok(Dicom_Tags::RoiElementalCompositionAtomicNumber),
805699768 => Ok(Dicom_Tags::RoiElementalCompositionAtomicMassFraction),
805699769 => Ok(Dicom_Tags::AdditionalRtRoiIdentificationCodeSequence),
805699776 => Ok(Dicom_Tags::FrameOfReferenceRelationshipSequence),
805699778 => Ok(Dicom_Tags::RelatedFrameOfReferenceUid),
805699780 => Ok(Dicom_Tags::FrameOfReferenceTransformationType),
805699782 => Ok(Dicom_Tags::FrameOfReferenceTransformationMatrix),
805699784 => Ok(Dicom_Tags::FrameOfReferenceTransformationComment),
805830672 => Ok(Dicom_Tags::MeasuredDoseReferenceSequence),
805830674 => Ok(Dicom_Tags::MeasuredDoseDescription),
805830676 => Ok(Dicom_Tags::MeasuredDoseType),
805830678 => Ok(Dicom_Tags::MeasuredDoseValue),
805830688 => Ok(Dicom_Tags::TreatmentSessionBeamSequence),
805830689 => Ok(Dicom_Tags::TreatmentSessionIonBeamSequence),
805830690 => Ok(Dicom_Tags::CurrentFractionNumber),
805830692 => Ok(Dicom_Tags::TreatmentControlPointDate),
805830693 => Ok(Dicom_Tags::TreatmentControlPointTime),
805830698 => Ok(Dicom_Tags::TreatmentTerminationStatus),
805830699 => Ok(Dicom_Tags::TreatmentTerminationCode),
805830700 => Ok(Dicom_Tags::TreatmentVerificationStatus),
805830704 => Ok(Dicom_Tags::ReferencedTreatmentRecordSequence),
805830706 => Ok(Dicom_Tags::SpecifiedPrimaryMeterset),
805830707 => Ok(Dicom_Tags::SpecifiedSecondaryMeterset),
805830710 => Ok(Dicom_Tags::DeliveredPrimaryMeterset),
805830711 => Ok(Dicom_Tags::DeliveredSecondaryMeterset),
805830714 => Ok(Dicom_Tags::SpecifiedTreatmentTime),
805830715 => Ok(Dicom_Tags::DeliveredTreatmentTime),
805830720 => Ok(Dicom_Tags::ControlPointDeliverySequence),
805830721 => Ok(Dicom_Tags::IonControlPointDeliverySequence),
805830722 => Ok(Dicom_Tags::SpecifiedMeterset),
805830724 => Ok(Dicom_Tags::DeliveredMeterset),
805830725 => Ok(Dicom_Tags::MetersetRateSet),
805830726 => Ok(Dicom_Tags::MetersetRateDelivered),
805830727 => Ok(Dicom_Tags::ScanSpotMetersetsDelivered),
805830728 => Ok(Dicom_Tags::DoseRateDelivered),
805830736 => Ok(Dicom_Tags::TreatmentSummaryCalculatedDoseReferenceSequence),
805830738 => Ok(Dicom_Tags::CumulativeDoseToDoseReference),
805830740 => Ok(Dicom_Tags::FirstTreatmentDate),
805830742 => Ok(Dicom_Tags::MostRecentTreatmentDate),
805830746 => Ok(Dicom_Tags::NumberOfFractionsDelivered),
805830752 => Ok(Dicom_Tags::OverrideSequence),
805830753 => Ok(Dicom_Tags::ParameterSequencePointer),
805830754 => Ok(Dicom_Tags::OverrideParameterPointer),
805830755 => Ok(Dicom_Tags::ParameterItemIndex),
805830756 => Ok(Dicom_Tags::MeasuredDoseReferenceNumber),
805830757 => Ok(Dicom_Tags::ParameterPointer),
805830758 => Ok(Dicom_Tags::OverrideReason),
805830760 => Ok(Dicom_Tags::CorrectedParameterSequence),
805830762 => Ok(Dicom_Tags::CorrectionValue),
805830768 => Ok(Dicom_Tags::CalculatedDoseReferenceSequence),
805830770 => Ok(Dicom_Tags::CalculatedDoseReferenceNumber),
805830772 => Ok(Dicom_Tags::CalculatedDoseReferenceDescription),
805830774 => Ok(Dicom_Tags::CalculatedDoseReferenceDoseValue),
805830776 => Ok(Dicom_Tags::StartMeterset),
805830778 => Ok(Dicom_Tags::EndMeterset),
805830784 => Ok(Dicom_Tags::ReferencedMeasuredDoseReferenceSequence),
805830786 => Ok(Dicom_Tags::ReferencedMeasuredDoseReferenceNumber),
805830800 => Ok(Dicom_Tags::ReferencedCalculatedDoseReferenceSequence),
805830802 => Ok(Dicom_Tags::ReferencedCalculatedDoseReferenceNumber),
805830816 => Ok(Dicom_Tags::BeamLimitingDeviceLeafPairsSequence),
805830832 => Ok(Dicom_Tags::RecordedWedgeSequence),
805830848 => Ok(Dicom_Tags::RecordedCompensatorSequence),
805830864 => Ok(Dicom_Tags::RecordedBlockSequence),
805830880 => Ok(Dicom_Tags::TreatmentSummaryMeasuredDoseReferenceSequence),
805830896 => Ok(Dicom_Tags::RecordedSnoutSequence),
805830898 => Ok(Dicom_Tags::RecordedRangeShifterSequence),
805830900 => Ok(Dicom_Tags::RecordedLateralSpreadingDeviceSequence),
805830902 => Ok(Dicom_Tags::RecordedRangeModulatorSequence),
805830912 => Ok(Dicom_Tags::RecordedSourceSequence),
805830917 => Ok(Dicom_Tags::SourceSerialNumber),
805830928 => Ok(Dicom_Tags::TreatmentSessionApplicationSetupSequence),
805830934 => Ok(Dicom_Tags::ApplicationSetupCheck),
805830944 => Ok(Dicom_Tags::RecordedBrachyAccessoryDeviceSequence),
805830946 => Ok(Dicom_Tags::ReferencedBrachyAccessoryDeviceNumber),
805830960 => Ok(Dicom_Tags::RecordedChannelSequence),
805830962 => Ok(Dicom_Tags::SpecifiedChannelTotalTime),
805830964 => Ok(Dicom_Tags::DeliveredChannelTotalTime),
805830966 => Ok(Dicom_Tags::SpecifiedNumberOfPulses),
805830968 => Ok(Dicom_Tags::DeliveredNumberOfPulses),
805830970 => Ok(Dicom_Tags::SpecifiedPulseRepetitionInterval),
805830972 => Ok(Dicom_Tags::DeliveredPulseRepetitionInterval),
805830976 => Ok(Dicom_Tags::RecordedSourceApplicatorSequence),
805830978 => Ok(Dicom_Tags::ReferencedSourceApplicatorNumber),
805830992 => Ok(Dicom_Tags::RecordedChannelShieldSequence),
805830994 => Ok(Dicom_Tags::ReferencedChannelShieldNumber),
805831008 => Ok(Dicom_Tags::BrachyControlPointDeliveredSequence),
805831010 => Ok(Dicom_Tags::SafePositionExitDate),
805831012 => Ok(Dicom_Tags::SafePositionExitTime),
805831014 => Ok(Dicom_Tags::SafePositionReturnDate),
805831016 => Ok(Dicom_Tags::SafePositionReturnTime),
805831025 => Ok(Dicom_Tags::PulseSpecificBrachyControlPointDeliveredSequence),
805831026 => Ok(Dicom_Tags::PulseNumber),
805831027 => Ok(Dicom_Tags::BrachyPulseControlPointDeliveredSequence),
805831168 => Ok(Dicom_Tags::CurrentTreatmentStatus),
805831170 => Ok(Dicom_Tags::TreatmentStatusComment),
805831200 => Ok(Dicom_Tags::FractionGroupSummarySequence),
805831203 => Ok(Dicom_Tags::ReferencedFractionNumber),
805831204 => Ok(Dicom_Tags::FractionGroupType),
805831216 => Ok(Dicom_Tags::BeamStopperPosition),
805831232 => Ok(Dicom_Tags::FractionStatusSummarySequence),
805831248 => Ok(Dicom_Tags::TreatmentDate),
805831249 => Ok(Dicom_Tags::TreatmentTime),
805961730 => Ok(Dicom_Tags::RtPlanLabel),
805961731 => Ok(Dicom_Tags::RtPlanName),
805961732 => Ok(Dicom_Tags::RtPlanDescription),
805961734 => Ok(Dicom_Tags::RtPlanDate),
805961735 => Ok(Dicom_Tags::RtPlanTime),
805961737 => Ok(Dicom_Tags::TreatmentProtocols),
805961738 => Ok(Dicom_Tags::PlanIntent),
805961739 => Ok(Dicom_Tags::TreatmentSites),
805961740 => Ok(Dicom_Tags::RtPlanGeometry),
805961742 => Ok(Dicom_Tags::PrescriptionDescription),
805961744 => Ok(Dicom_Tags::DoseReferenceSequence),
805961746 => Ok(Dicom_Tags::DoseReferenceNumber),
805961747 => Ok(Dicom_Tags::DoseReferenceUid),
805961748 => Ok(Dicom_Tags::DoseReferenceStructureType),
805961749 => Ok(Dicom_Tags::NominalBeamEnergyUnit),
805961750 => Ok(Dicom_Tags::DoseReferenceDescription),
805961752 => Ok(Dicom_Tags::DoseReferencePointCoordinates),
805961754 => Ok(Dicom_Tags::NominalPriorDose),
805961760 => Ok(Dicom_Tags::DoseReferenceType),
805961761 => Ok(Dicom_Tags::ConstraintWeight),
805961762 => Ok(Dicom_Tags::DeliveryWarningDose),
805961763 => Ok(Dicom_Tags::DeliveryMaximumDose),
805961765 => Ok(Dicom_Tags::TargetMinimumDose),
805961766 => Ok(Dicom_Tags::TargetPrescriptionDose),
805961767 => Ok(Dicom_Tags::TargetMaximumDose),
805961768 => Ok(Dicom_Tags::TargetUnderdoseVolumeFraction),
805961770 => Ok(Dicom_Tags::OrganAtRiskFullVolumeDose),
805961771 => Ok(Dicom_Tags::OrganAtRiskLimitDose),
805961772 => Ok(Dicom_Tags::OrganAtRiskMaximumDose),
805961773 => Ok(Dicom_Tags::OrganAtRiskOverdoseVolumeFraction),
805961792 => Ok(Dicom_Tags::ToleranceTableSequence),
805961794 => Ok(Dicom_Tags::ToleranceTableNumber),
805961795 => Ok(Dicom_Tags::ToleranceTableLabel),
805961796 => Ok(Dicom_Tags::GantryAngleTolerance),
805961798 => Ok(Dicom_Tags::BeamLimitingDeviceAngleTolerance),
805961800 => Ok(Dicom_Tags::BeamLimitingDeviceToleranceSequence),
805961802 => Ok(Dicom_Tags::BeamLimitingDevicePositionTolerance),
805961803 => Ok(Dicom_Tags::SnoutPositionTolerance),
805961804 => Ok(Dicom_Tags::PatientSupportAngleTolerance),
805961806 => Ok(Dicom_Tags::TableTopEccentricAngleTolerance),
805961807 => Ok(Dicom_Tags::TableTopPitchAngleTolerance),
805961808 => Ok(Dicom_Tags::TableTopRollAngleTolerance),
805961809 => Ok(Dicom_Tags::TableTopVerticalPositionTolerance),
805961810 => Ok(Dicom_Tags::TableTopLongitudinalPositionTolerance),
805961811 => Ok(Dicom_Tags::TableTopLateralPositionTolerance),
805961813 => Ok(Dicom_Tags::RtPlanRelationship),
805961840 => Ok(Dicom_Tags::FractionGroupSequence),
805961841 => Ok(Dicom_Tags::FractionGroupNumber),
805961842 => Ok(Dicom_Tags::FractionGroupDescription),
805961848 => Ok(Dicom_Tags::NumberOfFractionsPlanned),
805961849 => Ok(Dicom_Tags::NumberOfFractionPatternDigitsPerDay),
805961850 => Ok(Dicom_Tags::RepeatFractionCycleLength),
805961851 => Ok(Dicom_Tags::FractionPattern),
805961856 => Ok(Dicom_Tags::NumberOfBeams),
805961858 => Ok(Dicom_Tags::BeamDoseSpecificationPoint),
805961860 => Ok(Dicom_Tags::BeamDose),
805961862 => Ok(Dicom_Tags::BeamMeterset),
805961864 => Ok(Dicom_Tags::BeamDosePointDepth),
805961865 => Ok(Dicom_Tags::BeamDosePointEquivalentDepth),
805961866 => Ok(Dicom_Tags::BeamDosePointSsd),
805961867 => Ok(Dicom_Tags::BeamDoseMeaning),
805961868 => Ok(Dicom_Tags::BeamDoseVerificationControlPointSequence),
805961869 => Ok(Dicom_Tags::AverageBeamDosePointDepth),
805961870 => Ok(Dicom_Tags::AverageBeamDosePointEquivalentDepth),
805961871 => Ok(Dicom_Tags::AverageBeamDosePointSsd),
805961872 => Ok(Dicom_Tags::BeamDoseType),
805961873 => Ok(Dicom_Tags::AlternateBeamDose),
805961874 => Ok(Dicom_Tags::AlternateBeamDoseType),
805961888 => Ok(Dicom_Tags::NumberOfBrachyApplicationSetups),
805961890 => Ok(Dicom_Tags::BrachyApplicationSetupDoseSpecificationPoint),
805961892 => Ok(Dicom_Tags::BrachyApplicationSetupDose),
805961904 => Ok(Dicom_Tags::BeamSequence),
805961906 => Ok(Dicom_Tags::TreatmentMachineName),
805961907 => Ok(Dicom_Tags::PrimaryDosimeterUnit),
805961908 => Ok(Dicom_Tags::SourceAxisDistance),
805961910 => Ok(Dicom_Tags::BeamLimitingDeviceSequence),
805961912 => Ok(Dicom_Tags::RtBeamLimitingDeviceType),
805961914 => Ok(Dicom_Tags::SourceToBeamLimitingDeviceDistance),
805961915 => Ok(Dicom_Tags::IsocenterToBeamLimitingDeviceDistance),
805961916 => Ok(Dicom_Tags::NumberOfLeafJawPairs),
805961918 => Ok(Dicom_Tags::LeafPositionBoundaries),
805961920 => Ok(Dicom_Tags::BeamNumber),
805961922 => Ok(Dicom_Tags::BeamName),
805961923 => Ok(Dicom_Tags::BeamDescription),
805961924 => Ok(Dicom_Tags::BeamType),
805961925 => Ok(Dicom_Tags::BeamDeliveryDurationLimit),
805961926 => Ok(Dicom_Tags::RadiationType),
805961927 => Ok(Dicom_Tags::HighDoseTechniqueType),
805961928 => Ok(Dicom_Tags::ReferenceImageNumber),
805961930 => Ok(Dicom_Tags::PlannedVerificationImageSequence),
805961932 => Ok(Dicom_Tags::ImagingDeviceSpecificAcquisitionParameters),
805961934 => Ok(Dicom_Tags::TreatmentDeliveryType),
805961936 => Ok(Dicom_Tags::NumberOfWedges),
805961937 => Ok(Dicom_Tags::WedgeSequence),
805961938 => Ok(Dicom_Tags::WedgeNumber),
805961939 => Ok(Dicom_Tags::WedgeType),
805961940 => Ok(Dicom_Tags::WedgeId),
805961941 => Ok(Dicom_Tags::WedgeAngle),
805961942 => Ok(Dicom_Tags::WedgeFactor),
805961943 => Ok(Dicom_Tags::TotalWedgeTrayWaterEquivalentThickness),
805961944 => Ok(Dicom_Tags::WedgeOrientation),
805961945 => Ok(Dicom_Tags::IsocenterToWedgeTrayDistance),
805961946 => Ok(Dicom_Tags::SourceToWedgeTrayDistance),
805961947 => Ok(Dicom_Tags::WedgeThinEdgePosition),
805961948 => Ok(Dicom_Tags::BolusId),
805961949 => Ok(Dicom_Tags::BolusDescription),
805961950 => Ok(Dicom_Tags::EffectiveWedgeAngle),
805961952 => Ok(Dicom_Tags::NumberOfCompensators),
805961953 => Ok(Dicom_Tags::MaterialId),
805961954 => Ok(Dicom_Tags::TotalCompensatorTrayFactor),
805961955 => Ok(Dicom_Tags::CompensatorSequence),
805961956 => Ok(Dicom_Tags::CompensatorNumber),
805961957 => Ok(Dicom_Tags::CompensatorId),
805961958 => Ok(Dicom_Tags::SourceToCompensatorTrayDistance),
805961959 => Ok(Dicom_Tags::CompensatorRows),
805961960 => Ok(Dicom_Tags::CompensatorColumns),
805961961 => Ok(Dicom_Tags::CompensatorPixelSpacing),
805961962 => Ok(Dicom_Tags::CompensatorPosition),
805961963 => Ok(Dicom_Tags::CompensatorTransmissionData),
805961964 => Ok(Dicom_Tags::CompensatorThicknessData),
805961965 => Ok(Dicom_Tags::NumberOfBoli),
805961966 => Ok(Dicom_Tags::CompensatorType),
805961967 => Ok(Dicom_Tags::CompensatorTrayId),
805961968 => Ok(Dicom_Tags::NumberOfBlocks),
805961970 => Ok(Dicom_Tags::TotalBlockTrayFactor),
805961971 => Ok(Dicom_Tags::TotalBlockTrayWaterEquivalentThickness),
805961972 => Ok(Dicom_Tags::BlockSequence),
805961973 => Ok(Dicom_Tags::BlockTrayId),
805961974 => Ok(Dicom_Tags::SourceToBlockTrayDistance),
805961975 => Ok(Dicom_Tags::IsocenterToBlockTrayDistance),
805961976 => Ok(Dicom_Tags::BlockType),
805961977 => Ok(Dicom_Tags::AccessoryCode),
805961978 => Ok(Dicom_Tags::BlockDivergence),
805961979 => Ok(Dicom_Tags::BlockMountingPosition),
805961980 => Ok(Dicom_Tags::BlockNumber),
805961982 => Ok(Dicom_Tags::BlockName),
805961984 => Ok(Dicom_Tags::BlockThickness),
805961986 => Ok(Dicom_Tags::BlockTransmission),
805961988 => Ok(Dicom_Tags::BlockNumberOfPoints),
805961990 => Ok(Dicom_Tags::BlockData),
805961991 => Ok(Dicom_Tags::ApplicatorSequence),
805961992 => Ok(Dicom_Tags::ApplicatorId),
805961993 => Ok(Dicom_Tags::ApplicatorType),
805961994 => Ok(Dicom_Tags::ApplicatorDescription),
805961996 => Ok(Dicom_Tags::CumulativeDoseReferenceCoefficient),
805961998 => Ok(Dicom_Tags::FinalCumulativeMetersetWeight),
805962000 => Ok(Dicom_Tags::NumberOfControlPoints),
805962001 => Ok(Dicom_Tags::ControlPointSequence),
805962002 => Ok(Dicom_Tags::ControlPointIndex),
805962004 => Ok(Dicom_Tags::NominalBeamEnergy),
805962005 => Ok(Dicom_Tags::DoseRateSet),
805962006 => Ok(Dicom_Tags::WedgePositionSequence),
805962008 => Ok(Dicom_Tags::WedgePosition),
805962010 => Ok(Dicom_Tags::BeamLimitingDevicePositionSequence),
805962012 => Ok(Dicom_Tags::LeafJawPositions),
805962014 => Ok(Dicom_Tags::GantryAngle),
805962015 => Ok(Dicom_Tags::GantryRotationDirection),
805962016 => Ok(Dicom_Tags::BeamLimitingDeviceAngle),
805962017 => Ok(Dicom_Tags::BeamLimitingDeviceRotationDirection),
805962018 => Ok(Dicom_Tags::PatientSupportAngle),
805962019 => Ok(Dicom_Tags::PatientSupportRotationDirection),
805962020 => Ok(Dicom_Tags::TableTopEccentricAxisDistance),
805962021 => Ok(Dicom_Tags::TableTopEccentricAngle),
805962022 => Ok(Dicom_Tags::TableTopEccentricRotationDirection),
805962024 => Ok(Dicom_Tags::TableTopVerticalPosition),
805962025 => Ok(Dicom_Tags::TableTopLongitudinalPosition),
805962026 => Ok(Dicom_Tags::TableTopLateralPosition),
805962028 => Ok(Dicom_Tags::IsocenterPosition),
805962030 => Ok(Dicom_Tags::SurfaceEntryPoint),
805962032 => Ok(Dicom_Tags::SourceToSurfaceDistance),
805962033 => Ok(Dicom_Tags::AverageBeamDosePointSourceToExternalContourDistance),
805962034 => Ok(Dicom_Tags::SourceToExternalContourDistance),
805962035 => Ok(Dicom_Tags::ExternalContourEntryPoint),
805962036 => Ok(Dicom_Tags::CumulativeMetersetWeight),
805962048 => Ok(Dicom_Tags::TableTopPitchAngle),
805962050 => Ok(Dicom_Tags::TableTopPitchRotationDirection),
805962052 => Ok(Dicom_Tags::TableTopRollAngle),
805962054 => Ok(Dicom_Tags::TableTopRollRotationDirection),
805962056 => Ok(Dicom_Tags::HeadFixationAngle),
805962058 => Ok(Dicom_Tags::GantryPitchAngle),
805962060 => Ok(Dicom_Tags::GantryPitchRotationDirection),
805962062 => Ok(Dicom_Tags::GantryPitchAngleTolerance),
805962064 => Ok(Dicom_Tags::FixationEye),
805962065 => Ok(Dicom_Tags::ChairHeadFramePosition),
805962066 => Ok(Dicom_Tags::HeadFixationAngleTolerance),
805962067 => Ok(Dicom_Tags::ChairHeadFramePositionTolerance),
805962068 => Ok(Dicom_Tags::FixationLightAzimuthalAngleTolerance),
805962069 => Ok(Dicom_Tags::FixationLightPolarAngleTolerance),
805962112 => Ok(Dicom_Tags::PatientSetupSequence),
805962114 => Ok(Dicom_Tags::PatientSetupNumber),
805962115 => Ok(Dicom_Tags::PatientSetupLabel),
805962116 => Ok(Dicom_Tags::PatientAdditionalPosition),
805962128 => Ok(Dicom_Tags::FixationDeviceSequence),
805962130 => Ok(Dicom_Tags::FixationDeviceType),
805962132 => Ok(Dicom_Tags::FixationDeviceLabel),
805962134 => Ok(Dicom_Tags::FixationDeviceDescription),
805962136 => Ok(Dicom_Tags::FixationDevicePosition),
805962137 => Ok(Dicom_Tags::FixationDevicePitchAngle),
805962138 => Ok(Dicom_Tags::FixationDeviceRollAngle),
805962144 => Ok(Dicom_Tags::ShieldingDeviceSequence),
805962146 => Ok(Dicom_Tags::ShieldingDeviceType),
805962148 => Ok(Dicom_Tags::ShieldingDeviceLabel),
805962150 => Ok(Dicom_Tags::ShieldingDeviceDescription),
805962152 => Ok(Dicom_Tags::ShieldingDevicePosition),
805962160 => Ok(Dicom_Tags::SetupTechnique),
805962162 => Ok(Dicom_Tags::SetupTechniqueDescription),
805962164 => Ok(Dicom_Tags::SetupDeviceSequence),
805962166 => Ok(Dicom_Tags::SetupDeviceType),
805962168 => Ok(Dicom_Tags::SetupDeviceLabel),
805962170 => Ok(Dicom_Tags::SetupDeviceDescription),
805962172 => Ok(Dicom_Tags::SetupDeviceParameter),
805962192 => Ok(Dicom_Tags::SetupReferenceDescription),
805962194 => Ok(Dicom_Tags::TableTopVerticalSetupDisplacement),
805962196 => Ok(Dicom_Tags::TableTopLongitudinalSetupDisplacement),
805962198 => Ok(Dicom_Tags::TableTopLateralSetupDisplacement),
805962240 => Ok(Dicom_Tags::BrachyTreatmentTechnique),
805962242 => Ok(Dicom_Tags::BrachyTreatmentType),
805962246 => Ok(Dicom_Tags::TreatmentMachineSequence),
805962256 => Ok(Dicom_Tags::SourceSequence),
805962258 => Ok(Dicom_Tags::SourceNumber),
805962260 => Ok(Dicom_Tags::SourceType),
805962262 => Ok(Dicom_Tags::SourceManufacturer),
805962264 => Ok(Dicom_Tags::ActiveSourceDiameter),
805962266 => Ok(Dicom_Tags::ActiveSourceLength),
805962267 => Ok(Dicom_Tags::SourceModelId),
805962268 => Ok(Dicom_Tags::SourceDescription),
805962274 => Ok(Dicom_Tags::SourceEncapsulationNominalThickness),
805962276 => Ok(Dicom_Tags::SourceEncapsulationNominalTransmission),
805962278 => Ok(Dicom_Tags::SourceIsotopeName),
805962280 => Ok(Dicom_Tags::SourceIsotopeHalfLife),
805962281 => Ok(Dicom_Tags::SourceStrengthUnits),
805962282 => Ok(Dicom_Tags::ReferenceAirKermaRate),
805962283 => Ok(Dicom_Tags::SourceStrength),
805962284 => Ok(Dicom_Tags::SourceStrengthReferenceDate),
805962286 => Ok(Dicom_Tags::SourceStrengthReferenceTime),
805962288 => Ok(Dicom_Tags::ApplicationSetupSequence),
805962290 => Ok(Dicom_Tags::ApplicationSetupType),
805962292 => Ok(Dicom_Tags::ApplicationSetupNumber),
805962294 => Ok(Dicom_Tags::ApplicationSetupName),
805962296 => Ok(Dicom_Tags::ApplicationSetupManufacturer),
805962304 => Ok(Dicom_Tags::TemplateNumber),
805962306 => Ok(Dicom_Tags::TemplateType),
805962308 => Ok(Dicom_Tags::TemplateName),
805962320 => Ok(Dicom_Tags::TotalReferenceAirKerma),
805962336 => Ok(Dicom_Tags::BrachyAccessoryDeviceSequence),
805962338 => Ok(Dicom_Tags::BrachyAccessoryDeviceNumber),
805962339 => Ok(Dicom_Tags::BrachyAccessoryDeviceId),
805962340 => Ok(Dicom_Tags::BrachyAccessoryDeviceType),
805962342 => Ok(Dicom_Tags::BrachyAccessoryDeviceName),
805962346 => Ok(Dicom_Tags::BrachyAccessoryDeviceNominalThickness),
805962348 => Ok(Dicom_Tags::BrachyAccessoryDeviceNominalTransmission),
805962368 => Ok(Dicom_Tags::ChannelSequence),
805962370 => Ok(Dicom_Tags::ChannelNumber),
805962372 => Ok(Dicom_Tags::ChannelLength),
805962374 => Ok(Dicom_Tags::ChannelTotalTime),
805962376 => Ok(Dicom_Tags::SourceMovementType),
805962378 => Ok(Dicom_Tags::NumberOfPulses),
805962380 => Ok(Dicom_Tags::PulseRepetitionInterval),
805962384 => Ok(Dicom_Tags::SourceApplicatorNumber),
805962385 => Ok(Dicom_Tags::SourceApplicatorId),
805962386 => Ok(Dicom_Tags::SourceApplicatorType),
805962388 => Ok(Dicom_Tags::SourceApplicatorName),
805962390 => Ok(Dicom_Tags::SourceApplicatorLength),
805962392 => Ok(Dicom_Tags::SourceApplicatorManufacturer),
805962396 => Ok(Dicom_Tags::SourceApplicatorWallNominalThickness),
805962398 => Ok(Dicom_Tags::SourceApplicatorWallNominalTransmission),
805962400 => Ok(Dicom_Tags::SourceApplicatorStepSize),
805962402 => Ok(Dicom_Tags::TransferTubeNumber),
805962404 => Ok(Dicom_Tags::TransferTubeLength),
805962416 => Ok(Dicom_Tags::ChannelShieldSequence),
805962418 => Ok(Dicom_Tags::ChannelShieldNumber),
805962419 => Ok(Dicom_Tags::ChannelShieldId),
805962420 => Ok(Dicom_Tags::ChannelShieldName),
805962424 => Ok(Dicom_Tags::ChannelShieldNominalThickness),
805962426 => Ok(Dicom_Tags::ChannelShieldNominalTransmission),
805962440 => Ok(Dicom_Tags::FinalCumulativeTimeWeight),
805962448 => Ok(Dicom_Tags::BrachyControlPointSequence),
805962450 => Ok(Dicom_Tags::ControlPointRelativePosition),
805962452 => Ok(Dicom_Tags::ControlPoint3dPosition),
805962454 => Ok(Dicom_Tags::CumulativeTimeWeight),
805962464 => Ok(Dicom_Tags::CompensatorDivergence),
805962465 => Ok(Dicom_Tags::CompensatorMountingPosition),
805962466 => Ok(Dicom_Tags::SourceToCompensatorDistance),
805962467 => Ok(Dicom_Tags::TotalCompensatorTrayWaterEquivalentThickness),
805962468 => Ok(Dicom_Tags::IsocenterToCompensatorTrayDistance),
805962469 => Ok(Dicom_Tags::CompensatorColumnOffset),
805962470 => Ok(Dicom_Tags::IsocenterToCompensatorDistances),
805962471 => Ok(Dicom_Tags::CompensatorRelativeStoppingPowerRatio),
805962472 => Ok(Dicom_Tags::CompensatorMillingToolDiameter),
805962474 => Ok(Dicom_Tags::IonRangeCompensatorSequence),
805962475 => Ok(Dicom_Tags::CompensatorDescription),
805962498 => Ok(Dicom_Tags::RadiationMassNumber),
805962500 => Ok(Dicom_Tags::RadiationAtomicNumber),
805962502 => Ok(Dicom_Tags::RadiationChargeState),
805962504 => Ok(Dicom_Tags::ScanMode),
805962505 => Ok(Dicom_Tags::ModulatedScanModeType),
805962506 => Ok(Dicom_Tags::VirtualSourceAxisDistances),
805962508 => Ok(Dicom_Tags::SnoutSequence),
805962509 => Ok(Dicom_Tags::SnoutPosition),
805962511 => Ok(Dicom_Tags::SnoutId),
805962514 => Ok(Dicom_Tags::NumberOfRangeShifters),
805962516 => Ok(Dicom_Tags::RangeShifterSequence),
805962518 => Ok(Dicom_Tags::RangeShifterNumber),
805962520 => Ok(Dicom_Tags::RangeShifterId),
805962528 => Ok(Dicom_Tags::RangeShifterType),
805962530 => Ok(Dicom_Tags::RangeShifterDescription),
805962544 => Ok(Dicom_Tags::NumberOfLateralSpreadingDevices),
805962546 => Ok(Dicom_Tags::LateralSpreadingDeviceSequence),
805962548 => Ok(Dicom_Tags::LateralSpreadingDeviceNumber),
805962550 => Ok(Dicom_Tags::LateralSpreadingDeviceId),
805962552 => Ok(Dicom_Tags::LateralSpreadingDeviceType),
805962554 => Ok(Dicom_Tags::LateralSpreadingDeviceDescription),
805962556 => Ok(Dicom_Tags::LateralSpreadingDeviceWaterEquivalentThickness),
805962560 => Ok(Dicom_Tags::NumberOfRangeModulators),
805962562 => Ok(Dicom_Tags::RangeModulatorSequence),
805962564 => Ok(Dicom_Tags::RangeModulatorNumber),
805962566 => Ok(Dicom_Tags::RangeModulatorId),
805962568 => Ok(Dicom_Tags::RangeModulatorType),
805962570 => Ok(Dicom_Tags::RangeModulatorDescription),
805962572 => Ok(Dicom_Tags::BeamCurrentModulationId),
805962576 => Ok(Dicom_Tags::PatientSupportType),
805962578 => Ok(Dicom_Tags::PatientSupportId),
805962580 => Ok(Dicom_Tags::PatientSupportAccessoryCode),
805962581 => Ok(Dicom_Tags::TrayAccessoryCode),
805962582 => Ok(Dicom_Tags::FixationLightAzimuthalAngle),
805962584 => Ok(Dicom_Tags::FixationLightPolarAngle),
805962586 => Ok(Dicom_Tags::MetersetRate),
805962592 => Ok(Dicom_Tags::RangeShifterSettingsSequence),
805962594 => Ok(Dicom_Tags::RangeShifterSetting),
805962596 => Ok(Dicom_Tags::IsocenterToRangeShifterDistance),
805962598 => Ok(Dicom_Tags::RangeShifterWaterEquivalentThickness),
805962608 => Ok(Dicom_Tags::LateralSpreadingDeviceSettingsSequence),
805962610 => Ok(Dicom_Tags::LateralSpreadingDeviceSetting),
805962612 => Ok(Dicom_Tags::IsocenterToLateralSpreadingDeviceDistance),
805962624 => Ok(Dicom_Tags::RangeModulatorSettingsSequence),
805962626 => Ok(Dicom_Tags::RangeModulatorGatingStartValue),
805962628 => Ok(Dicom_Tags::RangeModulatorGatingStopValue),
805962630 => Ok(Dicom_Tags::RangeModulatorGatingStartWaterEquivalentThickness),
805962632 => Ok(Dicom_Tags::RangeModulatorGatingStopWaterEquivalentThickness),
805962634 => Ok(Dicom_Tags::IsocenterToRangeModulatorDistance),
805962640 => Ok(Dicom_Tags::ScanSpotTuneId),
805962641 => Ok(Dicom_Tags::ScanSpotPrescribedIndices),
805962642 => Ok(Dicom_Tags::NumberOfScanSpotPositions),
805962643 => Ok(Dicom_Tags::ScanSpotReordered),
805962644 => Ok(Dicom_Tags::ScanSpotPositionMap),
805962645 => Ok(Dicom_Tags::ScanSpotReorderingAllowed),
805962646 => Ok(Dicom_Tags::ScanSpotMetersetWeights),
805962648 => Ok(Dicom_Tags::ScanningSpotSize),
805962650 => Ok(Dicom_Tags::NumberOfPaintings),
805962656 => Ok(Dicom_Tags::IonToleranceTableSequence),
805962658 => Ok(Dicom_Tags::IonBeamSequence),
805962660 => Ok(Dicom_Tags::IonBeamLimitingDeviceSequence),
805962662 => Ok(Dicom_Tags::IonBlockSequence),
805962664 => Ok(Dicom_Tags::IonControlPointSequence),
805962666 => Ok(Dicom_Tags::IonWedgeSequence),
805962668 => Ok(Dicom_Tags::IonWedgePositionSequence),
805962753 => Ok(Dicom_Tags::ReferencedSetupImageSequence),
805962754 => Ok(Dicom_Tags::SetupImageComment),
805962768 => Ok(Dicom_Tags::MotionSynchronizationSequence),
805962770 => Ok(Dicom_Tags::ControlPointOrientation),
805962784 => Ok(Dicom_Tags::GeneralAccessorySequence),
805962785 => Ok(Dicom_Tags::GeneralAccessoryId),
805962786 => Ok(Dicom_Tags::GeneralAccessoryDescription),
805962787 => Ok(Dicom_Tags::GeneralAccessoryType),
805962788 => Ok(Dicom_Tags::GeneralAccessoryNumber),
805962789 => Ok(Dicom_Tags::SourceToGeneralAccessoryDistance),
805962801 => Ok(Dicom_Tags::ApplicatorGeometrySequence),
805962802 => Ok(Dicom_Tags::ApplicatorApertureShape),
805962803 => Ok(Dicom_Tags::ApplicatorOpening),
805962804 => Ok(Dicom_Tags::ApplicatorOpeningX),
805962805 => Ok(Dicom_Tags::ApplicatorOpeningY),
805962806 => Ok(Dicom_Tags::SourceToApplicatorMountingPositionDistance),
805962816 => Ok(Dicom_Tags::NumberOfBlockSlabItems),
805962817 => Ok(Dicom_Tags::BlockSlabSequence),
805962818 => Ok(Dicom_Tags::BlockSlabThickness),
805962819 => Ok(Dicom_Tags::BlockSlabNumber),
805962832 => Ok(Dicom_Tags::DeviceMotionControlSequence),
805962833 => Ok(Dicom_Tags::DeviceMotionExecutionMode),
805962834 => Ok(Dicom_Tags::DeviceMotionObservationMode),
805962835 => Ok(Dicom_Tags::DeviceMotionParameterCodeSequence),
805963009 => Ok(Dicom_Tags::DistalDepthFraction),
805963010 => Ok(Dicom_Tags::DistalDepth),
805963011 => Ok(Dicom_Tags::NominalRangeModulationFractions),
805963012 => Ok(Dicom_Tags::NominalRangeModulatedRegionDepths),
805963013 => Ok(Dicom_Tags::DepthDoseParametersSequence),
805963014 => Ok(Dicom_Tags::DeliveredDepthDoseParametersSequence),
805963015 => Ok(Dicom_Tags::DeliveredDistalDepthFraction),
805963016 => Ok(Dicom_Tags::DeliveredDistalDepth),
805963017 => Ok(Dicom_Tags::DeliveredNominalRangeModulationFractions),
805963024 => Ok(Dicom_Tags::DeliveredNominalRangeModulatedRegionDepths),
805963025 => Ok(Dicom_Tags::DeliveredReferenceDoseDefinition),
805963026 => Ok(Dicom_Tags::ReferenceDoseDefinition),
806092802 => Ok(Dicom_Tags::ReferencedRtPlanSequence),
806092804 => Ok(Dicom_Tags::ReferencedBeamSequence),
806092806 => Ok(Dicom_Tags::ReferencedBeamNumber),
806092807 => Ok(Dicom_Tags::ReferencedReferenceImageNumber),
806092808 => Ok(Dicom_Tags::StartCumulativeMetersetWeight),
806092809 => Ok(Dicom_Tags::EndCumulativeMetersetWeight),
806092810 => Ok(Dicom_Tags::ReferencedBrachyApplicationSetupSequence),
806092812 => Ok(Dicom_Tags::ReferencedBrachyApplicationSetupNumber),
806092814 => Ok(Dicom_Tags::ReferencedSourceNumber),
806092832 => Ok(Dicom_Tags::ReferencedFractionGroupSequence),
806092834 => Ok(Dicom_Tags::ReferencedFractionGroupNumber),
806092864 => Ok(Dicom_Tags::ReferencedVerificationImageSequence),
806092866 => Ok(Dicom_Tags::ReferencedReferenceImageSequence),
806092880 => Ok(Dicom_Tags::ReferencedDoseReferenceSequence),
806092881 => Ok(Dicom_Tags::ReferencedDoseReferenceNumber),
806092885 => Ok(Dicom_Tags::BrachyReferencedDoseReferenceSequence),
806092896 => Ok(Dicom_Tags::ReferencedStructureSetSequence),
806092906 => Ok(Dicom_Tags::ReferencedPatientSetupNumber),
806092928 => Ok(Dicom_Tags::ReferencedDoseSequence),
806092960 => Ok(Dicom_Tags::ReferencedToleranceTableNumber),
806092976 => Ok(Dicom_Tags::ReferencedBolusSequence),
806092992 => Ok(Dicom_Tags::ReferencedWedgeNumber),
806093008 => Ok(Dicom_Tags::ReferencedCompensatorNumber),
806093024 => Ok(Dicom_Tags::ReferencedBlockNumber),
806093040 => Ok(Dicom_Tags::ReferencedControlPointIndex),
806093042 => Ok(Dicom_Tags::ReferencedControlPointSequence),
806093044 => Ok(Dicom_Tags::ReferencedStartControlPointIndex),
806093046 => Ok(Dicom_Tags::ReferencedStopControlPointIndex),
806093056 => Ok(Dicom_Tags::ReferencedRangeShifterNumber),
806093058 => Ok(Dicom_Tags::ReferencedLateralSpreadingDeviceNumber),
806093060 => Ok(Dicom_Tags::ReferencedRangeModulatorNumber),
806093073 => Ok(Dicom_Tags::OmittedBeamTaskSequence),
806093074 => Ok(Dicom_Tags::ReasonForOmission),
806093075 => Ok(Dicom_Tags::ReasonForOmissionDescription),
806223874 => Ok(Dicom_Tags::ApprovalStatus),
806223876 => Ok(Dicom_Tags::ReviewDate),
806223877 => Ok(Dicom_Tags::ReviewTime),
806223880 => Ok(Dicom_Tags::ReviewerName),
1073741840 => Ok(Dicom_Tags::Arbitrary),
1073758208 => Ok(Dicom_Tags::TextComments),
1074266176 => Ok(Dicom_Tags::ResultsId),
1074266178 => Ok(Dicom_Tags::ResultsIdIssuer),
1074266192 => Ok(Dicom_Tags::ReferencedInterpretationSequence),
1074266367 => Ok(Dicom_Tags::ReportProductionStatusTrial),
1074266368 => Ok(Dicom_Tags::InterpretationRecordedDate),
1074266369 => Ok(Dicom_Tags::InterpretationRecordedTime),
1074266370 => Ok(Dicom_Tags::InterpretationRecorder),
1074266371 => Ok(Dicom_Tags::ReferenceToRecordedSound),
1074266376 => Ok(Dicom_Tags::InterpretationTranscriptionDate),
1074266377 => Ok(Dicom_Tags::InterpretationTranscriptionTime),
1074266378 => Ok(Dicom_Tags::InterpretationTranscriber),
1074266379 => Ok(Dicom_Tags::InterpretationText),
1074266380 => Ok(Dicom_Tags::InterpretationAuthor),
1074266385 => Ok(Dicom_Tags::InterpretationApproverSequence),
1074266386 => Ok(Dicom_Tags::InterpretationApprovalDate),
1074266387 => Ok(Dicom_Tags::InterpretationApprovalTime),
1074266388 => Ok(Dicom_Tags::PhysicianApprovingInterpretation),
1074266389 => Ok(Dicom_Tags::InterpretationDiagnosisDescription),
1074266391 => Ok(Dicom_Tags::InterpretationDiagnosisCodeSequence),
1074266392 => Ok(Dicom_Tags::ResultsDistributionListSequence),
1074266393 => Ok(Dicom_Tags::DistributionName),
1074266394 => Ok(Dicom_Tags::DistributionAddress),
1074266624 => Ok(Dicom_Tags::InterpretationId),
1074266626 => Ok(Dicom_Tags::InterpretationIdIssuer),
1074266640 => Ok(Dicom_Tags::InterpretationTypeId),
1074266642 => Ok(Dicom_Tags::InterpretationStatusId),
1074266880 => Ok(Dicom_Tags::Impressions),
1074282496 => Ok(Dicom_Tags::ResultsComments),
1074790401 => Ok(Dicom_Tags::LowEnergyDetectors),
1074790402 => Ok(Dicom_Tags::HighEnergyDetectors),
1074790404 => Ok(Dicom_Tags::DetectorGeometrySequence),
1074794497 => Ok(Dicom_Tags::ThreatRoiVoxelSequence),
1074794500 => Ok(Dicom_Tags::ThreatRoiBase),
1074794501 => Ok(Dicom_Tags::ThreatRoiExtents),
1074794502 => Ok(Dicom_Tags::ThreatRoiBitmap),
1074794503 => Ok(Dicom_Tags::RouteSegmentId),
1074794504 => Ok(Dicom_Tags::GantryType),
1074794505 => Ok(Dicom_Tags::OoiOwnerType),
1074794506 => Ok(Dicom_Tags::RouteSegmentSequence),
1074794512 => Ok(Dicom_Tags::PotentialThreatObjectId),
1074794513 => Ok(Dicom_Tags::ThreatSequence),
1074794514 => Ok(Dicom_Tags::ThreatCategory),
1074794515 => Ok(Dicom_Tags::ThreatCategoryDescription),
1074794516 => Ok(Dicom_Tags::AtdAbilityAssessment),
1074794517 => Ok(Dicom_Tags::AtdAssessmentFlag),
1074794518 => Ok(Dicom_Tags::AtdAssessmentProbability),
1074794519 => Ok(Dicom_Tags::Mass),
1074794520 => Ok(Dicom_Tags::Density),
1074794521 => Ok(Dicom_Tags::ZEffective),
1074794522 => Ok(Dicom_Tags::BoardingPassId),
1074794523 => Ok(Dicom_Tags::CenterOfMass),
1074794524 => Ok(Dicom_Tags::CenterOfPto),
1074794525 => Ok(Dicom_Tags::BoundingPolygon),
1074794526 => Ok(Dicom_Tags::RouteSegmentStartLocationId),
1074794527 => Ok(Dicom_Tags::RouteSegmentEndLocationId),
1074794528 => Ok(Dicom_Tags::RouteSegmentLocationIdType),
1074794529 => Ok(Dicom_Tags::AbortReason),
1074794531 => Ok(Dicom_Tags::VolumeOfPto),
1074794532 => Ok(Dicom_Tags::AbortFlag),
1074794533 => Ok(Dicom_Tags::RouteSegmentStartTime),
1074794534 => Ok(Dicom_Tags::RouteSegmentEndTime),
1074794535 => Ok(Dicom_Tags::TdrType),
1074794536 => Ok(Dicom_Tags::InternationalRouteSegment),
1074794537 => Ok(Dicom_Tags::ThreatDetectionAlgorithmAndVersion),
1074794538 => Ok(Dicom_Tags::AssignedLocation),
1074794539 => Ok(Dicom_Tags::AlarmDecisionTime),
1074794545 => Ok(Dicom_Tags::AlarmDecision),
1074794547 => Ok(Dicom_Tags::NumberOfTotalObjects),
1074794548 => Ok(Dicom_Tags::NumberOfAlarmObjects),
1074794551 => Ok(Dicom_Tags::PtoRepresentationSequence),
1074794552 => Ok(Dicom_Tags::AtdAssessmentSequence),
1074794553 => Ok(Dicom_Tags::TipType),
1074794554 => Ok(Dicom_Tags::Version),
1074794561 => Ok(Dicom_Tags::OoiOwnerCreationTime),
1074794562 => Ok(Dicom_Tags::OoiType),
1074794563 => Ok(Dicom_Tags::OoiSize),
1074794564 => Ok(Dicom_Tags::AcquisitionStatus),
1074794565 => Ok(Dicom_Tags::BasisMaterialsCodeSequence),
1074794566 => Ok(Dicom_Tags::PhantomType),
1074794567 => Ok(Dicom_Tags::OoiOwnerSequence),
1074794568 => Ok(Dicom_Tags::ScanType),
1074794577 => Ok(Dicom_Tags::ItineraryId),
1074794578 => Ok(Dicom_Tags::ItineraryIdType),
1074794579 => Ok(Dicom_Tags::ItineraryIdAssigningAuthority),
1074794580 => Ok(Dicom_Tags::RouteId),
1074794581 => Ok(Dicom_Tags::RouteIdAssigningAuthority),
1074794582 => Ok(Dicom_Tags::InboundArrivalType),
1074794584 => Ok(Dicom_Tags::CarrierId),
1074794585 => Ok(Dicom_Tags::CarrierIdAssigningAuthority),
1074794592 => Ok(Dicom_Tags::SourceOrientation),
1074794593 => Ok(Dicom_Tags::SourcePosition),
1074794594 => Ok(Dicom_Tags::BeltHeight),
1074794596 => Ok(Dicom_Tags::AlgorithmRoutingCodeSequence),
1074794599 => Ok(Dicom_Tags::TransportClassification),
1074794600 => Ok(Dicom_Tags::OoiTypeDescriptor),
1074794601 => Ok(Dicom_Tags::TotalProcessingTime),
1074794604 => Ok(Dicom_Tags::DetectorCalibrationData),
1074794605 => Ok(Dicom_Tags::AdditionalScreeningPerformed),
1074794606 => Ok(Dicom_Tags::AdditionalInspectionSelectionCriteria),
1074794607 => Ok(Dicom_Tags::AdditionalInspectionMethodSequence),
1074794608 => Ok(Dicom_Tags::AitDeviceType),
1074794609 => Ok(Dicom_Tags::QrMeasurementsSequence),
1074794610 => Ok(Dicom_Tags::TargetMaterialSequence),
1074794611 => Ok(Dicom_Tags::SnrThreshold),
1074794613 => Ok(Dicom_Tags::ImageScaleRepresentation),
1074794614 => Ok(Dicom_Tags::ReferencedPtoSequence),
1074794615 => Ok(Dicom_Tags::ReferencedTdrInstanceSequence),
1074794616 => Ok(Dicom_Tags::PtoLocationDescription),
1074794617 => Ok(Dicom_Tags::AnomalyLocatorIndicatorSequence),
1074794618 => Ok(Dicom_Tags::AnomalyLocatorIndicator),
1074794619 => Ok(Dicom_Tags::PtoRegionSequence),
1074794620 => Ok(Dicom_Tags::InspectionSelectionCriteria),
1074794621 => Ok(Dicom_Tags::SecondaryInspectionMethodSequence),
1074794622 => Ok(Dicom_Tags::PrcsToRcsOrientation),
1342046209 => Ok(Dicom_Tags::MacParametersSequence),
1375769129 => Ok(Dicom_Tags::SharedFunctionalGroupsSequence),
1375769136 => Ok(Dicom_Tags::PerFrameFunctionalGroupsSequence),
1409286400 => Ok(Dicom_Tags::WaveformSequence),
1409286416 => Ok(Dicom_Tags::ChannelMinimumValue),
1409286418 => Ok(Dicom_Tags::ChannelMaximumValue),
1409290244 => Ok(Dicom_Tags::WaveformBitsAllocated),
1409290246 => Ok(Dicom_Tags::WaveformSampleInterpretation),
1409290250 => Ok(Dicom_Tags::WaveformPaddingValue),
1409290256 => Ok(Dicom_Tags::WaveformData),
1442840592 => Ok(Dicom_Tags::FirstOrderPhaseCorrectionAngle),
1442840608 => Ok(Dicom_Tags::SpectroscopyData),
2145386504 => Ok(Dicom_Tags::FloatPixelData),
2145386505 => Ok(Dicom_Tags::DoubleFloatPixelData),
2145386512 => Ok(Dicom_Tags::PixelData),
2145386528 => Ok(Dicom_Tags::CoefficientsSdvn),
2145386544 => Ok(Dicom_Tags::CoefficientsSdhn),
2145386560 => Ok(Dicom_Tags::CoefficientsSddn),
4294639610 => Ok(Dicom_Tags::DigitalSignaturesSequence),
4294770684 => Ok(Dicom_Tags::DataSetTrailingPadding),
4294893568 => Ok(Dicom_Tags::Item),
4294893581 => Ok(Dicom_Tags::ItemDelimitationItem),
4294893789 => Ok(Dicom_Tags::SequenceDelimitationItem),
_ => Ok(Dicom_Tags::Unknown(flag)),
}
}
}
impl From<&Dicom_Tags> for i64 {
fn from(v: &Dicom_Tags) -> Self {
match *v {
Dicom_Tags::FileMetaInformationGroupLength => 131072,
Dicom_Tags::FileMetaInformationVersion => 131073,
Dicom_Tags::MediaStorageSopClassUid => 131074,
Dicom_Tags::MediaStorageSopInstanceUid => 131075,
Dicom_Tags::TransferSyntaxUid => 131088,
Dicom_Tags::ImplementationClassUid => 131090,
Dicom_Tags::ImplementationVersionName => 131091,
Dicom_Tags::SourceApplicationEntityTitle => 131094,
Dicom_Tags::SendingApplicationEntityTitle => 131095,
Dicom_Tags::ReceivingApplicationEntityTitle => 131096,
Dicom_Tags::PrivateInformationCreatorUid => 131328,
Dicom_Tags::PrivateInformation => 131330,
Dicom_Tags::FileSetId => 266544,
Dicom_Tags::FileSetDescriptorFileId => 266561,
Dicom_Tags::SpecificCharacterSetOfFileSetDescriptorFile => 266562,
Dicom_Tags::OffsetOfTheFirstDirectoryRecordOfTheRootDirectoryEntity => 266752,
Dicom_Tags::OffsetOfTheLastDirectoryRecordOfTheRootDirectoryEntity => 266754,
Dicom_Tags::FileSetConsistencyFlag => 266770,
Dicom_Tags::DirectoryRecordSequence => 266784,
Dicom_Tags::OffsetOfTheNextDirectoryRecord => 267264,
Dicom_Tags::RecordInUseFlag => 267280,
Dicom_Tags::OffsetOfReferencedLowerLevelDirectoryEntity => 267296,
Dicom_Tags::DirectoryRecordType => 267312,
Dicom_Tags::PrivateRecordUid => 267314,
Dicom_Tags::ReferencedFileId => 267520,
Dicom_Tags::MrdrDirectoryRecordOffset => 267524,
Dicom_Tags::ReferencedSopClassUidInFile => 267536,
Dicom_Tags::ReferencedSopInstanceUidInFile => 267537,
Dicom_Tags::ReferencedTransferSyntaxUidInFile => 267538,
Dicom_Tags::ReferencedRelatedGeneralSopClassUidInFile => 267546,
Dicom_Tags::NumberOfReferences => 267776,
Dicom_Tags::LengthToEnd => 524289,
Dicom_Tags::SpecificCharacterSet => 524293,
Dicom_Tags::LanguageCodeSequence => 524294,
Dicom_Tags::ImageType => 524296,
Dicom_Tags::RecognitionCode => 524304,
Dicom_Tags::InstanceCreationDate => 524306,
Dicom_Tags::InstanceCreationTime => 524307,
Dicom_Tags::InstanceCreatorUid => 524308,
Dicom_Tags::InstanceCoercionDatetime => 524309,
Dicom_Tags::SopClassUid => 524310,
Dicom_Tags::SopInstanceUid => 524312,
Dicom_Tags::RelatedGeneralSopClassUid => 524314,
Dicom_Tags::OriginalSpecializedSopClassUid => 524315,
Dicom_Tags::StudyDate => 524320,
Dicom_Tags::SeriesDate => 524321,
Dicom_Tags::AcquisitionDate => 524322,
Dicom_Tags::ContentDate => 524323,
Dicom_Tags::OverlayDate => 524324,
Dicom_Tags::CurveDate => 524325,
Dicom_Tags::AcquisitionDatetime => 524330,
Dicom_Tags::StudyTime => 524336,
Dicom_Tags::SeriesTime => 524337,
Dicom_Tags::AcquisitionTime => 524338,
Dicom_Tags::ContentTime => 524339,
Dicom_Tags::OverlayTime => 524340,
Dicom_Tags::CurveTime => 524341,
Dicom_Tags::DataSetType => 524352,
Dicom_Tags::DataSetSubtype => 524353,
Dicom_Tags::NuclearMedicineSeriesType => 524354,
Dicom_Tags::AccessionNumber => 524368,
Dicom_Tags::IssuerOfAccessionNumberSequence => 524369,
Dicom_Tags::QueryRetrieveLevel => 524370,
Dicom_Tags::QueryRetrieveView => 524371,
Dicom_Tags::RetrieveAeTitle => 524372,
Dicom_Tags::StationAeTitle => 524373,
Dicom_Tags::InstanceAvailability => 524374,
Dicom_Tags::FailedSopInstanceUidList => 524376,
Dicom_Tags::Modality => 524384,
Dicom_Tags::ModalitiesInStudy => 524385,
Dicom_Tags::SopClassesInStudy => 524386,
Dicom_Tags::ConversionType => 524388,
Dicom_Tags::PresentationIntentType => 524392,
Dicom_Tags::Manufacturer => 524400,
Dicom_Tags::InstitutionName => 524416,
Dicom_Tags::InstitutionAddress => 524417,
Dicom_Tags::InstitutionCodeSequence => 524418,
Dicom_Tags::ReferringPhysicianSName => 524432,
Dicom_Tags::ReferringPhysicianSAddress => 524434,
Dicom_Tags::ReferringPhysicianSTelephoneNumbers => 524436,
Dicom_Tags::ReferringPhysicianIdentificationSequence => 524438,
Dicom_Tags::ConsultingPhysicianSName => 524444,
Dicom_Tags::ConsultingPhysicianIdentificationSequence => 524445,
Dicom_Tags::CodeValue => 524544,
Dicom_Tags::ExtendedCodeValue => 524545,
Dicom_Tags::CodingSchemeDesignator => 524546,
Dicom_Tags::CodingSchemeVersion => 524547,
Dicom_Tags::CodeMeaning => 524548,
Dicom_Tags::MappingResource => 524549,
Dicom_Tags::ContextGroupVersion => 524550,
Dicom_Tags::ContextGroupLocalVersion => 524551,
Dicom_Tags::ExtendedCodeMeaning => 524552,
Dicom_Tags::ContextGroupExtensionFlag => 524555,
Dicom_Tags::CodingSchemeUid => 524556,
Dicom_Tags::ContextGroupExtensionCreatorUid => 524557,
Dicom_Tags::ContextIdentifier => 524559,
Dicom_Tags::CodingSchemeIdentificationSequence => 524560,
Dicom_Tags::CodingSchemeRegistry => 524562,
Dicom_Tags::CodingSchemeExternalId => 524564,
Dicom_Tags::CodingSchemeName => 524565,
Dicom_Tags::CodingSchemeResponsibleOrganization => 524566,
Dicom_Tags::ContextUid => 524567,
Dicom_Tags::MappingResourceUid => 524568,
Dicom_Tags::LongCodeValue => 524569,
Dicom_Tags::UrnCodeValue => 524576,
Dicom_Tags::EquivalentCodeSequence => 524577,
Dicom_Tags::MappingResourceName => 524578,
Dicom_Tags::ContextGroupIdentificationSequence => 524579,
Dicom_Tags::MappingResourceIdentificationSequence => 524580,
Dicom_Tags::TimezoneOffsetFromUtc => 524801,
Dicom_Tags::PrivateDataElementCharacteristicsSequence => 525056,
Dicom_Tags::PrivateGroupReference => 525057,
Dicom_Tags::PrivateCreatorReference => 525058,
Dicom_Tags::BlockIdentifyingInformationStatus => 525059,
Dicom_Tags::NonidentifyingPrivateElements => 525060,
Dicom_Tags::DeidentificationActionSequence => 525061,
Dicom_Tags::IdentifyingPrivateElements => 525062,
Dicom_Tags::DeidentificationAction => 525063,
Dicom_Tags::NetworkId => 528384,
Dicom_Tags::StationName => 528400,
Dicom_Tags::StudyDescription => 528432,
Dicom_Tags::ProcedureCodeSequence => 528434,
Dicom_Tags::SeriesDescription => 528446,
Dicom_Tags::SeriesDescriptionCodeSequence => 528447,
Dicom_Tags::InstitutionalDepartmentName => 528448,
Dicom_Tags::PhysicianSOfRecord => 528456,
Dicom_Tags::PhysicianSOfRecordIdentificationSequence => 528457,
Dicom_Tags::PerformingPhysicianSName => 528464,
Dicom_Tags::PerformingPhysicianIdentificationSequence => 528466,
Dicom_Tags::NameOfPhysicianSReadingStudy => 528480,
Dicom_Tags::PhysicianSReadingStudyIdentificationSequence => 528482,
Dicom_Tags::OperatorsName => 528496,
Dicom_Tags::OperatorIdentificationSequence => 528498,
Dicom_Tags::AdmittingDiagnosesDescription => 528512,
Dicom_Tags::AdmittingDiagnosesCodeSequence => 528516,
Dicom_Tags::ManufacturerSModelName => 528528,
Dicom_Tags::ReferencedResultsSequence => 528640,
Dicom_Tags::ReferencedStudySequence => 528656,
Dicom_Tags::ReferencedPerformedProcedureStepSequence => 528657,
Dicom_Tags::ReferencedSeriesSequence => 528661,
Dicom_Tags::ReferencedPatientSequence => 528672,
Dicom_Tags::ReferencedVisitSequence => 528677,
Dicom_Tags::ReferencedOverlaySequence => 528688,
Dicom_Tags::ReferencedStereometricInstanceSequence => 528692,
Dicom_Tags::ReferencedWaveformSequence => 528698,
Dicom_Tags::ReferencedImageSequence => 528704,
Dicom_Tags::ReferencedCurveSequence => 528709,
Dicom_Tags::ReferencedInstanceSequence => 528714,
Dicom_Tags::ReferencedRealWorldValueMappingInstanceSequence => 528715,
Dicom_Tags::ReferencedSopClassUid => 528720,
Dicom_Tags::ReferencedSopInstanceUid => 528725,
Dicom_Tags::SopClassesSupported => 528730,
Dicom_Tags::ReferencedFrameNumber => 528736,
Dicom_Tags::SimpleFrameList => 528737,
Dicom_Tags::CalculatedFrameList => 528738,
Dicom_Tags::TimeRange => 528739,
Dicom_Tags::FrameExtractionSequence => 528740,
Dicom_Tags::MultiFrameSourceSopInstanceUid => 528743,
Dicom_Tags::RetrieveUrl => 528784,
Dicom_Tags::TransactionUid => 528789,
Dicom_Tags::WarningReason => 528790,
Dicom_Tags::FailureReason => 528791,
Dicom_Tags::FailedSopSequence => 528792,
Dicom_Tags::ReferencedSopSequence => 528793,
Dicom_Tags::OtherFailuresSequence => 528794,
Dicom_Tags::StudiesContainingOtherReferencedInstancesSequence => 528896,
Dicom_Tags::RelatedSeriesSequence => 528976,
Dicom_Tags::LossyImageCompressionRetired => 532752,
Dicom_Tags::DerivationDescription => 532753,
Dicom_Tags::SourceImageSequence => 532754,
Dicom_Tags::StageName => 532768,
Dicom_Tags::StageNumber => 532770,
Dicom_Tags::NumberOfStages => 532772,
Dicom_Tags::ViewName => 532775,
Dicom_Tags::ViewNumber => 532776,
Dicom_Tags::NumberOfEventTimers => 532777,
Dicom_Tags::NumberOfViewsInStage => 532778,
Dicom_Tags::EventElapsedTimeS => 532784,
Dicom_Tags::EventTimerNameS => 532786,
Dicom_Tags::EventTimerSequence => 532787,
Dicom_Tags::EventTimeOffset => 532788,
Dicom_Tags::EventCodeSequence => 532789,
Dicom_Tags::StartTrim => 532802,
Dicom_Tags::StopTrim => 532803,
Dicom_Tags::RecommendedDisplayFrameRate => 532804,
Dicom_Tags::TransducerPosition => 532992,
Dicom_Tags::TransducerOrientation => 532996,
Dicom_Tags::AnatomicStructure => 533000,
Dicom_Tags::AnatomicRegionSequence => 533016,
Dicom_Tags::AnatomicRegionModifierSequence => 533024,
Dicom_Tags::PrimaryAnatomicStructureSequence => 533032,
Dicom_Tags::AnatomicStructureSpaceOrRegionSequence => 533033,
Dicom_Tags::PrimaryAnatomicStructureModifierSequence => 533040,
Dicom_Tags::TransducerPositionSequence => 533056,
Dicom_Tags::TransducerPositionModifierSequence => 533058,
Dicom_Tags::TransducerOrientationSequence => 533060,
Dicom_Tags::TransducerOrientationModifierSequence => 533062,
Dicom_Tags::AnatomicStructureSpaceOrRegionCodeSequenceTrial => 533073,
Dicom_Tags::AnatomicPortalOfEntranceCodeSequenceTrial => 533075,
Dicom_Tags::AnatomicApproachDirectionCodeSequenceTrial => 533077,
Dicom_Tags::AnatomicPerspectiveDescriptionTrial => 533078,
Dicom_Tags::AnatomicPerspectiveCodeSequenceTrial => 533079,
Dicom_Tags::AnatomicLocationOfExaminingInstrumentDescriptionTrial => 533080,
Dicom_Tags::AnatomicLocationOfExaminingInstrumentCodeSequenceTrial => 533081,
Dicom_Tags::AnatomicStructureSpaceOrRegionModifierCodeSequenceTrial => 533082,
Dicom_Tags::OnAxisBackgroundAnatomicStructureCodeSequenceTrial => 533084,
Dicom_Tags::AlternateRepresentationSequence => 536577,
Dicom_Tags::IrradiationEventUid => 536592,
Dicom_Tags::SourceIrradiationEventSequence => 536593,
Dicom_Tags::RadiopharmaceuticalAdministrationEventUid => 536594,
Dicom_Tags::IdentifyingComments => 540672,
Dicom_Tags::FrameType => 561159,
Dicom_Tags::ReferencedImageEvidenceSequence => 561298,
Dicom_Tags::ReferencedRawDataSequence => 561441,
Dicom_Tags::CreatorVersionUid => 561443,
Dicom_Tags::DerivationImageSequence => 561444,
Dicom_Tags::SourceImageEvidenceSequence => 561492,
Dicom_Tags::PixelPresentation => 561669,
Dicom_Tags::VolumetricProperties => 561670,
Dicom_Tags::VolumeBasedCalculationTechnique => 561671,
Dicom_Tags::ComplexImageComponent => 561672,
Dicom_Tags::AcquisitionContrast => 561673,
Dicom_Tags::DerivationCodeSequence => 561685,
Dicom_Tags::ReferencedPresentationStateSequence => 561719,
Dicom_Tags::ReferencedOtherPlaneSequence => 562192,
Dicom_Tags::FrameDisplaySequence => 562264,
Dicom_Tags::RecommendedDisplayFrameRateInFloat => 562265,
Dicom_Tags::SkipFrameRangeFlag => 562272,
Dicom_Tags::PatientSName => 1048592,
Dicom_Tags::PatientId => 1048608,
Dicom_Tags::IssuerOfPatientId => 1048609,
Dicom_Tags::TypeOfPatientId => 1048610,
Dicom_Tags::IssuerOfPatientIdQualifiersSequence => 1048612,
Dicom_Tags::SourcePatientGroupIdentificationSequence => 1048614,
Dicom_Tags::GroupOfPatientsIdentificationSequence => 1048615,
Dicom_Tags::SubjectRelativePositionInImage => 1048616,
Dicom_Tags::PatientSBirthDate => 1048624,
Dicom_Tags::PatientSBirthTime => 1048626,
Dicom_Tags::PatientSBirthDateInAlternativeCalendar => 1048627,
Dicom_Tags::PatientSDeathDateInAlternativeCalendar => 1048628,
Dicom_Tags::PatientSAlternativeCalendar => 1048629,
Dicom_Tags::PatientSSex => 1048640,
Dicom_Tags::PatientSInsurancePlanCodeSequence => 1048656,
Dicom_Tags::PatientSPrimaryLanguageCodeSequence => 1048833,
Dicom_Tags::PatientSPrimaryLanguageModifierCodeSequence => 1048834,
Dicom_Tags::QualityControlSubject => 1049088,
Dicom_Tags::QualityControlSubjectTypeCodeSequence => 1049089,
Dicom_Tags::StrainDescription => 1049106,
Dicom_Tags::StrainNomenclature => 1049107,
Dicom_Tags::StrainStockNumber => 1049108,
Dicom_Tags::StrainSourceRegistryCodeSequence => 1049109,
Dicom_Tags::StrainStockSequence => 1049110,
Dicom_Tags::StrainSource => 1049111,
Dicom_Tags::StrainAdditionalInformation => 1049112,
Dicom_Tags::StrainCodeSequence => 1049113,
Dicom_Tags::OtherPatientIds => 1052672,
Dicom_Tags::OtherPatientNames => 1052673,
Dicom_Tags::OtherPatientIdsSequence => 1052674,
Dicom_Tags::PatientSBirthName => 1052677,
Dicom_Tags::PatientSAge => 1052688,
Dicom_Tags::PatientSSize => 1052704,
Dicom_Tags::PatientSSizeCodeSequence => 1052705,
Dicom_Tags::PatientSWeight => 1052720,
Dicom_Tags::PatientSAddress => 1052736,
Dicom_Tags::InsurancePlanIdentification => 1052752,
Dicom_Tags::PatientSMotherSBirthName => 1052768,
Dicom_Tags::MilitaryRank => 1052800,
Dicom_Tags::BranchOfService => 1052801,
Dicom_Tags::MedicalRecordLocator => 1052816,
Dicom_Tags::ReferencedPatientPhotoSequence => 1052928,
Dicom_Tags::MedicalAlerts => 1056768,
Dicom_Tags::Allergies => 1057040,
Dicom_Tags::CountryOfResidence => 1057104,
Dicom_Tags::RegionOfResidence => 1057106,
Dicom_Tags::PatientSTelephoneNumbers => 1057108,
Dicom_Tags::PatientSTelecomInformation => 1057109,
Dicom_Tags::EthnicGroup => 1057120,
Dicom_Tags::Occupation => 1057152,
Dicom_Tags::SmokingStatus => 1057184,
Dicom_Tags::AdditionalPatientHistory => 1057200,
Dicom_Tags::PregnancyStatus => 1057216,
Dicom_Tags::LastMenstrualDate => 1057232,
Dicom_Tags::PatientSReligiousPreference => 1057264,
Dicom_Tags::PatientSpeciesDescription => 1057281,
Dicom_Tags::PatientSpeciesCodeSequence => 1057282,
Dicom_Tags::PatientSSexNeutered => 1057283,
Dicom_Tags::AnatomicalOrientationType => 1057296,
Dicom_Tags::PatientBreedDescription => 1057426,
Dicom_Tags::PatientBreedCodeSequence => 1057427,
Dicom_Tags::BreedRegistrationSequence => 1057428,
Dicom_Tags::BreedRegistrationNumber => 1057429,
Dicom_Tags::BreedRegistryCodeSequence => 1057430,
Dicom_Tags::ResponsiblePerson => 1057431,
Dicom_Tags::ResponsiblePersonRole => 1057432,
Dicom_Tags::ResponsibleOrganization => 1057433,
Dicom_Tags::PatientComments => 1064960,
Dicom_Tags::ExaminedBodyThickness => 1086513,
Dicom_Tags::ClinicalTrialSponsorName => 1179664,
Dicom_Tags::ClinicalTrialProtocolId => 1179680,
Dicom_Tags::ClinicalTrialProtocolName => 1179681,
Dicom_Tags::ClinicalTrialSiteId => 1179696,
Dicom_Tags::ClinicalTrialSiteName => 1179697,
Dicom_Tags::ClinicalTrialSubjectId => 1179712,
Dicom_Tags::ClinicalTrialSubjectReadingId => 1179714,
Dicom_Tags::ClinicalTrialTimePointId => 1179728,
Dicom_Tags::ClinicalTrialTimePointDescription => 1179729,
Dicom_Tags::ClinicalTrialCoordinatingCenterName => 1179744,
Dicom_Tags::PatientIdentityRemoved => 1179746,
Dicom_Tags::DeIdentificationMethod => 1179747,
Dicom_Tags::DeIdentificationMethodCodeSequence => 1179748,
Dicom_Tags::ClinicalTrialSeriesId => 1179761,
Dicom_Tags::ClinicalTrialSeriesDescription => 1179762,
Dicom_Tags::ClinicalTrialProtocolEthicsCommitteeName => 1179777,
Dicom_Tags::ClinicalTrialProtocolEthicsCommitteeApprovalNumber => 1179778,
Dicom_Tags::ConsentForClinicalTrialUseSequence => 1179779,
Dicom_Tags::DistributionType => 1179780,
Dicom_Tags::ConsentForDistributionFlag => 1179781,
Dicom_Tags::CadFileFormat => 1310755,
Dicom_Tags::ComponentReferenceSystem => 1310756,
Dicom_Tags::ComponentManufacturingProcedure => 1310757,
Dicom_Tags::ComponentManufacturer => 1310760,
Dicom_Tags::MaterialThickness => 1310768,
Dicom_Tags::MaterialPipeDiameter => 1310770,
Dicom_Tags::MaterialIsolationDiameter => 1310772,
Dicom_Tags::MaterialGrade => 1310786,
Dicom_Tags::MaterialPropertiesDescription => 1310788,
Dicom_Tags::MaterialPropertiesFileFormatRetired => 1310789,
Dicom_Tags::MaterialNotes => 1310790,
Dicom_Tags::ComponentShape => 1310800,
Dicom_Tags::CurvatureType => 1310802,
Dicom_Tags::OuterDiameter => 1310804,
Dicom_Tags::InnerDiameter => 1310806,
Dicom_Tags::ComponentWelderIds => 1310976,
Dicom_Tags::SecondaryApprovalStatus => 1310977,
Dicom_Tags::SecondaryReviewDate => 1310978,
Dicom_Tags::SecondaryReviewTime => 1310979,
Dicom_Tags::SecondaryReviewerName => 1310980,
Dicom_Tags::RepairId => 1310981,
Dicom_Tags::MultipleComponentApprovalSequence => 1310982,
Dicom_Tags::OtherApprovalStatus => 1310983,
Dicom_Tags::OtherSecondaryApprovalStatus => 1310984,
Dicom_Tags::ActualEnvironmentalConditions => 1314832,
Dicom_Tags::ExpiryDate => 1314848,
Dicom_Tags::EnvironmentalConditions => 1314880,
Dicom_Tags::EvaluatorSequence => 1318914,
Dicom_Tags::EvaluatorNumber => 1318916,
Dicom_Tags::EvaluatorName => 1318918,
Dicom_Tags::EvaluationAttempt => 1318920,
Dicom_Tags::IndicationSequence => 1318930,
Dicom_Tags::IndicationNumber => 1318932,
Dicom_Tags::IndicationLabel => 1318934,
Dicom_Tags::IndicationDescription => 1318936,
Dicom_Tags::IndicationType => 1318938,
Dicom_Tags::IndicationDisposition => 1318940,
Dicom_Tags::IndicationRoiSequence => 1318942,
Dicom_Tags::IndicationPhysicalPropertySequence => 1318960,
Dicom_Tags::PropertyLabel => 1318962,
Dicom_Tags::CoordinateSystemNumberOfAxes => 1319426,
Dicom_Tags::CoordinateSystemAxesSequence => 1319428,
Dicom_Tags::CoordinateSystemAxisDescription => 1319430,
Dicom_Tags::CoordinateSystemDataSetMapping => 1319432,
Dicom_Tags::CoordinateSystemAxisNumber => 1319434,
Dicom_Tags::CoordinateSystemAxisType => 1319436,
Dicom_Tags::CoordinateSystemAxisUnits => 1319438,
Dicom_Tags::CoordinateSystemAxisValues => 1319440,
Dicom_Tags::CoordinateSystemTransformSequence => 1319456,
Dicom_Tags::TransformDescription => 1319458,
Dicom_Tags::TransformNumberOfAxes => 1319460,
Dicom_Tags::TransformOrderOfAxes => 1319462,
Dicom_Tags::TransformedAxisUnits => 1319464,
Dicom_Tags::CoordinateSystemTransformRotationAndScaleMatrix => 1319466,
Dicom_Tags::CoordinateSystemTransformTranslationMatrix => 1319468,
Dicom_Tags::InternalDetectorFrameTime => 1323025,
Dicom_Tags::NumberOfFramesIntegrated => 1323026,
Dicom_Tags::DetectorTemperatureSequence => 1323040,
Dicom_Tags::SensorName => 1323042,
Dicom_Tags::HorizontalOffsetOfSensor => 1323044,
Dicom_Tags::VerticalOffsetOfSensor => 1323046,
Dicom_Tags::SensorTemperature => 1323048,
Dicom_Tags::DarkCurrentSequence => 1323072,
Dicom_Tags::DarkCurrentCounts => 1323088,
Dicom_Tags::GainCorrectionReferenceSequence => 1323104,
Dicom_Tags::AirCounts => 1323120,
Dicom_Tags::KvUsedInGainCalibration => 1323121,
Dicom_Tags::MaUsedInGainCalibration => 1323122,
Dicom_Tags::NumberOfFramesUsedForIntegration => 1323123,
Dicom_Tags::FilterMaterialUsedInGainCalibration => 1323124,
Dicom_Tags::FilterThicknessUsedInGainCalibration => 1323125,
Dicom_Tags::DateOfGainCalibration => 1323126,
Dicom_Tags::TimeOfGainCalibration => 1323127,
Dicom_Tags::BadPixelImage => 1323136,
Dicom_Tags::CalibrationNotes => 1323161,
Dicom_Tags::PulserEquipmentSequence => 1327106,
Dicom_Tags::PulserType => 1327108,
Dicom_Tags::PulserNotes => 1327110,
Dicom_Tags::ReceiverEquipmentSequence => 1327112,
Dicom_Tags::AmplifierType => 1327114,
Dicom_Tags::ReceiverNotes => 1327116,
Dicom_Tags::PreAmplifierEquipmentSequence => 1327118,
Dicom_Tags::PreAmplifierNotes => 1327119,
Dicom_Tags::TransmitTransducerSequence => 1327120,
Dicom_Tags::ReceiveTransducerSequence => 1327121,
Dicom_Tags::NumberOfElements => 1327122,
Dicom_Tags::ElementShape => 1327123,
Dicom_Tags::ElementDimensionA => 1327124,
Dicom_Tags::ElementDimensionB => 1327125,
Dicom_Tags::ElementPitchA => 1327126,
Dicom_Tags::MeasuredBeamDimensionA => 1327127,
Dicom_Tags::MeasuredBeamDimensionB => 1327128,
Dicom_Tags::LocationOfMeasuredBeamDiameter => 1327129,
Dicom_Tags::NominalFrequency => 1327130,
Dicom_Tags::MeasuredCenterFrequency => 1327131,
Dicom_Tags::MeasuredBandwidth => 1327132,
Dicom_Tags::ElementPitchB => 1327133,
Dicom_Tags::PulserSettingsSequence => 1327136,
Dicom_Tags::PulseWidth => 1327138,
Dicom_Tags::ExcitationFrequency => 1327140,
Dicom_Tags::ModulationType => 1327142,
Dicom_Tags::Damping => 1327144,
Dicom_Tags::ReceiverSettingsSequence => 1327152,
Dicom_Tags::AcquiredSoundpathLength => 1327153,
Dicom_Tags::AcquisitionCompressionType => 1327154,
Dicom_Tags::AcquisitionSampleSize => 1327155,
Dicom_Tags::RectifierSmoothing => 1327156,
Dicom_Tags::DacSequence => 1327157,
Dicom_Tags::DacType => 1327158,
Dicom_Tags::DacGainPoints => 1327160,
Dicom_Tags::DacTimePoints => 1327162,
Dicom_Tags::DacAmplitude => 1327164,
Dicom_Tags::PreAmplifierSettingsSequence => 1327168,
Dicom_Tags::TransmitTransducerSettingsSequence => 1327184,
Dicom_Tags::ReceiveTransducerSettingsSequence => 1327185,
Dicom_Tags::IncidentAngle => 1327186,
Dicom_Tags::CouplingTechnique => 1327188,
Dicom_Tags::CouplingMedium => 1327190,
Dicom_Tags::CouplingVelocity => 1327191,
Dicom_Tags::ProbeCenterLocationX => 1327192,
Dicom_Tags::ProbeCenterLocationZ => 1327193,
Dicom_Tags::SoundPathLength => 1327194,
Dicom_Tags::DelayLawIdentifier => 1327196,
Dicom_Tags::GateSettingsSequence => 1327200,
Dicom_Tags::GateThreshold => 1327202,
Dicom_Tags::VelocityOfSound => 1327204,
Dicom_Tags::CalibrationSettingsSequence => 1327216,
Dicom_Tags::CalibrationProcedure => 1327218,
Dicom_Tags::ProcedureVersion => 1327220,
Dicom_Tags::ProcedureCreationDate => 1327222,
Dicom_Tags::ProcedureExpirationDate => 1327224,
Dicom_Tags::ProcedureLastModifiedDate => 1327226,
Dicom_Tags::CalibrationTime => 1327228,
Dicom_Tags::CalibrationDate => 1327230,
Dicom_Tags::ProbeDriveEquipmentSequence => 1327232,
Dicom_Tags::DriveType => 1327233,
Dicom_Tags::ProbeDriveNotes => 1327234,
Dicom_Tags::DriveProbeSequence => 1327235,
Dicom_Tags::ProbeInductance => 1327236,
Dicom_Tags::ProbeResistance => 1327237,
Dicom_Tags::ReceiveProbeSequence => 1327238,
Dicom_Tags::ProbeDriveSettingsSequence => 1327239,
Dicom_Tags::BridgeResistors => 1327240,
Dicom_Tags::ProbeOrientationAngle => 1327241,
Dicom_Tags::UserSelectedGainY => 1327243,
Dicom_Tags::UserSelectedPhase => 1327244,
Dicom_Tags::UserSelectedOffsetX => 1327245,
Dicom_Tags::UserSelectedOffsetY => 1327246,
Dicom_Tags::ChannelSettingsSequence => 1327249,
Dicom_Tags::ChannelThreshold => 1327250,
Dicom_Tags::ScannerSettingsSequence => 1327258,
Dicom_Tags::ScanProcedure => 1327259,
Dicom_Tags::TranslationRateX => 1327260,
Dicom_Tags::TranslationRateY => 1327261,
Dicom_Tags::ChannelOverlap => 1327263,
Dicom_Tags::ImageQualityIndicatorType => 1327264,
Dicom_Tags::ImageQualityIndicatorMaterial => 1327265,
Dicom_Tags::ImageQualityIndicatorSize => 1327266,
Dicom_Tags::LinacEnergy => 1331202,
Dicom_Tags::LinacOutput => 1331204,
Dicom_Tags::ActiveAperture => 1331456,
Dicom_Tags::TotalAperture => 1331457,
Dicom_Tags::ApertureElevation => 1331458,
Dicom_Tags::MainLobeAngle => 1331459,
Dicom_Tags::MainRoofAngle => 1331460,
Dicom_Tags::ConnectorType => 1331461,
Dicom_Tags::WedgeModelNumber => 1331462,
Dicom_Tags::WedgeAngleFloat => 1331463,
Dicom_Tags::WedgeRoofAngle => 1331464,
Dicom_Tags::WedgeElement1Position => 1331465,
Dicom_Tags::WedgeMaterialVelocity => 1331466,
Dicom_Tags::WedgeMaterial => 1331467,
Dicom_Tags::WedgeOffsetZ => 1331468,
Dicom_Tags::WedgeOriginOffsetX => 1331469,
Dicom_Tags::WedgeTimeDelay => 1331470,
Dicom_Tags::WedgeName => 1331471,
Dicom_Tags::WedgeManufacturerName => 1331472,
Dicom_Tags::WedgeDescription => 1331473,
Dicom_Tags::NominalBeamAngle => 1331474,
Dicom_Tags::WedgeOffsetX => 1331475,
Dicom_Tags::WedgeOffsetY => 1331476,
Dicom_Tags::WedgeTotalLength => 1331477,
Dicom_Tags::WedgeInContactLength => 1331478,
Dicom_Tags::WedgeFrontGap => 1331479,
Dicom_Tags::WedgeTotalHeight => 1331480,
Dicom_Tags::WedgeFrontHeight => 1331481,
Dicom_Tags::WedgeRearHeight => 1331482,
Dicom_Tags::WedgeTotalWidth => 1331483,
Dicom_Tags::WedgeInContactWidth => 1331484,
Dicom_Tags::WedgeChamferHeight => 1331485,
Dicom_Tags::WedgeCurve => 1331486,
Dicom_Tags::RadiusAlongTheWedge => 1331487,
Dicom_Tags::ContrastBolusAgent => 1572880,
Dicom_Tags::ContrastBolusAgentSequence => 1572882,
Dicom_Tags::ContrastBolusT1Relaxivity => 1572883,
Dicom_Tags::ContrastBolusAdministrationRouteSequence => 1572884,
Dicom_Tags::BodyPartExamined => 1572885,
Dicom_Tags::ScanningSequence => 1572896,
Dicom_Tags::SequenceVariant => 1572897,
Dicom_Tags::ScanOptions => 1572898,
Dicom_Tags::MrAcquisitionType => 1572899,
Dicom_Tags::SequenceName => 1572900,
Dicom_Tags::AngioFlag => 1572901,
Dicom_Tags::InterventionDrugInformationSequence => 1572902,
Dicom_Tags::InterventionDrugStopTime => 1572903,
Dicom_Tags::InterventionDrugDose => 1572904,
Dicom_Tags::InterventionDrugCodeSequence => 1572905,
Dicom_Tags::AdditionalDrugSequence => 1572906,
Dicom_Tags::Radionuclide => 1572912,
Dicom_Tags::Radiopharmaceutical => 1572913,
Dicom_Tags::EnergyWindowCenterline => 1572914,
Dicom_Tags::EnergyWindowTotalWidth => 1572915,
Dicom_Tags::InterventionDrugName => 1572916,
Dicom_Tags::InterventionDrugStartTime => 1572917,
Dicom_Tags::InterventionSequence => 1572918,
Dicom_Tags::TherapyType => 1572919,
Dicom_Tags::InterventionStatus => 1572920,
Dicom_Tags::TherapyDescription => 1572921,
Dicom_Tags::InterventionDescription => 1572922,
Dicom_Tags::CineRate => 1572928,
Dicom_Tags::InitialCineRunState => 1572930,
Dicom_Tags::SliceThickness => 1572944,
Dicom_Tags::Kvp => 1572960,
Dicom_Tags::CountsAccumulated => 1572976,
Dicom_Tags::AcquisitionTerminationCondition => 1572977,
Dicom_Tags::EffectiveDuration => 1572978,
Dicom_Tags::AcquisitionStartCondition => 1572979,
Dicom_Tags::AcquisitionStartConditionData => 1572980,
Dicom_Tags::AcquisitionTerminationConditionData => 1572981,
Dicom_Tags::RepetitionTime => 1572992,
Dicom_Tags::EchoTime => 1572993,
Dicom_Tags::InversionTime => 1572994,
Dicom_Tags::NumberOfAverages => 1572995,
Dicom_Tags::ImagingFrequency => 1572996,
Dicom_Tags::ImagedNucleus => 1572997,
Dicom_Tags::EchoNumberS => 1572998,
Dicom_Tags::MagneticFieldStrength => 1572999,
Dicom_Tags::SpacingBetweenSlices => 1573000,
Dicom_Tags::NumberOfPhaseEncodingSteps => 1573001,
Dicom_Tags::DataCollectionDiameter => 1573008,
Dicom_Tags::EchoTrainLength => 1573009,
Dicom_Tags::PercentSampling => 1573011,
Dicom_Tags::PercentPhaseFieldOfView => 1573012,
Dicom_Tags::PixelBandwidth => 1573013,
Dicom_Tags::DeviceSerialNumber => 1576960,
Dicom_Tags::DeviceUid => 1576962,
Dicom_Tags::DeviceId => 1576963,
Dicom_Tags::PlateId => 1576964,
Dicom_Tags::GeneratorId => 1576965,
Dicom_Tags::GridId => 1576966,
Dicom_Tags::CassetteId => 1576967,
Dicom_Tags::GantryId => 1576968,
Dicom_Tags::SecondaryCaptureDeviceId => 1576976,
Dicom_Tags::HardcopyCreationDeviceId => 1576977,
Dicom_Tags::DateOfSecondaryCapture => 1576978,
Dicom_Tags::TimeOfSecondaryCapture => 1576980,
Dicom_Tags::SecondaryCaptureDeviceManufacturer => 1576982,
Dicom_Tags::HardcopyDeviceManufacturer => 1576983,
Dicom_Tags::SecondaryCaptureDeviceManufacturerSModelName => 1576984,
Dicom_Tags::SecondaryCaptureDeviceSoftwareVersions => 1576985,
Dicom_Tags::HardcopyDeviceSoftwareVersion => 1576986,
Dicom_Tags::HardcopyDeviceManufacturerSModelName => 1576987,
Dicom_Tags::SoftwareVersionS => 1576992,
Dicom_Tags::VideoImageFormatAcquired => 1576994,
Dicom_Tags::DigitalImageFormatAcquired => 1576995,
Dicom_Tags::ProtocolName => 1577008,
Dicom_Tags::ContrastBolusRoute => 1577024,
Dicom_Tags::ContrastBolusVolume => 1577025,
Dicom_Tags::ContrastBolusStartTime => 1577026,
Dicom_Tags::ContrastBolusStopTime => 1577027,
Dicom_Tags::ContrastBolusTotalDose => 1577028,
Dicom_Tags::SyringeCounts => 1577029,
Dicom_Tags::ContrastFlowRate => 1577030,
Dicom_Tags::ContrastFlowDuration => 1577031,
Dicom_Tags::ContrastBolusIngredient => 1577032,
Dicom_Tags::ContrastBolusIngredientConcentration => 1577033,
Dicom_Tags::SpatialResolution => 1577040,
Dicom_Tags::TriggerTime => 1577056,
Dicom_Tags::TriggerSourceOrType => 1577057,
Dicom_Tags::NominalInterval => 1577058,
Dicom_Tags::FrameTime => 1577059,
Dicom_Tags::CardiacFramingType => 1577060,
Dicom_Tags::FrameTimeVector => 1577061,
Dicom_Tags::FrameDelay => 1577062,
Dicom_Tags::ImageTriggerDelay => 1577063,
Dicom_Tags::MultiplexGroupTimeOffset => 1577064,
Dicom_Tags::TriggerTimeOffset => 1577065,
Dicom_Tags::SynchronizationTrigger => 1577066,
Dicom_Tags::SynchronizationChannel => 1577068,
Dicom_Tags::TriggerSamplePosition => 1577070,
Dicom_Tags::RadiopharmaceuticalRoute => 1577072,
Dicom_Tags::RadiopharmaceuticalVolume => 1577073,
Dicom_Tags::RadiopharmaceuticalStartTime => 1577074,
Dicom_Tags::RadiopharmaceuticalStopTime => 1577075,
Dicom_Tags::RadionuclideTotalDose => 1577076,
Dicom_Tags::RadionuclideHalfLife => 1577077,
Dicom_Tags::RadionuclidePositronFraction => 1577078,
Dicom_Tags::RadiopharmaceuticalSpecificActivity => 1577079,
Dicom_Tags::RadiopharmaceuticalStartDatetime => 1577080,
Dicom_Tags::RadiopharmaceuticalStopDatetime => 1577081,
Dicom_Tags::BeatRejectionFlag => 1577088,
Dicom_Tags::LowRRValue => 1577089,
Dicom_Tags::HighRRValue => 1577090,
Dicom_Tags::IntervalsAcquired => 1577091,
Dicom_Tags::IntervalsRejected => 1577092,
Dicom_Tags::PvcRejection => 1577093,
Dicom_Tags::SkipBeats => 1577094,
Dicom_Tags::HeartRate => 1577096,
Dicom_Tags::CardiacNumberOfImages => 1577104,
Dicom_Tags::TriggerWindow => 1577108,
Dicom_Tags::ReconstructionDiameter => 1577216,
Dicom_Tags::DistanceSourceToDetector => 1577232,
Dicom_Tags::DistanceSourceToPatient => 1577233,
Dicom_Tags::EstimatedRadiographicMagnificationFactor => 1577236,
Dicom_Tags::GantryDetectorTilt => 1577248,
Dicom_Tags::GantryDetectorSlew => 1577249,
Dicom_Tags::TableHeight => 1577264,
Dicom_Tags::TableTraverse => 1577265,
Dicom_Tags::TableMotion => 1577268,
Dicom_Tags::TableVerticalIncrement => 1577269,
Dicom_Tags::TableLateralIncrement => 1577270,
Dicom_Tags::TableLongitudinalIncrement => 1577271,
Dicom_Tags::TableAngle => 1577272,
Dicom_Tags::TableType => 1577274,
Dicom_Tags::RotationDirection => 1577280,
Dicom_Tags::AngularPosition => 1577281,
Dicom_Tags::RadialPosition => 1577282,
Dicom_Tags::ScanArc => 1577283,
Dicom_Tags::AngularStep => 1577284,
Dicom_Tags::CenterOfRotationOffset => 1577285,
Dicom_Tags::RotationOffset => 1577286,
Dicom_Tags::FieldOfViewShape => 1577287,
Dicom_Tags::FieldOfViewDimensionS => 1577289,
Dicom_Tags::ExposureTime => 1577296,
Dicom_Tags::XRayTubeCurrent => 1577297,
Dicom_Tags::Exposure => 1577298,
Dicom_Tags::ExposureInAs => 1577299,
Dicom_Tags::AveragePulseWidth => 1577300,
Dicom_Tags::RadiationSetting => 1577301,
Dicom_Tags::RectificationType => 1577302,
Dicom_Tags::RadiationMode => 1577306,
Dicom_Tags::ImageAndFluoroscopyAreaDoseProduct => 1577310,
Dicom_Tags::FilterType => 1577312,
Dicom_Tags::TypeOfFilters => 1577313,
Dicom_Tags::IntensifierSize => 1577314,
Dicom_Tags::ImagerPixelSpacing => 1577316,
Dicom_Tags::Grid => 1577318,
Dicom_Tags::GeneratorPower => 1577328,
Dicom_Tags::CollimatorGridName => 1577344,
Dicom_Tags::CollimatorType => 1577345,
Dicom_Tags::FocalDistance => 1577346,
Dicom_Tags::XFocusCenter => 1577347,
Dicom_Tags::YFocusCenter => 1577348,
Dicom_Tags::FocalSpotS => 1577360,
Dicom_Tags::AnodeTargetMaterial => 1577361,
Dicom_Tags::BodyPartThickness => 1577376,
Dicom_Tags::CompressionForce => 1577378,
Dicom_Tags::PaddleDescription => 1577380,
Dicom_Tags::DateOfLastCalibration => 1577472,
Dicom_Tags::TimeOfLastCalibration => 1577473,
Dicom_Tags::DatetimeOfLastCalibration => 1577474,
Dicom_Tags::ConvolutionKernel => 1577488,
Dicom_Tags::UpperLowerPixelValues => 1577536,
Dicom_Tags::ActualFrameDuration => 1577538,
Dicom_Tags::CountRate => 1577539,
Dicom_Tags::PreferredPlaybackSequencing => 1577540,
Dicom_Tags::ReceiveCoilName => 1577552,
Dicom_Tags::TransmitCoilName => 1577553,
Dicom_Tags::PlateType => 1577568,
Dicom_Tags::PhosphorType => 1577569,
Dicom_Tags::WaterEquivalentDiameter => 1577585,
Dicom_Tags::WaterEquivalentDiameterCalculationMethodCodeSequence => 1577586,
Dicom_Tags::ScanVelocity => 1577728,
Dicom_Tags::WholeBodyTechnique => 1577729,
Dicom_Tags::ScanLength => 1577730,
Dicom_Tags::AcquisitionMatrix => 1577744,
Dicom_Tags::InPlanePhaseEncodingDirection => 1577746,
Dicom_Tags::FlipAngle => 1577748,
Dicom_Tags::VariableFlipAngleFlag => 1577749,
Dicom_Tags::Sar => 1577750,
Dicom_Tags::DbDt => 1577752,
Dicom_Tags::B1rms => 1577760,
Dicom_Tags::AcquisitionDeviceProcessingDescription => 1577984,
Dicom_Tags::AcquisitionDeviceProcessingCode => 1577985,
Dicom_Tags::CassetteOrientation => 1577986,
Dicom_Tags::CassetteSize => 1577987,
Dicom_Tags::ExposuresOnPlate => 1577988,
Dicom_Tags::RelativeXRayExposure => 1577989,
Dicom_Tags::ExposureIndex => 1578001,
Dicom_Tags::TargetExposureIndex => 1578002,
Dicom_Tags::DeviationIndex => 1578003,
Dicom_Tags::ColumnAngulation => 1578064,
Dicom_Tags::TomoLayerHeight => 1578080,
Dicom_Tags::TomoAngle => 1578096,
Dicom_Tags::TomoTime => 1578112,
Dicom_Tags::TomoType => 1578128,
Dicom_Tags::TomoClass => 1578129,
Dicom_Tags::NumberOfTomosynthesisSourceImages => 1578133,
Dicom_Tags::PositionerMotion => 1578240,
Dicom_Tags::PositionerType => 1578248,
Dicom_Tags::PositionerPrimaryAngle => 1578256,
Dicom_Tags::PositionerSecondaryAngle => 1578257,
Dicom_Tags::PositionerPrimaryAngleIncrement => 1578272,
Dicom_Tags::PositionerSecondaryAngleIncrement => 1578273,
Dicom_Tags::DetectorPrimaryAngle => 1578288,
Dicom_Tags::DetectorSecondaryAngle => 1578289,
Dicom_Tags::ShutterShape => 1578496,
Dicom_Tags::ShutterLeftVerticalEdge => 1578498,
Dicom_Tags::ShutterRightVerticalEdge => 1578500,
Dicom_Tags::ShutterUpperHorizontalEdge => 1578502,
Dicom_Tags::ShutterLowerHorizontalEdge => 1578504,
Dicom_Tags::CenterOfCircularShutter => 1578512,
Dicom_Tags::RadiusOfCircularShutter => 1578514,
Dicom_Tags::VerticesOfThePolygonalShutter => 1578528,
Dicom_Tags::ShutterPresentationValue => 1578530,
Dicom_Tags::ShutterOverlayGroup => 1578531,
Dicom_Tags::ShutterPresentationColorCielabValue => 1578532,
Dicom_Tags::CollimatorShape => 1578752,
Dicom_Tags::CollimatorLeftVerticalEdge => 1578754,
Dicom_Tags::CollimatorRightVerticalEdge => 1578756,
Dicom_Tags::CollimatorUpperHorizontalEdge => 1578758,
Dicom_Tags::CollimatorLowerHorizontalEdge => 1578760,
Dicom_Tags::CenterOfCircularCollimator => 1578768,
Dicom_Tags::RadiusOfCircularCollimator => 1578770,
Dicom_Tags::VerticesOfThePolygonalCollimator => 1578784,
Dicom_Tags::AcquisitionTimeSynchronized => 1579008,
Dicom_Tags::TimeSource => 1579009,
Dicom_Tags::TimeDistributionProtocol => 1579010,
Dicom_Tags::NtpSourceAddress => 1579011,
Dicom_Tags::PageNumberVector => 1581057,
Dicom_Tags::FrameLabelVector => 1581058,
Dicom_Tags::FramePrimaryAngleVector => 1581059,
Dicom_Tags::FrameSecondaryAngleVector => 1581060,
Dicom_Tags::SliceLocationVector => 1581061,
Dicom_Tags::DisplayWindowLabelVector => 1581062,
Dicom_Tags::NominalScannedPixelSpacing => 1581072,
Dicom_Tags::DigitizingDeviceTransportDirection => 1581088,
Dicom_Tags::RotationOfScannedFilm => 1581104,
Dicom_Tags::BiopsyTargetSequence => 1581121,
Dicom_Tags::TargetUid => 1581122,
Dicom_Tags::LocalizingCursorPosition => 1581123,
Dicom_Tags::CalculatedTargetPosition => 1581124,
Dicom_Tags::TargetLabel => 1581125,
Dicom_Tags::DisplayedZValue => 1581126,
Dicom_Tags::IvusAcquisition => 1585408,
Dicom_Tags::IvusPullbackRate => 1585409,
Dicom_Tags::IvusGatedRate => 1585410,
Dicom_Tags::IvusPullbackStartFrameNumber => 1585411,
Dicom_Tags::IvusPullbackStopFrameNumber => 1585412,
Dicom_Tags::LesionNumber => 1585413,
Dicom_Tags::AcquisitionComments => 1589248,
Dicom_Tags::OutputPower => 1593344,
Dicom_Tags::TransducerData => 1593360,
Dicom_Tags::FocusDepth => 1593362,
Dicom_Tags::ProcessingFunction => 1593376,
Dicom_Tags::PostprocessingFunction => 1593377,
Dicom_Tags::MechanicalIndex => 1593378,
Dicom_Tags::BoneThermalIndex => 1593380,
Dicom_Tags::CranialThermalIndex => 1593382,
Dicom_Tags::SoftTissueThermalIndex => 1593383,
Dicom_Tags::SoftTissueFocusThermalIndex => 1593384,
Dicom_Tags::SoftTissueSurfaceThermalIndex => 1593385,
Dicom_Tags::DynamicRange => 1593392,
Dicom_Tags::TotalGain => 1593408,
Dicom_Tags::DepthOfScanField => 1593424,
Dicom_Tags::PatientPosition => 1593600,
Dicom_Tags::ViewPosition => 1593601,
Dicom_Tags::ProjectionEponymousNameCodeSequence => 1593604,
Dicom_Tags::ImageTransformationMatrix => 1593872,
Dicom_Tags::ImageTranslationVector => 1593874,
Dicom_Tags::Sensitivity => 1597440,
Dicom_Tags::SequenceOfUltrasoundRegions => 1597457,
Dicom_Tags::RegionSpatialFormat => 1597458,
Dicom_Tags::RegionDataType => 1597460,
Dicom_Tags::RegionFlags => 1597462,
Dicom_Tags::RegionLocationMinX0 => 1597464,
Dicom_Tags::RegionLocationMinY0 => 1597466,
Dicom_Tags::RegionLocationMaxX1 => 1597468,
Dicom_Tags::RegionLocationMaxY1 => 1597470,
Dicom_Tags::ReferencePixelX0 => 1597472,
Dicom_Tags::ReferencePixelY0 => 1597474,
Dicom_Tags::PhysicalUnitsXDirection => 1597476,
Dicom_Tags::PhysicalUnitsYDirection => 1597478,
Dicom_Tags::ReferencePixelPhysicalValueX => 1597480,
Dicom_Tags::ReferencePixelPhysicalValueY => 1597482,
Dicom_Tags::PhysicalDeltaX => 1597484,
Dicom_Tags::PhysicalDeltaY => 1597486,
Dicom_Tags::TransducerFrequency => 1597488,
Dicom_Tags::TransducerType => 1597489,
Dicom_Tags::PulseRepetitionFrequency => 1597490,
Dicom_Tags::DopplerCorrectionAngle => 1597492,
Dicom_Tags::SteeringAngle => 1597494,
Dicom_Tags::DopplerSampleVolumeXPositionRetired => 1597496,
Dicom_Tags::DopplerSampleVolumeXPosition => 1597497,
Dicom_Tags::DopplerSampleVolumeYPositionRetired => 1597498,
Dicom_Tags::DopplerSampleVolumeYPosition => 1597499,
Dicom_Tags::TmLinePositionX0Retired => 1597500,
Dicom_Tags::TmLinePositionX0 => 1597501,
Dicom_Tags::TmLinePositionY0Retired => 1597502,
Dicom_Tags::TmLinePositionY0 => 1597503,
Dicom_Tags::TmLinePositionX1Retired => 1597504,
Dicom_Tags::TmLinePositionX1 => 1597505,
Dicom_Tags::TmLinePositionY1Retired => 1597506,
Dicom_Tags::TmLinePositionY1 => 1597507,
Dicom_Tags::PixelComponentOrganization => 1597508,
Dicom_Tags::PixelComponentMask => 1597510,
Dicom_Tags::PixelComponentRangeStart => 1597512,
Dicom_Tags::PixelComponentRangeStop => 1597514,
Dicom_Tags::PixelComponentPhysicalUnits => 1597516,
Dicom_Tags::PixelComponentDataType => 1597518,
Dicom_Tags::NumberOfTableBreakPoints => 1597520,
Dicom_Tags::TableOfXBreakPoints => 1597522,
Dicom_Tags::TableOfYBreakPoints => 1597524,
Dicom_Tags::NumberOfTableEntries => 1597526,
Dicom_Tags::TableOfPixelValues => 1597528,
Dicom_Tags::TableOfParameterValues => 1597530,
Dicom_Tags::RWaveTimeVector => 1597536,
Dicom_Tags::DetectorConditionsNominalFlag => 1601536,
Dicom_Tags::DetectorTemperature => 1601537,
Dicom_Tags::DetectorType => 1601540,
Dicom_Tags::DetectorConfiguration => 1601541,
Dicom_Tags::DetectorDescription => 1601542,
Dicom_Tags::DetectorMode => 1601544,
Dicom_Tags::DetectorId => 1601546,
Dicom_Tags::DateOfLastDetectorCalibration => 1601548,
Dicom_Tags::TimeOfLastDetectorCalibration => 1601550,
Dicom_Tags::ExposuresOnDetectorSinceLastCalibration => 1601552,
Dicom_Tags::ExposuresOnDetectorSinceManufactured => 1601553,
Dicom_Tags::DetectorTimeSinceLastExposure => 1601554,
Dicom_Tags::DetectorActiveTime => 1601556,
Dicom_Tags::DetectorActivationOffsetFromExposure => 1601558,
Dicom_Tags::DetectorBinning => 1601562,
Dicom_Tags::DetectorElementPhysicalSize => 1601568,
Dicom_Tags::DetectorElementSpacing => 1601570,
Dicom_Tags::DetectorActiveShape => 1601572,
Dicom_Tags::DetectorActiveDimensionS => 1601574,
Dicom_Tags::DetectorActiveOrigin => 1601576,
Dicom_Tags::DetectorManufacturerName => 1601578,
Dicom_Tags::DetectorManufacturerSModelName => 1601579,
Dicom_Tags::FieldOfViewOrigin => 1601584,
Dicom_Tags::FieldOfViewRotation => 1601586,
Dicom_Tags::FieldOfViewHorizontalFlip => 1601588,
Dicom_Tags::PixelDataAreaOriginRelativeToFov => 1601590,
Dicom_Tags::PixelDataAreaRotationAngleRelativeToFov => 1601592,
Dicom_Tags::GridAbsorbingMaterial => 1601600,
Dicom_Tags::GridSpacingMaterial => 1601601,
Dicom_Tags::GridThickness => 1601602,
Dicom_Tags::GridPitch => 1601604,
Dicom_Tags::GridAspectRatio => 1601606,
Dicom_Tags::GridPeriod => 1601608,
Dicom_Tags::GridFocalDistance => 1601612,
Dicom_Tags::FilterMaterial => 1601616,
Dicom_Tags::FilterThicknessMinimum => 1601618,
Dicom_Tags::FilterThicknessMaximum => 1601620,
Dicom_Tags::FilterBeamPathLengthMinimum => 1601622,
Dicom_Tags::FilterBeamPathLengthMaximum => 1601624,
Dicom_Tags::ExposureControlMode => 1601632,
Dicom_Tags::ExposureControlModeDescription => 1601634,
Dicom_Tags::ExposureStatus => 1601636,
Dicom_Tags::PhototimerSetting => 1601637,
Dicom_Tags::ExposureTimeInS => 1605968,
Dicom_Tags::XRayTubeCurrentInA => 1605969,
Dicom_Tags::ContentQualification => 1609732,
Dicom_Tags::PulseSequenceName => 1609733,
Dicom_Tags::MrImagingModifierSequence => 1609734,
Dicom_Tags::EchoPulseSequence => 1609736,
Dicom_Tags::InversionRecovery => 1609737,
Dicom_Tags::FlowCompensation => 1609744,
Dicom_Tags::MultipleSpinEcho => 1609745,
Dicom_Tags::MultiPlanarExcitation => 1609746,
Dicom_Tags::PhaseContrast => 1609748,
Dicom_Tags::TimeOfFlightContrast => 1609749,
Dicom_Tags::Spoiling => 1609750,
Dicom_Tags::SteadyStatePulseSequence => 1609751,
Dicom_Tags::EchoPlanarPulseSequence => 1609752,
Dicom_Tags::TagAngleFirstAxis => 1609753,
Dicom_Tags::MagnetizationTransfer => 1609760,
Dicom_Tags::T2Preparation => 1609761,
Dicom_Tags::BloodSignalNulling => 1609762,
Dicom_Tags::SaturationRecovery => 1609764,
Dicom_Tags::SpectrallySelectedSuppression => 1609765,
Dicom_Tags::SpectrallySelectedExcitation => 1609766,
Dicom_Tags::SpatialPreSaturation => 1609767,
Dicom_Tags::Tagging => 1609768,
Dicom_Tags::OversamplingPhase => 1609769,
Dicom_Tags::TagSpacingFirstDimension => 1609776,
Dicom_Tags::GeometryOfKSpaceTraversal => 1609778,
Dicom_Tags::SegmentedKSpaceTraversal => 1609779,
Dicom_Tags::RectilinearPhaseEncodeReordering => 1609780,
Dicom_Tags::TagThickness => 1609781,
Dicom_Tags::PartialFourierDirection => 1609782,
Dicom_Tags::CardiacSynchronizationTechnique => 1609783,
Dicom_Tags::ReceiveCoilManufacturerName => 1609793,
Dicom_Tags::MrReceiveCoilSequence => 1609794,
Dicom_Tags::ReceiveCoilType => 1609795,
Dicom_Tags::QuadratureReceiveCoil => 1609796,
Dicom_Tags::MultiCoilDefinitionSequence => 1609797,
Dicom_Tags::MultiCoilConfiguration => 1609798,
Dicom_Tags::MultiCoilElementName => 1609799,
Dicom_Tags::MultiCoilElementUsed => 1609800,
Dicom_Tags::MrTransmitCoilSequence => 1609801,
Dicom_Tags::TransmitCoilManufacturerName => 1609808,
Dicom_Tags::TransmitCoilType => 1609809,
Dicom_Tags::SpectralWidth => 1609810,
Dicom_Tags::ChemicalShiftReference => 1609811,
Dicom_Tags::VolumeLocalizationTechnique => 1609812,
Dicom_Tags::MrAcquisitionFrequencyEncodingSteps => 1609816,
Dicom_Tags::DeCoupling => 1609817,
Dicom_Tags::DeCoupledNucleus => 1609824,
Dicom_Tags::DeCouplingFrequency => 1609825,
Dicom_Tags::DeCouplingMethod => 1609826,
Dicom_Tags::DeCouplingChemicalShiftReference => 1609827,
Dicom_Tags::KSpaceFiltering => 1609828,
Dicom_Tags::TimeDomainFiltering => 1609829,
Dicom_Tags::NumberOfZeroFills => 1609830,
Dicom_Tags::BaselineCorrection => 1609831,
Dicom_Tags::ParallelReductionFactorInPlane => 1609833,
Dicom_Tags::CardiacRRIntervalSpecified => 1609840,
Dicom_Tags::AcquisitionDuration => 1609843,
Dicom_Tags::FrameAcquisitionDatetime => 1609844,
Dicom_Tags::DiffusionDirectionality => 1609845,
Dicom_Tags::DiffusionGradientDirectionSequence => 1609846,
Dicom_Tags::ParallelAcquisition => 1609847,
Dicom_Tags::ParallelAcquisitionTechnique => 1609848,
Dicom_Tags::InversionTimes => 1609849,
Dicom_Tags::MetaboliteMapDescription => 1609856,
Dicom_Tags::PartialFourier => 1609857,
Dicom_Tags::EffectiveEchoTime => 1609858,
Dicom_Tags::MetaboliteMapCodeSequence => 1609859,
Dicom_Tags::ChemicalShiftSequence => 1609860,
Dicom_Tags::CardiacSignalSource => 1609861,
Dicom_Tags::DiffusionBValue => 1609863,
Dicom_Tags::DiffusionGradientOrientation => 1609865,
Dicom_Tags::VelocityEncodingDirection => 1609872,
Dicom_Tags::VelocityEncodingMinimumValue => 1609873,
Dicom_Tags::VelocityEncodingAcquisitionSequence => 1609874,
Dicom_Tags::NumberOfKSpaceTrajectories => 1609875,
Dicom_Tags::CoverageOfKSpace => 1609876,
Dicom_Tags::SpectroscopyAcquisitionPhaseRows => 1609877,
Dicom_Tags::ParallelReductionFactorInPlaneRetired => 1609878,
Dicom_Tags::TransmitterFrequency => 1609880,
Dicom_Tags::ResonantNucleus => 1609984,
Dicom_Tags::FrequencyCorrection => 1609985,
Dicom_Tags::MrSpectroscopyFovGeometrySequence => 1609987,
Dicom_Tags::SlabThickness => 1609988,
Dicom_Tags::SlabOrientation => 1609989,
Dicom_Tags::MidSlabPosition => 1609990,
Dicom_Tags::MrSpatialSaturationSequence => 1609991,
Dicom_Tags::MrTimingAndRelatedParametersSequence => 1610002,
Dicom_Tags::MrEchoSequence => 1610004,
Dicom_Tags::MrModifierSequence => 1610005,
Dicom_Tags::MrDiffusionSequence => 1610007,
Dicom_Tags::CardiacSynchronizationSequence => 1610008,
Dicom_Tags::MrAveragesSequence => 1610009,
Dicom_Tags::MrFovGeometrySequence => 1610021,
Dicom_Tags::VolumeLocalizationSequence => 1610022,
Dicom_Tags::SpectroscopyAcquisitionDataColumns => 1610023,
Dicom_Tags::DiffusionAnisotropyType => 1610055,
Dicom_Tags::FrameReferenceDatetime => 1610065,
Dicom_Tags::MrMetaboliteMapSequence => 1610066,
Dicom_Tags::ParallelReductionFactorOutOfPlane => 1610069,
Dicom_Tags::SpectroscopyAcquisitionOutOfPlanePhaseSteps => 1610073,
Dicom_Tags::BulkMotionStatus => 1610086,
Dicom_Tags::ParallelReductionFactorSecondInPlane => 1610088,
Dicom_Tags::CardiacBeatRejectionTechnique => 1610089,
Dicom_Tags::RespiratoryMotionCompensationTechnique => 1610096,
Dicom_Tags::RespiratorySignalSource => 1610097,
Dicom_Tags::BulkMotionCompensationTechnique => 1610098,
Dicom_Tags::BulkMotionSignalSource => 1610099,
Dicom_Tags::ApplicableSafetyStandardAgency => 1610100,
Dicom_Tags::ApplicableSafetyStandardDescription => 1610101,
Dicom_Tags::OperatingModeSequence => 1610102,
Dicom_Tags::OperatingModeType => 1610103,
Dicom_Tags::OperatingMode => 1610104,
Dicom_Tags::SpecificAbsorptionRateDefinition => 1610105,
Dicom_Tags::GradientOutputType => 1610112,
Dicom_Tags::SpecificAbsorptionRateValue => 1610113,
Dicom_Tags::GradientOutput => 1610114,
Dicom_Tags::FlowCompensationDirection => 1610115,
Dicom_Tags::TaggingDelay => 1610116,
Dicom_Tags::RespiratoryMotionCompensationTechniqueDescription => 1610117,
Dicom_Tags::RespiratorySignalSourceId => 1610118,
Dicom_Tags::ChemicalShiftMinimumIntegrationLimitInHz => 1610133,
Dicom_Tags::ChemicalShiftMaximumIntegrationLimitInHz => 1610134,
Dicom_Tags::MrVelocityEncodingSequence => 1610135,
Dicom_Tags::FirstOrderPhaseCorrection => 1610136,
Dicom_Tags::WaterReferencedPhaseCorrection => 1610137,
Dicom_Tags::MrSpectroscopyAcquisitionType => 1610240,
Dicom_Tags::RespiratoryCyclePosition => 1610260,
Dicom_Tags::VelocityEncodingMaximumValue => 1610263,
Dicom_Tags::TagSpacingSecondDimension => 1610264,
Dicom_Tags::TagAngleSecondAxis => 1610265,
Dicom_Tags::FrameAcquisitionDuration => 1610272,
Dicom_Tags::MrImageFrameTypeSequence => 1610278,
Dicom_Tags::MrSpectroscopyFrameTypeSequence => 1610279,
Dicom_Tags::MrAcquisitionPhaseEncodingStepsInPlane => 1610289,
Dicom_Tags::MrAcquisitionPhaseEncodingStepsOutOfPlane => 1610290,
Dicom_Tags::SpectroscopyAcquisitionPhaseColumns => 1610292,
Dicom_Tags::CardiacCyclePosition => 1610294,
Dicom_Tags::SpecificAbsorptionRateSequence => 1610297,
Dicom_Tags::RfEchoTrainLength => 1610304,
Dicom_Tags::GradientEchoTrainLength => 1610305,
Dicom_Tags::ArterialSpinLabelingContrast => 1610320,
Dicom_Tags::MrArterialSpinLabelingSequence => 1610321,
Dicom_Tags::AslTechniqueDescription => 1610322,
Dicom_Tags::AslSlabNumber => 1610323,
Dicom_Tags::AslSlabThickness => 1610324,
Dicom_Tags::AslSlabOrientation => 1610325,
Dicom_Tags::AslMidSlabPosition => 1610326,
Dicom_Tags::AslContext => 1610327,
Dicom_Tags::AslPulseTrainDuration => 1610328,
Dicom_Tags::AslCrusherFlag => 1610329,
Dicom_Tags::AslCrusherFlowLimit => 1610330,
Dicom_Tags::AslCrusherDescription => 1610331,
Dicom_Tags::AslBolusCutOffFlag => 1610332,
Dicom_Tags::AslBolusCutOffTimingSequence => 1610333,
Dicom_Tags::AslBolusCutOffTechnique => 1610334,
Dicom_Tags::AslBolusCutOffDelayTime => 1610335,
Dicom_Tags::AslSlabSequence => 1610336,
Dicom_Tags::ChemicalShiftMinimumIntegrationLimitInPpm => 1610389,
Dicom_Tags::ChemicalShiftMaximumIntegrationLimitInPpm => 1610390,
Dicom_Tags::WaterReferenceAcquisition => 1610391,
Dicom_Tags::EchoPeakPosition => 1610392,
Dicom_Tags::CtAcquisitionTypeSequence => 1610497,
Dicom_Tags::AcquisitionType => 1610498,
Dicom_Tags::TubeAngle => 1610499,
Dicom_Tags::CtAcquisitionDetailsSequence => 1610500,
Dicom_Tags::RevolutionTime => 1610501,
Dicom_Tags::SingleCollimationWidth => 1610502,
Dicom_Tags::TotalCollimationWidth => 1610503,
Dicom_Tags::CtTableDynamicsSequence => 1610504,
Dicom_Tags::TableSpeed => 1610505,
Dicom_Tags::TableFeedPerRotation => 1610512,
Dicom_Tags::SpiralPitchFactor => 1610513,
Dicom_Tags::CtGeometrySequence => 1610514,
Dicom_Tags::DataCollectionCenterPatient => 1610515,
Dicom_Tags::CtReconstructionSequence => 1610516,
Dicom_Tags::ReconstructionAlgorithm => 1610517,
Dicom_Tags::ConvolutionKernelGroup => 1610518,
Dicom_Tags::ReconstructionFieldOfView => 1610519,
Dicom_Tags::ReconstructionTargetCenterPatient => 1610520,
Dicom_Tags::ReconstructionAngle => 1610521,
Dicom_Tags::ImageFilter => 1610528,
Dicom_Tags::CtExposureSequence => 1610529,
Dicom_Tags::ReconstructionPixelSpacing => 1610530,
Dicom_Tags::ExposureModulationType => 1610531,
Dicom_Tags::EstimatedDoseSaving => 1610532,
Dicom_Tags::CtXRayDetailsSequence => 1610533,
Dicom_Tags::CtPositionSequence => 1610534,
Dicom_Tags::TablePosition => 1610535,
Dicom_Tags::ExposureTimeInMs => 1610536,
Dicom_Tags::CtImageFrameTypeSequence => 1610537,
Dicom_Tags::XRayTubeCurrentInMa => 1610544,
Dicom_Tags::ExposureInMas => 1610546,
Dicom_Tags::ConstantVolumeFlag => 1610547,
Dicom_Tags::FluoroscopyFlag => 1610548,
Dicom_Tags::DistanceSourceToDataCollectionCenter => 1610549,
Dicom_Tags::ContrastBolusAgentNumber => 1610551,
Dicom_Tags::ContrastBolusIngredientCodeSequence => 1610552,
Dicom_Tags::ContrastAdministrationProfileSequence => 1610560,
Dicom_Tags::ContrastBolusUsageSequence => 1610561,
Dicom_Tags::ContrastBolusAgentAdministered => 1610562,
Dicom_Tags::ContrastBolusAgentDetected => 1610563,
Dicom_Tags::ContrastBolusAgentPhase => 1610564,
Dicom_Tags::Ctdivol => 1610565,
Dicom_Tags::CtdiPhantomTypeCodeSequence => 1610566,
Dicom_Tags::CalciumScoringMassFactorPatient => 1610577,
Dicom_Tags::CalciumScoringMassFactorDevice => 1610578,
Dicom_Tags::EnergyWeightingFactor => 1610579,
Dicom_Tags::CtAdditionalXRaySourceSequence => 1610592,
Dicom_Tags::ProjectionPixelCalibrationSequence => 1610753,
Dicom_Tags::DistanceSourceToIsocenter => 1610754,
Dicom_Tags::DistanceObjectToTableTop => 1610755,
Dicom_Tags::ObjectPixelSpacingInCenterOfBeam => 1610756,
Dicom_Tags::PositionerPositionSequence => 1610757,
Dicom_Tags::TablePositionSequence => 1610758,
Dicom_Tags::CollimatorShapeSequence => 1610759,
Dicom_Tags::PlanesInAcquisition => 1610768,
Dicom_Tags::XaXrfFrameCharacteristicsSequence => 1610770,
Dicom_Tags::FrameAcquisitionSequence => 1610775,
Dicom_Tags::XRayReceptorType => 1610784,
Dicom_Tags::AcquisitionProtocolName => 1610787,
Dicom_Tags::AcquisitionProtocolDescription => 1610788,
Dicom_Tags::ContrastBolusIngredientOpaque => 1610789,
Dicom_Tags::DistanceReceptorPlaneToDetectorHousing => 1610790,
Dicom_Tags::IntensifierActiveShape => 1610791,
Dicom_Tags::IntensifierActiveDimensionS => 1610792,
Dicom_Tags::PhysicalDetectorSize => 1610793,
Dicom_Tags::PositionOfIsocenterProjection => 1610800,
Dicom_Tags::FieldOfViewSequence => 1610802,
Dicom_Tags::FieldOfViewDescription => 1610803,
Dicom_Tags::ExposureControlSensingRegionsSequence => 1610804,
Dicom_Tags::ExposureControlSensingRegionShape => 1610805,
Dicom_Tags::ExposureControlSensingRegionLeftVerticalEdge => 1610806,
Dicom_Tags::ExposureControlSensingRegionRightVerticalEdge => 1610807,
Dicom_Tags::ExposureControlSensingRegionUpperHorizontalEdge => 1610808,
Dicom_Tags::ExposureControlSensingRegionLowerHorizontalEdge => 1610809,
Dicom_Tags::CenterOfCircularExposureControlSensingRegion => 1610816,
Dicom_Tags::RadiusOfCircularExposureControlSensingRegion => 1610817,
Dicom_Tags::VerticesOfThePolygonalExposureControlSensingRegion => 1610818,
Dicom_Tags::ColumnAngulationPatient => 1610823,
Dicom_Tags::BeamAngle => 1610825,
Dicom_Tags::FrameDetectorParametersSequence => 1610833,
Dicom_Tags::CalculatedAnatomyThickness => 1610834,
Dicom_Tags::CalibrationSequence => 1610837,
Dicom_Tags::ObjectThicknessSequence => 1610838,
Dicom_Tags::PlaneIdentification => 1610839,
Dicom_Tags::FieldOfViewDimensionSInFloat => 1610849,
Dicom_Tags::IsocenterReferenceSystemSequence => 1610850,
Dicom_Tags::PositionerIsocenterPrimaryAngle => 1610851,
Dicom_Tags::PositionerIsocenterSecondaryAngle => 1610852,
Dicom_Tags::PositionerIsocenterDetectorRotationAngle => 1610853,
Dicom_Tags::TableXPositionToIsocenter => 1610854,
Dicom_Tags::TableYPositionToIsocenter => 1610855,
Dicom_Tags::TableZPositionToIsocenter => 1610856,
Dicom_Tags::TableHorizontalRotationAngle => 1610857,
Dicom_Tags::TableHeadTiltAngle => 1610864,
Dicom_Tags::TableCradleTiltAngle => 1610865,
Dicom_Tags::FrameDisplayShutterSequence => 1610866,
Dicom_Tags::AcquiredImageAreaDoseProduct => 1610867,
Dicom_Tags::CArmPositionerTabletopRelationship => 1610868,
Dicom_Tags::XRayGeometrySequence => 1610870,
Dicom_Tags::IrradiationEventIdentificationSequence => 1610871,
Dicom_Tags::XRay3dFrameTypeSequence => 1611012,
Dicom_Tags::ContributingSourcesSequence => 1611014,
Dicom_Tags::XRay3dAcquisitionSequence => 1611015,
Dicom_Tags::PrimaryPositionerScanArc => 1611016,
Dicom_Tags::SecondaryPositionerScanArc => 1611017,
Dicom_Tags::PrimaryPositionerScanStartAngle => 1611024,
Dicom_Tags::SecondaryPositionerScanStartAngle => 1611025,
Dicom_Tags::PrimaryPositionerIncrement => 1611028,
Dicom_Tags::SecondaryPositionerIncrement => 1611029,
Dicom_Tags::StartAcquisitionDatetime => 1611030,
Dicom_Tags::EndAcquisitionDatetime => 1611031,
Dicom_Tags::PrimaryPositionerIncrementSign => 1611032,
Dicom_Tags::SecondaryPositionerIncrementSign => 1611033,
Dicom_Tags::ApplicationName => 1611044,
Dicom_Tags::ApplicationVersion => 1611045,
Dicom_Tags::ApplicationManufacturer => 1611046,
Dicom_Tags::AlgorithmType => 1611047,
Dicom_Tags::AlgorithmDescription => 1611048,
Dicom_Tags::XRay3dReconstructionSequence => 1611056,
Dicom_Tags::ReconstructionDescription => 1611057,
Dicom_Tags::PerProjectionAcquisitionSequence => 1611064,
Dicom_Tags::DetectorPositionSequence => 1611073,
Dicom_Tags::XRayAcquisitionDoseSequence => 1611074,
Dicom_Tags::XRaySourceIsocenterPrimaryAngle => 1611075,
Dicom_Tags::XRaySourceIsocenterSecondaryAngle => 1611076,
Dicom_Tags::BreastSupportIsocenterPrimaryAngle => 1611077,
Dicom_Tags::BreastSupportIsocenterSecondaryAngle => 1611078,
Dicom_Tags::BreastSupportXPositionToIsocenter => 1611079,
Dicom_Tags::BreastSupportYPositionToIsocenter => 1611080,
Dicom_Tags::BreastSupportZPositionToIsocenter => 1611081,
Dicom_Tags::DetectorIsocenterPrimaryAngle => 1611088,
Dicom_Tags::DetectorIsocenterSecondaryAngle => 1611089,
Dicom_Tags::DetectorXPositionToIsocenter => 1611090,
Dicom_Tags::DetectorYPositionToIsocenter => 1611091,
Dicom_Tags::DetectorZPositionToIsocenter => 1611092,
Dicom_Tags::XRayGridSequence => 1611093,
Dicom_Tags::XRayFilterSequence => 1611094,
Dicom_Tags::DetectorActiveAreaTlhcPosition => 1611095,
Dicom_Tags::DetectorActiveAreaOrientation => 1611096,
Dicom_Tags::PositionerPrimaryAngleDirection => 1611097,
Dicom_Tags::DiffusionBMatrixSequence => 1611265,
Dicom_Tags::DiffusionBValueXx => 1611266,
Dicom_Tags::DiffusionBValueXy => 1611267,
Dicom_Tags::DiffusionBValueXz => 1611268,
Dicom_Tags::DiffusionBValueYy => 1611269,
Dicom_Tags::DiffusionBValueYz => 1611270,
Dicom_Tags::DiffusionBValueZz => 1611271,
Dicom_Tags::FunctionalMrSequence => 1611297,
Dicom_Tags::FunctionalSettlingPhaseFramesPresent => 1611298,
Dicom_Tags::FunctionalSyncPulse => 1611299,
Dicom_Tags::SettlingPhaseFrame => 1611300,
Dicom_Tags::DecayCorrectionDatetime => 1611521,
Dicom_Tags::StartDensityThreshold => 1611541,
Dicom_Tags::StartRelativeDensityDifferenceThreshold => 1611542,
Dicom_Tags::StartCardiacTriggerCountThreshold => 1611543,
Dicom_Tags::StartRespiratoryTriggerCountThreshold => 1611544,
Dicom_Tags::TerminationCountsThreshold => 1611545,
Dicom_Tags::TerminationDensityThreshold => 1611552,
Dicom_Tags::TerminationRelativeDensityThreshold => 1611553,
Dicom_Tags::TerminationTimeThreshold => 1611554,
Dicom_Tags::TerminationCardiacTriggerCountThreshold => 1611555,
Dicom_Tags::TerminationRespiratoryTriggerCountThreshold => 1611556,
Dicom_Tags::DetectorGeometry => 1611557,
Dicom_Tags::TransverseDetectorSeparation => 1611558,
Dicom_Tags::AxialDetectorDimension => 1611559,
Dicom_Tags::RadiopharmaceuticalAgentNumber => 1611561,
Dicom_Tags::PetFrameAcquisitionSequence => 1611570,
Dicom_Tags::PetDetectorMotionDetailsSequence => 1611571,
Dicom_Tags::PetTableDynamicsSequence => 1611572,
Dicom_Tags::PetPositionSequence => 1611573,
Dicom_Tags::PetFrameCorrectionFactorsSequence => 1611574,
Dicom_Tags::RadiopharmaceuticalUsageSequence => 1611575,
Dicom_Tags::AttenuationCorrectionSource => 1611576,
Dicom_Tags::NumberOfIterations => 1611577,
Dicom_Tags::NumberOfSubsets => 1611584,
Dicom_Tags::PetReconstructionSequence => 1611593,
Dicom_Tags::PetFrameTypeSequence => 1611601,
Dicom_Tags::TimeOfFlightInformationUsed => 1611605,
Dicom_Tags::ReconstructionType => 1611606,
Dicom_Tags::DecayCorrected => 1611608,
Dicom_Tags::AttenuationCorrected => 1611609,
Dicom_Tags::ScatterCorrected => 1611616,
Dicom_Tags::DeadTimeCorrected => 1611617,
Dicom_Tags::GantryMotionCorrected => 1611618,
Dicom_Tags::PatientMotionCorrected => 1611619,
Dicom_Tags::CountLossNormalizationCorrected => 1611620,
Dicom_Tags::RandomsCorrected => 1611621,
Dicom_Tags::NonUniformRadialSamplingCorrected => 1611622,
Dicom_Tags::SensitivityCalibrated => 1611623,
Dicom_Tags::DetectorNormalizationCorrection => 1611624,
Dicom_Tags::IterativeReconstructionMethod => 1611625,
Dicom_Tags::AttenuationCorrectionTemporalRelationship => 1611632,
Dicom_Tags::PatientPhysiologicalStateSequence => 1611633,
Dicom_Tags::PatientPhysiologicalStateCodeSequence => 1611634,
Dicom_Tags::DepthSOfFocus => 1611777,
Dicom_Tags::ExcludedIntervalsSequence => 1611779,
Dicom_Tags::ExclusionStartDatetime => 1611780,
Dicom_Tags::ExclusionDuration => 1611781,
Dicom_Tags::UsImageDescriptionSequence => 1611782,
Dicom_Tags::ImageDataTypeSequence => 1611783,
Dicom_Tags::DataType => 1611784,
Dicom_Tags::TransducerScanPatternCodeSequence => 1611785,
Dicom_Tags::AliasedDataType => 1611787,
Dicom_Tags::PositionMeasuringDeviceUsed => 1611788,
Dicom_Tags::TransducerGeometryCodeSequence => 1611789,
Dicom_Tags::TransducerBeamSteeringCodeSequence => 1611790,
Dicom_Tags::TransducerApplicationCodeSequence => 1611791,
Dicom_Tags::ZeroVelocityPixelValue => 1611792,
Dicom_Tags::ContributingEquipmentSequence => 1613825,
Dicom_Tags::ContributionDatetime => 1613826,
Dicom_Tags::ContributionDescription => 1613827,
Dicom_Tags::StudyInstanceUid => 2097165,
Dicom_Tags::SeriesInstanceUid => 2097166,
Dicom_Tags::StudyId => 2097168,
Dicom_Tags::SeriesNumber => 2097169,
Dicom_Tags::AcquisitionNumber => 2097170,
Dicom_Tags::InstanceNumber => 2097171,
Dicom_Tags::IsotopeNumber => 2097172,
Dicom_Tags::PhaseNumber => 2097173,
Dicom_Tags::IntervalNumber => 2097174,
Dicom_Tags::TimeSlotNumber => 2097175,
Dicom_Tags::AngleNumber => 2097176,
Dicom_Tags::ItemNumber => 2097177,
Dicom_Tags::PatientOrientation => 2097184,
Dicom_Tags::OverlayNumber => 2097186,
Dicom_Tags::CurveNumber => 2097188,
Dicom_Tags::LutNumber => 2097190,
Dicom_Tags::ImagePosition => 2097200,
Dicom_Tags::ImagePositionPatient => 2097202,
Dicom_Tags::ImageOrientation => 2097205,
Dicom_Tags::ImageOrientationPatient => 2097207,
Dicom_Tags::Location => 2097232,
Dicom_Tags::FrameOfReferenceUid => 2097234,
Dicom_Tags::Laterality => 2097248,
Dicom_Tags::ImageLaterality => 2097250,
Dicom_Tags::ImageGeometryType => 2097264,
Dicom_Tags::MaskingImage => 2097280,
Dicom_Tags::ReportNumber => 2097322,
Dicom_Tags::TemporalPositionIdentifier => 2097408,
Dicom_Tags::NumberOfTemporalPositions => 2097413,
Dicom_Tags::TemporalResolution => 2097424,
Dicom_Tags::SynchronizationFrameOfReferenceUid => 2097664,
Dicom_Tags::SopInstanceUidOfConcatenationSource => 2097730,
Dicom_Tags::SeriesInStudy => 2101248,
Dicom_Tags::AcquisitionsInSeries => 2101249,
Dicom_Tags::ImagesInAcquisition => 2101250,
Dicom_Tags::ImagesInSeries => 2101251,
Dicom_Tags::AcquisitionsInStudy => 2101252,
Dicom_Tags::ImagesInStudy => 2101253,
Dicom_Tags::Reference => 2101280,
Dicom_Tags::PositionReferenceIndicator => 2101312,
Dicom_Tags::SliceLocation => 2101313,
Dicom_Tags::OtherStudyNumbers => 2101360,
Dicom_Tags::NumberOfPatientRelatedStudies => 2101760,
Dicom_Tags::NumberOfPatientRelatedSeries => 2101762,
Dicom_Tags::NumberOfPatientRelatedInstances => 2101764,
Dicom_Tags::NumberOfStudyRelatedSeries => 2101766,
Dicom_Tags::NumberOfStudyRelatedInstances => 2101768,
Dicom_Tags::NumberOfSeriesRelatedInstances => 2101769,
Dicom_Tags::ModifyingDeviceId => 2110465,
Dicom_Tags::ModifiedImageId => 2110466,
Dicom_Tags::ModifiedImageDate => 2110467,
Dicom_Tags::ModifyingDeviceManufacturer => 2110468,
Dicom_Tags::ModifiedImageTime => 2110469,
Dicom_Tags::ModifiedImageDescription => 2110470,
Dicom_Tags::ImageComments => 2113536,
Dicom_Tags::OriginalImageIdentification => 2117632,
Dicom_Tags::OriginalImageIdentificationNomenclature => 2117634,
Dicom_Tags::StackId => 2134102,
Dicom_Tags::InStackPositionNumber => 2134103,
Dicom_Tags::FrameAnatomySequence => 2134129,
Dicom_Tags::FrameLaterality => 2134130,
Dicom_Tags::FrameContentSequence => 2134289,
Dicom_Tags::PlanePositionSequence => 2134291,
Dicom_Tags::PlaneOrientationSequence => 2134294,
Dicom_Tags::TemporalPositionIndex => 2134312,
Dicom_Tags::NominalCardiacTriggerDelayTime => 2134355,
Dicom_Tags::NominalCardiacTriggerTimePriorToRPeak => 2134356,
Dicom_Tags::ActualCardiacTriggerTimePriorToRPeak => 2134357,
Dicom_Tags::FrameAcquisitionNumber => 2134358,
Dicom_Tags::DimensionIndexValues => 2134359,
Dicom_Tags::FrameComments => 2134360,
Dicom_Tags::ConcatenationUid => 2134369,
Dicom_Tags::InConcatenationNumber => 2134370,
Dicom_Tags::InConcatenationTotalNumber => 2134371,
Dicom_Tags::DimensionOrganizationUid => 2134372,
Dicom_Tags::DimensionIndexPointer => 2134373,
Dicom_Tags::FunctionalGroupPointer => 2134375,
Dicom_Tags::UnassignedSharedConvertedAttributesSequence => 2134384,
Dicom_Tags::UnassignedPerFrameConvertedAttributesSequence => 2134385,
Dicom_Tags::ConversionSourceAttributesSequence => 2134386,
Dicom_Tags::DimensionIndexPrivateCreator => 2134547,
Dicom_Tags::DimensionOrganizationSequence => 2134561,
Dicom_Tags::DimensionIndexSequence => 2134562,
Dicom_Tags::ConcatenationFrameOffsetNumber => 2134568,
Dicom_Tags::FunctionalGroupPrivateCreator => 2134584,
Dicom_Tags::NominalPercentageOfCardiacPhase => 2134593,
Dicom_Tags::NominalPercentageOfRespiratoryPhase => 2134597,
Dicom_Tags::StartingRespiratoryAmplitude => 2134598,
Dicom_Tags::StartingRespiratoryPhase => 2134599,
Dicom_Tags::EndingRespiratoryAmplitude => 2134600,
Dicom_Tags::EndingRespiratoryPhase => 2134601,
Dicom_Tags::RespiratoryTriggerType => 2134608,
Dicom_Tags::RRIntervalTimeNominal => 2134609,
Dicom_Tags::ActualCardiacTriggerDelayTime => 2134610,
Dicom_Tags::RespiratorySynchronizationSequence => 2134611,
Dicom_Tags::RespiratoryIntervalTime => 2134612,
Dicom_Tags::NominalRespiratoryTriggerDelayTime => 2134613,
Dicom_Tags::RespiratoryTriggerDelayThreshold => 2134614,
Dicom_Tags::ActualRespiratoryTriggerDelayTime => 2134615,
Dicom_Tags::ImagePositionVolume => 2134785,
Dicom_Tags::ImageOrientationVolume => 2134786,
Dicom_Tags::UltrasoundAcquisitionGeometry => 2134791,
Dicom_Tags::ApexPosition => 2134792,
Dicom_Tags::VolumeToTransducerMappingMatrix => 2134793,
Dicom_Tags::VolumeToTableMappingMatrix => 2134794,
Dicom_Tags::VolumeToTransducerRelationship => 2134795,
Dicom_Tags::PatientFrameOfReferenceSource => 2134796,
Dicom_Tags::TemporalPositionTimeOffset => 2134797,
Dicom_Tags::PlanePositionVolumeSequence => 2134798,
Dicom_Tags::PlaneOrientationVolumeSequence => 2134799,
Dicom_Tags::TemporalPositionSequence => 2134800,
Dicom_Tags::DimensionOrganizationType => 2134801,
Dicom_Tags::VolumeFrameOfReferenceUid => 2134802,
Dicom_Tags::TableFrameOfReferenceUid => 2134803,
Dicom_Tags::DimensionDescriptionLabel => 2135073,
Dicom_Tags::PatientOrientationInFrameSequence => 2135120,
Dicom_Tags::FrameLabel => 2135123,
Dicom_Tags::AcquisitionIndex => 2135320,
Dicom_Tags::ContributingSopInstancesReferenceSequence => 2135337,
Dicom_Tags::ReconstructionIndex => 2135350,
Dicom_Tags::LightPathFilterPassThroughWavelength => 2228225,
Dicom_Tags::LightPathFilterPassBand => 2228226,
Dicom_Tags::ImagePathFilterPassThroughWavelength => 2228227,
Dicom_Tags::ImagePathFilterPassBand => 2228228,
Dicom_Tags::PatientEyeMovementCommanded => 2228229,
Dicom_Tags::PatientEyeMovementCommandCodeSequence => 2228230,
Dicom_Tags::SphericalLensPower => 2228231,
Dicom_Tags::CylinderLensPower => 2228232,
Dicom_Tags::CylinderAxis => 2228233,
Dicom_Tags::EmmetropicMagnification => 2228234,
Dicom_Tags::IntraOcularPressure => 2228235,
Dicom_Tags::HorizontalFieldOfView => 2228236,
Dicom_Tags::PupilDilated => 2228237,
Dicom_Tags::DegreeOfDilation => 2228238,
Dicom_Tags::StereoBaselineAngle => 2228240,
Dicom_Tags::StereoBaselineDisplacement => 2228241,
Dicom_Tags::StereoHorizontalPixelOffset => 2228242,
Dicom_Tags::StereoVerticalPixelOffset => 2228243,
Dicom_Tags::StereoRotation => 2228244,
Dicom_Tags::AcquisitionDeviceTypeCodeSequence => 2228245,
Dicom_Tags::IlluminationTypeCodeSequence => 2228246,
Dicom_Tags::LightPathFilterTypeStackCodeSequence => 2228247,
Dicom_Tags::ImagePathFilterTypeStackCodeSequence => 2228248,
Dicom_Tags::LensesCodeSequence => 2228249,
Dicom_Tags::ChannelDescriptionCodeSequence => 2228250,
Dicom_Tags::RefractiveStateSequence => 2228251,
Dicom_Tags::MydriaticAgentCodeSequence => 2228252,
Dicom_Tags::RelativeImagePositionCodeSequence => 2228253,
Dicom_Tags::CameraAngleOfView => 2228254,
Dicom_Tags::StereoPairsSequence => 2228256,
Dicom_Tags::LeftImageSequence => 2228257,
Dicom_Tags::RightImageSequence => 2228258,
Dicom_Tags::StereoPairsPresent => 2228264,
Dicom_Tags::AxialLengthOfTheEye => 2228272,
Dicom_Tags::OphthalmicFrameLocationSequence => 2228273,
Dicom_Tags::ReferenceCoordinates => 2228274,
Dicom_Tags::DepthSpatialResolution => 2228277,
Dicom_Tags::MaximumDepthDistortion => 2228278,
Dicom_Tags::AlongScanSpatialResolution => 2228279,
Dicom_Tags::MaximumAlongScanDistortion => 2228280,
Dicom_Tags::OphthalmicImageOrientation => 2228281,
Dicom_Tags::DepthOfTransverseImage => 2228289,
Dicom_Tags::MydriaticAgentConcentrationUnitsSequence => 2228290,
Dicom_Tags::AcrossScanSpatialResolution => 2228296,
Dicom_Tags::MaximumAcrossScanDistortion => 2228297,
Dicom_Tags::MydriaticAgentConcentration => 2228302,
Dicom_Tags::IlluminationWaveLength => 2228309,
Dicom_Tags::IlluminationPower => 2228310,
Dicom_Tags::IlluminationBandwidth => 2228311,
Dicom_Tags::MydriaticAgentSequence => 2228312,
Dicom_Tags::OphthalmicAxialMeasurementsRightEyeSequence => 2232327,
Dicom_Tags::OphthalmicAxialMeasurementsLeftEyeSequence => 2232328,
Dicom_Tags::OphthalmicAxialMeasurementsDeviceType => 2232329,
Dicom_Tags::OphthalmicAxialLengthMeasurementsType => 2232336,
Dicom_Tags::OphthalmicAxialLengthSequence => 2232338,
Dicom_Tags::OphthalmicAxialLength => 2232345,
Dicom_Tags::LensStatusCodeSequence => 2232356,
Dicom_Tags::VitreousStatusCodeSequence => 2232357,
Dicom_Tags::IolFormulaCodeSequence => 2232360,
Dicom_Tags::IolFormulaDetail => 2232361,
Dicom_Tags::KeratometerIndex => 2232371,
Dicom_Tags::SourceOfOphthalmicAxialLengthCodeSequence => 2232373,
Dicom_Tags::TargetRefraction => 2232375,
Dicom_Tags::RefractiveProcedureOccurred => 2232377,
Dicom_Tags::RefractiveSurgeryTypeCodeSequence => 2232384,
Dicom_Tags::OphthalmicUltrasoundMethodCodeSequence => 2232388,
Dicom_Tags::OphthalmicAxialLengthMeasurementsSequence => 2232400,
Dicom_Tags::IolPower => 2232403,
Dicom_Tags::PredictedRefractiveError => 2232404,
Dicom_Tags::OphthalmicAxialLengthVelocity => 2232409,
Dicom_Tags::LensStatusDescription => 2232421,
Dicom_Tags::VitreousStatusDescription => 2232422,
Dicom_Tags::IolPowerSequence => 2232464,
Dicom_Tags::LensConstantSequence => 2232466,
Dicom_Tags::IolManufacturer => 2232467,
Dicom_Tags::LensConstantDescription => 2232468,
Dicom_Tags::ImplantName => 2232469,
Dicom_Tags::KeratometryMeasurementTypeCodeSequence => 2232470,
Dicom_Tags::ImplantPartNumber => 2232471,
Dicom_Tags::ReferencedOphthalmicAxialMeasurementsSequence => 2232576,
Dicom_Tags::OphthalmicAxialLengthMeasurementsSegmentNameCodeSequence => 2232577,
Dicom_Tags::RefractiveErrorBeforeRefractiveSurgeryCodeSequence => 2232579,
Dicom_Tags::IolPowerForExactEmmetropia => 2232609,
Dicom_Tags::IolPowerForExactTargetRefraction => 2232610,
Dicom_Tags::AnteriorChamberDepthDefinitionCodeSequence => 2232613,
Dicom_Tags::LensThicknessSequence => 2232615,
Dicom_Tags::AnteriorChamberDepthSequence => 2232616,
Dicom_Tags::LensThickness => 2232624,
Dicom_Tags::AnteriorChamberDepth => 2232625,
Dicom_Tags::SourceOfLensThicknessDataCodeSequence => 2232626,
Dicom_Tags::SourceOfAnteriorChamberDepthDataCodeSequence => 2232627,
Dicom_Tags::SourceOfRefractiveMeasurementsSequence => 2232628,
Dicom_Tags::SourceOfRefractiveMeasurementsCodeSequence => 2232629,
Dicom_Tags::OphthalmicAxialLengthMeasurementModified => 2232640,
Dicom_Tags::OphthalmicAxialLengthDataSourceCodeSequence => 2232656,
Dicom_Tags::OphthalmicAxialLengthAcquisitionMethodCodeSequence => 2232659,
Dicom_Tags::SignalToNoiseRatio => 2232661,
Dicom_Tags::OphthalmicAxialLengthDataSourceDescription => 2232665,
Dicom_Tags::OphthalmicAxialLengthMeasurementsTotalLengthSequence => 2232848,
Dicom_Tags::OphthalmicAxialLengthMeasurementsSegmentalLengthSequence => 2232849,
Dicom_Tags::OphthalmicAxialLengthMeasurementsLengthSummationSequence => 2232850,
Dicom_Tags::UltrasoundOphthalmicAxialLengthMeasurementsSequence => 2232864,
Dicom_Tags::OpticalOphthalmicAxialLengthMeasurementsSequence => 2232869,
Dicom_Tags::UltrasoundSelectedOphthalmicAxialLengthSequence => 2232880,
Dicom_Tags::OphthalmicAxialLengthSelectionMethodCodeSequence => 2232912,
Dicom_Tags::OpticalSelectedOphthalmicAxialLengthSequence => 2232917,
Dicom_Tags::SelectedSegmentalOphthalmicAxialLengthSequence => 2232919,
Dicom_Tags::SelectedTotalOphthalmicAxialLengthSequence => 2232928,
Dicom_Tags::OphthalmicAxialLengthQualityMetricSequence => 2232930,
Dicom_Tags::OphthalmicAxialLengthQualityMetricTypeCodeSequence => 2232933,
Dicom_Tags::OphthalmicAxialLengthQualityMetricTypeDescription => 2232947,
Dicom_Tags::IntraocularLensCalculationsRightEyeSequence => 2233088,
Dicom_Tags::IntraocularLensCalculationsLeftEyeSequence => 2233104,
Dicom_Tags::ReferencedOphthalmicAxialLengthMeasurementQcImageSequence => 2233136,
Dicom_Tags::OphthalmicMappingDeviceType => 2233365,
Dicom_Tags::AcquisitionMethodCodeSequence => 2233376,
Dicom_Tags::AcquisitionMethodAlgorithmSequence => 2233379,
Dicom_Tags::OphthalmicThicknessMapTypeCodeSequence => 2233398,
Dicom_Tags::OphthalmicThicknessMappingNormalsSequence => 2233411,
Dicom_Tags::RetinalThicknessDefinitionCodeSequence => 2233413,
Dicom_Tags::PixelValueMappingToCodedConceptSequence => 2233424,
Dicom_Tags::MappedPixelValue => 2233426,
Dicom_Tags::PixelValueMappingExplanation => 2233428,
Dicom_Tags::OphthalmicThicknessMapQualityThresholdSequence => 2233432,
Dicom_Tags::OphthalmicThicknessMapThresholdQualityRating => 2233440,
Dicom_Tags::AnatomicStructureReferencePoint => 2233443,
Dicom_Tags::RegistrationToLocalizerSequence => 2233445,
Dicom_Tags::RegisteredLocalizerUnits => 2233446,
Dicom_Tags::RegisteredLocalizerTopLeftHandCorner => 2233447,
Dicom_Tags::RegisteredLocalizerBottomRightHandCorner => 2233448,
Dicom_Tags::OphthalmicThicknessMapQualityRatingSequence => 2233456,
Dicom_Tags::RelevantOptAttributesSequence => 2233458,
Dicom_Tags::TransformationMethodCodeSequence => 2233618,
Dicom_Tags::TransformationAlgorithmSequence => 2233619,
Dicom_Tags::OphthalmicAxialLengthMethod => 2233621,
Dicom_Tags::OphthalmicFov => 2233623,
Dicom_Tags::TwoDimensionalToThreeDimensionalMapSequence => 2233624,
Dicom_Tags::WideFieldOphthalmicPhotographyQualityRatingSequence => 2233637,
Dicom_Tags::WideFieldOphthalmicPhotographyQualityThresholdSequence => 2233638,
Dicom_Tags::WideFieldOphthalmicPhotographyThresholdQualityRating => 2233639,
Dicom_Tags::XCoordinatesCenterPixelViewAngle => 2233640,
Dicom_Tags::YCoordinatesCenterPixelViewAngle => 2233641,
Dicom_Tags::NumberOfMapPoints => 2233648,
Dicom_Tags::TwoDimensionalToThreeDimensionalMapData => 2233649,
Dicom_Tags::VisualFieldHorizontalExtent => 2359312,
Dicom_Tags::VisualFieldVerticalExtent => 2359313,
Dicom_Tags::VisualFieldShape => 2359314,
Dicom_Tags::ScreeningTestModeCodeSequence => 2359318,
Dicom_Tags::MaximumStimulusLuminance => 2359320,
Dicom_Tags::BackgroundLuminance => 2359328,
Dicom_Tags::StimulusColorCodeSequence => 2359329,
Dicom_Tags::BackgroundIlluminationColorCodeSequence => 2359332,
Dicom_Tags::StimulusArea => 2359333,
Dicom_Tags::StimulusPresentationTime => 2359336,
Dicom_Tags::FixationSequence => 2359346,
Dicom_Tags::FixationMonitoringCodeSequence => 2359347,
Dicom_Tags::VisualFieldCatchTrialSequence => 2359348,
Dicom_Tags::FixationCheckedQuantity => 2359349,
Dicom_Tags::PatientNotProperlyFixatedQuantity => 2359350,
Dicom_Tags::PresentedVisualStimuliDataFlag => 2359351,
Dicom_Tags::NumberOfVisualStimuli => 2359352,
Dicom_Tags::ExcessiveFixationLossesDataFlag => 2359353,
Dicom_Tags::ExcessiveFixationLosses => 2359360,
Dicom_Tags::StimuliRetestingQuantity => 2359362,
Dicom_Tags::CommentsOnPatientSPerformanceOfVisualField => 2359364,
Dicom_Tags::FalseNegativesEstimateFlag => 2359365,
Dicom_Tags::FalseNegativesEstimate => 2359366,
Dicom_Tags::NegativeCatchTrialsQuantity => 2359368,
Dicom_Tags::FalseNegativesQuantity => 2359376,
Dicom_Tags::ExcessiveFalseNegativesDataFlag => 2359377,
Dicom_Tags::ExcessiveFalseNegatives => 2359378,
Dicom_Tags::FalsePositivesEstimateFlag => 2359379,
Dicom_Tags::FalsePositivesEstimate => 2359380,
Dicom_Tags::CatchTrialsDataFlag => 2359381,
Dicom_Tags::PositiveCatchTrialsQuantity => 2359382,
Dicom_Tags::TestPointNormalsDataFlag => 2359383,
Dicom_Tags::TestPointNormalsSequence => 2359384,
Dicom_Tags::GlobalDeviationProbabilityNormalsFlag => 2359385,
Dicom_Tags::FalsePositivesQuantity => 2359392,
Dicom_Tags::ExcessiveFalsePositivesDataFlag => 2359393,
Dicom_Tags::ExcessiveFalsePositives => 2359394,
Dicom_Tags::VisualFieldTestNormalsFlag => 2359395,
Dicom_Tags::ResultsNormalsSequence => 2359396,
Dicom_Tags::AgeCorrectedSensitivityDeviationAlgorithmSequence => 2359397,
Dicom_Tags::GlobalDeviationFromNormal => 2359398,
Dicom_Tags::GeneralizedDefectSensitivityDeviationAlgorithmSequence => 2359399,
Dicom_Tags::LocalizedDeviationFromNormal => 2359400,
Dicom_Tags::PatientReliabilityIndicator => 2359401,
Dicom_Tags::VisualFieldMeanSensitivity => 2359408,
Dicom_Tags::GlobalDeviationProbability => 2359409,
Dicom_Tags::LocalDeviationProbabilityNormalsFlag => 2359410,
Dicom_Tags::LocalizedDeviationProbability => 2359411,
Dicom_Tags::ShortTermFluctuationCalculated => 2359412,
Dicom_Tags::ShortTermFluctuation => 2359413,
Dicom_Tags::ShortTermFluctuationProbabilityCalculated => 2359414,
Dicom_Tags::ShortTermFluctuationProbability => 2359415,
Dicom_Tags::CorrectedLocalizedDeviationFromNormalCalculated => 2359416,
Dicom_Tags::CorrectedLocalizedDeviationFromNormal => 2359417,
Dicom_Tags::CorrectedLocalizedDeviationFromNormalProbabilityCalculated => 2359424,
Dicom_Tags::CorrectedLocalizedDeviationFromNormalProbability => 2359425,
Dicom_Tags::GlobalDeviationProbabilitySequence => 2359427,
Dicom_Tags::LocalizedDeviationProbabilitySequence => 2359429,
Dicom_Tags::FovealSensitivityMeasured => 2359430,
Dicom_Tags::FovealSensitivity => 2359431,
Dicom_Tags::VisualFieldTestDuration => 2359432,
Dicom_Tags::VisualFieldTestPointSequence => 2359433,
Dicom_Tags::VisualFieldTestPointXCoordinate => 2359440,
Dicom_Tags::VisualFieldTestPointYCoordinate => 2359441,
Dicom_Tags::AgeCorrectedSensitivityDeviationValue => 2359442,
Dicom_Tags::StimulusResults => 2359443,
Dicom_Tags::SensitivityValue => 2359444,
Dicom_Tags::RetestStimulusSeen => 2359445,
Dicom_Tags::RetestSensitivityValue => 2359446,
Dicom_Tags::VisualFieldTestPointNormalsSequence => 2359447,
Dicom_Tags::QuantifiedDefect => 2359448,
Dicom_Tags::AgeCorrectedSensitivityDeviationProbabilityValue => 2359552,
Dicom_Tags::GeneralizedDefectCorrectedSensitivityDeviationFlag => 2359554,
Dicom_Tags::GeneralizedDefectCorrectedSensitivityDeviationValue => 2359555,
Dicom_Tags::GeneralizedDefectCorrectedSensitivityDeviationProbabilityValue => 2359556,
Dicom_Tags::MinimumSensitivityValue => 2359557,
Dicom_Tags::BlindSpotLocalized => 2359558,
Dicom_Tags::BlindSpotXCoordinate => 2359559,
Dicom_Tags::BlindSpotYCoordinate => 2359560,
Dicom_Tags::VisualAcuityMeasurementSequence => 2359568,
Dicom_Tags::RefractiveParametersUsedOnPatientSequence => 2359570,
Dicom_Tags::MeasurementLaterality => 2359571,
Dicom_Tags::OphthalmicPatientClinicalInformationLeftEyeSequence => 2359572,
Dicom_Tags::OphthalmicPatientClinicalInformationRightEyeSequence => 2359573,
Dicom_Tags::FovealPointNormativeDataFlag => 2359575,
Dicom_Tags::FovealPointProbabilityValue => 2359576,
Dicom_Tags::ScreeningBaselineMeasured => 2359584,
Dicom_Tags::ScreeningBaselineMeasuredSequence => 2359586,
Dicom_Tags::ScreeningBaselineType => 2359588,
Dicom_Tags::ScreeningBaselineValue => 2359590,
Dicom_Tags::AlgorithmSource => 2359810,
Dicom_Tags::DataSetName => 2360070,
Dicom_Tags::DataSetVersion => 2360071,
Dicom_Tags::DataSetSource => 2360072,
Dicom_Tags::DataSetDescription => 2360073,
Dicom_Tags::VisualFieldTestReliabilityGlobalIndexSequence => 2360087,
Dicom_Tags::VisualFieldGlobalResultsIndexSequence => 2360096,
Dicom_Tags::DataObservationSequence => 2360101,
Dicom_Tags::IndexNormalsFlag => 2360120,
Dicom_Tags::IndexProbability => 2360129,
Dicom_Tags::IndexProbabilitySequence => 2360132,
Dicom_Tags::SamplesPerPixel => 2621442,
Dicom_Tags::SamplesPerPixelUsed => 2621443,
Dicom_Tags::PhotometricInterpretation => 2621444,
Dicom_Tags::ImageDimensions => 2621445,
Dicom_Tags::PlanarConfiguration => 2621446,
Dicom_Tags::NumberOfFrames => 2621448,
Dicom_Tags::FrameIncrementPointer => 2621449,
Dicom_Tags::FrameDimensionPointer => 2621450,
Dicom_Tags::Rows => 2621456,
Dicom_Tags::Columns => 2621457,
Dicom_Tags::Planes => 2621458,
Dicom_Tags::UltrasoundColorDataPresent => 2621460,
Dicom_Tags::PixelSpacing => 2621488,
Dicom_Tags::ZoomFactor => 2621489,
Dicom_Tags::ZoomCenter => 2621490,
Dicom_Tags::PixelAspectRatio => 2621492,
Dicom_Tags::ImageFormat => 2621504,
Dicom_Tags::ManipulatedImage => 2621520,
Dicom_Tags::CorrectedImage => 2621521,
Dicom_Tags::CompressionRecognitionCode => 2621535,
Dicom_Tags::CompressionCode => 2621536,
Dicom_Tags::CompressionOriginator => 2621537,
Dicom_Tags::CompressionLabel => 2621538,
Dicom_Tags::CompressionDescription => 2621539,
Dicom_Tags::CompressionSequence => 2621541,
Dicom_Tags::CompressionStepPointers => 2621542,
Dicom_Tags::RepeatInterval => 2621544,
Dicom_Tags::BitsGrouped => 2621545,
Dicom_Tags::PerimeterTable => 2621552,
Dicom_Tags::PerimeterValue => 2621553,
Dicom_Tags::PredictorRows => 2621568,
Dicom_Tags::PredictorColumns => 2621569,
Dicom_Tags::PredictorConstants => 2621570,
Dicom_Tags::BlockedPixels => 2621584,
Dicom_Tags::BlockRows => 2621585,
Dicom_Tags::BlockColumns => 2621586,
Dicom_Tags::RowOverlap => 2621587,
Dicom_Tags::ColumnOverlap => 2621588,
Dicom_Tags::BitsAllocated => 2621696,
Dicom_Tags::BitsStored => 2621697,
Dicom_Tags::HighBit => 2621698,
Dicom_Tags::PixelRepresentation => 2621699,
Dicom_Tags::SmallestValidPixelValue => 2621700,
Dicom_Tags::LargestValidPixelValue => 2621701,
Dicom_Tags::SmallestImagePixelValue => 2621702,
Dicom_Tags::LargestImagePixelValue => 2621703,
Dicom_Tags::SmallestPixelValueInSeries => 2621704,
Dicom_Tags::LargestPixelValueInSeries => 2621705,
Dicom_Tags::SmallestImagePixelValueInPlane => 2621712,
Dicom_Tags::LargestImagePixelValueInPlane => 2621713,
Dicom_Tags::PixelPaddingValue => 2621728,
Dicom_Tags::PixelPaddingRangeLimit => 2621729,
Dicom_Tags::FloatPixelPaddingValue => 2621730,
Dicom_Tags::DoubleFloatPixelPaddingValue => 2621731,
Dicom_Tags::FloatPixelPaddingRangeLimit => 2621732,
Dicom_Tags::DoubleFloatPixelPaddingRangeLimit => 2621733,
Dicom_Tags::ImageLocation => 2621952,
Dicom_Tags::QualityControlImage => 2622208,
Dicom_Tags::BurnedInAnnotation => 2622209,
Dicom_Tags::RecognizableVisualFeatures => 2622210,
Dicom_Tags::LongitudinalTemporalInformationModified => 2622211,
Dicom_Tags::ReferencedColorPaletteInstanceUid => 2622212,
Dicom_Tags::TransformLabel => 2622464,
Dicom_Tags::TransformVersionNumber => 2622465,
Dicom_Tags::NumberOfTransformSteps => 2622466,
Dicom_Tags::SequenceOfCompressedData => 2622467,
Dicom_Tags::DetailsOfCoefficients => 2622468,
Dicom_Tags::DctLabel => 2623232,
Dicom_Tags::DataBlockDescription => 2623233,
Dicom_Tags::DataBlock => 2623234,
Dicom_Tags::NormalizationFactorFormat => 2623248,
Dicom_Tags::ZonalMapNumberFormat => 2623264,
Dicom_Tags::ZonalMapLocation => 2623265,
Dicom_Tags::ZonalMapFormat => 2623266,
Dicom_Tags::AdaptiveMapFormat => 2623280,
Dicom_Tags::CodeNumberFormat => 2623296,
Dicom_Tags::PixelSpacingCalibrationType => 2624002,
Dicom_Tags::PixelSpacingCalibrationDescription => 2624004,
Dicom_Tags::PixelIntensityRelationship => 2625600,
Dicom_Tags::PixelIntensityRelationshipSign => 2625601,
Dicom_Tags::WindowCenter => 2625616,
Dicom_Tags::WindowWidth => 2625617,
Dicom_Tags::RescaleIntercept => 2625618,
Dicom_Tags::RescaleSlope => 2625619,
Dicom_Tags::RescaleType => 2625620,
Dicom_Tags::WindowCenterWidthExplanation => 2625621,
Dicom_Tags::VoiLutFunction => 2625622,
Dicom_Tags::GrayScale => 2625664,
Dicom_Tags::RecommendedViewingMode => 2625680,
Dicom_Tags::GrayLookupTableDescriptor => 2625792,
Dicom_Tags::RedPaletteColorLookupTableDescriptor => 2625793,
Dicom_Tags::GreenPaletteColorLookupTableDescriptor => 2625794,
Dicom_Tags::BluePaletteColorLookupTableDescriptor => 2625795,
Dicom_Tags::AlphaPaletteColorLookupTableDescriptor => 2625796,
Dicom_Tags::LargeRedPaletteColorLookupTableDescriptor => 2625809,
Dicom_Tags::LargeGreenPaletteColorLookupTableDescriptor => 2625810,
Dicom_Tags::LargeBluePaletteColorLookupTableDescriptor => 2625811,
Dicom_Tags::PaletteColorLookupTableUid => 2625945,
Dicom_Tags::GrayLookupTableData => 2626048,
Dicom_Tags::RedPaletteColorLookupTableData => 2626049,
Dicom_Tags::GreenPaletteColorLookupTableData => 2626050,
Dicom_Tags::BluePaletteColorLookupTableData => 2626051,
Dicom_Tags::AlphaPaletteColorLookupTableData => 2626052,
Dicom_Tags::LargeRedPaletteColorLookupTableData => 2626065,
Dicom_Tags::LargeGreenPaletteColorLookupTableData => 2626066,
Dicom_Tags::LargeBluePaletteColorLookupTableData => 2626067,
Dicom_Tags::LargePaletteColorLookupTableUid => 2626068,
Dicom_Tags::SegmentedRedPaletteColorLookupTableData => 2626081,
Dicom_Tags::SegmentedGreenPaletteColorLookupTableData => 2626082,
Dicom_Tags::SegmentedBluePaletteColorLookupTableData => 2626083,
Dicom_Tags::SegmentedAlphaPaletteColorLookupTableData => 2626084,
Dicom_Tags::BreastImplantPresent => 2626304,
Dicom_Tags::PartialView => 2626384,
Dicom_Tags::PartialViewDescription => 2626385,
Dicom_Tags::PartialViewCodeSequence => 2626386,
Dicom_Tags::SpatialLocationsPreserved => 2626394,
Dicom_Tags::DataFrameAssignmentSequence => 2626561,
Dicom_Tags::DataPathAssignment => 2626562,
Dicom_Tags::BitsMappedToColorLookupTable => 2626563,
Dicom_Tags::BlendingLut1Sequence => 2626564,
Dicom_Tags::BlendingLut1TransferFunction => 2626565,
Dicom_Tags::BlendingWeightConstant => 2626566,
Dicom_Tags::BlendingLookupTableDescriptor => 2626567,
Dicom_Tags::BlendingLookupTableData => 2626568,
Dicom_Tags::EnhancedPaletteColorLookupTableSequence => 2626571,
Dicom_Tags::BlendingLut2Sequence => 2626572,
Dicom_Tags::BlendingLut2TransferFunction => 2626573,
Dicom_Tags::DataPathId => 2626574,
Dicom_Tags::RgbLutTransferFunction => 2626575,
Dicom_Tags::AlphaLutTransferFunction => 2626576,
Dicom_Tags::IccProfile => 2629632,
Dicom_Tags::ColorSpace => 2629634,
Dicom_Tags::LossyImageCompression => 2629904,
Dicom_Tags::LossyImageCompressionRatio => 2629906,
Dicom_Tags::LossyImageCompressionMethod => 2629908,
Dicom_Tags::ModalityLutSequence => 2633728,
Dicom_Tags::LutDescriptor => 2633730,
Dicom_Tags::LutExplanation => 2633731,
Dicom_Tags::ModalityLutType => 2633732,
Dicom_Tags::LutData => 2633734,
Dicom_Tags::VoiLutSequence => 2633744,
Dicom_Tags::SoftcopyVoiLutSequence => 2634000,
Dicom_Tags::ImagePresentationComments => 2637824,
Dicom_Tags::BiPlaneAcquisitionSequence => 2641920,
Dicom_Tags::RepresentativeFrameNumber => 2646032,
Dicom_Tags::FrameNumbersOfInterestFoi => 2646048,
Dicom_Tags::FrameOfInterestDescription => 2646050,
Dicom_Tags::FrameOfInterestType => 2646051,
Dicom_Tags::MaskPointerS => 2646064,
Dicom_Tags::RWavePointer => 2646080,
Dicom_Tags::MaskSubtractionSequence => 2646272,
Dicom_Tags::MaskOperation => 2646273,
Dicom_Tags::ApplicableFrameRange => 2646274,
Dicom_Tags::MaskFrameNumbers => 2646288,
Dicom_Tags::ContrastFrameAveraging => 2646290,
Dicom_Tags::MaskSubPixelShift => 2646292,
Dicom_Tags::TidOffset => 2646304,
Dicom_Tags::MaskOperationExplanation => 2646416,
Dicom_Tags::EquipmentAdministratorSequence => 2650112,
Dicom_Tags::NumberOfDisplaySubsystems => 2650113,
Dicom_Tags::CurrentConfigurationId => 2650114,
Dicom_Tags::DisplaySubsystemId => 2650115,
Dicom_Tags::DisplaySubsystemName => 2650116,
Dicom_Tags::DisplaySubsystemDescription => 2650117,
Dicom_Tags::SystemStatus => 2650118,
Dicom_Tags::SystemStatusComment => 2650119,
Dicom_Tags::TargetLuminanceCharacteristicsSequence => 2650120,
Dicom_Tags::LuminanceCharacteristicsId => 2650121,
Dicom_Tags::DisplaySubsystemConfigurationSequence => 2650122,
Dicom_Tags::ConfigurationId => 2650123,
Dicom_Tags::ConfigurationName => 2650124,
Dicom_Tags::ConfigurationDescription => 2650125,
Dicom_Tags::ReferencedTargetLuminanceCharacteristicsId => 2650126,
Dicom_Tags::QaResultsSequence => 2650127,
Dicom_Tags::DisplaySubsystemQaResultsSequence => 2650128,
Dicom_Tags::ConfigurationQaResultsSequence => 2650129,
Dicom_Tags::MeasurementEquipmentSequence => 2650130,
Dicom_Tags::MeasurementFunctions => 2650131,
Dicom_Tags::MeasurementEquipmentType => 2650132,
Dicom_Tags::VisualEvaluationResultSequence => 2650133,
Dicom_Tags::DisplayCalibrationResultSequence => 2650134,
Dicom_Tags::DdlValue => 2650135,
Dicom_Tags::CiexyWhitePoint => 2650136,
Dicom_Tags::DisplayFunctionType => 2650137,
Dicom_Tags::GammaValue => 2650138,
Dicom_Tags::NumberOfLuminancePoints => 2650139,
Dicom_Tags::LuminanceResponseSequence => 2650140,
Dicom_Tags::TargetMinimumLuminance => 2650141,
Dicom_Tags::TargetMaximumLuminance => 2650142,
Dicom_Tags::LuminanceValue => 2650143,
Dicom_Tags::LuminanceResponseDescription => 2650144,
Dicom_Tags::WhitePointFlag => 2650145,
Dicom_Tags::DisplayDeviceTypeCodeSequence => 2650146,
Dicom_Tags::DisplaySubsystemSequence => 2650147,
Dicom_Tags::LuminanceResultSequence => 2650148,
Dicom_Tags::AmbientLightValueSource => 2650149,
Dicom_Tags::MeasuredCharacteristics => 2650150,
Dicom_Tags::LuminanceUniformityResultSequence => 2650151,
Dicom_Tags::VisualEvaluationTestSequence => 2650152,
Dicom_Tags::TestResult => 2650153,
Dicom_Tags::TestResultComment => 2650154,
Dicom_Tags::TestImageValidation => 2650155,
Dicom_Tags::TestPatternCodeSequence => 2650156,
Dicom_Tags::MeasurementPatternCodeSequence => 2650157,
Dicom_Tags::VisualEvaluationMethodCodeSequence => 2650158,
Dicom_Tags::PixelDataProviderUrl => 2654176,
Dicom_Tags::DataPointRows => 2658305,
Dicom_Tags::DataPointColumns => 2658306,
Dicom_Tags::SignalDomainColumns => 2658307,
Dicom_Tags::LargestMonochromePixelValue => 2658457,
Dicom_Tags::DataRepresentation => 2658568,
Dicom_Tags::PixelMeasuresSequence => 2658576,
Dicom_Tags::FrameVoiLutSequence => 2658610,
Dicom_Tags::PixelValueTransformationSequence => 2658629,
Dicom_Tags::SignalDomainRows => 2658869,
Dicom_Tags::DisplayFilterPercentage => 2659345,
Dicom_Tags::FramePixelShiftSequence => 2659349,
Dicom_Tags::SubtractionItemId => 2659350,
Dicom_Tags::PixelIntensityRelationshipLutSequence => 2659362,
Dicom_Tags::FramePixelDataPropertiesSequence => 2659395,
Dicom_Tags::GeometricalProperties => 2659396,
Dicom_Tags::GeometricMaximumDistortion => 2659397,
Dicom_Tags::ImageProcessingApplied => 2659398,
Dicom_Tags::MaskSelectionMode => 2659412,
Dicom_Tags::LutFunction => 2659444,
Dicom_Tags::MaskVisibilityPercentage => 2659448,
Dicom_Tags::PixelShiftSequence => 2659585,
Dicom_Tags::RegionPixelShiftSequence => 2659586,
Dicom_Tags::VerticesOfTheRegion => 2659587,
Dicom_Tags::MultiFramePresentationSequence => 2659589,
Dicom_Tags::PixelShiftFrameRange => 2659590,
Dicom_Tags::LutFrameRange => 2659591,
Dicom_Tags::ImageToEquipmentMappingMatrix => 2659616,
Dicom_Tags::EquipmentCoordinateSystemIdentification => 2659639,
Dicom_Tags::StudyStatusId => 3276810,
Dicom_Tags::StudyPriorityId => 3276812,
Dicom_Tags::StudyIdIssuer => 3276818,
Dicom_Tags::StudyVerifiedDate => 3276850,
Dicom_Tags::StudyVerifiedTime => 3276851,
Dicom_Tags::StudyReadDate => 3276852,
Dicom_Tags::StudyReadTime => 3276853,
Dicom_Tags::ScheduledStudyStartDate => 3280896,
Dicom_Tags::ScheduledStudyStartTime => 3280897,
Dicom_Tags::ScheduledStudyStopDate => 3280912,
Dicom_Tags::ScheduledStudyStopTime => 3280913,
Dicom_Tags::ScheduledStudyLocation => 3280928,
Dicom_Tags::ScheduledStudyLocationAeTitle => 3280929,
Dicom_Tags::ReasonForStudy => 3280944,
Dicom_Tags::RequestingPhysicianIdentificationSequence => 3280945,
Dicom_Tags::RequestingPhysician => 3280946,
Dicom_Tags::RequestingService => 3280947,
Dicom_Tags::RequestingServiceCodeSequence => 3280948,
Dicom_Tags::StudyArrivalDate => 3280960,
Dicom_Tags::StudyArrivalTime => 3280961,
Dicom_Tags::StudyCompletionDate => 3280976,
Dicom_Tags::StudyCompletionTime => 3280977,
Dicom_Tags::StudyComponentStatusId => 3280981,
Dicom_Tags::RequestedProcedureDescription => 3280992,
Dicom_Tags::RequestedProcedureCodeSequence => 3280996,
Dicom_Tags::RequestedContrastAgent => 3281008,
Dicom_Tags::StudyComments => 3293184,
Dicom_Tags::ReferencedPatientAliasSequence => 3670020,
Dicom_Tags::VisitStatusId => 3670024,
Dicom_Tags::AdmissionId => 3670032,
Dicom_Tags::IssuerOfAdmissionId => 3670033,
Dicom_Tags::IssuerOfAdmissionIdSequence => 3670036,
Dicom_Tags::RouteOfAdmissions => 3670038,
Dicom_Tags::ScheduledAdmissionDate => 3670042,
Dicom_Tags::ScheduledAdmissionTime => 3670043,
Dicom_Tags::ScheduledDischargeDate => 3670044,
Dicom_Tags::ScheduledDischargeTime => 3670045,
Dicom_Tags::ScheduledPatientInstitutionResidence => 3670046,
Dicom_Tags::AdmittingDate => 3670048,
Dicom_Tags::AdmittingTime => 3670049,
Dicom_Tags::DischargeDate => 3670064,
Dicom_Tags::DischargeTime => 3670066,
Dicom_Tags::DischargeDiagnosisDescription => 3670080,
Dicom_Tags::DischargeDiagnosisCodeSequence => 3670084,
Dicom_Tags::SpecialNeeds => 3670096,
Dicom_Tags::ServiceEpisodeId => 3670112,
Dicom_Tags::IssuerOfServiceEpisodeId => 3670113,
Dicom_Tags::ServiceEpisodeDescription => 3670114,
Dicom_Tags::IssuerOfServiceEpisodeIdSequence => 3670116,
Dicom_Tags::PertinentDocumentsSequence => 3670272,
Dicom_Tags::PertinentResourcesSequence => 3670273,
Dicom_Tags::ResourceDescription => 3670274,
Dicom_Tags::CurrentPatientLocation => 3670784,
Dicom_Tags::PatientSInstitutionResidence => 3671040,
Dicom_Tags::PatientState => 3671296,
Dicom_Tags::PatientClinicalTrialParticipationSequence => 3671298,
Dicom_Tags::VisitComments => 3686400,
Dicom_Tags::WaveformOriginality => 3801092,
Dicom_Tags::NumberOfWaveformChannels => 3801093,
Dicom_Tags::NumberOfWaveformSamples => 3801104,
Dicom_Tags::SamplingFrequency => 3801114,
Dicom_Tags::MultiplexGroupLabel => 3801120,
Dicom_Tags::ChannelDefinitionSequence => 3801600,
Dicom_Tags::WaveformChannelNumber => 3801602,
Dicom_Tags::ChannelLabel => 3801603,
Dicom_Tags::ChannelStatus => 3801605,
Dicom_Tags::ChannelSourceSequence => 3801608,
Dicom_Tags::ChannelSourceModifiersSequence => 3801609,
Dicom_Tags::SourceWaveformSequence => 3801610,
Dicom_Tags::ChannelDerivationDescription => 3801612,
Dicom_Tags::ChannelSensitivity => 3801616,
Dicom_Tags::ChannelSensitivityUnitsSequence => 3801617,
Dicom_Tags::ChannelSensitivityCorrectionFactor => 3801618,
Dicom_Tags::ChannelBaseline => 3801619,
Dicom_Tags::ChannelTimeSkew => 3801620,
Dicom_Tags::ChannelSampleSkew => 3801621,
Dicom_Tags::ChannelOffset => 3801624,
Dicom_Tags::WaveformBitsStored => 3801626,
Dicom_Tags::FilterLowFrequency => 3801632,
Dicom_Tags::FilterHighFrequency => 3801633,
Dicom_Tags::NotchFilterFrequency => 3801634,
Dicom_Tags::NotchFilterBandwidth => 3801635,
Dicom_Tags::WaveformDataDisplayScale => 3801648,
Dicom_Tags::WaveformDisplayBackgroundCielabValue => 3801649,
Dicom_Tags::WaveformPresentationGroupSequence => 3801664,
Dicom_Tags::PresentationGroupNumber => 3801665,
Dicom_Tags::ChannelDisplaySequence => 3801666,
Dicom_Tags::ChannelRecommendedDisplayCielabValue => 3801668,
Dicom_Tags::ChannelPosition => 3801669,
Dicom_Tags::DisplayShadingFlag => 3801670,
Dicom_Tags::FractionalChannelDisplayScale => 3801671,
Dicom_Tags::AbsoluteChannelDisplayScale => 3801672,
Dicom_Tags::MultiplexedAudioChannelsDescriptionCodeSequence => 3801856,
Dicom_Tags::ChannelIdentificationCode => 3801857,
Dicom_Tags::ChannelMode => 3801858,
Dicom_Tags::ScheduledStationAeTitle => 4194305,
Dicom_Tags::ScheduledProcedureStepStartDate => 4194306,
Dicom_Tags::ScheduledProcedureStepStartTime => 4194307,
Dicom_Tags::ScheduledProcedureStepEndDate => 4194308,
Dicom_Tags::ScheduledProcedureStepEndTime => 4194309,
Dicom_Tags::ScheduledPerformingPhysicianSName => 4194310,
Dicom_Tags::ScheduledProcedureStepDescription => 4194311,
Dicom_Tags::ScheduledProtocolCodeSequence => 4194312,
Dicom_Tags::ScheduledProcedureStepId => 4194313,
Dicom_Tags::StageCodeSequence => 4194314,
Dicom_Tags::ScheduledPerformingPhysicianIdentificationSequence => 4194315,
Dicom_Tags::ScheduledStationName => 4194320,
Dicom_Tags::ScheduledProcedureStepLocation => 4194321,
Dicom_Tags::PreMedication => 4194322,
Dicom_Tags::ScheduledProcedureStepStatus => 4194336,
Dicom_Tags::OrderPlacerIdentifierSequence => 4194342,
Dicom_Tags::OrderFillerIdentifierSequence => 4194343,
Dicom_Tags::LocalNamespaceEntityId => 4194353,
Dicom_Tags::UniversalEntityId => 4194354,
Dicom_Tags::UniversalEntityIdType => 4194355,
Dicom_Tags::IdentifierTypeCode => 4194357,
Dicom_Tags::AssigningFacilitySequence => 4194358,
Dicom_Tags::AssigningJurisdictionCodeSequence => 4194361,
Dicom_Tags::AssigningAgencyOrDepartmentCodeSequence => 4194362,
Dicom_Tags::ScheduledProcedureStepSequence => 4194560,
Dicom_Tags::ReferencedNonImageCompositeSopInstanceSequence => 4194848,
Dicom_Tags::PerformedStationAeTitle => 4194881,
Dicom_Tags::PerformedStationName => 4194882,
Dicom_Tags::PerformedLocation => 4194883,
Dicom_Tags::PerformedProcedureStepStartDate => 4194884,
Dicom_Tags::PerformedProcedureStepStartTime => 4194885,
Dicom_Tags::PerformedProcedureStepEndDate => 4194896,
Dicom_Tags::PerformedProcedureStepEndTime => 4194897,
Dicom_Tags::PerformedProcedureStepStatus => 4194898,
Dicom_Tags::PerformedProcedureStepId => 4194899,
Dicom_Tags::PerformedProcedureStepDescription => 4194900,
Dicom_Tags::PerformedProcedureTypeDescription => 4194901,
Dicom_Tags::PerformedProtocolCodeSequence => 4194912,
Dicom_Tags::PerformedProtocolType => 4194913,
Dicom_Tags::ScheduledStepAttributesSequence => 4194928,
Dicom_Tags::RequestAttributesSequence => 4194933,
Dicom_Tags::CommentsOnThePerformedProcedureStep => 4194944,
Dicom_Tags::PerformedProcedureStepDiscontinuationReasonCodeSequence => 4194945,
Dicom_Tags::QuantitySequence => 4194963,
Dicom_Tags::Quantity => 4194964,
Dicom_Tags::MeasuringUnitsSequence => 4194965,
Dicom_Tags::BillingItemSequence => 4194966,
Dicom_Tags::TotalTimeOfFluoroscopy => 4195072,
Dicom_Tags::TotalNumberOfExposures => 4195073,
Dicom_Tags::EntranceDose => 4195074,
Dicom_Tags::ExposedArea => 4195075,
Dicom_Tags::DistanceSourceToEntrance => 4195078,
Dicom_Tags::DistanceSourceToSupport => 4195079,
Dicom_Tags::ExposureDoseSequence => 4195086,
Dicom_Tags::CommentsOnRadiationDose => 4195088,
Dicom_Tags::XRayOutput => 4195090,
Dicom_Tags::HalfValueLayer => 4195092,
Dicom_Tags::OrganDose => 4195094,
Dicom_Tags::OrganExposed => 4195096,
Dicom_Tags::BillingProcedureStepSequence => 4195104,
Dicom_Tags::FilmConsumptionSequence => 4195105,
Dicom_Tags::BillingSuppliesAndDevicesSequence => 4195108,
Dicom_Tags::ReferencedProcedureStepSequence => 4195120,
Dicom_Tags::PerformedSeriesSequence => 4195136,
Dicom_Tags::CommentsOnTheScheduledProcedureStep => 4195328,
Dicom_Tags::ProtocolContextSequence => 4195392,
Dicom_Tags::ContentItemModifierSequence => 4195393,
Dicom_Tags::ScheduledSpecimenSequence => 4195584,
Dicom_Tags::SpecimenAccessionNumber => 4195594,
Dicom_Tags::ContainerIdentifier => 4195602,
Dicom_Tags::IssuerOfTheContainerIdentifierSequence => 4195603,
Dicom_Tags::AlternateContainerIdentifierSequence => 4195605,
Dicom_Tags::ContainerTypeCodeSequence => 4195608,
Dicom_Tags::ContainerDescription => 4195610,
Dicom_Tags::ContainerComponentSequence => 4195616,
Dicom_Tags::SpecimenSequence => 4195664,
Dicom_Tags::SpecimenIdentifier => 4195665,
Dicom_Tags::SpecimenDescriptionSequenceTrial => 4195666,
Dicom_Tags::SpecimenDescriptionTrial => 4195667,
Dicom_Tags::SpecimenUid => 4195668,
Dicom_Tags::AcquisitionContextSequence => 4195669,
Dicom_Tags::AcquisitionContextDescription => 4195670,
Dicom_Tags::SpecimenDescriptionSequence => 4195680,
Dicom_Tags::IssuerOfTheSpecimenIdentifierSequence => 4195682,
Dicom_Tags::SpecimenTypeCodeSequence => 4195738,
Dicom_Tags::SpecimenShortDescription => 4195840,
Dicom_Tags::SpecimenDetailedDescription => 4195842,
Dicom_Tags::SpecimenPreparationSequence => 4195856,
Dicom_Tags::SpecimenPreparationStepContentItemSequence => 4195858,
Dicom_Tags::SpecimenLocalizationContentItemSequence => 4195872,
Dicom_Tags::SlideIdentifier => 4196090,
Dicom_Tags::ImageCenterPointCoordinatesSequence => 4196122,
Dicom_Tags::XOffsetInSlideCoordinateSystem => 4196138,
Dicom_Tags::YOffsetInSlideCoordinateSystem => 4196154,
Dicom_Tags::ZOffsetInSlideCoordinateSystem => 4196170,
Dicom_Tags::PixelSpacingSequence => 4196568,
Dicom_Tags::CoordinateSystemAxisCodeSequence => 4196570,
Dicom_Tags::MeasurementUnitsCodeSequence => 4196586,
Dicom_Tags::VitalStainCodeSequenceTrial => 4196856,
Dicom_Tags::RequestedProcedureId => 4198401,
Dicom_Tags::ReasonForTheRequestedProcedure => 4198402,
Dicom_Tags::RequestedProcedurePriority => 4198403,
Dicom_Tags::PatientTransportArrangements => 4198404,
Dicom_Tags::RequestedProcedureLocation => 4198405,
Dicom_Tags::PlacerOrderNumberProcedure => 4198406,
Dicom_Tags::FillerOrderNumberProcedure => 4198407,
Dicom_Tags::ConfidentialityCode => 4198408,
Dicom_Tags::ReportingPriority => 4198409,
Dicom_Tags::ReasonForRequestedProcedureCodeSequence => 4198410,
Dicom_Tags::NamesOfIntendedRecipientsOfResults => 4198416,
Dicom_Tags::IntendedRecipientsOfResultsIdentificationSequence => 4198417,
Dicom_Tags::ReasonForPerformedProcedureCodeSequence => 4198418,
Dicom_Tags::RequestedProcedureDescriptionTrial => 4198496,
Dicom_Tags::PersonIdentificationCodeSequence => 4198657,
Dicom_Tags::PersonSAddress => 4198658,
Dicom_Tags::PersonSTelephoneNumbers => 4198659,
Dicom_Tags::PersonSTelecomInformation => 4198660,
Dicom_Tags::RequestedProcedureComments => 4199424,
Dicom_Tags::ReasonForTheImagingServiceRequest => 4202497,
Dicom_Tags::IssueDateOfImagingServiceRequest => 4202500,
Dicom_Tags::IssueTimeOfImagingServiceRequest => 4202501,
Dicom_Tags::PlacerOrderNumberImagingServiceRequestRetired => 4202502,
Dicom_Tags::FillerOrderNumberImagingServiceRequestRetired => 4202503,
Dicom_Tags::OrderEnteredBy => 4202504,
Dicom_Tags::OrderEntererSLocation => 4202505,
Dicom_Tags::OrderCallbackPhoneNumber => 4202512,
Dicom_Tags::OrderCallbackTelecomInformation => 4202513,
Dicom_Tags::PlacerOrderNumberImagingServiceRequest => 4202518,
Dicom_Tags::FillerOrderNumberImagingServiceRequest => 4202519,
Dicom_Tags::ImagingServiceRequestComments => 4203520,
Dicom_Tags::ConfidentialityConstraintOnPatientDataDescription => 4206593,
Dicom_Tags::GeneralPurposeScheduledProcedureStepStatus => 4210689,
Dicom_Tags::GeneralPurposePerformedProcedureStepStatus => 4210690,
Dicom_Tags::GeneralPurposeScheduledProcedureStepPriority => 4210691,
Dicom_Tags::ScheduledProcessingApplicationsCodeSequence => 4210692,
Dicom_Tags::ScheduledProcedureStepStartDatetime => 4210693,
Dicom_Tags::MultipleCopiesFlag => 4210694,
Dicom_Tags::PerformedProcessingApplicationsCodeSequence => 4210695,
Dicom_Tags::HumanPerformerCodeSequence => 4210697,
Dicom_Tags::ScheduledProcedureStepModificationDatetime => 4210704,
Dicom_Tags::ExpectedCompletionDatetime => 4210705,
Dicom_Tags::ResultingGeneralPurposePerformedProcedureStepsSequence => 4210709,
Dicom_Tags::ReferencedGeneralPurposeScheduledProcedureStepSequence => 4210710,
Dicom_Tags::ScheduledWorkitemCodeSequence => 4210712,
Dicom_Tags::PerformedWorkitemCodeSequence => 4210713,
Dicom_Tags::InputAvailabilityFlag => 4210720,
Dicom_Tags::InputInformationSequence => 4210721,
Dicom_Tags::RelevantInformationSequence => 4210722,
Dicom_Tags::ReferencedGeneralPurposeScheduledProcedureStepTransactionUid => 4210723,
Dicom_Tags::ScheduledStationNameCodeSequence => 4210725,
Dicom_Tags::ScheduledStationClassCodeSequence => 4210726,
Dicom_Tags::ScheduledStationGeographicLocationCodeSequence => 4210727,
Dicom_Tags::PerformedStationNameCodeSequence => 4210728,
Dicom_Tags::PerformedStationClassCodeSequence => 4210729,
Dicom_Tags::PerformedStationGeographicLocationCodeSequence => 4210736,
Dicom_Tags::RequestedSubsequentWorkitemCodeSequence => 4210737,
Dicom_Tags::NonDicomOutputCodeSequence => 4210738,
Dicom_Tags::OutputInformationSequence => 4210739,
Dicom_Tags::ScheduledHumanPerformersSequence => 4210740,
Dicom_Tags::ActualHumanPerformersSequence => 4210741,
Dicom_Tags::HumanPerformerSOrganization => 4210742,
Dicom_Tags::HumanPerformerSName => 4210743,
Dicom_Tags::RawDataHandling => 4210752,
Dicom_Tags::InputReadinessState => 4210753,
Dicom_Tags::PerformedProcedureStepStartDatetime => 4210768,
Dicom_Tags::PerformedProcedureStepEndDatetime => 4210769,
Dicom_Tags::ProcedureStepCancellationDatetime => 4210770,
Dicom_Tags::OutputDestinationSequence => 4210800,
Dicom_Tags::DicomStorageSequence => 4210801,
Dicom_Tags::StowRsStorageSequence => 4210802,
Dicom_Tags::StorageUrl => 4210803,
Dicom_Tags::XdsStorageSequence => 4210804,
Dicom_Tags::EntranceDoseInMgy => 4227842,
Dicom_Tags::ParametricMapFrameTypeSequence => 4231314,
Dicom_Tags::ReferencedImageRealWorldValueMappingSequence => 4231316,
Dicom_Tags::RealWorldValueMappingSequence => 4231318,
Dicom_Tags::PixelValueMappingCodeSequence => 4231320,
Dicom_Tags::LutLabel => 4231696,
Dicom_Tags::RealWorldValueLastValueMapped => 4231697,
Dicom_Tags::RealWorldValueLutData => 4231698,
Dicom_Tags::DoubleFloatRealWorldValueLastValueMapped => 4231699,
Dicom_Tags::DoubleFloatRealWorldValueFirstValueMapped => 4231700,
Dicom_Tags::RealWorldValueFirstValueMapped => 4231702,
Dicom_Tags::QuantityDefinitionSequence => 4231712,
Dicom_Tags::RealWorldValueIntercept => 4231716,
Dicom_Tags::RealWorldValueSlope => 4231717,
Dicom_Tags::FindingsFlagTrial => 4235271,
Dicom_Tags::RelationshipType => 4235280,
Dicom_Tags::FindingsSequenceTrial => 4235296,
Dicom_Tags::FindingsGroupUidTrial => 4235297,
Dicom_Tags::ReferencedFindingsGroupUidTrial => 4235298,
Dicom_Tags::FindingsGroupRecordingDateTrial => 4235299,
Dicom_Tags::FindingsGroupRecordingTimeTrial => 4235300,
Dicom_Tags::FindingsSourceCategoryCodeSequenceTrial => 4235302,
Dicom_Tags::VerifyingOrganization => 4235303,
Dicom_Tags::DocumentingOrganizationIdentifierCodeSequenceTrial => 4235304,
Dicom_Tags::VerificationDatetime => 4235312,
Dicom_Tags::ObservationDatetime => 4235314,
Dicom_Tags::ValueType => 4235328,
Dicom_Tags::ConceptNameCodeSequence => 4235331,
Dicom_Tags::MeasurementPrecisionDescriptionTrial => 4235335,
Dicom_Tags::ContinuityOfContent => 4235344,
Dicom_Tags::UrgencyOrPriorityAlertsTrial => 4235351,
Dicom_Tags::SequencingIndicatorTrial => 4235360,
Dicom_Tags::DocumentIdentifierCodeSequenceTrial => 4235366,
Dicom_Tags::DocumentAuthorTrial => 4235367,
Dicom_Tags::DocumentAuthorIdentifierCodeSequenceTrial => 4235368,
Dicom_Tags::IdentifierCodeSequenceTrial => 4235376,
Dicom_Tags::VerifyingObserverSequence => 4235379,
Dicom_Tags::ObjectBinaryIdentifierTrial => 4235380,
Dicom_Tags::VerifyingObserverName => 4235381,
Dicom_Tags::DocumentingObserverIdentifierCodeSequenceTrial => 4235382,
Dicom_Tags::AuthorObserverSequence => 4235384,
Dicom_Tags::ParticipantSequence => 4235386,
Dicom_Tags::CustodialOrganizationSequence => 4235388,
Dicom_Tags::ParticipationType => 4235392,
Dicom_Tags::ParticipationDatetime => 4235394,
Dicom_Tags::ObserverType => 4235396,
Dicom_Tags::ProcedureIdentifierCodeSequenceTrial => 4235397,
Dicom_Tags::VerifyingObserverIdentificationCodeSequence => 4235400,
Dicom_Tags::ObjectDirectoryBinaryIdentifierTrial => 4235401,
Dicom_Tags::EquivalentCdaDocumentSequence => 4235408,
Dicom_Tags::ReferencedWaveformChannels => 4235440,
Dicom_Tags::DateOfDocumentOrVerbalTransactionTrial => 4235536,
Dicom_Tags::TimeOfDocumentCreationOrVerbalTransactionTrial => 4235538,
Dicom_Tags::Datetime => 4235552,
Dicom_Tags::Date => 4235553,
Dicom_Tags::Time => 4235554,
Dicom_Tags::PersonName => 4235555,
Dicom_Tags::Uid => 4235556,
Dicom_Tags::ReportStatusIdTrial => 4235557,
Dicom_Tags::TemporalRangeType => 4235568,
Dicom_Tags::ReferencedSamplePositions => 4235570,
Dicom_Tags::ReferencedFrameNumbers => 4235574,
Dicom_Tags::ReferencedTimeOffsets => 4235576,
Dicom_Tags::ReferencedDatetime => 4235578,
Dicom_Tags::TextValue => 4235616,
Dicom_Tags::FloatingPointValue => 4235617,
Dicom_Tags::RationalNumeratorValue => 4235618,
Dicom_Tags::RationalDenominatorValue => 4235619,
Dicom_Tags::ObservationCategoryCodeSequenceTrial => 4235623,
Dicom_Tags::ConceptCodeSequence => 4235624,
Dicom_Tags::BibliographicCitationTrial => 4235626,
Dicom_Tags::PurposeOfReferenceCodeSequence => 4235632,
Dicom_Tags::ObservationUid => 4235633,
Dicom_Tags::ReferencedObservationUidTrial => 4235634,
Dicom_Tags::ReferencedObservationClassTrial => 4235635,
Dicom_Tags::ReferencedObjectObservationClassTrial => 4235636,
Dicom_Tags::AnnotationGroupNumber => 4235648,
Dicom_Tags::ObservationDateTrial => 4235666,
Dicom_Tags::ObservationTimeTrial => 4235667,
Dicom_Tags::MeasurementAutomationTrial => 4235668,
Dicom_Tags::ModifierCodeSequence => 4235669,
Dicom_Tags::IdentificationDescriptionTrial => 4235812,
Dicom_Tags::CoordinatesSetGeometricTypeTrial => 4235920,
Dicom_Tags::AlgorithmCodeSequenceTrial => 4235926,
Dicom_Tags::AlgorithmDescriptionTrial => 4235927,
Dicom_Tags::PixelCoordinatesSetTrial => 4235930,
Dicom_Tags::MeasuredValueSequence => 4236032,
Dicom_Tags::NumericValueQualifierCodeSequence => 4236033,
Dicom_Tags::CurrentObserverTrial => 4236039,
Dicom_Tags::NumericValue => 4236042,
Dicom_Tags::ReferencedAccessionSequenceTrial => 4236051,
Dicom_Tags::ReportStatusCommentTrial => 4236090,
Dicom_Tags::ProcedureContextSequenceTrial => 4236096,
Dicom_Tags::VerbalSourceTrial => 4236114,
Dicom_Tags::AddressTrial => 4236115,
Dicom_Tags::TelephoneNumberTrial => 4236116,
Dicom_Tags::VerbalSourceIdentifierCodeSequenceTrial => 4236120,
Dicom_Tags::PredecessorDocumentsSequence => 4236128,
Dicom_Tags::ReferencedRequestSequence => 4236144,
Dicom_Tags::PerformedProcedureCodeSequence => 4236146,
Dicom_Tags::CurrentRequestedProcedureEvidenceSequence => 4236149,
Dicom_Tags::ReportDetailSequenceTrial => 4236160,
Dicom_Tags::PertinentOtherEvidenceSequence => 4236165,
Dicom_Tags::Hl7StructuredDocumentReferenceSequence => 4236176,
Dicom_Tags::ObservationSubjectUidTrial => 4236290,
Dicom_Tags::ObservationSubjectClassTrial => 4236291,
Dicom_Tags::ObservationSubjectTypeCodeSequenceTrial => 4236292,
Dicom_Tags::CompletionFlag => 4236433,
Dicom_Tags::CompletionFlagDescription => 4236434,
Dicom_Tags::VerificationFlag => 4236435,
Dicom_Tags::ArchiveRequested => 4236436,
Dicom_Tags::PreliminaryFlag => 4236438,
Dicom_Tags::ContentTemplateSequence => 4236548,
Dicom_Tags::IdenticalDocumentsSequence => 4236581,
Dicom_Tags::ObservationSubjectContextFlagTrial => 4236800,
Dicom_Tags::ObserverContextFlagTrial => 4236801,
Dicom_Tags::ProcedureContextFlagTrial => 4236803,
Dicom_Tags::ContentSequence => 4237104,
Dicom_Tags::RelationshipSequenceTrial => 4237105,
Dicom_Tags::RelationshipTypeCodeSequenceTrial => 4237106,
Dicom_Tags::LanguageCodeSequenceTrial => 4237124,
Dicom_Tags::UniformResourceLocatorTrial => 4237714,
Dicom_Tags::WaveformAnnotationSequence => 4239392,
Dicom_Tags::TemplateIdentifier => 4250368,
Dicom_Tags::TemplateVersion => 4250374,
Dicom_Tags::TemplateLocalVersion => 4250375,
Dicom_Tags::TemplateExtensionFlag => 4250379,
Dicom_Tags::TemplateExtensionOrganizationUid => 4250380,
Dicom_Tags::TemplateExtensionCreatorUid => 4250381,
Dicom_Tags::ReferencedContentItemIdentifier => 4250483,
Dicom_Tags::Hl7InstanceIdentifier => 4251649,
Dicom_Tags::Hl7DocumentEffectiveTime => 4251652,
Dicom_Tags::Hl7DocumentTypeCodeSequence => 4251654,
Dicom_Tags::DocumentClassCodeSequence => 4251656,
Dicom_Tags::RetrieveUri => 4251664,
Dicom_Tags::RetrieveLocationUid => 4251665,
Dicom_Tags::TypeOfInstances => 4251680,
Dicom_Tags::DicomRetrievalSequence => 4251681,
Dicom_Tags::DicomMediaRetrievalSequence => 4251682,
Dicom_Tags::WadoRetrievalSequence => 4251683,
Dicom_Tags::XdsRetrievalSequence => 4251684,
Dicom_Tags::WadoRsRetrievalSequence => 4251685,
Dicom_Tags::RepositoryUniqueId => 4251696,
Dicom_Tags::HomeCommunityId => 4251697,
Dicom_Tags::DocumentTitle => 4325392,
Dicom_Tags::EncapsulatedDocument => 4325393,
Dicom_Tags::MimeTypeOfEncapsulatedDocument => 4325394,
Dicom_Tags::SourceInstanceSequence => 4325395,
Dicom_Tags::ListOfMimeTypes => 4325396,
Dicom_Tags::ProductPackageIdentifier => 4456449,
Dicom_Tags::SubstanceAdministrationApproval => 4456450,
Dicom_Tags::ApprovalStatusFurtherDescription => 4456451,
Dicom_Tags::ApprovalStatusDatetime => 4456452,
Dicom_Tags::ProductTypeCodeSequence => 4456455,
Dicom_Tags::ProductName => 4456456,
Dicom_Tags::ProductDescription => 4456457,
Dicom_Tags::ProductLotIdentifier => 4456458,
Dicom_Tags::ProductExpirationDatetime => 4456459,
Dicom_Tags::SubstanceAdministrationDatetime => 4456464,
Dicom_Tags::SubstanceAdministrationNotes => 4456465,
Dicom_Tags::SubstanceAdministrationDeviceId => 4456466,
Dicom_Tags::ProductParameterSequence => 4456467,
Dicom_Tags::SubstanceAdministrationParameterSequence => 4456473,
Dicom_Tags::LensDescription => 4587538,
Dicom_Tags::RightLensSequence => 4587540,
Dicom_Tags::LeftLensSequence => 4587541,
Dicom_Tags::UnspecifiedLateralityLensSequence => 4587542,
Dicom_Tags::CylinderSequence => 4587544,
Dicom_Tags::PrismSequence => 4587560,
Dicom_Tags::HorizontalPrismPower => 4587568,
Dicom_Tags::HorizontalPrismBase => 4587570,
Dicom_Tags::VerticalPrismPower => 4587572,
Dicom_Tags::VerticalPrismBase => 4587574,
Dicom_Tags::LensSegmentType => 4587576,
Dicom_Tags::OpticalTransmittance => 4587584,
Dicom_Tags::ChannelWidth => 4587586,
Dicom_Tags::PupilSize => 4587588,
Dicom_Tags::CornealSize => 4587590,
Dicom_Tags::AutorefractionRightEyeSequence => 4587600,
Dicom_Tags::AutorefractionLeftEyeSequence => 4587602,
Dicom_Tags::DistancePupillaryDistance => 4587616,
Dicom_Tags::NearPupillaryDistance => 4587618,
Dicom_Tags::IntermediatePupillaryDistance => 4587619,
Dicom_Tags::OtherPupillaryDistance => 4587620,
Dicom_Tags::KeratometryRightEyeSequence => 4587632,
Dicom_Tags::KeratometryLeftEyeSequence => 4587633,
Dicom_Tags::SteepKeratometricAxisSequence => 4587636,
Dicom_Tags::RadiusOfCurvature => 4587637,
Dicom_Tags::KeratometricPower => 4587638,
Dicom_Tags::KeratometricAxis => 4587639,
Dicom_Tags::FlatKeratometricAxisSequence => 4587648,
Dicom_Tags::BackgroundColor => 4587666,
Dicom_Tags::Optotype => 4587668,
Dicom_Tags::OptotypePresentation => 4587669,
Dicom_Tags::SubjectiveRefractionRightEyeSequence => 4587671,
Dicom_Tags::SubjectiveRefractionLeftEyeSequence => 4587672,
Dicom_Tags::AddNearSequence => 4587776,
Dicom_Tags::AddIntermediateSequence => 4587777,
Dicom_Tags::AddOtherSequence => 4587778,
Dicom_Tags::AddPower => 4587780,
Dicom_Tags::ViewingDistance => 4587782,
Dicom_Tags::VisualAcuityTypeCodeSequence => 4587809,
Dicom_Tags::VisualAcuityRightEyeSequence => 4587810,
Dicom_Tags::VisualAcuityLeftEyeSequence => 4587811,
Dicom_Tags::VisualAcuityBothEyesOpenSequence => 4587812,
Dicom_Tags::ViewingDistanceType => 4587813,
Dicom_Tags::VisualAcuityModifiers => 4587829,
Dicom_Tags::DecimalVisualAcuity => 4587831,
Dicom_Tags::OptotypeDetailedDefinition => 4587833,
Dicom_Tags::ReferencedRefractiveMeasurementsSequence => 4587845,
Dicom_Tags::SpherePower => 4587846,
Dicom_Tags::CylinderPower => 4587847,
Dicom_Tags::CornealTopographySurface => 4588033,
Dicom_Tags::CornealVertexLocation => 4588034,
Dicom_Tags::PupilCentroidXCoordinate => 4588035,
Dicom_Tags::PupilCentroidYCoordinate => 4588036,
Dicom_Tags::EquivalentPupilRadius => 4588037,
Dicom_Tags::CornealTopographyMapTypeCodeSequence => 4588039,
Dicom_Tags::VerticesOfTheOutlineOfPupil => 4588040,
Dicom_Tags::CornealTopographyMappingNormalsSequence => 4588048,
Dicom_Tags::MaximumCornealCurvatureSequence => 4588049,
Dicom_Tags::MaximumCornealCurvature => 4588050,
Dicom_Tags::MaximumCornealCurvatureLocation => 4588051,
Dicom_Tags::MinimumKeratometricSequence => 4588053,
Dicom_Tags::SimulatedKeratometricCylinderSequence => 4588056,
Dicom_Tags::AverageCornealPower => 4588064,
Dicom_Tags::CornealISValue => 4588068,
Dicom_Tags::AnalyzedArea => 4588071,
Dicom_Tags::SurfaceRegularityIndex => 4588080,
Dicom_Tags::SurfaceAsymmetryIndex => 4588082,
Dicom_Tags::CornealEccentricityIndex => 4588084,
Dicom_Tags::KeratoconusPredictionIndex => 4588086,
Dicom_Tags::DecimalPotentialVisualAcuity => 4588088,
Dicom_Tags::CornealTopographyMapQualityEvaluation => 4588098,
Dicom_Tags::SourceImageCornealProcessedDataSequence => 4588100,
Dicom_Tags::CornealPointLocation => 4588103,
Dicom_Tags::CornealPointEstimated => 4588104,
Dicom_Tags::AxialPower => 4588105,
Dicom_Tags::TangentialPower => 4588112,
Dicom_Tags::RefractivePower => 4588113,
Dicom_Tags::RelativeElevation => 4588114,
Dicom_Tags::CornealWavefront => 4588115,
Dicom_Tags::ImagedVolumeWidth => 4718593,
Dicom_Tags::ImagedVolumeHeight => 4718594,
Dicom_Tags::ImagedVolumeDepth => 4718595,
Dicom_Tags::TotalPixelMatrixColumns => 4718598,
Dicom_Tags::TotalPixelMatrixRows => 4718599,
Dicom_Tags::TotalPixelMatrixOriginSequence => 4718600,
Dicom_Tags::SpecimenLabelInImage => 4718608,
Dicom_Tags::FocusMethod => 4718609,
Dicom_Tags::ExtendedDepthOfField => 4718610,
Dicom_Tags::NumberOfFocalPlanes => 4718611,
Dicom_Tags::DistanceBetweenFocalPlanes => 4718612,
Dicom_Tags::RecommendedAbsentPixelCielabValue => 4718613,
Dicom_Tags::IlluminatorTypeCodeSequence => 4718848,
Dicom_Tags::ImageOrientationSlide => 4718850,
Dicom_Tags::OpticalPathSequence => 4718853,
Dicom_Tags::OpticalPathIdentifier => 4718854,
Dicom_Tags::OpticalPathDescription => 4718855,
Dicom_Tags::IlluminationColorCodeSequence => 4718856,
Dicom_Tags::SpecimenReferenceSequence => 4718864,
Dicom_Tags::CondenserLensPower => 4718865,
Dicom_Tags::ObjectiveLensPower => 4718866,
Dicom_Tags::ObjectiveLensNumericalAperture => 4718867,
Dicom_Tags::PaletteColorLookupTableSequence => 4718880,
Dicom_Tags::ReferencedImageNavigationSequence => 4719104,
Dicom_Tags::TopLeftHandCornerOfLocalizerArea => 4719105,
Dicom_Tags::BottomRightHandCornerOfLocalizerArea => 4719106,
Dicom_Tags::OpticalPathIdentificationSequence => 4719111,
Dicom_Tags::PlanePositionSlideSequence => 4719130,
Dicom_Tags::ColumnPositionInTotalImagePixelMatrix => 4719134,
Dicom_Tags::RowPositionInTotalImagePixelMatrix => 4719135,
Dicom_Tags::PixelOriginInterpretation => 4719361,
Dicom_Tags::CalibrationImage => 5242884,
Dicom_Tags::DeviceSequence => 5242896,
Dicom_Tags::ContainerComponentTypeCodeSequence => 5242898,
Dicom_Tags::ContainerComponentThickness => 5242899,
Dicom_Tags::DeviceLength => 5242900,
Dicom_Tags::ContainerComponentWidth => 5242901,
Dicom_Tags::DeviceDiameter => 5242902,
Dicom_Tags::DeviceDiameterUnits => 5242903,
Dicom_Tags::DeviceVolume => 5242904,
Dicom_Tags::InterMarkerDistance => 5242905,
Dicom_Tags::ContainerComponentMaterial => 5242906,
Dicom_Tags::ContainerComponentId => 5242907,
Dicom_Tags::ContainerComponentLength => 5242908,
Dicom_Tags::ContainerComponentDiameter => 5242909,
Dicom_Tags::ContainerComponentDescription => 5242910,
Dicom_Tags::DeviceDescription => 5242912,
Dicom_Tags::ContrastBolusIngredientPercentByVolume => 5373953,
Dicom_Tags::OctFocalDistance => 5373954,
Dicom_Tags::BeamSpotSize => 5373955,
Dicom_Tags::EffectiveRefractiveIndex => 5373956,
Dicom_Tags::OctAcquisitionDomain => 5373958,
Dicom_Tags::OctOpticalCenterWavelength => 5373959,
Dicom_Tags::AxialResolution => 5373960,
Dicom_Tags::RangingDepth => 5373961,
Dicom_Tags::ALineRate => 5373969,
Dicom_Tags::ALinesPerFrame => 5373970,
Dicom_Tags::CatheterRotationalRate => 5373971,
Dicom_Tags::ALinePixelSpacing => 5373972,
Dicom_Tags::ModeOfPercutaneousAccessSequence => 5373974,
Dicom_Tags::IntravascularOctFrameTypeSequence => 5373989,
Dicom_Tags::OctZOffsetApplied => 5373990,
Dicom_Tags::IntravascularFrameContentSequence => 5373991,
Dicom_Tags::IntravascularLongitudinalDistance => 5373992,
Dicom_Tags::IntravascularOctFrameContentSequence => 5373993,
Dicom_Tags::OctZOffsetCorrection => 5374000,
Dicom_Tags::CatheterDirectionOfRotation => 5374001,
Dicom_Tags::SeamLineLocation => 5374003,
Dicom_Tags::FirstALineLocation => 5374004,
Dicom_Tags::SeamLineIndex => 5374006,
Dicom_Tags::NumberOfPaddedALines => 5374008,
Dicom_Tags::InterpolationType => 5374009,
Dicom_Tags::RefractiveIndexApplied => 5374010,
Dicom_Tags::EnergyWindowVector => 5505040,
Dicom_Tags::NumberOfEnergyWindows => 5505041,
Dicom_Tags::EnergyWindowInformationSequence => 5505042,
Dicom_Tags::EnergyWindowRangeSequence => 5505043,
Dicom_Tags::EnergyWindowLowerLimit => 5505044,
Dicom_Tags::EnergyWindowUpperLimit => 5505045,
Dicom_Tags::RadiopharmaceuticalInformationSequence => 5505046,
Dicom_Tags::ResidualSyringeCounts => 5505047,
Dicom_Tags::EnergyWindowName => 5505048,
Dicom_Tags::DetectorVector => 5505056,
Dicom_Tags::NumberOfDetectors => 5505057,
Dicom_Tags::DetectorInformationSequence => 5505058,
Dicom_Tags::PhaseVector => 5505072,
Dicom_Tags::NumberOfPhases => 5505073,
Dicom_Tags::PhaseInformationSequence => 5505074,
Dicom_Tags::NumberOfFramesInPhase => 5505075,
Dicom_Tags::PhaseDelay => 5505078,
Dicom_Tags::PauseBetweenFrames => 5505080,
Dicom_Tags::PhaseDescription => 5505081,
Dicom_Tags::RotationVector => 5505104,
Dicom_Tags::NumberOfRotations => 5505105,
Dicom_Tags::RotationInformationSequence => 5505106,
Dicom_Tags::NumberOfFramesInRotation => 5505107,
Dicom_Tags::RRIntervalVector => 5505120,
Dicom_Tags::NumberOfRRIntervals => 5505121,
Dicom_Tags::GatedInformationSequence => 5505122,
Dicom_Tags::DataInformationSequence => 5505123,
Dicom_Tags::TimeSlotVector => 5505136,
Dicom_Tags::NumberOfTimeSlots => 5505137,
Dicom_Tags::TimeSlotInformationSequence => 5505138,
Dicom_Tags::TimeSlotTime => 5505139,
Dicom_Tags::SliceVector => 5505152,
Dicom_Tags::NumberOfSlices => 5505153,
Dicom_Tags::AngularViewVector => 5505168,
Dicom_Tags::TimeSliceVector => 5505280,
Dicom_Tags::NumberOfTimeSlices => 5505281,
Dicom_Tags::StartAngle => 5505536,
Dicom_Tags::TypeOfDetectorMotion => 5505538,
Dicom_Tags::TriggerVector => 5505552,
Dicom_Tags::NumberOfTriggersInPhase => 5505553,
Dicom_Tags::ViewCodeSequence => 5505568,
Dicom_Tags::ViewModifierCodeSequence => 5505570,
Dicom_Tags::RadionuclideCodeSequence => 5505792,
Dicom_Tags::AdministrationRouteCodeSequence => 5505794,
Dicom_Tags::RadiopharmaceuticalCodeSequence => 5505796,
Dicom_Tags::CalibrationDataSequence => 5505798,
Dicom_Tags::EnergyWindowNumber => 5505800,
Dicom_Tags::ImageId => 5506048,
Dicom_Tags::PatientOrientationCodeSequence => 5506064,
Dicom_Tags::PatientOrientationModifierCodeSequence => 5506066,
Dicom_Tags::PatientGantryRelationshipCodeSequence => 5506068,
Dicom_Tags::SliceProgressionDirection => 5506304,
Dicom_Tags::ScanProgressionDirection => 5506305,
Dicom_Tags::SeriesType => 5509120,
Dicom_Tags::Units => 5509121,
Dicom_Tags::CountsSource => 5509122,
Dicom_Tags::ReprojectionMethod => 5509124,
Dicom_Tags::SuvType => 5509126,
Dicom_Tags::RandomsCorrectionMethod => 5509376,
Dicom_Tags::AttenuationCorrectionMethod => 5509377,
Dicom_Tags::DecayCorrection => 5509378,
Dicom_Tags::ReconstructionMethod => 5509379,
Dicom_Tags::DetectorLinesOfResponseUsed => 5509380,
Dicom_Tags::ScatterCorrectionMethod => 5509381,
Dicom_Tags::AxialAcceptance => 5509632,
Dicom_Tags::AxialMash => 5509633,
Dicom_Tags::TransverseMash => 5509634,
Dicom_Tags::DetectorElementSize => 5509635,
Dicom_Tags::CoincidenceWindowWidth => 5509648,
Dicom_Tags::SecondaryCountsType => 5509664,
Dicom_Tags::FrameReferenceTime => 5509888,
Dicom_Tags::PrimaryPromptsCountsAccumulated => 5509904,
Dicom_Tags::SecondaryCountsAccumulated => 5509905,
Dicom_Tags::SliceSensitivityFactor => 5509920,
Dicom_Tags::DecayFactor => 5509921,
Dicom_Tags::DoseCalibrationFactor => 5509922,
Dicom_Tags::ScatterFractionFactor => 5509923,
Dicom_Tags::DeadTimeFactor => 5509924,
Dicom_Tags::ImageIndex => 5509936,
Dicom_Tags::CountsIncluded => 5510144,
Dicom_Tags::DeadTimeCorrectionFlag => 5510145,
Dicom_Tags::HistogramSequence => 6303744,
Dicom_Tags::HistogramNumberOfBins => 6303746,
Dicom_Tags::HistogramFirstBinValue => 6303748,
Dicom_Tags::HistogramLastBinValue => 6303750,
Dicom_Tags::HistogramBinWidth => 6303752,
Dicom_Tags::HistogramExplanation => 6303760,
Dicom_Tags::HistogramData => 6303776,
Dicom_Tags::SegmentationType => 6422529,
Dicom_Tags::SegmentSequence => 6422530,
Dicom_Tags::SegmentedPropertyCategoryCodeSequence => 6422531,
Dicom_Tags::SegmentNumber => 6422532,
Dicom_Tags::SegmentLabel => 6422533,
Dicom_Tags::SegmentDescription => 6422534,
Dicom_Tags::SegmentAlgorithmType => 6422536,
Dicom_Tags::SegmentAlgorithmName => 6422537,
Dicom_Tags::SegmentIdentificationSequence => 6422538,
Dicom_Tags::ReferencedSegmentNumber => 6422539,
Dicom_Tags::RecommendedDisplayGrayscaleValue => 6422540,
Dicom_Tags::RecommendedDisplayCielabValue => 6422541,
Dicom_Tags::MaximumFractionalValue => 6422542,
Dicom_Tags::SegmentedPropertyTypeCodeSequence => 6422543,
Dicom_Tags::SegmentationFractionalType => 6422544,
Dicom_Tags::SegmentedPropertyTypeModifierCodeSequence => 6422545,
Dicom_Tags::UsedSegmentsSequence => 6422546,
Dicom_Tags::TrackingId => 6422560,
Dicom_Tags::TrackingUid => 6422561,
Dicom_Tags::DeformableRegistrationSequence => 6553602,
Dicom_Tags::SourceFrameOfReferenceUid => 6553603,
Dicom_Tags::DeformableRegistrationGridSequence => 6553605,
Dicom_Tags::GridDimensions => 6553607,
Dicom_Tags::GridResolution => 6553608,
Dicom_Tags::VectorGridData => 6553609,
Dicom_Tags::PreDeformationMatrixRegistrationSequence => 6553615,
Dicom_Tags::PostDeformationMatrixRegistrationSequence => 6553616,
Dicom_Tags::NumberOfSurfaces => 6684673,
Dicom_Tags::SurfaceSequence => 6684674,
Dicom_Tags::SurfaceNumber => 6684675,
Dicom_Tags::SurfaceComments => 6684676,
Dicom_Tags::SurfaceProcessing => 6684681,
Dicom_Tags::SurfaceProcessingRatio => 6684682,
Dicom_Tags::SurfaceProcessingDescription => 6684683,
Dicom_Tags::RecommendedPresentationOpacity => 6684684,
Dicom_Tags::RecommendedPresentationType => 6684685,
Dicom_Tags::FiniteVolume => 6684686,
Dicom_Tags::Manifold => 6684688,
Dicom_Tags::SurfacePointsSequence => 6684689,
Dicom_Tags::SurfacePointsNormalsSequence => 6684690,
Dicom_Tags::SurfaceMeshPrimitivesSequence => 6684691,
Dicom_Tags::NumberOfSurfacePoints => 6684693,
Dicom_Tags::PointCoordinatesData => 6684694,
Dicom_Tags::PointPositionAccuracy => 6684695,
Dicom_Tags::MeanPointDistance => 6684696,
Dicom_Tags::MaximumPointDistance => 6684697,
Dicom_Tags::PointsBoundingBoxCoordinates => 6684698,
Dicom_Tags::AxisOfRotation => 6684699,
Dicom_Tags::CenterOfRotation => 6684700,
Dicom_Tags::NumberOfVectors => 6684702,
Dicom_Tags::VectorDimensionality => 6684703,
Dicom_Tags::VectorAccuracy => 6684704,
Dicom_Tags::VectorCoordinateData => 6684705,
Dicom_Tags::TrianglePointIndexList => 6684707,
Dicom_Tags::EdgePointIndexList => 6684708,
Dicom_Tags::VertexPointIndexList => 6684709,
Dicom_Tags::TriangleStripSequence => 6684710,
Dicom_Tags::TriangleFanSequence => 6684711,
Dicom_Tags::LineSequence => 6684712,
Dicom_Tags::PrimitivePointIndexList => 6684713,
Dicom_Tags::SurfaceCount => 6684714,
Dicom_Tags::ReferencedSurfaceSequence => 6684715,
Dicom_Tags::ReferencedSurfaceNumber => 6684716,
Dicom_Tags::SegmentSurfaceGenerationAlgorithmIdentificationSequence => 6684717,
Dicom_Tags::SegmentSurfaceSourceInstanceSequence => 6684718,
Dicom_Tags::AlgorithmFamilyCodeSequence => 6684719,
Dicom_Tags::AlgorithmNameCodeSequence => 6684720,
Dicom_Tags::AlgorithmVersion => 6684721,
Dicom_Tags::AlgorithmParameters => 6684722,
Dicom_Tags::FacetSequence => 6684724,
Dicom_Tags::SurfaceProcessingAlgorithmIdentificationSequence => 6684725,
Dicom_Tags::AlgorithmName => 6684726,
Dicom_Tags::RecommendedPointRadius => 6684727,
Dicom_Tags::RecommendedLineThickness => 6684728,
Dicom_Tags::LongPrimitivePointIndexList => 6684736,
Dicom_Tags::LongTrianglePointIndexList => 6684737,
Dicom_Tags::LongEdgePointIndexList => 6684738,
Dicom_Tags::LongVertexPointIndexList => 6684739,
Dicom_Tags::TrackSetSequence => 6684929,
Dicom_Tags::TrackSequence => 6684930,
Dicom_Tags::RecommendedDisplayCielabValueList => 6684931,
Dicom_Tags::TrackingAlgorithmIdentificationSequence => 6684932,
Dicom_Tags::TrackSetNumber => 6684933,
Dicom_Tags::TrackSetLabel => 6684934,
Dicom_Tags::TrackSetDescription => 6684935,
Dicom_Tags::TrackSetAnatomicalTypeCodeSequence => 6684936,
Dicom_Tags::MeasurementsSequence => 6684961,
Dicom_Tags::TrackSetStatisticsSequence => 6684964,
Dicom_Tags::FloatingPointValues => 6684965,
Dicom_Tags::TrackPointIndexList => 6684969,
Dicom_Tags::TrackStatisticsSequence => 6684976,
Dicom_Tags::MeasurementValuesSequence => 6684978,
Dicom_Tags::DiffusionAcquisitionCodeSequence => 6684979,
Dicom_Tags::DiffusionModelCodeSequence => 6684980,
Dicom_Tags::ImplantSize => 6840848,
Dicom_Tags::ImplantTemplateVersion => 6840865,
Dicom_Tags::ReplacedImplantTemplateSequence => 6840866,
Dicom_Tags::ImplantType => 6840867,
Dicom_Tags::DerivationImplantTemplateSequence => 6840868,
Dicom_Tags::OriginalImplantTemplateSequence => 6840869,
Dicom_Tags::EffectiveDatetime => 6840870,
Dicom_Tags::ImplantTargetAnatomySequence => 6840880,
Dicom_Tags::InformationFromManufacturerSequence => 6840928,
Dicom_Tags::NotificationFromManufacturerSequence => 6840933,
Dicom_Tags::InformationIssueDatetime => 6840944,
Dicom_Tags::InformationSummary => 6840960,
Dicom_Tags::ImplantRegulatoryDisapprovalCodeSequence => 6840992,
Dicom_Tags::OverallTemplateSpatialTolerance => 6840997,
Dicom_Tags::HpglDocumentSequence => 6841024,
Dicom_Tags::HpglDocumentId => 6841040,
Dicom_Tags::HpglDocumentLabel => 6841045,
Dicom_Tags::ViewOrientationCodeSequence => 6841056,
Dicom_Tags::ViewOrientationModifier => 6841072,
Dicom_Tags::HpglDocumentScaling => 6841074,
Dicom_Tags::HpglDocument => 6841088,
Dicom_Tags::HpglContourPenNumber => 6841104,
Dicom_Tags::HpglPenSequence => 6841120,
Dicom_Tags::HpglPenNumber => 6841136,
Dicom_Tags::HpglPenLabel => 6841152,
Dicom_Tags::HpglPenDescription => 6841157,
Dicom_Tags::RecommendedRotationPoint => 6841158,
Dicom_Tags::BoundingRectangle => 6841159,
Dicom_Tags::ImplantTemplate3dModelSurfaceNumber => 6841168,
Dicom_Tags::SurfaceModelDescriptionSequence => 6841184,
Dicom_Tags::SurfaceModelLabel => 6841216,
Dicom_Tags::SurfaceModelScalingFactor => 6841232,
Dicom_Tags::MaterialsCodeSequence => 6841248,
Dicom_Tags::CoatingMaterialsCodeSequence => 6841252,
Dicom_Tags::ImplantTypeCodeSequence => 6841256,
Dicom_Tags::FixationMethodCodeSequence => 6841260,
Dicom_Tags::MatingFeatureSetsSequence => 6841264,
Dicom_Tags::MatingFeatureSetId => 6841280,
Dicom_Tags::MatingFeatureSetLabel => 6841296,
Dicom_Tags::MatingFeatureSequence => 6841312,
Dicom_Tags::MatingFeatureId => 6841328,
Dicom_Tags::MatingFeatureDegreeOfFreedomSequence => 6841344,
Dicom_Tags::DegreeOfFreedomId => 6841360,
Dicom_Tags::DegreeOfFreedomType => 6841376,
Dicom_Tags::Tag2dMatingFeatureCoordinatesSequence => 6841392,
Dicom_Tags::ReferencedHpglDocumentId => 6841408,
Dicom_Tags::Tag2dMatingPoint => 6841424,
Dicom_Tags::Tag2dMatingAxes => 6841440,
Dicom_Tags::Tag2dDegreeOfFreedomSequence => 6841456,
Dicom_Tags::Tag3dDegreeOfFreedomAxis => 6841488,
Dicom_Tags::RangeOfFreedom => 6841504,
Dicom_Tags::Tag3dMatingPoint => 6841536,
Dicom_Tags::Tag3dMatingAxes => 6841552,
Dicom_Tags::Tag2dDegreeOfFreedomAxis => 6841584,
Dicom_Tags::PlanningLandmarkPointSequence => 6841600,
Dicom_Tags::PlanningLandmarkLineSequence => 6841616,
Dicom_Tags::PlanningLandmarkPlaneSequence => 6841632,
Dicom_Tags::PlanningLandmarkId => 6841648,
Dicom_Tags::PlanningLandmarkDescription => 6841664,
Dicom_Tags::PlanningLandmarkIdentificationCodeSequence => 6841669,
Dicom_Tags::Tag2dPointCoordinatesSequence => 6841680,
Dicom_Tags::Tag2dPointCoordinates => 6841696,
Dicom_Tags::Tag3dPointCoordinates => 6841744,
Dicom_Tags::Tag2dLineCoordinatesSequence => 6841760,
Dicom_Tags::Tag2dLineCoordinates => 6841776,
Dicom_Tags::Tag3dLineCoordinates => 6841808,
Dicom_Tags::Tag2dPlaneCoordinatesSequence => 6841824,
Dicom_Tags::Tag2dPlaneIntersection => 6841840,
Dicom_Tags::Tag3dPlaneOrigin => 6841872,
Dicom_Tags::Tag3dPlaneNormal => 6841888,
Dicom_Tags::GraphicAnnotationSequence => 7340033,
Dicom_Tags::GraphicLayer => 7340034,
Dicom_Tags::BoundingBoxAnnotationUnits => 7340035,
Dicom_Tags::AnchorPointAnnotationUnits => 7340036,
Dicom_Tags::GraphicAnnotationUnits => 7340037,
Dicom_Tags::UnformattedTextValue => 7340038,
Dicom_Tags::TextObjectSequence => 7340040,
Dicom_Tags::GraphicObjectSequence => 7340041,
Dicom_Tags::BoundingBoxTopLeftHandCorner => 7340048,
Dicom_Tags::BoundingBoxBottomRightHandCorner => 7340049,
Dicom_Tags::BoundingBoxTextHorizontalJustification => 7340050,
Dicom_Tags::AnchorPoint => 7340052,
Dicom_Tags::AnchorPointVisibility => 7340053,
Dicom_Tags::GraphicDimensions => 7340064,
Dicom_Tags::NumberOfGraphicPoints => 7340065,
Dicom_Tags::GraphicData => 7340066,
Dicom_Tags::GraphicType => 7340067,
Dicom_Tags::GraphicFilled => 7340068,
Dicom_Tags::ImageRotationRetired => 7340096,
Dicom_Tags::ImageHorizontalFlip => 7340097,
Dicom_Tags::ImageRotation => 7340098,
Dicom_Tags::DisplayedAreaTopLeftHandCornerTrial => 7340112,
Dicom_Tags::DisplayedAreaBottomRightHandCornerTrial => 7340113,
Dicom_Tags::DisplayedAreaTopLeftHandCorner => 7340114,
Dicom_Tags::DisplayedAreaBottomRightHandCorner => 7340115,
Dicom_Tags::DisplayedAreaSelectionSequence => 7340122,
Dicom_Tags::GraphicLayerSequence => 7340128,
Dicom_Tags::GraphicLayerOrder => 7340130,
Dicom_Tags::GraphicLayerRecommendedDisplayGrayscaleValue => 7340134,
Dicom_Tags::GraphicLayerRecommendedDisplayRgbValue => 7340135,
Dicom_Tags::GraphicLayerDescription => 7340136,
Dicom_Tags::ContentLabel => 7340160,
Dicom_Tags::ContentDescription => 7340161,
Dicom_Tags::PresentationCreationDate => 7340162,
Dicom_Tags::PresentationCreationTime => 7340163,
Dicom_Tags::ContentCreatorSName => 7340164,
Dicom_Tags::ContentCreatorSIdentificationCodeSequence => 7340166,
Dicom_Tags::AlternateContentDescriptionSequence => 7340167,
Dicom_Tags::PresentationSizeMode => 7340288,
Dicom_Tags::PresentationPixelSpacing => 7340289,
Dicom_Tags::PresentationPixelAspectRatio => 7340290,
Dicom_Tags::PresentationPixelMagnificationRatio => 7340291,
Dicom_Tags::GraphicGroupLabel => 7340551,
Dicom_Tags::GraphicGroupDescription => 7340552,
Dicom_Tags::CompoundGraphicSequence => 7340553,
Dicom_Tags::CompoundGraphicInstanceId => 7340582,
Dicom_Tags::FontName => 7340583,
Dicom_Tags::FontNameType => 7340584,
Dicom_Tags::CssFontName => 7340585,
Dicom_Tags::RotationAngle => 7340592,
Dicom_Tags::TextStyleSequence => 7340593,
Dicom_Tags::LineStyleSequence => 7340594,
Dicom_Tags::FillStyleSequence => 7340595,
Dicom_Tags::GraphicGroupSequence => 7340596,
Dicom_Tags::TextColorCielabValue => 7340609,
Dicom_Tags::HorizontalAlignment => 7340610,
Dicom_Tags::VerticalAlignment => 7340611,
Dicom_Tags::ShadowStyle => 7340612,
Dicom_Tags::ShadowOffsetX => 7340613,
Dicom_Tags::ShadowOffsetY => 7340614,
Dicom_Tags::ShadowColorCielabValue => 7340615,
Dicom_Tags::Underlined => 7340616,
Dicom_Tags::Bold => 7340617,
Dicom_Tags::Italic => 7340624,
Dicom_Tags::PatternOnColorCielabValue => 7340625,
Dicom_Tags::PatternOffColorCielabValue => 7340626,
Dicom_Tags::LineThickness => 7340627,
Dicom_Tags::LineDashingStyle => 7340628,
Dicom_Tags::LinePattern => 7340629,
Dicom_Tags::FillPattern => 7340630,
Dicom_Tags::FillMode => 7340631,
Dicom_Tags::ShadowOpacity => 7340632,
Dicom_Tags::GapLength => 7340641,
Dicom_Tags::DiameterOfVisibility => 7340642,
Dicom_Tags::RotationPoint => 7340659,
Dicom_Tags::TickAlignment => 7340660,
Dicom_Tags::ShowTickLabel => 7340664,
Dicom_Tags::TickLabelAlignment => 7340665,
Dicom_Tags::CompoundGraphicUnits => 7340674,
Dicom_Tags::PatternOnOpacity => 7340676,
Dicom_Tags::PatternOffOpacity => 7340677,
Dicom_Tags::MajorTicksSequence => 7340679,
Dicom_Tags::TickPosition => 7340680,
Dicom_Tags::TickLabel => 7340681,
Dicom_Tags::CompoundGraphicType => 7340692,
Dicom_Tags::GraphicGroupId => 7340693,
Dicom_Tags::ShapeType => 7340806,
Dicom_Tags::RegistrationSequence => 7340808,
Dicom_Tags::MatrixRegistrationSequence => 7340809,
Dicom_Tags::MatrixSequence => 7340810,
Dicom_Tags::FrameOfReferenceToDisplayedCoordinateSystemTransformationMatrix => 7340811,
Dicom_Tags::FrameOfReferenceTransformationMatrixType => 7340812,
Dicom_Tags::RegistrationTypeCodeSequence => 7340813,
Dicom_Tags::FiducialDescription => 7340815,
Dicom_Tags::FiducialIdentifier => 7340816,
Dicom_Tags::FiducialIdentifierCodeSequence => 7340817,
Dicom_Tags::ContourUncertaintyRadius => 7340818,
Dicom_Tags::UsedFiducialsSequence => 7340820,
Dicom_Tags::GraphicCoordinatesDataSequence => 7340824,
Dicom_Tags::FiducialUid => 7340826,
Dicom_Tags::FiducialSetSequence => 7340828,
Dicom_Tags::FiducialSequence => 7340830,
Dicom_Tags::GraphicLayerRecommendedDisplayCielabValue => 7341057,
Dicom_Tags::BlendingSequence => 7341058,
Dicom_Tags::RelativeOpacity => 7341059,
Dicom_Tags::ReferencedSpatialRegistrationSequence => 7341060,
Dicom_Tags::BlendingPosition => 7341061,
Dicom_Tags::PresentationDisplayCollectionUid => 7344385,
Dicom_Tags::PresentationSequenceCollectionUid => 7344386,
Dicom_Tags::PresentationSequencePositionIndex => 7344387,
Dicom_Tags::RenderedImageReferenceSequence => 7344388,
Dicom_Tags::VolumetricPresentationStateInputSequence => 7344641,
Dicom_Tags::PresentationInputType => 7344642,
Dicom_Tags::InputSequencePositionIndex => 7344643,
Dicom_Tags::Crop => 7344644,
Dicom_Tags::CroppingSpecificationIndex => 7344645,
Dicom_Tags::CompositingMethod => 7344646,
Dicom_Tags::VolumetricPresentationInputNumber => 7344647,
Dicom_Tags::ImageVolumeGeometry => 7344648,
Dicom_Tags::VolumeCroppingSequence => 7344897,
Dicom_Tags::VolumeCroppingMethod => 7344898,
Dicom_Tags::BoundingBoxCrop => 7344899,
Dicom_Tags::ObliqueCroppingPlaneSequence => 7344900,
Dicom_Tags::Plane => 7344901,
Dicom_Tags::PlaneNormal => 7344902,
Dicom_Tags::CroppingSpecificationNumber => 7344905,
Dicom_Tags::MultiPlanarReconstructionStyle => 7345409,
Dicom_Tags::MprThicknessType => 7345410,
Dicom_Tags::MprSlabThickness => 7345411,
Dicom_Tags::MprTopLeftHandCorner => 7345413,
Dicom_Tags::MprViewWidthDirection => 7345415,
Dicom_Tags::MprViewWidth => 7345416,
Dicom_Tags::NumberOfVolumetricCurvePoints => 7345420,
Dicom_Tags::VolumetricCurvePoints => 7345421,
Dicom_Tags::MprViewHeightDirection => 7345425,
Dicom_Tags::MprViewHeight => 7345426,
Dicom_Tags::PresentationStateClassificationComponentSequence => 7346177,
Dicom_Tags::ComponentType => 7346178,
Dicom_Tags::ComponentInputSequence => 7346179,
Dicom_Tags::VolumetricPresentationInputIndex => 7346180,
Dicom_Tags::PresentationStateCompositorComponentSequence => 7346181,
Dicom_Tags::WeightingTransferFunctionSequence => 7346182,
Dicom_Tags::WeightingLookupTableDescriptor => 7346183,
Dicom_Tags::WeightingLookupTableData => 7346184,
Dicom_Tags::VolumetricAnnotationSequence => 7346433,
Dicom_Tags::ReferencedStructuredContextSequence => 7346435,
Dicom_Tags::ReferencedContentItem => 7346436,
Dicom_Tags::VolumetricPresentationInputAnnotationSequence => 7346437,
Dicom_Tags::AnnotationClipping => 7346439,
Dicom_Tags::PresentationAnimationStyle => 7346689,
Dicom_Tags::RecommendedAnimationRate => 7346691,
Dicom_Tags::AnimationCurveSequence => 7346692,
Dicom_Tags::AnimationStepSize => 7346693,
Dicom_Tags::HangingProtocolName => 7471106,
Dicom_Tags::HangingProtocolDescription => 7471108,
Dicom_Tags::HangingProtocolLevel => 7471110,
Dicom_Tags::HangingProtocolCreator => 7471112,
Dicom_Tags::HangingProtocolCreationDatetime => 7471114,
Dicom_Tags::HangingProtocolDefinitionSequence => 7471116,
Dicom_Tags::HangingProtocolUserIdentificationCodeSequence => 7471118,
Dicom_Tags::HangingProtocolUserGroupName => 7471120,
Dicom_Tags::SourceHangingProtocolSequence => 7471122,
Dicom_Tags::NumberOfPriorsReferenced => 7471124,
Dicom_Tags::ImageSetsSequence => 7471136,
Dicom_Tags::ImageSetSelectorSequence => 7471138,
Dicom_Tags::ImageSetSelectorUsageFlag => 7471140,
Dicom_Tags::SelectorAttribute => 7471142,
Dicom_Tags::SelectorValueNumber => 7471144,
Dicom_Tags::TimeBasedImageSetsSequence => 7471152,
Dicom_Tags::ImageSetNumber => 7471154,
Dicom_Tags::ImageSetSelectorCategory => 7471156,
Dicom_Tags::RelativeTime => 7471160,
Dicom_Tags::RelativeTimeUnits => 7471162,
Dicom_Tags::AbstractPriorValue => 7471164,
Dicom_Tags::AbstractPriorCodeSequence => 7471166,
Dicom_Tags::ImageSetLabel => 7471168,
Dicom_Tags::SelectorAttributeVr => 7471184,
Dicom_Tags::SelectorSequencePointer => 7471186,
Dicom_Tags::SelectorSequencePointerPrivateCreator => 7471188,
Dicom_Tags::SelectorAttributePrivateCreator => 7471190,
Dicom_Tags::SelectorAeValue => 7471198,
Dicom_Tags::SelectorAsValue => 7471199,
Dicom_Tags::SelectorAtValue => 7471200,
Dicom_Tags::SelectorDaValue => 7471201,
Dicom_Tags::SelectorCsValue => 7471202,
Dicom_Tags::SelectorDtValue => 7471203,
Dicom_Tags::SelectorIsValue => 7471204,
Dicom_Tags::SelectorObValue => 7471205,
Dicom_Tags::SelectorLoValue => 7471206,
Dicom_Tags::SelectorOfValue => 7471207,
Dicom_Tags::SelectorLtValue => 7471208,
Dicom_Tags::SelectorOwValue => 7471209,
Dicom_Tags::SelectorPnValue => 7471210,
Dicom_Tags::SelectorTmValue => 7471211,
Dicom_Tags::SelectorShValue => 7471212,
Dicom_Tags::SelectorUnValue => 7471213,
Dicom_Tags::SelectorStValue => 7471214,
Dicom_Tags::SelectorUcValue => 7471215,
Dicom_Tags::SelectorUtValue => 7471216,
Dicom_Tags::SelectorUrValue => 7471217,
Dicom_Tags::SelectorDsValue => 7471218,
Dicom_Tags::SelectorOdValue => 7471219,
Dicom_Tags::SelectorFdValue => 7471220,
Dicom_Tags::SelectorOlValue => 7471221,
Dicom_Tags::SelectorFlValue => 7471222,
Dicom_Tags::SelectorUlValue => 7471224,
Dicom_Tags::SelectorUsValue => 7471226,
Dicom_Tags::SelectorSlValue => 7471228,
Dicom_Tags::SelectorSsValue => 7471230,
Dicom_Tags::SelectorUiValue => 7471231,
Dicom_Tags::SelectorCodeSequenceValue => 7471232,
Dicom_Tags::NumberOfScreens => 7471360,
Dicom_Tags::NominalScreenDefinitionSequence => 7471362,
Dicom_Tags::NumberOfVerticalPixels => 7471364,
Dicom_Tags::NumberOfHorizontalPixels => 7471366,
Dicom_Tags::DisplayEnvironmentSpatialPosition => 7471368,
Dicom_Tags::ScreenMinimumGrayscaleBitDepth => 7471370,
Dicom_Tags::ScreenMinimumColorBitDepth => 7471372,
Dicom_Tags::ApplicationMaximumRepaintTime => 7471374,
Dicom_Tags::DisplaySetsSequence => 7471616,
Dicom_Tags::DisplaySetNumber => 7471618,
Dicom_Tags::DisplaySetLabel => 7471619,
Dicom_Tags::DisplaySetPresentationGroup => 7471620,
Dicom_Tags::DisplaySetPresentationGroupDescription => 7471622,
Dicom_Tags::PartialDataDisplayHandling => 7471624,
Dicom_Tags::SynchronizedScrollingSequence => 7471632,
Dicom_Tags::DisplaySetScrollingGroup => 7471634,
Dicom_Tags::NavigationIndicatorSequence => 7471636,
Dicom_Tags::NavigationDisplaySet => 7471638,
Dicom_Tags::ReferenceDisplaySets => 7471640,
Dicom_Tags::ImageBoxesSequence => 7471872,
Dicom_Tags::ImageBoxNumber => 7471874,
Dicom_Tags::ImageBoxLayoutType => 7471876,
Dicom_Tags::ImageBoxTileHorizontalDimension => 7471878,
Dicom_Tags::ImageBoxTileVerticalDimension => 7471880,
Dicom_Tags::ImageBoxScrollDirection => 7471888,
Dicom_Tags::ImageBoxSmallScrollType => 7471890,
Dicom_Tags::ImageBoxSmallScrollAmount => 7471892,
Dicom_Tags::ImageBoxLargeScrollType => 7471894,
Dicom_Tags::ImageBoxLargeScrollAmount => 7471896,
Dicom_Tags::ImageBoxOverlapPriority => 7471904,
Dicom_Tags::CineRelativeToRealTime => 7471920,
Dicom_Tags::FilterOperationsSequence => 7472128,
Dicom_Tags::FilterByCategory => 7472130,
Dicom_Tags::FilterByAttributePresence => 7472132,
Dicom_Tags::FilterByOperator => 7472134,
Dicom_Tags::StructuredDisplayBackgroundCielabValue => 7472160,
Dicom_Tags::EmptyImageBoxCielabValue => 7472161,
Dicom_Tags::StructuredDisplayImageBoxSequence => 7472162,
Dicom_Tags::StructuredDisplayTextBoxSequence => 7472164,
Dicom_Tags::ReferencedFirstFrameSequence => 7472167,
Dicom_Tags::ImageBoxSynchronizationSequence => 7472176,
Dicom_Tags::SynchronizedImageBoxList => 7472178,
Dicom_Tags::TypeOfSynchronization => 7472180,
Dicom_Tags::BlendingOperationType => 7472384,
Dicom_Tags::ReformattingOperationType => 7472400,
Dicom_Tags::ReformattingThickness => 7472402,
Dicom_Tags::ReformattingInterval => 7472404,
Dicom_Tags::ReformattingOperationInitialViewDirection => 7472406,
Dicom_Tags::Tag3dRenderingType => 7472416,
Dicom_Tags::SortingOperationsSequence => 7472640,
Dicom_Tags::SortByCategory => 7472642,
Dicom_Tags::SortingDirection => 7472644,
Dicom_Tags::DisplaySetPatientOrientation => 7472896,
Dicom_Tags::VoiType => 7472898,
Dicom_Tags::PseudoColorType => 7472900,
Dicom_Tags::PseudoColorPaletteInstanceReferenceSequence => 7472901,
Dicom_Tags::ShowGrayscaleInverted => 7472902,
Dicom_Tags::ShowImageTrueSizeFlag => 7472912,
Dicom_Tags::ShowGraphicAnnotationFlag => 7472914,
Dicom_Tags::ShowPatientDemographicsFlag => 7472916,
Dicom_Tags::ShowAcquisitionTechniquesFlag => 7472918,
Dicom_Tags::DisplaySetHorizontalJustification => 7472919,
Dicom_Tags::DisplaySetVerticalJustification => 7472920,
Dicom_Tags::ContinuationStartMeterset => 7602464,
Dicom_Tags::ContinuationEndMeterset => 7602465,
Dicom_Tags::ProcedureStepState => 7606272,
Dicom_Tags::ProcedureStepProgressInformationSequence => 7606274,
Dicom_Tags::ProcedureStepProgress => 7606276,
Dicom_Tags::ProcedureStepProgressDescription => 7606278,
Dicom_Tags::ProcedureStepCommunicationsUriSequence => 7606280,
Dicom_Tags::ContactUri => 7606282,
Dicom_Tags::ContactDisplayName => 7606284,
Dicom_Tags::ProcedureStepDiscontinuationReasonCodeSequence => 7606286,
Dicom_Tags::BeamTaskSequence => 7606304,
Dicom_Tags::BeamTaskType => 7606306,
Dicom_Tags::BeamOrderIndexTrial => 7606308,
Dicom_Tags::AutosequenceFlag => 7606309,
Dicom_Tags::TableTopVerticalAdjustedPosition => 7606310,
Dicom_Tags::TableTopLongitudinalAdjustedPosition => 7606311,
Dicom_Tags::TableTopLateralAdjustedPosition => 7606312,
Dicom_Tags::PatientSupportAdjustedAngle => 7606314,
Dicom_Tags::TableTopEccentricAdjustedAngle => 7606315,
Dicom_Tags::TableTopPitchAdjustedAngle => 7606316,
Dicom_Tags::TableTopRollAdjustedAngle => 7606317,
Dicom_Tags::DeliveryVerificationImageSequence => 7606320,
Dicom_Tags::VerificationImageTiming => 7606322,
Dicom_Tags::DoubleExposureFlag => 7606324,
Dicom_Tags::DoubleExposureOrdering => 7606326,
Dicom_Tags::DoubleExposureMetersetTrial => 7606328,
Dicom_Tags::DoubleExposureFieldDeltaTrial => 7606330,
Dicom_Tags::RelatedReferenceRtImageSequence => 7606336,
Dicom_Tags::GeneralMachineVerificationSequence => 7606338,
Dicom_Tags::ConventionalMachineVerificationSequence => 7606340,
Dicom_Tags::IonMachineVerificationSequence => 7606342,
Dicom_Tags::FailedAttributesSequence => 7606344,
Dicom_Tags::OverriddenAttributesSequence => 7606346,
Dicom_Tags::ConventionalControlPointVerificationSequence => 7606348,
Dicom_Tags::IonControlPointVerificationSequence => 7606350,
Dicom_Tags::AttributeOccurrenceSequence => 7606352,
Dicom_Tags::AttributeOccurrencePointer => 7606354,
Dicom_Tags::AttributeItemSelector => 7606356,
Dicom_Tags::AttributeOccurrencePrivateCreator => 7606358,
Dicom_Tags::SelectorSequencePointerItems => 7606359,
Dicom_Tags::ScheduledProcedureStepPriority => 7606784,
Dicom_Tags::WorklistLabel => 7606786,
Dicom_Tags::ProcedureStepLabel => 7606788,
Dicom_Tags::ScheduledProcessingParametersSequence => 7606800,
Dicom_Tags::PerformedProcessingParametersSequence => 7606802,
Dicom_Tags::UnifiedProcedureStepPerformedProcedureSequence => 7606806,
Dicom_Tags::RelatedProcedureStepSequence => 7606816,
Dicom_Tags::ProcedureStepRelationshipType => 7606818,
Dicom_Tags::ReplacedProcedureStepSequence => 7606820,
Dicom_Tags::DeletionLock => 7606832,
Dicom_Tags::ReceivingAe => 7606836,
Dicom_Tags::RequestingAe => 7606838,
Dicom_Tags::ReasonForCancellation => 7606840,
Dicom_Tags::ScpStatus => 7606850,
Dicom_Tags::SubscriptionListStatus => 7606852,
Dicom_Tags::UnifiedProcedureStepListStatus => 7606854,
Dicom_Tags::BeamOrderIndex => 7607076,
Dicom_Tags::DoubleExposureMeterset => 7607096,
Dicom_Tags::DoubleExposureFieldDelta => 7607098,
Dicom_Tags::BrachyTaskSequence => 7607297,
Dicom_Tags::ContinuationStartTotalReferenceAirKerma => 7607298,
Dicom_Tags::ContinuationEndTotalReferenceAirKerma => 7607299,
Dicom_Tags::ContinuationPulseNumber => 7607300,
Dicom_Tags::ChannelDeliveryOrderSequence => 7607301,
Dicom_Tags::ReferencedChannelNumber => 7607302,
Dicom_Tags::StartCumulativeTimeWeight => 7607303,
Dicom_Tags::EndCumulativeTimeWeight => 7607304,
Dicom_Tags::OmittedChannelSequence => 7607305,
Dicom_Tags::ReasonForChannelOmission => 7607306,
Dicom_Tags::ReasonForChannelOmissionDescription => 7607307,
Dicom_Tags::ChannelDeliveryOrderIndex => 7607308,
Dicom_Tags::ChannelDeliveryContinuationSequence => 7607309,
Dicom_Tags::OmittedApplicationSetupSequence => 7607310,
Dicom_Tags::ImplantAssemblyTemplateName => 7733249,
Dicom_Tags::ImplantAssemblyTemplateIssuer => 7733251,
Dicom_Tags::ImplantAssemblyTemplateVersion => 7733254,
Dicom_Tags::ReplacedImplantAssemblyTemplateSequence => 7733256,
Dicom_Tags::ImplantAssemblyTemplateType => 7733258,
Dicom_Tags::OriginalImplantAssemblyTemplateSequence => 7733260,
Dicom_Tags::DerivationImplantAssemblyTemplateSequence => 7733262,
Dicom_Tags::ImplantAssemblyTemplateTargetAnatomySequence => 7733264,
Dicom_Tags::ProcedureTypeCodeSequence => 7733280,
Dicom_Tags::SurgicalTechnique => 7733296,
Dicom_Tags::ComponentTypesSequence => 7733298,
Dicom_Tags::ComponentTypeCodeSequence => 7733300,
Dicom_Tags::ExclusiveComponentType => 7733302,
Dicom_Tags::MandatoryComponentType => 7733304,
Dicom_Tags::ComponentSequence => 7733312,
Dicom_Tags::ComponentId => 7733333,
Dicom_Tags::ComponentAssemblySequence => 7733344,
Dicom_Tags::Component1ReferencedId => 7733360,
Dicom_Tags::Component1ReferencedMatingFeatureSetId => 7733376,
Dicom_Tags::Component1ReferencedMatingFeatureId => 7733392,
Dicom_Tags::Component2ReferencedId => 7733408,
Dicom_Tags::Component2ReferencedMatingFeatureSetId => 7733424,
Dicom_Tags::Component2ReferencedMatingFeatureId => 7733440,
Dicom_Tags::ImplantTemplateGroupName => 7864321,
Dicom_Tags::ImplantTemplateGroupDescription => 7864336,
Dicom_Tags::ImplantTemplateGroupIssuer => 7864352,
Dicom_Tags::ImplantTemplateGroupVersion => 7864356,
Dicom_Tags::ReplacedImplantTemplateGroupSequence => 7864358,
Dicom_Tags::ImplantTemplateGroupTargetAnatomySequence => 7864360,
Dicom_Tags::ImplantTemplateGroupMembersSequence => 7864362,
Dicom_Tags::ImplantTemplateGroupMemberId => 7864366,
Dicom_Tags::Tag3dImplantTemplateGroupMemberMatchingPoint => 7864400,
Dicom_Tags::Tag3dImplantTemplateGroupMemberMatchingAxes => 7864416,
Dicom_Tags::ImplantTemplateGroupMemberMatching2dCoordinatesSequence => 7864432,
Dicom_Tags::Tag2dImplantTemplateGroupMemberMatchingPoint => 7864464,
Dicom_Tags::Tag2dImplantTemplateGroupMemberMatchingAxes => 7864480,
Dicom_Tags::ImplantTemplateGroupVariationDimensionSequence => 7864496,
Dicom_Tags::ImplantTemplateGroupVariationDimensionName => 7864498,
Dicom_Tags::ImplantTemplateGroupVariationDimensionRankSequence => 7864500,
Dicom_Tags::ReferencedImplantTemplateGroupMemberId => 7864502,
Dicom_Tags::ImplantTemplateGroupVariationDimensionRank => 7864504,
Dicom_Tags::SurfaceScanAcquisitionTypeCodeSequence => 8388609,
Dicom_Tags::SurfaceScanModeCodeSequence => 8388610,
Dicom_Tags::RegistrationMethodCodeSequence => 8388611,
Dicom_Tags::ShotDurationTime => 8388612,
Dicom_Tags::ShotOffsetTime => 8388613,
Dicom_Tags::SurfacePointPresentationValueData => 8388614,
Dicom_Tags::SurfacePointColorCielabValueData => 8388615,
Dicom_Tags::UvMappingSequence => 8388616,
Dicom_Tags::TextureLabel => 8388617,
Dicom_Tags::UValueData => 8388624,
Dicom_Tags::VValueData => 8388625,
Dicom_Tags::ReferencedTextureSequence => 8388626,
Dicom_Tags::ReferencedSurfaceDataSequence => 8388627,
Dicom_Tags::AssessmentSummary => 8519681,
Dicom_Tags::AssessmentSummaryDescription => 8519683,
Dicom_Tags::AssessedSopInstanceSequence => 8519684,
Dicom_Tags::ReferencedComparisonSopInstanceSequence => 8519685,
Dicom_Tags::NumberOfAssessmentObservations => 8519686,
Dicom_Tags::AssessmentObservationsSequence => 8519687,
Dicom_Tags::ObservationSignificance => 8519688,
Dicom_Tags::ObservationDescription => 8519690,
Dicom_Tags::StructuredConstraintObservationSequence => 8519692,
Dicom_Tags::AssessedAttributeValueSequence => 8519696,
Dicom_Tags::AssessmentSetId => 8519702,
Dicom_Tags::AssessmentRequesterSequence => 8519703,
Dicom_Tags::SelectorAttributeName => 8519704,
Dicom_Tags::SelectorAttributeKeyword => 8519705,
Dicom_Tags::AssessmentTypeCodeSequence => 8519713,
Dicom_Tags::ObservationBasisCodeSequence => 8519714,
Dicom_Tags::AssessmentLabel => 8519715,
Dicom_Tags::ConstraintType => 8519730,
Dicom_Tags::SpecificationSelectionGuidance => 8519731,
Dicom_Tags::ConstraintValueSequence => 8519732,
Dicom_Tags::RecommendedDefaultValueSequence => 8519733,
Dicom_Tags::ConstraintViolationSignificance => 8519734,
Dicom_Tags::ConstraintViolationCondition => 8519735,
Dicom_Tags::StorageMediaFileSetId => 8913200,
Dicom_Tags::StorageMediaFileSetUid => 8913216,
Dicom_Tags::IconImageSequence => 8913408,
Dicom_Tags::TopicTitle => 8915204,
Dicom_Tags::TopicSubject => 8915206,
Dicom_Tags::TopicAuthor => 8915216,
Dicom_Tags::TopicKeywords => 8915218,
Dicom_Tags::SopInstanceStatus => 16778256,
Dicom_Tags::SopAuthorizationDatetime => 16778272,
Dicom_Tags::SopAuthorizationComment => 16778276,
Dicom_Tags::AuthorizationEquipmentCertificationNumber => 16778278,
Dicom_Tags::MacIdNumber => 67108869,
Dicom_Tags::MacCalculationTransferSyntaxUid => 67108880,
Dicom_Tags::MacAlgorithm => 67108885,
Dicom_Tags::DataElementsSigned => 67108896,
Dicom_Tags::DigitalSignatureUid => 67109120,
Dicom_Tags::DigitalSignatureDatetime => 67109125,
Dicom_Tags::CertificateType => 67109136,
Dicom_Tags::CertificateOfSigner => 67109141,
Dicom_Tags::Signature => 67109152,
Dicom_Tags::CertifiedTimestampType => 67109637,
Dicom_Tags::CertifiedTimestamp => 67109648,
Dicom_Tags::DigitalSignaturePurposeCodeSequence => 67109889,
Dicom_Tags::ReferencedDigitalSignatureSequence => 67109890,
Dicom_Tags::ReferencedSopInstanceMacSequence => 67109891,
Dicom_Tags::Mac => 67109892,
Dicom_Tags::EncryptedAttributesSequence => 67110144,
Dicom_Tags::EncryptedContentTransferSyntaxUid => 67110160,
Dicom_Tags::EncryptedContent => 67110176,
Dicom_Tags::ModifiedAttributesSequence => 67110224,
Dicom_Tags::OriginalAttributesSequence => 67110241,
Dicom_Tags::AttributeModificationDatetime => 67110242,
Dicom_Tags::ModifyingSystem => 67110243,
Dicom_Tags::SourceOfPreviousValues => 67110244,
Dicom_Tags::ReasonForTheAttributeModification => 67110245,
Dicom_Tags::NumberOfCopies => 536870928,
Dicom_Tags::PrinterConfigurationSequence => 536870942,
Dicom_Tags::PrintPriority => 536870944,
Dicom_Tags::MediumType => 536870960,
Dicom_Tags::FilmDestination => 536870976,
Dicom_Tags::FilmSessionLabel => 536870992,
Dicom_Tags::MemoryAllocation => 536871008,
Dicom_Tags::MaximumMemoryAllocation => 536871009,
Dicom_Tags::ColorImagePrintingFlag => 536871010,
Dicom_Tags::CollationFlag => 536871011,
Dicom_Tags::AnnotationFlag => 536871013,
Dicom_Tags::ImageOverlayFlag => 536871015,
Dicom_Tags::PresentationLutFlag => 536871017,
Dicom_Tags::ImageBoxPresentationLutFlag => 536871018,
Dicom_Tags::MemoryBitDepth => 536871072,
Dicom_Tags::PrintingBitDepth => 536871073,
Dicom_Tags::MediaInstalledSequence => 536871074,
Dicom_Tags::OtherMediaAvailableSequence => 536871076,
Dicom_Tags::SupportedImageDisplayFormatsSequence => 536871080,
Dicom_Tags::ReferencedFilmBoxSequence => 536872192,
Dicom_Tags::ReferencedStoredPrintSequence => 536872208,
Dicom_Tags::ImageDisplayFormat => 537919504,
Dicom_Tags::AnnotationDisplayFormatId => 537919536,
Dicom_Tags::FilmOrientation => 537919552,
Dicom_Tags::FilmSizeId => 537919568,
Dicom_Tags::PrinterResolutionId => 537919570,
Dicom_Tags::DefaultPrinterResolutionId => 537919572,
Dicom_Tags::MagnificationType => 537919584,
Dicom_Tags::SmoothingType => 537919616,
Dicom_Tags::DefaultMagnificationType => 537919654,
Dicom_Tags::OtherMagnificationTypesAvailable => 537919655,
Dicom_Tags::DefaultSmoothingType => 537919656,
Dicom_Tags::OtherSmoothingTypesAvailable => 537919657,
Dicom_Tags::BorderDensity => 537919744,
Dicom_Tags::EmptyImageDensity => 537919760,
Dicom_Tags::MinDensity => 537919776,
Dicom_Tags::MaxDensity => 537919792,
Dicom_Tags::Trim => 537919808,
Dicom_Tags::ConfigurationInformation => 537919824,
Dicom_Tags::ConfigurationInformationDescription => 537919826,
Dicom_Tags::MaximumCollatedFilms => 537919828,
Dicom_Tags::Illumination => 537919838,
Dicom_Tags::ReflectedAmbientLight => 537919840,
Dicom_Tags::PrinterPixelSpacing => 537920374,
Dicom_Tags::ReferencedFilmSessionSequence => 537920768,
Dicom_Tags::ReferencedImageBoxSequence => 537920784,
Dicom_Tags::ReferencedBasicAnnotationBoxSequence => 537920800,
Dicom_Tags::ImageBoxPosition => 538968080,
Dicom_Tags::Polarity => 538968096,
Dicom_Tags::RequestedImageSize => 538968112,
Dicom_Tags::RequestedDecimateCropBehavior => 538968128,
Dicom_Tags::RequestedResolutionId => 538968144,
Dicom_Tags::RequestedImageSizeFlag => 538968224,
Dicom_Tags::DecimateCropResult => 538968226,
Dicom_Tags::BasicGrayscaleImageSequence => 538968336,
Dicom_Tags::BasicColorImageSequence => 538968337,
Dicom_Tags::ReferencedImageOverlayBoxSequence => 538968368,
Dicom_Tags::ReferencedVoiLutBoxSequence => 538968384,
Dicom_Tags::AnnotationPosition => 540016656,
Dicom_Tags::TextString => 540016672,
Dicom_Tags::ReferencedOverlayPlaneSequence => 541065232,
Dicom_Tags::ReferencedOverlayPlaneGroups => 541065233,
Dicom_Tags::OverlayPixelDataSequence => 541065248,
Dicom_Tags::OverlayMagnificationType => 541065312,
Dicom_Tags::OverlaySmoothingType => 541065328,
Dicom_Tags::OverlayOrImageMagnification => 541065330,
Dicom_Tags::MagnifyToNumberOfColumns => 541065332,
Dicom_Tags::OverlayForegroundDensity => 541065344,
Dicom_Tags::OverlayBackgroundDensity => 541065346,
Dicom_Tags::OverlayMode => 541065360,
Dicom_Tags::ThresholdDensity => 541065472,
Dicom_Tags::ReferencedImageBoxSequenceRetired => 541066496,
Dicom_Tags::PresentationLutSequence => 542113808,
Dicom_Tags::PresentationLutShape => 542113824,
Dicom_Tags::ReferencedPresentationLutSequence => 542115072,
Dicom_Tags::PrintJobId => 553648144,
Dicom_Tags::ExecutionStatus => 553648160,
Dicom_Tags::ExecutionStatusInfo => 553648176,
Dicom_Tags::CreationDate => 553648192,
Dicom_Tags::CreationTime => 553648208,
Dicom_Tags::Originator => 553648240,
Dicom_Tags::DestinationAe => 553648448,
Dicom_Tags::OwnerId => 553648480,
Dicom_Tags::NumberOfFilms => 553648496,
Dicom_Tags::ReferencedPrintJobSequencePullStoredPrint => 553649408,
Dicom_Tags::PrinterStatus => 554696720,
Dicom_Tags::PrinterStatusInfo => 554696736,
Dicom_Tags::PrinterName => 554696752,
Dicom_Tags::PrintQueueId => 554696857,
Dicom_Tags::QueueStatus => 555745296,
Dicom_Tags::PrintJobDescriptionSequence => 555745360,
Dicom_Tags::ReferencedPrintJobSequence => 555745392,
Dicom_Tags::PrintManagementCapabilitiesSequence => 556793872,
Dicom_Tags::PrinterCharacteristicsSequence => 556793877,
Dicom_Tags::FilmBoxContentSequence => 556793904,
Dicom_Tags::ImageBoxContentSequence => 556793920,
Dicom_Tags::AnnotationContentSequence => 556793936,
Dicom_Tags::ImageOverlayBoxContentSequence => 556793952,
Dicom_Tags::PresentationLutContentSequence => 556793984,
Dicom_Tags::ProposedStudySequence => 556794016,
Dicom_Tags::OriginalImageSequence => 556794048,
Dicom_Tags::LabelUsingInformationExtractedFromInstances => 570425345,
Dicom_Tags::LabelText => 570425346,
Dicom_Tags::LabelStyleSelection => 570425347,
Dicom_Tags::MediaDisposition => 570425348,
Dicom_Tags::BarcodeValue => 570425349,
Dicom_Tags::BarcodeSymbology => 570425350,
Dicom_Tags::AllowMediaSplitting => 570425351,
Dicom_Tags::IncludeNonDicomObjects => 570425352,
Dicom_Tags::IncludeDisplayApplication => 570425353,
Dicom_Tags::PreserveCompositeInstancesAfterMediaCreation => 570425354,
Dicom_Tags::TotalNumberOfPiecesOfMediaCreated => 570425355,
Dicom_Tags::RequestedMediaApplicationProfile => 570425356,
Dicom_Tags::ReferencedStorageMediaSequence => 570425357,
Dicom_Tags::FailureAttributes => 570425358,
Dicom_Tags::AllowLossyCompression => 570425359,
Dicom_Tags::RequestPriority => 570425376,
Dicom_Tags::RtImageLabel => 805437442,
Dicom_Tags::RtImageName => 805437443,
Dicom_Tags::RtImageDescription => 805437444,
Dicom_Tags::ReportedValuesOrigin => 805437450,
Dicom_Tags::RtImagePlane => 805437452,
Dicom_Tags::XRayImageReceptorTranslation => 805437453,
Dicom_Tags::XRayImageReceptorAngle => 805437454,
Dicom_Tags::RtImageOrientation => 805437456,
Dicom_Tags::ImagePlanePixelSpacing => 805437457,
Dicom_Tags::RtImagePosition => 805437458,
Dicom_Tags::RadiationMachineName => 805437472,
Dicom_Tags::RadiationMachineSad => 805437474,
Dicom_Tags::RadiationMachineSsd => 805437476,
Dicom_Tags::RtImageSid => 805437478,
Dicom_Tags::SourceToReferenceObjectDistance => 805437480,
Dicom_Tags::FractionNumber => 805437481,
Dicom_Tags::ExposureSequence => 805437488,
Dicom_Tags::MetersetExposure => 805437490,
Dicom_Tags::DiaphragmPosition => 805437492,
Dicom_Tags::FluenceMapSequence => 805437504,
Dicom_Tags::FluenceDataSource => 805437505,
Dicom_Tags::FluenceDataScale => 805437506,
Dicom_Tags::PrimaryFluenceModeSequence => 805437520,
Dicom_Tags::FluenceMode => 805437521,
Dicom_Tags::FluenceModeId => 805437522,
Dicom_Tags::DvhType => 805568513,
Dicom_Tags::DoseUnits => 805568514,
Dicom_Tags::DoseType => 805568516,
Dicom_Tags::SpatialTransformOfDose => 805568517,
Dicom_Tags::DoseComment => 805568518,
Dicom_Tags::NormalizationPoint => 805568520,
Dicom_Tags::DoseSummationType => 805568522,
Dicom_Tags::GridFrameOffsetVector => 805568524,
Dicom_Tags::DoseGridScaling => 805568526,
Dicom_Tags::RtDoseRoiSequence => 805568528,
Dicom_Tags::DoseValue => 805568530,
Dicom_Tags::TissueHeterogeneityCorrection => 805568532,
Dicom_Tags::DvhNormalizationPoint => 805568576,
Dicom_Tags::DvhNormalizationDoseValue => 805568578,
Dicom_Tags::DvhSequence => 805568592,
Dicom_Tags::DvhDoseScaling => 805568594,
Dicom_Tags::DvhVolumeUnits => 805568596,
Dicom_Tags::DvhNumberOfBins => 805568598,
Dicom_Tags::DvhData => 805568600,
Dicom_Tags::DvhReferencedRoiSequence => 805568608,
Dicom_Tags::DvhRoiContributionType => 805568610,
Dicom_Tags::DvhMinimumDose => 805568624,
Dicom_Tags::DvhMaximumDose => 805568626,
Dicom_Tags::DvhMeanDose => 805568628,
Dicom_Tags::StructureSetLabel => 805699586,
Dicom_Tags::StructureSetName => 805699588,
Dicom_Tags::StructureSetDescription => 805699590,
Dicom_Tags::StructureSetDate => 805699592,
Dicom_Tags::StructureSetTime => 805699593,
Dicom_Tags::ReferencedFrameOfReferenceSequence => 805699600,
Dicom_Tags::RtReferencedStudySequence => 805699602,
Dicom_Tags::RtReferencedSeriesSequence => 805699604,
Dicom_Tags::ContourImageSequence => 805699606,
Dicom_Tags::PredecessorStructureSetSequence => 805699608,
Dicom_Tags::StructureSetRoiSequence => 805699616,
Dicom_Tags::RoiNumber => 805699618,
Dicom_Tags::ReferencedFrameOfReferenceUid => 805699620,
Dicom_Tags::RoiName => 805699622,
Dicom_Tags::RoiDescription => 805699624,
Dicom_Tags::RoiDisplayColor => 805699626,
Dicom_Tags::RoiVolume => 805699628,
Dicom_Tags::RtRelatedRoiSequence => 805699632,
Dicom_Tags::RtRoiRelationship => 805699635,
Dicom_Tags::RoiGenerationAlgorithm => 805699638,
Dicom_Tags::RoiGenerationDescription => 805699640,
Dicom_Tags::RoiContourSequence => 805699641,
Dicom_Tags::ContourSequence => 805699648,
Dicom_Tags::ContourGeometricType => 805699650,
Dicom_Tags::ContourSlabThickness => 805699652,
Dicom_Tags::ContourOffsetVector => 805699653,
Dicom_Tags::NumberOfContourPoints => 805699654,
Dicom_Tags::ContourNumber => 805699656,
Dicom_Tags::AttachedContours => 805699657,
Dicom_Tags::ContourData => 805699664,
Dicom_Tags::RtRoiObservationsSequence => 805699712,
Dicom_Tags::ObservationNumber => 805699714,
Dicom_Tags::ReferencedRoiNumber => 805699716,
Dicom_Tags::RoiObservationLabel => 805699717,
Dicom_Tags::RtRoiIdentificationCodeSequence => 805699718,
Dicom_Tags::RoiObservationDescription => 805699720,
Dicom_Tags::RelatedRtRoiObservationsSequence => 805699744,
Dicom_Tags::RtRoiInterpretedType => 805699748,
Dicom_Tags::RoiInterpreter => 805699750,
Dicom_Tags::RoiPhysicalPropertiesSequence => 805699760,
Dicom_Tags::RoiPhysicalProperty => 805699762,
Dicom_Tags::RoiPhysicalPropertyValue => 805699764,
Dicom_Tags::RoiElementalCompositionSequence => 805699766,
Dicom_Tags::RoiElementalCompositionAtomicNumber => 805699767,
Dicom_Tags::RoiElementalCompositionAtomicMassFraction => 805699768,
Dicom_Tags::AdditionalRtRoiIdentificationCodeSequence => 805699769,
Dicom_Tags::FrameOfReferenceRelationshipSequence => 805699776,
Dicom_Tags::RelatedFrameOfReferenceUid => 805699778,
Dicom_Tags::FrameOfReferenceTransformationType => 805699780,
Dicom_Tags::FrameOfReferenceTransformationMatrix => 805699782,
Dicom_Tags::FrameOfReferenceTransformationComment => 805699784,
Dicom_Tags::MeasuredDoseReferenceSequence => 805830672,
Dicom_Tags::MeasuredDoseDescription => 805830674,
Dicom_Tags::MeasuredDoseType => 805830676,
Dicom_Tags::MeasuredDoseValue => 805830678,
Dicom_Tags::TreatmentSessionBeamSequence => 805830688,
Dicom_Tags::TreatmentSessionIonBeamSequence => 805830689,
Dicom_Tags::CurrentFractionNumber => 805830690,
Dicom_Tags::TreatmentControlPointDate => 805830692,
Dicom_Tags::TreatmentControlPointTime => 805830693,
Dicom_Tags::TreatmentTerminationStatus => 805830698,
Dicom_Tags::TreatmentTerminationCode => 805830699,
Dicom_Tags::TreatmentVerificationStatus => 805830700,
Dicom_Tags::ReferencedTreatmentRecordSequence => 805830704,
Dicom_Tags::SpecifiedPrimaryMeterset => 805830706,
Dicom_Tags::SpecifiedSecondaryMeterset => 805830707,
Dicom_Tags::DeliveredPrimaryMeterset => 805830710,
Dicom_Tags::DeliveredSecondaryMeterset => 805830711,
Dicom_Tags::SpecifiedTreatmentTime => 805830714,
Dicom_Tags::DeliveredTreatmentTime => 805830715,
Dicom_Tags::ControlPointDeliverySequence => 805830720,
Dicom_Tags::IonControlPointDeliverySequence => 805830721,
Dicom_Tags::SpecifiedMeterset => 805830722,
Dicom_Tags::DeliveredMeterset => 805830724,
Dicom_Tags::MetersetRateSet => 805830725,
Dicom_Tags::MetersetRateDelivered => 805830726,
Dicom_Tags::ScanSpotMetersetsDelivered => 805830727,
Dicom_Tags::DoseRateDelivered => 805830728,
Dicom_Tags::TreatmentSummaryCalculatedDoseReferenceSequence => 805830736,
Dicom_Tags::CumulativeDoseToDoseReference => 805830738,
Dicom_Tags::FirstTreatmentDate => 805830740,
Dicom_Tags::MostRecentTreatmentDate => 805830742,
Dicom_Tags::NumberOfFractionsDelivered => 805830746,
Dicom_Tags::OverrideSequence => 805830752,
Dicom_Tags::ParameterSequencePointer => 805830753,
Dicom_Tags::OverrideParameterPointer => 805830754,
Dicom_Tags::ParameterItemIndex => 805830755,
Dicom_Tags::MeasuredDoseReferenceNumber => 805830756,
Dicom_Tags::ParameterPointer => 805830757,
Dicom_Tags::OverrideReason => 805830758,
Dicom_Tags::CorrectedParameterSequence => 805830760,
Dicom_Tags::CorrectionValue => 805830762,
Dicom_Tags::CalculatedDoseReferenceSequence => 805830768,
Dicom_Tags::CalculatedDoseReferenceNumber => 805830770,
Dicom_Tags::CalculatedDoseReferenceDescription => 805830772,
Dicom_Tags::CalculatedDoseReferenceDoseValue => 805830774,
Dicom_Tags::StartMeterset => 805830776,
Dicom_Tags::EndMeterset => 805830778,
Dicom_Tags::ReferencedMeasuredDoseReferenceSequence => 805830784,
Dicom_Tags::ReferencedMeasuredDoseReferenceNumber => 805830786,
Dicom_Tags::ReferencedCalculatedDoseReferenceSequence => 805830800,
Dicom_Tags::ReferencedCalculatedDoseReferenceNumber => 805830802,
Dicom_Tags::BeamLimitingDeviceLeafPairsSequence => 805830816,
Dicom_Tags::RecordedWedgeSequence => 805830832,
Dicom_Tags::RecordedCompensatorSequence => 805830848,
Dicom_Tags::RecordedBlockSequence => 805830864,
Dicom_Tags::TreatmentSummaryMeasuredDoseReferenceSequence => 805830880,
Dicom_Tags::RecordedSnoutSequence => 805830896,
Dicom_Tags::RecordedRangeShifterSequence => 805830898,
Dicom_Tags::RecordedLateralSpreadingDeviceSequence => 805830900,
Dicom_Tags::RecordedRangeModulatorSequence => 805830902,
Dicom_Tags::RecordedSourceSequence => 805830912,
Dicom_Tags::SourceSerialNumber => 805830917,
Dicom_Tags::TreatmentSessionApplicationSetupSequence => 805830928,
Dicom_Tags::ApplicationSetupCheck => 805830934,
Dicom_Tags::RecordedBrachyAccessoryDeviceSequence => 805830944,
Dicom_Tags::ReferencedBrachyAccessoryDeviceNumber => 805830946,
Dicom_Tags::RecordedChannelSequence => 805830960,
Dicom_Tags::SpecifiedChannelTotalTime => 805830962,
Dicom_Tags::DeliveredChannelTotalTime => 805830964,
Dicom_Tags::SpecifiedNumberOfPulses => 805830966,
Dicom_Tags::DeliveredNumberOfPulses => 805830968,
Dicom_Tags::SpecifiedPulseRepetitionInterval => 805830970,
Dicom_Tags::DeliveredPulseRepetitionInterval => 805830972,
Dicom_Tags::RecordedSourceApplicatorSequence => 805830976,
Dicom_Tags::ReferencedSourceApplicatorNumber => 805830978,
Dicom_Tags::RecordedChannelShieldSequence => 805830992,
Dicom_Tags::ReferencedChannelShieldNumber => 805830994,
Dicom_Tags::BrachyControlPointDeliveredSequence => 805831008,
Dicom_Tags::SafePositionExitDate => 805831010,
Dicom_Tags::SafePositionExitTime => 805831012,
Dicom_Tags::SafePositionReturnDate => 805831014,
Dicom_Tags::SafePositionReturnTime => 805831016,
Dicom_Tags::PulseSpecificBrachyControlPointDeliveredSequence => 805831025,
Dicom_Tags::PulseNumber => 805831026,
Dicom_Tags::BrachyPulseControlPointDeliveredSequence => 805831027,
Dicom_Tags::CurrentTreatmentStatus => 805831168,
Dicom_Tags::TreatmentStatusComment => 805831170,
Dicom_Tags::FractionGroupSummarySequence => 805831200,
Dicom_Tags::ReferencedFractionNumber => 805831203,
Dicom_Tags::FractionGroupType => 805831204,
Dicom_Tags::BeamStopperPosition => 805831216,
Dicom_Tags::FractionStatusSummarySequence => 805831232,
Dicom_Tags::TreatmentDate => 805831248,
Dicom_Tags::TreatmentTime => 805831249,
Dicom_Tags::RtPlanLabel => 805961730,
Dicom_Tags::RtPlanName => 805961731,
Dicom_Tags::RtPlanDescription => 805961732,
Dicom_Tags::RtPlanDate => 805961734,
Dicom_Tags::RtPlanTime => 805961735,
Dicom_Tags::TreatmentProtocols => 805961737,
Dicom_Tags::PlanIntent => 805961738,
Dicom_Tags::TreatmentSites => 805961739,
Dicom_Tags::RtPlanGeometry => 805961740,
Dicom_Tags::PrescriptionDescription => 805961742,
Dicom_Tags::DoseReferenceSequence => 805961744,
Dicom_Tags::DoseReferenceNumber => 805961746,
Dicom_Tags::DoseReferenceUid => 805961747,
Dicom_Tags::DoseReferenceStructureType => 805961748,
Dicom_Tags::NominalBeamEnergyUnit => 805961749,
Dicom_Tags::DoseReferenceDescription => 805961750,
Dicom_Tags::DoseReferencePointCoordinates => 805961752,
Dicom_Tags::NominalPriorDose => 805961754,
Dicom_Tags::DoseReferenceType => 805961760,
Dicom_Tags::ConstraintWeight => 805961761,
Dicom_Tags::DeliveryWarningDose => 805961762,
Dicom_Tags::DeliveryMaximumDose => 805961763,
Dicom_Tags::TargetMinimumDose => 805961765,
Dicom_Tags::TargetPrescriptionDose => 805961766,
Dicom_Tags::TargetMaximumDose => 805961767,
Dicom_Tags::TargetUnderdoseVolumeFraction => 805961768,
Dicom_Tags::OrganAtRiskFullVolumeDose => 805961770,
Dicom_Tags::OrganAtRiskLimitDose => 805961771,
Dicom_Tags::OrganAtRiskMaximumDose => 805961772,
Dicom_Tags::OrganAtRiskOverdoseVolumeFraction => 805961773,
Dicom_Tags::ToleranceTableSequence => 805961792,
Dicom_Tags::ToleranceTableNumber => 805961794,
Dicom_Tags::ToleranceTableLabel => 805961795,
Dicom_Tags::GantryAngleTolerance => 805961796,
Dicom_Tags::BeamLimitingDeviceAngleTolerance => 805961798,
Dicom_Tags::BeamLimitingDeviceToleranceSequence => 805961800,
Dicom_Tags::BeamLimitingDevicePositionTolerance => 805961802,
Dicom_Tags::SnoutPositionTolerance => 805961803,
Dicom_Tags::PatientSupportAngleTolerance => 805961804,
Dicom_Tags::TableTopEccentricAngleTolerance => 805961806,
Dicom_Tags::TableTopPitchAngleTolerance => 805961807,
Dicom_Tags::TableTopRollAngleTolerance => 805961808,
Dicom_Tags::TableTopVerticalPositionTolerance => 805961809,
Dicom_Tags::TableTopLongitudinalPositionTolerance => 805961810,
Dicom_Tags::TableTopLateralPositionTolerance => 805961811,
Dicom_Tags::RtPlanRelationship => 805961813,
Dicom_Tags::FractionGroupSequence => 805961840,
Dicom_Tags::FractionGroupNumber => 805961841,
Dicom_Tags::FractionGroupDescription => 805961842,
Dicom_Tags::NumberOfFractionsPlanned => 805961848,
Dicom_Tags::NumberOfFractionPatternDigitsPerDay => 805961849,
Dicom_Tags::RepeatFractionCycleLength => 805961850,
Dicom_Tags::FractionPattern => 805961851,
Dicom_Tags::NumberOfBeams => 805961856,
Dicom_Tags::BeamDoseSpecificationPoint => 805961858,
Dicom_Tags::BeamDose => 805961860,
Dicom_Tags::BeamMeterset => 805961862,
Dicom_Tags::BeamDosePointDepth => 805961864,
Dicom_Tags::BeamDosePointEquivalentDepth => 805961865,
Dicom_Tags::BeamDosePointSsd => 805961866,
Dicom_Tags::BeamDoseMeaning => 805961867,
Dicom_Tags::BeamDoseVerificationControlPointSequence => 805961868,
Dicom_Tags::AverageBeamDosePointDepth => 805961869,
Dicom_Tags::AverageBeamDosePointEquivalentDepth => 805961870,
Dicom_Tags::AverageBeamDosePointSsd => 805961871,
Dicom_Tags::BeamDoseType => 805961872,
Dicom_Tags::AlternateBeamDose => 805961873,
Dicom_Tags::AlternateBeamDoseType => 805961874,
Dicom_Tags::NumberOfBrachyApplicationSetups => 805961888,
Dicom_Tags::BrachyApplicationSetupDoseSpecificationPoint => 805961890,
Dicom_Tags::BrachyApplicationSetupDose => 805961892,
Dicom_Tags::BeamSequence => 805961904,
Dicom_Tags::TreatmentMachineName => 805961906,
Dicom_Tags::PrimaryDosimeterUnit => 805961907,
Dicom_Tags::SourceAxisDistance => 805961908,
Dicom_Tags::BeamLimitingDeviceSequence => 805961910,
Dicom_Tags::RtBeamLimitingDeviceType => 805961912,
Dicom_Tags::SourceToBeamLimitingDeviceDistance => 805961914,
Dicom_Tags::IsocenterToBeamLimitingDeviceDistance => 805961915,
Dicom_Tags::NumberOfLeafJawPairs => 805961916,
Dicom_Tags::LeafPositionBoundaries => 805961918,
Dicom_Tags::BeamNumber => 805961920,
Dicom_Tags::BeamName => 805961922,
Dicom_Tags::BeamDescription => 805961923,
Dicom_Tags::BeamType => 805961924,
Dicom_Tags::BeamDeliveryDurationLimit => 805961925,
Dicom_Tags::RadiationType => 805961926,
Dicom_Tags::HighDoseTechniqueType => 805961927,
Dicom_Tags::ReferenceImageNumber => 805961928,
Dicom_Tags::PlannedVerificationImageSequence => 805961930,
Dicom_Tags::ImagingDeviceSpecificAcquisitionParameters => 805961932,
Dicom_Tags::TreatmentDeliveryType => 805961934,
Dicom_Tags::NumberOfWedges => 805961936,
Dicom_Tags::WedgeSequence => 805961937,
Dicom_Tags::WedgeNumber => 805961938,
Dicom_Tags::WedgeType => 805961939,
Dicom_Tags::WedgeId => 805961940,
Dicom_Tags::WedgeAngle => 805961941,
Dicom_Tags::WedgeFactor => 805961942,
Dicom_Tags::TotalWedgeTrayWaterEquivalentThickness => 805961943,
Dicom_Tags::WedgeOrientation => 805961944,
Dicom_Tags::IsocenterToWedgeTrayDistance => 805961945,
Dicom_Tags::SourceToWedgeTrayDistance => 805961946,
Dicom_Tags::WedgeThinEdgePosition => 805961947,
Dicom_Tags::BolusId => 805961948,
Dicom_Tags::BolusDescription => 805961949,
Dicom_Tags::EffectiveWedgeAngle => 805961950,
Dicom_Tags::NumberOfCompensators => 805961952,
Dicom_Tags::MaterialId => 805961953,
Dicom_Tags::TotalCompensatorTrayFactor => 805961954,
Dicom_Tags::CompensatorSequence => 805961955,
Dicom_Tags::CompensatorNumber => 805961956,
Dicom_Tags::CompensatorId => 805961957,
Dicom_Tags::SourceToCompensatorTrayDistance => 805961958,
Dicom_Tags::CompensatorRows => 805961959,
Dicom_Tags::CompensatorColumns => 805961960,
Dicom_Tags::CompensatorPixelSpacing => 805961961,
Dicom_Tags::CompensatorPosition => 805961962,
Dicom_Tags::CompensatorTransmissionData => 805961963,
Dicom_Tags::CompensatorThicknessData => 805961964,
Dicom_Tags::NumberOfBoli => 805961965,
Dicom_Tags::CompensatorType => 805961966,
Dicom_Tags::CompensatorTrayId => 805961967,
Dicom_Tags::NumberOfBlocks => 805961968,
Dicom_Tags::TotalBlockTrayFactor => 805961970,
Dicom_Tags::TotalBlockTrayWaterEquivalentThickness => 805961971,
Dicom_Tags::BlockSequence => 805961972,
Dicom_Tags::BlockTrayId => 805961973,
Dicom_Tags::SourceToBlockTrayDistance => 805961974,
Dicom_Tags::IsocenterToBlockTrayDistance => 805961975,
Dicom_Tags::BlockType => 805961976,
Dicom_Tags::AccessoryCode => 805961977,
Dicom_Tags::BlockDivergence => 805961978,
Dicom_Tags::BlockMountingPosition => 805961979,
Dicom_Tags::BlockNumber => 805961980,
Dicom_Tags::BlockName => 805961982,
Dicom_Tags::BlockThickness => 805961984,
Dicom_Tags::BlockTransmission => 805961986,
Dicom_Tags::BlockNumberOfPoints => 805961988,
Dicom_Tags::BlockData => 805961990,
Dicom_Tags::ApplicatorSequence => 805961991,
Dicom_Tags::ApplicatorId => 805961992,
Dicom_Tags::ApplicatorType => 805961993,
Dicom_Tags::ApplicatorDescription => 805961994,
Dicom_Tags::CumulativeDoseReferenceCoefficient => 805961996,
Dicom_Tags::FinalCumulativeMetersetWeight => 805961998,
Dicom_Tags::NumberOfControlPoints => 805962000,
Dicom_Tags::ControlPointSequence => 805962001,
Dicom_Tags::ControlPointIndex => 805962002,
Dicom_Tags::NominalBeamEnergy => 805962004,
Dicom_Tags::DoseRateSet => 805962005,
Dicom_Tags::WedgePositionSequence => 805962006,
Dicom_Tags::WedgePosition => 805962008,
Dicom_Tags::BeamLimitingDevicePositionSequence => 805962010,
Dicom_Tags::LeafJawPositions => 805962012,
Dicom_Tags::GantryAngle => 805962014,
Dicom_Tags::GantryRotationDirection => 805962015,
Dicom_Tags::BeamLimitingDeviceAngle => 805962016,
Dicom_Tags::BeamLimitingDeviceRotationDirection => 805962017,
Dicom_Tags::PatientSupportAngle => 805962018,
Dicom_Tags::PatientSupportRotationDirection => 805962019,
Dicom_Tags::TableTopEccentricAxisDistance => 805962020,
Dicom_Tags::TableTopEccentricAngle => 805962021,
Dicom_Tags::TableTopEccentricRotationDirection => 805962022,
Dicom_Tags::TableTopVerticalPosition => 805962024,
Dicom_Tags::TableTopLongitudinalPosition => 805962025,
Dicom_Tags::TableTopLateralPosition => 805962026,
Dicom_Tags::IsocenterPosition => 805962028,
Dicom_Tags::SurfaceEntryPoint => 805962030,
Dicom_Tags::SourceToSurfaceDistance => 805962032,
Dicom_Tags::AverageBeamDosePointSourceToExternalContourDistance => 805962033,
Dicom_Tags::SourceToExternalContourDistance => 805962034,
Dicom_Tags::ExternalContourEntryPoint => 805962035,
Dicom_Tags::CumulativeMetersetWeight => 805962036,
Dicom_Tags::TableTopPitchAngle => 805962048,
Dicom_Tags::TableTopPitchRotationDirection => 805962050,
Dicom_Tags::TableTopRollAngle => 805962052,
Dicom_Tags::TableTopRollRotationDirection => 805962054,
Dicom_Tags::HeadFixationAngle => 805962056,
Dicom_Tags::GantryPitchAngle => 805962058,
Dicom_Tags::GantryPitchRotationDirection => 805962060,
Dicom_Tags::GantryPitchAngleTolerance => 805962062,
Dicom_Tags::FixationEye => 805962064,
Dicom_Tags::ChairHeadFramePosition => 805962065,
Dicom_Tags::HeadFixationAngleTolerance => 805962066,
Dicom_Tags::ChairHeadFramePositionTolerance => 805962067,
Dicom_Tags::FixationLightAzimuthalAngleTolerance => 805962068,
Dicom_Tags::FixationLightPolarAngleTolerance => 805962069,
Dicom_Tags::PatientSetupSequence => 805962112,
Dicom_Tags::PatientSetupNumber => 805962114,
Dicom_Tags::PatientSetupLabel => 805962115,
Dicom_Tags::PatientAdditionalPosition => 805962116,
Dicom_Tags::FixationDeviceSequence => 805962128,
Dicom_Tags::FixationDeviceType => 805962130,
Dicom_Tags::FixationDeviceLabel => 805962132,
Dicom_Tags::FixationDeviceDescription => 805962134,
Dicom_Tags::FixationDevicePosition => 805962136,
Dicom_Tags::FixationDevicePitchAngle => 805962137,
Dicom_Tags::FixationDeviceRollAngle => 805962138,
Dicom_Tags::ShieldingDeviceSequence => 805962144,
Dicom_Tags::ShieldingDeviceType => 805962146,
Dicom_Tags::ShieldingDeviceLabel => 805962148,
Dicom_Tags::ShieldingDeviceDescription => 805962150,
Dicom_Tags::ShieldingDevicePosition => 805962152,
Dicom_Tags::SetupTechnique => 805962160,
Dicom_Tags::SetupTechniqueDescription => 805962162,
Dicom_Tags::SetupDeviceSequence => 805962164,
Dicom_Tags::SetupDeviceType => 805962166,
Dicom_Tags::SetupDeviceLabel => 805962168,
Dicom_Tags::SetupDeviceDescription => 805962170,
Dicom_Tags::SetupDeviceParameter => 805962172,
Dicom_Tags::SetupReferenceDescription => 805962192,
Dicom_Tags::TableTopVerticalSetupDisplacement => 805962194,
Dicom_Tags::TableTopLongitudinalSetupDisplacement => 805962196,
Dicom_Tags::TableTopLateralSetupDisplacement => 805962198,
Dicom_Tags::BrachyTreatmentTechnique => 805962240,
Dicom_Tags::BrachyTreatmentType => 805962242,
Dicom_Tags::TreatmentMachineSequence => 805962246,
Dicom_Tags::SourceSequence => 805962256,
Dicom_Tags::SourceNumber => 805962258,
Dicom_Tags::SourceType => 805962260,
Dicom_Tags::SourceManufacturer => 805962262,
Dicom_Tags::ActiveSourceDiameter => 805962264,
Dicom_Tags::ActiveSourceLength => 805962266,
Dicom_Tags::SourceModelId => 805962267,
Dicom_Tags::SourceDescription => 805962268,
Dicom_Tags::SourceEncapsulationNominalThickness => 805962274,
Dicom_Tags::SourceEncapsulationNominalTransmission => 805962276,
Dicom_Tags::SourceIsotopeName => 805962278,
Dicom_Tags::SourceIsotopeHalfLife => 805962280,
Dicom_Tags::SourceStrengthUnits => 805962281,
Dicom_Tags::ReferenceAirKermaRate => 805962282,
Dicom_Tags::SourceStrength => 805962283,
Dicom_Tags::SourceStrengthReferenceDate => 805962284,
Dicom_Tags::SourceStrengthReferenceTime => 805962286,
Dicom_Tags::ApplicationSetupSequence => 805962288,
Dicom_Tags::ApplicationSetupType => 805962290,
Dicom_Tags::ApplicationSetupNumber => 805962292,
Dicom_Tags::ApplicationSetupName => 805962294,
Dicom_Tags::ApplicationSetupManufacturer => 805962296,
Dicom_Tags::TemplateNumber => 805962304,
Dicom_Tags::TemplateType => 805962306,
Dicom_Tags::TemplateName => 805962308,
Dicom_Tags::TotalReferenceAirKerma => 805962320,
Dicom_Tags::BrachyAccessoryDeviceSequence => 805962336,
Dicom_Tags::BrachyAccessoryDeviceNumber => 805962338,
Dicom_Tags::BrachyAccessoryDeviceId => 805962339,
Dicom_Tags::BrachyAccessoryDeviceType => 805962340,
Dicom_Tags::BrachyAccessoryDeviceName => 805962342,
Dicom_Tags::BrachyAccessoryDeviceNominalThickness => 805962346,
Dicom_Tags::BrachyAccessoryDeviceNominalTransmission => 805962348,
Dicom_Tags::ChannelSequence => 805962368,
Dicom_Tags::ChannelNumber => 805962370,
Dicom_Tags::ChannelLength => 805962372,
Dicom_Tags::ChannelTotalTime => 805962374,
Dicom_Tags::SourceMovementType => 805962376,
Dicom_Tags::NumberOfPulses => 805962378,
Dicom_Tags::PulseRepetitionInterval => 805962380,
Dicom_Tags::SourceApplicatorNumber => 805962384,
Dicom_Tags::SourceApplicatorId => 805962385,
Dicom_Tags::SourceApplicatorType => 805962386,
Dicom_Tags::SourceApplicatorName => 805962388,
Dicom_Tags::SourceApplicatorLength => 805962390,
Dicom_Tags::SourceApplicatorManufacturer => 805962392,
Dicom_Tags::SourceApplicatorWallNominalThickness => 805962396,
Dicom_Tags::SourceApplicatorWallNominalTransmission => 805962398,
Dicom_Tags::SourceApplicatorStepSize => 805962400,
Dicom_Tags::TransferTubeNumber => 805962402,
Dicom_Tags::TransferTubeLength => 805962404,
Dicom_Tags::ChannelShieldSequence => 805962416,
Dicom_Tags::ChannelShieldNumber => 805962418,
Dicom_Tags::ChannelShieldId => 805962419,
Dicom_Tags::ChannelShieldName => 805962420,
Dicom_Tags::ChannelShieldNominalThickness => 805962424,
Dicom_Tags::ChannelShieldNominalTransmission => 805962426,
Dicom_Tags::FinalCumulativeTimeWeight => 805962440,
Dicom_Tags::BrachyControlPointSequence => 805962448,
Dicom_Tags::ControlPointRelativePosition => 805962450,
Dicom_Tags::ControlPoint3dPosition => 805962452,
Dicom_Tags::CumulativeTimeWeight => 805962454,
Dicom_Tags::CompensatorDivergence => 805962464,
Dicom_Tags::CompensatorMountingPosition => 805962465,
Dicom_Tags::SourceToCompensatorDistance => 805962466,
Dicom_Tags::TotalCompensatorTrayWaterEquivalentThickness => 805962467,
Dicom_Tags::IsocenterToCompensatorTrayDistance => 805962468,
Dicom_Tags::CompensatorColumnOffset => 805962469,
Dicom_Tags::IsocenterToCompensatorDistances => 805962470,
Dicom_Tags::CompensatorRelativeStoppingPowerRatio => 805962471,
Dicom_Tags::CompensatorMillingToolDiameter => 805962472,
Dicom_Tags::IonRangeCompensatorSequence => 805962474,
Dicom_Tags::CompensatorDescription => 805962475,
Dicom_Tags::RadiationMassNumber => 805962498,
Dicom_Tags::RadiationAtomicNumber => 805962500,
Dicom_Tags::RadiationChargeState => 805962502,
Dicom_Tags::ScanMode => 805962504,
Dicom_Tags::ModulatedScanModeType => 805962505,
Dicom_Tags::VirtualSourceAxisDistances => 805962506,
Dicom_Tags::SnoutSequence => 805962508,
Dicom_Tags::SnoutPosition => 805962509,
Dicom_Tags::SnoutId => 805962511,
Dicom_Tags::NumberOfRangeShifters => 805962514,
Dicom_Tags::RangeShifterSequence => 805962516,
Dicom_Tags::RangeShifterNumber => 805962518,
Dicom_Tags::RangeShifterId => 805962520,
Dicom_Tags::RangeShifterType => 805962528,
Dicom_Tags::RangeShifterDescription => 805962530,
Dicom_Tags::NumberOfLateralSpreadingDevices => 805962544,
Dicom_Tags::LateralSpreadingDeviceSequence => 805962546,
Dicom_Tags::LateralSpreadingDeviceNumber => 805962548,
Dicom_Tags::LateralSpreadingDeviceId => 805962550,
Dicom_Tags::LateralSpreadingDeviceType => 805962552,
Dicom_Tags::LateralSpreadingDeviceDescription => 805962554,
Dicom_Tags::LateralSpreadingDeviceWaterEquivalentThickness => 805962556,
Dicom_Tags::NumberOfRangeModulators => 805962560,
Dicom_Tags::RangeModulatorSequence => 805962562,
Dicom_Tags::RangeModulatorNumber => 805962564,
Dicom_Tags::RangeModulatorId => 805962566,
Dicom_Tags::RangeModulatorType => 805962568,
Dicom_Tags::RangeModulatorDescription => 805962570,
Dicom_Tags::BeamCurrentModulationId => 805962572,
Dicom_Tags::PatientSupportType => 805962576,
Dicom_Tags::PatientSupportId => 805962578,
Dicom_Tags::PatientSupportAccessoryCode => 805962580,
Dicom_Tags::TrayAccessoryCode => 805962581,
Dicom_Tags::FixationLightAzimuthalAngle => 805962582,
Dicom_Tags::FixationLightPolarAngle => 805962584,
Dicom_Tags::MetersetRate => 805962586,
Dicom_Tags::RangeShifterSettingsSequence => 805962592,
Dicom_Tags::RangeShifterSetting => 805962594,
Dicom_Tags::IsocenterToRangeShifterDistance => 805962596,
Dicom_Tags::RangeShifterWaterEquivalentThickness => 805962598,
Dicom_Tags::LateralSpreadingDeviceSettingsSequence => 805962608,
Dicom_Tags::LateralSpreadingDeviceSetting => 805962610,
Dicom_Tags::IsocenterToLateralSpreadingDeviceDistance => 805962612,
Dicom_Tags::RangeModulatorSettingsSequence => 805962624,
Dicom_Tags::RangeModulatorGatingStartValue => 805962626,
Dicom_Tags::RangeModulatorGatingStopValue => 805962628,
Dicom_Tags::RangeModulatorGatingStartWaterEquivalentThickness => 805962630,
Dicom_Tags::RangeModulatorGatingStopWaterEquivalentThickness => 805962632,
Dicom_Tags::IsocenterToRangeModulatorDistance => 805962634,
Dicom_Tags::ScanSpotTuneId => 805962640,
Dicom_Tags::ScanSpotPrescribedIndices => 805962641,
Dicom_Tags::NumberOfScanSpotPositions => 805962642,
Dicom_Tags::ScanSpotReordered => 805962643,
Dicom_Tags::ScanSpotPositionMap => 805962644,
Dicom_Tags::ScanSpotReorderingAllowed => 805962645,
Dicom_Tags::ScanSpotMetersetWeights => 805962646,
Dicom_Tags::ScanningSpotSize => 805962648,
Dicom_Tags::NumberOfPaintings => 805962650,
Dicom_Tags::IonToleranceTableSequence => 805962656,
Dicom_Tags::IonBeamSequence => 805962658,
Dicom_Tags::IonBeamLimitingDeviceSequence => 805962660,
Dicom_Tags::IonBlockSequence => 805962662,
Dicom_Tags::IonControlPointSequence => 805962664,
Dicom_Tags::IonWedgeSequence => 805962666,
Dicom_Tags::IonWedgePositionSequence => 805962668,
Dicom_Tags::ReferencedSetupImageSequence => 805962753,
Dicom_Tags::SetupImageComment => 805962754,
Dicom_Tags::MotionSynchronizationSequence => 805962768,
Dicom_Tags::ControlPointOrientation => 805962770,
Dicom_Tags::GeneralAccessorySequence => 805962784,
Dicom_Tags::GeneralAccessoryId => 805962785,
Dicom_Tags::GeneralAccessoryDescription => 805962786,
Dicom_Tags::GeneralAccessoryType => 805962787,
Dicom_Tags::GeneralAccessoryNumber => 805962788,
Dicom_Tags::SourceToGeneralAccessoryDistance => 805962789,
Dicom_Tags::ApplicatorGeometrySequence => 805962801,
Dicom_Tags::ApplicatorApertureShape => 805962802,
Dicom_Tags::ApplicatorOpening => 805962803,
Dicom_Tags::ApplicatorOpeningX => 805962804,
Dicom_Tags::ApplicatorOpeningY => 805962805,
Dicom_Tags::SourceToApplicatorMountingPositionDistance => 805962806,
Dicom_Tags::NumberOfBlockSlabItems => 805962816,
Dicom_Tags::BlockSlabSequence => 805962817,
Dicom_Tags::BlockSlabThickness => 805962818,
Dicom_Tags::BlockSlabNumber => 805962819,
Dicom_Tags::DeviceMotionControlSequence => 805962832,
Dicom_Tags::DeviceMotionExecutionMode => 805962833,
Dicom_Tags::DeviceMotionObservationMode => 805962834,
Dicom_Tags::DeviceMotionParameterCodeSequence => 805962835,
Dicom_Tags::DistalDepthFraction => 805963009,
Dicom_Tags::DistalDepth => 805963010,
Dicom_Tags::NominalRangeModulationFractions => 805963011,
Dicom_Tags::NominalRangeModulatedRegionDepths => 805963012,
Dicom_Tags::DepthDoseParametersSequence => 805963013,
Dicom_Tags::DeliveredDepthDoseParametersSequence => 805963014,
Dicom_Tags::DeliveredDistalDepthFraction => 805963015,
Dicom_Tags::DeliveredDistalDepth => 805963016,
Dicom_Tags::DeliveredNominalRangeModulationFractions => 805963017,
Dicom_Tags::DeliveredNominalRangeModulatedRegionDepths => 805963024,
Dicom_Tags::DeliveredReferenceDoseDefinition => 805963025,
Dicom_Tags::ReferenceDoseDefinition => 805963026,
Dicom_Tags::ReferencedRtPlanSequence => 806092802,
Dicom_Tags::ReferencedBeamSequence => 806092804,
Dicom_Tags::ReferencedBeamNumber => 806092806,
Dicom_Tags::ReferencedReferenceImageNumber => 806092807,
Dicom_Tags::StartCumulativeMetersetWeight => 806092808,
Dicom_Tags::EndCumulativeMetersetWeight => 806092809,
Dicom_Tags::ReferencedBrachyApplicationSetupSequence => 806092810,
Dicom_Tags::ReferencedBrachyApplicationSetupNumber => 806092812,
Dicom_Tags::ReferencedSourceNumber => 806092814,
Dicom_Tags::ReferencedFractionGroupSequence => 806092832,
Dicom_Tags::ReferencedFractionGroupNumber => 806092834,
Dicom_Tags::ReferencedVerificationImageSequence => 806092864,
Dicom_Tags::ReferencedReferenceImageSequence => 806092866,
Dicom_Tags::ReferencedDoseReferenceSequence => 806092880,
Dicom_Tags::ReferencedDoseReferenceNumber => 806092881,
Dicom_Tags::BrachyReferencedDoseReferenceSequence => 806092885,
Dicom_Tags::ReferencedStructureSetSequence => 806092896,
Dicom_Tags::ReferencedPatientSetupNumber => 806092906,
Dicom_Tags::ReferencedDoseSequence => 806092928,
Dicom_Tags::ReferencedToleranceTableNumber => 806092960,
Dicom_Tags::ReferencedBolusSequence => 806092976,
Dicom_Tags::ReferencedWedgeNumber => 806092992,
Dicom_Tags::ReferencedCompensatorNumber => 806093008,
Dicom_Tags::ReferencedBlockNumber => 806093024,
Dicom_Tags::ReferencedControlPointIndex => 806093040,
Dicom_Tags::ReferencedControlPointSequence => 806093042,
Dicom_Tags::ReferencedStartControlPointIndex => 806093044,
Dicom_Tags::ReferencedStopControlPointIndex => 806093046,
Dicom_Tags::ReferencedRangeShifterNumber => 806093056,
Dicom_Tags::ReferencedLateralSpreadingDeviceNumber => 806093058,
Dicom_Tags::ReferencedRangeModulatorNumber => 806093060,
Dicom_Tags::OmittedBeamTaskSequence => 806093073,
Dicom_Tags::ReasonForOmission => 806093074,
Dicom_Tags::ReasonForOmissionDescription => 806093075,
Dicom_Tags::ApprovalStatus => 806223874,
Dicom_Tags::ReviewDate => 806223876,
Dicom_Tags::ReviewTime => 806223877,
Dicom_Tags::ReviewerName => 806223880,
Dicom_Tags::Arbitrary => 1073741840,
Dicom_Tags::TextComments => 1073758208,
Dicom_Tags::ResultsId => 1074266176,
Dicom_Tags::ResultsIdIssuer => 1074266178,
Dicom_Tags::ReferencedInterpretationSequence => 1074266192,
Dicom_Tags::ReportProductionStatusTrial => 1074266367,
Dicom_Tags::InterpretationRecordedDate => 1074266368,
Dicom_Tags::InterpretationRecordedTime => 1074266369,
Dicom_Tags::InterpretationRecorder => 1074266370,
Dicom_Tags::ReferenceToRecordedSound => 1074266371,
Dicom_Tags::InterpretationTranscriptionDate => 1074266376,
Dicom_Tags::InterpretationTranscriptionTime => 1074266377,
Dicom_Tags::InterpretationTranscriber => 1074266378,
Dicom_Tags::InterpretationText => 1074266379,
Dicom_Tags::InterpretationAuthor => 1074266380,
Dicom_Tags::InterpretationApproverSequence => 1074266385,
Dicom_Tags::InterpretationApprovalDate => 1074266386,
Dicom_Tags::InterpretationApprovalTime => 1074266387,
Dicom_Tags::PhysicianApprovingInterpretation => 1074266388,
Dicom_Tags::InterpretationDiagnosisDescription => 1074266389,
Dicom_Tags::InterpretationDiagnosisCodeSequence => 1074266391,
Dicom_Tags::ResultsDistributionListSequence => 1074266392,
Dicom_Tags::DistributionName => 1074266393,
Dicom_Tags::DistributionAddress => 1074266394,
Dicom_Tags::InterpretationId => 1074266624,
Dicom_Tags::InterpretationIdIssuer => 1074266626,
Dicom_Tags::InterpretationTypeId => 1074266640,
Dicom_Tags::InterpretationStatusId => 1074266642,
Dicom_Tags::Impressions => 1074266880,
Dicom_Tags::ResultsComments => 1074282496,
Dicom_Tags::LowEnergyDetectors => 1074790401,
Dicom_Tags::HighEnergyDetectors => 1074790402,
Dicom_Tags::DetectorGeometrySequence => 1074790404,
Dicom_Tags::ThreatRoiVoxelSequence => 1074794497,
Dicom_Tags::ThreatRoiBase => 1074794500,
Dicom_Tags::ThreatRoiExtents => 1074794501,
Dicom_Tags::ThreatRoiBitmap => 1074794502,
Dicom_Tags::RouteSegmentId => 1074794503,
Dicom_Tags::GantryType => 1074794504,
Dicom_Tags::OoiOwnerType => 1074794505,
Dicom_Tags::RouteSegmentSequence => 1074794506,
Dicom_Tags::PotentialThreatObjectId => 1074794512,
Dicom_Tags::ThreatSequence => 1074794513,
Dicom_Tags::ThreatCategory => 1074794514,
Dicom_Tags::ThreatCategoryDescription => 1074794515,
Dicom_Tags::AtdAbilityAssessment => 1074794516,
Dicom_Tags::AtdAssessmentFlag => 1074794517,
Dicom_Tags::AtdAssessmentProbability => 1074794518,
Dicom_Tags::Mass => 1074794519,
Dicom_Tags::Density => 1074794520,
Dicom_Tags::ZEffective => 1074794521,
Dicom_Tags::BoardingPassId => 1074794522,
Dicom_Tags::CenterOfMass => 1074794523,
Dicom_Tags::CenterOfPto => 1074794524,
Dicom_Tags::BoundingPolygon => 1074794525,
Dicom_Tags::RouteSegmentStartLocationId => 1074794526,
Dicom_Tags::RouteSegmentEndLocationId => 1074794527,
Dicom_Tags::RouteSegmentLocationIdType => 1074794528,
Dicom_Tags::AbortReason => 1074794529,
Dicom_Tags::VolumeOfPto => 1074794531,
Dicom_Tags::AbortFlag => 1074794532,
Dicom_Tags::RouteSegmentStartTime => 1074794533,
Dicom_Tags::RouteSegmentEndTime => 1074794534,
Dicom_Tags::TdrType => 1074794535,
Dicom_Tags::InternationalRouteSegment => 1074794536,
Dicom_Tags::ThreatDetectionAlgorithmAndVersion => 1074794537,
Dicom_Tags::AssignedLocation => 1074794538,
Dicom_Tags::AlarmDecisionTime => 1074794539,
Dicom_Tags::AlarmDecision => 1074794545,
Dicom_Tags::NumberOfTotalObjects => 1074794547,
Dicom_Tags::NumberOfAlarmObjects => 1074794548,
Dicom_Tags::PtoRepresentationSequence => 1074794551,
Dicom_Tags::AtdAssessmentSequence => 1074794552,
Dicom_Tags::TipType => 1074794553,
Dicom_Tags::Version => 1074794554,
Dicom_Tags::OoiOwnerCreationTime => 1074794561,
Dicom_Tags::OoiType => 1074794562,
Dicom_Tags::OoiSize => 1074794563,
Dicom_Tags::AcquisitionStatus => 1074794564,
Dicom_Tags::BasisMaterialsCodeSequence => 1074794565,
Dicom_Tags::PhantomType => 1074794566,
Dicom_Tags::OoiOwnerSequence => 1074794567,
Dicom_Tags::ScanType => 1074794568,
Dicom_Tags::ItineraryId => 1074794577,
Dicom_Tags::ItineraryIdType => 1074794578,
Dicom_Tags::ItineraryIdAssigningAuthority => 1074794579,
Dicom_Tags::RouteId => 1074794580,
Dicom_Tags::RouteIdAssigningAuthority => 1074794581,
Dicom_Tags::InboundArrivalType => 1074794582,
Dicom_Tags::CarrierId => 1074794584,
Dicom_Tags::CarrierIdAssigningAuthority => 1074794585,
Dicom_Tags::SourceOrientation => 1074794592,
Dicom_Tags::SourcePosition => 1074794593,
Dicom_Tags::BeltHeight => 1074794594,
Dicom_Tags::AlgorithmRoutingCodeSequence => 1074794596,
Dicom_Tags::TransportClassification => 1074794599,
Dicom_Tags::OoiTypeDescriptor => 1074794600,
Dicom_Tags::TotalProcessingTime => 1074794601,
Dicom_Tags::DetectorCalibrationData => 1074794604,
Dicom_Tags::AdditionalScreeningPerformed => 1074794605,
Dicom_Tags::AdditionalInspectionSelectionCriteria => 1074794606,
Dicom_Tags::AdditionalInspectionMethodSequence => 1074794607,
Dicom_Tags::AitDeviceType => 1074794608,
Dicom_Tags::QrMeasurementsSequence => 1074794609,
Dicom_Tags::TargetMaterialSequence => 1074794610,
Dicom_Tags::SnrThreshold => 1074794611,
Dicom_Tags::ImageScaleRepresentation => 1074794613,
Dicom_Tags::ReferencedPtoSequence => 1074794614,
Dicom_Tags::ReferencedTdrInstanceSequence => 1074794615,
Dicom_Tags::PtoLocationDescription => 1074794616,
Dicom_Tags::AnomalyLocatorIndicatorSequence => 1074794617,
Dicom_Tags::AnomalyLocatorIndicator => 1074794618,
Dicom_Tags::PtoRegionSequence => 1074794619,
Dicom_Tags::InspectionSelectionCriteria => 1074794620,
Dicom_Tags::SecondaryInspectionMethodSequence => 1074794621,
Dicom_Tags::PrcsToRcsOrientation => 1074794622,
Dicom_Tags::MacParametersSequence => 1342046209,
Dicom_Tags::SharedFunctionalGroupsSequence => 1375769129,
Dicom_Tags::PerFrameFunctionalGroupsSequence => 1375769136,
Dicom_Tags::WaveformSequence => 1409286400,
Dicom_Tags::ChannelMinimumValue => 1409286416,
Dicom_Tags::ChannelMaximumValue => 1409286418,
Dicom_Tags::WaveformBitsAllocated => 1409290244,
Dicom_Tags::WaveformSampleInterpretation => 1409290246,
Dicom_Tags::WaveformPaddingValue => 1409290250,
Dicom_Tags::WaveformData => 1409290256,
Dicom_Tags::FirstOrderPhaseCorrectionAngle => 1442840592,
Dicom_Tags::SpectroscopyData => 1442840608,
Dicom_Tags::FloatPixelData => 2145386504,
Dicom_Tags::DoubleFloatPixelData => 2145386505,
Dicom_Tags::PixelData => 2145386512,
Dicom_Tags::CoefficientsSdvn => 2145386528,
Dicom_Tags::CoefficientsSdhn => 2145386544,
Dicom_Tags::CoefficientsSddn => 2145386560,
Dicom_Tags::DigitalSignaturesSequence => 4294639610,
Dicom_Tags::DataSetTrailingPadding => 4294770684,
Dicom_Tags::Item => 4294893568,
Dicom_Tags::ItemDelimitationItem => 4294893581,
Dicom_Tags::SequenceDelimitationItem => 4294893789,
Dicom_Tags::Unknown(v) => v
}
}
}
impl Default for Dicom_Tags {
fn default() -> Self { Dicom_Tags::Unknown(0) }
}
#[derive(Default, Debug, Clone)]
pub struct Dicom_SeqItem {
pub _root: SharedType<Dicom>,
pub _parent: SharedType<KStructUnit>,
pub _self: SharedType<Self>,
tag_group: RefCell<Vec<u8>>,
tag_elem: RefCell<u16>,
value_len: RefCell<u32>,
value: RefCell<Vec<u8>>,
items: RefCell<Vec<OptRc<Dicom_TDataElementExplicit>>>,
_io: RefCell<BytesReader>,
}
impl KStruct for Dicom_SeqItem {
type Root = Dicom;
type Parent = KStructUnit;
fn read<S: KStream>(
self_rc: &OptRc<Self>,
_io: &S,
_root: SharedType<Self::Root>,
_parent: SharedType<Self::Parent>,
) -> KResult<()> {
*self_rc._io.borrow_mut() = _io.clone();
self_rc._root.set(_root.get());
self_rc._parent.set(_parent.get());
self_rc._self.set(Ok(self_rc.clone()));
let _rrc = self_rc._root.get_value().borrow().upgrade();
let _prc = self_rc._parent.get_value().borrow().upgrade();
let _r = _rrc.as_ref().unwrap();
*self_rc.tag_group.borrow_mut() = _io.read_bytes(2 as usize)?.into();
if !(*self_rc.tag_group() == vec![0xfeu8, 0xffu8]) {
return Err(KError::ValidationFailed(ValidationFailedError { kind: ValidationKind::NotEqual, src_path: "/types/seq_item/seq/0".to_string() }));
}
*self_rc.tag_elem.borrow_mut() = _io.read_u2le()?.into();
*self_rc.value_len.borrow_mut() = _io.read_u4le()?.into();
if ((*self_rc.value_len() as i32) != (4294967295 as i32)) {
*self_rc.value.borrow_mut() = _io.read_bytes(*self_rc.value_len() as usize)?.into();
}
if ((*self_rc.value_len() as i32) == (4294967295 as i32)) {
*self_rc.items.borrow_mut() = Vec::new();
{
let mut _i = 0;
while {
let t = Self::read_into::<_, Dicom_TDataElementExplicit>(&*_io, Some(self_rc._root.clone()), None)?.into();
self_rc.items.borrow_mut().push(t);
let _t_items = self_rc.items.borrow();
let _tmpa = _t_items.last().unwrap();
_i += 1;
let x = !( ((((*_tmpa.tag_group() as i32) == (65534 as i32))) && (((*_tmpa.tag_elem() as i32) == (57357 as i32)))) );
x
} {}
}
}
Ok(())
}
}
impl Dicom_SeqItem {
}
impl Dicom_SeqItem {
pub fn tag_group(&self) -> Ref<'_, Vec<u8>> {
self.tag_group.borrow()
}
}
impl Dicom_SeqItem {
pub fn tag_elem(&self) -> Ref<'_, u16> {
self.tag_elem.borrow()
}
}
impl Dicom_SeqItem {
pub fn value_len(&self) -> Ref<'_, u32> {
self.value_len.borrow()
}
}
impl Dicom_SeqItem {
pub fn value(&self) -> Ref<'_, Vec<u8>> {
self.value.borrow()
}
}
impl Dicom_SeqItem {
pub fn items(&self) -> Ref<'_, Vec<OptRc<Dicom_TDataElementExplicit>>> {
self.items.borrow()
}
}
impl Dicom_SeqItem {
pub fn _io(&self) -> Ref<'_, BytesReader> {
self._io.borrow()
}
}
/**
* \sa https://dicom.nema.org/medical/dicom/current/output/html/part05.html#sect_7.1.2 Source
*/
#[derive(Default, Debug, Clone)]
pub struct Dicom_TDataElementExplicit {
pub _root: SharedType<Dicom>,
pub _parent: SharedType<KStructUnit>,
pub _self: SharedType<Self>,
tag_group: RefCell<u16>,
tag_elem: RefCell<u16>,
vr: RefCell<String>,
reserved: RefCell<u16>,
value_len: RefCell<Option<Dicom_TDataElementExplicit_ValueLen>>,
value: RefCell<Vec<u8>>,
items: RefCell<Vec<OptRc<Dicom_SeqItem>>>,
elements_implicit: RefCell<Vec<OptRc<Dicom_TDataElementImplicit>>>,
_io: RefCell<BytesReader>,
f_is_forced_implicit: Cell<bool>,
is_forced_implicit: RefCell<bool>,
f_is_long_len: Cell<bool>,
is_long_len: RefCell<bool>,
f_is_transfer_syntax_change_implicit: Cell<bool>,
is_transfer_syntax_change_implicit: RefCell<bool>,
f_tag: Cell<bool>,
tag: RefCell<Dicom_Tags>,
}
#[derive(Debug, Clone)]
pub enum Dicom_TDataElementExplicit_ValueLen {
U2(u16),
U4(u32),
}
impl From<u16> for Dicom_TDataElementExplicit_ValueLen {
fn from(v: u16) -> Self {
Self::U2(v)
}
}
impl From<&Dicom_TDataElementExplicit_ValueLen> for u16 {
fn from(e: &Dicom_TDataElementExplicit_ValueLen) -> Self {
if let Dicom_TDataElementExplicit_ValueLen::U2(v) = e {
return *v
}
panic!("trying to convert from enum Dicom_TDataElementExplicit_ValueLen::U2 to u16, enum value {:?}", e)
}
}
impl From<u32> for Dicom_TDataElementExplicit_ValueLen {
fn from(v: u32) -> Self {
Self::U4(v)
}
}
impl From<&Dicom_TDataElementExplicit_ValueLen> for u32 {
fn from(e: &Dicom_TDataElementExplicit_ValueLen) -> Self {
if let Dicom_TDataElementExplicit_ValueLen::U4(v) = e {
return *v
}
panic!("trying to convert from enum Dicom_TDataElementExplicit_ValueLen::U4 to u32, enum value {:?}", e)
}
}
impl From<&Dicom_TDataElementExplicit_ValueLen> for usize {
fn from(e: &Dicom_TDataElementExplicit_ValueLen) -> Self {
match e {
Dicom_TDataElementExplicit_ValueLen::U2(v) => *v as usize,
Dicom_TDataElementExplicit_ValueLen::U4(v) => *v as usize,
}
}
}
impl KStruct for Dicom_TDataElementExplicit {
type Root = Dicom;
type Parent = KStructUnit;
fn read<S: KStream>(
self_rc: &OptRc<Self>,
_io: &S,
_root: SharedType<Self::Root>,
_parent: SharedType<Self::Parent>,
) -> KResult<()> {
*self_rc._io.borrow_mut() = _io.clone();
self_rc._root.set(_root.get());
self_rc._parent.set(_parent.get());
self_rc._self.set(Ok(self_rc.clone()));
let _rrc = self_rc._root.get_value().borrow().upgrade();
let _prc = self_rc._parent.get_value().borrow().upgrade();
let _r = _rrc.as_ref().unwrap();
*self_rc.tag_group.borrow_mut() = _io.read_u2le()?.into();
*self_rc.tag_elem.borrow_mut() = _io.read_u2le()?.into();
if !(*self_rc.is_forced_implicit()?) {
*self_rc.vr.borrow_mut() = bytes_to_str(&_io.read_bytes(2 as usize)?.into(), "ASCII")?;
}
if ((*self_rc.is_long_len()?) && (!(*self_rc.is_forced_implicit()?))) {
*self_rc.reserved.borrow_mut() = _io.read_u2le()?.into();
}
{
let on = self_rc.is_long_len()?;
if *on == false {
*self_rc.value_len.borrow_mut() = Some(_io.read_u2le()?.into());
}
else if *on == true {
*self_rc.value_len.borrow_mut() = Some(_io.read_u4le()?.into());
}
}
if ((self_rc.value_len() as i32) != (4294967295 as i32)) {
*self_rc.value.borrow_mut() = _io.read_bytes(self_rc.value_len() as usize)?.into();
}
if ((*self_rc.vr() == "SQ".to_string()) && (((self_rc.value_len() as i32) == (4294967295 as i32)))) {
*self_rc.items.borrow_mut() = Vec::new();
{
let mut _i = 0;
while {
let t = Self::read_into::<_, Dicom_SeqItem>(&*_io, Some(self_rc._root.clone()), None)?.into();
self_rc.items.borrow_mut().push(t);
let _t_items = self_rc.items.borrow();
let _tmpa = _t_items.last().unwrap();
_i += 1;
let x = !(((*_tmpa.tag_elem() as i32) == (57565 as i32)));
x
} {}
}
}
if *self_rc.is_transfer_syntax_change_implicit()? {
*self_rc.elements_implicit.borrow_mut() = Vec::new();
{
let mut _i = 0;
while !_io.is_eof() {
let t = Self::read_into::<_, Dicom_TDataElementImplicit>(&*_io, Some(self_rc._root.clone()), None)?.into();
self_rc.elements_implicit.borrow_mut().push(t);
_i += 1;
}
}
}
Ok(())
}
}
impl Dicom_TDataElementExplicit {
pub fn is_forced_implicit(
&self
) -> KResult<Ref<'_, bool>> {
let _io = self._io.borrow();
let _rrc = self._root.get_value().borrow().upgrade();
let _prc = self._parent.get_value().borrow().upgrade();
let _r = _rrc.as_ref().unwrap();
if self.f_is_forced_implicit.get() {
return Ok(self.is_forced_implicit.borrow());
}
self.f_is_forced_implicit.set(true);
*self.is_forced_implicit.borrow_mut() = (((*self.tag_group() as i32) == (65534 as i32))) as bool;
Ok(self.is_forced_implicit.borrow())
}
pub fn is_long_len(
&self
) -> KResult<Ref<'_, bool>> {
let _io = self._io.borrow();
let _rrc = self._root.get_value().borrow().upgrade();
let _prc = self._parent.get_value().borrow().upgrade();
let _r = _rrc.as_ref().unwrap();
if self.f_is_long_len.get() {
return Ok(self.is_long_len.borrow());
}
self.f_is_long_len.set(true);
*self.is_long_len.borrow_mut() = ( ((*self.is_forced_implicit()?) || (*self.vr() == "OB".to_string()) || (*self.vr() == "OD".to_string()) || (*self.vr() == "OF".to_string()) || (*self.vr() == "OL".to_string()) || (*self.vr() == "OW".to_string()) || (*self.vr() == "SQ".to_string()) || (*self.vr() == "UC".to_string()) || (*self.vr() == "UR".to_string()) || (*self.vr() == "UT".to_string()) || (*self.vr() == "UN".to_string())) ) as bool;
Ok(self.is_long_len.borrow())
}
pub fn is_transfer_syntax_change_implicit(
&self
) -> KResult<Ref<'_, bool>> {
let _io = self._io.borrow();
let _rrc = self._root.get_value().borrow().upgrade();
let _prc = self._parent.get_value().borrow().upgrade();
let _r = _rrc.as_ref().unwrap();
if self.f_is_transfer_syntax_change_implicit.get() {
return Ok(self.is_transfer_syntax_change_implicit.borrow());
}
self.f_is_transfer_syntax_change_implicit.set(true);
*self.is_transfer_syntax_change_implicit.borrow_mut() = (false) as bool;
Ok(self.is_transfer_syntax_change_implicit.borrow())
}
pub fn tag(
&self
) -> KResult<Ref<'_, Dicom_Tags>> {
let _io = self._io.borrow();
let _rrc = self._root.get_value().borrow().upgrade();
let _prc = self._parent.get_value().borrow().upgrade();
let _r = _rrc.as_ref().unwrap();
if self.f_tag.get() {
return Ok(self.tag.borrow());
}
self.f_tag.set(true);
*self.tag.borrow_mut() = (((((*self.tag_group() as u16) << (16 as u16)) as i32) | (*self.tag_elem() as i32)) as i64).try_into()?;
Ok(self.tag.borrow())
}
}
impl Dicom_TDataElementExplicit {
pub fn tag_group(&self) -> Ref<'_, u16> {
self.tag_group.borrow()
}
}
impl Dicom_TDataElementExplicit {
pub fn tag_elem(&self) -> Ref<'_, u16> {
self.tag_elem.borrow()
}
}
impl Dicom_TDataElementExplicit {
pub fn vr(&self) -> Ref<'_, String> {
self.vr.borrow()
}
}
impl Dicom_TDataElementExplicit {
pub fn reserved(&self) -> Ref<'_, u16> {
self.reserved.borrow()
}
}
impl Dicom_TDataElementExplicit {
pub fn value_len(&self) -> usize {
self.value_len.borrow().as_ref().unwrap().into()
}
pub fn value_len_enum(&self) -> Ref<'_, Option<Dicom_TDataElementExplicit_ValueLen>> {
self.value_len.borrow()
}
}
impl Dicom_TDataElementExplicit {
pub fn value(&self) -> Ref<'_, Vec<u8>> {
self.value.borrow()
}
}
impl Dicom_TDataElementExplicit {
pub fn items(&self) -> Ref<'_, Vec<OptRc<Dicom_SeqItem>>> {
self.items.borrow()
}
}
impl Dicom_TDataElementExplicit {
pub fn elements_implicit(&self) -> Ref<'_, Vec<OptRc<Dicom_TDataElementImplicit>>> {
self.elements_implicit.borrow()
}
}
impl Dicom_TDataElementExplicit {
pub fn _io(&self) -> Ref<'_, BytesReader> {
self._io.borrow()
}
}
/**
* \sa https://dicom.nema.org/medical/dicom/current/output/html/part05.html#sect_7.1.2 Source
*/
#[derive(Default, Debug, Clone)]
pub struct Dicom_TDataElementImplicit {
pub _root: SharedType<Dicom>,
pub _parent: SharedType<KStructUnit>,
pub _self: SharedType<Self>,
tag_group: RefCell<u16>,
tag_elem: RefCell<u16>,
vr: RefCell<String>,
reserved: RefCell<u16>,
value_len: RefCell<Option<Dicom_TDataElementImplicit_ValueLen>>,
value: RefCell<Vec<u8>>,
items: RefCell<Vec<OptRc<Dicom_SeqItem>>>,
elements: RefCell<Vec<OptRc<Dicom_TDataElementExplicit>>>,
_io: RefCell<BytesReader>,
f_is_forced_explicit: Cell<bool>,
is_forced_explicit: RefCell<bool>,
f_is_long_len: Cell<bool>,
is_long_len: RefCell<bool>,
f_is_transfer_syntax_change_explicit: Cell<bool>,
is_transfer_syntax_change_explicit: RefCell<bool>,
f_p_is_transfer_syntax_change_explicit: Cell<bool>,
p_is_transfer_syntax_change_explicit: RefCell<bool>,
f_tag: Cell<bool>,
tag: RefCell<Dicom_Tags>,
}
#[derive(Debug, Clone)]
pub enum Dicom_TDataElementImplicit_ValueLen {
U2(u16),
U4(u32),
}
impl From<u16> for Dicom_TDataElementImplicit_ValueLen {
fn from(v: u16) -> Self {
Self::U2(v)
}
}
impl From<&Dicom_TDataElementImplicit_ValueLen> for u16 {
fn from(e: &Dicom_TDataElementImplicit_ValueLen) -> Self {
if let Dicom_TDataElementImplicit_ValueLen::U2(v) = e {
return *v
}
panic!("trying to convert from enum Dicom_TDataElementImplicit_ValueLen::U2 to u16, enum value {:?}", e)
}
}
impl From<u32> for Dicom_TDataElementImplicit_ValueLen {
fn from(v: u32) -> Self {
Self::U4(v)
}
}
impl From<&Dicom_TDataElementImplicit_ValueLen> for u32 {
fn from(e: &Dicom_TDataElementImplicit_ValueLen) -> Self {
if let Dicom_TDataElementImplicit_ValueLen::U4(v) = e {
return *v
}
panic!("trying to convert from enum Dicom_TDataElementImplicit_ValueLen::U4 to u32, enum value {:?}", e)
}
}
impl From<&Dicom_TDataElementImplicit_ValueLen> for usize {
fn from(e: &Dicom_TDataElementImplicit_ValueLen) -> Self {
match e {
Dicom_TDataElementImplicit_ValueLen::U2(v) => *v as usize,
Dicom_TDataElementImplicit_ValueLen::U4(v) => *v as usize,
}
}
}
impl KStruct for Dicom_TDataElementImplicit {
type Root = Dicom;
type Parent = KStructUnit;
fn read<S: KStream>(
self_rc: &OptRc<Self>,
_io: &S,
_root: SharedType<Self::Root>,
_parent: SharedType<Self::Parent>,
) -> KResult<()> {
*self_rc._io.borrow_mut() = _io.clone();
self_rc._root.set(_root.get());
self_rc._parent.set(_parent.get());
self_rc._self.set(Ok(self_rc.clone()));
let _rrc = self_rc._root.get_value().borrow().upgrade();
let _prc = self_rc._parent.get_value().borrow().upgrade();
let _r = _rrc.as_ref().unwrap();
*self_rc.tag_group.borrow_mut() = _io.read_u2le()?.into();
*self_rc.tag_elem.borrow_mut() = _io.read_u2le()?.into();
if *self_rc.is_forced_explicit()? {
*self_rc.vr.borrow_mut() = bytes_to_str(&_io.read_bytes(2 as usize)?.into(), "ASCII")?;
}
if ((*self_rc.is_long_len()?) && (*self_rc.is_forced_explicit()?)) {
*self_rc.reserved.borrow_mut() = _io.read_u2le()?.into();
}
{
let on = if *self_rc.is_forced_explicit()? { *self_rc.is_long_len()? } else { true };
if *on == false {
*self_rc.value_len.borrow_mut() = Some(_io.read_u2le()?.into());
}
else if *on == true {
*self_rc.value_len.borrow_mut() = Some(_io.read_u4le()?.into());
}
}
if ((self_rc.value_len() as i32) != (4294967295 as i32)) {
*self_rc.value.borrow_mut() = _io.read_bytes(self_rc.value_len() as usize)?.into();
}
if ((*self_rc.vr() == "SQ".to_string()) && (((self_rc.value_len() as i32) == (4294967295 as i32)))) {
*self_rc.items.borrow_mut() = Vec::new();
{
let mut _i = 0;
while {
let t = Self::read_into::<_, Dicom_SeqItem>(&*_io, Some(self_rc._root.clone()), None)?.into();
self_rc.items.borrow_mut().push(t);
let _t_items = self_rc.items.borrow();
let _tmpa = _t_items.last().unwrap();
_i += 1;
let x = !(((*_tmpa.tag_elem() as i32) == (57565 as i32)));
x
} {}
}
}
if *self_rc.is_transfer_syntax_change_explicit()? {
*self_rc.elements.borrow_mut() = Vec::new();
{
let mut _i = 0;
while !_io.is_eof() {
let t = Self::read_into::<_, Dicom_TDataElementExplicit>(&*_io, Some(self_rc._root.clone()), None)?.into();
self_rc.elements.borrow_mut().push(t);
_i += 1;
}
}
}
Ok(())
}
}
impl Dicom_TDataElementImplicit {
pub fn is_forced_explicit(
&self
) -> KResult<Ref<'_, bool>> {
let _io = self._io.borrow();
let _rrc = self._root.get_value().borrow().upgrade();
let _prc = self._parent.get_value().borrow().upgrade();
let _r = _rrc.as_ref().unwrap();
if self.f_is_forced_explicit.get() {
return Ok(self.is_forced_explicit.borrow());
}
self.f_is_forced_explicit.set(true);
*self.is_forced_explicit.borrow_mut() = (((*self.tag_group() as u16) == (2 as u16))) as bool;
Ok(self.is_forced_explicit.borrow())
}
pub fn is_long_len(
&self
) -> KResult<Ref<'_, bool>> {
let _io = self._io.borrow();
let _rrc = self._root.get_value().borrow().upgrade();
let _prc = self._parent.get_value().borrow().upgrade();
let _r = _rrc.as_ref().unwrap();
if self.f_is_long_len.get() {
return Ok(self.is_long_len.borrow());
}
self.f_is_long_len.set(true);
*self.is_long_len.borrow_mut() = ( ((*self.is_forced_explicit()?) && ( ((*self.vr() == "OB".to_string()) || (*self.vr() == "OD".to_string()) || (*self.vr() == "OF".to_string()) || (*self.vr() == "OL".to_string()) || (*self.vr() == "OW".to_string()) || (*self.vr() == "SQ".to_string()) || (*self.vr() == "UC".to_string()) || (*self.vr() == "UR".to_string()) || (*self.vr() == "UT".to_string()) || (*self.vr() == "UN".to_string())) )) ) as bool;
Ok(self.is_long_len.borrow())
}
pub fn is_transfer_syntax_change_explicit(
&self
) -> KResult<Ref<'_, bool>> {
let _io = self._io.borrow();
let _rrc = self._root.get_value().borrow().upgrade();
let _prc = self._parent.get_value().borrow().upgrade();
let _r = _rrc.as_ref().unwrap();
if self.f_is_transfer_syntax_change_explicit.get() {
return Ok(self.is_transfer_syntax_change_explicit.borrow());
}
self.f_is_transfer_syntax_change_explicit.set(true);
*self.is_transfer_syntax_change_explicit.borrow_mut() = (*self.p_is_transfer_syntax_change_explicit()?) as bool;
Ok(self.is_transfer_syntax_change_explicit.borrow())
}
pub fn p_is_transfer_syntax_change_explicit(
&self
) -> KResult<Ref<'_, bool>> {
let _io = self._io.borrow();
let _rrc = self._root.get_value().borrow().upgrade();
let _prc = self._parent.get_value().borrow().upgrade();
let _r = _rrc.as_ref().unwrap();
if self.f_p_is_transfer_syntax_change_explicit.get() {
return Ok(self.p_is_transfer_syntax_change_explicit.borrow());
}
self.f_p_is_transfer_syntax_change_explicit.set(true);
*self.p_is_transfer_syntax_change_explicit.borrow_mut() = (*self.value() == vec![0x31u8, 0x2eu8, 0x32u8, 0x2eu8, 0x38u8, 0x34u8, 0x30u8, 0x2eu8, 0x31u8, 0x30u8, 0x30u8, 0x30u8, 0x38u8, 0x2eu8, 0x31u8, 0x2eu8, 0x32u8, 0x2eu8, 0x31u8, 0x0u8]) as bool;
Ok(self.p_is_transfer_syntax_change_explicit.borrow())
}
pub fn tag(
&self
) -> KResult<Ref<'_, Dicom_Tags>> {
let _io = self._io.borrow();
let _rrc = self._root.get_value().borrow().upgrade();
let _prc = self._parent.get_value().borrow().upgrade();
let _r = _rrc.as_ref().unwrap();
if self.f_tag.get() {
return Ok(self.tag.borrow());
}
self.f_tag.set(true);
*self.tag.borrow_mut() = (((((*self.tag_group() as u16) << (16 as u16)) as i32) | (*self.tag_elem() as i32)) as i64).try_into()?;
Ok(self.tag.borrow())
}
}
impl Dicom_TDataElementImplicit {
pub fn tag_group(&self) -> Ref<'_, u16> {
self.tag_group.borrow()
}
}
impl Dicom_TDataElementImplicit {
pub fn tag_elem(&self) -> Ref<'_, u16> {
self.tag_elem.borrow()
}
}
impl Dicom_TDataElementImplicit {
pub fn vr(&self) -> Ref<'_, String> {
self.vr.borrow()
}
}
impl Dicom_TDataElementImplicit {
pub fn reserved(&self) -> Ref<'_, u16> {
self.reserved.borrow()
}
}
impl Dicom_TDataElementImplicit {
pub fn value_len(&self) -> usize {
self.value_len.borrow().as_ref().unwrap().into()
}
pub fn value_len_enum(&self) -> Ref<'_, Option<Dicom_TDataElementImplicit_ValueLen>> {
self.value_len.borrow()
}
}
impl Dicom_TDataElementImplicit {
pub fn value(&self) -> Ref<'_, Vec<u8>> {
self.value.borrow()
}
}
impl Dicom_TDataElementImplicit {
pub fn items(&self) -> Ref<'_, Vec<OptRc<Dicom_SeqItem>>> {
self.items.borrow()
}
}
impl Dicom_TDataElementImplicit {
pub fn elements(&self) -> Ref<'_, Vec<OptRc<Dicom_TDataElementExplicit>>> {
self.elements.borrow()
}
}
impl Dicom_TDataElementImplicit {
pub fn _io(&self) -> Ref<'_, BytesReader> {
self._io.borrow()
}
}
#[derive(Default, Debug, Clone)]
pub struct Dicom_TFileHeader {
pub _root: SharedType<Dicom>,
pub _parent: SharedType<Dicom>,
pub _self: SharedType<Self>,
preamble: RefCell<Vec<u8>>,
magic: RefCell<Vec<u8>>,
_io: RefCell<BytesReader>,
}
impl KStruct for Dicom_TFileHeader {
type Root = Dicom;
type Parent = Dicom;
fn read<S: KStream>(
self_rc: &OptRc<Self>,
_io: &S,
_root: SharedType<Self::Root>,
_parent: SharedType<Self::Parent>,
) -> KResult<()> {
*self_rc._io.borrow_mut() = _io.clone();
self_rc._root.set(_root.get());
self_rc._parent.set(_parent.get());
self_rc._self.set(Ok(self_rc.clone()));
let _rrc = self_rc._root.get_value().borrow().upgrade();
let _prc = self_rc._parent.get_value().borrow().upgrade();
let _r = _rrc.as_ref().unwrap();
*self_rc.preamble.borrow_mut() = _io.read_bytes(128 as usize)?.into();
*self_rc.magic.borrow_mut() = _io.read_bytes(4 as usize)?.into();
if !(*self_rc.magic() == vec![0x44u8, 0x49u8, 0x43u8, 0x4du8]) {
return Err(KError::ValidationFailed(ValidationFailedError { kind: ValidationKind::NotEqual, src_path: "/types/t_file_header/seq/1".to_string() }));
}
Ok(())
}
}
impl Dicom_TFileHeader {
}
impl Dicom_TFileHeader {
pub fn preamble(&self) -> Ref<'_, Vec<u8>> {
self.preamble.borrow()
}
}
impl Dicom_TFileHeader {
pub fn magic(&self) -> Ref<'_, Vec<u8>> {
self.magic.borrow()
}
}
impl Dicom_TFileHeader {
pub fn _io(&self) -> Ref<'_, BytesReader> {
self._io.borrow()
}
}