-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnift.belns.mapping
1220 lines (1220 loc) · 55.2 KB
/
nift.belns.mapping
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
{
"00001": "11C AC_5216",
"00002": "11C A_836339",
"00003": "11C FMZ",
"00004": "11C MP4A",
"00005": "11C Methylpiperidin_4_yl propionate",
"00006": "11C PBB3",
"00007": "11C PMP",
"00008": "11C_2_deoxy_D_glucose",
"00009": "11C_5",
"00010": "11C_Arachidonic acid",
"00011": "11C_CFT",
"00012": "11C_DA1106",
"00013": "11C_DED",
"00014": "11C_L_deuteriodeprenyl",
"00015": "11C_PiB",
"00016": "11C_Raclopride",
"00017": "11C_WAY100635",
"00018": "11C_benztropine",
"00019": "11C_butanol",
"00020": "11C_dihydrotetrabenazine_PET",
"00021": "11C_diprenorphine_PET",
"00022": "11C_nicotine",
"00023": "11C_physostigmine",
"00024": "11_C_PK11195",
"00025": "123 iodobenzamide",
"00026": "123I IBVM",
"00027": "123I_N_isopropyl_p_iodoamphetamine",
"00028": "123I_iodobenzamide_SPECT",
"00029": "123_I_FP_CIT",
"00030": "123_I_altropane",
"00031": "123l_beta_CIT",
"00032": "15 O Water",
"00033": "18 F_2_deoxy_D_glucose",
"00034": "18F AV_45",
"00035": "18F T807",
"00036": "18F THK523",
"00037": "18F fluorodeoxyglucose",
"00038": "18F_1a",
"00039": "18F_24",
"00040": "18F_DOPA",
"00041": "18F_FDDNP",
"00042": "18F_FP_TZTP",
"00043": "18F_NFEP",
"00044": "18F_alanserine",
"00045": "18F_florbetaben",
"00046": "18F_florbetapir",
"00047": "18F_flutemetamol",
"00048": "18_fluorodeoxyglucose PET",
"00049": "3-HPMA/Cre ratio",
"00050": "3T MRI Scan Information",
"00051": "64 Cu II L1",
"00052": "99mTc_ECD",
"00053": "99mTc_HMPAO",
"00054": "99mTc_TRODAT_1",
"00055": "AD specific structural abnormality index",
"00056": "AD7C test",
"00057": "ASL perfusion CBF by FreeSurfer ROI",
"00058": "AV45_PET",
"00059": "AV_45 PET Scan",
"00060": "Abeta 1_40 test",
"00061": "Abeta 1_42 test",
"00062": "Abeta_40_42_ratio",
"00063": "Abeta_42",
"00064": "Abeta_42 CSF",
"00065": "Abnormal involuntary movement scale",
"00066": "Acetylcholine",
"00067": "Acetylcholine neuronal integrity",
"00068": "Adverse events",
"00069": "Adverse events of spatial interest",
"00070": "Algorithms",
"00071": "Alzheimer disease",
"00072": "Alzheimer questionnaire",
"00073": "Alzheimers Disease Cooperative Study_Clinical Global Impression of Change",
"00074": "Alzheimers disease assessment scale",
"00075": "Alzheimer\u2019s disease co_operative study _ activities of daily living",
"00076": "American national adult reading test",
"00077": "Amygdala",
"00078": "Amygdalar volume",
"00079": "Amyloid beta metabolism",
"00080": "Amyloid deposition",
"00081": "Amyloid imaging",
"00082": "Amyloid positron emission tomography",
"00083": "Amyloid related imaging abnormality",
"00084": "Amyloid_PET imaging",
"00085": "Angular Gyrus",
"00086": "Anterior Occipital Sulcus and Preoccipital Notch",
"00087": "Anterior Orbital Gyrus",
"00088": "Anterior Part of Cingulate Sulcus",
"00089": "Anterior Part of the Cingulate Gyrus and Sulcus",
"00090": "Anterior Postcentral Gyrus",
"00091": "Anterior Segment of Lateral Sulcus",
"00092": "Anterior Segment of the Circular Sulcus of the Insula",
"00093": "Anterior Subcentral Sulcus",
"00094": "Anterior Temporal Lobe Atrophy",
"00095": "Anterior Transverse Collateral Sulcus",
"00096": "Anterior Transverse Temporal Gyrus",
"00097": "Apathy evaluation",
"00098": "Apomorphine test",
"00099": "Archimedes spiral",
"00100": "Army dystonia disability scale",
"00101": "Arterial spin labeling",
"00102": "Assessment of anxiety",
"00103": "Atrophy",
"00104": "Axial diffusivity",
"00105": "Axonal integrity",
"00106": "BAI_MRI NMRC summary",
"00107": "BAI_PET NMRC amyloid convergence index methods",
"00108": "Basal Forebrain Nucleus",
"00109": "Basal forebrain volume",
"00110": "Basal ganglia hypometabolism",
"00111": "Berg balance scale",
"00112": "Bilateral Parietal Lobe Atrophy",
"00113": "Bilateral Temporal Lobe Atrophy",
"00114": "Bilateral temporal hypometabolism",
"00115": "Bilateral temporoparietal hypoperfusion",
"00116": "Blessed information memory concentration test",
"00117": "Blood oxygenation",
"00118": "Blood oxygenation level dependent",
"00119": "Blood_oxygen_level dependent contrast imaging",
"00120": "Blood_oxygen_level dependent functional magnetic resonance imaging",
"00121": "Boston diagnostic aphasia examination",
"00122": "Boston naming test",
"00123": "Boundary shift integral summary",
"00124": "Brain Metabolism",
"00125": "Brain Protein Deposits Tracer",
"00126": "Brain atrophy",
"00127": "Brain hemorrhage",
"00128": "Brain parenchymal fraction",
"00129": "Brain parenchymal tissue volume",
"00130": "Brain receptor binding",
"00131": "Brain region",
"00132": "Brain serotonin _5_HT_ synthesis",
"00133": "Brain stem",
"00134": "Brain stem atrophy",
"00135": "Brain swelling",
"00136": "Brain thickness",
"00137": "Brain to intracranial capacity ratio",
"00138": "Brain volume",
"00139": "Brief screening test",
"00140": "Buschke memory test",
"00141": "Buschke memory test _ delayed facilitated recall",
"00142": "Buschke memory test _ delayed free recall",
"00143": "Buschke memory test _ faciliated recall",
"00144": "Buschke memory test _ free recall",
"00145": "CA1 of the hippocampus",
"00146": "CA3 of the hippocampus",
"00147": "CBIC",
"00148": "CLU associated brain atrophy",
"00149": "CSF-Tau",
"00150": "Calcarine Sulcus",
"00151": "California verbal learning test",
"00152": "Cambridge neuropsychological test",
"00153": "CaudatePutamen volume",
"00154": "Central Area Grey Matter",
"00155": "Central Area White Matter",
"00156": "Central Sulcus of the Insula and the Long Insular Gyri",
"00157": "Central sulcus",
"00158": "Cerebellar White Matter",
"00159": "Cerebellar atrophy",
"00160": "Cerebellar cortex",
"00161": "Cerebellar cortical atrophy",
"00162": "Cerebellum_cortex volume",
"00163": "Cerebral Cortex",
"00164": "Cerebral Perfusion Imaging",
"00165": "Cerebral White Matter Lesion",
"00166": "Cerebral atrophy",
"00167": "Cerebral blood flow",
"00168": "Cerebral blood flow glucose",
"00169": "Cerebral blood volume",
"00170": "Cerebral edema",
"00171": "Cerebral glucose metabolism",
"00172": "Cerebral hemorrhage",
"00173": "Cerebral hyperperfusion",
"00174": "Cerebral metabolic glucose utilization rate",
"00175": "Cerebral metabolism",
"00176": "Cerebral microbleed",
"00177": "Cerebral perfusion",
"00178": "Cerebral perfusion computed tomography",
"00179": "Cerebral perfusion pressure",
"00180": "Cerebrospinal fluid",
"00181": "Cerebrospinal fluid test",
"00182": "Change in cerebral blood flow",
"00183": "Cingulate Gyrus",
"00184": "Cingulate Sulcus",
"00185": "Circular Sulcus of the Insula",
"00186": "Clinical dementia rating",
"00187": "Clinical dyskinesia rating scale",
"00188": "Clinical global impression of change",
"00189": "Clinical indices",
"00190": "Clinical interview based impression",
"00191": "Clinical trial information",
"00192": "Clock digit span",
"00193": "Clock drawing test",
"00194": "Cognitive reserve index questionnaire",
"00195": "Cognitive reserve questionnaire",
"00196": "Columbia university rating scale",
"00197": "Columbia_suicide severity rating scales",
"00198": "Computed tomography",
"00199": "Consortium to Establish a Registry for Alzheimer\u2019s Disease _ Word List Memory Mean Score",
"00200": "Consortium to establish a registry for Alzheimer\u2019s disease",
"00201": "Continuous Arterial Spin Labeling Perfusion Imaging Technique",
"00202": "Continuous arterial spin labeling",
"00203": "Controlled oral word association test",
"00204": "Coronal brain imaging",
"00205": "Corpus Callosum",
"00206": "Corpus Callosum Anterior",
"00207": "Corpus Callosum Central",
"00208": "Corpus Callosum Mid_Posterior",
"00209": "Corpus Callosum Mid_anterior",
"00210": "Corpus Callosum Posterior",
"00211": "Corpus callosum atrophy",
"00212": "Cortical Thickness",
"00213": "Cortical Thinning",
"00214": "Cortical atrophy",
"00215": "Cortical folding",
"00216": "Cortical ribbon",
"00217": "Cortical volume",
"00218": "Cowad rey figure score",
"00219": "Cranial computed tomography",
"00220": "Cuneus",
"00221": "D2_receptor density",
"00222": "DEMTEC",
"00223": "DTI ROI summary measures",
"00224": "Deep brain stimulation",
"00225": "Default mode network connectivity",
"00226": "Diencephalon",
"00227": "Diffuse atrophy",
"00228": "Diffusion of water molecules in brain tissue",
"00229": "Diffusion perfusion weighted MRI",
"00230": "Diffusion spectrum imaging",
"00231": "Diffusion tensor MRI",
"00232": "Diffusion tensor imaging",
"00233": "Diffusion tensor imaging tractography",
"00234": "Diffusion tensor spectroscopy",
"00235": "Diffusion weighted imaging",
"00236": "Diffusion weighted magnetic resonance imaging",
"00237": "Diffusivity in the fornix",
"00238": "Disability assessment for dementia",
"00239": "Dopamine",
"00240": "Dopamine Transporter Ligand",
"00241": "Dopamine metabolism",
"00242": "Dopamine transporter scan",
"00243": "Dopaminergic Neurons",
"00244": "Dorsal Pons",
"00245": "Dynamic Contrast Enhanced Imaging",
"00246": "Dynamic Susceptibility Contrast Imaging",
"00247": "Dynamic Susceptibility Contrast Magnetic Resonance Imaging",
"00248": "Dynamic contrast enhanced imaging_MRI",
"00249": "EADC_harmonized hippocampal protocol training",
"00250": "Electrocardiogram",
"00251": "Electrocorticograms",
"00252": "Electroencephalogaphy",
"00253": "Electroencephalograms",
"00254": "Electromyography",
"00255": "Electromyography of tremor",
"00256": "Entorhinal Cortex",
"00257": "Entorhinal Cortex Thickness",
"00258": "Entorhinal cortex size",
"00259": "Entorhinal cortex volume",
"00260": "Entorhinal volume",
"00261": "Epworth sleepiness scale",
"00262": "Everyday cognition",
"00263": "Everyday cognition questionnaire",
"00264": "Eye of the tiger",
"00265": "F 18 fluorodeoxyglucose positron emission tomography",
"00266": "FDDNP",
"00267": "FDDNP_PET",
"00268": "FDG PET Scan",
"00269": "Fahn_Marsden dystonia rating scale",
"00270": "Fatigue severity inventory",
"00271": "Fifth ventricle",
"00272": "Fluency test",
"00273": "Fluid_attenuated inversion recovery",
"00274": "Fluorescence imaging",
"00275": "Fluorescence mediated tomography",
"00276": "Fluorodeoxyglucose volume",
"00277": "Focal Cortical Atrophy",
"00278": "Focal Hemosiderin Deposition",
"00279": "Focal Neocortical Atrophy",
"00280": "Focal atrophy",
"00281": "Focal hypometabolism",
"00282": "Focal temporal lobe hypometabolism",
"00283": "Folstein minimental test",
"00284": "Forebrain",
"00285": "Fornix sign",
"00286": "Fourth ventricle",
"00287": "Fractional anisotropy",
"00288": "Free and Cued Selective Reminding Test",
"00289": "Frequency of abnormal movement scale",
"00290": "Frontal Left Cerebrospinal fluid",
"00291": "Frontal Left Grey Matter",
"00292": "Frontal Left White Matter",
"00293": "Frontal Pole",
"00294": "Frontal Right Cerebrospinal fluid",
"00295": "Frontal Right Grey Matter",
"00296": "Frontal Right White Matter",
"00297": "Frontal Sulcus",
"00298": "Frontal cortex hypometabolism",
"00299": "Frontal horn width to intercaudate distance ratio",
"00300": "Frontal hypometablism",
"00301": "Frontal hypoperfusion",
"00302": "Frontal lobe",
"00303": "Frontal lobe atrophy",
"00304": "Frontal lobe hypoperfusion",
"00305": "Frontal lobe volume",
"00306": "Fronto_Marginal Gyrus",
"00307": "Fronto_Marginal Sulcus",
"00308": "Frontomarginal Sulcus and Gyrus",
"00309": "Frontopolar prefrontal atrophy",
"00310": "Functional imaging",
"00311": "Functional magnetic resonance imaging",
"00312": "Functional near_infrared spectroscopy",
"00313": "Geriatric depression scale",
"00314": "Global deterioration scale",
"00315": "Globus Pallidus Pars Interna",
"00316": "Glucose hypometabolism",
"00317": "Gradient recalled echo",
"00318": "Graphic tablet analysis",
"00319": "Gray matter",
"00320": "Grey matter atrophy",
"00321": "Grey matter volume",
"00322": "Gyrus Rectus",
"00323": "H_shaped Orbital Sulcus",
"00324": "Hamilton depression scale",
"00325": "Heidelberg edge perimetry",
"00326": "Hemodynamic activity",
"00327": "Hemosidern deposition",
"00328": "Hierarchical parcellation of MRI using multi_atlas labeling methods",
"00329": "High angular resolution diffusion_weighted imaging",
"00330": "Hindbrain",
"00331": "Hippocampal Formation",
"00332": "Hippocampal atrophy",
"00333": "Hippocampal perfusion",
"00334": "Hippocampal swelling",
"00335": "Hippocampus",
"00336": "Hippocampus volume",
"00337": "Hippocampus volumetry",
"00338": "Hockey stick sign",
"00339": "Hoehn and Yahr stage scale",
"00340": "Hopkins motor and vocal tic scale",
"00341": "Hopkins verbal learning test",
"00342": "Horizontal Ramus of the Lateral Sulcus",
"00343": "Hospital anxiety and depression scale",
"00344": "Hospital anxiety and depression scale _ depression",
"00345": "Hot cross bun",
"00346": "Hummingbird sign",
"00347": "Hyperintense Lateral Putaminal Rim",
"00348": "Hyperintense Putaminal Rim",
"00349": "Hyperintensity",
"00350": "Hyperintensity of Substantia Nigra",
"00351": "Hyperperfusion of the right temporoparietal cortex",
"00352": "Hypointensity",
"00353": "Hypometabolism",
"00354": "Hypometabolism in occipital cortex",
"00355": "Hypometabolism in temporal cortex",
"00356": "Hypometabolism of parietal cortex",
"00357": "Hypoperfusion",
"00358": "Ictal SPECT",
"00359": "Ictal hyperperfusion",
"00360": "Image acquisition",
"00361": "Imaging Technique",
"00362": "Index of brain atrophy",
"00363": "Inferior Frontal Gyrus",
"00364": "Inferior Frontal Sulcus",
"00365": "Inferior Occipital Gyrus",
"00366": "Inferior Occipital Gyrus and Sulcus",
"00367": "Inferior Occipital Sulcus",
"00368": "Inferior Parietal Lobule",
"00369": "Inferior Part of the Precentral Sulcus",
"00370": "Inferior Segment of the Circular Sulcus of the Insula",
"00371": "Inferior Temporal Gyrus",
"00372": "Inferior Temporal Sulcus",
"00373": "Informant questionnaire on cognitive decline",
"00374": "Instrumental activities of daily living",
"00375": "Insula",
"00376": "Intercaudate distance to inner table width ratio",
"00377": "Interictal SPECT",
"00378": "Intermediate scale for assessment of Parkinsons Disease",
"00379": "Interparietal Sulcus and Transverse Parietal Sulcus",
"00380": "Intracerebral hemorrhage",
"00381": "Intracingulate Sulcus",
"00382": "Intracranial CSF volume",
"00383": "Intracranial gray matter volume",
"00384": "Intracranial hemorrhage",
"00385": "Intracranial volume",
"00386": "Intracranial white matter volume",
"00387": "Intralimbic Gyrus",
"00388": "Intraparietal Sulcus and Transverse Parietal Sulcus",
"00389": "Intrinsic optical imaging",
"00390": "Invasive imaging",
"00391": "Lacunae",
"00392": "Laser doppler ultrasound",
"00393": "Lateral Aspect of the Superior Temporal Gyrus",
"00394": "Lateral Cortical Atrophy",
"00395": "Lateral Fissure Anterior Horizontal",
"00396": "Lateral Fissure Anterior Vertical",
"00397": "Lateral Occipito_Temporal Gyrus",
"00398": "Lateral Occipito_Temporal Sulcus",
"00399": "Lateral Orbital Gyrus",
"00400": "Lateral Orbital Sulcus",
"00401": "Lateral Prefrontal Cortex Atrophy",
"00402": "Lateral Sulcus",
"00403": "Lateral Ventricle",
"00404": "Lateral atrophy",
"00405": "Leasure Activities Test _ Physical Subtest",
"00406": "Leasure Activities Test _ Social Subtest",
"00407": "Left Accumbens Area",
"00408": "Left Amygdala",
"00409": "Left Anterior Temporal Lobe Atrophy",
"00410": "Left Caudate",
"00411": "Left Cerebellum Cortex",
"00412": "Left Cerebellum White Matter",
"00413": "Left Cerebral Cortex",
"00414": "Left Cerebral White Matter",
"00415": "Left Choroid Plexus",
"00416": "Left Hippocampal Atrophy",
"00417": "Left Hippocampus",
"00418": "Left Inferior Lateral Ventricle",
"00419": "Left Lateral Ventricle",
"00420": "Left Lentiform Nucleus",
"00421": "Left Pallidum",
"00422": "Left Putamen",
"00423": "Left Thalamus Proper",
"00424": "Left Ventral Diencephalon",
"00425": "Left Vessel",
"00426": "Left entorhinal volume",
"00427": "Left hippocampus volume",
"00428": "Left mean thickness",
"00429": "Leg dystonia disability scale",
"00430": "Leisure Activities Test",
"00431": "Leisure Activities Test _ Cognitive Subtest",
"00432": "Lentiform Nucleus",
"00433": "Levadopa metabolism",
"00434": "Levadopa test",
"00435": "Limbic Gyrus",
"00436": "Limbic Lobe",
"00437": "Lingual Gyrus",
"00438": "Lingual Sulcus",
"00439": "List of words",
"00440": "Lobe of Cerebral Cortex",
"00441": "Logical Memory Immediate",
"00442": "Logical memory",
"00443": "Long Insular Gyrus",
"00444": "Long Insular Gyrus and Sulcus of the Insula",
"00445": "Long term recordings of tremor",
"00446": "Loss of neuronal integrity",
"00447": "Lumbar puncture",
"00448": "MDS UPDRS",
"00449": "MRI B1 Calibration",
"00450": "MRI Clinical Read",
"00451": "MRI SPM voxel based morphometry analysis",
"00452": "MRI infarcts",
"00453": "MR_Image acquisition",
"00454": "MR_image analysis",
"00455": "Macrostructural metric measure",
"00456": "Magnetic resonance imaging",
"00457": "Magnetic resonance parkinsonism index",
"00458": "Magnetic resonance spectroscopy",
"00459": "Magnetisation transfer imaging",
"00460": "Magnetoencephalograms",
"00461": "Magnetoencephalography",
"00462": "Marginal Part of the Cingulate Sulcus",
"00463": "Marti and Tolosa scale",
"00464": "Mean diffusivity",
"00465": "Mean transit time",
"00466": "Measured feature",
"00467": "Medial Cortical Atrophy",
"00468": "Medial Occipito_Temporal Sulcus and Lingual Sulcus",
"00469": "Medial Occipito_Temporal and Lingual Sulci",
"00470": "Medial Orbital Gyrus",
"00471": "Medial Orbital Sulcus",
"00472": "Medial Temporal Lobe Atrophy",
"00473": "Medial atrophy",
"00474": "Medial temporal lobe volume",
"00475": "Medial temporal perfusion",
"00476": "Medial temporal volume",
"00477": "Memory alteration test",
"00478": "Memory alteration test _ fixation",
"00479": "Memory alteration test _ free recall",
"00480": "Memory alteration test _ orientation",
"00481": "Memory alteration test _ recognition",
"00482": "Memory alteration test _ semantic",
"00483": "Memory alteration test _ total",
"00484": "Memory orientation screening test",
"00485": "Mental status exam",
"00486": "Mesial Temporal Lobe Atrophy",
"00487": "Mickey mouse sign",
"00488": "Microhemorrhages",
"00489": "Microscopic diffusion of water",
"00490": "Microstructural integrity",
"00491": "Microstructural metric measure",
"00492": "Midbrain",
"00493": "Midbrain to pons area ratio",
"00494": "Middle Cerebellar Peduncle Hyperintensity",
"00495": "Middle Frontal Gyrus",
"00496": "Middle Frontal Sulcus",
"00497": "Middle Occipital Gyrus",
"00498": "Middle Occipital Sulcus",
"00499": "Middle Occipital and Lunatus Sulcus",
"00500": "Middle Temporal Gyrus",
"00501": "Middle_Anterior Part of the Cingulate Gyrus and Sulcus",
"00502": "Middle_Posterior Part of the Cingulate Gyrus and Sulcus",
"00503": "Mini Cog",
"00504": "Mini mental state exam",
"00505": "Mini_Mental Parkinson",
"00506": "Minimally invasive",
"00507": "Modified Hachinski",
"00508": "Montgomery_Asberg depression rating scale",
"00509": "Montreal cognitive assessment",
"00510": "Montreal cognitive assessment _ abstraction",
"00511": "Montreal cognitive assessment _ alternating trail making",
"00512": "Montreal cognitive assessment _ attention _ backward digit span",
"00513": "Montreal cognitive assessment _ attention _ forward digit span",
"00514": "Montreal cognitive assessment _ attention _ serial 7s",
"00515": "Montreal cognitive assessment _ attention _ vigilance",
"00516": "Montreal cognitive assessment _ delayed recall _ church",
"00517": "Montreal cognitive assessment _ delayed recall _ daisy",
"00518": "Montreal cognitive assessment _ delayed recall _ face",
"00519": "Montreal cognitive assessment _ delayed recall _ red",
"00520": "Montreal cognitive assessment _ delayed recall _ velvet",
"00521": "Montreal cognitive assessment _ naming _ Camel",
"00522": "Montreal cognitive assessment _ naming _ Lion",
"00523": "Montreal cognitive assessment _ naming _ Rhino",
"00524": "Montreal cognitive assessment _ orientation _ date",
"00525": "Montreal cognitive assessment _ orientation _ day",
"00526": "Montreal cognitive assessment _ orientation _ month",
"00527": "Montreal cognitive assessment _ orientation _ place",
"00528": "Montreal cognitive assessment _ orientation _ year",
"00529": "Montreal cognitive assessment _ sentence repetition",
"00530": "Montreal cognitive assessment _ verbal fluency",
"00531": "Montreal cognitive assessment _ verbal fluency _ number of words",
"00532": "Montreal cognitive assessment _ visuoconstructional skills",
"00533": "Morning glory sign",
"00534": "Multidimensional fatigue inventory",
"00535": "Multiple system atrophy",
"00536": "Myo_inositol",
"00537": "N_acetylaspartate",
"00538": "N_iso propyl_p_123 I iodoamphetamine",
"00539": "Near infrared spectroscopy",
"00540": "Near_infrared fluorescence imaging",
"00541": "Neocortex",
"00542": "Neocortical atrophy",
"00543": "Neural activity",
"00544": "Neurofilament test",
"00545": "Neuroimaging signs",
"00546": "Neuronal atrophy",
"00547": "Neuronal function",
"00548": "Neuronal integrity",
"00549": "Neuronal metabolic activity",
"00550": "Neuropsychiatric inventory questionnaire",
"00551": "Neuropsychological assessments",
"00552": "Neurotransmitter Tracer",
"00553": "Neurotransmitter activity",
"00554": "New York University rating scale",
"00555": "Non_White Matter Hypointensities",
"00556": "Non_invasive imaging",
"00557": "Northwestern University rating scale",
"00558": "Nucleus Basalis of Meynert",
"00559": "Obeso dyskinesia rating scale",
"00560": "Occipital Left Cerebrospinal fluid",
"00561": "Occipital Left Grey Matter",
"00562": "Occipital Left Grey Matter and White Matter",
"00563": "Occipital Left White Matter",
"00564": "Occipital Lobe",
"00565": "Occipital Pole",
"00566": "Occipital Right Cerebrospinal fluid",
"00567": "Occipital Right Grey Matter",
"00568": "Occipital Right White Matter",
"00569": "Occipital glucose hypometabolism",
"00570": "Occipital gyrus",
"00571": "Occipital hypometabolism",
"00572": "Occipital perfusion",
"00573": "Opercular Part of the Inferior Frontal Gyrus",
"00574": "Optic Chiasm",
"00575": "Optical coherence tomography",
"00576": "Orbital Gyrus",
"00577": "Orbital Part of the Inferior Frontal Gyrus",
"00578": "Orbital Sulcus",
"00579": "Oromandibular dystonia rating scale",
"00580": "Oxygen metabolism",
"00581": "PET Ligands",
"00582": "PET Tracers",
"00583": "PET image analysis",
"00584": "PET_Image acquisition",
"00585": "PIB Scan",
"00586": "Pallidum volume",
"00587": "Paracentral Gyrus",
"00588": "Paracentral Lobule and Sulcus",
"00589": "Paracentral Sulcus",
"00590": "Parahippocampal Gyrus",
"00591": "Parahippocampal Gyrus Cortical Thickness",
"00592": "Parahippocampal Gyrus Thickness",
"00593": "Parahippocampal gyrus volume",
"00594": "Parenchymal volume",
"00595": "Parenchymal volume loss",
"00596": "Parietal Left Cerebrospinal fluid",
"00597": "Parietal Left Grey Matter",
"00598": "Parietal Left White Matter",
"00599": "Parietal Left White Matter Lesion",
"00600": "Parietal Lobe",
"00601": "Parietal Right Cerebrospinal fluid",
"00602": "Parietal Right Grey Matter",
"00603": "Parietal Right White Matter",
"00604": "Parietal Right White Matter Lesion",
"00605": "Parietal hypoperfusion",
"00606": "Parietal lobe atrophy",
"00607": "Parieto_Occipital Sulcus",
"00608": "Parieto_occipital glucose hypometabolism",
"00609": "Parkinson disease",
"00610": "Parkinson disease cognitive rating scale",
"00611": "Parkinson disease dyskinesia scale",
"00612": "Parkinson fatigue scale",
"00613": "Parkinson neuropsychometric dementia assessment",
"00614": "Parkinson psychosis rating scale",
"00615": "Parkinsons disease dementia_short screen",
"00616": "Pattern of atrophy",
"00617": "Perception digital test",
"00618": "Perfusion",
"00619": "Perfusion weighted MRI",
"00620": "Perfusion weighted imaging",
"00621": "Pericallosal Sulcus",
"00622": "Periventricular White Matter Lesion",
"00623": "Phonemic fluency",
"00624": "Phospho tau test",
"00625": "Physiological imaging",
"00626": "Pittsburgh Compound B",
"00627": "Pittsburgh sleep quality index",
"00628": "Planum Polare of the Superior Temporal Gyrus",
"00629": "Planum Temporale",
"00630": "Planum Temporale of the Superior Temporal Gyrus",
"00631": "Polysomnography",
"00632": "Pons",
"00633": "Positron emission tomography",
"00634": "Post_processing algorithm",
"00635": "Postcentral Gyrus",
"00636": "Postcentral Sulcus",
"00637": "Posterior Cortical Atrophy",
"00638": "Posterior Orbital Gyrus",
"00639": "Posterior Putaminal Hypointensity",
"00640": "Posterior Ramus of the Lateral Sulcus",
"00641": "Posterior Segment of the Lateral Sulcus",
"00642": "Posterior Subcentral Sulcus",
"00643": "Posterior Transverse Collateral Sulcus",
"00644": "Posterior_Dorsal Part of the Cingulate Gyrus",
"00645": "Posterior_Ventral Part of the Cingulate Gyrus",
"00646": "Postictal hypoperfusion",
"00647": "Precentral Gyrus",
"00648": "Precentral Sulcus",
"00649": "Precuneus",
"00650": "Prefrontal cortex atrophy",
"00651": "Prefrontal cortex hypometabolism",
"00652": "Presynaptic Dopamine Function",
"00653": "Proton MR spectroscopy",
"00654": "Pulvinar sign",
"00655": "Putamen",
"00656": "Putamen diffusivity",
"00657": "Putaminal Hypointensity",
"00658": "Quantitative electroencephalography",
"00659": "Quantitative tremor analysis",
"00660": "R_BANS",
"00661": "Radial diffusivity",
"00662": "Radiopharmaceutical compound",
"00663": "Rates of atrophy",
"00664": "Ratio phospho tau to abeta 40 test",
"00665": "Ratio phospho tau to abeta 42 test",
"00666": "Raven matrix test",
"00667": "Regional brain tissue volume in parietal lobe",
"00668": "Regional brain tissue volume in temporal lobe",
"00669": "Regional cerebral glucose metabolism",
"00670": "Repetitive Transcranial Magnetic Stimulation",
"00671": "Resting fMRI",
"00672": "Resting state fMRI",
"00673": "Retinal Nerve Fiber Layer Thickness",
"00674": "Rey auditory verbal learning test",
"00675": "Rey_Osterrieth complex figure test",
"00676": "Right Accumbens Area",
"00677": "Right Amygdala",
"00678": "Right Caudate",
"00679": "Right Cerebellum Cortex",
"00680": "Right Cerebellum White Matter",
"00681": "Right Cerebral Cortex",
"00682": "Right Cerebral White Matter",
"00683": "Right Choroid Plexus",
"00684": "Right Hippocampal Atrophy",
"00685": "Right Hippocampus",
"00686": "Right Inferior Lateral Ventricle",
"00687": "Right Lateral Ventricle",
"00688": "Right Lentiform Nucleus",
"00689": "Right Pallidum",
"00690": "Right Putamen",
"00691": "Right Temporal Lobe Atrophy",
"00692": "Right Thalamus Proper",
"00693": "Right Ventral Diencephalon",
"00694": "Right Vessel",
"00695": "Right entorhinal cortex volume",
"00696": "Right frontal cortex hypometabolism",
"00697": "Right hippocampus volume",
"00698": "Right mean thickness",
"00699": "Rush dyskinesia rating scale",
"00700": "SPECT Tracers",
"00701": "Scales for Outcomes in Parkinson Disease_Motor",
"00702": "Scales for outcomes of Parkinsons Disease_Cognition",
"00703": "Scheltons scale",
"00704": "Schwab and England activities of daily living scale",
"00705": "Scores",
"00706": "Serotonin",
"00707": "Shapiro Tourette syndrome severity scale",
"00708": "Short Insular Gyrus",
"00709": "Short Parkinsons rating scale",
"00710": "Short portable mental status questionnaire",
"00711": "Single Photon Emission Computed Tomography",
"00712": "Skeletal muscle atrophy",
"00713": "Social activities of daily living",
"00714": "Sodium MR imaging",
"00715": "Spanish national adult reading test",
"00716": "Spatial pattern of abnormalities for recognition of early MCI to AD conversion",
"00717": "Spatial span",
"00718": "Statistical measure",
"00719": "Striatum",
"00720": "Structural connectivity",
"00721": "Structural feature",
"00722": "Structural imaging",
"00723": "Structural magnetic resonance imaging",
"00724": "Subarachnoid hemorrhage",
"00725": "Subcallosal Area",
"00726": "Subcallosal Gyrus",
"00727": "Subcentral Gyrus",
"00728": "Subcentral Gyrus and Sulcus",
"00729": "Subcentral Sulcus",
"00730": "Subcortical White Matter Lesion",
"00731": "Subcortical atrophy",
"00732": "Suborbital Sulcus",
"00733": "Suborbital Sulcus Supero_medially",
"00734": "Subparietal Sulcus",
"00735": "Substantia Nigra",
"00736": "Subthalamic Nucleus",
"00737": "Subthalamus",
"00738": "Sulcus",
"00739": "Sulcus Cingulate_Marginalis",
"00740": "Sulcus Circular Insula Anterior",
"00741": "Sulcus Circular Insula Inferior",
"00742": "Sulcus Circular Insula Superior",
"00743": "Sulcus Diagonalis",
"00744": "Sulcus Intermedius Primus of Jensen",
"00745": "Sulcus Precentral Inferior Part",
"00746": "Sulcus Precentral Superior Part",
"00747": "Superior Frontal Gyrus",
"00748": "Superior Frontal Sulcus",
"00749": "Superior Occipital Gyrus",
"00750": "Superior Occipital Sulcus",
"00751": "Superior Occipital and Transverse Occipital Sulcus",
"00752": "Superior Parietal Lobule",
"00753": "Superior Part of the Precentral Sulcus",
"00754": "Superior Segment of the Circular Sulcus of the Insula",
"00755": "Superior Suborbital Sulcus",
"00756": "Superior Temporal Gyrus",
"00757": "Superior Temporal Sulcus",
"00758": "Supramarginal Gyrus",
"00759": "Susceptibility weighted imaging",
"00760": "Suspected unexpected serious adverse reactions",
"00761": "Synaptic activity",
"00762": "Synaptic plasticity",
"00763": "T1 Hypointensity",
"00764": "T1 Signal Hyperintensity",
"00765": "T1_weighted MRI",
"00766": "T1_weighted coronal MRI",
"00767": "T2_weighted coronal MRI",
"00768": "T2_weighted imaging",
"00769": "Task fMRI",
"00770": "Task_Free fMRI summary metric of DMN ROIs",
"00771": "Tau",
"00772": "Tau hyperphosphorylation",
"00773": "Tau test",
"00774": "Tc_99m Hexamethylpropylene Amine Oxime Ictal SPECT",
"00775": "Tc_99m ethyl cysteinate dimer _ECD_ ictal SPECT",
"00776": "Telencephalon",
"00777": "Temporal Horn Index",
"00778": "Temporal Horn of Lateral Ventricles",
"00779": "Temporal Left White Matter",
"00780": "Temporal Left White Matter Lesion",
"00781": "Temporal Lobe Cerebrospinal Fluid",
"00782": "Temporal Lobe Grey Matter",
"00783": "Temporal Lobe Right White Matter Lesions",
"00784": "Temporal Lobe White Matter",
"00785": "Temporal Pole",
"00786": "Temporal Pole Cortical Thickness",
"00787": "Temporal Right Cerebrospinal Fluid",
"00788": "Temporal Right Grey Matter",
"00789": "Temporal Right Parietal",
"00790": "Temporal Right White Matter",
"00791": "Temporal Right White Matter Lesion",
"00792": "Temporal horn volume",
"00793": "Temporal lobe atrophy",
"00794": "Temporal lobe hypometabolism",
"00795": "Temporal lobe volume",
"00796": "Temporo_Occipital Incisure",
"00797": "Temporoparietal Cortical Atrophy",
"00798": "Temporoparietal Cortical Thickness",
"00799": "Temporoparietal hypoperfusion",
"00800": "Tempral Left Grey Matter",
"00801": "Tempral Lobe",
"00802": "Tempral Lobe Cerebrospinal Fluid",
"00803": "Tensor based morphometry_symmetric diffeomorphic image normalization method",
"00804": "Tensor_based morphometry",
"00805": "Thick Left Gyrus and Sulcus Cingulate Mid Anterior",
"00806": "Thick Right Intraparietal Sulcus and Transverse Parietal Sulcus",
"00807": "Thickness Left Anterior Transverse Temporal Gyrus",
"00808": "Thickness Left Gyrus Cingulate Post Dorsal",
"00809": "Thickness Left Gyrus Cingulate Post Ventral",
"00810": "Thickness Left Gyrus Cuneus",
"00811": "Thickness Left Gyrus Frontal Inferior Opercular",
"00812": "Thickness Left Gyrus Frontal Inferior Orbital",
"00813": "Thickness Left Gyrus Frontal Inferior Triangular",
"00814": "Thickness Left Gyrus Frontal Middle",
"00815": "Thickness Left Gyrus Frontal Superior",
"00816": "Thickness Left Gyrus Insular Short",
"00817": "Thickness Left Gyrus Occipital Middle",
"00818": "Thickness Left Gyrus Occipital Superior",
"00819": "Thickness Left Gyrus Occipital Temporal Lateral Fusiform",
"00820": "Thickness Left Gyrus Occipital Temporal Medial Lingual",
"00821": "Thickness Left Gyrus Occipital Temporal Medial Parahippocampus",
"00822": "Thickness Left Gyrus Orbital",
"00823": "Thickness Left Gyrus Parietal Inferior Angular",
"00824": "Thickness Left Gyrus Parietal Inferior Supramarginal",
"00825": "Thickness Left Gyrus Parietal Superior",
"00826": "Thickness Left Gyrus Postcentral",
"00827": "Thickness Left Gyrus Precentral",
"00828": "Thickness Left Gyrus Precuneus",
"00829": "Thickness Left Gyrus Rectus",
"00830": "Thickness Left Gyrus Subcallosal",
"00831": "Thickness Left Gyrus Temporal Inferior",
"00832": "Thickness Left Gyrus Temporal Middle",
"00833": "Thickness Left Gyrus Temporal Superior Lateral",
"00834": "Thickness Left Gyrus Temporal Superior Planar Polar",
"00835": "Thickness Left Gyrus and Sulcus Cingulate Anterior",
"00836": "Thickness Left Gyrus and Sulcus Frontomargin",
"00837": "Thickness Left Gyrus and Sulcus Occipital Inferior",
"00838": "Thickness Left Gyrus and Sulcus Paracentral",
"00839": "Thickness Left Gyrus and Sulcus Subcentral",
"00840": "Thickness Left Gyrus and Sulcus Transv Frontopolar",
"00841": "Thickness Left Intraparietal Sulcus and Transverse Parietal Sulci",
"00842": "Thickness Left Lateral Fissure Anterior Horizontal",
"00843": "Thickness Left Lateral Fissure Anterior Vertical",
"00844": "Thickness Left Lateral Fissure Posterior",
"00845": "Thickness Left Sulcus Calcarine",
"00846": "Thickness Left Sulcus Central",
"00847": "Thickness Left Sulcus Cingulate Marginalis",
"00848": "Thickness Left Sulcus Circular Insula Anterior",
"00849": "Thickness Left Sulcus Circular Insula Inferior",
"00850": "Thickness Left Sulcus Circular Insula Superior",
"00851": "Thickness Left Sulcus Collateral Transversal Anterior",
"00852": "Thickness Left Sulcus Collateral Transversal Posterior",
"00853": "Thickness Left Sulcus Frontal Inferior",
"00854": "Thickness Left Sulcus Frontal Middle",
"00855": "Thickness Left Sulcus Frontal Superior",
"00856": "Thickness Left Sulcus Occipital Anterior",
"00857": "Thickness Left Sulcus Occipital Middle and Lunatus",
"00858": "Thickness Left Sulcus Occipital Superior and Transversal",
"00859": "Thickness Left Sulcus Occipital Temporal Lateral",
"00860": "Thickness Left Sulcus Occipital Temporal Medial and Lingual",
"00861": "Thickness Left Sulcus Orbital H Shaped",
"00862": "Thickness Left Sulcus Orbital Lateral",
"00863": "Thickness Left Sulcus Orbital Medial Olfact",
"00864": "Thickness Left Sulcus Parieto Occipital",
"00865": "Thickness Left Sulcus Pericallosal",
"00866": "Thickness Left Sulcus Postcentral",
"00867": "Thickness Left Sulcus Precentral Inferior Part",
"00868": "Thickness Left Sulcus Precentral Superior part",
"00869": "Thickness Left Sulcus Suborbital",
"00870": "Thickness Left Sulcus Subparietal",
"00871": "Thickness Left Sulcus Temporal Inferior",
"00872": "Thickness Left Sulcus Temporal Superior",
"00873": "Thickness Left Sulcus Temporal Transverse",
"00874": "Thickness LeftPole Occipital",
"00875": "Thickness LeftPole Temporal",
"00876": "Thickness Right Gyrus Cingulate Posterior Dorsal",
"00877": "Thickness Right Gyrus Cingulate Posterior Ventral",
"00878": "Thickness Right Gyrus Cuneus",
"00879": "Thickness Right Gyrus Frontal Inferior Opercular",
"00880": "Thickness Right Gyrus Frontal Inferior Orbital",
"00881": "Thickness Right Gyrus Frontal Inferior Triangular",
"00882": "Thickness Right Gyrus Frontal Middle",
"00883": "Thickness Right Gyrus Frontal Superior",
"00884": "Thickness Right Gyrus Insular Short",
"00885": "Thickness Right Gyrus Occipital Middle",
"00886": "Thickness Right Gyrus Occipital Superior",
"00887": "Thickness Right Gyrus Occipital Temporal Lateral Fusiform",
"00888": "Thickness Right Gyrus Occipital Temporal Medial Lingual",
"00889": "Thickness Right Gyrus Occipital Temporal Medial Parahippocampus",
"00890": "Thickness Right Gyrus Orbital",
"00891": "Thickness Right Gyrus Parietal Inferior Angular",
"00892": "Thickness Right Gyrus Parietal Inferior Supramarginal",
"00893": "Thickness Right Gyrus Parietal Superior",
"00894": "Thickness Right Gyrus Postcentral",
"00895": "Thickness Right Gyrus Precentral",
"00896": "Thickness Right Gyrus Precuneus",
"00897": "Thickness Right Gyrus Rectus",
"00898": "Thickness Right Gyrus Subcallosal",
"00899": "Thickness Right Gyrus Temporal Inferior",
"00900": "Thickness Right Gyrus Temporal Middle",
"00901": "Thickness Right Gyrus Temporal Superior Lateral",
"00902": "Thickness Right Gyrus Temporal Superior Planar Polar",
"00903": "Thickness Right Gyrus Temporal Superior Planar Temporal",
"00904": "Thickness Right Gyrus and Sulcus Cingulate Anterior",
"00905": "Thickness Right Gyrus and Sulcus Cingulate Mid Anterior",
"00906": "Thickness Right Gyrus and Sulcus Cingulate Mid Posterior",
"00907": "Thickness Right Gyrus and Sulcus Frontomargin",
"00908": "Thickness Right Gyrus and Sulcus Occipital Inferior",
"00909": "Thickness Right Gyrus and Sulcus Paracentral",
"00910": "Thickness Right Gyrus and Sulcus Subcentral",
"00911": "Thickness Right Gyrus and Sulcus Transverse Frontopol",
"00912": "Thickness Right Lateral Fissure Anterior Horizontal",
"00913": "Thickness Right Lateral Fissure Posterior",
"00914": "Thickness Right Pole Occipital",
"00915": "Thickness Right Sulcus Calcarine",
"00916": "Thickness Right Sulcus Central",
"00917": "Thickness Right Sulcus Cingulate Marginalis",
"00918": "Thickness Right Sulcus Circular Insula Anterior",
"00919": "Thickness Right Sulcus Circular Insula Inferior",
"00920": "Thickness Right Sulcus Circular Insula Superior",
"00921": "Thickness Right Sulcus Collateral Transverse Anterior",
"00922": "Thickness Right Sulcus Collateral Transverse Posterior",
"00923": "Thickness Right Sulcus Frontal Inferior",
"00924": "Thickness Right Sulcus Frontal Middle",
"00925": "Thickness Right Sulcus Frontal Superior",
"00926": "Thickness Right Sulcus Intermedius Primus Jensen",
"00927": "Thickness Right Sulcus Occipital Anterior",
"00928": "Thickness Right Sulcus Occipital Middle and Lunatus",
"00929": "Thickness Right Sulcus Occipital Superior and Transversal",
"00930": "Thickness Right Sulcus Occipital Temporal Lateral",
"00931": "Thickness Right Sulcus Occipital Temporal Medial and Lingual",
"00932": "Thickness Right Sulcus Orbital H Shaped",
"00933": "Thickness Right Sulcus Orbital Lateral",
"00934": "Thickness Right Sulcus Orbital Medial Olfactory",
"00935": "Thickness Right Sulcus Parieto Occipital",
"00936": "Thickness Right Sulcus Pericallosal",
"00937": "Thickness Right Sulcus Postcentral",
"00938": "Thickness Right Sulcus Precentral Inferior Part",
"00939": "Thickness Right Sulcus Precentral Superior Part",
"00940": "Thickness Right Sulcus Suborbital",
"00941": "Thickness Right Sulcus Subparietal",
"00942": "Thickness Right Sulcus Temporal Inferior",
"00943": "Thickness Right Sulcus Temporal Superior",
"00944": "Thickness Right Sulcus Temporal Transverse",
"00945": "Thickness RightPole Temporal",
"00946": "Thickness left gyrus and sulcus cingulate mid Posterior",
"00947": "Third ventricle",
"00948": "Time for Rey_Osterrieth Complex Figure Test",
"00949": "Tissue volume fraction",
"00950": "Token test",
"00951": "Toronto western spasmodic torticollis scale",
"00952": "Total cranial vault segmentation",
"00953": "Total cranial volume",
"00954": "Tourette syndrome global scale",
"00955": "Transcranial B_mode sonography",
"00956": "Transcranial Direct Current Stimulation",
"00957": "Transcranial Magnetic Stimulation",
"00958": "Transverse Frontopolar Gyrus",
"00959": "Transverse Frontopolar Sulcus",
"00960": "Transverse Frontopolar Sulcus and Gyrus",
"00961": "Transverse Occipital Sulcus",
"00962": "Transverse Parietal Sulcus",
"00963": "Transverse Temporal Gyrus",
"00964": "Transverse Temporal Sulcus",
"00965": "Triangular Part of the Inferior Frontal Gyrus",
"00966": "Triangular Sulcus",
"00967": "UC Berkeley AV45 analysis",
"00968": "UC Berkeley_FDG analysis",
"00969": "UPitt_PIB PET analysis",
"00970": "UU _ PET AD subjects cerebral metabolic pattern of glucose uptake consistent with frontotemporal dementia in baseline FDG_PET",
"00971": "UU_PET analysis",
"00972": "Ultrasound imaging",
"00973": "Unified Parkinsons Disease Rating Scale _ 3.1 Speech",
"00974": "Unified Parkinsons Disease Rating Scale _ 3.10 Gait",
"00975": "Unified Parkinsons Disease Rating Scale _ 3.11 Freezing of Gait",
"00976": "Unified Parkinsons Disease Rating Scale _ 3.12 Postural Stability",
"00977": "Unified Parkinsons Disease Rating Scale _ 3.13 Posture",
"00978": "Unified Parkinsons Disease Rating Scale _ 3.14 Global Spontaneity of Movement",
"00979": "Unified Parkinsons Disease Rating Scale _ 3.15a Postural Tremor _ Right Hand",
"00980": "Unified Parkinsons Disease Rating Scale _ 3.15b Postural Tremor _ Left Hand",
"00981": "Unified Parkinsons Disease Rating Scale _ 3.16a Kinetic Tremor _ Right Hand",
"00982": "Unified Parkinsons Disease Rating Scale _ 3.16b Kinetic Tremor _ Left Hand",
"00983": "Unified Parkinsons Disease Rating Scale _ 3.17a Rest Tremor Amplitude _ RUE",
"00984": "Unified Parkinsons Disease Rating Scale _ 3.17b Rest Tremor Amplitude _ LUE",
"00985": "Unified Parkinsons Disease Rating Scale _ 3.17c Rest Tremor Amplitude _ RLE",
"00986": "Unified Parkinsons Disease Rating Scale _ 3.17d Rest Tremor Amplitude _ LLE",
"00987": "Unified Parkinsons Disease Rating Scale _ 3.17e Rest Tremor Amplitude _ Lip/Jaw",
"00988": "Unified Parkinsons Disease Rating Scale _ 3.18 Constancy of Rest",
"00989": "Unified Parkinsons Disease Rating Scale _ 3.19 Were Dyskinesias Present",
"00990": "Unified Parkinsons Disease Rating Scale _ 3.2 Facial Expression",
"00991": "Unified Parkinsons Disease Rating Scale _ 3.20 Did Movements Interfere with Rating",
"00992": "Unified Parkinsons Disease Rating Scale _ 3.21 Hoehn and Yahr Stage",
"00993": "Unified Parkinsons Disease Rating Scale _ 3.3a Rigidity _ Neck",
"00994": "Unified Parkinsons Disease Rating Scale _ 3.3b Rigidity _ RUE",
"00995": "Unified Parkinsons Disease Rating Scale _ 3.3c Rigidity _ LUE",
"00996": "Unified Parkinsons Disease Rating Scale _ 3.3d Rigidity _ RLE",
"00997": "Unified Parkinsons Disease Rating Scale _ 3.3e Rigidity _ LLE",
"00998": "Unified Parkinsons Disease Rating Scale _ 3.4a Finger Tapping Right Hand",
"00999": "Unified Parkinsons Disease Rating Scale _ 3.4b Finger Tapping Left Hand",