summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/aurl/aurl.sty
blob: 570dc4036e6304c4d5dcdbe44aa24786718e0ec6 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
% aurl.sty --- style file for abbreviated URLs 
% Provides correct hyperlinks for prefix:suffix style URLs, such as "owl:Thing" or "rdfs:label".
%
% Written in 2016 by Konrad Höffner.
% This is completely free, do whatever you want (CC0 license).
% Requires the hyperref package.
% Report issues at https://github.com/KonradHoeffner/aurl/issues.
%
% Usage:
% 1. (optional)  Define non-default prefixes using "\daurl{prefix}{prefix expansion}".
% 2. Add your AURLs with "\aurl{prefix}{suffix}".
% Example: \aurl{rdfs}{label} (see aurltest.tex)
%
% aurl.styl predefines the 100 most common Semantic Web prefixes. If you want to include the 1000 most popular prefixes instead, use `\usepackage[1000]{aurl}`.

\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{aurl}[2016/08/12]

% loads the 100 top prefixes by default, use [1000] to specify the top 1000.
\RequirePackage{hyperref}

\newcommand\daurl[2]{%
\expandafter\def\csname urlprefixabbrv@#1\endcsname{#2}}

\newcommand\aurl[2]{%
\href{\csname urlprefixabbrv@#1\endcsname#2}{\texttt{#1:#2}}}

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

\ExecuteOptions{100}
\ProcessOptions\relax

\endinput