-
Notifications
You must be signed in to change notification settings - Fork 48
/
dgate.dic
4037 lines (4036 loc) · 413 KB
/
dgate.dic
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# mvh mist :
# PET: 0018,0073....
# QUEUE management: 2100,0010....
# visible light: 0008,0105....
# modality performed step: 0008,2229, 0040,0220....
# presentation LUT: 2050,0010....
# structured reporting: 0040,a007...
# stored print related SOP classes: 0018,1011....
# waveform interchange: 0008,0062....
# correction proposal 71: 0008,0061
# correction proposal 72: 0040,0020
# correction proposal 74: 0020,1209
# correction proposal 101: 0008,0051....
# 19990915 ljz Moved all uneven (private) group-codes to dd-private.txt
# 20030706 mvh Add NKI Pixel Data
# 20030802 ljz Adjusted to dicom 2001 (retired elements still in lib)
# 20060913 ljz Adjusted to dicom 2005
# 20090812 lmb Added Philips private tags
# 20090828 ljz Put those private tags in alphabetical order
# 20091124 lmb Added more Philips private tags
# 20100909 ljz Changed two MRI private tags (2005,100d) (2005,100e)
# 20101004 ljz Added
# 20120628 ljz Adjusted to dicom 2011 (VERS="4")
# 20121016 mvh Added conquest private commands
# 20160425 mvh Fix PixelPaddingValue
# 20200125 mvh Added ConquestSplit, ConquestImageQueryOrder, ConquestMoveOriginator
# 20210620 mvh Made 2005,1084; 2005,140F; 2005,1580 sequence to support modern Philips MR
# 20221016 mvh Added conquest console command support elements
(0000,0000) VERS="3" VR="UL" VM="1" Keyword="GroupLength" Name="Group Length"
(0000,0001) VERS="2" VR="UL" VM="1" Keyword="CommandLengthToEnd" Name="Command Length to End"
(0000,0002) VERS="3" VR="UI" VM="1" Keyword="AffectedSOPClassUID" Name="Affected SOP Class UID"
(0000,0003) VERS="3" VR="UI" VM="1" Keyword="RequestedSOPClassUID" Name="Requested SOP Class UID"
(0000,0010) VERS="2" VR="LO" VM="1" Keyword="CommandRecognitionCode" Name="Command Recognition Code"
(0000,0100) VERS="3" VR="US" VM="1" Keyword="CommandField" Name="Command Field"
(0000,0110) VERS="3" VR="US" VM="1" Keyword="MessageID" Name="Message ID"
(0000,0120) VERS="3" VR="US" VM="1" Keyword="MessageIDBeingRespondedTo" Name="Message ID Being Responded To"
(0000,0200) VERS="2" VR="AE" VM="1" Keyword="Initiator" Name="Initiator"
(0000,0300) VERS="2" VR="AE" VM="1" Keyword="Receiver" Name="Receiver"
(0000,0400) VERS="2" VR="AE" VM="1" Keyword="FindLocation" Name="Find Location"
(0000,0600) VERS="3" VR="AE" VM="1" Keyword="MoveDestination" Name="Move Destination"
(0000,0700) VERS="3" VR="US" VM="1" Keyword="Priority" Name="Priority"
(0000,0800) VERS="3" VR="US" VM="1" Keyword="DataSetType" Name="Data Set Type"
(0000,0850) VERS="2" VR="US" VM="1" Keyword="NumberOfMatches" Name="Number Of Matches"
(0000,0860) VERS="2" VR="US" VM="1" Keyword="ResponseSequenceNumber" Name="Response Sequence Number"
(0000,0900) VERS="3" VR="US" VM="1" Keyword="Status" Name="Status"
(0000,0901) VERS="3" VR="AT" VM="1-n" Keyword="OffendingElement" Name="Offending Element"
(0000,0902) VERS="3" VR="LO" VM="1" Keyword="ErrorComment" Name="Error Comment"
(0000,0903) VERS="3" VR="US" VM="1" Keyword="ErrorID" Name="Error ID"
(0000,1000) VERS="3" VR="UI" VM="1" Keyword="AffectedSOPInstanceUID" Name="Affected SOP Instance UID"
(0000,1001) VERS="3" VR="UI" VM="1" Keyword="RequestedSOPInstanceUID" Name="Requested SOP Instance UID"
(0000,1002) VERS="3" VR="US" VM="1" Keyword="EventTypeID" Name="Event Type ID"
(0000,1005) VERS="3" VR="AT" VM="1-n" Keyword="AttributeIdentifierList" Name="Attribute Identifier List"
(0000,1008) VERS="3" VR="US" VM="1" Keyword="ActionTypeID" Name="Action Type ID"
(0000,1020) VERS="3" VR="US" VM="1" Keyword="NumberOfRemainingSuboperations" Name="Number Of Remaining Suboperations"
(0000,1021) VERS="3" VR="US" VM="1" Keyword="NumberOfCompletedSuboperations" Name="Number Of Completed Suboperations"
(0000,1022) VERS="3" VR="US" VM="1" Keyword="NumberOfFailedSuboperations" Name="Number Of Failed Suboperations"
(0000,1023) VERS="3" VR="US" VM="1" Keyword="NumberOfWarningSuboperations" Name="Number Of Warning Suboperations"
(0000,1030) VERS="3" VR="AE" VM="1" Keyword="MoveOriginatorApplicationEntityTitle" Name="Move Originator Application Entity Title"
(0000,1031) VERS="3" VR="US" VM="1" Keyword="MoveOriginatorMessageID" Name="Move Originator Message ID"
(0000,4000) VERS="2" VR="LO" VM="1" Keyword="DialogReceiver" Name="Dialog Receiver"
(0000,4010) VERS="2" VR="LO" VM="1" Keyword="TerminalType" Name="Terminal Type"
(0000,5010) VERS="3" VR="SH" VM="1" Keyword="MessageSetID" Name="Message Set ID"
(0000,5020) VERS="3" VR="SH" VM="1" Keyword="EndMessageSet" Name="End Message Set"
(0000,5110) VERS="2" VR="LO" VM="1" Keyword="DisplayFormat" Name="Display Format"
(0000,5120) VERS="2" VR="LO" VM="1" Keyword="PagePositionID" Name="Page Position ID"
(0000,5130) VERS="2" VR="LO" VM="1" Keyword="TextFormatID" Name="Text Format ID"
(0000,5140) VERS="2" VR="LO" VM="1" Keyword="NormalReverse" Name="Normal Reverse"
(0000,5150) VERS="2" VR="LO" VM="1" Keyword="AddGrayScale" Name="Add Gray Scale"
(0000,5160) VERS="2" VR="LO" VM="1" Keyword="Borders" Name="Borders"
(0000,5170) VERS="2" VR="IS" VM="1" Keyword="Copies" Name="Copies"
(0000,5180) VERS="2" VR="LO" VM="1" Keyword="OldMagnificationType" Name="OldMagnificationType"
(0000,5190) VERS="2" VR="LO" VM="1" Keyword="Erase" Name="Erase"
(0000,51A0) VERS="2" VR="LO" VM="1" Keyword="Print" Name="Print"
(0000,51B0) VERS="2" VR="US" VM="1-n" Keyword="Overlays" Name="Overlays"
(0002,0000) VERS="4" VR="UL" VM="1" Keyword="FileMetaInformationGroupLength" Name="File Meta Information Group Length"
(0002,0001) VERS="4" VR="OB" VM="1" Keyword="FileMetaInformationVersion" Name="File Meta Information Version"
(0002,0001) VERS="3" VR="OB" VM="1" Keyword="FileMetaInformationVersion" Name="File Meta Information Version"
(0002,0002) VERS="4" VR="UI" VM="1" Keyword="MediaStorageSOPClassUID" Name="Media Storage SOP Class UID"
(0002,0003) VERS="4" VR="UI" VM="1" Keyword="MediaStorageSOPInstanceUID" Name="Media Storage SOP Instance UID"
(0002,0010) VERS="4" VR="UI" VM="1" Keyword="TransferSyntaxUID" Name="Transfer Syntax UID"
(0002,0012) VERS="4" VR="UI" VM="1" Keyword="ImplementationClassUID" Name="Implementation Class UID"
(0002,0013) VERS="4" VR="SH" VM="1" Keyword="ImplementationVersionName" Name="Implementation Version Name"
(0002,0016) VERS="4" VR="AE" VM="1" Keyword="SourceApplicationEntityTitle" Name="Source Application Entity Title"
(0002,0100) VERS="4" VR="UI" VM="1" Keyword="PrivateInformationCreatorUID" Name="Private Information Creator UID"
(0002,0102) VERS="4" VR="OB" VM="1" Keyword="PrivateInformation" Name="Private Information"
(0004,0000) VERS="3" VR="UL" VM="1" Keyword="FileSetGroupLength" Name="File Set Group Length"
(0004,1130) VERS="4" VR="CS" VM="1" Keyword="FileSetID" Name="File-set ID"
(0004,1141) VERS="4" VR="CS" VM="1-8" Keyword="FileSetDescriptorFileID" Name="File-set Descriptor File ID"
(0004,1142) VERS="4" VR="CS" VM="1" Keyword="SpecificCharacterSetOfFileSetDescriptorFile" Name="Specific Character Set of File-set Descriptor File"
(0004,1200) VERS="4" VR="UL" VM="1" Keyword="OffsetOfTheFirstDirectoryRecordOfTheRootDirectoryEntity" Name="Offset of the First Directory Record of the Root Directory Entity"
(0004,1202) VERS="4" VR="UL" VM="1" Keyword="OffsetOfTheLastDirectoryRecordOfTheRootDirectoryEntity" Name="Offset of the Last Directory Record of the Root Directory Entity"
(0004,1212) VERS="4" VR="US" VM="1" Keyword="FileSetConsistencyFlag" Name="File-set Consistency Flag"
(0004,1220) VERS="4" VR="SQ" VM="1" Keyword="DirectoryRecordSequence" Name="Directory Record Sequence"
(0004,1400) VERS="4" VR="UL" VM="1" Keyword="OffsetOfTheNextDirectoryRecord" Name="Offset of the Next Directory Record"
(0004,1410) VERS="4" VR="US" VM="1" Keyword="RecordInUseFlag" Name="Record In-use Flag"
(0004,1420) VERS="4" VR="UL" VM="1" Keyword="OffsetOfReferencedLowerLevelDirectoryEntity" Name="Offset of Referenced Lower-Level Directory Entity"
(0004,1430) VERS="4" VR="CS" VM="1" Keyword="DirectoryRecordType" Name="Directory Record Type"
(0004,1432) VERS="4" VR="UI" VM="1" Keyword="PrivateRecordUID" Name="Private Record UID"
(0004,1500) VERS="4" VR="CS" VM="1-8" Keyword="ReferencedFileID" Name="Referenced File ID"
(0004,1504) VERS="4RET" VR="UL" VM="1" Keyword="MRDRDirectoryRecordOffset" Name="MRDR Directory Record Offset"
(0004,1510) VERS="4" VR="UI" VM="1" Keyword="ReferencedSOPClassUIDInFile" Name="Referenced SOP Class UID in File"
(0004,1511) VERS="4" VR="UI" VM="1" Keyword="ReferencedSOPInstanceUIDInFile" Name="Referenced SOP Instance UID in File"
(0004,1512) VERS="4" VR="UI" VM="1" Keyword="ReferencedTransferSyntaxUIDInFile" Name="Referenced Transfer Syntax UID in File"
(0004,151A) VERS="4" VR="UI" VM="1-n" Keyword="ReferencedRelatedGeneralSOPClassUIDInFile" Name="Referenced Related General SOP Class UID in File"
(0004,1600) VERS="4RET" VR="UL" VM="1" Keyword="NumberOfReferences" Name="Number of References"
(0008,0000) VERS="3" VR="UL" VM="1" Keyword="IdentifyingGroupLength" Name="Identifying Group Length"
(0008,0001) VERS="4RET" VR="UL" VM="1" Keyword="LengthToEnd" Name="Length to End"
(0008,0005) VERS="4" VR="CS" VM="1-n" Keyword="SpecificCharacterSet" Name="Specific Character Set"
(0008,0006) VERS="4" VR="SQ" VM="1" Keyword="LanguageCodeSequence" Name="Language Code Sequence"
(0008,0008) VERS="4" VR="CS" VM="2-n" Keyword="ImageType" Name="Image Type"
(0008,0010) VERS="4RET" VR="SH" VM="1" Keyword="RecognitionCode" Name="Recognition Code"
(0008,0012) VERS="4" VR="DA" VM="1" Keyword="InstanceCreationDate" Name="Instance Creation Date"
(0008,0013) VERS="4" VR="TM" VM="1" Keyword="InstanceCreationTime" Name="Instance Creation Time"
(0008,0014) VERS="4" VR="UI" VM="1" Keyword="InstanceCreatorUID" Name="Instance Creator UID"
(0008,0016) VERS="4" VR="UI" VM="1" Keyword="SOPClassUID" Name="SOP Class UID"
(0008,0018) VERS="4" VR="UI" VM="1" Keyword="SOPInstanceUID" Name="SOP Instance UID"
(0008,001A) VERS="4" VR="UI" VM="1-n" Keyword="RelatedGeneralSOPClassUID" Name="Related General SOP Class UID"
(0008,001B) VERS="4" VR="UI" VM="1" Keyword="OriginalSpecializedSOPClassUID" Name="Original Specialized SOP Class UID"
(0008,0020) VERS="4" VR="DA" VM="1" Keyword="StudyDate" Name="Study Date"
(0008,0021) VERS="4" VR="DA" VM="1" Keyword="SeriesDate" Name="Series Date"
(0008,0022) VERS="4" VR="DA" VM="1" Keyword="AcquisitionDate" Name="Acquisition Date"
(0008,0023) VERS="4" VR="DA" VM="1" Keyword="ContentDate" Name="Content Date"
(0008,0024) VERS="4RET" VR="DA" VM="1" Keyword="OverlayDate" Name="Overlay Date"
(0008,0025) VERS="4RET" VR="DA" VM="1" Keyword="CurveDate" Name="Curve Date"
(0008,002A) VERS="4" VR="DT" VM="1" Keyword="AcquisitionDateTime" Name="Acquisition DateTime"
(0008,0030) VERS="4" VR="TM" VM="1" Keyword="StudyTime" Name="Study Time"
(0008,0031) VERS="4" VR="TM" VM="1" Keyword="SeriesTime" Name="Series Time"
(0008,0032) VERS="4" VR="TM" VM="1" Keyword="AcquisitionTime" Name="Acquisition Time"
(0008,0033) VERS="4" VR="TM" VM="1" Keyword="ContentTime" Name="Content Time"
(0008,0034) VERS="4RET" VR="TM" VM="1" Keyword="OverlayTime" Name="Overlay Time"
(0008,0035) VERS="4RET" VR="TM" VM="1" Keyword="CurveTime" Name="Curve Time"
(0008,0040) VERS="4RET" VR="US" VM="1" Keyword="DataSetType" Name="Data Set Type"
(0008,0041) VERS="4RET" VR="LO" VM="1" Keyword="DataSetSubtype" Name="Data Set Subtype"
(0008,0042) VERS="4RET" VR="CS" VM="1" Keyword="NuclearMedicineSeriesType" Name="Nuclear Medicine Series Type"
(0008,0050) VERS="4" VR="SH" VM="1" Keyword="AccessionNumber" Name="Accession Number"
(0008,0051) VERS="4" VR="SQ" VM="1" Keyword="IssuerOfAccessionNumberSequence" Name="Issuer of Accession Number Sequence"
(0008,0052) VERS="4" VR="CS" VM="1" Keyword="QueryRetrieveLevel" Name="Query/Retrieve Level"
(0008,0054) VERS="4" VR="AE" VM="1-n" Keyword="RetrieveAETitle" Name="Retrieve AE Title"
(0008,0056) VERS="4" VR="CS" VM="1" Keyword="InstanceAvailability" Name="Instance Availability"
(0008,0058) VERS="4" VR="UI" VM="1-n" Keyword="FailedSOPInstanceUIDList" Name="Failed SOP Instance UID List"
(0008,0060) VERS="4" VR="CS" VM="1" Keyword="Modality" Name="Modality"
(0008,0061) VERS="4" VR="CS" VM="1-n" Keyword="ModalitiesInStudy" Name="Modalities in Study"
(0008,0062) VERS="4" VR="UI" VM="1-n" Keyword="SOPClassesInStudy" Name="SOP Classes in Study"
(0008,0064) VERS="4" VR="CS" VM="1" Keyword="ConversionType" Name="Conversion Type"
(0008,0068) VERS="4" VR="CS" VM="1" Keyword="PresentationIntentType" Name="Presentation Intent Type"
(0008,0070) VERS="4" VR="LO" VM="1" Keyword="Manufacturer" Name="Manufacturer"
(0008,0080) VERS="4" VR="LO" VM="1" Keyword="InstitutionName" Name="Institution Name"
(0008,0081) VERS="4" VR="ST" VM="1" Keyword="InstitutionAddress" Name="Institution Address"
(0008,0082) VERS="4" VR="SQ" VM="1" Keyword="InstitutionCodeSequence" Name="Institution Code Sequence"
(0008,0090) VERS="4" VR="PN" VM="1" Keyword="ReferringPhysicianName" Name="Referring Physicians Name"
(0008,0092) VERS="4" VR="ST" VM="1" Keyword="ReferringPhysicianAddress" Name="Referring Physicians Address"
(0008,0094) VERS="4" VR="SH" VM="1-n" Keyword="ReferringPhysicianTelephoneNumbers" Name="Referring Physicians Telephone Numbers"
(0008,0096) VERS="4" VR="SQ" VM="1" Keyword="ReferringPhysicianIdentificationSequence" Name="Referring Physician Identification Sequence"
(0008,0100) VERS="4" VR="SH" VM="1" Keyword="CodeValue" Name="Code Value"
(0008,0102) VERS="4" VR="SH" VM="1" Keyword="CodingSchemeDesignator" Name="Coding Scheme Designator"
(0008,0103) VERS="4" VR="SH" VM="1" Keyword="CodingSchemeVersion" Name="Coding Scheme Version"
(0008,0104) VERS="4" VR="LO" VM="1" Keyword="CodeMeaning" Name="Code Meaning"
(0008,0105) VERS="4" VR="CS" VM="1" Keyword="MappingResource" Name="Mapping Resource"
(0008,0106) VERS="4" VR="DT" VM="1" Keyword="ContextGroupVersion" Name="Context Group Version"
(0008,0107) VERS="4" VR="DT" VM="1" Keyword="ContextGroupLocalVersion" Name="Context Group Local Version"
(0008,010B) VERS="4" VR="CS" VM="1" Keyword="ContextGroupExtensionFlag" Name="Context Group Extension Flag"
(0008,010C) VERS="4" VR="UI" VM="1" Keyword="CodingSchemeUID" Name="Coding Scheme UID"
(0008,010D) VERS="4" VR="UI" VM="1" Keyword="ContextGroupExtensionCreatorUID" Name="Context Group Extension Creator UID"
(0008,010F) VERS="4" VR="CS" VM="1" Keyword="ContextIdentifier" Name="Context Identifier"
(0008,0110) VERS="4" VR="SQ" VM="1" Keyword="CodingSchemeIdentificationSequence" Name="Coding Scheme Identification Sequence"
(0008,0112) VERS="4" VR="LO" VM="1" Keyword="CodingSchemeRegistry" Name="Coding Scheme Registry"
(0008,0114) VERS="4" VR="ST" VM="1" Keyword="CodingSchemeExternalID" Name="Coding Scheme External ID"
(0008,0115) VERS="4" VR="ST" VM="1" Keyword="CodingSchemeName" Name="Coding Scheme Name"
(0008,0116) VERS="4" VR="ST" VM="1" Keyword="CodingSchemeResponsibleOrganization" Name="Coding Scheme Responsible Organization"
(0008,0117) VERS="4" VR="UI" VM="1" Keyword="ContextUID" Name="Context UID"
(0008,0201) VERS="4" VR="SH" VM="1" Keyword="TimezoneOffsetFromUTC" Name="Timezone Offset From UTC"
(0008,1000) VERS="4RET" VR="AE" VM="1" Keyword="NetworkID" Name="Network ID"
(0008,1010) VERS="4" VR="SH" VM="1" Keyword="StationName" Name="Station Name"
(0008,1030) VERS="4" VR="LO" VM="1" Keyword="StudyDescription" Name="Study Description"
(0008,1032) VERS="4" VR="SQ" VM="1" Keyword="ProcedureCodeSequence" Name="Procedure Code Sequence"
(0008,103E) VERS="4" VR="LO" VM="1" Keyword="SeriesDescription" Name="Series Description"
(0008,103F) VERS="4" VR="SQ" VM="1" Keyword="SeriesDescriptionCodeSequence" Name="Series Description Code Sequence"
(0008,1040) VERS="4" VR="LO" VM="1" Keyword="InstitutionalDepartmentName" Name="Institutional Department Name"
(0008,1048) VERS="4" VR="PN" VM="1-n" Keyword="PhysiciansOfRecord" Name="Physician(s) of Record"
(0008,1049) VERS="4" VR="SQ" VM="1" Keyword="PhysiciansOfRecordIdentificationSequence" Name="Physician(s) of Record Identification Sequence"
(0008,1050) VERS="4" VR="PN" VM="1-n" Keyword="PerformingPhysicianName" Name="Performing Physicians Name"
(0008,1052) VERS="4" VR="SQ" VM="1" Keyword="PerformingPhysicianIdentificationSequence" Name="Performing Physician Identification Sequence"
(0008,1060) VERS="4" VR="PN" VM="1-n" Keyword="NameOfPhysiciansReadingStudy" Name="Name of Physician(s) Reading Study"
(0008,1062) VERS="4" VR="SQ" VM="1" Keyword="PhysiciansReadingStudyIdentificationSequence" Name="Physician(s) Reading Study Identification Sequence"
(0008,1070) VERS="4" VR="PN" VM="1-n" Keyword="OperatorsName" Name="Operators Name"
(0008,1072) VERS="4" VR="SQ" VM="1" Keyword="OperatorIdentificationSequence" Name="Operator Identification Sequence"
(0008,1080) VERS="4" VR="LO" VM="1-n" Keyword="AdmittingDiagnosesDescription" Name="Admitting Diagnoses Description"
(0008,1084) VERS="4" VR="SQ" VM="1" Keyword="AdmittingDiagnosesCodeSequence" Name="Admitting Diagnoses Code Sequence"
(0008,1090) VERS="4" VR="LO" VM="1" Keyword="ManufacturerModelName" Name="Manufacturers Model Name"
(0008,1100) VERS="4RET" VR="SQ" VM="1" Keyword="ReferencedResultsSequence" Name="Referenced Results Sequence"
(0008,1110) VERS="4" VR="SQ" VM="1" Keyword="ReferencedStudySequence" Name="Referenced Study Sequence"
(0008,1111) VERS="4" VR="SQ" VM="1" Keyword="ReferencedPerformedProcedureStepSequence" Name="Referenced Performed Procedure Step Sequence"
(0008,1115) VERS="4" VR="SQ" VM="1" Keyword="ReferencedSeriesSequence" Name="Referenced Series Sequence"
(0008,1120) VERS="4" VR="SQ" VM="1" Keyword="ReferencedPatientSequence" Name="Referenced Patient Sequence"
(0008,1125) VERS="4" VR="SQ" VM="1" Keyword="ReferencedVisitSequence" Name="Referenced Visit Sequence"
(0008,1130) VERS="4RET" VR="SQ" VM="1" Keyword="ReferencedOverlaySequence" Name="Referenced Overlay Sequence"
(0008,1134) VERS="4" VR="SQ" VM="1" Keyword="ReferencedStereometricInstanceSequence" Name="Referenced Stereometric Instance Sequence"
(0008,113A) VERS="4" VR="SQ" VM="1" Keyword="ReferencedWaveformSequence" Name="Referenced Waveform Sequence"
(0008,1140) VERS="4" VR="SQ" VM="1" Keyword="ReferencedImageSequence" Name="Referenced Image Sequence"
(0008,1145) VERS="4RET" VR="SQ" VM="1" Keyword="ReferencedCurveSequence" Name="Referenced Curve Sequence"
(0008,114A) VERS="4" VR="SQ" VM="1" Keyword="ReferencedInstanceSequence" Name="Referenced Instance Sequence"
(0008,114B) VERS="4" VR="SQ" VM="1" Keyword="ReferencedRealWorldValueMappingInstanceSequence" Name="Referenced Real World Value Mapping Instance Sequence"
(0008,1150) VERS="4" VR="UI" VM="1" Keyword="ReferencedSOPClassUID" Name="Referenced SOP Class UID"
(0008,1155) VERS="4" VR="UI" VM="1" Keyword="ReferencedSOPInstanceUID" Name="Referenced SOP Instance UID"
(0008,115A) VERS="4" VR="UI" VM="1-n" Keyword="SOPClassesSupported" Name="SOP Classes Supported"
(0008,1160) VERS="4" VR="IS" VM="1-n" Keyword="ReferencedFrameNumber" Name="Referenced Frame Number"
(0008,1161) VERS="4" VR="UL" VM="1-n" Keyword="SimpleFrameList" Name="Simple Frame List"
(0008,1162) VERS="4" VR="UL" VM="3-3n" Keyword="CalculatedFrameList" Name="Calculated Frame List"
(0008,1163) VERS="4" VR="FD" VM="2" Keyword="TimeRange" Name="Time Range"
(0008,1164) VERS="4" VR="SQ" VM="1" Keyword="FrameExtractionSequence" Name="Frame Extraction Sequence"
(0008,1167) VERS="4" VR="UI" VM="1" Keyword="MultiFrameSourceSOPInstanceUID" Name="Multi-Frame Source SOP Instance UID "
(0008,1195) VERS="4" VR="UI" VM="1" Keyword="TransactionUID" Name="Transaction UID"
(0008,1197) VERS="4" VR="US" VM="1" Keyword="FailureReason" Name="Failure Reason"
(0008,1198) VERS="4" VR="SQ" VM="1" Keyword="FailedSOPSequence" Name="Failed SOP Sequence"
(0008,1199) VERS="4" VR="SQ" VM="1" Keyword="ReferencedSOPSequence" Name="Referenced SOP Sequence"
(0008,1200) VERS="4" VR="SQ" VM="1" Keyword="StudiesContainingOtherReferencedInstancesSequence" Name="Studies Containing Other Referenced Instances Sequence"
(0008,1250) VERS="4" VR="SQ" VM="1" Keyword="RelatedSeriesSequence" Name="Related Series Sequence"
(0008,2110) VERS="4RET" VR="CS" VM="1" Keyword="LossyImageCompressionRetired" Name="Lossy Image Compression (Retired)"
(0008,2111) VERS="4" VR="ST" VM="1" Keyword="DerivationDescription" Name="Derivation Description"
(0008,2112) VERS="4" VR="SQ" VM="1" Keyword="SourceImageSequence" Name="Source Image Sequence"
(0008,2120) VERS="4" VR="SH" VM="1" Keyword="StageName" Name="Stage Name"
(0008,2122) VERS="4" VR="IS" VM="1" Keyword="StageNumber" Name="Stage Number"
(0008,2124) VERS="4" VR="IS" VM="1" Keyword="NumberOfStages" Name="Number of Stages"
(0008,2127) VERS="4" VR="SH" VM="1" Keyword="ViewName" Name="View Name"
(0008,2128) VERS="4" VR="IS" VM="1" Keyword="ViewNumber" Name="View Number"
(0008,2129) VERS="4" VR="IS" VM="1" Keyword="NumberOfEventTimers" Name="Number of Event Timers"
(0008,212A) VERS="4" VR="IS" VM="1" Keyword="NumberOfViewsInStage" Name="Number of Views in Stage"
(0008,2130) VERS="4" VR="DS" VM="1-n" Keyword="EventElapsedTimes" Name="Event Elapsed Time(s)"
(0008,2132) VERS="4" VR="LO" VM="1-n" Keyword="EventTimerNames" Name="Event Timer Name(s)"
(0008,2133) VERS="4" VR="SQ" VM="1" Keyword="EventTimerSequence" Name="Event Timer Sequence"
(0008,2134) VERS="4" VR="FD" VM="1" Keyword="EventTimeOffset" Name="Event Time Offset"
(0008,2135) VERS="4" VR="SQ" VM="1" Keyword="EventCodeSequence" Name="Event Code Sequence"
(0008,2142) VERS="4" VR="IS" VM="1" Keyword="StartTrim" Name="Start Trim"
(0008,2143) VERS="4" VR="IS" VM="1" Keyword="StopTrim" Name="Stop Trim"
(0008,2144) VERS="4" VR="IS" VM="1" Keyword="RecommendedDisplayFrameRate" Name="Recommended Display Frame Rate"
(0008,2200) VERS="4RET" VR="CS" VM="1" Keyword="TransducerPosition" Name="Transducer Position"
(0008,2204) VERS="4RET" VR="CS" VM="1" Keyword="TransducerOrientation" Name="Transducer Orientation"
(0008,2208) VERS="4RET" VR="CS" VM="1" Keyword="AnatomicStructure" Name="Anatomic Structure"
(0008,2218) VERS="4" VR="SQ" VM="1" Keyword="AnatomicRegionSequence" Name="Anatomic Region Sequence"
(0008,2220) VERS="4" VR="SQ" VM="1" Keyword="AnatomicRegionModifierSequence" Name="Anatomic Region Modifier Sequence"
(0008,2228) VERS="4" VR="SQ" VM="1" Keyword="PrimaryAnatomicStructureSequence" Name="Primary Anatomic Structure Sequence"
(0008,2229) VERS="4" VR="SQ" VM="1" Keyword="AnatomicStructureSpaceOrRegionSequence" Name="Anatomic Structure, Space or Region Sequence"
(0008,2230) VERS="4" VR="SQ" VM="1" Keyword="PrimaryAnatomicStructureModifierSequence" Name="Primary Anatomic Structure Modifier Sequence"
(0008,2240) VERS="4RET" VR="SQ" VM="1" Keyword="TransducerPositionSequence" Name="Transducer Position Sequence"
(0008,2242) VERS="4RET" VR="SQ" VM="1" Keyword="TransducerPositionModifierSequence" Name="Transducer Position Modifier Sequence"
(0008,2244) VERS="4RET" VR="SQ" VM="1" Keyword="TransducerOrientationSequence" Name="Transducer Orientation Sequence"
(0008,2246) VERS="4RET" VR="SQ" VM="1" Keyword="TransducerOrientationModifierSequence" Name="Transducer Orientation Modifier Sequence"
(0008,2251) VERS="4RET" VR="SQ" VM="1" Keyword="AnatomicStructureSpaceOrRegionCodeSequenceTrial" Name="Anatomic Structure Space Or Region Code Sequence (Trial)"
(0008,2253) VERS="4RET" VR="SQ" VM="1" Keyword="AnatomicPortalOfEntranceCodeSequenceTrial" Name="Anatomic Portal Of Entrance Code Sequence (Trial)"
(0008,2255) VERS="4RET" VR="SQ" VM="1" Keyword="AnatomicApproachDirectionCodeSequenceTrial" Name="Anatomic Approach Direction Code Sequence (Trial)"
(0008,2256) VERS="4RET" VR="ST" VM="1" Keyword="AnatomicPerspectiveDescriptionTrial" Name="Anatomic Perspective Description (Trial)"
(0008,2257) VERS="4RET" VR="SQ" VM="1" Keyword="AnatomicPerspectiveCodeSequenceTrial" Name="Anatomic Perspective Code Sequence (Trial)"
(0008,2258) VERS="4RET" VR="ST" VM="1" Keyword="AnatomicLocationOfExaminingInstrumentDescriptionTrial" Name="Anatomic Location Of Examining Instrument Description (Trial)"
(0008,2259) VERS="4RET" VR="SQ" VM="1" Keyword="AnatomicLocationOfExaminingInstrumentCodeSequenceTrial" Name="Anatomic Location Of Examining Instrument Code Sequence (Trial)"
(0008,225A) VERS="4RET" VR="SQ" VM="1" Keyword="AnatomicStructureSpaceOrRegionModifierCodeSequenceTrial" Name="Anatomic Structure Space Or Region Modifier Code Sequence (Trial)"
(0008,225C) VERS="4RET" VR="SQ" VM="1" Keyword="OnAxisBackgroundAnatomicStructureCodeSequenceTrial" Name="OnAxis Background Anatomic Structure Code Sequence (Trial)"
(0008,3001) VERS="4" VR="SQ" VM="1" Keyword="AlternateRepresentationSequence" Name="Alternate Representation Sequence"
(0008,3010) VERS="4" VR="UI" VM="1" Keyword="IrradiationEventUID" Name="Irradiation Event UID"
(0008,4000) VERS="4RET" VR="LT" VM="1" Keyword="IdentifyingComments" Name="Identifying Comments"
(0008,9007) VERS="4" VR="CS" VM="4" Keyword="FrameType" Name="Frame Type"
(0008,9092) VERS="4" VR="SQ" VM="1" Keyword="ReferencedImageEvidenceSequence" Name="Referenced Image Evidence Sequence"
(0008,9121) VERS="4" VR="SQ" VM="1" Keyword="ReferencedRawDataSequence" Name="Referenced Raw Data Sequence"
(0008,9123) VERS="4" VR="UI" VM="1" Keyword="CreatorVersionUID" Name="Creator-Version UID"
(0008,9124) VERS="4" VR="SQ" VM="1" Keyword="DerivationImageSequence" Name="Derivation Image Sequence"
(0008,9154) VERS="4" VR="SQ" VM="1" Keyword="SourceImageEvidenceSequence" Name="Source Image Evidence Sequence"
(0008,9205) VERS="4" VR="CS" VM="1" Keyword="PixelPresentation" Name="Pixel Presentation"
(0008,9206) VERS="4" VR="CS" VM="1" Keyword="VolumetricProperties" Name="Volumetric Properties"
(0008,9207) VERS="4" VR="CS" VM="1" Keyword="VolumeBasedCalculationTechnique" Name="Volume Based Calculation Technique"
(0008,9208) VERS="4" VR="CS" VM="1" Keyword="ComplexImageComponent" Name="Complex Image Component"
(0008,9209) VERS="4" VR="CS" VM="1" Keyword="AcquisitionContrast" Name="Acquisition Contrast"
(0008,9215) VERS="4" VR="SQ" VM="1" Keyword="DerivationCodeSequence" Name="Derivation Code Sequence"
(0008,9237) VERS="4" VR="SQ" VM="1" Keyword="ReferencedPresentationStateSequence" Name="Referenced Presentation State Sequence"
(0008,9410) VERS="4" VR="SQ" VM="1" Keyword="ReferencedOtherPlaneSequence" Name="Referenced Other Plane Sequence"
(0008,9458) VERS="4" VR="SQ" VM="1" Keyword="FrameDisplaySequence" Name="Frame Display Sequence"
(0008,9459) VERS="4" VR="FL" VM="1" Keyword="RecommendedDisplayFrameRateInFloat" Name="Recommended Display Frame Rate in Float"
(0008,9460) VERS="4" VR="CS" VM="1" Keyword="SkipFrameRangeFlag" Name="Skip Frame Range Flag"
(0010,0000) VERS="3" VR="UL" VM="1" Keyword="PatientGroupLength" Name="Patient Group Length"
(0010,0010) VERS="4" VR="PN" VM="1" Keyword="PatientName" Name="Patients Name"
(0010,0020) VERS="4" VR="LO" VM="1" Keyword="PatientID" Name="Patient ID"
(0010,0021) VERS="4" VR="LO" VM="1" Keyword="IssuerOfPatientID" Name="Issuer of Patient ID"
(0010,0022) VERS="4" VR="CS" VM="1" Keyword="TypeOfPatientID" Name="Type of Patient ID"
(0010,0024) VERS="4" VR="SQ" VM="1" Keyword="IssuerOfPatientIDQualifiersSequence" Name="Issuer of Patient ID Qualifiers Sequence"
(0010,0030) VERS="4" VR="DA" VM="1" Keyword="PatientBirthDate" Name="Patients Birth Date"
(0010,0032) VERS="4" VR="TM" VM="1" Keyword="PatientBirthTime" Name="Patients Birth Time"
(0010,0040) VERS="4" VR="CS" VM="1" Keyword="PatientSex" Name="Patients Sex"
(0010,0050) VERS="4" VR="SQ" VM="1" Keyword="PatientInsurancePlanCodeSequence" Name="Patients Insurance Plan Code Sequence"
(0010,0101) VERS="4" VR="SQ" VM="1" Keyword="PatientPrimaryLanguageCodeSequence" Name="Patients Primary Language Code Sequence"
(0010,0102) VERS="4" VR="SQ" VM="1" Keyword="PatientPrimaryLanguageModifierCodeSequence" Name="Patients Primary Language Modifier Code Sequence"
(0010,1000) VERS="4" VR="LO" VM="1-n" Keyword="OtherPatientIDs" Name="Other Patient IDs"
(0010,1001) VERS="4" VR="PN" VM="1-n" Keyword="OtherPatientNames" Name="Other Patient Names"
(0010,1002) VERS="4" VR="SQ" VM="1" Keyword="OtherPatientIDsSequence" Name="Other Patient IDs Sequence"
(0010,1005) VERS="4" VR="PN" VM="1" Keyword="PatientBirthName" Name="Patients Birth Name"
(0010,1010) VERS="4" VR="AS" VM="1" Keyword="PatientAge" Name="Patients Age"
(0010,1020) VERS="4" VR="DS" VM="1" Keyword="PatientSize" Name="Patients Size"
(0010,1021) VERS="4" VR="SQ" VM="1" Keyword="PatientSizeCodeSequence" Name="Patients Size Code Sequence"
(0010,1030) VERS="4" VR="DS" VM="1" Keyword="PatientWeight" Name="Patients Weight"
(0010,1040) VERS="4" VR="LO" VM="1" Keyword="PatientAddress" Name="Patients Address"
(0010,1050) VERS="4RET" VR="LO" VM="1-n" Keyword="InsurancePlanIdentification" Name="Insurance Plan Identification"
(0010,1060) VERS="4" VR="PN" VM="1" Keyword="PatientMotherBirthName" Name="Patients Mothers Birth Name"
(0010,1080) VERS="4" VR="LO" VM="1" Keyword="MilitaryRank" Name="Military Rank"
(0010,1081) VERS="4" VR="LO" VM="1" Keyword="BranchOfService" Name="Branch of Service"
(0010,1090) VERS="4" VR="LO" VM="1" Keyword="MedicalRecordLocator" Name="Medical Record Locator"
(0010,2000) VERS="4" VR="LO" VM="1-n" Keyword="MedicalAlerts" Name="Medical Alerts"
(0010,2110) VERS="4" VR="LO" VM="1-n" Keyword="Allergies" Name="Allergies"
(0010,2150) VERS="4" VR="LO" VM="1" Keyword="CountryOfResidence" Name="Country of Residence"
(0010,2152) VERS="4" VR="LO" VM="1" Keyword="RegionOfResidence" Name="Region of Residence"
(0010,2154) VERS="4" VR="SH" VM="1-n" Keyword="PatientTelephoneNumbers" Name="Patients Telephone Numbers"
(0010,2160) VERS="4" VR="SH" VM="1" Keyword="EthnicGroup" Name="Ethnic Group"
(0010,2180) VERS="4" VR="SH" VM="1" Keyword="Occupation" Name="Occupation"
(0010,21A0) VERS="4" VR="CS" VM="1" Keyword="SmokingStatus" Name="Smoking Status"
(0010,21B0) VERS="4" VR="LT" VM="1" Keyword="AdditionalPatientHistory" Name="Additional Patient History"
(0010,21C0) VERS="4" VR="US" VM="1" Keyword="PregnancyStatus" Name="Pregnancy Status"
(0010,21D0) VERS="4" VR="DA" VM="1" Keyword="LastMenstrualDate" Name="Last Menstrual Date"
(0010,21F0) VERS="4" VR="LO" VM="1" Keyword="PatientReligiousPreference" Name="Patients Religious Preference"
(0010,2201) VERS="4" VR="LO" VM="1" Keyword="PatientSpeciesDescription" Name="Patient Species Description"
(0010,2202) VERS="4" VR="SQ" VM="1" Keyword="PatientSpeciesCodeSequence" Name="Patient Species Code Sequence"
(0010,2203) VERS="4" VR="CS" VM="1" Keyword="PatientSexNeutered" Name="Patients Sex Neutered"
(0010,2210) VERS="4" VR="CS" VM="1" Keyword="AnatomicalOrientationType" Name="Anatomical Orientation Type"
(0010,2292) VERS="4" VR="LO" VM="1" Keyword="PatientBreedDescription" Name="Patient Breed Description"
(0010,2293) VERS="4" VR="SQ" VM="1" Keyword="PatientBreedCodeSequence" Name="Patient Breed Code Sequence"
(0010,2294) VERS="4" VR="SQ" VM="1" Keyword="BreedRegistrationSequence" Name="Breed Registration Sequence"
(0010,2295) VERS="4" VR="LO" VM="1" Keyword="BreedRegistrationNumber" Name="Breed Registration Number"
(0010,2296) VERS="4" VR="SQ" VM="1" Keyword="BreedRegistryCodeSequence" Name="Breed Registry Code Sequence"
(0010,2297) VERS="4" VR="PN" VM="1" Keyword="ResponsiblePerson" Name="Responsible Person"
(0010,2298) VERS="4" VR="CS" VM="1" Keyword="ResponsiblePersonRole" Name="Responsible Person Role"
(0010,2299) VERS="4" VR="LO" VM="1" Keyword="ResponsibleOrganization" Name="Responsible Organization"
(0010,4000) VERS="4" VR="LT" VM="1" Keyword="PatientComments" Name="Patient Comments"
(0010,9431) VERS="4" VR="FL" VM="1" Keyword="ExaminedBodyThickness" Name="Examined Body Thickness"
(0012,0010) VERS="4" VR="LO" VM="1" Keyword="ClinicalTrialSponsorName" Name="Clinical Trial Sponsor Name"
(0012,0020) VERS="4" VR="LO" VM="1" Keyword="ClinicalTrialProtocolID" Name="Clinical Trial Protocol ID"
(0012,0021) VERS="4" VR="LO" VM="1" Keyword="ClinicalTrialProtocolName" Name="Clinical Trial Protocol Name"
(0012,0030) VERS="4" VR="LO" VM="1" Keyword="ClinicalTrialSiteID" Name="Clinical Trial Site ID"
(0012,0031) VERS="4" VR="LO" VM="1" Keyword="ClinicalTrialSiteName" Name="Clinical Trial Site Name"
(0012,0040) VERS="4" VR="LO" VM="1" Keyword="ClinicalTrialSubjectID" Name="Clinical Trial Subject ID"
(0012,0042) VERS="4" VR="LO" VM="1" Keyword="ClinicalTrialSubjectReadingID" Name="Clinical Trial Subject Reading ID"
(0012,0050) VERS="4" VR="LO" VM="1" Keyword="ClinicalTrialTimePointID" Name="Clinical Trial Time Point ID"
(0012,0051) VERS="4" VR="ST" VM="1" Keyword="ClinicalTrialTimePointDescription" Name="Clinical Trial Time Point Description"
(0012,0060) VERS="4" VR="LO" VM="1" Keyword="ClinicalTrialCoordinatingCenterName" Name="Clinical Trial Coordinating Center Name"
(0012,0062) VERS="4" VR="CS" VM="1" Keyword="PatientIdentityRemoved" Name="Patient Identity Removed"
(0012,0063) VERS="4" VR="LO" VM="1-n" Keyword="DeidentificationMethod" Name="De-identification Method"
(0012,0064) VERS="4" VR="SQ" VM="1" Keyword="DeidentificationMethodCodeSequence" Name="De-identification Method Code Sequence"
(0012,0071) VERS="4" VR="LO" VM="1" Keyword="ClinicalTrialSeriesID" Name="Clinical Trial Series ID"
(0012,0072) VERS="4" VR="LO" VM="1" Keyword="ClinicalTrialSeriesDescription" Name="Clinical Trial Series Description"
(0012,0081) VERS="4" VR="LO" VM="1" Keyword="ClinicalTrialProtocolEthicsCommitteeName" Name="Clinical Trial Protocol Ethics Committee Name"
(0012,0082) VERS="4" VR="LO" VM="1" Keyword="ClinicalTrialProtocolEthicsCommitteeApprovalNumber" Name="Clinical Trial Protocol Ethics Committee Approval Number"
(0012,0083) VERS="4" VR="SQ" VM="1" Keyword="ConsentForClinicalTrialUseSequence" Name="Consent for Clinical Trial Use Sequence"
(0012,0084) VERS="4" VR="CS" VM="1" Keyword="DistributionType" Name="Distribution Type"
(0012,0085) VERS="4" VR="CS" VM="1" Keyword="ConsentForDistributionFlag" Name="Consent for Distribution Flag"
(0014,0023) VERS="4" VR="ST" VM="1-n" Keyword="CADFileFormat" Name="CAD File Format"
(0014,0024) VERS="4" VR="ST" VM="1-n" Keyword="ComponentReferenceSystem" Name="Component Reference System"
(0014,0025) VERS="4" VR="ST" VM="1-n" Keyword="ComponentManufacturingProcedure" Name="Component Manufacturing Procedure"
(0014,0028) VERS="4" VR="ST" VM="1-n" Keyword="ComponentManufacturer" Name="Component Manufacturer"
(0014,0030) VERS="4" VR="DS" VM="1-n" Keyword="MaterialThickness" Name="Material Thickness"
(0014,0032) VERS="4" VR="DS" VM="1-n" Keyword="MaterialPipeDiameter" Name="Material Pipe Diameter"
(0014,0034) VERS="4" VR="DS" VM="1-n" Keyword="MaterialIsolationDiameter" Name="Material Isolation Diameter"
(0014,0042) VERS="4" VR="ST" VM="1-n" Keyword="MaterialGrade" Name="Material Grade"
(0014,0044) VERS="4" VR="ST" VM="1-n" Keyword="MaterialPropertiesFileID" Name="Material Properties File ID"
(0014,0045) VERS="4" VR="ST" VM="1-n" Keyword="MaterialPropertiesFileFormat" Name="Material Properties File Format"
(0014,0046) VERS="4" VR="LT" VM="1" Keyword="MaterialNotes" Name="Material Notes"
(0014,0050) VERS="4" VR="CS" VM="1" Keyword="ComponentShape" Name="Component Shape"
(0014,0052) VERS="4" VR="CS" VM="1" Keyword="CurvatureType" Name="Curvature Type"
(0014,0054) VERS="4" VR="DS" VM="1" Keyword="OuterDiameter" Name="Outer Diameter"
(0014,0056) VERS="4" VR="DS" VM="1" Keyword="InnerDiameter" Name="Inner Diameter"
(0014,1010) VERS="4" VR="ST" VM="1" Keyword="ActualEnvironmentalConditions" Name="Actual Environmental Conditions"
(0014,1020) VERS="4" VR="DA" VM="1" Keyword="ExpiryDate" Name="Expiry Date"
(0014,1040) VERS="4" VR="ST" VM="1" Keyword="EnvironmentalConditions" Name="Environmental Conditions"
(0014,2002) VERS="4" VR="SQ" VM="1" Keyword="EvaluatorSequence" Name="Evaluator Sequence"
(0014,2004) VERS="4" VR="IS" VM="1" Keyword="EvaluatorNumber" Name="Evaluator Number"
(0014,2006) VERS="4" VR="PN" VM="1" Keyword="EvaluatorName" Name="Evaluator Name"
(0014,2008) VERS="4" VR="IS" VM="1" Keyword="EvaluationAttempt" Name="Evaluation Attempt"
(0014,2012) VERS="4" VR="SQ" VM="1" Keyword="IndicationSequence" Name="Indication Sequence"
(0014,2014) VERS="4" VR="IS" VM="1" Keyword="IndicationNumber " Name="Indication Number "
(0014,2016) VERS="4" VR="SH" VM="1" Keyword="IndicationLabel" Name="Indication Label"
(0014,2018) VERS="4" VR="ST" VM="1" Keyword="IndicationDescription" Name="Indication Description"
(0014,201A) VERS="4" VR="CS" VM="1-n" Keyword="IndicationType" Name="Indication Type"
(0014,201C) VERS="4" VR="CS" VM="1" Keyword="IndicationDisposition" Name="Indication Disposition"
(0014,201E) VERS="4" VR="SQ" VM="1" Keyword="IndicationROISequence" Name="Indication ROI Sequence"
(0014,2030) VERS="4" VR="SQ" VM="1" Keyword="IndicationPhysicalPropertySequence" Name="Indication Physical Property Sequence"
(0014,2032) VERS="4" VR="SH" VM="1" Keyword="PropertyLabel" Name="Property Label"
(0014,2202) VERS="4" VR="IS" VM="1" Keyword="CoordinateSystemNumberOfAxes " Name="Coordinate System Number of Axes "
(0014,2204) VERS="4" VR="SQ" VM="1" Keyword="CoordinateSystemAxesSequence" Name="Coordinate System Axes Sequence"
(0014,2206) VERS="4" VR="ST" VM="1" Keyword="CoordinateSystemAxisDescription" Name="Coordinate System Axis Description"
(0014,2208) VERS="4" VR="CS" VM="1" Keyword="CoordinateSystemDataSetMapping" Name="Coordinate System Data Set Mapping"
(0014,220A) VERS="4" VR="IS" VM="1" Keyword="CoordinateSystemAxisNumber" Name="Coordinate System Axis Number"
(0014,220C) VERS="4" VR="CS" VM="1" Keyword="CoordinateSystemAxisType" Name="Coordinate System Axis Type"
(0014,220E) VERS="4" VR="CS" VM="1" Keyword="CoordinateSystemAxisUnits" Name="Coordinate System Axis Units"
(0014,2210) VERS="4" VR="OB" VM="1" Keyword="CoordinateSystemAxisValues" Name="Coordinate System Axis Values"
(0014,2220) VERS="4" VR="SQ" VM="1" Keyword="CoordinateSystemTransformSequence" Name="Coordinate System Transform Sequence"
(0014,2222) VERS="4" VR="ST" VM="1" Keyword="TransformDescription" Name="Transform Description"
(0014,2224) VERS="4" VR="IS" VM="1" Keyword="TransformNumberOfAxes" Name="Transform Number of Axes"
(0014,2226) VERS="4" VR="IS" VM="1-n" Keyword="TransformOrderOfAxes" Name="Transform Order of Axes"
(0014,2228) VERS="4" VR="CS" VM="1" Keyword="TransformedAxisUnits" Name="Transformed Axis Units"
(0014,222A) VERS="4" VR="DS" VM="1-n" Keyword="CoordinateSystemTransformRotationAndScaleMatrix" Name="Coordinate System Transform Rotation and Scale Matrix"
(0014,222C) VERS="4" VR="DS" VM="1-n" Keyword="CoordinateSystemTransformTranslationMatrix" Name="Coordinate System Transform Translation Matrix"
(0014,3011) VERS="4" VR="DS" VM="1" Keyword="InternalDetectorFrameTime" Name="Internal Detector Frame Time"
(0014,3012) VERS="4" VR="DS" VM="1" Keyword="NumberOfFramesIntegrated" Name="Number of Frames Integrated"
(0014,3020) VERS="4" VR="SQ" VM="1" Keyword="DetectorTemperatureSequence" Name="Detector Temperature Sequence"
(0014,3022) VERS="4" VR="DS" VM="1" Keyword="SensorName" Name="Sensor Name"
(0014,3024) VERS="4" VR="DS" VM="1" Keyword="HorizontalOffsetOfSensor" Name="Horizontal Offset of Sensor"
(0014,3026) VERS="4" VR="DS" VM="1" Keyword="VerticalOffsetOfSensor" Name="Vertical Offset of Sensor"
(0014,3028) VERS="4" VR="DS" VM="1" Keyword="SensorTemperature" Name="Sensor Temperature"
(0014,3040) VERS="4" VR="SQ" VM="1" Keyword="DarkCurrentSequence" Name="Dark Current Sequence"
(0014,3050) VERS="4" VR="OB/OW" VM="1" Keyword="DarkCurrentCounts" Name="Dark Current Counts"
(0014,3060) VERS="4" VR="SQ" VM="1" Keyword="GainCorrectionReferenceSequence" Name="Gain Correction Reference Sequence"
(0014,3070) VERS="4" VR="OB/OW" VM="1" Keyword="AirCounts" Name="Air Counts"
(0014,3071) VERS="4" VR="DS" VM="1" Keyword="KVUsedInGainCalibration" Name="KV Used in Gain Calibration"
(0014,3072) VERS="4" VR="DS" VM="1" Keyword="MAUsedInGainCalibration" Name="MA Used in Gain Calibration"
(0014,3073) VERS="4" VR="DS" VM="1" Keyword="NumberOfFramesUsedForIntegration" Name="Number of Frames Used for Integration"
(0014,3074) VERS="4" VR="LO" VM="1" Keyword="FilterMaterialUsedInGainCalibration" Name="Filter Material Used in Gain Calibration"
(0014,3075) VERS="4" VR="DS" VM="1" Keyword="FilterThicknessUsedInGainCalibration" Name="Filter Thickness Used in Gain Calibration"
(0014,3076) VERS="4" VR="DA" VM="1" Keyword="DateOfGainCalibration" Name="Date of Gain Calibration"
(0014,3077) VERS="4" VR="TM" VM="1" Keyword="TimeOfGainCalibration" Name="Time of Gain Calibration"
(0014,3080) VERS="4" VR="OB" VM="1" Keyword="BadPixelImage" Name="Bad Pixel Image"
(0014,3099) VERS="4" VR="LT" VM="1" Keyword="CalibrationNotes" Name="Calibration Notes"
(0014,4002) VERS="4" VR="SQ" VM="1" Keyword="PulserEquipmentSequence" Name="Pulser Equipment Sequence"
(0014,4004) VERS="4" VR="CS" VM="1" Keyword="PulserType" Name="Pulser Type"
(0014,4006) VERS="4" VR="LT" VM="1" Keyword="PulserNotes" Name="Pulser Notes"
(0014,4008) VERS="4" VR="SQ" VM="1" Keyword="ReceiverEquipmentSequence" Name="Receiver Equipment Sequence"
(0014,400A) VERS="4" VR="CS" VM="1" Keyword="AmplifierType" Name="Amplifier Type"
(0014,400C) VERS="4" VR="LT" VM="1" Keyword="ReceiverNotes" Name="Receiver Notes"
(0014,400E) VERS="4" VR="SQ" VM="1" Keyword="PreAmplifierEquipmentSequence" Name="Pre-Amplifier Equipment Sequence"
(0014,400F) VERS="4" VR="LT" VM="1" Keyword="PreAmplifierNotes" Name="Pre-Amplifier Notes"
(0014,4010) VERS="4" VR="SQ" VM="1" Keyword="TransmitTransducerSequence" Name="Transmit Transducer Sequence"
(0014,4011) VERS="4" VR="SQ" VM="1" Keyword="ReceiveTransducerSequence" Name="Receive Transducer Sequence"
(0014,4012) VERS="4" VR="US" VM="1" Keyword="NumberOfElements" Name="Number of Elements"
(0014,4013) VERS="4" VR="CS" VM="1" Keyword="ElementShape" Name="Element Shape"
(0014,4014) VERS="4" VR="DS" VM="1" Keyword="ElementDimensionA" Name="Element Dimension A"
(0014,4015) VERS="4" VR="DS" VM="1" Keyword="ElementDimensionB" Name="Element Dimension B"
(0014,4016) VERS="4" VR="DS" VM="1" Keyword="ElementPitch" Name="Element Pitch"
(0014,4017) VERS="4" VR="DS" VM="1" Keyword="MeasuredBeamDimensionA" Name="Measured Beam Dimension A"
(0014,4018) VERS="4" VR="DS" VM="1" Keyword="MeasuredBeamDimensionB" Name="Measured Beam Dimension B"
(0014,4019) VERS="4" VR="DS" VM="1" Keyword="LocationOfMeasuredBeamDiameter" Name="Location of Measured Beam Diameter"
(0014,401A) VERS="4" VR="DS" VM="1" Keyword="NominalFrequency" Name="Nominal Frequency"
(0014,401B) VERS="4" VR="DS" VM="1" Keyword="MeasuredCenterFrequency" Name="Measured Center Frequency"
(0014,401C) VERS="4" VR="DS" VM="1" Keyword="MeasuredBandwidth" Name="Measured Bandwidth"
(0014,4020) VERS="4" VR="SQ" VM="1" Keyword="PulserSettingsSequence" Name="Pulser Settings Sequence"
(0014,4022) VERS="4" VR="DS" VM="1" Keyword="PulseWidth" Name="Pulse Width"
(0014,4024) VERS="4" VR="DS" VM="1" Keyword="ExcitationFrequency" Name="Excitation Frequency"
(0014,4026) VERS="4" VR="CS" VM="1" Keyword="ModulationType" Name="Modulation Type"
(0014,4028) VERS="4" VR="DS" VM="1" Keyword="Damping" Name="Damping"
(0014,4030) VERS="4" VR="SQ" VM="1" Keyword="ReceiverSettingsSequence" Name="Receiver Settings Sequence"
(0014,4031) VERS="4" VR="DS" VM="1" Keyword="AcquiredSoundpathLength" Name="Acquired Soundpath Length"
(0014,4032) VERS="4" VR="CS" VM="1" Keyword="AcquisitionCompressionType" Name="Acquisition Compression Type"
(0014,4033) VERS="4" VR="IS" VM="1" Keyword="AcquisitionSampleSize" Name="Acquisition Sample Size"
(0014,4034) VERS="4" VR="DS" VM="1" Keyword="RectifierSmoothing" Name="Rectifier Smoothing"
(0014,4035) VERS="4" VR="SQ" VM="1" Keyword="DACSequence" Name="DAC Sequence"
(0014,4036) VERS="4" VR="CS" VM="1" Keyword="DACType" Name="DAC Type"
(0014,4038) VERS="4" VR="DS" VM="1-n" Keyword="DACGainPoints" Name="DAC Gain Points"
(0014,403A) VERS="4" VR="DS" VM="1-n" Keyword="DACTimePoints" Name="DAC Time Points"
(0014,403C) VERS="4" VR="DS" VM="1-n" Keyword="DACAmplitude" Name="DAC Amplitude"
(0014,4040) VERS="4" VR="SQ" VM="1" Keyword="PreAmplifierSettingsSequence" Name="Pre-Amplifier Settings Sequence"
(0014,4050) VERS="4" VR="SQ" VM="1" Keyword="TransmitTransducerSettingsSequence" Name="Transmit Transducer Settings Sequence"
(0014,4051) VERS="4" VR="SQ" VM="1" Keyword="ReceiveTransducerSettingsSequence" Name="Receive Transducer Settings Sequence"
(0014,4052) VERS="4" VR="DS" VM="1" Keyword="IncidentAngle" Name="Incident Angle"
(0014,4054) VERS="4" VR="ST" VM="1" Keyword="CouplingTechnique" Name="Coupling Technique"
(0014,4056) VERS="4" VR="ST" VM="1" Keyword="CouplingMedium" Name="Coupling Medium"
(0014,4057) VERS="4" VR="DS" VM="1" Keyword="CouplingVelocity" Name="Coupling Velocity"
(0014,4058) VERS="4" VR="DS" VM="1" Keyword="CrystalCenterLocationX" Name="Crystal Center Location X"
(0014,4059) VERS="4" VR="DS" VM="1" Keyword="CrystalCenterLocationZ" Name="Crystal Center Location Z"
(0014,405A) VERS="4" VR="DS" VM="1" Keyword="SoundPathLength" Name="Sound Path Length"
(0014,405C) VERS="4" VR="ST" VM="1" Keyword="DelayLawIdentifier" Name="Delay Law Identifier"
(0014,4060) VERS="4" VR="SQ" VM="1" Keyword="GateSettingsSequence" Name="Gate Settings Sequence"
(0014,4062) VERS="4" VR="DS" VM="1" Keyword="GateThreshold" Name="Gate Threshold"
(0014,4064) VERS="4" VR="DS" VM="1" Keyword="VelocityOfSound" Name="Velocity of Sound"
(0014,4070) VERS="4" VR="SQ" VM="1" Keyword="CalibrationSettingsSequence" Name="Calibration Settings Sequence"
(0014,4072) VERS="4" VR="ST" VM="1" Keyword="CalibrationProcedure" Name="Calibration Procedure"
(0014,4074) VERS="4" VR="SH" VM="1" Keyword="ProcedureVersion" Name="Procedure Version"
(0014,4076) VERS="4" VR="DA" VM="1" Keyword="ProcedureCreationDate" Name="Procedure Creation Date"
(0014,4078) VERS="4" VR="DA" VM="1" Keyword="ProcedureExpirationDate" Name="Procedure Expiration Date"
(0014,407A) VERS="4" VR="DA" VM="1" Keyword="ProcedureLastModifiedDate" Name="Procedure Last Modified Date"
(0014,407C) VERS="4" VR="TM" VM="1-n" Keyword="CalibrationTime" Name="Calibration Time"
(0014,407E) VERS="4" VR="DA" VM="1-n" Keyword="CalibrationDate" Name="Calibration Date"
(0014,5002) VERS="4" VR="IS" VM="1" Keyword="LINACEnergy" Name="LINAC Energy"
(0014,5004) VERS="4" VR="IS" VM="1" Keyword="LINACOutput" Name="LINAC Output"
(0018,0000) VERS="3" VR="UL" VM="1" Keyword="AcquisitionGroupLength" Name="Acquisition Group Length"
(0018,0010) VERS="4" VR="LO" VM="1" Keyword="ContrastBolusAgent" Name="Contrast/Bolus Agent"
(0018,0012) VERS="4" VR="SQ" VM="1" Keyword="ContrastBolusAgentSequence" Name="Contrast/Bolus Agent Sequence"
(0018,0014) VERS="4" VR="SQ" VM="1" Keyword="ContrastBolusAdministrationRouteSequence" Name="Contrast/Bolus Administration Route Sequence"
(0018,0015) VERS="4" VR="CS" VM="1" Keyword="BodyPartExamined" Name="Body Part Examined"
(0018,0020) VERS="4" VR="CS" VM="1-n" Keyword="ScanningSequence" Name="Scanning Sequence"
(0018,0021) VERS="4" VR="CS" VM="1-n" Keyword="SequenceVariant" Name="Sequence Variant"
(0018,0022) VERS="4" VR="CS" VM="1-n" Keyword="ScanOptions" Name="Scan Options"
(0018,0023) VERS="4" VR="CS" VM="1" Keyword="MRAcquisitionType" Name="MR Acquisition Type"
(0018,0024) VERS="4" VR="SH" VM="1" Keyword="SequenceName" Name="Sequence Name"
(0018,0025) VERS="4" VR="CS" VM="1" Keyword="AngioFlag" Name="Angio Flag"
(0018,0026) VERS="4" VR="SQ" VM="1" Keyword="InterventionDrugInformationSequence" Name="Intervention Drug Information Sequence"
(0018,0027) VERS="4" VR="TM" VM="1" Keyword="InterventionDrugStopTime" Name="Intervention Drug Stop Time"
(0018,0028) VERS="4" VR="DS" VM="1" Keyword="InterventionDrugDose" Name="Intervention Drug Dose"
(0018,0029) VERS="4" VR="SQ" VM="1" Keyword="InterventionDrugCodeSequence" Name="Intervention Drug Code Sequence"
(0018,002A) VERS="4" VR="SQ" VM="1" Keyword="AdditionalDrugSequence" Name="Additional Drug Sequence"
(0018,0030) VERS="4RET" VR="LO" VM="1-n" Keyword="Radionuclide" Name="Radionuclide"
(0018,0031) VERS="4" VR="LO" VM="1" Keyword="Radiopharmaceutical" Name="Radiopharmaceutical"
(0018,0032) VERS="4RET" VR="DS" VM="1" Keyword="EnergyWindowCenterline" Name="Energy Window Centerline"
(0018,0033) VERS="4RET" VR="DS" VM="1-n" Keyword="EnergyWindowTotalWidth" Name="Energy Window Total Width"
(0018,0034) VERS="4" VR="LO" VM="1" Keyword="InterventionDrugName" Name="Intervention Drug Name"
(0018,0035) VERS="4" VR="TM" VM="1" Keyword="InterventionDrugStartTime" Name="Intervention Drug Start Time"
(0018,0036) VERS="4" VR="SQ" VM="1" Keyword="InterventionSequence" Name="Intervention Sequence"
(0018,0037) VERS="4RET" VR="CS" VM="1" Keyword="TherapyType" Name="Therapy Type"
(0018,0038) VERS="4" VR="CS" VM="1" Keyword="InterventionStatus" Name="Intervention Status"
(0018,0039) VERS="4RET" VR="CS" VM="1" Keyword="TherapyDescription" Name="Therapy Description"
(0018,003A) VERS="4" VR="ST" VM="1" Keyword="InterventionDescription" Name="Intervention Description"
(0018,0040) VERS="4" VR="IS" VM="1" Keyword="CineRate" Name="Cine Rate "
(0018,0042) VERS="4" VR="CS" VM="1" Keyword="InitialCineRunState" Name="Initial Cine Run State"
(0018,0050) VERS="4" VR="DS" VM="1" Keyword="SliceThickness" Name="Slice Thickness"
(0018,0060) VERS="4" VR="DS" VM="1" Keyword="KVP" Name="KVP"
(0018,0070) VERS="4" VR="IS" VM="1" Keyword="CountsAccumulated" Name="Counts Accumulated"
(0018,0071) VERS="4" VR="CS" VM="1" Keyword="AcquisitionTerminationCondition" Name="Acquisition Termination Condition"
(0018,0072) VERS="4" VR="DS" VM="1" Keyword="EffectiveDuration" Name="Effective Duration"
(0018,0073) VERS="4" VR="CS" VM="1" Keyword="AcquisitionStartCondition" Name="Acquisition Start Condition"
(0018,0074) VERS="4" VR="IS" VM="1" Keyword="AcquisitionStartConditionData" Name="Acquisition Start Condition Data"
(0018,0075) VERS="4" VR="IS" VM="1" Keyword="AcquisitionTerminationConditionData" Name="Acquisition Termination Condition Data"
(0018,0080) VERS="4" VR="DS" VM="1" Keyword="RepetitionTime" Name="Repetition Time"
(0018,0081) VERS="4" VR="DS" VM="1" Keyword="EchoTime" Name="Echo Time"
(0018,0082) VERS="4" VR="DS" VM="1" Keyword="InversionTime" Name="Inversion Time"
(0018,0083) VERS="4" VR="DS" VM="1" Keyword="NumberOfAverages" Name="Number of Averages"
(0018,0084) VERS="4" VR="DS" VM="1" Keyword="ImagingFrequency" Name="Imaging Frequency"
(0018,0085) VERS="4" VR="SH" VM="1" Keyword="ImagedNucleus" Name="Imaged Nucleus"
(0018,0086) VERS="4" VR="IS" VM="1-n" Keyword="EchoNumbers" Name="Echo Number(s)"
(0018,0087) VERS="4" VR="DS" VM="1" Keyword="MagneticFieldStrength" Name="Magnetic Field Strength"
(0018,0088) VERS="4" VR="DS" VM="1" Keyword="SpacingBetweenSlices" Name="Spacing Between Slices"
(0018,0089) VERS="4" VR="IS" VM="1" Keyword="NumberOfPhaseEncodingSteps" Name="Number of Phase Encoding Steps"
(0018,0090) VERS="4" VR="DS" VM="1" Keyword="DataCollectionDiameter" Name="Data Collection Diameter"
(0018,0091) VERS="4" VR="IS" VM="1" Keyword="EchoTrainLength" Name="Echo Train Length"
(0018,0093) VERS="4" VR="DS" VM="1" Keyword="PercentSampling" Name="Percent Sampling"
(0018,0094) VERS="4" VR="DS" VM="1" Keyword="PercentPhaseFieldOfView" Name="Percent Phase Field of View"
(0018,0095) VERS="4" VR="DS" VM="1" Keyword="PixelBandwidth" Name="Pixel Bandwidth"
(0018,1000) VERS="4" VR="LO" VM="1" Keyword="DeviceSerialNumber" Name="Device Serial Number"
(0018,1002) VERS="4" VR="UI" VM="1" Keyword="DeviceUID" Name="Device UID"
(0018,1003) VERS="4" VR="LO" VM="1" Keyword="DeviceID" Name="Device ID"
(0018,1004) VERS="4" VR="LO" VM="1" Keyword="PlateID" Name="Plate ID"
(0018,1005) VERS="4" VR="LO" VM="1" Keyword="GeneratorID" Name="Generator ID"
(0018,1006) VERS="4" VR="LO" VM="1" Keyword="GridID" Name="Grid ID"
(0018,1007) VERS="4" VR="LO" VM="1" Keyword="CassetteID" Name="Cassette ID"
(0018,1008) VERS="4" VR="LO" VM="1" Keyword="GantryID" Name="Gantry ID"
(0018,1010) VERS="4" VR="LO" VM="1" Keyword="SecondaryCaptureDeviceID" Name="Secondary Capture Device ID"
(0018,1011) VERS="4RET" VR="LO" VM="1" Keyword="HardcopyCreationDeviceID" Name="Hardcopy Creation Device ID"
(0018,1012) VERS="4" VR="DA" VM="1" Keyword="DateOfSecondaryCapture" Name="Date of Secondary Capture"
(0018,1014) VERS="4" VR="TM" VM="1" Keyword="TimeOfSecondaryCapture" Name="Time of Secondary Capture"
(0018,1016) VERS="4" VR="LO" VM="1" Keyword="SecondaryCaptureDeviceManufacturer" Name="Secondary Capture Device Manufacturer"
(0018,1017) VERS="4RET" VR="LO" VM="1" Keyword="HardcopyDeviceManufacturer" Name="Hardcopy Device Manufacturer"
(0018,1018) VERS="4" VR="LO" VM="1" Keyword="SecondaryCaptureDeviceManufacturerModelName" Name="Secondary Capture Device Manufacturers Model Name"
(0018,1019) VERS="4" VR="LO" VM="1-n" Keyword="SecondaryCaptureDeviceSoftwareVersions" Name="Secondary Capture Device Software Versions"
(0018,101A) VERS="4RET" VR="LO" VM="1-n" Keyword="HardcopyDeviceSoftwareVersion" Name="Hardcopy Device Software Version"
(0018,101B) VERS="4RET" VR="LO" VM="1" Keyword="HardcopyDeviceManufacturerModelName" Name="Hardcopy Device Manufacturers Model Name"
(0018,1020) VERS="4" VR="LO" VM="1-n" Keyword="SoftwareVersions" Name="Software Version(s)"
(0018,1022) VERS="4" VR="SH" VM="1" Keyword="VideoImageFormatAcquired" Name="Video Image Format Acquired"
(0018,1023) VERS="4" VR="LO" VM="1" Keyword="DigitalImageFormatAcquired" Name="Digital Image Format Acquired"
(0018,1030) VERS="4" VR="LO" VM="1" Keyword="ProtocolName" Name="Protocol Name"
(0018,1040) VERS="4" VR="LO" VM="1" Keyword="ContrastBolusRoute" Name="Contrast/Bolus Route"
(0018,1041) VERS="4" VR="DS" VM="1" Keyword="ContrastBolusVolume" Name="Contrast/Bolus Volume"
(0018,1042) VERS="4" VR="TM" VM="1" Keyword="ContrastBolusStartTime" Name="Contrast/Bolus Start Time "
(0018,1043) VERS="4" VR="TM" VM="1" Keyword="ContrastBolusStopTime" Name="Contrast/Bolus Stop Time "
(0018,1044) VERS="4" VR="DS" VM="1" Keyword="ContrastBolusTotalDose" Name="Contrast/Bolus Total Dose"
(0018,1045) VERS="4" VR="IS" VM="1" Keyword="SyringeCounts" Name="Syringe Counts"
(0018,1046) VERS="4" VR="DS" VM="1-n" Keyword="ContrastFlowRate" Name="Contrast Flow Rate"
(0018,1047) VERS="4" VR="DS" VM="1-n" Keyword="ContrastFlowDuration" Name="Contrast Flow Duration"
(0018,1048) VERS="4" VR="CS" VM="1" Keyword="ContrastBolusIngredient" Name="Contrast/Bolus Ingredient"
(0018,1049) VERS="4" VR="DS" VM="1" Keyword="ContrastBolusIngredientConcentration" Name="Contrast/Bolus Ingredient Concentration"
(0018,1050) VERS="4" VR="DS" VM="1" Keyword="SpatialResolution" Name="Spatial Resolution"
(0018,1060) VERS="4" VR="DS" VM="1" Keyword="TriggerTime" Name="Trigger Time"
(0018,1061) VERS="4" VR="LO" VM="1" Keyword="TriggerSourceOrType" Name="Trigger Source or Type"
(0018,1062) VERS="4" VR="IS" VM="1" Keyword="NominalInterval" Name="Nominal Interval"
(0018,1063) VERS="4" VR="DS" VM="1" Keyword="FrameTime" Name="Frame Time"
(0018,1064) VERS="4" VR="LO" VM="1" Keyword="CardiacFramingType" Name="Cardiac Framing Type"
(0018,1065) VERS="4" VR="DS" VM="1-n" Keyword="FrameTimeVector" Name="Frame Time Vector"
(0018,1066) VERS="4" VR="DS" VM="1" Keyword="FrameDelay" Name="Frame Delay"
(0018,1067) VERS="4" VR="DS" VM="1" Keyword="ImageTriggerDelay" Name="Image Trigger Delay"
(0018,1068) VERS="4" VR="DS" VM="1" Keyword="MultiplexGroupTimeOffset" Name="Multiplex Group Time Offset"
(0018,1069) VERS="4" VR="DS" VM="1" Keyword="TriggerTimeOffset" Name="Trigger Time Offset"
(0018,106A) VERS="4" VR="CS" VM="1" Keyword="SynchronizationTrigger" Name="Synchronization Trigger"
(0018,106C) VERS="4" VR="US" VM="2" Keyword="SynchronizationChannel" Name="Synchronization Channel"
(0018,106E) VERS="4" VR="UL" VM="1" Keyword="TriggerSamplePosition" Name="Trigger Sample Position"
(0018,1070) VERS="4" VR="LO" VM="1" Keyword="RadiopharmaceuticalRoute" Name="Radiopharmaceutical Route"
(0018,1071) VERS="4" VR="DS" VM="1" Keyword="RadiopharmaceuticalVolume" Name="Radiopharmaceutical Volume"
(0018,1072) VERS="4" VR="TM" VM="1" Keyword="RadiopharmaceuticalStartTime" Name="Radiopharmaceutical Start Time"
(0018,1073) VERS="4" VR="TM" VM="1" Keyword="RadiopharmaceuticalStopTime" Name="Radiopharmaceutical Stop Time"
(0018,1074) VERS="4" VR="DS" VM="1" Keyword="RadionuclideTotalDose" Name="Radionuclide Total Dose"
(0018,1075) VERS="4" VR="DS" VM="1" Keyword="RadionuclideHalfLife" Name="Radionuclide Half Life"
(0018,1076) VERS="4" VR="DS" VM="1" Keyword="RadionuclidePositronFraction" Name="Radionuclide Positron Fraction"
(0018,1077) VERS="4" VR="DS" VM="1" Keyword="RadiopharmaceuticalSpecificActivity" Name="Radiopharmaceutical Specific Activity"
(0018,1078) VERS="4" VR="DT" VM="1" Keyword="RadiopharmaceuticalStartDateTime" Name="Radiopharmaceutical Start DateTime"
(0018,1079) VERS="4" VR="DT" VM="1" Keyword="RadiopharmaceuticalStopDateTime" Name="Radiopharmaceutical Stop DateTime"
(0018,1080) VERS="4" VR="CS" VM="1" Keyword="BeatRejectionFlag" Name="Beat Rejection Flag"
(0018,1081) VERS="4" VR="IS" VM="1" Keyword="LowRRValue" Name="Low R-R Value"
(0018,1082) VERS="4" VR="IS" VM="1" Keyword="HighRRValue" Name="High R-R Value"
(0018,1083) VERS="4" VR="IS" VM="1" Keyword="IntervalsAcquired" Name="Intervals Acquired"
(0018,1084) VERS="4" VR="IS" VM="1" Keyword="IntervalsRejected" Name="Intervals Rejected"
(0018,1085) VERS="4" VR="LO" VM="1" Keyword="PVCRejection" Name="PVC Rejection"
(0018,1086) VERS="4" VR="IS" VM="1" Keyword="SkipBeats" Name="Skip Beats"
(0018,1088) VERS="4" VR="IS" VM="1" Keyword="HeartRate" Name="Heart Rate"
(0018,1090) VERS="4" VR="IS" VM="1" Keyword="CardiacNumberOfImages" Name="Cardiac Number of Images"
(0018,1094) VERS="4" VR="IS" VM="1" Keyword="TriggerWindow" Name="Trigger Window"
(0018,1100) VERS="4" VR="DS" VM="1" Keyword="ReconstructionDiameter" Name="Reconstruction Diameter"
(0018,1110) VERS="4" VR="DS" VM="1" Keyword="DistanceSourceToDetector" Name="Distance Source to Detector"
(0018,1111) VERS="4" VR="DS" VM="1" Keyword="DistanceSourceToPatient" Name="Distance Source to Patient"
(0018,1114) VERS="4" VR="DS" VM="1" Keyword="EstimatedRadiographicMagnificationFactor" Name="Estimated Radiographic Magnification Factor"
(0018,1120) VERS="4" VR="DS" VM="1" Keyword="GantryDetectorTilt" Name="Gantry/Detector Tilt"
(0018,1121) VERS="4" VR="DS" VM="1" Keyword="GantryDetectorSlew" Name="Gantry/Detector Slew"
(0018,1122) VERS="3" VR="LO" VM="1" Keyword="GantryDetectorMotion" Name="Gantry/Detector Motion"
(0018,1130) VERS="4" VR="DS" VM="1" Keyword="TableHeight" Name="Table Height"
(0018,1131) VERS="4" VR="DS" VM="1" Keyword="TableTraverse" Name="Table Traverse"
(0018,1134) VERS="4" VR="CS" VM="1" Keyword="TableMotion" Name="Table Motion"
(0018,1135) VERS="4" VR="DS" VM="1-n" Keyword="TableVerticalIncrement" Name="Table Vertical Increment"
(0018,1136) VERS="4" VR="DS" VM="1-n" Keyword="TableLateralIncrement" Name="Table Lateral Increment"
(0018,1137) VERS="4" VR="DS" VM="1-n" Keyword="TableLongitudinalIncrement" Name="Table Longitudinal Increment"
(0018,1138) VERS="4" VR="DS" VM="1" Keyword="TableAngle" Name="Table Angle"
(0018,113A) VERS="4" VR="CS" VM="1" Keyword="TableType" Name="Table Type"
(0018,1140) VERS="4" VR="CS" VM="1" Keyword="RotationDirection" Name="Rotation Direction"
(0018,1141) VERS="4RET" VR="DS" VM="1" Keyword="AngularPosition" Name="Angular Position"
(0018,1142) VERS="4" VR="DS" VM="1-n" Keyword="RadialPosition" Name="Radial Position"
(0018,1143) VERS="4" VR="DS" VM="1" Keyword="ScanArc" Name="Scan Arc"
(0018,1144) VERS="4" VR="DS" VM="1" Keyword="AngularStep" Name="Angular Step"
(0018,1145) VERS="4" VR="DS" VM="1" Keyword="CenterOfRotationOffset" Name="Center of Rotation Offset"
(0018,1146) VERS="4RET" VR="DS" VM="1-n" Keyword="RotationOffset" Name="Rotation Offset"
(0018,1147) VERS="4" VR="CS" VM="1" Keyword="FieldOfViewShape" Name="Field of View Shape"
(0018,1149) VERS="4" VR="IS" VM="1-2" Keyword="FieldOfViewDimensions" Name="Field of View Dimension(s)"
(0018,1150) VERS="4" VR="IS" VM="1" Keyword="ExposureTime" Name="Exposure Time"
(0018,1151) VERS="4" VR="IS" VM="1" Keyword="XRayTubeCurrent" Name="X-Ray Tube Current"
(0018,1152) VERS="4" VR="IS" VM="1" Keyword="Exposure" Name="Exposure "
(0018,1153) VERS="4" VR="IS" VM="1" Keyword="ExposureInuAs" Name="Exposure in µAs"
(0018,1154) VERS="4" VR="DS" VM="1" Keyword="AveragePulseWidth" Name="Average Pulse Width"
(0018,1155) VERS="4" VR="CS" VM="1" Keyword="RadiationSetting" Name="Radiation Setting"
(0018,1156) VERS="4" VR="CS" VM="1" Keyword="RectificationType" Name="Rectification Type"
(0018,115A) VERS="4" VR="CS" VM="1" Keyword="RadiationMode" Name="Radiation Mode"
(0018,115E) VERS="4" VR="DS" VM="1" Keyword="ImageAndFluoroscopyAreaDoseProduct" Name="Image and Fluoroscopy Area Dose Product"
(0018,1160) VERS="4" VR="SH" VM="1" Keyword="FilterType" Name="Filter Type"
(0018,1161) VERS="4" VR="LO" VM="1-n" Keyword="TypeOfFilters" Name="Type of Filters"
(0018,1162) VERS="4" VR="DS" VM="1" Keyword="IntensifierSize" Name="Intensifier Size"
(0018,1164) VERS="4" VR="DS" VM="2" Keyword="ImagerPixelSpacing" Name="Imager Pixel Spacing"
(0018,1166) VERS="4" VR="CS" VM="1-n" Keyword="Grid" Name="Grid"
(0018,1170) VERS="4" VR="IS" VM="1" Keyword="GeneratorPower" Name="Generator Power"
(0018,1180) VERS="4" VR="SH" VM="1" Keyword="CollimatorGridName" Name="Collimator/grid Name "
(0018,1181) VERS="4" VR="CS" VM="1" Keyword="CollimatorType" Name="Collimator Type"
(0018,1182) VERS="4" VR="IS" VM="1-2" Keyword="FocalDistance" Name="Focal Distance"
(0018,1183) VERS="4" VR="DS" VM="1-2" Keyword="XFocusCenter" Name="X Focus Center"
(0018,1184) VERS="4" VR="DS" VM="1-2" Keyword="YFocusCenter" Name="Y Focus Center"
(0018,1190) VERS="4" VR="DS" VM="1-n" Keyword="FocalSpots" Name="Focal Spot(s)"
(0018,1191) VERS="4" VR="CS" VM="1" Keyword="AnodeTargetMaterial" Name="Anode Target Material"
(0018,11A0) VERS="4" VR="DS" VM="1" Keyword="BodyPartThickness" Name="Body Part Thickness"
(0018,11A2) VERS="4" VR="DS" VM="1" Keyword="CompressionForce" Name="Compression Force"
(0018,1200) VERS="4" VR="DA" VM="1-n" Keyword="DateOfLastCalibration" Name="Date of Last Calibration"
(0018,1201) VERS="4" VR="TM" VM="1-n" Keyword="TimeOfLastCalibration" Name="Time of Last Calibration"
(0018,1210) VERS="4" VR="SH" VM="1-n" Keyword="ConvolutionKernel" Name="Convolution Kernel"
(0018,1240) VERS="4RET" VR="IS" VM="1-n" Keyword="UpperLowerPixelValues" Name="Upper/Lower Pixel Values"
(0018,1242) VERS="4" VR="IS" VM="1" Keyword="ActualFrameDuration" Name="Actual Frame Duration"
(0018,1243) VERS="4" VR="IS" VM="1" Keyword="CountRate" Name="Count Rate"
(0018,1244) VERS="4" VR="US" VM="1" Keyword="PreferredPlaybackSequencing" Name="Preferred Playback Sequencing"
(0018,1250) VERS="4" VR="SH" VM="1" Keyword="ReceiveCoilName" Name="Receive Coil Name"
(0018,1251) VERS="4" VR="SH" VM="1" Keyword="TransmitCoilName" Name="Transmit Coil Name"
(0018,1260) VERS="4" VR="SH" VM="1" Keyword="PlateType" Name="Plate Type"
(0018,1261) VERS="4" VR="LO" VM="1" Keyword="PhosphorType" Name="Phosphor Type"
(0018,1300) VERS="4" VR="DS" VM="1" Keyword="ScanVelocity" Name="Scan Velocity"
(0018,1301) VERS="4" VR="CS" VM="1-n" Keyword="WholeBodyTechnique" Name="Whole Body Technique"
(0018,1302) VERS="4" VR="IS" VM="1" Keyword="ScanLength" Name="Scan Length"
(0018,1310) VERS="4" VR="US" VM="4" Keyword="AcquisitionMatrix" Name="Acquisition Matrix"
(0018,1312) VERS="4" VR="CS" VM="1" Keyword="InPlanePhaseEncodingDirection" Name="In-plane Phase Encoding Direction"
(0018,1314) VERS="4" VR="DS" VM="1" Keyword="FlipAngle" Name="Flip Angle"
(0018,1315) VERS="4" VR="CS" VM="1" Keyword="VariableFlipAngleFlag" Name="Variable Flip Angle Flag"
(0018,1316) VERS="4" VR="DS" VM="1" Keyword="SAR" Name="SAR"
(0018,1318) VERS="4" VR="DS" VM="1" Keyword="dBdt" Name="dB/dt"
(0018,1400) VERS="4" VR="LO" VM="1" Keyword="AcquisitionDeviceProcessingDescription" Name="Acquisition Device Processing Description "
(0018,1401) VERS="4" VR="LO" VM="1" Keyword="AcquisitionDeviceProcessingCode" Name="Acquisition Device Processing Code"
(0018,1402) VERS="4" VR="CS" VM="1" Keyword="CassetteOrientation" Name="Cassette Orientation"
(0018,1403) VERS="4" VR="CS" VM="1" Keyword="CassetteSize" Name="Cassette Size"
(0018,1404) VERS="4" VR="US" VM="1" Keyword="ExposuresOnPlate" Name="Exposures on Plate"
(0018,1405) VERS="4" VR="IS" VM="1" Keyword="RelativeXRayExposure" Name="Relative X-Ray Exposure"
(0018,1411) VERS="4" VR="DS" VM="1" Keyword="ExposureIndex" Name="Exposure Index"
(0018,1412) VERS="4" VR="DS" VM="1" Keyword="TargetExposureIndex" Name="Target Exposure Index"
(0018,1413) VERS="4" VR="DS" VM="1" Keyword="DeviationIndex" Name="Deviation Index"
(0018,1450) VERS="4" VR="DS" VM="1" Keyword="ColumnAngulation" Name="Column Angulation"
(0018,1460) VERS="4" VR="DS" VM="1" Keyword="TomoLayerHeight" Name="Tomo Layer Height"
(0018,1470) VERS="4" VR="DS" VM="1" Keyword="TomoAngle" Name="Tomo Angle"
(0018,1480) VERS="4" VR="DS" VM="1" Keyword="TomoTime" Name="Tomo Time"
(0018,1490) VERS="4" VR="CS" VM="1" Keyword="TomoType" Name="Tomo Type"
(0018,1491) VERS="4" VR="CS" VM="1" Keyword="TomoClass" Name="Tomo Class"
(0018,1495) VERS="4" VR="IS" VM="1" Keyword="NumberOfTomosynthesisSourceImages" Name="Number of Tomosynthesis Source Images"
(0018,1500) VERS="4" VR="CS" VM="1" Keyword="PositionerMotion" Name="Positioner Motion"
(0018,1508) VERS="4" VR="CS" VM="1" Keyword="PositionerType" Name="Positioner Type"
(0018,1510) VERS="4" VR="DS" VM="1" Keyword="PositionerPrimaryAngle" Name="Positioner Primary Angle"
(0018,1511) VERS="4" VR="DS" VM="1" Keyword="PositionerSecondaryAngle" Name="Positioner Secondary Angle"
(0018,1520) VERS="4" VR="DS" VM="1-n" Keyword="PositionerPrimaryAngleIncrement" Name="Positioner Primary Angle Increment"
(0018,1521) VERS="4" VR="DS" VM="1-n" Keyword="PositionerSecondaryAngleIncrement" Name="Positioner Secondary Angle Increment"
(0018,1530) VERS="4" VR="DS" VM="1" Keyword="DetectorPrimaryAngle" Name="Detector Primary Angle"
(0018,1531) VERS="4" VR="DS" VM="1" Keyword="DetectorSecondaryAngle" Name="Detector Secondary Angle"
(0018,1600) VERS="4" VR="CS" VM="1-3" Keyword="ShutterShape" Name="Shutter Shape"
(0018,1602) VERS="4" VR="IS" VM="1" Keyword="ShutterLeftVerticalEdge" Name="Shutter Left Vertical Edge"
(0018,1604) VERS="4" VR="IS" VM="1" Keyword="ShutterRightVerticalEdge" Name="Shutter Right Vertical Edge"
(0018,1606) VERS="4" VR="IS" VM="1" Keyword="ShutterUpperHorizontalEdge" Name="Shutter Upper Horizontal Edge"
(0018,1608) VERS="4" VR="IS" VM="1" Keyword="ShutterLowerHorizontalEdge" Name="Shutter Lower Horizontal Edge"
(0018,1610) VERS="4" VR="IS" VM="2" Keyword="CenterOfCircularShutter" Name="Center of Circular Shutter"
(0018,1612) VERS="4" VR="IS" VM="1" Keyword="RadiusOfCircularShutter" Name="Radius of Circular Shutter"
(0018,1620) VERS="4" VR="IS" VM="2-2n" Keyword="VerticesOfThePolygonalShutter" Name="Vertices of the Polygonal Shutter"
(0018,1622) VERS="4" VR="US" VM="1" Keyword="ShutterPresentationValue" Name="Shutter Presentation Value"
(0018,1623) VERS="4" VR="US" VM="1" Keyword="ShutterOverlayGroup" Name="Shutter Overlay Group"
(0018,1624) VERS="4" VR="US" VM="3" Keyword="ShutterPresentationColorCIELabValue" Name="Shutter Presentation Color CIELab Value"
(0018,1700) VERS="4" VR="CS" VM="1-3" Keyword="CollimatorShape" Name="Collimator Shape"
(0018,1702) VERS="4" VR="IS" VM="1" Keyword="CollimatorLeftVerticalEdge" Name="Collimator Left Vertical Edge"
(0018,1704) VERS="4" VR="IS" VM="1" Keyword="CollimatorRightVerticalEdge" Name="Collimator Right Vertical Edge"
(0018,1706) VERS="4" VR="IS" VM="1" Keyword="CollimatorUpperHorizontalEdge" Name="Collimator Upper Horizontal Edge"
(0018,1708) VERS="4" VR="IS" VM="1" Keyword="CollimatorLowerHorizontalEdge" Name="Collimator Lower Horizontal Edge"
(0018,1710) VERS="4" VR="IS" VM="2" Keyword="CenterOfCircularCollimator" Name="Center of Circular Collimator"
(0018,1712) VERS="4" VR="IS" VM="1" Keyword="RadiusOfCircularCollimator" Name="Radius of Circular Collimator"
(0018,1720) VERS="4" VR="IS" VM="2-2n" Keyword="VerticesOfThePolygonalCollimator" Name="Vertices of the Polygonal Collimator"
(0018,1800) VERS="4" VR="CS" VM="1" Keyword="AcquisitionTimeSynchronized" Name="Acquisition Time Synchronized"
(0018,1801) VERS="4" VR="SH" VM="1" Keyword="TimeSource" Name="Time Source"
(0018,1802) VERS="4" VR="CS" VM="1" Keyword="TimeDistributionProtocol" Name="Time Distribution Protocol"
(0018,1803) VERS="4" VR="LO" VM="1" Keyword="NTPSourceAddress" Name="NTP Source Address"
(0018,2001) VERS="4" VR="IS" VM="1-n" Keyword="PageNumberVector" Name="Page Number Vector"
(0018,2002) VERS="4" VR="SH" VM="1-n" Keyword="FrameLabelVector" Name="Frame Label Vector"
(0018,2003) VERS="4" VR="DS" VM="1-n" Keyword="FramePrimaryAngleVector" Name="Frame Primary Angle Vector"
(0018,2004) VERS="4" VR="DS" VM="1-n" Keyword="FrameSecondaryAngleVector" Name="Frame Secondary Angle Vector"
(0018,2005) VERS="4" VR="DS" VM="1-n" Keyword="SliceLocationVector" Name="Slice Location Vector"
(0018,2006) VERS="4" VR="SH" VM="1-n" Keyword="DisplayWindowLabelVector" Name="Display Window Label Vector"
(0018,2010) VERS="4" VR="DS" VM="2" Keyword="NominalScannedPixelSpacing" Name="Nominal Scanned Pixel Spacing"
(0018,2020) VERS="4" VR="CS" VM="1" Keyword="DigitizingDeviceTransportDirection" Name="Digitizing Device Transport Direction"
(0018,2030) VERS="4" VR="DS" VM="1" Keyword="RotationOfScannedFilm" Name="Rotation of Scanned Film"
(0018,3100) VERS="4" VR="CS" VM="1" Keyword="IVUSAcquisition" Name="IVUS Acquisition"
(0018,3101) VERS="4" VR="DS" VM="1" Keyword="IVUSPullbackRate" Name="IVUS Pullback Rate"
(0018,3102) VERS="4" VR="DS" VM="1" Keyword="IVUSGatedRate" Name="IVUS Gated Rate"
(0018,3103) VERS="4" VR="IS" VM="1" Keyword="IVUSPullbackStartFrameNumber" Name="IVUS Pullback Start Frame Number"
(0018,3104) VERS="4" VR="IS" VM="1" Keyword="IVUSPullbackStopFrameNumber" Name="IVUS Pullback Stop Frame Number"
(0018,3105) VERS="4" VR="IS" VM="1-n" Keyword="LesionNumber" Name="Lesion Number "
(0018,4000) VERS="4RET" VR="LT" VM="1" Keyword="AcquisitionComments" Name="Acquisition Comments"
(0018,5000) VERS="4" VR="SH" VM="1-n" Keyword="OutputPower" Name="Output Power"
(0018,5010) VERS="4" VR="LO" VM="1-n" Keyword="TransducerData" Name="Transducer Data"
(0018,5012) VERS="4" VR="DS" VM="1" Keyword="FocusDepth" Name="Focus Depth"
(0018,5020) VERS="4" VR="LO" VM="1" Keyword="ProcessingFunction" Name="Processing Function"
(0018,5021) VERS="4RET" VR="LO" VM="1" Keyword="PostprocessingFunction" Name="Postprocessing Function"
(0018,5022) VERS="4" VR="DS" VM="1" Keyword="MechanicalIndex" Name="Mechanical Index"
(0018,5024) VERS="4" VR="DS" VM="1" Keyword="BoneThermalIndex" Name="Bone Thermal Index"
(0018,5026) VERS="4" VR="DS" VM="1" Keyword="CranialThermalIndex" Name="Cranial Thermal Index"
(0018,5027) VERS="4" VR="DS" VM="1" Keyword="SoftTissueThermalIndex" Name="Soft Tissue Thermal Index"
(0018,5028) VERS="4" VR="DS" VM="1" Keyword="SoftTissueFocusThermalIndex" Name="Soft Tissue-focus Thermal Index"
(0018,5029) VERS="4" VR="DS" VM="1" Keyword="SoftTissueSurfaceThermalIndex" Name="Soft Tissue-surface Thermal Index"
(0018,5030) VERS="4RET" VR="DS" VM="1" Keyword="DynamicRange" Name="Dynamic Range"
(0018,5040) VERS="4RET" VR="DS" VM="1" Keyword="TotalGain" Name="Total Gain"
(0018,5050) VERS="4" VR="IS" VM="1" Keyword="DepthOfScanField" Name="Depth of Scan Field"
(0018,5100) VERS="4" VR="CS" VM="1" Keyword="PatientPosition" Name="Patient Position"
(0018,5101) VERS="4" VR="CS" VM="1" Keyword="ViewPosition" Name="View Position"
(0018,5104) VERS="4" VR="SQ" VM="1" Keyword="ProjectionEponymousNameCodeSequence" Name="Projection Eponymous Name Code Sequence"
(0018,5210) VERS="4RET" VR="DS" VM="6" Keyword="ImageTransformationMatrix" Name="Image Transformation Matrix"
(0018,5212) VERS="4RET" VR="DS" VM="3" Keyword="ImageTranslationVector" Name="Image Translation Vector"
(0018,6000) VERS="4" VR="DS" VM="1" Keyword="Sensitivity" Name="Sensitivity"
(0018,6011) VERS="4" VR="SQ" VM="1" Keyword="SequenceOfUltrasoundRegions" Name="Sequence of Ultrasound Regions"
(0018,6012) VERS="4" VR="US" VM="1" Keyword="RegionSpatialFormat" Name="Region Spatial Format"
(0018,6014) VERS="4" VR="US" VM="1" Keyword="RegionDataType" Name="Region Data Type"
(0018,6016) VERS="4" VR="UL" VM="1" Keyword="RegionFlags" Name="Region Flags"
(0018,6018) VERS="4" VR="UL" VM="1" Keyword="RegionLocationMinX0" Name="Region Location Min X0"
(0018,601A) VERS="4" VR="UL" VM="1" Keyword="RegionLocationMinY0" Name="Region Location Min Y0"
(0018,601C) VERS="4" VR="UL" VM="1" Keyword="RegionLocationMaxX1" Name="Region Location Max X1"
(0018,601E) VERS="4" VR="UL" VM="1" Keyword="RegionLocationMaxY1" Name="Region Location Max Y1"
(0018,6020) VERS="4" VR="SL" VM="1" Keyword="ReferencePixelX0" Name="Reference Pixel X0"
(0018,6022) VERS="4" VR="SL" VM="1" Keyword="ReferencePixelY0" Name="Reference Pixel Y0"
(0018,6024) VERS="4" VR="US" VM="1" Keyword="PhysicalUnitsXDirection" Name="Physical Units X Direction"
(0018,6026) VERS="4" VR="US" VM="1" Keyword="PhysicalUnitsYDirection" Name="Physical Units Y Direction"
(0018,6028) VERS="4" VR="FD" VM="1" Keyword="ReferencePixelPhysicalValueX" Name="Reference Pixel Physical Value X"
(0018,602A) VERS="4" VR="FD" VM="1" Keyword="ReferencePixelPhysicalValueY" Name="Reference Pixel Physical Value Y"
(0018,602C) VERS="4" VR="FD" VM="1" Keyword="PhysicalDeltaX" Name="Physical Delta X"
(0018,602E) VERS="4" VR="FD" VM="1" Keyword="PhysicalDeltaY" Name="Physical Delta Y"
(0018,6030) VERS="4" VR="UL" VM="1" Keyword="TransducerFrequency" Name="Transducer Frequency"
(0018,6031) VERS="4" VR="CS" VM="1" Keyword="TransducerType" Name="Transducer Type"
(0018,6032) VERS="4" VR="UL" VM="1" Keyword="PulseRepetitionFrequency" Name="Pulse Repetition Frequency"
(0018,6034) VERS="4" VR="FD" VM="1" Keyword="DopplerCorrectionAngle" Name="Doppler Correction Angle"
(0018,6036) VERS="4" VR="FD" VM="1" Keyword="SteeringAngle" Name="Steering Angle"
(0018,6038) VERS="4RET" VR="UL" VM="1" Keyword="DopplerSampleVolumeXPositionRetired" Name="Doppler Sample Volume X Position (Retired)"
(0018,6039) VERS="4" VR="SL" VM="1" Keyword="DopplerSampleVolumeXPosition" Name="Doppler Sample Volume X Position"
(0018,603A) VERS="4RET" VR="UL" VM="1" Keyword="DopplerSampleVolumeYPositionRetired" Name="Doppler Sample Volume Y Position (Retired)"
(0018,603B) VERS="4" VR="SL" VM="1" Keyword="DopplerSampleVolumeYPosition" Name="Doppler Sample Volume Y Position"
(0018,603C) VERS="4RET" VR="UL" VM="1" Keyword="TMLinePositionX0Retired" Name="TM-Line Position X0 (Retired)"
(0018,603D) VERS="4" VR="SL" VM="1" Keyword="TMLinePositionX0" Name="TM-Line Position X0"
(0018,603E) VERS="4RET" VR="UL" VM="1" Keyword="TMLinePositionY0Retired" Name="TM-Line Position Y0 (Retired)"
(0018,603F) VERS="4" VR="SL" VM="1" Keyword="TMLinePositionY0" Name="TM-Line Position Y0"
(0018,6040) VERS="4RET" VR="UL" VM="1" Keyword="TMLinePositionX1Retired" Name="TM-Line Position X1 (Retired)"
(0018,6041) VERS="4" VR="SL" VM="1" Keyword="TMLinePositionX1" Name="TM-Line Position X1"
(0018,6042) VERS="4RET" VR="UL" VM="1" Keyword="TMLinePositionY1Retired" Name="TM-Line Position Y1 (Retired)"
(0018,6043) VERS="4" VR="SL" VM="1" Keyword="TMLinePositionY1" Name="TM-Line Position Y1"
(0018,6044) VERS="4" VR="US" VM="1" Keyword="PixelComponentOrganization" Name="Pixel Component Organization"
(0018,6046) VERS="4" VR="UL" VM="1" Keyword="PixelComponentMask" Name="Pixel Component Mask"
(0018,6048) VERS="4" VR="UL" VM="1" Keyword="PixelComponentRangeStart" Name="Pixel Component Range Start"
(0018,604A) VERS="4" VR="UL" VM="1" Keyword="PixelComponentRangeStop" Name="Pixel Component Range Stop"
(0018,604C) VERS="4" VR="US" VM="1" Keyword="PixelComponentPhysicalUnits" Name="Pixel Component Physical Units"
(0018,604E) VERS="4" VR="US" VM="1" Keyword="PixelComponentDataType" Name="Pixel Component Data Type"
(0018,6050) VERS="4" VR="UL" VM="1" Keyword="NumberOfTableBreakPoints" Name="Number of Table Break Points"
(0018,6052) VERS="4" VR="UL" VM="1-n" Keyword="TableOfXBreakPoints" Name="Table of X Break Points"
(0018,6054) VERS="4" VR="FD" VM="1-n" Keyword="TableOfYBreakPoints" Name="Table of Y Break Points"
(0018,6056) VERS="4" VR="UL" VM="1" Keyword="NumberOfTableEntries" Name="Number of Table Entries"
(0018,6058) VERS="4" VR="UL" VM="1-n" Keyword="TableOfPixelValues" Name="Table of Pixel Values"
(0018,605A) VERS="4" VR="FL" VM="1-n" Keyword="TableOfParameterValues" Name="Table of Parameter Values"
(0018,6060) VERS="4" VR="FL" VM="1-n" Keyword="RWaveTimeVector" Name="R Wave Time Vector"
(0018,7000) VERS="4" VR="CS" VM="1" Keyword="DetectorConditionsNominalFlag" Name="Detector Conditions Nominal Flag "
(0018,7001) VERS="4" VR="DS" VM="1" Keyword="DetectorTemperature" Name="Detector Temperature"
(0018,7004) VERS="4" VR="CS" VM="1" Keyword="DetectorType" Name="Detector Type"
(0018,7005) VERS="4" VR="CS" VM="1" Keyword="DetectorConfiguration" Name="Detector Configuration"
(0018,7006) VERS="4" VR="LT" VM="1" Keyword="DetectorDescription" Name="Detector Description"
(0018,7008) VERS="4" VR="LT" VM="1" Keyword="DetectorMode" Name="Detector Mode"
(0018,700A) VERS="4" VR="SH" VM="1" Keyword="DetectorID" Name="Detector ID"
(0018,700C) VERS="4" VR="DA" VM="1" Keyword="DateOfLastDetectorCalibration" Name="Date of Last Detector Calibration "
(0018,700E) VERS="4" VR="TM" VM="1" Keyword="TimeOfLastDetectorCalibration" Name="Time of Last Detector Calibration"
(0018,7010) VERS="4" VR="IS" VM="1" Keyword="ExposuresOnDetectorSinceLastCalibration" Name="Exposures on Detector Since Last Calibration "
(0018,7011) VERS="4" VR="IS" VM="1" Keyword="ExposuresOnDetectorSinceManufactured" Name="Exposures on Detector Since Manufactured "
(0018,7012) VERS="4" VR="DS" VM="1" Keyword="DetectorTimeSinceLastExposure" Name="Detector Time Since Last Exposure "
(0018,7014) VERS="4" VR="DS" VM="1" Keyword="DetectorActiveTime" Name="Detector Active Time "
(0018,7016) VERS="4" VR="DS" VM="1" Keyword="DetectorActivationOffsetFromExposure" Name="Detector Activation Offset From Exposure"
(0018,701A) VERS="4" VR="DS" VM="2" Keyword="DetectorBinning" Name="Detector Binning "
(0018,7020) VERS="4" VR="DS" VM="2" Keyword="DetectorElementPhysicalSize" Name="Detector Element Physical Size"
(0018,7022) VERS="4" VR="DS" VM="2" Keyword="DetectorElementSpacing" Name="Detector Element Spacing"
(0018,7024) VERS="4" VR="CS" VM="1" Keyword="DetectorActiveShape" Name="Detector Active Shape"
(0018,7026) VERS="4" VR="DS" VM="1-2" Keyword="DetectorActiveDimensions" Name="Detector Active Dimension(s)"
(0018,7028) VERS="4" VR="DS" VM="2" Keyword="DetectorActiveOrigin" Name="Detector Active Origin"
(0018,702A) VERS="4" VR="LO" VM="1" Keyword="DetectorManufacturerName" Name="Detector Manufacturer Name"
(0018,702B) VERS="4" VR="LO" VM="1" Keyword="DetectorManufacturerModelName" Name="Detector Manufacturers Model Name"
(0018,7030) VERS="4" VR="DS" VM="2" Keyword="FieldOfViewOrigin" Name="Field of View Origin"
(0018,7032) VERS="4" VR="DS" VM="1" Keyword="FieldOfViewRotation" Name="Field of View Rotation"
(0018,7034) VERS="4" VR="CS" VM="1" Keyword="FieldOfViewHorizontalFlip" Name="Field of View Horizontal Flip"
(0018,7036) VERS="4" VR="FL" VM="2" Keyword="PixelDataAreaOriginRelativeToFOV" Name="Pixel Data Area Origin Relative To FOV"
(0018,7038) VERS="4" VR="FL" VM="1" Keyword="PixelDataAreaRotationAngleRelativeToFOV" Name="Pixel Data Area Rotation Angle Relative To FOV"
(0018,7040) VERS="4" VR="LT" VM="1" Keyword="GridAbsorbingMaterial" Name="Grid Absorbing Material"
(0018,7041) VERS="4" VR="LT" VM="1" Keyword="GridSpacingMaterial" Name="Grid Spacing Material"
(0018,7042) VERS="4" VR="DS" VM="1" Keyword="GridThickness" Name="Grid Thickness"
(0018,7044) VERS="4" VR="DS" VM="1" Keyword="GridPitch" Name="Grid Pitch"
(0018,7046) VERS="4" VR="IS" VM="2" Keyword="GridAspectRatio" Name="Grid Aspect Ratio"
(0018,7048) VERS="4" VR="DS" VM="1" Keyword="GridPeriod" Name="Grid Period"
(0018,704C) VERS="4" VR="DS" VM="1" Keyword="GridFocalDistance" Name="Grid Focal Distance"
(0018,7050) VERS="4" VR="CS" VM="1-n" Keyword="FilterMaterial" Name="Filter Material"
(0018,7052) VERS="4" VR="DS" VM="1-n" Keyword="FilterThicknessMinimum" Name="Filter Thickness Minimum"
(0018,7054) VERS="4" VR="DS" VM="1-n" Keyword="FilterThicknessMaximum" Name="Filter Thickness Maximum"
(0018,7056) VERS="4" VR="FL" VM="1-n" Keyword="FilterBeamPathLengthMinimum" Name="Filter Beam Path Length Minimum"
(0018,7058) VERS="4" VR="FL" VM="1-n" Keyword="FilterBeamPathLengthMaximum" Name="Filter Beam Path Length Maximum"
(0018,7060) VERS="4" VR="CS" VM="1" Keyword="ExposureControlMode" Name="Exposure Control Mode"
(0018,7062) VERS="4" VR="LT" VM="1" Keyword="ExposureControlModeDescription" Name="Exposure Control Mode Description"
(0018,7064) VERS="4" VR="CS" VM="1" Keyword="ExposureStatus" Name="Exposure Status"
(0018,7065) VERS="4" VR="DS" VM="1" Keyword="PhototimerSetting" Name="Phototimer Setting"
(0018,8150) VERS="4" VR="DS" VM="1" Keyword="ExposureTimeInuS" Name="Exposure Time in µS"
(0018,8151) VERS="4" VR="DS" VM="1" Keyword="XRayTubeCurrentInuA" Name="X-Ray Tube Current in µA"
(0018,9004) VERS="4" VR="CS" VM="1" Keyword="ContentQualification" Name="Content Qualification"
(0018,9005) VERS="4" VR="SH" VM="1" Keyword="PulseSequenceName" Name="Pulse Sequence Name"
(0018,9006) VERS="4" VR="SQ" VM="1" Keyword="MRImagingModifierSequence" Name="MR Imaging Modifier Sequence"
(0018,9008) VERS="4" VR="CS" VM="1" Keyword="EchoPulseSequence" Name="Echo Pulse Sequence"
(0018,9009) VERS="4" VR="CS" VM="1" Keyword="InversionRecovery" Name="Inversion Recovery"
(0018,9010) VERS="4" VR="CS" VM="1" Keyword="FlowCompensation" Name="Flow Compensation"
(0018,9011) VERS="4" VR="CS" VM="1" Keyword="MultipleSpinEcho" Name="Multiple Spin Echo"
(0018,9012) VERS="4" VR="CS" VM="1" Keyword="MultiPlanarExcitation" Name="Multi-planar Excitation"
(0018,9014) VERS="4" VR="CS" VM="1" Keyword="PhaseContrast" Name="Phase Contrast"
(0018,9015) VERS="4" VR="CS" VM="1" Keyword="TimeOfFlightContrast" Name="Time of Flight Contrast"
(0018,9016) VERS="4" VR="CS" VM="1" Keyword="Spoiling" Name="Spoiling"
(0018,9017) VERS="4" VR="CS" VM="1" Keyword="SteadyStatePulseSequence" Name="Steady State Pulse Sequence"
(0018,9018) VERS="4" VR="CS" VM="1" Keyword="EchoPlanarPulseSequence" Name="Echo Planar Pulse Sequence"
(0018,9019) VERS="4" VR="FD" VM="1" Keyword="TagAngleFirstAxis" Name="Tag Angle First Axis"
(0018,9020) VERS="4" VR="CS" VM="1" Keyword="MagnetizationTransfer" Name="Magnetization Transfer"
(0018,9021) VERS="4" VR="CS" VM="1" Keyword="T2Preparation" Name="T2 Preparation"
(0018,9022) VERS="4" VR="CS" VM="1" Keyword="BloodSignalNulling" Name="Blood Signal Nulling"
(0018,9024) VERS="4" VR="CS" VM="1" Keyword="SaturationRecovery" Name="Saturation Recovery"
(0018,9025) VERS="4" VR="CS" VM="1" Keyword="SpectrallySelectedSuppression" Name="Spectrally Selected Suppression"
(0018,9026) VERS="4" VR="CS" VM="1" Keyword="SpectrallySelectedExcitation" Name="Spectrally Selected Excitation"
(0018,9027) VERS="4" VR="CS" VM="1" Keyword="SpatialPresaturation" Name="Spatial Pre-saturation"
(0018,9028) VERS="4" VR="CS" VM="1" Keyword="Tagging" Name="Tagging"
(0018,9029) VERS="4" VR="CS" VM="1" Keyword="OversamplingPhase" Name="Oversampling Phase"
(0018,9030) VERS="4" VR="FD" VM="1" Keyword="TagSpacingFirstDimension" Name="Tag Spacing First Dimension"
(0018,9032) VERS="4" VR="CS" VM="1" Keyword="GeometryOfKSpaceTraversal" Name="Geometry of k-Space Traversal"
(0018,9033) VERS="4" VR="CS" VM="1" Keyword="SegmentedKSpaceTraversal" Name="Segmented k-Space Traversal"
(0018,9034) VERS="4" VR="CS" VM="1" Keyword="RectilinearPhaseEncodeReordering" Name="Rectilinear Phase Encode Reordering"
(0018,9035) VERS="4" VR="FD" VM="1" Keyword="TagThickness" Name="Tag Thickness"
(0018,9036) VERS="4" VR="CS" VM="1" Keyword="PartialFourierDirection" Name="Partial Fourier Direction"
(0018,9037) VERS="4" VR="CS" VM="1" Keyword="CardiacSynchronizationTechnique" Name="Cardiac Synchronization Technique"
(0018,9041) VERS="4" VR="LO" VM="1" Keyword="ReceiveCoilManufacturerName" Name="Receive Coil Manufacturer Name"
(0018,9042) VERS="4" VR="SQ" VM="1" Keyword="MRReceiveCoilSequence" Name="MR Receive Coil Sequence"
(0018,9043) VERS="4" VR="CS" VM="1" Keyword="ReceiveCoilType" Name="Receive Coil Type "
(0018,9044) VERS="4" VR="CS" VM="1" Keyword="QuadratureReceiveCoil" Name="Quadrature Receive Coil "
(0018,9045) VERS="4" VR="SQ" VM="1" Keyword="MultiCoilDefinitionSequence" Name="Multi-Coil Definition Sequence"
(0018,9046) VERS="4" VR="LO" VM="1" Keyword="MultiCoilConfiguration" Name="Multi-Coil Configuration "
(0018,9047) VERS="4" VR="SH" VM="1" Keyword="MultiCoilElementName" Name="Multi-Coil Element Name"
(0018,9048) VERS="4" VR="CS" VM="1" Keyword="MultiCoilElementUsed" Name="Multi-Coil Element Used"
(0018,9049) VERS="4" VR="SQ" VM="1" Keyword="MRTransmitCoilSequence" Name="MR Transmit Coil Sequence"
(0018,9050) VERS="4" VR="LO" VM="1" Keyword="TransmitCoilManufacturerName" Name="Transmit Coil Manufacturer Name"
(0018,9051) VERS="4" VR="CS" VM="1" Keyword="TransmitCoilType" Name="Transmit Coil Type"
(0018,9052) VERS="4" VR="FD" VM="1-2" Keyword="SpectralWidth" Name="Spectral Width"
(0018,9053) VERS="4" VR="FD" VM="1-2" Keyword="ChemicalShiftReference" Name="Chemical Shift Reference"
(0018,9054) VERS="4" VR="CS" VM="1" Keyword="VolumeLocalizationTechnique" Name="Volume Localization Technique"
(0018,9058) VERS="4" VR="US" VM="1" Keyword="MRAcquisitionFrequencyEncodingSteps" Name="MR Acquisition Frequency Encoding Steps"
(0018,9059) VERS="4" VR="CS" VM="1" Keyword="Decoupling" Name="De-coupling"
(0018,9060) VERS="4" VR="CS" VM="1-2" Keyword="DecoupledNucleus" Name="De-coupled Nucleus"
(0018,9061) VERS="4" VR="FD" VM="1-2" Keyword="DecouplingFrequency" Name="De-coupling Frequency"
(0018,9062) VERS="4" VR="CS" VM="1" Keyword="DecouplingMethod" Name="De-coupling Method"
(0018,9063) VERS="4" VR="FD" VM="1-2" Keyword="DecouplingChemicalShiftReference" Name="De-coupling Chemical Shift Reference"
(0018,9064) VERS="4" VR="CS" VM="1" Keyword="KSpaceFiltering" Name="k-space Filtering"
(0018,9065) VERS="4" VR="CS" VM="1-2" Keyword="TimeDomainFiltering" Name="Time Domain Filtering"
(0018,9066) VERS="4" VR="US" VM="1-2" Keyword="NumberOfZeroFills" Name="Number of Zero Fills"
(0018,9067) VERS="4" VR="CS" VM="1" Keyword="BaselineCorrection" Name="Baseline Correction"
(0018,9069) VERS="4" VR="FD" VM="1" Keyword="ParallelReductionFactorInPlane" Name="Parallel Reduction Factor In-plane"
(0018,9070) VERS="4" VR="FD" VM="1" Keyword="CardiacRRIntervalSpecified" Name="Cardiac R-R Interval Specified"
(0018,9073) VERS="4" VR="FD" VM="1" Keyword="AcquisitionDuration" Name="Acquisition Duration"
(0018,9074) VERS="4" VR="DT" VM="1" Keyword="FrameAcquisitionDateTime" Name="Frame Acquisition DateTime"
(0018,9075) VERS="4" VR="CS" VM="1" Keyword="DiffusionDirectionality" Name="Diffusion Directionality"
(0018,9076) VERS="4" VR="SQ" VM="1" Keyword="DiffusionGradientDirectionSequence" Name="Diffusion Gradient Direction Sequence"
(0018,9077) VERS="4" VR="CS" VM="1" Keyword="ParallelAcquisition" Name="Parallel Acquisition"
(0018,9078) VERS="4" VR="CS" VM="1" Keyword="ParallelAcquisitionTechnique" Name="Parallel Acquisition Technique"
(0018,9079) VERS="4" VR="FD" VM="1-n" Keyword="InversionTimes" Name="Inversion Times"
(0018,9080) VERS="4" VR="ST" VM="1" Keyword="MetaboliteMapDescription" Name="Metabolite Map Description"
(0018,9081) VERS="4" VR="CS" VM="1" Keyword="PartialFourier" Name="Partial Fourier"
(0018,9082) VERS="4" VR="FD" VM="1" Keyword="EffectiveEchoTime" Name="Effective Echo Time"
(0018,9083) VERS="4" VR="SQ" VM="1" Keyword="MetaboliteMapCodeSequence" Name="Metabolite Map Code Sequence"
(0018,9084) VERS="4" VR="SQ" VM="1" Keyword="ChemicalShiftSequence" Name="Chemical Shift Sequence"
(0018,9085) VERS="4" VR="CS" VM="1" Keyword="CardiacSignalSource" Name="Cardiac Signal Source"
(0018,9087) VERS="4" VR="FD" VM="1" Keyword="DiffusionBValue" Name="Diffusion b-value"
(0018,9089) VERS="4" VR="FD" VM="3" Keyword="DiffusionGradientOrientation" Name="Diffusion Gradient Orientation"
(0018,9090) VERS="4" VR="FD" VM="3" Keyword="VelocityEncodingDirection" Name="Velocity Encoding Direction"
(0018,9091) VERS="4" VR="FD" VM="1" Keyword="VelocityEncodingMinimumValue" Name="Velocity Encoding Minimum Value"
(0018,9092) VERS="4" VR="SQ" VM="1" Keyword="VelocityEncodingAcquisitionSequence" Name="Velocity Encoding Acquisition Sequence"
(0018,9093) VERS="4" VR="US" VM="1" Keyword="NumberOfKSpaceTrajectories" Name="Number of k-Space Trajectories"
(0018,9094) VERS="4" VR="CS" VM="1" Keyword="CoverageOfKSpace" Name="Coverage of k-Space"
(0018,9095) VERS="4" VR="UL" VM="1" Keyword="SpectroscopyAcquisitionPhaseRows" Name="Spectroscopy Acquisition Phase Rows"
(0018,9096) VERS="4RET" VR="FD" VM="1" Keyword="ParallelReductionFactorInPlaneRetired" Name="Parallel Reduction Factor In-plane (Retired)"
(0018,9098) VERS="4" VR="FD" VM="1-2" Keyword="TransmitterFrequency" Name="Transmitter Frequency"
(0018,9100) VERS="4" VR="CS" VM="1-2" Keyword="ResonantNucleus" Name="Resonant Nucleus"
(0018,9101) VERS="4" VR="CS" VM="1" Keyword="FrequencyCorrection" Name="Frequency Correction"
(0018,9103) VERS="4" VR="SQ" VM="1" Keyword="MRSpectroscopyFOVGeometrySequence" Name="MR Spectroscopy FOV/Geometry Sequence"
(0018,9104) VERS="4" VR="FD" VM="1" Keyword="SlabThickness" Name="Slab Thickness"
(0018,9105) VERS="4" VR="FD" VM="3" Keyword="SlabOrientation" Name="Slab Orientation"
(0018,9106) VERS="4" VR="FD" VM="3" Keyword="MidSlabPosition" Name="Mid Slab Position"
(0018,9107) VERS="4" VR="SQ" VM="1" Keyword="MRSpatialSaturationSequence" Name="MR Spatial Saturation Sequence"
(0018,9112) VERS="4" VR="SQ" VM="1" Keyword="MRTimingAndRelatedParametersSequence" Name="MR Timing and Related Parameters Sequence"
(0018,9114) VERS="4" VR="SQ" VM="1" Keyword="MREchoSequence" Name="MR Echo Sequence"
(0018,9115) VERS="4" VR="SQ" VM="1" Keyword="MRModifierSequence" Name="MR Modifier Sequence"
(0018,9117) VERS="4" VR="SQ" VM="1" Keyword="MRDiffusionSequence" Name="MR Diffusion Sequence"
(0018,9118) VERS="4" VR="SQ" VM="1" Keyword="CardiacSynchronizationSequence" Name="Cardiac Synchronization Sequence"
(0018,9119) VERS="4" VR="SQ" VM="1" Keyword="MRAveragesSequence" Name="MR Averages Sequence"
(0018,9125) VERS="4" VR="SQ" VM="1" Keyword="MRFOVGeometrySequence" Name="MR FOV/Geometry Sequence"
(0018,9126) VERS="4" VR="SQ" VM="1" Keyword="VolumeLocalizationSequence" Name="Volume Localization Sequence"
(0018,9127) VERS="4" VR="UL" VM="1" Keyword="SpectroscopyAcquisitionDataColumns" Name="Spectroscopy Acquisition Data Columns"
(0018,9147) VERS="4" VR="CS" VM="1" Keyword="DiffusionAnisotropyType" Name="Diffusion Anisotropy Type"
(0018,9151) VERS="4" VR="DT" VM="1" Keyword="FrameReferenceDateTime" Name="Frame Reference DateTime"
(0018,9152) VERS="4" VR="SQ" VM="1" Keyword="MRMetaboliteMapSequence" Name="MR Metabolite Map Sequence"
(0018,9155) VERS="4" VR="FD" VM="1" Keyword="ParallelReductionFactorOutOfPlane" Name="Parallel Reduction Factor out-of-plane"
(0018,9159) VERS="4" VR="UL" VM="1" Keyword="SpectroscopyAcquisitionOutOfPlanePhaseSteps" Name="Spectroscopy Acquisition Out-of-plane Phase Steps"
(0018,9166) VERS="4RET" VR="CS" VM="1" Keyword="BulkMotionStatus" Name="Bulk Motion Status"
(0018,9168) VERS="4" VR="FD" VM="1" Keyword="ParallelReductionFactorSecondInPlane" Name="Parallel Reduction Factor Second In-plane"
(0018,9169) VERS="4" VR="CS" VM="1" Keyword="CardiacBeatRejectionTechnique" Name="Cardiac Beat Rejection Technique"
(0018,9170) VERS="4" VR="CS" VM="1" Keyword="RespiratoryMotionCompensationTechnique" Name="Respiratory Motion Compensation Technique"
(0018,9171) VERS="4" VR="CS" VM="1" Keyword="RespiratorySignalSource" Name="Respiratory Signal Source"
(0018,9172) VERS="4" VR="CS" VM="1" Keyword="BulkMotionCompensationTechnique" Name="Bulk Motion Compensation Technique"
(0018,9173) VERS="4" VR="CS" VM="1" Keyword="BulkMotionSignalSource" Name="Bulk Motion Signal Source"
(0018,9174) VERS="4" VR="CS" VM="1" Keyword="ApplicableSafetyStandardAgency" Name="Applicable Safety Standard Agency"
(0018,9175) VERS="4" VR="LO" VM="1" Keyword="ApplicableSafetyStandardDescription" Name="Applicable Safety Standard Description"
(0018,9176) VERS="4" VR="SQ" VM="1" Keyword="OperatingModeSequence" Name="Operating Mode Sequence"
(0018,9177) VERS="4" VR="CS" VM="1" Keyword="OperatingModeType" Name="Operating Mode Type"
(0018,9178) VERS="4" VR="CS" VM="1" Keyword="OperatingMode" Name="Operating Mode"
(0018,9179) VERS="4" VR="CS" VM="1" Keyword="SpecificAbsorptionRateDefinition" Name="Specific Absorption Rate Definition"
(0018,9180) VERS="4" VR="CS" VM="1" Keyword="GradientOutputType" Name="Gradient Output Type"
(0018,9181) VERS="4" VR="FD" VM="1" Keyword="SpecificAbsorptionRateValue" Name="Specific Absorption Rate Value"
(0018,9182) VERS="4" VR="FD" VM="1" Keyword="GradientOutput" Name="Gradient Output"
(0018,9183) VERS="4" VR="CS" VM="1" Keyword="FlowCompensationDirection" Name="Flow Compensation Direction"
(0018,9184) VERS="4" VR="FD" VM="1" Keyword="TaggingDelay" Name="Tagging Delay"
(0018,9185) VERS="4" VR="ST" VM="1" Keyword="RespiratoryMotionCompensationTechniqueDescription" Name="Respiratory Motion Compensation Technique Description"
(0018,9186) VERS="4" VR="SH" VM="1" Keyword="RespiratorySignalSourceID" Name="Respiratory Signal Source ID"
(0018,9195) VERS="4RET" VR="FD" VM="1" Keyword="ChemicalShiftMinimumIntegrationLimitInHz" Name="Chemical Shift Minimum Integration Limit in Hz"
(0018,9196) VERS="4RET" VR="FD" VM="1" Keyword="ChemicalShiftMaximumIntegrationLimitInHz" Name="Chemical Shift Maximum Integration Limit in Hz"
(0018,9197) VERS="4" VR="SQ" VM="1" Keyword="MRVelocityEncodingSequence" Name="MR Velocity Encoding Sequence"
(0018,9198) VERS="4" VR="CS" VM="1" Keyword="FirstOrderPhaseCorrection" Name="First Order Phase Correction"
(0018,9199) VERS="4" VR="CS" VM="1" Keyword="WaterReferencedPhaseCorrection" Name="Water Referenced Phase Correction"
(0018,9200) VERS="4" VR="CS" VM="1" Keyword="MRSpectroscopyAcquisitionType" Name="MR Spectroscopy Acquisition Type"
(0018,9214) VERS="4" VR="CS" VM="1" Keyword="RespiratoryCyclePosition" Name="Respiratory Cycle Position"
(0018,9217) VERS="4" VR="FD" VM="1" Keyword="VelocityEncodingMaximumValue" Name="Velocity Encoding Maximum Value"
(0018,9218) VERS="4" VR="FD" VM="1" Keyword="TagSpacingSecondDimension" Name="Tag Spacing Second Dimension"
(0018,9219) VERS="4" VR="SS" VM="1" Keyword="TagAngleSecondAxis" Name="Tag Angle Second Axis"
(0018,9220) VERS="4" VR="FD" VM="1" Keyword="FrameAcquisitionDuration" Name="Frame Acquisition Duration"
(0018,9226) VERS="4" VR="SQ" VM="1" Keyword="MRImageFrameTypeSequence" Name="MR Image Frame Type Sequence"
(0018,9227) VERS="4" VR="SQ" VM="1" Keyword="MRSpectroscopyFrameTypeSequence" Name="MR Spectroscopy Frame Type Sequence"
(0018,9231) VERS="4" VR="US" VM="1" Keyword="MRAcquisitionPhaseEncodingStepsInPlane" Name="MR Acquisition Phase Encoding Steps in-plane"
(0018,9232) VERS="4" VR="US" VM="1" Keyword="MRAcquisitionPhaseEncodingStepsOutOfPlane" Name="MR Acquisition Phase Encoding Steps out-of-plane"
(0018,9234) VERS="4" VR="UL" VM="1" Keyword="SpectroscopyAcquisitionPhaseColumns" Name="Spectroscopy Acquisition Phase Columns"
(0018,9236) VERS="4" VR="CS" VM="1" Keyword="CardiacCyclePosition" Name="Cardiac Cycle Position"
(0018,9239) VERS="4" VR="SQ" VM="1" Keyword="SpecificAbsorptionRateSequence" Name="Specific Absorption Rate Sequence"
(0018,9240) VERS="4" VR="US" VM="1" Keyword="RFEchoTrainLength" Name="RF Echo Train Length"
(0018,9241) VERS="4" VR="US" VM="1" Keyword="GradientEchoTrainLength" Name="Gradient Echo Train Length"
(0018,9250) VERS="4" VR="CS" VM="1" Keyword="ArterialSpinLabelingContrast" Name="Arterial Spin Labeling Contrast"
(0018,9251) VERS="4" VR="SQ" VM="1" Keyword="MRArterialSpinLabelingSequence" Name="MR Arterial Spin Labeling Sequence"
(0018,9252) VERS="4" VR="LO" VM="1" Keyword="ASLTechniqueDescription" Name="ASL Technique Description"
(0018,9253) VERS="4" VR="US" VM="1" Keyword="ASLSlabNumber" Name="ASL Slab Number"
(0018,9254) VERS="4" VR="FD " VM="1 " Keyword="ASLSlabThickness" Name="ASL Slab Thickness"
(0018,9255) VERS="4" VR="FD " VM="3 " Keyword="ASLSlabOrientation" Name="ASL Slab Orientation"
(0018,9256) VERS="4" VR="FD " VM="3" Keyword="ASLMidSlabPosition" Name="ASL Mid Slab Position"
(0018,9257) VERS="4" VR="CS" VM="1 " Keyword="ASLContext" Name="ASL Context"
(0018,9258) VERS="4" VR="UL" VM="1" Keyword="ASLPulseTrainDuration" Name="ASL Pulse Train Duration"
(0018,9259) VERS="4" VR="CS" VM="1 " Keyword="ASLCrusherFlag" Name="ASL Crusher Flag"
(0018,925A) VERS="4" VR="FD" VM="1" Keyword="ASLCrusherFlow" Name="ASL Crusher Flow"
(0018,925B) VERS="4" VR="LO" VM="1" Keyword="ASLCrusherDescription" Name="ASL Crusher Description"
(0018,925C) VERS="4" VR="CS" VM="1 " Keyword="ASLBolusCutoffFlag" Name="ASL Bolus Cut-off Flag"
(0018,925D) VERS="4" VR="SQ" VM="1" Keyword="ASLBolusCutoffTimingSequence" Name="ASL Bolus Cut-off Timing Sequence"
(0018,925E) VERS="4" VR="LO" VM="1" Keyword="ASLBolusCutoffTechnique" Name="ASL Bolus Cut-off Technique"
(0018,925F) VERS="4" VR="UL" VM="1" Keyword="ASLBolusCutoffDelayTime" Name="ASL Bolus Cut-off Delay Time"
(0018,9260) VERS="4" VR="SQ" VM="1" Keyword="ASLSlabSequence" Name="ASL Slab Sequence"
(0018,9295) VERS="4" VR="FD" VM="1" Keyword="ChemicalShiftMinimumIntegrationLimitInppm" Name="Chemical Shift Minimum Integration Limit in ppm"
(0018,9296) VERS="4" VR="FD" VM="1" Keyword="ChemicalShiftMaximumIntegrationLimitInppm" Name="Chemical Shift Maximum Integration Limit in ppm"
(0018,9301) VERS="4" VR="SQ" VM="1" Keyword="CTAcquisitionTypeSequence" Name="CT Acquisition Type Sequence"
(0018,9302) VERS="4" VR="CS" VM="1" Keyword="AcquisitionType" Name="Acquisition Type"
(0018,9303) VERS="4" VR="FD" VM="1" Keyword="TubeAngle" Name="Tube Angle"
(0018,9304) VERS="4" VR="SQ" VM="1" Keyword="CTAcquisitionDetailsSequence" Name="CT Acquisition Details Sequence"
(0018,9305) VERS="4" VR="FD" VM="1" Keyword="RevolutionTime" Name="Revolution Time"
(0018,9306) VERS="4" VR="FD" VM="1" Keyword="SingleCollimationWidth" Name="Single Collimation Width"