This repository has been archived by the owner on Jul 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathrelationSample.txt
8400 lines (8400 loc) · 747 KB
/
relationSample.txt
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
- http://xmlns.com/foaf/0.1/name
http://dbpedia.org/resource/Dwe'e_people "Badwe'e"@en
http://dbpedia.org/resource/Olympiacos_F.C.__Pajtim_Kasami__1 "Pajtim Kasami"@en
http://dbpedia.org/resource/HMCS_Grou "Grou"@en
http://dbpedia.org/resource/Lyncina_kuroharai "Lyncina kuroharai"@en
http://dbpedia.org/resource/Corinth,_Kansas "Corinth, Kansas"@en
http://dbpedia.org/resource/Stornoway_(clipper) "Stornoway"@en
http://dbpedia.org/resource/Madureira_Esporte_Clube__Yago__1 "Yago"@en
http://dbpedia.org/resource/Devil's_Pond "Devil's Pond"@en
http://dbpedia.org/resource/The_Darkest_of_the_Hillside_Thickets "The Darkest of the Hillside Thickets"@en
http://dbpedia.org/resource/Haruna_Iddrisu "Haruna Iddrisu"@en
http://dbpedia.org/resource/Dolichi "Dolichi"@en
http://dbpedia.org/resource/A.S.D._Casoli_Calcio "Associazione Sportiva Dilettantistica Casoli Calcio"@en
http://dbpedia.org/resource/Des_Baird "Des Baird"@en
http://dbpedia.org/resource/Lee_McCulloch "Lee Henry McCulloch"@en
http://dbpedia.org/resource/Harzand_Station "ايستگاه هرزند"@en
http://dbpedia.org/resource/Murad_V "مراد خامس"@en
http://dbpedia.org/resource/Ouled_Naïl "Ouled Naïl"@en
http://dbpedia.org/resource/Bar_Aftab-e_Deraz "Bar Aftab-e Deraz"@en
http://dbpedia.org/resource/Mylothris_hilara "Hilara dotted border"@en
http://dbpedia.org/resource/FK_Bodø/Glimt__Simon_Thomas__1 "Simon Thomas"@en
http://dbpedia.org/ontology/mascot (org / string)
http://dbpedia.org/resource/Madison_Christian_School "Eagle"
http://dbpedia.org/resource/York_High_School_(Virginia) "Falcon"
http://dbpedia.org/resource/Halstead_High_School "Dragon"
http://dbpedia.org/resource/Saint_Agnes_Academy_(Texas) "Tigers"
http://dbpedia.org/resource/Douglas_College "Roary Douglas"
http://dbpedia.org/resource/Clarion_Area_School_District "Bobcats"
http://dbpedia.org/resource/Tomlinson_Middle_School "Thunderbird"
http://dbpedia.org/resource/Centennial_High_School_(Bakersfield,_California) "Golden Hawks"
http://dbpedia.org/resource/SIES_Nerul "Miss Mannat Bakshi"
http://dbpedia.org/resource/Wildwood_Middle_High_School "Wildcats"
http://dbpedia.org/resource/Wheaton_College_(Illinois) "Thunder"
http://dbpedia.org/resource/Sun_Prairie_High_School "Kurt the Kardinal"
http://dbpedia.org/resource/Sint-Leocollege_(Brugge) "Lion"
http://dbpedia.org/resource/Valley_Stream_Central_High_School "Eagle"
http://dbpedia.org/resource/Southmoore_High_School "SaberCats"
http://dbpedia.org/resource/St._Joan_of_Arc_Catholic_Secondary_School "Angel"
http://dbpedia.org/resource/Indiana_University "Referred to as \"The Hoosiers\"."
http://dbpedia.org/resource/Thomas_Jefferson_High_School_(Denver) "Spartans"
http://dbpedia.org/resource/Nurnberg_American_High_School "Eagle"
http://dbpedia.org/resource/Moravian_Academy "Lion"
http://dbpedia.org/ontology/regionServed (org / loc)
http://dbpedia.org/resource/AT&T_GoPhone http://dbpedia.org/resource/U.S._Virgin_Islands
http://dbpedia.org/resource/ONE.VIP http://dbpedia.org/resource/Republic_of_Macedonia
http://dbpedia.org/resource/China_Motor_Corporation http://dbpedia.org/resource/Europe
http://dbpedia.org/resource/British_Florist_Association http://dbpedia.org/resource/United_Kingdom
http://dbpedia.org/resource/Cross_River_Bank http://dbpedia.org/resource/United_States
http://dbpedia.org/resource/RCTV_International http://dbpedia.org/resource/Africa
http://dbpedia.org/resource/Uniden http://dbpedia.org/resource/New_Zealand
http://dbpedia.org/resource/JSTV http://dbpedia.org/resource/Middle_East
http://dbpedia.org/resource/Eesti_Raadioamatööride_Ühing http://dbpedia.org/resource/Estonia
http://dbpedia.org/resource/Castro_(clothing) http://dbpedia.org/resource/Germany
http://dbpedia.org/resource/New_England_Association_of_Schools_and_Colleges http://dbpedia.org/resource/Connecticut
http://dbpedia.org/resource/Exxodus_Pictures http://dbpedia.org/resource/United_States
http://dbpedia.org/resource/Spiegel_(catalog) http://dbpedia.org/resource/International
http://dbpedia.org/resource/Swedish_Republican_Association http://dbpedia.org/resource/Sweden
http://dbpedia.org/resource/Circle_K http://dbpedia.org/resource/Mexico
http://dbpedia.org/resource/Pancake_Parlour http://dbpedia.org/resource/Victoria,_Australia
http://dbpedia.org/resource/Ocean_Butterflies_International http://dbpedia.org/resource/United_States
http://dbpedia.org/resource/Texas_Geographical_Union http://dbpedia.org/resource/United_States_of_America
http://dbpedia.org/resource/Council_for_Scientific_and_Industrial_Research http://dbpedia.org/resource/South_Africa
http://dbpedia.org/resource/T-Mobile_US http://dbpedia.org/resource/Puerto_Rico
http://dbpedia.org/ontology/arrondissement (loc / loc)
http://dbpedia.org/resource/Douzains http://dbpedia.org/resource/Arrondissement_of_Villeneuve-sur-Lot
http://dbpedia.org/resource/Bergicourt http://dbpedia.org/resource/Amiens
http://dbpedia.org/resource/Sainte-Colombe,_Doubs http://dbpedia.org/resource/Pontarlier
http://dbpedia.org/resource/Jametz http://dbpedia.org/resource/Arrondissement_of_Verdun
http://dbpedia.org/resource/Margerie-Chantagret http://dbpedia.org/resource/Arrondissement_of_Montbrison
http://dbpedia.org/resource/Le_Rouret http://dbpedia.org/resource/Grasse
http://dbpedia.org/resource/Loison http://dbpedia.org/resource/Arrondissement_of_Verdun
http://dbpedia.org/resource/Val-de-Chaise http://dbpedia.org/resource/Arrondissement_of_Annecy
http://dbpedia.org/resource/Fréchou-Fréchet http://dbpedia.org/resource/Arrondissement_of_Tarbes
http://dbpedia.org/resource/Pierrefort http://dbpedia.org/resource/Saint-Flour,_Cantal
http://dbpedia.org/resource/Tours-sur-Marne http://dbpedia.org/resource/Arrondissement_of_Épernay
http://dbpedia.org/resource/Cirey-sur-Vezouze http://dbpedia.org/resource/Arrondissement_of_Lunéville
http://dbpedia.org/resource/Noth,_Creuse http://dbpedia.org/resource/Guéret
http://dbpedia.org/resource/Grattepanche http://dbpedia.org/resource/Amiens
http://dbpedia.org/resource/Taillepied http://dbpedia.org/resource/Arrondissement_of_Cherbourg-Octeville
http://dbpedia.org/resource/Pornichet http://dbpedia.org/resource/Saint-Nazaire
http://dbpedia.org/resource/Coinces http://dbpedia.org/resource/Arrondissement_of_Orléans
http://dbpedia.org/resource/Peuplingues http://dbpedia.org/resource/Arrondissement_of_Calais
http://dbpedia.org/resource/Dardilly http://dbpedia.org/resource/Lyon
http://dbpedia.org/resource/Ham-sur-Heure-Nalinnes http://dbpedia.org/resource/Arrondissement_of_Thuin
http://dbpedia.org/ontology/teamName (org / string)
http://dbpedia.org/resource/John_Glenn_High_School_(California) "Eagles"@en
http://dbpedia.org/resource/Neshaminy_High_School "Redskins"@en
http://dbpedia.org/resource/St._Ignatius_College_Prep "Wolfpack"@en
http://dbpedia.org/resource/Plainfield_High_School_(Plainfield,_Indiana) "Quakers"@en
http://dbpedia.org/resource/Grove_City_Area_School_District "Eagles"@en
http://dbpedia.org/resource/Shirley_High_School_(Arkansas) "Shirley Blue Devils"@en
http://dbpedia.org/resource/Pace_High_School_(Florida) "The Patriots"@en
http://dbpedia.org/resource/South_Carleton_High_School "Storm"@en
http://dbpedia.org/resource/St._Anthony_High_School_(Illinois) "Bulldogs"@en
http://dbpedia.org/resource/Essex_Agricultural_and_Technical_High_School "Hawks"@en
http://dbpedia.org/resource/Bletchley_RUFC "Bletchley RUFC"@en
http://dbpedia.org/resource/St._Joseph_Hill_Academy "Hilltoppers"@en
http://dbpedia.org/resource/Papua_New_Guinea_national_rugby_sevens_team "The Pukpuks"@en
http://dbpedia.org/resource/Belsize_Park_FC "Belsize Park"@en
http://dbpedia.org/resource/Wexford_Collegiate_School_for_the_Arts "Wexford Vikings"@en
http://dbpedia.org/resource/Edinburgh_Northern_RFC "Northern"@en
http://dbpedia.org/resource/Ghazali_Public_School_Amana_Abad "Ghazalian Hawks"@en
http://dbpedia.org/resource/Waverly-Shell_Rock_Community_School_District "Go-Hawks"@en
http://dbpedia.org/resource/Salem_High_School_(Indiana) "Lions"@en
http://dbpedia.org/resource/Wahconah_Regional_High_School "Warriors"@en
http://dbpedia.org/ontology/isPartOf (loc / loc)
http://dbpedia.org/resource/Mehrabad,_Kharameh http://dbpedia.org/resource/Korbal_Rural_District
http://dbpedia.org/resource/Porąbki,_Kielce_County http://dbpedia.org/resource/Świętokrzyskie_Voivodeship
http://dbpedia.org/resource/Guruvayur http://dbpedia.org/resource/Kerala
http://dbpedia.org/resource/Karniszewo http://dbpedia.org/resource/Gniezno_County
http://dbpedia.org/resource/Nanchong http://dbpedia.org/resource/Sichuan
http://dbpedia.org/resource/Khovis http://dbpedia.org/resource/Shush_County
http://dbpedia.org/resource/Nové_Bránice http://dbpedia.org/resource/Brno-Country_District
http://dbpedia.org/resource/Kamarzavan http://dbpedia.org/resource/Central_District_(Bandar_Lengeh_County)
http://dbpedia.org/resource/Bozorg_Shivand http://dbpedia.org/resource/Izeh_County
http://dbpedia.org/resource/Metropolitan_Borough_of_Sefton http://dbpedia.org/resource/Lancashire
http://dbpedia.org/resource/Ângulo,_Paraná http://dbpedia.org/resource/Paraná_(state)
http://dbpedia.org/resource/Nazar_Ali_Kandi http://dbpedia.org/resource/Central_District_(Namin_County)
http://dbpedia.org/resource/Nafoun http://dbpedia.org/resource/Korhogo_Department
http://dbpedia.org/resource/Youjia http://dbpedia.org/resource/Hunan
http://dbpedia.org/resource/Gargiu http://dbpedia.org/resource/Sarfaryab_District
http://dbpedia.org/resource/Godé http://dbpedia.org/resource/Boulkiemdé_Province
http://dbpedia.org/resource/Karimabad,_Nir http://dbpedia.org/resource/Taft_County
http://dbpedia.org/resource/Skomelno http://dbpedia.org/resource/Plzeň_Region
http://dbpedia.org/resource/Orzeł,_Masovian_Voivodeship http://dbpedia.org/resource/Ostrołęka_County
http://dbpedia.org/resource/Adlur http://dbpedia.org/resource/Karnataka
http://dbpedia.org/ontology/frequencyOfPublication (org / string)
http://dbpedia.org/resource/Memoirs_of_Museum_Victoria "Annually"
http://dbpedia.org/resource/Business_and_Professional_Ethics_Journal "Quarterly"
http://dbpedia.org/resource/Rheumatology_(journal) "Monthly"
http://dbpedia.org/resource/Discrete_Mathematics_&_Theoretical_Computer_Science "Quarterly"
http://dbpedia.org/resource/Formal_Aspects_of_Computing "Quarterly"
http://dbpedia.org/resource/Natural_Product_Reports "Monthly"
http://dbpedia.org/resource/Public_Health_(journal) "Bimonthly"
http://dbpedia.org/resource/Biomaterials_(journal) "Quarterly"
http://dbpedia.org/resource/Cytoskeleton_(journal) "Monthly"
http://dbpedia.org/resource/Psychological_Science_in_the_Public_Interest "Triannually"
http://dbpedia.org/resource/International_Journal_of_Environmental_Research "Quarterly"
http://dbpedia.org/resource/Molecular_and_Cellular_Endocrinology "34/year"
http://dbpedia.org/resource/Academy_of_Management_Learning_and_Education "Quarterly"
http://dbpedia.org/resource/International_conference_on_Physics_of_Light–Matter_Coupling_in_Nanostructures "Annual"
http://dbpedia.org/resource/McGill_International_Journal_of_Sustainable_Development_Law_and_Policy "Biannually"
http://dbpedia.org/resource/European_Journal_of_Cancer_Care "Bimonthly"
http://dbpedia.org/resource/Bilingualism:_Language_and_Cognition "Quarterly"
http://dbpedia.org/resource/Expert_Opinion_on_Drug_Safety "Monthly"
http://dbpedia.org/resource/Infant_Mental_Health_Journal "Quarterly"
http://dbpedia.org/resource/Journal_of_Internal_Medicine "Monthly"
http://dbpedia.org/ontology/inseeCode (loc / string)
http://dbpedia.org/resource/Wittisheim "67547"
http://dbpedia.org/resource/Villejésus "16411"
http://dbpedia.org/resource/Grimesnil "50221"
http://dbpedia.org/resource/Savonnières-en-Perthois "55477"
http://dbpedia.org/resource/Orrouy "60481"
http://dbpedia.org/resource/Tonnac "81300"
http://dbpedia.org/resource/Nizy-le-Comte "02553"
http://dbpedia.org/resource/Tinqueux "51573"
http://dbpedia.org/resource/Saint-Michel-de-la-Roë "53242"
http://dbpedia.org/resource/Saint-Bonnet-Tronçais "03221"
http://dbpedia.org/resource/Saint-Agnan,_Yonne "89332"
http://dbpedia.org/resource/Laqueuille "63189"
http://dbpedia.org/resource/Sainte-Aurence-Cazaux "32363"
http://dbpedia.org/resource/Sains-Morainvillers "60564"
http://dbpedia.org/resource/Vassel "63445"
http://dbpedia.org/resource/Triguères "45329"
http://dbpedia.org/resource/Montaut,_Dordogne "24287"
http://dbpedia.org/resource/L'Aiguillon "09003"
http://dbpedia.org/resource/Pont-Évêque "38318"
http://dbpedia.org/resource/Surmont "25554"
http://dbpedia.org/ontology/characterInPlay (work / string)
http://dbpedia.org/resource/Cleansed "Robin"
http://dbpedia.org/resource/The_Investigation_(play) "Dr. Frank"
http://dbpedia.org/resource/The_Pride_(play) "3 male, 1 female (all doubling)"
http://dbpedia.org/resource/Breaker_Morant_(play) "Mr. Robinson"
http://dbpedia.org/resource/The_Acharnians "*Wife to Dikaiopolis"
http://dbpedia.org/resource/Visiting_Mr._Green "Mr. Green"
http://dbpedia.org/resource/You_Can't_Take_It_with_You_(play) "Alice Sycamore"
http://dbpedia.org/resource/J.B._(play) "Mrs. Botticelli"
http://dbpedia.org/resource/The_Quare_Fellow "Dunlavin"
http://dbpedia.org/resource/Bacchides_(play) "Bacchis I (a prostitute)"
http://dbpedia.org/resource/Doctor_Faustus_(play) "Frederick"
http://dbpedia.org/resource/Boy_Gets_Girl "Howard Siegel"
http://dbpedia.org/resource/A_Stretch_of_the_Imagination "Monk O'Neil"
http://dbpedia.org/resource/Alcestis_(play) "Maidservant"
http://dbpedia.org/resource/L'Illusion_Comique "Dorante"
http://dbpedia.org/resource/Uncommon_Women_and_Others_(play) "Susie Friend"
http://dbpedia.org/resource/The_Suppliants_(Euripides) "Herald ofCreonMessenger"
http://dbpedia.org/resource/Sabrina_Fair "Maude Larrabee"
http://dbpedia.org/resource/The_Wasps "*Xanthias another household slave"
http://dbpedia.org/resource/La_Foire_de_Guibray "Scaramouche"
http://dbpedia.org/ontology/nonFictionSubject (work / concept)
http://dbpedia.org/resource/Modern_C++_Design http://dbpedia.org/resource/C++
http://dbpedia.org/resource/Baramulla_Bomber http://dbpedia.org/resource/Techno-thriller
http://dbpedia.org/resource/The_Divide:_American_Injustice_in_the_Age_of_the_Wealth_Gap http://dbpedia.org/resource/Justice
http://dbpedia.org/resource/Psyche_(book) http://dbpedia.org/resource/Unconscious_mind
http://dbpedia.org/resource/Ten_Little_Aliens http://dbpedia.org/resource/Polly_(Doctor_Who)
http://dbpedia.org/resource/The_Origins_of_Totalitarianism http://dbpedia.org/resource/Nazism
http://dbpedia.org/resource/The_Rebel_(book) http://dbpedia.org/resource/Rebellion
http://dbpedia.org/resource/Nele_(novel) http://dbpedia.org/resource/Philosophy
http://dbpedia.org/resource/Rise_Again_(songbook) http://dbpedia.org/resource/Folk_music
http://dbpedia.org/resource/Ugly_Rumours_(novel) http://dbpedia.org/resource/Vietnam_War
http://dbpedia.org/resource/On_the_Edge:_Political_Cults_Right_and_Left http://dbpedia.org/resource/Politics
http://dbpedia.org/resource/Augustinus_(Jansenist_book) http://dbpedia.org/resource/Augustine_of_Hippo
http://dbpedia.org/resource/The_Corinthian_Project http://dbpedia.org/resource/Martha_Jones
http://dbpedia.org/resource/Philosophie_Zoologique http://dbpedia.org/resource/Zoology
http://dbpedia.org/resource/The_Hindus:_An_Alternative_History http://dbpedia.org/resource/Hinduism
http://dbpedia.org/resource/Arcane_Power http://dbpedia.org/resource/Role-playing_game
http://dbpedia.org/resource/A_Year_at_the_Movies:_One_Man's_Filmgoing_Odyssey http://dbpedia.org/resource/Motion_pictures
http://dbpedia.org/resource/The_Green_Book_(Muammar_Gaddafi) http://dbpedia.org/resource/Political_theory
http://dbpedia.org/resource/A_Darwinian_Left http://dbpedia.org/resource/Human_nature
http://dbpedia.org/resource/Lexikon_der_indogermanischen_Partikeln_und_Pronominalstämme http://dbpedia.org/resource/Proto-Indo-European_pronouns
http://dbpedia.org/ontology/province (loc / loc)
http://dbpedia.org/resource/Monopoli http://dbpedia.org/resource/Province_of_Bari
http://dbpedia.org/resource/Ripe_San_Ginesio http://dbpedia.org/resource/Province_of_Macerata
http://dbpedia.org/resource/Roman_Catholic_Diocese_of_Dunkeld http://dbpedia.org/resource/Archdiocese_of_St_Andrews_and_Edinburgh
http://dbpedia.org/resource/Livo,_Trentino http://dbpedia.org/resource/Trentino
http://dbpedia.org/resource/Molise,_Campobasso http://dbpedia.org/resource/Province_of_Campobasso
http://dbpedia.org/resource/Howard_Lake_(British_Columbia) http://dbpedia.org/resource/British_Columbia
http://dbpedia.org/resource/Este,_Veneto http://dbpedia.org/resource/Province_of_Padua
http://dbpedia.org/resource/Bolotana http://dbpedia.org/resource/Province_of_Nuoro
http://dbpedia.org/resource/Kluskus_Lakes http://dbpedia.org/resource/British_Columbia
http://dbpedia.org/resource/Codroy http://dbpedia.org/resource/Newfoundland_and_Labrador
http://dbpedia.org/resource/Mezzolombardo http://dbpedia.org/resource/Trentino
http://dbpedia.org/resource/Eastern_Cove http://dbpedia.org/resource/Newfoundland_and_Labrador
http://dbpedia.org/resource/Gavirate http://dbpedia.org/resource/Province_of_Varese
http://dbpedia.org/resource/Besozzo http://dbpedia.org/resource/Province_of_Varese
http://dbpedia.org/resource/Pumenengo http://dbpedia.org/resource/Province_of_Bergamo
http://dbpedia.org/resource/Gosaldo http://dbpedia.org/resource/Province_of_Belluno
http://dbpedia.org/resource/Villastellone http://dbpedia.org/resource/Metropolitan_City_of_Turin
http://dbpedia.org/resource/Roman_Catholic_Diocese_of_Shantou http://dbpedia.org/resource/Roman_Catholic_Archdiocese_of_Guangzhou
http://dbpedia.org/resource/Frinco http://dbpedia.org/resource/Province_of_Asti
http://dbpedia.org/resource/San_Lorenzo_al_Mare http://dbpedia.org/resource/Province_of_Imperia
http://dbpedia.org/ontology/mouthMountain (loc / loc)
http://dbpedia.org/resource/Umzimkulu_River http://dbpedia.org/resource/Port_Shepstone
http://dbpedia.org/resource/Fitzmaurice_River http://dbpedia.org/resource/Joseph_Bonaparte_Gulf
http://dbpedia.org/resource/Long_Run_(Nescopeck_Creek) http://dbpedia.org/resource/Nescopeck_Creek
http://dbpedia.org/resource/Guariba_River http://dbpedia.org/resource/Novo_Aripuanã
http://dbpedia.org/resource/Duncan_River http://dbpedia.org/resource/Kootenay_Lake
http://dbpedia.org/resource/Limay_River http://dbpedia.org/resource/Río_Negro_(Argentina)
http://dbpedia.org/resource/Isis_River_(New_South_Wales) http://dbpedia.org/resource/Scone,_New_South_Wales
http://dbpedia.org/resource/Kema_River http://dbpedia.org/resource/Lake_Beloye_(Vologda_Oblast)
http://dbpedia.org/resource/Huron_River_(northern_Michigan) http://dbpedia.org/resource/Skanee,_Michigan
http://dbpedia.org/resource/Brogo_River http://dbpedia.org/resource/Bega,_New_South_Wales
http://dbpedia.org/resource/Valea_Fratelui_River http://dbpedia.org/resource/Lazaret,_Sibiu
http://dbpedia.org/resource/Indravati_River http://dbpedia.org/resource/Sironcha
http://dbpedia.org/resource/Golgol_River http://dbpedia.org/resource/Puyehue_Lake
http://dbpedia.org/resource/River_Hart http://dbpedia.org/resource/Fleet,_Hampshire
http://dbpedia.org/resource/Ronga_River http://dbpedia.org/resource/Rai_River
http://dbpedia.org/resource/South_Thompson_River http://dbpedia.org/resource/Kamloops
http://dbpedia.org/resource/Seveso_(river) http://dbpedia.org/resource/Naviglio_Martesana
http://dbpedia.org/resource/Pârâul_Carpenului_(Bega) http://dbpedia.org/resource/Margina,_Timiş
http://dbpedia.org/resource/Te_Wharau_River http://dbpedia.org/resource/Inangahua_River
http://dbpedia.org/resource/Aherlow_River http://dbpedia.org/resource/Celtic_Sea
http://dbpedia.org/ontology/trainer
http://dbpedia.org/resource/Sun_Beau http://dbpedia.org/resource/Jack_Whyte_(horseman)
http://dbpedia.org/resource/Barry_Orton http://dbpedia.org/resource/Bob_Orton
http://dbpedia.org/resource/Takahiro_Suwa http://dbpedia.org/resource/Animal_Hamaguchi
http://dbpedia.org/resource/Darara http://dbpedia.org/resource/Alain_de_Royer-Dupre
http://dbpedia.org/resource/Kenny_Casanova http://dbpedia.org/resource/Tom_Brandi
http://dbpedia.org/resource/Hiro_Matsuda http://dbpedia.org/resource/Rikidōzan
http://dbpedia.org/resource/Diamond_Dallas_Page http://dbpedia.org/resource/Jake_Roberts
http://dbpedia.org/resource/Africander_(horse) http://dbpedia.org/resource/Frank_S._Weir
http://dbpedia.org/resource/Busybody_(horse) http://dbpedia.org/resource/Mathew_Dawson
http://dbpedia.org/resource/Jamestown_(horse) http://dbpedia.org/resource/Winbert_F._Mulholland
http://dbpedia.org/resource/Aziz_Jahjah http://dbpedia.org/resource/Cor_Hemmers
http://dbpedia.org/resource/Jamal_Ben_Saddik http://dbpedia.org/resource/Cor_Hemmers
http://dbpedia.org/resource/Jaazeiro http://dbpedia.org/resource/Vincent_O'Brien
http://dbpedia.org/resource/Bo_Dallas http://dbpedia.org/resource/Florida_Championship_Wrestling
http://dbpedia.org/resource/Blue_Demon http://dbpedia.org/resource/Rolando_Vera_(wrestler)
http://dbpedia.org/resource/Trueno_(wrestler) http://dbpedia.org/resource/Franco_Colombo
http://dbpedia.org/resource/Martha's_Son http://dbpedia.org/resource/Tim_Forster
http://dbpedia.org/resource/Ack_Ack_(horse) http://dbpedia.org/resource/Woody_Stephens
http://dbpedia.org/resource/Cathryn_Sophia http://dbpedia.org/resource/John_Servis
http://dbpedia.org/resource/Scott_Norton http://dbpedia.org/resource/Masa_Saito
http://dbpedia.org/ontology/network
http://dbpedia.org/resource/Triumph_In_the_Skies http://dbpedia.org/resource/TVB_Jade
http://dbpedia.org/resource/Hvaler_(TV_series) http://dbpedia.org/resource/TV_2_(Norway)
http://dbpedia.org/resource/Family_(1976_TV_series) http://dbpedia.org/resource/American_Broadcasting_Company
http://dbpedia.org/resource/Muhteşem_Yüzyıl http://dbpedia.org/resource/Show_TV
http://dbpedia.org/resource/Attack_on_Titan__tv_series__1 http://dbpedia.org/resource/Tokyo_Metropolitan_Television
http://dbpedia.org/resource/It's_Me_or_the_Dog http://dbpedia.org/resource/Channel_4
http://dbpedia.org/resource/List_of_The_Tonight_Show_Starring_Johnny_Carson_episodes_(1974) http://dbpedia.org/resource/NBC
http://dbpedia.org/resource/Queer_as_Folk_(U.S._TV_series) http://dbpedia.org/resource/Showcase_(Canadian_TV_channel)
http://dbpedia.org/resource/Gossip_Girl_(season_3) http://dbpedia.org/resource/The_CW
http://dbpedia.org/resource/Free_Ride_(TV_series) http://dbpedia.org/resource/Fox_Broadcasting_Company
http://dbpedia.org/resource/Zero_to_Hero http://dbpedia.org/resource/MediaCorp_TV_Channel_8
http://dbpedia.org/resource/Germany's_Next_Topmodel_(cycle_10) http://dbpedia.org/resource/ProSieben
http://dbpedia.org/resource/The_Jon_Stewart_Show http://dbpedia.org/resource/Broadcast_syndication
http://dbpedia.org/resource/Ragtime_(TV_series) http://dbpedia.org/resource/BBC
http://dbpedia.org/resource/Quizon_Avenue http://dbpedia.org/resource/ABS-CBN
http://dbpedia.org/resource/Angel_Heart_(2015_TV_series) http://dbpedia.org/resource/Nippon_Television
http://dbpedia.org/resource/Mall_Masters http://dbpedia.org/resource/Game_Show_Network
http://dbpedia.org/resource/Dude,_That's_My_Ghost! http://dbpedia.org/resource/Disney_XD_(UK_&_Ireland)
http://dbpedia.org/resource/Breaking_the_Magician's_Code:_Magic's_Biggest_Secrets_Finally_Revealed http://dbpedia.org/resource/AXN
http://dbpedia.org/resource/Dai-Shogun_-_Great_Revolution http://dbpedia.org/resource/Kyoto_Broadcasting_System
http://dbpedia.org/ontology/part
http://dbpedia.org/resource/Tainan http://dbpedia.org/resource/West_Central_District
http://dbpedia.org/resource/Oriente_(comarca) http://dbpedia.org/resource/Ponga_(Spain)
http://dbpedia.org/resource/Calhoun_Isles,_Minneapolis http://dbpedia.org/resource/East_Isles,_Minneapolis
http://dbpedia.org/resource/Nowy_Dwór_Mazowiecki_County http://dbpedia.org/resource/Nowy_Dwór_Mazowiecki
http://dbpedia.org/resource/Denis-Perron_Dam http://dbpedia.org/resource/Denis-Perron_Dam__2
http://dbpedia.org/resource/New_Taipei_City http://dbpedia.org/resource/Tamsui_District
http://dbpedia.org/resource/Norris_Dam http://dbpedia.org/resource/Norris_Dam__2
http://dbpedia.org/resource/Far_North_Region_(Cameroon) http://dbpedia.org/resource/Diamaré
http://dbpedia.org/resource/Artemisa_Province http://dbpedia.org/resource/Caimito,_Cuba
http://dbpedia.org/resource/Renfrew_County http://dbpedia.org/resource/Laurentian_Hills
http://dbpedia.org/resource/Garwolin_County http://dbpedia.org/resource/Gmina_Żelechów
http://dbpedia.org/resource/Maków_County http://dbpedia.org/resource/Gmina_Rzewnie
http://dbpedia.org/resource/Dorud_County http://dbpedia.org/resource/Central_District_(Dorud_County)
http://dbpedia.org/resource/Tangir_Hydropower_Project http://dbpedia.org/resource/Tangir_Hydropower_Project__1
http://dbpedia.org/resource/Segrià http://dbpedia.org/resource/Sudanell
http://dbpedia.org/resource/Wrocław_County http://dbpedia.org/resource/Gmina_Mietków
http://dbpedia.org/resource/Osona http://dbpedia.org/resource/Lluçà
http://dbpedia.org/resource/Sokółka_County http://dbpedia.org/resource/Gmina_Szudziałowo
http://dbpedia.org/resource/Veazie_Dam http://dbpedia.org/resource/Veazie_Dam__2
http://dbpedia.org/resource/Portneuf_Regional_County_Municipality http://dbpedia.org/resource/Rivière-à-Pierre,_Quebec
http://dbpedia.org/ontology/formerBandMember
http://dbpedia.org/resource/News_from_Babel http://dbpedia.org/resource/Zeena_Parkins
http://dbpedia.org/resource/Ornatos_Violeta http://dbpedia.org/resource/Elísio_Donas
http://dbpedia.org/resource/Manzarek–Krieger http://dbpedia.org/resource/Ty_Dennis
http://dbpedia.org/resource/Difuntos_Correa http://dbpedia.org/resource/Erasmo_Menares
http://dbpedia.org/resource/High_Level_Ranters http://dbpedia.org/resource/Louis_Killen
http://dbpedia.org/resource/The_Jazz_Messengers http://dbpedia.org/resource/Carter_Jefferson
http://dbpedia.org/resource/Nazia_and_Zoheb http://dbpedia.org/resource/Nazia_Hassan
http://dbpedia.org/resource/Do-Re-Mi_(band) http://dbpedia.org/resource/Dorland_Bray
http://dbpedia.org/resource/The_Lightning_Seeds http://dbpedia.org/resource/Zak_Starkey
http://dbpedia.org/resource/Quasi http://dbpedia.org/resource/Joanna_Bolme
http://dbpedia.org/resource/List_of_the_Kinks_band_members http://dbpedia.org/resource/John_Dalton_(musician)
http://dbpedia.org/resource/Simple_Minds http://dbpedia.org/resource/Duncan_Barnwell
http://dbpedia.org/resource/Lemuria_(Belgian_band) http://dbpedia.org/resource/Pascal_Nosenzo
http://dbpedia.org/resource/The_Rockets_(band) http://dbpedia.org/resource/Dan_Keylon
http://dbpedia.org/resource/The_Beautiful_South http://dbpedia.org/resource/Jacqui_Abbott
http://dbpedia.org/resource/Solas_(group) http://dbpedia.org/resource/Karan_Casey
http://dbpedia.org/resource/Krash_Karma http://dbpedia.org/resource/Zach_Mayberry
http://dbpedia.org/resource/Haus_of_Gaga http://dbpedia.org/resource/Space_Cowboy_(musician)
http://dbpedia.org/resource/The_Power_Station_(band) http://dbpedia.org/resource/Tony_Thompson_(drummer)
http://dbpedia.org/resource/List_of_Genesis_band_members http://dbpedia.org/resource/Anthony_Phillips
- http://dbpedia.org/ontology/militaryUnitSize
http://dbpedia.org/resource/246th_Mixed_Brigade "Fourbattalions (projected):"
http://dbpedia.org/resource/4th_Cavalry_Brigade_(United_States) "Brigade"
http://dbpedia.org/resource/3rd_Arkansas_Light_Artillery "Battery"
http://dbpedia.org/resource/Westover_Composite_Squadron "94"
http://dbpedia.org/resource/Attack_Squadron_1L "Squadron"
http://dbpedia.org/resource/56th_(King's_Own)_Anti-Tank_Regiment,_Royal_Artillery "Regiment"
http://dbpedia.org/resource/111th_Infantry_Brigade_(Pakistan) "6,000 active duty soldiers"
http://dbpedia.org/resource/Royal_Australian_Air_Force_Nursing_Service "616 (December 1945)"
http://dbpedia.org/resource/Lubny_Regiment "13 sotnias (1658)"
http://dbpedia.org/resource/Herefordshire_Light_Infantry "Regiment"
http://dbpedia.org/resource/Coastal_batteries_of_Estonia "656 peacetime strength"
http://dbpedia.org/resource/515th_Air_Mobility_Operations_Wing "1800 personnel"
http://dbpedia.org/resource/J_Force "4,000"
http://dbpedia.org/resource/Maritime_Squadron_of_the_Armed_Forces_of_Malta "10 vessels"
http://dbpedia.org/resource/Royal_Navy_of_Oman "4,200 personnel"
http://dbpedia.org/resource/47th_Indian_Infantry_Brigade "Brigade"
http://dbpedia.org/resource/Cohors_I_Delmatarum_milliaria_equitata "1,040 men (800 infantry, 240 cavalry)"
http://dbpedia.org/resource/Lee's_Legion "180 infantry, 100 cavalry"
http://dbpedia.org/resource/1st_Arkansas_Light_Artillery "Battery"
http://dbpedia.org/resource/Hertfordshire_Yeomanry "One Regiment"
http://dbpedia.org/ontology/manufacturer
http://dbpedia.org/resource/MAN_NG272 http://dbpedia.org/resource/MAN_Truck_&_Bus
http://dbpedia.org/resource/Honda_Jade http://dbpedia.org/resource/Dongfeng_Honda
http://dbpedia.org/resource/2008_Rolex_Sports_Car_Series__Team_Sahlen__2 http://dbpedia.org/resource/Chevrolet_Corvette_C6
http://dbpedia.org/resource/Lexus_CT http://dbpedia.org/resource/Lexus
http://dbpedia.org/resource/2012_F1600_Championship_Series__7 http://dbpedia.org/resource/Ford_Kent
http://dbpedia.org/resource/Perodua_Viva http://dbpedia.org/resource/Perodua
http://dbpedia.org/resource/Toyota_Voltz http://dbpedia.org/resource/NUMMI
http://dbpedia.org/resource/2010_Australian_Sports_Sedan_season__FM_Pumps__1 http://dbpedia.org/resource/Mazda_Wankel_engine
http://dbpedia.org/resource/Grumman_American_AA-5 http://dbpedia.org/resource/American_Aviation
http://dbpedia.org/resource/2002_Formula_Nippon_Championship__PIAA_Nakajima_Racing__1 http://dbpedia.org/resource/Mugen_Motorsports
http://dbpedia.org/resource/Alstom_Metropolis_&_Shanghai_Electric_C830C http://dbpedia.org/resource/Shanghai_Electric
http://dbpedia.org/resource/Lotus_95T__2 http://dbpedia.org/resource/V6_engine
http://dbpedia.org/resource/2006_British_Formula_Three_Championship__Fortec_Motorsport__1 http://dbpedia.org/resource/Mercedes-Benz
http://dbpedia.org/resource/Piel_Emeraude http://dbpedia.org/resource/Scintex
http://dbpedia.org/resource/Lloyd_600 http://dbpedia.org/resource/Borgward
http://dbpedia.org/resource/ATR_72 http://dbpedia.org/resource/ATR_(aircraft_manufacturer)
http://dbpedia.org/resource/Pippa_Mann__2014__1 http://dbpedia.org/resource/Honda
http://dbpedia.org/resource/Standard_Corridor http://dbpedia.org/resource/Gloucester_Railway_Carriage_and_Wagon_Company
http://dbpedia.org/resource/Plymouth_Belvedere http://dbpedia.org/resource/Chrysler_Corporation
http://dbpedia.org/resource/2008_Australian_Superkart_Championship__Sodi-Maxjet_Racing__1 http://dbpedia.org/resource/Rotax
http://dbpedia.org/ontology/series
http://dbpedia.org/resource/Two_Graves http://dbpedia.org/resource/Agent_Aloysius_Pendergast
http://dbpedia.org/resource/Diary_of_a_Wimpy_Kid:_Double_Down http://dbpedia.org/resource/Diary_of_a_Wimpy_Kid_(series)
http://dbpedia.org/resource/Swing_Brother_Swing http://dbpedia.org/resource/Roderick_Alleyn
http://dbpedia.org/resource/Pandora_Moon http://dbpedia.org/resource/Skins_(TV_series)
http://dbpedia.org/resource/The_Real_Story http://dbpedia.org/resource/The_Gap_Cycle
http://dbpedia.org/resource/G.G._(Gossip_Girl) http://dbpedia.org/resource/Gossip_Girl_(TV_series)
http://dbpedia.org/resource/The_Hare-Brained_Hypnotist http://dbpedia.org/resource/Elmer_Fudd
http://dbpedia.org/resource/The_Last_Battle http://dbpedia.org/resource/The_Chronicles_of_Narnia
http://dbpedia.org/resource/The_Burning_Beekeeper http://dbpedia.org/resource/How_I_Met_Your_Mother
http://dbpedia.org/resource/The_Seeds_of_Doom__Doctor_Who_and_the_Seeds_of_Doom__1 http://dbpedia.org/resource/List_of_Doctor_Who_novelisations
http://dbpedia.org/resource/Killzone:_Mercenary http://dbpedia.org/resource/Killzone_(series)
http://dbpedia.org/resource/Women's_Appreciation http://dbpedia.org/resource/The_Office_(U.S._TV_series)
http://dbpedia.org/resource/Dead_Space_3 http://dbpedia.org/resource/Dead_Space_(series)
http://dbpedia.org/resource/The_Last_of_the_Jedi:_Underworld http://dbpedia.org/resource/Star_Wars_canon
http://dbpedia.org/resource/Bela_Talbot http://dbpedia.org/resource/Supernatural_(U.S._TV_series)
http://dbpedia.org/resource/Ape_Academy_2 http://dbpedia.org/resource/Ape_Escape
http://dbpedia.org/resource/Face_Off_(Breaking_Bad) http://dbpedia.org/resource/Breaking_Bad
http://dbpedia.org/resource/The_Third_God http://dbpedia.org/resource/The_Stone_Dance_of_the_Chameleon
http://dbpedia.org/resource/Time_and_Mr._Bass http://peyre.x10.mx/OldGoodStuff/mushroom.htm
http://dbpedia.org/resource/More_Work_for_the_Undertaker http://dbpedia.org/resource/Albert_Campion
http://dbpedia.org/ontology/parentCompany
http://dbpedia.org/resource/DB_Breweries http://dbpedia.org/resource/Heineken_Asia_Pacific
http://dbpedia.org/resource/Armor_Holdings http://dbpedia.org/resource/BAE_Systems_Land_and_Armaments
http://dbpedia.org/resource/Limitless_Airways http://dbpedia.org/resource/Scandjet
http://dbpedia.org/resource/Nicaragüense_de_Aviación http://dbpedia.org/resource/Grupo_TACA
http://dbpedia.org/resource/Souq.com http://dbpedia.org/resource/Maktoob
http://dbpedia.org/resource/Hilco http://dbpedia.org/resource/Hilco_Global
http://dbpedia.org/resource/Force10 http://dbpedia.org/resource/Dell_(subsidiary)
http://dbpedia.org/resource/Southern_Tide http://dbpedia.org/resource/Oxford_Industries
http://dbpedia.org/resource/Audi_Senna http://dbpedia.org/resource/Audi
http://dbpedia.org/resource/Big_Huge_Games http://dbpedia.org/resource/Nexon
http://dbpedia.org/resource/First_Myanmar_Investment http://dbpedia.org/resource/Serge_Pun_&_Associates
http://dbpedia.org/resource/ATS_Euromaster http://dbpedia.org/resource/Michelin
http://dbpedia.org/resource/Lorimar_Television http://dbpedia.org/resource/Time_Warner
http://dbpedia.org/resource/XS4ALL http://dbpedia.org/resource/KPN
http://dbpedia.org/resource/Adam_and_Company http://dbpedia.org/resource/Royal_Bank_of_Scotland
http://dbpedia.org/resource/Tungaloy_Corporation http://dbpedia.org/resource/International_Metalworking_Companies
http://dbpedia.org/resource/Vielife http://dbpedia.org/resource/CIGNA
http://dbpedia.org/resource/Bell_Fibe_TV http://dbpedia.org/resource/BCE_Inc.
http://dbpedia.org/resource/Wharton_School_Publishing http://dbpedia.org/resource/Pearson_Education
http://dbpedia.org/resource/Cox_Media_Group http://dbpedia.org/resource/Cox_Enterprises
http://dbpedia.org/ontology/owningOrganisation
http://dbpedia.org/resource/Khewra_Chemical_Works_railway_station http://dbpedia.org/resource/Ministry_of_Railways_(Pakistan)
http://dbpedia.org/resource/Wells_Street_Terminal http://dbpedia.org/resource/Chicago_Transit_Authority
http://dbpedia.org/resource/Bussy-Saint-Georges_(Paris_RER) http://dbpedia.org/resource/Régie_Autonome_des_Transports_Parisiens
http://dbpedia.org/resource/Noarlunga_railway_station http://dbpedia.org/resource/South_Australian_Railways
http://dbpedia.org/resource/Ridley_Park_station http://dbpedia.org/resource/SEPTA
http://dbpedia.org/resource/Naigaon_railway_station http://dbpedia.org/resource/Indian_Railways
http://dbpedia.org/resource/Songdowon_Station http://dbpedia.org/resource/Korean_State_Railway
http://dbpedia.org/resource/Ladner_Exchange http://dbpedia.org/resource/TransLink_(British_Columbia)
http://dbpedia.org/resource/Odenplan_metro_station http://dbpedia.org/resource/Storstockholms_Lokaltrafik
http://dbpedia.org/resource/Borgone_railway_station http://dbpedia.org/resource/Rete_Ferroviaria_Italiana
http://dbpedia.org/resource/Hebron_(DCTA_station) http://dbpedia.org/resource/Denton_County_Transportation_Authority
http://dbpedia.org/resource/Moghalpura_Junction_railway_station http://dbpedia.org/resource/Ministry_of_Railways_(Pakistan)
http://dbpedia.org/resource/Carpetana_(Madrid_Metro) http://dbpedia.org/resource/Consorcio_Regional_de_Transportes_de_Madrid
http://dbpedia.org/resource/Ludhiana_Junction_railway_station http://dbpedia.org/resource/Indian_Railways
http://dbpedia.org/resource/Gare_de_Bayonne http://dbpedia.org/resource/SNCF
http://dbpedia.org/resource/Villejuif_–_Léo_Lagrange_(Paris_Métro) http://dbpedia.org/resource/RATP_Group
http://dbpedia.org/resource/Judah_and_31st_Avenue http://dbpedia.org/resource/San_Francisco_Municipal_Railway
http://dbpedia.org/resource/Móstoles_Central_(Madrid_Metro) http://dbpedia.org/resource/Consorcio_Regional_de_Transportes_de_Madrid
http://dbpedia.org/resource/Chanda_Fort_railway_station http://dbpedia.org/resource/Indian_Railways
http://dbpedia.org/resource/Camellia_railway_station http://dbpedia.org/resource/RailCorp
- http://dbpedia.org/ontology/topSpeed
http://dbpedia.org/resource/German_submarine_U-2341 "17.9644"^^<http://www.w3.org/2001/XMLSchema#double>
http://dbpedia.org/resource/Soviet_submarine_K-278_Komsomolets "25.928"^^<http://www.w3.org/2001/XMLSchema#double>
http://dbpedia.org/resource/Mecosta_(YTB-818) "22.224"^^<http://www.w3.org/2001/XMLSchema#double>
http://dbpedia.org/resource/HMS_A5 "20.372"^^<http://www.w3.org/2001/XMLSchema#double>
http://dbpedia.org/resource/Atlantic_Oak "24.076"^^<http://www.w3.org/2001/XMLSchema#double>
http://dbpedia.org/resource/Japanese_destroyer_Isokaze_(1939) "64.82"^^<http://www.w3.org/2001/XMLSchema#double>
http://dbpedia.org/resource/MV_Nino_Bixio "27.78"^^<http://www.w3.org/2001/XMLSchema#double>
http://dbpedia.org/resource/HMCS_Smiths_Falls "29.632"^^<http://www.w3.org/2001/XMLSchema#double>
http://dbpedia.org/resource/RFA_Orangeleaf_(A80) "26.854"^^<http://www.w3.org/2001/XMLSchema#double>
http://dbpedia.org/resource/Leander_G "34.262"^^<http://www.w3.org/2001/XMLSchema#double>
http://dbpedia.org/resource/SEAT_Ibiza__Mk2_6K__1__.6_MPI__1 "170.0"^^<http://www.w3.org/2001/XMLSchema#double>
http://dbpedia.org/resource/USS_Cree_(ATF-84) "30.558"^^<http://www.w3.org/2001/XMLSchema#double>
http://dbpedia.org/resource/SS_Indus_(1945) "20.372"^^<http://www.w3.org/2001/XMLSchema#double>
http://dbpedia.org/resource/HMS_Swale_(K217) "37.04"^^<http://www.w3.org/2001/XMLSchema#double>
http://dbpedia.org/resource/HMS_Lasham_(M2636) "25.928"^^<http://www.w3.org/2001/XMLSchema#double>
http://dbpedia.org/resource/HMS_Gay_Bombardier_(P1042) "74.08"^^<http://www.w3.org/2001/XMLSchema#double>
http://dbpedia.org/resource/Santa_Clara_Valley_Transportation_Authority_light_rail "88.5137"^^<http://www.w3.org/2001/XMLSchema#double>
http://dbpedia.org/resource/Dee_Why-class_ferry "33.336"^^<http://www.w3.org/2001/XMLSchema#double>
http://dbpedia.org/resource/USS_Chewink_(AM-39) "25.928"^^<http://www.w3.org/2001/XMLSchema#double>
http://dbpedia.org/resource/USS_Viking_(1898) "21.761"^^<http://www.w3.org/2001/XMLSchema#double>
http://dbpedia.org/ontology/address
http://dbpedia.org/resource/Emerald_Plaza_(San_Diego) "402 W. Broadway"@en
http://dbpedia.org/resource/Gare_de_Metz-Ville "1, place du Général de Gaulle,Metz"@en
http://dbpedia.org/resource/Stadium_Kajang_station "Selangor,Malaysia."@en
http://dbpedia.org/resource/Brillion_High_School "W1101 Cty HR"@en
http://dbpedia.org/resource/Ban_Nang_Long_Railway_Station "Mu 1 (Ban Nang Long), Nang Long Subdistrict, Cha-uat District, Nakhon Si Thammarat"@en
http://dbpedia.org/resource/South_Broward_High_School "1901 N Federal Hwy"@en
http://dbpedia.org/resource/Wellington_High_School_(New_Zealand) "Taranaki Street,Wellington,New Zealand"@en
http://dbpedia.org/resource/Abiko_Station_(Chiba) "2 Honchō, Abiko-shi, Chiba-ken 270-1151"@en
http://dbpedia.org/resource/Wheaton_Warrenville_South_High_School "1993 Tiger Trail"@en
http://dbpedia.org/resource/Shobhabazar_Rajbari "33 to 36 Raja Nabakrishna Street"@en
http://dbpedia.org/resource/Lincoln_High_School_(Manitowoc,_Wisconsin) "1433 South 8th Street"@en
http://dbpedia.org/resource/Jushu_Station "Liwan District,Guangzhou,Guangdong"@en
http://dbpedia.org/resource/Mawangchang_Station "Chongqing"@en
http://dbpedia.org/resource/Polangui_railway_station "Polangui, Albay"@en
http://dbpedia.org/resource/Oak_Grove_High_School_(Hattiesburg,_Mississippi) "5198 Old Highway 11"@en
http://dbpedia.org/resource/Jigozen_Station "5-2579-2, Jigozen,Hatsukaichi,Hiroshima"@en
http://dbpedia.org/resource/Eaton_High_School_(Colorado) "114 Park Avenue"@en
http://dbpedia.org/resource/South_Fayette_Township_School_District "3680 Old Oakdale Road"@en
http://dbpedia.org/resource/Breens_Intermediate "85 Breens Road, Bishopdale, Christchurch"@en
http://dbpedia.org/resource/Balli_railway_station "Off NH-17,Quepem,South Goa,Goa"@en
http://xmlns.com/foaf/0.1/homepage
http://dbpedia.org/resource/Super_Friends http://www.batmanytb.com/animated/index.php#shows
http://dbpedia.org/resource/Maritime_Museum_Rotterdam http://www.maritiemmuseum.nl/website/index.cfm?itm_id=96
http://dbpedia.org/resource/Neukirchen,_Lower_Bavaria http://www.neukirchen.net
http://dbpedia.org/resource/Vince_Weber http://www.vince-weber.de
http://dbpedia.org/resource/National_Taiwan_Arts_Education_Center http://www.arte.gov.tw/eng/
http://dbpedia.org/resource/Southfield_High_School http://www.southfield.k12.mi.us/schools/hs/southfield-high-school/
http://dbpedia.org/resource/Dorchester,_Wisconsin http://www.dorchesterwi.com
http://dbpedia.org/resource/Rollits_LLP http://www.rollits.com/
http://dbpedia.org/resource/Human_Rights_Network_Uganda http://hurinet.blogspot.ug/
http://dbpedia.org/resource/Temmler http://www.temmler.eu/
http://dbpedia.org/resource/XHMPM-FM https://web.archive.org/web/20120504193946/http://www.exafm.com/losmochis/
http://dbpedia.org/resource/Kloster_Lehnin http://www.lehnin.de/
http://dbpedia.org/resource/Department_of_Broadband,_Communications_and_the_Digital_Economy http://www.dbcde.gov.au
http://dbpedia.org/resource/DataCash http://www.datacash.com/
http://dbpedia.org/resource/Tairrie_B http://www.myruin.net/
http://dbpedia.org/resource/Montecreto http://www.comune.montecreto.mo.it/
http://dbpedia.org/resource/Auchan http://www.auchandirect.fr/Accueil
http://dbpedia.org/resource/Health_Services_Union_East http://www.hsu.asn.au
http://dbpedia.org/resource/Roman_Catholic_Archdiocese_of_Durango http://arquidiocesisdgo.org/
http://dbpedia.org/resource/Gundlapochampalli http://telangana.gov.in
http://dbpedia.org/ontology/service
http://dbpedia.org/resource/Layne_Christensen_Company http://dbpedia.org/resource/Drilling
http://dbpedia.org/resource/5LINX http://dbpedia.org/resource/Protect_America
http://dbpedia.org/resource/Medium_(website) http://dbpedia.org/resource/Publisher
http://dbpedia.org/resource/Jade_Magnet http://dbpedia.org/resource/Crowdsourcing_creative_work
http://dbpedia.org/resource/Centracom http://dbpedia.org/resource/Telephony
http://dbpedia.org/resource/Baader_Bank_AG http://dbpedia.org/resource/Asset_management
http://dbpedia.org/resource/Rainpower http://dbpedia.org/resource/Engineering
http://dbpedia.org/resource/Lotte_Entertainment http://dbpedia.org/resource/Distribution_(business)
http://dbpedia.org/resource/Pipedrive http://dbpedia.org/resource/Sales_management
http://dbpedia.org/resource/Azərpoçt http://dbpedia.org/resource/Mail
http://dbpedia.org/resource/ImLive.com http://dbpedia.org/resource/Webcam_chat
http://dbpedia.org/resource/Diffbot http://dbpedia.org/resource/Enterprise_search
http://dbpedia.org/resource/Genesis_Mining_Ltd. http://dbpedia.org/resource/Bitcoin_network
http://dbpedia.org/resource/Giant_Eagle http://dbpedia.org/resource/Supermarket
http://dbpedia.org/resource/Cactus_(supermarket) http://dbpedia.org/resource/Hypermarket
http://dbpedia.org/resource/Investment_Corporation_of_Bangladesh http://dbpedia.org/resource/Investment_management
http://dbpedia.org/resource/NTPC_Limited http://dbpedia.org/resource/Energy_production
http://dbpedia.org/resource/TQMI_Ltd http://dbpedia.org/resource/Training
http://dbpedia.org/resource/AlphaSights http://dbpedia.org/resource/Expert_network
http://dbpedia.org/resource/Patelco_Credit_Union http://dbpedia.org/resource/Mortgages
http://dbpedia.org/ontology/parent
http://dbpedia.org/resource/Beloslava_of_Bulgaria http://dbpedia.org/resource/Ivan_Asen_II_of_Bulgaria
http://dbpedia.org/resource/John_Hanbury_(1744–1784) http://dbpedia.org/resource/Capel_Hanbury
http://dbpedia.org/resource/Duchess_Maria_Isabella_of_Württemberg http://dbpedia.org/resource/Archduchess_Maria_Theresa_of_Austria_(1845–1927)
http://dbpedia.org/resource/Willem-Alexander_of_the_Netherlands http://dbpedia.org/resource/Beatrix_of_the_Netherlands
http://dbpedia.org/resource/Helene_Demuth http://dbpedia.org/resource/Karl_Marx
http://dbpedia.org/resource/Sigvard_Bernadotte http://dbpedia.org/resource/Gustaf_VI_Adolf_of_Sweden
http://dbpedia.org/resource/Thiri_Maha_Sanda_Dewi_of_Toungoo http://dbpedia.org/resource/Thado_Dhamma_Yaza_of_Salin
http://dbpedia.org/resource/Marie_Anne_Éléonore_de_Bourbon http://dbpedia.org/resource/Louis,_Prince_of_Condé_(1668–1710)
http://dbpedia.org/resource/Maria_of_Hanau-Münzenberg http://dbpedia.org/resource/Countess_Palatine_Helena_of_Simmern
http://dbpedia.org/resource/Felipe_de_Marichalar_y_Borbón http://dbpedia.org/resource/Infanta_Elena,_Duchess_of_Lugo
http://dbpedia.org/resource/Hugh_I_of_Cyprus http://dbpedia.org/resource/Aimery_of_Cyprus
http://dbpedia.org/resource/Ernest_I,_Duke_of_Brunswick-Grubenhagen http://dbpedia.org/resource/Henry_I,_Duke_of_Brunswick-Grubenhagen
http://dbpedia.org/resource/Roger_Mortimer,_4th_Earl_of_March http://dbpedia.org/resource/Philippa,_5th_Countess_of_Ulster
http://dbpedia.org/resource/Conrad_II,_Holy_Roman_Emperor http://dbpedia.org/resource/Adelaide_of_Alsace
http://dbpedia.org/resource/Maria_Angelina_Doukaina_Palaiologina http://dbpedia.org/resource/Simeon_Uroš
http://dbpedia.org/resource/Charles_II,_Archduke_of_Austria http://dbpedia.org/resource/Anna_of_Bohemia_and_Hungary
http://dbpedia.org/resource/Şah_Sultan_(daughter_of_Selim_I) http://dbpedia.org/resource/Hafsa_Sultan_(wife_of_Selim_I)
http://dbpedia.org/resource/Randy_Spelling http://dbpedia.org/resource/Aaron_Spelling
http://dbpedia.org/resource/Duke_Xiao_of_Chen http://dbpedia.org/resource/Duke_Shēn_of_Chen
http://dbpedia.org/resource/Albert_II,_Duke_of_Austria http://dbpedia.org/resource/Elizabeth_of_Carinthia,_Queen_of_Germany
http://dbpedia.org/ontology/religion
http://dbpedia.org/resource/Bob_Ney http://dbpedia.org/resource/Roman_Catholic
http://dbpedia.org/resource/Edward_Bayda http://dbpedia.org/resource/Roman_Catholic
http://dbpedia.org/resource/Sushil_Kumar_(Jain_monk) http://dbpedia.org/resource/Jainism
http://dbpedia.org/resource/Mohammad_Ali_Gerami_Qomi http://dbpedia.org/resource/Twelver
http://dbpedia.org/resource/Sitagu_Sayadaw http://dbpedia.org/resource/Buddhism
http://dbpedia.org/resource/Jason_T._Smith http://dbpedia.org/resource/Assemblies_of_God
http://dbpedia.org/resource/Dermot_Clifford http://dbpedia.org/resource/Catholic_Church
http://dbpedia.org/resource/Serbs_in_France http://dbpedia.org/resource/Serbian_Orthodox_Church
http://dbpedia.org/resource/Corsican_Americans http://dbpedia.org/resource/Catholicism
http://dbpedia.org/resource/Little_Manila http://dbpedia.org/resource/Protestantism
http://dbpedia.org/resource/Cha_Seung-won http://dbpedia.org/resource/Roman_Catholicism
http://dbpedia.org/resource/Joseph_M._Minard http://dbpedia.org/resource/Roman_Catholic_Church
http://dbpedia.org/resource/Goolam_Essaji_Vahanvati http://dbpedia.org/resource/Dawoodi_Bohra
http://dbpedia.org/resource/Wouter_Lutkie http://dbpedia.org/resource/Roman_Catholic_Church
http://dbpedia.org/resource/Thummala_Nageswara_Rao http://dbpedia.org/resource/Hinduism
http://dbpedia.org/resource/Gerald_Gardner_(Wiccan) http://dbpedia.org/resource/Wicca
http://dbpedia.org/resource/Anwar_Chowdhry http://dbpedia.org/resource/Islam
http://dbpedia.org/resource/Dinesh_Chandra_Goswami http://dbpedia.org/resource/Hinduism
http://dbpedia.org/resource/Romanians http://dbpedia.org/resource/Orthodox_Church
http://dbpedia.org/resource/Chiquinquirá_Delgado http://dbpedia.org/resource/Roman_Catholic
- http://dbpedia.org/ontology/description
http://dbpedia.org/resource/Silky_sifaka__6 "Another type of contact call"@en
http://dbpedia.org/resource/Troy_Ave__1 "25-second sample of the diss track \"Badass\" by Troy Ave."@en
http://dbpedia.org/resource/Adelaide_Anne_Procter__1 "1913 recording of \"The Lost Chord\" (1877) byArthur Sullivanand Adelaide Anne Procter, sung byReed Miller"@en
http://dbpedia.org/resource/Sheezus__1 "\"Air Balloon\" is described by Billboard as \"more of a loopy lullaby than a slice of social commentary\", the song gets its toy piano arrangement, creaseless beat and offbeatKurt Cobainshout-out partially from Shellback."@en
http://dbpedia.org/resource/Blackbird_(Beatles_song)__1 "Performed on alautenwerckbyMartha Goldstein"@en
http://dbpedia.org/resource/O'Shannassy_Reservoir "E"@en
http://dbpedia.org/resource/Kawadas_Dam "Earthfill"@en
http://dbpedia.org/resource/Music_of_the_United_States__1 "The classic soul song bySam Cookebecame a civil rights anthem."@en
http://dbpedia.org/resource/Walk_Away_(Christina_Aguilera_song)__1 "A 30-second sample of \"Walk Away\""@en
http://dbpedia.org/resource/Watermark_(Enya_album)__1 "The opening of \"Na Laetha Geal M'óige\", one of the three songs on Watermark that Enya sings in Gaelic."@en
http://dbpedia.org/resource/Don't_Say_Goodbye_(Paulina_Rubio_song)__1 "The song has a dance-pop feel to it and its techno beats and stratospheric vocals can be heard."@en
http://dbpedia.org/resource/Dmitry_Bykov__1 "From an interview withEcho Moscow, 14 June 2011"@en
http://dbpedia.org/resource/Rocks_and_Honey__1 "A 20-second sample of \"What You Need From Me\", a country duet betweenBonnie TylerandVince Gill. The song was the first on the album to be played on radio and was the inspiration for the name of the album."@en
http://dbpedia.org/resource/Landscape_(Landscape_album)__1 "An excerpt from Japan"@en
http://dbpedia.org/resource/Evolution_(advertisement)__1 "After selecting\"Passage D\"as a soundtrack, editors spent fifteen hours remixing the track; much of the sound fromdrum synthesisers was removed, and background noise such as sped-up human voices was added."@en
http://dbpedia.org/resource/Clarinet_Quintet_(Brahms)__1 "Performed byWilliam McColland the Orford String Quartet"@en
http://dbpedia.org/resource/Insect__1 "Several unidentified grasshoppers stridulating"@en
http://dbpedia.org/resource/Upper_Kadwa_Dam "Earthfill"@en
http://dbpedia.org/resource/Clarrie_Hall_Dam "E"@en
http://dbpedia.org/resource/King_Tubby_Meets_Rockers_Uptown__1 "King Tubby Meets Rockers Uptown audio sample"@en
- http://dbpedia.org/ontology/filename
http://dbpedia.org/resource/Red_Headed_Stranger__2 "Blue Eyes Crying in the Rain.ogg"
http://dbpedia.org/resource/Until_the_Quiet_Comes__1 "Flying Lotus - Me Yesterday-Corded.ogg"
http://dbpedia.org/resource/Nine_Inch_Nails__3 "Closer.ogg"
http://dbpedia.org/resource/Just_a_Kiss_(song)__1 "Lady Antebellum Just a Kiss.ogg"
http://dbpedia.org/resource/Zoellner_Quartet__1 "Skilton--War Dance--Zoellner Qtt--Edison 80692-L.ogg"
http://dbpedia.org/resource/Tosca__2 "Pasquale Amato, Tosca, Te Deum.ogg"
http://dbpedia.org/resource/First_100_days_of_Barack_Obama's_presidency__1 "President Obama Re-Takes Oath.ogg"
http://dbpedia.org/resource/Guns_N'_Roses__1 "Guns N' Roses - Welcome to the Jungle.ogg"
http://dbpedia.org/resource/Violin_Concerto_(Mendelssohn)__2 "Felix Mendelssohn - Violinkonzert e-moll - 2. Andante.ogg"
http://dbpedia.org/resource/The_Worship_Project__1 "I Can Only Imagine.ogg"
http://dbpedia.org/resource/Psarades__1 "Lower Prespa dialect speech - Nivici.oga"
http://dbpedia.org/resource/Can't_Stop_the_Feeling!__1 "Can't Stop the Feeling.ogg"
http://dbpedia.org/resource/Southern_American_English__1 "Carter Panama Canal speech.ogg"
http://dbpedia.org/resource/Rush_(band)__1 "TomSawyer.ogg"
http://dbpedia.org/resource/Mykola_Lysenko__2 "Lysenko-Suite-04-Sarabanda.ogg"
http://dbpedia.org/resource/Claude_Debussy__2 "CELLO LIVE PERFORMANCES JOHN MICHEL-DEBUSSY BEAU SOIR.ogg"
http://dbpedia.org/resource/Niccolò_Paganini__2 "20091104 Joshua Bell and Sharon Isbin - Paganini's Cantabile.ogg"
http://dbpedia.org/resource/We_Remain__1 "Christina Aguilera - We Remain (Sample).ogg"
http://dbpedia.org/resource/Granular_synthesis__1 "Horacio_Vaggione_-_Agon_(Excerpt).ogg"
http://dbpedia.org/resource/Roy_Butin__1 "Gavotte played by Samuel Siegel and Roy H Butin.ogg"
http://dbpedia.org/ontology/railwayPlatforms (?? take just the number?)
http://dbpedia.org/resource/Dwight_station "1side platform"
http://dbpedia.org/resource/Duomo_(Milan_Metro) "2 (line 3)"
http://dbpedia.org/resource/Nydalen_Station "1"
http://dbpedia.org/resource/63rd_Street_station_(Metra) "2island platforms"
http://dbpedia.org/resource/Shinnecock_Hills_(LIRR_station) "1side platform"
http://dbpedia.org/resource/Poyle_Halt_railway_station "1"
http://dbpedia.org/resource/Fairy_Meadow_railway_station "2 side"
http://dbpedia.org/resource/Lo_Prado_metro_station "2side platforms"
http://dbpedia.org/resource/Blankenfelde_station "*2 (long distance)"
http://dbpedia.org/resource/Drumclog_railway_station "2"
http://dbpedia.org/resource/West_End_station_(DART) "2side platforms"
http://dbpedia.org/resource/Southborough_(MBTA_station) "2side platforms"
http://dbpedia.org/resource/Archives_station "1 island platform"
http://dbpedia.org/resource/Park_railway_station "2"
http://dbpedia.org/resource/High_School_tram_stop "2"
http://dbpedia.org/resource/Den_Haag_HS_railway_station "6"
http://dbpedia.org/resource/Starcross_railway_station "2"
http://dbpedia.org/resource/Urgell_(Barcelona_Metro) "2side platforms"
http://dbpedia.org/resource/St_Margarets_(Hertfordshire)_railway_station "2"
http://dbpedia.org/resource/Upper_Mount_Gravatt_busway_station "2"
http://dbpedia.org/ontology/locationCountry
http://dbpedia.org/resource/Flextronics http://dbpedia.org/resource/United_States
http://dbpedia.org/resource/Hellenic_Petroleum http://dbpedia.org/resource/Greece
http://dbpedia.org/resource/Rosenlew http://dbpedia.org/resource/Finland
http://dbpedia.org/resource/WMC-TV http://dbpedia.org/resource/United_States
http://dbpedia.org/resource/Xiaomi http://dbpedia.org/resource/China
http://dbpedia.org/resource/Product_Architects,_Inc. http://dbpedia.org/resource/United_States
http://dbpedia.org/resource/Eurosport_2 http://dbpedia.org/resource/Serbia
http://dbpedia.org/resource/Discover_Barbados_TV http://dbpedia.org/resource/Barbados
http://dbpedia.org/resource/Vodafone_Egypt http://dbpedia.org/resource/Egypt
http://dbpedia.org/resource/WOOD-TV http://dbpedia.org/resource/United_States
http://dbpedia.org/resource/Panopticon_Software http://dbpedia.org/resource/Sweden
http://dbpedia.org/resource/Aviointeriors http://dbpedia.org/resource/Italy
http://dbpedia.org/resource/TruTV_(UK_and_Ireland) http://dbpedia.org/resource/United_Kingdom
http://dbpedia.org/resource/KHD_Humboldt_Wedag http://dbpedia.org/resource/Germany
http://dbpedia.org/resource/ERM_Telematics http://dbpedia.org/resource/Israel
http://dbpedia.org/resource/Century_International_Arms http://dbpedia.org/resource/United_States
http://dbpedia.org/resource/OneFamily http://dbpedia.org/resource/United_Kingdom
http://dbpedia.org/resource/Odda_Rutebuss http://dbpedia.org/resource/Norway
http://dbpedia.org/resource/WVEN-TV http://dbpedia.org/resource/United_States
http://dbpedia.org/resource/Marjanishvili_Theatre http://dbpedia.org/resource/Georgia_(country)
http://dbpedia.org/ontology/episodeNumber
http://dbpedia.org/resource/Ares_(Hercules:_The_Legendary_Journeys) "105"^^<http://www.w3.org/2001/XMLSchema#nonNegativeInteger>
http://dbpedia.org/resource/Valentine_(The_Secret_Circle) "14"^^<http://www.w3.org/2001/XMLSchema#nonNegativeInteger>
http://dbpedia.org/resource/Elegy_(The_X-Files) "22"^^<http://www.w3.org/2001/XMLSchema#nonNegativeInteger>
http://dbpedia.org/resource/Fannysmackin' "4"^^<http://www.w3.org/2001/XMLSchema#nonNegativeInteger>
http://dbpedia.org/resource/Mirror_Image_(The_Twilight_Zone) "21"^^<http://www.w3.org/2001/XMLSchema#nonNegativeInteger>
http://dbpedia.org/resource/Everybody_Ought_to_Have_a_Maid "5"^^<http://www.w3.org/2001/XMLSchema#nonNegativeInteger>
http://dbpedia.org/resource/The_Stall "12"^^<http://www.w3.org/2001/XMLSchema#nonNegativeInteger>
http://dbpedia.org/resource/The_National_Education_Service "7"^^<http://www.w3.org/2001/XMLSchema#nonNegativeInteger>
http://dbpedia.org/resource/Accidents_Will_Happen_(Degrassi:_The_Next_Generation) "14"^^<http://www.w3.org/2001/XMLSchema#nonNegativeInteger>
http://dbpedia.org/resource/Wherever_I_Go_(Hannah_Montana) "13"^^<http://www.w3.org/2001/XMLSchema#nonNegativeInteger>
http://dbpedia.org/resource/Cause_and_Effect_(Numbers) "16"^^<http://www.w3.org/2001/XMLSchema#nonNegativeInteger>
http://dbpedia.org/resource/One_Giant_Leap "3"^^<http://www.w3.org/2001/XMLSchema#nonNegativeInteger>
http://dbpedia.org/resource/All_in_the_Family_(Supernatural) "21"^^<http://www.w3.org/2001/XMLSchema#nonNegativeInteger>
http://dbpedia.org/resource/Journey_to_Where "5"^^<http://www.w3.org/2001/XMLSchema#nonNegativeInteger>
http://dbpedia.org/resource/Chuck_Versus_the_Wookiee "4"^^<http://www.w3.org/2001/XMLSchema#nonNegativeInteger>
http://dbpedia.org/resource/Katerina_(The_Vampire_Diaries) "9"^^<http://www.w3.org/2001/XMLSchema#nonNegativeInteger>
http://dbpedia.org/resource/Hollywood_(Law_&_Order:_LA) "1"^^<http://www.w3.org/2001/XMLSchema#nonNegativeInteger>
http://dbpedia.org/resource/Plus_None "5"^^<http://www.w3.org/2001/XMLSchema#nonNegativeInteger>
http://dbpedia.org/resource/Chasing_Ghosts_(NCIS) "20"^^<http://www.w3.org/2001/XMLSchema#nonNegativeInteger>
http://dbpedia.org/resource/Beneath_(The_Secret_Circle) "8"^^<http://www.w3.org/2001/XMLSchema#nonNegativeInteger>
http://dbpedia.org/ontology/spouse
http://dbpedia.org/resource/Jean_Dujardin http://dbpedia.org/resource/Alexandra_Lamy
http://dbpedia.org/resource/Tostig_Godwinson http://dbpedia.org/resource/Judith_of_Flanders,_Countess_of_Northumbria
http://dbpedia.org/resource/James_McCombs http://dbpedia.org/resource/Elizabeth_McCombs
http://dbpedia.org/resource/Bruce_Willis http://dbpedia.org/resource/Demi_Moore
http://dbpedia.org/resource/Anne_Windfohr_Marion http://dbpedia.org/resource/John_L._Marion
http://dbpedia.org/resource/Harold_Arlen http://dbpedia.org/resource/Anya_Taranda
http://dbpedia.org/resource/Eleanor_of_Trastámara,_Queen_of_Navarre http://dbpedia.org/resource/Charles_III_of_Navarre
http://dbpedia.org/resource/Joanna_Taylor http://dbpedia.org/resource/Danny_Murphy_(footballer,_born_1977)
http://dbpedia.org/resource/Tewodros_II http://dbpedia.org/resource/Tewabech_Ali
http://dbpedia.org/resource/Anne_Nagel http://dbpedia.org/resource/Ross_Alexander
http://dbpedia.org/resource/John_of_Luxembourg,_Lord_of_Beauvoir http://dbpedia.org/resource/Margaret,_Countess_of_Brienne
http://dbpedia.org/resource/Darcy_LaPier http://dbpedia.org/resource/Mark_R._Hughes
http://dbpedia.org/resource/M._S._Sundari_Bai http://dbpedia.org/resource/Kothamangalam_Subbu
http://dbpedia.org/resource/Anne_Russell,_Countess_of_Warwick http://dbpedia.org/resource/Ambrose_Dudley,_3rd_Earl_of_Warwick
http://dbpedia.org/resource/Andrea_Rosen http://dbpedia.org/resource/John_Gemberling
http://dbpedia.org/resource/Jon_Rubinstein http://dbpedia.org/resource/Karen_Richardson
http://dbpedia.org/resource/Oktay_Kaynarca http://dbpedia.org/resource/Özgü_Namal
http://dbpedia.org/resource/Abigail_Thaw http://dbpedia.org/resource/Nigel_Whitmey
http://dbpedia.org/resource/Jeff_Martin_(writer) http://dbpedia.org/resource/Suzanne_Martin
http://dbpedia.org/resource/Harry_Towb http://dbpedia.org/resource/Diana_Hoddinott
- http://dbpedia.org/ontology/otherServingLines
http://dbpedia.org/resource/Rabindra_Sarobar_metro_station "Trams"
http://dbpedia.org/resource/Ocean_and_Lee "91 Owl"
http://dbpedia.org/resource/Grand/LATTC_station "LADOT DASH: D, Pico Union/Echo Park"
http://dbpedia.org/resource/Wandsbek-Gartenstadt_(Hamburg_U-Bahn_station) "Bus, Taxi"
http://dbpedia.org/resource/Ajanti_railway_station "Auto stand"
http://dbpedia.org/resource/Dubai_Marina_(Dubai_Metro) "F37 feeder bus"
http://dbpedia.org/resource/Raymond_Avenue_(Metro_Transit_station) "16, 30, 63, 67, 87"
http://dbpedia.org/resource/Clayton_railway_station,_Queensland "no connections"
http://dbpedia.org/resource/Awarua_Street_Railway_Station "[[#Services"
http://dbpedia.org/resource/Dalhousie_(CTrain) "37 Northwest Loop"
http://dbpedia.org/resource/Victory_(TRE-DART_station) "DART Routes*,*, and"
http://dbpedia.org/resource/Kurskaya_(Koltsevaya_Line) "Trolleybus B, 10"
http://dbpedia.org/resource/McKnight_–_Westwinds "95 Westwinds Business Park"
http://dbpedia.org/resource/Königstraße_station "Bus"
http://dbpedia.org/resource/Racławicka_metro_station "174, 700"
http://dbpedia.org/resource/Laxmibai_Nagar_Junction_railway_station "Taxi Stand, Auto Stand"
http://dbpedia.org/resource/Meriden_station "Middletown Area Transit: M-Link"
http://dbpedia.org/resource/Watertown_Yard_(MBTA_station) "MBTA Bus:,,,,,"
http://dbpedia.org/resource/Hazelbrook_railway_station "Bus"
http://dbpedia.org/resource/Beverly_Shores_station "Calumet Trail"
http://dbpedia.org/ontology/seasonNumber
http://dbpedia.org/resource/Teacher's_Aide_(The_New_Twilight_Zone) "1"^^<http://www.w3.org/2001/XMLSchema#nonNegativeInteger>
http://dbpedia.org/resource/Trust_Me_(The_Americans) "1"^^<http://www.w3.org/2001/XMLSchema#nonNegativeInteger>
http://dbpedia.org/resource/Home_(Game_of_Thrones) "6"^^<http://www.w3.org/2001/XMLSchema#nonNegativeInteger>
http://dbpedia.org/resource/Love's_Labor_Lost_(ER) "1"^^<http://www.w3.org/2001/XMLSchema#nonNegativeInteger>
http://dbpedia.org/resource/Unification_(Star_Trek:_The_Next_Generation) "5"^^<http://www.w3.org/2001/XMLSchema#nonNegativeInteger>
http://dbpedia.org/resource/Supersymmetry_(Angel) "4"^^<http://www.w3.org/2001/XMLSchema#nonNegativeInteger>
http://dbpedia.org/resource/Lifetime_Supply "3"^^<http://www.w3.org/2001/XMLSchema#nonNegativeInteger>
http://dbpedia.org/resource/Protect_the_Coven "3"^^<http://www.w3.org/2001/XMLSchema#nonNegativeInteger>
http://dbpedia.org/resource/Crossfire_(Homeland) "1"^^<http://www.w3.org/2001/XMLSchema#nonNegativeInteger>
http://dbpedia.org/resource/Hogcock! "7"^^<http://www.w3.org/2001/XMLSchema#nonNegativeInteger>
http://dbpedia.org/resource/Frozen_(House) "4"^^<http://www.w3.org/2001/XMLSchema#nonNegativeInteger>
http://dbpedia.org/resource/Born_to_Run_(Terminator:_The_Sarah_Connor_Chronicles) "2"^^<http://www.w3.org/2001/XMLSchema#nonNegativeInteger>
http://dbpedia.org/resource/Gone_(Buffy_the_Vampire_Slayer) "6"^^<http://www.w3.org/2001/XMLSchema#nonNegativeInteger>
http://dbpedia.org/resource/Turn_and_Face_the_Strange "3"^^<http://www.w3.org/2001/XMLSchema#nonNegativeInteger>
http://dbpedia.org/resource/The_Troubled_Spirit "1"^^<http://www.w3.org/2001/XMLSchema#nonNegativeInteger>
http://dbpedia.org/resource/The_Cell_(The_Vampire_Diaries) "5"^^<http://www.w3.org/2001/XMLSchema#nonNegativeInteger>
http://dbpedia.org/resource/Sounds_Like "2"^^<http://www.w3.org/2001/XMLSchema#nonNegativeInteger>
http://dbpedia.org/resource/Friends_with_Burger-fits "5"^^<http://www.w3.org/2001/XMLSchema#nonNegativeInteger>
http://dbpedia.org/resource/You_Made_Me_(Adventure_Time) "4"^^<http://www.w3.org/2001/XMLSchema#nonNegativeInteger>
http://dbpedia.org/resource/Plan_B_(Veronica_Mars) "2"^^<http://www.w3.org/2001/XMLSchema#nonNegativeInteger>
http://dbpedia.org/ontology/spokenIn
http://dbpedia.org/resource/Shiwiar_language http://dbpedia.org/resource/Ecuador
http://dbpedia.org/resource/Mishnaic_Hebrew http://dbpedia.org/resource/Syria_Palaestina
http://dbpedia.org/resource/Scottish_Gaelic http://dbpedia.org/resource/Scotland
http://dbpedia.org/resource/Lusitanian_language http://dbpedia.org/resource/Beira_Baixa_Province
http://dbpedia.org/resource/Urim_language http://dbpedia.org/resource/Papua_New_Guinea
http://dbpedia.org/resource/Nahuan_languages http://dbpedia.org/resource/Veracruz
http://dbpedia.org/resource/Bapeng_language http://dbpedia.org/resource/Senegal
http://dbpedia.org/resource/Mbukushu_language http://dbpedia.org/resource/Namibia
http://dbpedia.org/resource/Classical_Nahuatl_language http://dbpedia.org/resource/Aztec_Empire
http://dbpedia.org/resource/Tetum_language http://dbpedia.org/resource/East_Timor
http://dbpedia.org/resource/Alemannic_German http://dbpedia.org/resource/Switzerland
http://dbpedia.org/resource/Mono_language_(Cameroon) http://dbpedia.org/resource/Cameroon
http://dbpedia.org/resource/Dao_language http://dbpedia.org/resource/Indonesia
http://dbpedia.org/resource/Arbore_language http://dbpedia.org/resource/Ethiopia
http://dbpedia.org/resource/East_Bergish http://dbpedia.org/resource/Bergisches_Land
http://dbpedia.org/resource/Vinza_language http://dbpedia.org/resource/Tanzania
http://dbpedia.org/resource/Makury_language http://dbpedia.org/resource/Nagaland
http://dbpedia.org/resource/Kim_language http://dbpedia.org/resource/Chad
http://dbpedia.org/resource/Tiriyó_language http://dbpedia.org/resource/Sipaliwini_District
http://dbpedia.org/resource/Russian_Sign_Language http://dbpedia.org/resource/Ukraine
http://dbpedia.org/ontology/formationDate (-> year)
http://dbpedia.org/resource/Trombi.com "2000-05-01"^^<http://www.w3.org/2001/XMLSchema#date>
http://dbpedia.org/resource/Bangladesh_Amateur_Radio_League "1979-05-20"^^<http://www.w3.org/2001/XMLSchema#date>
http://dbpedia.org/resource/Change_Britain "2016-09-10"^^<http://www.w3.org/2001/XMLSchema#date>
http://dbpedia.org/resource/Coalition_for_Public_Safety "2015-02-19"^^<http://www.w3.org/2001/XMLSchema#date>
http://dbpedia.org/resource/International_Communication_Association "1950-01-01"^^<http://www.w3.org/2001/XMLSchema#date>
http://dbpedia.org/resource/Commission_for_Architecture_and_the_Built_Environment "1999-08-01"^^<http://www.w3.org/2001/XMLSchema#date>
http://dbpedia.org/resource/Indian_Public_Health_Association "1956-09-29"^^<http://www.w3.org/2001/XMLSchema#date>
http://dbpedia.org/resource/KDYS-LD "1985-04-03"^^<http://www.w3.org/2001/XMLSchema#date>
http://dbpedia.org/resource/Asturias_F.C. "1918-02-07"^^<http://www.w3.org/2001/XMLSchema#date>
http://dbpedia.org/resource/New_Republican_Society "1998-01-21"^^<http://www.w3.org/2001/XMLSchema#date>
http://dbpedia.org/resource/FK_Fauske/Sprint "1937-04-25"^^<http://www.w3.org/2001/XMLSchema#date>
http://dbpedia.org/resource/Esporte_Clube_Boa_Vontade "1957-06-06"^^<http://www.w3.org/2001/XMLSchema#date>
http://dbpedia.org/resource/KPCE-LP "1997-10-02"^^<http://www.w3.org/2001/XMLSchema#date>
http://dbpedia.org/resource/Manitoba_New_Democratic_Party "1961-11-04"^^<http://www.w3.org/2001/XMLSchema#date>
http://dbpedia.org/resource/FC_Bibo "1951-10-15"^^<http://www.w3.org/2001/XMLSchema#date>
http://dbpedia.org/resource/Corsica_Libera "2009-02-01"^^<http://www.w3.org/2001/XMLSchema#date>
http://dbpedia.org/resource/National_Union_of_Namibian_Workers "1971-04-24"^^<http://www.w3.org/2001/XMLSchema#date>
http://dbpedia.org/resource/Asturian_Renewal_Union "1998-12-02"^^<http://www.w3.org/2001/XMLSchema#date>
http://dbpedia.org/resource/Chuncheon_FC "2010-02-27"^^<http://www.w3.org/2001/XMLSchema#date>
http://dbpedia.org/resource/Ambulance_Victoria "2008-07-01"^^<http://www.w3.org/2001/XMLSchema#date>
http://dbpedia.org/ontology/jurisdiction
http://dbpedia.org/resource/Planning_Commission_(Pakistan) http://dbpedia.org/resource/Government_of_Pakistan
http://dbpedia.org/resource/Private_Security_Authority http://dbpedia.org/resource/Republic_of_Ireland
http://dbpedia.org/resource/Council_of_People's_Commissars_(Ukraine) http://dbpedia.org/resource/Ukrainian_SSR
http://dbpedia.org/resource/Diocese_of_Rayalaseema_of_the_Church_of_South_India http://dbpedia.org/resource/Diocese
http://dbpedia.org/resource/Central_Business_Register_(Denmark) http://dbpedia.org/resource/Denmark
http://dbpedia.org/resource/India–Taiwan_relations http://dbpedia.org/resource/Sri_Lanka
http://dbpedia.org/resource/Executive_Office_(Northern_Ireland) http://dbpedia.org/resource/Northern_Ireland
http://dbpedia.org/resource/Roman_Catholic_Archdiocese_of_Zagreb http://dbpedia.org/resource/Archdiocese
http://dbpedia.org/resource/Committee_of_the_Verkhovna_Rada_on_issues_of_ecological_policy http://dbpedia.org/resource/Ukraine
http://dbpedia.org/resource/Roman_Catholic_Diocese_of_Galle http://dbpedia.org/resource/Diocese
http://dbpedia.org/resource/San_Francisco_Recreation_&_Parks_Department http://dbpedia.org/resource/San_Francisco
http://dbpedia.org/resource/Ministry_of_Science_and_Technology_(Vietnam) http://dbpedia.org/resource/Government_of_Vietnam
http://dbpedia.org/resource/Comisión_Nacional_para_el_Conocimiento_y_Uso_de_la_Biodiversidad http://dbpedia.org/resource/Government_of_Mexico
http://dbpedia.org/resource/Department_of_Housing_and_Construction_(1983–87) http://dbpedia.org/resource/Government_of_Australia
http://dbpedia.org/resource/United_States_Public_Health_Service http://dbpedia.org/resource/Federal_government_of_the_United_States
http://dbpedia.org/resource/Roman_Catholic_Diocese_of_Hradec_Králové http://dbpedia.org/resource/Diocese
http://dbpedia.org/resource/Roman_Catholic_Archdiocese_of_San_Fernando http://dbpedia.org/resource/Archdiocese
http://dbpedia.org/resource/National_Office_of_Building_Technology_and_Administration http://dbpedia.org/resource/Government_of_Norway
http://dbpedia.org/resource/Federal_Ministry_of_Finance_(Austria) http://dbpedia.org/resource/Austrian_Federal_Government
http://dbpedia.org/resource/Roman_Catholic_Diocese_of_Gap http://dbpedia.org/resource/Diocese
- http://dbpedia.org/ontology/mouthElevation
http://dbpedia.org/resource/Mânișu_River "446.0"^^<http://www.w3.org/2001/XMLSchema#double>
http://dbpedia.org/resource/Gropata_Lungă_River "1437.0"^^<http://www.w3.org/2001/XMLSchema#double>
http://dbpedia.org/resource/Corbu_River_(Preluci) "923.0"^^<http://www.w3.org/2001/XMLSchema#double>
http://dbpedia.org/resource/Ford_River_(Victoria) "0.0"^^<http://www.w3.org/2001/XMLSchema#double>
http://dbpedia.org/resource/McWay_Creek "30.48"^^<http://www.w3.org/2001/XMLSchema#double>
http://dbpedia.org/resource/South_Branch_Sandy_River "222.504"^^<http://www.w3.org/2001/XMLSchema#double>
http://dbpedia.org/resource/Ascherbach_(river) "615.0"^^<http://www.w3.org/2001/XMLSchema#double>
http://dbpedia.org/resource/Sita_River "987.0"^^<http://www.w3.org/2001/XMLSchema#double>
http://dbpedia.org/resource/Conewago_Creek_(east) "79.5528"^^<http://www.w3.org/2001/XMLSchema#double>
http://dbpedia.org/resource/Ciban_River "1140.0"^^<http://www.w3.org/2001/XMLSchema#double>
http://dbpedia.org/resource/Corrigan_Creek_(Ontario) "300.0"^^<http://www.w3.org/2001/XMLSchema#double>
http://dbpedia.org/resource/Wando_River_(Victoria) "59.0"^^<http://www.w3.org/2001/XMLSchema#double>
http://dbpedia.org/resource/Molunkus_Stream "89.916"^^<http://www.w3.org/2001/XMLSchema#double>
http://dbpedia.org/resource/Arthur_River_(New_Zealand) "0.0"^^<http://www.w3.org/2001/XMLSchema#double>
http://dbpedia.org/resource/Rock_Brook "15.8496"^^<http://www.w3.org/2001/XMLSchema#double>
http://dbpedia.org/resource/East_Arm_Little_Calumet_River "178.0032"^^<http://www.w3.org/2001/XMLSchema#double>
http://dbpedia.org/resource/Chilkat_River "0.0"^^<http://www.w3.org/2001/XMLSchema#double>
http://dbpedia.org/resource/Ebbsfleet_River "0.0"^^<http://www.w3.org/2001/XMLSchema#double>
http://dbpedia.org/resource/Sharda_River "115.0"^^<http://www.w3.org/2001/XMLSchema#double>
http://dbpedia.org/resource/Valea_Porumbenilor_River "69.0"^^<http://www.w3.org/2001/XMLSchema#double>
http://dbpedia.org/ontology/sisterStation
http://dbpedia.org/resource/WEGH http://dbpedia.org/resource/WQKX
http://dbpedia.org/resource/TVP_ABC http://dbpedia.org/resource/TVP1
http://dbpedia.org/resource/TVOne_Global http://dbpedia.org/resource/News_One
http://dbpedia.org/resource/KRQQ http://dbpedia.org/resource/KTZR_(AM)
http://dbpedia.org/resource/WJBC-FM http://dbpedia.org/resource/WJEZ
http://dbpedia.org/resource/KMKO-FM http://dbpedia.org/resource/KRBI-FM
http://dbpedia.org/resource/WOPI-CD http://dbpedia.org/resource/WKTP
http://dbpedia.org/resource/WZCY-FM http://dbpedia.org/resource/WHGB
http://dbpedia.org/resource/Biggs_(TV_channel) http://dbpedia.org/resource/Canal_Hollywood
http://dbpedia.org/resource/KZGF http://dbpedia.org/resource/KZLT-FM
http://dbpedia.org/resource/KLUK http://dbpedia.org/resource/KFLG-FM
http://dbpedia.org/resource/WRSC_(AM) http://dbpedia.org/resource/WQWK_(AM)
http://dbpedia.org/resource/Kairali_TV http://dbpedia.org/resource/Kairali_Arabia
http://dbpedia.org/resource/Syfy http://dbpedia.org/resource/MSNBC
http://dbpedia.org/resource/MTV_Dance_(Australia) http://dbpedia.org/resource/Nickelodeon_(Australia)
http://dbpedia.org/resource/KBOB_(AM) http://dbpedia.org/resource/KBEA-FM
http://dbpedia.org/resource/WGTO http://dbpedia.org/resource/WDOW_(AM)
http://dbpedia.org/resource/WSEY http://dbpedia.org/resource/WRCV
http://dbpedia.org/resource/KHOU http://dbpedia.org/resource/KVUE
http://dbpedia.org/resource/WNMA http://dbpedia.org/resource/WEXY
http://dbpedia.org/ontology/governingBody
http://dbpedia.org/resource/Shadows-on-the-Teche http://dbpedia.org/resource/National_Trust_for_Historic_Preservation
http://dbpedia.org/resource/Pathimari http://dbpedia.org/resource/Gram_panchayat
http://dbpedia.org/resource/Saptasajya http://dbpedia.org/resource/Gram_panchayat
http://dbpedia.org/resource/Jhugian_Gulam http://dbpedia.org/resource/Gram_panchayat
http://dbpedia.org/resource/Bhojpura http://dbpedia.org/resource/Gram_panchayat
http://dbpedia.org/resource/Sankhu,_Sikar http://dbpedia.org/resource/Panchayat
http://dbpedia.org/resource/Nellanad http://dbpedia.org/resource/Gram_panchayat
http://dbpedia.org/resource/Bagga_Kalan http://dbpedia.org/resource/Gram_panchayat
http://dbpedia.org/resource/Wadhel_Mauja http://dbpedia.org/resource/Gram_panchayat
http://dbpedia.org/resource/Toganwala http://dbpedia.org/resource/Gram_panchayat
http://dbpedia.org/resource/Usilampatti http://dbpedia.org/resource/Nagar_Palika
http://dbpedia.org/resource/Patowmack_Canal http://dbpedia.org/resource/National_Park_Service
http://dbpedia.org/resource/Alamgir,_Kapurthala http://dbpedia.org/resource/Gram_panchayat
http://dbpedia.org/resource/Wadner_Haveli http://dbpedia.org/resource/Gram_panchayat
http://dbpedia.org/resource/Icehouse_Bottom http://dbpedia.org/resource/Tennessee_Wildlife_Resources_Agency
http://dbpedia.org/resource/Nangla http://dbpedia.org/resource/Gram_panchayat
http://dbpedia.org/resource/Federal_Office_Building_(Seattle) http://dbpedia.org/resource/General_Services_Administration
http://dbpedia.org/resource/Fort_Martin_Scott http://dbpedia.org/resource/Gillespie_County_Historical_Society
http://dbpedia.org/resource/St._Joseph's_Church_(Middletown,_Delaware) http://dbpedia.org/resource/Roman_Catholic_Church
http://dbpedia.org/resource/Wake_Island__Wake_Island__1 http://dbpedia.org/resource/Office_of_Insular_Affairs
http://dbpedia.org/ontology/previousWork
http://dbpedia.org/resource/Let_Go_of_the_Stone http://dbpedia.org/resource/Seminole_Wind_(song)
http://dbpedia.org/resource/Love_Ain't_Here_Anymore http://dbpedia.org/resource/Everything_Changes_(Take_That_song)
http://dbpedia.org/resource/Don't_Panic_(song) http://dbpedia.org/resource/Trouble_(Coldplay_song)
http://dbpedia.org/resource/How_I_Learned_to_Love_the_Bootboys http://dbpedia.org/resource/After_Murder_Park
http://dbpedia.org/resource/A_Break_from_the_Norm http://dbpedia.org/resource/Halfway_Between_the_Gutter_and_the_Stars
http://dbpedia.org/resource/White_Rabbit_(George_Benson_album) http://dbpedia.org/resource/Beyond_the_Blue_Horizon
http://dbpedia.org/resource/What_Grabs_Ya%3F http://dbpedia.org/resource/Faders_Up
http://dbpedia.org/resource/Beautiful! http://dbpedia.org/resource/Today's_Man_(album)
http://dbpedia.org/resource/Time_and_the_Rani http://dbpedia.org/resource/The_Trial_of_a_Time_Lord
http://dbpedia.org/resource/Rap_God http://dbpedia.org/resource/Survival_(Eminem_song)
http://dbpedia.org/resource/MTV_Unplugged_(Kaiser_Chiefs_album) http://dbpedia.org/resource/Live_at_Elland_Road
http://dbpedia.org/resource/Flat_Top_(song) http://dbpedia.org/resource/Only_One_(Goo_Goo_Dolls_song)
http://dbpedia.org/resource/Living_Dead_Girl_(song) http://dbpedia.org/resource/Dragula_(song)
http://dbpedia.org/resource/Clubland_Classix_–_The_Album_of_Your_Life http://dbpedia.org/resource/Clubland_12
http://dbpedia.org/resource/The_Middle-Class_Rip-Off http://dbpedia.org/resource/The_Whisky_Priest_(Yes_Minister)
http://dbpedia.org/resource/Passion_(Jennifer_Rush_album) http://dbpedia.org/resource/Heart_over_Mind_(Jennifer_Rush_album)
http://dbpedia.org/resource/The_Gig_and_the_Girlfriend http://dbpedia.org/resource/The_Fashion_Show_(The_Inbetweeners)
http://dbpedia.org/resource/Affirmation_(song) http://dbpedia.org/resource/Crash_and_Burn_(Savage_Garden_song)
http://dbpedia.org/resource/Harapin http://dbpedia.org/resource/The_Story_of_The_Dawn:_The_Ultimate_OPM_Collection
http://dbpedia.org/resource/This_Is_This! http://dbpedia.org/resource/Sportin'_Life_(Weather_Report_album)
http://dbpedia.org/ontology/league
http://dbpedia.org/resource/ANS_Pivani_Bakı_FK http://dbpedia.org/resource/Azerbaijan_Premier_League
http://dbpedia.org/resource/Traktor_Chelyabinsk http://dbpedia.org/resource/Vysshaya_Liga_(ice_hockey)
http://dbpedia.org/resource/2011–12_Tractor_Sazi_F.C._season http://dbpedia.org/resource/Iran_Pro_League
http://dbpedia.org/resource/Aron_Reisz http://dbpedia.org/resource/Austrian_Hockey_League
http://dbpedia.org/resource/Taylor_Leier http://dbpedia.org/resource/National_Hockey_League
http://dbpedia.org/resource/Pennsylvania_Roar http://dbpedia.org/resource/Major_Indoor_Soccer_League_(2008–)
http://dbpedia.org/resource/2008–09_Dagenham_&_Redbridge_F.C._season http://dbpedia.org/resource/Football_League_Two
http://dbpedia.org/resource/2011–12_Central_Coast_Mariners_FC_season http://dbpedia.org/resource/A-League
http://dbpedia.org/resource/Club_Ourense_Baloncesto http://dbpedia.org/resource/LEB_Oro
http://dbpedia.org/resource/Barry_Gibbs http://dbpedia.org/resource/National_Hockey_League
http://dbpedia.org/resource/Ian_Moran http://dbpedia.org/resource/National_Hockey_League
http://dbpedia.org/resource/Lørenskog_IF http://dbpedia.org/resource/2._Divisjon
http://dbpedia.org/resource/KMN_Sevnica http://dbpedia.org/resource/Slovenian_Futsal_League
http://dbpedia.org/resource/Nico-Nicoyé http://dbpedia.org/resource/Congo_Premier_League
http://dbpedia.org/resource/2012_Austin_Aztex_season http://dbpedia.org/resource/USL_Premier_Development_League
http://dbpedia.org/resource/1981_Fort_Lauderdale_Strikers_season http://dbpedia.org/resource/North_American_Soccer_League
http://dbpedia.org/resource/Josh_Morrissey http://dbpedia.org/resource/National_Hockey_League
http://dbpedia.org/resource/Dalton_Smith http://dbpedia.org/resource/American_Hockey_League
http://dbpedia.org/resource/Mike_Blunden http://dbpedia.org/resource/National_Hockey_League
http://dbpedia.org/resource/Thomas_Nykopp http://dbpedia.org/resource/Liiga
- http://dbpedia.org/ontology/powerOutput
http://dbpedia.org/resource/Mercedes-Benz_TN__210_/_310_/_410__2 "77000.0"^^<http://www.w3.org/2001/XMLSchema#double>
http://dbpedia.org/resource/Mack_F_series__F795T__1 "240122.54196"^^<http://www.w3.org/2001/XMLSchema#double>
http://dbpedia.org/resource/Honda_K_engine__K20A3__4 "119315.5488"^^<http://www.w3.org/2001/XMLSchema#double>
http://dbpedia.org/resource/Honda_K_engine__K24Z6__2 "137958.6033"^^<http://www.w3.org/2001/XMLSchema#double>
http://dbpedia.org/resource/Cadillac_V8_engine__1972__2 "175244.7123"^^<http://www.w3.org/2001/XMLSchema#double>
http://dbpedia.org/resource/Bharat_Stage_emission_standards__19_kW_<_P_≤_50_kW__1 "19000.0"^^<http://www.w3.org/2001/XMLSchema#double>
http://dbpedia.org/resource/SEAT_Ibiza__Mk4_6J__1__.6_LPG_Bifuel__1 "60000.0"^^<http://www.w3.org/2001/XMLSchema#double>
http://dbpedia.org/resource/SEAT_Ibiza__Mk3_6L__1__.4_TDI__1 "51000.0"^^<http://www.w3.org/2001/XMLSchema#double>
http://dbpedia.org/resource/Morris_Oxford_bullnose__1919–26__1__1 "10365.538302"^^<http://www.w3.org/2001/XMLSchema#double>
http://dbpedia.org/resource/SEAT_Ateca__1 "108853.815"^^<http://www.w3.org/2001/XMLSchema#double>
http://dbpedia.org/resource/List_of_Maserati_vehicles__A6G54_'56__1 "160000.0"^^<http://www.w3.org/2001/XMLSchema#double>
http://dbpedia.org/resource/Dodge_Durango__Third_generation__1__CrewLux__1 "216259.4322"^^<http://www.w3.org/2001/XMLSchema#double>
http://dbpedia.org/resource/Alfa_Romeo_GTV_and_Spider__2.0_V6_TB__1 "147000.0"^^<http://www.w3.org/2001/XMLSchema#double>
http://dbpedia.org/resource/List_of_Maserati_vehicles__3500_GTI_Spyder__1 "235000.0"^^<http://www.w3.org/2001/XMLSchema#double>
http://dbpedia.org/resource/BMW_M40__B18%5D%5D_E36_version__1 "84266.60634"^^<http://www.w3.org/2001/XMLSchema#double>
http://dbpedia.org/resource/Audi_Q5__8R__1__Q5_2.0_TFSI_quattro_225PS__1 "165487.21875"^^<http://www.w3.org/2001/XMLSchema#double>
http://dbpedia.org/resource/List_of_low-emissions_locomotives__MP40PH-3C__1 "2982888.72"^^<http://www.w3.org/2001/XMLSchema#double>
http://dbpedia.org/resource/Mitsubishi_FTO__GPX_Feb_1997__1 "147099.75"^^<http://www.w3.org/2001/XMLSchema#double>
http://dbpedia.org/resource/Ford_Torino_engine_specifications__351-2V_Modified_V8__1 "113349.77136"^^<http://www.w3.org/2001/XMLSchema#double>
http://dbpedia.org/resource/Lexus_GX__Second_generation_J150__1__GX_460__1 "217750.87656"^^<http://www.w3.org/2001/XMLSchema#double>
http://dbpedia.org/ontology/serviceStartYear
http://dbpedia.org/resource/Antoine_Étienne_de_Tousard "1770"^^<http://www.w3.org/2001/XMLSchema#gYear>
http://dbpedia.org/resource/John_Nelson_(British_Army_officer) "1933"^^<http://www.w3.org/2001/XMLSchema#gYear>
http://dbpedia.org/resource/George_Unwin "1929"^^<http://www.w3.org/2001/XMLSchema#gYear>
http://dbpedia.org/resource/Robert_Eyssen "1911"^^<http://www.w3.org/2001/XMLSchema#gYear>
http://dbpedia.org/resource/Willem_Joseph_van_Ghent "1648"^^<http://www.w3.org/2001/XMLSchema#gYear>
http://dbpedia.org/resource/Kenneth_Walker "1917"^^<http://www.w3.org/2001/XMLSchema#gYear>
http://dbpedia.org/resource/Minor_Butler_Poole "0015"^^<http://www.w3.org/2001/XMLSchema#gYear>
http://dbpedia.org/resource/Fritz_Wentzell "1917"^^<http://www.w3.org/2001/XMLSchema#gYear>
http://dbpedia.org/resource/Hilliard_Brooke_Bell "1916"^^<http://www.w3.org/2001/XMLSchema#gYear>
http://dbpedia.org/resource/Frederick_Stephens_(British_Army_officer) "1925"^^<http://www.w3.org/2001/XMLSchema#gYear>
http://dbpedia.org/resource/Frederick_C._Blesse "1945"^^<http://www.w3.org/2001/XMLSchema#gYear>
http://dbpedia.org/resource/João_Baptista_Mascarenhas_de_Morais "1897"^^<http://www.w3.org/2001/XMLSchema#gYear>
http://dbpedia.org/resource/Hugh_Fenwick_Brooke "1892"^^<http://www.w3.org/2001/XMLSchema#gYear>
http://dbpedia.org/resource/Donald_Leroy_Truesdell "1924"^^<http://www.w3.org/2001/XMLSchema#gYear>
http://dbpedia.org/resource/Fritz_Joubert_Duquesne "1899"^^<http://www.w3.org/2001/XMLSchema#gYear>
http://dbpedia.org/resource/Dean_C._Strother "1931"^^<http://www.w3.org/2001/XMLSchema#gYear>
http://dbpedia.org/resource/James_S._Gracey "1945"^^<http://www.w3.org/2001/XMLSchema#gYear>
http://dbpedia.org/resource/Tamotsu_Oishi "1920"^^<http://www.w3.org/2001/XMLSchema#gYear>
http://dbpedia.org/resource/Leonard_T._Schroeder "1941"^^<http://www.w3.org/2001/XMLSchema#gYear>
http://dbpedia.org/resource/Dean_Hall_(game_designer) "2000"^^<http://www.w3.org/2001/XMLSchema#gYear>
http://dbpedia.org/ontology/state
http://dbpedia.org/resource/Mank http://dbpedia.org/resource/Lower_Austria
http://dbpedia.org/resource/Obabika_River http://dbpedia.org/resource/Ontario
http://dbpedia.org/resource/Dater_High_School_(Cincinnati,_Ohio) http://dbpedia.org/resource/Ohio
http://dbpedia.org/resource/Meridian_High_School_(Daykin,_Nebraska) http://dbpedia.org/resource/Nebraska
http://dbpedia.org/resource/Rosecrans_Hills http://dbpedia.org/resource/California
http://dbpedia.org/resource/KPC_Medical_College_and_Hospital http://dbpedia.org/resource/West_Bengal
http://dbpedia.org/resource/USC_Sol_Price_School_of_Public_Policy http://dbpedia.org/resource/California
http://dbpedia.org/resource/Tooma_River http://dbpedia.org/resource/Victoria_(Australia)
http://dbpedia.org/resource/Gravel_Hills http://dbpedia.org/resource/California
http://dbpedia.org/resource/Davao_Oriental_State_College_of_Science_and_Technology http://dbpedia.org/resource/Davao_Oriental
http://dbpedia.org/resource/De_Soto_High_School_(Kansas) http://dbpedia.org/resource/Kansas
http://dbpedia.org/resource/Banff_–_Mineral_Springs_Hospital http://dbpedia.org/resource/Alberta
http://dbpedia.org/resource/Tamms,_Illinois http://dbpedia.org/resource/Illinois
http://dbpedia.org/resource/Rangmati_River http://dbpedia.org/resource/Gujarat
http://dbpedia.org/resource/Janta_Vedic_College http://dbpedia.org/resource/Uttar_Pradesh
http://dbpedia.org/resource/Guru_Gobind_Singh_Polytechnic,_Nasik http://dbpedia.org/resource/Maharashtra
http://dbpedia.org/resource/Chinju_National_University_of_Education http://dbpedia.org/resource/South_Gyeongsang
http://dbpedia.org/resource/Chippewa_County,_Wisconsin http://dbpedia.org/resource/Wisconsin
http://dbpedia.org/resource/Irvington,_Illinois http://dbpedia.org/resource/Illinois
http://dbpedia.org/resource/Jamestown_High_School_(North_Dakota) http://dbpedia.org/resource/North_Dakota
http://dbpedia.org/ontology/date (-> year)
http://dbpedia.org/resource/Siege_of_the_British_Residency_in_Kabul "1879-09-03"^^<http://www.w3.org/2001/XMLSchema#date>
http://dbpedia.org/resource/2014_Supercopa_de_Chile "2014-05-03"^^<http://www.w3.org/2001/XMLSchema#date>
http://dbpedia.org/resource/Battle_of_Mstislavl "1501-11-04"^^<http://www.w3.org/2001/XMLSchema#date>
http://dbpedia.org/resource/1922_German_football_championship "1922-08-06"^^<http://www.w3.org/2001/XMLSchema#date>
http://dbpedia.org/resource/Yeovil_Town_2–1_Sunderland_(1949) "1949-01-29"^^<http://www.w3.org/2001/XMLSchema#date>
http://dbpedia.org/resource/Battle_of_Montebello_(1859) "1859-05-20"^^<http://www.w3.org/2001/XMLSchema#date>
http://dbpedia.org/resource/Siege_of_Pyongyang_(1592) "1592-08-01"^^<http://www.w3.org/2001/XMLSchema#date>
http://dbpedia.org/resource/Aniversario_de_Arena_México "2002-04-12"^^<http://www.w3.org/2001/XMLSchema#date>
http://dbpedia.org/resource/Battle_of_Horodok "1655-09-29"^^<http://www.w3.org/2001/XMLSchema#date>
http://dbpedia.org/resource/Battle_of_al-Hasakah_(2016) "2016-08-23"^^<http://www.w3.org/2001/XMLSchema#date>
http://dbpedia.org/resource/1641_Caracas_earthquake "1641-06-11"^^<http://www.w3.org/2001/XMLSchema#date>
http://dbpedia.org/resource/CMLL_65th_Anniversary_Show "1998-09-18"^^<http://www.w3.org/2001/XMLSchema#date>
http://dbpedia.org/resource/Siege_of_Myitkyina "1944-08-03"^^<http://www.w3.org/2001/XMLSchema#date>
http://dbpedia.org/resource/Siege_of_Vyborg_(1710) "1710-06-12"^^<http://www.w3.org/2001/XMLSchema#date>
http://dbpedia.org/resource/Operation_Maslenica "1993-02-01"^^<http://www.w3.org/2001/XMLSchema#date>
http://dbpedia.org/resource/2016_Israel_State_Cup_Final "2016-05-24"^^<http://www.w3.org/2001/XMLSchema#date>
http://dbpedia.org/resource/Battle_of_Dürenstein "1805-11-11"^^<http://www.w3.org/2001/XMLSchema#date>
http://dbpedia.org/resource/Battle_of_Ilovaisk "2014-09-02"^^<http://www.w3.org/2001/XMLSchema#date>
http://dbpedia.org/resource/Siege_of_Derry "1689-07-28"^^<http://www.w3.org/2001/XMLSchema#date>
http://dbpedia.org/resource/1988_Armenian_earthquake "1988-12-07"^^<http://www.w3.org/2001/XMLSchema#date>
http://dbpedia.org/ontology/nrhpReferenceNumber
http://dbpedia.org/resource/Carl_Potter_Mound "74001407"
http://dbpedia.org/resource/Burford_House_(New_Hampshire) "85001309"
http://dbpedia.org/resource/Odd_Fellows_Hall_(Cambridge,_Massachusetts) "82001967"
http://dbpedia.org/resource/Sassafras_Site,_RI-55 "84000360"
http://dbpedia.org/resource/Presbyterian_Church_of_Atlanta "10000030"
http://dbpedia.org/resource/Truxtun_Historic_District "82004581"
http://dbpedia.org/resource/Zion-St._Mark's_Evangelical_Lutheran_Church "95000335"
http://dbpedia.org/resource/Upper_Closter-Alpine_Historic_District "85001013"
http://dbpedia.org/resource/Hale_House "72000230"
http://dbpedia.org/resource/Medicine_Rock_State_Historic_Site "86002757"
http://dbpedia.org/resource/Henry-Vernon_House "83001902"
http://dbpedia.org/resource/Atkins_High_School_(North_Carolina) "99001618"