-
Notifications
You must be signed in to change notification settings - Fork 0
/
genus_rdf_turtle
4902 lines (2704 loc) · 333 KB
/
genus_rdf_turtle
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
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<http://genus_dict/Attention> "has_a_test_of" "Neuropsych" ;
"has_concept" <http://genus_dict/concept/Attention_Vigilance> .
<http://genus_dict/Intelligence> "has_a_test_of" "Neuropsych" ;
"has_concept" <http://genus_dict/concept/Intelligence> .
<http://genus_dict/Learning_&_Memory> "has_a_test_of" "Neuropsych" ;
"has_concept" <http://genus_dict/concept/Episodic_Memory>,
<http://genus_dict/concept/Learning>,
<http://genus_dict/concept/Working_Memory> .
<http://genus_dict/Motor> "has_a_test_of" "Neuropsych" ;
"has_concept" <http://genus_dict/concept/Motor> .
<http://genus_dict/Processing_Speed> "has_a_test_of" "Neuropsych" ;
"has_concept" <http://genus_dict/concept/Processing_Speed> .
<http://genus_dict/Social_Cognition> "has_a_test_of" "Neuropsych" ;
"has_concept" <http://genus_dict/concept/SocialCognition> .
<http://genus_dict/variable/ACPT_6Q3_INT_DPRM> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_6Q3_Interference_D-prime> .
<http://genus_dict/variable/ACPT_6Q3_INT_FALS> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_6Q3_Interference_False_Alarms> .
<http://genus_dict/variable/ACPT_6Q3_INT_FALS_PERC> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_6Q3_Interference_False_Alarms_Percentage> .
<http://genus_dict/variable/ACPT_6Q3_INT_FALS_PERC_ZS> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_6Q3_Interference_False_Alarms_Percentage_Z-Score> .
<http://genus_dict/variable/ACPT_6Q3_INT_HITS> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_6Q3_Interference_Hits> .
<http://genus_dict/variable/ACPT_6Q3_INT_HITS_PERC> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_6Q3_Interference_Hits_Percentage> .
<http://genus_dict/variable/ACPT_6Q3_INT_HITS_PERC_ZS> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_6Q3_Interference_Hits_Percentage_Z-Score> .
<http://genus_dict/variable/ACPT_6Q3_INT_LATE> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_6Q3_Interference_Late_Responses> .
<http://genus_dict/variable/ACPT_6Q3_INT_OMIS> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_6Q3_Interference_Omission_Errors> .
<http://genus_dict/variable/ACPT_7Q3_MEM_DPRM> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_7Q3__Memory_D-prime> .
<http://genus_dict/variable/ACPT_7Q3_MEM_FALS> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_7Q3__Memory_False_Alarms> .
<http://genus_dict/variable/ACPT_7Q3_MEM_FALS_PERC> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_7Q3__Memory_False_Alarms_Percentage> .
<http://genus_dict/variable/ACPT_7Q3_MEM_FALS_PERC_ZS> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_7Q3__Memory_False_Alarms_Percentage_Z-Score> .
<http://genus_dict/variable/ACPT_7Q3_MEM_HITS> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_7Q3__Memory_Hits> .
<http://genus_dict/variable/ACPT_7Q3_MEM_HITS_PERC> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_7Q3__Memory_Hits_Percentage> .
<http://genus_dict/variable/ACPT_7Q3_MEM_HITS_PERC_ZS> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_7Q3__Memory_Hits_Percentage_Z-Score> .
<http://genus_dict/variable/ACPT_7Q3_MEM_LATE> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_7Q3__Memory_Late_Responses> .
<http://genus_dict/variable/ACPT_7Q3_MEM_OMIS> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_7Q3__Memory_Omission_Errors> .
<http://genus_dict/variable/ACPT_PCT_CORR_Q3> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q3_Percentage_Correct> .
<http://genus_dict/variable/ACPT_PCT_CORR_Q3A> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q3A_Percentage_Correct> .
<http://genus_dict/variable/ACPT_PCT_CORR_QA> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_QA_Percentage_Correct> .
<http://genus_dict/variable/ACPT_Q36_DESCRIP> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q36_Description> .
<http://genus_dict/variable/ACPT_Q36_INT_DPRM> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q36_Interference_D-prime> .
<http://genus_dict/variable/ACPT_Q36_INT_FALS1> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q36_Interference_False_Alarms_> .
<http://genus_dict/variable/ACPT_Q36_INT_FALS2> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q36_Interference_False_Alarms_> .
<http://genus_dict/variable/ACPT_Q36_INT_FALS_PERC> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q36_Interference_False_Alarms_Percentage_Z-Score> .
<http://genus_dict/variable/ACPT_Q36_INT_FALS_PERC_ZS> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q36_Interference_False_Alarms_Percentage> .
<http://genus_dict/variable/ACPT_Q36_INT_FALS_TOT> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q36_Interference_False_Alarms_> .
<http://genus_dict/variable/ACPT_Q36_INT_HITS1> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q36_Interference_Hits_> .
<http://genus_dict/variable/ACPT_Q36_INT_HITS2> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q36_Interference_Hits_> .
<http://genus_dict/variable/ACPT_Q36_INT_HITS_PERC> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q36_Interference_Hits_Percentage_Z-Score> .
<http://genus_dict/variable/ACPT_Q36_INT_HITS_PERC_ZS> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q36_Interference_Hits_Percentage> .
<http://genus_dict/variable/ACPT_Q36_INT_HITS_TOT> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q36_Interference_Hits_> .
<http://genus_dict/variable/ACPT_Q36_INT_LATE1> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q36_Interference_Late_Responses> .
<http://genus_dict/variable/ACPT_Q36_INT_LATE2> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q36_Interference_Late_Responses> .
<http://genus_dict/variable/ACPT_Q36_INT_LATE_TOT> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q36_Interference_Late_Responses> .
<http://genus_dict/variable/ACPT_Q36_INT_OMIS1> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q36_Interference_Omission_Errors> .
<http://genus_dict/variable/ACPT_Q36_INT_OMIS2> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q36_Interference_Omission_Errors> .
<http://genus_dict/variable/ACPT_Q36_INT_OMIS_TOT> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q36_Interference_Omission_Errors> .
<http://genus_dict/variable/ACPT_Q37_DESCRIP> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q37_Description> .
<http://genus_dict/variable/ACPT_Q37_MEM_DPRM> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q37_Memory_D-prime> .
<http://genus_dict/variable/ACPT_Q37_MEM_FALS1> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q37_Memory_False_Alarms_> .
<http://genus_dict/variable/ACPT_Q37_MEM_FALS2> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q37_Memory_False_Alarms_> .
<http://genus_dict/variable/ACPT_Q37_MEM_FALS_PERC> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q37_Memory_False_Alarms_Percentage_Z-Score> .
<http://genus_dict/variable/ACPT_Q37_MEM_FALS_PERC_ZS> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q37_Memory_False_Alarms_Percentage> .
<http://genus_dict/variable/ACPT_Q37_MEM_FALS_TOT> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q37_Memory_False_Alarms_> .
<http://genus_dict/variable/ACPT_Q37_MEM_HITS1> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q37_Memory_Hits_> .
<http://genus_dict/variable/ACPT_Q37_MEM_HITS2> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q37_Memory_Hits_> .
<http://genus_dict/variable/ACPT_Q37_MEM_HITS_PERC> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q37_Memory_Hits_Percentage_Z-Score> .
<http://genus_dict/variable/ACPT_Q37_MEM_HITS_PERC_ZS> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q37_Memory_Hits_Percentage> .
<http://genus_dict/variable/ACPT_Q37_MEM_HITS_TOT> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q37_Memory_Hits_> .
<http://genus_dict/variable/ACPT_Q37_MEM_LATE1> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q37_Memory_Late_Responses> .
<http://genus_dict/variable/ACPT_Q37_MEM_LATE2> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q37_Memory_Late_Responses> .
<http://genus_dict/variable/ACPT_Q37_MEM_LATE_TOT> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q37_Memory_Late_Responses> .
<http://genus_dict/variable/ACPT_Q37_MEM_OMIS1> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q37_Memory_Omission_Errors> .
<http://genus_dict/variable/ACPT_Q37_MEM_OMIS2> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q37_Memory_Omission_Errors> .
<http://genus_dict/variable/ACPT_Q37_MEM_OMIS_TOT> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q37_Memory_Omission_Errors> .
<http://genus_dict/variable/ACPT_Q3A_INT_AVG_FALS> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q3A_Interference_Average_False_Alarms> .
<http://genus_dict/variable/ACPT_Q3A_INT_AVG_HITS> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q3A_Interference_Average_Hits> .
<http://genus_dict/variable/ACPT_Q3A_INT_AVG_LATE> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q3A_Interference_Average_Late_Responses> .
<http://genus_dict/variable/ACPT_Q3A_INT_AVG_OMIS> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q3A_Interference_Average_Omission_Errors> .
<http://genus_dict/variable/ACPT_Q3A_INT_DPRM> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q3A_Interference_Average_D-prime> .
<http://genus_dict/variable/ACPT_Q3A_INT_FALS1> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q3A_Interference_Average_False_Alarms> .
<http://genus_dict/variable/ACPT_Q3A_INT_FALS2> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q3A_Interference_Average_False_Alarms> .
<http://genus_dict/variable/ACPT_Q3A_INT_FALS_PERC> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q3A_Interference_Average_False_Alarms_Percentage> .
<http://genus_dict/variable/ACPT_Q3A_INT_FALS_PERC_ZS> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q3A_Interference_Average_False_Alarms_Percentage_Z-Score> .
<http://genus_dict/variable/ACPT_Q3A_INT_HITS1> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q3A_Interference_Average_Hits> .
<http://genus_dict/variable/ACPT_Q3A_INT_HITS2> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q3A_Interference_Average_Hits> .
<http://genus_dict/variable/ACPT_Q3A_INT_HITS_PERC> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q3A_Interference_Average_Hits_Percentage> .
<http://genus_dict/variable/ACPT_Q3A_INT_HITS_PERC_ZS> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q3A_Interference_Average_Hits_Percentage_Z-Score> .
<http://genus_dict/variable/ACPT_Q3A_INT_LAT2> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q3A_Interference_Average_Late_Responses> .
<http://genus_dict/variable/ACPT_Q3A_INT_LATE1> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q3A_Interference_Average_Late_Responses> .
<http://genus_dict/variable/ACPT_Q3A_INT_OMIS1> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q3A_Interference_Average_Omission_Errors> .
<http://genus_dict/variable/ACPT_Q3A_INT_OMIS2> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q3A_Interference_Average_Omission_Errors> .
<http://genus_dict/variable/ACPT_Q5A_VIG_DPRM> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q5A_Vigilance_D-prime> .
<http://genus_dict/variable/ACPT_Q5A_VIG_FALS> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q5A_Vigilance_False_Alarms> .
<http://genus_dict/variable/ACPT_Q5A_VIG_FALS_PERC> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q5A_Vigilance_False_Alarms_Percentage> .
<http://genus_dict/variable/ACPT_Q5A_VIG_FALS_PERC_ZS> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q5A_Vigilance_False_Alarms_Percentage_Z-Score> .
<http://genus_dict/variable/ACPT_Q5A_VIG_HITS> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q5A_Vigilance_Hits> .
<http://genus_dict/variable/ACPT_Q5A_VIG_HITS_PERC> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q5A_Vigilance_Hits_Percentage> .
<http://genus_dict/variable/ACPT_Q5A_VIG_HITS_PERC_ZS> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q5A_Vigilance_Hits_Percentage_Z-Score> .
<http://genus_dict/variable/ACPT_Q5A_VIG_LATE> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q5A_Vigilance_Late_Responses> .
<http://genus_dict/variable/ACPT_Q5A_VIG_OMIS> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q5A_Vigilance_Omission_Errors> .
<http://genus_dict/variable/ACPT_Q7A_VIG_DPRM> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q75A_Vigilance_D-prime> .
<http://genus_dict/variable/ACPT_Q7A_VIG_FALS> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q7A_Vigilance_False_Alarms> .
<http://genus_dict/variable/ACPT_Q7A_VIG_FALS_PERC> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q7A_Vigilance_False_Alarms_Percentage> .
<http://genus_dict/variable/ACPT_Q7A_VIG_FALS_PERC_ZS> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q7A_Vigilance_False_Alarms_Percentage_Z-Score> .
<http://genus_dict/variable/ACPT_Q7A_VIG_HITS> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q7A_Vigilance_Hits> .
<http://genus_dict/variable/ACPT_Q7A_VIG_HITS_PERC> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q7A_Vigilance_Hits_Percentage> .
<http://genus_dict/variable/ACPT_Q7A_VIG_HITS_PERC_ZS> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q7A_Vigilance_Hits_Percentage_Z-Score> .
<http://genus_dict/variable/ACPT_Q7A_VIG_LATE> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q7A_Vigilance_Late_Responses> .
<http://genus_dict/variable/ACPT_Q7A_VIG_OMIS> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_Q7A_Vigilance_Omission_Errors> .
<http://genus_dict/variable/ACPT_QA5_DESCRIP> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_QA5_Description> .
<http://genus_dict/variable/ACPT_QA5_VIG_DPRM> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_QA5_Vigilance_D-prime> .
<http://genus_dict/variable/ACPT_QA5_VIG_FALS1> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_QA5_Vigilance_False_Alarms> .
<http://genus_dict/variable/ACPT_QA5_VIG_FALS_PERC> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_QA5_Vigilance_False_Alarms_Percentage> .
<http://genus_dict/variable/ACPT_QA5_VIG_FALS_PERC_ZS> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_QA5_Vigilance_False_Alarms_Percentage_Z-_Score> .
<http://genus_dict/variable/ACPT_QA5_VIG_FALS_TOT> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_QA5_Vigilance_False_Alarms> .
<http://genus_dict/variable/ACPT_QA5_VIG_HITS1> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_QA5_Vigilance_Hits> .
<http://genus_dict/variable/ACPT_QA5_VIG_HITS_PERC> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_QA5_Vigilance_Hits_Percentage> .
<http://genus_dict/variable/ACPT_QA5_VIG_HITS_PERC_ZS> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_QA5_Vigilance_Hits_Percentage_Z-Score> .
<http://genus_dict/variable/ACPT_QA5_VIG_HITS_TOT> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_QA5_Vigilance_Hits> .
<http://genus_dict/variable/ACPT_QA5_VIG_LATE1> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_QA5_Vigilance_Late_Responses> .
<http://genus_dict/variable/ACPT_QA5_VIG_LATE_TOT> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_QA5_Vigilance_Late_Responses> .
<http://genus_dict/variable/ACPT_QA5_VIG_OMIS1> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_QA5_Vigilance_Omission_Errors> .
<http://genus_dict/variable/ACPT_QA5_VIG_OMIS_TOT> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_QA5_Vigilance_Omission_Errors> .
<http://genus_dict/variable/ACPT_QA6_INT_FALS3> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_QA6_Interference_False_Alarms> .
<http://genus_dict/variable/ACPT_QA6_INT_HITS3> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_QA6_Interference_Hits> .
<http://genus_dict/variable/ACPT_QA6_INT_LATE3> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_QA6_Interference_Late_Responses> .
<http://genus_dict/variable/ACPT_QA6_INT_OMIS3> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_QA6_Interference_Omission_Errors> .
<http://genus_dict/variable/ACPT_QA7_INT_FALS2> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_QA7_Interference_False_Alarms> .
<http://genus_dict/variable/ACPT_QA7_INT_HITS2> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_QA7_Interference_Hits> .
<http://genus_dict/variable/ACPT_QA7_INT_LATE2> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_QA7_Interference_Late_Responses> .
<http://genus_dict/variable/ACPT_QA7_INT_OMIS2> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_QA7_Interference_Omission_Errors> .
<http://genus_dict/variable/ACPT_QA_VIG_AVG_FALS> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_QA_Vigilance_Average_False_Alarms> .
<http://genus_dict/variable/ACPT_QA_VIG_AVG_HITS> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_QA_Vigilance_Average_Hits> .
<http://genus_dict/variable/ACPT_QA_VIG_AVG_LATE> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_QA_Vigilance_Average_Late_Responses> .
<http://genus_dict/variable/ACPT_QA_VIG_AVG_OMIS> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_QA_Vigilance_Average_Omission_Errors> .
<http://genus_dict/variable/ACPT_QA_VIG_DPRM> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_QA_Vigilance_D-prime> .
<http://genus_dict/variable/ACPT_QA_VIG_FALS1> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_QA_Vigilance_False_Alarms> .
<http://genus_dict/variable/ACPT_QA_VIG_FALS2> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_QA_Vigilance_False_Alarms> .
<http://genus_dict/variable/ACPT_QA_VIG_FALS_PERC> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_QA_Vigilance_False_Alarms_Percentage> .
<http://genus_dict/variable/ACPT_QA_VIG_FALS_PERC_ZS> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_QA_Vigilance_False_Alarms_Percentage_Z-_Score> .
<http://genus_dict/variable/ACPT_QA_VIG_HITS1> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_QA_Vigilance_Hits> .
<http://genus_dict/variable/ACPT_QA_VIG_HITS2> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_QA_Vigilance_Hits> .
<http://genus_dict/variable/ACPT_QA_VIG_HITS_PERC> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_QA_Vigilance_Hits_Percentage> .
<http://genus_dict/variable/ACPT_QA_VIG_HITS_PERC_ZS> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_QA_Vigilance_Hits_Percentage_Z-Score> .
<http://genus_dict/variable/ACPT_QA_VIG_LATE1> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_QA_Vigilance_Late_Responses> .
<http://genus_dict/variable/ACPT_QA_VIG_LATE2> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_QA_Vigilance_Late_Responses> .
<http://genus_dict/variable/ACPT_QA_VIG_OMIS1> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_QA_Vigilance_Omission_Errors> .
<http://genus_dict/variable/ACPT_QA_VIG_OMIS2> "has_label" <http://genus_dict/label/Auditory_Continuous_Performance_Test_-_QA_Vigilance_Omission_Errors> .
<http://genus_dict/variable/CANTAB_IDED_COMP_STG_ERR> "has_label" <http://genus_dict/label/Cambridge_Neuropsychological_Test_Automated_Battery_-_Intra-Dimensional_Extra-Dimensional_Set_Shifting_Stages_Completed_Errors> .
<http://genus_dict/variable/CANTAB_IDED_COMP_STG_TRLS> "has_label" <http://genus_dict/label/Cambridge_Neuropsychological_Test_Automated_Battery_-_Intra-Dimensional_Extra-Dimensional_Set_Shifting_Stages_Completed_Trials> .
<http://genus_dict/variable/CANTAB_IDED_PRE_ED_ERR> "has_label" <http://genus_dict/label/Cambridge_Neuropsychological_Test_Automated_Battery_-_Intra-Dimensional_Extra-Dimensional_Set_Shifting_Pre-ED_Errors> .
<http://genus_dict/variable/CANTAB_IDED_STGS_COMPL_RS> "has_label" <http://genus_dict/label/Cambridge_Neuropsychological_Test_Automated_Battery_-_Intra-Dimensional_Extra-Dimensional_Set_Shifting_Stages_Completed_Raw_Score> .
<http://genus_dict/variable/CANTAB_IDED_STGS_COMPL_SS> "has_label" <http://genus_dict/label/Cambridge_Neuropsychological_Test_Automated_Battery_-_Intra-Dimensional_Extra-Dimensional_Set_Shifting_Stages_Completed_Scaled_Score> .
<http://genus_dict/variable/CANTAB_IDED_TOT_ERR_ADJ_RS> "has_label" <http://genus_dict/label/Cambridge_Neuropsychological_Test_Automated_Battery_-_Intra-Dimensional_Extra-Dimensional_Set_Shifting_Total_Errors_Adjusted_Raw_Score> .
<http://genus_dict/variable/CANTAB_IDED_TOT_ERR_ADJ_SS> "has_label" <http://genus_dict/label/Cambridge_Neuropsychological_Test_Automated_Battery_-_Intra-Dimensional_Extra-Dimensional_Set_Shifting_Total_Errors_Adjusted_Scaled_Score> .
<http://genus_dict/variable/CANTAB_IDED_TOT_ERR_RS> "has_label" <http://genus_dict/label/Cambridge_Neuropsychological_Test_Automated_Battery_-_Intra-Dimensional_Extra-Dimensional_Set_Shifting_Total_Errors_Raw_Score> .
<http://genus_dict/variable/CANTAB_IDED_TOT_ERR_SS> "has_label" <http://genus_dict/label/Cambridge_Neuropsychological_Test_Automated_Battery_-_Intra-Dimensional_Extra-Dimensional_Set_Shifting_Total_Errors_Scaled_Score> .
<http://genus_dict/variable/CANTAB_IDED_TOT_ERR_STG11> "has_label" <http://genus_dict/label/Cambridge_Neuropsychological_Test_Automated_Battery_-_Intra-Dimensional_Extra-Dimensional_Set_Shifting_Total_Errors_Stage_11> .
<http://genus_dict/variable/CANTAB_IDED_TOT_ERR_STG6> "has_label" <http://genus_dict/label/Cambridge_Neuropsychological_Test_Automated_Battery_-_Intra-Dimensional_Extra-Dimensional_Set_Shifting_Total_Errors_Stage_6> .
<http://genus_dict/variable/CANTAB_IDED_TOT_ERR_STG8> "has_label" <http://genus_dict/label/Cambridge_Neuropsychological_Test_Automated_Battery_-_Intra-Dimensional_Extra-Dimensional_Set_Shifting_Total_Errors_Stage_8> .
<http://genus_dict/variable/CANTAB_IDED_TOT_TRLS> "has_label" <http://genus_dict/label/Cambridge_Neuropsychological_Test_Automated_Battery_-_Intra-Dimensional_Extra-Dimensional_Set_Shifting_Total_Trials> .
<http://genus_dict/variable/CANTAB_IDED_TOT_TRLS_ADJ> "has_label" <http://genus_dict/label/Cambridge_Neuropsychological_Test_Automated_Battery_-_Intra-Dimensional_Extra-Dimensional_Set_Shifting_Total_Trials_Adjusted> .
<http://genus_dict/variable/CANTAB_PAL_STGS_COMPL_RS> "has_label" <http://genus_dict/label/Cambridge_Neuropsychological_Test_Automated_Battery_-_Paired_Associates_Learning_Stages_Completed_Raw_Score> .
<http://genus_dict/variable/CANTAB_PAL_STGS_COMPL_SS> "has_label" <http://genus_dict/label/Cambridge_Neuropsychological_Test_Automated_Battery_-_Paired_Associates_Learning_Stages_Completed_Scaled_Score> .
<http://genus_dict/variable/CANTAB_PAL_TOT_ERR_ADJ_RS> "has_label" <http://genus_dict/label/Cambridge_Neuropsychological_Test_Automated_Battery_-_Paired_Associates_Learning_Total_Errors_Adjusted_Raw_Score> .
<http://genus_dict/variable/CANTAB_PAL_TOT_ERR_ADJ_SS> "has_label" <http://genus_dict/label/Cambridge_Neuropsychological_Test_Automated_Battery_-_Paired_Associates_Learning_Total_Errors_Adjusted_Scaled_Score> .
<http://genus_dict/variable/CANTAB_PAL_TOT_ERR_RS_6_Shapes> "has_label" <http://genus_dict/label/Cambridge_Neuropsychological_Test_Automated_Battery_-_Paired_Associates_Learning_Total_Errors_Raw_Score_> .
<http://genus_dict/variable/CANTAB_PAL_TOT_ERR_SS_6_Shapes> "has_label" <http://genus_dict/label/Cambridge_Neuropsychological_Test_Automated_Battery_-_Paired_Associates_Learning_Total_Errors_Scaled_Score_> .
<http://genus_dict/variable/CANTAB_RVIP_APRM> "has_label" <http://genus_dict/label/Cambridge_Neuropsychological_Test_Automated_Battery_-_Rapid_Visual_Information_Processsing_A-prime> .
<http://genus_dict/variable/CANTAB_RVIP_DPRM> "has_label" <http://genus_dict/label/Cambridge_Neuropsychological_Test_Automated_Battery_-_Rapid_Visual_Information_Processsing_D-prime> .
<http://genus_dict/variable/CANTAB_RVIP_FALS> "has_label" <http://genus_dict/label/Cambridge_Neuropsychological_Test_Automated_Battery_-_Rapid_Visual_Information_Processsing_False_Alarms> .
<http://genus_dict/variable/CANTAB_RVIP_HITS> "has_label" <http://genus_dict/label/Cambridge_Neuropsychological_Test_Automated_Battery_-_Rapid_Visual_Information_Processsing_Hits> .
<http://genus_dict/variable/CANTAB_RVIP_HITS_PERC> "has_label" <http://genus_dict/label/Cambridge_Neuropsychological_Test_Automated_Battery_-_Rapid_Visual_Information_Processsing_Hits_Percentage> .
<http://genus_dict/variable/CANTAB_RVIP_LATENCY> "has_label" <http://genus_dict/label/Cambridge_Neuropsychological_Test_Automated_Battery_-_Rapid_Visual_Information_Processsing_Latency> .
<http://genus_dict/variable/CANTAB_RVIP_MISS> "has_label" <http://genus_dict/label/Cambridge_Neuropsychological_Test_Automated_Battery_-_Rapid_Visual_Information_Processsing_Misses> .
<http://genus_dict/variable/CANTAB_RVIP_NT_CORR> "has_label" <http://genus_dict/label/Cambridge_Neuropsychological_Test_Automated_Battery_-_Rapid_Visual_Information_Processsing_Non-Target_Correct> .
<http://genus_dict/variable/CANTAB_RVIP_PROB_FALS> "has_label" <http://genus_dict/label/Cambridge_Neuropsychological_Test_Automated_Battery_-_Rapid_Visual_Information_Processsing_Probability_of_False_Alarms> .
<http://genus_dict/variable/CANTAB_SOC_DUR> "has_label" <http://genus_dict/label/Cambridge_Neuropsychological_Test_Automated_Battery_-_Stockings_of_Cambridge_Duration> .
<http://genus_dict/variable/CANTAB_SOC_M_IT_RS> "has_label" <http://genus_dict/label/Cambridge_Neuropsychological_Test_Automated_Battery_-_Stockings_of_Cambridge_Mean_Initial_Thinking_time_(_5_moves)_Raw_Score_> .
<http://genus_dict/variable/CANTAB_SOC_M_IT_SS> "has_label" <http://genus_dict/label/Cambridge_Neuropsychological_Test_Automated_Battery_-_Stockings_of_Cambridge_Mean_Initial_Thinking_time_(_5_moves)_Standard_Score> .
<http://genus_dict/variable/CANTAB_SOC_M_PS_RS> "has_label" <http://genus_dict/label/Cambridge_Neuropsychological_Test_Automated_Battery_-_Stockings_of_Cambridge_Mean_Problems_Solved_in_minimum_moves_Raw_Score> .
<http://genus_dict/variable/CANTAB_SOC_M_PS_SS> "has_label" <http://genus_dict/label/Cambridge_Neuropsychological_Test_Automated_Battery_-_Stockings_of_Cambridge_Mean_Problems_Solved_in_minimum_moves_Standard_Score> .
<http://genus_dict/variable/CANTAB_SOC_M_ST_RS> "has_label" <http://genus_dict/label/Cambridge_Neuropsychological_Test_Automated_Battery_-_Stockings_of_Cambridge_Mean_Subsequent_Thinking_Time_(_5_moves)_Raw_Score> .
<http://genus_dict/variable/CANTAB_SOC_M_ST_SS> "has_label" <http://genus_dict/label/Cambridge_Neuropsychological_Test_Automated_Battery_-_Stockings_of_Cambridge_Mean_Subsequent_Thinking_Time_(_5_moves)_Standard_Score> .
<http://genus_dict/variable/CANTAB_SWM_BE_RS> "has_label" <http://genus_dict/label/Cambridge_Neuropsychological_Test_Automated_Battery_-_Spatial_Working_Memory_Between_Errors_Raw_Score> .
<http://genus_dict/variable/CANTAB_SWM_BE_SS> "has_label" <http://genus_dict/label/Cambridge_Neuropsychological_Test_Automated_Battery_-_Spatial_Working_Memory_Between_Errors_Scaled_Score> .
<http://genus_dict/variable/CANTAB_SWM_DOUBLE_ERR> "has_label" <http://genus_dict/label/Cambridge_Neuropsychological_Test_Automated_Battery_-_Spatial_Working_Memory_Double_Errors> .
<http://genus_dict/variable/CANTAB_SWM_DUR> "has_label" <http://genus_dict/label/Cambridge_Neuropsychological_Test_Automated_Battery_-_Spatial_Working_Memory_Duration> .
<http://genus_dict/variable/CANTAB_SWM_STRAT_RS> "has_label" <http://genus_dict/label/Cambridge_Neuropsychological_Test_Automated_Battery_-_Spatial_Working_Memory_Strategy_Raw_Score> .
<http://genus_dict/variable/CANTAB_SWM_STRAT_SS> "has_label" <http://genus_dict/label/Cambridge_Neuropsychological_Test_Automated_Battery_-_Spatial_Working_Memory_Strategy_Scaled_Score> .
<http://genus_dict/variable/CANTAB_SWM_TOT_ERR> "has_label" <http://genus_dict/label/Cambridge_Neuropsychological_Test_Automated_Battery_-_Spatial_Working_Memory_Total_Errors> .
<http://genus_dict/variable/CANTAB_SWM_WTHN_ERR> "has_label" <http://genus_dict/label/Cambridge_Neuropsychological_Test_Automated_Battery_-_Spatial_Working_Memory_Within_Errors> .
<http://genus_dict/variable/CANTAB_time> "has_label" <http://genus_dict/label/Cambridge_Neuropsychological_Test_Automated_Battery_-_Time_of_Assessment> .
<http://genus_dict/variable/CMS_DE_PCT> "has_label" <http://genus_dict/label/Children's_Memory_Scale_-_Delayed_Recall_Percentage> .
<http://genus_dict/variable/CMS_EF_DE_RS> "has_label" <http://genus_dict/label/Children's_Memory_Scale_-_Delayed_Recall_Raw_Score> .
<http://genus_dict/variable/CMS_EF_DE_SS> "has_label" <http://genus_dict/label/Children's_Memory_Scale_-_Delayed_Recall_Scaled_Score> .
<http://genus_dict/variable/CMS_EF_DE_TH_RS> "has_label" <http://genus_dict/label/Children's_Memory_Scale_-_Delayed_Recall_Theme_Raw_Score> .
<http://genus_dict/variable/CMS_EF_DE_TH_SS> "has_label" <http://genus_dict/label/Children's_Memory_Scale_-_Delayed_Recall_Theme_Scaled_Score> .
<http://genus_dict/variable/CMS_EF_IM_RS> "has_label" <http://genus_dict/label/Children's_Memory_Scale_-_Immediate_Recall_Raw_Score> .
<http://genus_dict/variable/CMS_EF_IM_SS> "has_label" <http://genus_dict/label/Children's_Memory_Scale_-_Immediate_Recall_Scaled_Score> .
<http://genus_dict/variable/CMS_EF_REC> "has_label" <http://genus_dict/label/Children's_Memory_Scale_-_Recognition> .
<http://genus_dict/variable/CMS_EF_TH_RS> "has_label" <http://genus_dict/label/Children's_Memory_Scale_-_Immediate_Recall_Theme_Raw_Score> .
<http://genus_dict/variable/CMS_EF_TH_SS> "has_label" <http://genus_dict/label/Children's_Memory_Scale_-_Immediate_Recall_Theme_Scaled_Score> .
<http://genus_dict/variable/CMS_IM_PCT> "has_label" <http://genus_dict/label/Children's_Memory_Scale_-_Immediate_Recall_Percentage> .
<http://genus_dict/variable/CMS_VERS> "has_label" <http://genus_dict/label/Children's_Memory_Scale_-_Test_Version> .
<http://genus_dict/variable/COGTEST_SWM_IM_TD> "has_label" <http://genus_dict/label/Cogtest_Battery_-_Spatial_Working_Memory_Immediate> .
<http://genus_dict/variable/COGTEST_SWM_LD_SD> "has_label" <http://genus_dict/label/Cogtest_Battery_-_Spatial_Working_Memory_Long_Delay> .
<http://genus_dict/variable/COGTEST_SWM_SD_TD> "has_label" <http://genus_dict/label/Cogtest_Battery_-_Spatial_Working_Memory_Short_Delay> .
<http://genus_dict/variable/COGTEST_WLM_PCT_T2T> "has_label" <http://genus_dict/label/Cogtest_Battery_-_Word_List_Memory_Percentage_Trial2Trial> .
<http://genus_dict/variable/COGTEST_WLM_RECOG> "has_label" <http://genus_dict/label/Cogtest_Battery_-_Word_List_Memory_Recognition> .
<http://genus_dict/variable/COGTEST_WLM_TOT_DE> "has_label" <http://genus_dict/label/Cogtest_Battery_-_Word_List_Memory_Total_Delayed_Recall> .
<http://genus_dict/variable/COGTEST_WLM_TOT_IM> "has_label" <http://genus_dict/label/Cogtest_Battery_-_Word_List_Memory_Total_Immediate_Recall> .
<http://genus_dict/variable/COGTEST_WLM_TOT_WORDS> "has_label" <http://genus_dict/label/Cogtest_Battery_-_Word_List_Memory_Total_Words> .
<http://genus_dict/variable/CPT19_DPRM> "has_label" <http://genus_dict/label/Continuous_Performance_Test_1-9_-_D-prime> .
<http://genus_dict/variable/CPT19_FALS> "has_label" <http://genus_dict/label/Continuous_Performance_Test_1-9_-_False_Alarms_Raw_Score> .
<http://genus_dict/variable/CPT19_FALS_PERC> "has_label" <http://genus_dict/label/Continuous_Performance_Test_1-9_-_False_Alarms_Percentage> .
<http://genus_dict/variable/CPT19_FALS_PERC_ZS> "has_label" <http://genus_dict/label/Continuous_Performance_Test_1-9_-_False_Alarms_Percentage_Z-Score> .
<http://genus_dict/variable/CPT19_HITS> "has_label" <http://genus_dict/label/Continuous_Performance_Test_1-9_-_Hits_Raw_Score> .
<http://genus_dict/variable/CPT19_HITS_PERC> "has_label" <http://genus_dict/label/Continuous_Performance_Test_1-9_-_Hits_Percentage> .
<http://genus_dict/variable/CPT19_HITS_PERC_ZS> "has_label" <http://genus_dict/label/Continuous_Performance_Test_1-9_-_Hits_Percentage_Z-Score> .
<http://genus_dict/variable/CPT19_OMIS> "has_label" <http://genus_dict/label/Continuous_Performance_Test_1-9_-_Omissions_Raw_Score> .
<http://genus_dict/variable/CPT19_RT> "has_label" <http://genus_dict/label/Continuous_Performance_Test_1-9_-_Reaction_Time> .
<http://genus_dict/variable/CPT19_VERS> "has_label" <http://genus_dict/label/Continuous_Performance_Test_1-9_-_Test_Version> .
<http://genus_dict/variable/CPT37_DPRM> "has_label" <http://genus_dict/label/Continuous_Performance_Test_3-7_-_D-prime> .
<http://genus_dict/variable/CPT37_DPRM_NEW> "has_label" <http://genus_dict/label/Continuous_Performance_Test_3-7_-_D-prime_(Calculated)> .
<http://genus_dict/variable/CPT37_FALS> "has_label" <http://genus_dict/label/Continuous_Performance_Test_3-7_-_False_Alarms_Raw_Score> .
<http://genus_dict/variable/CPT37_FALS_PERC> "has_label" <http://genus_dict/label/Continuous_Performance_Test_3-7_-_False_Alarms_Percentage> .
<http://genus_dict/variable/CPT37_FALS_PERC_ZS> "has_label" <http://genus_dict/label/Continuous_Performance_Test_3-7_-_False_Alarms_Percentage_Z-Score> .
<http://genus_dict/variable/CPT37_HITS> "has_label" <http://genus_dict/label/Continuous_Performance_Test_3-7_-_Hits_Raw_Score> .
<http://genus_dict/variable/CPT37_HITS_PERC> "has_label" <http://genus_dict/label/Continuous_Performance_Test_3-7_-_Hits_Percentage> .
<http://genus_dict/variable/CPT37_HITS_PERC_ZS> "has_label" <http://genus_dict/label/Continuous_Performance_Test_3-7_-_Hits_Percentage_Z-Score> .
<http://genus_dict/variable/CPT37_VERS> "has_label" <http://genus_dict/label/Continuous_Performance_Test_3-7_-_Test_Version> .
<http://genus_dict/variable/FTAP_DH_AVG> "has_label" <http://genus_dict/label/Finger_Tapping_-_Dominant_Hand_Average> .
<http://genus_dict/variable/FTAP_L10> "has_label" <http://genus_dict/label/Finger_Tapping_-_Trial_10_Left_Hand> .
<http://genus_dict/variable/FTAP_L4> "has_label" <http://genus_dict/label/Finger_Tapping_-_Trial_4_Left_Hand> .
<http://genus_dict/variable/FTAP_L5> "has_label" <http://genus_dict/label/Finger_Tapping_-_Trial_5_Left_Hand> .
<http://genus_dict/variable/FTAP_L6> "has_label" <http://genus_dict/label/Finger_Tapping_-_Trial_6_Left_Hand> .
<http://genus_dict/variable/FTAP_L9> "has_label" <http://genus_dict/label/Finger_Tapping_-_Trial_9_Left_Hand> .
<http://genus_dict/variable/FTAP_LH_AVG> "has_label" <http://genus_dict/label/Finger_Tapping_-_Left_Hand_Average> .
<http://genus_dict/variable/FTAP_NDH_AVG> "has_label" <http://genus_dict/label/Finger_Tapping_-_Non-Dominant_Hand_Average> .
<http://genus_dict/variable/FTAP_NPH> "has_label" <http://genus_dict/label/Finger_Tapping_-_Non-Preferred_Hand_Average> .
<http://genus_dict/variable/FTAP_NPH_SD> "has_label" <http://genus_dict/label/Finger_Tapping_-_Non-Preferred_Hand_Standard_Deviation> .
<http://genus_dict/variable/FTAP_PH> "has_label" <http://genus_dict/label/Finger_Tapping_-_Preferred_Hand_Average> .
<http://genus_dict/variable/FTAP_PH_SD> "has_label" <http://genus_dict/label/Finger_Tapping_-_Preferred_Hand_Standard_Deviation> .
<http://genus_dict/variable/FTAP_R1> "has_label" <http://genus_dict/label/Finger_Tapping_-_Trial_1_Right_Hand> .
<http://genus_dict/variable/FTAP_R2> "has_label" <http://genus_dict/label/Finger_Tapping_-_Trial_2_Right_Hand> .
<http://genus_dict/variable/FTAP_R3> "has_label" <http://genus_dict/label/Finger_Tapping_-_Trial_3_Right_Hand> .
<http://genus_dict/variable/FTAP_R7> "has_label" <http://genus_dict/label/Finger_Tapping_-_Trial_7_Right_Hand> .
<http://genus_dict/variable/FTAP_R8> "has_label" <http://genus_dict/label/Finger_Tapping_-_Trial_8_Right_Hand> .
<http://genus_dict/variable/FTAP_RH_AVG> "has_label" <http://genus_dict/label/Finger_Tapping_-_Right_Hand_Average> .
<http://genus_dict/variable/GNG_GO_CORR> "has_label" <http://genus_dict/label/Go-No-Go_Test_-_Go_Trials_Correct> .
<http://genus_dict/variable/GNG_GO_CORR_PERC> "has_label" <http://genus_dict/label/Go-No-Go_Test_-_Go_Trials_Correct_Percentage> .
<http://genus_dict/variable/GNG_GO_ERR> "has_label" <http://genus_dict/label/Go-No-Go_Test_-_Go_Trials_Errors> .
<http://genus_dict/variable/GNG_GO_NORSP> "has_label" <http://genus_dict/label/Go-No-Go_Test_-_Go_Trials_No_Response> .
<http://genus_dict/variable/GNG_GO_PHAND> "has_label" <http://genus_dict/label/Go-No-Go_Test_-_Go_Trials_Preferred_Hand> .
<http://genus_dict/variable/GNG_GO_RT> "has_label" <http://genus_dict/label/Go-No-Go_Test_-_Go_Trials_Reaction_Time> .
<http://genus_dict/variable/GNG_NOGO_CORR> "has_label" <http://genus_dict/label/Go-No-Go_Test_-_No-Go_Trials_Correct> .
<http://genus_dict/variable/GNG_NOGO_CORR_PERC> "has_label" <http://genus_dict/label/Go-No-Go_Test_-_No-Go_Trials_Correct_Percentage> .
<http://genus_dict/variable/GNG_NOGO_ERR> "has_label" <http://genus_dict/label/Go-No-Go_Test_-_No-Go_Trials_Errors> .
<http://genus_dict/variable/IPSAQ_ExtBias> "has_label" <http://genus_dict/label/Internal,_Personal_and_Situational_Attributions_Questionnaire_-_Externalizing_Bias> .
<http://genus_dict/variable/IPSAQ_ExtPersNeg> "has_label" <http://genus_dict/label/Internal,_Personal_and_Situational_Attributions_Questionnaire_-_External_Personal_Negative> .
<http://genus_dict/variable/IPSAQ_ExtPos> "has_label" <http://genus_dict/label/Internal,_Personal_and_Situational_Attributions_Questionnaire_-_External_Positive> .
<http://genus_dict/variable/IPSAQ_IntPersNeg> "has_label" <http://genus_dict/label/Internal,_Personal_and_Situational_Attributions_Questionnaire_-_Internal_Personal_Negative> .
<http://genus_dict/variable/IPSAQ_IntPos> "has_label" <http://genus_dict/label/Internal,_Personal_and_Situational_Attributions_Questionnaire_-_Internal_Positive> .
<http://genus_dict/variable/IPSAQ_PersBias> "has_label" <http://genus_dict/label/Internal,_Personal_and_Situational_Attributions_Questionnaire_-_Personalizing_Bias> .
<http://genus_dict/variable/IPSAQ_SitNeg> "has_label" <http://genus_dict/label/Internal,_Personal_and_Situational_Attributions_Questionnaire_-_Situational_Negative> .
<http://genus_dict/variable/IPSAQ_SitPos> "has_label" <http://genus_dict/label/Internal,_Personal_and_Situational_Attributions_Questionnaire_-_Situational_Positive> .
<http://genus_dict/variable/ITAQ01> "has_label" <http://genus_dict/label/Insight_and_Treatment_Attitudes_Questionnaire_-_Item_1> .
<http://genus_dict/variable/ITAQ02> "has_label" <http://genus_dict/label/Insight_and_Treatment_Attitudes_Questionnaire_-_Item_2> .
<http://genus_dict/variable/ITAQ03> "has_label" <http://genus_dict/label/Insight_and_Treatment_Attitudes_Questionnaire_-_Item_3> .
<http://genus_dict/variable/ITAQ04> "has_label" <http://genus_dict/label/Insight_and_Treatment_Attitudes_Questionnaire_-_Item_4> .
<http://genus_dict/variable/ITAQ05> "has_label" <http://genus_dict/label/Insight_and_Treatment_Attitudes_Questionnaire_-_Item_5> .
<http://genus_dict/variable/ITAQ06> "has_label" <http://genus_dict/label/Insight_and_Treatment_Attitudes_Questionnaire_-_Item_6> .
<http://genus_dict/variable/ITAQ07> "has_label" <http://genus_dict/label/Insight_and_Treatment_Attitudes_Questionnaire_-_Item_7> .
<http://genus_dict/variable/ITAQ08> "has_label" <http://genus_dict/label/Insight_and_Treatment_Attitudes_Questionnaire_-_Item_8> .
<http://genus_dict/variable/ITAQ09> "has_label" <http://genus_dict/label/Insight_and_Treatment_Attitudes_Questionnaire_-_Item_9> .
<http://genus_dict/variable/ITAQ10> "has_label" <http://genus_dict/label/Insight_and_Treatment_Attitudes_Questionnaire_-_Item_10> .
<http://genus_dict/variable/ITAQ11> "has_label" <http://genus_dict/label/Insight_and_Treatment_Attitudes_Questionnaire_-_Item_11> .
<http://genus_dict/variable/ITAQ_TS> "has_label" <http://genus_dict/label/Insight_and_Treatment_Attitudes_Questionnaire_-_Total_Score> .
<http://genus_dict/variable/JOLO_RS> "has_label" <http://genus_dict/label/Judgment_of_Line_Orientation_-_Raw_Score> .
<http://genus_dict/variable/LNS_P> "has_label" <http://genus_dict/label/Letter-Number_Span_University_of_Maryland_-_Percentile> .
<http://genus_dict/variable/LNS_RS> "has_label" <http://genus_dict/label/Letter-Number_Span_University_of_Maryland_-_Raw_Score> .
<http://genus_dict/variable/LNS_RS_ipt> "has_label" <http://genus_dict/label/Letter-Number_Span_University_of_Maryland_-_Raw_Score_imputed> .
<http://genus_dict/variable/LNS_TS> "has_label" <http://genus_dict/label/Letter-Number_Span_University_of_Maryland_-_T-Score> .
<http://genus_dict/variable/LNS_ZS> "has_label" <http://genus_dict/label/Letter-Number_Span_University_of_Maryland_-_Z-Score> .
<http://genus_dict/variable/LNS_ZS_ipt> "has_label" <http://genus_dict/label/Letter-Number_Span_University_of_Maryland_-_Z-Score_imputed> .
<http://genus_dict/variable/MATRICS_OVERALLCS_P> "has_label" <http://genus_dict/label/Measurement_and_Treatment_Research_to_Improve_Cognition_in_Schizophrenia_Consensus_Cognitive_Battery_-_Overall_Cognitive_Score_Percentile> .
<http://genus_dict/variable/MATRICS_OVERALLCS_TS> "has_label" <http://genus_dict/label/Measurement_and_Treatment_Research_to_Improve_Cognition_in_Schizophrenia_Consensus_Cognitive_Battery_-_Overall_Cognitive_Score_T-Score> .
<http://genus_dict/variable/MATRICS_OVERALLCS_ZS> "has_label" <http://genus_dict/label/Measurement_and_Treatment_Research_to_Improve_Cognition_in_Schizophrenia_Consensus_Cognitive_Battery_-_Overall_Cognitive_Score_Z-Score> .
<http://genus_dict/variable/MATRICS_OVERALLCS_ZS_Sum> "has_label" <http://genus_dict/label/Measurement_and_Treatment_Research_to_Improve_Cognition_in_Schizophrenia_Consensus_Cognitive_Battery_-_Overall_Cognitive_Score_Z-Score_Sum> .
<http://genus_dict/variable/MATRICS_OVERALLCS_ZS_ipt> "has_label" <http://genus_dict/label/Measurement_and_Treatment_Research_to_Improve_Cognition_in_Schizophrenia_Consensus_Cognitive_Battery_-_Overall_Cognitive_Score_Z-Score_imputed> .
<http://genus_dict/variable/MATRICS_REASPROB_P> "has_label" <http://genus_dict/label/Measurement_and_Treatment_Research_to_Improve_Cognition_in_Schizophrenia_Consensus_Cognitive_Battery_-_Reasoning/Problem_Solving_Percentile> .
<http://genus_dict/variable/MATRICS_REASPROB_TS> "has_label" <http://genus_dict/label/Measurement_and_Treatment_Research_to_Improve_Cognition_in_Schizophrenia_Consensus_Cognitive_Battery_-_Reasoning/Problem_Solving_T-Score> .
<http://genus_dict/variable/MINDEYES> "has_label" <http://genus_dict/label/Reading_the_Mind_in_the_Eyes_Task> .
<http://genus_dict/variable/MMSE> "has_label" <http://genus_dict/label/Mini_Mental_State_Examination> .
<http://genus_dict/variable/MMSE_T2> "has_label" <http://genus_dict/label/Mini_Mental_State_Examination_Time_2> .
<http://genus_dict/variable/NAART> "has_label" <http://genus_dict/label/North_American_Adult_Reading_Test_-_Raw_Score> .
<http://genus_dict/variable/NAART_IQ> "has_label" <http://genus_dict/label/North_American_Adult_Reading_Test_-_Premorbid_IQ> .
<http://genus_dict/variable/NAB_MAZES_P> "has_label" <http://genus_dict/label/Neuropsychological_Assessment_Battery_Mazes_Test_-_Percentile> .
<http://genus_dict/variable/NAB_MAZES_RS> "has_label" <http://genus_dict/label/Neuropsychological_Assessment_Battery_Mazes_Test_-_Raw_Score> .
<http://genus_dict/variable/NAB_MAZES_RS_ipt> "has_label" <http://genus_dict/label/Neuropsychological_Assessment_Battery_Mazes_Test_-_Raw_Score_imputed> .
<http://genus_dict/variable/NAB_MAZES_TS> "has_label" <http://genus_dict/label/Neuropsychological_Assessment_Battery_Mazes_Test_-_T-Score> .
<http://genus_dict/variable/NAB_MAZES_ZS> "has_label" <http://genus_dict/label/Neuropsychological_Assessment_Battery_Mazes_Test_-_Z-Score> .
<http://genus_dict/variable/NAB_MAZES_ZS_ipt> "has_label" <http://genus_dict/label/Neuropsychological_Assessment_Battery_Mazes_Test_-_Z-Score_imputed> .
<http://genus_dict/variable/NART> "has_label" <http://genus_dict/label/National_Adult_Reading_Test_-_Raw_Score> .
<http://genus_dict/variable/NART_IQ> "has_label" <http://genus_dict/label/National_Adult_Reading_Test_-_Premorbid_IQ> .
<http://genus_dict/variable/NART_REMARKS> "has_label" <http://genus_dict/label/National_Adult_Reading_Test_-_Remarks> .
<http://genus_dict/variable/NART_VERS> "has_label" <http://genus_dict/label/National_Adult_Reading_Test_-_Test_Version> .
<http://genus_dict/variable/NBACK0_ACC> "has_label" <http://genus_dict/label/N-back_Working_Memory_Test_-_0-back_Accuracy> .
<http://genus_dict/variable/NBACK0_RT> "has_label" <http://genus_dict/label/N-back_Working_Memory_Test_-_0-back_Reaction_Time> .
<http://genus_dict/variable/NBACK1_ACC> "has_label" <http://genus_dict/label/N-back_Working_Memory_Test_-_1-back_Accuracy> .
<http://genus_dict/variable/NBACK1_RT> "has_label" <http://genus_dict/label/N-back_Working_Memory_Test_-_1-back_Reaction_Time> .
<http://genus_dict/variable/NBACK2_ACC> "has_label" <http://genus_dict/label/N-back_Working_Memory_Test_-_2-back_Accuracy> .
<http://genus_dict/variable/NBACK2_RT> "has_label" <http://genus_dict/label/N-back_Working_Memory_Test_-_2-back_Reaction_Time> .
<http://genus_dict/variable/NBACK_VERS> "has_label" <http://genus_dict/label/N-back_Working_Memory_Test_-_Test_Version> .
<http://genus_dict/variable/PROV_ABS_RS> "has_label" <http://genus_dict/label/DKEFS_Proverbs_Test_-_Abstraction_Raw_Score> .
<http://genus_dict/variable/PROV_ABS_SS> "has_label" <http://genus_dict/label/DKEFS_Proverbs_Test_-_Abstraction_Scaled_Score> .
<http://genus_dict/variable/PROV_ACC_RS> "has_label" <http://genus_dict/label/DKEFS_Proverbs_Test_-_Accuracy_Raw_Score> .
<http://genus_dict/variable/PROV_ACC_SS> "has_label" <http://genus_dict/label/DKEFS_Proverbs_Test_-_Accuracy_Scaled_Score> .
<http://genus_dict/variable/PROV_ACH_RS> "has_label" <http://genus_dict/label/DKEFS_Proverbs_Test_-_Achievement_Free_Inquiry_Raw_Score> .
<http://genus_dict/variable/PROV_ACH_SS> "has_label" <http://genus_dict/label/DKEFS_Proverbs_Test_-_Achievement_Free_Inquiry_Scaled_Score> .
<http://genus_dict/variable/PROV_COM_FREE_RS> "has_label" <http://genus_dict/label/DKEFS_Proverbs_Test_-_Common_Achievement_Free_Inquiry_Raw_Score> .
<http://genus_dict/variable/PROV_COM_FREE_SS> "has_label" <http://genus_dict/label/DKEFS_Proverbs_Test_-_Common_Achievement_Free_Inquiry_Scaled_Score> .
<http://genus_dict/variable/PROV_COM_MULTI_RS> "has_label" <http://genus_dict/label/DKEFS_Proverbs_Test_-_Common_Achievement_Multiple_Choice_Raw_Score> .
<http://genus_dict/variable/PROV_COM_MULTI_SS> "has_label" <http://genus_dict/label/DKEFS_Proverbs_Test_-_Common_Achievement_Multiple_Choice_Scaled_Score> .
<http://genus_dict/variable/PROV_COM_RS> "has_label" <http://genus_dict/label/DKEFS_Proverbs_Test_-_Common_Achievement_Raw_Score> .
<http://genus_dict/variable/PROV_COM_SS> "has_label" <http://genus_dict/label/DKEFS_Proverbs_Test_-_Common_Achievement_Scaled_Score> .
<http://genus_dict/variable/PROV_MC_ACH_RS> "has_label" <http://genus_dict/label/DKEFS_Proverbs_Test_-_Achievement_Multiple_Choice_Raw_Score> .
<http://genus_dict/variable/PROV_MC_ACH_SS> "has_label" <http://genus_dict/label/DKEFS_Proverbs_Test_-_Achievement_Multiple_Choice_Scaled_Score> .
<http://genus_dict/variable/PROV_MC_COM_RS> "has_label" <http://genus_dict/label/DKEFS_Proverbs_Test_-_Common_Achievement_Multiple_Choice_Raw_Score> .
<http://genus_dict/variable/PROV_MC_COM_SS> "has_label" <http://genus_dict/label/DKEFS_Proverbs_Test_-_Common_Achievement_Multiple_Choice_Scaled_Score> .
<http://genus_dict/variable/PROV_MC_UCOM_RS> "has_label" <http://genus_dict/label/DKEFS_Proverbs_Test_-_Uncommon_Achievement_Multiple_Choice_Raw_Score> .
<http://genus_dict/variable/PROV_MC_UCOM_SS> "has_label" <http://genus_dict/label/DKEFS_Proverbs_Test_-_Uncommon_Achievement_Multiple_Choice_Scaled_Score> .
<http://genus_dict/variable/PROV_NO_IDK_RS> "has_label" <http://genus_dict/label/DKEFS_Proverbs_Test_-_> .
<http://genus_dict/variable/PROV_NO_IDK_SS> "has_label" <http://genus_dict/label/DKEFS_Proverbs_Test_-_> .
<http://genus_dict/variable/PROV_REP_RS> "has_label" <http://genus_dict/label/DKEFS_Proverbs_Test_-_Repetitions_Raw_Score> .
<http://genus_dict/variable/PROV_REP_SS> "has_label" <http://genus_dict/label/DKEFS_Proverbs_Test_-_Repetitions_Scaled_Score> .
<http://genus_dict/variable/PROV_TOT_ACH_FREE_RS> "has_label" <http://genus_dict/label/DKEFS_Proverbs_Test_-_Achievement_Free_Inquiry_Raw_Score> .
<http://genus_dict/variable/PROV_TOT_ACH_FREE_SS> "has_label" <http://genus_dict/label/DKEFS_Proverbs_Test_-_Achievement_Free_Inquiry_Scaled_Score> .
<http://genus_dict/variable/PROV_TOT_ACH_MULTI_RS> "has_label" <http://genus_dict/label/DKEFS_Proverbs_Test_-_Achievement_Multiple_Choice_Raw_Score> .
<http://genus_dict/variable/PROV_TOT_ACH_MULTI_SS> "has_label" <http://genus_dict/label/DKEFS_Proverbs_Test_-_Achievement_Multiple_Choice_Scaled_Score> .
<http://genus_dict/variable/PROV_TOT_CORR_ABS_RS> "has_label" <http://genus_dict/label/DKEFS_Proverbs_Test_-_Abstraction_Raw_Score> .
<http://genus_dict/variable/PROV_TOT_CORR_ABS_SS> "has_label" <http://genus_dict/label/DKEFS_Proverbs_Test_-_Abstraction_Scaled_Score> .
<http://genus_dict/variable/PROV_TOT_CORR_CONC_RS> "has_label" <http://genus_dict/label/DKEFS_Proverbs_Test_-_> .
<http://genus_dict/variable/PROV_TOT_INC_PHON_RS> "has_label" <http://genus_dict/label/DKEFS_Proverbs_Test_-_> .
<http://genus_dict/variable/PROV_TOT_INC_PHON_UNREL_RS> "has_label" <http://genus_dict/label/DKEFS_Proverbs_Test_-_> .
<http://genus_dict/variable/PROV_TOT_INC_UNREL_RS> "has_label" <http://genus_dict/label/DKEFS_Proverbs_Test_-_> .
<http://genus_dict/variable/PROV_UCOM_FREE_RS> "has_label" <http://genus_dict/label/DKEFS_Proverbs_Test_-_Uncommon_Achievement_Free_Inquiry_Raw_Score> .
<http://genus_dict/variable/PROV_UCOM_FREE_SS> "has_label" <http://genus_dict/label/DKEFS_Proverbs_Test_-_Uncommon_Achievement_Free_Inquiry_Scaled_Score> .
<http://genus_dict/variable/PROV_UCOM_MULTI_RS> "has_label" <http://genus_dict/label/DKEFS_Proverbs_Test_-_Uncommon_Achievement_Multiple_Choice_Raw_Score> .
<http://genus_dict/variable/PROV_UCOM_MULTI_SS> "has_label" <http://genus_dict/label/DKEFS_Proverbs_Test_-_Uncommon_Achievement_Multiple_Choice_Scaled_Score> .
<http://genus_dict/variable/PROV_UCOM_RS> "has_label" <http://genus_dict/label/DKEFS_Proverbs_Test_-_Uncommon_Achievement_Free_Inquiry_Raw_Score> .
<http://genus_dict/variable/PROV_UCOM_SS> "has_label" <http://genus_dict/label/DKEFS_Proverbs_Test_-_Uncommon_Achievement_Free_Inquiry_Scaled_Score> .
<http://genus_dict/variable/RAN1_ERR> "has_label" <http://genus_dict/label/Rapid_Automatized_Naming_-_Card_1_Errors> .
<http://genus_dict/variable/RAN2_ERR> "has_label" <http://genus_dict/label/Rapid_Automatized_Naming_-_Card_2_Errors> .
<http://genus_dict/variable/RAN3_ERR> "has_label" <http://genus_dict/label/Rapid_Automatized_Naming_-_Card_3_Errors> .
<http://genus_dict/variable/RAN4_ERR> "has_label" <http://genus_dict/label/Rapid_Automatized_Naming_-_Card_4_Errors> .
<http://genus_dict/variable/RAN5_ERR> "has_label" <http://genus_dict/label/Rapid_Automatized_Naming_-_Card_5_Errors> .
<http://genus_dict/variable/RAN6_ERR> "has_label" <http://genus_dict/label/Rapid_Automatized_Naming_-_Card_6_Errors> .
<http://genus_dict/variable/RBANS_DS_TOT> "has_label" <http://genus_dict/label/Repeatable_Battery_for_the_Assessment_of_Neuropsychological_Status_-_Digit_Span> .
<http://genus_dict/variable/RBANS_FIGC_TOT> "has_label" <http://genus_dict/label/Repeatable_Battery_for_the_Assessment_of_Neuropsychological_Status_-_Figure_Copy> .
<http://genus_dict/variable/RBANS_FIGR_TOT> "has_label" <http://genus_dict/label/Repeatable_Battery_for_the_Assessment_of_Neuropsychological_Status_-_Figure_Recall> .
<http://genus_dict/variable/RBANS_JOLO_TOT> "has_label" <http://genus_dict/label/Repeatable_Battery_for_the_Assessment_of_Neuropsychological_Status_-_Judgment_of_Line_Orientation> .
<http://genus_dict/variable/RBANS_LM_TOT_DE> "has_label" <http://genus_dict/label/Repeatable_Battery_for_the_Assessment_of_Neuropsychological_Status_-_Logical_Memory_Delayed_Recall> .
<http://genus_dict/variable/RBANS_LM_TOT_IM> "has_label" <http://genus_dict/label/Repeatable_Battery_for_the_Assessment_of_Neuropsychological_Status_-_Logical_Memory_Immediate_Recall> .
<http://genus_dict/variable/RBANS_SC> "has_label" <http://genus_dict/label/Repeatable_Battery_for_the_Assessment_of_Neuropsychological_Status_-_Symbol_Coding> .
<http://genus_dict/variable/RBANS_WLM_TOT_DE> "has_label" <http://genus_dict/label/Repeatable_Battery_for_the_Assessment_of_Neuropsychological_Status_-_Word_List_Memory_Delayed_Recall> .
<http://genus_dict/variable/RBANS_WLM_TOT_IM> "has_label" <http://genus_dict/label/Repeatable_Battery_for_the_Assessment_of_Neuropsychological_Status_-_Word_List_Memory_Immediate_Recall> .
<http://genus_dict/variable/REY_ACC_CP> "has_label" <http://genus_dict/label/Rey-Osterrieth_Complex_Figure_Test_-_Accuracy_Copy> .
<http://genus_dict/variable/REY_ACC_DE> "has_label" <http://genus_dict/label/Rey-Osterrieth_Complex_Figure_Test_-_Accuracy_Delayed_Recall> .
<http://genus_dict/variable/REY_ACC_IM> "has_label" <http://genus_dict/label/Rey-Osterrieth_Complex_Figure_Test_-_Accuracy_Immediate_Recall> .
<http://genus_dict/variable/REY_ORG_CP> "has_label" <http://genus_dict/label/Rey-Osterrieth_Complex_Figure_Test_-_Organization_Copy> .
<http://genus_dict/variable/REY_ORG_DE> "has_label" <http://genus_dict/label/Rey-Osterrieth_Complex_Figure_Test_-_Organization_Delayed_Recall> .
<http://genus_dict/variable/REY_ORG_IM> "has_label" <http://genus_dict/label/Rey-Osterrieth_Complex_Figure_Test_-_Organization_Immediate_Recall> .
<http://genus_dict/variable/REY_STYLE_CP> "has_label" <http://genus_dict/label/Rey-Osterrieth_Complex_Figure_Test_-_Style_Copy> .
<http://genus_dict/variable/REY_STYLE_DE> "has_label" <http://genus_dict/label/Rey-Osterrieth_Complex_Figure_Test_-_Style_Delayed_Recall> .
<http://genus_dict/variable/REY_STYLE_IM> "has_label" <http://genus_dict/label/Rey-Osterrieth_Complex_Figure_Test_-_Style_Immediate_Recall> .
<http://genus_dict/variable/RST_ACC_COST> "has_label" <http://genus_dict/label/Response_Shifting_Task_-_Accuracy_Cost> .
<http://genus_dict/variable/RST_ACC_COST_INDX> "has_label" <http://genus_dict/label/Response_Shifting_Task_-_Accuracy_Cost_Index> .
<http://genus_dict/variable/RST_RT_COST> "has_label" <http://genus_dict/label/Response_Shifting_Task_-_Reaction_Time_Cost> .
<http://genus_dict/variable/RST_RT_COST_INDX> "has_label" <http://genus_dict/label/Response_Shifting_Task_-_Reaction_Time_Cost_Index> .
<http://genus_dict/variable/SACCADE_AS> "has_label" <http://genus_dict/label/Anti-saccade> .
<http://genus_dict/variable/SACCADE_PS> "has_label" <http://genus_dict/label/Pro-Saccade> .
<http://genus_dict/variable/SDRT_IM_TD> "has_label" <http://genus_dict/label/Spatial_Delayed_Response_Task_-_Immediate_Recall_Target_Distance> .
<http://genus_dict/variable/SDRT_LD_INT_SEC> "has_label" <http://genus_dict/label/Spatial_Delayed_Response_Task_-_Long_Delay_Interval_in_Seconds> .
<http://genus_dict/variable/SDRT_LD_TD> "has_label" <http://genus_dict/label/Spatial_Delayed_Response_Task_-_Long_Delay_Target_Distance> .
<http://genus_dict/variable/SDRT_SD_INT_SEC> "has_label" <http://genus_dict/label/Spatial_Delayed_Response_Task_-_Short_Delay_Interval_in_Seconds> .
<http://genus_dict/variable/SDRT_SD_TD> "has_label" <http://genus_dict/label/Spatial_Delayed_Response_Task_-_Short_Delay_Target_Distance> .
<http://genus_dict/variable/SDRT_VERS> "has_label" <http://genus_dict/label/Spatial_Delayed_Response_Task_-_Test_Version> .
<http://genus_dict/variable/SMELL_TOT> "has_label" <http://genus_dict/label/Sensonics_Inc_Smell_Test_-_Total_Score> .
<http://genus_dict/variable/SMELL_TOT_M> "has_label" <http://genus_dict/label/Sensonics_Inc_Smell_Test_-_Total_Score_with_Missing_Data_Allowed> .
<http://genus_dict/variable/SMITH_TOT> "has_label" <http://genus_dict/label/Smith_Circadian_Rhythm_Questionnaire_-_Total_Score> .
<http://genus_dict/variable/STROOP_CW_CORR> "has_label" <http://genus_dict/label/Stroop_Color-Word_Test_-_Color-Word_Reading_Correct> .
<http://genus_dict/variable/STROOP_CW_CORR_TS> "has_label" <http://genus_dict/label/Stroop_Color-Word_Test_-_Color-Word_Reading_Correct_T-Score> .
<http://genus_dict/variable/STROOP_CW_C_TIME_RATIO> "has_label" <http://genus_dict/label/Stroop_Color-Word_Test_-_Color-Word_Reading_/_Color_Naming_Time_Ratio> .
<http://genus_dict/variable/STROOP_CW_TIME> "has_label" <http://genus_dict/label/Stroop_Color-Word_Test_-_Color-Word_Reading_Time> .
<http://genus_dict/variable/STROOP_CW_TIME_ITEM> "has_label" <http://genus_dict/label/Stroop_Color-Word_Test_-_Color-Word_Reading_Time_per_Item> .
<http://genus_dict/variable/STROOP_CW_W_TIME_RATIO> "has_label" <http://genus_dict/label/Stroop_Color-Word_Test_-_Color-Word_Reading_/_Word_Reading_Ratio> .
<http://genus_dict/variable/STROOP_C_CORR> "has_label" <http://genus_dict/label/Stroop_Color-Word_Test_-_Color_Naming_Correct> .
<http://genus_dict/variable/STROOP_C_CORR_TS> "has_label" <http://genus_dict/label/Stroop_Color-Word_Test_-_Color_Naming_Correct_T-Score> .
<http://genus_dict/variable/STROOP_C_TIME> "has_label" <http://genus_dict/label/Stroop_Color-Word_Test_-_Color_Naming_Correct> .
<http://genus_dict/variable/STROOP_INT> "has_label" <http://genus_dict/label/Stroop_Color-Word_Test_-_Interference_Score> .
<http://genus_dict/variable/STROOP_INT_FORMULA> "has_label" <http://genus_dict/label/Stroop_Color-Word_Test_-_Interference_Score_Formula> .
<http://genus_dict/variable/STROOP_INT_TS> "has_label" <http://genus_dict/label/Stroop_Color-Word_Test_-_Interference_Score_T-Score> .
<http://genus_dict/variable/STROOP_W_CORR> "has_label" <http://genus_dict/label/Stroop_Color-Word_Test_-_Word_Reading_Correct> .
<http://genus_dict/variable/STROOP_W_CORR_TS> "has_label" <http://genus_dict/label/Stroop_Color-Word_Test_-_Word_Reading_Correct_T-Score> .
<http://genus_dict/variable/STROOP_W_TIME> "has_label" <http://genus_dict/label/Stroop_Color-Word_Test_-_Word_Reading_Time> .
<http://genus_dict/variable/TMTA_ERR> "has_label" <http://genus_dict/label/Trail_Making_Test_Part_A_-_Errors> .
<http://genus_dict/variable/TMTA_ERR1_T2> "has_label" <http://genus_dict/label/Trail_Making_Test_Part_A_-_Errors_Time_2> .
<http://genus_dict/variable/TMTA_TIME> "has_label" <http://genus_dict/label/Trail_Making_Test_Part_A_-_Time> .
<http://genus_dict/variable/TMTA_TIME1> "has_label" <http://genus_dict/label/Trail_Making_Test_Part_A_-_Time> .
<http://genus_dict/variable/TMTA_TIME2> "has_label" <http://genus_dict/label/Trail_Making_Test_Part_A_-_Time> .
<http://genus_dict/variable/TMTA_TIME_Log> "has_label" <http://genus_dict/label/Trail_Making_Test_Part_A_-_Time_Log> .
<http://genus_dict/variable/TMTA_TIME_P> "has_label" <http://genus_dict/label/Trail_Making_Test_Part_A_-_Time_Percentile> .
<http://genus_dict/variable/TMTA_TIME_RS_Log_ipt> "has_label" <http://genus_dict/label/Trail_Making_Test_Part_A_-_Time_Log_Raw_Score_imputed> .
<http://genus_dict/variable/TMTA_TIME_RS_ipt> "has_label" <http://genus_dict/label/Trail_Making_Test_Part_A_-_Time_Raw_Score_imputed> .
<http://genus_dict/variable/TMTA_TIME_TS> "has_label" <http://genus_dict/label/Trail_Making_Test_Part_A_-_Time_T-Score> .
<http://genus_dict/variable/TMTA_TIME_TS1_T2> "has_label" <http://genus_dict/label/Trail_Making_Test_Part_A_-_Time_T-Score_Time_2> .
<http://genus_dict/variable/TMTA_TIME_ZS_InvLog> "has_label" <http://genus_dict/label/Trail_Making_Test_Part_A_-_Time_Z-Score_Inverse_Log_Transformed> .
<http://genus_dict/variable/TMTA_TIME_ZS_InvLog_ipt> "has_label" <http://genus_dict/label/Trail_Making_Test_Part_A_-_Time_Z-Score_Inverse_Log_Transformed_imputed> .
<http://genus_dict/variable/TMTA_TIME_ZS_Log> "has_label" <http://genus_dict/label/Trail_Making_Test_Part_A_-_Time_Z-Score_Log_Transformed> .
<http://genus_dict/variable/TMTA_TIME_ZS_Log_ipt> "has_label" <http://genus_dict/label/Trail_Making_Test_Part_A_-_Time_Z-Score_Log_Transformed_imputed> .
<http://genus_dict/variable/TMTBA_DIFF> "has_label" <http://genus_dict/label/Trail_Making_Test_Part_B_minus_Trail_Making_Test_Part_A_Time_Difference> .
<http://genus_dict/variable/TMTBA_RATIO> "has_label" <http://genus_dict/label/Trail_Making_Test_Part_B_divided_by_Trail_Making_Test_Part_A_Time_Ratio> .
<http://genus_dict/variable/TMTB_ERR> "has_label" <http://genus_dict/label/Trail_Making_Test_Part_B_-_Errors> .
<http://genus_dict/variable/TMTB_ERR1_T2> "has_label" <http://genus_dict/label/Trail_Making_Test_Part_B_-_Errors_Time_2> .
<http://genus_dict/variable/TMTB_TIME> "has_label" <http://genus_dict/label/Trail_Making_Test_Part_B_-_Time> .
<http://genus_dict/variable/TMTB_TS1_T2> "has_label" <http://genus_dict/label/Trail_Making_Test_Part_B_-_Time_T-Score> .
<http://genus_dict/variable/TOL_EM_3R> "has_label" <http://genus_dict/label/Tower_of_London_-_Excessive_Moves_3-ring_Trials> .
<http://genus_dict/variable/TOL_EM_4R> "has_label" <http://genus_dict/label/Tower_of_London_-_Excessive_Moves_4-ring_Trials> .
<http://genus_dict/variable/TOL_EM_5R> "has_label" <http://genus_dict/label/Tower_of_London_-_Excessive_Moves_5-ring_Trials> .
<http://genus_dict/variable/TOL_EM_TOT> "has_label" <http://genus_dict/label/Tower_of_London_-_Excessive_Moves_all_Trials> .
<http://genus_dict/variable/TOL_TIME_3R> "has_label" <http://genus_dict/label/Tower_of_London_-_Time_3-ring_Trials> .
<http://genus_dict/variable/TOL_TIME_4R> "has_label" <http://genus_dict/label/Tower_of_London_-_Time_4-ring_Trials> .
<http://genus_dict/variable/TOL_TIME_5R> "has_label" <http://genus_dict/label/Tower_of_London_-_Time_5-ring_Trials> .
<http://genus_dict/variable/TOL_TIME_TOT> "has_label" <http://genus_dict/label/Tower_of_London_-_Time_all_Trials> .
<http://genus_dict/variable/UPSIT_BK1> "has_label" <http://genus_dict/label/University_of_Pennsylvania_Smell_Identification_Test_-_Booklet_1> .
<http://genus_dict/variable/UPSIT_BK2> "has_label" <http://genus_dict/label/University_of_Pennsylvania_Smell_Identification_Test_-_Booklet_2> .
<http://genus_dict/variable/UPSIT_BK3> "has_label" <http://genus_dict/label/University_of_Pennsylvania_Smell_Identification_Test_-_Booklet_3> .
<http://genus_dict/variable/UPSIT_BK4> "has_label" <http://genus_dict/label/University_of_Pennsylvania_Smell_Identification_Test_-_Booklet_4> .
<http://genus_dict/variable/UPSIT_TOT> "has_label" <http://genus_dict/label/University_of_Pennsylvania_Smell_Identification_Test_-_Total_Score> .
<http://genus_dict/variable/UPSIT_TOT_P> "has_label" <http://genus_dict/label/University_of_Pennsylvania_Smell_Identification_Test_-_Percentile> .
<http://genus_dict/variable/VF_CAT1_CORR> "has_label" <http://genus_dict/label/Verbal_Fluency_-_Category_(Semantic)_Fluency_Category_1_Correct_Raw_Score> .
<http://genus_dict/variable/VF_CAT1_CORR_P> "has_label" <http://genus_dict/label/Verbal_Fluency_-_Category_(Semantic)_Fluency_Category_1_Correct_Percentile> .
<http://genus_dict/variable/VF_CAT1_CORR_RS_ipt> "has_label" <http://genus_dict/label/Verbal_Fluency_-_Category_(Semantic)_Fluency_Category_1_Correct_Raw_Score_imputed> .
<http://genus_dict/variable/VF_CAT1_CORR_SS> "has_label" <http://genus_dict/label/Verbal_Fluency_-_Category_(Semantic)_Fluency_Category_1_Correct_Scaled_Score> .
<http://genus_dict/variable/VF_CAT1_CORR_TS> "has_label" <http://genus_dict/label/Verbal_Fluency_-_Category_(Semantic)_Fluency_Category_1_Correct_T-Score> .
<http://genus_dict/variable/VF_CAT1_CORR_ZS> "has_label" <http://genus_dict/label/Verbal_Fluency_-_Category_(Semantic)_Fluency_Category_1_Correct_Z-Score> .
<http://genus_dict/variable/VF_CAT1_CORR_ipt> "has_label" <http://genus_dict/label/Verbal_Fluency_-_Category_(Semantic)_Fluency_Category_1_Correct_imputed> .
<http://genus_dict/variable/VF_CAT1_GEN> "has_label" <http://genus_dict/label/Verbal_Fluency_-_Category_(Semantic)_Fluency_Category_1_Number_Generated> .
<http://genus_dict/variable/VF_CAT1_INC> "has_label" <http://genus_dict/label/Verbal_Fluency_-_Category_(Semantic)_Fluency_Category_1_Incorrect> .
<http://genus_dict/variable/VF_CAT1_PERS> "has_label" <http://genus_dict/label/Verbal_Fluency_-_Category_(Semantic)_Fluency_Category_1_Perseverations> .
<http://genus_dict/variable/VF_CAT1_SPEC> "has_label" <http://genus_dict/label/Verbal_Fluency_-_Category_(Semantic)_Fluency_Category_1_Specification> .
<http://genus_dict/variable/VF_CAT2_CORR> "has_label" <http://genus_dict/label/Verbal_Fluency_-_Category_(Semantic)_Fluency_Category_2_Correct_Raw_Score> .
<http://genus_dict/variable/VF_CAT2_SPEC> "has_label" <http://genus_dict/label/Verbal_Fluency_-_Category_(Semantic)_Fluency_Category_2_Specification> .
<http://genus_dict/variable/VF_CAT3_CORR> "has_label" <http://genus_dict/label/Verbal_Fluency_-_Category_(Semantic)_Fluency_Category_3_Correct_Raw_Score> .
<http://genus_dict/variable/VF_CAT3_SPEC> "has_label" <http://genus_dict/label/Verbal_Fluency_-_Category_(Semantic)_Fluency_Category_3_Specification> .
<http://genus_dict/variable/VF_CAT_AVG> "has_label" <http://genus_dict/label/Verbal_Fluency_-_Category_(Semantic)_Fluency_Average_across_all_categories> .
<http://genus_dict/variable/VF_CAT_TOT> "has_label" <http://genus_dict/label/Verbal_Fluency_-_Category_(Semantic)_Fluency_Total_Correct_in_60_seconds> .
<http://genus_dict/variable/VF_CAT_TOT_30> "has_label" <http://genus_dict/label/Verbal_Fluency_-_Category_(Semantic)_Fluency_Total_Correct_in_30_seconds> .
<http://genus_dict/variable/VF_CAT_TOT_ERR> "has_label" <http://genus_dict/label/Verbal_Fluency_-_Category_(Semantic)_Fluency_Total_Errors_in_60_seconds> .
<http://genus_dict/variable/VF_CAT_TOT_ERR_30> "has_label" <http://genus_dict/label/Verbal_Fluency_-_Category_(Semantic)_Fluency_Total_Errors_in_30_seconds> .
<http://genus_dict/variable/VF_CAT_TOT_REP> "has_label" <http://genus_dict/label/Verbal_Fluency_-_Category_(Semantic)_Fluency_Total_Repetitions_in_60_seconds> .
<http://genus_dict/variable/VF_CAT_TOT_REP_30> "has_label" <http://genus_dict/label/Verbal_Fluency_-_Category_(Semantic)_Fluency_Total_Repetitions_in_30_seconds> .
<http://genus_dict/variable/VF_LET1_00_CORR> "has_label" <http://genus_dict/label/Verbal_Fluency_-_Letter_(Phonological)_Fluency_Letter_1_Correct_in_1st_15_seconds> .
<http://genus_dict/variable/VF_LET1_15_CORR> "has_label" <http://genus_dict/label/Verbal_Fluency_-_Letter_(Phonological)_Fluency_Letter_1_Correct_in_2nd_15_seconds> .
<http://genus_dict/variable/VF_LET1_30_CORR> "has_label" <http://genus_dict/label/Verbal_Fluency_-_Letter_(Phonological)_Fluency_Letter_1_Correct_in_3rd_15_seconds> .
<http://genus_dict/variable/VF_LET1_45_CORR> "has_label" <http://genus_dict/label/Verbal_Fluency_-_Letter_(Phonological)_Fluency_Letter_1_Correct_in_4th_15_seconds> .
<http://genus_dict/variable/VF_LET1_CORR> "has_label" <http://genus_dict/label/Verbal_Fluency_-_Letter_(Phonological)_Fluency_Letter_1_Correct_in_60_seconds> .
<http://genus_dict/variable/VF_LET1_SPEC> "has_label" <http://genus_dict/label/Verbal_Fluency_-_Letter_(Phonological)_Fluency_Letter_1_Specification> .
<http://genus_dict/variable/VF_LET2_00_CORR> "has_label" <http://genus_dict/label/Verbal_Fluency_-_Letter_(Phonological)_Fluency_Letter_2_Correct_in_1st_15_seconds> .
<http://genus_dict/variable/VF_LET2_15_CORR> "has_label" <http://genus_dict/label/Verbal_Fluency_-_Letter_(Phonological)_Fluency_Letter_2_Correct_in_2nd_15_seconds> .
<http://genus_dict/variable/VF_LET2_30_CORR> "has_label" <http://genus_dict/label/Verbal_Fluency_-_Letter_(Phonological)_Fluency_Letter_2_Correct_in_3rd_15_seconds> .
<http://genus_dict/variable/VF_LET2_45_CORR> "has_label" <http://genus_dict/label/Verbal_Fluency_-_Letter_(Phonological)_Fluency_Letter_2_Correct_in_4th_15_seconds> .
<http://genus_dict/variable/VF_LET2_CORR> "has_label" <http://genus_dict/label/Verbal_Fluency_-_Letter_(Phonological)_Fluency_Letter_2_Correct_in_60_seconds> .
<http://genus_dict/variable/VF_LET2_SPEC> "has_label" <http://genus_dict/label/Verbal_Fluency_-_Letter_(Phonological)_Fluency_Letter_2_Specification> .
<http://genus_dict/variable/VF_LET3_00_CORR> "has_label" <http://genus_dict/label/Verbal_Fluency_-_Letter_(Phonological)_Fluency_Letter_3_Correct_in_1st_15_seconds> .
<http://genus_dict/variable/VF_LET3_15_CORR> "has_label" <http://genus_dict/label/Verbal_Fluency_-_Letter_(Phonological)_Fluency_Letter_3_Correct_in_2nd_15_seconds> .
<http://genus_dict/variable/VF_LET3_30_CORR> "has_label" <http://genus_dict/label/Verbal_Fluency_-_Letter_(Phonological)_Fluency_Letter_3_Correct_in_3rd_15_seconds> .
<http://genus_dict/variable/VF_LET3_45_CORR> "has_label" <http://genus_dict/label/Verbal_Fluency_-_Letter_(Phonological)_Fluency_Letter_3_Correct_in_4th_15_seconds> .
<http://genus_dict/variable/VF_LET3_CORR> "has_label" <http://genus_dict/label/Verbal_Fluency_-_Letter_(Phonological)_Fluency_Letter_3_Correct_in_60_seconds> .
<http://genus_dict/variable/VF_LET3_SPEC> "has_label" <http://genus_dict/label/Verbal_Fluency_-_Letter_(Phonological)_Fluency_Letter_3_Specification> .
<http://genus_dict/variable/VF_LET_ALT_SEM> "has_label" <http://genus_dict/label/Verbal_Fluency_-_Letter_(Phonological)_Fluency_Alternative_Semantic> .
<http://genus_dict/variable/VF_LET_AVG> "has_label" <http://genus_dict/label/Verbal_Fluency_-_Letter_(Phonological)_Fluency_Average_Correct_in_60_seconds_across_all_3_letters> .
<http://genus_dict/variable/VF_LET_RATIO> "has_label" <http://genus_dict/label/Verbal_Fluency_-_Letter_(Phonological)_Fluency_Ratio> .
<http://genus_dict/variable/VF_LET_SEM> "has_label" <http://genus_dict/label/Verbal_Fluency_-_Letter_(Phonological)_Fluency_Semantic> .
<http://genus_dict/variable/VF_LET_TOT> "has_label" <http://genus_dict/label/Verbal_Fluency_-_Letter_(Phonological)_Fluency_Total_Correct_in_60_seconds_Sum_across_all_3_letters> .
<http://genus_dict/variable/VF_LET_TOT_30> "has_label" <http://genus_dict/label/Verbal_Fluency_-_Letter_(Phonological)_Fluency_Total_Correct_in_30_seconds_Sum_across_all_3_letters> .
<http://genus_dict/variable/VF_LET_TOT_AD1> "has_label" <http://genus_dict/label/Verbal_Fluency_-_Letter_(Phonological)_Fluency_Total_#_adjustments> .
<http://genus_dict/variable/VF_LET_TOT_ADJ> "has_label" <http://genus_dict/label/Verbal_Fluency_-_Letter_(Phonological)_Fluency_Total_Correct_in_60_seconds_Sum_across_all_3_letters_Adjusted> .
<http://genus_dict/variable/VF_LET_TOT_ERR> "has_label" <http://genus_dict/label/Verbal_Fluency_-_Letter_(Phonological)_Fluency_Total_Errors_in_60_seconds> .
<http://genus_dict/variable/VF_LET_TOT_ERR_30> "has_label" <http://genus_dict/label/Verbal_Fluency_-_Letter_(Phonological)_Fluency_Total_Errors_in_30_seconds> .
<http://genus_dict/variable/VF_LET_TOT_REP> "has_label" <http://genus_dict/label/Verbal_Fluency_-_Letter_(Phonological)_Fluency_Total_Repetitions_in_60_seconds> .
<http://genus_dict/variable/VF_LET_TOT_REP_30> "has_label" <http://genus_dict/label/Verbal_Fluency_-_Letter_(Phonological)_Fluency_Total_Repetitions_in_30_seconds> .
<http://genus_dict/variable/VF_REMARKS> "has_label" <http://genus_dict/label/Verbal_Fluency_-_Remarks> .
<http://genus_dict/variable/VISION> "has_label" <http://genus_dict/label/Vision> .
<http://genus_dict/variable/VLMT_DE_TOT> "has_label" <http://genus_dict/label/Verbal_Learning_&_Memory_Test_-_Total_Delayed_Recall> .
<http://genus_dict/variable/VLMT_IM_TOT> "has_label" <http://genus_dict/label/Verbal_Learning_&_Memory_Test_-_Total_Immediate_Recall> .
<http://genus_dict/variable/VLMT_NTRIALS> "has_label" <http://genus_dict/label/Verbal_Learning_&_Memory_Test_-_Number_of_Trials> .
<http://genus_dict/variable/VLMT_NWORDS> "has_label" <http://genus_dict/label/Verbal_Learning_&_Memory_Test_-_Number_of_Words> .
<http://genus_dict/variable/VLMT_TOT_DE> "has_label" <http://genus_dict/label/Verbal_Learning_&_Memory_Test_-_Total_Delayed_Recall> .
<http://genus_dict/variable/VLMT_TOT_IM> "has_label" <http://genus_dict/label/Verbal_Learning_&_Memory_Test_-_Total_Immediate_Recall> .
<http://genus_dict/variable/VLMT_VERS> "has_label" <http://genus_dict/label/Verbal_Learning_&_Memory_Test_-_Test_Version> .
<http://genus_dict/variable/VLT_REC_CORR_NEG> "has_label" <http://genus_dict/label/Verbal_Learning_Test_-_Recognition_Correct_Rejections> .
<http://genus_dict/variable/VLT_REC_HITS> "has_label" <http://genus_dict/label/Verbal_Learning_Test_-_Recognition_Hits> .