-
Notifications
You must be signed in to change notification settings - Fork 3
/
all.ttl
2206 lines (2206 loc) · 131 KB
/
all.ttl
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 madsrdf: <http://www.loc.gov/mads/rdf/v1#>.
@prefix bflc: <http://id.loc.gov/ontologies/bflc/>.
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>.
@prefix foaf: <http://xmlns.com/foaf/0.1/>.
@prefix yago: <http://yago-knowledge.org/resource/>.
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>.
@prefix dbo: <http://dbpedia.org/ontology/>.
@prefix dbp: <http://dbpedia.org/property/>.
@prefix dc: <http://purl.org/dc/elements/1.1/>.
@prefix gr: <http://purl.org/goodrelations/v1#>.
@prefix owl: <http://www.w3.org/2002/07/owl#>.
@prefix spacerel: <http://data.ordnancesurvey.co.uk/ontology/spatialrelations/>.
@prefix skos: <http://www.w3.org/2004/02/skos/core#>.
@prefix geo: <http://www.w3.org/2003/01/geo/wgs84_pos#>.
@prefix dcat: <http://www.w3.org/ns/dcat#>.
@prefix bf: <http://id.loc.gov/ontologies/bibframe/>.
@prefix xsd: <http://www.w3.org/2001/XMLSchema#>.
@prefix sd: <http://www.w3.org/ns/sparql-service-description#>.
@prefix qb: <http://purl.org/linked-data/cube#>.
@prefix sioc: <http://rdfs.org/sioc/ns#>.
@prefix org: <http://www.w3.org/ns/org#>.
@prefix ont: <http://purl.org/net/ns/ontology-annot#>.
@prefix xtypes: <http://purl.org/xtypes/>.
@prefix dcterms: <http://purl.org/dc/terms/>.
@prefix prov: <http://www.w3.org/ns/prov#>.
@prefix onto: <http://www.ontotext.com/>.
@prefix dbpedia: <http://dbpedia.org/resource/>.
@prefix void: <http://rdfs.org/ns/void#>.
@prefix dct: <http://purl.org/dc/terms/>.
@prefix commerce: <http://search.yahoo.com/searchmonkey/commerce/>.
@prefix rss: <http://purl.org/rss/1.0/>.
@prefix gldp: <http://www.w3.org/ns/people#>.
@prefix bibo: <http://purl.org/ontology/bibo/>.
@prefix event: <http://purl.org/NET/c4dm/event.owl#>.
@prefix wd: <http://www.wikidata.org/entity/>.
@prefix geonames: <http://www.geonames.org/ontology#>.
@prefix fb: <http://rdf.freebase.com/ns/>.
@prefix dcmit: <http://purl.org/dc/dcmitype/>.
@prefix md: <http://www.w3.org/ns/md#>.
@prefix pto: <http://www.productontology.org/id/>.
@prefix sc: <http://purl.org/science/owl/sciencecommons/>.
@prefix schema: <http://schema.org/>.
@prefix vcard: <http://www.w3.org/2006/vcard/ns#>.
@prefix cc: <http://creativecommons.org/ns#>.
@prefix prog: <http://purl.org/prog/>.
@prefix rr: <http://www.w3.org/ns/r2rml#>.
@prefix doap: <http://usefulinc.com/ns/doap#>.
@prefix swrc: <http://swrc.ontoware.org/ontology#>.
@prefix ma: <http://www.w3.org/ns/ma-ont#>.
@prefix dbr: <http://dbpedia.org/resource/>.
@prefix nie: <http://www.semanticdesktop.org/ontologies/2007/01/19/nie#>.
@prefix dbpprop: <http://dbpedia.org/property/>.
@prefix vann: <http://purl.org/vocab/vann/>.
@prefix ex: <http://example.org/>.
@prefix oo: <http://purl.org/openorg/>.
@prefix http: <http://www.w3.org/2011/http#>.
@prefix content: <http://purl.org/rss/1.0/modules/content/>.
@prefix tl: <http://purl.org/NET/c4dm/timeline.owl#>.
@prefix akt: <http://www.aktors.org/ontology/portal#>.
@prefix fn: <http://www.w3.org/2005/xpath-functions#>.
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#>.
@prefix wot: <http://xmlns.com/wot/0.1/>.
@prefix dcterm: <http://purl.org/dc/terms/>.
@prefix swc: <http://data.semanticweb.org/ns/swc/ontology#>.
@prefix marcrel: <http://id.loc.gov/vocabulary/relators/>.
@prefix aiiso: <http://purl.org/vocab/aiiso/schema#>.
@prefix ical: <http://www.w3.org/2002/12/cal/ical#>.
@prefix xmp: <http://ns.adobe.com/xap/1.0/>.
@prefix gen: <http://purl.org/gen/0.1#>.
@prefix earl: <http://www.w3.org/ns/earl#>.
@prefix xhtml: <http://www.w3.org/1999/xhtml#>.
@prefix prop: <http://dbpedia.org/property/>.
@prefix mo: <http://purl.org/ontology/mo/>.
@prefix rel: <http://purl.org/vocab/relationship/>.
@prefix cv: <http://rdfs.org/resume-rdf/>.
@prefix ad: <http://schemas.talis.com/2005/address/schema#>.
@prefix bio: <http://purl.org/vocab/bio/0.1/>.
@prefix dc11: <http://purl.org/dc/elements/1.1/>.
@prefix crm: <http://www.cidoc-crm.org/cidoc-crm/>.
@prefix factbook: <http://wifo5-04.informatik.uni-mannheim.de/factbook/ns#>.
@prefix test2: <http://this.invalid/test2#>.
@prefix cyc: <http://sw.opencyc.org/concept/>.
@prefix bill: <http://www.rdfabout.com/rdf/schema/usbill/>.
@prefix daia: <http://purl.org/ontology/daia/>.
@prefix xhv: <http://www.w3.org/1999/xhtml/vocab#>.
@prefix rdfg: <http://www.w3.org/2004/03/trix/rdfg-1/>.
@prefix d2rq: <http://www.wiwiss.fu-berlin.de/suhl/bizer/D2RQ/0.1#>.
@prefix cs: <http://purl.org/vocab/changeset/schema#>.
@prefix pc: <http://purl.org/procurement/public-contracts#>.
@prefix og: <http://ogp.me/ns#>.
@prefix co: <http://rhizomik.net/ontologies/copyrightonto.owl#>.
@prefix air: <http://dig.csail.mit.edu/TAMI/2007/amord/air#>.
@prefix admin: <http://webns.net/mvcb/>.
@prefix sdmxdim: <http://purl.org/linked-data/sdmx/2009/dimension#>.
@prefix dv: <http://rdf.data-vocabulary.org/#>.
@prefix log: <http://www.w3.org/2000/10/swap/log#>.
@prefix book: <http://purl.org/NET/book/vocab#>.
@prefix media: <http://search.yahoo.com/searchmonkey/media/>.
@prefix ctag: <http://commontag.org/ns#>.
@prefix tzont: <http://www.w3.org/2006/timezone#>.
@prefix ir: <http://www.ontologydesignpatterns.org/cp/owl/informationrealization.owl#>.
@prefix afn: <http://jena.hpl.hp.com/ARQ/function#>.
@prefix oa: <http://www.w3.org/ns/oa#>.
@prefix days: <http://ontologi.es/days#>.
@prefix musim: <http://purl.org/ontology/similarity/>.
@prefix biblio: <http://purl.org/net/biblio#>.
@prefix tag: <http://www.holygoat.co.uk/owl/redwood/0.1/tags/>.
@prefix xfn: <http://gmpg.org/xfn/11#>.
@prefix con: <http://www.w3.org/2000/10/swap/pim/contact#>.
@prefix botany: <http://purl.org/NET/biol/botany#>.
@prefix osag: <http://www.ordnancesurvey.co.uk/ontology/AdministrativeGeography/v2.0/AdministrativeGeography.rdf#>.
@prefix time: <http://www.w3.org/2006/time#>.
@prefix cal: <http://www.w3.org/2002/12/cal/ical#>.
@prefix mu: <http://mu.semte.ch/vocabularies/core/>.
@prefix xs: <http://www.w3.org/2001/XMLSchema#>.
@prefix cld: <http://purl.org/cld/terms/>.
@prefix sr: <http://www.openrdf.org/config/repository/sail#>.
@prefix dcq: <http://purl.org/dc/qualifiers/1.0/>.
@prefix ome: <http://purl.org/ontomedia/core/expression#>.
@prefix reco: <http://purl.org/reco#>.
@prefix sism: <http://purl.oclc.org/NET/sism/0.1/>.
@prefix myspace: <http://purl.org/ontology/myspace#>.
@prefix photoshop: <http://ns.adobe.com/photoshop/1.0/>.
@prefix dir: <http://schemas.talis.com/2005/dir/schema#>.
@prefix xf: <http://www.w3.org/2002/xforms/>.
@prefix af: <http://purl.org/ontology/af/>.
@prefix cmp: <http://www.ontologydesignpatterns.org/cp/owl/componency.owl#>.
@prefix frbr: <http://purl.org/vocab/frbr/core#>.
@prefix ok: <http://okkam.org/terms#>.
@prefix rif: <http://www.w3.org/2007/rif#>.
@prefix lomvoc: <http://ltsc.ieee.org/rdf/lomv1p0/vocabulary#>.
@prefix sio: <http://semanticscience.org/resource/>.
@prefix memo: <http://ontologies.smile.deri.ie/2009/02/27/memo#>.
@prefix math: <http://www.w3.org/2000/10/swap/math#>.
@prefix wfs: <http://schemas.opengis.net/wfs/>.
@prefix rev: <http://purl.org/stuff/rev#>.
@prefix giving: <http://ontologi.es/giving#>.
@prefix dcn: <http://www.w3.org/2007/uwa/context/deliverycontext.owl#>.
@prefix swande: <http://purl.org/swan/1.2/discourse-elements/>.
@prefix owlim: <http://www.ontotext.com/trree/owlim#>.
@prefix swanq: <http://purl.org/swan/1.2/qualifiers/>.
@prefix cfp: <http://sw.deri.org/2005/08/conf/cfp.owl#>.
@prefix gn: <http://www.geonames.org/ontology#>.
@prefix sdmxa: <http://purl.org/linked-data/sdmx/2009/attribute#>.
@prefix obo: <http://purl.obolibrary.org/obo/>.
@prefix jdbc: <http://d2rq.org/terms/jdbc/>.
@prefix exif: <http://www.w3.org/2003/12/exif/ns#>.
@prefix as: <https://www.w3.org/ns/activitystreams#>.
@prefix xsi: <http://www.w3.org/2001/XMLSchema-instance#>.
@prefix ov: <http://open.vocab.org/terms/>.
@prefix swrl: <http://www.w3.org/2003/11/swrl#>.
@prefix sdmx: <http://purl.org/linked-data/sdmx#>.
@prefix swrcfe: <http://www.morelab.deusto.es/ontologies/swrcfe#>.
@prefix om: <http://opendata.caceres.es/def/ontomunicipio#>.
@prefix type: <http://info.deepcarbon.net/schema/type#>.
@prefix adms: <http://www.w3.org/ns/adms#>.
@prefix swrlb: <http://www.w3.org/2003/11/swrlb#>.
@prefix cnt: <http://www.w3.org/2011/content#>.
@prefix cert: <http://www.w3.org/ns/auth/cert#>.
@prefix ore: <http://www.openarchives.org/ore/terms/>.
@prefix sioct: <http://rdfs.org/sioc/types#>.
@prefix scovo: <http://purl.org/NET/scovo#>.
@prefix nfo: <http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#>.
@prefix openlinks: <http://www.openlinksw.com/schemas/virtrdf#>.
@prefix unit: <http://qudt.org/vocab/unit#>.
@prefix gtfs: <http://vocab.gtfs.org/terms#>.
@prefix siocserv: <http://rdfs.org/sioc/services#>.
@prefix lemon: <http://lemon-model.net/lemon#>.
@prefix eat: <http://www.eat.rl.ac.uk/#>.
@prefix coref: <http://www.rkbexplorer.com/ontologies/coref#>.
@prefix lyou: <http://purl.org/linkingyou/>.
@prefix voaf: <http://purl.org/vocommons/voaf#>.
@prefix drugbank: <http://www4.wiwiss.fu-berlin.de/drugbank/resource/drugbank/>.
@prefix sf: <http://www.opengis.net/ont/sf#>.
@prefix omn: <http://open-multinet.info/ontology/omn#>.
@prefix geoes: <http://geo.linkeddata.es/ontology/>.
@prefix isbd: <http://iflastandards.info/ns/isbd/elements/>.
@prefix ptr: <http://www.w3.org/2009/pointers#>.
@prefix pmlj: <http://inference-web.org/2.0/pml-justification.owl#>.
@prefix edm: <http://www.europeana.eu/schemas/edm/>.
@prefix ldp: <http://www.w3.org/ns/ldp#>.
@prefix ac: <http://umbel.org/umbel/ac/>.
@prefix fabio: <http://purl.org/spar/fabio/>.
@prefix db: <http://dbpedia.org/>.
@prefix prism: <http://prismstandard.org/namespaces/basic/2.0/>.
@prefix ontology: <http://dbpedia.org/ontology/>.
@prefix dul: <http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#>.
@prefix acc: <http://purl.org/NET/acc#>.
@prefix qudt: <http://qudt.org/1.1/schema/qudt#>.
@prefix gold: <http://purl.org/linguistics/gold/>.
@prefix aat: <http://vocab.getty.edu/aat/>.
@prefix skosxl: <http://www.w3.org/2008/05/skos-xl#>.
@prefix movie: <http://data.linkedmdb.org/resource/movie/>.
@prefix wn: <http://xmlns.com/wordnet/1.6/>.
@prefix eg: <http://eulergui.sourceforge.net/engine.owl#>.
@prefix core: <http://vivoweb.org/ontology/core#>.
@prefix rsa: <http://www.w3.org/ns/auth/rsa#>.
@prefix geosparql: <http://www.opengis.net/ont/geosparql#>.
@prefix akts: <http://www.aktors.org/ontology/support#>.
@prefix nsogi: <http://prefix.cc/nsogi:>.
@prefix lv: <http://purl.org/lobid/lv#>.
@prefix room: <http://vocab.deri.ie/rooms#>.
@prefix test: <http://test2.example.com/>.
@prefix ssn: <http://www.w3.org/ns/ssn/>.
@prefix sider: <http://www4.wiwiss.fu-berlin.de/sider/resource/sider/>.
@prefix gvp: <http://vocab.getty.edu/ontology#>.
@prefix wn20schema: <http://www.w3.org/2006/03/wn/wn20/schema/>.
@prefix po: <http://purl.org/ontology/po/>.
@prefix acm: <http://www.rkbexplorer.com/ontologies/acm#>.
@prefix music: <http://musicontology.com/>.
@prefix lgd: <http://linkedgeodata.org/triplify/>.
@prefix lexinfo: <http://www.lexinfo.net/ontology/2.0/lexinfo#>.
@prefix zoology: <http://purl.org/NET/biol/zoology#>.
@prefix umbelrc: <http://umbel.org/umbel/rc/>.
@prefix service: <http://purl.org/ontology/service#>.
@prefix tgn: <http://vocab.getty.edu/tgn/>.
@prefix loc: <http://www.w3.org/2007/uwa/context/location.owl#>.
@prefix formats: <http://www.w3.org/ns/formats/>.
@prefix uniprot: <http://purl.uniprot.org/core/>.
@prefix ulan: <http://vocab.getty.edu/ulan/>.
@prefix organism: <http://eulersharp.sourceforge.net/2003/03swap/organism#>.
@prefix dce: <http://purl.org/dc/elements/1.1/>.
@prefix georss: <http://www.georss.org/georss/>.
@prefix cito: <http://purl.org/spar/cito/>.
@prefix dcam: <http://purl.org/dc/dcam/>.
@prefix whois: <http://www.kanzaki.com/ns/whois#>.
@prefix acl: <http://www.w3.org/ns/auth/acl#>.
@prefix nif: <http://persistence.uni-leipzig.org/nlp2rdf/ontologies/nif-core#>.
@prefix space: <http://purl.org/net/schemas/space/>.
@prefix prv: <http://purl.org/net/provenance/ns#>.
@prefix rec: <http://purl.org/ontology/rec/core#>.
@prefix ignf: <http://data.ign.fr/def/ignf#>.
@prefix sp: <http://spinrdf.org/sp#>.
@prefix dbpediaowl: <http://dbpedia.org/ontology/>.
@prefix swid: <http://semanticweb.org/id/>.
@prefix irw: <http://www.ontologydesignpatterns.org/ont/web/irw.owl#>.
@prefix dbc: <http://dbpedia.org/resource/Category:>.
@prefix ti: <http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#>.
@prefix dblp: <http://dblp.uni-trier.de/rdf/schema-2015-01-26#>.
@prefix go: <http://purl.org/obo/owl/GO#>.
@prefix lode: <http://linkedevents.org/ontology/>.
@prefix pr: <http://purl.org/ontology/prv/core#>.
@prefix ndl: <http://schemas.ogf.org/nml/2013/05/base#>.
@prefix dbprop: <http://dbpedia.org/property/>.
@prefix java: <http://www.w3.org/2007/uwa/context/java.owl#>.
@prefix nco: <http://www.semanticdesktop.org/ontologies/2007/03/22/nco#>.
@prefix ecs: <http://rdf.ecs.soton.ac.uk/ontology/ecs#>.
@prefix abc: <http://www.metadata.net/harmony/ABCSchemaV5Commented.rdf#>.
@prefix granatum: <http://chem.deri.ie/granatum/>.
@prefix atom: <http://www.w3.org/2005/Atom/>.
@prefix fresnel: <http://www.w3.org/2004/09/fresnel#>.
@prefix spin: <http://spinrdf.org/spin#>.
@prefix daml: <http://www.daml.org/2001/03/daml+oil#>.
@prefix gndo: <http://d-nb.info/standards/elementset/gnd#>.
@prefix sesame: <http://www.openrdf.org/schema/sesame#>.
@prefix wo: <http://purl.org/ontology/wo/>.
@prefix resist: <http://www.rkbexplorer.com/ontologies/resist#>.
@prefix cro: <http://rhizomik.net/ontologies/copyrightonto.owl#>.
@prefix admingeo: <http://data.ordnancesurvey.co.uk/ontology/admingeo/>.
@prefix cco: <http://www.ontologyrepository.com/CommonCoreOntologies/>.
@prefix cpa: <http://www.ontologydesignpatterns.org/schemas/cpannotationschema.owl#>.
@prefix umbel: <http://umbel.org/umbel#>.
@prefix bif: <http://www.openlinksw.com/schemas/bif#>.
@prefix rnews: <http://iptc.org/std/rNews/2011-10-07#>.
@prefix imm: <http://schemas.microsoft.com/imm/>.
@prefix doc: <http://www.w3.org/2000/10/swap/pim/doc#>.
@prefix opm: <https://w3id.org/opm#>.
@prefix link: <http://www.w3.org/2006/link#>.
@prefix politico: <http://www.rdfabout.com/rdf/schema/politico/>.
@prefix ya: <http://blogs.yandex.ru/schema/foaf/>.
@prefix protege: <http://protege.stanford.edu/system#>.
@prefix pmt: <http://tipsy.googlecode.com/svn/trunk/vocab/pmt#>.
@prefix biocore: <http://bio2rdf.org/core#>.
@prefix oc: <http://opencoinage.org/rdf/>.
@prefix bibtex: <http://purl.oclc.org/NET/nknouf/ns/bibtex#>.
@prefix scot: <http://rdfs.org/scot/ns#>.
@prefix omt: <http://purl.org/ontomedia/ext/common/trait#>.
@prefix dctype: <http://purl.org/dc/dcmitype/>.
@prefix omb: <http://purl.org/ontomedia/ext/common/being#>.
@prefix kb: <http://deductions.sf.net/ontology/knowledge_base.owl#>.
@prefix user: <http://schemas.talis.com/2005/user/schema#>.
@prefix sec: <https://w3id.org/security#>.
@prefix sparql: <http://www.w3.org/ns/sparql#>.
@prefix biol: <http://purl.org/NET/biol/ns#>.
@prefix taxo: <http://purl.org/rss/1.0/modules/taxonomy/>.
@prefix oauth: <http://demiblog.org/vocab/oauth#>.
@prefix climb: <http://climb.dataincubator.org/vocabs/climb/>.
@prefix gd: <http://rdf.data-vocabulary.org/#>.
@prefix disco: <http://rdf-vocabulary.ddialliance.org/discovery#>.
@prefix myspo: <http://purl.org/ontology/myspace#>.
@prefix profiling: <http://ontologi.es/profiling#>.
@prefix wv: <http://vocab.org/waiver/terms/>.
@prefix wgs84: <http://www.w3.org/2003/01/geo/wgs84_pos#>.
@prefix httph: <http://www.w3.org/2007/ont/httph#>.
@prefix doac: <http://ramonantonio.net/doac/0.1/#>.
@prefix label: <http://purl.org/net/vocab/2004/03/label#>.
@prefix compass: <http://purl.org/net/compass#>.
@prefix mit: <http://purl.org/ontology/mo/mit#>.
@prefix lx: <http://purl.org/NET/lx#>.
@prefix ddc: <http://purl.org/NET/decimalised#>.
@prefix am: <http://vocab.deri.ie/am#>.
@prefix bio2rdf: <http://bio2rdf.org/>.
@prefix opensearch: <http://a9.com/-/spec/opensearch/1.1/>.
@prefix atomix: <http://buzzword.org.uk/rdf/atomix#>.
@prefix wdrs: <http://www.w3.org/2007/05/powder-s#>.
@prefix meteo: <http://purl.org/ns/meteo#>.
@prefix courseware: <http://courseware.rkbexplorer.com/ontologies/courseware#>.
@prefix tmo: <http://www.semanticdesktop.org/ontologies/2008/05/20/tmo#>.
@prefix lfn: <http://www.dotnetrdf.org/leviathan#>.
@prefix cdm: <http://publications.europa.eu/ontology/cdm#>.
@prefix fec: <http://www.rdfabout.com/rdf/schema/usfec/>.
@prefix powder: <http://www.w3.org/2007/05/powder#>.
@prefix sdl: <http://purl.org/vocab/riro/sdl#>.
@prefix ngeo: <http://geovocab.org/geometry#>.
@prefix usgov: <http://www.rdfabout.com/rdf/schema/usgovt/>.
@prefix food: <http://purl.org/foodontology#>.
@prefix mf: <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#>.
@prefix postcode: <http://data.ordnancesurvey.co.uk/id/postcodeunit/>.
@prefix os: <http://www.w3.org/2000/10/swap/os#>.
@prefix swivt: <http://semantic-mediawiki.org/swivt/1.0#>.
@prefix rep: <http://www.openrdf.org/config/repository#>.
@prefix es: <http://eulersharp.sourceforge.net/2003/03swap/log-rules#>.
@prefix chord: <http://purl.org/ontology/chord/>.
@prefix omc: <http://purl.org/ontomedia/ext/common/bestiary#>.
@prefix worldbank: <http://worldbank.270a.info/dataset/>.
@prefix spl: <http://spinrdf.org/spl#>.
@prefix nmo: <http://nomisma.org/ontology.rdf#>.
@prefix conv: <http://purl.org/twc/vocab/conversion/>.
@prefix wgs: <http://www.w3.org/2003/01/geo/wgs84_pos#>.
@prefix video: <http://purl.org/ontology/video#>.
@prefix biopax: <http://www.biopax.org/release/biopax-level3.owl#>.
@prefix web: <http://www.w3.org/2007/uwa/context/web.owl#>.
@prefix contact: <http://www.w3.org/2000/10/swap/pim/contact#>.
@prefix money: <http://purl.org/net/rdf-money/>.
@prefix pmlp: <http://inference-web.org/2.0/pml-provenance.owl#>.
@prefix hlisting: <http://sindice.com/hlisting/0.1/>.
@prefix sv: <http://schemas.talis.com/2005/service/schema#>.
@prefix itsrdf: <http://www.w3.org/2005/11/its/rdf#>.
@prefix kwijibo: <http://kwijibo.talis.com/>.
@prefix affy: <http://www.affymetrix.com/community/publications/affymetrix/tmsplice#>.
@prefix interval: <http://reference.data.gov.uk/def/intervals/>.
@prefix rdac: <http://rdaregistry.info/Elements/c/>.
@prefix audio: <http://purl.org/media/audio#>.
@prefix gpt: <http://purl.org/vocab/riro/gpt#>.
@prefix so: <http://purl.org/ontology/symbolic-music/>.
@prefix sit: <http://www.ontologydesignpatterns.org/cp/owl/situation.owl#>.
@prefix nao: <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#>.
@prefix hard: <http://www.w3.org/2007/uwa/context/hardware.owl#>.
@prefix iswc: <http://annotation.semanticweb.org/2004/iswc#>.
@prefix lang: <http://ontologi.es/lang/core#>.
@prefix fed: <http://www.openrdf.org/config/sail/federation#>.
@prefix awol: <http://bblfish.net/work/atom-owl/2006-06-06/#>.
@prefix wordmap: <http://purl.org/net/ns/wordmap#>.
@prefix dailymed: <http://www4.wiwiss.fu-berlin.de/dailymed/resource/dailymed/>.
@prefix lgdo: <http://linkedgeodata.org/ontology/>.
@prefix moat: <http://moat-project.org/ns#>.
@prefix site: <http://ns.ontowiki.net/SysOnt/Site/>.
@prefix tio: <http://purl.org/tio/ns#>.
@prefix bd: <http://www.bigdata.com/rdf#>.
@prefix eztag: <http://ontologies.ezweb.morfeo-project.org/eztag/ns#>.
@prefix resource: <http://purl.org/vocab/resourcelist/schema#>.
@prefix prj: <http://purl.org/stuff/project/>.
@prefix nrl: <http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#>.
@prefix hcterms: <http://purl.org/uF/hCard/terms/>.
@prefix p3p: <http://www.w3.org/2002/01/p3prdfv1#>.
@prefix gso: <http://www.w3.org/2006/gen/ont#>.
@prefix doclist: <http://www.junkwork.net/xml/DocumentList#>.
@prefix obj: <http://www.openrdf.org/rdf/2009/object#>.
@prefix xro: <http://purl.org/xro/ns#>.
@prefix swandr: <http://purl.org/swan/1.2/discourse-relationships/>.
@prefix code: <http://telegraphis.net/ontology/measurement/code#>.
@prefix scv: <http://purl.org/NET/scovo#>.
@prefix smf: <http://topbraid.org/sparqlmotionfunctions#>.
@prefix nid3: <http://www.semanticdesktop.org/ontologies/2007/05/10/nid3#>.
@prefix copyright: <http://rhizomik.net/ontologies/copyrightonto.owl#>.
@prefix lfm: <http://purl.org/ontology/last-fm/>.
@prefix nexif: <http://www.semanticdesktop.org/ontologies/2007/05/10/nexif#>.
@prefix ire: <http://www.ontologydesignpatterns.org/cpont/ire.owl#>.
@prefix product: <http://purl.org/commerce/product#>.
@prefix xl: <http://langegger.at/xlwrap/vocab#>.
@prefix xhe: <http://buzzword.org.uk/rdf/xhtml-elements#>.
@prefix sail: <http://www.openrdf.org/config/sail#>.
@prefix rei: <http://www.w3.org/2004/06/rei#>.
@prefix library: <http://purl.org/library/>.
@prefix ddl: <http://purl.org/vocab/riro/ddl#>.
@prefix tdb: <http://jena.hpl.hp.com/2008/tdb#>.
@prefix irrl: <http://www.ontologydesignpatterns.org/cp/owl/informationobjectsandrepresentationlanguages.owl#>.
@prefix spc: <http://purl.org/ontomedia/core/space#>.
@prefix icaltzd: <http://www.w3.org/2002/12/cal/icaltzd#>.
@prefix ass: <http://uptheasset.org/ontology#>.
@prefix vote: <http://www.rdfabout.com/rdf/schema/vote/>.
@prefix acco: <http://purl.org/acco/ns#>.
@prefix npg: <http://ns.nature.com/terms/>.
@prefix ocd: <http://dati.camera.it/ocd/>.
@prefix cerif: <http://spi-fm.uca.es/neologism/cerif#>.
@prefix ontolex: <http://www.w3.org/ns/lemon/ontolex#>.
@prefix dcmitype: <http://purl.org/dc/dcmitype/>.
@prefix xen: <http://buzzword.org.uk/rdf/xen#>.
@prefix sim: <http://purl.org/ontology/similarity/>.
@prefix pat: <http://purl.org/hpi/patchr#>.
@prefix swp: <http://www.w3.org/2004/03/trix/swp-2/>.
@prefix cycann: <http://sw.cyc.com/CycAnnotations_v1#>.
@prefix omp: <http://purl.org/ontomedia/ext/common/profession#>.
@prefix ref: <http://purl.org/vocab/relationship/>.
@prefix olia: <http://purl.org/olia/olia.owl#>.
@prefix swanqs: <http://purl.org/swan/1.2/qualifiers/>.
@prefix meetup: <http://www.lotico.com/meetup/>.
@prefix crypto: <http://www.w3.org/2000/10/swap/crypto#>.
@prefix gnd: <http://d-nb.info/gnd/>.
@prefix prissma: <http://ns.inria.fr/prissma/v1#>.
@prefix common: <http://www.w3.org/2007/uwa/context/common.owl#>.
@prefix lom: <http://ltsc.ieee.org/rdf/lomv1p0/lom#>.
@prefix lastfm: <http://purl.org/ontology/last-fm/>.
@prefix opo: <http://online-presence.net/opo/ns#>.
@prefix sysont: <http://ns.ontowiki.net/SysOnt/>.
@prefix swh: <http://plugin.org.uk/swh-plugins/>.
@prefix dady: <http://purl.org/NET/dady#>.
@prefix sede: <http://eventography.org/sede/0.1/>.
@prefix soft: <http://www.w3.org/2007/uwa/context/software.owl#>.
@prefix omm: <http://purl.org/ontomedia/core/media#>.
@prefix string: <http://www.w3.org/2000/10/swap/string#>.
@prefix phss: <http://ns.poundhill.com/phss/1.0/>.
@prefix rdfa: <http://www.w3.org/ns/rdfa#>.
@prefix cgov: <http://reference.data.gov.uk/def/central-government/>.
@prefix sport: <http://www.bbc.co.uk/ontologies/sport/>.
@prefix sco: <http://purl.org/ontology/sco#>.
@prefix rdrel: <http://rdvocab.info/RDARelationshipsWEMI/>.
@prefix uco: <http://purl.org/uco/ns#>.
@prefix ero: <http://purl.obolibrary.org/obo/>.
@prefix ne: <http://umbel.org/umbel/ne/>.
@prefix ping: <http://purl.org/net/pingback/>.
@prefix resex: <http://resex.rkbexplorer.com/ontologies/resex#>.
@prefix ro: <http://purl.org/wf4ever/ro#>.
@prefix like: <http://ontologi.es/like#>.
@prefix rov: <http://www.w3.org/ns/regorg#>.
@prefix net: <http://www.w3.org/2007/uwa/context/network.owl#>.
@prefix xforms: <http://www.w3.org/2002/xforms/>.
@prefix ct: <http://data.linkedct.org/resource/linkedct/>.
@prefix dummy: <http://hello.com/>.
@prefix airport: <http://www.daml.org/2001/10/html/airport-ont#>.
@prefix bib: <http://zeitkunst.org/bibtex/0.1/bibtex.owl#>.
@prefix dgtwc: <http://data-gov.tw.rpi.edu/2009/data-gov-twc.rdf#>.
@prefix dwc: <http://rs.tdwg.org/dwc/terms/>.
@prefix rdagr1: <http://rdvocab.info/Elements/>.
@prefix swanco: <http://purl.org/swan/1.2/swan-commons/>.
@prefix ao: <http://purl.org/ontology/ao/core#>.
@prefix eu: <http://eulersharp.sourceforge.net/2003/03swap/log-rules#>.
@prefix custom: <http://www.openrdf.org/config/sail/custom#>.
@prefix pav: <http://purl.org/pav/>.
@prefix ezcontext: <http://ontologies.ezweb.morfeo-project.org/ezcontext/ns#>.
@prefix smiley: <http://www.smileyontology.com/ns#>.
@prefix lingvoj: <http://www.lingvoj.org/ontology#>.
@prefix rail: <http://ontologi.es/rail/vocab#>.
@prefix states: <http://www.w3.org/2005/07/aaa#>.
@prefix mysql: <http://web-semantics.org/ns/mysql/>.
@prefix gob: <http://purl.org/ontology/last-fm/>.
@prefix lotico: <http://www.lotico.com/resource/>.
@prefix psych: <http://purl.org/vocab/psychometric-profile/>.
@prefix c4n: <http://vocab.deri.ie/c4n#>.
@prefix xhtmlvocab: <http://www.w3.org/1999/xhtml/vocab/>.
@prefix pobo: <http://purl.obolibrary.org/obo/>.
@prefix xkos: <http://rdf-vocabulary.ddialliance.org/xkos#>.
@prefix efo: <http://www.ebi.ac.uk/efo/>.
@prefix trackback: <http://madskills.com/public/xml/rss/module/trackback/>.
@prefix lime: <http://www.w3.org/ns/lemon/lime#>.
@prefix tags: <http://www.holygoat.co.uk/owl/redwood/0.1/tags/>.
@prefix qdoslf: <http://foaf.qdos.com/lastfm/schema/>.
@prefix aifb: <http://www.aifb.kit.edu/id/>.
@prefix ist: <http://purl.org/ontology/is/types/>.
@prefix b2bo: <http://purl.org/b2bo#>.
@prefix pmlr: <http://inference-web.org/2.0/pml-relation.owl#>.
@prefix isothes: <http://purl.org/iso25964/skos-thes#>.
@prefix cogs: <http://vocab.deri.ie/cogs#>.
@prefix lifecycle: <http://purl.org/vocab/lifecycle/schema#>.
@prefix anca: <http://users.utcluj.ro/~raluca/rdf_ontologies_ralu/ralu_modified_ontology_pizzas2_0#>.
@prefix freebase: <http://rdf.freebase.com/ns/>.
@prefix sm: <http://topbraid.org/sparqlmotion#>.
@prefix game: <http://data.totl.net/game/>.
@prefix lt: <http://diplomski.nelakolundzija.org/LTontology.rdf#>.
@prefix pgterms: <http://www.gutenberg.org/2009/pgterms/>.
@prefix push: <http://www.w3.org/2007/uwa/context/push.owl#>.
@prefix wdr: <http://www.w3.org/2007/05/powder#>.
@prefix grddl: <http://www.w3.org/2003/g/data-view#>.
@prefix prot: <http://www.proteinontology.info/po.owl#>.
@prefix hydra: <http://www.w3.org/ns/hydra/core#>.
@prefix evset: <http://dsnotify.org/vocab/eventset/0.1/>.
@prefix isi: <http://purl.org/ontology/is/inst/>.
@prefix list: <http://www.w3.org/2000/10/swap/list#>.
@prefix rulz: <http://purl.org/NET/rulz#>.
@prefix conversion: <http://purl.org/twc/vocab/conversion/>.
@prefix puc: <http://purl.org/NET/puc#>.
@prefix name: <http://example.org/name#>.
@prefix urn: <http://fliqz.com/>.
@prefix ps: <https://w3id.org/payswarm#>.
@prefix cordis: <http://cordis.europa.eu/projects/>.
@prefix conserv: <http://conserv.deri.ie/ontology#>.
@prefix ibis: <http://purl.org/ibis#>.
@prefix eco: <http://www.ebusiness-unibw.org/ontologies/eclass/5.1.4/#>.
@prefix meta: <http://www.openrdf.org/rdf/2009/metadata#>.
@prefix sawsdl: <http://www.w3.org/ns/sawsdl#>.
@prefix ttl: <http://www.w3.org/2008/turtle#>.
@prefix fise: <http://fise.iks-project.eu/ontology/>.
@prefix oat: <http://openlinksw.com/schemas/oat/>.
@prefix apivc: <http://purl.org/linked-data/api/vocab#>.
@prefix bookmark: <http://www.w3.org/2002/01/bookmark#>.
@prefix places: <http://purl.org/ontology/places#>.
@prefix viaf: <http://viaf.org/ontology/1.1/#>.
@prefix lark1: <http://users.utcluj.ro/~raluca/ontology/Ontology1279614123500.owl#>.
@prefix act: <http://www.w3.org/2007/rif-builtin-action#>.
@prefix gml: <http://www.opengis.net/ont/gml#>.
@prefix sml: <http://topbraid.org/sparqlmotionlib#>.
@prefix pimo: <http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#>.
@prefix ldap: <http://purl.org/net/ldap/>.
@prefix tripfs: <http://purl.org/tripfs/2010/02#>.
@prefix is: <http://purl.org/ontology/is/core#>.
@prefix frbre: <http://purl.org/vocab/frbr/extended#>.
@prefix arpfo: <http://vocab.ouls.ox.ac.uk/projectfunding#>.
@prefix h5: <http://buzzword.org.uk/rdf/h5#>.
@prefix txn: <http://lod.taxonconcept.org/ontology/txn.owl#>.
@prefix agg: <http://purl.org/twc/health/vocab/aggregate/>.
@prefix bsbm: <http://www4.wiwiss.fu-berlin.de/bizer/bsbm/v01/vocabulary/>.
@prefix inno: <http://purl.org/innovation/ns#>.
@prefix plink: <http://buzzword.org.uk/rdf/personal-link-types#>.
@prefix asn: <http://purl.org/ASN/schema/core/>.
@prefix ui: <http://www.w3.org/ns/ui#>.
@prefix lvont: <http://lexvo.org/ontology#>.
@prefix cpv: <http://purl.org/weso/cpv/>.
@prefix timeline: <http://purl.org/NET/c4dm/timeline.owl#>.
@prefix dbpp: <http://dbpedia.org/property/>.
@prefix phil: <http://philosurfical.open.ac.uk/ontology/philosurfical.owl#>.
@prefix wnschema: <http://www.cogsci.princeton.edu/~wn/schema/>.
@prefix pbo: <http://purl.org/ontology/pbo/core#>.
@prefix ncal: <http://www.semanticdesktop.org/ontologies/2007/04/02/ncal#>.
@prefix play: <http://uriplay.org/spec/ontology/#>.
@prefix kontakt: <http://richard.cyganiak.de/>.
@prefix geographis: <http://telegraphis.net/ontology/geography/geography#>.
@prefix sioca: <http://rdfs.org/sioc/actions#>.
@prefix yoda: <http://purl.org/NET/yoda#>.
@prefix human: <http://eulersharp.sourceforge.net/2003/03swap/human#>.
@prefix okkam: <http://models.okkam.org/ENS-core-vocabulary#>.
@prefix drug: <http://www.agfa.com/w3c/2009/drugTherapy#>.
@prefix osgb: <http://data.ordnancesurvey.co.uk/id/>.
@prefix ean: <http://openean.kaufkauf.net/id/>.
@prefix dita: <http://purl.org/dita/ns#>.
@prefix opus: <http://lsdis.cs.uga.edu/projects/semdis/opus#>.
@prefix dnr: <http://www.dotnetrdf.org/configuration#>.
@prefix osoc: <http://web-semantics.org/ns/opensocial#>.
@prefix ub: <http://www.lehigh.edu/~zhp2/2004/0401/univ-bench.owl#>.
@prefix muto: <http://purl.org/muto/core#>.
@prefix person: <http://www.w3.org/ns/person#>.
@prefix eprints: <http://eprints.org/ontology/>.
@prefix httpvoc: <http://www.w3.org/2006/http#>.
@prefix datafaqs: <http://purl.org/twc/vocab/datafaqs#>.
@prefix res: <http://dbpedia.org/resource/>.
@prefix wairole: <http://www.w3.org/2005/01/wai-rdf/GUIRoleTaxonomy#>.
@prefix dbnary: <http://kaiko.getalp.org/dbnary#>.
@prefix rdfsharp: <https://rdfsharp.codeplex.com/>.
@prefix mods: <http://www.loc.gov/mods/v3#>.
@prefix pmlt: <http://inference-web.org/2.0/pml-trust.owl#>.
@prefix remus: <http://www.semanticweb.org/ontologies/2010/6/Ontology1279614123500.owl#>.
@prefix posh: <http://poshrdf.org/ns/posh/>.
@prefix address: <http://schemas.talis.com/2005/address/schema#>.
@prefix lp: <http://launchpad.net/rdf/launchpad#>.
@prefix coin: <http://purl.org/court/def/2009/coin#>.
@prefix muo: <http://purl.oclc.org/NET/muo/muo#>.
@prefix wordnet: <http://wordnet-rdf.princeton.edu/ontology#>.
@prefix vso: <http://purl.org/vso/ns#>.
@prefix pml: <http://provenanceweb.org/ns/pml#>.
@prefix xesam: <http://freedesktop.org/standards/xesam/1.0/core#>.
@prefix session: <http://redfoot.net/2005/session#>.
@prefix cheminf: <http://www.semanticweb.org/ontologies/cheminf.owl#>.
@prefix agents: <http://eulersharp.sourceforge.net/2003/03swap/agent#>.
@prefix prvtypes: <http://purl.org/net/provenance/types#>.
@prefix swanpav: <http://purl.org/swan/1.2/pav/>.
@prefix enc: <http://www.w3.org/2001/04/xmlenc#>.
@prefix vsr: <http://purl.org/twc/vocab/vsr#>.
@prefix pom: <http://maven.apache.org/POM/4.0.0#>.
@prefix ceo: <http://www.ebusiness-unibw.org/ontologies/consumerelectronics/v1#>.
@prefix wisski: <http://wiss-ki.eu/>.
@prefix oslc: <http://open-services.net/ns/core#>.
@prefix ospost: <http://data.ordnancesurvey.co.uk/ontology/postcode/>.
@prefix geospecies: <http://rdf.geospecies.org/ont/geospecies#>.
@prefix imreg: <http://www.w3.org/2004/02/image-regions#>.
@prefix swanci: <http://purl.org/swan/1.2/citations/>.
@prefix hospital: <http://www.agfa.com/w3c/2009/hospital#>.
@prefix vitro: <http://vitro.mannlib.cornell.edu/ns/vitro/public#>.
@prefix purl: <http://www.purl.org/>.
@prefix rdau: <http://rdaregistry.info/Elements/u/>.
@prefix com: <http://purl.org/commerce#>.
@prefix nsa: <http://multimedialab.elis.ugent.be/organon/ontologies/ninsuna#>.
@prefix locn: <http://www.w3.org/ns/locn#>.
@prefix calli: <http://callimachusproject.org/rdf/2009/framework#>.
@prefix xml: <http://www.w3.org/XML/1998/namespace/>.
@prefix fab: <http://purl.org/fab/ns#>.
@prefix frir: <http://purl.org/twc/ontology/frir.owl#>.
@prefix zem: <http://s.zemanta.com/ns#>.
@prefix mei: <http://www.music-encoding.org/ns/mei/>.
@prefix payment: <http://reference.data.gov.uk/def/payment#>.
@prefix cidoc: <http://erlangen-crm.org/current/>.
@prefix languages: <http://eulersharp.sourceforge.net/2003/03swap/languages#>.
@prefix protons: <http://proton.semanticweb.org/2005/04/protons#>.
@prefix cube: <http://purl.org/linked-data/cube#>.
@prefix penn: <http://purl.org/olia/penn.owl#>.
@prefix arg: <http://rdfs.org/sioc/argument#>.
@prefix zbwext: <http://zbw.eu/namespaces/zbw-extensions/>.
@prefix agetec: <http://www.agetec.org/>.
@prefix uri: <http://purl.org/NET/uri#>.
@prefix arch: <http://purl.org/archival/vocab/arch#>.
@prefix search: <http://sindice.com/vocab/search#>.
@prefix edam: <http://edamontology.org/>.
@prefix care: <http://eulersharp.sourceforge.net/2003/03swap/care#>.
@prefix card: <http://www.ashutosh.com/test/>.
@prefix ann: <http://www.w3.org/2000/10/annotation-ns#>.
@prefix nt: <http://ns.inria.fr/nicetag/2010/09/09/voc#>.
@prefix isq: <http://purl.org/ontology/is/quality/>.
@prefix tarot: <http://data.totl.net/tarot/card/>.
@prefix cos: <http://www.inria.fr/acacia/corese#>.
@prefix deo: <http://purl.org/spar/deo/>.
@prefix xfnv: <http://vocab.sindice.com/xfn#>.
@prefix rdam: <http://rdaregistry.info/Elements/m/>.
@prefix swanag: <http://purl.org/swan/1.2/agents/>.
@prefix status: <http://ontologi.es/status#>.
@prefix xbrli: <http://www.xbrl.org/2003/instance#>.
@prefix linkedct: <http://data.linkedct.org/vocab/>.
@prefix opmv: <http://purl.org/net/opmv/ns#>.
@prefix pdo: <http://ontologies.smile.deri.ie/pdo#>.
@prefix rooms: <http://vocab.deri.ie/rooms#>.
@prefix pro: <http://purl.org/hpi/patchr#>.
@prefix evopat: <http://ns.aksw.org/Evolution/>.
@prefix esd: <http://def.esd.org.uk/>.
@prefix olo: <http://purl.org/ontology/olo/core#>.
@prefix gc: <http://www.oegov.org/core/owl/gc#>.
@prefix cmo: <http://purl.org/twc/ontologies/cmo.owl#>.
@prefix ludo: <http://ns.inria.fr/ludo/v1#>.
@prefix sl: <http://www.semanlink.net/2001/00/semanlink-schema#>.
@prefix exterms: <http://www.example.org/terms/>.
@prefix aair: <http://xmlns.notu.be/aair#>.
@prefix hemogram: <http://www.agfa.com/w3c/2009/hemogram#>.
@prefix coo: <http://purl.org/coo/ns#>.
@prefix prefix: <http://prefix.cc/>.
@prefix gsp: <http://www.opengis.net/ont/geosparql#>.
@prefix bte: <http://purl.org/twc/vocab/between-the-edges/>.
@prefix rdaa: <http://rdaregistry.info/Elements/a/>.
@prefix geof: <http://www.opengis.net/def/function/geosparql/>.
@prefix dt: <http://dbpedia.org/datatype/>.
@prefix gazetteer: <http://data.ordnancesurvey.co.uk/ontology/50kGazetteer/>.
@prefix webtlab: <http://webtlab.it.uc3m.es/>.
@prefix example: <http://www.example.org/rdf#>.
@prefix wikipedia: <http://wikipedia.no/rdf/>.
@prefix nndsr: <http://semanticdiet.com/schema/usda/nndsr/>.
@prefix dgfoaf: <http://west.uni-koblenz.de/ontologies/2010/07/dgfoaf.owl#>.
@prefix geodata: <http://sws.geonames.org/>.
@prefix derecho: <http://purl.org/derecho#>.
@prefix govtrackus: <http://www.rdfabout.com/rdf/usgov/geo/us/>.
@prefix c4o: <http://purl.org/spar/c4o/>.
@prefix opwn: <http://www.ontologyportal.org/WordNet.owl#>.
@prefix linkedmdb: <http://data.linkedmdb.org/sparql/>.
@prefix blt: <http://www.bl.uk/schemas/bibliographic/blterms#>.
@prefix voag: <http://voag.linkedmodel.org/schema/voag#>.
@prefix dayta: <http://dayta.me/resource#>.
@prefix bioskos: <http://eulersharp.sourceforge.net/2003/03swap/bioSKOSSchemes#>.
@prefix marl: <http://www.gsi.dit.upm.es/ontologies/marl/ns#>.
@prefix fowl: <http://www.w3.org/TR/2003/PR-owl-guide-20031209/food#>.
@prefix countries: <http://eulersharp.sourceforge.net/2003/03swap/countries#>.
@prefix ccom: <http://purl.org/ontology/cco/mappings#>.
@prefix gv: <http://rdf.data-vocabulary.org/#>.
@prefix idemo: <http://rdf.insee.fr/def/demo#>.
@prefix oboro: <http://obofoundry.org/ro/ro.owl#>.
@prefix loticoowl: <http://www.lotico.com/ontology/>.
@prefix theatre: <http://purl.org/theatre#>.
@prefix ncbitaxon: <http://purl.org/obo/owl/NCBITaxon#>.
@prefix wlp: <http://weblab-project.org/core/model/property/processing/>.
@prefix dso: <http://purl.org/ontology/dso#>.
@prefix oboso: <http://purl.org/obo/owl/SO#>.
@prefix gridworks: <http://purl.org/net/opmv/types/gridworks#>.
@prefix organiz: <http://eulersharp.sourceforge.net/2003/03swap/organization#>.
@prefix aapi: <http://rdf.alchemyapi.com/rdf/v1/s/aapi-schema#>.
@prefix atomowl: <http://bblfish.net/work/atom-owl/2006-06-06/#>.
@prefix muni: <http://vocab.linkeddata.es/urbanismo-infraestructuras/territorio#>.
@prefix xsl: <http://www.w3.org/1999/XSL/Transform#>.
@prefix life: <http://life.deri.ie/schema/>.
@prefix ppo: <http://vocab.deri.ie/ppo#>.
@prefix provenir: <http://knoesis.wright.edu/provenir/provenir.owl#>.
@prefix sindice: <http://vocab.sindice.net/>.
@prefix pext: <http://www.ontotext.com/proton/protonext#>.
@prefix agrelon: <http://d-nb.info/standards/elementset/agrelon#>.
@prefix cex: <http://purl.org/weso/computex/ontology#>.
@prefix emotion: <http://ns.inria.fr/emoca#>.
@prefix qa: <http://www.mit.jyu.fi/ai/TRUST_Ontologies/QA.owl#>.
@prefix dnb: <http://d-nb.info/gnd/>.
@prefix br: <http://vocab.deri.ie/br#>.
@prefix scsv: <http://purl.org/NET/schema-org-csv#>.
@prefix req: <http://purl.org/req/>.
@prefix ogp: <http://ogp.me/ns#>.
@prefix ens: <http://models.okkam.org/ENS-core-vocabulary.owl#>.
@prefix oboe: <http://ecoinformatics.org/oboe/oboe.1.0/oboe-core.owl#>.
@prefix spatial: <http://geovocab.org/spatial#>.
@prefix cpm: <http://catalogus-professorum.org/cpm/2/>.
@prefix toby: <http://tobyinkster.co.uk/#>.
@prefix quak: <http://dev.w3.org/cvsweb/2000/quacken/vocab#>.
@prefix elog: <http://eulersharp.sourceforge.net/2003/03swap/log-rules#>.
@prefix wai: <http://purl.org/wai#>.
@prefix odp: <http://ontologydesignpatterns.org/>.
@prefix lr: <http://linkedrecipes.org/schema/>.
@prefix wgspos: <http://www.w3.org/2003/01/geo/wgs84_pos#>.
@prefix prvr: <http://purl.org/ontology/prv/rules#>.
@prefix tcga: <http://purl.org/tcga/core#>.
@prefix kdo: <http://kdo.render-project.eu/kdo#>.
@prefix ic: <http://imi.go.jp/ns/core/rdf#>.
@prefix genab: <http://eulersharp.sourceforge.net/2003/03swap/genomeAbnormality#>.
@prefix agent: <http://eulersharp.sourceforge.net/2003/03swap/agent#>.
@prefix dive: <http://scubadive.networld.to/dive.rdf#>.
@prefix pos: <http://www.w3.org/2003/01/geo/wgs84_pos#>.
@prefix decl: <http://www.linkedmodel.org/1.0/schema/decl#>.
@prefix rlog: <http://persistence.uni-leipzig.org/nlp2rdf/ontologies/rlog#>.
@prefix city: <http://datos.localidata.com/def/City#>.
@prefix rdo: <http://purl.org/rdo/ns#>.
@prefix ufmedia: <http://purl.org/microformat/hmedia/>.
@prefix uni: <http://purl.org/weso/uni/uni.html#>.
@prefix skip: <http://skipforward.net/skipforward/resource/>.
@prefix commons: <http://commons.psi.enakting.org/def/>.
@prefix gelo: <http://krauthammerlab.med.yale.edu/ontologies/gelo#>.
@prefix owltime: <http://www.w3.org/TR/owl-time#>.
@prefix tr: <http://www.thomsonreuters.com/>.
@prefix pf: <http://jena.hpl.hp.com/ARQ/property#>.
@prefix w3p: <http://prov4j.org/w3p/>.
@prefix vivo: <http://vivoweb.org/ontology/core#>.
@prefix events: <http://eulersharp.sourceforge.net/2003/03swap/event#>.
@prefix wbp: <http://worldbank.270a.info/property/>.
@prefix owls: <http://www.daml.org/services/owl-s/1.2/Service.owl#>.
@prefix shv: <http://ns.aksw.org/spatialHierarchy/>.
@prefix dtype: <http://www.linkedmodel.org/schema/dtype#>.
@prefix mygrid: <http://www.mygrid.org.uk/ontology#>.
@prefix dcr: <http://www.isocat.org/ns/dcr.rdf#>.
@prefix pccz: <http://purl.org/procurement/public-contracts-czech#>.
@prefix enhancer: <http://stanbol.apache.org/ontology/enhancer/enhancer#>.
@prefix metalex: <http://www.metalex.eu/schema/1.0#>.
@prefix teach: <http://linkedscience.org/teach/ns#>.
@prefix pns: <http://data.press.net/ontology/stuff/>.
@prefix admssw: <http://purl.org/adms/sw/>.
@prefix bing: <http://bing.com/schema/media/>.
@prefix ms: <http://purl.org/obo/owl/MS#>.
@prefix bne: <http://datos.bne.es/resource/>.
@prefix pay: <http://reference.data.gov.uk/def/payment#>.
@prefix rad: <http://www.w3.org/ns/rad#>.
@prefix span: <http://www.ifomis.org/bfo/1.1/span#>.
@prefix humanbody: <http://eulersharp.sourceforge.net/2003/03swap/humanBody#>.
@prefix jita: <http://aims.fao.org/aos/jita/>.
@prefix arecipe: <http://purl.org/amicroformat/arecipe/>.
@prefix rda: <http://www.rdaregistry.info/>.
@prefix nocal: <http://vocab.deri.ie/nocal#>.
@prefix aneo: <http://akonadi-project.org/ontologies/aneo#>.
@prefix clineva: <http://www.agfa.com/w3c/2009/clinicalEvaluation#>.
@prefix r2r: <http://www4.wiwiss.fu-berlin.de/bizer/r2r/>.
@prefix dis: <http://stanbol.apache.org/ontology/disambiguation/disambiguation#>.
@prefix omv: <http://omv.ontoware.org/2005/05/ontology#>.
@prefix units: <http://eulersharp.sourceforge.net/2003/03swap/units#>.
@prefix igeo: <http://rdf.insee.fr/def/geo#>.
@prefix np: <http://www.nanopub.org/nschema#>.
@prefix scowt: <http://purl.org/weso/ontologies/scowt#>.
@prefix s4ac: <http://ns.inria.fr/s4ac/v2#>.
@prefix fcm: <http://eulersharp.sourceforge.net/2006/02swap/fcm#>.
@prefix govwild: <http://govwild.org/0.6/GWOntology.rdf/>.
@prefix vaem: <http://www.linkedmodel.org/schema/vaem#>.
@prefix cao: <http://purl.org/makolab/caont/>.
@prefix xds: <http://www.w3.org/2001/XMLSchema#>.
@prefix dco: <http://info.deepcarbon.net/schema#>.
@prefix oper: <http://sweet.jpl.nasa.gov/2.0/mathOperation.owl#>.
@prefix sdo: <http://schema.org/>.
@prefix chebi: <http://bio2rdf.org/chebi:>.
@prefix un: <http://www.w3.org/2007/ont/unit#>.
@prefix lex: <http://purl.org/lex#>.
@prefix lctr: <http://data.linkedct.org/vocab/resource/>.
@prefix wbc: <http://worldbank.270a.info/classification/>.
@prefix dbpo: <http://dbpedia.org/ontology/>.
@prefix semtweet: <http://semantictweet.com/>.
@prefix faldo: <http://biohackathon.org/resource/faldo#>.
@prefix fc: <http://www.freeclass.eu/freeclass_v1#>.
@prefix wp: <http://vocabularies.wikipathways.org/wp#>.
@prefix hartigprov: <http://purl.org/net/provenance/ns#>.
@prefix iao: <http://purl.obolibrary.org/obo/iao.owl#>.
@prefix fls: <http://lukasblaho.sk/football_league_schema#>.
@prefix odrl: <http://www.w3.org/ns/odrl/2/>.
@prefix wfdesc: <http://purl.org/wf4ever/wfdesc#>.
@prefix oax: <http://www.w3.org/ns/openannotation/extensions/>.
@prefix out: <http://ontologies.hypios.com/out#>.
@prefix infosys: <http://www.infosys.com/>.
@prefix cidoccrm: <http://purl.org/NET/cidoc-crm/core#>.
@prefix httpm: <http://www.w3.org/2011/http-methods#>.
@prefix osn: <http://spatial.ucd.ie/lod/osn/>.
@prefix eclap: <http://www.eclap.eu/schema/eclap/>.
@prefix healthcare: <http://www.agfa.com/w3c/2009/healthCare#>.
@prefix dsp: <http://purl.org/metainfo/terms/dsp#>.
@prefix hg: <http://www.holygoat.co.uk/owl/redwood/0.1/tags/>.
@prefix ekaw: <http://data.semanticweb.org/conference/ekaw/2012/complete/>.
@prefix fd: <http://foodable.co/ns/>.
@prefix intervals: <http://reference.data.gov.uk/def/intervals/>.
@prefix tei: <http://www.tei-c.org/ns/1.0/>.
@prefix greg: <http://kasei.us/about/foaf.xrdf#>.
@prefix tmpl: <http://purl.org/restdesc/http-template#>.
@prefix rlno: <http://rdflivenews.aksw.org/ontology/>.
@prefix pol: <http://escience.rpi.edu/ontology/semanteco/2/0/pollution.owl#>.
@prefix health: <http://purl.org/twc/health/vocab/>.
@prefix wao: <http://webtlab.it.uc3m.es/2010/10/WebAppsOntology#>.
@prefix mte: <http://nl.ijs.si/ME/owl/>.
@prefix artstor: <http://simile.mit.edu/2003/10/ontologies/artstor#>.
@prefix algo: <http://securitytoolbox.appspot.com/securityAlgorithms#>.
@prefix nytimes: <http://data.nytimes.com/elements/>.
@prefix set: <http://www.w3.org/2000/10/swap/set#>.
@prefix nxp: <http://purl.org/nxp/schema/v1/>.
@prefix gxa: <http://www.ebi.ac.uk/gxa/>.
@prefix geom: <http://data.ign.fr/def/geometrie#>.
@prefix visit: <http://purl.org/net/vocab/2004/07/visit#>.
@prefix spif: <http://spinrdf.org/spif#>.
@prefix sgv: <http://www.w3.org/TR/SVG/>.
@prefix doco: <http://purl.org/spar/doco/>.
@prefix nuts: <http://dd.eionet.europa.eu/vocabulary/common/nuts/>.
@prefix bp: <http://open-services.net/ns/basicProfile#>.
@prefix bbc: <http://www.bbc.co.uk/ontologies/news/>.
@prefix re: <http://www.w3.org/2000/10/swap/reason#>.
@prefix pkmn: <http://pokedex.dataincubator.org/pkm/>.
@prefix osmsemnet: <http://spatial.ucd.ie/2012/08/osmsemnet/>.
@prefix vocab: <http://rdf.ontology2.com/vocab#>.
@prefix wikidata: <http://www.wikidata.org/entity/>.
@prefix aigp: <http://swat.cse.lehigh.edu/resources/onto/aigp.owl#>.
@prefix recipe: <http://linkedrecipes.org/schema/>.
@prefix wm: <http://ns.inria.fr/webmarks#>.
@prefix rv: <http://wifo-ravensburg.de/semanticweb.rdf#>.
@prefix atomrdf: <http://atomowl.org/ontologies/atomrdf#>.
@prefix pne: <http://data.press.net/ontology/event/>.
@prefix ccard: <http://purl.org/commerce/creditcard#>.
@prefix aersv: <http://aers.data2semantics.org/vocab/>.
@prefix pna: <http://data.press.net/ontology/asset/>.
@prefix wfprov: <http://purl.org/wf4ever/wfprov#>.
@prefix ipad: <http://www.padinthecity.com/>.
@prefix role: <https://w3id.org/role/>.
@prefix sql: <http://ns.inria.fr/ast/sql#>.
@prefix api: <http://purl.org/linked-data/api/vocab#>.
@prefix wapp: <http://ns.rww.io/wapp#>.
@prefix soap: <http://www.w3.org/2003/05/soap-envelope/>.
@prefix aos: <http://rdf.muninn-project.org/ontologies/appearances#>.
@prefix clinproc: <http://www.agfa.com/w3c/2009/clinicalProcedure#>.
@prefix up: <http://users.ugent.be/~tdenies/up/>.
@prefix rating: <http://www.tvblob.com/ratings/#>.
@prefix mime: <https://www.iana.org/assignments/media-types/>.
@prefix fl: <http://eulersharp.sourceforge.net/2003/03swap/fl-rules#>.
@prefix transit: <http://vocab.org/transit/terms/>.
@prefix npgg: <http://ns.nature.com/graphs/>.
@prefix xch: <http://oanda2rdf.appspot.com/xch/>.
@prefix rdfdf: <http://www.openlinksw.com/virtrdf-data-formats#>.
@prefix flow: <http://www.w3.org/2005/01/wf/flow#>.
@prefix aerols: <http://xmlns.com/aerols/0.1/>.
@prefix ogorg: <http://opengraph.org/schema/>.
@prefix hgnc: <http://bio2rdf.org/hgnc:>.
@prefix crtv: <http://open-services.net/ns/crtv#>.
@prefix sem: <http://semanticweb.cs.vu.nl/2009/11/sem/>.
@prefix vcardx: <http://buzzword.org.uk/rdf/vcardx#>.
@prefix htir: <http://www.w3.org/2011/http#>.
@prefix environ: <http://eulersharp.sourceforge.net/2003/03swap/environment#>.
@prefix telix: <http://purl.org/telix#>.
@prefix aims: <http://aims.fao.org/aos/common/>.
@prefix myprefix: <http://myprefix.org/>.
@prefix fea: <http://vocab.data.gov/def/fea#>.
@prefix goef: <http://purl.org/twc/vocab/goef#>.
@prefix hxl: <http://hxl.humanitarianresponse.info/ns/#>.
@prefix oac: <http://www.openannotation.org/ns/>.
@prefix oj: <http://ontojob.at/>.
@prefix ple: <http://pleiades.stoa.org/places/>.
@prefix pronom: <http://reference.data.gov.uk/technical-registry/>.
@prefix namespaces: <https://vg.no/>.
@prefix poder: <http://poderopedia.com/vocab/>.
@prefix category: <http://dbpedia.org/resource/Category:>.
@prefix p20: <http://zbw.eu/beta/p20/vocab/>.
@prefix coeus: <http://bioinformatics.ua.pt/coeus/>.
@prefix frapo: <http://purl.org/cerif/frapo/>.
@prefix pim: <http://www.w3.org/ns/pim/space#>.
@prefix d2r: <http://sites.wiwiss.fu-berlin.de/suhl/bizer/d2r-server/config.rdf#>.
@prefix kw: <http://kwantu.net/kw/>.
@prefix zoomaterms: <http://rdf.ebi.ac.uk/vocabulary/zooma/>.
@prefix malignneo: <http://www.agfa.com/w3c/2009/malignantNeoplasm#>.
@prefix wf: <http://www.w3.org/2005/01/wf/flow#>.
@prefix wfm: <http://purl.org/net/wf-motifs#>.
@prefix fingal: <http://vocab.deri.ie/fingal#>.
@prefix eye: <http://jena.hpl.hp.com/Eyeball#>.
@prefix osr: <http://dati.senato.it/osr/>.
@prefix sig: <http://purl.org/signature#>.
@prefix ngeoi: <http://vocab.lenka.no/geo-deling#>.
@prefix diseasome: <http://www4.wiwiss.fu-berlin.de/diseasome/resource/diseasome/>.
@prefix ends: <http://labs.mondeca.com/vocab/endpointStatus#>.
@prefix kupkb: <http://www.e-lico.eu/data/kupkb/>.
@prefix sdgp: <http://stats.data-gov.ie/property/>.
@prefix xt: <http://purl.org/twc/vocab/cross-topix#>.
@prefix cdtype: <http://purl.org/cld/cdtype/>.
@prefix saxon: <http://saxon.sf.net/>.
@prefix mtecore: <http://purl.org/olia/mte/multext-east.owl#>.
@prefix l4a: <http://labels4all.info/ns/>.
@prefix iso: <http://purl.org/iso25964/skos-thes#>.
@prefix dssn: <http://purl.org/net/dssn/>.
@prefix dl: <http://ontology.ip.rm.cnr.it/ontologies/DOLCE-Lite#>.
@prefix func: <http://www.w3.org/2007/rif-builtin-function#>.
@prefix premis: <http://www.loc.gov/premis/rdf/v1#>.
@prefix okg: <http://openknowledgegraph.org/ontology/>.
@prefix protegedc: <http://protege.stanford.edu/plugins/owl/dc/protege-dc.owl#>.
@prefix iot: <http://www.linkedthings.com/iot/>.
@prefix sh: <http://www.w3.org/ns/shacl#>.
@prefix wscaim: <http://www.openk.org/wscaim.owl#>.
@prefix xmls: <http://www.w3.org/2001/XMLSchema#>.
@prefix eseduc: <http://www.purl.org/ontologia/eseduc#>.
@prefix prolog: <http://eulersharp.sourceforge.net/2003/03swap/prolog#>.
@prefix lgv: <http://linkedgeodata.org/ontology/>.
@prefix mohammad: <http://manesht.ir/>.
@prefix mpeg7: <http://rhizomik.net/ontologies/2005/03/Mpeg7-2001.owl#>.
@prefix visko: <http://trust.utep.edu/visko/ontology/visko-operator-v3.owl#>.
@prefix marshall: <http://sites.google.com/site/xgmaitc/>.
@prefix opmw: <http://www.opmw.org/ontology/>.
@prefix centrifuge: <http://purl.org/twc/vocab/centrifuge#>.
@prefix identity: <http://purl.org/twc/ontologies/identity.owl#>.
@prefix occult: <http://data.totl.net/occult/>.
@prefix article: <http://ogp.me/ns/article#>.
@prefix lod2: <http://lod2.eu/schema/>.
@prefix dbt: <http://dbpedia.org/resource/Template:>.
@prefix biordf: <http://purl.org/net/biordfmicroarray/ns#>.
@prefix reve: <http://data.eurecom.fr/ontology/reve#>.
@prefix hcard: <http://purl.org/uF/hCard/terms/>.
@prefix fct: <http://openlinksw.com/services/facets/1.0/>.
@prefix coun: <http://www.daml.org/2001/09/countries/iso-3166-ont#>.
@prefix wiki: <http://en.wikipedia.org/wiki/>.
@prefix genea: <http://www.owl-ontologies.com/generations.owl#>.
@prefix carfo: <http://purl.org/carfo#>.
@prefix osp: <http://data.lirmm.fr/ontologies/osp#>.
@prefix b2rpubchem: <http://bio2rdf.org/ns/ns/ns/pubchem#>.
@prefix moby: <http://www.mygrid.org.uk/mygrid-moby-service#>.
@prefix lh: <http://vocab.inf.ed.ac.uk/library/holdings#>.
@prefix ling: <http://purl.org/voc/ling/>.
@prefix cb: <http://cbasewrap.ontologycentral.com/vocab#>.
@prefix bcnnorms: <http://datos.bcn.cl/ontologies/bcn-norms#>.
@prefix place: <http://purl.org/ontology/places/>.
@prefix daiaserv: <http://purl.org/ontology/daia/Service/>.
@prefix geofla: <http://data.ign.fr/ontologies/geofla#>.
@prefix gfo: <http://www.onto-med.de/ontologies/gfo.owl#>.
@prefix c4dm: <http://purl.org/NET/c4dm/event.owl#>.
@prefix orca: <http://geni-orca.renci.org/owl/topology.owl#>.
@prefix overheid: <http://standaarden.overheid.nl/owms/>.
@prefix rdaw: <http://rdaregistry.info/Elements/w/>.
@prefix s2s: <http://escience.rpi.edu/ontology/sesf/s2s/4/0/>.
@prefix transmed: <http://www.w3.org/2001/sw/hcls/ns/transmed/>.
@prefix emp: <http://purl.org/ctic/empleo/oferta#>.
@prefix rpubl: <http://rinfo.lagrummet.se/ns/2008/11/rinfo/publ#>.
@prefix bsb: <http://opacplus.bsb-muenchen.de/title/>.
@prefix italy: <http://data.kasabi.com/dataset/italy/schema/>.
@prefix xlink: <http://www.w3.org/1999/xlink/>.
@prefix frbrcore: <http://purl.org/vocab/frbr/core#>.
@prefix gesis: <http://lod.gesis.org/lodpilot/ALLBUS/vocab.rdf#>.
@prefix ecb: <http://ecb.270a.info/class/1.0/>.
@prefix prism21: <http://prismstandard.org/namespaces/basic/2.1/>.
@prefix cold: <http://purl.org/configurationontology#>.
@prefix wi: <http://purl.org/ontology/wi/core#>.
@prefix open: <http://open.vocab.org/terms/>.
@prefix dbyago: <http://dbpedia.org/class/yago/>.
@prefix penis: <http://penis.to/#>.
@prefix tripfs2: <http://purl.org/tripfs/2010/06#>.
@prefix geovocab: <http://geovocab.org/>.
@prefix mm: <http://linkedmultimedia.org/sparql-mm/ns/2.0.0/function#>.
@prefix l4lod: <http://ns.inria.fr/l4lod/v2/>.
@prefix puelia: <http://kwijibo.talis.com/vocabs/puelia#>.
@prefix rec54: <http://www.w3.org/2001/02pd/rec54.rdf#>.
@prefix kbp: <http://tackbp.org/2013/ontology#>.
@prefix skiresort: <http://www.openlinksw.com/ski_resorts/schema#>.
@prefix bcncon: <http://datos.bcn.cl/ontologies/bcn-congress#>.
@prefix nyt: <http://data.nytimes.com/>.
@prefix campsite: <http://www.openlinksw.com/campsites/schema#>.
@prefix grs: <http://www.georss.org/georss/>.
@prefix quantities: <http://eulersharp.sourceforge.net/2003/03swap/quantitiesExtension#>.
@prefix npgd: <http://ns.nature.com/datasets/>.
@prefix odcs: <http://opendata.cz/infrastructure/odcleanstore/>.
@prefix soc: <http://purl.org/net/hdlipcores/ontology/soc#>.
@prefix swpo: <http://sw-portal.deri.org/ontologies/swportal#>.
@prefix rso: <http://www.researchspace.org/ontology/>.
@prefix nsl: <http://purl.org/ontology/storyline/>.
@prefix ql: <http://www.w3.org/2004/ql#>.
@prefix comm: <http://vocab.resc.info/communication#>.
@prefix laposte: <http://data.lirmm.fr/ontologies/laposte#>.
@prefix germplasm: <http://purl.org/germplasm/terms#>.
@prefix oecd: <http://oecd.270a.info/dataset/>.
@prefix camelot: <http://vocab.ox.ac.uk/camelot#>.
@prefix iron: <http://purl.org/ontology/iron#>.
@prefix ec: <http://eulergui.sourceforge.net/contacts.owl.n3#>.
@prefix rich: <http://rdf.data-vocabulary.org/>.
@prefix osukdt: <http://www.ordnancesurvey.co.uk/ontology/Datatypes.owl#>.
@prefix prf: <http://www.openmobilealliance.org/tech/profiles/UAPROF/ccppschema-20021212#>.
@prefix dctypes: <http://purl.org/dc/dcmitype/>.
@prefix sad: <http://vocab.deri.ie/sad#>.
@prefix itsmo: <http://ontology.it/itsmo/v1#>.
@prefix wsc: <http://www.openk.org/wscaim.owl#>.
@prefix sioctypes: <http://rdfs.org/sioc/types#>.
@prefix harrisons: <http://harrisons.cc/>.
@prefix wkd: <http://schema.wolterskluwer.de/>.
@prefix tvc: <http://www.essepuntato.it/2012/04/tvc/>.
@prefix dcm: <http://dcm.com/>.
@prefix ebu: <http://semantic.eurobau.com/eurobau-utility.owl#>.