dicom 0.1 → 0.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,2859 @@
1
+ module DICOM
2
+ # This class holds all the dictionary data.
3
+ # RET appearing behind an array entry means that the use of this particular element has been retired according to the official DICOM standard.
4
+ class Dictionary
5
+
6
+ # Loads the image type library (Photometric Interpretation).
7
+ # (Tag label: 0028,0004)
8
+ def load_image_types()
9
+ a = Array.new()
10
+ b = Array.new()
11
+ a+=["MONOCHROME1"] and b+=["grey level image description (high values=dark, low values=bright)"]
12
+ a+=["MONOCHROME2"] and b+=["grey level image description (high values=bright, low values=dark)"]
13
+ a+=["PALETTE COLOR"] and b+=["pseudo color image description"]
14
+ a+=["RGB"] and b+=["true color image description"]
15
+ a+=["YBR_FULL"] and b+=["true color image description"]
16
+ a+=["YBR_FULL_422"] and b+=["true color image description"]
17
+ return [a,b]
18
+ end
19
+
20
+ # Table A.1 UID Values (DICOM Part 6, Annex A: Registry of DICOM unique identifiers)
21
+ def load_uid()
22
+ r = Array.new()
23
+ s = Array.new()
24
+ t = Array.new()
25
+ r+=["1.2.840.10008.1.1"] and s+=["Verification SOP Class"] and t+=["SOP Class"]
26
+ # Start: Transfer syntax (Tag label: 0002,0010)
27
+ r+=["1.2.840.10008.1.2"] and s+=["Implicit VR Little Endian: Default Transfer Syntax for DICOM"] and t+=["Transfer Syntax"]
28
+ r+=["1.2.840.10008.1.2.1"] and s+=["Explicit VR Little Endian"] and t+=["Transfer Syntax"]
29
+ r+=["1.2.840.10008.1.2.1.99"] and s+=["Deflated Explicit VR Little Endian"] and t+=["Transfer Syntax"]
30
+ r+=["1.2.840.10008.1.2.2"] and s+=["Explicit VR Big Endian"] and t+=["Transfer Syntax"]
31
+ r+=["1.2.840.10008.1.2.4.50"] and s+=["JPEG Baseline (Process 1): Default Transfer Syntax for Lossy JPEG 8 Bit Image Compression"] and t+=["Transfer Syntax"]
32
+ r+=["1.2.840.10008.1.2.4.51"] and s+=["JPEG Extended (Process 2 & 4): Default Transfer Syntax for Lossy JPEG 12 Bit Image Compression (Process 4 only)"] and t+=["Transfer Syntax"]
33
+ r+=["1.2.840.10008.1.2.4.52"] and s+=["JPEG Extended (Process 3 & 5)"] and t+=["Transfer Syntax"] # RET
34
+ r+=["1.2.840.10008.1.2.4.53"] and s+=["JPEG Spectral Selection, Non-Hierarchical (Process 6 & 8)"] and t+=["Transfer Syntax"] # RET
35
+ r+=["1.2.840.10008.1.2.4.54"] and s+=["JPEG Spectral Selection, Non-Hierarchical (Process 7 & 9)"] and t+=["Transfer Syntax"] # RET
36
+ r+=["1.2.840.10008.1.2.4.55"] and s+=["JPEG Full Progression, Non-Hierarchical (Process 10 & 12)"] and t+=["Transfer Syntax"] # RET
37
+ r+=["1.2.840.10008.1.2.4.56"] and s+=["JPEG Full Progression, Non-Hierarchical (Process 11 & 13)"] and t+=["Transfer Syntax"] # RET
38
+ r+=["1.2.840.10008.1.2.4.57"] and s+=["JPEG Lossless, Non-Hierarchical (Process 14)"] and t+=["Transfer Syntax"]
39
+ r+=["1.2.840.10008.1.2.4.58"] and s+=["JPEG Lossless, Non-Hierarchical (Process 15)"] and t+=["Transfer Syntax"] # RET
40
+ r+=["1.2.840.10008.1.2.4.59"] and s+=["JPEG Extended, Hierarchical (Process 16 & 18)"] and t+=["Transfer Syntax"] # RET
41
+ r+=["1.2.840.10008.1.2.4.60"] and s+=["JPEG Extended, Hierarchical (Process 17 & 19)"] and t+=["Transfer Syntax"] # RET
42
+ r+=["1.2.840.10008.1.2.4.61"] and s+=["JPEG Spectral Selection, Hierarchical (Process 20 & 22)"] and t+=["Transfer Syntax"] # RET
43
+ r+=["1.2.840.10008.1.2.4.62"] and s+=["JPEG Spectral Selection, Hierarchical (Process 21 & 23)"] and t+=["Transfer Syntax"] # RET
44
+ r+=["1.2.840.10008.1.2.4.63"] and s+=["JPEG Full Progression, Hierarchical (Process 24 & 26)"] and t+=["Transfer Syntax"] # RET
45
+ r+=["1.2.840.10008.1.2.4.64"] and s+=["JPEG Full Progression, Hierarchical (Process 25 & 27)"] and t+=["Transfer Syntax"] # RET
46
+ r+=["1.2.840.10008.1.2.4.65"] and s+=["JPEG Lossless, Hierarchical (Process 28)"] and t+=["Transfer Syntax"] # RET
47
+ r+=["1.2.840.10008.1.2.4.66"] and s+=["JPEG Lossless, Hierarchical (Process 29)"] and t+=["Transfer Syntax"] # RET
48
+ r+=["1.2.840.10008.1.2.4.70"] and s+=["JPEG Lossless, Non-Hierarchical, First-Order Prediction (Process 14 [Selection Value 1]): Default Transfer Syntax for Lossless JPEG Image Compression"] and t+=["Transfer Syntax"]
49
+ r+=["1.2.840.10008.1.2.4.80"] and s+=["JPEG-LS Lossless Image Compression"] and t+=["Transfer Syntax"]
50
+ r+=["1.2.840.10008.1.2.4.81"] and s+=["JPEG-LS Lossy (Near-Lossless) Image Compression"] and t+=["Transfer Syntax"]
51
+ r+=["1.2.840.10008.1.2.4.90"] and s+=["JPEG 2000 Image Compression (Lossless Only)"] and t+=["Transfer Syntax"]
52
+ r+=["1.2.840.10008.1.2.4.91"] and s+=["JPEG 2000 Image Compression"] and t+=["Transfer Syntax"]
53
+ r+=["1.2.840.10008.1.2.4.92"] and s+=["JPEG 2000 Part 2 Multi-component Image Compression (Lossless Only)"] and t+=["Transfer Syntax"]
54
+ r+=["1.2.840.10008.1.2.4.93"] and s+=["JPEG 2000 Part 2 Multi-component Image Compression"] and t+=["Transfer Syntax"]
55
+ r+=["1.2.840.10008.1.2.4.94"] and s+=["JPIP Referenced"] and t+=["Transfer Syntax"]
56
+ r+=["1.2.840.10008.1.2.4.95"] and s+=["JPIP Referenced Deflate"] and t+=["Transfer Syntax"]
57
+ r+=["1.2.840.10008.1.2.4.100"] and s+=["MPEG2 Main Profile @ Main Level"] and t+=["Transfer Syntax"]
58
+ r+=["1.2.840.10008.1.2.5"] and s+=["RLE Lossless"] and t+=["Transfer Syntax"]
59
+ r+=["1.2.840.10008.1.2.6.1"] and s+=["RFC 2557 MIME encapsulation"] and t+=["Transfer Syntax"]
60
+ r+=["1.2.840.10008.1.2.6.2"] and s+=["XML Encoding"] and t+=["Transfer Syntax"]
61
+ # End: Transfer syntax
62
+ r+=["1.2.840.10008.1.3.10"] and s+=["Media Storage Directory Storage"] and t+=["SOP Class"]
63
+ r+=["1.2.840.10008.1.4.1.1"] and s+=["Talairach Brain Atlas Frame of Reference"] and t+=["Well-known frame of reference"]
64
+ r+=["1.2.840.10008.1.4.1.2"] and s+=["SPM2 T1 Frame of Reference"] and t+=["Well-known frame of reference"]
65
+ r+=["1.2.840.10008.1.4.1.3"] and s+=["SPM2 T2 Frame of Reference"] and t+=["Well-known frame of reference"]
66
+ r+=["1.2.840.10008.1.4.1.4"] and s+=["SPM2 PD Frame of Reference"] and t+=["Well-known frame of reference"]
67
+ r+=["1.2.840.10008.1.4.1.5"] and s+=["SPM2 EPI Frame of Reference"] and t+=["Well-known frame of reference"]
68
+ r+=["1.2.840.10008.1.4.1.6"] and s+=["SPM2 FIL T1 Frame of Reference"] and t+=["Well-known frame of reference"]
69
+ r+=["1.2.840.10008.1.4.1.7"] and s+=["SPM2 PET Frame of Reference"] and t+=["Well-known frame of reference"]
70
+ r+=["1.2.840.10008.1.4.1.8"] and s+=["SPM2 TRANSM Frame of Reference"] and t+=["Well-known frame of reference"]
71
+ r+=["1.2.840.10008.1.4.1.9"] and s+=["SPM2 SPECT Frame of Reference"] and t+=["Well-known frame of reference"]
72
+ r+=["1.2.840.10008.1.4.1.10"] and s+=["SPM2 GRAY Frame of Reference"] and t+=["Well-known frame of reference"]
73
+ r+=["1.2.840.10008.1.4.1.11"] and s+=["SPM2 WHITE Frame of Reference"] and t+=["Well-known frame of reference"]
74
+ r+=["1.2.840.10008.1.4.1.12"] and s+=["SPM2 CSF Frame of Reference"] and t+=["Well-known frame of reference"]
75
+ r+=["1.2.840.10008.1.4.1.13"] and s+=["SPM2 BRAINMASK Frame of Reference"] and t+=["Well-known frame of reference"]
76
+ r+=["1.2.840.10008.1.4.1.14"] and s+=["SPM2 AVG305T1 Frame of Reference"] and t+=["Well-known frame of reference"]
77
+ r+=["1.2.840.10008.1.4.1.15"] and s+=["SPM2 AVG152T1 Frame of Reference"] and t+=["Well-known frame of reference"]
78
+ r+=["1.2.840.10008.1.4.1.16"] and s+=["SPM2 AVG152T2 Frame of Reference"] and t+=["Well-known frame of reference"]
79
+ r+=["1.2.840.10008.1.4.1.17"] and s+=["SPM2 AVG152PD Frame of Reference"] and t+=["Well-known frame of reference"]
80
+ r+=["1.2.840.10008.1.4.1.18"] and s+=["SPM2 SINGLESUBJT1 Frame of Reference"] and t+=["Well-known frame of reference"]
81
+ r+=["1.2.840.10008.1.4.2.1"] and s+=["ICBM 452 T1 Frame of Reference"] and t+=["Well-known frame of reference"]
82
+ r+=["1.2.840.10008.1.4.2.2"] and s+=["ICBM Single Subject MRI Frame of Reference"] and t+=["Well-known frame of reference"]
83
+ r+=["1.2.840.10008.1.9"] and s+=["Basic Study Content Notification SOP Class"] and t+=["SOP Class"] # RET
84
+ r+=["1.2.840.10008.1.20.1"] and s+=["Storage Commitment Push Model SOP Class"] and t+=["SOP Class"]
85
+ r+=["1.2.840.10008.1.20.1.1"] and s+=["Storage Commitment Push Model SOP Instance"] and t+=["Well-known SOP Instance"]
86
+ r+=["1.2.840.10008.1.20.2"] and s+=["Storage Commitment Pull Model SOP Class"] and t+=["SOP Class"] # RET
87
+ r+=["1.2.840.10008.1.20.2.1"] and s+=["Storage Commitment Pull Model SOP Instance"] and t+=["Well-known SOP Instance"] # RET
88
+ r+=["1.2.840.10008.1.40"] and s+=["Procedural Event Logging SOP Class"] and t+=["SOP Class"]
89
+ r+=["1.2.840.10008.1.40.1"] and s+=["Procedural Event Logging SOP Instance"] and t+=["Well-known SOP Instance"]
90
+ r+=["1.2.840.10008.1.42"] and s+=["Substance Administration Logging SOP Class"] and t+=["SOP Class"]
91
+ r+=["1.2.840.10008.1.42.1"] and s+=["Substance Administration Logging SOP Instance"] and t+=["Well-known SOP Instance"]
92
+ r+=["1.2.840.10008.2.6.1"] and s+=["DICOM UID Registry"] and t+=["DICOM UIDs as a Coding Scheme"]
93
+ r+=["1.2.840.10008.2.16.4"] and s+=["DICOM Controlled Terminology"] and t+=["Coding Scheme"]
94
+ r+=["1.2.840.10008.3.1.1.1"] and s+=["DICOM Application Context Name"] and t+=["Application Context Name"]
95
+ r+=["1.2.840.10008.3.1.2.1.1"] and s+=["Detached Patient Management SOP Class"] and t+=["SOP Class"] # RET
96
+ r+=["1.2.840.10008.3.1.2.1.4"] and s+=["Detached Patient Management Meta SOP Class"] and t+=["Meta SOP Class"] # RET
97
+ r+=["1.2.840.10008.3.1.2.2.1"] and s+=["Detached Visit Management SOP Class"] and t+=["SOP Class"] # RET
98
+ r+=["1.2.840.10008.3.1.2.3.1"] and s+=["Detached Study Management SOP Class"] and t+=["SOP Class"] # RET
99
+ r+=["1.2.840.10008.3.1.2.3.2"] and s+=["Study Component Management SOP Class"] and t+=["SOP Class"] # RET
100
+ r+=["1.2.840.10008.3.1.2.3.3"] and s+=["Modality Performed Procedure Step SOP Class"] and t+=["SOP Class"]
101
+ r+=["1.2.840.10008.3.1.2.3.4"] and s+=["Modality Performed Procedure Step Retrieve SOP Class"] and t+=["SOP Class"]
102
+ r+=["1.2.840.10008.3.1.2.3.5"] and s+=["Modality Performed Procedure Step Notification SOP Class"] and t+=["SOP Class"]
103
+ r+=["1.2.840.10008.3.1.2.5.1"] and s+=["Detached Results Management SOP Class"] and t+=["SOP Class"] # RET
104
+ r+=["1.2.840.10008.3.1.2.5.4"] and s+=["Detached Results Management Meta SOP Class"] and t+=["Meta SOP Class"] # RET
105
+ r+=["1.2.840.10008.3.1.2.5.5"] and s+=["Detached Study Management Meta SOP Class"] and t+=["Meta SOP Class"] # RET
106
+ r+=["1.2.840.10008.3.1.2.6.1"] and s+=["Detached Interpretation Management SOP Class"] and t+=["SOP Class"] # RET
107
+ r+=["1.2.840.10008.4.2"] and s+=["Storage Service Class"] and t+=["Service Class"]
108
+ r+=["1.2.840.10008.5.1.1.1"] and s+=["Basic Film Session SOP Class"] and t+=["SOP Class"]
109
+ r+=["1.2.840.10008.5.1.1.2"] and s+=["Basic Film Box SOP Class"] and t+=["SOP Class"]
110
+ r+=["1.2.840.10008.5.1.1.4"] and s+=["Basic Grayscale Image Box SOP Class"] and t+=["SOP Class"]
111
+ r+=["1.2.840.10008.5.1.1.4.1"] and s+=["Basic Color Image Box SOP Class"] and t+=["SOP Class"]
112
+ r+=["1.2.840.10008.5.1.1.4.2"] and s+=["Referenced Image Box SOP Class"] and t+=["SOP Class"] # RET
113
+ r+=["1.2.840.10008.5.1.1.9"] and s+=["Basic Grayscale Print Management Meta SOP Class"] and t+=["Meta SOP Class"]
114
+ r+=["1.2.840.10008.5.1.1.9.1"] and s+=["Referenced Grayscale Print Management Meta SOP Class"] and t+=["Meta SOP Class"] # RET
115
+ r+=["1.2.840.10008.5.1.1.14"] and s+=["Print Job SOP Class"] and t+=["SOP Class"]
116
+ r+=["1.2.840.10008.5.1.1.15"] and s+=["Basic Annotation Box SOP Class"] and t+=["SOP Class"]
117
+ r+=["1.2.840.10008.5.1.1.16"] and s+=["Printer SOP Class"] and t+=["SOP Class"]
118
+ r+=["1.2.840.10008.5.1.1.16.376"] and s+=["Printer Configuration Retrieval SOP Class"] and t+=["SOP Class"]
119
+ r+=["1.2.840.10008.5.1.1.17"] and s+=["Printer SOP Instance"] and t+=["Well-known Printer SOP Instance"]
120
+ r+=["1.2.840.10008.5.1.1.17.376"] and s+=["Printer Configuration Retrieval SOP Instance"] and t+=["Well-known Printer SOP Instance"]
121
+ r+=["1.2.840.10008.5.1.1.18"] and s+=["Basic Color Print Management Meta SOP Class"] and t+=["Meta SOP Class"]
122
+ r+=["1.2.840.10008.5.1.1.18.1"] and s+=["Referenced Color Print Management Meta SOP Class"] and t+=["Meta SOP Class"] # RET
123
+ r+=["1.2.840.10008.5.1.1.22"] and s+=["VOI LUT Box SOP Class"] and t+=["SOP Class"]
124
+ r+=["1.2.840.10008.5.1.1.23"] and s+=["Presentation LUT SOP Class"] and t+=["SOP Class"]
125
+ r+=["1.2.840.10008.5.1.1.24"] and s+=["Image Overlay Box SOP Class"] and t+=["SOP Class"] # RET
126
+ r+=["1.2.840.10008.5.1.1.24.1"] and s+=["Basic Print Image Overlay Box SOP Class"] and t+=["SOP Class"] # RET
127
+ r+=["1.2.840.10008.5.1.1.25"] and s+=["Print Queue SOP Instance"] and t+=["Well-known Print Queue SOP Instance"] # RET
128
+ r+=["1.2.840.10008.5.1.1.26"] and s+=["Print Queue Management SOP Class"] and t+=["SOP Class"] # RET
129
+ r+=["1.2.840.10008.5.1.1.27"] and s+=["Stored Print Storage SOP Class"] and t+=["SOP Class"] # RET
130
+ r+=["1.2.840.10008.5.1.1.29"] and s+=["Hardcopy Grayscale Image Storage SOP Class"] and t+=["SOP Class"] # RET
131
+ r+=["1.2.840.10008.5.1.1.30"] and s+=["Hardcopy Color Image Storage SOP Class"] and t+=["SOP Class"] # RET
132
+ r+=["1.2.840.10008.5.1.1.31"] and s+=["Pull Print Request SOP Class"] and t+=["SOP Class"] # RET
133
+ r+=["1.2.840.10008.5.1.1.32"] and s+=["Pull Stored Print Management Meta SOP Class"] and t+=["Meta SOP Class"] # RET
134
+ r+=["1.2.840.10008.5.1.1.33"] and s+=["Media Creation Management SOP Class UID"] and t+=["SOP Class"]
135
+ r+=["1.2.840.10008.5.1.4.1.1.1"] and s+=["Computed Radiography Image Storage"] and t+=["SOP Class"]
136
+ r+=["1.2.840.10008.5.1.4.1.1.1.1"] and s+=["Digital X-Ray Image Storage - For Presentation"] and t+=["SOP Class"]
137
+ r+=["1.2.840.10008.5.1.4.1.1.1.1.1"] and s+=["Digital X-Ray Image Storage - For Processing"] and t+=["SOP Class"]
138
+ r+=["1.2.840.10008.5.1.4.1.1.1.2"] and s+=["Digital Mammography X-Ray Image Storage - For Presentation"] and t+=["SOP Class"]
139
+ r+=["1.2.840.10008.5.1.4.1.1.1.2.1"] and s+=["Digital Mammography X-Ray Image Storage - For Processing"] and t+=["SOP Class"]
140
+ r+=["1.2.840.10008.5.1.4.1.1.1.3"] and s+=["Digital Intra-oral X-Ray Image Storage - For Presentation"] and t+=["SOP Class"]
141
+ r+=["1.2.840.10008.5.1.4.1.1.1.3.1"] and s+=["Digital Intra-oral X-Ray Image Storage - For Processing"] and t+=["SOP Class"]
142
+ r+=["1.2.840.10008.5.1.4.1.1.2"] and s+=["CT Image Storage"] and t+=["SOP Class"]
143
+ r+=["1.2.840.10008.5.1.4.1.1.2.1"] and s+=["Enhanced CT Image Storage"] and t+=["SOP Class"]
144
+ r+=["1.2.840.10008.5.1.4.1.1.3"] and s+=["Ultrasound Multi-frame Image Storage"] and t+=["SOP Class"] # RET
145
+ r+=["1.2.840.10008.5.1.4.1.1.3.1"] and s+=["Ultrasound Multi-frame Image Storage"] and t+=["SOP Class"]
146
+ r+=["1.2.840.10008.5.1.4.1.1.4"] and s+=["MR Image Storage"] and t+=["SOP Class"]
147
+ r+=["1.2.840.10008.5.1.4.1.1.4.1"] and s+=["Enhanced MR Image Storage"] and t+=["SOP Class"]
148
+ r+=["1.2.840.10008.5.1.4.1.1.4.2"] and s+=["MR Spectroscopy Storage"] and t+=["SOP Class"]
149
+ r+=["1.2.840.10008.5.1.4.1.1.5"] and s+=["Nuclear Medicine Image Storage"] and t+=["SOP Class"] # RET
150
+ r+=["1.2.840.10008.5.1.4.1.1.6"] and s+=["Ultrasound Image Storage"] and t+=["SOP Class"] # RET
151
+ r+=["1.2.840.10008.5.1.4.1.1.6.1"] and s+=["Ultrasound Image Storage"] and t+=["SOP Class"]
152
+ r+=["1.2.840.10008.5.1.4.1.1.7"] and s+=["Secondary Capture Image Storage"] and t+=["SOP Class"]
153
+ r+=["1.2.840.10008.5.1.4.1.1.7.1"] and s+=["Multi-frame Single Bit Secondary Capture Image Storage"] and t+=["SOP Class"]
154
+ r+=["1.2.840.10008.5.1.4.1.1.7.2"] and s+=["Multi-frame Grayscale Byte Secondary Capture Image Storage"] and t+=["SOP Class"]
155
+ r+=["1.2.840.10008.5.1.4.1.1.7.3"] and s+=["Multi-frame Grayscale Word Secondary Capture Image Storage"] and t+=["SOP Class"]
156
+ r+=["1.2.840.10008.5.1.4.1.1.7.4"] and s+=["Multi-frame True Color Secondary Capture Image Storage"] and t+=["SOP Class"]
157
+ r+=["1.2.840.10008.5.1.4.1.1.8"] and s+=["Standalone Overlay Storage"] and t+=["SOP Class"] # RET
158
+ r+=["1.2.840.10008.5.1.4.1.1.9"] and s+=["Standalone Curve Storage"] and t+=["SOP Class"] # RET
159
+ r+=["1.2.840.10008.5.1.4.1.1.9.1"] and s+=["Waveform Storage - Trial"] and t+=["SOP Class"] # RET
160
+ r+=["1.2.840.10008.5.1.4.1.1.9.1.1"] and s+=["12-lead ECG Waveform Storage"] and t+=["SOP Class"]
161
+ r+=["1.2.840.10008.5.1.4.1.1.9.1.2"] and s+=["General ECG Waveform Storage"] and t+=["SOP Class"]
162
+ r+=["1.2.840.10008.5.1.4.1.1.9.1.3"] and s+=["Ambulatory ECG Waveform Storage"] and t+=["SOP Class"]
163
+ r+=["1.2.840.10008.5.1.4.1.1.9.2.1"] and s+=["Hemodynamic Waveform Storage"] and t+=["SOP Class"]
164
+ r+=["1.2.840.10008.5.1.4.1.1.9.3.1"] and s+=["Cardiac Electrophysiology Waveform Storage"] and t+=["SOP Class"]
165
+ r+=["1.2.840.10008.5.1.4.1.1.9.4.1"] and s+=["Basic Voice Audio Waveform Storage"] and t+=["SOP Class"]
166
+ r+=["1.2.840.10008.5.1.4.1.1.10"] and s+=["Standalone Modality LUT Storage"] and t+=["SOP Class"] # RET
167
+ r+=["1.2.840.10008.5.1.4.1.1.11"] and s+=["Standalone VOI LUT Storage"] and t+=["SOP Class"] # RET
168
+ r+=["1.2.840.10008.5.1.4.1.1.11.1"] and s+=["Grayscale Softcopy Presentation State Storage SOP Class"] and t+=["SOP Class"]
169
+ r+=["1.2.840.10008.5.1.4.1.1.11.2"] and s+=["Color Softcopy Presentation State Storage SOP Class"] and t+=["SOP Class"]
170
+ r+=["1.2.840.10008.5.1.4.1.1.11.3"] and s+=["Pseudo-Color Softcopy Presentation State Storage SOP Class"] and t+=["SOP Class"]
171
+ r+=["1.2.840.10008.5.1.4.1.1.11.4"] and s+=["Blending Softcopy Presentation State Storage SOP Class"] and t+=["SOP Class"]
172
+ r+=["1.2.840.10008.5.1.4.1.1.12.1"] and s+=["X-Ray Angiographic Image Storage"] and t+=["SOP Class"]
173
+ r+=["1.2.840.10008.5.1.4.1.1.12.1.1"] and s+=["Enhanced XA Image Storage"] and t+=["SOP Class"]
174
+ r+=["1.2.840.10008.5.1.4.1.1.12.2"] and s+=["X-Ray Radiofluoroscopic Image Storage"] and t+=["SOP Class"]
175
+ r+=["1.2.840.10008.5.1.4.1.1.12.2.1"] and s+=["Enhanced XRF Image Storage"] and t+=["SOP Class"]
176
+ r+=["1.2.840.10008.5.1.4.1.1.13.1.1"] and s+=["X-Ray 3D Angiographic Image Storage"] and t+=["SOP Class"]
177
+ r+=["1.2.840.10008.5.1.4.1.1.13.1.2"] and s+=["X-Ray 3D Craniofacial Image Storage"] and t+=["SOP Class"]
178
+ r+=["1.2.840.10008.5.1.4.1.1.12.3"] and s+=["X-Ray Angiographic Bi-Plane Image Storage"] and t+=["SOP Class"] # RET
179
+ r+=["1.2.840.10008.5.1.4.1.1.20"] and s+=["Nuclear Medicine Image Storage"] and t+=["SOP Class"]
180
+ r+=["1.2.840.10008.5.1.4.1.1.66"] and s+=["Raw Data Storage"] and t+=["SOP Class"]
181
+ r+=["1.2.840.10008.5.1.4.1.1.66.1"] and s+=["Spatial Registration Storage"] and t+=["SOP Class"]
182
+ r+=["1.2.840.10008.5.1.4.1.1.66.2"] and s+=["Spatial Fiducials Storage"] and t+=["SOP Class"]
183
+ r+=["1.2.840.10008.5.1.4.1.1.66.3"] and s+=["Deformable Spatial Registration Storage"] and t+=["SOP Class"]
184
+ r+=["1.2.840.10008.5.1.4.1.1.66.4"] and s+=["Segmentation Storage"] and t+=["SOP Class"]
185
+ r+=["1.2.840.10008.5.1.4.1.1.67"] and s+=["Real World Value Mapping Storage"] and t+=["SOP Class"]
186
+ r+=["1.2.840.10008.5.1.4.1.1.77.1"] and s+=["VL Image Storage - Trial"] and t+=[""] # RET
187
+ r+=["1.2.840.10008.5.1.4.1.1.77.2"] and s+=["VL Multi-frame Image Storage - Trial"] and t+=[""] # RET
188
+ r+=["1.2.840.10008.5.1.4.1.1.77.1.1"] and s+=["VL Endoscopic Image Storage"] and t+=["SOP Class"]
189
+ r+=["1.2.840.10008.5.1.4.1.1.77.1.1.1"] and s+=["Video Endoscopic Image Storage"] and t+=["SOP Class"]
190
+ r+=["1.2.840.10008.5.1.4.1.1.77.1.2"] and s+=["VL Microscopic Image Storage"] and t+=["SOP Class"]
191
+ r+=["1.2.840.10008.5.1.4.1.1.77.1.2.1"] and s+=["Video Microscopic Image Storage"] and t+=["SOP Class"]
192
+ r+=["1.2.840.10008.5.1.4.1.1.77.1.3"] and s+=["VL Slide-Coordinates Microscopic Image Storage"] and t+=["SOP Class"]
193
+ r+=["1.2.840.10008.5.1.4.1.1.77.1.4"] and s+=["VL Photographic Image Storage"] and t+=["SOP Class"]
194
+ r+=["1.2.840.10008.5.1.4.1.1.77.1.4.1"] and s+=["Video Photographic Image Storage"] and t+=["SOP Class"]
195
+ r+=["1.2.840.10008.5.1.4.1.1.77.1.5.1"] and s+=["Ophthalmic Photography 8 Bit Image Storage"] and t+=["SOP Class"]
196
+ r+=["1.2.840.10008.5.1.4.1.1.77.1.5.2"] and s+=["Ophthalmic Photography 16 Bit Image Storage"] and t+=["SOP Class"]
197
+ r+=["1.2.840.10008.5.1.4.1.1.77.1.5.3"] and s+=["Stereometric Relationship Storage"] and t+=["SOP Class"]
198
+ r+=["1.2.840.10008.5.1.4.1.1.77.1.5.4"] and s+=["Ophthalmic Tomography Image Storage"] and t+=["SOP Class"]
199
+ r+=["1.2.840.10008.5.1.4.1.1.88.1"] and s+=["Text SR Storage - Trial"] and t+=["SOP Class"] # RET
200
+ r+=["1.2.840.10008.5.1.4.1.1.88.2"] and s+=["Audio SR Storage - Trial"] and t+=["SOP Class"] # RET
201
+ r+=["1.2.840.10008.5.1.4.1.1.88.3"] and s+=["Detail SR Storage - Trial"] and t+=["SOP Class"] # RET
202
+ r+=["1.2.840.10008.5.1.4.1.1.88.4"] and s+=["Comprehensive SR Storage - Trial"] and t+=["SOP Class"] # RET
203
+ r+=["1.2.840.10008.5.1.4.1.1.88.11"] and s+=["Basic Text SR Storage"] and t+=["SOP Class"]
204
+ r+=["1.2.840.10008.5.1.4.1.1.88.22"] and s+=["Enhanced SR Storage"] and t+=["SOP Class"]
205
+ r+=["1.2.840.10008.5.1.4.1.1.88.33"] and s+=["Comprehensive SR Storage"] and t+=["SOP Class"]
206
+ r+=["1.2.840.10008.5.1.4.1.1.88.40"] and s+=["Procedure Log Storage"] and t+=["SOP Class"]
207
+ r+=["1.2.840.10008.5.1.4.1.1.88.50"] and s+=["Mammography CAD SR Storage"] and t+=["SOP Class"]
208
+ r+=["1.2.840.10008.5.1.4.1.1.88.59"] and s+=["Key Object Selection Document Storage"] and t+=["SOP Class"]
209
+ r+=["1.2.840.10008.5.1.4.1.1.88.65"] and s+=["Chest CAD SR Storage"] and t+=["SOP Class"]
210
+ r+=["1.2.840.10008.5.1.4.1.1.88.67"] and s+=["X-Ray Radiation Dose SR Storage"] and t+=["SOP Class"]
211
+ r+=["1.2.840.10008.5.1.4.1.1.104.1"] and s+=["Encapsulated PDF Storage"] and t+=["SOP Class"]
212
+ r+=["1.2.840.10008.5.1.4.1.1.104.2"] and s+=["Encapsulated CDA Storage"] and t+=["SOP Class"]
213
+ r+=["1.2.840.10008.5.1.4.1.1.128"] and s+=["Positron Emission Tomography Image Storage"] and t+=["SOP Class"]
214
+ r+=["1.2.840.10008.5.1.4.1.1.129"] and s+=["Standalone PET Curve Storage"] and t+=["SOP Class"] # RET
215
+ r+=["1.2.840.10008.5.1.4.1.1.481.1"] and s+=["RT Image Storage"] and t+=["SOP Class"]
216
+ r+=["1.2.840.10008.5.1.4.1.1.481.2"] and s+=["RT Dose Storage"] and t+=["SOP Class"]
217
+ r+=["1.2.840.10008.5.1.4.1.1.481.3"] and s+=["RT Structure Set Storage"] and t+=["SOP Class"]
218
+ r+=["1.2.840.10008.5.1.4.1.1.481.4"] and s+=["RT Beams Treatment Record Storage"] and t+=["SOP Class"]
219
+ r+=["1.2.840.10008.5.1.4.1.1.481.5"] and s+=["RT Plan Storage"] and t+=["SOP Class"]
220
+ r+=["1.2.840.10008.5.1.4.1.1.481.6"] and s+=["RT Brachy Treatment Record Storage"] and t+=["SOP Class"]
221
+ r+=["1.2.840.10008.5.1.4.1.1.481.7"] and s+=["RT Treatment Summary Record Storage"] and t+=["SOP Class"]
222
+ r+=["1.2.840.10008.5.1.4.1.1.481.8"] and s+=["RT Ion Plan Storage"] and t+=["SOP Class"]
223
+ r+=["1.2.840.10008.5.1.4.1.1.481.9"] and s+=["RT Ion Beams Treatment Record Storage"] and t+=["SOP Class"]
224
+ r+=["1.2.840.10008.5.1.4.1.2.1.1"] and s+=["Patient Root Query/Retrieve Information Model - FIND"] and t+=["SOP Class"]
225
+ r+=["1.2.840.10008.5.1.4.1.2.1.2"] and s+=["Patient Root Query/Retrieve Information Model - MOVE"] and t+=["SOP Class"]
226
+ r+=["1.2.840.10008.5.1.4.1.2.1.3"] and s+=["Patient Root Query/Retrieve Information Model - GET"] and t+=["SOP Class"]
227
+ r+=["1.2.840.10008.5.1.4.1.2.2.1"] and s+=["Study Root Query/Retrieve Information Model - FIND"] and t+=["SOP Class"]
228
+ r+=["1.2.840.10008.5.1.4.1.2.2.2"] and s+=["Study Root Query/Retrieve Information Model - MOVE"] and t+=["SOP Class"]
229
+ r+=["1.2.840.10008.5.1.4.1.2.2.3"] and s+=["Study Root Query/Retrieve Information Model - GET"] and t+=["SOP Class"]
230
+ r+=["1.2.840.10008.5.1.4.1.2.3.1"] and s+=["Patient/Study Only Query/Retrieve Information Model - FIND"] and t+=["SOP Class"] # RET
231
+ r+=["1.2.840.10008.5.1.4.1.2.3.2"] and s+=["Patient/Study Only Query/Retrieve Information Model - MOVE"] and t+=["SOP Class"] # RET
232
+ r+=["1.2.840.10008.5.1.4.1.2.3.3"] and s+=["Patient/Study Only Query/Retrieve Information Model - GET"] and t+=["SOP Class"] # RET
233
+ r+=["1.2.840.10008.5.1.4.31"] and s+=["Modality Worklist Information Model - FIND"] and t+=["SOP Class"]
234
+ r+=["1.2.840.10008.5.1.4.32.1"] and s+=["General Purpose Worklist Information Model - FIND"] and t+=["SOP Class"]
235
+ r+=["1.2.840.10008.5.1.4.32.2"] and s+=["General Purpose Scheduled Procedure Step SOP Class"] and t+=["SOP Class"]
236
+ r+=["1.2.840.10008.5.1.4.32.3"] and s+=["General Purpose Performed Procedure Step SOP Class"] and t+=["SOP Class"]
237
+ r+=["1.2.840.10008.5.1.4.32"] and s+=["General Purpose Worklist Management Meta SOP Class"] and t+=["Meta SOP Class"]
238
+ r+=["1.2.840.10008.5.1.4.33"] and s+=["Instance Availability Notification SOP Class"] and t+=["SOP Class"]
239
+ r+=["1.2.840.10008.5.1.4.34.1"] and s+=["RT Beams Delivery Instruction Storage (Supplement 74 Frozen Draft)"] and t+=["SOP Class"]
240
+ r+=["1.2.840.10008.5.1.4.34.2"] and s+=["RT Conventional Machine Verification (Supplement 74 Frozen Draft)"] and t+=["SOP Class"]
241
+ r+=["1.2.840.10008.5.1.4.34.3"] and s+=["RT Ion Machine Verification (Supplement 74 Frozen Draft)"] and t+=["SOP Class"]
242
+ r+=["1.2.840.10008.5.1.4.34.4"] and s+=["Unified Worklist and Procedure Step Service Class"] and t+=["Service Class"]
243
+ r+=["1.2.840.10008.5.1.4.34.4.1"] and s+=["Unified Procedure Step - Push SOP Class"] and t+=["SOP Class"]
244
+ r+=["1.2.840.10008.5.1.4.34.4.2"] and s+=["Unified Procedure Step - Watch SOP Class"] and t+=["SOP Class"]
245
+ r+=["1.2.840.10008.5.1.4.34.4.3"] and s+=["Unified Procedure Step - Pull SOP Class"] and t+=["SOP Class"]
246
+ r+=["1.2.840.10008.5.1.4.34.4.4"] and s+=["Unified Procedure Step - Event SOP Class"] and t+=["SOP Class"]
247
+ r+=["1.2.840.10008.5.1.4.34.5"] and s+=["Unified Worklist and Procedure Step SOP Instance"] and t+=["Well-known SOP Instance"]
248
+ r+=["1.2.840.10008.5.1.4.37.1"] and s+=["General Relevant Patient Information Query"] and t+=["SOP Class"]
249
+ r+=["1.2.840.10008.5.1.4.37.2"] and s+=["Breast Imaging Relevant Patient Information Query"] and t+=["SOP Class"]
250
+ r+=["1.2.840.10008.5.1.4.37.3"] and s+=["Cardiac Relevant Patient Information Query"] and t+=["SOP Class"]
251
+ r+=["1.2.840.10008.5.1.4.38.1"] and s+=["Hanging Protocol Storage"] and t+=["SOP Class"]
252
+ r+=["1.2.840.10008.5.1.4.38.2"] and s+=["Hanging Protocol Information Model - FIND"] and t+=["SOP Class"]
253
+ r+=["1.2.840.10008.5.1.4.38.3"] and s+=["Hanging Protocol Information Model - MOVE"] and t+=["SOP Class"]
254
+ r+=["1.2.840.10008.5.1.4.41"] and s+=["Product Characteristics Query SOP Class"] and t+=["SOP Class"]
255
+ r+=["1.2.840.10008.5.1.4.42"] and s+=["Substance Approval Query SOP Class"] and t+=["SOP Class"]
256
+ # Start: LDAP OID
257
+ r+=["1.2.840.10008.15.0.3.1"] and s+=["dicomDeviceName"] and t+=["LDAP OID"]
258
+ r+=["1.2.840.10008.15.0.3.2"] and s+=["dicomDescription"] and t+=["LDAP OID"]
259
+ r+=["1.2.840.10008.15.0.3.3"] and s+=["dicomManufacturer"] and t+=["LDAP OID"]
260
+ r+=["1.2.840.10008.15.0.3.4"] and s+=["dicomManufacturerModelName"] and t+=["LDAP OID"]
261
+ r+=["1.2.840.10008.15.0.3.5"] and s+=["dicomSoftwareVersion"] and t+=["LDAP OID"]
262
+ r+=["1.2.840.10008.15.0.3.6"] and s+=["dicomVendorData"] and t+=["LDAP OID"]
263
+ r+=["1.2.840.10008.15.0.3.7"] and s+=["dicomAETitle"] and t+=["LDAP OID"]
264
+ r+=["1.2.840.10008.15.0.3.8"] and s+=["dicomNetworkConnectionReference"] and t+=["LDAP OID"]
265
+ r+=["1.2.840.10008.15.0.3.9"] and s+=["dicomApplicationCluster"] and t+=["LDAP OID"]
266
+ r+=["1.2.840.10008.15.0.3.10"] and s+=["dicomAssociationInitiator"] and t+=["LDAP OID"]
267
+ r+=["1.2.840.10008.15.0.3.11"] and s+=["dicomAssociationAcceptor"] and t+=["LDAP OID"]
268
+ r+=["1.2.840.10008.15.0.3.12"] and s+=["dicomHostname"] and t+=["LDAP OID"]
269
+ r+=["1.2.840.10008.15.0.3.13"] and s+=["dicomPort"] and t+=["LDAP OID"]
270
+ r+=["1.2.840.10008.15.0.3.14"] and s+=["dicomSOPClass"] and t+=["LDAP OID"]
271
+ r+=["1.2.840.10008.15.0.3.15"] and s+=["dicomTransferRole"] and t+=["LDAP OID"]
272
+ r+=["1.2.840.10008.15.0.3.16"] and s+=["dicomTransferSyntax"] and t+=["LDAP OID"]
273
+ r+=["1.2.840.10008.15.0.3.17"] and s+=["dicomPrimaryDeviceType"] and t+=["LDAP OID"]
274
+ r+=["1.2.840.10008.15.0.3.18"] and s+=["dicomRelatedDeviceReference"] and t+=["LDAP OID"]
275
+ r+=["1.2.840.10008.15.0.3.19"] and s+=["dicomPreferredCalledAETitle"] and t+=["LDAP OID"]
276
+ r+=["1.2.840.10008.15.0.3.20"] and s+=["dicomTLSCyphersuite"] and t+=["LDAP OID"]
277
+ r+=["1.2.840.10008.15.0.3.21"] and s+=["dicomAuthorizedNodeCertificateReference"] and t+=["LDAP OID"]
278
+ r+=["1.2.840.10008.15.0.3.22"] and s+=["dicomThisNodeCertificateReference"] and t+=["LDAP OID"]
279
+ r+=["1.2.840.10008.15.0.3.23"] and s+=["dicomInstalled"] and t+=["LDAP OID"]
280
+ r+=["1.2.840.10008.15.0.3.24"] and s+=["dicomStationName"] and t+=["LDAP OID"]
281
+ r+=["1.2.840.10008.15.0.3.25"] and s+=["dicomDeviceSerialNumber"] and t+=["LDAP OID"]
282
+ r+=["1.2.840.10008.15.0.3.26"] and s+=["dicomInstitutionName"] and t+=["LDAP OID"]
283
+ r+=["1.2.840.10008.15.0.3.27"] and s+=["dicomInstitutionAddress"] and t+=["LDAP OID"]
284
+ r+=["1.2.840.10008.15.0.3.28"] and s+=["dicomInstitutionDepartmentName"] and t+=["LDAP OID"]
285
+ r+=["1.2.840.10008.15.0.3.29"] and s+=["dicomIssuerOfPatientID"] and t+=["LDAP OID"]
286
+ r+=["1.2.840.10008.15.0.3.30"] and s+=["dicomPreferredCallingAETitle"] and t+=["LDAP OID"]
287
+ r+=["1.2.840.10008.15.0.3.31"] and s+=["dicomSupportedCharacterSet"] and t+=["LDAP OID"]
288
+ r+=["1.2.840.10008.15.0.4.1"] and s+=["dicomConfigurationRoot"] and t+=["LDAP OID"]
289
+ r+=["1.2.840.10008.15.0.4.2"] and s+=["dicomDevicesRoot"] and t+=["LDAP OID"]
290
+ r+=["1.2.840.10008.15.0.4.3"] and s+=["dicomUniqueAETitlesRegistryRoot"] and t+=["LDAP OID"]
291
+ r+=["1.2.840.10008.15.0.4.4"] and s+=["dicomDevice"] and t+=["LDAP OID"]
292
+ r+=["1.2.840.10008.15.0.4.5"] and s+=["dicomNetworkAE"] and t+=["LDAP OID"]
293
+ r+=["1.2.840.10008.15.0.4.6"] and s+=["dicomNetworkConnection"] and t+=["LDAP OID"]
294
+ r+=["1.2.840.10008.15.0.4.7"] and s+=["dicomUniqueAETitle"] and t+=["LDAP OID"]
295
+ r+=["1.2.840.10008.15.0.4.8"] and s+=["dicomTransferCapability"] and t+=["LDAP OID"]
296
+ # Return the array information:
297
+ return [r,s,t]
298
+ end
299
+
300
+
301
+ # Table A-2 Well-known Frames of Reference (DICOM Part 6, Annex A: Registry of DICOM unique identifiers)
302
+ # (This table is not in use at the moment)
303
+ def load_frame_of_ref()
304
+ k = Array.new()
305
+ m = Array.new()
306
+ n = Array.new()
307
+ k+=["1.2.840.10008.1.4.1.1"] and m+=["Talairach Brain Atlas Frame of Reference"] and n+=["Talairach J. and Tournoux P. Co-Planar stereotactic atlas of the human brain. Stutgart: Georg Thieme Verlag, 1988."]
308
+ k+=["1.2.840.10008.1.4.1.2"] and m+=["SPM2 T1 Frame of Reference"] and n+=["SPM2 /templates/T1.mnc"]
309
+ k+=["1.2.840.10008.1.4.1.3"] and m+=["SPM2 T2 Frame of Reference"] and n+=["SPM2 /templates/T2.mnc"]
310
+ k+=["1.2.840.10008.1.4.1.4"] and m+=["SPM2 PD Frame of Reference"] and n+=["SPM2 /templates/PD.mnc"]
311
+ k+=["1.2.840.10008.1.4.1.5"] and m+=["SPM2 EPI Frame of Reference"] and n+=["SPM2 /templates/EPI.mnc"]
312
+ k+=["1.2.840.10008.1.4.1.6"] and m+=["SPM2 FIL T1 Frame of Reference"] and n+=["SPM2 /templates/filT1.mnc"]
313
+ k+=["1.2.840.10008.1.4.1.7"] and m+=["SPM2 PET Frame of Reference"] and n+=["SPM2 /templates/PET.mnc"]
314
+ k+=["1.2.840.10008.1.4.1.8"] and m+=["SPM2 TRANSM Frame of Reference"] and n+=["SPM2 /templates/Transm.mnc"]
315
+ k+=["1.2.840.10008.1.4.1.9"] and m+=["SPM2 SPECT Frame of Reference"] and n+=["SPM2 /templates/SPECT.mnc"]
316
+ k+=["1.2.840.10008.1.4.1.10"] and m+=["SPM2 GRAY Frame of Reference"] and n+=["SPM2 /apriori/gray.mnc"]
317
+ k+=["1.2.840.10008.1.4.1.11"] and m+=["SPM2 WHITE Frame of Reference"] and n+=["SPM2 /apriori/white.mnc"]
318
+ k+=["1.2.840.10008.1.4.1.12"] and m+=["SPM2 CSF Frame of Reference"] and n+=["SPM2 /apriori/csf.mnc"]
319
+ k+=["1.2.840.10008.1.4.1.13"] and m+=["SPM2 BRAINMASK Frame of Reference"] and n+=["SPM2 /apriori/brainmask.mnc"]
320
+ k+=["1.2.840.10008.1.4.1.14"] and m+=["SPM2 AVG305T1 Frame of Reference"] and n+=["SPM2 /canonical/avg305T1.mnc"]
321
+ k+=["1.2.840.10008.1.4.1.15"] and m+=["SPM2 AVG152T1 Frame of Reference"] and n+=["SPM2 /canonical/avg152T1.mnc"]
322
+ k+=["1.2.840.10008.1.4.1.16"] and m+=["SPM2 AVG152T2 Frame of Reference"] and n+=["SPM2 /canonical/avg152T2.mnc"]
323
+ k+=["1.2.840.10008.1.4.1.17"] and m+=["SPM2 AVG152PD Frame of Reference"] and n+=["SPM2 /canonical/avg152PD.mnc"]
324
+ k+=["1.2.840.10008.1.4.1.18"] and m+=["SPM2 SINGLESUBJT1 Frame of Reference"] and n+=["SPM2 /canonical/single_subj_T1.mnc"]
325
+ k+=["1.2.840.10008.1.4.2.1"] and m+=["ICBM 452 T1 Frame of Reference"] and n+=["ICBM452 T1 Atlas"]
326
+ k+=["1.2.840.10008.1.4.2.2"] and m+=["ICBM Single Subject MRI Frame of Reference"] and n+=["ICBM Single Subject MRI Anatomical Template"]
327
+ # Return the array information:
328
+ return [k,m,n]
329
+ end
330
+
331
+
332
+ # Tag data
333
+ def load_tags()
334
+ x = Array.new() # Group and Element ID
335
+ y = Array.new() # Value representation
336
+ z = Array.new() # Name
337
+ # E.1 Registry of DICOM command elements
338
+ # Group 0000
339
+ x+=["0000,0000"] and y+=[["UL"]] and z+=["Command Group Length"]
340
+ x+=["0000,0001"] and y+=[["UL"]] and z+=["Length to End"] # RET
341
+ x+=["0000,0002"] and y+=[["UI"]] and z+=["Affected SOP Class UID"]
342
+ x+=["0000,0003"] and y+=[["UI"]] and z+=["Requested SOP Class UID"]
343
+ x+=["0000,0010"] and y+=[["CS"]] and z+=["Recognition Code"] # RET
344
+ x+=["0000,0100"] and y+=[["US"]] and z+=["Command Field"]
345
+ x+=["0000,0110"] and y+=[["US"]] and z+=["Message ID"]
346
+ x+=["0000,0120"] and y+=[["US"]] and z+=["Message ID Being Responded To"]
347
+ x+=["0000,0200"] and y+=[["AE"]] and z+=["Initiator"] # RET
348
+ x+=["0000,0300"] and y+=[["AE"]] and z+=["Receiver"] # RET
349
+ x+=["0000,0400"] and y+=[["AE"]] and z+=["Find Location"] # RET
350
+ x+=["0000,0600"] and y+=[["AE"]] and z+=["Move Destination"]
351
+ x+=["0000,0700"] and y+=[["US"]] and z+=["Priority"]
352
+ x+=["0000,0800"] and y+=[["US"]] and z+=["Data Set Type"]
353
+ x+=["0000,0850"] and y+=[["US"]] and z+=["Number of Matches"] # RET
354
+ x+=["0000,0860"] and y+=[["US"]] and z+=["Response Sequence Number"] # RET
355
+ x+=["0000,0900"] and y+=[["US"]] and z+=["Status"]
356
+ x+=["0000,0901"] and y+=[["AT"]] and z+=["Offending Element"]
357
+ x+=["0000,0902"] and y+=[["LO"]] and z+=["Error Comment"]
358
+ x+=["0000,0903"] and y+=[["US"]] and z+=["Error ID"]
359
+ x+=["0000,1000"] and y+=[["UI"]] and z+=["Affected SOP Instance UID"]
360
+ x+=["0000,1001"] and y+=[["UI"]] and z+=["Requested SOP Instance UID"]
361
+ x+=["0000,1002"] and y+=[["US"]] and z+=["Event Type ID"]
362
+ x+=["0000,1005"] and y+=[["AT"]] and z+=["Attribute Identifier List"]
363
+ x+=["0000,1008"] and y+=[["US"]] and z+=["Action Type ID"]
364
+ x+=["0000,1020"] and y+=[["US"]] and z+=["Number of Remaining Sub-operations"]
365
+ x+=["0000,1021"] and y+=[["US"]] and z+=["Number of Completed Sub-operations"]
366
+ x+=["0000,1022"] and y+=[["US"]] and z+=["Number of Failed Sub-operations"]
367
+ x+=["0000,1023"] and y+=[["US"]] and z+=["Number of Warning Sub-operations"]
368
+ x+=["0000,1030"] and y+=[["AE"]] and z+=["Move Originator Application Entity Title"]
369
+ x+=["0000,1031"] and y+=[["US"]] and z+=["Move Originator Message ID"]
370
+ x+=["0000,4000"] and y+=[["AT"]] and z+=["DIALOG Receiver"] # RET
371
+ x+=["0000,4010"] and y+=[["AT"]] and z+=["Terminal Type"] # RET
372
+ x+=["0000,5010"] and y+=[["SH"]] and z+=["Message Set ID"] # RET
373
+ x+=["0000,5020"] and y+=[["SH"]] and z+=["End Message ID"] # RET
374
+ x+=["0000,5110"] and y+=[["AT"]] and z+=["Display Format"] # RET
375
+ x+=["0000,5120"] and y+=[["AT"]] and z+=["Page Position ID"] # RET
376
+ x+=["0000,5130"] and y+=[["CS"]] and z+=["Text Format ID"] # RET
377
+ x+=["0000,5140"] and y+=[["CS"]] and z+=["Nor/Rev"] # RET
378
+ x+=["0000,5150"] and y+=[["CS"]] and z+=["Add Gray Scale"] # RET
379
+ x+=["0000,5160"] and y+=[["CS"]] and z+=["Borders"] # RET
380
+ x+=["0000,5170"] and y+=[["IS"]] and z+=["Copies"] # RET
381
+ x+=["0000,5180"] and y+=[["CS"]] and z+=["Magnification Type"] # RET
382
+ x+=["0000,5190"] and y+=[["CS"]] and z+=["Erase"] # RET
383
+ x+=["0000,51a0"] and y+=[["CS"]] and z+=["Print"] # RET
384
+ x+=["0000,51b0"] and y+=[["US"]] and z+=["Overlays"] # RET
385
+ # 7 Registry of DICOM File Meta Elements
386
+ # Group 0002
387
+ x+=["0002,0000"] and y+=[["UL"]] and z+=["Group Length"]
388
+ x+=["0002,0001"] and y+=[["OB"]] and z+=["File Meta Information Version"]
389
+ x+=["0002,0002"] and y+=[["UI"]] and z+=["Media Storage SOP Class UID"]
390
+ x+=["0002,0003"] and y+=[["UI"]] and z+=["Media Storage SOP Instance UID"]
391
+ x+=["0002,0010"] and y+=[["UI"]] and z+=["Transfer Syntax UID"]
392
+ x+=["0002,0012"] and y+=[["UI"]] and z+=["Implementation Class UID"]
393
+ x+=["0002,0013"] and y+=[["SH"]] and z+=["Implementation Version Name"]
394
+ x+=["0002,0016"] and y+=[["AE"]] and z+=["Source Application Entity Title"]
395
+ x+=["0002,0100"] and y+=[["UI"]] and z+=["Private Information Creator UID"]
396
+ x+=["0002,0102"] and y+=[["OB"]] and z+=["Private Information"]
397
+ # 8 Registry of DICOM directory structuring elements
398
+ # Group 0004
399
+ x+=["0004,0000"] and y+=[["UL"]] and z+=["Group Length"]
400
+ x+=["0004,1130"] and y+=[["CS"]] and z+=["File-set ID"]
401
+ x+=["0004,1141"] and y+=[["CS"]] and z+=["File-set Descriptor File ID"]
402
+ x+=["0004,1142"] and y+=[["CS"]] and z+=["Specific Character Set of File-set Descriptor File"]
403
+ x+=["0004,1200"] and y+=[["UL"]] and z+=["Offset of the First Directory Record of the Root Directory Entity"]
404
+ x+=["0004,1202"] and y+=[["UL"]] and z+=["Offset of the Last Directory Record of the Root Directory Entity"]
405
+ x+=["0004,1212"] and y+=[["US"]] and z+=["File-set Consistency Flag"]
406
+ x+=["0004,1220"] and y+=[["SQ"]] and z+=["Directory Record Sequence"]
407
+ x+=["0004,1400"] and y+=[["UL"]] and z+=["Offset of the Next Directory Record"]
408
+ x+=["0004,1410"] and y+=[["US"]] and z+=["Record In-use Flag"]
409
+ x+=["0004,1420"] and y+=[["UL"]] and z+=["Offset of Referenced Lower-Level Directory Entity"]
410
+ x+=["0004,1430"] and y+=[["CS"]] and z+=["Directory Record Type"]
411
+ x+=["0004,1432"] and y+=[["UI"]] and z+=["Private Record UID"]
412
+ x+=["0004,1500"] and y+=[["CS"]] and z+=["Referenced File ID"]
413
+ x+=["0004,1504"] and y+=[["UL"]] and z+=["MRDR Directory Record Offset"] # RET
414
+ x+=["0004,1510"] and y+=[["UI"]] and z+=["Referenced SOP Class UID in File"]
415
+ x+=["0004,1511"] and y+=[["UI"]] and z+=["Referenced SOP Instance UID in File"]
416
+ x+=["0004,1512"] and y+=[["UI"]] and z+=["Referenced Transfer Syntax UID in File"]
417
+ x+=["0004,151A"] and y+=[["UI"]] and z+=["Referenced Related General SOP Class UID in File"]
418
+ x+=["0004,1600"] and y+=[["UL"]] and z+=["Number of References"] # RET
419
+ # 6 Registry of DICOM data elements
420
+ # Group 0008
421
+ x+=["0008,0001"] and y+=[["UL"]] and z+=["Length to End"] # RET
422
+ x+=["0008,0005"] and y+=[["CS"]] and z+=["Specific Character Set"]
423
+ x+=["0008,0008"] and y+=[["CS"]] and z+=["Image Type"]
424
+ x+=["0008,0010"] and y+=[["CS"]] and z+=["Recognition Code"] # RET
425
+ x+=["0008,0012"] and y+=[["DA"]] and z+=["Instance Creation Date"]
426
+ x+=["0008,0013"] and y+=[["TM"]] and z+=["Instance Creation Time"]
427
+ x+=["0008,0014"] and y+=[["UI"]] and z+=["Instance Creator UID"]
428
+ x+=["0008,0016"] and y+=[["UI"]] and z+=["SOP Class UID"]
429
+ x+=["0008,0018"] and y+=[["UI"]] and z+=["SOP Instance UID"]
430
+ x+=["0008,001A"] and y+=[["UI"]] and z+=["Related General SOP Class UID"]
431
+ x+=["0008,001B"] and y+=[["UI"]] and z+=["Original Specialized SOP Class UID"]
432
+ x+=["0008,0020"] and y+=[["DA"]] and z+=["Study Date"]
433
+ x+=["0008,0021"] and y+=[["DA"]] and z+=["Series Date"]
434
+ x+=["0008,0022"] and y+=[["DA"]] and z+=["Acquisition Date"]
435
+ x+=["0008,0023"] and y+=[["DA"]] and z+=["Content Date"]
436
+ x+=["0008,0024"] and y+=[["DA"]] and z+=["Overlay Date"] # RET
437
+ x+=["0008,0025"] and y+=[["DA"]] and z+=["Curve Date"] # RET
438
+ x+=["0008,002A"] and y+=[["DT"]] and z+=["Acquisition Datetime"]
439
+ x+=["0008,0030"] and y+=[["TM"]] and z+=["Study Time"]
440
+ x+=["0008,0031"] and y+=[["TM"]] and z+=["Series Time"]
441
+ x+=["0008,0032"] and y+=[["TM"]] and z+=["Acquisition Time"]
442
+ x+=["0008,0033"] and y+=[["TM"]] and z+=["Content Time"]
443
+ x+=["0008,0034"] and y+=[["TM"]] and z+=["Overlay Time"] # RET
444
+ x+=["0008,0035"] and y+=[["TM"]] and z+=["Curve Time"] # RET
445
+ x+=["0008,0040"] and y+=[["US"]] and z+=["Data Set Type"] # RET
446
+ x+=["0008,0041"] and y+=[["LO"]] and z+=["Data Set Subtype"] # RET
447
+ x+=["0008,0042"] and y+=[["CS"]] and z+=["Nuclear Medicine Series Type"] # RET
448
+ x+=["0008,0050"] and y+=[["SH"]] and z+=["Accession Number"]
449
+ x+=["0008,0052"] and y+=[["CS"]] and z+=["Query/Retrieve Level"]
450
+ x+=["0008,0054"] and y+=[["AE"]] and z+=["Retrieve AE Title"]
451
+ x+=["0008,0056"] and y+=[["CS"]] and z+=["Instance Availability"]
452
+ x+=["0008,0058"] and y+=[["UI"]] and z+=["Failed SOP Instance UID List"]
453
+ x+=["0008,0060"] and y+=[["CS"]] and z+=["Modality"]
454
+ x+=["0008,0061"] and y+=[["CS"]] and z+=["Modalities in Study"]
455
+ x+=["0008,0062"] and y+=[["UI"]] and z+=["SOP Classes in Study"]
456
+ x+=["0008,0064"] and y+=[["CS"]] and z+=["Conversion Type"]
457
+ x+=["0008,0068"] and y+=[["CS"]] and z+=["Presentation Intent Type"]
458
+ x+=["0008,0070"] and y+=[["LO"]] and z+=["Manufacturer"]
459
+ x+=["0008,0080"] and y+=[["LO"]] and z+=["Institution Name"]
460
+ x+=["0008,0081"] and y+=[["ST"]] and z+=["Institution Address"]
461
+ x+=["0008,0082"] and y+=[["SQ"]] and z+=["Institution Code Sequence"]
462
+ x+=["0008,0090"] and y+=[["PN"]] and z+=["Referring Physician's Name"]
463
+ x+=["0008,0092"] and y+=[["ST"]] and z+=["Referring Physician's Address"]
464
+ x+=["0008,0094"] and y+=[["SH"]] and z+=["Referring Physician's Telephone Numbers"]
465
+ x+=["0008,0096"] and y+=[["SQ"]] and z+=["Referring Physician Identification Sequence"]
466
+ x+=["0008,0100"] and y+=[["SH"]] and z+=["Code Value"]
467
+ x+=["0008,0102"] and y+=[["SH"]] and z+=["Coding Scheme Designator"]
468
+ x+=["0008,0103"] and y+=[["SH"]] and z+=["Coding Scheme Version"]
469
+ x+=["0008,0104"] and y+=[["LO"]] and z+=["Code Meaning"]
470
+ x+=["0008,0105"] and y+=[["CS"]] and z+=["Mapping Resource"]
471
+ x+=["0008,0106"] and y+=[["DT"]] and z+=["Context Group Version"]
472
+ x+=["0008,0107"] and y+=[["DT"]] and z+=["Context Group Local Version"]
473
+ x+=["0008,010B"] and y+=[["CS"]] and z+=["Context Group Extension Flag"]
474
+ x+=["0008,010C"] and y+=[["UI"]] and z+=["Coding Scheme UID"]
475
+ x+=["0008,010D"] and y+=[["UI"]] and z+=["Context Group Extension Creator UID"]
476
+ x+=["0008,010F"] and y+=[["CS"]] and z+=["Context Identifier"]
477
+ x+=["0008,0110"] and y+=[["SQ"]] and z+=["Coding Scheme Identification Sequence"]
478
+ x+=["0008,0112"] and y+=[["LO"]] and z+=["Coding Scheme Registry"]
479
+ x+=["0008,0114"] and y+=[["ST"]] and z+=["Coding Scheme External ID"]
480
+ x+=["0008,0115"] and y+=[["ST"]] and z+=["Coding Scheme Name"]
481
+ x+=["0008,0116"] and y+=[["ST"]] and z+=["Responsible Organization"]
482
+ x+=["0008,0201"] and y+=[["SH"]] and z+=["Timezone Offset From UTC"]
483
+ x+=["0008,1000"] and y+=[["AE"]] and z+=["Network ID"] # RET
484
+ x+=["0008,1010"] and y+=[["SH"]] and z+=["Station Name"]
485
+ x+=["0008,1030"] and y+=[["LO"]] and z+=["Study Description"]
486
+ x+=["0008,1032"] and y+=[["SQ"]] and z+=["Procedure Code Sequence"]
487
+ x+=["0008,103E"] and y+=[["LO"]] and z+=["Series Description"]
488
+ x+=["0008,1040"] and y+=[["LO"]] and z+=["Institutional Department Name"]
489
+ x+=["0008,1048"] and y+=[["PN"]] and z+=["Physician(s) of Record"]
490
+ x+=["0008,1049"] and y+=[["SQ"]] and z+=["Physician(s) of Record Identification Sequence"]
491
+ x+=["0008,1050"] and y+=[["PN"]] and z+=["Performing Physician's Name"]
492
+ x+=["0008,1052"] and y+=[["SQ"]] and z+=["Performing Physician Identification Sequence"]
493
+ x+=["0008,1060"] and y+=[["PN"]] and z+=["Name of Physician(s) Reading Study"]
494
+ x+=["0008,1062"] and y+=[["SQ"]] and z+=["Physician(s) Reading Study Identification Sequence"]
495
+ x+=["0008,1070"] and y+=[["PN"]] and z+=["Operators' Name"]
496
+ x+=["0008,1072"] and y+=[["SQ"]] and z+=["Operator Identification Sequence"]
497
+ x+=["0008,1080"] and y+=[["LO"]] and z+=["Admitting Diagnoses Description"]
498
+ x+=["0008,1084"] and y+=[["SQ"]] and z+=["Admitting Diagnoses Code Sequence"]
499
+ x+=["0008,1090"] and y+=[["LO"]] and z+=["Manufacturer's Model Name"]
500
+ x+=["0008,1100"] and y+=[["SQ"]] and z+=["Referenced Results Sequence"] # RET
501
+ x+=["0008,1110"] and y+=[["SQ"]] and z+=["Referenced Study Sequence"]
502
+ x+=["0008,1111"] and y+=[["SQ"]] and z+=["Referenced Performed Procedure Step Sequence"]
503
+ x+=["0008,1115"] and y+=[["SQ"]] and z+=["Referenced Series Sequence"]
504
+ x+=["0008,1120"] and y+=[["SQ"]] and z+=["Referenced Patient Sequence"]
505
+ x+=["0008,1125"] and y+=[["SQ"]] and z+=["Referenced Visit Sequence"]
506
+ x+=["0008,1130"] and y+=[["SQ"]] and z+=["Referenced Overlay Sequence"] # RET
507
+ x+=["0008,113A"] and y+=[["SQ"]] and z+=["Referenced Waveform Sequence"]
508
+ x+=["0008,1140"] and y+=[["SQ"]] and z+=["Referenced Image Sequence"]
509
+ x+=["0008,1145"] and y+=[["SQ"]] and z+=["Referenced Curve Sequence"] # RET
510
+ x+=["0008,114A"] and y+=[["SQ"]] and z+=["Referenced Instance Sequence"]
511
+ x+=["0008,114B"] and y+=[["SQ"]] and z+=["Referenced Real World Value Mapping Instance Sequence"]
512
+ x+=["0008,1150"] and y+=[["UI"]] and z+=["Referenced SOP Class UID"]
513
+ x+=["0008,1155"] and y+=[["UI"]] and z+=["Referenced SOP Instance UID"]
514
+ x+=["0008,115A"] and y+=[["UI"]] and z+=["SOP Classes Supported"]
515
+ x+=["0008,1160"] and y+=[["IS"]] and z+=["Referenced Frame Number"]
516
+ x+=["0008,1195"] and y+=[["UI"]] and z+=["Transaction UID"]
517
+ x+=["0008,1197"] and y+=[["US"]] and z+=["Failure Reason"]
518
+ x+=["0008,1198"] and y+=[["SQ"]] and z+=["Failed SOP Sequence"]
519
+ x+=["0008,1199"] and y+=[["SQ"]] and z+=["Referenced SOP Sequence"]
520
+ x+=["0008,1200"] and y+=[["SQ"]] and z+=["Studies Containing Other Referenced Instances Sequence"]
521
+ x+=["0008,1250"] and y+=[["SQ"]] and z+=["Related Series Sequence"]
522
+ x+=["0008,2110"] and y+=[["CS"]] and z+=["Lossy Image Compression"] # RET
523
+ x+=["0008,2111"] and y+=[["ST"]] and z+=["Derivation Description"]
524
+ x+=["0008,2112"] and y+=[["SQ"]] and z+=["Source Image Sequence"]
525
+ x+=["0008,2120"] and y+=[["SH"]] and z+=["Stage Name"]
526
+ x+=["0008,2122"] and y+=[["IS"]] and z+=["Stage Number"]
527
+ x+=["0008,2124"] and y+=[["IS"]] and z+=["Number of Stages"]
528
+ x+=["0008,2127"] and y+=[["SH"]] and z+=["View Name"]
529
+ x+=["0008,2128"] and y+=[["IS"]] and z+=["View Number"]
530
+ x+=["0008,2129"] and y+=[["IS"]] and z+=["Number of Event Timers"]
531
+ x+=["0008,212A"] and y+=[["IS"]] and z+=["Number of Views in Stage"]
532
+ x+=["0008,2130"] and y+=[["DS"]] and z+=["Event Elapsed Time(s)"]
533
+ x+=["0008,2132"] and y+=[["LO"]] and z+=["Event Timer Name(s)"]
534
+ x+=["0008,2142"] and y+=[["IS"]] and z+=["Start Trim"]
535
+ x+=["0008,2143"] and y+=[["IS"]] and z+=["Stop Trim"]
536
+ x+=["0008,2144"] and y+=[["IS"]] and z+=["Recommended Display Frame Rate"]
537
+ x+=["0008,2200"] and y+=[["CS"]] and z+=["Transducer Position"] # RET
538
+ x+=["0008,2204"] and y+=[["CS"]] and z+=["Transducer Orientation"] # RET
539
+ x+=["0008,2208"] and y+=[["CS"]] and z+=["Anatomic Structure"] # RET
540
+ x+=["0008,2218"] and y+=[["SQ"]] and z+=["Anatomic Region Sequence"]
541
+ x+=["0008,2220"] and y+=[["SQ"]] and z+=["Anatomic Region Modifier Sequence"]
542
+ x+=["0008,2228"] and y+=[["SQ"]] and z+=["Primary Anatomic Structure Sequence"]
543
+ x+=["0008,2229"] and y+=[["SQ"]] and z+=["Anatomic Structure, Space or Region Sequence"]
544
+ x+=["0008,2230"] and y+=[["SQ"]] and z+=["Primary Anatomic Structure Modifier Sequence"]
545
+ x+=["0008,2240"] and y+=[["SQ"]] and z+=["Transducer Position Sequence"] # RET
546
+ x+=["0008,2242"] and y+=[["SQ"]] and z+=["Transducer Position Modifier Sequence"] # RET
547
+ x+=["0008,2244"] and y+=[["SQ"]] and z+=["Transducer Orientation Sequence"] # RET
548
+ x+=["0008,2246"] and y+=[["SQ"]] and z+=["Transducer Orientation Modifier Sequence"] # RET
549
+ x+=["0008,3001"] and y+=[["SQ"]] and z+=["Alternate Representation Sequence"]
550
+ x+=["0008,3010"] and y+=[["UI"]] and z+=["Irradiation Event UID"]
551
+ x+=["0008,4000"] and y+=[["LT"]] and z+=["Identifying Comments"] # RET
552
+ x+=["0008,9007"] and y+=[["CS"]] and z+=["Frame Type"]
553
+ x+=["0008,9092"] and y+=[["SQ"]] and z+=["Referenced Image Evidence Sequence"]
554
+ x+=["0008,9121"] and y+=[["SQ"]] and z+=["Referenced Raw Data Sequence"]
555
+ x+=["0008,9123"] and y+=[["UI"]] and z+=["Creator-Version UID"]
556
+ x+=["0008,9124"] and y+=[["SQ"]] and z+=["Derivation Image Sequence"]
557
+ x+=["0008,9154"] and y+=[["SQ"]] and z+=["Source Image Evidence Sequence"]
558
+ x+=["0008,9205"] and y+=[["CS"]] and z+=["Pixel Presentation"]
559
+ x+=["0008,9206"] and y+=[["CS"]] and z+=["Volumetric Properties"]
560
+ x+=["0008,9207"] and y+=[["CS"]] and z+=["Volume Based Calculation Technique"]
561
+ x+=["0008,9208"] and y+=[["CS"]] and z+=["Complex Image Component"]
562
+ x+=["0008,9209"] and y+=[["CS"]] and z+=["Acquisition Contrast"]
563
+ x+=["0008,9215"] and y+=[["SQ"]] and z+=["Derivation Code Sequence"]
564
+ x+=["0008,9237"] and y+=[["SQ"]] and z+=["Referenced Grayscale Presentation State Sequence"]
565
+ x+=["0008,9410"] and y+=[["SQ"]] and z+=["Referenced Other Plane Sequence"]
566
+ x+=["0008,9458"] and y+=[["SQ"]] and z+=["Frame Display Sequence"]
567
+ x+=["0008,9459"] and y+=[["FL"]] and z+=["Recommended Display Frame Rate in Float"]
568
+ x+=["0008,9460"] and y+=[["CS"]] and z+=["Skip Frame Range Flag"]
569
+ # Group 0010
570
+ x+=["0010,0010"] and y+=[["PN"]] and z+=["Patient's Name"]
571
+ x+=["0010,0020"] and y+=[["LO"]] and z+=["Patient ID"]
572
+ x+=["0010,0021"] and y+=[["LO"]] and z+=["Issuer of Patient ID"]
573
+ x+=["0010,0022"] and y+=[["CS"]] and z+=["Type of Patient ID"]
574
+ x+=["0010,0030"] and y+=[["DA"]] and z+=["Patient's Birth Date"]
575
+ x+=["0010,0032"] and y+=[["TM"]] and z+=["Patient's Birth Time"]
576
+ x+=["0010,0040"] and y+=[["CS"]] and z+=["Patient's Sex"]
577
+ x+=["0010,0050"] and y+=[["SQ"]] and z+=["Patient's Insurance Plan Code Sequence"]
578
+ x+=["0010,0101"] and y+=[["SQ"]] and z+=["Patient's Primary Language Code Sequence"]
579
+ x+=["0010,0102"] and y+=[["SQ"]] and z+=["Patient's Primary Language Code Modifier Sequence"]
580
+ x+=["0010,1000"] and y+=[["LO"]] and z+=["Other Patient IDs"]
581
+ x+=["0010,1001"] and y+=[["PN"]] and z+=["Other Patient Names"]
582
+ x+=["0010,1002"] and y+=[["SQ"]] and z+=["Other Patient IDs Sequence"]
583
+ x+=["0010,1005"] and y+=[["PN"]] and z+=["Patient's Birth Name"]
584
+ x+=["0010,1010"] and y+=[["AS"]] and z+=["Patient's Age"]
585
+ x+=["0010,1020"] and y+=[["DS"]] and z+=["Patient's Size"]
586
+ x+=["0010,1030"] and y+=[["DS"]] and z+=["Patient's Weight"]
587
+ x+=["0010,1040"] and y+=[["LO"]] and z+=["Patient's Address"]
588
+ x+=["0010,1050"] and y+=[["LO"]] and z+=["Insurance Plan Identification"] # RET
589
+ x+=["0010,1060"] and y+=[["PN"]] and z+=["Patient's Mother's Birth Name"]
590
+ x+=["0010,1080"] and y+=[["LO"]] and z+=["Military Rank"]
591
+ x+=["0010,1081"] and y+=[["LO"]] and z+=["Branch of Service"]
592
+ x+=["0010,1090"] and y+=[["LO"]] and z+=["Medical Record Locator"]
593
+ x+=["0010,2000"] and y+=[["LO"]] and z+=["Medical Alerts"]
594
+ x+=["0010,2110"] and y+=[["LO"]] and z+=["Contrast Allergies"]
595
+ x+=["0010,2150"] and y+=[["LO"]] and z+=["Country of Residence"]
596
+ x+=["0010,2152"] and y+=[["LO"]] and z+=["Region of Residence"]
597
+ x+=["0010,2154"] and y+=[["SH"]] and z+=["Patient's Telephone Numbers"]
598
+ x+=["0010,2160"] and y+=[["SH"]] and z+=["Ethnic Group"]
599
+ x+=["0010,2180"] and y+=[["SH"]] and z+=["Occupation"]
600
+ x+=["0010,21A0"] and y+=[["CS"]] and z+=["Smoking Status"]
601
+ x+=["0010,21B0"] and y+=[["LT"]] and z+=["Additional Patient History"]
602
+ x+=["0010,21C0"] and y+=[["US"]] and z+=["Pregnancy Status"]
603
+ x+=["0010,21D0"] and y+=[["DA"]] and z+=["Last Menstrual Date"]
604
+ x+=["0010,21F0"] and y+=[["LO"]] and z+=["Patient's Religious Preference"]
605
+ x+=["0010,2201"] and y+=[["LO"]] and z+=["Patient Species Description"]
606
+ x+=["0010,2202"] and y+=[["SQ"]] and z+=["Patient Species Code Sequence"]
607
+ x+=["0010,2203"] and y+=[["CS"]] and z+=["Patient's Sex Neutered"]
608
+ x+=["0010,2292"] and y+=[["LO"]] and z+=["Patient Breed Description"]
609
+ x+=["0010,2293"] and y+=[["SQ"]] and z+=["Patient Breed Code Sequence"]
610
+ x+=["0010,2294"] and y+=[["SQ"]] and z+=["Breed Registration Sequence"]
611
+ x+=["0010,2295"] and y+=[["LO"]] and z+=["Breed Registration Number"]
612
+ x+=["0010,2296"] and y+=[["SQ"]] and z+=["Breed Registry Code Sequence"]
613
+ x+=["0010,2297"] and y+=[["PN"]] and z+=["Responsible Person"]
614
+ x+=["0010,2298"] and y+=[["CS"]] and z+=["Responsible Person Role"]
615
+ x+=["0010,2299"] and y+=[["LO"]] and z+=["Responsible Organization"]
616
+ x+=["0010,4000"] and y+=[["LT"]] and z+=["Patient Comments"]
617
+ x+=["0010,9431"] and y+=[["FL"]] and z+=["Examined Body Thickness"]
618
+ # Group 0012
619
+ x+=["0012,0010"] and y+=[["LO"]] and z+=["Clinical Trial Sponsor Name"]
620
+ x+=["0012,0020"] and y+=[["LO"]] and z+=["Clinical Trial Protocol ID"]
621
+ x+=["0012,0021"] and y+=[["LO"]] and z+=["Clinical Trial Protocol Name"]
622
+ x+=["0012,0030"] and y+=[["LO"]] and z+=["Clinical Trial Site ID"]
623
+ x+=["0012,0031"] and y+=[["LO"]] and z+=["Clinical Trial Site Name"]
624
+ x+=["0012,0040"] and y+=[["LO"]] and z+=["Clinical Trial Subject ID"]
625
+ x+=["0012,0042"] and y+=[["LO"]] and z+=["Clinical Trial Subject Reading ID"]
626
+ x+=["0012,0050"] and y+=[["LO"]] and z+=["Clinical Trial Time Point ID"]
627
+ x+=["0012,0051"] and y+=[["ST"]] and z+=["Clinical Trial Time Point Description"]
628
+ x+=["0012,0060"] and y+=[["LO"]] and z+=["Clinical Trial Coordinating Center Name"]
629
+ x+=["0012,0062"] and y+=[["CS"]] and z+=["Patient Identity Removed"]
630
+ x+=["0012,0063"] and y+=[["LO"]] and z+=["De-identification Method"]
631
+ x+=["0012,0064"] and y+=[["SQ"]] and z+=["De-identification Method Code Sequence"]
632
+ # Group 0018
633
+ x+=["0018,0010"] and y+=[["LO"]] and z+=["Contrast/Bolus Agent"]
634
+ x+=["0018,0012"] and y+=[["SQ"]] and z+=["Contrast/Bolus Agent Sequence"]
635
+ x+=["0018,0014"] and y+=[["SQ"]] and z+=["Contrast/Bolus Administration Route Sequence"]
636
+ x+=["0018,0015"] and y+=[["CS"]] and z+=["Body Part Examined"]
637
+ x+=["0018,0020"] and y+=[["CS"]] and z+=["Scanning Sequence"]
638
+ x+=["0018,0021"] and y+=[["CS"]] and z+=["Sequence Variant"]
639
+ x+=["0018,0022"] and y+=[["CS"]] and z+=["Scan Options"]
640
+ x+=["0018,0023"] and y+=[["CS"]] and z+=["MR Acquisition Type"]
641
+ x+=["0018,0024"] and y+=[["SH"]] and z+=["Sequence Name"]
642
+ x+=["0018,0025"] and y+=[["CS"]] and z+=["Angio Flag"]
643
+ x+=["0018,0026"] and y+=[["SQ"]] and z+=["Intervention Drug Information Sequence"]
644
+ x+=["0018,0027"] and y+=[["TM"]] and z+=["Intervention Drug Stop Time"]
645
+ x+=["0018,0028"] and y+=[["DS"]] and z+=["Intervention Drug Dose"]
646
+ x+=["0018,0029"] and y+=[["SQ"]] and z+=["Intervention Drug Sequence"]
647
+ x+=["0018,002A"] and y+=[["SQ"]] and z+=["Additional Drug Sequence"]
648
+ x+=["0018,0030"] and y+=[["LO"]] and z+=["Radionuclide"] # RET
649
+ x+=["0018,0031"] and y+=[["LO"]] and z+=["Radiopharmaceutical"]
650
+ x+=["0018,0032"] and y+=[["DS"]] and z+=["Energy Window Centerline"] # RET
651
+ x+=["0018,0033"] and y+=[["DS"]] and z+=["Energy Window Total Width"] # RET
652
+ x+=["0018,0034"] and y+=[["LO"]] and z+=["Intervention Drug Name"]
653
+ x+=["0018,0035"] and y+=[["TM"]] and z+=["Intervention Drug Start Time"]
654
+ x+=["0018,0036"] and y+=[["SQ"]] and z+=["Intervention Sequence"]
655
+ x+=["0018,0037"] and y+=[["CS"]] and z+=["Therapy Type"] # RET
656
+ x+=["0018,0038"] and y+=[["CS"]] and z+=["Intervention Status"]
657
+ x+=["0018,0039"] and y+=[["CS"]] and z+=["Therapy Description"] # RET
658
+ x+=["0018,003A"] and y+=[["ST"]] and z+=["Intervention Description"]
659
+ x+=["0018,0040"] and y+=[["IS"]] and z+=["Cine Rate"]
660
+ x+=["0018,0050"] and y+=[["DS"]] and z+=["Slice Thickness"]
661
+ x+=["0018,0060"] and y+=[["DS"]] and z+=["KVP"]
662
+ x+=["0018,0070"] and y+=[["IS"]] and z+=["Counts Accumulated"]
663
+ x+=["0018,0071"] and y+=[["CS"]] and z+=["Acquisition Termination Condition"]
664
+ x+=["0018,0072"] and y+=[["DS"]] and z+=["Effective Duration"]
665
+ x+=["0018,0073"] and y+=[["CS"]] and z+=["Acquisition Start Condition"]
666
+ x+=["0018,0074"] and y+=[["IS"]] and z+=["Acquisition Start Condition Data"]
667
+ x+=["0018,0075"] and y+=[["IS"]] and z+=["Acquisition Termination Condition Data"]
668
+ x+=["0018,0080"] and y+=[["DS"]] and z+=["Repetition Time"]
669
+ x+=["0018,0081"] and y+=[["DS"]] and z+=["Echo Time"]
670
+ x+=["0018,0082"] and y+=[["DS"]] and z+=["Inversion Time"]
671
+ x+=["0018,0083"] and y+=[["DS"]] and z+=["Number of Averages"]
672
+ x+=["0018,0084"] and y+=[["DS"]] and z+=["Imaging Frequency"]
673
+ x+=["0018,0085"] and y+=[["SH"]] and z+=["Imaged Nucleus"]
674
+ x+=["0018,0086"] and y+=[["IS"]] and z+=["Echo Number(s)"]
675
+ x+=["0018,0087"] and y+=[["DS"]] and z+=["Magnetic Field Strength"]
676
+ x+=["0018,0088"] and y+=[["DS"]] and z+=["Spacing Between Slices"]
677
+ x+=["0018,0089"] and y+=[["IS"]] and z+=["Number of Phase Encoding Steps"]
678
+ x+=["0018,0090"] and y+=[["DS"]] and z+=["Data Collection Diameter"]
679
+ x+=["0018,0091"] and y+=[["IS"]] and z+=["Echo Train Length"]
680
+ x+=["0018,0093"] and y+=[["DS"]] and z+=["Percent Sampling"]
681
+ x+=["0018,0094"] and y+=[["DS"]] and z+=["Percent Phase Field of View"]
682
+ x+=["0018,0095"] and y+=[["DS"]] and z+=["Pixel Bandwidth"]
683
+ x+=["0018,1000"] and y+=[["LO"]] and z+=["Device Serial Number"]
684
+ x+=["0018,1002"] and y+=[["UI"]] and z+=["Device UID"]
685
+ x+=["0018,1003"] and y+=[["LO"]] and z+=["Device ID"]
686
+ x+=["0018,1004"] and y+=[["LO"]] and z+=["Plate ID"]
687
+ x+=["0018,1005"] and y+=[["LO"]] and z+=["Generator ID"]
688
+ x+=["0018,1006"] and y+=[["LO"]] and z+=["Grid ID"]
689
+ x+=["0018,1007"] and y+=[["LO"]] and z+=["Cassette ID"]
690
+ x+=["0018,1008"] and y+=[["LO"]] and z+=["Gantry ID"]
691
+ x+=["0018,1010"] and y+=[["LO"]] and z+=["Secondary Capture Device ID"]
692
+ x+=["0018,1011"] and y+=[["LO"]] and z+=["Hardcopy Creation Device ID"]
693
+ x+=["0018,1012"] and y+=[["DA"]] and z+=["Date of Secondary Capture"]
694
+ x+=["0018,1014"] and y+=[["TM"]] and z+=["Time of Secondary Capture"]
695
+ x+=["0018,1016"] and y+=[["LO"]] and z+=["Secondary Capture Device Manufacturer"]
696
+ x+=["0018,1017"] and y+=[["LO"]] and z+=["Hardcopy Device Manufacturer"]
697
+ x+=["0018,1018"] and y+=[["LO"]] and z+=["Secondary Capture Device Manufacturer's Model Name"]
698
+ x+=["0018,1019"] and y+=[["LO"]] and z+=["Secondary Capture Device Software Version(s)"]
699
+ x+=["0018,101A"] and y+=[["LO"]] and z+=["Hardcopy Device Software Version"]
700
+ x+=["0018,101B"] and y+=[["LO"]] and z+=["Hardcopy Device Manufacturer's Model Name"]
701
+ x+=["0018,1020"] and y+=[["LO"]] and z+=["Software Version(s)"]
702
+ x+=["0018,1022"] and y+=[["SH"]] and z+=["Video Image Format Acquired"]
703
+ x+=["0018,1023"] and y+=[["LO"]] and z+=["Digital Image Format Acquired"]
704
+ x+=["0018,1030"] and y+=[["LO"]] and z+=["Protocol Name"]
705
+ x+=["0018,1040"] and y+=[["LO"]] and z+=["Contrast/Bolus Route"]
706
+ x+=["0018,1041"] and y+=[["DS"]] and z+=["Contrast/Bolus Volume"]
707
+ x+=["0018,1042"] and y+=[["TM"]] and z+=["Contrast/Bolus Start Time"]
708
+ x+=["0018,1043"] and y+=[["TM"]] and z+=["Contrast/Bolus Stop Time"]
709
+ x+=["0018,1044"] and y+=[["DS"]] and z+=["Contrast/Bolus Total Dose"]
710
+ x+=["0018,1045"] and y+=[["IS"]] and z+=["Syringe Counts"]
711
+ x+=["0018,1046"] and y+=[["DS"]] and z+=["Contrast Flow Rate"]
712
+ x+=["0018,1047"] and y+=[["DS"]] and z+=["Contrast Flow Duration"]
713
+ x+=["0018,1048"] and y+=[["CS"]] and z+=["Contrast/Bolus Ingredient"]
714
+ x+=["0018,1049"] and y+=[["DS"]] and z+=["Contrast/Bolus Ingredient Concentration"]
715
+ x+=["0018,1050"] and y+=[["DS"]] and z+=["Spatial Resolution"]
716
+ x+=["0018,1060"] and y+=[["DS"]] and z+=["Trigger Time"]
717
+ x+=["0018,1061"] and y+=[["LO"]] and z+=["Trigger Source or Type"]
718
+ x+=["0018,1062"] and y+=[["IS"]] and z+=["Nominal Interval"]
719
+ x+=["0018,1063"] and y+=[["DS"]] and z+=["Frame Time"]
720
+ x+=["0018,1064"] and y+=[["LO"]] and z+=["Framing Type"]
721
+ x+=["0018,1065"] and y+=[["DS"]] and z+=["Frame Time Vector"]
722
+ x+=["0018,1066"] and y+=[["DS"]] and z+=["Frame Delay"]
723
+ x+=["0018,1067"] and y+=[["DS"]] and z+=["Image Trigger Delay"]
724
+ x+=["0018,1068"] and y+=[["DS"]] and z+=["Multiplex Group Time Offset"]
725
+ x+=["0018,1069"] and y+=[["DS"]] and z+=["Trigger Time Offset"]
726
+ x+=["0018,106A"] and y+=[["CS"]] and z+=["Synchronization Trigger"]
727
+ x+=["0018,106C"] and y+=[["US"]] and z+=["Synchronization Channel"]
728
+ x+=["0018,106E"] and y+=[["UL"]] and z+=["Trigger Sample Position"]
729
+ x+=["0018,1070"] and y+=[["LO"]] and z+=["Radiopharmaceutical Route"]
730
+ x+=["0018,1071"] and y+=[["DS"]] and z+=["Radiopharmaceutical Volume"]
731
+ x+=["0018,1072"] and y+=[["TM"]] and z+=["Radiopharmaceutical Start Time"]
732
+ x+=["0018,1073"] and y+=[["TM"]] and z+=["Radiopharmaceutical Stop Time"]
733
+ x+=["0018,1074"] and y+=[["DS"]] and z+=["Radionuclide Total Dose"]
734
+ x+=["0018,1075"] and y+=[["DS"]] and z+=["Radionuclide Half Life"]
735
+ x+=["0018,1076"] and y+=[["DS"]] and z+=["Radionuclide Positron Fraction"]
736
+ x+=["0018,1077"] and y+=[["DS"]] and z+=["Radiopharmaceutical Specific Activity"]
737
+ x+=["0018,1078"] and y+=[["DT"]] and z+=["Radiopharmaceutical Start Datetime"]
738
+ x+=["0018,1079"] and y+=[["DT"]] and z+=["Radiopharmaceutical Stop Datetime"]
739
+ x+=["0018,1080"] and y+=[["CS"]] and z+=["Beat Rejection Flag"]
740
+ x+=["0018,1081"] and y+=[["IS"]] and z+=["Low R-R Value"]
741
+ x+=["0018,1082"] and y+=[["IS"]] and z+=["High R-R Value"]
742
+ x+=["0018,1083"] and y+=[["IS"]] and z+=["Intervals Acquired"]
743
+ x+=["0018,1084"] and y+=[["IS"]] and z+=["Intervals Rejected"]
744
+ x+=["0018,1085"] and y+=[["LO"]] and z+=["PVC Rejection"]
745
+ x+=["0018,1086"] and y+=[["IS"]] and z+=["Skip Beats"]
746
+ x+=["0018,1088"] and y+=[["IS"]] and z+=["Heart Rate"]
747
+ x+=["0018,1090"] and y+=[["IS"]] and z+=["Cardiac Number of Images"]
748
+ x+=["0018,1094"] and y+=[["IS"]] and z+=["Trigger Window"]
749
+ x+=["0018,1100"] and y+=[["DS"]] and z+=["Reconstruction Diameter"]
750
+ x+=["0018,1110"] and y+=[["DS"]] and z+=["Distance Source to Detector"]
751
+ x+=["0018,1111"] and y+=[["DS"]] and z+=["Distance Source to Patient"]
752
+ x+=["0018,1114"] and y+=[["DS"]] and z+=["Estimated Radiographic Magnification Factor"]
753
+ x+=["0018,1120"] and y+=[["DS"]] and z+=["Gantry/Detector Tilt"]
754
+ x+=["0018,1121"] and y+=[["DS"]] and z+=["Gantry/Detector Slew"]
755
+ x+=["0018,1130"] and y+=[["DS"]] and z+=["Table Height"]
756
+ x+=["0018,1131"] and y+=[["DS"]] and z+=["Table Traverse"]
757
+ x+=["0018,1134"] and y+=[["CS"]] and z+=["Table Motion"]
758
+ x+=["0018,1135"] and y+=[["DS"]] and z+=["Table Vertical Increment"]
759
+ x+=["0018,1136"] and y+=[["DS"]] and z+=["Table Lateral Increment"]
760
+ x+=["0018,1137"] and y+=[["DS"]] and z+=["Table Longitudinal Increment"]
761
+ x+=["0018,1138"] and y+=[["DS"]] and z+=["Table Angle"]
762
+ x+=["0018,113A"] and y+=[["CS"]] and z+=["Table Type"]
763
+ x+=["0018,1140"] and y+=[["CS"]] and z+=["Rotation Direction"]
764
+ x+=["0018,1141"] and y+=[["DS"]] and z+=["Angular Position"]
765
+ x+=["0018,1142"] and y+=[["DS"]] and z+=["Radial Position"]
766
+ x+=["0018,1143"] and y+=[["DS"]] and z+=["Scan Arc"]
767
+ x+=["0018,1144"] and y+=[["DS"]] and z+=["Angular Step"]
768
+ x+=["0018,1145"] and y+=[["DS"]] and z+=["Center of Rotation Offset"]
769
+ x+=["0018,1146"] and y+=[["DS"]] and z+=["Rotation Offset"] # RET
770
+ x+=["0018,1147"] and y+=[["CS"]] and z+=["Field of View Shape"]
771
+ x+=["0018,1149"] and y+=[["IS"]] and z+=["Field of View Dimension(s)"]
772
+ x+=["0018,1150"] and y+=[["IS"]] and z+=["Exposure Time"]
773
+ x+=["0018,1151"] and y+=[["IS"]] and z+=["X-ray Tube Current"]
774
+ x+=["0018,1152"] and y+=[["IS"]] and z+=["Exposure"]
775
+ x+=["0018,1153"] and y+=[["IS"]] and z+=["Exposure in uAs"]
776
+ x+=["0018,1154"] and y+=[["DS"]] and z+=["Average Pulse Width"]
777
+ x+=["0018,1155"] and y+=[["CS"]] and z+=["Radiation Setting"]
778
+ x+=["0018,1156"] and y+=[["CS"]] and z+=["Rectification Type"]
779
+ x+=["0018,115A"] and y+=[["CS"]] and z+=["Radiation Mode"]
780
+ x+=["0018,115E"] and y+=[["DS"]] and z+=["Image and Fluoroscopy Area Dose Product"]
781
+ x+=["0018,1160"] and y+=[["SH"]] and z+=["Filter Type"]
782
+ x+=["0018,1161"] and y+=[["LO"]] and z+=["Type of Filters"]
783
+ x+=["0018,1162"] and y+=[["DS"]] and z+=["Intensifier Size"]
784
+ x+=["0018,1164"] and y+=[["DS"]] and z+=["Imager Pixel Spacing"]
785
+ x+=["0018,1166"] and y+=[["CS"]] and z+=["Grid"]
786
+ x+=["0018,1170"] and y+=[["IS"]] and z+=["Generator Power"]
787
+ x+=["0018,1180"] and y+=[["SH"]] and z+=["Collimator/grid Name"]
788
+ x+=["0018,1181"] and y+=[["CS"]] and z+=["Collimator Type"]
789
+ x+=["0018,1182"] and y+=[["IS"]] and z+=["Focal Distance"]
790
+ x+=["0018,1183"] and y+=[["DS"]] and z+=["X Focus Center"]
791
+ x+=["0018,1184"] and y+=[["DS"]] and z+=["Y Focus Center"]
792
+ x+=["0018,1190"] and y+=[["DS"]] and z+=["Focal Spot(s)"]
793
+ x+=["0018,1191"] and y+=[["CS"]] and z+=["Anode Target Material"]
794
+ x+=["0018,11A0"] and y+=[["DS"]] and z+=["Body Part Thickness"]
795
+ x+=["0018,11A2"] and y+=[["DS"]] and z+=["Compression Force"]
796
+ x+=["0018,1200"] and y+=[["DA"]] and z+=["Date of Last Calibration"]
797
+ x+=["0018,1201"] and y+=[["TM"]] and z+=["Time of Last Calibration"]
798
+ x+=["0018,1210"] and y+=[["SH"]] and z+=["Convolution Kernel"]
799
+ x+=["0018,1240"] and y+=[["IS"]] and z+=["Upper/Lower Pixel Values"] # RET
800
+ x+=["0018,1242"] and y+=[["IS"]] and z+=["Actual Frame Duration"]
801
+ x+=["0018,1243"] and y+=[["IS"]] and z+=["Count Rate"]
802
+ x+=["0018,1244"] and y+=[["US"]] and z+=["Preferred Playback Sequencing"]
803
+ x+=["0018,1250"] and y+=[["SH"]] and z+=["Receive Coil Name"]
804
+ x+=["0018,1251"] and y+=[["SH"]] and z+=["Transmit Coil Name"]
805
+ x+=["0018,1260"] and y+=[["SH"]] and z+=["Plate Type"]
806
+ x+=["0018,1261"] and y+=[["LO"]] and z+=["Phosphor Type"]
807
+ x+=["0018,1300"] and y+=[["DS"]] and z+=["Scan Velocity"]
808
+ x+=["0018,1301"] and y+=[["CS"]] and z+=["Whole Body Technique"]
809
+ x+=["0018,1302"] and y+=[["IS"]] and z+=["Scan Length"]
810
+ x+=["0018,1310"] and y+=[["US"]] and z+=["Acquisition Matrix"]
811
+ x+=["0018,1312"] and y+=[["CS"]] and z+=["In-plane Phase Encoding Direction"]
812
+ x+=["0018,1314"] and y+=[["DS"]] and z+=["Flip Angle"]
813
+ x+=["0018,1315"] and y+=[["CS"]] and z+=["Variable Flip Angle Flag"]
814
+ x+=["0018,1316"] and y+=[["DS"]] and z+=["SAR"]
815
+ x+=["0018,1318"] and y+=[["DS"]] and z+=["dB/dt"]
816
+ x+=["0018,1400"] and y+=[["LO"]] and z+=["Acquisition Device Processing Description"]
817
+ x+=["0018,1401"] and y+=[["LO"]] and z+=["Acquisition Device Processing Code"]
818
+ x+=["0018,1402"] and y+=[["CS"]] and z+=["Cassette Orientation"]
819
+ x+=["0018,1403"] and y+=[["CS"]] and z+=["Cassette Size"]
820
+ x+=["0018,1404"] and y+=[["US"]] and z+=["Exposures on Plate"]
821
+ x+=["0018,1405"] and y+=[["IS"]] and z+=["Relative X-ray Exposure"]
822
+ x+=["0018,1450"] and y+=[["DS"]] and z+=["Column Angulation"]
823
+ x+=["0018,1460"] and y+=[["DS"]] and z+=["Tomo Layer Height"]
824
+ x+=["0018,1470"] and y+=[["DS"]] and z+=["Tomo Angle"]
825
+ x+=["0018,1480"] and y+=[["DS"]] and z+=["Tomo Time"]
826
+ x+=["0018,1490"] and y+=[["CS"]] and z+=["Tomo Type"]
827
+ x+=["0018,1491"] and y+=[["CS"]] and z+=["Tomo Class"]
828
+ x+=["0018,1495"] and y+=[["IS"]] and z+=["Number of Tomosynthesis Source Images"]
829
+ x+=["0018,1500"] and y+=[["CS"]] and z+=["Positioner Motion"]
830
+ x+=["0018,1508"] and y+=[["CS"]] and z+=["Positioner Type"]
831
+ x+=["0018,1510"] and y+=[["DS"]] and z+=["Positioner Primary Angle"]
832
+ x+=["0018,1511"] and y+=[["DS"]] and z+=["Positioner Secondary Angle"]
833
+ x+=["0018,1520"] and y+=[["DS"]] and z+=["Positioner Primary Angle Increment"]
834
+ x+=["0018,1521"] and y+=[["DS"]] and z+=["Positioner Secondary Angle Increment"]
835
+ x+=["0018,1530"] and y+=[["DS"]] and z+=["Detector Primary Angle"]
836
+ x+=["0018,1531"] and y+=[["DS"]] and z+=["Detector Secondary Angle"]
837
+ x+=["0018,1600"] and y+=[["CS"]] and z+=["Shutter Shape"]
838
+ x+=["0018,1602"] and y+=[["IS"]] and z+=["Shutter Left Vertical Edge"]
839
+ x+=["0018,1604"] and y+=[["IS"]] and z+=["Shutter Right Vertical Edge"]
840
+ x+=["0018,1606"] and y+=[["IS"]] and z+=["Shutter Upper Horizontal Edge"]
841
+ x+=["0018,1608"] and y+=[["IS"]] and z+=["Shutter Lower Horizontal Edge"]
842
+ x+=["0018,1610"] and y+=[["IS"]] and z+=["Center of Circular Shutter"]
843
+ x+=["0018,1612"] and y+=[["IS"]] and z+=["Radius of Circular Shutter"]
844
+ x+=["0018,1620"] and y+=[["IS"]] and z+=["Vertices of the Polygonal Shutter"]
845
+ x+=["0018,1622"] and y+=[["US"]] and z+=["Shutter Presentation Value"]
846
+ x+=["0018,1623"] and y+=[["US"]] and z+=["Shutter Overlay Group"]
847
+ x+=["0018,1624"] and y+=[["US"]] and z+=["Shutter Presentation Color CIELab Value"]
848
+ x+=["0018,1700"] and y+=[["CS"]] and z+=["Collimator Shape"]
849
+ x+=["0018,1702"] and y+=[["IS"]] and z+=["Collimator Left Vertical Edge"]
850
+ x+=["0018,1704"] and y+=[["IS"]] and z+=["Collimator Right Vertical Edge"]
851
+ x+=["0018,1706"] and y+=[["IS"]] and z+=["Collimator Upper Horizontal Edge"]
852
+ x+=["0018,1708"] and y+=[["IS"]] and z+=["Collimator Lower Horizontal Edge"]
853
+ x+=["0018,1710"] and y+=[["IS"]] and z+=["Center of Circular Collimator"]
854
+ x+=["0018,1712"] and y+=[["IS"]] and z+=["Radius of Circular Collimator"]
855
+ x+=["0018,1720"] and y+=[["IS"]] and z+=["Vertices of the Polygonal Collimator"]
856
+ x+=["0018,1800"] and y+=[["CS"]] and z+=["Acquisition Time Synchronized"]
857
+ x+=["0018,1801"] and y+=[["SH"]] and z+=["Time Source"]
858
+ x+=["0018,1802"] and y+=[["CS"]] and z+=["Time Distribution Protocol"]
859
+ x+=["0018,1803"] and y+=[["LO"]] and z+=["NTP Source Address"]
860
+ x+=["0018,2001"] and y+=[["IS"]] and z+=["Page Number Vector"]
861
+ x+=["0018,2002"] and y+=[["SH"]] and z+=["Frame Label Vector"]
862
+ x+=["0018,2003"] and y+=[["DS"]] and z+=["Frame Primary Angle Vector"]
863
+ x+=["0018,2004"] and y+=[["DS"]] and z+=["Frame Secondary Angle Vector"]
864
+ x+=["0018,2005"] and y+=[["DS"]] and z+=["Slice Location Vector"]
865
+ x+=["0018,2006"] and y+=[["SH"]] and z+=["Display Window Label Vector"]
866
+ x+=["0018,2010"] and y+=[["DS"]] and z+=["Nominal Scanned Pixel Spacing"]
867
+ x+=["0018,2020"] and y+=[["CS"]] and z+=["Digitizing Device Transport Direction"]
868
+ x+=["0018,2030"] and y+=[["DS"]] and z+=["Rotation of Scanned Film"]
869
+ x+=["0018,3100"] and y+=[["CS"]] and z+=["IVUS Acquisition"]
870
+ x+=["0018,3101"] and y+=[["DS"]] and z+=["IVUS Pullback Rate"]
871
+ x+=["0018,3102"] and y+=[["DS"]] and z+=["IVUS Gated Rate"]
872
+ x+=["0018,3103"] and y+=[["IS"]] and z+=["IVUS Pullback Start Frame Number"]
873
+ x+=["0018,3104"] and y+=[["IS"]] and z+=["IVUS Pullback Stop Frame Number"]
874
+ x+=["0018,3105"] and y+=[["IS"]] and z+=["Lesion Number"]
875
+ x+=["0018,4000"] and y+=[["LT"]] and z+=["Acquisition Comments"] # RET
876
+ x+=["0018,5000"] and y+=[["SH"]] and z+=["Output Power"]
877
+ x+=["0018,5010"] and y+=[["LO"]] and z+=["Transducer Data"]
878
+ x+=["0018,5012"] and y+=[["DS"]] and z+=["Focus Depth"]
879
+ x+=["0018,5020"] and y+=[["LO"]] and z+=["Processing Function"]
880
+ x+=["0018,5021"] and y+=[["LO"]] and z+=["Postprocessing Function"]
881
+ x+=["0018,5022"] and y+=[["DS"]] and z+=["Mechanical Index"]
882
+ x+=["0018,5024"] and y+=[["DS"]] and z+=["Bone Thermal Index"]
883
+ x+=["0018,5026"] and y+=[["DS"]] and z+=["Cranial Thermal Index"]
884
+ x+=["0018,5027"] and y+=[["DS"]] and z+=["Soft Tissue Thermal Index"]
885
+ x+=["0018,5028"] and y+=[["DS"]] and z+=["Soft Tissue-focus Thermal Index"]
886
+ x+=["0018,5029"] and y+=[["DS"]] and z+=["Soft Tissue-surface Thermal Index"]
887
+ x+=["0018,5030"] and y+=[["DS"]] and z+=["Dynamic Range"] # RET
888
+ x+=["0018,5040"] and y+=[["DS"]] and z+=["Total Gain"] # RET
889
+ x+=["0018,5050"] and y+=[["IS"]] and z+=["Depth of Scan Field"]
890
+ x+=["0018,5100"] and y+=[["CS"]] and z+=["Patient Position"]
891
+ x+=["0018,5101"] and y+=[["CS"]] and z+=["View Position"]
892
+ x+=["0018,5104"] and y+=[["SQ"]] and z+=["Projection Eponymous Name Code Sequence"]
893
+ x+=["0018,5210"] and y+=[["DS"]] and z+=["Image Transformation Matrix"] # RET
894
+ x+=["0018,5212"] and y+=[["DS"]] and z+=["Image Translation Vector"] # RET
895
+ x+=["0018,6000"] and y+=[["DS"]] and z+=["Sensitivity"]
896
+ x+=["0018,6011"] and y+=[["SQ"]] and z+=["Sequence of Ultrasound Regions"]
897
+ x+=["0018,6012"] and y+=[["US"]] and z+=["Region Spatial Format"]
898
+ x+=["0018,6014"] and y+=[["US"]] and z+=["Region Data Type"]
899
+ x+=["0018,6016"] and y+=[["UL"]] and z+=["Region Flags"]
900
+ x+=["0018,6018"] and y+=[["UL"]] and z+=["Region Location Min X0"]
901
+ x+=["0018,601A"] and y+=[["UL"]] and z+=["Region Location Min Y0"]
902
+ x+=["0018,601C"] and y+=[["UL"]] and z+=["Region Location Max X1"]
903
+ x+=["0018,601E"] and y+=[["UL"]] and z+=["Region Location Max Y1"]
904
+ x+=["0018,6020"] and y+=[["SL"]] and z+=["Reference Pixel X0"]
905
+ x+=["0018,6022"] and y+=[["SL"]] and z+=["Reference Pixel Y0"]
906
+ x+=["0018,6024"] and y+=[["US"]] and z+=["Physical Units X Direction"]
907
+ x+=["0018,6026"] and y+=[["US"]] and z+=["Physical Units Y Direction"]
908
+ x+=["0018,6028"] and y+=[["FD"]] and z+=["Reference Pixel Physical Value X"]
909
+ x+=["0018,602A"] and y+=[["FD"]] and z+=["Reference Pixel Physical Value Y"]
910
+ x+=["0018,602C"] and y+=[["FD"]] and z+=["Physical Delta X"]
911
+ x+=["0018,602E"] and y+=[["FD"]] and z+=["Physical Delta Y"]
912
+ x+=["0018,6030"] and y+=[["UL"]] and z+=["Transducer Frequency"]
913
+ x+=["0018,6031"] and y+=[["CS"]] and z+=["Transducer Type"]
914
+ x+=["0018,6032"] and y+=[["UL"]] and z+=["Pulse Repetition Frequency"]
915
+ x+=["0018,6034"] and y+=[["FD"]] and z+=["Doppler Correction Angle"]
916
+ x+=["0018,6036"] and y+=[["FD"]] and z+=["Steering Angle"]
917
+ x+=["0018,6038"] and y+=[["UL"]] and z+=["Doppler Sample Volume X Position"] # RET
918
+ x+=["0018,6039"] and y+=[["SL"]] and z+=["Doppler Sample Volume X Position"]
919
+ x+=["0018,603A"] and y+=[["UL"]] and z+=["Doppler Sample Volume Y Position"] # RET
920
+ x+=["0018,603B"] and y+=[["SL"]] and z+=["Doppler Sample Volume Y Position"]
921
+ x+=["0018,603C"] and y+=[["UL"]] and z+=["TM-Line Position X0"] # RET
922
+ x+=["0018,603D"] and y+=[["SL"]] and z+=["TM-Line Position X0"]
923
+ x+=["0018,603E"] and y+=[["UL"]] and z+=["TM-Line Position Y0"] # RET
924
+ x+=["0018,603F"] and y+=[["SL"]] and z+=["TM-Line Position Y0"]
925
+ x+=["0018,6040"] and y+=[["UL"]] and z+=["TM-Line Position X1"] # RET
926
+ x+=["0018,6041"] and y+=[["SL"]] and z+=["TM-Line Position X1"]
927
+ x+=["0018,6042"] and y+=[["UL"]] and z+=["TM-Line Position Y1"] # RET
928
+ x+=["0018,6043"] and y+=[["SL"]] and z+=["TM-Line Position Y1"]
929
+ x+=["0018,6044"] and y+=[["US"]] and z+=["Pixel Component Organization"]
930
+ x+=["0018,6046"] and y+=[["UL"]] and z+=["Pixel Component Mask"]
931
+ x+=["0018,6048"] and y+=[["UL"]] and z+=["Pixel Component Range Start"]
932
+ x+=["0018,604A"] and y+=[["UL"]] and z+=["Pixel Component Range Stop"]
933
+ x+=["0018,604C"] and y+=[["US"]] and z+=["Pixel Component Physical Units"]
934
+ x+=["0018,604E"] and y+=[["US"]] and z+=["Pixel Component Data Type"]
935
+ x+=["0018,6050"] and y+=[["UL"]] and z+=["Number of Table Break Points"]
936
+ x+=["0018,6052"] and y+=[["UL"]] and z+=["Table of X Break Points"]
937
+ x+=["0018,6054"] and y+=[["FD"]] and z+=["Table of Y Break Points"]
938
+ x+=["0018,6056"] and y+=[["UL"]] and z+=["Number of Table Entries"]
939
+ x+=["0018,6058"] and y+=[["UL"]] and z+=["Table of Pixel Values"]
940
+ x+=["0018,605A"] and y+=[["FL"]] and z+=["Table of Parameter Values"]
941
+ x+=["0018,6060"] and y+=[["FL"]] and z+=["R Wave Time Vector"]
942
+ x+=["0018,7000"] and y+=[["CS"]] and z+=["Detector Conditions Nominal Flag"]
943
+ x+=["0018,7001"] and y+=[["DS"]] and z+=["Detector Temperature"]
944
+ x+=["0018,7004"] and y+=[["CS"]] and z+=["Detector Type"]
945
+ x+=["0018,7005"] and y+=[["CS"]] and z+=["Detector Configuration"]
946
+ x+=["0018,7006"] and y+=[["LT"]] and z+=["Detector Description"]
947
+ x+=["0018,7008"] and y+=[["LT"]] and z+=["Detector Mode"]
948
+ x+=["0018,700A"] and y+=[["SH"]] and z+=["Detector ID"]
949
+ x+=["0018,700C"] and y+=[["DA"]] and z+=["Date of Last Detector Calibration"]
950
+ x+=["0018,700E"] and y+=[["TM"]] and z+=["Time of Last Detector Calibration"]
951
+ x+=["0018,7010"] and y+=[["IS"]] and z+=["Exposures on Detector Since Last Calibration"]
952
+ x+=["0018,7011"] and y+=[["IS"]] and z+=["Exposures on Detector Since Manufactured"]
953
+ x+=["0018,7012"] and y+=[["DS"]] and z+=["Detector Time Since Last Exposure"]
954
+ x+=["0018,7014"] and y+=[["DS"]] and z+=["Detector Active Time"]
955
+ x+=["0018,7016"] and y+=[["DS"]] and z+=["Detector Activation Offset From Exposure"]
956
+ x+=["0018,701A"] and y+=[["DS"]] and z+=["Detector Binning"]
957
+ x+=["0018,7020"] and y+=[["DS"]] and z+=["Detector Element Physical Size"]
958
+ x+=["0018,7022"] and y+=[["DS"]] and z+=["Detector Element Spacing"]
959
+ x+=["0018,7024"] and y+=[["CS"]] and z+=["Detector Active Shape"]
960
+ x+=["0018,7026"] and y+=[["DS"]] and z+=["Detector Active Dimension(s)"]
961
+ x+=["0018,7028"] and y+=[["DS"]] and z+=["Detector Active Origin"]
962
+ x+=["0018,702A"] and y+=[["LO"]] and z+=["Detector Manufacturer Name"]
963
+ x+=["0018,702B"] and y+=[["LO"]] and z+=["Detector Manufacturer's Model Name"]
964
+ x+=["0018,7030"] and y+=[["DS"]] and z+=["Field of View Origin"]
965
+ x+=["0018,7032"] and y+=[["DS"]] and z+=["Field of View Rotation"]
966
+ x+=["0018,7034"] and y+=[["CS"]] and z+=["Field of View Horizontal Flip"]
967
+ x+=["0018,7040"] and y+=[["LT"]] and z+=["Grid Absorbing Material"]
968
+ x+=["0018,7041"] and y+=[["LT"]] and z+=["Grid Spacing Material"]
969
+ x+=["0018,7042"] and y+=[["DS"]] and z+=["Grid Thickness"]
970
+ x+=["0018,7044"] and y+=[["DS"]] and z+=["Grid Pitch"]
971
+ x+=["0018,7046"] and y+=[["IS"]] and z+=["Grid Aspect Ratio"]
972
+ x+=["0018,7048"] and y+=[["DS"]] and z+=["Grid Period"]
973
+ x+=["0018,704C"] and y+=[["DS"]] and z+=["Grid Focal Distance"]
974
+ x+=["0018,7050"] and y+=[["CS"]] and z+=["Filter Material"]
975
+ x+=["0018,7052"] and y+=[["DS"]] and z+=["Filter Thickness Minimum"]
976
+ x+=["0018,7054"] and y+=[["DS"]] and z+=["Filter Thickness Maximum"]
977
+ x+=["0018,7060"] and y+=[["CS"]] and z+=["Exposure Control Mode"]
978
+ x+=["0018,7062"] and y+=[["LT"]] and z+=["Exposure Control Mode Description"]
979
+ x+=["0018,7064"] and y+=[["CS"]] and z+=["Exposure Status"]
980
+ x+=["0018,7065"] and y+=[["DS"]] and z+=["Phototimer Setting"]
981
+ x+=["0018,8150"] and y+=[["DS"]] and z+=["Exposure Time in �S"]
982
+ x+=["0018,8151"] and y+=[["DS"]] and z+=["X-Ray Tube Current in �A"]
983
+ x+=["0018,9004"] and y+=[["CS"]] and z+=["Content Qualification"]
984
+ x+=["0018,9005"] and y+=[["SH"]] and z+=["Pulse Sequence Name"]
985
+ x+=["0018,9006"] and y+=[["SQ"]] and z+=["MR Imaging Modifier Sequence"]
986
+ x+=["0018,9008"] and y+=[["CS"]] and z+=["Echo Pulse Sequence"]
987
+ x+=["0018,9009"] and y+=[["CS"]] and z+=["Inversion Recovery"]
988
+ x+=["0018,9010"] and y+=[["CS"]] and z+=["Flow Compensation"]
989
+ x+=["0018,9011"] and y+=[["CS"]] and z+=["Multiple Spin Echo"]
990
+ x+=["0018,9012"] and y+=[["CS"]] and z+=["Multi-planar Excitation"]
991
+ x+=["0018,9014"] and y+=[["CS"]] and z+=["Phase Contrast"]
992
+ x+=["0018,9015"] and y+=[["CS"]] and z+=["Time of Flight Contrast"]
993
+ x+=["0018,9016"] and y+=[["CS"]] and z+=["Spoiling"]
994
+ x+=["0018,9017"] and y+=[["CS"]] and z+=["Steady State Pulse Sequence"]
995
+ x+=["0018,9018"] and y+=[["CS"]] and z+=["Echo Planar Pulse Sequence"]
996
+ x+=["0018,9019"] and y+=[["FD"]] and z+=["Tag Angle First Axis"]
997
+ x+=["0018,9020"] and y+=[["CS"]] and z+=["Magnetization Transfer"]
998
+ x+=["0018,9021"] and y+=[["CS"]] and z+=["T2 Preparation"]
999
+ x+=["0018,9022"] and y+=[["CS"]] and z+=["Blood Signal Nulling"]
1000
+ x+=["0018,9024"] and y+=[["CS"]] and z+=["Saturation Recovery"]
1001
+ x+=["0018,9025"] and y+=[["CS"]] and z+=["Spectrally Selected Suppression"]
1002
+ x+=["0018,9026"] and y+=[["CS"]] and z+=["Spectrally Selected Excitation"]
1003
+ x+=["0018,9027"] and y+=[["CS"]] and z+=["Spatial Pre-saturation"]
1004
+ x+=["0018,9028"] and y+=[["CS"]] and z+=["Tagging"]
1005
+ x+=["0018,9029"] and y+=[["CS"]] and z+=["Oversampling Phase"]
1006
+ x+=["0018,9030"] and y+=[["FD"]] and z+=["Tag Spacing First Dimension"]
1007
+ x+=["0018,9032"] and y+=[["CS"]] and z+=["Geometry of k-Space Traversal"]
1008
+ x+=["0018,9033"] and y+=[["CS"]] and z+=["Segmented k-Space Traversal"]
1009
+ x+=["0018,9034"] and y+=[["CS"]] and z+=["Rectilinear Phase Encode Reordering"]
1010
+ x+=["0018,9035"] and y+=[["FD"]] and z+=["Tag Thickness"]
1011
+ x+=["0018,9036"] and y+=[["CS"]] and z+=["Partial Fourier Direction"]
1012
+ x+=["0018,9037"] and y+=[["CS"]] and z+=["Cardiac Synchronization Technique"]
1013
+ x+=["0018,9041"] and y+=[["LO"]] and z+=["Receive Coil Manufacturer Name"]
1014
+ x+=["0018,9042"] and y+=[["SQ"]] and z+=["MR Receive Coil Sequence"]
1015
+ x+=["0018,9043"] and y+=[["CS"]] and z+=["Receive Coil Type"]
1016
+ x+=["0018,9044"] and y+=[["CS"]] and z+=["Quadrature Receive Coil"]
1017
+ x+=["0018,9045"] and y+=[["SQ"]] and z+=["Multi-Coil Definition Sequence"]
1018
+ x+=["0018,9046"] and y+=[["LO"]] and z+=["Multi-Coil Configuration"]
1019
+ x+=["0018,9047"] and y+=[["SH"]] and z+=["Multi-Coil Element Name"]
1020
+ x+=["0018,9048"] and y+=[["CS"]] and z+=["Multi-Coil Element Used"]
1021
+ x+=["0018,9049"] and y+=[["SQ"]] and z+=["MR Transmit Coil Sequence"]
1022
+ x+=["0018,9050"] and y+=[["LO"]] and z+=["Transmit Coil Manufacturer Name"]
1023
+ x+=["0018,9051"] and y+=[["CS"]] and z+=["Transmit Coil Type"]
1024
+ x+=["0018,9052"] and y+=[["FD"]] and z+=["Spectral Width"]
1025
+ x+=["0018,9053"] and y+=[["FD"]] and z+=["Chemical Shift Reference"]
1026
+ x+=["0018,9054"] and y+=[["CS"]] and z+=["Volume Localization Technique"]
1027
+ x+=["0018,9058"] and y+=[["US"]] and z+=["MR Acquisition Frequency Encoding Steps"]
1028
+ x+=["0018,9059"] and y+=[["CS"]] and z+=["De-coupling"]
1029
+ x+=["0018,9060"] and y+=[["CS"]] and z+=["De-coupled Nucleus"]
1030
+ x+=["0018,9061"] and y+=[["FD"]] and z+=["De-coupling Frequency"]
1031
+ x+=["0018,9062"] and y+=[["CS"]] and z+=["De-coupling Method"]
1032
+ x+=["0018,9063"] and y+=[["FD"]] and z+=["De-coupling Chemical Shift Reference"]
1033
+ x+=["0018,9064"] and y+=[["CS"]] and z+=["k-space Filtering"]
1034
+ x+=["0018,9065"] and y+=[["CS"]] and z+=["Time Domain Filtering"]
1035
+ x+=["0018,9066"] and y+=[["US"]] and z+=["Number of Zero fills"]
1036
+ x+=["0018,9067"] and y+=[["CS"]] and z+=["Baseline Correction"]
1037
+ x+=["0018,9069"] and y+=[["FD"]] and z+=["Parallel Reduction Factor In-plane"]
1038
+ x+=["0018,9070"] and y+=[["FD"]] and z+=["Cardiac R-R Interval Specified"]
1039
+ x+=["0018,9073"] and y+=[["FD"]] and z+=["Acquisition Duration"]
1040
+ x+=["0018,9074"] and y+=[["DT"]] and z+=["Frame Acquisition Datetime"]
1041
+ x+=["0018,9075"] and y+=[["CS"]] and z+=["Diffusion Directionality"]
1042
+ x+=["0018,9076"] and y+=[["SQ"]] and z+=["Diffusion Gradient Direction Sequence"]
1043
+ x+=["0018,9077"] and y+=[["CS"]] and z+=["Parallel Acquisition"]
1044
+ x+=["0018,9078"] and y+=[["CS"]] and z+=["Parallel Acquisition Technique"]
1045
+ x+=["0018,9079"] and y+=[["FD"]] and z+=["Inversion Times"]
1046
+ x+=["0018,9080"] and y+=[["ST"]] and z+=["Metabolite Map Description"]
1047
+ x+=["0018,9081"] and y+=[["CS"]] and z+=["Partial Fourier"]
1048
+ x+=["0018,9082"] and y+=[["FD"]] and z+=["Effective Echo Time"]
1049
+ x+=["0018,9083"] and y+=[["SQ"]] and z+=["Metabolite Map Code Sequence"]
1050
+ x+=["0018,9084"] and y+=[["SQ"]] and z+=["Chemical Shift Sequence"]
1051
+ x+=["0018,9085"] and y+=[["CS"]] and z+=["Cardiac Signal Source"]
1052
+ x+=["0018,9087"] and y+=[["FD"]] and z+=["Diffusion b-value"]
1053
+ x+=["0018,9089"] and y+=[["FD"]] and z+=["Diffusion Gradient Orientation"]
1054
+ x+=["0018,9090"] and y+=[["FD"]] and z+=["Velocity Encoding Direction"]
1055
+ x+=["0018,9091"] and y+=[["FD"]] and z+=["Velocity Encoding Minimum Value"]
1056
+ x+=["0018,9093"] and y+=[["US"]] and z+=["Number of k-Space Trajectories"]
1057
+ x+=["0018,9094"] and y+=[["CS"]] and z+=["Coverage of k-Space"]
1058
+ x+=["0018,9095"] and y+=[["UL"]] and z+=["Spectroscopy Acquisition Phase Rows"]
1059
+ x+=["0018,9098"] and y+=[["FD"]] and z+=["Transmitter Frequency"]
1060
+ x+=["0018,9100"] and y+=[["CS"]] and z+=["Resonant Nucleus"]
1061
+ x+=["0018,9101"] and y+=[["CS"]] and z+=["Frequency Correction"]
1062
+ x+=["0018,9103"] and y+=[["SQ"]] and z+=["MR Spectroscopy FOV/Geometry Sequence"]
1063
+ x+=["0018,9104"] and y+=[["FD"]] and z+=["Slab Thickness"]
1064
+ x+=["0018,9105"] and y+=[["FD"]] and z+=["Slab Orientation"]
1065
+ x+=["0018,9106"] and y+=[["FD"]] and z+=["Mid Slab Position"]
1066
+ x+=["0018,9107"] and y+=[["SQ"]] and z+=["MR Spatial Saturation Sequence"]
1067
+ x+=["0018,9112"] and y+=[["SQ"]] and z+=["MR Timing and Related Parameters Sequence"]
1068
+ x+=["0018,9114"] and y+=[["SQ"]] and z+=["MR Echo Sequence"]
1069
+ x+=["0018,9115"] and y+=[["SQ"]] and z+=["MR Modifier Sequence"]
1070
+ x+=["0018,9117"] and y+=[["SQ"]] and z+=["MR Diffusion Sequence"]
1071
+ x+=["0018,9118"] and y+=[["SQ"]] and z+=["Cardiac Trigger Sequence"]
1072
+ x+=["0018,9119"] and y+=[["SQ"]] and z+=["MR Averages Sequence"]
1073
+ x+=["0018,9125"] and y+=[["SQ"]] and z+=["MR FOV/Geometry Sequence"]
1074
+ x+=["0018,9126"] and y+=[["SQ"]] and z+=["Volume Localization Sequence"]
1075
+ x+=["0018,9127"] and y+=[["UL"]] and z+=["Spectroscopy Acquisition Data Columns"]
1076
+ x+=["0018,9147"] and y+=[["CS"]] and z+=["Diffusion Anisotropy Type"]
1077
+ x+=["0018,9151"] and y+=[["DT"]] and z+=["Frame Reference Datetime"]
1078
+ x+=["0018,9152"] and y+=[["SQ"]] and z+=["MR Metabolite Map Sequence"]
1079
+ x+=["0018,9155"] and y+=[["FD"]] and z+=["Parallel Reduction Factor out-of-plane"]
1080
+ x+=["0018,9159"] and y+=[["UL"]] and z+=["Spectroscopy Acquisition Out-of-plane Phase Steps"]
1081
+ x+=["0018,9166"] and y+=[["CS"]] and z+=["Bulk Motion Status"]
1082
+ x+=["0018,9168"] and y+=[["FD"]] and z+=["Parallel Reduction Factor Second In-plane"]
1083
+ x+=["0018,9169"] and y+=[["CS"]] and z+=["Cardiac Beat Rejection Technique"]
1084
+ x+=["0018,9170"] and y+=[["CS"]] and z+=["Respiratory Motion Compensation Technique"]
1085
+ x+=["0018,9171"] and y+=[["CS"]] and z+=["Respiratory Signal Source"]
1086
+ x+=["0018,9172"] and y+=[["CS"]] and z+=["Bulk Motion Compensation Technique"]
1087
+ x+=["0018,9173"] and y+=[["CS"]] and z+=["Bulk Motion Signal Source"]
1088
+ x+=["0018,9174"] and y+=[["CS"]] and z+=["Applicable Safety Standard Agency"]
1089
+ x+=["0018,9175"] and y+=[["LO"]] and z+=["Applicable Safety Standard Description"]
1090
+ x+=["0018,9176"] and y+=[["SQ"]] and z+=["Operating Mode Sequence"]
1091
+ x+=["0018,9177"] and y+=[["CS"]] and z+=["Operating Mode Type"]
1092
+ x+=["0018,9178"] and y+=[["CS"]] and z+=["Operating Mode"]
1093
+ x+=["0018,9179"] and y+=[["CS"]] and z+=["Specific Absorption Rate Definition"]
1094
+ x+=["0018,9180"] and y+=[["CS"]] and z+=["Gradient Output Type"]
1095
+ x+=["0018,9181"] and y+=[["FD"]] and z+=["Specific Absorption Rate Value"]
1096
+ x+=["0018,9182"] and y+=[["FD"]] and z+=["Gradient Output"]
1097
+ x+=["0018,9183"] and y+=[["CS"]] and z+=["Flow Compensation Direction"]
1098
+ x+=["0018,9184"] and y+=[["FD"]] and z+=["Tagging Delay"]
1099
+ x+=["0018,9185"] and y+=[["ST"]] and z+=["Respiratory Motion Compensation Technique Description"]
1100
+ x+=["0018,9186"] and y+=[["SH"]] and z+=["Respiratory Signal Source ID"]
1101
+ x+=["0018,9195"] and y+=[["FD"]] and z+=["Chemical Shifts Minimum Integration Limit in Hz"] # RET
1102
+ x+=["0018,9196"] and y+=[["FD"]] and z+=["Chemical Shifts Maximum Integration Limit in Hz"] # RET
1103
+ x+=["0018,9197"] and y+=[["SQ"]] and z+=["MR Velocity Encoding Sequence"]
1104
+ x+=["0018,9198"] and y+=[["CS"]] and z+=["First Order Phase Correction"]
1105
+ x+=["0018,9199"] and y+=[["CS"]] and z+=["Water Referenced Phase Correction"]
1106
+ x+=["0018,9200"] and y+=[["CS"]] and z+=["MR Spectroscopy Acquisition Type"]
1107
+ x+=["0018,9214"] and y+=[["CS"]] and z+=["Respiratory Cycle Position"]
1108
+ x+=["0018,9217"] and y+=[["FD"]] and z+=["Velocity Encoding Maximum Value"]
1109
+ x+=["0018,9218"] and y+=[["FD"]] and z+=["Tag Spacing Second Dimension"]
1110
+ x+=["0018,9219"] and y+=[["SS"]] and z+=["Tag Angle Second Axis"]
1111
+ x+=["0018,9220"] and y+=[["FD"]] and z+=["Frame Acquisition Duration"]
1112
+ x+=["0018,9226"] and y+=[["SQ"]] and z+=["MR Image Frame Type Sequence"]
1113
+ x+=["0018,9227"] and y+=[["SQ"]] and z+=["MR Spectroscopy Frame Type Sequence"]
1114
+ x+=["0018,9231"] and y+=[["US"]] and z+=["MR Acquisition Phase Encoding Steps in-plane"]
1115
+ x+=["0018,9232"] and y+=[["US"]] and z+=["MR Acquisition Phase Encoding Steps out-of-plane"]
1116
+ x+=["0018,9234"] and y+=[["UL"]] and z+=["Spectroscopy Acquisition Phase Columns"]
1117
+ x+=["0018,9236"] and y+=[["CS"]] and z+=["Cardiac Cycle Position"]
1118
+ x+=["0018,9239"] and y+=[["SQ"]] and z+=["Specific Absorption Rate Sequence"]
1119
+ x+=["0018,9240"] and y+=[["US"]] and z+=["RF Echo Train Length"]
1120
+ x+=["0018,9241"] and y+=[["US"]] and z+=["Gradient Echo Train Length"]
1121
+ x+=["0018,9295"] and y+=[["FD"]] and z+=["Chemical Shifts Minimum Integration Limit in ppm"]
1122
+ x+=["0018,9296"] and y+=[["FD"]] and z+=["Chemical Shifts Maximum Integration Limit in ppm"]
1123
+ x+=["0018,9301"] and y+=[["SQ"]] and z+=["CT Acquisition Type Sequence"]
1124
+ x+=["0018,9302"] and y+=[["CS"]] and z+=["Acquisition Type"]
1125
+ x+=["0018,9303"] and y+=[["FD"]] and z+=["Tube Angle"]
1126
+ x+=["0018,9304"] and y+=[["SQ"]] and z+=["CT Acquisition Details Sequence"]
1127
+ x+=["0018,9305"] and y+=[["FD"]] and z+=["Revolution Time"]
1128
+ x+=["0018,9306"] and y+=[["FD"]] and z+=["Single Collimation Width"]
1129
+ x+=["0018,9307"] and y+=[["FD"]] and z+=["Total Collimation Width"]
1130
+ x+=["0018,9308"] and y+=[["SQ"]] and z+=["CT Table Dynamics Sequence"]
1131
+ x+=["0018,9309"] and y+=[["FD"]] and z+=["Table Speed"]
1132
+ x+=["0018,9310"] and y+=[["FD"]] and z+=["Table Feed per Rotation"]
1133
+ x+=["0018,9311"] and y+=[["FD"]] and z+=["Spiral Pitch Factor"]
1134
+ x+=["0018,9312"] and y+=[["SQ"]] and z+=["CT Geometry Sequence"]
1135
+ x+=["0018,9313"] and y+=[["FD"]] and z+=["Data Collection Center (Patient)"]
1136
+ x+=["0018,9314"] and y+=[["SQ"]] and z+=["CT Reconstruction Sequence"]
1137
+ x+=["0018,9315"] and y+=[["CS"]] and z+=["Reconstruction Algorithm"]
1138
+ x+=["0018,9316"] and y+=[["CS"]] and z+=["Convolution Kernel Group"]
1139
+ x+=["0018,9317"] and y+=[["FD"]] and z+=["Reconstruction Field of View"]
1140
+ x+=["0018,9318"] and y+=[["FD"]] and z+=["Reconstruction Target Center (Patient)"]
1141
+ x+=["0018,9319"] and y+=[["FD"]] and z+=["Reconstruction Angle"]
1142
+ x+=["0018,9320"] and y+=[["SH"]] and z+=["Image Filter"]
1143
+ x+=["0018,9321"] and y+=[["SQ"]] and z+=["CT Exposure Sequence"]
1144
+ x+=["0018,9322"] and y+=[["FD"]] and z+=["Reconstruction Pixel Spacing"]
1145
+ x+=["0018,9323"] and y+=[["CS"]] and z+=["Exposure Modulation Type"]
1146
+ x+=["0018,9324"] and y+=[["FD"]] and z+=["Estimated Dose Saving"]
1147
+ x+=["0018,9325"] and y+=[["SQ"]] and z+=["CT X-ray Details Sequence"]
1148
+ x+=["0018,9326"] and y+=[["SQ"]] and z+=["CT Position Sequence"]
1149
+ x+=["0018,9327"] and y+=[["FD"]] and z+=["Table Position"]
1150
+ x+=["0018,9328"] and y+=[["FD"]] and z+=["Exposure Time in ms"]
1151
+ x+=["0018,9329"] and y+=[["SQ"]] and z+=["CT Image Frame Type Sequence"]
1152
+ x+=["0018,9330"] and y+=[["FD"]] and z+=["X-Ray Tube Current in mA"]
1153
+ x+=["0018,9332"] and y+=[["FD"]] and z+=["Exposure in mAs"]
1154
+ x+=["0018,9333"] and y+=[["CS"]] and z+=["Constant Volume Flag"]
1155
+ x+=["0018,9334"] and y+=[["CS"]] and z+=["Fluoroscopy Flag"]
1156
+ x+=["0018,9335"] and y+=[["FD"]] and z+=["Distance Source to Data Collection Center"]
1157
+ x+=["0018,9337"] and y+=[["US"]] and z+=["Contrast/Bolus Agent Number"]
1158
+ x+=["0018,9338"] and y+=[["SQ"]] and z+=["Contrast/Bolus Ingredient Code Sequence"]
1159
+ x+=["0018,9340"] and y+=[["SQ"]] and z+=["Contrast Administration Profile Sequence"]
1160
+ x+=["0018,9341"] and y+=[["SQ"]] and z+=["Contrast/Bolus Usage Sequence"]
1161
+ x+=["0018,9342"] and y+=[["CS"]] and z+=["Contrast/Bolus Agent Administered"]
1162
+ x+=["0018,9343"] and y+=[["CS"]] and z+=["Contrast/Bolus Agent Detected"]
1163
+ x+=["0018,9344"] and y+=[["CS"]] and z+=["Contrast/Bolus Agent Phase"]
1164
+ x+=["0018,9345"] and y+=[["FD"]] and z+=["CTDIvol"]
1165
+ x+=["0018,9401"] and y+=[["SQ"]] and z+=["Projection Pixel Calibration Sequence"]
1166
+ x+=["0018,9402"] and y+=[["FL"]] and z+=["Distance Source to Isocenter"]
1167
+ x+=["0018,9403"] and y+=[["FL"]] and z+=["Distance Object to Table Top"]
1168
+ x+=["0018,9404"] and y+=[["FL"]] and z+=["Object Pixel Spacing in Center of Beam"]
1169
+ x+=["0018,9405"] and y+=[["SQ"]] and z+=["Positioner Position Sequence"]
1170
+ x+=["0018,9406"] and y+=[["SQ"]] and z+=["Table Position Sequence"]
1171
+ x+=["0018,9407"] and y+=[["SQ"]] and z+=["Collimator Shape Sequence"]
1172
+ x+=["0018,9412"] and y+=[["SQ"]] and z+=["XA/XRF Frame Characteristics Sequence"]
1173
+ x+=["0018,9417"] and y+=[["SQ"]] and z+=["Frame Acquisition Sequence"]
1174
+ x+=["0018,9420"] and y+=[["CS"]] and z+=["X-Ray Receptor Type"]
1175
+ x+=["0018,9423"] and y+=[["LO"]] and z+=["Acquisition Protocol Name"]
1176
+ x+=["0018,9424"] and y+=[["LT"]] and z+=["Acquisition Protocol Description"]
1177
+ x+=["0018,9425"] and y+=[["CS"]] and z+=["Contrast/Bolus Ingredient Opaque"]
1178
+ x+=["0018,9426"] and y+=[["FL"]] and z+=["Distance Receptor Plane to Detector Housing"]
1179
+ x+=["0018,9427"] and y+=[["CS"]] and z+=["Intensifier Active Shape"]
1180
+ x+=["0018,9428"] and y+=[["FL"]] and z+=["Intensifier Active Dimension(s)"]
1181
+ x+=["0018,9429"] and y+=[["FL"]] and z+=["Physical Detector Size"]
1182
+ x+=["0018,9430"] and y+=[["US"]] and z+=["Position of Isocenter Projection"]
1183
+ x+=["0018,9432"] and y+=[["SQ"]] and z+=["Field of View Sequence"]
1184
+ x+=["0018,9433"] and y+=[["LO"]] and z+=["Field of View Description"]
1185
+ x+=["0018,9434"] and y+=[["SQ"]] and z+=["Exposure Control Sensing Regions Sequence"]
1186
+ x+=["0018,9435"] and y+=[["CS"]] and z+=["Exposure Control Sensing Region Shape"]
1187
+ x+=["0018,9436"] and y+=[["SS"]] and z+=["Exposure Control Sensing Region Left Vertical Edge"]
1188
+ x+=["0018,9437"] and y+=[["SS"]] and z+=["Exposure Control Sensing Region Right Vertical Edge"]
1189
+ x+=["0018,9438"] and y+=[["SS"]] and z+=["Exposure Control Sensing Region Upper Horizontal Edge"]
1190
+ x+=["0018,9439"] and y+=[["SS"]] and z+=["Exposure Control Sensing Region Lower Horizontal Edge"]
1191
+ x+=["0018,9440"] and y+=[["SS"]] and z+=["Center of Circular Exposure Control Sensing Region"]
1192
+ x+=["0018,9441"] and y+=[["US"]] and z+=["Radius of Circular Exposure Control Sensing Region"]
1193
+ x+=["0018,9442"] and y+=[["SS"]] and z+=["Vertices of the Polygonal Exposure Control Sensing Region"]
1194
+ x+=["0018,9447"] and y+=[["FL"]] and z+=["Column Angulation (Patient)"]
1195
+ x+=["0018,9449"] and y+=[["FL"]] and z+=["Beam Angle"]
1196
+ x+=["0018,9451"] and y+=[["SQ"]] and z+=["Frame Detector Parameters Sequence"]
1197
+ x+=["0018,9452"] and y+=[["FL"]] and z+=["Calculated Anatomy Thickness"]
1198
+ x+=["0018,9455"] and y+=[["SQ"]] and z+=["Calibration Sequence"]
1199
+ x+=["0018,9456"] and y+=[["SQ"]] and z+=["Object Thickness Sequence"]
1200
+ x+=["0018,9457"] and y+=[["CS"]] and z+=["Plane Identification"]
1201
+ x+=["0018,9461"] and y+=[["FL"]] and z+=["Field of View Dimension(s) in Float"]
1202
+ x+=["0018,9462"] and y+=[["SQ"]] and z+=["Isocenter Reference System Sequence"]
1203
+ x+=["0018,9463"] and y+=[["FL"]] and z+=["Positioner Isocenter Primary Angle"]
1204
+ x+=["0018,9464"] and y+=[["FL"]] and z+=["Positioner Isocenter Secondary Angle"]
1205
+ x+=["0018,9465"] and y+=[["FL"]] and z+=["Positioner Isocenter Detector Rotation Angle"]
1206
+ x+=["0018,9466"] and y+=[["FL"]] and z+=["Table X Position to Isocenter"]
1207
+ x+=["0018,9467"] and y+=[["FL"]] and z+=["Table Y Position to Isocenter"]
1208
+ x+=["0018,9468"] and y+=[["FL"]] and z+=["Table Z Position to Isocenter"]
1209
+ x+=["0018,9469"] and y+=[["FL"]] and z+=["Table Horizontal Rotation Angle"]
1210
+ x+=["0018,9470"] and y+=[["FL"]] and z+=["Table Head Tilt Angle"]
1211
+ x+=["0018,9471"] and y+=[["FL"]] and z+=["Table Cradle Tilt Angle"]
1212
+ x+=["0018,9472"] and y+=[["SQ"]] and z+=["Frame Display Shutter Sequence"]
1213
+ x+=["0018,9473"] and y+=[["FL"]] and z+=["Acquired Image Area Dose Product"]
1214
+ x+=["0018,9474"] and y+=[["CS"]] and z+=["C-arm Positioner Tabletop Relationship"]
1215
+ x+=["0018,9476"] and y+=[["SQ"]] and z+=["X-Ray Geometry Sequence"]
1216
+ x+=["0018,9477"] and y+=[["SQ"]] and z+=["Irradiation Event Identification Sequence"]
1217
+ x+=["0018,A001"] and y+=[["SQ"]] and z+=["Contributing Equipment Sequence"]
1218
+ x+=["0018,A002"] and y+=[["DT"]] and z+=["Contribution Date Time"]
1219
+ x+=["0018,A003"] and y+=[["ST"]] and z+=["Contribution Description"]
1220
+ # Group 0020
1221
+ x+=["0020,000D"] and y+=[["UI"]] and z+=["Study Instance UID"]
1222
+ x+=["0020,000E"] and y+=[["UI"]] and z+=["Series Instance UID"]
1223
+ x+=["0020,0010"] and y+=[["SH"]] and z+=["Study ID"]
1224
+ x+=["0020,0011"] and y+=[["IS"]] and z+=["Series Number"]
1225
+ x+=["0020,0012"] and y+=[["IS"]] and z+=["Acquisition Number"]
1226
+ x+=["0020,0013"] and y+=[["IS"]] and z+=["Instance Number"]
1227
+ x+=["0020,0014"] and y+=[["IS"]] and z+=["Isotope Number"] # RET
1228
+ x+=["0020,0015"] and y+=[["IS"]] and z+=["Phase Number"] # RET
1229
+ x+=["0020,0016"] and y+=[["IS"]] and z+=["Interval Number"] # RET
1230
+ x+=["0020,0017"] and y+=[["IS"]] and z+=["Time Slot Number"] # RET
1231
+ x+=["0020,0018"] and y+=[["IS"]] and z+=["Angle Number"] # RET
1232
+ x+=["0020,0019"] and y+=[["IS"]] and z+=["Item Number"]
1233
+ x+=["0020,0020"] and y+=[["CS"]] and z+=["Patient Orientation"]
1234
+ x+=["0020,0022"] and y+=[["IS"]] and z+=["Overlay Number"] # RET
1235
+ x+=["0020,0024"] and y+=[["IS"]] and z+=["Curve Number"] # RET
1236
+ x+=["0020,0026"] and y+=[["IS"]] and z+=["Lookup Table Number"] # RET
1237
+ x+=["0020,0030"] and y+=[["DS"]] and z+=["Image Position"] # RET
1238
+ x+=["0020,0032"] and y+=[["DS"]] and z+=["Image Position (Patient)"]
1239
+ x+=["0020,0035"] and y+=[["DS"]] and z+=["Image Orientation"] # RET
1240
+ x+=["0020,0037"] and y+=[["DS"]] and z+=["Image Orientation (Patient)"]
1241
+ x+=["0020,0050"] and y+=[["DS"]] and z+=["Location"] # RET
1242
+ x+=["0020,0052"] and y+=[["UI"]] and z+=["Frame of Reference UID"]
1243
+ x+=["0020,0060"] and y+=[["CS"]] and z+=["Laterality"]
1244
+ x+=["0020,0062"] and y+=[["CS"]] and z+=["Image Laterality"]
1245
+ x+=["0020,0070"] and y+=[["LO"]] and z+=["Image Geometry Type"] # RET
1246
+ x+=["0020,0080"] and y+=[["CS"]] and z+=["Masking Image"] # RET
1247
+ x+=["0020,0100"] and y+=[["IS"]] and z+=["Temporal Position Identifier"]
1248
+ x+=["0020,0105"] and y+=[["IS"]] and z+=["Number of Temporal Positions"]
1249
+ x+=["0020,0110"] and y+=[["DS"]] and z+=["Temporal Resolution"]
1250
+ x+=["0020,0200"] and y+=[["UI"]] and z+=["Synchronization Frame of Reference UID"]
1251
+ x+=["0020,1000"] and y+=[["IS"]] and z+=["Series in Study"] # RET
1252
+ x+=["0020,1001"] and y+=[["IS"]] and z+=["Acquisitions in Series"] # RET
1253
+ x+=["0020,1002"] and y+=[["IS"]] and z+=["Images in Acquisition"]
1254
+ x+=["0020,1003"] and y+=[["IS"]] and z+=["Images in Series"] # RET
1255
+ x+=["0020,1004"] and y+=[["IS"]] and z+=["Acquisitions in Study"] # RET
1256
+ x+=["0020,1005"] and y+=[["IS"]] and z+=["Images in Study"] # RET
1257
+ x+=["0020,1020"] and y+=[["CS"]] and z+=["Reference"] # RET
1258
+ x+=["0020,1040"] and y+=[["LO"]] and z+=["Position Reference Indicator"]
1259
+ x+=["0020,1041"] and y+=[["DS"]] and z+=["Slice Location"]
1260
+ x+=["0020,1070"] and y+=[["IS"]] and z+=["Other Study Numbers"] # RET
1261
+ x+=["0020,1200"] and y+=[["IS"]] and z+=["Number of Patient Related Studies"]
1262
+ x+=["0020,1202"] and y+=[["IS"]] and z+=["Number of Patient Related Series"]
1263
+ x+=["0020,1204"] and y+=[["IS"]] and z+=["Number of Patient Related Instances"]
1264
+ x+=["0020,1206"] and y+=[["IS"]] and z+=["Number of Study Related Series"]
1265
+ x+=["0020,1208"] and y+=[["IS"]] and z+=["Number of Study Related Instances"]
1266
+ x+=["0020,1209"] and y+=[["IS"]] and z+=["Number of Series Related Instances"]
1267
+ x+=["0020,31xx"] and y+=[["CS"]] and z+=["Source Image IDs"] # RET
1268
+ x+=["0020,3401"] and y+=[["CS"]] and z+=["Modifying Device ID"] # RET
1269
+ x+=["0020,3402"] and y+=[["CS"]] and z+=["Modified Image ID"] # RET
1270
+ x+=["0020,3403"] and y+=[["DA"]] and z+=["Modified Image Date"] # RET
1271
+ x+=["0020,3404"] and y+=[["LO"]] and z+=["Modifying Device Manufacturer"] # RET
1272
+ x+=["0020,3405"] and y+=[["TM"]] and z+=["Modified Image Time"] # RET
1273
+ x+=["0020,3406"] and y+=[["LO"]] and z+=["Modified Image Description"] # RET
1274
+ x+=["0020,4000"] and y+=[["LT"]] and z+=["Image Comments"]
1275
+ x+=["0020,5000"] and y+=[["AT"]] and z+=["Original Image Identification"] # RET
1276
+ x+=["0020,5002"] and y+=[["CS"]] and z+=["Original Image Identification Nomenclature"] # RET
1277
+ x+=["0020,9056"] and y+=[["SH"]] and z+=["Stack ID"]
1278
+ x+=["0020,9057"] and y+=[["UL"]] and z+=["In-Stack Position Number"]
1279
+ x+=["0020,9071"] and y+=[["SQ"]] and z+=["Frame Anatomy Sequence"]
1280
+ x+=["0020,9072"] and y+=[["CS"]] and z+=["Frame Laterality"]
1281
+ x+=["0020,9111"] and y+=[["SQ"]] and z+=["Frame Content Sequence"]
1282
+ x+=["0020,9113"] and y+=[["SQ"]] and z+=["Plane Position Sequence"]
1283
+ x+=["0020,9116"] and y+=[["SQ"]] and z+=["Plane Orientation Sequence"]
1284
+ x+=["0020,9128"] and y+=[["UL"]] and z+=["Temporal Position Index"]
1285
+ x+=["0020,9153"] and y+=[["FD"]] and z+=["Cardiac Trigger Delay Time"]
1286
+ x+=["0020,9156"] and y+=[["US"]] and z+=["Frame Acquisition Number"]
1287
+ x+=["0020,9157"] and y+=[["UL"]] and z+=["Dimension Index Values"]
1288
+ x+=["0020,9158"] and y+=[["LT"]] and z+=["Frame Comments"]
1289
+ x+=["0020,9161"] and y+=[["UI"]] and z+=["Concatenation UID"]
1290
+ x+=["0020,9162"] and y+=[["US"]] and z+=["In-concatenation Number"]
1291
+ x+=["0020,9163"] and y+=[["US"]] and z+=["In-concatenation Total Number"]
1292
+ x+=["0020,9164"] and y+=[["UI"]] and z+=["Dimension Organization UID"]
1293
+ x+=["0020,9165"] and y+=[["AT"]] and z+=["Dimension Index Pointer"]
1294
+ x+=["0020,9167"] and y+=[["AT"]] and z+=["Functional Group Pointer"]
1295
+ x+=["0020,9213"] and y+=[["LO"]] and z+=["Dimension Index Private Creator"]
1296
+ x+=["0020,9221"] and y+=[["SQ"]] and z+=["Dimension Organization Sequence"]
1297
+ x+=["0020,9222"] and y+=[["SQ"]] and z+=["Dimension Index Sequence"]
1298
+ x+=["0020,9228"] and y+=[["UL"]] and z+=["Concatenation Frame Offset Number"]
1299
+ x+=["0020,9238"] and y+=[["LO"]] and z+=["Functional Group Private Creator"]
1300
+ x+=["0020,9251"] and y+=[["FD"]] and z+=["R - R Interval Time Measured"]
1301
+ x+=["0020,9253"] and y+=[["SQ"]] and z+=["Respiratory Trigger Sequence"]
1302
+ x+=["0020,9254"] and y+=[["FD"]] and z+=["Respiratory Interval Time"]
1303
+ x+=["0020,9255"] and y+=[["FD"]] and z+=["Respiratory Trigger Delay Time"]
1304
+ x+=["0020,9256"] and y+=[["FD"]] and z+=["Respiratory Trigger Delay Threshold"]
1305
+ x+=["0020,9421"] and y+=[["LO"]] and z+=["Dimension Description Label"]
1306
+ x+=["0020,9450"] and y+=[["SQ"]] and z+=["Patient Orientation in Frame Sequence"]
1307
+ x+=["0020,9453"] and y+=[["LO"]] and z+=["Frame Label"]
1308
+ # Group 0022
1309
+ x+=["0022,0001"] and y+=[["US"]] and z+=["Light Path Filter Pass-Through Wavelength"]
1310
+ x+=["0022,0002"] and y+=[["US"]] and z+=["Light Path Filter Pass Band"]
1311
+ x+=["0022,0003"] and y+=[["US"]] and z+=["Image Path Filter Pass-Through Wavelength"]
1312
+ x+=["0022,0004"] and y+=[["US"]] and z+=["Image Path Filter Pass Band"]
1313
+ x+=["0022,0005"] and y+=[["CS"]] and z+=["Patient Eye Movement Commanded"]
1314
+ x+=["0022,0006"] and y+=[["SQ"]] and z+=["Patient Eye Movement Command Code Sequence"]
1315
+ x+=["0022,0007"] and y+=[["FL"]] and z+=["Spherical Lens Power"]
1316
+ x+=["0022,0008"] and y+=[["FL"]] and z+=["Cylinder Lens Power"]
1317
+ x+=["0022,0009"] and y+=[["FL"]] and z+=["Cylinder Axis"]
1318
+ x+=["0022,000A"] and y+=[["FL"]] and z+=["Emmetropic Magnification"]
1319
+ x+=["0022,000B"] and y+=[["FL"]] and z+=["Intra Ocular Pressure"]
1320
+ x+=["0022,000C"] and y+=[["FL"]] and z+=["Horizontal Field of View"]
1321
+ x+=["0022,000D"] and y+=[["CS"]] and z+=["Pupil Dilated"]
1322
+ x+=["0022,000E"] and y+=[["FL"]] and z+=["Degree of Dilation"]
1323
+ x+=["0022,0010"] and y+=[["FL"]] and z+=["Stereo Baseline Angle"]
1324
+ x+=["0022,0011"] and y+=[["FL"]] and z+=["Stereo Baseline Displacement"]
1325
+ x+=["0022,0012"] and y+=[["FL"]] and z+=["Stereo Horizontal Pixel Offset"]
1326
+ x+=["0022,0013"] and y+=[["FL"]] and z+=["Stereo Vertical Pixel Offset"]
1327
+ x+=["0022,0014"] and y+=[["FL"]] and z+=["Stereo Rotation"]
1328
+ x+=["0022,0015"] and y+=[["SQ"]] and z+=["Acquisition Device Type Code Sequence"]
1329
+ x+=["0022,0016"] and y+=[["SQ"]] and z+=["Illumination Type Code Sequence"]
1330
+ x+=["0022,0017"] and y+=[["SQ"]] and z+=["Light Path Filter Type Stack Code Sequence"]
1331
+ x+=["0022,0018"] and y+=[["SQ"]] and z+=["Image Path Filter Type Stack Code Sequence"]
1332
+ x+=["0022,0019"] and y+=[["SQ"]] and z+=["Lenses Code Sequence"]
1333
+ x+=["0022,001A"] and y+=[["SQ"]] and z+=["Channel Description Code Sequence"]
1334
+ x+=["0022,001B"] and y+=[["SQ"]] and z+=["Refractive State Sequence"]
1335
+ x+=["0022,001C"] and y+=[["SQ"]] and z+=["Mydriatic Agent Code Sequence"]
1336
+ x+=["0022,001D"] and y+=[["SQ"]] and z+=["Relative Image Position Code Sequence"]
1337
+ x+=["0022,0020"] and y+=[["SQ"]] and z+=["Stereo Pairs Sequence"]
1338
+ x+=["0022,0021"] and y+=[["SQ"]] and z+=["Left Image Sequence"]
1339
+ x+=["0022,0022"] and y+=[["SQ"]] and z+=["Right Image Sequence"]
1340
+ # Group 0028
1341
+ x+=["0028,0002"] and y+=[["US"]] and z+=["Samples per Pixel"]
1342
+ x+=["0028,0003"] and y+=[["US"]] and z+=["Samples per Pixel Used"]
1343
+ x+=["0028,0004"] and y+=[["CS"]] and z+=["Photometric Interpretation"]
1344
+ x+=["0028,0005"] and y+=[["US"]] and z+=["Image Dimensions"] # RET
1345
+ x+=["0028,0006"] and y+=[["US"]] and z+=["Planar Configuration"]
1346
+ x+=["0028,0008"] and y+=[["IS"]] and z+=["Number of Frames"]
1347
+ x+=["0028,0009"] and y+=[["AT"]] and z+=["Frame Increment Pointer"]
1348
+ x+=["0028,000A"] and y+=[["AT"]] and z+=["Frame Dimension Pointer"]
1349
+ x+=["0028,0010"] and y+=[["US"]] and z+=["Rows"]
1350
+ x+=["0028,0011"] and y+=[["US"]] and z+=["Columns"]
1351
+ x+=["0028,0012"] and y+=[["US"]] and z+=["Planes"]
1352
+ x+=["0028,0014"] and y+=[["US"]] and z+=["Ultrasound Color Data Present"]
1353
+ x+=["0028,0030"] and y+=[["DS"]] and z+=["Pixel Spacing"]
1354
+ x+=["0028,0031"] and y+=[["DS"]] and z+=["Zoom Factor"]
1355
+ x+=["0028,0032"] and y+=[["DS"]] and z+=["Zoom Center"]
1356
+ x+=["0028,0034"] and y+=[["IS"]] and z+=["Pixel Aspect Ratio"]
1357
+ x+=["0028,0040"] and y+=[["CS"]] and z+=["Image Format"] # RET
1358
+ x+=["0028,0050"] and y+=[["LO"]] and z+=["Manipulated Image"] # RET
1359
+ x+=["0028,0051"] and y+=[["CS"]] and z+=["Corrected Image"]
1360
+ x+=["0028,0060"] and y+=[["CS"]] and z+=["Compression Code"] # RET
1361
+ x+=["0028,0100"] and y+=[["US"]] and z+=["Bits Allocated"]
1362
+ x+=["0028,0101"] and y+=[["US"]] and z+=["Bits Stored"]
1363
+ x+=["0028,0102"] and y+=[["US"]] and z+=["High Bit"]
1364
+ x+=["0028,0103"] and y+=[["US"]] and z+=["Pixel Representation"]
1365
+ x+=["0028,0104"] and y+=[["US","SS"]] and z+=["Smallest Valid Pixel Value"] # RET
1366
+ x+=["0028,0105"] and y+=[["US","SS"]] and z+=["Largest Valid Pixel Value"] # RET
1367
+ x+=["0028,0106"] and y+=[["US","SS"]] and z+=["Smallest Image Pixel Value"]
1368
+ x+=["0028,0107"] and y+=[["US","SS"]] and z+=["Largest Image Pixel Value"]
1369
+ x+=["0028,0108"] and y+=[["US","SS"]] and z+=["Smallest Pixel Value in Series"]
1370
+ x+=["0028,0109"] and y+=[["US","SS"]] and z+=["Largest Pixel Value in Series"]
1371
+ x+=["0028,0110"] and y+=[["US","SS"]] and z+=["Smallest Image Pixel Value in Plane"]
1372
+ x+=["0028,0111"] and y+=[["US","SS"]] and z+=["Largest Image Pixel Value in Plane"]
1373
+ x+=["0028,0120"] and y+=[["US","SS"]] and z+=["Pixel Padding Value"]
1374
+ x+=["0028,0200"] and y+=[["US"]] and z+=["Image Location"] # RET
1375
+ x+=["0028,0300"] and y+=[["CS"]] and z+=["Quality Control Image"]
1376
+ x+=["0028,0301"] and y+=[["CS"]] and z+=["Burned In Annotation"]
1377
+ x+=["0028,0402"] and y+=[["CS"]] and z+=["Pixel Spacing Calibration Type"]
1378
+ x+=["0028,0404"] and y+=[["LO"]] and z+=["Pixel Spacing Calibration Description"]
1379
+ x+=["0028,1040"] and y+=[["CS"]] and z+=["Pixel Intensity Relationship"]
1380
+ x+=["0028,1041"] and y+=[["SS"]] and z+=["Pixel Intensity Relationship Sign"]
1381
+ x+=["0028,1050"] and y+=[["DS"]] and z+=["Window Center"]
1382
+ x+=["0028,1051"] and y+=[["DS"]] and z+=["Window Width"]
1383
+ x+=["0028,1052"] and y+=[["DS"]] and z+=["Rescale Intercept"]
1384
+ x+=["0028,1053"] and y+=[["DS"]] and z+=["Rescale Slope"]
1385
+ x+=["0028,1054"] and y+=[["LO"]] and z+=["Rescale Type"]
1386
+ x+=["0028,1055"] and y+=[["LO"]] and z+=["Window Center & Width Explanation"]
1387
+ x+=["0028,1056"] and y+=[["CS"]] and z+=["VOI LUT Function"]
1388
+ x+=["0028,1080"] and y+=[["CS"]] and z+=["Gray Scale"] # RET
1389
+ x+=["0028,1090"] and y+=[["CS"]] and z+=["Recommended Viewing Mode"]
1390
+ x+=["0028,1100"] and y+=[["US","SS"]] and z+=["Gray Lookup Table Descriptor"] # RET
1391
+ x+=["0028,1101"] and y+=[["US","SS"]] and z+=["Red Palette Color Lookup Table Descriptor"]
1392
+ x+=["0028,1102"] and y+=[["US","SS"]] and z+=["Green Palette Color Lookup Table Descriptor"]
1393
+ x+=["0028,1103"] and y+=[["US","SS"]] and z+=["Blue Palette Color Lookup Table Descriptor"]
1394
+ x+=["0028,1199"] and y+=[["UI"]] and z+=["Palette Color Lookup Table UID"]
1395
+ x+=["0028,1200"] and y+=[["US","SS","OW"]] and z+=["Gray Lookup Table Data"] # RET
1396
+ x+=["0028,1201"] and y+=[["OW"]] and z+=["Red Palette Color Lookup Table Data"]
1397
+ x+=["0028,1202"] and y+=[["OW"]] and z+=["Green Palette Color Lookup Table Data"]
1398
+ x+=["0028,1203"] and y+=[["OW"]] and z+=["Blue Palette Color Lookup Table Data"]
1399
+ x+=["0028,1221"] and y+=[["OW"]] and z+=["Segmented Red Palette Color Lookup Table Data"]
1400
+ x+=["0028,1222"] and y+=[["OW"]] and z+=["Segmented Green Palette Color Lookup Table Data"]
1401
+ x+=["0028,1223"] and y+=[["OW"]] and z+=["Segmented Blue Palette Color Lookup Table Data"]
1402
+ x+=["0028,1300"] and y+=[["CS"]] and z+=["Implant Present"]
1403
+ x+=["0028,1350"] and y+=[["CS"]] and z+=["Partial View"]
1404
+ x+=["0028,1351"] and y+=[["ST"]] and z+=["Partial View Description"]
1405
+ x+=["0028,1352"] and y+=[["SQ"]] and z+=["Partial View Code Sequence"]
1406
+ x+=["0028,135A"] and y+=[["CS"]] and z+=["Spatial Locations Preserved"]
1407
+ x+=["0028,2000"] and y+=[["OB"]] and z+=["ICC Profile"]
1408
+ x+=["0028,2110"] and y+=[["CS"]] and z+=["Lossy Image Compression"]
1409
+ x+=["0028,2112"] and y+=[["DS"]] and z+=["Lossy Image Compression Ratio"]
1410
+ x+=["0028,2114"] and y+=[["CS"]] and z+=["Lossy Image Compression Method"]
1411
+ x+=["0028,3000"] and y+=[["SQ"]] and z+=["Modality LUT Sequence"]
1412
+ x+=["0028,3002"] and y+=[["US","SS"]] and z+=["LUT Descriptor"]
1413
+ x+=["0028,3003"] and y+=[["LO"]] and z+=["LUT Explanation"]
1414
+ x+=["0028,3004"] and y+=[["LO"]] and z+=["Modality LUT Type"]
1415
+ x+=["0028,3006"] and y+=[["or"]] and z+=["LUT Data US or SS"]
1416
+ x+=["0028,3010"] and y+=[["SQ"]] and z+=["VOI LUT Sequence"]
1417
+ x+=["0028,3110"] and y+=[["SQ"]] and z+=["Softcopy VOI LUT Sequence"]
1418
+ x+=["0028,4000"] and y+=[["LT"]] and z+=["Image Presentation Comments"] # RET
1419
+ x+=["0028,5000"] and y+=[["SQ"]] and z+=["Bi-Plane Acquisition Sequence"]
1420
+ x+=["0028,6010"] and y+=[["US"]] and z+=["Representative Frame Number"]
1421
+ x+=["0028,6020"] and y+=[["US"]] and z+=["Frame Numbers of Interest (FOI)"]
1422
+ x+=["0028,6022"] and y+=[["LO"]] and z+=["Frame(s) of Interest Description"]
1423
+ x+=["0028,6023"] and y+=[["CS"]] and z+=["Frame of Interest Type"]
1424
+ x+=["0028,6030"] and y+=[["US"]] and z+=["Mask Pointer(s)"] # RET
1425
+ x+=["0028,6040"] and y+=[["US"]] and z+=["R Wave Pointer"]
1426
+ x+=["0028,6100"] and y+=[["SQ"]] and z+=["Mask Subtraction Sequence"]
1427
+ x+=["0028,6101"] and y+=[["CS"]] and z+=["Mask Operation"]
1428
+ x+=["0028,6102"] and y+=[["US"]] and z+=["Applicable Frame Range"]
1429
+ x+=["0028,6110"] and y+=[["US"]] and z+=["Mask Frame Numbers"]
1430
+ x+=["0028,6112"] and y+=[["US"]] and z+=["Contrast Frame Averaging"]
1431
+ x+=["0028,6114"] and y+=[["FL"]] and z+=["Mask Sub-pixel Shift"]
1432
+ x+=["0028,6120"] and y+=[["SS"]] and z+=["TID Offset"]
1433
+ x+=["0028,6190"] and y+=[["ST"]] and z+=["Mask Operation Explanation"]
1434
+ x+=["0028,7FE0"] and y+=[["UT"]] and z+=["Pixel Data Provider URL"]
1435
+ x+=["0028,9001"] and y+=[["UL"]] and z+=["Data Point Rows"]
1436
+ x+=["0028,9002"] and y+=[["UL"]] and z+=["Data Point Columns"]
1437
+ x+=["0028,9003"] and y+=[["CS"]] and z+=["Signal Domain Columns"]
1438
+ x+=["0028,9099"] and y+=[["US"]] and z+=["Largest Monochrome Pixel Value"] # RET
1439
+ x+=["0028,9108"] and y+=[["CS"]] and z+=["Data Representation"]
1440
+ x+=["0028,9110"] and y+=[["SQ"]] and z+=["Pixel Measures Sequence"]
1441
+ x+=["0028,9132"] and y+=[["SQ"]] and z+=["Frame VOI LUT Sequence"]
1442
+ x+=["0028,9145"] and y+=[["SQ"]] and z+=["Pixel Value Transformation Sequence"]
1443
+ x+=["0028,9235"] and y+=[["CS"]] and z+=["Signal Domain Rows"]
1444
+ x+=["0028,9411"] and y+=[["FL"]] and z+=["Display Filter Percentage"]
1445
+ x+=["0028,9415"] and y+=[["SQ"]] and z+=["Frame Pixel Shift Sequence"]
1446
+ x+=["0028,9416"] and y+=[["US"]] and z+=["Subtraction Item ID"]
1447
+ x+=["0028,9422"] and y+=[["SQ"]] and z+=["Pixel Intensity Relationship LUT Sequence"]
1448
+ x+=["0028,9443"] and y+=[["SQ"]] and z+=["Frame Pixel Data Properties Sequence"]
1449
+ x+=["0028,9444"] and y+=[["CS"]] and z+=["Geometrical Properties"]
1450
+ x+=["0028,9445"] and y+=[["FL"]] and z+=["Geometric Maximum Distortion"]
1451
+ x+=["0028,9446"] and y+=[["CS"]] and z+=["Image Processing Applied"]
1452
+ x+=["0028,9454"] and y+=[["CS"]] and z+=["Mask Selection Mode"]
1453
+ x+=["0028,9474"] and y+=[["CS"]] and z+=["LUT Function"]
1454
+ # Group 0032
1455
+ x+=["0032,000A"] and y+=[["CS"]] and z+=["Study Status ID"] # RET
1456
+ x+=["0032,000C"] and y+=[["CS"]] and z+=["Study Priority ID"] # RET
1457
+ x+=["0032,0012"] and y+=[["LO"]] and z+=["Study ID Issuer"] # RET
1458
+ x+=["0032,0032"] and y+=[["DA"]] and z+=["Study Verified Date"] # RET
1459
+ x+=["0032,0033"] and y+=[["TM"]] and z+=["Study Verified Time"] # RET
1460
+ x+=["0032,0034"] and y+=[["DA"]] and z+=["Study Read Date"] # RET
1461
+ x+=["0032,0035"] and y+=[["TM"]] and z+=["Study Read Time"] # RET
1462
+ x+=["0032,1000"] and y+=[["DA"]] and z+=["Scheduled Study Start Date"] # RET
1463
+ x+=["0032,1001"] and y+=[["TM"]] and z+=["Scheduled Study Start Time"] # RET
1464
+ x+=["0032,1010"] and y+=[["DA"]] and z+=["Scheduled Study Stop Date"] # RET
1465
+ x+=["0032,1011"] and y+=[["TM"]] and z+=["Scheduled Study Stop Time"] # RET
1466
+ x+=["0032,1020"] and y+=[["LO"]] and z+=["Scheduled Study Location"] # RET
1467
+ x+=["0032,1021"] and y+=[["AE"]] and z+=["Scheduled Study Location AE Title"] # RET
1468
+ x+=["0032,1030"] and y+=[["LO"]] and z+=["Reason for Study"] # RET
1469
+ x+=["0032,1031"] and y+=[["SQ"]] and z+=["Requesting Physician Identification Sequence"]
1470
+ x+=["0032,1032"] and y+=[["PN"]] and z+=["Requesting Physician"]
1471
+ x+=["0032,1033"] and y+=[["LO"]] and z+=["Requesting Service"]
1472
+ x+=["0032,1040"] and y+=[["DA"]] and z+=["Study Arrival Date"] # RET
1473
+ x+=["0032,1041"] and y+=[["TM"]] and z+=["Study Arrival Time"] # RET
1474
+ x+=["0032,1050"] and y+=[["DA"]] and z+=["Study Completion Date"] # RET
1475
+ x+=["0032,1051"] and y+=[["TM"]] and z+=["Study Completion Time"] # RET
1476
+ x+=["0032,1055"] and y+=[["CS"]] and z+=["Study Component Status ID"] # RET
1477
+ x+=["0032,1060"] and y+=[["LO"]] and z+=["Requested Procedure Description"]
1478
+ x+=["0032,1064"] and y+=[["SQ"]] and z+=["Requested Procedure Code Sequence"]
1479
+ x+=["0032,1070"] and y+=[["LO"]] and z+=["Requested Contrast Agent"]
1480
+ x+=["0032,4000"] and y+=[["LT"]] and z+=["Study Comments"]
1481
+ # Group 0038
1482
+ x+=["0038,0004"] and y+=[["SQ"]] and z+=["Referenced Patient Alias Sequence"]
1483
+ x+=["0038,0008"] and y+=[["CS"]] and z+=["Visit Status ID"]
1484
+ x+=["0038,0010"] and y+=[["LO"]] and z+=["Admission ID"]
1485
+ x+=["0038,0011"] and y+=[["LO"]] and z+=["Issuer of Admission ID"]
1486
+ x+=["0038,0016"] and y+=[["LO"]] and z+=["Route of Admissions"]
1487
+ x+=["0038,001A"] and y+=[["DA"]] and z+=["Scheduled Admission Date"] # RET
1488
+ x+=["0038,001B"] and y+=[["TM"]] and z+=["Scheduled Admission Time"] # RET
1489
+ x+=["0038,001C"] and y+=[["DA"]] and z+=["Scheduled Discharge Date"] # RET
1490
+ x+=["0038,001D"] and y+=[["TM"]] and z+=["Scheduled Discharge Time"] # RET
1491
+ x+=["0038,001E"] and y+=[["LO"]] and z+=["Scheduled Patient Institution Residence"] # RET
1492
+ x+=["0038,0020"] and y+=[["DA"]] and z+=["Admitting Date"]
1493
+ x+=["0038,0021"] and y+=[["TM"]] and z+=["Admitting Time"]
1494
+ x+=["0038,0030"] and y+=[["DA"]] and z+=["Discharge Date"] # RET
1495
+ x+=["0038,0032"] and y+=[["TM"]] and z+=["Discharge Time"] # RET
1496
+ x+=["0038,0040"] and y+=[["LO"]] and z+=["Discharge Diagnosis Description"] # RET
1497
+ x+=["0038,0044"] and y+=[["SQ"]] and z+=["Discharge Diagnosis Code Sequence"] # RET
1498
+ x+=["0038,0050"] and y+=[["LO"]] and z+=["Special Needs"]
1499
+ x+=["0038,0100"] and y+=[["SQ"]] and z+=["Pertinent Documents Sequence"]
1500
+ x+=["0038,0300"] and y+=[["LO"]] and z+=["Current Patient Location"]
1501
+ x+=["0038,0400"] and y+=[["LO"]] and z+=["Patient's Institution Residence"]
1502
+ x+=["0038,0500"] and y+=[["LO"]] and z+=["Patient State"]
1503
+ x+=["0038,0502"] and y+=[["SQ"]] and z+=["Patient Clinical Trial Participation Sequence"]
1504
+ x+=["0038,4000"] and y+=[["LT"]] and z+=["Visit Comments"]
1505
+ # Group 003A
1506
+ x+=["003A,0004"] and y+=[["CS"]] and z+=["Waveform Originality"]
1507
+ x+=["003A,0005"] and y+=[["US"]] and z+=["Number of Waveform Channels"]
1508
+ x+=["003A,0010"] and y+=[["UL"]] and z+=["Number of Waveform Samples"]
1509
+ x+=["003A,001A"] and y+=[["DS"]] and z+=["Sampling Frequency"]
1510
+ x+=["003A,0020"] and y+=[["SH"]] and z+=["Multiplex Group Label"]
1511
+ x+=["003A,0200"] and y+=[["SQ"]] and z+=["Channel Definition Sequence"]
1512
+ x+=["003A,0202"] and y+=[["IS"]] and z+=["Waveform Channel Number"]
1513
+ x+=["003A,0203"] and y+=[["SH"]] and z+=["Channel Label"]
1514
+ x+=["003A,0205"] and y+=[["CS"]] and z+=["Channel Status"]
1515
+ x+=["003A,0208"] and y+=[["SQ"]] and z+=["Channel Source Sequence"]
1516
+ x+=["003A,0209"] and y+=[["SQ"]] and z+=["Channel Source Modifiers Sequence"]
1517
+ x+=["003A,020A"] and y+=[["SQ"]] and z+=["Source Waveform Sequence"]
1518
+ x+=["003A,020C"] and y+=[["LO"]] and z+=["Channel Derivation Description"]
1519
+ x+=["003A,0210"] and y+=[["DS"]] and z+=["Channel Sensitivity"]
1520
+ x+=["003A,0211"] and y+=[["SQ"]] and z+=["Channel Sensitivity Units Sequence"]
1521
+ x+=["003A,0212"] and y+=[["DS"]] and z+=["Channel Sensitivity Correction Factor"]
1522
+ x+=["003A,0213"] and y+=[["DS"]] and z+=["Channel Baseline"]
1523
+ x+=["003A,0214"] and y+=[["DS"]] and z+=["Channel Time Skew"]
1524
+ x+=["003A,0215"] and y+=[["DS"]] and z+=["Channel Sample Skew"]
1525
+ x+=["003A,0218"] and y+=[["DS"]] and z+=["Channel Offset"]
1526
+ x+=["003A,021A"] and y+=[["US"]] and z+=["Waveform Bits Stored"]
1527
+ x+=["003A,0220"] and y+=[["DS"]] and z+=["Filter Low Frequency"]
1528
+ x+=["003A,0221"] and y+=[["DS"]] and z+=["Filter High Frequency"]
1529
+ x+=["003A,0222"] and y+=[["DS"]] and z+=["Notch Filter Frequency"]
1530
+ x+=["003A,0223"] and y+=[["DS"]] and z+=["Notch Filter Bandwidth"]
1531
+ x+=["003A,0300"] and y+=[["SQ"]] and z+=["Multiplexed Audio Channels Description Code Sequence"]
1532
+ x+=["003A,0301"] and y+=[["IS"]] and z+=["Channel Identification Code"]
1533
+ x+=["003A,0302"] and y+=[["CS"]] and z+=["Channel Mode"]
1534
+ # Group 0040
1535
+ x+=["0040,0001"] and y+=[["AE"]] and z+=["Scheduled Station AE Title"]
1536
+ x+=["0040,0002"] and y+=[["DA"]] and z+=["Scheduled Procedure Step Start Date"]
1537
+ x+=["0040,0003"] and y+=[["TM"]] and z+=["Scheduled Procedure Step Start Time"]
1538
+ x+=["0040,0004"] and y+=[["DA"]] and z+=["Scheduled Procedure Step End Date"]
1539
+ x+=["0040,0005"] and y+=[["TM"]] and z+=["Scheduled Procedure Step End Time"]
1540
+ x+=["0040,0006"] and y+=[["PN"]] and z+=["Scheduled Performing Physician's Name"]
1541
+ x+=["0040,0007"] and y+=[["LO"]] and z+=["Scheduled Procedure Step Description"]
1542
+ x+=["0040,0008"] and y+=[["SQ"]] and z+=["Scheduled Protocol Code Sequence"]
1543
+ x+=["0040,0009"] and y+=[["SH"]] and z+=["Scheduled Procedure Step ID"]
1544
+ x+=["0040,000A"] and y+=[["SQ"]] and z+=["Stage Code Sequence"]
1545
+ x+=["0040,000B"] and y+=[["SQ"]] and z+=["Scheduled Performing Physician Identification Sequence"]
1546
+ x+=["0040,0010"] and y+=[["SH"]] and z+=["Scheduled Station Name"]
1547
+ x+=["0040,0011"] and y+=[["SH"]] and z+=["Scheduled Procedure Step Location"]
1548
+ x+=["0040,0012"] and y+=[["LO"]] and z+=["Pre-Medication"]
1549
+ x+=["0040,0020"] and y+=[["CS"]] and z+=["Scheduled Procedure Step Status"]
1550
+ x+=["0040,0100"] and y+=[["SQ"]] and z+=["Scheduled Procedure Step Sequence"]
1551
+ x+=["0040,0220"] and y+=[["SQ"]] and z+=["Referenced Non-Image Composite SOP Instance Sequence"]
1552
+ x+=["0040,0241"] and y+=[["AE"]] and z+=["Performed Station AE Title"]
1553
+ x+=["0040,0242"] and y+=[["SH"]] and z+=["Performed Station Name"]
1554
+ x+=["0040,0243"] and y+=[["SH"]] and z+=["Performed Location"]
1555
+ x+=["0040,0244"] and y+=[["DA"]] and z+=["Performed Procedure Step Start Date"]
1556
+ x+=["0040,0245"] and y+=[["TM"]] and z+=["Performed Procedure Step Start Time"]
1557
+ x+=["0040,0250"] and y+=[["DA"]] and z+=["Performed Procedure Step End Date"]
1558
+ x+=["0040,0251"] and y+=[["TM"]] and z+=["Performed Procedure Step End Time"]
1559
+ x+=["0040,0252"] and y+=[["CS"]] and z+=["Performed Procedure Step Status"]
1560
+ x+=["0040,0253"] and y+=[["SH"]] and z+=["Performed Procedure Step ID"]
1561
+ x+=["0040,0254"] and y+=[["LO"]] and z+=["Performed Procedure Step Description"]
1562
+ x+=["0040,0255"] and y+=[["LO"]] and z+=["Performed Procedure Type Description"]
1563
+ x+=["0040,0260"] and y+=[["SQ"]] and z+=["Performed Protocol Code Sequence"]
1564
+ x+=["0040,0270"] and y+=[["SQ"]] and z+=["Scheduled Step Attributes Sequence"]
1565
+ x+=["0040,0275"] and y+=[["SQ"]] and z+=["Request Attributes Sequence"]
1566
+ x+=["0040,0280"] and y+=[["ST"]] and z+=["Comments on the Performed Procedure Step"]
1567
+ x+=["0040,0281"] and y+=[["SQ"]] and z+=["Performed Procedure Step Discontinuation Reason Code Sequence"]
1568
+ x+=["0040,0293"] and y+=[["SQ"]] and z+=["Quantity Sequence"]
1569
+ x+=["0040,0294"] and y+=[["DS"]] and z+=["Quantity"]
1570
+ x+=["0040,0295"] and y+=[["SQ"]] and z+=["Measuring Units Sequence"]
1571
+ x+=["0040,0296"] and y+=[["SQ"]] and z+=["Billing Item Sequence"]
1572
+ x+=["0040,0300"] and y+=[["US"]] and z+=["Total Time of Fluoroscopy"]
1573
+ x+=["0040,0301"] and y+=[["US"]] and z+=["Total Number of Exposures"]
1574
+ x+=["0040,0302"] and y+=[["US"]] and z+=["Entrance Dose"]
1575
+ x+=["0040,0303"] and y+=[["US"]] and z+=["Exposed Area"]
1576
+ x+=["0040,0306"] and y+=[["DS"]] and z+=["Distance Source to Entrance"]
1577
+ x+=["0040,0307"] and y+=[["DS"]] and z+=["Distance Source to Support"] # RET
1578
+ x+=["0040,030E"] and y+=[["SQ"]] and z+=["Exposure Dose Sequence"]
1579
+ x+=["0040,0310"] and y+=[["ST"]] and z+=["Comments on Radiation Dose"]
1580
+ x+=["0040,0312"] and y+=[["DS"]] and z+=["X-Ray Output"]
1581
+ x+=["0040,0314"] and y+=[["DS"]] and z+=["Half Value Layer"]
1582
+ x+=["0040,0316"] and y+=[["DS"]] and z+=["Organ Dose"]
1583
+ x+=["0040,0318"] and y+=[["CS"]] and z+=["Organ Exposed"]
1584
+ x+=["0040,0320"] and y+=[["SQ"]] and z+=["Billing Procedure Step Sequence"]
1585
+ x+=["0040,0321"] and y+=[["SQ"]] and z+=["Film Consumption Sequence"]
1586
+ x+=["0040,0324"] and y+=[["SQ"]] and z+=["Billing Supplies and Devices Sequence"]
1587
+ x+=["0040,0330"] and y+=[["SQ"]] and z+=["Referenced Procedure Step Sequence"] # RET
1588
+ x+=["0040,0340"] and y+=[["SQ"]] and z+=["Performed Series Sequence"]
1589
+ x+=["0040,0400"] and y+=[["LT"]] and z+=["Comments on the Scheduled Procedure Step"]
1590
+ x+=["0040,0440"] and y+=[["SQ"]] and z+=["Protocol Context Sequence"]
1591
+ x+=["0040,0441"] and y+=[["SQ"]] and z+=["Content Item Modifier Sequence"]
1592
+ x+=["0040,050A"] and y+=[["LO"]] and z+=["Specimen Accession Number"]
1593
+ x+=["0040,0550"] and y+=[["SQ"]] and z+=["Specimen Sequence"]
1594
+ x+=["0040,0551"] and y+=[["LO"]] and z+=["Specimen Identifier"]
1595
+ x+=["0040,0555"] and y+=[["SQ"]] and z+=["Acquisition Context Sequence"]
1596
+ x+=["0040,0556"] and y+=[["ST"]] and z+=["Acquisition Context Description"]
1597
+ x+=["0040,059A"] and y+=[["SQ"]] and z+=["Specimen Type Code Sequence"]
1598
+ x+=["0040,06FA"] and y+=[["LO"]] and z+=["Slide Identifier"]
1599
+ x+=["0040,071A"] and y+=[["SQ"]] and z+=["Image Center Point Coordinates Sequence"]
1600
+ x+=["0040,072A"] and y+=[["DS"]] and z+=["X offset in Slide Coordinate System"]
1601
+ x+=["0040,073A"] and y+=[["DS"]] and z+=["Y offset in Slide Coordinate System"]
1602
+ x+=["0040,074A"] and y+=[["DS"]] and z+=["Z offset in Slide Coordinate System"]
1603
+ x+=["0040,08D8"] and y+=[["SQ"]] and z+=["Pixel Spacing Sequence"]
1604
+ x+=["0040,08DA"] and y+=[["SQ"]] and z+=["Coordinate System Axis Code Sequence"]
1605
+ x+=["0040,08EA"] and y+=[["SQ"]] and z+=["Measurement Units Code Sequence"]
1606
+ x+=["0040,1001"] and y+=[["SH"]] and z+=["Requested Procedure ID"]
1607
+ x+=["0040,1002"] and y+=[["LO"]] and z+=["Reason for the Requested Procedure"]
1608
+ x+=["0040,1003"] and y+=[["SH"]] and z+=["Requested Procedure Priority"]
1609
+ x+=["0040,1004"] and y+=[["LO"]] and z+=["Patient Transport Arrangements"]
1610
+ x+=["0040,1005"] and y+=[["LO"]] and z+=["Requested Procedure Location"]
1611
+ x+=["0040,1006"] and y+=[["SH"]] and z+=["Placer Order Number / Procedure"] # RET
1612
+ x+=["0040,1007"] and y+=[["SH"]] and z+=["Filler Order Number / Procedure"] # RET
1613
+ x+=["0040,1008"] and y+=[["LO"]] and z+=["Confidentiality Code"]
1614
+ x+=["0040,1009"] and y+=[["SH"]] and z+=["Reporting Priority"]
1615
+ x+=["0040,100A"] and y+=[["SQ"]] and z+=["Reason for Requested Procedure Code Sequence"]
1616
+ x+=["0040,1010"] and y+=[["PN"]] and z+=["Names of Intended Recipients of Results"]
1617
+ x+=["0040,1011"] and y+=[["SQ"]] and z+=["Intended Recipients of Results Identification Sequence"]
1618
+ x+=["0040,1101"] and y+=[["SQ"]] and z+=["Person Identification Code Sequence"]
1619
+ x+=["0040,1102"] and y+=[["ST"]] and z+=["Person's Address"]
1620
+ x+=["0040,1103"] and y+=[["LO"]] and z+=["Person's Telephone Numbers"]
1621
+ x+=["0040,1400"] and y+=[["LT"]] and z+=["Requested Procedure Comments"]
1622
+ x+=["0040,2001"] and y+=[["LO"]] and z+=["Reason for the Imaging Service Request"] # RET
1623
+ x+=["0040,2004"] and y+=[["DA"]] and z+=["Issue Date of Imaging Service Request"]
1624
+ x+=["0040,2005"] and y+=[["TM"]] and z+=["Issue Time of Imaging Service Request"]
1625
+ x+=["0040,2006"] and y+=[["SH"]] and z+=["Placer Order Number / Imaging Service Request"] # RET
1626
+ x+=["0040,2007"] and y+=[["SH"]] and z+=["Filler Order Number / Imaging Service Request"] # RET
1627
+ x+=["0040,2008"] and y+=[["PN"]] and z+=["Order Entered By"]
1628
+ x+=["0040,2009"] and y+=[["SH"]] and z+=["Order Enterer's Location"]
1629
+ x+=["0040,2010"] and y+=[["SH"]] and z+=["Order Callback Phone Number"]
1630
+ x+=["0040,2016"] and y+=[["LO"]] and z+=["Placer Order Number / Imaging Service Request"]
1631
+ x+=["0040,2017"] and y+=[["LO"]] and z+=["Filler Order Number / Imaging Service Request"]
1632
+ x+=["0040,2400"] and y+=[["LT"]] and z+=["Imaging Service Request Comments"]
1633
+ x+=["0040,3001"] and y+=[["LO"]] and z+=["Confidentiality Constraint on Patient Data Description"]
1634
+ x+=["0040,4001"] and y+=[["CS"]] and z+=["General Purpose Scheduled Procedure Step Status"]
1635
+ x+=["0040,4002"] and y+=[["CS"]] and z+=["General Purpose Performed Procedure Step Status"]
1636
+ x+=["0040,4003"] and y+=[["CS"]] and z+=["General Purpose Scheduled Procedure Step Priority"]
1637
+ x+=["0040,4004"] and y+=[["SQ"]] and z+=["Scheduled Processing Applications Code Sequence"]
1638
+ x+=["0040,4005"] and y+=[["DT"]] and z+=["Scheduled Procedure Step Start Date and Time"]
1639
+ x+=["0040,4006"] and y+=[["CS"]] and z+=["Multiple Copies Flag"]
1640
+ x+=["0040,4007"] and y+=[["SQ"]] and z+=["Performed Processing Applications Code Sequence"]
1641
+ x+=["0040,4009"] and y+=[["SQ"]] and z+=["Human Performer Code Sequence"]
1642
+ x+=["0040,4010"] and y+=[["DT"]] and z+=["Scheduled Procedure Step Modification Date and Time"]
1643
+ x+=["0040,4011"] and y+=[["DT"]] and z+=["Expected Completion Date and Time"]
1644
+ x+=["0040,4015"] and y+=[["SQ"]] and z+=["Resulting General Purpose Performed Procedure Steps Sequence"]
1645
+ x+=["0040,4016"] and y+=[["SQ"]] and z+=["Referenced General Purpose Scheduled Procedure Step Sequence"]
1646
+ x+=["0040,4018"] and y+=[["SQ"]] and z+=["Scheduled Workitem Code Sequence"]
1647
+ x+=["0040,4019"] and y+=[["SQ"]] and z+=["Performed Workitem Code Sequence"]
1648
+ x+=["0040,4020"] and y+=[["CS"]] and z+=["Input Availability Flag"]
1649
+ x+=["0040,4021"] and y+=[["SQ"]] and z+=["Input Information Sequence"]
1650
+ x+=["0040,4022"] and y+=[["SQ"]] and z+=["Relevant Information Sequence"]
1651
+ x+=["0040,4023"] and y+=[["UI"]] and z+=["Referenced General Purpose Scheduled Procedure Step Transaction UID"]
1652
+ x+=["0040,4025"] and y+=[["SQ"]] and z+=["Scheduled Station Name Code Sequence"]
1653
+ x+=["0040,4026"] and y+=[["SQ"]] and z+=["Scheduled Station Class Code Sequence"]
1654
+ x+=["0040,4027"] and y+=[["SQ"]] and z+=["Scheduled Station Geographic Location Code Sequence"]
1655
+ x+=["0040,4028"] and y+=[["SQ"]] and z+=["Performed Station Name Code Sequence"]
1656
+ x+=["0040,4029"] and y+=[["SQ"]] and z+=["Performed Station Class Code Sequence"]
1657
+ x+=["0040,4030"] and y+=[["SQ"]] and z+=["Performed Station Geographic Location Code Sequence"]
1658
+ x+=["0040,4031"] and y+=[["SQ"]] and z+=["Requested Subsequent Workitem Code Sequence"]
1659
+ x+=["0040,4032"] and y+=[["SQ"]] and z+=["Non-DICOM Output Code Sequence"]
1660
+ x+=["0040,4033"] and y+=[["SQ"]] and z+=["Output Information Sequence"]
1661
+ x+=["0040,4034"] and y+=[["SQ"]] and z+=["Scheduled Human Performers Sequence"]
1662
+ x+=["0040,4035"] and y+=[["SQ"]] and z+=["Actual Human Performers Sequence"]
1663
+ x+=["0040,4036"] and y+=[["LO"]] and z+=["Human Performer's Organization"]
1664
+ x+=["0040,4037"] and y+=[["PN"]] and z+=["Human Performer's Name"]
1665
+ x+=["0040,8302"] and y+=[["DS"]] and z+=["Entrance Dose in mGy"]
1666
+ x+=["0040,9094"] and y+=[["SQ"]] and z+=["Referenced Image Real World Value Mapping Sequence"]
1667
+ x+=["0040,9096"] and y+=[["SQ"]] and z+=["Real World Value Mapping Sequence"]
1668
+ x+=["0040,9098"] and y+=[["SQ"]] and z+=["Pixel Value Mapping Code Sequence"]
1669
+ x+=["0040,9210"] and y+=[["SH"]] and z+=["LUT Label"]
1670
+ x+=["0040,9211"] and y+=[["US","SS"]] and z+=["Real World Value Last Value Mapped"]
1671
+ x+=["0040,9212"] and y+=[["FD"]] and z+=["Real World Value LUT Data"]
1672
+ x+=["0040,9216"] and y+=[["US","SS"]] and z+=["Real World Value First Value Mapped"]
1673
+ x+=["0040,9224"] and y+=[["FD"]] and z+=["Real World Value Intercept"]
1674
+ x+=["0040,9225"] and y+=[["FD"]] and z+=["Real World Value Slope"]
1675
+ x+=["0040,A010"] and y+=[["CS"]] and z+=["Relationship Type"]
1676
+ x+=["0040,A027"] and y+=[["LO"]] and z+=["Verifying Organization"]
1677
+ x+=["0040,A030"] and y+=[["DT"]] and z+=["Verification Date Time"]
1678
+ x+=["0040,A032"] and y+=[["DT"]] and z+=["Observation Date Time"]
1679
+ x+=["0040,A040"] and y+=[["CS"]] and z+=["Value Type"]
1680
+ x+=["0040,A043"] and y+=[["SQ"]] and z+=["Concept Name Code Sequence"]
1681
+ x+=["0040,A050"] and y+=[["CS"]] and z+=["Continuity Of Content"]
1682
+ x+=["0040,A073"] and y+=[["SQ"]] and z+=["Verifying Observer Sequence"]
1683
+ x+=["0040,A075"] and y+=[["PN"]] and z+=["Verifying Observer Name"]
1684
+ x+=["0040,A078"] and y+=[["SQ"]] and z+=["Author Observer Sequence"]
1685
+ x+=["0040,A07A"] and y+=[["SQ"]] and z+=["Participant Sequence"]
1686
+ x+=["0040,A07C"] and y+=[["SQ"]] and z+=["Custodial Organization Sequence"]
1687
+ x+=["0040,A080"] and y+=[["CS"]] and z+=["Participation Type"]
1688
+ x+=["0040,A082"] and y+=[["DT"]] and z+=["Participation Datetime"]
1689
+ x+=["0040,A084"] and y+=[["CS"]] and z+=["Observer Type"]
1690
+ x+=["0040,A088"] and y+=[["SQ"]] and z+=["Verifying Observer Identification Code Sequence"]
1691
+ x+=["0040,A090"] and y+=[["SQ"]] and z+=["Equivalent CDA Document Sequence"] # RET
1692
+ x+=["0040,A0B0"] and y+=[["US"]] and z+=["Referenced Waveform Channels"]
1693
+ x+=["0040,A120"] and y+=[["DT"]] and z+=["DateTime"]
1694
+ x+=["0040,A121"] and y+=[["DA"]] and z+=["Date"]
1695
+ x+=["0040,A122"] and y+=[["TM"]] and z+=["Time"]
1696
+ x+=["0040,A123"] and y+=[["PN"]] and z+=["Person Name"]
1697
+ x+=["0040,A124"] and y+=[["UI"]] and z+=["UID"]
1698
+ x+=["0040,A130"] and y+=[["CS"]] and z+=["Temporal Range Type"]
1699
+ x+=["0040,A132"] and y+=[["UL"]] and z+=["Referenced Sample Positions"]
1700
+ x+=["0040,A136"] and y+=[["US"]] and z+=["Referenced Frame Numbers"]
1701
+ x+=["0040,A138"] and y+=[["DS"]] and z+=["Referenced Time Offsets"]
1702
+ x+=["0040,A13A"] and y+=[["DT"]] and z+=["Referenced Datetime"]
1703
+ x+=["0040,A160"] and y+=[["UT"]] and z+=["Text Value"]
1704
+ x+=["0040,A168"] and y+=[["SQ"]] and z+=["Concept Code Sequence"]
1705
+ x+=["0040,A170"] and y+=[["SQ"]] and z+=["Purpose of Reference Code Sequence"]
1706
+ x+=["0040,A180"] and y+=[["US"]] and z+=["Annotation Group Number"]
1707
+ x+=["0040,A195"] and y+=[["SQ"]] and z+=["Modifier Code Sequence"]
1708
+ x+=["0040,A300"] and y+=[["SQ"]] and z+=["Measured Value Sequence"]
1709
+ x+=["0040,A301"] and y+=[["SQ"]] and z+=["Numeric Value Qualifier Code Sequence"]
1710
+ x+=["0040,A30A"] and y+=[["DS"]] and z+=["Numeric Value"]
1711
+ x+=["0040,A360"] and y+=[["SQ"]] and z+=["Predecessor Documents Sequence"]
1712
+ x+=["0040,A370"] and y+=[["SQ"]] and z+=["Referenced Request Sequence"]
1713
+ x+=["0040,A372"] and y+=[["SQ"]] and z+=["Performed Procedure Code Sequence"]
1714
+ x+=["0040,A375"] and y+=[["SQ"]] and z+=["Current Requested Procedure Evidence Sequence"]
1715
+ x+=["0040,A385"] and y+=[["SQ"]] and z+=["Pertinent Other Evidence Sequence"]
1716
+ x+=["0040,A390"] and y+=[["SQ"]] and z+=["HL7 Structured Document Reference Sequence"]
1717
+ x+=["0040,A491"] and y+=[["CS"]] and z+=["Completion Flag"]
1718
+ x+=["0040,A492"] and y+=[["LO"]] and z+=["Completion Flag Description"]
1719
+ x+=["0040,A493"] and y+=[["CS"]] and z+=["Verification Flag"]
1720
+ x+=["0040,A504"] and y+=[["SQ"]] and z+=["Content Template Sequence"]
1721
+ x+=["0040,A525"] and y+=[["SQ"]] and z+=["Identical Documents Sequence"]
1722
+ x+=["0040,A730"] and y+=[["SQ"]] and z+=["Content Sequence"]
1723
+ x+=["0040,B020"] and y+=[["SQ"]] and z+=["Annotation Sequence"]
1724
+ x+=["0040,DB00"] and y+=[["CS"]] and z+=["Template Identifier"]
1725
+ x+=["0040,DB06"] and y+=[["DT"]] and z+=["Template Version"] # RET
1726
+ x+=["0040,DB07"] and y+=[["DT"]] and z+=["Template Local Version"] # RET
1727
+ x+=["0040,DB0B"] and y+=[["CS"]] and z+=["Template Extension Flag"] # RET
1728
+ x+=["0040,DB0C"] and y+=[["UI"]] and z+=["Template Extension Organization UID"] # RET
1729
+ x+=["0040,DB0D"] and y+=[["UI"]] and z+=["Template Extension Creator UID"] # RET
1730
+ x+=["0040,DB73"] and y+=[["UL"]] and z+=["Referenced Content Item Identifier"]
1731
+ x+=["0040,E001"] and y+=[["ST"]] and z+=["HL7 Instance Identifier"]
1732
+ x+=["0040,E004"] and y+=[["DT"]] and z+=["HL7 Document Effective Time"]
1733
+ x+=["0040,E006"] and y+=[["SQ"]] and z+=["HL7 Document Type Code Sequence"]
1734
+ x+=["0040,E010"] and y+=[["UT"]] and z+=["Retrieve URI"]
1735
+ # Group 0042
1736
+ x+=["0042,0010"] and y+=[["ST"]] and z+=["Document Title"]
1737
+ x+=["0042,0011"] and y+=[["OB"]] and z+=["Encapsulated Document"]
1738
+ x+=["0042,0012"] and y+=[["LO"]] and z+=["MIME Type of Encapsulated Document"]
1739
+ x+=["0042,0013"] and y+=[["SQ"]] and z+=["Source Instance Sequence"]
1740
+ # Group 0050
1741
+ x+=["0050,0004"] and y+=[["CS"]] and z+=["Calibration Image"]
1742
+ x+=["0050,0010"] and y+=[["SQ"]] and z+=["Device Sequence"]
1743
+ x+=["0050,0014"] and y+=[["DS"]] and z+=["Device Length"]
1744
+ x+=["0050,0016"] and y+=[["DS"]] and z+=["Device Diameter"]
1745
+ x+=["0050,0017"] and y+=[["CS"]] and z+=["Device Diameter Units"]
1746
+ x+=["0050,0018"] and y+=[["DS"]] and z+=["Device Volume"]
1747
+ x+=["0050,0019"] and y+=[["DS"]] and z+=["Intermarker Distance"]
1748
+ x+=["0050,0020"] and y+=[["LO"]] and z+=["Device Description"]
1749
+ # Group 0054
1750
+ x+=["0054,0010"] and y+=[["US"]] and z+=["Energy Window Vector"]
1751
+ x+=["0054,0011"] and y+=[["US"]] and z+=["Number of Energy Windows"]
1752
+ x+=["0054,0012"] and y+=[["SQ"]] and z+=["Energy Window Information Sequence"]
1753
+ x+=["0054,0013"] and y+=[["SQ"]] and z+=["Energy Window Range Sequence"]
1754
+ x+=["0054,0014"] and y+=[["DS"]] and z+=["Energy Window Lower Limit"]
1755
+ x+=["0054,0015"] and y+=[["DS"]] and z+=["Energy Window Upper Limit"]
1756
+ x+=["0054,0016"] and y+=[["SQ"]] and z+=["Radiopharmaceutical Information Sequence"]
1757
+ x+=["0054,0017"] and y+=[["IS"]] and z+=["Residual Syringe Counts"]
1758
+ x+=["0054,0018"] and y+=[["SH"]] and z+=["Energy Window Name"]
1759
+ x+=["0054,0020"] and y+=[["US"]] and z+=["Detector Vector"]
1760
+ x+=["0054,0021"] and y+=[["US"]] and z+=["Number of Detectors"]
1761
+ x+=["0054,0022"] and y+=[["SQ"]] and z+=["Detector Information Sequence"]
1762
+ x+=["0054,0030"] and y+=[["US"]] and z+=["Phase Vector"]
1763
+ x+=["0054,0031"] and y+=[["US"]] and z+=["Number of Phases"]
1764
+ x+=["0054,0032"] and y+=[["SQ"]] and z+=["Phase Information Sequence"]
1765
+ x+=["0054,0033"] and y+=[["US"]] and z+=["Number of Frames in Phase"]
1766
+ x+=["0054,0036"] and y+=[["IS"]] and z+=["Phase Delay"]
1767
+ x+=["0054,0038"] and y+=[["IS"]] and z+=["Pause Between Frames"]
1768
+ x+=["0054,0039"] and y+=[["CS"]] and z+=["Phase Description"]
1769
+ x+=["0054,0050"] and y+=[["US"]] and z+=["Rotation Vector"]
1770
+ x+=["0054,0051"] and y+=[["US"]] and z+=["Number of Rotations"]
1771
+ x+=["0054,0052"] and y+=[["SQ"]] and z+=["Rotation Information Sequence"]
1772
+ x+=["0054,0053"] and y+=[["US"]] and z+=["Number of Frames in Rotation"]
1773
+ x+=["0054,0060"] and y+=[["US"]] and z+=["R-R Interval Vector"]
1774
+ x+=["0054,0061"] and y+=[["US"]] and z+=["Number of R-R Intervals"]
1775
+ x+=["0054,0062"] and y+=[["SQ"]] and z+=["Gated Information Sequence"]
1776
+ x+=["0054,0063"] and y+=[["SQ"]] and z+=["Data Information Sequence"]
1777
+ x+=["0054,0070"] and y+=[["US"]] and z+=["Time Slot Vector"]
1778
+ x+=["0054,0071"] and y+=[["US"]] and z+=["Number of Time Slots"]
1779
+ x+=["0054,0072"] and y+=[["SQ"]] and z+=["Time Slot Information Sequence"]
1780
+ x+=["0054,0073"] and y+=[["DS"]] and z+=["Time Slot Time"]
1781
+ x+=["0054,0080"] and y+=[["US"]] and z+=["Slice Vector"]
1782
+ x+=["0054,0081"] and y+=[["US"]] and z+=["Number of Slices"]
1783
+ x+=["0054,0090"] and y+=[["US"]] and z+=["Angular View Vector"]
1784
+ x+=["0054,0100"] and y+=[["US"]] and z+=["Time Slice Vector"]
1785
+ x+=["0054,0101"] and y+=[["US"]] and z+=["Number of Time Slices"]
1786
+ x+=["0054,0200"] and y+=[["DS"]] and z+=["Start Angle"]
1787
+ x+=["0054,0202"] and y+=[["CS"]] and z+=["Type of Detector Motion"]
1788
+ x+=["0054,0210"] and y+=[["IS"]] and z+=["Trigger Vector"]
1789
+ x+=["0054,0211"] and y+=[["US"]] and z+=["Number of Triggers in Phase"]
1790
+ x+=["0054,0220"] and y+=[["SQ"]] and z+=["View Code Sequence"]
1791
+ x+=["0054,0222"] and y+=[["SQ"]] and z+=["View Modifier Code Sequence"]
1792
+ x+=["0054,0300"] and y+=[["SQ"]] and z+=["Radionuclide Code Sequence"]
1793
+ x+=["0054,0302"] and y+=[["SQ"]] and z+=["Administration Route Code Sequence"]
1794
+ x+=["0054,0304"] and y+=[["SQ"]] and z+=["Radiopharmaceutical Code Sequence"]
1795
+ x+=["0054,0306"] and y+=[["SQ"]] and z+=["Calibration Data Sequence"]
1796
+ x+=["0054,0308"] and y+=[["US"]] and z+=["Energy Window Number"]
1797
+ x+=["0054,0400"] and y+=[["SH"]] and z+=["Image ID"]
1798
+ x+=["0054,0410"] and y+=[["SQ"]] and z+=["Patient Orientation Code Sequence"]
1799
+ x+=["0054,0412"] and y+=[["SQ"]] and z+=["Patient Orientation Modifier Code Sequence"]
1800
+ x+=["0054,0414"] and y+=[["SQ"]] and z+=["Patient Gantry Relationship Code Sequence"]
1801
+ x+=["0054,0500"] and y+=[["CS"]] and z+=["Slice Progression Direction"]
1802
+ x+=["0054,1000"] and y+=[["CS"]] and z+=["Series Type"]
1803
+ x+=["0054,1001"] and y+=[["CS"]] and z+=["Units"]
1804
+ x+=["0054,1002"] and y+=[["CS"]] and z+=["Counts Source"]
1805
+ x+=["0054,1004"] and y+=[["CS"]] and z+=["Reprojection Method"]
1806
+ x+=["0054,1100"] and y+=[["CS"]] and z+=["Randoms Correction Method"]
1807
+ x+=["0054,1101"] and y+=[["LO"]] and z+=["Attenuation Correction Method"]
1808
+ x+=["0054,1102"] and y+=[["CS"]] and z+=["Decay Correction"]
1809
+ x+=["0054,1103"] and y+=[["LO"]] and z+=["Reconstruction Method"]
1810
+ x+=["0054,1104"] and y+=[["LO"]] and z+=["Detector Lines of Response Used"]
1811
+ x+=["0054,1105"] and y+=[["LO"]] and z+=["Scatter Correction Method"]
1812
+ x+=["0054,1200"] and y+=[["DS"]] and z+=["Axial Acceptance"]
1813
+ x+=["0054,1201"] and y+=[["IS"]] and z+=["Axial Mash"]
1814
+ x+=["0054,1202"] and y+=[["IS"]] and z+=["Transverse Mash"]
1815
+ x+=["0054,1203"] and y+=[["DS"]] and z+=["Detector Element Size"]
1816
+ x+=["0054,1210"] and y+=[["DS"]] and z+=["Coincidence Window Width"]
1817
+ x+=["0054,1220"] and y+=[["CS"]] and z+=["Secondary Counts Type"]
1818
+ x+=["0054,1300"] and y+=[["DS"]] and z+=["Frame Reference Time"]
1819
+ x+=["0054,1310"] and y+=[["IS"]] and z+=["Primary (Prompts) Counts Accumulated"]
1820
+ x+=["0054,1311"] and y+=[["IS"]] and z+=["Secondary Counts Accumulated"]
1821
+ x+=["0054,1320"] and y+=[["DS"]] and z+=["Slice Sensitivity Factor"]
1822
+ x+=["0054,1321"] and y+=[["DS"]] and z+=["Decay Factor"]
1823
+ x+=["0054,1322"] and y+=[["DS"]] and z+=["Dose Calibration Factor"]
1824
+ x+=["0054,1323"] and y+=[["DS"]] and z+=["Scatter Fraction Factor"]
1825
+ x+=["0054,1324"] and y+=[["DS"]] and z+=["Dead Time Factor"]
1826
+ x+=["0054,1330"] and y+=[["US"]] and z+=["Image Index"]
1827
+ x+=["0054,1400"] and y+=[["CS"]] and z+=["Counts Included"]
1828
+ x+=["0054,1401"] and y+=[["CS"]] and z+=["Dead Time Correction Flag"]
1829
+ # Group 0060
1830
+ x+=["0060,3000"] and y+=[["SQ"]] and z+=["Histogram Sequence"]
1831
+ x+=["0060,3002"] and y+=[["US"]] and z+=["Histogram Number of Bins"]
1832
+ x+=["0060,3004"] and y+=[["US","SS"]] and z+=["Histogram First Bin Value"]
1833
+ x+=["0060,3006"] and y+=[["US","SS"]] and z+=["Histogram Last Bin Value"]
1834
+ x+=["0060,3008"] and y+=[["US"]] and z+=["Histogram Bin Width"]
1835
+ x+=["0060,3010"] and y+=[["LO"]] and z+=["Histogram Explanation"]
1836
+ x+=["0060,3020"] and y+=[["UL"]] and z+=["Histogram Data"]
1837
+ # Group 0062
1838
+ x+=["0062,0001"] and y+=[["CS"]] and z+=["Segmentation Type"]
1839
+ x+=["0062,0002"] and y+=[["SQ"]] and z+=["Segment Sequence"]
1840
+ x+=["0062,0003"] and y+=[["SQ"]] and z+=["Segmented Property Category Code Sequence"]
1841
+ x+=["0062,0004"] and y+=[["US"]] and z+=["Segment Number"]
1842
+ x+=["0062,0005"] and y+=[["LO"]] and z+=["Segment Label"]
1843
+ x+=["0062,0006"] and y+=[["ST"]] and z+=["Segment Description"]
1844
+ x+=["0062,0008"] and y+=[["CS"]] and z+=["Segment Algorithm Type"]
1845
+ x+=["0062,0009"] and y+=[["LO"]] and z+=["Segment Algorithm Name"]
1846
+ x+=["0062,000A"] and y+=[["SQ"]] and z+=["Segment Identification Sequence"]
1847
+ x+=["0062,000B"] and y+=[["US"]] and z+=["Referenced Segment Number"]
1848
+ x+=["0062,000C"] and y+=[["US"]] and z+=["Recommended Display Grayscale Value"]
1849
+ x+=["0062,000D"] and y+=[["US"]] and z+=["Recommended Display CIELab Value"]
1850
+ x+=["0062,000E"] and y+=[["US"]] and z+=["Maximum Fractional Value"]
1851
+ x+=["0062,000F"] and y+=[["SQ"]] and z+=["Segmented Property Type Code Sequence"]
1852
+ x+=["0062,0010"] and y+=[["CS"]] and z+=["Segmentation Fractional Type"]
1853
+ # Group 0064
1854
+ x+=["0064,0002"] and y+=[["SQ"]] and z+=["Deformable Registration Sequence"]
1855
+ x+=["0064,0003"] and y+=[["UI"]] and z+=["Source Frame of Reference UID"]
1856
+ x+=["0064,0005"] and y+=[["SQ"]] and z+=["Deformable Registration Grid Sequence"]
1857
+ x+=["0064,0007"] and y+=[["UL"]] and z+=["Grid Dimensions"]
1858
+ x+=["0064,0008"] and y+=[["FD"]] and z+=["Grid Resolution"]
1859
+ x+=["0064,0009"] and y+=[["OF"]] and z+=["Vector Grid Data"]
1860
+ x+=["0064,000F"] and y+=[["SQ"]] and z+=["Pre Deformation Matrix Registration Sequence"]
1861
+ x+=["0064,0010"] and y+=[["SQ"]] and z+=["Post Deformation Matrix Registration Sequence"]
1862
+ # Group 0070
1863
+ x+=["0070,0001"] and y+=[["SQ"]] and z+=["Graphic Annotation Sequence"]
1864
+ x+=["0070,0002"] and y+=[["CS"]] and z+=["Graphic Layer"]
1865
+ x+=["0070,0003"] and y+=[["CS"]] and z+=["Bounding Box Annotation Units"]
1866
+ x+=["0070,0004"] and y+=[["CS"]] and z+=["Anchor Point Annotation Units"]
1867
+ x+=["0070,0005"] and y+=[["CS"]] and z+=["Graphic Annotation Units"]
1868
+ x+=["0070,0006"] and y+=[["ST"]] and z+=["Unformatted Text Value"]
1869
+ x+=["0070,0008"] and y+=[["SQ"]] and z+=["Text Object Sequence"]
1870
+ x+=["0070,0009"] and y+=[["SQ"]] and z+=["Graphic Object Sequence"]
1871
+ x+=["0070,0010"] and y+=[["FL"]] and z+=["Bounding Box Top Left Hand Corner"]
1872
+ x+=["0070,0011"] and y+=[["FL"]] and z+=["Bounding Box Bottom Right Hand Corner"]
1873
+ x+=["0070,0012"] and y+=[["CS"]] and z+=["Bounding Box Text Horizontal Justification"]
1874
+ x+=["0070,0014"] and y+=[["FL"]] and z+=["Anchor Point"]
1875
+ x+=["0070,0015"] and y+=[["CS"]] and z+=["Anchor Point Visibility"]
1876
+ x+=["0070,0020"] and y+=[["US"]] and z+=["Graphic Dimensions"]
1877
+ x+=["0070,0021"] and y+=[["US"]] and z+=["Number of Graphic Points"]
1878
+ x+=["0070,0022"] and y+=[["FL"]] and z+=["Graphic Data"]
1879
+ x+=["0070,0023"] and y+=[["CS"]] and z+=["Graphic Type"]
1880
+ x+=["0070,0024"] and y+=[["CS"]] and z+=["Graphic Filled"]
1881
+ x+=["0070,0041"] and y+=[["CS"]] and z+=["Image Horizontal Flip"]
1882
+ x+=["0070,0042"] and y+=[["US"]] and z+=["Image Rotation"]
1883
+ x+=["0070,0052"] and y+=[["SL"]] and z+=["Displayed Area Top Left Hand Corner"]
1884
+ x+=["0070,0053"] and y+=[["SL"]] and z+=["Displayed Area Bottom Right Hand Corner"]
1885
+ x+=["0070,005A"] and y+=[["SQ"]] and z+=["Displayed Area Selection Sequence"]
1886
+ x+=["0070,0060"] and y+=[["SQ"]] and z+=["Graphic Layer Sequence"]
1887
+ x+=["0070,0062"] and y+=[["IS"]] and z+=["Graphic Layer Order"]
1888
+ x+=["0070,0066"] and y+=[["US"]] and z+=["Graphic Layer Recommended Display Grayscale Value"]
1889
+ x+=["0070,0067"] and y+=[["US"]] and z+=["Graphic Layer Recommended Display RGB Value"] # RET
1890
+ x+=["0070,0068"] and y+=[["LO"]] and z+=["Graphic Layer Description"]
1891
+ x+=["0070,0080"] and y+=[["CS"]] and z+=["Content Label"]
1892
+ x+=["0070,0081"] and y+=[["LO"]] and z+=["Content Description"]
1893
+ x+=["0070,0082"] and y+=[["DA"]] and z+=["Presentation Creation Date"]
1894
+ x+=["0070,0083"] and y+=[["TM"]] and z+=["Presentation Creation Time"]
1895
+ x+=["0070,0084"] and y+=[["PN"]] and z+=["Content Creator's Name"]
1896
+ x+=["0070,0086"] and y+=[["SQ"]] and z+=["Content Creator's Identification Code Sequence"]
1897
+ x+=["0070,0100"] and y+=[["CS"]] and z+=["Presentation Size Mode"]
1898
+ x+=["0070,0101"] and y+=[["DS"]] and z+=["Presentation Pixel Spacing"]
1899
+ x+=["0070,0102"] and y+=[["IS"]] and z+=["Presentation Pixel Aspect Ratio"]
1900
+ x+=["0070,0103"] and y+=[["FL"]] and z+=["Presentation Pixel Magnification Ratio"]
1901
+ x+=["0070,0306"] and y+=[["CS"]] and z+=["Shape Type"]
1902
+ x+=["0070,0308"] and y+=[["SQ"]] and z+=["Registration Sequence"]
1903
+ x+=["0070,0309"] and y+=[["SQ"]] and z+=["Matrix Registration Sequence"]
1904
+ x+=["0070,030A"] and y+=[["SQ"]] and z+=["Matrix Sequence"]
1905
+ x+=["0070,030C"] and y+=[["CS"]] and z+=["Frame of Reference Transformation Matrix Type"]
1906
+ x+=["0070,030D"] and y+=[["SQ"]] and z+=["Registration Type Code Sequence"]
1907
+ x+=["0070,030F"] and y+=[["ST"]] and z+=["Fiducial Description"]
1908
+ x+=["0070,0310"] and y+=[["SH"]] and z+=["Fiducial Identifier"]
1909
+ x+=["0070,0311"] and y+=[["SQ"]] and z+=["Fiducial Identifier Code Sequence"]
1910
+ x+=["0070,0312"] and y+=[["FD"]] and z+=["Contour Uncertainty Radius"]
1911
+ x+=["0070,0314"] and y+=[["SQ"]] and z+=["Used Fiducials Sequence"]
1912
+ x+=["0070,0318"] and y+=[["SQ"]] and z+=["Graphic Coordinates Data Sequence"]
1913
+ x+=["0070,031A"] and y+=[["UI"]] and z+=["Fiducial UID"]
1914
+ x+=["0070,031C"] and y+=[["SQ"]] and z+=["Fiducial Set Sequence"]
1915
+ x+=["0070,031E"] and y+=[["SQ"]] and z+=["Fiducial Sequence"]
1916
+ x+=["0070,0401"] and y+=[["US"]] and z+=["Graphic Layer Recommended Display CIELab Value"]
1917
+ x+=["0070,0402"] and y+=[["SQ"]] and z+=["Blending Sequence"]
1918
+ x+=["0070,0403"] and y+=[["FL"]] and z+=["Relative Opacity"]
1919
+ x+=["0070,0404"] and y+=[["SQ"]] and z+=["Referenced Spatial Registration Sequence"]
1920
+ x+=["0070,0405"] and y+=[["CS"]] and z+=["Blending Position"]
1921
+ # Group 0072
1922
+ x+=["0072,0002"] and y+=[["SH"]] and z+=["Hanging Protocol Name"]
1923
+ x+=["0072,0004"] and y+=[["LO"]] and z+=["Hanging Protocol Description"]
1924
+ x+=["0072,0006"] and y+=[["CS"]] and z+=["Hanging Protocol Level"]
1925
+ x+=["0072,0008"] and y+=[["LO"]] and z+=["Hanging Protocol Creator"]
1926
+ x+=["0072,000A"] and y+=[["DT"]] and z+=["Hanging Protocol Creation Datetime"]
1927
+ x+=["0072,000C"] and y+=[["SQ"]] and z+=["Hanging Protocol Definition Sequence"]
1928
+ x+=["0072,000E"] and y+=[["SQ"]] and z+=["Hanging Protocol User Identification Code Sequence"]
1929
+ x+=["0072,0010"] and y+=[["LO"]] and z+=["Hanging Protocol User Group Name"]
1930
+ x+=["0072,0012"] and y+=[["SQ"]] and z+=["Source Hanging Protocol Sequence"]
1931
+ x+=["0072,0014"] and y+=[["US"]] and z+=["Number of Priors Referenced"]
1932
+ x+=["0072,0020"] and y+=[["SQ"]] and z+=["Image Sets Sequence"]
1933
+ x+=["0072,0022"] and y+=[["SQ"]] and z+=["Image Set Selector Sequence"]
1934
+ x+=["0072,0024"] and y+=[["CS"]] and z+=["Image Set Selector Usage Flag"]
1935
+ x+=["0072,0026"] and y+=[["AT"]] and z+=["Selector Attribute"]
1936
+ x+=["0072,0028"] and y+=[["US"]] and z+=["Selector Value Number"]
1937
+ x+=["0072,0030"] and y+=[["SQ"]] and z+=["Time Based Image Sets Sequence"]
1938
+ x+=["0072,0032"] and y+=[["US"]] and z+=["Image Set Number"]
1939
+ x+=["0072,0034"] and y+=[["CS"]] and z+=["Image Set Selector Category"]
1940
+ x+=["0072,0038"] and y+=[["US"]] and z+=["Relative Time"]
1941
+ x+=["0072,003A"] and y+=[["CS"]] and z+=["Relative Time Units"]
1942
+ x+=["0072,003C"] and y+=[["SS"]] and z+=["Abstract Prior Value"]
1943
+ x+=["0072,003E"] and y+=[["SQ"]] and z+=["Abstract Prior Code Sequence"]
1944
+ x+=["0072,0040"] and y+=[["LO"]] and z+=["Image Set Label"]
1945
+ x+=["0072,0050"] and y+=[["CS"]] and z+=["Selector Attribute VR"]
1946
+ x+=["0072,0052"] and y+=[["AT"]] and z+=["Selector Sequence Pointer"]
1947
+ x+=["0072,0054"] and y+=[["LO"]] and z+=["Selector Sequence Pointer Private Creator"]
1948
+ x+=["0072,0056"] and y+=[["LO"]] and z+=["Selector Attribute Private Creator"]
1949
+ x+=["0072,0060"] and y+=[["AT"]] and z+=["Selector AT Value"]
1950
+ x+=["0072,0062"] and y+=[["CS"]] and z+=["Selector CS Value"]
1951
+ x+=["0072,0064"] and y+=[["IS"]] and z+=["Selector IS Value"]
1952
+ x+=["0072,0066"] and y+=[["LO"]] and z+=["Selector LO Value"]
1953
+ x+=["0072,0068"] and y+=[["LT"]] and z+=["Selector LT Value"]
1954
+ x+=["0072,006A"] and y+=[["PN"]] and z+=["Selector PN Value"]
1955
+ x+=["0072,006C"] and y+=[["SH"]] and z+=["Selector SH Value"]
1956
+ x+=["0072,006E"] and y+=[["ST"]] and z+=["Selector ST Value"]
1957
+ x+=["0072,0070"] and y+=[["UT"]] and z+=["Selector UT Value"]
1958
+ x+=["0072,0072"] and y+=[["DS"]] and z+=["Selector DS Value"]
1959
+ x+=["0072,0074"] and y+=[["FD"]] and z+=["Selector FD Value"]
1960
+ x+=["0072,0076"] and y+=[["FL"]] and z+=["Selector FL Value"]
1961
+ x+=["0072,0078"] and y+=[["UL"]] and z+=["Selector UL Value"]
1962
+ x+=["0072,007A"] and y+=[["US"]] and z+=["Selector US Value"]
1963
+ x+=["0072,007C"] and y+=[["SL"]] and z+=["Selector SL Value"]
1964
+ x+=["0072,007E"] and y+=[["SS"]] and z+=["Selector SS Value"]
1965
+ x+=["0072,0080"] and y+=[["SQ"]] and z+=["Selector Code Sequence Value"]
1966
+ x+=["0072,0100"] and y+=[["US"]] and z+=["Number of Screens"]
1967
+ x+=["0072,0102"] and y+=[["SQ"]] and z+=["Nominal Screen Definition Sequence"]
1968
+ x+=["0072,0104"] and y+=[["US"]] and z+=["Number of Vertical Pixels"]
1969
+ x+=["0072,0106"] and y+=[["US"]] and z+=["Number of Horizontal Pixels"]
1970
+ x+=["0072,0108"] and y+=[["FD"]] and z+=["Display Environment Spatial Position"]
1971
+ x+=["0072,010A"] and y+=[["US"]] and z+=["Screen Minimum Grayscale Bit Depth"]
1972
+ x+=["0072,010C"] and y+=[["US"]] and z+=["Screen Minimum Color Bit Depth"]
1973
+ x+=["0072,010E"] and y+=[["US"]] and z+=["Application Maximum Repaint Time"]
1974
+ x+=["0072,0200"] and y+=[["SQ"]] and z+=["Display Sets Sequence"]
1975
+ x+=["0072,0202"] and y+=[["US"]] and z+=["Display Set Number"]
1976
+ x+=["0072,0203"] and y+=[["LO"]] and z+=["Display Set Label"]
1977
+ x+=["0072,0204"] and y+=[["US"]] and z+=["Display Set Presentation Group"]
1978
+ x+=["0072,0206"] and y+=[["LO"]] and z+=["Display Set Presentation Group Description"]
1979
+ x+=["0072,0208"] and y+=[["CS"]] and z+=["Partial Data Display Handling"]
1980
+ x+=["0072,0210"] and y+=[["SQ"]] and z+=["Synchronized Scrolling Sequence"]
1981
+ x+=["0072,0212"] and y+=[["US"]] and z+=["Display Set Scrolling Group"]
1982
+ x+=["0072,0214"] and y+=[["SQ"]] and z+=["Navigation Indicator Sequence"]
1983
+ x+=["0072,0216"] and y+=[["US"]] and z+=["Navigation Display Set"]
1984
+ x+=["0072,0218"] and y+=[["US"]] and z+=["Reference Display Sets"]
1985
+ x+=["0072,0300"] and y+=[["SQ"]] and z+=["Image Boxes Sequence"]
1986
+ x+=["0072,0302"] and y+=[["US"]] and z+=["Image Box Number"]
1987
+ x+=["0072,0304"] and y+=[["CS"]] and z+=["Image Box Layout Type"]
1988
+ x+=["0072,0306"] and y+=[["US"]] and z+=["Image Box Tile Horizontal Dimension"]
1989
+ x+=["0072,0308"] and y+=[["US"]] and z+=["Image Box Tile Vertical Dimension"]
1990
+ x+=["0072,0310"] and y+=[["CS"]] and z+=["Image Box Scroll Direction"]
1991
+ x+=["0072,0312"] and y+=[["CS"]] and z+=["Image Box Small Scroll Type"]
1992
+ x+=["0072,0314"] and y+=[["US"]] and z+=["Image Box Small Scroll Amount"]
1993
+ x+=["0072,0316"] and y+=[["CS"]] and z+=["Image Box Large Scroll Type"]
1994
+ x+=["0072,0318"] and y+=[["US"]] and z+=["Image Box Large Scroll Amount"]
1995
+ x+=["0072,0320"] and y+=[["US"]] and z+=["Image Box Overlap Priority"]
1996
+ x+=["0072,0330"] and y+=[["FD"]] and z+=["Cine Relative to Real-Time"]
1997
+ x+=["0072,0400"] and y+=[["SQ"]] and z+=["Filter Operations Sequence"]
1998
+ x+=["0072,0402"] and y+=[["CS"]] and z+=["Filter-by Category"]
1999
+ x+=["0072,0404"] and y+=[["CS"]] and z+=["Filter-by Attribute Presence"]
2000
+ x+=["0072,0406"] and y+=[["CS"]] and z+=["Filter-by Operator"]
2001
+ x+=["0072,0500"] and y+=[["CS"]] and z+=["Blending Operation Type"]
2002
+ x+=["0072,0510"] and y+=[["CS"]] and z+=["Reformatting Operation Type"]
2003
+ x+=["0072,0512"] and y+=[["FD"]] and z+=["Reformatting Thickness"]
2004
+ x+=["0072,0514"] and y+=[["FD"]] and z+=["Reformatting Interval"]
2005
+ x+=["0072,0516"] and y+=[["CS"]] and z+=["Reformatting Operation Initial View Direction"]
2006
+ x+=["0072,0520"] and y+=[["CS"]] and z+=["3D Rendering Type"]
2007
+ x+=["0072,0600"] and y+=[["SQ"]] and z+=["Sorting Operations Sequence"]
2008
+ x+=["0072,0602"] and y+=[["CS"]] and z+=["Sort-by Category"]
2009
+ x+=["0072,0604"] and y+=[["CS"]] and z+=["Sorting Direction"]
2010
+ x+=["0072,0700"] and y+=[["CS"]] and z+=["Display Set Patient Orientation"]
2011
+ x+=["0072,0702"] and y+=[["CS"]] and z+=["VOI Type"]
2012
+ x+=["0072,0704"] and y+=[["CS"]] and z+=["Pseudo-color Type"]
2013
+ x+=["0072,0706"] and y+=[["CS"]] and z+=["Show Grayscale Inverted"]
2014
+ x+=["0072,0710"] and y+=[["CS"]] and z+=["Show Image True Size Flag"]
2015
+ x+=["0072,0712"] and y+=[["CS"]] and z+=["Show Graphic Annotation Flag"]
2016
+ x+=["0072,0714"] and y+=[["CS"]] and z+=["Show Patient Demographics Flag"]
2017
+ x+=["0072,0716"] and y+=[["CS"]] and z+=["Show Acquisition Techniques Flag"]
2018
+ x+=["0072,0717"] and y+=[["CS"]] and z+=["Display Set Horizontal Justification"]
2019
+ x+=["0072,0718"] and y+=[["CS"]] and z+=["Display Set Vertical Justification"]
2020
+ # Group 0088
2021
+ x+=["0088,0130"] and y+=[["SH"]] and z+=["Storage Media File-set ID"]
2022
+ x+=["0088,0140"] and y+=[["UI"]] and z+=["Storage Media File-set UID"]
2023
+ x+=["0088,0200"] and y+=[["SQ"]] and z+=["Icon Image Sequence"]
2024
+ x+=["0088,0904"] and y+=[["LO"]] and z+=["Topic Title"]
2025
+ x+=["0088,0906"] and y+=[["ST"]] and z+=["Topic Subject"]
2026
+ x+=["0088,0910"] and y+=[["LO"]] and z+=["Topic Author"]
2027
+ x+=["0088,0912"] and y+=[["LO"]] and z+=["Topic Keywords"]
2028
+ # Group 0100
2029
+ x+=["0100,0410"] and y+=[["CS"]] and z+=["SOP Instance Status"]
2030
+ x+=["0100,0420"] and y+=[["DT"]] and z+=["SOP Authorization Date and Time"]
2031
+ x+=["0100,0424"] and y+=[["LT"]] and z+=["SOP Authorization Comment"]
2032
+ x+=["0100,0426"] and y+=[["LO"]] and z+=["Authorization Equipment Certification Number"]
2033
+ # Group 0400
2034
+ x+=["0400,0005"] and y+=[["US"]] and z+=["MAC ID Number"]
2035
+ x+=["0400,0010"] and y+=[["UI"]] and z+=["MAC Calculation Transfer Syntax UID"]
2036
+ x+=["0400,0015"] and y+=[["CS"]] and z+=["MAC Algorithm"]
2037
+ x+=["0400,0020"] and y+=[["AT"]] and z+=["Data Elements Signed"]
2038
+ x+=["0400,0100"] and y+=[["UI"]] and z+=["Digital Signature UID"]
2039
+ x+=["0400,0105"] and y+=[["DT"]] and z+=["Digital Signature DateTime"]
2040
+ x+=["0400,0110"] and y+=[["CS"]] and z+=["Certificate Type"]
2041
+ x+=["0400,0115"] and y+=[["OB"]] and z+=["Certificate of Signer"]
2042
+ x+=["0400,0120"] and y+=[["OB"]] and z+=["Signature"]
2043
+ x+=["0400,0305"] and y+=[["CS"]] and z+=["Certified Timestamp Type"]
2044
+ x+=["0400,0310"] and y+=[["OB"]] and z+=["Certified Timestamp"]
2045
+ x+=["0400,0401"] and y+=[["SQ"]] and z+=["Digital Signature Purpose Code Sequence"]
2046
+ x+=["0400,0402"] and y+=[["SQ"]] and z+=["Referenced Digital Signature Sequence"]
2047
+ x+=["0400,0403"] and y+=[["SQ"]] and z+=["Referenced SOP Instance MAC Sequence"]
2048
+ x+=["0400,0404"] and y+=[["OB"]] and z+=["MAC"]
2049
+ x+=["0400,0500"] and y+=[["SQ"]] and z+=["Encrypted Attributes Sequence"]
2050
+ x+=["0400,0510"] and y+=[["UI"]] and z+=["Encrypted Content Transfer Syntax UID"]
2051
+ x+=["0400,0520"] and y+=[["OB"]] and z+=["Encrypted Content"]
2052
+ x+=["0400,0550"] and y+=[["SQ"]] and z+=["Modified Attributes Sequence"]
2053
+ x+=["0400,0561"] and y+=[["SQ"]] and z+=["Original Attributes Sequence"]
2054
+ x+=["0400,0562"] and y+=[["DT"]] and z+=["Attribute Modification Datetime"]
2055
+ x+=["0400,0563"] and y+=[["LO"]] and z+=["Modifying System"]
2056
+ x+=["0400,0564"] and y+=[["LO"]] and z+=["Source of Previous Values"]
2057
+ x+=["0400,0565"] and y+=[["CS"]] and z+=["Reason for the Attribute Modification"]
2058
+ # Group 2000
2059
+ x+=["2000,0010"] and y+=[["IS"]] and z+=["Number of Copies"]
2060
+ x+=["2000,001E"] and y+=[["SQ"]] and z+=["Printer Configuration Sequence"]
2061
+ x+=["2000,0020"] and y+=[["CS"]] and z+=["Print Priority"]
2062
+ x+=["2000,0030"] and y+=[["CS"]] and z+=["Medium Type"]
2063
+ x+=["2000,0040"] and y+=[["CS"]] and z+=["Film Destination"]
2064
+ x+=["2000,0050"] and y+=[["LO"]] and z+=["Film Session Label"]
2065
+ x+=["2000,0060"] and y+=[["IS"]] and z+=["Memory Allocation"]
2066
+ x+=["2000,0061"] and y+=[["IS"]] and z+=["Maximum Memory Allocation"]
2067
+ x+=["2000,0062"] and y+=[["CS"]] and z+=["Color Image Printing Flag"] # RET
2068
+ x+=["2000,0063"] and y+=[["CS"]] and z+=["Collation Flag"] # RET
2069
+ x+=["2000,0065"] and y+=[["CS"]] and z+=["Annotation Flag"] # RET
2070
+ x+=["2000,0067"] and y+=[["CS"]] and z+=["Image Overlay Flag"] # RET
2071
+ x+=["2000,0069"] and y+=[["CS"]] and z+=["Presentation LUT Flag"] # RET
2072
+ x+=["2000,006A"] and y+=[["CS"]] and z+=["Image Box Presentation LUT Flag"] # RET
2073
+ x+=["2000,00A0"] and y+=[["US"]] and z+=["Memory Bit Depth"]
2074
+ x+=["2000,00A1"] and y+=[["US"]] and z+=["Printing Bit Depth"]
2075
+ x+=["2000,00A2"] and y+=[["SQ"]] and z+=["Media Installed Sequence"]
2076
+ x+=["2000,00A4"] and y+=[["SQ"]] and z+=["Other Media Available Sequence"]
2077
+ x+=["2000,00A8"] and y+=[["SQ"]] and z+=["Supported Image Display Formats Sequence"]
2078
+ x+=["2000,0500"] and y+=[["SQ"]] and z+=["Referenced Film Box Sequence"]
2079
+ x+=["2000,0510"] and y+=[["SQ"]] and z+=["Referenced Stored Print Sequence"]
2080
+ # Group 2010
2081
+ x+=["2010,0010"] and y+=[["ST"]] and z+=["Image Display Format"]
2082
+ x+=["2010,0030"] and y+=[["CS"]] and z+=["Annotation Display Format ID"]
2083
+ x+=["2010,0040"] and y+=[["CS"]] and z+=["Film Orientation"]
2084
+ x+=["2010,0050"] and y+=[["CS"]] and z+=["Film Size ID"]
2085
+ x+=["2010,0052"] and y+=[["CS"]] and z+=["Printer Resolution ID"]
2086
+ x+=["2010,0054"] and y+=[["CS"]] and z+=["Default Printer Resolution ID"]
2087
+ x+=["2010,0060"] and y+=[["CS"]] and z+=["Magnification Type"]
2088
+ x+=["2010,0080"] and y+=[["CS"]] and z+=["Smoothing Type"]
2089
+ x+=["2010,00A6"] and y+=[["CS"]] and z+=["Default Magnification Type"]
2090
+ x+=["2010,00A7"] and y+=[["CS"]] and z+=["Other Magnification Types Available"]
2091
+ x+=["2010,00A8"] and y+=[["CS"]] and z+=["Default Smoothing Type"]
2092
+ x+=["2010,00A9"] and y+=[["CS"]] and z+=["Other Smoothing Types Available"]
2093
+ x+=["2010,0100"] and y+=[["CS"]] and z+=["Border Density"]
2094
+ x+=["2010,0110"] and y+=[["CS"]] and z+=["Empty Image Density"]
2095
+ x+=["2010,0120"] and y+=[["US"]] and z+=["Min Density"]
2096
+ x+=["2010,0130"] and y+=[["US"]] and z+=["Max Density"]
2097
+ x+=["2010,0140"] and y+=[["CS"]] and z+=["Trim"]
2098
+ x+=["2010,0150"] and y+=[["ST"]] and z+=["Configuration Information"]
2099
+ x+=["2010,0152"] and y+=[["LT"]] and z+=["Configuration Information Description"]
2100
+ x+=["2010,0154"] and y+=[["IS"]] and z+=["Maximum Collated Films"]
2101
+ x+=["2010,015E"] and y+=[["US"]] and z+=["Illumination"]
2102
+ x+=["2010,0160"] and y+=[["US"]] and z+=["Reflected Ambient Light"]
2103
+ x+=["2010,0376"] and y+=[["DS"]] and z+=["Printer Pixel Spacing"]
2104
+ x+=["2010,0500"] and y+=[["SQ"]] and z+=["Referenced Film Session Sequence"]
2105
+ x+=["2010,0510"] and y+=[["SQ"]] and z+=["Referenced Image Box Sequence"]
2106
+ x+=["2010,0520"] and y+=[["SQ"]] and z+=["Referenced Basic Annotation Box Sequence"]
2107
+ # Group 2020
2108
+ x+=["2020,0010"] and y+=[["US"]] and z+=["Image Position"]
2109
+ x+=["2020,0020"] and y+=[["CS"]] and z+=["Polarity"]
2110
+ x+=["2020,0030"] and y+=[["DS"]] and z+=["Requested Image Size"]
2111
+ x+=["2020,0040"] and y+=[["CS"]] and z+=["Requested Decimate/Crop Behavior"]
2112
+ x+=["2020,0050"] and y+=[["CS"]] and z+=["Requested Resolution ID"]
2113
+ x+=["2020,00A0"] and y+=[["CS"]] and z+=["Requested Image Size Flag"]
2114
+ x+=["2020,00A2"] and y+=[["CS"]] and z+=["Decimate/Crop Result"]
2115
+ x+=["2020,0110"] and y+=[["SQ"]] and z+=["Basic Grayscale Image Sequence"]
2116
+ x+=["2020,0111"] and y+=[["SQ"]] and z+=["Basic Color Image Sequence"]
2117
+ x+=["2020,0130"] and y+=[["SQ"]] and z+=["Referenced Image Overlay Box Sequence"] # RET
2118
+ x+=["2020,0140"] and y+=[["SQ"]] and z+=["Referenced VOI LUT Box Sequence"] # RET
2119
+ # Group 2030
2120
+ x+=["2030,0010"] and y+=[["US"]] and z+=["Annotation Position"]
2121
+ x+=["2030,0020"] and y+=[["LO"]] and z+=["Text String"]
2122
+ # Group 2040
2123
+ x+=["2040,0010"] and y+=[["SQ"]] and z+=["Referenced Overlay Plane Sequence"] # RET
2124
+ x+=["2040,0011"] and y+=[["US"]] and z+=["Referenced Overlay Plane Groups"] # RET
2125
+ x+=["2040,0020"] and y+=[["SQ"]] and z+=["Overlay Pixel Data Sequence"] # RET
2126
+ x+=["2040,0060"] and y+=[["CS"]] and z+=["Overlay Magnification Type"] # RET
2127
+ x+=["2040,0070"] and y+=[["CS"]] and z+=["Overlay Smoothing Type"] # RET
2128
+ x+=["2040,0072"] and y+=[["CS"]] and z+=["Overlay or Image Magnification"] # RET
2129
+ x+=["2040,0074"] and y+=[["US"]] and z+=["Magnify to Number of Columns"] # RET
2130
+ x+=["2040,0080"] and y+=[["CS"]] and z+=["Overlay Foreground Density"] # RET
2131
+ x+=["2040,0082"] and y+=[["CS"]] and z+=["Overlay Background Density"] # RET
2132
+ x+=["2040,0090"] and y+=[["CS"]] and z+=["Overlay Mode"] # RET
2133
+ x+=["2040,0100"] and y+=[["CS"]] and z+=["Threshold Density"] # RET
2134
+ x+=["2040,0500"] and y+=[["SQ"]] and z+=["Referenced Image Box Sequence"] # RET
2135
+ # Group 2050
2136
+ x+=["2050,0010"] and y+=[["SQ"]] and z+=["Presentation LUT Sequence"]
2137
+ x+=["2050,0020"] and y+=[["CS"]] and z+=["Presentation LUT Shape"]
2138
+ x+=["2050,0500"] and y+=[["SQ"]] and z+=["Referenced Presentation LUT Sequence"]
2139
+ # Group 2100
2140
+ x+=["2100,0010"] and y+=[["SH"]] and z+=["Print Job ID"]
2141
+ x+=["2100,0020"] and y+=[["CS"]] and z+=["Execution Status"]
2142
+ x+=["2100,0030"] and y+=[["CS"]] and z+=["Execution Status Info"]
2143
+ x+=["2100,0040"] and y+=[["DA"]] and z+=["Creation Date"]
2144
+ x+=["2100,0050"] and y+=[["TM"]] and z+=["Creation Time"]
2145
+ x+=["2100,0070"] and y+=[["AE"]] and z+=["Originator"]
2146
+ x+=["2100,0140"] and y+=[["AE"]] and z+=["Destination AE"]
2147
+ x+=["2100,0160"] and y+=[["SH"]] and z+=["Owner ID"]
2148
+ x+=["2100,0170"] and y+=[["IS"]] and z+=["Number of Films"]
2149
+ x+=["2100,0500"] and y+=[["SQ"]] and z+=["Referenced Print Job Sequence (Pull Stored Print)"] # RET
2150
+ # Group 2110
2151
+ x+=["2110,0010"] and y+=[["CS"]] and z+=["Printer Status"]
2152
+ x+=["2110,0020"] and y+=[["CS"]] and z+=["Printer Status Info"]
2153
+ x+=["2110,0030"] and y+=[["LO"]] and z+=["Printer Name"]
2154
+ x+=["2110,0099"] and y+=[["SH"]] and z+=["Print Queue ID"] # RET
2155
+ # Group 2120
2156
+ x+=["2120,0010"] and y+=[["CS"]] and z+=["Queue Status"] # RET
2157
+ x+=["2120,0050"] and y+=[["SQ"]] and z+=["Print Job Description Sequence"] # RET
2158
+ x+=["2120,0070"] and y+=[["SQ"]] and z+=["Referenced Print Job Sequence"] # RET
2159
+ # Group 2130
2160
+ x+=["2130,0010"] and y+=[["SQ"]] and z+=["Print Management Capabilities Sequence"] # RET
2161
+ x+=["2130,0015"] and y+=[["SQ"]] and z+=["Printer Characteristics Sequence"] # RET
2162
+ x+=["2130,0030"] and y+=[["SQ"]] and z+=["Film Box Content Sequence"] # RET
2163
+ x+=["2130,0040"] and y+=[["SQ"]] and z+=["Image Box Content Sequence"] # RET
2164
+ x+=["2130,0050"] and y+=[["SQ"]] and z+=["Annotation Content Sequence"] # RET
2165
+ x+=["2130,0060"] and y+=[["SQ"]] and z+=["Image Overlay Box Content Sequence"] # RET
2166
+ x+=["2130,0080"] and y+=[["SQ"]] and z+=["Presentation LUT Content Sequence"] # RET
2167
+ x+=["2130,00A0"] and y+=[["SQ"]] and z+=["Proposed Study Sequence"] # RET
2168
+ x+=["2130,00C0"] and y+=[["SQ"]] and z+=["Original Image Sequence"] # RET
2169
+ # Group 2200
2170
+ x+=["2200,0001"] and y+=[["CS"]] and z+=["Label Using Information Extracted From Instances"]
2171
+ x+=["2200,0002"] and y+=[["UT"]] and z+=["Label Text"]
2172
+ x+=["2200,0003"] and y+=[["CS"]] and z+=["Label Style Selection"]
2173
+ x+=["2200,0004"] and y+=[["LT"]] and z+=["Media Disposition"]
2174
+ x+=["2200,0005"] and y+=[["LT"]] and z+=["Barcode Value"]
2175
+ x+=["2200,0006"] and y+=[["CS"]] and z+=["Barcode Symbology"]
2176
+ x+=["2200,0007"] and y+=[["CS"]] and z+=["Allow Media Splitting"]
2177
+ x+=["2200,0008"] and y+=[["CS"]] and z+=["Include Non-DICOM Objects"]
2178
+ x+=["2200,0009"] and y+=[["CS"]] and z+=["Include Display Application"]
2179
+ x+=["2200,000A"] and y+=[["CS"]] and z+=["Preserve Composite Instances After Media Creation"]
2180
+ x+=["2200,000B"] and y+=[["US"]] and z+=["Total Number of Pieces of Media Created"]
2181
+ x+=["2200,000C"] and y+=[["LO"]] and z+=["Requested Media Application Profile"]
2182
+ x+=["2200,000D"] and y+=[["SQ"]] and z+=["Referenced Storage Media Sequence"]
2183
+ x+=["2200,000E"] and y+=[["AT"]] and z+=["Failure Attributes"]
2184
+ x+=["2200,000F"] and y+=[["CS"]] and z+=["Allow Lossy Compression"]
2185
+ x+=["2200,0020"] and y+=[["CS"]] and z+=["Request Priority"]
2186
+ # Group 3002
2187
+ x+=["3002,0002"] and y+=[["SH"]] and z+=["RT Image Label"]
2188
+ x+=["3002,0003"] and y+=[["LO"]] and z+=["RT Image Name"]
2189
+ x+=["3002,0004"] and y+=[["ST"]] and z+=["RT Image Description"]
2190
+ x+=["3002,000A"] and y+=[["CS"]] and z+=["Reported Values Origin"]
2191
+ x+=["3002,000C"] and y+=[["CS"]] and z+=["RT Image Plane"]
2192
+ x+=["3002,000D"] and y+=[["DS"]] and z+=["X-Ray Image Receptor Translation"]
2193
+ x+=["3002,000E"] and y+=[["DS"]] and z+=["X-Ray Image Receptor Angle"]
2194
+ x+=["3002,0010"] and y+=[["DS"]] and z+=["RT Image Orientation"]
2195
+ x+=["3002,0011"] and y+=[["DS"]] and z+=["Image Plane Pixel Spacing"]
2196
+ x+=["3002,0012"] and y+=[["DS"]] and z+=["RT Image Position"]
2197
+ x+=["3002,0020"] and y+=[["SH"]] and z+=["Radiation Machine Name"]
2198
+ x+=["3002,0022"] and y+=[["DS"]] and z+=["Radiation Machine SAD"]
2199
+ x+=["3002,0024"] and y+=[["DS"]] and z+=["Radiation Machine SSD"]
2200
+ x+=["3002,0026"] and y+=[["DS"]] and z+=["RT Image SID"]
2201
+ x+=["3002,0028"] and y+=[["DS"]] and z+=["Source to Reference Object Distance"]
2202
+ x+=["3002,0029"] and y+=[["IS"]] and z+=["Fraction Number"]
2203
+ x+=["3002,0030"] and y+=[["SQ"]] and z+=["Exposure Sequence"]
2204
+ x+=["3002,0032"] and y+=[["DS"]] and z+=["Meterset Exposure"]
2205
+ x+=["3002,0034"] and y+=[["DS"]] and z+=["Diaphragm Position"]
2206
+ x+=["3002,0040"] and y+=[["SQ"]] and z+=["Fluence Map Sequence"]
2207
+ x+=["3002,0041"] and y+=[["CS"]] and z+=["Fluence Data Source"]
2208
+ x+=["3002,0042"] and y+=[["DS"]] and z+=["Fluence Data Scale"]
2209
+ # Group 3004
2210
+ x+=["3004,0001"] and y+=[["CS"]] and z+=["DVH Type"]
2211
+ x+=["3004,0002"] and y+=[["CS"]] and z+=["Dose Units"]
2212
+ x+=["3004,0004"] and y+=[["CS"]] and z+=["Dose Type"]
2213
+ x+=["3004,0006"] and y+=[["LO"]] and z+=["Dose Comment"]
2214
+ x+=["3004,0008"] and y+=[["DS"]] and z+=["Normalization Point"]
2215
+ x+=["3004,000A"] and y+=[["CS"]] and z+=["Dose Summation Type"]
2216
+ x+=["3004,000C"] and y+=[["DS"]] and z+=["Grid Frame Offset Vector"]
2217
+ x+=["3004,000E"] and y+=[["DS"]] and z+=["Dose Grid Scaling"]
2218
+ x+=["3004,0010"] and y+=[["SQ"]] and z+=["RT Dose ROI Sequence"]
2219
+ x+=["3004,0012"] and y+=[["DS"]] and z+=["Dose Value"]
2220
+ x+=["3004,0014"] and y+=[["CS"]] and z+=["Tissue Heterogeneity Correction"]
2221
+ x+=["3004,0040"] and y+=[["DS"]] and z+=["DVH Normalization Point"]
2222
+ x+=["3004,0042"] and y+=[["DS"]] and z+=["DVH Normalization Dose Value"]
2223
+ x+=["3004,0050"] and y+=[["SQ"]] and z+=["DVH Sequence"]
2224
+ x+=["3004,0052"] and y+=[["DS"]] and z+=["DVH Dose Scaling"]
2225
+ x+=["3004,0054"] and y+=[["CS"]] and z+=["DVH Volume Units"]
2226
+ x+=["3004,0056"] and y+=[["IS"]] and z+=["DVH Number of Bins"]
2227
+ x+=["3004,0058"] and y+=[["DS"]] and z+=["DVH Data"]
2228
+ x+=["3004,0060"] and y+=[["SQ"]] and z+=["DVH Referenced ROI Sequence"]
2229
+ x+=["3004,0062"] and y+=[["CS"]] and z+=["DVH ROI Contribution Type"]
2230
+ x+=["3004,0070"] and y+=[["DS"]] and z+=["DVH Minimum Dose"]
2231
+ x+=["3004,0072"] and y+=[["DS"]] and z+=["DVH Maximum Dose"]
2232
+ x+=["3004,0074"] and y+=[["DS"]] and z+=["DVH Mean Dose"]
2233
+ # Group 3006
2234
+ x+=["3006,0002"] and y+=[["SH"]] and z+=["Structure Set Label"]
2235
+ x+=["3006,0004"] and y+=[["LO"]] and z+=["Structure Set Name"]
2236
+ x+=["3006,0006"] and y+=[["ST"]] and z+=["Structure Set Description"]
2237
+ x+=["3006,0008"] and y+=[["DA"]] and z+=["Structure Set Date"]
2238
+ x+=["3006,0009"] and y+=[["TM"]] and z+=["Structure Set Time"]
2239
+ x+=["3006,0010"] and y+=[["SQ"]] and z+=["Referenced Frame of Reference Sequence"]
2240
+ x+=["3006,0012"] and y+=[["SQ"]] and z+=["RT Referenced Study Sequence"]
2241
+ x+=["3006,0014"] and y+=[["SQ"]] and z+=["RT Referenced Series Sequence"]
2242
+ x+=["3006,0016"] and y+=[["SQ"]] and z+=["Contour Image Sequence"]
2243
+ x+=["3006,0020"] and y+=[["SQ"]] and z+=["Structure Set ROI Sequence"]
2244
+ x+=["3006,0022"] and y+=[["IS"]] and z+=["ROI Number"]
2245
+ x+=["3006,0024"] and y+=[["UI"]] and z+=["Referenced Frame of Reference UID"]
2246
+ x+=["3006,0026"] and y+=[["LO"]] and z+=["ROI Name"]
2247
+ x+=["3006,0028"] and y+=[["ST"]] and z+=["ROI Description"]
2248
+ x+=["3006,002A"] and y+=[["IS"]] and z+=["ROI Display Color"]
2249
+ x+=["3006,002C"] and y+=[["DS"]] and z+=["ROI Volume"]
2250
+ x+=["3006,0030"] and y+=[["SQ"]] and z+=["RT Related ROI Sequence"]
2251
+ x+=["3006,0033"] and y+=[["CS"]] and z+=["RT ROI Relationship"]
2252
+ x+=["3006,0036"] and y+=[["CS"]] and z+=["ROI Generation Algorithm"]
2253
+ x+=["3006,0038"] and y+=[["LO"]] and z+=["ROI Generation Description"]
2254
+ x+=["3006,0039"] and y+=[["SQ"]] and z+=["ROI Contour Sequence"]
2255
+ x+=["3006,0040"] and y+=[["SQ"]] and z+=["Contour Sequence"]
2256
+ x+=["3006,0042"] and y+=[["CS"]] and z+=["Contour Geometric Type"]
2257
+ x+=["3006,0044"] and y+=[["DS"]] and z+=["Contour Slab Thickness"]
2258
+ x+=["3006,0045"] and y+=[["DS"]] and z+=["Contour Offset Vector"]
2259
+ x+=["3006,0046"] and y+=[["IS"]] and z+=["Number of Contour Points"]
2260
+ x+=["3006,0048"] and y+=[["IS"]] and z+=["Contour Number"]
2261
+ x+=["3006,0049"] and y+=[["IS"]] and z+=["Attached Contours"]
2262
+ x+=["3006,0050"] and y+=[["DS"]] and z+=["Contour Data"]
2263
+ x+=["3006,0080"] and y+=[["SQ"]] and z+=["RT ROI Observations Sequence"]
2264
+ x+=["3006,0082"] and y+=[["IS"]] and z+=["Observation Number"]
2265
+ x+=["3006,0084"] and y+=[["IS"]] and z+=["Referenced ROI Number"]
2266
+ x+=["3006,0085"] and y+=[["SH"]] and z+=["ROI Observation Label"]
2267
+ x+=["3006,0086"] and y+=[["SQ"]] and z+=["RT ROI Identification Code Sequence"]
2268
+ x+=["3006,0088"] and y+=[["ST"]] and z+=["ROI Observation Description"]
2269
+ x+=["3006,00A0"] and y+=[["SQ"]] and z+=["Related RT ROI Observations Sequence"]
2270
+ x+=["3006,00A4"] and y+=[["CS"]] and z+=["RT ROI Interpreted Type"]
2271
+ x+=["3006,00A6"] and y+=[["PN"]] and z+=["ROI Interpreter"]
2272
+ x+=["3006,00B0"] and y+=[["SQ"]] and z+=["ROI Physical Properties Sequence"]
2273
+ x+=["3006,00B2"] and y+=[["CS"]] and z+=["ROI Physical Property"]
2274
+ x+=["3006,00B4"] and y+=[["DS"]] and z+=["ROI Physical Property Value"]
2275
+ x+=["3006,00C0"] and y+=[["SQ"]] and z+=["Frame of Reference Relationship Sequence"]
2276
+ x+=["3006,00C2"] and y+=[["UI"]] and z+=["Related Frame of Reference UID"]
2277
+ x+=["3006,00C4"] and y+=[["CS"]] and z+=["Frame of Reference Transformation Type"]
2278
+ x+=["3006,00C6"] and y+=[["DS"]] and z+=["Frame of Reference Transformation Matrix"]
2279
+ x+=["3006,00C8"] and y+=[["LO"]] and z+=["Frame of Reference Transformation Comment"]
2280
+ # Group 3008
2281
+ x+=["3008,0010"] and y+=[["SQ"]] and z+=["Measured Dose Reference Sequence"]
2282
+ x+=["3008,0012"] and y+=[["ST"]] and z+=["Measured Dose Description"]
2283
+ x+=["3008,0014"] and y+=[["CS"]] and z+=["Measured Dose Type"]
2284
+ x+=["3008,0016"] and y+=[["DS"]] and z+=["Measured Dose Value"]
2285
+ x+=["3008,0020"] and y+=[["SQ"]] and z+=["Treatment Session Beam Sequence"]
2286
+ x+=["3008,0021"] and y+=[["SQ"]] and z+=["Treatment Session Ion Beam Sequence"]
2287
+ x+=["3008,0022"] and y+=[["IS"]] and z+=["Current Fraction Number"]
2288
+ x+=["3008,0024"] and y+=[["DA"]] and z+=["Treatment Control Point Date"]
2289
+ x+=["3008,0025"] and y+=[["TM"]] and z+=["Treatment Control Point Time"]
2290
+ x+=["3008,002A"] and y+=[["CS"]] and z+=["Treatment Termination Status"]
2291
+ x+=["3008,002B"] and y+=[["SH"]] and z+=["Treatment Termination Code"]
2292
+ x+=["3008,002C"] and y+=[["CS"]] and z+=["Treatment Verification Status"]
2293
+ x+=["3008,0030"] and y+=[["SQ"]] and z+=["Referenced Treatment Record Sequence"]
2294
+ x+=["3008,0032"] and y+=[["DS"]] and z+=["Specified Primary Meterset"]
2295
+ x+=["3008,0033"] and y+=[["DS"]] and z+=["Specified Secondary Meterset"]
2296
+ x+=["3008,0036"] and y+=[["DS"]] and z+=["Delivered Primary Meterset"]
2297
+ x+=["3008,0037"] and y+=[["DS"]] and z+=["Delivered Secondary Meterset"]
2298
+ x+=["3008,003A"] and y+=[["DS"]] and z+=["Specified Treatment Time"]
2299
+ x+=["3008,003B"] and y+=[["DS"]] and z+=["Delivered Treatment Time"]
2300
+ x+=["3008,0040"] and y+=[["SQ"]] and z+=["Control Point Delivery Sequence"]
2301
+ x+=["3008,0041"] and y+=[["SQ"]] and z+=["Ion Control Point Delivery Sequence"]
2302
+ x+=["3008,0042"] and y+=[["DS"]] and z+=["Specified Meterset"]
2303
+ x+=["3008,0044"] and y+=[["DS"]] and z+=["Delivered Meterset"]
2304
+ x+=["3008,0045"] and y+=[["FL"]] and z+=["Meterset Rate Set"]
2305
+ x+=["3008,0046"] and y+=[["FL"]] and z+=["Meterset Rate Delivered"]
2306
+ x+=["3008,0047"] and y+=[["FL"]] and z+=["Scan Spot Metersets Delivered"]
2307
+ x+=["3008,0048"] and y+=[["DS"]] and z+=["Dose Rate Delivered"]
2308
+ x+=["3008,0050"] and y+=[["SQ"]] and z+=["Treatment Summary Calculated Dose Reference Sequence"]
2309
+ x+=["3008,0052"] and y+=[["DS"]] and z+=["Cumulative Dose to Dose Reference"]
2310
+ x+=["3008,0054"] and y+=[["DA"]] and z+=["First Treatment Date"]
2311
+ x+=["3008,0056"] and y+=[["DA"]] and z+=["Most Recent Treatment Date"]
2312
+ x+=["3008,005A"] and y+=[["IS"]] and z+=["Number of Fractions Delivered"]
2313
+ x+=["3008,0060"] and y+=[["SQ"]] and z+=["Override Sequence"]
2314
+ x+=["3008,0061"] and y+=[["AT"]] and z+=["Parameter Sequence Pointer"]
2315
+ x+=["3008,0062"] and y+=[["AT"]] and z+=["Override Parameter Pointer"]
2316
+ x+=["3008,0063"] and y+=[["IS"]] and z+=["Parameter Item Index"]
2317
+ x+=["3008,0064"] and y+=[["IS"]] and z+=["Measured Dose Reference Number"]
2318
+ x+=["3008,0065"] and y+=[["AT"]] and z+=["Parameter Pointer"]
2319
+ x+=["3008,0066"] and y+=[["ST"]] and z+=["Override Reason"]
2320
+ x+=["3008,0068"] and y+=[["SQ"]] and z+=["Corrected Parameter Sequence"]
2321
+ x+=["3008,006A"] and y+=[["FL"]] and z+=["Correction Value"]
2322
+ x+=["3008,0070"] and y+=[["SQ"]] and z+=["Calculated Dose Reference Sequence"]
2323
+ x+=["3008,0072"] and y+=[["IS"]] and z+=["Calculated Dose Reference Number"]
2324
+ x+=["3008,0074"] and y+=[["ST"]] and z+=["Calculated Dose Reference Description"]
2325
+ x+=["3008,0076"] and y+=[["DS"]] and z+=["Calculated Dose Reference Dose Value"]
2326
+ x+=["3008,0078"] and y+=[["DS"]] and z+=["Start Meterset"]
2327
+ x+=["3008,007A"] and y+=[["DS"]] and z+=["End Meterset"]
2328
+ x+=["3008,0080"] and y+=[["SQ"]] and z+=["Referenced Measured Dose Reference Sequence"]
2329
+ x+=["3008,0082"] and y+=[["IS"]] and z+=["Referenced Measured Dose Reference Number"]
2330
+ x+=["3008,0090"] and y+=[["SQ"]] and z+=["Referenced Calculated Dose Reference Sequence"]
2331
+ x+=["3008,0092"] and y+=[["IS"]] and z+=["Referenced Calculated Dose Reference Number"]
2332
+ x+=["3008,00A0"] and y+=[["SQ"]] and z+=["Beam Limiting Device Leaf Pairs Sequence"]
2333
+ x+=["3008,00B0"] and y+=[["SQ"]] and z+=["Recorded Wedge Sequence"]
2334
+ x+=["3008,00C0"] and y+=[["SQ"]] and z+=["Recorded Compensator Sequence"]
2335
+ x+=["3008,00D0"] and y+=[["SQ"]] and z+=["Recorded Block Sequence"]
2336
+ x+=["3008,00E0"] and y+=[["SQ"]] and z+=["Treatment Summary Measured Dose Reference Sequence"]
2337
+ x+=["3008,00F0"] and y+=[["SQ"]] and z+=["Recorded Snout Sequence"]
2338
+ x+=["3008,00F2"] and y+=[["SQ"]] and z+=["Recorded Range Shifter Sequence"]
2339
+ x+=["3008,00F4"] and y+=[["SQ"]] and z+=["Recorded Lateral Spreading Device Sequence"]
2340
+ x+=["3008,00F6"] and y+=[["SQ"]] and z+=["Recorded Range Modulator Sequence"]
2341
+ x+=["3008,0100"] and y+=[["SQ"]] and z+=["Recorded Source Sequence"]
2342
+ x+=["3008,0105"] and y+=[["LO"]] and z+=["Source Serial Number"]
2343
+ x+=["3008,0110"] and y+=[["SQ"]] and z+=["Treatment Session Application Setup Sequence"]
2344
+ x+=["3008,0116"] and y+=[["CS"]] and z+=["Application Setup Check"]
2345
+ x+=["3008,0120"] and y+=[["SQ"]] and z+=["Recorded Brachy Accessory Device Sequence"]
2346
+ x+=["3008,0122"] and y+=[["IS"]] and z+=["Referenced Brachy Accessory Device Number"]
2347
+ x+=["3008,0130"] and y+=[["SQ"]] and z+=["Recorded Channel Sequence"]
2348
+ x+=["3008,0132"] and y+=[["DS"]] and z+=["Specified Channel Total Time"]
2349
+ x+=["3008,0134"] and y+=[["DS"]] and z+=["Delivered Channel Total Time"]
2350
+ x+=["3008,0136"] and y+=[["IS"]] and z+=["Specified Number of Pulses"]
2351
+ x+=["3008,0138"] and y+=[["IS"]] and z+=["Delivered Number of Pulses"]
2352
+ x+=["3008,013A"] and y+=[["DS"]] and z+=["Specified Pulse Repetition Interval"]
2353
+ x+=["3008,013C"] and y+=[["DS"]] and z+=["Delivered Pulse Repetition Interval"]
2354
+ x+=["3008,0140"] and y+=[["SQ"]] and z+=["Recorded Source Applicator Sequence"]
2355
+ x+=["3008,0142"] and y+=[["IS"]] and z+=["Referenced Source Applicator Number"]
2356
+ x+=["3008,0150"] and y+=[["SQ"]] and z+=["Recorded Channel Shield Sequence"]
2357
+ x+=["3008,0152"] and y+=[["IS"]] and z+=["Referenced Channel Shield Number"]
2358
+ x+=["3008,0160"] and y+=[["SQ"]] and z+=["Brachy Control Point Delivered Sequence"]
2359
+ x+=["3008,0162"] and y+=[["DA"]] and z+=["Safe Position Exit Date"]
2360
+ x+=["3008,0164"] and y+=[["TM"]] and z+=["Safe Position Exit Time"]
2361
+ x+=["3008,0166"] and y+=[["DA"]] and z+=["Safe Position Return Date"]
2362
+ x+=["3008,0168"] and y+=[["TM"]] and z+=["Safe Position Return Time"]
2363
+ x+=["3008,0200"] and y+=[["CS"]] and z+=["Current Treatment Status"]
2364
+ x+=["3008,0202"] and y+=[["ST"]] and z+=["Treatment Status Comment"]
2365
+ x+=["3008,0220"] and y+=[["SQ"]] and z+=["Fraction Group Summary Sequence"]
2366
+ x+=["3008,0223"] and y+=[["IS"]] and z+=["Referenced Fraction Number"]
2367
+ x+=["3008,0224"] and y+=[["CS"]] and z+=["Fraction Group Type"]
2368
+ x+=["3008,0230"] and y+=[["CS"]] and z+=["Beam Stopper Position"]
2369
+ x+=["3008,0240"] and y+=[["SQ"]] and z+=["Fraction Status Summary Sequence"]
2370
+ x+=["3008,0250"] and y+=[["DA"]] and z+=["Treatment Date"]
2371
+ x+=["3008,0251"] and y+=[["TM"]] and z+=["Treatment Time"]
2372
+ # Group 300A
2373
+ x+=["300A,0002"] and y+=[["SH"]] and z+=["RT Plan Label"]
2374
+ x+=["300A,0003"] and y+=[["LO"]] and z+=["RT Plan Name"]
2375
+ x+=["300A,0004"] and y+=[["ST"]] and z+=["RT Plan Description"]
2376
+ x+=["300A,0006"] and y+=[["DA"]] and z+=["RT Plan Date"]
2377
+ x+=["300A,0007"] and y+=[["TM"]] and z+=["RT Plan Time"]
2378
+ x+=["300A,0009"] and y+=[["LO"]] and z+=["Treatment Protocols"]
2379
+ x+=["300A,000A"] and y+=[["CS"]] and z+=["Plan Intent"]
2380
+ x+=["300A,000B"] and y+=[["LO"]] and z+=["Treatment Sites"]
2381
+ x+=["300A,000C"] and y+=[["CS"]] and z+=["RT Plan Geometry"]
2382
+ x+=["300A,000E"] and y+=[["ST"]] and z+=["Prescription Description"]
2383
+ x+=["300A,0010"] and y+=[["SQ"]] and z+=["Dose Reference Sequence"]
2384
+ x+=["300A,0012"] and y+=[["IS"]] and z+=["Dose Reference Number"]
2385
+ x+=["300A,0013"] and y+=[["UI"]] and z+=["Dose Reference UID"]
2386
+ x+=["300A,0014"] and y+=[["CS"]] and z+=["Dose Reference Structure Type"]
2387
+ x+=["300A,0015"] and y+=[["CS"]] and z+=["Nominal Beam Energy Unit"]
2388
+ x+=["300A,0016"] and y+=[["LO"]] and z+=["Dose Reference Description"]
2389
+ x+=["300A,0018"] and y+=[["DS"]] and z+=["Dose Reference Point Coordinates"]
2390
+ x+=["300A,001A"] and y+=[["DS"]] and z+=["Nominal Prior Dose"]
2391
+ x+=["300A,0020"] and y+=[["CS"]] and z+=["Dose Reference Type"]
2392
+ x+=["300A,0021"] and y+=[["DS"]] and z+=["Constraint Weight"]
2393
+ x+=["300A,0022"] and y+=[["DS"]] and z+=["Delivery Warning Dose"]
2394
+ x+=["300A,0023"] and y+=[["DS"]] and z+=["Delivery Maximum Dose"]
2395
+ x+=["300A,0025"] and y+=[["DS"]] and z+=["Target Minimum Dose"]
2396
+ x+=["300A,0026"] and y+=[["DS"]] and z+=["Target Prescription Dose"]
2397
+ x+=["300A,0027"] and y+=[["DS"]] and z+=["Target Maximum Dose"]
2398
+ x+=["300A,0028"] and y+=[["DS"]] and z+=["Target Underdose Volume Fraction"]
2399
+ x+=["300A,002A"] and y+=[["DS"]] and z+=["Organ at Risk Full-volume Dose"]
2400
+ x+=["300A,002B"] and y+=[["DS"]] and z+=["Organ at Risk Limit Dose"]
2401
+ x+=["300A,002C"] and y+=[["DS"]] and z+=["Organ at Risk Maximum Dose"]
2402
+ x+=["300A,002D"] and y+=[["DS"]] and z+=["Organ at Risk Overdose Volume Fraction"]
2403
+ x+=["300A,0040"] and y+=[["SQ"]] and z+=["Tolerance Table Sequence"]
2404
+ x+=["300A,0042"] and y+=[["IS"]] and z+=["Tolerance Table Number"]
2405
+ x+=["300A,0043"] and y+=[["SH"]] and z+=["Tolerance Table Label"]
2406
+ x+=["300A,0044"] and y+=[["DS"]] and z+=["Gantry Angle Tolerance"]
2407
+ x+=["300A,0046"] and y+=[["DS"]] and z+=["Beam Limiting Device Angle Tolerance"]
2408
+ x+=["300A,0048"] and y+=[["SQ"]] and z+=["Beam Limiting Device Tolerance Sequence"]
2409
+ x+=["300A,004A"] and y+=[["DS"]] and z+=["Beam Limiting Device Position Tolerance"]
2410
+ x+=["300A,004B"] and y+=[["FL"]] and z+=["Snout Position Tolerance"]
2411
+ x+=["300A,004C"] and y+=[["DS"]] and z+=["Patient Support Angle Tolerance"]
2412
+ x+=["300A,004E"] and y+=[["DS"]] and z+=["Table Top Eccentric Angle Tolerance"]
2413
+ x+=["300A,004F"] and y+=[["FL"]] and z+=["Table Top Pitch Angle Tolerance"]
2414
+ x+=["300A,0050"] and y+=[["FL"]] and z+=["Table Top Roll Angle Tolerance"]
2415
+ x+=["300A,0051"] and y+=[["DS"]] and z+=["Table Top Vertical Position Tolerance"]
2416
+ x+=["300A,0052"] and y+=[["DS"]] and z+=["Table Top Longitudinal Position Tolerance"]
2417
+ x+=["300A,0053"] and y+=[["DS"]] and z+=["Table Top Lateral Position Tolerance"]
2418
+ x+=["300A,0055"] and y+=[["CS"]] and z+=["RT Plan Relationship"]
2419
+ x+=["300A,0070"] and y+=[["SQ"]] and z+=["Fraction Group Sequence"]
2420
+ x+=["300A,0071"] and y+=[["IS"]] and z+=["Fraction Group Number"]
2421
+ x+=["300A,0072"] and y+=[["LO"]] and z+=["Fraction Group Description"]
2422
+ x+=["300A,0078"] and y+=[["IS"]] and z+=["Number of Fractions Planned"]
2423
+ x+=["300A,0079"] and y+=[["IS"]] and z+=["Number of Fraction Pattern Digits Per Day"]
2424
+ x+=["300A,007A"] and y+=[["IS"]] and z+=["Repeat Fraction Cycle Length"]
2425
+ x+=["300A,007B"] and y+=[["LT"]] and z+=["Fraction Pattern"]
2426
+ x+=["300A,0080"] and y+=[["IS"]] and z+=["Number of Beams"]
2427
+ x+=["300A,0082"] and y+=[["DS"]] and z+=["Beam Dose Specification Point"]
2428
+ x+=["300A,0084"] and y+=[["DS"]] and z+=["Beam Dose"]
2429
+ x+=["300A,0086"] and y+=[["DS"]] and z+=["Beam Meterset"]
2430
+ x+=["300A,0088"] and y+=[["FL"]] and z+=["Beam Dose Point Depth"]
2431
+ x+=["300A,0089"] and y+=[["FL"]] and z+=["Beam Dose Point Equivalent Depth"]
2432
+ x+=["300A,008A"] and y+=[["FL"]] and z+=["Beam Dose Point SSD"]
2433
+ x+=["300A,00A0"] and y+=[["IS"]] and z+=["Number of Brachy Application Setups"]
2434
+ x+=["300A,00A2"] and y+=[["DS"]] and z+=["Brachy Application Setup Dose Specification Point"]
2435
+ x+=["300A,00A4"] and y+=[["DS"]] and z+=["Brachy Application Setup Dose"]
2436
+ x+=["300A,00B0"] and y+=[["SQ"]] and z+=["Beam Sequence"]
2437
+ x+=["300A,00B2"] and y+=[["SH"]] and z+=["Treatment Machine Name"]
2438
+ x+=["300A,00B3"] and y+=[["CS"]] and z+=["Primary Dosimeter Unit"]
2439
+ x+=["300A,00B4"] and y+=[["DS"]] and z+=["Source-Axis Distance"]
2440
+ x+=["300A,00B6"] and y+=[["SQ"]] and z+=["Beam Limiting Device Sequence"]
2441
+ x+=["300A,00B8"] and y+=[["CS"]] and z+=["RT Beam Limiting Device Type"]
2442
+ x+=["300A,00BA"] and y+=[["DS"]] and z+=["Source to Beam Limiting Device Distance"]
2443
+ x+=["300A,00BB"] and y+=[["FL"]] and z+=["Isocenter to Beam Limiting Device Distance"]
2444
+ x+=["300A,00BC"] and y+=[["IS"]] and z+=["Number of Leaf/Jaw Pairs"]
2445
+ x+=["300A,00BE"] and y+=[["DS"]] and z+=["Leaf Position Boundaries"]
2446
+ x+=["300A,00C0"] and y+=[["IS"]] and z+=["Beam Number"]
2447
+ x+=["300A,00C2"] and y+=[["LO"]] and z+=["Beam Name"]
2448
+ x+=["300A,00C3"] and y+=[["ST"]] and z+=["Beam Description"]
2449
+ x+=["300A,00C4"] and y+=[["CS"]] and z+=["Beam Type"]
2450
+ x+=["300A,00C6"] and y+=[["CS"]] and z+=["Radiation Type"]
2451
+ x+=["300A,00C7"] and y+=[["CS"]] and z+=["High-Dose Technique Type"]
2452
+ x+=["300A,00C8"] and y+=[["IS"]] and z+=["Reference Image Number"]
2453
+ x+=["300A,00CA"] and y+=[["SQ"]] and z+=["Planned Verification Image Sequence"]
2454
+ x+=["300A,00CC"] and y+=[["LO"]] and z+=["Imaging Device-Specific Acquisition Parameters"]
2455
+ x+=["300A,00CE"] and y+=[["CS"]] and z+=["Treatment Delivery Type"]
2456
+ x+=["300A,00D0"] and y+=[["IS"]] and z+=["Number of Wedges"]
2457
+ x+=["300A,00D1"] and y+=[["SQ"]] and z+=["Wedge Sequence"]
2458
+ x+=["300A,00D2"] and y+=[["IS"]] and z+=["Wedge Number"]
2459
+ x+=["300A,00D3"] and y+=[["CS"]] and z+=["Wedge Type"]
2460
+ x+=["300A,00D4"] and y+=[["SH"]] and z+=["Wedge ID"]
2461
+ x+=["300A,00D5"] and y+=[["IS"]] and z+=["Wedge Angle"]
2462
+ x+=["300A,00D6"] and y+=[["DS"]] and z+=["Wedge Factor"]
2463
+ x+=["300A,00D7"] and y+=[["FL"]] and z+=["Total Wedge Tray Water-Equivalent Thickness"]
2464
+ x+=["300A,00D8"] and y+=[["DS"]] and z+=["Wedge Orientation"]
2465
+ x+=["300A,00D9"] and y+=[["FL"]] and z+=["Isocenter to Wedge Tray Distance"]
2466
+ x+=["300A,00DA"] and y+=[["DS"]] and z+=["Source to Wedge Tray Distance"]
2467
+ x+=["300A,00DB"] and y+=[["FL"]] and z+=["Wedge Thin Edge Position"]
2468
+ x+=["300A,00DC"] and y+=[["SH"]] and z+=["Bolus ID"]
2469
+ x+=["300A,00DD"] and y+=[["ST"]] and z+=["Bolus Description"]
2470
+ x+=["300A,00E0"] and y+=[["IS"]] and z+=["Number of Compensators"]
2471
+ x+=["300A,00E1"] and y+=[["SH"]] and z+=["Material ID"]
2472
+ x+=["300A,00E2"] and y+=[["DS"]] and z+=["Total Compensator Tray Factor"]
2473
+ x+=["300A,00E3"] and y+=[["SQ"]] and z+=["Compensator Sequence"]
2474
+ x+=["300A,00E4"] and y+=[["IS"]] and z+=["Compensator Number"]
2475
+ x+=["300A,00E5"] and y+=[["SH"]] and z+=["Compensator ID"]
2476
+ x+=["300A,00E6"] and y+=[["DS"]] and z+=["Source to Compensator Tray Distance"]
2477
+ x+=["300A,00E7"] and y+=[["IS"]] and z+=["Compensator Rows"]
2478
+ x+=["300A,00E8"] and y+=[["IS"]] and z+=["Compensator Columns"]
2479
+ x+=["300A,00E9"] and y+=[["DS"]] and z+=["Compensator Pixel Spacing"]
2480
+ x+=["300A,00EA"] and y+=[["DS"]] and z+=["Compensator Position"]
2481
+ x+=["300A,00EB"] and y+=[["DS"]] and z+=["Compensator Transmission Data"]
2482
+ x+=["300A,00EC"] and y+=[["DS"]] and z+=["Compensator Thickness Data"]
2483
+ x+=["300A,00ED"] and y+=[["IS"]] and z+=["Number of Boli"]
2484
+ x+=["300A,00EE"] and y+=[["CS"]] and z+=["Compensator Type"]
2485
+ x+=["300A,00F0"] and y+=[["IS"]] and z+=["Number of Blocks"]
2486
+ x+=["300A,00F2"] and y+=[["DS"]] and z+=["Total Block Tray Factor"]
2487
+ x+=["300A,00F3"] and y+=[["FL"]] and z+=["Total Block Tray Water-Equivalent Thickness"]
2488
+ x+=["300A,00F4"] and y+=[["SQ"]] and z+=["Block Sequence"]
2489
+ x+=["300A,00F5"] and y+=[["SH"]] and z+=["Block Tray ID"]
2490
+ x+=["300A,00F6"] and y+=[["DS"]] and z+=["Source to Block Tray Distance"]
2491
+ x+=["300A,00F7"] and y+=[["FL"]] and z+=["Isocenter to Block Tray Distance"]
2492
+ x+=["300A,00F8"] and y+=[["CS"]] and z+=["Block Type"]
2493
+ x+=["300A,00F9"] and y+=[["LO"]] and z+=["Accessory Code"]
2494
+ x+=["300A,00FA"] and y+=[["CS"]] and z+=["Block Divergence"]
2495
+ x+=["300A,00FB"] and y+=[["CS"]] and z+=["Block Mounting Position"]
2496
+ x+=["300A,00FC"] and y+=[["IS"]] and z+=["Block Number"]
2497
+ x+=["300A,00FE"] and y+=[["LO"]] and z+=["Block Name"]
2498
+ x+=["300A,0100"] and y+=[["DS"]] and z+=["Block Thickness"]
2499
+ x+=["300A,0102"] and y+=[["DS"]] and z+=["Block Transmission"]
2500
+ x+=["300A,0104"] and y+=[["IS"]] and z+=["Block Number of Points"]
2501
+ x+=["300A,0106"] and y+=[["DS"]] and z+=["Block Data"]
2502
+ x+=["300A,0107"] and y+=[["SQ"]] and z+=["Applicator Sequence"]
2503
+ x+=["300A,0108"] and y+=[["SH"]] and z+=["Applicator ID"]
2504
+ x+=["300A,0109"] and y+=[["CS"]] and z+=["Applicator Type"]
2505
+ x+=["300A,010A"] and y+=[["LO"]] and z+=["Applicator Description"]
2506
+ x+=["300A,010C"] and y+=[["DS"]] and z+=["Cumulative Dose Reference Coefficient"]
2507
+ x+=["300A,010E"] and y+=[["DS"]] and z+=["Final Cumulative Meterset Weight"]
2508
+ x+=["300A,0110"] and y+=[["IS"]] and z+=["Number of Control Points"]
2509
+ x+=["300A,0111"] and y+=[["SQ"]] and z+=["Control Point Sequence"]
2510
+ x+=["300A,0112"] and y+=[["IS"]] and z+=["Control Point Index"]
2511
+ x+=["300A,0114"] and y+=[["DS"]] and z+=["Nominal Beam Energy"]
2512
+ x+=["300A,0115"] and y+=[["DS"]] and z+=["Dose Rate Set"]
2513
+ x+=["300A,0116"] and y+=[["SQ"]] and z+=["Wedge Position Sequence"]
2514
+ x+=["300A,0118"] and y+=[["CS"]] and z+=["Wedge Position"]
2515
+ x+=["300A,011A"] and y+=[["SQ"]] and z+=["Beam Limiting Device Position Sequence"]
2516
+ x+=["300A,011C"] and y+=[["DS"]] and z+=["Leaf/Jaw Positions"]
2517
+ x+=["300A,011E"] and y+=[["DS"]] and z+=["Gantry Angle"]
2518
+ x+=["300A,011F"] and y+=[["CS"]] and z+=["Gantry Rotation Direction"]
2519
+ x+=["300A,0120"] and y+=[["DS"]] and z+=["Beam Limiting Device Angle"]
2520
+ x+=["300A,0121"] and y+=[["CS"]] and z+=["Beam Limiting Device Rotation Direction"]
2521
+ x+=["300A,0122"] and y+=[["DS"]] and z+=["Patient Support Angle"]
2522
+ x+=["300A,0123"] and y+=[["CS"]] and z+=["Patient Support Rotation Direction"]
2523
+ x+=["300A,0124"] and y+=[["DS"]] and z+=["Table Top Eccentric Axis Distance"]
2524
+ x+=["300A,0125"] and y+=[["DS"]] and z+=["Table Top Eccentric Angle"]
2525
+ x+=["300A,0126"] and y+=[["CS"]] and z+=["Table Top Eccentric Rotation Direction"]
2526
+ x+=["300A,0128"] and y+=[["DS"]] and z+=["Table Top Vertical Position"]
2527
+ x+=["300A,0129"] and y+=[["DS"]] and z+=["Table Top Longitudinal Position"]
2528
+ x+=["300A,012A"] and y+=[["DS"]] and z+=["Table Top Lateral Position"]
2529
+ x+=["300A,012C"] and y+=[["DS"]] and z+=["Isocenter Position"]
2530
+ x+=["300A,012E"] and y+=[["DS"]] and z+=["Surface Entry Point"]
2531
+ x+=["300A,0130"] and y+=[["DS"]] and z+=["Source to Surface Distance"]
2532
+ x+=["300A,0134"] and y+=[["DS"]] and z+=["Cumulative Meterset Weight"]
2533
+ x+=["300A,0140"] and y+=[["FL"]] and z+=["Table Top Pitch Angle"]
2534
+ x+=["300A,0142"] and y+=[["CS"]] and z+=["Table Top Pitch Rotation Direction"]
2535
+ x+=["300A,0144"] and y+=[["FL"]] and z+=["Table Top Roll Angle"]
2536
+ x+=["300A,0146"] and y+=[["CS"]] and z+=["Table Top Roll Rotation Direction"]
2537
+ x+=["300A,0148"] and y+=[["FL"]] and z+=["Head Fixation Angle"]
2538
+ x+=["300A,014A"] and y+=[["FL"]] and z+=["Gantry Pitch Angle"]
2539
+ x+=["300A,014C"] and y+=[["CS"]] and z+=["Gantry Pitch Rotation Direction"]
2540
+ x+=["300A,014E"] and y+=[["FL"]] and z+=["Gantry Pitch Angle Tolerance"]
2541
+ x+=["300A,0180"] and y+=[["SQ"]] and z+=["Patient Setup Sequence"]
2542
+ x+=["300A,0182"] and y+=[["IS"]] and z+=["Patient Setup Number"]
2543
+ x+=["300A,0183"] and y+=[["LO"]] and z+=["Patient Setup Label"]
2544
+ x+=["300A,0184"] and y+=[["LO"]] and z+=["Patient Additional Position"]
2545
+ x+=["300A,0190"] and y+=[["SQ"]] and z+=["Fixation Device Sequence"]
2546
+ x+=["300A,0192"] and y+=[["CS"]] and z+=["Fixation Device Type"]
2547
+ x+=["300A,0194"] and y+=[["SH"]] and z+=["Fixation Device Label"]
2548
+ x+=["300A,0196"] and y+=[["ST"]] and z+=["Fixation Device Description"]
2549
+ x+=["300A,0198"] and y+=[["SH"]] and z+=["Fixation Device Position"]
2550
+ x+=["300A,0199"] and y+=[["FL"]] and z+=["Fixation Device Pitch Angle"]
2551
+ x+=["300A,019A"] and y+=[["FL"]] and z+=["Fixation Device Roll Angle"]
2552
+ x+=["300A,01A0"] and y+=[["SQ"]] and z+=["Shielding Device Sequence"]
2553
+ x+=["300A,01A2"] and y+=[["CS"]] and z+=["Shielding Device Type"]
2554
+ x+=["300A,01A4"] and y+=[["SH"]] and z+=["Shielding Device Label"]
2555
+ x+=["300A,01A6"] and y+=[["ST"]] and z+=["Shielding Device Description"]
2556
+ x+=["300A,01A8"] and y+=[["SH"]] and z+=["Shielding Device Position"]
2557
+ x+=["300A,01B0"] and y+=[["CS"]] and z+=["Setup Technique"]
2558
+ x+=["300A,01B2"] and y+=[["ST"]] and z+=["Setup Technique Description"]
2559
+ x+=["300A,01B4"] and y+=[["SQ"]] and z+=["Setup Device Sequence"]
2560
+ x+=["300A,01B6"] and y+=[["CS"]] and z+=["Setup Device Type"]
2561
+ x+=["300A,01B8"] and y+=[["SH"]] and z+=["Setup Device Label"]
2562
+ x+=["300A,01BA"] and y+=[["ST"]] and z+=["Setup Device Description"]
2563
+ x+=["300A,01BC"] and y+=[["DS"]] and z+=["Setup Device Parameter"]
2564
+ x+=["300A,01D0"] and y+=[["ST"]] and z+=["Setup Reference Description"]
2565
+ x+=["300A,01D2"] and y+=[["DS"]] and z+=["Table Top Vertical Setup Displacement"]
2566
+ x+=["300A,01D4"] and y+=[["DS"]] and z+=["Table Top Longitudinal Setup Displacement"]
2567
+ x+=["300A,01D6"] and y+=[["DS"]] and z+=["Table Top Lateral Setup Displacement"]
2568
+ x+=["300A,0200"] and y+=[["CS"]] and z+=["Brachy Treatment Technique"]
2569
+ x+=["300A,0202"] and y+=[["CS"]] and z+=["Brachy Treatment Type"]
2570
+ x+=["300A,0206"] and y+=[["SQ"]] and z+=["Treatment Machine Sequence"]
2571
+ x+=["300A,0210"] and y+=[["SQ"]] and z+=["Source Sequence"]
2572
+ x+=["300A,0212"] and y+=[["IS"]] and z+=["Source Number"]
2573
+ x+=["300A,0214"] and y+=[["CS"]] and z+=["Source Type"]
2574
+ x+=["300A,0216"] and y+=[["LO"]] and z+=["Source Manufacturer"]
2575
+ x+=["300A,0218"] and y+=[["DS"]] and z+=["Active Source Diameter"]
2576
+ x+=["300A,021A"] and y+=[["DS"]] and z+=["Active Source Length"]
2577
+ x+=["300A,0222"] and y+=[["DS"]] and z+=["Source Encapsulation Nominal Thickness"]
2578
+ x+=["300A,0224"] and y+=[["DS"]] and z+=["Source Encapsulation Nominal Transmission"]
2579
+ x+=["300A,0226"] and y+=[["LO"]] and z+=["Source Isotope Name"]
2580
+ x+=["300A,0228"] and y+=[["DS"]] and z+=["Source Isotope Half Life"]
2581
+ x+=["300A,0229"] and y+=[["CS"]] and z+=["Source Strength Units"]
2582
+ x+=["300A,022A"] and y+=[["DS"]] and z+=["Reference Air Kerma Rate"]
2583
+ x+=["300A,022B"] and y+=[["DS"]] and z+=["Source Strength"]
2584
+ x+=["300A,022C"] and y+=[["DA"]] and z+=["Source Strength Reference Date"]
2585
+ x+=["300A,022E"] and y+=[["TM"]] and z+=["Source Strength Reference Time"]
2586
+ x+=["300A,0230"] and y+=[["SQ"]] and z+=["Application Setup Sequence"]
2587
+ x+=["300A,0232"] and y+=[["CS"]] and z+=["Application Setup Type"]
2588
+ x+=["300A,0234"] and y+=[["IS"]] and z+=["Application Setup Number"]
2589
+ x+=["300A,0236"] and y+=[["LO"]] and z+=["Application Setup Name"]
2590
+ x+=["300A,0238"] and y+=[["LO"]] and z+=["Application Setup Manufacturer"]
2591
+ x+=["300A,0240"] and y+=[["IS"]] and z+=["Template Number"]
2592
+ x+=["300A,0242"] and y+=[["SH"]] and z+=["Template Type"]
2593
+ x+=["300A,0244"] and y+=[["LO"]] and z+=["Template Name"]
2594
+ x+=["300A,0250"] and y+=[["DS"]] and z+=["Total Reference Air Kerma"]
2595
+ x+=["300A,0260"] and y+=[["SQ"]] and z+=["Brachy Accessory Device Sequence"]
2596
+ x+=["300A,0262"] and y+=[["IS"]] and z+=["Brachy Accessory Device Number"]
2597
+ x+=["300A,0263"] and y+=[["SH"]] and z+=["Brachy Accessory Device ID"]
2598
+ x+=["300A,0264"] and y+=[["CS"]] and z+=["Brachy Accessory Device Type"]
2599
+ x+=["300A,0266"] and y+=[["LO"]] and z+=["Brachy Accessory Device Name"]
2600
+ x+=["300A,026A"] and y+=[["DS"]] and z+=["Brachy Accessory Device Nominal Thickness"]
2601
+ x+=["300A,026C"] and y+=[["DS"]] and z+=["Brachy Accessory Device Nominal Transmission"]
2602
+ x+=["300A,0280"] and y+=[["SQ"]] and z+=["Channel Sequence"]
2603
+ x+=["300A,0282"] and y+=[["IS"]] and z+=["Channel Number"]
2604
+ x+=["300A,0284"] and y+=[["DS"]] and z+=["Channel Length"]
2605
+ x+=["300A,0286"] and y+=[["DS"]] and z+=["Channel Total Time"]
2606
+ x+=["300A,0288"] and y+=[["CS"]] and z+=["Source Movement Type"]
2607
+ x+=["300A,028A"] and y+=[["IS"]] and z+=["Number of Pulses"]
2608
+ x+=["300A,028C"] and y+=[["DS"]] and z+=["Pulse Repetition Interval"]
2609
+ x+=["300A,0290"] and y+=[["IS"]] and z+=["Source Applicator Number"]
2610
+ x+=["300A,0291"] and y+=[["SH"]] and z+=["Source Applicator ID"]
2611
+ x+=["300A,0292"] and y+=[["CS"]] and z+=["Source Applicator Type"]
2612
+ x+=["300A,0294"] and y+=[["LO"]] and z+=["Source Applicator Name"]
2613
+ x+=["300A,0296"] and y+=[["DS"]] and z+=["Source Applicator Length"]
2614
+ x+=["300A,0298"] and y+=[["LO"]] and z+=["Source Applicator Manufacturer"]
2615
+ x+=["300A,029C"] and y+=[["DS"]] and z+=["Source Applicator Wall Nominal Thickness"]
2616
+ x+=["300A,029E"] and y+=[["DS"]] and z+=["Source Applicator Wall Nominal Transmission"]
2617
+ x+=["300A,02A0"] and y+=[["DS"]] and z+=["Source Applicator Step Size"]
2618
+ x+=["300A,02A2"] and y+=[["IS"]] and z+=["Transfer Tube Number"]
2619
+ x+=["300A,02A4"] and y+=[["DS"]] and z+=["Transfer Tube Length"]
2620
+ x+=["300A,02B0"] and y+=[["SQ"]] and z+=["Channel Shield Sequence"]
2621
+ x+=["300A,02B2"] and y+=[["IS"]] and z+=["Channel Shield Number"]
2622
+ x+=["300A,02B3"] and y+=[["SH"]] and z+=["Channel Shield ID"]
2623
+ x+=["300A,02B4"] and y+=[["LO"]] and z+=["Channel Shield Name"]
2624
+ x+=["300A,02B8"] and y+=[["DS"]] and z+=["Channel Shield Nominal Thickness"]
2625
+ x+=["300A,02BA"] and y+=[["DS"]] and z+=["Channel Shield Nominal Transmission"]
2626
+ x+=["300A,02C8"] and y+=[["DS"]] and z+=["Final Cumulative Time Weight"]
2627
+ x+=["300A,02D0"] and y+=[["SQ"]] and z+=["Brachy Control Point Sequence"]
2628
+ x+=["300A,02D2"] and y+=[["DS"]] and z+=["Control Point Relative Position"]
2629
+ x+=["300A,02D4"] and y+=[["DS"]] and z+=["Control Point 3D Position"]
2630
+ x+=["300A,02D6"] and y+=[["DS"]] and z+=["Cumulative Time Weight"]
2631
+ x+=["300A,02E0"] and y+=[["CS"]] and z+=["Compensator Divergence"]
2632
+ x+=["300A,02E1"] and y+=[["CS"]] and z+=["Compensator Mounting Position"]
2633
+ x+=["300A,02E2"] and y+=[["DS"]] and z+=["Source to Compensator Distance"]
2634
+ x+=["300A,02E3"] and y+=[["FL"]] and z+=["Total Compensator Tray Water-Equivalent Thickness"]
2635
+ x+=["300A,02E4"] and y+=[["FL"]] and z+=["Isocenter to Compensator Tray Distance"]
2636
+ x+=["300A,02E5"] and y+=[["FL"]] and z+=["Compensator Column Offset"]
2637
+ x+=["300A,02E6"] and y+=[["FL"]] and z+=["Isocenter to Compensator Distances"]
2638
+ x+=["300A,02E7"] and y+=[["FL"]] and z+=["Compensator Relative Stopping Power Ratio"]
2639
+ x+=["300A,02E8"] and y+=[["FL"]] and z+=["Compensator Milling Tool Diameter"]
2640
+ x+=["300A,02EA"] and y+=[["SQ"]] and z+=["Ion Range Compensator Sequence"]
2641
+ x+=["300A,0302"] and y+=[["IS"]] and z+=["Radiation Mass Number"]
2642
+ x+=["300A,0304"] and y+=[["IS"]] and z+=["Radiation Atomic Number"]
2643
+ x+=["300A,0306"] and y+=[["SS"]] and z+=["Radiation Charge State"]
2644
+ x+=["300A,0308"] and y+=[["CS"]] and z+=["Scan Mode"]
2645
+ x+=["300A,030A"] and y+=[["FL"]] and z+=["Virtual Source-Axis Distances"]
2646
+ x+=["300A,030C"] and y+=[["SQ"]] and z+=["Snout Sequence"]
2647
+ x+=["300A,030D"] and y+=[["FL"]] and z+=["Snout Position"]
2648
+ x+=["300A,030F"] and y+=[["SH"]] and z+=["Snout ID"]
2649
+ x+=["300A,0312"] and y+=[["IS"]] and z+=["Number of Range Shifters"]
2650
+ x+=["300A,0314"] and y+=[["SQ"]] and z+=["Range Shifter Sequence"]
2651
+ x+=["300A,0316"] and y+=[["IS"]] and z+=["Range Shifter Number"]
2652
+ x+=["300A,0318"] and y+=[["SH"]] and z+=["Range Shifter ID"]
2653
+ x+=["300A,0320"] and y+=[["CS"]] and z+=["Range Shifter Type"]
2654
+ x+=["300A,0322"] and y+=[["LO"]] and z+=["Range Shifter Description"]
2655
+ x+=["300A,0330"] and y+=[["IS"]] and z+=["Number of Lateral Spreading Devices"]
2656
+ x+=["300A,0332"] and y+=[["SQ"]] and z+=["Lateral Spreading Device Sequence"]
2657
+ x+=["300A,0334"] and y+=[["IS"]] and z+=["Lateral Spreading Device Number"]
2658
+ x+=["300A,0336"] and y+=[["SH"]] and z+=["Lateral Spreading Device ID"]
2659
+ x+=["300A,0338"] and y+=[["CS"]] and z+=["Lateral Spreading Device Type"]
2660
+ x+=["300A,033A"] and y+=[["LO"]] and z+=["Lateral Spreading Device Description"]
2661
+ x+=["300A,033C"] and y+=[["FL"]] and z+=["Lateral Spreading Device Water Equivalent Thickness"]
2662
+ x+=["300A,0340"] and y+=[["IS"]] and z+=["Number of Range Modulators"]
2663
+ x+=["300A,0342"] and y+=[["SQ"]] and z+=["Range Modulator Sequence"]
2664
+ x+=["300A,0344"] and y+=[["IS"]] and z+=["Range Modulator Number"]
2665
+ x+=["300A,0346"] and y+=[["SH"]] and z+=["Range Modulator ID"]
2666
+ x+=["300A,0348"] and y+=[["CS"]] and z+=["Range Modulator Type"]
2667
+ x+=["300A,034A"] and y+=[["LO"]] and z+=["Range Modulator Description"]
2668
+ x+=["300A,034C"] and y+=[["SH"]] and z+=["Beam Current Modulation ID"]
2669
+ x+=["300A,0350"] and y+=[["CS"]] and z+=["Patient Support Type"]
2670
+ x+=["300A,0352"] and y+=[["SH"]] and z+=["Patient Support ID"]
2671
+ x+=["300A,0354"] and y+=[["LO"]] and z+=["Patient Support Accessory Code"]
2672
+ x+=["300A,0356"] and y+=[["FL"]] and z+=["Fixation Light Azimuthal Angle"]
2673
+ x+=["300A,0358"] and y+=[["FL"]] and z+=["Fixation Light Polar Angle"]
2674
+ x+=["300A,035A"] and y+=[["FL"]] and z+=["Meterset Rate"]
2675
+ x+=["300A,0360"] and y+=[["SQ"]] and z+=["Range Shifter Settings Sequence"]
2676
+ x+=["300A,0362"] and y+=[["LO"]] and z+=["Range Shifter Setting"]
2677
+ x+=["300A,0364"] and y+=[["FL"]] and z+=["Isocenter to Range Shifter Distance"]
2678
+ x+=["300A,0366"] and y+=[["FL"]] and z+=["Range Shifter Water Equivalent Thickness"]
2679
+ x+=["300A,0370"] and y+=[["SQ"]] and z+=["Lateral Spreading Device Settings Sequence"]
2680
+ x+=["300A,0372"] and y+=[["LO"]] and z+=["Lateral Spreading Device Setting"]
2681
+ x+=["300A,0374"] and y+=[["FL"]] and z+=["Isocenter to Lateral Spreading Device Distance"]
2682
+ x+=["300A,0380"] and y+=[["SQ"]] and z+=["Range Modulator Settings Sequence"]
2683
+ x+=["300A,0382"] and y+=[["FL"]] and z+=["Range Modulator Gating Start Value"]
2684
+ x+=["300A,0384"] and y+=[["FL"]] and z+=["Range Modulator Gating Stop Value"]
2685
+ x+=["300A,0386"] and y+=[["FL"]] and z+=["Range Modulator Gating Start Water Equivalent Thickness"]
2686
+ x+=["300A,0388"] and y+=[["FL"]] and z+=["Range Modulator Gating Stop Water Equivalent Thickness"]
2687
+ x+=["300A,038A"] and y+=[["FL"]] and z+=["Isocenter to Range Modulator Distance"]
2688
+ x+=["300A,0390"] and y+=[["SH"]] and z+=["Scan Spot Tune ID"]
2689
+ x+=["300A,0392"] and y+=[["IS"]] and z+=["Number of Scan Spot Positions"]
2690
+ x+=["300A,0394"] and y+=[["FL"]] and z+=["Scan Spot Position Map"]
2691
+ x+=["300A,0396"] and y+=[["FL"]] and z+=["Scan Spot Meterset Weights"]
2692
+ x+=["300A,0398"] and y+=[["FL"]] and z+=["Scanning Spot Size"]
2693
+ x+=["300A,039A"] and y+=[["IS"]] and z+=["Number of Paintings"]
2694
+ x+=["300A,03A0"] and y+=[["SQ"]] and z+=["Ion Tolerance Table Sequence"]
2695
+ x+=["300A,03A2"] and y+=[["SQ"]] and z+=["Ion Beam Sequence"]
2696
+ x+=["300A,03A4"] and y+=[["SQ"]] and z+=["Ion Beam Limiting Device Sequence"]
2697
+ x+=["300A,03A6"] and y+=[["SQ"]] and z+=["Ion Block Sequence"]
2698
+ x+=["300A,03A8"] and y+=[["SQ"]] and z+=["Ion Control Point Sequence"]
2699
+ x+=["300A,03AA"] and y+=[["SQ"]] and z+=["Ion Wedge Sequence"]
2700
+ x+=["300A,03AC"] and y+=[["SQ"]] and z+=["Ion Wedge Position Sequence"]
2701
+ x+=["300A,0401"] and y+=[["SQ"]] and z+=["Referenced Setup Image Sequence"]
2702
+ x+=["300A,0402"] and y+=[["ST"]] and z+=["Setup Image Comment"]
2703
+ x+=["300A,0410"] and y+=[["SQ"]] and z+=["Motion Synchronization Sequence"]
2704
+ # Group 300C
2705
+ x+=["300C,0002"] and y+=[["SQ"]] and z+=["Referenced RT Plan Sequence"]
2706
+ x+=["300C,0004"] and y+=[["SQ"]] and z+=["Referenced Beam Sequence"]
2707
+ x+=["300C,0006"] and y+=[["IS"]] and z+=["Referenced Beam Number"]
2708
+ x+=["300C,0007"] and y+=[["IS"]] and z+=["Referenced Reference Image Number"]
2709
+ x+=["300C,0008"] and y+=[["DS"]] and z+=["Start Cumulative Meterset Weight"]
2710
+ x+=["300C,0009"] and y+=[["DS"]] and z+=["End Cumulative Meterset Weight"]
2711
+ x+=["300C,000A"] and y+=[["SQ"]] and z+=["Referenced Brachy Application Setup Sequence"]
2712
+ x+=["300C,000C"] and y+=[["IS"]] and z+=["Referenced Brachy Application Setup Number"]
2713
+ x+=["300C,000E"] and y+=[["IS"]] and z+=["Referenced Source Number"]
2714
+ x+=["300C,0020"] and y+=[["SQ"]] and z+=["Referenced Fraction Group Sequence"]
2715
+ x+=["300C,0022"] and y+=[["IS"]] and z+=["Referenced Fraction Group Number"]
2716
+ x+=["300C,0040"] and y+=[["SQ"]] and z+=["Referenced Verification Image Sequence"]
2717
+ x+=["300C,0042"] and y+=[["SQ"]] and z+=["Referenced Reference Image Sequence"]
2718
+ x+=["300C,0050"] and y+=[["SQ"]] and z+=["Referenced Dose Reference Sequence"]
2719
+ x+=["300C,0051"] and y+=[["IS"]] and z+=["Referenced Dose Reference Number"]
2720
+ x+=["300C,0055"] and y+=[["SQ"]] and z+=["Brachy Referenced Dose Reference Sequence"]
2721
+ x+=["300C,0060"] and y+=[["SQ"]] and z+=["Referenced Structure Set Sequence"]
2722
+ x+=["300C,006A"] and y+=[["IS"]] and z+=["Referenced Patient Setup Number"]
2723
+ x+=["300C,0080"] and y+=[["SQ"]] and z+=["Referenced Dose Sequence"]
2724
+ x+=["300C,00A0"] and y+=[["IS"]] and z+=["Referenced Tolerance Table Number"]
2725
+ x+=["300C,00B0"] and y+=[["SQ"]] and z+=["Referenced Bolus Sequence"]
2726
+ x+=["300C,00C0"] and y+=[["IS"]] and z+=["Referenced Wedge Number"]
2727
+ x+=["300C,00D0"] and y+=[["IS"]] and z+=["Referenced Compensator Number"]
2728
+ x+=["300C,00E0"] and y+=[["IS"]] and z+=["Referenced Block Number"]
2729
+ x+=["300C,00F0"] and y+=[["IS"]] and z+=["Referenced Control Point Index"]
2730
+ x+=["300C,00F2"] and y+=[["SQ"]] and z+=["Referenced Control Point Sequence"]
2731
+ x+=["300C,00F4"] and y+=[["IS"]] and z+=["Referenced Start Control Point Index"]
2732
+ x+=["300C,00F6"] and y+=[["IS"]] and z+=["Referenced Stop Control Point Index"]
2733
+ x+=["300C,0100"] and y+=[["IS"]] and z+=["Referenced Range Shifter Number"]
2734
+ x+=["300C,0102"] and y+=[["IS"]] and z+=["Referenced Lateral Spreading Device Number"]
2735
+ x+=["300C,0104"] and y+=[["IS"]] and z+=["Referenced Range Modulator Number"]
2736
+ # Group 300E
2737
+ x+=["300E,0002"] and y+=[["CS"]] and z+=["Approval Status"]
2738
+ x+=["300E,0004"] and y+=[["DA"]] and z+=["Review Date"]
2739
+ x+=["300E,0005"] and y+=[["TM"]] and z+=["Review Time"]
2740
+ x+=["300E,0008"] and y+=[["PN"]] and z+=["Reviewer Name"]
2741
+ # Group 4000
2742
+ x+=["4000,0010"] and y+=[["LT"]] and z+=["Arbitrary"] # RET
2743
+ x+=["4000,4000"] and y+=[["LT"]] and z+=["Text Comments"] # RET
2744
+ # Group 4008
2745
+ x+=["4008,0040"] and y+=[["SH"]] and z+=["Results ID"] # RET
2746
+ x+=["4008,0042"] and y+=[["LO"]] and z+=["Results ID Issuer"] # RET
2747
+ x+=["4008,0050"] and y+=[["SQ"]] and z+=["Referenced Interpretation Sequence"] # RET
2748
+ x+=["4008,0100"] and y+=[["DA"]] and z+=["Interpretation Recorded Date"] # RET
2749
+ x+=["4008,0101"] and y+=[["TM"]] and z+=["Interpretation Recorded Time"] # RET
2750
+ x+=["4008,0102"] and y+=[["PN"]] and z+=["Interpretation Recorder"] # RET
2751
+ x+=["4008,0103"] and y+=[["LO"]] and z+=["Reference to Recorded Sound"] # RET
2752
+ x+=["4008,0108"] and y+=[["DA"]] and z+=["Interpretation Transcription Date"] # RET
2753
+ x+=["4008,0109"] and y+=[["TM"]] and z+=["Interpretation Transcription Time"] # RET
2754
+ x+=["4008,010A"] and y+=[["PN"]] and z+=["Interpretation Transcriber"] # RET
2755
+ x+=["4008,010B"] and y+=[["ST"]] and z+=["Interpretation Text"] # RET
2756
+ x+=["4008,010C"] and y+=[["PN"]] and z+=["Interpretation Author"] # RET
2757
+ x+=["4008,0111"] and y+=[["SQ"]] and z+=["Interpretation Approver Sequence"] # RET
2758
+ x+=["4008,0112"] and y+=[["DA"]] and z+=["Interpretation Approval Date"] # RET
2759
+ x+=["4008,0113"] and y+=[["TM"]] and z+=["Interpretation Approval Time"] # RET
2760
+ x+=["4008,0114"] and y+=[["PN"]] and z+=["Physician Approving Interpretation"] # RET
2761
+ x+=["4008,0115"] and y+=[["LT"]] and z+=["Interpretation Diagnosis Description"] # RET
2762
+ x+=["4008,0117"] and y+=[["SQ"]] and z+=["Interpretation Diagnosis Code Sequence"] # RET
2763
+ x+=["4008,0118"] and y+=[["SQ"]] and z+=["Results Distribution List Sequence"] # RET
2764
+ x+=["4008,0119"] and y+=[["PN"]] and z+=["Distribution Name"] # RET
2765
+ x+=["4008,011A"] and y+=[["LO"]] and z+=["Distribution Address"] # RET
2766
+ x+=["4008,0200"] and y+=[["SH"]] and z+=["Interpretation ID"] # RET
2767
+ x+=["4008,0202"] and y+=[["LO"]] and z+=["Interpretation ID Issuer"] # RET
2768
+ x+=["4008,0210"] and y+=[["CS"]] and z+=["Interpretation Type ID"] # RET
2769
+ x+=["4008,0212"] and y+=[["CS"]] and z+=["Interpretation Status ID"] # RET
2770
+ x+=["4008,0300"] and y+=[["ST"]] and z+=["Impressions"] # RET
2771
+ x+=["4008,4000"] and y+=[["ST"]] and z+=["Results Comments"] # RET
2772
+ # Group 4FFE
2773
+ x+=["4FFE,0001"] and y+=[["SQ"]] and z+=["MAC Parameters Sequence"]
2774
+ # Group 50xx
2775
+ x+=["50xx,0005"] and y+=[["US"]] and z+=["Curve Dimensions"] # RET
2776
+ x+=["50xx,0010"] and y+=[["US"]] and z+=["Number of Points"] # RET
2777
+ x+=["50xx,0020"] and y+=[["CS"]] and z+=["Type of Data"] # RET
2778
+ x+=["50xx,0022"] and y+=[["LO"]] and z+=["Curve Description"] # RET
2779
+ x+=["50xx,0030"] and y+=[["SH"]] and z+=["Axis Units"] # RET
2780
+ x+=["50xx,0040"] and y+=[["SH"]] and z+=["Axis Labels"] # RET
2781
+ x+=["50xx,0103"] and y+=[["US"]] and z+=["Data Value Representation"] # RET
2782
+ x+=["50xx,0104"] and y+=[["US"]] and z+=["Minimum Coordinate Value"] # RET
2783
+ x+=["50xx,0105"] and y+=[["US"]] and z+=["Maximum Coordinate Value"] # RET
2784
+ x+=["50xx,0106"] and y+=[["SH"]] and z+=["Curve Range"] # RET
2785
+ x+=["50xx,0110"] and y+=[["US"]] and z+=["Curve Data Descriptor"] # RET
2786
+ x+=["50xx,0112"] and y+=[["US"]] and z+=["Coordinate Start Value"] # RET
2787
+ x+=["50xx,0114"] and y+=[["US"]] and z+=["Coordinate Step Value"] # RET
2788
+ x+=["50xx,1001"] and y+=[["CS"]] and z+=["Curve Activation Layer"] # RET
2789
+ x+=["50xx,2000"] and y+=[["US"]] and z+=["Audio Type"] # RET
2790
+ x+=["50xx,2002"] and y+=[["US"]] and z+=["Audio Sample Format"] # RET
2791
+ x+=["50xx,2004"] and y+=[["US"]] and z+=["Number of Channels"] # RET
2792
+ x+=["50xx,2006"] and y+=[["UL"]] and z+=["Number of Samples"] # RET
2793
+ x+=["50xx,2008"] and y+=[["UL"]] and z+=["Sample Rate"] # RET
2794
+ x+=["50xx,200A"] and y+=[["UL"]] and z+=["Total Time"] # RET
2795
+ x+=["50xx,200C"] and y+=[["OW","OB"]] and z+=["Audio Sample Data"] # RET
2796
+ x+=["50xx,200E"] and y+=[["LT"]] and z+=["Audio Comments"] # RET
2797
+ x+=["50xx,2500"] and y+=[["LO"]] and z+=["Curve Label"] # RET
2798
+ x+=["50xx,2600"] and y+=[["SQ"]] and z+=["Curve Referenced Overlay Sequence"] # RET
2799
+ x+=["50xx,2610"] and y+=[["US"]] and z+=["Curve Referenced Overlay Group"] # RET
2800
+ x+=["50xx,3000"] and y+=[["OW","OB"]] and z+=["Curve Data"] # RET
2801
+ # Group 5200
2802
+ x+=["5200,9229"] and y+=[["SQ"]] and z+=["Shared Functional Groups Sequence"]
2803
+ x+=["5200,9230"] and y+=[["SQ"]] and z+=["Per-frame Functional Groups Sequence"]
2804
+ # Group 5400
2805
+ x+=["5400,0100"] and y+=[["SQ"]] and z+=["Waveform Sequence"]
2806
+ x+=["5400,0110"] and y+=[["OB","OW"]] and z+=["Channel Minimum Value"]
2807
+ x+=["5400,0112"] and y+=[["OB","OW"]] and z+=["Channel Maximum Value"]
2808
+ x+=["5400,1004"] and y+=[["US"]] and z+=["Waveform Bits Allocated"]
2809
+ x+=["5400,1006"] and y+=[["CS"]] and z+=["Waveform Sample Interpretation"]
2810
+ x+=["5400,100A"] and y+=[["OB","OW"]] and z+=["Waveform Padding Value"]
2811
+ x+=["5400,1010"] and y+=[["OB","OW"]] and z+=["Waveform Data"]
2812
+ # Group 5600
2813
+ x+=["5600,0010"] and y+=[["OF"]] and z+=["First Order Phase Correction Angle"]
2814
+ x+=["5600,0020"] and y+=[["OF"]] and z+=["Spectroscopy Data"]
2815
+ # Group 60xx
2816
+ x+=["60xx,0010"] and y+=[["US"]] and z+=["Overlay Rows"]
2817
+ x+=["60xx,0011"] and y+=[["US"]] and z+=["Overlay Columns"]
2818
+ x+=["60xx,0012"] and y+=[["US"]] and z+=["Overlay Planes"]
2819
+ x+=["60xx,0015"] and y+=[["IS"]] and z+=["Number of Frames in Overlay"]
2820
+ x+=["60xx,0022"] and y+=[["LO"]] and z+=["Overlay Description"]
2821
+ x+=["60xx,0040"] and y+=[["CS"]] and z+=["Overlay Type"]
2822
+ x+=["60xx,0045"] and y+=[["LO"]] and z+=["Overlay Subtype"]
2823
+ x+=["60xx,0050"] and y+=[["SS"]] and z+=["Overlay Origin"]
2824
+ x+=["60xx,0051"] and y+=[["US"]] and z+=["Image Frame Origin"]
2825
+ x+=["60xx,0052"] and y+=[["US"]] and z+=["Overlay Plane Origin"]
2826
+ x+=["60xx,0060"] and y+=[["CS"]] and z+=["Overlay Compression Code"] # RET
2827
+ x+=["60xx,0100"] and y+=[["US"]] and z+=["Overlay Bits Allocated"]
2828
+ x+=["60xx,0102"] and y+=[["US"]] and z+=["Overlay Bit Position"]
2829
+ x+=["60xx,0110"] and y+=[["CS"]] and z+=["Overlay Format"] # RET
2830
+ x+=["60xx,0200"] and y+=[["US"]] and z+=["Overlay Location"] # RET
2831
+ x+=["60xx,1001"] and y+=[["CS"]] and z+=["Overlay Activation Layer"]
2832
+ x+=["60xx,1100"] and y+=[["US"]] and z+=["Overlay Descriptor - Gray"] # RET
2833
+ x+=["60xx,1101"] and y+=[["US"]] and z+=["Overlay Descriptor - Red"] # RET
2834
+ x+=["60xx,1102"] and y+=[["US"]] and z+=["Overlay Descriptor - Green"] # RET
2835
+ x+=["60xx,1103"] and y+=[["US"]] and z+=["Overlay Descriptor - Blue"] # RET
2836
+ x+=["60xx,1200"] and y+=[["US"]] and z+=["Overlays- Gray"] # RET
2837
+ x+=["60xx,1201"] and y+=[["US"]] and z+=["Overlays - Red"] # RET
2838
+ x+=["60xx,1202"] and y+=[["US"]] and z+=["Overlays - Green"] # RET
2839
+ x+=["60xx,1203"] and y+=[["US"]] and z+=["Overlays- Blue"] # RET
2840
+ x+=["60xx,1301"] and y+=[["IS"]] and z+=["ROI Area"]
2841
+ x+=["60xx,1302"] and y+=[["DS"]] and z+=["ROI Mean"]
2842
+ x+=["60xx,1303"] and y+=[["DS"]] and z+=["ROI Standard Deviation"]
2843
+ x+=["60xx,1500"] and y+=[["LO"]] and z+=["Overlay Label"]
2844
+ x+=["60xx,3000"] and y+=[["OB","OW"]] and z+=["Overlay Data"]
2845
+ x+=["60xx,4000"] and y+=[["LT"]] and z+=["Overlay Comments"] # RET
2846
+ # Pixel data and structural tags:
2847
+ x+=["7FE0,0010"] and y+=[["OW","OB"]] and z+=["Pixel Data"]
2848
+ x+=["FFFA,FFFA"] and y+=[["SQ"]] and z+=["Digital Signatures Sequence"]
2849
+ x+=["FFFC,FFFC"] and y+=[["OB"]] and z+=["Data Set Trailing Padding"]
2850
+ x+=["FFFE,E000"] and y+=[["()"]] and z+=["Item"] # VR does not exist for this tag
2851
+ x+=["FFFE,E00D"] and y+=[["()"]] and z+=["Item Delimitation Item"] # VR does not exist for this tag
2852
+ x+=["FFFE,E0DD"] and y+=[["()"]] and z+=["Sequence Delimitation Item"] # VR does not exist for this tag
2853
+ # Return the array information:
2854
+ return [x,y,z]
2855
+ end # End of method load_tags()
2856
+
2857
+
2858
+ end # End of class Dictionary
2859
+ end # End of Module