-
Notifications
You must be signed in to change notification settings - Fork 0
/
output_test.txt
10776 lines (5388 loc) · 532 KB
/
output_test.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
Triple n°1 - {'subject': 'his', 'relation': 'aunt', 'object': 'uncle'}
Subject: his - http://dbpedia.org/resource/His
Object: uncle - http://dbpedia.org/resource/Uncle
-------------------------------------------------------------------------------------------------------------------------------
Triple n°2 - {'subject': 'central character', 'relation': 'is', 'object': 'Harry Potter'}
Subject: central character - http://dbpedia.org/resource/Central_character
Relation: be - have the quality of being; (copula, used with an adjective or a predicate noun)
Object: Harry Potter - http://dbpedia.org/resource/Harry_potter
-------------------------------------------------------------------------------------------------------------------------------
Triple n°3 - {'subject': 'he', 'relation': 'lives in', 'object': 'ordinary world of magical people known as Muggles'}
Subject: he - http://dbpedia.org/resource/He
Relation: live - inhabit or live in; be an inhabitant of
Object: ordinary world of magical people known as Muggles - ['http://dbpedia.org/resource/Ordinary', 'http://dbpedia.org/resource/World', 'http://dbpedia.org/resource/Of', 'http://dbpedia.org/resource/Magical', 'http://dbpedia.org/resource/Category:People', 'http://dbpedia.org/resource/Known', 'http://dbpedia.org/resource/Category:As', 'http://dbpedia.org/resource/Muggles']
-------------------------------------------------------------------------------------------------------------------------------
Triple n°4 - {'subject': 'he', 'relation': 'lives in', 'object': 'ordinary world of magical people'}
Subject: he - http://dbpedia.org/resource/He
Relation: live - inhabit or live in; be an inhabitant of
Object: ordinary world of magical people - ['http://dbpedia.org/resource/Ordinary', 'http://dbpedia.org/resource/World', 'http://dbpedia.org/resource/Of', 'http://dbpedia.org/resource/Magical', 'http://dbpedia.org/resource/Category:People']
-------------------------------------------------------------------------------------------------------------------------------
Triple n°5 - {'subject': 'he', 'relation': 'lives in', 'object': 'world of non magical people'}
Subject: he - http://dbpedia.org/resource/He
Relation: live - inhabit or live in; be an inhabitant of
Object: world of non magical people - ['http://dbpedia.org/resource/World', 'http://dbpedia.org/resource/Of', 'http://dbpedia.org/resource/Non', 'http://dbpedia.org/resource/Magical', 'http://dbpedia.org/resource/Category:People']
-------------------------------------------------------------------------------------------------------------------------------
Triple n°6 - {'subject': 'he', 'relation': 'lives in', 'object': 'ordinary world of non magical people known'}
Subject: he - http://dbpedia.org/resource/He
Relation: live - inhabit or live in; be an inhabitant of
Object: ordinary world of non magical people known - ['http://dbpedia.org/resource/Ordinary', 'http://dbpedia.org/resource/World', 'http://dbpedia.org/resource/Of', 'http://dbpedia.org/resource/Non', 'http://dbpedia.org/resource/Magical', 'http://dbpedia.org/resource/Category:People', 'http://dbpedia.org/resource/Known']
-------------------------------------------------------------------------------------------------------------------------------
Triple n°7 - {'subject': 'he', 'relation': 'lives in', 'object': 'world of people known as Muggles'}
Subject: he - http://dbpedia.org/resource/He
Relation: live - inhabit or live in; be an inhabitant of
Object: world of people known as Muggles - ['http://dbpedia.org/resource/World', 'http://dbpedia.org/resource/Of', 'http://dbpedia.org/resource/Category:People', 'http://dbpedia.org/resource/Known', 'http://dbpedia.org/resource/Category:As', 'http://dbpedia.org/resource/Muggles']
-------------------------------------------------------------------------------------------------------------------------------
Triple n°8 - {'subject': 'he', 'relation': 'lives in', 'object': 'world of non magical people known'}
Subject: he - http://dbpedia.org/resource/He
Relation: live - inhabit or live in; be an inhabitant of
Object: world of non magical people known - ['http://dbpedia.org/resource/World', 'http://dbpedia.org/resource/Of', 'http://dbpedia.org/resource/Non', 'http://dbpedia.org/resource/Magical', 'http://dbpedia.org/resource/Category:People', 'http://dbpedia.org/resource/Known']
-------------------------------------------------------------------------------------------------------------------------------
Triple n°9 - {'subject': 'he', 'relation': 'lives in', 'object': 'world of magical people'}
Subject: he - http://dbpedia.org/resource/He
Relation: live - inhabit or live in; be an inhabitant of
Object: world of magical people - ['http://dbpedia.org/resource/World', 'http://dbpedia.org/resource/Of', 'http://dbpedia.org/resource/Magical', 'http://dbpedia.org/resource/Category:People']
-------------------------------------------------------------------------------------------------------------------------------
Triple n°10 - {'subject': 'he', 'relation': 'lives in', 'object': 'ordinary world of non people known'}
Subject: he - http://dbpedia.org/resource/He
Relation: live - inhabit or live in; be an inhabitant of
Object: ordinary world of non people known - ['http://dbpedia.org/resource/Ordinary', 'http://dbpedia.org/resource/World', 'http://dbpedia.org/resource/Of', 'http://dbpedia.org/resource/Non', 'http://dbpedia.org/resource/Category:People', 'http://dbpedia.org/resource/Known']
-------------------------------------------------------------------------------------------------------------------------------
Triple n°11 - {'subject': 'he', 'relation': 'lives in', 'object': 'world of magical people known'}
Subject: he - http://dbpedia.org/resource/He
Relation: live - inhabit or live in; be an inhabitant of
Object: world of magical people known - ['http://dbpedia.org/resource/World', 'http://dbpedia.org/resource/Of', 'http://dbpedia.org/resource/Magical', 'http://dbpedia.org/resource/Category:People', 'http://dbpedia.org/resource/Known']
-------------------------------------------------------------------------------------------------------------------------------
Triple n°12 - {'subject': 'character', 'relation': 'discovers at', 'object': 'age'}
Subject: character - http://dbpedia.org/resource/Character
Relation: discover - discover or determine the existence, presence, or fact of
Object: age - http://dbpedia.org/resource/Age
-------------------------------------------------------------------------------------------------------------------------------
Triple n°13 - {'subject': 'he', 'relation': 'lives in', 'object': 'ordinary world of non magical people'}
Subject: he - http://dbpedia.org/resource/He
Relation: live - inhabit or live in; be an inhabitant of
Object: ordinary world of non magical people - ['http://dbpedia.org/resource/Ordinary', 'http://dbpedia.org/resource/World', 'http://dbpedia.org/resource/Of', 'http://dbpedia.org/resource/Non', 'http://dbpedia.org/resource/Magical', 'http://dbpedia.org/resource/Category:People']
-------------------------------------------------------------------------------------------------------------------------------
Triple n°14 - {'subject': 'he', 'relation': 'lives in', 'object': 'ordinary world of non magical people known as Muggles'}
Subject: he - http://dbpedia.org/resource/He
Relation: live - inhabit or live in; be an inhabitant of
Object: ordinary world of non magical people known as Muggles - ['http://dbpedia.org/resource/Ordinary', 'http://dbpedia.org/resource/World', 'http://dbpedia.org/resource/Of', 'http://dbpedia.org/resource/Non', 'http://dbpedia.org/resource/Magical', 'http://dbpedia.org/resource/Category:People', 'http://dbpedia.org/resource/Known', 'http://dbpedia.org/resource/Category:As', 'http://dbpedia.org/resource/Muggles']
-------------------------------------------------------------------------------------------------------------------------------
Triple n°15 - {'subject': 'he', 'relation': 'lives in', 'object': 'world of non people'}
Subject: he - http://dbpedia.org/resource/He
Relation: live - inhabit or live in; be an inhabitant of
Object: world of non people - ['http://dbpedia.org/resource/World', 'http://dbpedia.org/resource/Of', 'http://dbpedia.org/resource/Non', 'http://dbpedia.org/resource/Category:People']
-------------------------------------------------------------------------------------------------------------------------------
Triple n°16 - {'subject': 'central character', 'relation': 'is in', 'object': 'series'}
Subject: central character - http://dbpedia.org/resource/Central_character
Object: series - http://dbpedia.org/resource/Series
-------------------------------------------------------------------------------------------------------------------------------
Triple n°17 - {'subject': 'he', 'relation': 'lives in', 'object': 'world of non people known'}
Subject: he - http://dbpedia.org/resource/He
Relation: live - inhabit or live in; be an inhabitant of
Object: world of non people known - ['http://dbpedia.org/resource/World', 'http://dbpedia.org/resource/Of', 'http://dbpedia.org/resource/Non', 'http://dbpedia.org/resource/Category:People', 'http://dbpedia.org/resource/Known']
-------------------------------------------------------------------------------------------------------------------------------
Triple n°18 - {'subject': 'he', 'relation': 'lives in', 'object': 'ordinary world of non people'}
Subject: he - http://dbpedia.org/resource/He
Relation: live - inhabit or live in; be an inhabitant of
Object: ordinary world of non people - ['http://dbpedia.org/resource/Ordinary', 'http://dbpedia.org/resource/World', 'http://dbpedia.org/resource/Of', 'http://dbpedia.org/resource/Non', 'http://dbpedia.org/resource/Category:People']
-------------------------------------------------------------------------------------------------------------------------------
Triple n°19 - {'subject': 'character', 'relation': 'discovers at', 'object': 'age of eleven'}
Subject: character - http://dbpedia.org/resource/Character
Relation: discover - discover or determine the existence, presence, or fact of
Object: age of eleven - ['http://dbpedia.org/resource/Age', 'http://dbpedia.org/resource/Of', 'http://dbpedia.org/resource/Eleven']
-------------------------------------------------------------------------------------------------------------------------------
Triple n°20 - {'subject': 'he', 'relation': 'lives in', 'object': 'ordinary world of people known'}
Subject: he - http://dbpedia.org/resource/He
Relation: live - inhabit or live in; be an inhabitant of
Object: ordinary world of people known - ['http://dbpedia.org/resource/Ordinary', 'http://dbpedia.org/resource/World', 'http://dbpedia.org/resource/Of', 'http://dbpedia.org/resource/Category:People', 'http://dbpedia.org/resource/Known']
-------------------------------------------------------------------------------------------------------------------------------
Triple n°21 - {'subject': 'he', 'relation': 'lives in', 'object': 'ordinary world of people'}
Subject: he - http://dbpedia.org/resource/He
Relation: live - inhabit or live in; be an inhabitant of
Object: ordinary world of people - ['http://dbpedia.org/resource/Ordinary', 'http://dbpedia.org/resource/World', 'http://dbpedia.org/resource/Of', 'http://dbpedia.org/resource/Category:People']
-------------------------------------------------------------------------------------------------------------------------------
Triple n°22 - {'subject': 'character', 'relation': 'is', 'object': 'Harry Potter'}
Subject: character - http://dbpedia.org/resource/Character
Relation: be - have the quality of being; (copula, used with an adjective or a predicate noun)
Object: Harry Potter - http://dbpedia.org/resource/Harry_potter
-------------------------------------------------------------------------------------------------------------------------------
Triple n°23 - {'subject': 'he', 'relation': 'lives in', 'object': 'world of people'}
Subject: he - http://dbpedia.org/resource/He
Relation: live - inhabit or live in; be an inhabitant of
Object: world of people - ['http://dbpedia.org/resource/World', 'http://dbpedia.org/resource/Of', 'http://dbpedia.org/resource/Category:People']
-------------------------------------------------------------------------------------------------------------------------------
Triple n°24 - {'subject': 'he', 'relation': 'lives in', 'object': 'world'}
Subject: he - http://dbpedia.org/resource/He
Relation: live - inhabit or live in; be an inhabitant of
Object: world - http://dbpedia.org/resource/World
-------------------------------------------------------------------------------------------------------------------------------
Triple n°25 - {'subject': 'he', 'relation': 'lives in', 'object': 'world of non people known as Muggles'}
Subject: he - http://dbpedia.org/resource/He
Relation: live - inhabit or live in; be an inhabitant of
Object: world of non people known as Muggles - ['http://dbpedia.org/resource/World', 'http://dbpedia.org/resource/Of', 'http://dbpedia.org/resource/Non', 'http://dbpedia.org/resource/Category:People', 'http://dbpedia.org/resource/Known', 'http://dbpedia.org/resource/Category:As', 'http://dbpedia.org/resource/Muggles']
-------------------------------------------------------------------------------------------------------------------------------
Triple n°26 - {'subject': 'he', 'relation': 'lives in', 'object': 'world of people known'}
Subject: he - http://dbpedia.org/resource/He
Relation: live - inhabit or live in; be an inhabitant of
Object: world of people known - ['http://dbpedia.org/resource/World', 'http://dbpedia.org/resource/Of', 'http://dbpedia.org/resource/Category:People', 'http://dbpedia.org/resource/Known']
-------------------------------------------------------------------------------------------------------------------------------
Triple n°27 - {'subject': 'he', 'relation': 'is', 'object': 'wizard'}
Subject: he - http://dbpedia.org/resource/He
Relation: be - have the quality of being; (copula, used with an adjective or a predicate noun)
Object: wizard - http://dbpedia.org/resource/Wizard
-------------------------------------------------------------------------------------------------------------------------------
Triple n°28 - {'subject': 'he', 'relation': 'lives in', 'object': 'world of non magical people known as Muggles'}
Subject: he - http://dbpedia.org/resource/He
Relation: live - inhabit or live in; be an inhabitant of
Object: world of non magical people known as Muggles - ['http://dbpedia.org/resource/World', 'http://dbpedia.org/resource/Of', 'http://dbpedia.org/resource/Non', 'http://dbpedia.org/resource/Magical', 'http://dbpedia.org/resource/Category:People', 'http://dbpedia.org/resource/Known', 'http://dbpedia.org/resource/Category:As', 'http://dbpedia.org/resource/Muggles']
-------------------------------------------------------------------------------------------------------------------------------
Triple n°29 - {'subject': 'central character', 'relation': 'discovers at', 'object': 'age of eleven'}
Subject: central character - http://dbpedia.org/resource/Central_character
Relation: discover - discover or determine the existence, presence, or fact of
Object: age of eleven - ['http://dbpedia.org/resource/Age', 'http://dbpedia.org/resource/Of', 'http://dbpedia.org/resource/Eleven']
-------------------------------------------------------------------------------------------------------------------------------
Triple n°30 - {'subject': 'he', 'relation': 'lives in', 'object': 'ordinary world of magical people known'}
Subject: he - http://dbpedia.org/resource/He
Relation: live - inhabit or live in; be an inhabitant of
Object: ordinary world of magical people known - ['http://dbpedia.org/resource/Ordinary', 'http://dbpedia.org/resource/World', 'http://dbpedia.org/resource/Of', 'http://dbpedia.org/resource/Magical', 'http://dbpedia.org/resource/Category:People', 'http://dbpedia.org/resource/Known']
-------------------------------------------------------------------------------------------------------------------------------
Triple n°31 - {'subject': 'he', 'relation': 'lives in', 'object': 'ordinary world of non people known as Muggles'}
Subject: he - http://dbpedia.org/resource/He
Relation: live - inhabit or live in; be an inhabitant of
Object: ordinary world of non people known as Muggles - ['http://dbpedia.org/resource/Ordinary', 'http://dbpedia.org/resource/World', 'http://dbpedia.org/resource/Of', 'http://dbpedia.org/resource/Non', 'http://dbpedia.org/resource/Category:People', 'http://dbpedia.org/resource/Known', 'http://dbpedia.org/resource/Category:As', 'http://dbpedia.org/resource/Muggles']
-------------------------------------------------------------------------------------------------------------------------------
Triple n°32 - {'subject': 'central character', 'relation': 'discovers at', 'object': 'age'}
Subject: central character - http://dbpedia.org/resource/Central_character
Relation: discover - discover or determine the existence, presence, or fact of
Object: age - http://dbpedia.org/resource/Age
-------------------------------------------------------------------------------------------------------------------------------
Triple n°33 - {'subject': 'he', 'relation': 'lives in', 'object': 'ordinary world of people known as Muggles'}
Subject: he - http://dbpedia.org/resource/He
Relation: live - inhabit or live in; be an inhabitant of
Object: ordinary world of people known as Muggles - ['http://dbpedia.org/resource/Ordinary', 'http://dbpedia.org/resource/World', 'http://dbpedia.org/resource/Of', 'http://dbpedia.org/resource/Category:People', 'http://dbpedia.org/resource/Known', 'http://dbpedia.org/resource/Category:As', 'http://dbpedia.org/resource/Muggles']
-------------------------------------------------------------------------------------------------------------------------------
Triple n°34 - {'subject': 'Harry Potter', 'relation': 'Surrey with', 'object': 'his aunt'}
Subject: Harry Potter - http://dbpedia.org/resource/Harry_potter
Object: his aunt - ['http://dbpedia.org/resource/His', 'http://dbpedia.org/resource/Aunt']
-------------------------------------------------------------------------------------------------------------------------------
Triple n°35 - {'subject': 'Surrey', 'relation': 'is with', 'object': 'his aunt'}
Subject: Surrey - http://dbpedia.org/resource/Surrey
Object: his aunt - ['http://dbpedia.org/resource/His', 'http://dbpedia.org/resource/Aunt']
-------------------------------------------------------------------------------------------------------------------------------
Triple n°36 - {'subject': 'he', 'relation': 'lives in', 'object': 'world of magical people known as Muggles'}
Subject: he - http://dbpedia.org/resource/He
Relation: live - inhabit or live in; be an inhabitant of
Object: world of magical people known as Muggles - ['http://dbpedia.org/resource/World', 'http://dbpedia.org/resource/Of', 'http://dbpedia.org/resource/Magical', 'http://dbpedia.org/resource/Category:People', 'http://dbpedia.org/resource/Known', 'http://dbpedia.org/resource/Category:As', 'http://dbpedia.org/resource/Muggles']
-------------------------------------------------------------------------------------------------------------------------------
Triple n°37 - {'subject': 'he', 'relation': 'lives in', 'object': 'ordinary world'}
Subject: he - http://dbpedia.org/resource/He
Relation: live - inhabit or live in; be an inhabitant of
Object: ordinary world - http://dbpedia.org/resource/Ordinary_world
-------------------------------------------------------------------------------------------------------------------------------
Triple n°38 - {'subject': 'wizarding world', 'relation': 'exists', 'object': 'hidden'}
Subject: wizarding world - http://dbpedia.org/resource/Wizarding_world
Relation: exist - have an existence, be extant
Object: hidden - http://dbpedia.org/resource/Hidden
-------------------------------------------------------------------------------------------------------------------------------
Triple n°39 - {'subject': 'world', 'relation': 'exists parallel', 'object': 'hidden'}
Subject: world - http://dbpedia.org/resource/World
Relation: exist - have an existence, be extant
Object: hidden - http://dbpedia.org/resource/Hidden
-------------------------------------------------------------------------------------------------------------------------------
Triple n°40 - {'subject': 'wizarding world', 'relation': 'exists', 'object': 'parallel to Muggle world'}
Subject: wizarding world - http://dbpedia.org/resource/Wizarding_world
Relation: exist - have an existence, be extant
Object: parallel to Muggle world - ['http://dbpedia.org/resource/Parallel', 'http://dbpedia.org/resource/To', 'http://dbpedia.org/resource/Muggle', 'http://dbpedia.org/resource/World']
-------------------------------------------------------------------------------------------------------------------------------
Triple n°41 - {'subject': 'world', 'relation': 'exists', 'object': 'parallel to Muggle world'}
Subject: world - http://dbpedia.org/resource/World
Relation: exist - have an existence, be extant
Object: parallel to Muggle world - ['http://dbpedia.org/resource/Parallel', 'http://dbpedia.org/resource/To', 'http://dbpedia.org/resource/Muggle', 'http://dbpedia.org/resource/World']
-------------------------------------------------------------------------------------------------------------------------------
Triple n°42 - {'subject': 'world', 'relation': 'exists', 'object': 'parallel'}
Subject: world - http://dbpedia.org/resource/World
Relation: exist - have an existence, be extant
Object: parallel - http://dbpedia.org/resource/Parallel
-------------------------------------------------------------------------------------------------------------------------------
Triple n°43 - {'subject': 'wizarding world', 'relation': 'exists', 'object': 'parallel'}
Subject: wizarding world - http://dbpedia.org/resource/Wizarding_world
Relation: exist - have an existence, be extant
Object: parallel - http://dbpedia.org/resource/Parallel
-------------------------------------------------------------------------------------------------------------------------------
Triple n°44 - {'subject': 'wizarding world', 'relation': 'exists parallel', 'object': 'hidden'}
Subject: wizarding world - http://dbpedia.org/resource/Wizarding_world
Relation: exist - have an existence, be extant
Object: hidden - http://dbpedia.org/resource/Hidden
-------------------------------------------------------------------------------------------------------------------------------
Triple n°45 - {'subject': 'world', 'relation': 'exists', 'object': 'hidden'}
Subject: world - http://dbpedia.org/resource/World
Relation: exist - have an existence, be extant
Object: hidden - http://dbpedia.org/resource/Hidden
-------------------------------------------------------------------------------------------------------------------------------
Triple n°46 - {'subject': 'His ability', 'relation': 'is', 'object': 'inborn'}
Subject: His ability - ['http://dbpedia.org/resource/His', 'http://dbpedia.org/resource/Ability']
Relation: be - have the quality of being; (copula, used with an adjective or a predicate noun)
Object: inborn - []
-------------------------------------------------------------------------------------------------------------------------------
Triple n°47 - {'subject': 'children', 'relation': 'attend', 'object': 'exclusive schools'}
Subject: children - http://dbpedia.org/resource/Children
Relation: attend - be present at (meetings, church services, university), etc.
Object: exclusive schools - ['http://dbpedia.org/resource/Exclusive', 'http://dbpedia.org/resource/Schools']
-------------------------------------------------------------------------------------------------------------------------------
Triple n°48 - {'subject': 'children', 'relation': 'attend', 'object': 'schools'}
Subject: children - http://dbpedia.org/resource/Children
Relation: attend - be present at (meetings, church services, university), etc.
Object: schools - http://dbpedia.org/resource/Schools
-------------------------------------------------------------------------------------------------------------------------------
Triple n°49 - {'subject': 'His magical ability', 'relation': 'is', 'object': 'inborn'}
Subject: His magical ability - ['http://dbpedia.org/resource/His', 'http://dbpedia.org/resource/Magical', 'http://dbpedia.org/resource/Ability']
Relation: be - have the quality of being; (copula, used with an adjective or a predicate noun)
Object: inborn - []
-------------------------------------------------------------------------------------------------------------------------------
Triple n°50 - {'subject': 'children', 'relation': 'is with', 'object': 'such abilities'}
Subject: children - http://dbpedia.org/resource/Children
Object: such abilities - ['http://dbpedia.org/resource/Such', 'http://dbpedia.org/resource/Abilities']
-------------------------------------------------------------------------------------------------------------------------------
Triple n°51 - {'subject': 'children', 'relation': 'attend', 'object': 'magic schools'}
Subject: children - http://dbpedia.org/resource/Children
Relation: attend - be present at (meetings, church services, university), etc.
Object: magic schools - ['http://dbpedia.org/resource/Category:Magic', 'http://dbpedia.org/resource/Schools']
-------------------------------------------------------------------------------------------------------------------------------
Triple n°52 - {'subject': 'children', 'relation': 'are', 'object': 'invited'}
Subject: children - http://dbpedia.org/resource/Children
Relation: be - have the quality of being; (copula, used with an adjective or a predicate noun)
Object: invited - http://dbpedia.org/resource/Invited
-------------------------------------------------------------------------------------------------------------------------------
Triple n°53 - {'subject': 'children', 'relation': 'attend', 'object': 'exclusive magic schools'}
Subject: children - http://dbpedia.org/resource/Children
Relation: attend - be present at (meetings, church services, university), etc.
Object: exclusive magic schools - ['http://dbpedia.org/resource/Exclusive', 'http://dbpedia.org/resource/Category:Magic', 'http://dbpedia.org/resource/Schools']
-------------------------------------------------------------------------------------------------------------------------------
Triple n°54 - {'subject': 'Hogwarts School', 'relation': 'academy in', 'object': 'Scotland'}
Subject: Hogwarts School - ['http://dbpedia.org/resource/Hogwarts', 'http://dbpedia.org/resource/School']
Object: Scotland - http://dbpedia.org/resource/Scotland
-------------------------------------------------------------------------------------------------------------------------------
Triple n°55 - {'subject': 'Harry', 'relation': 'student at', 'object': 'Hogwarts School of Witchcraft'}
Subject: Harry - http://dbpedia.org/resource/Harry
Object: Hogwarts School of Witchcraft - ['http://dbpedia.org/resource/Hogwarts', 'http://dbpedia.org/resource/School', 'http://dbpedia.org/resource/Of', 'http://dbpedia.org/resource/Witchcraft']
-------------------------------------------------------------------------------------------------------------------------------
Triple n°56 - {'subject': 'Harry', 'relation': 'student at', 'object': 'Hogwarts School'}
Subject: Harry - http://dbpedia.org/resource/Harry
Object: Hogwarts School - ['http://dbpedia.org/resource/Hogwarts', 'http://dbpedia.org/resource/School']
-------------------------------------------------------------------------------------------------------------------------------
Triple n°57 - {'subject': 'wizarding academy', 'relation': 'is in', 'object': 'Scotland'}
Subject: wizarding academy - []
Object: Scotland - http://dbpedia.org/resource/Scotland
-------------------------------------------------------------------------------------------------------------------------------
Triple n°58 - {'subject': 'Harry', 'relation': 'student at', 'object': 'wizarding academy'}
Subject: Harry - http://dbpedia.org/resource/Harry
Object: wizarding academy - []
-------------------------------------------------------------------------------------------------------------------------------
Triple n°59 - {'subject': 'Harry', 'relation': 'becomes', 'object': 'student at Hogwarts School'}
Subject: Harry - http://dbpedia.org/resource/Harry
Relation: become - enter or assume a certain state or condition
Object: student at Hogwarts School - ['http://dbpedia.org/resource/Student', 'http://dbpedia.org/resource/At', 'http://dbpedia.org/resource/Hogwarts', 'http://dbpedia.org/resource/School']
-------------------------------------------------------------------------------------------------------------------------------
Triple n°60 - {'subject': 'Harry', 'relation': 'student at', 'object': 'academy'}
Subject: Harry - http://dbpedia.org/resource/Harry
Object: academy - http://dbpedia.org/resource/Academy
-------------------------------------------------------------------------------------------------------------------------------
Triple n°61 - {'subject': 'Harry', 'relation': 'becomes', 'object': 'student at Hogwarts School of Witchcraft'}
Subject: Harry - http://dbpedia.org/resource/Harry
Relation: become - enter or assume a certain state or condition
Object: student at Hogwarts School of Witchcraft - ['http://dbpedia.org/resource/Student', 'http://dbpedia.org/resource/At', 'http://dbpedia.org/resource/Hogwarts', 'http://dbpedia.org/resource/School', 'http://dbpedia.org/resource/Of', 'http://dbpedia.org/resource/Witchcraft']
-------------------------------------------------------------------------------------------------------------------------------
Triple n°62 - {'subject': 'Harry', 'relation': 'student at', 'object': 'academy in Scotland'}
Subject: Harry - http://dbpedia.org/resource/Harry
Object: academy in Scotland - ['http://dbpedia.org/resource/Academy', 'http://dbpedia.org/resource/In', 'http://dbpedia.org/resource/Scotland']
-------------------------------------------------------------------------------------------------------------------------------
Triple n°63 - {'subject': 'Harry', 'relation': 'becomes', 'object': 'student'}
Subject: Harry - http://dbpedia.org/resource/Harry
Relation: become - enter or assume a certain state or condition
Object: student - http://dbpedia.org/resource/Student
-------------------------------------------------------------------------------------------------------------------------------
Triple n°64 - {'subject': 'events', 'relation': 'is in', 'object': 'series'}
Subject: events - http://dbpedia.org/resource/Events
Object: series - http://dbpedia.org/resource/Series
-------------------------------------------------------------------------------------------------------------------------------
Triple n°65 - {'subject': 'Witchcraft', 'relation': 'of School is', 'object': 'wizarding academy in Scotland'}
Subject: Witchcraft - http://dbpedia.org/resource/Witchcraft
Object: wizarding academy in Scotland - []
-------------------------------------------------------------------------------------------------------------------------------
Triple n°66 - {'subject': 'Harry', 'relation': 'student at', 'object': 'wizarding academy in Scotland'}
Subject: Harry - http://dbpedia.org/resource/Harry
Object: wizarding academy in Scotland - []
-------------------------------------------------------------------------------------------------------------------------------
Triple n°67 - {'subject': 'he', 'relation': 'overcome', 'object': 'problems'}
Subject: he - http://dbpedia.org/resource/He
Relation: overcome - win a victory over
Object: problems - http://dbpedia.org/resource/Problems
-------------------------------------------------------------------------------------------------------------------------------
Triple n°68 - {'subject': 'Harry', 'relation': 'develops through', 'object': 'his adolescence'}
Subject: Harry - http://dbpedia.org/resource/Harry
Relation: develop - make something new, such as a product or a mental or artistic creation
Object: his adolescence - ['http://dbpedia.org/resource/His', 'http://dbpedia.org/resource/Adolescence']
-------------------------------------------------------------------------------------------------------------------------------
Triple n°69 - {'subject': 'novel', 'relation': 'chronicles', 'object': 's life'}
Subject: novel - http://dbpedia.org/property/novel
Relation: chronicle - record in chronological order; make a historical record
Object: s life - ['http://dbpedia.org/resource/S', 'http://dbpedia.org/resource/Life']
-------------------------------------------------------------------------------------------------------------------------------
Triple n°70 - {'subject': 'novel', 'relation': 'chronicles s life during', 'object': 'period'}
Subject: novel - http://dbpedia.org/property/novel
Relation: chronicle - record in chronological order; make a historical record
Relation: chronicles sNo definition found!
Object: period - http://dbpedia.org/resource/Period
-------------------------------------------------------------------------------------------------------------------------------
Triple n°71 - {'subject': 'novel', 'relation': 'chronicles s life from', 'object': '1991 to 1998'}
Subject: novel - http://dbpedia.org/property/novel
Relation: chronicle - record in chronological order; make a historical record
Relation: chronicles sNo definition found!
Object: 1991 to 1998 - ['http://dbpedia.org/resource/1991', 'http://dbpedia.org/resource/To', 'http://dbpedia.org/resource/1998']
-------------------------------------------------------------------------------------------------------------------------------
Triple n°72 - {'subject': 'one year', 'relation': 'is in', 'object': 'Harry'}
Subject: one year - ['http://dbpedia.org/resource/One', 'http://dbpedia.org/resource/Year']
Object: Harry - http://dbpedia.org/resource/Harry
-------------------------------------------------------------------------------------------------------------------------------
Triple n°73 - {'subject': 'environment Rowling', 'relation': 'is', 'object': 'connected'}
Subject: environment Rowling - ['http://dbpedia.org/resource/Environment', 'http://dbpedia.org/resource/Rowling']
Relation: be - have the quality of being; (copula, used with an adjective or a predicate noun)
Object: connected - http://dbpedia.org/resource/Connected
-------------------------------------------------------------------------------------------------------------------------------
Triple n°74 - {'subject': 'environment Rowling', 'relation': 'is', 'object': 'intimately connected'}
Subject: environment Rowling - ['http://dbpedia.org/resource/Environment', 'http://dbpedia.org/resource/Rowling']
Relation: be - have the quality of being; (copula, used with an adjective or a predicate noun)
Object: intimately connected - ['http://dbpedia.org/resource/Intimately', 'http://dbpedia.org/resource/Connected']
-------------------------------------------------------------------------------------------------------------------------------
Triple n°75 - {'subject': 'environment Rowling', 'relation': 'is intimately connected to', 'object': 'reality'}
Subject: environment Rowling - ['http://dbpedia.org/resource/Environment', 'http://dbpedia.org/resource/Rowling']
Relation: intimately connectedNo definition found!
Relation: connect - connect, fasten, or put together two or more pieces
Object: reality - http://dbpedia.org/resource/Category:Reality
-------------------------------------------------------------------------------------------------------------------------------
Triple n°76 - {'subject': 'environment Rowling', 'relation': 'is connected to', 'object': 'reality'}
Subject: environment Rowling - ['http://dbpedia.org/resource/Environment', 'http://dbpedia.org/resource/Rowling']
Relation: connect - connect, fasten, or put together two or more pieces
Object: reality - http://dbpedia.org/resource/Category:Reality
-------------------------------------------------------------------------------------------------------------------------------
Triple n°77 - {'subject': 'community', 'relation': 'is', 'object': 'inspired'}
Subject: community - http://dbpedia.org/resource/Community
Relation: be - have the quality of being; (copula, used with an adjective or a predicate noun)
Object: inspired - http://dbpedia.org/resource/Inspired
-------------------------------------------------------------------------------------------------------------------------------
Triple n°78 - {'subject': 'wildlife', 'relation': 'objects such as', 'object': 'wands'}
Subject: wildlife - http://dbpedia.org/resource/Wildlife
Object: wands - http://dbpedia.org/resource/Category:Wands
-------------------------------------------------------------------------------------------------------------------------------
Triple n°79 - {'subject': 'community', 'relation': 'incorporating', 'object': 'objects'}
Subject: community - http://dbpedia.org/resource/Community
Relation: incorporate - make into a whole or make part of a whole
Object: objects - http://dbpedia.org/resource/Objects
-------------------------------------------------------------------------------------------------------------------------------
Triple n°80 - {'subject': 'wildlife', 'relation': 'objects such as', 'object': 'magic wands'}
Subject: wildlife - http://dbpedia.org/resource/Wildlife
Object: magic wands - ['http://dbpedia.org/resource/Category:Magic', 'http://dbpedia.org/resource/Category:Wands']
-------------------------------------------------------------------------------------------------------------------------------
Triple n°81 - {'subject': 'world', 'relation': 'contains', 'object': 'magical versions of elements of everyday life'}
Subject: world - http://dbpedia.org/resource/World
Relation: contain - include or contain; have as a component
Object: magical versions of elements of everyday life - ['http://dbpedia.org/resource/Magical', 'http://dbpedia.org/resource/Versions', 'http://dbpedia.org/resource/Of', 'http://dbpedia.org/resource/Elements', 'http://dbpedia.org/resource/Of', 'http://dbpedia.org/resource/Everyday', 'http://dbpedia.org/resource/Life']
-------------------------------------------------------------------------------------------------------------------------------
Triple n°82 - {'subject': 'world', 'relation': 'contains', 'object': 'versions of elements'}
Subject: world - http://dbpedia.org/resource/World
Relation: contain - include or contain; have as a component
Object: versions of elements - ['http://dbpedia.org/resource/Versions', 'http://dbpedia.org/resource/Of', 'http://dbpedia.org/resource/Elements']
-------------------------------------------------------------------------------------------------------------------------------
Triple n°83 - {'subject': 'wizarding world', 'relation': 'contains', 'object': 'versions of ordinary elements of life'}
Subject: wizarding world - http://dbpedia.org/resource/Wizarding_world
Relation: contain - include or contain; have as a component
Object: versions of ordinary elements of life - ['http://dbpedia.org/resource/Versions', 'http://dbpedia.org/resource/Of', 'http://dbpedia.org/resource/Ordinary', 'http://dbpedia.org/resource/Elements', 'http://dbpedia.org/resource/Of', 'http://dbpedia.org/resource/Life']
-------------------------------------------------------------------------------------------------------------------------------
Triple n°84 - {'subject': 'world', 'relation': 'exists parallel', 'object': 'universe'}
Subject: world - http://dbpedia.org/resource/World
Relation: exist - have an existence, be extant
Object: universe - http://dbpedia.org/resource/Category:Universe
-------------------------------------------------------------------------------------------------------------------------------
Triple n°85 - {'subject': 'world', 'relation': 'exists', 'object': 'alternate universe'}
Subject: world - http://dbpedia.org/resource/World
Relation: exist - have an existence, be extant
Object: alternate universe - http://dbpedia.org/resource/Alternate_universe
-------------------------------------------------------------------------------------------------------------------------------
Triple n°86 - {'subject': 'fantasy land', 'relation': 'is', 'object': 'universe'}
Subject: fantasy land - http://dbpedia.org/resource/Fantasy_land
Relation: be - have the quality of being; (copula, used with an adjective or a predicate noun)
Object: universe - http://dbpedia.org/resource/Category:Universe
-------------------------------------------------------------------------------------------------------------------------------
Triple n°87 - {'subject': 'wizarding world', 'relation': 'contains', 'object': 'versions of elements of everyday life'}
Subject: wizarding world - http://dbpedia.org/resource/Wizarding_world
Relation: contain - include or contain; have as a component
Object: versions of elements of everyday life - ['http://dbpedia.org/resource/Versions', 'http://dbpedia.org/resource/Of', 'http://dbpedia.org/resource/Elements', 'http://dbpedia.org/resource/Of', 'http://dbpedia.org/resource/Everyday', 'http://dbpedia.org/resource/Life']
-------------------------------------------------------------------------------------------------------------------------------
Triple n°88 - {'subject': 'wizarding world', 'relation': 'contains', 'object': 'magical versions of elements of everyday life'}
Subject: wizarding world - http://dbpedia.org/resource/Wizarding_world
Relation: contain - include or contain; have as a component
Object: magical versions of elements of everyday life - ['http://dbpedia.org/resource/Magical', 'http://dbpedia.org/resource/Versions', 'http://dbpedia.org/resource/Of', 'http://dbpedia.org/resource/Elements', 'http://dbpedia.org/resource/Of', 'http://dbpedia.org/resource/Everyday', 'http://dbpedia.org/resource/Life']
-------------------------------------------------------------------------------------------------------------------------------
Triple n°89 - {'subject': 'wizarding world', 'relation': 'exists', 'object': 'parallel to world'}
Subject: wizarding world - http://dbpedia.org/resource/Wizarding_world
Relation: exist - have an existence, be extant
Object: parallel to world - ['http://dbpedia.org/resource/Parallel', 'http://dbpedia.org/resource/To', 'http://dbpedia.org/resource/World']
-------------------------------------------------------------------------------------------------------------------------------
Triple n°90 - {'subject': 'world', 'relation': 'exists', 'object': 'parallel to real world'}
Subject: world - http://dbpedia.org/resource/World
Relation: exist - have an existence, be extant
Object: parallel to real world - ['http://dbpedia.org/resource/Parallel', 'http://dbpedia.org/resource/To', 'http://dbpedia.org/property/real', 'http://dbpedia.org/resource/World']
-------------------------------------------------------------------------------------------------------------------------------
Triple n°91 - {'subject': 'world', 'relation': 'contains', 'object': 'magical versions of elements of life'}
Subject: world - http://dbpedia.org/resource/World
Relation: contain - include or contain; have as a component
Object: magical versions of elements of life - ['http://dbpedia.org/resource/Magical', 'http://dbpedia.org/resource/Versions', 'http://dbpedia.org/resource/Of', 'http://dbpedia.org/resource/Elements', 'http://dbpedia.org/resource/Of', 'http://dbpedia.org/resource/Life']
-------------------------------------------------------------------------------------------------------------------------------
Triple n°92 - {'subject': 'world', 'relation': 'exists parallel', 'object': 'alternate universe'}
Subject: world - http://dbpedia.org/resource/World
Relation: exist - have an existence, be extant
Object: alternate universe - http://dbpedia.org/resource/Alternate_universe
-------------------------------------------------------------------------------------------------------------------------------
Triple n°93 - {'subject': 'world', 'relation': 'contains', 'object': 'magical versions of ordinary elements of everyday life'}
Subject: world - http://dbpedia.org/resource/World
Relation: contain - include or contain; have as a component
Object: magical versions of ordinary elements of everyday life - ['http://dbpedia.org/resource/Magical', 'http://dbpedia.org/resource/Versions', 'http://dbpedia.org/resource/Of', 'http://dbpedia.org/resource/Ordinary', 'http://dbpedia.org/resource/Elements', 'http://dbpedia.org/resource/Of', 'http://dbpedia.org/resource/Everyday', 'http://dbpedia.org/resource/Life']
-------------------------------------------------------------------------------------------------------------------------------
Triple n°94 - {'subject': 'wizarding world', 'relation': 'contains', 'object': 'magical versions of ordinary elements'}
Subject: wizarding world - http://dbpedia.org/resource/Wizarding_world
Relation: contain - include or contain; have as a component
Object: magical versions of ordinary elements - ['http://dbpedia.org/resource/Magical', 'http://dbpedia.org/resource/Versions', 'http://dbpedia.org/resource/Of', 'http://dbpedia.org/resource/Ordinary', 'http://dbpedia.org/resource/Elements']
-------------------------------------------------------------------------------------------------------------------------------
Triple n°95 - {'subject': 'world', 'relation': 'contains', 'object': 'magical versions of ordinary elements of life'}
Subject: world - http://dbpedia.org/resource/World
Relation: contain - include or contain; have as a component
Object: magical versions of ordinary elements of life - ['http://dbpedia.org/resource/Magical', 'http://dbpedia.org/resource/Versions', 'http://dbpedia.org/resource/Of', 'http://dbpedia.org/resource/Ordinary', 'http://dbpedia.org/resource/Elements', 'http://dbpedia.org/resource/Of', 'http://dbpedia.org/resource/Life']
-------------------------------------------------------------------------------------------------------------------------------
Triple n°96 - {'subject': 'world', 'relation': 'exists', 'object': 'universe'}
Subject: world - http://dbpedia.org/resource/World
Relation: exist - have an existence, be extant
Object: universe - http://dbpedia.org/resource/Category:Universe
-------------------------------------------------------------------------------------------------------------------------------
Triple n°97 - {'subject': 'wizarding world', 'relation': 'contains', 'object': 'versions of ordinary elements'}
Subject: wizarding world - http://dbpedia.org/resource/Wizarding_world
Relation: contain - include or contain; have as a component
Object: versions of ordinary elements - ['http://dbpedia.org/resource/Versions', 'http://dbpedia.org/resource/Of', 'http://dbpedia.org/resource/Ordinary', 'http://dbpedia.org/resource/Elements']
-------------------------------------------------------------------------------------------------------------------------------
Triple n°98 - {'subject': 'wizarding world', 'relation': 'contains', 'object': 'magical versions'}
Subject: wizarding world - http://dbpedia.org/resource/Wizarding_world
Relation: contain - include or contain; have as a component
Object: magical versions - ['http://dbpedia.org/resource/Magical', 'http://dbpedia.org/resource/Versions']
-------------------------------------------------------------------------------------------------------------------------------
Triple n°99 - {'subject': 'world', 'relation': 'contains', 'object': 'magical versions'}
Subject: world - http://dbpedia.org/resource/World
Relation: contain - include or contain; have as a component
Object: magical versions - ['http://dbpedia.org/resource/Magical', 'http://dbpedia.org/resource/Versions']
-------------------------------------------------------------------------------------------------------------------------------
Triple n°100 - {'subject': 'world', 'relation': 'exists', 'object': 'parallel'}
Subject: world - http://dbpedia.org/resource/World
Relation: exist - have an existence, be extant
Object: parallel - http://dbpedia.org/resource/Parallel
-------------------------------------------------------------------------------------------------------------------------------
Triple n°101 - {'subject': 'wizarding world', 'relation': 'exists', 'object': 'parallel'}
Subject: wizarding world - http://dbpedia.org/resource/Wizarding_world
Relation: exist - have an existence, be extant
Object: parallel - http://dbpedia.org/resource/Parallel
-------------------------------------------------------------------------------------------------------------------------------
Triple n°102 - {'subject': 'wizarding world', 'relation': 'exists', 'object': 'alternate universe'}
Subject: wizarding world - http://dbpedia.org/resource/Wizarding_world
Relation: exist - have an existence, be extant
Object: alternate universe - http://dbpedia.org/resource/Alternate_universe
-------------------------------------------------------------------------------------------------------------------------------
Triple n°103 - {'subject': 'Surrey', 'relation': 'is in', 'object': 'southeast England'}
Subject: Surrey - http://dbpedia.org/resource/Surrey
Object: southeast England - http://dbpedia.org/resource/Southeast_england
-------------------------------------------------------------------------------------------------------------------------------
Triple n°104 - {'subject': 'world', 'relation': 'contains', 'object': 'versions of elements of everyday life'}