-
Notifications
You must be signed in to change notification settings - Fork 4
/
wbphenotype-equivalent-axioms-subq.owl
3555 lines (2470 loc) · 357 KB
/
wbphenotype-equivalent-axioms-subq.owl
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(:=<http://purl.obolibrary.org/obo/wbphenotype/wbphenotype-equivalent-axioms-subq.owl/>)
Prefix(owl:=<http://www.w3.org/2002/07/owl#>)
Prefix(rdf:=<http://www.w3.org/1999/02/22-rdf-syntax-ns#>)
Prefix(xml:=<http://www.w3.org/XML/1998/namespace>)
Prefix(xsd:=<http://www.w3.org/2001/XMLSchema#>)
Prefix(rdfs:=<http://www.w3.org/2000/01/rdf-schema#>)
Ontology(<http://purl.obolibrary.org/obo/wbphenotype/wbphenotype-equivalent-axioms-subq.owl>
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_15347>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_15355>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_15422>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_15837>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_15854>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_15858>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_16133>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_16236>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_16382>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_16526>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_16583>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_16865>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_17134>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_17489>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_17688>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_17996>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_18099>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_18243>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_18723>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_22698>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_22951>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_22977>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_23447>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_23888>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_23994>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_25094>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_25107>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_25255>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_25435>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_2555>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_25579>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_25805>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_25944>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_26216>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_26708>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_26710>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_27682>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_27732>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_27882>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_28694>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_28790>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_30052>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_30145>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_30185>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_30953>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_31206>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_32954>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_33216>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_33252>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_33290>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_33521>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_34905>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_35366>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_35623>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_35702>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_37415>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_37868>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_37887>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_38324>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_38366>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_38462>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_38808>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_38867>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_4290>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_46345>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_472805>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_47499>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_4781>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_4792>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_51137>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_5118>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_5615>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_6015>))
Declaration(Class(<http://purl.obolibrary.org/obo/CHEBI_6835>))
Declaration(Class(<http://purl.obolibrary.org/obo/CL_0000000>))
Declaration(Class(<http://purl.obolibrary.org/obo/CL_0000007>))
Declaration(Class(<http://purl.obolibrary.org/obo/CL_0000023>))
Declaration(Class(<http://purl.obolibrary.org/obo/CL_0000025>))
Declaration(Class(<http://purl.obolibrary.org/obo/CL_0000066>))
Declaration(Class(<http://purl.obolibrary.org/obo/CL_0000300>))
Declaration(Class(<http://purl.obolibrary.org/obo/CL_0000365>))
Declaration(Class(<http://purl.obolibrary.org/obo/CL_0000411>))
Declaration(Class(<http://purl.obolibrary.org/obo/CL_0000586>))
Declaration(Class(<http://purl.obolibrary.org/obo/CL_0000618>))
Declaration(Class(<http://purl.obolibrary.org/obo/CL_0002371>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0000184>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0000226>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0000278>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0000374>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0000723>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0000768>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0000819>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0000910>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0000932>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0001764>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0001939>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0001940>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0001966>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0002164>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0003824>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0003990>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0005102>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0005623>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0005634>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0005643>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0005694>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0005712>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0005737>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0005739>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0005777>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0005783>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0005818>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0005819>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0005863>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0005911>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0005912>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0005923>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0005930>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0006310>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0006351>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0006401>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0006468>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0006611>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0006897>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0006898>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0006913>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0006915>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0006970>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0006979>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0006983>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0006996>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0007010>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0007019>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0007020>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0007040>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0007049>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0007059>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0007091>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0007129>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0007140>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0007155>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0007163>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0007165>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0007267>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0007271>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0007283>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0007285>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0007286>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0007289>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0007296>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0007320>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0007413>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0007568>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0007617>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0007618>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0007622>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0007626>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0007631>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0007635>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0008021>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0008152>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0008219>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0008283>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0008306>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0008354>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0008356>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0008406>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0008584>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0008610>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0008630>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0009058>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0009299>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0009411>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0009566>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0009790>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0009791>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0010212>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0010260>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0010332>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0010467>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0012501>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0014076>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0016043>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0016050>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0016070>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0016192>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0016246>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0016477>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0016482>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0016757>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0018985>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0018991>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0019538>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0019722>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0022611>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0022618>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0030036>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0030037>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0030054>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0030154>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0030163>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0030261>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0030421>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0030424>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0030588>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0030968>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0031012>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0031129>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0031143>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0031430>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0031468>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0031577>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0031982>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0032154>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0032502>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0032956>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0032982>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0033059>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0033313>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0033316>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0033363>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0033554>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0034609>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0035046>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0035047>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0035176>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0035177>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0035188>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0040004>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0040007>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0040011>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0040022>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0040024>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0040025>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0040034>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0040038>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0042023>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0042073>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0042221>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0042331>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0042335>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0042416>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0042420>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0042427>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0042429>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0042493>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0042713>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0042810>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0043050>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0043053>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0043054>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0043057>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0043226>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0043227>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0043473>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0044237>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0045120>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0045161>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0046903>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0048284>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0048477>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0048488>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0048490>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0048511>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0048512>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0048540>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0048786>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0048846>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0048880>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0050821>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0050848>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0050896>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0050918>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0050919>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0051081>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0051168>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0051170>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0051225>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0051231>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0051259>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0051301>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0051318>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0051321>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0051402>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0051452>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0051647>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0051726>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0051932>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0051964>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0060107>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0060109>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0060179>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0060322>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0060465>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0065003>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0065004>))
Declaration(Class(<http://purl.obolibrary.org/obo/GO_0098609>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000001>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000008>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000025>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000033>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000044>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000050>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000051>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000052>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000060>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000070>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000077>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000080>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000082>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000117>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000133>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000140>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000141>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000161>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000188>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000274>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000276>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000279>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000297>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000300>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000303>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000304>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000327>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000328>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000330>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000375>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000381>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000384>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000402>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000404>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000411>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000460>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000467>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000470>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000488>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000498>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000502>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000513>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000516>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000569>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000573>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000574>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000584>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000585>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000586>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000587>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000592>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000616>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000617>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000625>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000628>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000639>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000642>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000648>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000688>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000689>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000694>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000718>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000760>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000763>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000770>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000911>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000912>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000937>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000956>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0000964>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0001005>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0001162>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0001163>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0001178>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0001192>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0001227>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0001242>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0001340>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0001362>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0001422>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0001444>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0001453>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0001457>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0001472>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0001477>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0001492>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0001495>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0001511>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0001551>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0001552>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0001555>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0001558>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0001570>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0001597>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0001598>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0001599>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0001603>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0001604>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0001624>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0001632>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0001633>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0001652>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0001677>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0001754>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0001767>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0001769>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0001780>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0001798>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0001810>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0001818>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0001834>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0001836>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0001851>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0001852>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0001873>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0001912>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0001926>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0001928>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0001930>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0001997>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0002000>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0002001>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0002002>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0002017>))
Declaration(Class(<http://purl.obolibrary.org/obo/PATO_0002112>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000005>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000006>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000008>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000009>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000010>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000011>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000013>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000015>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000016>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000017>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000018>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000019>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000020>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000022>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000023>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000024>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000025>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000031>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000034>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000035>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000036>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000039>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000040>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000042>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000043>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000044>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000049>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000050>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000054>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000055>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000056>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000057>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000058>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000059>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000060>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000061>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000062>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000068>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000070>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000071>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000073>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000075>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000079>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000081>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000082>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000083>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000084>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000085>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000086>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000089>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000090>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000091>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000093>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000095>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000097>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000099>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000100>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000104>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000111>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000113>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000114>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000116>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000117>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000118>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000124>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000125>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000126>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000127>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000134>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000135>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000136>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000137>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000138>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000142>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000145>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000155>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000159>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000161>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000162>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000163>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000164>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000165>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000168>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000170>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000172>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000173>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000177>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000178>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000179>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000181>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000182>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000183>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000184>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000185>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000187>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000189>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000190>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000192>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000197>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000202>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000214>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000215>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000224>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000225>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000226>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000229>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000230>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000234>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000235>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000236>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000237>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000238>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000239>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000244>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000247>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000251>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000252>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000253>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000254>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000256>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000263>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000264>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000272>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000274>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000277>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000278>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000279>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000280>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000284>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000285>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000286>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000289>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000290>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000291>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000292>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000293>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000294>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000296>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000297>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000298>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000299>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000300>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000302>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000303>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000304>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000308>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000310>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000312>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000315>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000318>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000319>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000323>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000324>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000331>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000336>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000338>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000340>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000341>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000344>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000345>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000350>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000351>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000352>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000353>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000355>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000356>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000360>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000363>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000370>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000371>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000373>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000378>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000379>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000381>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000383>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000385>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000386>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000387>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000388>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000390>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000392>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000393>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000395>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000401>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000404>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000405>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000408>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000409>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000411>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000412>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000416>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000417>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000418>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000419>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000427>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000428>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000438>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000439>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000440>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000441>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000442>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000443>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000445>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000447>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000448>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000451>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000454>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000456>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000459>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000460>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000461>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000462>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000463>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000464>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000473>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000475>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000476>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000479>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000480>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000484>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000486>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000487>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000490>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000491>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000492>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000493>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000495>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000498>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000499>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000500>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000503>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000505>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000507>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000508>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000509>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000511>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000516>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000518>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000519>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000520>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000523>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000526>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000532>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000534>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000535>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000536>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000546>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000548>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000549>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000552>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000553>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000558>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000559>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000560>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000574>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000575>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000576>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000581>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000591>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000592>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000593>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000598>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000599>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000600>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000601>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000603>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000604>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000605>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000606>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000607>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000608>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000609>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000610>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000611>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000612>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000613>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000615>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000627>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000628>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000630>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000632>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000636>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000642>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000643>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000644>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000646>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000648>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000649>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000651>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000655>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000656>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000660>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000661>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000667>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000671>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000673>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000674>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000675>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000676>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000680>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000681>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000682>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000684>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000688>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000690>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000692>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000694>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000695>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000696>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000697>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000698>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000700>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000703>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000704>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000706>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000707>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000709>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000710>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000715>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000716>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000717>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000726>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000727>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000731>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000733>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000734>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000735>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000737>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000738>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000743>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000748>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000751>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000752>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000753>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000754>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000756>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000757>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000758>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000759>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000760>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000762>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000763>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000764>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000765>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000766>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000767>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000768>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000769>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000770>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000772>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000775>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000776>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000777>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000778>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000783>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000784>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000785>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000786>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000789>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000790>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000803>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000806>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000807>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000808>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000825>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000826>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000827>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000828>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000829>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000830>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000831>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000832>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000833>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000834>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000835>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000839>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000840>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000841>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000842>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000846>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000848>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000849>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000851>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000854>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000863>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000865>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000867>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000868>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000879>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000881>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000884>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000891>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000898>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000899>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000900>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000901>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000902>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000903>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000904>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000905>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000907>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000908>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000909>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000910>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000911>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000913>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000914>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000915>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000916>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000917>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000918>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000923>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000924>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000926>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000927>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000928>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000929>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000931>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000932>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000933>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000934>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000935>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000936>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000937>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000948>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000949>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000964>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000965>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000966>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000969>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000972>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000973>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000974>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000975>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000976>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000977>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000978>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000981>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000983>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000985>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000986>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000987>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000989>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000990>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0000991>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001003>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001004>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001006>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001017>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001018>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001019>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001020>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001024>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001025>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001026>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001027>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001031>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001034>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001036>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001040>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001041>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001042>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001043>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001046>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001053>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001054>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001055>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001056>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001057>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001058>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001059>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001068>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001073>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001074>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001075>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001077>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001078>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001081>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001084>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001085>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001087>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001088>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001089>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001093>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001098>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001100>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001101>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001102>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001103>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001104>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001105>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001106>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001107>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001110>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001111>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001113>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001114>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001115>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001117>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001118>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001119>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001129>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001130>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001135>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001136>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001137>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001138>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001139>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001142>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001143>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001151>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001152>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001153>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001154>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001156>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001159>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001162>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001164>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001165>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001166>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001167>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001168>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001169>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001170>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001171>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001173>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001176>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001178>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001182>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001183>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001184>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001190>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001191>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001192>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001194>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001195>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001196>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001197>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001198>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001202>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001203>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001206>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001207>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001208>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001210>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001211>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001212>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001213>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001216>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001224>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001225>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001228>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001229>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001230>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001231>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001232>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001234>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001235>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001237>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001238>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001242>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001243>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001244>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001247>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001258>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001260>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001262>))
Declaration(Class(<http://purl.obolibrary.org/obo/WBPhenotype_0001264>))