-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathptest.txt
1779 lines (1779 loc) · 328 KB
/
ptest.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
<H> Agremiação_Sportiva_Arapiraquense <R> ground <T> Estádio_Municipal_Coaracy_da_Mata_Fonseca <H> Estádio_Municipal_Coaracy_da_Mata_Fonseca <R> location <T> Arapiraca <H> Agremiação_Sportiva_Arapiraquense <R> nickname <T> "''Alvinegro" <H> Agremiação_Sportiva_Arapiraquense <R> league <T> Campeonato_Brasileiro_Série_C <H> Campeonato_Brasileiro_Série_C <R> country <T> Brazil
<H> Nie_Haisheng <R> birth_date <T> 1964-10-13 <H> Nie_Haisheng <R> occupation <T> Fighter_pilot
<H> MotorSport_Vision <R> city <T> Fawkham
<H> Aleksandr_Prudnikov <R> height <T> 185.0 (centimetres) <H> Aleksandr_Prudnikov <R> club <T> FC_Spartak_Moscow <H> FC_Spartak_Moscow <R> ground <T> Otkrytiye_Arena
<H> Ciudad_Ayala <R> type <T> City <H> Ciudad_Ayala <R> government_type <T> Council-manager_government <H> Ciudad_Ayala <R> population_metro <T> 1777539 <H> Ciudad_Ayala <R> population_density <T> 1604.0 <H> Ciudad_Ayala <R> leader_title <T> "City Manager"
<H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> preceded_by <T> Squeeze_(The_Velvet_Underground_album) <H> Squeeze_(The_Velvet_Underground_album) <R> followed_by <T> 1969:_The_Velvet_Underground_Live
<H> Ciudad_Ayala <R> leader_title <T> Governator <H> Ciudad_Ayala <R> country <T> Mexico <H> Ciudad_Ayala <R> population_density <T> 1604.0 <H> Ciudad_Ayala <R> time_zone <T> Pacific_Daylight_Time <H> Ciudad_Ayala <R> elevation_above_the_sea_level <T> 1147.0
<H> Olga_Bondareva <R> death_date <T> 1991-12-09
<H> Olga_Bondareva <R> death_place <T> Saint_Petersburg <H> Saint_Petersburg <R> founding_date <T> 1703-05-27 <H> Saint_Petersburg <R> area_total <T> 1439.0
<H> Ciudad_Ayala <R> population_density <T> 1604.0
<H> Piotr_Hallmann <R> birth_date <T> 1987-08-25
<H> Darlington <R> area_code <T> 01325
<H> 11th_Mississippi_Infantry_Monument <R> municipality <T> Gettysburg,_Pennsylvania <H> 11th_Mississippi_Infantry_Monument <R> location <T> Adams_County,_Pennsylvania <H> 11th_Mississippi_Infantry_Monument <R> established <T> 2000 <H> 11th_Mississippi_Infantry_Monument <R> category <T> Contributing_property <H> Adams_County,_Pennsylvania <R> has_to_its_west <T> Franklin_County,_Pennsylvania <H> Adams_County,_Pennsylvania <R> has_to_its_north <T> Cumberland_County,_Pennsylvania
<H> Israel <R> official_language <T> Modern_Hebrew
<H> Adolfo_Suárez_Madrid–Barajas_Airport <R> location <T> Alcobendas <H> Adolfo_Suárez_Madrid–Barajas_Airport <R> operating_organisation <T> ENAIRE <H> Adolfo_Suárez_Madrid–Barajas_Airport <R> elevation_above_the_sea_level <T> 610.0
<H> GMA_New_Media <R> founding_date <T> 2000-01-01 <H> GMA_New_Media <R> product <T> Mobile_Applications
<H> Hypermarcas <R> location <T> São_Paulo <H> Hypermarcas <R> location <T> Brazil <H> Hypermarcas <R> industry <T> Pharmaceuticals <H> Brazil <R> area_total <T> 8514837.14 (square kilometres)
<H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> genre <T> Rock_music <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> preceded_by <T> Squeeze_(The_Velvet_Underground_album) <H> Squeeze_(The_Velvet_Underground_album) <R> preceded_by <T> Andy_Warhol's_Velvet_Underground_Featuring_Nico
<H> Acharya_Institute_of_Technology <R> campus <T> "In Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore – 560090." <H> Acharya_Institute_of_Technology <R> country <T> "India" <H> Acharya_Institute_of_Technology <R> director <T> "Dr. G. P. Prabhukumar" <H> Acharya_Institute_of_Technology <R> affiliation <T> Visvesvaraya_Technological_University
<H> Abraham_A._Ribicoff <R> birth_place <T> United_States <H> Abraham_A._Ribicoff <R> death_place <T> United_States <H> United_States <R> ethnic_group <T> African_Americans
<H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> genre <T> Rock_music <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> record_label <T> Polydor_Records <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> runtime <T> 230.05 <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> artist <T> The_Velvet_Underground <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> producer <T> The_Velvet_Underground <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> recorded_in <T> United_States <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> recorded_in <T> St._Louis,_Missouri
<H> The_Fellowship_of_the_Ring <R> literary_genre <T> Fantasy_(genre) <H> The_Fellowship_of_the_Ring <R> publisher <T> George_Allen_&_Unwin
<H> Alan_Shepard <R> birth_place <T> New_Hampshire <H> Alan_Shepard <R> award <T> Distinguished_Service_Medal_(United_States_Navy) <H> Alan_Shepard <R> death_place <T> California
<H> Mermaid_(Train_song) <R> album <T> California_37_(Train_album) <H> Mermaid_(Train_song) <R> producer <T> Espionage_(production_team) <H> Mermaid_(Train_song) <R> followed_by <T> Imagine_(John_Lennon_song)
<H> The_Fellowship_of_the_Ring <R> author <T> J._R._R._Tolkien <H> The_Fellowship_of_the_Ring <R> literary_genre <T> Fantasy_(genre) <H> The_Fellowship_of_the_Ring <R> publisher <T> George_Allen_&_Unwin <H> The_Fellowship_of_the_Ring <R> release_date <T> 1954-07-29 <H> The_Fellowship_of_the_Ring <R> followed_by <T> The_Two_Towers
<H> GMA_New_Media <R> location <T> Philippines <H> GMA_New_Media <R> industry <T> Entertainment
<H> English_Without_Tears <R> writer <T> Terence_Rattigan <H> English_Without_Tears <R> cinematography <T> Bernard_Knowles <H> English_Without_Tears <R> runtime <T> 89.0
<H> Lady_Anne_Monson <R> spouse <T> George_Monson <H> Lady_Anne_Monson <R> professional_field <T> Botany <H> Lady_Anne_Monson <R> death_date <T> 1776-02-18
<H> Abdul_Taib_Mahmud <R> residence <T> "Demak Jaya, Jalan Bako, Kuching, Sarawak" <H> Abdul_Taib_Mahmud <R> party <T> Parti_Pesaka_Bumiputera_Bersatu
<H> Liselotte_Grschebina <R> nationality <T> Israel <H> Israel <R> language <T> Modern_Hebrew <H> Liselotte_Grschebina <R> birth_place <T> Karlsruhe <H> Liselotte_Grschebina <R> training <T> School_of_Applied_Arts_in_Stuttgart <H> Karlsruhe <R> country <T> Germany
<H> Chinabank <R> location <T> Philippines
<H> Mermaid_(Train_song) <R> genre <T> Reggae <H> Mermaid_(Train_song) <R> runtime <T> 3.16 <H> Mermaid_(Train_song) <R> record_label <T> Sony_Music_Entertainment <H> Mermaid_(Train_song) <R> writer <T> Amund_Bjørklund <H> Mermaid_(Train_song) <R> writer <T> Espen_Lind <H> Mermaid_(Train_song) <R> record_label <T> Columbia_Records
<H> It's_Great_to_Be_Young_(1956_film) <R> writer <T> Ted_Willis <H> It's_Great_to_Be_Young_(1956_film) <R> starring <T> Cecil_Parker <H> It's_Great_to_Be_Young_(1956_film) <R> music_composer <T> Louis_Levy
<H> Aaron_Turner <R> genre <T> Post-metal <H> Aaron_Turner <R> origin <T> Massachusetts <H> Aaron_Turner <R> instrument <T> Electric_guitar <H> Aaron_Turner <R> associated_band_/associated_musical_artist <T> Lotus_Eaters_(band) <H> Aaron_Turner <R> active_years_start_year <T> 1995
<H> Adams_County,_Pennsylvania <R> has_to_its_west <T> Franklin_County,_Pennsylvania <H> Adams_County,_Pennsylvania <R> has_to_its_southeast <T> Carroll_County,_Maryland <H> 11th_Mississippi_Infantry_Monument <R> location <T> Adams_County,_Pennsylvania <H> 11th_Mississippi_Infantry_Monument <R> established <T> 2000 <H> 11th_Mississippi_Infantry_Monument <R> category <T> Contributing_property
<H> Nord_(Year_of_No_Light_album) <R> genre <T> Sludge_metal <H> Nord_(Year_of_No_Light_album) <R> genre <T> Post-metal <H> Nord_(Year_of_No_Light_album) <R> producer <T> Year_of_No_Light <H> Nord_(Year_of_No_Light_album) <R> record_label <T> Crucial_Blast <H> Nord_(Year_of_No_Light_album) <R> release_date <T> 2006-09-06
<H> Ciudad_Ayala <R> type <T> City <H> Ciudad_Ayala <R> government_type <T> Council-manager_government <H> Ciudad_Ayala <R> population_metro <T> 1777539 <H> Ciudad_Ayala <R> population_density <T> 1604.0 <H> Ciudad_Ayala <R> leader_title <T> "City Manager" <H> Ciudad_Ayala <R> utc_offset <T> −6
<H> Super_Capers <R> writer <T> Ray_Griggs_(director) <H> Super_Capers <R> director <T> Ray_Griggs_(director) <H> Super_Capers <R> runtime <T> 98.0 <H> Super_Capers <R> budget <T> 2000000.0 <H> Super_Capers <R> starring <T> Tom_Sizemore <H> Super_Capers <R> starring <T> Michael_Rooker
<H> Darinka_Dentcheva <R> influenced_by <T> Andrzej_Piotr_Ruszczyński
<H> McVeagh_of_the_South_Seas <R> writer <T> Harry_Carey_(actor_born_1878) <H> McVeagh_of_the_South_Seas <R> starring <T> Harry_Carey_(actor_born_1878)
<H> Bionico <R> region <T> Guadalajara <H> Bionico <R> country <T> Mexico <H> Mexico <R> currency <T> Mexican_peso <H> Mexico <R> demonym <T> Mexicans <H> Bionico <R> main_ingredient <T> "Chopped Fruits, Sour Cream, Condensed Milk, Granola, Shredded Coconut, Raisins" <H> Bionico <R> course <T> Dessert <H> Dessert <R> dish_variation <T> Cookie
<H> Ciudad_Ayala <R> type <T> City <H> Ciudad_Ayala <R> leader_title <T> "City Manager" <H> Ciudad_Ayala <R> population_density <T> 1604.0
<H> Adolfo_Suárez_Madrid–Barajas_Airport <R> location <T> Alcobendas <H> Adolfo_Suárez_Madrid–Barajas_Airport <R> operating_organisation <T> ENAIRE <H> ENAIRE <R> city <T> Madrid <H> Madrid <R> country <T> Spain <H> Adolfo_Suárez_Madrid–Barajas_Airport <R> runway_length <T> 3500.0
<H> Bionico <R> ingredient <T> Granola <H> Bionico <R> course <T> Dessert <H> Bionico <R> country <T> Mexico <H> Mexico <R> currency <T> Mexican_peso
<H> 1147_Stavropolis <R> epoch <T> 31 July 2016 (JD2457600.5) <H> 1147_Stavropolis <R> periapsis <T> 260855000000.0
<H> Ciudad_Ayala <R> population_density <T> 1604.0 <H> Ciudad_Ayala <R> time_zone <T> Pacific_Daylight_Time
<H> Chinabank <R> net_income <T> 15100000000 <H> Chinabank <R> number_of_employees <T> 5594
<H> Bananaman <R> broadcasted_by <T> BBC <H> Bananaman <R> last_aired <T> "1986-04-15" <H> Bananaman <R> creator <T> Steve_Bright
<H> Bionico <R> course <T> Dessert <H> Bionico <R> region <T> Guadalajara <H> Bionico <R> country <T> Mexico <H> Mexico <R> currency <T> Mexican_peso <H> Mexico <R> demonym <T> Mexicans
<H> Nord_(Year_of_No_Light_album) <R> artist <T> Year_of_No_Light <H> Nord_(Year_of_No_Light_album) <R> followed_by <T> Live_at_Roadburn_2008_(Year_of_No_Light_album)
<H> Alan_Shepard <R> birth_place <T> New_Hampshire <H> Alan_Shepard <R> birth_date <T> "1923-11-18" <H> Alan_Shepard <R> mission <T> Apollo_14 <H> Alan_Shepard <R> death_place <T> California
<H> ALCO_RS-3 <R> engine <T> Four-stroke_engine <H> ALCO_RS-3 <R> cylinder_count <T> 12 <H> ALCO_RS-3 <R> length <T> 17068.8 (millimetres)
<H> Olga_Bondareva <R> birth_name <T> "Olga Nikolaevna Bondareva" <H> Olga_Bondareva <R> birth_date <T> 1937-04-27 <H> Olga_Bondareva <R> known_for <T> Bondareva–Shapley_theorem <H> Olga_Bondareva <R> death_place <T> Saint_Petersburg
<H> The_Fellowship_of_the_Ring <R> author <T> J._R._R._Tolkien <H> The_Fellowship_of_the_Ring <R> literary_genre <T> Fantasy_(genre) <H> The_Fellowship_of_the_Ring <R> release_date <T> 1954-07-29 <H> The_Fellowship_of_the_Ring <R> preceded_by <T> The_Hobbit
<H> Mermaid_(Train_song) <R> writer <T> Amund_Bjørklund <H> Mermaid_(Train_song) <R> record_label <T> Sony_Music_Entertainment <H> Mermaid_(Train_song) <R> writer <T> Stargate_(production_team) <H> Mermaid_(Train_song) <R> producer <T> Espionage_(production_team) <H> Mermaid_(Train_song) <R> followed_by <T> Imagine_(John_Lennon_song)
<H> Nord_(Year_of_No_Light_album) <R> artist <T> Year_of_No_Light <H> Nord_(Year_of_No_Light_album) <R> runtime <T> 58.41 <H> Nord_(Year_of_No_Light_album) <R> release_date <T> 2006-09-06 <H> Nord_(Year_of_No_Light_album) <R> preceded_by <T> Demo_2004_(Year_of_No_Light_album) <H> Nord_(Year_of_No_Light_album) <R> followed_by <T> Live_at_Roadburn_2008_(Year_of_No_Light_album)
<H> 11th_Mississippi_Infantry_Monument <R> municipality <T> Gettysburg,_Pennsylvania <H> 11th_Mississippi_Infantry_Monument <R> location <T> Adams_County,_Pennsylvania <H> 11th_Mississippi_Infantry_Monument <R> country <T> "United States" <H> 11th_Mississippi_Infantry_Monument <R> category <T> Contributing_property <H> Adams_County,_Pennsylvania <R> has_to_its_southeast <T> Carroll_County,_Maryland
<H> Liselotte_Grschebina <R> nationality <T> Israel <H> Liselotte_Grschebina <R> birth_place <T> German_Empire <H> Liselotte_Grschebina <R> death_place <T> Israel <H> Liselotte_Grschebina <R> death_date <T> 1994-06-14
<H> AmeriGas <R> city <T> King_of_Prussia,_Pennsylvania <H> AmeriGas <R> region_served <T> United_States <H> AmeriGas <R> country <T> United_States <H> AmeriGas <R> operating_income <T> 380700000 <H> AmeriGas <R> net_income <T> 211200000 <H> AmeriGas <R> industry <T> Energy_industry
<H> 1147_Stavropolis <R> orbital_period <T> 1249.6 <H> 1147_Stavropolis <R> discovered <T> 1929-06-11 <H> 1147_Stavropolis <R> discoverer <T> Grigory_Neujmin <H> 1147_Stavropolis <R> apoapsis <T> 418476000000.0
<H> Ciudad_Ayala <R> utc_offset <T> −6 <H> Ciudad_Ayala <R> country <T> Mexico <H> Ciudad_Ayala <R> leader_title <T> Governator <H> Ciudad_Ayala <R> elevation_above_the_sea_level <T> 1147.0
<H> Ciudad_Ayala <R> is_part_of <T> Morelos <H> Ciudad_Ayala <R> utc_offset <T> −6
<H> Lady_Anne_Monson <R> spouse <T> George_Monson
<H> Campeonato_Brasileiro_Série_C <R> champions <T> Vila_Nova_Futebol_Clube <H> Agremiação_Sportiva_Arapiraquense <R> league <T> Campeonato_Brasileiro_Série_C <H> Agremiação_Sportiva_Arapiraquense <R> number_of_members <T> 17000 <H> Agremiação_Sportiva_Arapiraquense <R> full_name <T> "Agremiação Sportiva Arapiraquense"
<H> Bionico <R> course <T> Dessert <H> Bionico <R> region <T> Jalisco <H> Bionico <R> country <T> Mexico
<H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> genre <T> Rock_music <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> producer <T> The_Velvet_Underground <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> recorded_in <T> United_States <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> recorded_in <T> St._Louis,_Missouri
<H> Gdynia,_Poland <R> utc_offset <T> +2
<H> Nord_(Year_of_No_Light_album) <R> artist <T> Year_of_No_Light <H> Year_of_No_Light <R> associated_band_/associated_musical_artist <T> Monarch_(band)
<H> Nie_Haisheng <R> mission <T> Shenzhou_6 <H> Nie_Haisheng <R> birth_place <T> Zaoyang <H> Zaoyang <R> is_part_of <T> Hubei
<H> Aleksandr_Prudnikov <R> height <T> 185.0 (centimetres) <H> Aleksandr_Prudnikov <R> youthclub <T> FC_Spartak_Moscow <H> FC_Spartak_Moscow <R> ground <T> Otkrytiye_Arena
<H> Pontiac_Rageous <R> assembly <T> Michigan <H> Pontiac_Rageous <R> production_end_year <T> 1997 <H> Pontiac_Rageous <R> assembly <T> Detroit
<H> Detroit <R> area_total <T> 370.03
<H> English_Without_Tears <R> music_composer <T> Nicholas_Brodszky <H> English_Without_Tears <R> runtime <T> 89.0 <H> English_Without_Tears <R> director <T> Harold_French <H> English_Without_Tears <R> release_date <T> 1944-07-28
<H> GMA_New_Media <R> location <T> GMA_Network_Center
<H> Olga_Bondareva <R> professional_field <T> Economics
<H> English_Without_Tears <R> music_composer <T> Nicholas_Brodszky
<H> Bananaman <R> broadcasted_by <T> BBC <H> Bananaman <R> starring <T> Bill_Oddie <H> Bananaman <R> last_aired <T> "1986-04-15" <H> Bananaman <R> creator <T> Steve_Bright <H> BBC <R> city <T> Broadcasting_House
<H> ALCO_RS-3 <R> build_date <T> "May 1950 - August 1956" <H> ALCO_RS-3 <R> builder <T> Montreal_Locomotive_Works
<H> Campeonato_Brasileiro_Série_C <R> champions <T> Vila_Nova_Futebol_Clube <H> Agremiação_Sportiva_Arapiraquense <R> league <T> Campeonato_Brasileiro_Série_C <H> Agremiação_Sportiva_Arapiraquense <R> number_of_members <T> 17000
<H> It's_Great_to_Be_Young_(1956_film) <R> starring <T> Cecil_Parker
<H> Super_Capers <R> director <T> Ray_Griggs_(director)
<H> Nord_(Year_of_No_Light_album) <R> genre <T> Sludge_metal <H> Nord_(Year_of_No_Light_album) <R> genre <T> Post-metal <H> Nord_(Year_of_No_Light_album) <R> artist <T> Year_of_No_Light <H> Nord_(Year_of_No_Light_album) <R> producer <T> Year_of_No_Light <H> Nord_(Year_of_No_Light_album) <R> record_label <T> Crucial_Blast <H> Nord_(Year_of_No_Light_album) <R> followed_by <T> Live_at_Roadburn_2008_(Year_of_No_Light_album) <H> Nord_(Year_of_No_Light_album) <R> release_date <T> 2006-09-06
<H> Mermaid_(Train_song) <R> producer <T> Espionage_(production_team) <H> Mermaid_(Train_song) <R> followed_by <T> Imagine_(John_Lennon_song) <H> Imagine_(John_Lennon_song) <R> certification <T> FIMI <H> Imagine_(John_Lennon_song) <R> musical_artist <T> John_Lennon
<H> Adolfo_Suárez_Madrid–Barajas_Airport <R> operating_organisation <T> ENAIRE <H> Adolfo_Suárez_Madrid–Barajas_Airport <R> elevation_above_the_sea_level <T> 610.0 <H> Adolfo_Suárez_Madrid–Barajas_Airport <R> runway_name <T> "14L/32R" <H> Adolfo_Suárez_Madrid–Barajas_Airport <R> runway_length <T> 3500.0
<H> Expect_a_Miracle <R> genre <T> Easy_listening
<H> Liselotte_Grschebina <R> nationality <T> Israel <H> Israel <R> ethnic_group <T> Arab_citizens_of_Israel
<H> Squeeze_(The_Velvet_Underground_album) <R> followed_by <T> 1969:_The_Velvet_Underground_Live
<H> Alan_B._Miller_Hall <R> owner <T> College_of_William_&_Mary <H> Alan_B._Miller_Hall <R> completion_date <T> 2009-06-01
<H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> genre <T> Rock_music <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> runtime <T> 230.05 <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> producer <T> The_Velvet_Underground <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> artist <T> The_Velvet_Underground <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> recorded_in <T> United_States
<H> Bionico <R> course <T> Dessert <H> Bionico <R> dish_variation <T> Honey <H> Bionico <R> country <T> Mexico <H> Mexico <R> currency <T> Mexican_peso <H> Mexico <R> demonym <T> Mexicans
<H> Gdynia,_Poland <R> time_zone <T> Central_European_Summer_Time
<H> Super_Capers <R> distributor <T> Roadside_Attractions <H> Super_Capers <R> distributor <T> Lionsgate <H> Lionsgate <R> type <T> Public_company
<H> Nurhan_Atasoy <R> nationality <T> Turkish_people
<H> 11th_Mississippi_Infantry_Monument <R> location <T> Adams_County,_Pennsylvania <H> 11th_Mississippi_Infantry_Monument <R> established <T> 2000 <H> 11th_Mississippi_Infantry_Monument <R> category <T> Contributing_property <H> Adams_County,_Pennsylvania <R> has_to_its_southwest <T> Frederick_County,_Maryland
<H> Mermaid_(Train_song) <R> runtime <T> 3.16 <H> Mermaid_(Train_song) <R> release_date <T> 2012-12-27 <H> Mermaid_(Train_song) <R> writer <T> Espen_Lind <H> Mermaid_(Train_song) <R> writer <T> Amund_Bjørklund <H> Mermaid_(Train_song) <R> preceded_by <T> This'll_Be_My_Year
<H> Ciudad_Ayala <R> is_part_of <T> Morelos <H> Morelos <R> leader <T> Graco_Ramírez
<H> Bionico <R> course <T> Dessert <H> Bionico <R> main_ingredient <T> "Chopped Fruits, Sour Cream, Condensed Milk, Granola, Shredded Coconut, Raisins" <H> Bionico <R> country <T> Mexico <H> Mexico <R> currency <T> Mexican_peso
<H> Brandon_Carter <R> professional_field <T> General_relativity
<H> University_of_Burgundy <R> country <T> France <H> France <R> leader <T> Claude_Bartolone
<H> Nie_Haisheng <R> birth_place <T> Hubei
<H> Olga_Bondareva <R> birth_name <T> "Olga Nikolaevna Bondareva" <H> Olga_Bondareva <R> alma_mater <T> Leningrad_State_University <H> Olga_Bondareva <R> known_for <T> Bondareva–Shapley_theorem
<H> Darinka_Dentcheva <R> professional_field <T> Mathematical_optimization <H> Darinka_Dentcheva <R> alma_mater <T> Humboldt_University
<H> English_Without_Tears <R> producer <T> Anatole_de_Grunwald
<H> Andrew_Rayel <R> genre <T> Trance_music <H> Andrew_Rayel <R> associated_band_/associated_musical_artist <T> "Armin Van Buuren, Bobina, Mark Sixma, Jonathan Mendelsohn, Christian Burns, Jwaydan, Alexander Popov, Jano, Alexandre Bergheau, Jonny Rose, Sylvia Tosun, Lira Yin, Alexandra Badoi"
<H> Aaron_Turner <R> genre <T> Post-metal <H> Aaron_Turner <R> origin <T> United_States <H> Aaron_Turner <R> instrument <T> Electric_guitar <H> Aaron_Turner <R> associated_band_/associated_musical_artist <T> Twilight_(band)
<H> Bananaman <R> creator <T> John_Geering <H> Bananaman <R> broadcasted_by <T> BBC <H> Bananaman <R> first_aired <T> "1983-10-03" <H> Bananaman <R> starring <T> Bill_Oddie <H> BBC <R> city <T> Broadcasting_House
<H> Mason_School_of_Business <R> country <T> United_States <H> Alan_B._Miller_Hall <R> current_tenants <T> Mason_School_of_Business <H> Alan_B._Miller_Hall <R> address <T> "101 Ukrop Way" <H> Alan_B._Miller_Hall <R> location <T> Williamsburg,_Virginia <H> Alan_B._Miller_Hall <R> building_start_date <T> "30 March 2007" <H> Alan_B._Miller_Hall <R> architect <T> Robert_A._M._Stern
<H> Baku_Turkish_Martyrs'_Memorial <R> location <T> Azerbaijan <H> Baku_Turkish_Martyrs'_Memorial <R> native_name <T> "Türk Şehitleri Anıtı"
<H> Sludge_metal <R> music_subgenre <T> Southern_sludge
<H> Olga_Bondareva <R> birth_place <T> Leningrad,_USSR <H> Olga_Bondareva <R> birth_date <T> 1937-04-27 <H> Olga_Bondareva <R> birth_name <T> "Olga Nikolaevna Bondareva" <H> Olga_Bondareva <R> alma_mater <T> Leningrad_State_University <H> Olga_Bondareva <R> known_for <T> Bondareva–Shapley_theorem
<H> It's_Great_to_Be_Young_(1956_film) <R> starring <T> John_Mills <H> It's_Great_to_Be_Young_(1956_film) <R> gross <T> 282838.0
<H> 11th_Mississippi_Infantry_Monument <R> established <T> 2000 <H> 11th_Mississippi_Infantry_Monument <R> location <T> Adams_County,_Pennsylvania <H> 11th_Mississippi_Infantry_Monument <R> country <T> "United States" <H> 11th_Mississippi_Infantry_Monument <R> category <T> Contributing_property <H> Adams_County,_Pennsylvania <R> has_to_its_north <T> Cumberland_County,_Pennsylvania
<H> Bananaman <R> broadcasted_by <T> BBC <H> Bananaman <R> starring <T> Bill_Oddie <H> Bananaman <R> last_aired <T> "1986-04-15" <H> BBC <R> city <T> Broadcasting_House
<H> English_Without_Tears <R> writer <T> Anatole_de_Grunwald <H> English_Without_Tears <R> writer <T> Terence_Rattigan <H> English_Without_Tears <R> director <T> Harold_French <H> Harold_French <R> active_years_start_year <T> 1920-01-01 <H> Terence_Rattigan <R> death_year <T> 1977-01-01
<H> Bananaman <R> broadcasted_by <T> BBC <H> Bananaman <R> creator <T> Steve_Bright
<H> Gdynia,_Poland <R> leader_title <T> Mayor
<H> Darlington <R> postal_code <T> "DL1, DL2, DL3"
<H> Hypermarcas <R> key_person <T> CEO <H> Hypermarcas <R> location <T> Brazil <H> Hypermarcas <R> type <T> S.A._(corporation) <H> Hypermarcas <R> founding_date <T> 2001-01-01 <H> Hypermarcas <R> industry <T> Pharmaceuticals <H> Hypermarcas <R> number_of_employees <T> 10252 <H> Hypermarcas <R> product <T> Drugs
<H> Aleksandr_Prudnikov <R> birth_date <T> 1989-02-24 <H> Aleksandr_Prudnikov <R> youthclub <T> FC_Spartak_Moscow <H> FC_Spartak_Moscow <R> ground <T> Otkrytiye_Arena
<H> Nie_Haisheng <R> nationality <T> People's_Republic_of_China <H> Nie_Haisheng <R> birth_place <T> Hubei <H> Nie_Haisheng <R> birth_date <T> 1964-10-13
<H> Turkey <R> demonym <T> Turk
<H> Super_Capers <R> writer <T> Ray_Griggs_(director) <H> Super_Capers <R> runtime <T> 98.0 <H> Super_Capers <R> starring <T> Danielle_Harris
<H> English_Without_Tears <R> writer <T> Terence_Rattigan <H> Terence_Rattigan <R> death_date <T> 1977-11-30 <H> English_Without_Tears <R> director <T> Harold_French <H> Harold_French <R> birth_year <T> 1897
<H> It's_Great_to_Be_Young_(1956_film) <R> cinematography <T> Gilbert_Taylor <H> It's_Great_to_Be_Young_(1956_film) <R> starring <T> John_Mills
<H> Olga_Bondareva <R> birth_date <T> 1937-04-27 <H> Olga_Bondareva <R> alma_mater <T> Leningrad_State_University <H> Olga_Bondareva <R> death_date <T> 1991-12-09
<H> Chinabank <R> type <T> Public_company <H> Chinabank <R> founding_date <T> 1920-08-16
<H> Akeem_Ayers <R> birth_year <T> 1989 <H> Akeem_Ayers <R> debut_team <T> Tennessee_Titans
<H> The_Fellowship_of_the_Ring <R> literary_genre <T> Fantasy_(genre)
<H> Abraham_A._Ribicoff <R> spouse <T> Casey_Ribicoff <H> Abraham_A._Ribicoff <R> death_place <T> United_States <H> United_States <R> ethnic_group <T> African_Americans
<H> 11th_Mississippi_Infantry_Monument <R> municipality <T> Gettysburg,_Pennsylvania <H> 11th_Mississippi_Infantry_Monument <R> location <T> Adams_County,_Pennsylvania <H> 11th_Mississippi_Infantry_Monument <R> established <T> 2000 <H> 11th_Mississippi_Infantry_Monument <R> category <T> Contributing_property <H> Adams_County,_Pennsylvania <R> has_to_its_southwest <T> Frederick_County,_Maryland
<H> McVeagh_of_the_South_Seas <R> producer <T> The_Progressive_Motion_Picture_Company <H> McVeagh_of_the_South_Seas <R> writer <T> Harry_Carey_(actor_born_1878) <H> McVeagh_of_the_South_Seas <R> director <T> Harry_Carey_(actor_born_1878)
<H> Alan_B._Miller_Hall <R> owner <T> College_of_William_&_Mary <H> Alan_B._Miller_Hall <R> address <T> "101 Ukrop Way" <H> Alan_B._Miller_Hall <R> location <T> Virginia <H> Alan_B._Miller_Hall <R> architect <T> Robert_A._M._Stern <H> Alan_B._Miller_Hall <R> current_tenants <T> Mason_School_of_Business
<H> It's_Great_to_Be_Young_(1956_film) <R> starring <T> Cecil_Parker <H> It's_Great_to_Be_Young_(1956_film) <R> runtime <T> 94.0 <H> It's_Great_to_Be_Young_(1956_film) <R> director <T> Cyril_Frankel
<H> Israel <R> population_density <T> 387.63
<H> Olga_Bondareva <R> death_place <T> Saint_Petersburg <H> Saint_Petersburg <R> area_total <T> 1439.0
<H> Death_on_a_Factory_Farm <R> broadcasted_by <T> HBO <H> Death_on_a_Factory_Farm <R> music_composer <T> Jamie_Lawrence <H> Death_on_a_Factory_Farm <R> producer <T> Tom_Simon <H> Death_on_a_Factory_Farm <R> director <T> Tom_Simon
<H> Bananaman <R> starring <T> Tim_Brooke-Taylor <H> Bananaman <R> broadcasted_by <T> BBC <H> BBC <R> city <T> Broadcasting_House <H> Bananaman <R> creator <T> Steve_Bright
<H> Al_Asad_Airbase <R> operating_organisation <T> United_States_Air_Force <H> Al_Asad_Airbase <R> location <T> "Al Anbar Province, Iraq"
<H> Bedford_Aerodrome <R> runway_name <T> "08/26"
<H> Pontiac_Rageous <R> assembly <T> Detroit <H> Detroit <R> area_total <T> 370.03
<H> Olga_Bondareva <R> birth_place <T> Leningrad,_USSR <H> Olga_Bondareva <R> birth_date <T> 1937-04-27
<H> University_of_Burgundy <R> campus <T> Dijon <H> University_of_Burgundy <R> number_of_postgraduate_students <T> 9400 <H> University_of_Burgundy <R> number_of_doctoral_students <T> 1299 <H> University_of_Burgundy <R> number_of_students <T> 27400 <H> University_of_Burgundy <R> staff <T> 2900
<H> Chinabank <R> location <T> Philippines <H> Chinabank <R> number_of_locations <T> 295
<H> 1147_Stavropolis <R> orbital_period <T> 1249.6 <H> 1147_Stavropolis <R> discovered <T> 1929-06-11 <H> 1147_Stavropolis <R> apoapsis <T> 418476000000.0
<H> Agremiação_Sportiva_Arapiraquense <R> ground <T> Estádio_Municipal_Coaracy_da_Mata_Fonseca <H> Estádio_Municipal_Coaracy_da_Mata_Fonseca <R> location <T> Arapiraca <H> Agremiação_Sportiva_Arapiraquense <R> number_of_members <T> 17000 <H> Agremiação_Sportiva_Arapiraquense <R> season <T> 2015 <H> Agremiação_Sportiva_Arapiraquense <R> league <T> Campeonato_Brasileiro_Série_C <H> Campeonato_Brasileiro_Série_C <R> country <T> Brazil
<H> Alan_Shepard <R> birth_place <T> New_Hampshire <H> Alan_Shepard <R> mission <T> Apollo_14 <H> Alan_Shepard <R> death_place <T> California
<H> Kingdom_of_England <R> government_type <T> Unitary_state
<H> Darinka_Dentcheva <R> residence <T> United_States <H> United_States <R> leader_title <T> "Vice President"
<H> Nord_(Year_of_No_Light_album) <R> genre <T> Sludge_metal <H> Nord_(Year_of_No_Light_album) <R> genre <T> Post-metal <H> Nord_(Year_of_No_Light_album) <R> producer <T> Year_of_No_Light <H> Nord_(Year_of_No_Light_album) <R> followed_by <T> Live_at_Roadburn_2008_(Year_of_No_Light_album) <H> Nord_(Year_of_No_Light_album) <R> release_date <T> 2006-09-06
<H> Olga_Bondareva <R> birth_place <T> Leningrad,_USSR <H> Olga_Bondareva <R> death_place <T> Saint_Petersburg
<H> Nord_(Year_of_No_Light_album) <R> genre <T> Sludge_metal <H> Nord_(Year_of_No_Light_album) <R> artist <T> Year_of_No_Light <H> Nord_(Year_of_No_Light_album) <R> producer <T> Year_of_No_Light <H> Nord_(Year_of_No_Light_album) <R> followed_by <T> Live_at_Roadburn_2008_(Year_of_No_Light_album) <H> Nord_(Year_of_No_Light_album) <R> release_date <T> 2006-09-06
<H> Nord_(Year_of_No_Light_album) <R> artist <T> Year_of_No_Light <H> Nord_(Year_of_No_Light_album) <R> producer <T> Year_of_No_Light <H> Nord_(Year_of_No_Light_album) <R> record_label <T> Crucial_Blast <H> Nord_(Year_of_No_Light_album) <R> followed_by <T> Live_at_Roadburn_2008_(Year_of_No_Light_album)
<H> Abraham_A._Ribicoff <R> nationality <T> American <H> Abraham_A._Ribicoff <R> spouse <T> Casey_Ribicoff
<H> India <R> leader <T> Pranab_Mukherjee
<H> Liselotte_Grschebina <R> nationality <T> Israel <H> Liselotte_Grschebina <R> birth_date <T> 1908-05-02
<H> Nurhan_Atasoy <R> residence <T> Istanbul <H> Nurhan_Atasoy <R> residence <T> Turkey <H> Turkey <R> government_type <T> Unitary_state
<H> The_Velvet_Underground <R> genre <T> Proto-punk
<H> Aaron_Turner <R> genre <T> Post-metal <H> Aaron_Turner <R> associated_band_/associated_musical_artist <T> Twilight_(band) <H> Aaron_Turner <R> active_years_start_year <T> 1995
<H> 11th_Mississippi_Infantry_Monument <R> location <T> Adams_County,_Pennsylvania <H> 11th_Mississippi_Infantry_Monument <R> state <T> "Pennsylvania" <H> Adams_County,_Pennsylvania <R> has_to_its_southeast <T> Carroll_County,_Maryland
<H> English_Without_Tears <R> editing <T> Alan_Jaggs <H> English_Without_Tears <R> writer <T> Terence_Rattigan <H> English_Without_Tears <R> music_composer <T> Nicholas_Brodszky <H> English_Without_Tears <R> runtime <T> 89.0 <H> English_Without_Tears <R> release_date <T> 1944-07-28
<H> 11th_Mississippi_Infantry_Monument <R> municipality <T> Gettysburg,_Pennsylvania <H> 11th_Mississippi_Infantry_Monument <R> location <T> Adams_County,_Pennsylvania <H> 11th_Mississippi_Infantry_Monument <R> established <T> 2000 <H> 11th_Mississippi_Infantry_Monument <R> category <T> Contributing_property <H> Adams_County,_Pennsylvania <R> has_to_its_west <T> Franklin_County,_Pennsylvania <H> Adams_County,_Pennsylvania <R> has_to_its_southeast <T> Carroll_County,_Maryland
<H> Aaron_Turner <R> genre <T> Black_metal <H> Aaron_Turner <R> instrument <T> Electric_guitar <H> Aaron_Turner <R> associated_band_/associated_musical_artist <T> Lotus_Eaters_(band)
<H> The_Fellowship_of_the_Ring <R> literary_genre <T> Fantasy_(genre) <H> The_Fellowship_of_the_Ring <R> publisher <T> George_Allen_&_Unwin <H> The_Fellowship_of_the_Ring <R> followed_by <T> The_Two_Towers
<H> Death_on_a_Factory_Farm <R> editor <T> Geof_Bartz <H> Death_on_a_Factory_Farm <R> broadcasted_by <T> HBO <H> Death_on_a_Factory_Farm <R> music_composer <T> Jamie_Lawrence <H> Death_on_a_Factory_Farm <R> runtime <T> 83.0 <H> Death_on_a_Factory_Farm <R> director <T> Sarah_Teale <H> Death_on_a_Factory_Farm <R> director <T> Tom_Simon
<H> Aleksandr_Prudnikov <R> birth_date <T> 1989-02-24 <H> Aleksandr_Prudnikov <R> currentclub <T> FC_Amkar_Perm <H> Aleksandr_Prudnikov <R> height <T> 185.0 (centimetres) <H> Aleksandr_Prudnikov <R> club <T> FC_Terek_Grozny <H> FC_Terek_Grozny <R> ground <T> Grozny
<H> Alan_B._Miller_Hall <R> owner <T> College_of_William_&_Mary <H> Alan_B._Miller_Hall <R> address <T> "101 Ukrop Way" <H> Alan_B._Miller_Hall <R> building_start_date <T> "30 March 2007" <H> Alan_B._Miller_Hall <R> completion_date <T> 2009-06-01 <H> Alan_B._Miller_Hall <R> architect <T> Robert_A._M._Stern <H> Alan_B._Miller_Hall <R> current_tenants <T> Mason_School_of_Business
<H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> record_label <T> Polydor_Records <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> record_label <T> Universal_Music_Group <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> preceded_by <T> Squeeze_(The_Velvet_Underground_album)
<H> Death_on_a_Factory_Farm <R> producer <T> Tom_Simon <H> Death_on_a_Factory_Farm <R> director <T> Tom_Simon <H> Death_on_a_Factory_Farm <R> producer <T> Sarah_Teale <H> Death_on_a_Factory_Farm <R> director <T> Sarah_Teale <H> Death_on_a_Factory_Farm <R> runtime <T> 83.0
<H> Alan_B._Miller_Hall <R> owner <T> College_of_William_&_Mary <H> Alan_B._Miller_Hall <R> location <T> Williamsburg,_Virginia <H> Alan_B._Miller_Hall <R> current_tenants <T> Mason_School_of_Business
<H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> record_label <T> Universal_Music_Group
<H> McVeagh_of_the_South_Seas <R> imdb_id <T> 0004319 <H> McVeagh_of_the_South_Seas <R> director <T> Cyril_Bruce <H> McVeagh_of_the_South_Seas <R> director <T> Harry_Carey_(actor_born_1878)
<H> English_Without_Tears <R> producer <T> Anatole_de_Grunwald <H> English_Without_Tears <R> editing <T> Alan_Jaggs <H> English_Without_Tears <R> director <T> Harold_French <H> English_Without_Tears <R> release_date <T> 1944-07-28
<H> Turn_Me_On_(album) <R> genre <T> Noise_rock <H> Noise_rock <R> music_fusion_genre <T> Noise_pop
<H> Alan_Shepard <R> birth_date <T> "1923-11-18" <H> Alan_Shepard <R> birth_place <T> New_Hampshire <H> Alan_Shepard <R> alma_mater <T> "NWC, M.A. 1957" <H> Alan_Shepard <R> death_place <T> California
<H> Lady_Anne_Monson <R> birth_place <T> Darlington <H> Lady_Anne_Monson <R> death_date <T> 1776-02-18
<H> Alan_B._Miller_Hall <R> owner <T> College_of_William_&_Mary <H> Alan_B._Miller_Hall <R> address <T> "101 Ukrop Way" <H> Alan_B._Miller_Hall <R> location <T> Williamsburg,_Virginia <H> Alan_B._Miller_Hall <R> architect <T> Robert_A._M._Stern <H> Alan_B._Miller_Hall <R> current_tenants <T> Mason_School_of_Business
<H> Ciudad_Ayala <R> is_part_of <T> Morelos <H> Morelos <R> type <T> States_of_Mexico <H> Ciudad_Ayala <R> country <T> Mexico <H> Mexico <R> area_total <T> 1972550.0
<H> Pop_rock <R> stylistic_origin <T> Rock_music
<H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> artist <T> The_Velvet_Underground <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> runtime <T> 230.05
<H> Death_on_a_Factory_Farm <R> producer <T> Sarah_Teale <H> Death_on_a_Factory_Farm <R> director <T> Sarah_Teale <H> Death_on_a_Factory_Farm <R> runtime <T> 83.0
<H> Lady_Anne_Monson <R> birth_place <T> Darlington <H> Lady_Anne_Monson <R> residence <T> India <H> India <R> founding_date <T> 1950-01-26 <H> India <R> leader_title <T> President
<H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> recorded_in <T> United_States <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> runtime <T> 230.05 <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> producer <T> The_Velvet_Underground
<H> Ciudad_Ayala <R> is_part_of <T> Morelos <H> Ciudad_Ayala <R> country <T> Mexico <H> Ciudad_Ayala <R> population_metro <T> 1777539 <H> Ciudad_Ayala <R> elevation_above_the_sea_level <T> 1147.0 <H> Ciudad_Ayala <R> time_zone <T> Pacific_Daylight_Time <H> Ciudad_Ayala <R> utc_offset <T> −6
<H> Super_Capers <R> starring <T> Tom_Sizemore <H> Super_Capers <R> starring <T> Michael_Rooker <H> Super_Capers <R> writer <T> Ray_Griggs_(director) <H> Ray_Griggs_(director) <R> birth_year <T> 1974
<H> 11th_Mississippi_Infantry_Monument <R> location <T> Adams_County,_Pennsylvania <H> 11th_Mississippi_Infantry_Monument <R> country <T> "United States" <H> 11th_Mississippi_Infantry_Monument <R> established <T> 2000
<H> Take_It_Off! <R> producer <T> The_Honeymoon_Killers_(American_band)
<H> Nord_(Year_of_No_Light_album) <R> genre <T> Sludge_metal <H> Nord_(Year_of_No_Light_album) <R> genre <T> Post-metal <H> Nord_(Year_of_No_Light_album) <R> release_date <T> 2006-09-06 <H> Nord_(Year_of_No_Light_album) <R> followed_by <T> Live_at_Roadburn_2008_(Year_of_No_Light_album)
<H> ALCO_RS-3 <R> build_date <T> "May 1950 - August 1956" <H> ALCO_RS-3 <R> cylinder_count <T> 12 <H> ALCO_RS-3 <R> length <T> 17068.8 (millimetres)
<H> Ciudad_Ayala <R> population_metro <T> 1777539 <H> Ciudad_Ayala <R> leader_title <T> Governator <H> Ciudad_Ayala <R> population_density <T> 1604.0 <H> Ciudad_Ayala <R> time_zone <T> Pacific_Daylight_Time
<H> Liselotte_Grschebina <R> death_place <T> Petah_Tikva <H> Petah_Tikva <R> meaning <T> "Opening of hope" <H> Liselotte_Grschebina <R> death_place <T> Israel <H> Israel <R> long_name <T> "State of Israel"
<H> Liselotte_Grschebina <R> nationality <T> Israel <H> Liselotte_Grschebina <R> birth_place <T> Karlsruhe <H> Liselotte_Grschebina <R> birth_date <T> 1908-05-02 <H> Liselotte_Grschebina <R> death_place <T> Israel <H> Liselotte_Grschebina <R> professional_field <T> Photographer <H> Liselotte_Grschebina <R> death_date <T> 1994-06-14
<H> Adam_West <R> birth_year <T> 1928
<H> Expect_a_Miracle <R> genre <T> Easy_listening <H> Expect_a_Miracle <R> genre <T> Instrumental_music <H> Expect_a_Miracle <R> type <T> Compilation_Album <H> Expect_a_Miracle <R> runtime <T> 54.56 <H> Expect_a_Miracle <R> followed_by <T> Afterplay_(Brian_Kelly_album)
<H> Alan_Shepard <R> nationality <T> United_States <H> Alan_Shepard <R> birth_date <T> "1923-11-18" <H> Alan_Shepard <R> birth_place <T> New_Hampshire <H> Alan_Shepard <R> award <T> Distinguished_Service_Medal_(United_States_Navy) <H> Alan_Shepard <R> death_place <T> California
<H> Alan_B._Miller_Hall <R> owner <T> College_of_William_&_Mary <H> Alan_B._Miller_Hall <R> address <T> "101 Ukrop Way" <H> Alan_B._Miller_Hall <R> completion_date <T> 2009-06-01 <H> Alan_B._Miller_Hall <R> current_tenants <T> Mason_School_of_Business
<H> Bedford_Aerodrome <R> city_served <T> Bedford_Autodrome
<H> Take_It_Off! <R> genre <T> Noise_rock
<H> It's_Great_to_Be_Young_(1956_film) <R> cinematography <T> Gilbert_Taylor <H> It's_Great_to_Be_Young_(1956_film) <R> gross <T> 282838.0 <H> It's_Great_to_Be_Young_(1956_film) <R> runtime <T> 94.0 <H> It's_Great_to_Be_Young_(1956_film) <R> starring <T> Cecil_Parker <H> It's_Great_to_Be_Young_(1956_film) <R> starring <T> John_Mills
<H> Abraham_A._Ribicoff <R> nationality <T> American <H> Abraham_A._Ribicoff <R> birth_place <T> Connecticut <H> Abraham_A._Ribicoff <R> spouse <T> "Ruth Ribicoff" <H> Abraham_A._Ribicoff <R> in_office_while_president <T> John_F._Kennedy <H> Abraham_A._Ribicoff <R> party <T> Democratic_Party_(United_States)
<H> Campeonato_Brasileiro_Série_C <R> champions <T> Vila_Nova_Futebol_Clube <H> Agremiação_Sportiva_Arapiraquense <R> league <T> Campeonato_Brasileiro_Série_C <H> Agremiação_Sportiva_Arapiraquense <R> season <T> 2015_Campeonato_Brasileiro_Série_C
<H> Abraham_A._Ribicoff <R> nationality <T> American <H> Abraham_A._Ribicoff <R> birth_place <T> Connecticut <H> Abraham_A._Ribicoff <R> spouse <T> "Ruth Ribicoff" <H> Abraham_A._Ribicoff <R> in_office_while_president <T> John_F._Kennedy <H> Abraham_A._Ribicoff <R> successor <T> John_N._Dempsey
<H> University_of_Burgundy <R> number_of_doctoral_students <T> 1299 <H> University_of_Burgundy <R> staff <T> 2900
<H> Aaron_Turner <R> genre <T> Post-metal <H> Aaron_Turner <R> instrument <T> Singing <H> Aaron_Turner <R> associated_band_/associated_musical_artist <T> Twilight_(band) <H> Aaron_Turner <R> active_years_start_year <T> 1995
<H> Pontiac_Rageous <R> production_start_year <T> 1997 <H> Pontiac_Rageous <R> production_end_year <T> 1997 <H> Pontiac_Rageous <R> manufacturer <T> Pontiac
<H> It's_Great_to_Be_Young_(1956_film) <R> writer <T> Ted_Willis
<H> Mermaid_(Train_song) <R> genre <T> Reggae <H> Reggae <R> stylistic_origin <T> Rhythm_and_Blues
<H> Darinka_Dentcheva <R> residence <T> United_States <H> Darinka_Dentcheva <R> residence <T> New_Jersey <H> Darinka_Dentcheva <R> citizenship <T> United_States <H> New_Jersey <R> area_of_water <T> 3544040000.0 <H> United_States <R> motto <T> "In God we trust"
<H> Nurhan_Atasoy <R> birth_place <T> Turkey <H> Turkey <R> leader_title <T> "Prime Minister"
<H> Bedford_Aerodrome <R> operating_organisation <T> MotorSport_Vision <H> MotorSport_Vision <R> founded_by <T> Peter_Ogden
<H> Liselotte_Grschebina <R> birth_place <T> Karlsruhe <H> Liselotte_Grschebina <R> birth_place <T> German_Empire <H> Liselotte_Grschebina <R> birth_date <T> 1908-05-02 <H> Liselotte_Grschebina <R> death_place <T> Israel <H> Liselotte_Grschebina <R> death_date <T> 1994-06-14
<H> HBO <R> sister_station <T> Cinemax
<H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> recorded_in <T> St._Louis,_Missouri <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> recorded_in <T> United_States <H> United_States <R> language <T> English_language
<H> English_Without_Tears <R> producer <T> Anatole_de_Grunwald <H> English_Without_Tears <R> editing <T> Alan_Jaggs <H> English_Without_Tears <R> runtime <T> 89.0 <H> English_Without_Tears <R> director <T> Harold_French
<H> Lady_Anne_Monson <R> nationality <T> Kingdom_of_England <H> Lady_Anne_Monson <R> residence <T> India <H> Lady_Anne_Monson <R> professional_field <T> Botany <H> Lady_Anne_Monson <R> spouse <T> George_Monson <H> Lady_Anne_Monson <R> death_date <T> 1776-02-18
<H> Grigory_Neujmin <R> death_date <T> 1946-12-17
<H> Death_on_a_Factory_Farm <R> editor <T> Geof_Bartz <H> Death_on_a_Factory_Farm <R> runtime <T> 83.0 <H> Death_on_a_Factory_Farm <R> producer <T> Tom_Simon
<H> Pontiac_Rageous <R> production_start_year <T> 1997 <H> Pontiac_Rageous <R> manufacturer <T> Pontiac <H> Pontiac_Rageous <R> assembly <T> Michigan <H> Michigan <R> area_total <T> 250493000000.0
<H> Universal_Music_Group <R> key_person <T> Lucian_Grainge
<H> Nurhan_Atasoy <R> award <T> State_Award_for_Superior_Achievement
<H> Super_Capers <R> starring <T> Adam_West <H> Super_Capers <R> starring <T> Tom_Sizemore <H> Tom_Sizemore <R> active_years_start_year <T> 1989-01-01
<H> Turn_Me_On_(album) <R> runtime <T> 35.1 <H> Turn_Me_On_(album) <R> artist <T> The_Honeymoon_Killers_(American_band) <H> Turn_Me_On_(album) <R> producer <T> The_Honeymoon_Killers_(American_band) <H> Turn_Me_On_(album) <R> preceded_by <T> Let_It_Breed
<H> Darinka_Dentcheva <R> birth_date <T> 1958-01-01 <H> Darinka_Dentcheva <R> citizenship <T> United_States <H> Darinka_Dentcheva <R> professional_field <T> Mathematical_optimization <H> Darinka_Dentcheva <R> influenced_by <T> Andrzej_Piotr_Ruszczyński <H> Darinka_Dentcheva <R> known_for <T> Stochastic_programming
<H> Super_Capers <R> editing <T> Stacy_Katzman <H> Super_Capers <R> language <T> English_language <H> Super_Capers <R> starring <T> Michael_Rooker
<H> Israel <R> leader <T> Reuven_Rivlin
<H> Death_on_a_Factory_Farm <R> broadcasted_by <T> HBO
<H> McVeagh_of_the_South_Seas <R> distributor <T> Alliance_Films_Corporation <H> McVeagh_of_the_South_Seas <R> director <T> Harry_Carey_(actor_born_1878) <H> McVeagh_of_the_South_Seas <R> director <T> Gregory_Allen
<H> Ciudad_Ayala <R> elevation_above_the_sea_level <T> 1147.0 <H> Ciudad_Ayala <R> population_density <T> 1604.0
<H> Expect_a_Miracle <R> genre <T> Instrumental_music <H> Expect_a_Miracle <R> runtime <T> 54.56 <H> Expect_a_Miracle <R> preceded_by <T> Pools_of_Light_(Brian_Kelly_album) <H> Expect_a_Miracle <R> followed_by <T> Afterplay_(Brian_Kelly_album)
<H> Piotr_Hallmann <R> birth_place <T> Gdynia,_Poland <H> Piotr_Hallmann <R> weight <T> 70.308 <H> Piotr_Hallmann <R> height <T> 175.26
<H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> artist <T> The_Velvet_Underground <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> producer <T> The_Velvet_Underground
<H> Aleksandr_Prudnikov <R> youthclub <T> FC_Spartak_Moscow <H> Aleksandr_Prudnikov <R> club <T> FC_Spartak_Moscow
<H> English_Without_Tears <R> producer <T> Anatole_de_Grunwald <H> English_Without_Tears <R> editing <T> Alan_Jaggs <H> English_Without_Tears <R> music_composer <T> Nicholas_Brodszky <H> English_Without_Tears <R> director <T> Harold_French
<H> The_Honeymoon_Killers_(American_band) <R> genre <T> Noise_rock
<H> Bananaman <R> broadcasted_by <T> BBC <H> Bananaman <R> first_aired <T> "1983-10-03" <H> BBC <R> city <T> Broadcasting_House <H> Bananaman <R> starring <T> Bill_Oddie <H> Bill_Oddie <R> birth_place <T> Rochdale
<H> Expect_a_Miracle <R> genre <T> Instrumental_music <H> Expect_a_Miracle <R> type <T> Compilation_Album <H> Expect_a_Miracle <R> runtime <T> 54.56 <H> Expect_a_Miracle <R> artist <T> Brian_Kelly_(composer_&_pianist) <H> Expect_a_Miracle <R> producer <T> Brian_Kelly_(composer_&_pianist) <H> Expect_a_Miracle <R> preceded_by <T> Pools_of_Light_(Brian_Kelly_album)
<H> McVeagh_of_the_South_Seas <R> producer <T> The_Progressive_Motion_Picture_Company <H> McVeagh_of_the_South_Seas <R> director <T> Cyril_Bruce <H> McVeagh_of_the_South_Seas <R> starring <T> Harry_Carey_(actor_born_1878)
<H> Agremiação_Sportiva_Arapiraquense <R> ground <T> Estádio_Municipal_Coaracy_da_Mata_Fonseca <H> Estádio_Municipal_Coaracy_da_Mata_Fonseca <R> location <T> Arapiraca <H> Agremiação_Sportiva_Arapiraquense <R> full_name <T> "Agremiação Sportiva Arapiraquense" <H> Agremiação_Sportiva_Arapiraquense <R> number_of_members <T> 17000 <H> Agremiação_Sportiva_Arapiraquense <R> league <T> Campeonato_Brasileiro_Série_C
<H> Alan_B._Miller_Hall <R> owner <T> College_of_William_&_Mary <H> Alan_B._Miller_Hall <R> address <T> "101 Ukrop Way" <H> Alan_B._Miller_Hall <R> location <T> Virginia <H> Alan_B._Miller_Hall <R> building_start_date <T> "30 March 2007" <H> Alan_B._Miller_Hall <R> architect <T> Robert_A._M._Stern <H> Alan_B._Miller_Hall <R> architectural_style <T> Georgian_architecture <H> Alan_B._Miller_Hall <R> current_tenants <T> Mason_School_of_Business
<H> 1147_Stavropolis <R> rotation_period <T> 20378.5 <H> 1147_Stavropolis <R> discoverer <T> Grigory_Neujmin <H> 1147_Stavropolis <R> epoch <T> 31 July 2016 (JD2457600.5) <H> 1147_Stavropolis <R> periapsis <T> 260855000000.0 <H> 1147_Stavropolis <R> apoapsis <T> 418476000000.0 <H> 1147_Stavropolis <R> orbital_period <T> 1249.6
<H> Mermaid_(Train_song) <R> genre <T> Pop_rock <H> Mermaid_(Train_song) <R> genre <T> Reggae <H> Reggae <R> stylistic_origin <T> Ska <H> Pop_rock <R> stylistic_origin <T> Rock_music
<H> Darinka_Dentcheva <R> residence <T> New_Jersey <H> Darinka_Dentcheva <R> residence <T> United_States <H> United_States <R> government_type <T> Federalism
<H> Liselotte_Grschebina <R> death_place <T> Petah_Tikva <H> Petah_Tikva <R> leader <T> Itzik_Braverman
<H> Darinka_Dentcheva <R> citizenship <T> United_States <H> Darinka_Dentcheva <R> influenced_by <T> Andrzej_Piotr_Ruszczyński <H> Andrzej_Piotr_Ruszczyński <R> professional_field <T> Mathematical_optimization <H> United_States <R> motto <T> "In God we trust"
<H> Ciudad_Ayala <R> type <T> City <H> Ciudad_Ayala <R> government_type <T> Council-manager_government <H> Ciudad_Ayala <R> population_metro <T> 1777539 <H> Ciudad_Ayala <R> population_density <T> 1604.0 <H> Ciudad_Ayala <R> elevation_above_the_sea_level <T> 1147.0 <H> Ciudad_Ayala <R> leader_title <T> "City Manager" <H> Ciudad_Ayala <R> utc_offset <T> −6
<H> Adolfo_Suárez_Madrid–Barajas_Airport <R> location <T> Alcobendas <H> Adolfo_Suárez_Madrid–Barajas_Airport <R> elevation_above_the_sea_level <T> 610.0 <H> Adolfo_Suárez_Madrid–Barajas_Airport <R> operating_organisation <T> ENAIRE <H> ENAIRE <R> city <T> Madrid <H> Adolfo_Suárez_Madrid–Barajas_Airport <R> runway_name <T> "14R/32L" <H> Adolfo_Suárez_Madrid–Barajas_Airport <R> runway_length <T> 4349.0
<H> Aleksandr_Prudnikov <R> youthclub <T> FC_Spartak_Moscow <H> Aleksandr_Prudnikov <R> height <T> 185.0 (centimetres) <H> Aleksandr_Prudnikov <R> club <T> FC_Amkar_Perm <H> FC_Amkar_Perm <R> manager <T> Gadzhi_Gadzhiyev
<H> Adolfo_Suárez_Madrid–Barajas_Airport <R> location <T> Alcobendas <H> Adolfo_Suárez_Madrid–Barajas_Airport <R> operating_organisation <T> ENAIRE <H> ENAIRE <R> city <T> Madrid <H> Madrid <R> country <T> Spain <H> Adolfo_Suárez_Madrid–Barajas_Airport <R> runway_name <T> "14R/32L" <H> Adolfo_Suárez_Madrid–Barajas_Airport <R> runway_length <T> 4349.0
<H> Punk_blues <R> instrument <T> Drum_kit
<H> Liselotte_Grschebina <R> birth_place <T> Karlsruhe <H> Liselotte_Grschebina <R> death_place <T> Israel <H> Liselotte_Grschebina <R> death_date <T> 1994-06-14
<H> Israel <R> official_language <T> Modern_Standard_Arabic
<H> Liselotte_Grschebina <R> birth_place <T> Karlsruhe <H> Karlsruhe <R> leader_title <T> Oberbürgermeister
<H> Acharya_Institute_of_Technology <R> campus <T> "In Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore – 560090." <H> Acharya_Institute_of_Technology <R> affiliation <T> Visvesvaraya_Technological_University <H> Acharya_Institute_of_Technology <R> was_given_the_technical_campus_status_by <T> All_India_Council_for_Technical_Education <H> All_India_Council_for_Technical_Education <R> location <T> Mumbai <H> Acharya_Institute_of_Technology <R> sports_offered <T> Tennis
<H> Super_Capers <R> starring <T> Tom_Sizemore <H> Super_Capers <R> starring <T> Michael_Rooker
<H> Michael_Rooker <R> birth_place <T> Jasper,_Alabama <H> Super_Capers <R> starring <T> Michael_Rooker
<H> 1147_Stavropolis <R> absolute_magnitude <T> 11.5 <H> 1147_Stavropolis <R> discovered <T> 1929-06-11 <H> 1147_Stavropolis <R> discoverer <T> Grigory_Neujmin <H> 1147_Stavropolis <R> apoapsis <T> 418476000000.0
<H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> release_date <T> 2001-10-16 <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> record_label <T> Universal_Music_Group <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> record_label <T> Polydor_Records <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> runtime <T> 230.05 <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> recorded_in <T> United_States <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> preceded_by <T> Squeeze_(The_Velvet_Underground_album) <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> recorded_in <T> St._Louis,_Missouri
<H> 1147_Stavropolis <R> rotation_period <T> 20378.5 <H> 1147_Stavropolis <R> discovered <T> 1929-06-11 <H> 1147_Stavropolis <R> periapsis <T> 260855000000.0 <H> 1147_Stavropolis <R> apoapsis <T> 418476000000.0 <H> 1147_Stavropolis <R> orbital_period <T> 1249.6
<H> John_Mills <R> death_year <T> 2005
<H> Nurhan_Atasoy <R> birth_place <T> Reşadiye <H> Nurhan_Atasoy <R> residence <T> Istanbul <H> Istanbul <R> area_metro <T> 5343000000.0 <H> Istanbul <R> time_zone <T> Eastern_European_Summer_Time
<H> Nord_(Year_of_No_Light_album) <R> genre <T> Sludge_metal <H> Nord_(Year_of_No_Light_album) <R> release_date <T> 2006-09-06 <H> Nord_(Year_of_No_Light_album) <R> followed_by <T> Live_at_Roadburn_2008_(Year_of_No_Light_album)
<H> Nurhan_Atasoy <R> birth_place <T> Turkey <H> Turkey <R> leader <T> Recep_Tayyip_Erdoğan <H> Turkey <R> leader <T> Binali_Yıldırım
<H> Turn_Me_On_(album) <R> genre <T> Noise_rock <H> Turn_Me_On_(album) <R> genre <T> Punk_blues <H> Turn_Me_On_(album) <R> producer <T> Wharton_Tiers <H> Turn_Me_On_(album) <R> runtime <T> 35.1 <H> Turn_Me_On_(album) <R> producer <T> The_Honeymoon_Killers_(American_band) <H> Turn_Me_On_(album) <R> artist <T> The_Honeymoon_Killers_(American_band)
<H> Mermaid_(Train_song) <R> genre <T> Pop_rock <H> Pop_rock <R> music_fusion_genre <T> Baroque_pop
<H> Polydor_Records <R> parent_company <T> Universal_Music_Group
<H> Liselotte_Grschebina <R> birth_place <T> German_Empire <H> Liselotte_Grschebina <R> professional_field <T> Photographer
<H> Pontiac_Rageous <R> assembly <T> Michigan <H> Pontiac_Rageous <R> production_start_year <T> 1997 <H> Pontiac_Rageous <R> production_end_year <T> 1997 <H> Pontiac_Rageous <R> assembly <T> Detroit <H> Pontiac_Rageous <R> body_style <T> Coupe
<H> GMA_New_Media <R> location <T> GMA_Network_Center <H> GMA_New_Media <R> industry <T> Mass_Media
<H> Alan_Shepard <R> birth_date <T> "1923-11-18" <H> Alan_Shepard <R> birth_place <T> New_Hampshire <H> Alan_Shepard <R> alma_mater <T> "NWC, M.A. 1957" <H> Alan_Shepard <R> mission <T> Apollo_14
<H> It's_Great_to_Be_Young_(1956_film) <R> music_composer <T> Louis_Levy <H> It's_Great_to_Be_Young_(1956_film) <R> editing <T> Max_Benedict <H> It's_Great_to_Be_Young_(1956_film) <R> runtime <T> 94.0 <H> It's_Great_to_Be_Young_(1956_film) <R> starring <T> Cecil_Parker
<H> Liselotte_Grschebina <R> nationality <T> Israel <H> Liselotte_Grschebina <R> birth_place <T> Karlsruhe <H> Liselotte_Grschebina <R> birth_date <T> 1908-05-02 <H> Liselotte_Grschebina <R> death_date <T> 1994-06-14
<H> Alan_B._Miller_Hall <R> location <T> Virginia <H> Alan_B._Miller_Hall <R> address <T> "101 Ukrop Way" <H> Alan_B._Miller_Hall <R> building_start_date <T> "30 March 2007" <H> Alan_B._Miller_Hall <R> completion_date <T> 2009-06-01 <H> Alan_B._Miller_Hall <R> architect <T> Robert_A._M._Stern <H> Alan_B._Miller_Hall <R> current_tenants <T> Mason_School_of_Business
<H> Mermaid_(Train_song) <R> writer <T> Stargate_(production_team)
<H> Death_on_a_Factory_Farm <R> music_composer <T> Jamie_Lawrence <H> Jamie_Lawrence <R> club <T> Brentford_F.C.
<H> Let_It_Breed <R> followed_by <T> Turn_Me_On_(album)
<H> It's_Great_to_Be_Young_(1956_film) <R> music_composer <T> Louis_Levy <H> It's_Great_to_Be_Young_(1956_film) <R> runtime <T> 94.0 <H> It's_Great_to_Be_Young_(1956_film) <R> director <T> Cyril_Frankel <H> It's_Great_to_Be_Young_(1956_film) <R> starring <T> Cecil_Parker <H> It's_Great_to_Be_Young_(1956_film) <R> starring <T> John_Mills
<H> 11th_Mississippi_Infantry_Monument <R> location <T> Adams_County,_Pennsylvania <H> Adams_County,_Pennsylvania <R> has_to_its_southwest <T> Frederick_County,_Maryland
<H> It's_Great_to_Be_Young_(1956_film) <R> cinematography <T> Gilbert_Taylor <H> It's_Great_to_Be_Young_(1956_film) <R> gross <T> 282838.0 <H> It's_Great_to_Be_Young_(1956_film) <R> runtime <T> 94.0 <H> It's_Great_to_Be_Young_(1956_film) <R> director <T> Cyril_Frankel
<H> Philippines <R> leader <T> Leni_Robredo
<H> Alan_Shepard <R> nationality <T> United_States <H> Alan_Shepard <R> birth_date <T> "1923-11-18" <H> Alan_Shepard <R> birth_place <T> New_Hampshire <H> Alan_Shepard <R> award <T> Distinguished_Service_Medal_(United_States_Navy) <H> Alan_Shepard <R> death_place <T> California <H> Alan_Shepard <R> death_date <T> "1998-07-21"
<H> Ciudad_Ayala <R> type <T> City <H> Ciudad_Ayala <R> government_type <T> Council-manager_government <H> Ciudad_Ayala <R> population_density <T> 1604.0 <H> Ciudad_Ayala <R> utc_offset <T> −6
<H> Mermaid_(Train_song) <R> genre <T> Reggae <H> Mermaid_(Train_song) <R> runtime <T> 3.16 <H> Mermaid_(Train_song) <R> followed_by <T> Imagine_(John_Lennon_song) <H> Mermaid_(Train_song) <R> preceded_by <T> This'll_Be_My_Year
<H> Death_on_a_Factory_Farm <R> broadcasted_by <T> HBO <H> Death_on_a_Factory_Farm <R> music_composer <T> Jamie_Lawrence <H> Death_on_a_Factory_Farm <R> producer <T> Sarah_Teale <H> Death_on_a_Factory_Farm <R> director <T> Sarah_Teale <H> Death_on_a_Factory_Farm <R> runtime <T> 83.0
<H> Darinka_Dentcheva <R> citizenship <T> United_States
<H> Liselotte_Grschebina <R> birth_place <T> Karlsruhe <H> Liselotte_Grschebina <R> death_place <T> Petah_Tikva <H> Liselotte_Grschebina <R> death_date <T> 1994-06-14 <H> Liselotte_Grschebina <R> death_place <T> Israel <H> Israel <R> ethnic_group <T> Arab_citizens_of_Israel
<H> Super_Capers <R> distributor <T> Lionsgate <H> Super_Capers <R> gross <T> 30955.0 <H> Super_Capers <R> runtime <T> 98.0 <H> Super_Capers <R> director <T> Ray_Griggs_(director) <H> Super_Capers <R> starring <T> Tom_Lister,_Jr.
<H> Death_on_a_Factory_Farm <R> broadcasted_by <T> HBO <H> HBO <R> former_name <T> The Green Channel
<H> English_Without_Tears <R> producer <T> Anatole_de_Grunwald <H> English_Without_Tears <R> writer <T> Anatole_de_Grunwald <H> English_Without_Tears <R> editing <T> Alan_Jaggs
<H> 1147_Stavropolis <R> discovered <T> 1929-06-11 <H> 1147_Stavropolis <R> periapsis <T> 260855000000.0
<H> Bananaman <R> starring <T> Bill_Oddie <H> Bananaman <R> broadcasted_by <T> BBC <H> BBC <R> city <T> London
<H> Darinka_Dentcheva <R> residence <T> New_Jersey <H> Darinka_Dentcheva <R> alma_mater <T> Humboldt_University <H> Darinka_Dentcheva <R> known_for <T> Stochastic_programming
<H> Bedford_Aerodrome <R> city_served <T> Bedford_Autodrome <H> Bedford_Aerodrome <R> icao_location_identifier <T> EGBF
<H> Aaron_Turner <R> genre <T> Post-metal <H> Aaron_Turner <R> origin <T> Massachusetts <H> Aaron_Turner <R> instrument <T> Electric_guitar <H> Aaron_Turner <R> associated_band_/associated_musical_artist <T> Twilight_(band)
<H> Darinka_Dentcheva <R> birth_date <T> 1958-01-01 <H> Darinka_Dentcheva <R> alma_mater <T> Humboldt_University <H> Darinka_Dentcheva <R> influenced_by <T> Andrzej_Piotr_Ruszczyński <H> Darinka_Dentcheva <R> citizenship <T> United_States
<H> Ciudad_Ayala <R> time_zone <T> Pacific_Daylight_Time <H> Ciudad_Ayala <R> time_zone <T> Pacific_Standard_Time_Zone <H> Ciudad_Ayala <R> country <T> Mexico <H> Mexico <R> population_density <T> 61.0
<H> Abraham_A._Ribicoff <R> birth_place <T> United_States <H> Abraham_A._Ribicoff <R> death_place <T> United_States <H> Abraham_A._Ribicoff <R> spouse <T> Casey_Ribicoff
<H> Turn_Me_On_(album) <R> genre <T> Noise_rock <H> Turn_Me_On_(album) <R> genre <T> Punk_blues <H> Turn_Me_On_(album) <R> runtime <T> 35.1 <H> Turn_Me_On_(album) <R> producer <T> The_Honeymoon_Killers_(American_band) <H> Turn_Me_On_(album) <R> artist <T> The_Honeymoon_Killers_(American_band)
<H> Adolfo_Suárez_Madrid–Barajas_Airport <R> location <T> Alcobendas <H> Adolfo_Suárez_Madrid–Barajas_Airport <R> operating_organisation <T> ENAIRE <H> Adolfo_Suárez_Madrid–Barajas_Airport <R> elevation_above_the_sea_level <T> 610.0 <H> Adolfo_Suárez_Madrid–Barajas_Airport <R> runway_name <T> "18L/36R" <H> Adolfo_Suárez_Madrid–Barajas_Airport <R> runway_length <T> 3500.0
<H> Acharya_Institute_of_Technology <R> city <T> Bangalore <H> Acharya_Institute_of_Technology <R> affiliation <T> Visvesvaraya_Technological_University <H> Acharya_Institute_of_Technology <R> sports_offered <T> Tennis
<H> Bionico <R> course <T> Dessert <H> Bionico <R> ingredient <T> Raisin <H> Bionico <R> country <T> Mexico <H> Mexico <R> currency <T> Mexican_peso
<H> University_of_Burgundy <R> number_of_undergraduate_students <T> 16800
<H> Agremiação_Sportiva_Arapiraquense <R> ground <T> Estádio_Municipal_Coaracy_da_Mata_Fonseca <H> Estádio_Municipal_Coaracy_da_Mata_Fonseca <R> location <T> Arapiraca <H> Agremiação_Sportiva_Arapiraquense <R> season <T> 2015 <H> Agremiação_Sportiva_Arapiraquense <R> league <T> Campeonato_Brasileiro_Série_C <H> Campeonato_Brasileiro_Série_C <R> country <T> Brazil <H> Campeonato_Brasileiro_Série_C <R> champions <T> Vila_Nova_Futebol_Clube
<H> Lady_Anne_Monson <R> nationality <T> Kingdom_of_England <H> Lady_Anne_Monson <R> birth_date <T> 1726-01-01 <H> Lady_Anne_Monson <R> professional_field <T> Botany
<H> Liselotte_Grschebina <R> nationality <T> Israel <H> Liselotte_Grschebina <R> birth_place <T> Karlsruhe <H> Liselotte_Grschebina <R> birth_place <T> German_Empire <H> Liselotte_Grschebina <R> death_place <T> Israel
<H> University_of_Burgundy <R> number_of_students <T> 27400
<H> Buzz_Aldrin <R> status <T> "Retired" <H> Buzz_Aldrin <R> mission <T> Apollo_11
<H> GMA_New_Media <R> industry <T> Mass_Media <H> GMA_New_Media <R> industry <T> Entertainment <H> GMA_New_Media <R> product <T> Online_Game <H> GMA_New_Media <R> product <T> World_Wide_Web
<H> Super_Capers <R> distributor <T> Lionsgate <H> Super_Capers <R> gross <T> 30955.0 <H> Super_Capers <R> starring <T> Justin_Whalin
<H> Aleksandr_Prudnikov <R> birth_date <T> 1989-02-24 <H> Aleksandr_Prudnikov <R> youthclub <T> FC_Spartak_Moscow <H> Aleksandr_Prudnikov <R> club <T> FC_Spartak_Moscow
<H> Acharya_Institute_of_Technology <R> city <T> Bangalore <H> Acharya_Institute_of_Technology <R> president <T> "B.M. Reddy" <H> Acharya_Institute_of_Technology <R> affiliation <T> Visvesvaraya_Technological_University
<H> Mason_School_of_Business <R> country <T> United_States <H> Alan_B._Miller_Hall <R> current_tenants <T> Mason_School_of_Business <H> Alan_B._Miller_Hall <R> address <T> "101 Ukrop Way" <H> Alan_B._Miller_Hall <R> architect <T> Robert_A._M._Stern <H> Alan_B._Miller_Hall <R> completion_date <T> 2009-06-01
<H> Nie_Haisheng <R> birth_place <T> Zaoyang <H> Zaoyang <R> is_part_of <T> Xiangyang <H> Nie_Haisheng <R> mission <T> Shenzhou_10 <H> Shenzhou_10 <R> cospar_id <T> 2013-029A
<H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> recorded_in <T> San_Francisco <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> recorded_in <T> St._Louis,_Missouri <H> San_Francisco <R> leader <T> Ed_Lee_(politician)
<H> 1147_Stavropolis <R> absolute_magnitude <T> 11.5 <H> 1147_Stavropolis <R> apoapsis <T> 418476000000.0 <H> 1147_Stavropolis <R> orbital_period <T> 1249.6
<H> Nie_Haisheng <R> mission <T> Shenzhou_6 <H> Shenzhou_6 <R> cospar_id <T> 2005-040A
<H> Brandon_Carter <R> birth_place <T> England <H> Brandon_Carter <R> known_for <T> No-hair_theorem <H> Brandon_Carter <R> known_for <T> Carter_constant <H> Brandon_Carter <R> doctoral_advisor <T> Dennis_William_Sciama
<H> Super_Capers <R> runtime <T> 98.0 <H> Super_Capers <R> starring <T> Justin_Whalin
<H> Mermaid_(Train_song) <R> record_label <T> Sony_Music_Entertainment
<H> German_Empire <R> currency <T> German_Papiermark
<H> McVeagh_of_the_South_Seas <R> writer <T> Harry_Carey_(actor_born_1878) <H> McVeagh_of_the_South_Seas <R> director <T> Harry_Carey_(actor_born_1878) <H> McVeagh_of_the_South_Seas <R> starring <T> Harry_Carey_(actor_born_1878) <H> McVeagh_of_the_South_Seas <R> director <T> Cyril_Bruce
<H> Piotr_Hallmann <R> birth_place <T> Gdynia,_Poland <H> Piotr_Hallmann <R> birth_date <T> 1987-08-25 <H> Piotr_Hallmann <R> weight <T> 70.308 <H> Piotr_Hallmann <R> height <T> 175.26
<H> HBO <R> timeshift_channel <T> HBO East, HBO West
<H> AmeriGas <R> city <T> King_of_Prussia,_Pennsylvania <H> AmeriGas <R> country <T> United_States <H> United_States <R> capital <T> Washington,_D.C.
<H> Justin_Whalin <R> birth_place <T> San_Francisco <H> Super_Capers <R> starring <T> Justin_Whalin <H> Super_Capers <R> starring <T> Michael_Rooker <H> Michael_Rooker <R> birth_date <T> 1955-04-06
<H> English_Without_Tears <R> producer <T> Anatole_de_Grunwald <H> English_Without_Tears <R> music_composer <T> Nicholas_Brodszky <H> English_Without_Tears <R> runtime <T> 89.0 <H> English_Without_Tears <R> director <T> Harold_French <H> English_Without_Tears <R> release_date <T> 1944-07-28
<H> 11th_Mississippi_Infantry_Monument <R> location <T> Adams_County,_Pennsylvania <H> 11th_Mississippi_Infantry_Monument <R> country <T> "United States" <H> 11th_Mississippi_Infantry_Monument <R> category <T> Contributing_property <H> Adams_County,_Pennsylvania <R> has_to_its_southeast <T> Carroll_County,_Maryland
<H> Terence_Rattigan <R> death_year <T> 1977-01-01
<H> Alan_B._Miller_Hall <R> owner <T> College_of_William_&_Mary <H> Alan_B._Miller_Hall <R> location <T> Virginia <H> Alan_B._Miller_Hall <R> current_tenants <T> Mason_School_of_Business
<H> It's_Great_to_Be_Young_(1956_film) <R> writer <T> Ted_Willis <H> It's_Great_to_Be_Young_(1956_film) <R> starring <T> Cecil_Parker
<H> Bedford_Aerodrome <R> icao_location_identifier <T> EGBF <H> Bedford_Aerodrome <R> location <T> Thurleigh <H> Bedford_Aerodrome <R> operating_organisation <T> MotorSport_Vision <H> MotorSport_Vision <R> founded_by <T> Peter_Ogden <H> Thurleigh <R> postal_code <T> MK44
<H> Liselotte_Grschebina <R> birth_place <T> Karlsruhe <H> Karlsruhe <R> area_total <T> 173.46
<H> Alan_Shepard <R> birth_date <T> "1923-11-18" <H> Alan_Shepard <R> birth_place <T> New_Hampshire <H> Alan_Shepard <R> served_as_chief_of_the_astronaut_office_in <T> 1963 <H> Alan_Shepard <R> award <T> Distinguished_Service_Medal_(United_States_Navy) <H> Alan_Shepard <R> death_place <T> California
<H> English_Without_Tears <R> editing <T> Alan_Jaggs <H> English_Without_Tears <R> music_composer <T> Nicholas_Brodszky <H> English_Without_Tears <R> writer <T> Anatole_de_Grunwald <H> English_Without_Tears <R> runtime <T> 89.0 <H> English_Without_Tears <R> director <T> Harold_French <H> English_Without_Tears <R> release_date <T> 1944-07-28
<H> Alan_Shepard <R> nationality <T> United_States <H> Alan_Shepard <R> birth_date <T> "1923-11-18" <H> Alan_Shepard <R> birth_place <T> New_Hampshire <H> Alan_Shepard <R> death_place <T> California <H> Alan_Shepard <R> death_date <T> "1998-07-21"
<H> University_of_Burgundy <R> campus <T> Dijon <H> Dijon <R> country <T> France
<H> Expect_a_Miracle <R> runtime <T> 54.56 <H> Expect_a_Miracle <R> preceded_by <T> Pools_of_Light_(Brian_Kelly_album) <H> Expect_a_Miracle <R> producer <T> Brian_Kelly_(composer_&_pianist)
<H> J._R._R._Tolkien <R> notable_work <T> The_Silmarillion
<H> Brandon_Carter <R> birth_place <T> England <H> Brandon_Carter <R> known_for <T> No-hair_theorem <H> Brandon_Carter <R> professional_field <T> General_relativity <H> Brandon_Carter <R> known_for <T> Carter_constant
<H> Ciudad_Ayala <R> type <T> City
<H> Israel <R> leader_title <T> "Prime Minister"
<H> Olga_Bondareva <R> alma_mater <T> Leningrad_State_University <H> Olga_Bondareva <R> death_place <T> Saint_Petersburg <H> Saint_Petersburg <R> founding_date <T> 1703-05-27
<H> 1147_Stavropolis <R> apoapsis <T> 418476000000.0
<H> Turn_Me_On_(album) <R> genre <T> Punk_blues <H> Turn_Me_On_(album) <R> runtime <T> 35.1 <H> Turn_Me_On_(album) <R> artist <T> The_Honeymoon_Killers_(American_band)
<H> Bedford_Aerodrome <R> location <T> Thurleigh <H> Bedford_Aerodrome <R> city_served <T> Bedford_Autodrome <H> Bedford_Aerodrome <R> operating_organisation <T> MotorSport_Vision <H> Bedford_Aerodrome <R> icao_location_identifier <T> EGBF <H> Bedford_Aerodrome <R> runway_length <T> 1095.0
<H> Super_Capers <R> starring <T> Adam_West <H> Super_Capers <R> budget <T> 2000000.0 <H> Super_Capers <R> writer <T> Ray_Griggs_(director) <H> Super_Capers <R> director <T> Ray_Griggs_(director)
<H> The_Velvet_Underground <R> associated_band_/associated_musical_artist <T> Theatre_of_Eternal_Music
<H> McVeagh_of_the_South_Seas <R> distributor <T> Alliance_Films_Corporation <H> McVeagh_of_the_South_Seas <R> imdb_id <T> 0004319 <H> McVeagh_of_the_South_Seas <R> writer <T> Harry_Carey_(actor_born_1878) <H> McVeagh_of_the_South_Seas <R> director <T> Harry_Carey_(actor_born_1878) <H> McVeagh_of_the_South_Seas <R> starring <T> Harry_Carey_(actor_born_1878) <H> McVeagh_of_the_South_Seas <R> director <T> Cyril_Bruce
<H> Ciudad_Ayala <R> type <T> City <H> Ciudad_Ayala <R> population_metro <T> 1777539 <H> Ciudad_Ayala <R> leader_title <T> "City Manager"
<H> It's_Great_to_Be_Young_(1956_film) <R> cinematography <T> Gilbert_Taylor <H> It's_Great_to_Be_Young_(1956_film) <R> gross <T> 282838.0 <H> It's_Great_to_Be_Young_(1956_film) <R> runtime <T> 94.0 <H> It's_Great_to_Be_Young_(1956_film) <R> starring <T> John_Mills
<H> ALCO_RS-3 <R> build_date <T> "May 1950 - August 1956" <H> ALCO_RS-3 <R> builder <T> Montreal_Locomotive_Works <H> ALCO_RS-3 <R> cylinder_count <T> 12 <H> ALCO_RS-3 <R> length <T> 17068.8 (millimetres)
<H> Ciudad_Ayala <R> leader <T> Juan_Nolasco <H> Ciudad_Ayala <R> population_density <T> 1604.0
<H> Acharya_Institute_of_Technology <R> city <T> Bangalore <H> Acharya_Institute_of_Technology <R> established <T> 2000
<H> Noise_rock <R> stylistic_origin <T> Noise_music
<H> 1147_Stavropolis <R> epoch <T> 31 July 2016 (JD2457600.5) <H> 1147_Stavropolis <R> periapsis <T> 260855000000.0 <H> 1147_Stavropolis <R> orbital_period <T> 1249.6
<H> Pontiac_Rageous <R> manufacturer <T> Pontiac <H> Pontiac_Rageous <R> assembly <T> Detroit <H> Detroit <R> is_part_of <T> Wayne_County,_Michigan <H> Detroit <R> is_part_of <T> Michigan
<H> 1147_Stavropolis <R> rotation_period <T> 20378.5 <H> 1147_Stavropolis <R> discoverer <T> Grigory_Neujmin <H> 1147_Stavropolis <R> apoapsis <T> 418476000000.0 <H> 1147_Stavropolis <R> orbital_period <T> 1249.6
<H> Adolfo_Suárez_Madrid–Barajas_Airport <R> location <T> Alcobendas <H> Adolfo_Suárez_Madrid–Barajas_Airport <R> elevation_above_the_sea_level <T> 610.0 <H> Adolfo_Suárez_Madrid–Barajas_Airport <R> runway_name <T> "14L/32R" <H> Adolfo_Suárez_Madrid–Barajas_Airport <R> runway_length <T> 4349.0 <H> Adolfo_Suárez_Madrid–Barajas_Airport <R> operating_organisation <T> ENAIRE <H> ENAIRE <R> city <T> Madrid
<H> Nie_Haisheng <R> nationality <T> People's_Republic_of_China
<H> Al_Asad_Airbase <R> operating_organisation <T> United_States_Air_Force <H> United_States_Air_Force <R> transport_aircraft <T> Boeing_C-17_Globemaster_III
<H> The_Fellowship_of_the_Ring <R> author <T> J._R._R._Tolkien <H> The_Fellowship_of_the_Ring <R> literary_genre <T> Fantasy_(genre)
<H> Ciudad_Ayala <R> is_part_of <T> Morelos <H> Morelos <R> leader_title <T> Governor
<H> Death_on_a_Factory_Farm <R> broadcasted_by <T> HBO <H> HBO <R> timeshift_channel <T> HBO East, HBO West <H> Death_on_a_Factory_Farm <R> music_composer <T> Jamie_Lawrence <H> Jamie_Lawrence <R> club <T> Ashford_Town_(Middlesex)_F.C.
<H> J._R._R._Tolkien <R> birth_date <T> 1892-01-03
<H> Kingdom_of_England <R> founding_year <T> 0927
<H> It's_Great_to_Be_Young_(1956_film) <R> cinematography <T> Gilbert_Taylor <H> It's_Great_to_Be_Young_(1956_film) <R> director <T> Cyril_Frankel <H> It's_Great_to_Be_Young_(1956_film) <R> gross <T> 282838.0 <H> It's_Great_to_Be_Young_(1956_film) <R> runtime <T> 94.0 <H> It's_Great_to_Be_Young_(1956_film) <R> starring <T> Cecil_Parker <H> It's_Great_to_Be_Young_(1956_film) <R> starring <T> John_Mills <H> It's_Great_to_Be_Young_(1956_film) <R> music_composer <T> Louis_Levy
<H> Post-metal <R> instrument <T> Synthesizer
<H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> genre <T> Rock_music
<H> Death_on_a_Factory_Farm <R> editor <T> Geof_Bartz <H> Death_on_a_Factory_Farm <R> music_composer <T> Jamie_Lawrence <H> Death_on_a_Factory_Farm <R> runtime <T> 83.0 <H> Death_on_a_Factory_Farm <R> director <T> Tom_Simon
<H> Agremiação_Sportiva_Arapiraquense <R> nickname <T> "''Alvinegro" <H> Agremiação_Sportiva_Arapiraquense <R> league <T> Campeonato_Brasileiro_Série_C <H> Campeonato_Brasileiro_Série_C <R> country <T> Brazil
<H> Alan_Shepard <R> nationality <T> United_States <H> Alan_Shepard <R> birth_date <T> "1923-11-18" <H> Alan_Shepard <R> birth_place <T> New_Hampshire <H> Alan_Shepard <R> selected_by_nasa <T> 1959 <H> Alan_Shepard <R> award <T> Distinguished_Service_Medal_(United_States_Navy) <H> Alan_Shepard <R> death_place <T> California
<H> Turn_Me_On_(album) <R> genre <T> Punk_blues <H> Turn_Me_On_(album) <R> runtime <T> 35.1 <H> Turn_Me_On_(album) <R> producer <T> The_Honeymoon_Killers_(American_band) <H> Turn_Me_On_(album) <R> artist <T> The_Honeymoon_Killers_(American_band)
<H> Alan_B._Miller_Hall <R> location <T> Virginia <H> Alan_B._Miller_Hall <R> address <T> "101 Ukrop Way" <H> Alan_B._Miller_Hall <R> current_tenants <T> Mason_School_of_Business
<H> Manila <R> is_part_of <T> Metro_Manila
<H> Alan_B._Miller_Hall <R> owner <T> College_of_William_&_Mary <H> Alan_B._Miller_Hall <R> address <T> "101 Ukrop Way" <H> Alan_B._Miller_Hall <R> building_start_date <T> "30 March 2007" <H> Alan_B._Miller_Hall <R> architect <T> Robert_A._M._Stern <H> Alan_B._Miller_Hall <R> architectural_style <T> Georgian_architecture <H> Alan_B._Miller_Hall <R> current_tenants <T> Mason_School_of_Business <H> Mason_School_of_Business <R> country <T> United_States
<H> Adolfo_Suárez_Madrid–Barajas_Airport <R> location <T> Alcobendas <H> Adolfo_Suárez_Madrid–Barajas_Airport <R> operating_organisation <T> ENAIRE <H> Adolfo_Suárez_Madrid–Barajas_Airport <R> elevation_above_the_sea_level <T> 610.0 <H> Adolfo_Suárez_Madrid–Barajas_Airport <R> runway_length <T> 3500.0
<H> Acharya_Institute_of_Technology <R> campus <T> "In Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore – 560090." <H> Acharya_Institute_of_Technology <R> president <T> "B.M. Reddy" <H> Acharya_Institute_of_Technology <R> affiliation <T> Visvesvaraya_Technological_University <H> Acharya_Institute_of_Technology <R> was_given_the_technical_campus_status_by <T> All_India_Council_for_Technical_Education <H> All_India_Council_for_Technical_Education <R> location <T> Mumbai
<H> Olga_Bondareva <R> birth_place <T> Leningrad,_USSR <H> Olga_Bondareva <R> death_place <T> Saint_Petersburg <H> Saint_Petersburg <R> founding_date <T> 1703-05-27 <H> Saint_Petersburg <R> leader_title <T> Governor
<H> Lady_Anne_Monson <R> nationality <T> Kingdom_of_England <H> Lady_Anne_Monson <R> residence <T> India <H> India <R> leader_title <T> Chief Justice <H> India <R> area_total <T> 3287590000000.0
<H> Nie_Haisheng <R> birth_place <T> Zaoyang <H> Zaoyang <R> is_part_of <T> Hubei
<H> Agremiação_Sportiva_Arapiraquense <R> league <T> Campeonato_Brasileiro_Série_C <H> Campeonato_Brasileiro_Série_C <R> country <T> Brazil <H> Agremiação_Sportiva_Arapiraquense <R> number_of_members <T> 17000 <H> Agremiação_Sportiva_Arapiraquense <R> season <T> 2015_Campeonato_Brasileiro_Série_C
<H> Nurhan_Atasoy <R> residence <T> Turkey <H> Nurhan_Atasoy <R> birth_date <T> 1934-01-01 <H> Nurhan_Atasoy <R> residence <T> Istanbul <H> Nurhan_Atasoy <R> citizenship <T> Turkey
<H> Liselotte_Grschebina <R> nationality <T> Israel <H> Liselotte_Grschebina <R> birth_place <T> German_Empire <H> Liselotte_Grschebina <R> training <T> School_of_Applied_Arts_in_Stuttgart
<H> Mermaid_(Train_song) <R> genre <T> Pop_rock <H> Mermaid_(Train_song) <R> record_label <T> Columbia_Records <H> Mermaid_(Train_song) <R> musical_band <T> Train_(band)
<H> Mermaid_(Train_song) <R> followed_by <T> Imagine_(John_Lennon_song)
<H> Lady_Anne_Monson <R> birth_place <T> Kingdom_of_England <H> Lady_Anne_Monson <R> birth_place <T> Darlington <H> Lady_Anne_Monson <R> birth_date <T> 1726-01-01 <H> Lady_Anne_Monson <R> residence <T> India <H> Lady_Anne_Monson <R> death_date <T> 1776-02-18
<H> Adolfo_Suárez_Madrid–Barajas_Airport <R> location <T> Alcobendas <H> Alcobendas <R> country <T> Spain <H> Adolfo_Suárez_Madrid–Barajas_Airport <R> operating_organisation <T> ENAIRE <H> Adolfo_Suárez_Madrid–Barajas_Airport <R> elevation_above_the_sea_level <T> 610.0 <H> Adolfo_Suárez_Madrid–Barajas_Airport <R> runway_name <T> "14R/32L" <H> Adolfo_Suárez_Madrid–Barajas_Airport <R> runway_length <T> 4349.0
<H> Agremiação_Sportiva_Arapiraquense <R> ground <T> Estádio_Municipal_Coaracy_da_Mata_Fonseca <H> Estádio_Municipal_Coaracy_da_Mata_Fonseca <R> location <T> Arapiraca <H> Agremiação_Sportiva_Arapiraquense <R> number_of_members <T> 17000 <H> Agremiação_Sportiva_Arapiraquense <R> season <T> 2015_Campeonato_Brasileiro_Série_C <H> Agremiação_Sportiva_Arapiraquense <R> league <T> Campeonato_Brasileiro_Série_C <H> Campeonato_Brasileiro_Série_C <R> champions <T> Vila_Nova_Futebol_Clube
<H> Acharya_Institute_of_Technology <R> campus <T> "In Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore – 560090." <H> Acharya_Institute_of_Technology <R> country <T> "India" <H> Acharya_Institute_of_Technology <R> president <T> "B.M. Reddy" <H> Acharya_Institute_of_Technology <R> affiliation <T> Visvesvaraya_Technological_University
<H> Nurhan_Atasoy <R> birth_date <T> 1934-01-01
<H> Death_on_a_Factory_Farm <R> producer <T> Sarah_Teale <H> Death_on_a_Factory_Farm <R> producer <T> Tom_Simon <H> Death_on_a_Factory_Farm <R> broadcasted_by <T> HBO <H> HBO <R> headquarter <T> New_York_City,_New_York <H> HBO <R> owner <T> Time_Warner
<H> Nie_Haisheng <R> birth_place <T> Zaoyang <H> Nie_Haisheng <R> mission <T> Shenzhou_10 <H> Nie_Haisheng <R> mission <T> Shenzhou_6
<H> Darinka_Dentcheva <R> residence <T> New_Jersey
<H> 11th_Mississippi_Infantry_Monument <R> location <T> Adams_County,_Pennsylvania <H> 11th_Mississippi_Infantry_Monument <R> category <T> Contributing_property <H> Adams_County,_Pennsylvania <R> has_to_its_southwest <T> Frederick_County,_Maryland
<H> Bionico <R> course <T> Dessert <H> Bionico <R> region <T> Guadalajara <H> Bionico <R> country <T> Mexico <H> Mexico <R> currency <T> Mexican_peso <H> Mexico <R> leader <T> Silvano_Aureoles_Conejo <H> Mexico <R> demonym <T> Mexicans <H> Bionico <R> main_ingredient <T> "Chopped Fruits, Sour Cream, Condensed Milk, Granola, Shredded Coconut, Raisins"
<H> Bionico <R> course <T> Dessert <H> Dessert <R> dish_variation <T> Cookie <H> Bionico <R> country <T> Mexico
<H> Pontiac_Rageous <R> assembly <T> Michigan <H> Pontiac_Rageous <R> assembly <T> Detroit <H> Pontiac_Rageous <R> manufacturer <T> Pontiac <H> Pontiac <R> parent_company <T> General_Motors
<H> Liselotte_Grschebina <R> birth_date <T> 1908-05-02 <H> Liselotte_Grschebina <R> professional_field <T> Photographer <H> Liselotte_Grschebina <R> death_date <T> 1994-06-14
<H> Darinka_Dentcheva <R> residence <T> New_Jersey <H> New_Jersey <R> area_total <T> 22591.38
<H> 1147_Stavropolis <R> rotation_period <T> 20378.5 <H> 1147_Stavropolis <R> absolute_magnitude <T> 11.5 <H> 1147_Stavropolis <R> discoverer <T> Grigory_Neujmin <H> 1147_Stavropolis <R> apoapsis <T> 418476000000.0 <H> 1147_Stavropolis <R> orbital_period <T> 1249.6
<H> Mermaid_(Train_song) <R> genre <T> Pop_rock <H> Mermaid_(Train_song) <R> release_date <T> 2012-12-27 <H> Mermaid_(Train_song) <R> runtime <T> 3.16 <H> Mermaid_(Train_song) <R> record_label <T> Columbia_Records <H> Mermaid_(Train_song) <R> musical_band <T> Train_(band)
<H> Liselotte_Grschebina <R> birth_place <T> Karlsruhe <H> Liselotte_Grschebina <R> birth_date <T> 1908-05-02 <H> Liselotte_Grschebina <R> death_place <T> Israel
<H> Polydor_Records <R> location <T> London <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> record_label <T> Polydor_Records <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> record_label <T> Universal_Music_Group <H> Universal_Music_Group <R> location <T> Santa_Monica,_California
<H> Acharya_Institute_of_Technology <R> campus <T> "In Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore – 560090." <H> Acharya_Institute_of_Technology <R> established <T> 2000 <H> Acharya_Institute_of_Technology <R> affiliation <T> Visvesvaraya_Technological_University <H> Acharya_Institute_of_Technology <R> was_given_the_technical_campus_status_by <T> All_India_Council_for_Technical_Education <H> All_India_Council_for_Technical_Education <R> location <T> Mumbai
<H> Olga_Bondareva <R> alma_mater <T> Leningrad_State_University <H> Olga_Bondareva <R> known_for <T> Bondareva–Shapley_theorem
<H> Ciudad_Ayala <R> country <T> Mexico <H> Ciudad_Ayala <R> population_density <T> 1604.0
<H> 11th_Mississippi_Infantry_Monument <R> municipality <T> Gettysburg,_Pennsylvania <H> 11th_Mississippi_Infantry_Monument <R> location <T> Adams_County,_Pennsylvania <H> 11th_Mississippi_Infantry_Monument <R> category <T> Contributing_property <H> Adams_County,_Pennsylvania <R> has_to_its_southeast <T> Carroll_County,_Maryland
<H> Acharya_Institute_of_Technology <R> campus <T> "In Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore – 560090." <H> Acharya_Institute_of_Technology <R> city <T> Bangalore <H> Acharya_Institute_of_Technology <R> established <T> 2000 <H> Acharya_Institute_of_Technology <R> director <T> "Dr. G. P. Prabhukumar" <H> Acharya_Institute_of_Technology <R> was_given_the_technical_campus_status_by <T> All_India_Council_for_Technical_Education <H> All_India_Council_for_Technical_Education <R> location <T> Mumbai <H> Bangalore <R> founder <T> Kempe_Gowda_I
<H> It's_Great_to_Be_Young_(1956_film) <R> cinematography <T> Gilbert_Taylor
<H> Bedford_Aerodrome <R> location <T> Thurleigh <H> Bedford_Aerodrome <R> operating_organisation <T> MotorSport_Vision <H> Bedford_Aerodrome <R> icao_location_identifier <T> EGBF <H> Bedford_Aerodrome <R> elevation_above_the_sea_level <T> 83.2104
<H> Death_on_a_Factory_Farm <R> producer <T> Sarah_Teale <H> Death_on_a_Factory_Farm <R> runtime <T> 83.0
<H> Death_on_a_Factory_Farm <R> broadcasted_by <T> HBO <H> Death_on_a_Factory_Farm <R> director <T> Tom_Simon
<H> The_Fellowship_of_the_Ring <R> literary_genre <T> Fantasy_(genre) <H> The_Fellowship_of_the_Ring <R> publisher <T> George_Allen_&_Unwin <H> The_Fellowship_of_the_Ring <R> preceded_by <T> The_Hobbit <H> The_Fellowship_of_the_Ring <R> followed_by <T> The_Two_Towers
<H> Nie_Haisheng <R> nationality <T> People's_Republic_of_China <H> Nie_Haisheng <R> birth_place <T> Hubei <H> Nie_Haisheng <R> birth_place <T> Zaoyang <H> Nie_Haisheng <R> birth_date <T> 1964-10-13 <H> Nie_Haisheng <R> mission <T> Shenzhou_10 <H> Nie_Haisheng <R> mission <T> Shenzhou_6
<H> Nord_(Year_of_No_Light_album) <R> artist <T> Year_of_No_Light <H> Nord_(Year_of_No_Light_album) <R> record_label <T> Crucial_Blast <H> Nord_(Year_of_No_Light_album) <R> runtime <T> 58.41 <H> Nord_(Year_of_No_Light_album) <R> release_date <T> 2006-09-06 <H> Nord_(Year_of_No_Light_album) <R> record_label <T> E-Vinyl
<H> Darinka_Dentcheva <R> birth_date <T> 1958-01-01 <H> Darinka_Dentcheva <R> influenced_by <T> Andrzej_Piotr_Ruszczyński
<H> Nurhan_Atasoy <R> birth_place <T> Turkey <H> Nurhan_Atasoy <R> birth_date <T> 1934-01-01 <H> Nurhan_Atasoy <R> residence <T> Istanbul <H> Nurhan_Atasoy <R> residence <T> Turkey <H> Nurhan_Atasoy <R> citizenship <T> Turkey
<H> Bedford_Aerodrome <R> runway_surface_type <T> Concrete <H> Bedford_Aerodrome <R> location <T> Thurleigh <H> Bedford_Aerodrome <R> runway_name <T> "08/26" <H> Thurleigh <R> area_code <T> 01234
<H> Expect_a_Miracle <R> genre <T> Easy_listening <H> Expect_a_Miracle <R> genre <T> Instrumental_music
<H> Adolfo_Suárez_Madrid–Barajas_Airport <R> location <T> Alcobendas <H> Adolfo_Suárez_Madrid–Barajas_Airport <R> elevation_above_the_sea_level <T> 610.0 <H> Adolfo_Suárez_Madrid–Barajas_Airport <R> operating_organisation <T> ENAIRE <H> ENAIRE <R> city <T> Madrid <H> Madrid <R> country <T> Spain
<H> Nurhan_Atasoy <R> residence <T> Turkey <H> Nurhan_Atasoy <R> residence <T> Istanbul <H> Istanbul <R> time_zone <T> Eastern_European_Summer_Time <H> Istanbul <R> time_zone <T> Eastern_European_Time
<H> The_Hobbit <R> followed_by <T> The_Lord_of_the_Rings
<H> Alan_B._Miller_Hall <R> owner <T> College_of_William_&_Mary <H> Alan_B._Miller_Hall <R> location <T> Virginia <H> Alan_B._Miller_Hall <R> architect <T> Robert_A._M._Stern <H> Alan_B._Miller_Hall <R> current_tenants <T> Mason_School_of_Business
<H> Turn_Me_On_(album) <R> runtime <T> 35.1 <H> Turn_Me_On_(album) <R> preceded_by <T> Let_It_Breed <H> Turn_Me_On_(album) <R> followed_by <T> Take_It_Off!
<H> English_Without_Tears <R> producer <T> Anatole_de_Grunwald <H> English_Without_Tears <R> writer <T> Anatole_de_Grunwald <H> English_Without_Tears <R> cinematography <T> Bernard_Knowles <H> English_Without_Tears <R> editing <T> Alan_Jaggs <H> English_Without_Tears <R> release_date <T> 1944-07-28
<H> Alan_B._Miller_Hall <R> owner <T> College_of_William_&_Mary <H> Alan_B._Miller_Hall <R> completion_date <T> 2009-06-01 <H> Alan_B._Miller_Hall <R> architect <T> Robert_A._M._Stern <H> Alan_B._Miller_Hall <R> current_tenants <T> Mason_School_of_Business
<H> German_Empire <R> currency <T> South_German_gulden
<H> Liselotte_Grschebina <R> birth_date <T> 1908-05-02 <H> Liselotte_Grschebina <R> training <T> School_of_Applied_Arts_in_Stuttgart
<H> Piotr_Hallmann <R> birth_place <T> Gdynia,_Poland <H> Piotr_Hallmann <R> weight <T> 70.308 <H> Gdynia,_Poland <R> time_zone <T> Central_European_Time
<H> Alan_B._Miller_Hall <R> owner <T> College_of_William_&_Mary <H> Alan_B._Miller_Hall <R> current_tenants <T> Mason_School_of_Business <H> Mason_School_of_Business <R> country <T> United_States
<H> Alan_Shepard <R> nationality <T> United_States <H> Alan_Shepard <R> birth_date <T> "1923-11-18" <H> Alan_Shepard <R> birth_place <T> New_Hampshire <H> Alan_Shepard <R> occupation <T> Test_pilot <H> Alan_Shepard <R> selected_by_nasa <T> 1959 <H> Alan_Shepard <R> death_place <T> California
<H> Nord_(Year_of_No_Light_album) <R> record_label <T> E-Vinyl
<H> 11th_Mississippi_Infantry_Monument <R> municipality <T> Gettysburg,_Pennsylvania <H> 11th_Mississippi_Infantry_Monument <R> location <T> Adams_County,_Pennsylvania <H> 11th_Mississippi_Infantry_Monument <R> established <T> 2000 <H> 11th_Mississippi_Infantry_Monument <R> category <T> Contributing_property <H> Adams_County,_Pennsylvania <R> has_to_its_southeast <T> Carroll_County,_Maryland <H> Adams_County,_Pennsylvania <R> has_to_its_southwest <T> Frederick_County,_Maryland
<H> Darinka_Dentcheva <R> citizenship <T> United_States <H> United_States <R> leader <T> John_Roberts
<H> 11th_Mississippi_Infantry_Monument <R> established <T> 2000 <H> 11th_Mississippi_Infantry_Monument <R> location <T> Adams_County,_Pennsylvania <H> 11th_Mississippi_Infantry_Monument <R> state <T> "Pennsylvania" <H> 11th_Mississippi_Infantry_Monument <R> category <T> Contributing_property <H> Adams_County,_Pennsylvania <R> has_to_its_north <T> Cumberland_County,_Pennsylvania
<H> Bedford_Aerodrome <R> runway_surface_type <T> Concrete <H> Bedford_Aerodrome <R> location <T> Thurleigh <H> Bedford_Aerodrome <R> city_served <T> Bedford_Autodrome <H> Bedford_Aerodrome <R> operating_organisation <T> MotorSport_Vision <H> Bedford_Aerodrome <R> icao_location_identifier <T> EGBF <H> Bedford_Aerodrome <R> elevation_above_the_sea_level <T> 83.2104 <H> Bedford_Aerodrome <R> runway_length <T> 1095.0
<H> Bionico <R> region <T> Guadalajara <H> Bionico <R> country <T> Mexico <H> Mexico <R> currency <T> Mexican_peso <H> Mexico <R> demonym <T> Mexicans <H> Bionico <R> course <T> Dessert <H> Dessert <R> dish_variation <T> Sandesh_(confectionery) <H> Bionico <R> ingredient <T> Sour_cream
<H> Bedford_Aerodrome <R> location <T> Thurleigh <H> Bedford_Aerodrome <R> operating_organisation <T> MotorSport_Vision <H> Bedford_Aerodrome <R> runway_length <T> 1095.0
<H> Turkey <R> leader_title <T> "Prime Minister"
<H> Alan_Shepard <R> birth_place <T> New_Hampshire <H> Alan_Shepard <R> death_place <T> California <H> California <R> senators <T> Dianne_Feinstein
<H> Nurhan_Atasoy <R> birth_place <T> Reşadiye <H> Nurhan_Atasoy <R> birth_place <T> Turkey <H> Reşadiye <R> is_part_of <T> Tokat_Province <H> Turkey <R> area_total <T> 783356.0
<H> Liselotte_Grschebina <R> death_place <T> Israel <H> Israel <R> official_language <T> Modern_Hebrew
<H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> record_label <T> Polydor_Records <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> record_label <T> Universal_Music_Group <H> Universal_Music_Group <R> key_person <T> Lucian_Grainge
<H> Liselotte_Grschebina <R> nationality <T> Israel <H> Israel <R> population_density <T> 387.63 <H> Liselotte_Grschebina <R> professional_field <T> Photographer <H> Liselotte_Grschebina <R> birth_place <T> German_Empire <H> German_Empire <R> founding_date <T> 1871-01-01
<H> Olga_Bondareva <R> professional_field <T> Mathematics
<H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> producer <T> The_Velvet_Underground <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> runtime <T> 230.05
<H> Andrew_Rayel <R> genre <T> Trance_music <H> Andrew_Rayel <R> associated_band_/associated_musical_artist <T> Christian_Burns
<H> Mermaid_(Train_song) <R> record_label <T> Columbia_Records <H> Mermaid_(Train_song) <R> musical_band <T> Train_(band) <H> Train_(band) <R> record_label <T> Warner_Music_Group
<H> Nurhan_Atasoy <R> birth_place <T> Turkey <H> Nurhan_Atasoy <R> residence <T> Istanbul
<H> Mermaid_(Train_song) <R> genre <T> Pop_rock <H> Mermaid_(Train_song) <R> genre <T> Reggae <H> Mermaid_(Train_song) <R> release_date <T> 2012-12-27 <H> Mermaid_(Train_song) <R> runtime <T> 3.16 <H> Mermaid_(Train_song) <R> writer <T> Espen_Lind <H> Mermaid_(Train_song) <R> preceded_by <T> This'll_Be_My_Year
<H> GMA_New_Media <R> key_person <T> Felipe_Gozon <H> GMA_New_Media <R> industry <T> Entertainment <H> GMA_New_Media <R> subsidiary <T> Philippine_Entertainment_Portal <H> GMA_New_Media <R> parent_company <T> GMA_Network_(company) <H> GMA_New_Media <R> subsidiary <T> Digify,_Inc.
<H> Lady_Anne_Monson <R> residence <T> India <H> India <R> leader <T> T._S._Thakur
<H> Liselotte_Grschebina <R> nationality <T> Israel <H> Liselotte_Grschebina <R> birth_place <T> Karlsruhe <H> Liselotte_Grschebina <R> birth_place <T> German_Empire <H> Liselotte_Grschebina <R> birth_date <T> 1908-05-02 <H> Liselotte_Grschebina <R> death_place <T> Israel <H> Liselotte_Grschebina <R> professional_field <T> Photographer <H> Liselotte_Grschebina <R> death_date <T> 1994-06-14
<H> Mermaid_(Train_song) <R> record_label <T> Sony_Music_Entertainment <H> Mermaid_(Train_song) <R> followed_by <T> Imagine_(John_Lennon_song) <H> Imagine_(John_Lennon_song) <R> followed_by <T> Happy_Xmas_(War_Is_Over)
<H> English_Without_Tears <R> writer <T> Anatole_de_Grunwald <H> English_Without_Tears <R> writer <T> Terence_Rattigan
<H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> recorded_in <T> San_Francisco <H> San_Francisco <R> utc_offset <T> −7 <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> recorded_in <T> United_States <H> United_States <R> area_total <T> 9833520000000.0
<H> Bionico <R> course <T> Dessert <H> Dessert <R> dish_variation <T> Cookie <H> Bionico <R> country <T> Mexico <H> Mexico <R> currency <T> Mexican_peso
<H> Nord_(Year_of_No_Light_album) <R> genre <T> Post-metal <H> Nord_(Year_of_No_Light_album) <R> genre <T> Sludge_metal <H> Sludge_metal <R> music_subgenre <T> Stoner_sludge <H> Sludge_metal <R> music_subgenre <T> Southern_sludge
<H> Pontiac_Rageous <R> assembly <T> Michigan <H> Michigan <R> language <T> English_language
<H> Mermaid_(Train_song) <R> genre <T> Pop_rock <H> Mermaid_(Train_song) <R> runtime <T> 3.16 <H> Mermaid_(Train_song) <R> record_label <T> Sony_Music_Entertainment <H> Mermaid_(Train_song) <R> record_label <T> Columbia_Records
<H> Lady_Anne_Monson <R> birth_place <T> Kingdom_of_England <H> Kingdom_of_England <R> government_type <T> Unitary_state
<H> United_States <R> demonym <T> American
<H> Alan_B._Miller_Hall <R> owner <T> College_of_William_&_Mary <H> Alan_B._Miller_Hall <R> address <T> "101 Ukrop Way" <H> Alan_B._Miller_Hall <R> architect <T> Robert_A._M._Stern <H> Alan_B._Miller_Hall <R> architectural_style <T> Georgian_architecture <H> Alan_B._Miller_Hall <R> current_tenants <T> Mason_School_of_Business
<H> Aleksandr_Prudnikov <R> birth_date <T> 1989-02-24 <H> Aleksandr_Prudnikov <R> club <T> FC_Terek_Grozny <H> FC_Terek_Grozny <R> manager <T> Rashid_Rakhimov
<H> Mermaid_(Train_song) <R> release_date <T> 2012-12-27
<H> 1147_Stavropolis <R> absolute_magnitude <T> 11.5 <H> 1147_Stavropolis <R> discoverer <T> Grigory_Neujmin <H> 1147_Stavropolis <R> apoapsis <T> 418476000000.0
<H> Al_Asad_Airbase <R> operating_organisation <T> United_States_Air_Force <H> Al_Asad_Airbase <R> runway_name <T> "09R/27L"
<H> Expect_a_Miracle <R> genre <T> Easy_listening <H> Expect_a_Miracle <R> genre <T> Instrumental_music <H> Expect_a_Miracle <R> runtime <T> 54.56 <H> Expect_a_Miracle <R> artist <T> Brian_Kelly_(composer_&_pianist) <H> Expect_a_Miracle <R> followed_by <T> Afterplay_(Brian_Kelly_album)
<H> Mermaid_(Train_song) <R> record_label <T> Columbia_Records <H> Mermaid_(Train_song) <R> record_label <T> Sony_Music_Entertainment <H> Mermaid_(Train_song) <R> followed_by <T> Imagine_(John_Lennon_song) <H> Imagine_(John_Lennon_song) <R> followed_by <T> Happy_Xmas_(War_Is_Over)
<H> Darinka_Dentcheva <R> professional_field <T> Mathematical_optimization
<H> Mermaid_(Train_song) <R> genre <T> Reggae <H> Mermaid_(Train_song) <R> release_date <T> 2012-12-27 <H> Mermaid_(Train_song) <R> writer <T> Espen_Lind <H> Mermaid_(Train_song) <R> preceded_by <T> This'll_Be_My_Year
<H> GMA_New_Media <R> location <T> Quezon_City <H> GMA_New_Media <R> location <T> Philippines <H> GMA_New_Media <R> product <T> World_Wide_Web <H> Philippines <R> founding_date <T> 1898-06-12 <H> Quezon_City <R> leader_party <T> Liberal_Party_(Philippines)
<H> Terence_Rattigan <R> birth_date <T> 1911-01-01
<H> Bionico <R> region <T> Guadalajara <H> Bionico <R> country <T> Mexico
<H> Darinka_Dentcheva <R> professional_field <T> Mathematical_optimization <H> Darinka_Dentcheva <R> alma_mater <T> Humboldt_University <H> Darinka_Dentcheva <R> influenced_by <T> Andrzej_Piotr_Ruszczyński <H> Darinka_Dentcheva <R> known_for <T> Stochastic_programming
<H> Super_Capers <R> distributor <T> Roadside_Attractions <H> Super_Capers <R> runtime <T> 98.0 <H> Super_Capers <R> starring <T> Tom_Sizemore
<H> 11th_Mississippi_Infantry_Monument <R> location <T> Adams_County,_Pennsylvania <H> Adams_County,_Pennsylvania <R> has_to_its_west <T> Franklin_County,_Pennsylvania
<H> Mermaid_(Train_song) <R> record_label <T> Columbia_Records <H> Mermaid_(Train_song) <R> record_label <T> Sony_Music_Entertainment <H> Sony_Music_Entertainment <R> owner <T> Sony_Corporation
<H> Lady_Anne_Monson <R> birth_date <T> 1726-01-01 <H> Lady_Anne_Monson <R> death_date <T> 1776-02-18
<H> HBO <R> owner <T> Time_Warner
<H> Lady_Anne_Monson <R> nationality <T> Kingdom_of_England <H> Lady_Anne_Monson <R> residence <T> India <H> Lady_Anne_Monson <R> spouse <T> George_Monson <H> Lady_Anne_Monson <R> death_date <T> 1776-02-18
<H> Ciudad_Ayala <R> type <T> City <H> Ciudad_Ayala <R> government_type <T> Council-manager_government <H> Ciudad_Ayala <R> country <T> Mexico <H> Ciudad_Ayala <R> population_metro <T> 1777539 <H> Ciudad_Ayala <R> population_density <T> 1604.0 <H> Ciudad_Ayala <R> leader_title <T> "City Manager" <H> Ciudad_Ayala <R> utc_offset <T> −6
<H> Abraham_A._Ribicoff <R> nationality <T> American <H> Abraham_A._Ribicoff <R> birth_place <T> Connecticut <H> Abraham_A._Ribicoff <R> spouse <T> "Ruth Ribicoff" <H> Abraham_A._Ribicoff <R> in_office_while_president <T> John_F._Kennedy <H> Abraham_A._Ribicoff <R> death_place <T> United_States
<H> Brandon_Carter <R> known_for <T> Anthropic_principle
<H> Death_on_a_Factory_Farm <R> music_composer <T> Jamie_Lawrence <H> Death_on_a_Factory_Farm <R> runtime <T> 83.0 <H> Death_on_a_Factory_Farm <R> director <T> Sarah_Teale
<H> Adolfo_Suárez_Madrid–Barajas_Airport <R> location <T> Madrid <H> Adolfo_Suárez_Madrid–Barajas_Airport <R> operating_organisation <T> ENAIRE <H> Adolfo_Suárez_Madrid–Barajas_Airport <R> runway_length <T> 3500.0
<H> Petah_Tikva <R> leader <T> Itzik_Braverman
<H> Nie_Haisheng <R> nationality <T> People's_Republic_of_China <H> Nie_Haisheng <R> birth_date <T> 1964-10-13
<H> 1147_Stavropolis <R> absolute_magnitude <T> 11.5 <H> 1147_Stavropolis <R> discovered <T> 1929-06-11 <H> 1147_Stavropolis <R> periapsis <T> 260855000000.0 <H> 1147_Stavropolis <R> apoapsis <T> 418476000000.0
<H> Abraham_A._Ribicoff <R> nationality <T> American <H> Abraham_A._Ribicoff <R> birth_place <T> United_States <H> Abraham_A._Ribicoff <R> spouse <T> Casey_Ribicoff
<H> Olga_Bondareva <R> birth_date <T> 1937-04-27 <H> Olga_Bondareva <R> alma_mater <T> Leningrad_State_University
<H> Death_on_a_Factory_Farm <R> editor <T> Geof_Bartz <H> Death_on_a_Factory_Farm <R> director <T> Tom_Simon
<H> Nord_(Year_of_No_Light_album) <R> producer <T> Year_of_No_Light <H> Nord_(Year_of_No_Light_album) <R> record_label <T> Crucial_Blast <H> Nord_(Year_of_No_Light_album) <R> record_label <T> E-Vinyl
<H> Darinka_Dentcheva <R> residence <T> New_Jersey <H> Darinka_Dentcheva <R> alma_mater <T> Humboldt_University
<H> Squeeze_(The_Velvet_Underground_album) <R> genre <T> Rock_music
<H> Al_Asad_Airbase <R> operating_organisation <T> United_States_Air_Force <H> Al_Asad_Airbase <R> icao_location_identifier <T> "ORAA"
<H> New_Jersey <R> language <T> English_language
<H> Nie_Haisheng <R> nationality <T> People's_Republic_of_China <H> Nie_Haisheng <R> birth_place <T> Zaoyang <H> Nie_Haisheng <R> birth_place <T> Hubei
<H> Lady_Anne_Monson <R> nationality <T> Kingdom_of_England <H> Lady_Anne_Monson <R> birth_place <T> Kingdom_of_England <H> Lady_Anne_Monson <R> birth_date <T> 1726-01-01 <H> Lady_Anne_Monson <R> spouse <T> George_Monson
<H> Piotr_Hallmann <R> weight <T> 70.308 <H> Piotr_Hallmann <R> height <T> 175.26
<H> McVeagh_of_the_South_Seas <R> imdb_id <T> 0004319 <H> McVeagh_of_the_South_Seas <R> director <T> Cyril_Bruce
<H> La_Crosse,_Wisconsin <R> is_part_of <T> La_Crosse_County,_Wisconsin
<H> Death_on_a_Factory_Farm <R> editor <T> Geof_Bartz <H> Death_on_a_Factory_Farm <R> broadcasted_by <T> HBO <H> Death_on_a_Factory_Farm <R> music_composer <T> Jamie_Lawrence <H> Death_on_a_Factory_Farm <R> producer <T> Sarah_Teale <H> Death_on_a_Factory_Farm <R> producer <T> Tom_Simon <H> Death_on_a_Factory_Farm <R> director <T> Tom_Simon <H> Death_on_a_Factory_Farm <R> runtime <T> 83.0
<H> Liselotte_Grschebina <R> professional_field <T> Photographer
<H> Acharya_Institute_of_Technology <R> city <T> Bangalore <H> Acharya_Institute_of_Technology <R> established <T> 2000 <H> Acharya_Institute_of_Technology <R> affiliation <T> Visvesvaraya_Technological_University
<H> Expect_a_Miracle <R> type <T> Compilation_Album <H> Expect_a_Miracle <R> preceded_by <T> Pools_of_Light_(Brian_Kelly_album) <H> Expect_a_Miracle <R> followed_by <T> Afterplay_(Brian_Kelly_album)
<H> Liselotte_Grschebina <R> death_place <T> Israel <H> Israel <R> population_density <T> 387.63
<H> United_States <R> population_total <T> 324720797
<H> Lady_Anne_Monson <R> birth_place <T> Darlington <H> Lady_Anne_Monson <R> birth_date <T> 1726-01-01 <H> Lady_Anne_Monson <R> death_date <T> 1776-02-18
<H> 1147_Stavropolis <R> rotation_period <T> 20378.5 <H> 1147_Stavropolis <R> orbital_period <T> 1249.6 <H> 1147_Stavropolis <R> discoverer <T> Grigory_Neujmin <H> Grigory_Neujmin <R> death_date <T> 1946-12-17
<H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> genre <T> Rock_music <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> record_label <T> Polydor_Records <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> preceded_by <T> Squeeze_(The_Velvet_Underground_album)
<H> Ciudad_Ayala <R> leader_title <T> Governator <H> Ciudad_Ayala <R> country <T> Mexico
<H> Piotr_Hallmann <R> birth_place <T> Gdynia,_Poland <H> Piotr_Hallmann <R> height <T> 175.26
<H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> recorded_in <T> San_Francisco <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> record_label <T> Polydor_Records <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> record_label <T> Universal_Music_Group <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> preceded_by <T> Squeeze_(The_Velvet_Underground_album)
<H> Nurhan_Atasoy <R> birth_date <T> 1934-01-01 <H> Nurhan_Atasoy <R> residence <T> Istanbul <H> Nurhan_Atasoy <R> citizenship <T> Turkey <H> Istanbul <R> time_zone <T> Eastern_European_Summer_Time <H> Istanbul <R> time_zone <T> Eastern_European_Time
<H> Expect_a_Miracle <R> genre <T> Instrumental_music <H> Expect_a_Miracle <R> producer <T> Brian_Kelly_(composer_&_pianist)
<H> Death_on_a_Factory_Farm <R> producer <T> Tom_Simon <H> Death_on_a_Factory_Farm <R> director <T> Tom_Simon <H> Death_on_a_Factory_Farm <R> producer <T> Sarah_Teale <H> Death_on_a_Factory_Farm <R> director <T> Sarah_Teale
<H> Expect_a_Miracle <R> genre <T> Instrumental_music <H> Expect_a_Miracle <R> runtime <T> 54.56 <H> Expect_a_Miracle <R> preceded_by <T> Pools_of_Light_(Brian_Kelly_album) <H> Expect_a_Miracle <R> producer <T> Brian_Kelly_(composer_&_pianist)
<H> ALCO_RS-3 <R> total_production <T> 1418 <H> ALCO_RS-3 <R> length <T> 17068.8 (millimetres)
<H> Darinka_Dentcheva <R> residence <T> United_States <H> United_States <R> leader <T> John_Roberts
<H> Lady_Anne_Monson <R> birth_place <T> Kingdom_of_England <H> Lady_Anne_Monson <R> birth_place <T> Darlington <H> Darlington <R> country <T> United_Kingdom
<H> 11th_Mississippi_Infantry_Monument <R> municipality <T> Gettysburg,_Pennsylvania <H> 11th_Mississippi_Infantry_Monument <R> location <T> Adams_County,_Pennsylvania <H> 11th_Mississippi_Infantry_Monument <R> category <T> Contributing_property <H> Adams_County,_Pennsylvania <R> has_to_its_north <T> Cumberland_County,_Pennsylvania <H> Adams_County,_Pennsylvania <R> has_to_its_southeast <T> Carroll_County,_Maryland
<H> Nie_Haisheng <R> nationality <T> People's_Republic_of_China <H> Nie_Haisheng <R> mission <T> Shenzhou_10
<H> English_Without_Tears <R> runtime <T> 89.0 <H> English_Without_Tears <R> director <T> Harold_French
<H> Terence_Rattigan <R> imdb_id <T> 0711905
<H> San_Francisco <R> leader <T> Ed_Lee_(politician)
<H> University_of_Burgundy <R> campus <T> Dijon <H> University_of_Burgundy <R> country <T> France <H> University_of_Burgundy <R> number_of_students <T> 27400 <H> University_of_Burgundy <R> number_of_doctoral_students <T> 1299 <H> University_of_Burgundy <R> number_of_undergraduate_students <T> 16800 <H> University_of_Burgundy <R> staff <T> 2900
<H> English_Without_Tears <R> producer <T> Anatole_de_Grunwald <H> English_Without_Tears <R> writer <T> Anatole_de_Grunwald <H> English_Without_Tears <R> cinematography <T> Bernard_Knowles <H> English_Without_Tears <R> writer <T> Terence_Rattigan <H> English_Without_Tears <R> runtime <T> 89.0 <H> English_Without_Tears <R> release_date <T> 1944-07-28
<H> Turn_Me_On_(album) <R> preceded_by <T> Let_It_Breed <H> Turn_Me_On_(album) <R> followed_by <T> Take_It_Off!
<H> 11th_Mississippi_Infantry_Monument <R> established <T> 2000 <H> 11th_Mississippi_Infantry_Monument <R> location <T> Adams_County,_Pennsylvania <H> 11th_Mississippi_Infantry_Monument <R> category <T> Contributing_property <H> 11th_Mississippi_Infantry_Monument <R> country <T> "United States" <H> Adams_County,_Pennsylvania <R> has_to_its_west <T> Franklin_County,_Pennsylvania <H> Adams_County,_Pennsylvania <R> has_to_its_north <T> Cumberland_County,_Pennsylvania <H> Adams_County,_Pennsylvania <R> has_to_its_southeast <T> Carroll_County,_Maryland
<H> Acharya_Institute_of_Technology <R> campus <T> "In Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore – 560090." <H> Acharya_Institute_of_Technology <R> city <T> Bangalore <H> Bangalore <R> founder <T> Kempe_Gowda_I <H> Acharya_Institute_of_Technology <R> director <T> "Dr. G. P. Prabhukumar" <H> Acharya_Institute_of_Technology <R> affiliation <T> Visvesvaraya_Technological_University <H> Acharya_Institute_of_Technology <R> was_given_the_technical_campus_status_by <T> All_India_Council_for_Technical_Education <H> All_India_Council_for_Technical_Education <R> location <T> Mumbai
<H> Agremiação_Sportiva_Arapiraquense <R> ground <T> Estádio_Municipal_Coaracy_da_Mata_Fonseca <H> Estádio_Municipal_Coaracy_da_Mata_Fonseca <R> location <T> Arapiraca <H> Agremiação_Sportiva_Arapiraquense <R> nickname <T> "Asa Gigante ''" <H> Agremiação_Sportiva_Arapiraquense <R> number_of_members <T> 17000 <H> Agremiação_Sportiva_Arapiraquense <R> league <T> Campeonato_Brasileiro_Série_C <H> Campeonato_Brasileiro_Série_C <R> country <T> Brazil <H> Campeonato_Brasileiro_Série_C <R> champions <T> Vila_Nova_Futebol_Clube
<H> Andrew_Rayel <R> genre <T> Trance_music <H> Andrew_Rayel <R> associated_band_/associated_musical_artist <T> Armin_van_Buuren
<H> Lady_Anne_Monson <R> birth_place <T> Darlington <H> Lady_Anne_Monson <R> birth_date <T> 1726-01-01 <H> Lady_Anne_Monson <R> residence <T> India <H> Lady_Anne_Monson <R> death_date <T> 1776-02-18
<H> Aleksandr_Prudnikov <R> birth_date <T> 1989-02-24 <H> Aleksandr_Prudnikov <R> youthclub <T> FC_Spartak_Moscow <H> Aleksandr_Prudnikov <R> currentclub <T> FC_Amkar_Perm <H> Aleksandr_Prudnikov <R> club <T> FC_Amkar_Perm
<H> Detroit <R> is_part_of <T> Michigan
<H> Trane <R> industry <T> Building_materials <H> Trane <R> founding_date <T> 1913-01-01 <H> Trane <R> number_of_employees <T> 29000 <H> Trane <R> product <T> HVAC
<H> Mermaid_(Train_song) <R> genre <T> Reggae <H> Mermaid_(Train_song) <R> runtime <T> 3.16 <H> Mermaid_(Train_song) <R> record_label <T> Sony_Music_Entertainment <H> Mermaid_(Train_song) <R> record_label <T> Columbia_Records <H> Mermaid_(Train_song) <R> producer <T> Espionage_(production_team) <H> Mermaid_(Train_song) <R> followed_by <T> Imagine_(John_Lennon_song)
<H> Mermaid_(Train_song) <R> format <T> Music_download <H> Mermaid_(Train_song) <R> writer <T> Pat_Monahan <H> Mermaid_(Train_song) <R> producer <T> Espionage_(production_team) <H> Mermaid_(Train_song) <R> followed_by <T> Imagine_(John_Lennon_song) <H> Mermaid_(Train_song) <R> album <T> California_37_(Train_album)
<H> McVeagh_of_the_South_Seas <R> producer <T> The_Progressive_Motion_Picture_Company
<H> Adolfo_Suárez_Madrid–Barajas_Airport <R> location <T> Alcobendas <H> Adolfo_Suárez_Madrid–Barajas_Airport <R> operating_organisation <T> ENAIRE <H> ENAIRE <R> city <T> Madrid <H> Madrid <R> country <T> Spain <H> Adolfo_Suárez_Madrid–Barajas_Airport <R> runway_length <T> 4349.0 <H> Adolfo_Suárez_Madrid–Barajas_Airport <R> runway_name <T> "14L/32R"
<H> HBO <R> former_name <T> The Green Channel
<H> Nurhan_Atasoy <R> nationality <T> Turkish_people <H> Nurhan_Atasoy <R> birth_place <T> Turkey
<H> Ciudad_Ayala <R> time_zone <T> Pacific_Standard_Time_Zone
<H> Bedford_Aerodrome <R> location <T> Thurleigh <H> Bedford_Aerodrome <R> operating_organisation <T> MotorSport_Vision <H> Bedford_Aerodrome <R> icao_location_identifier <T> EGBF
<H> Olga_Bondareva <R> birth_place <T> Leningrad,_USSR <H> Olga_Bondareva <R> birth_name <T> "Olga Nikolaevna Bondareva" <H> Olga_Bondareva <R> professional_field <T> Mathematics <H> Olga_Bondareva <R> professional_field <T> Economics <H> Olga_Bondareva <R> death_date <T> 1991-12-09
<H> It's_Great_to_Be_Young_(1956_film) <R> starring <T> John_Mills <H> It's_Great_to_Be_Young_(1956_film) <R> gross <T> 282838.0 <H> It's_Great_to_Be_Young_(1956_film) <R> runtime <T> 94.0 <H> It's_Great_to_Be_Young_(1956_film) <R> director <T> Cyril_Frankel
<H> Abraham_A._Ribicoff <R> successor <T> Anthony_J._Celebrezze <H> Abraham_A._Ribicoff <R> spouse <T> "Ruth Ribicoff" <H> Abraham_A._Ribicoff <R> birth_place <T> United_States <H> United_States <R> ethnic_group <T> African_Americans
<H> The_Hobbit <R> literary_genre <T> Juvenile_fantasy
<H> Binignit <R> course <T> Dessert <H> Binignit <R> country <T> Philippines
<H> Piotr_Hallmann <R> birth_place <T> Gdynia,_Poland <H> Piotr_Hallmann <R> weight <T> 70.308
<H> It's_Great_to_Be_Young_(1956_film) <R> runtime <T> 94.0 <H> It's_Great_to_Be_Young_(1956_film) <R> director <T> Cyril_Frankel <H> It's_Great_to_Be_Young_(1956_film) <R> editing <T> Max_Benedict <H> Max_Benedict <R> active_years_start_year <T> 1947-01-01
<H> 1147_Stavropolis <R> rotation_period <T> 20378.5 <H> 1147_Stavropolis <R> epoch <T> 31 July 2016 (JD2457600.5) <H> 1147_Stavropolis <R> discovered <T> 1929-06-11 <H> 1147_Stavropolis <R> periapsis <T> 260855000000.0 <H> 1147_Stavropolis <R> apoapsis <T> 418476000000.0 <H> 1147_Stavropolis <R> orbital_period <T> 1249.6
<H> Buzz_Aldrin <R> birth_place <T> Glen_Ridge,_New_Jersey <H> Buzz_Aldrin <R> mission <T> Apollo_11
<H> Detroit <R> is_part_of <T> Wayne_County,_Michigan
<H> 1147_Stavropolis <R> absolute_magnitude <T> 11.5 <H> 1147_Stavropolis <R> discovered <T> 1929-06-11 <H> 1147_Stavropolis <R> periapsis <T> 260855000000.0 <H> 1147_Stavropolis <R> epoch <T> 31 July 2016 (JD2457600.5) <H> 1147_Stavropolis <R> orbital_period <T> 1249.6
<H> Adolfo_Suárez_Madrid–Barajas_Airport <R> location <T> Alcobendas <H> Adolfo_Suárez_Madrid–Barajas_Airport <R> operating_organisation <T> ENAIRE <H> ENAIRE <R> city <T> Madrid <H> Madrid <R> country <T> Spain <H> Adolfo_Suárez_Madrid–Barajas_Airport <R> runway_name <T> "18R/36L" <H> Adolfo_Suárez_Madrid–Barajas_Airport <R> runway_length <T> 4349.0
<H> Abraham_A._Ribicoff <R> birth_place <T> United_States <H> Abraham_A._Ribicoff <R> spouse <T> Casey_Ribicoff <H> Abraham_A._Ribicoff <R> successor <T> John_N._Dempsey
<H> Pontiac_Rageous <R> production_start_year <T> 1997 <H> Pontiac_Rageous <R> body_style <T> Coupe
<H> ALCO_RS-3 <R> build_date <T> "May 1950 - August 1956" <H> ALCO_RS-3 <R> engine <T> V12_engine <H> ALCO_RS-3 <R> cylinder_count <T> 12 <H> ALCO_RS-3 <R> length <T> 17068.8 (millimetres)
<H> Abraham_A._Ribicoff <R> death_place <T> New_York <H> Abraham_A._Ribicoff <R> spouse <T> "Ruth Ribicoff" <H> Abraham_A._Ribicoff <R> birth_place <T> United_States <H> United_States <R> ethnic_group <T> African_Americans
<H> University_of_Burgundy <R> number_of_students <T> 27400 <H> University_of_Burgundy <R> number_of_doctoral_students <T> 1299 <H> University_of_Burgundy <R> number_of_undergraduate_students <T> 16800 <H> University_of_Burgundy <R> staff <T> 2900
<H> Liselotte_Grschebina <R> death_place <T> Petah_Tikva
<H> McVeagh_of_the_South_Seas <R> distributor <T> Alliance_Films_Corporation <H> McVeagh_of_the_South_Seas <R> imdb_id <T> 0004319 <H> McVeagh_of_the_South_Seas <R> writer <T> Harry_Carey_(actor_born_1878) <H> McVeagh_of_the_South_Seas <R> starring <T> Harry_Carey_(actor_born_1878) <H> McVeagh_of_the_South_Seas <R> producer <T> The_Progressive_Motion_Picture_Company
<H> Nord_(Year_of_No_Light_album) <R> genre <T> Sludge_metal <H> Nord_(Year_of_No_Light_album) <R> genre <T> Post-metal <H> Nord_(Year_of_No_Light_album) <R> producer <T> Year_of_No_Light <H> Nord_(Year_of_No_Light_album) <R> runtime <T> 58.41 <H> Nord_(Year_of_No_Light_album) <R> preceded_by <T> Demo_2004_(Year_of_No_Light_album) <H> Nord_(Year_of_No_Light_album) <R> release_date <T> 2006-09-06
<H> Mermaid_(Train_song) <R> musical_band <T> Train_(band)
<H> Expect_a_Miracle <R> genre <T> Instrumental_music
<H> Alan_B._Miller_Hall <R> location <T> Virginia <H> Alan_B._Miller_Hall <R> architect <T> Robert_A._M._Stern <H> Alan_B._Miller_Hall <R> current_tenants <T> Mason_School_of_Business
<H> Bionico <R> dish_variation <T> Honey <H> Bionico <R> country <T> Mexico
<H> Turn_Me_On_(album) <R> producer <T> Wharton_Tiers <H> Turn_Me_On_(album) <R> followed_by <T> Take_It_Off! <H> Take_It_Off! <R> producer <T> The_Honeymoon_Killers_(American_band) <H> Take_It_Off! <R> followed_by <T> 'Til_Death_Do_Us_Part_(EP)
<H> Lady_Anne_Monson <R> birth_place <T> Kingdom_of_England <H> Lady_Anne_Monson <R> birth_place <T> Darlington <H> Darlington <R> region <T> North_East_England <H> Darlington <R> grid_reference <T> NZ289147
<H> Acharya_Institute_of_Technology <R> state <T> Karnataka <H> Acharya_Institute_of_Technology <R> established <T> 2000 <H> Acharya_Institute_of_Technology <R> affiliation <T> Visvesvaraya_Technological_University <H> Acharya_Institute_of_Technology <R> campus <T> "In Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore – 560090."
<H> Acharya_Institute_of_Technology <R> city <T> Bangalore <H> Acharya_Institute_of_Technology <R> campus <T> "In Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore – 560090."
<H> Chinabank <R> foundation_place <T> Insular_Government_of_the_Philippine_Islands <H> Chinabank <R> type <T> Public_company <H> Chinabank <R> foundation_place <T> Manila <H> Manila <R> type <T> Capital_city
<H> Nord_(Year_of_No_Light_album) <R> release_date <T> 2006-09-06 <H> Nord_(Year_of_No_Light_album) <R> followed_by <T> Live_at_Roadburn_2008_(Year_of_No_Light_album)
<H> ALCO_RS-3 <R> builder <T> Montreal_Locomotive_Works <H> ALCO_RS-3 <R> cylinder_count <T> 12
<H> Brandon_Carter <R> birth_place <T> England <H> Brandon_Carter <R> alma_mater <T> University_of_Cambridge <H> Brandon_Carter <R> professional_field <T> General_relativity <H> Brandon_Carter <R> known_for <T> Carter_constant <H> Brandon_Carter <R> known_for <T> No-hair_theorem <H> Brandon_Carter <R> doctoral_advisor <T> Dennis_William_Sciama
<H> Tom_Sizemore <R> spouse <T> Maeve_Quinlan
<H> It's_Great_to_Be_Young_(1956_film) <R> cinematography <T> Gilbert_Taylor <H> It's_Great_to_Be_Young_(1956_film) <R> writer <T> Ted_Willis <H> It's_Great_to_Be_Young_(1956_film) <R> gross <T> 282838.0 <H> It's_Great_to_Be_Young_(1956_film) <R> runtime <T> 94.0 <H> It's_Great_to_Be_Young_(1956_film) <R> director <T> Cyril_Frankel <H> It's_Great_to_Be_Young_(1956_film) <R> starring <T> John_Mills <H> It's_Great_to_Be_Young_(1956_film) <R> music_composer <T> Louis_Levy
<H> Liselotte_Grschebina <R> birth_place <T> Karlsruhe <H> Liselotte_Grschebina <R> birth_place <T> German_Empire <H> German_Empire <R> currency <T> German_Papiermark <H> Karlsruhe <R> elevation_above_the_sea_level <T> 115.0
<H> Gdynia,_Poland <R> time_zone <T> Central_European_Time
<H> 1147_Stavropolis <R> rotation_period <T> 20378.5 <H> 1147_Stavropolis <R> discovered <T> 1929-06-11 <H> 1147_Stavropolis <R> periapsis <T> 260855000000.0
<H> McVeagh_of_the_South_Seas <R> imdb_id <T> 0004319
<H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> recorded_in <T> San_Francisco <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> preceded_by <T> Squeeze_(The_Velvet_Underground_album)
<H> Morelos <R> leader <T> Adrián_Rivera_Pérez
<H> Darinka_Dentcheva <R> citizenship <T> United_States <H> Darinka_Dentcheva <R> influenced_by <T> Andrzej_Piotr_Ruszczyński <H> Darinka_Dentcheva <R> known_for <T> Stochastic_programming
<H> Ciudad_Ayala <R> leader <T> Juan_Nolasco <H> Ciudad_Ayala <R> population_density <T> 1604.0 <H> Ciudad_Ayala <R> time_zone <T> Pacific_Standard_Time_Zone
<H> Alan_B._Miller_Hall <R> owner <T> College_of_William_&_Mary <H> Alan_B._Miller_Hall <R> address <T> "101 Ukrop Way" <H> Alan_B._Miller_Hall <R> location <T> Virginia <H> Alan_B._Miller_Hall <R> architect <T> Robert_A._M._Stern <H> Alan_B._Miller_Hall <R> building_start_date <T> "30 March 2007" <H> Alan_B._Miller_Hall <R> current_tenants <T> Mason_School_of_Business
<H> Nie_Haisheng <R> nationality <T> People's_Republic_of_China <H> Nie_Haisheng <R> birth_place <T> Hubei <H> Nie_Haisheng <R> birth_place <T> Zaoyang <H> Nie_Haisheng <R> mission <T> Shenzhou_10 <H> Nie_Haisheng <R> mission <T> Shenzhou_6
<H> Tokat <R> area_code <T> "+90 356"
<H> Nie_Haisheng <R> birth_place <T> Zaoyang <H> Nie_Haisheng <R> mission <T> Shenzhou_10 <H> Nie_Haisheng <R> mission <T> Shenzhou_6 <H> Zaoyang <R> is_part_of <T> Xiangyang <H> Zaoyang <R> is_part_of <T> Hubei
<H> Brandon_Carter <R> known_for <T> Carter_constant <H> Brandon_Carter <R> professional_field <T> General_relativity
<H> Expect_a_Miracle <R> type <T> Compilation_Album <H> Expect_a_Miracle <R> runtime <T> 54.56 <H> Expect_a_Miracle <R> preceded_by <T> Pools_of_Light_(Brian_Kelly_album) <H> Expect_a_Miracle <R> artist <T> Brian_Kelly_(composer_&_pianist)
<H> Olga_Bondareva <R> birth_place <T> Leningrad,_USSR <H> Olga_Bondareva <R> alma_mater <T> Leningrad_State_University <H> Olga_Bondareva <R> known_for <T> Bondareva–Shapley_theorem <H> Olga_Bondareva <R> death_date <T> 1991-12-09
<H> Expect_a_Miracle <R> genre <T> Instrumental_music <H> Expect_a_Miracle <R> artist <T> Brian_Kelly_(composer_&_pianist)
<H> Lady_Anne_Monson <R> nationality <T> Kingdom_of_England <H> Lady_Anne_Monson <R> birth_place <T> Kingdom_of_England <H> Lady_Anne_Monson <R> birth_place <T> Darlington <H> Kingdom_of_England <R> dissolution_year <T> 1707 <H> Darlington <R> grid_reference <T> NZ289147
<H> Brandon_Carter <R> birth_date <T> 1942-01-01 <H> Brandon_Carter <R> known_for <T> No-hair_theorem <H> Brandon_Carter <R> professional_field <T> General_relativity <H> Brandon_Carter <R> known_for <T> Carter_constant <H> Brandon_Carter <R> doctoral_advisor <T> Dennis_William_Sciama
<H> Super_Capers <R> distributor <T> Roadside_Attractions
<H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> genre <T> Rock_music <H> Rock_music <R> music_subgenre <T> Proto-punk
<H> Lady_Anne_Monson <R> birth_place <T> Darlington
<H> Rock_music <R> music_subgenre <T> Proto-punk
<H> Ciudad_Ayala <R> type <T> City <H> Ciudad_Ayala <R> is_part_of <T> Morelos <H> Ciudad_Ayala <R> country <T> Mexico <H> Ciudad_Ayala <R> population_density <T> 1604.0 <H> Ciudad_Ayala <R> leader_title <T> Governator <H> Ciudad_Ayala <R> time_zone <T> Pacific_Daylight_Time <H> Ciudad_Ayala <R> elevation_above_the_sea_level <T> 1147.0
<H> It's_Great_to_Be_Young_(1956_film) <R> music_composer <T> Louis_Levy <H> It's_Great_to_Be_Young_(1956_film) <R> writer <T> Ted_Willis <H> It's_Great_to_Be_Young_(1956_film) <R> runtime <T> 94.0 <H> It's_Great_to_Be_Young_(1956_film) <R> director <T> Cyril_Frankel
<H> Super_Capers <R> distributor <T> Roadside_Attractions <H> Super_Capers <R> editing <T> Stacy_Katzman <H> Super_Capers <R> runtime <T> 98.0 <H> Super_Capers <R> language <T> English_language <H> Super_Capers <R> starring <T> Tom_Sizemore <H> Super_Capers <R> starring <T> Michael_Rooker
<H> University_of_Burgundy <R> campus <T> Dijon <H> University_of_Burgundy <R> number_of_undergraduate_students <T> 16800 <H> University_of_Burgundy <R> staff <T> 2900
<H> ALCO_RS-3 <R> engine <T> Four-stroke_engine <H> ALCO_RS-3 <R> build_date <T> "May 1950 - August 1956" <H> ALCO_RS-3 <R> length <T> 17068.8 (millimetres)
<H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> genre <T> Rock_music <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> record_label <T> Polydor_Records <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> runtime <T> 230.05 <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> producer <T> The_Velvet_Underground <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> artist <T> The_Velvet_Underground <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> preceded_by <T> Squeeze_(The_Velvet_Underground_album)
<H> Death_on_a_Factory_Farm <R> editor <T> Geof_Bartz <H> Death_on_a_Factory_Farm <R> broadcasted_by <T> HBO <H> Death_on_a_Factory_Farm <R> music_composer <T> Jamie_Lawrence
<H> Olga_Bondareva <R> birth_place <T> Leningrad,_USSR <H> Olga_Bondareva <R> alma_mater <T> Leningrad_State_University <H> Olga_Bondareva <R> professional_field <T> Mathematics <H> Olga_Bondareva <R> professional_field <T> Economics
<H> University_of_Burgundy <R> city <T> Dijon <H> University_of_Burgundy <R> campus <T> Dijon <H> University_of_Burgundy <R> number_of_students <T> 27400 <H> University_of_Burgundy <R> number_of_doctoral_students <T> 1299 <H> University_of_Burgundy <R> number_of_undergraduate_students <T> 16800 <H> University_of_Burgundy <R> staff <T> 2900
<H> Pontiac <R> successor <T> Buick
<H> Mermaid_(Train_song) <R> genre <T> Reggae <H> Mermaid_(Train_song) <R> format <T> Music_download <H> Mermaid_(Train_song) <R> producer <T> Espionage_(production_team) <H> Mermaid_(Train_song) <R> album <T> California_37_(Train_album) <H> Mermaid_(Train_song) <R> followed_by <T> Imagine_(John_Lennon_song)
<H> Aaron_Turner <R> genre <T> Post-metal <H> Aaron_Turner <R> origin <T> United_States <H> Aaron_Turner <R> associated_band_/associated_musical_artist <T> Twilight_(band) <H> Aaron_Turner <R> active_years_start_year <T> 1995
<H> Brandon_Carter <R> birth_place <T> England <H> Brandon_Carter <R> known_for <T> Anthropic_principle
<H> Roadside_Attractions <R> founding_year <T> 2003-01-01
<H> Nie_Haisheng <R> birth_place <T> Zaoyang <H> Nie_Haisheng <R> occupation <T> Fighter_pilot <H> Zaoyang <R> utc_offset <T> +8
<H> 11th_Mississippi_Infantry_Monument <R> established <T> 2000 <H> 11th_Mississippi_Infantry_Monument <R> location <T> Adams_County,_Pennsylvania <H> 11th_Mississippi_Infantry_Monument <R> category <T> Contributing_property <H> 11th_Mississippi_Infantry_Monument <R> country <T> "United States" <H> Adams_County,_Pennsylvania <R> has_to_its_north <T> Cumberland_County,_Pennsylvania <H> Adams_County,_Pennsylvania <R> has_to_its_southeast <T> Carroll_County,_Maryland <H> Adams_County,_Pennsylvania <R> has_to_its_southwest <T> Frederick_County,_Maryland
<H> 1147_Stavropolis <R> absolute_magnitude <T> 11.5 <H> 1147_Stavropolis <R> discoverer <T> Grigory_Neujmin <H> 1147_Stavropolis <R> discovered <T> 1929-06-11 <H> 1147_Stavropolis <R> periapsis <T> 260855000000.0 <H> 1147_Stavropolis <R> apoapsis <T> 418476000000.0 <H> 1147_Stavropolis <R> orbital_period <T> 1249.6
<H> Al_Asad_Airbase <R> operating_organisation <T> United_States_Air_Force <H> Al_Asad_Airbase <R> runway_name <T> "09L/27R"
<H> Piotr_Hallmann <R> birth_date <T> 1987-08-25 <H> Piotr_Hallmann <R> weight <T> 70.308
<H> Ciudad_Ayala <R> population_density <T> 1604.0 <H> Ciudad_Ayala <R> is_part_of <T> Morelos <H> Morelos <R> country <T> Mexico <H> Morelos <R> area_total <T> 4879.0
<H> India <R> demonym <T> Indian
<H> 11th_Mississippi_Infantry_Monument <R> established <T> 2000 <H> 11th_Mississippi_Infantry_Monument <R> location <T> Adams_County,_Pennsylvania <H> 11th_Mississippi_Infantry_Monument <R> state <T> "Pennsylvania"
<H> Ciudad_Ayala <R> population_metro <T> 1777539
<H> English_Without_Tears <R> producer <T> Anatole_de_Grunwald <H> English_Without_Tears <R> music_composer <T> Nicholas_Brodszky <H> English_Without_Tears <R> director <T> Harold_French
<H> Bedford_Aerodrome <R> location <T> Thurleigh <H> Bedford_Aerodrome <R> icao_location_identifier <T> EGBF <H> Bedford_Aerodrome <R> elevation_above_the_sea_level <T> 83.2104 <H> Bedford_Aerodrome <R> runway_length <T> 1095.0
<H> Turn_Me_On_(album) <R> genre <T> Punk_blues
<H> Mermaid_(Train_song) <R> preceded_by <T> This'll_Be_My_Year
<H> University_of_Burgundy <R> staff <T> 2900
<H> Agremiação_Sportiva_Arapiraquense <R> league <T> Campeonato_Brasileiro_Série_C <H> Agremiação_Sportiva_Arapiraquense <R> number_of_members <T> 17000
<H> Bedford_Aerodrome <R> location <T> Thurleigh <H> Bedford_Aerodrome <R> icao_location_identifier <T> EGBF
<H> Abraham_A._Ribicoff <R> office <T> "United States Secretary of Health, Education, and Welfare" <H> Abraham_A._Ribicoff <R> spouse <T> Casey_Ribicoff
<H> Nie_Haisheng <R> nationality <T> People's_Republic_of_China <H> Nie_Haisheng <R> occupation <T> Fighter_pilot
<H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> recorded_in <T> San_Francisco <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> release_date <T> 2001-10-16 <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> runtime <T> 230.05 <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> preceded_by <T> Squeeze_(The_Velvet_Underground_album)
<H> Darinka_Dentcheva <R> birth_date <T> 1958-01-01 <H> Darinka_Dentcheva <R> known_for <T> Stochastic_programming
<H> Death_on_a_Factory_Farm <R> director <T> Sarah_Teale
<H> Polydor_Records <R> location <T> London <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> record_label <T> Polydor_Records <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> preceded_by <T> Squeeze_(The_Velvet_Underground_album) <H> Squeeze_(The_Velvet_Underground_album) <R> preceded_by <T> Andy_Warhol's_Velvet_Underground_Featuring_Nico
<H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> genre <T> Rock_music <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> producer <T> The_Velvet_Underground <H> The_Velvet_Underground <R> genre <T> Proto-punk
<H> Adolfo_Suárez_Madrid–Barajas_Airport <R> location <T> "Madrid, Paracuellos de Jarama, San Sebastián de los Reyes and Alcobendas" <H> Adolfo_Suárez_Madrid–Barajas_Airport <R> operating_organisation <T> ENAIRE <H> Adolfo_Suárez_Madrid–Barajas_Airport <R> elevation_above_the_sea_level <T> 610.0
<H> Bedford_Aerodrome <R> elevation_above_the_sea_level <T> 83.2104 <H> Bedford_Aerodrome <R> icao_location_identifier <T> EGBF <H> Bedford_Aerodrome <R> runway_name <T> "08/26"
<H> Ciudad_Ayala <R> population_density <T> 1604.0 <H> Ciudad_Ayala <R> time_zone <T> Pacific_Daylight_Time <H> Ciudad_Ayala <R> time_zone <T> Pacific_Standard_Time_Zone
<H> 1147_Stavropolis <R> rotation_period <T> 20378.5 <H> 1147_Stavropolis <R> discovered <T> 1929-06-11 <H> 1147_Stavropolis <R> discoverer <T> Grigory_Neujmin <H> 1147_Stavropolis <R> periapsis <T> 260855000000.0 <H> 1147_Stavropolis <R> apoapsis <T> 418476000000.0
<H> Ciudad_Ayala <R> leader_title <T> "City Manager" <H> Ciudad_Ayala <R> is_part_of <T> Morelos <H> Morelos <R> is_part_of <T> Cuernavaca
<H> John_Mills <R> birth_place <T> North_Elmham <H> It's_Great_to_Be_Young_(1956_film) <R> starring <T> John_Mills
<H> Aleksandr_Prudnikov <R> birth_date <T> 1989-02-24 <H> Aleksandr_Prudnikov <R> height <T> 185.0 (centimetres) <H> Aleksandr_Prudnikov <R> club <T> FC_Amkar_Perm <H> FC_Amkar_Perm <R> manager <T> Gadzhi_Gadzhiyev
<H> Nord_(Year_of_No_Light_album) <R> genre <T> Sludge_metal <H> Nord_(Year_of_No_Light_album) <R> genre <T> Post-metal <H> Nord_(Year_of_No_Light_album) <R> artist <T> Year_of_No_Light <H> Nord_(Year_of_No_Light_album) <R> runtime <T> 58.41 <H> Nord_(Year_of_No_Light_album) <R> preceded_by <T> Demo_2004_(Year_of_No_Light_album) <H> Nord_(Year_of_No_Light_album) <R> release_date <T> 2006-09-06
<H> Nord_(Year_of_No_Light_album) <R> artist <T> Year_of_No_Light <H> Nord_(Year_of_No_Light_album) <R> producer <T> Year_of_No_Light <H> Nord_(Year_of_No_Light_album) <R> record_label <T> Crucial_Blast <H> Nord_(Year_of_No_Light_album) <R> followed_by <T> Live_at_Roadburn_2008_(Year_of_No_Light_album) <H> Nord_(Year_of_No_Light_album) <R> release_date <T> 2006-09-06
<H> Bionico <R> ingredient <T> Granola <H> Bionico <R> region <T> Guadalajara <H> Bionico <R> country <T> Mexico <H> Mexico <R> currency <T> Mexican_peso <H> Mexico <R> demonym <T> Mexicans <H> Bionico <R> course <T> Dessert <H> Dessert <R> dish_variation <T> Sandesh_(confectionery)
<H> Liselotte_Grschebina <R> nationality <T> Israel <H> Liselotte_Grschebina <R> birth_place <T> Karlsruhe <H> Liselotte_Grschebina <R> birth_place <T> German_Empire <H> Liselotte_Grschebina <R> birth_date <T> 1908-05-02 <H> Liselotte_Grschebina <R> death_place <T> Israel <H> Liselotte_Grschebina <R> death_place <T> Petah_Tikva <H> Liselotte_Grschebina <R> death_date <T> 1994-06-14
<H> The_Fellowship_of_the_Ring <R> literary_genre <T> Fantasy_(genre) <H> The_Fellowship_of_the_Ring <R> publisher <T> George_Allen_&_Unwin <H> The_Fellowship_of_the_Ring <R> release_date <T> 1954-07-29 <H> The_Fellowship_of_the_Ring <R> preceded_by <T> The_Hobbit <H> The_Fellowship_of_the_Ring <R> followed_by <T> The_Two_Towers
<H> Agremiação_Sportiva_Arapiraquense <R> ground <T> Estádio_Municipal_Coaracy_da_Mata_Fonseca <H> Estádio_Municipal_Coaracy_da_Mata_Fonseca <R> location <T> Arapiraca <H> Agremiação_Sportiva_Arapiraquense <R> manager <T> Vica <H> Agremiação_Sportiva_Arapiraquense <R> number_of_members <T> 17000 <H> Agremiação_Sportiva_Arapiraquense <R> league <T> Campeonato_Brasileiro_Série_C <H> Campeonato_Brasileiro_Série_C <R> country <T> Brazil <H> Campeonato_Brasileiro_Série_C <R> champions <T> Vila_Nova_Futebol_Clube
<H> 11th_Mississippi_Infantry_Monument <R> municipality <T> Gettysburg,_Pennsylvania <H> 11th_Mississippi_Infantry_Monument <R> location <T> Adams_County,_Pennsylvania <H> 11th_Mississippi_Infantry_Monument <R> state <T> "Pennsylvania" <H> 11th_Mississippi_Infantry_Monument <R> established <T> 2000 <H> 11th_Mississippi_Infantry_Monument <R> category <T> Contributing_property <H> Adams_County,_Pennsylvania <R> has_to_its_north <T> Cumberland_County,_Pennsylvania <H> Adams_County,_Pennsylvania <R> has_to_its_southeast <T> Carroll_County,_Maryland
<H> It's_Great_to_Be_Young_(1956_film) <R> music_composer <T> Louis_Levy <H> It's_Great_to_Be_Young_(1956_film) <R> director <T> Cyril_Frankel <H> It's_Great_to_Be_Young_(1956_film) <R> editing <T> Max_Benedict <H> Max_Benedict <R> death_year <T> 1986
<H> Nord_(Year_of_No_Light_album) <R> genre <T> Sludge_metal <H> Nord_(Year_of_No_Light_album) <R> producer <T> Year_of_No_Light <H> Nord_(Year_of_No_Light_album) <R> followed_by <T> Live_at_Roadburn_2008_(Year_of_No_Light_album) <H> Nord_(Year_of_No_Light_album) <R> release_date <T> 2006-09-06
<H> Alan_Shepard <R> nationality <T> United_States <H> Alan_Shepard <R> birth_date <T> "1923-11-18" <H> Alan_Shepard <R> birth_place <T> New_Hampshire <H> Alan_Shepard <R> served_as_chief_of_the_astronaut_office_in <T> 1963 <H> Alan_Shepard <R> award <T> Distinguished_Service_Medal_(United_States_Navy) <H> Alan_Shepard <R> status <T> "Deceased" <H> Alan_Shepard <R> death_place <T> California
<H> GMA_New_Media <R> location <T> GMA_Network_Center <H> GMA_New_Media <R> product <T> Mobile_Applications
<H> Darlington <R> region <T> North_East_England
<H> Turn_Me_On_(album) <R> runtime <T> 35.1 <H> Turn_Me_On_(album) <R> preceded_by <T> Let_It_Breed <H> Let_It_Breed <R> preceded_by <T> Love_American_Style_(album)
<H> Nurhan_Atasoy <R> nationality <T> Turkish_people <H> Nurhan_Atasoy <R> residence <T> Turkey <H> Nurhan_Atasoy <R> residence <T> Istanbul <H> Nurhan_Atasoy <R> citizenship <T> Turkey <H> Nurhan_Atasoy <R> award <T> State_Award_for_Superior_Achievement
<H> It's_Great_to_Be_Young_(1956_film) <R> music_composer <T> Louis_Levy <H> It's_Great_to_Be_Young_(1956_film) <R> writer <T> Ted_Willis <H> It's_Great_to_Be_Young_(1956_film) <R> editing <T> Max_Benedict <H> It's_Great_to_Be_Young_(1956_film) <R> runtime <T> 94.0 <H> It's_Great_to_Be_Young_(1956_film) <R> starring <T> Cecil_Parker <H> It's_Great_to_Be_Young_(1956_film) <R> starring <T> John_Mills
<H> Bedford_Aerodrome <R> runway_surface_type <T> Concrete <H> Bedford_Aerodrome <R> location <T> Thurleigh <H> Bedford_Aerodrome <R> city_served <T> Bedford_Autodrome <H> Bedford_Aerodrome <R> operating_organisation <T> MotorSport_Vision <H> Bedford_Aerodrome <R> icao_location_identifier <T> EGBF <H> Bedford_Aerodrome <R> runway_length <T> 1095.0
<H> Nie_Haisheng <R> birth_place <T> Hubei <H> Nie_Haisheng <R> birth_place <T> Zaoyang <H> Nie_Haisheng <R> mission <T> Shenzhou_10
<H> Turkish_people <R> religion <T> Irreligion
<H> Campeonato_Brasileiro_Série_C <R> champions <T> Vila_Nova_Futebol_Clube <H> Agremiação_Sportiva_Arapiraquense <R> league <T> Campeonato_Brasileiro_Série_C <H> Agremiação_Sportiva_Arapiraquense <R> season <T> 2015
<H> Nord_(Year_of_No_Light_album) <R> genre <T> Post-metal <H> Nord_(Year_of_No_Light_album) <R> record_label <T> Crucial_Blast <H> Nord_(Year_of_No_Light_album) <R> record_label <T> E-Vinyl
<H> Liselotte_Grschebina <R> death_place <T> Petah_Tikva <H> Petah_Tikva <R> country <T> Israel
<H> Turn_Me_On_(album) <R> artist <T> The_Honeymoon_Killers_(American_band)
<H> McVeagh_of_the_South_Seas <R> writer <T> Harry_Carey_(actor_born_1878) <H> McVeagh_of_the_South_Seas <R> director <T> Cyril_Bruce
<H> 11th_Mississippi_Infantry_Monument <R> municipality <T> Gettysburg,_Pennsylvania <H> 11th_Mississippi_Infantry_Monument <R> location <T> Adams_County,_Pennsylvania <H> 11th_Mississippi_Infantry_Monument <R> country <T> "United States" <H> 11th_Mississippi_Infantry_Monument <R> category <T> Contributing_property <H> Adams_County,_Pennsylvania <R> has_to_its_north <T> Cumberland_County,_Pennsylvania <H> Adams_County,_Pennsylvania <R> has_to_its_southeast <T> Carroll_County,_Maryland
<H> Alan_B._Miller_Hall <R> owner <T> College_of_William_&_Mary <H> Alan_B._Miller_Hall <R> completion_date <T> 2009-06-01 <H> Alan_B._Miller_Hall <R> current_tenants <T> Mason_School_of_Business
<H> Liselotte_Grschebina <R> birth_place <T> German_Empire <H> Liselotte_Grschebina <R> birth_date <T> 1908-05-02 <H> Liselotte_Grschebina <R> death_date <T> 1994-06-14
<H> Michael_Rooker <R> birth_year <T> 1955-01-01
<H> Bedford_Aerodrome <R> city_served <T> Bedford_Autodrome <H> Bedford_Aerodrome <R> location <T> Thurleigh <H> Thurleigh <R> country <T> United_Kingdom <H> Thurleigh <R> postal_code <T> MK44
<H> Bionico <R> region <T> Guadalajara <H> Bionico <R> country <T> Mexico <H> Mexico <R> currency <T> Mexican_peso <H> Mexico <R> demonym <T> Mexicans <H> Bionico <R> ingredient <T> Raisin <H> Bionico <R> course <T> Dessert <H> Dessert <R> dish_variation <T> Cookie
<H> English_Without_Tears <R> cinematography <T> Bernard_Knowles
<H> English_Without_Tears <R> producer <T> Anatole_de_Grunwald <H> English_Without_Tears <R> music_composer <T> Nicholas_Brodszky <H> English_Without_Tears <R> runtime <T> 89.0 <H> English_Without_Tears <R> release_date <T> 1944-07-28
<H> Ciudad_Ayala <R> is_part_of <T> Morelos <H> Ciudad_Ayala <R> country <T> Mexico <H> Ciudad_Ayala <R> government_type <T> Council-manager_government <H> Ciudad_Ayala <R> population_metro <T> 1777539 <H> Ciudad_Ayala <R> utc_offset <T> −6
<H> 1147_Stavropolis <R> epoch <T> 31 July 2016 (JD2457600.5) <H> 1147_Stavropolis <R> discoverer <T> Grigory_Neujmin <H> 1147_Stavropolis <R> periapsis <T> 260855000000.0 <H> 1147_Stavropolis <R> orbital_period <T> 1249.6
<H> Imagine_(John_Lennon_song) <R> musical_artist <T> John_Lennon
<H> India <R> leader_title <T> President
<H> Tom_Sizemore <R> active_years_start_year <T> 1989-01-01
<H> Bananaman <R> broadcasted_by <T> BBC <H> Bananaman <R> last_aired <T> "1986-04-15"
<H> Liselotte_Grschebina <R> nationality <T> Israel <H> Liselotte_Grschebina <R> professional_field <T> Photographer <H> Liselotte_Grschebina <R> birth_place <T> German_Empire <H> German_Empire <R> founding_date <T> 1871-01-01
<H> Acharya_Institute_of_Technology <R> campus <T> "In Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore – 560090." <H> Acharya_Institute_of_Technology <R> country <T> "India" <H> Acharya_Institute_of_Technology <R> was_given_the_technical_campus_status_by <T> All_India_Council_for_Technical_Education <H> All_India_Council_for_Technical_Education <R> location <T> Mumbai <H> Acharya_Institute_of_Technology <R> affiliation <T> Visvesvaraya_Technological_University
<H> Bionico <R> course <T> Dessert <H> Bionico <R> country <T> Mexico <H> Mexico <R> currency <T> Mexican_peso <H> Dessert <R> dish_variation <T> Sandesh_(confectionery)
<H> 11th_Mississippi_Infantry_Monument <R> municipality <T> Gettysburg,_Pennsylvania <H> 11th_Mississippi_Infantry_Monument <R> location <T> Adams_County,_Pennsylvania <H> 11th_Mississippi_Infantry_Monument <R> state <T> "Pennsylvania" <H> 11th_Mississippi_Infantry_Monument <R> category <T> Contributing_property <H> Adams_County,_Pennsylvania <R> has_to_its_north <T> Cumberland_County,_Pennsylvania <H> Adams_County,_Pennsylvania <R> has_to_its_southeast <T> Carroll_County,_Maryland
<H> Lady_Anne_Monson <R> birth_place <T> Darlington <H> Darlington <R> population_total <T> 106000
<H> Hypermarcas <R> location <T> São_Paulo <H> Hypermarcas <R> location <T> Brazil <H> Brazil <R> leader_title <T> "President of the Supreme Federal Court" <H> Hypermarcas <R> product <T> Healthcare <H> Hypermarcas <R> product <T> Drugs
<H> Bill_Oddie <R> birth_place <T> Lancashire <H> Bananaman <R> starring <T> Bill_Oddie <H> Bananaman <R> creator <T> Steve_Bright <H> Bananaman <R> broadcasted_by <T> BBC <H> BBC <R> city <T> Broadcasting_House
<H> India <R> leader_title <T> Chief Justice
<H> San_Francisco <R> utc_offset <T> −7
<H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> release_date <T> 2001-10-16 <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> runtime <T> 230.05 <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> recorded_in <T> United_States <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> preceded_by <T> Squeeze_(The_Velvet_Underground_album) <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> recorded_in <T> St._Louis,_Missouri
<H> Nord_(Year_of_No_Light_album) <R> artist <T> Year_of_No_Light <H> Nord_(Year_of_No_Light_album) <R> followed_by <T> Live_at_Roadburn_2008_(Year_of_No_Light_album) <H> Nord_(Year_of_No_Light_album) <R> release_date <T> 2006-09-06
<H> Acharya_Institute_of_Technology <R> campus <T> "In Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore – 560090." <H> Acharya_Institute_of_Technology <R> was_given_the_technical_campus_status_by <T> All_India_Council_for_Technical_Education <H> All_India_Council_for_Technical_Education <R> location <T> Mumbai <H> Acharya_Institute_of_Technology <R> director <T> "Dr. G. P. Prabhukumar" <H> Acharya_Institute_of_Technology <R> affiliation <T> Visvesvaraya_Technological_University <H> Visvesvaraya_Technological_University <R> city <T> Belgaum
<H> Mermaid_(Train_song) <R> runtime <T> 3.16 <H> Mermaid_(Train_song) <R> release_date <T> 2012-12-27 <H> Mermaid_(Train_song) <R> writer <T> Espen_Lind <H> Mermaid_(Train_song) <R> preceded_by <T> This'll_Be_My_Year
<H> 11th_Mississippi_Infantry_Monument <R> municipality <T> Gettysburg,_Pennsylvania <H> 11th_Mississippi_Infantry_Monument <R> location <T> Adams_County,_Pennsylvania <H> 11th_Mississippi_Infantry_Monument <R> established <T> 2000 <H> Adams_County,_Pennsylvania <R> has_to_its_southeast <T> Carroll_County,_Maryland
<H> Turn_Me_On_(album) <R> genre <T> Noise_rock <H> Turn_Me_On_(album) <R> genre <T> Punk_blues <H> Turn_Me_On_(album) <R> runtime <T> 35.1 <H> Turn_Me_On_(album) <R> preceded_by <T> Let_It_Breed
<H> Brandon_Carter <R> birth_place <T> England
<H> Death_on_a_Factory_Farm <R> editor <T> Geof_Bartz <H> Death_on_a_Factory_Farm <R> broadcasted_by <T> HBO <H> Death_on_a_Factory_Farm <R> director <T> Tom_Simon
<H> 11th_Mississippi_Infantry_Monument <R> municipality <T> Gettysburg,_Pennsylvania <H> 11th_Mississippi_Infantry_Monument <R> location <T> Adams_County,_Pennsylvania <H> 11th_Mississippi_Infantry_Monument <R> state <T> "Pennsylvania" <H> 11th_Mississippi_Infantry_Monument <R> country <T> "United States" <H> 11th_Mississippi_Infantry_Monument <R> established <T> 2000 <H> 11th_Mississippi_Infantry_Monument <R> category <T> Contributing_property <H> Adams_County,_Pennsylvania <R> has_to_its_north <T> Cumberland_County,_Pennsylvania
<H> Expect_a_Miracle <R> genre <T> Instrumental_music <H> Expect_a_Miracle <R> type <T> Compilation_Album <H> Expect_a_Miracle <R> runtime <T> 54.56 <H> Expect_a_Miracle <R> preceded_by <T> Pools_of_Light_(Brian_Kelly_album)
<H> Death_on_a_Factory_Farm <R> editor <T> Geof_Bartz <H> Death_on_a_Factory_Farm <R> producer <T> Tom_Simon <H> Death_on_a_Factory_Farm <R> director <T> Tom_Simon
<H> Alan_B._Miller_Hall <R> location <T> Virginia <H> Alan_B._Miller_Hall <R> architect <T> Robert_A._M._Stern <H> Alan_B._Miller_Hall <R> address <T> "101 Ukrop Way" <H> Alan_B._Miller_Hall <R> completion_date <T> 2009-06-01 <H> Alan_B._Miller_Hall <R> current_tenants <T> Mason_School_of_Business
<H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> genre <T> Rock_music <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> release_date <T> 2001-10-16 <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> runtime <T> 230.05 <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> recorded_in <T> United_States <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> preceded_by <T> Squeeze_(The_Velvet_Underground_album) <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> recorded_in <T> St._Louis,_Missouri
<H> Nurhan_Atasoy <R> citizenship <T> Turkey
<H> Alan_B._Miller_Hall <R> current_tenants <T> Mason_School_of_Business <H> Alan_B._Miller_Hall <R> location <T> Williamsburg,_Virginia
<H> Morelos <R> area_total <T> 4879.0
<H> Nurhan_Atasoy <R> birth_date <T> 1934-01-01 <H> Nurhan_Atasoy <R> award <T> State_Award_for_Superior_Achievement <H> Nurhan_Atasoy <R> citizenship <T> Turkey <H> Turkey <R> capital <T> Ankara <H> Turkey <R> official_language <T> Turkish_language
<H> Darinka_Dentcheva <R> birth_date <T> 1958-01-01 <H> Darinka_Dentcheva <R> residence <T> New_Jersey <H> Darinka_Dentcheva <R> citizenship <T> United_States <H> Darinka_Dentcheva <R> professional_field <T> Mathematical_optimization <H> Darinka_Dentcheva <R> influenced_by <T> Andrzej_Piotr_Ruszczyński <H> Darinka_Dentcheva <R> known_for <T> Stochastic_programming
<H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> recorded_in <T> United_States <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> producer <T> The_Velvet_Underground <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> artist <T> The_Velvet_Underground
<H> Lady_Anne_Monson <R> nationality <T> Kingdom_of_England <H> Lady_Anne_Monson <R> birth_place <T> Kingdom_of_England <H> Lady_Anne_Monson <R> birth_place <T> Darlington <H> Lady_Anne_Monson <R> birth_date <T> 1726-01-01 <H> Lady_Anne_Monson <R> residence <T> India <H> Lady_Anne_Monson <R> spouse <T> George_Monson <H> Lady_Anne_Monson <R> death_date <T> 1776-02-18
<H> Liselotte_Grschebina <R> birth_place <T> Karlsruhe <H> Liselotte_Grschebina <R> birth_date <T> 1908-05-02 <H> Liselotte_Grschebina <R> training <T> School_of_Applied_Arts_in_Stuttgart <H> Liselotte_Grschebina <R> death_place <T> Israel <H> Liselotte_Grschebina <R> death_date <T> 1994-06-14
<H> Nord_(Year_of_No_Light_album) <R> genre <T> Post-metal <H> Nord_(Year_of_No_Light_album) <R> record_label <T> Crucial_Blast
<H> 11th_Mississippi_Infantry_Monument <R> municipality <T> Gettysburg,_Pennsylvania <H> 11th_Mississippi_Infantry_Monument <R> location <T> Adams_County,_Pennsylvania <H> 11th_Mississippi_Infantry_Monument <R> established <T> 2000 <H> 11th_Mississippi_Infantry_Monument <R> category <T> Contributing_property <H> 11th_Mississippi_Infantry_Monument <R> country <T> "United States" <H> Adams_County,_Pennsylvania <R> has_to_its_southeast <T> Carroll_County,_Maryland
<H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> producer <T> The_Velvet_Underground <H> The_Velvet_Underground <R> associated_band_/associated_musical_artist <T> Theatre_of_Eternal_Music
<H> Bionico <R> country <T> Mexico <H> Bionico <R> dish_variation <T> Cottage_cheese
<H> Ciudad_Ayala <R> utc_offset <T> −6 <H> Ciudad_Ayala <R> government_type <T> Council-manager_government <H> Ciudad_Ayala <R> population_density <T> 1604.0
<H> Ciudad_Ayala <R> government_type <T> Council-manager_government
<H> Bananaman <R> broadcasted_by <T> BBC <H> Bananaman <R> starring <T> Bill_Oddie <H> Bananaman <R> creator <T> Steve_Bright
<H> It's_Great_to_Be_Young_(1956_film) <R> starring <T> Cecil_Parker <H> It's_Great_to_Be_Young_(1956_film) <R> director <T> Cyril_Frankel
<H> McVeagh_of_the_South_Seas <R> imdb_id <T> 0004319 <H> McVeagh_of_the_South_Seas <R> writer <T> Harry_Carey_(actor_born_1878)
<H> Olga_Bondareva <R> birth_name <T> "Olga Nikolaevna Bondareva"
<H> Aleksandr_Prudnikov <R> birth_date <T> 1989-02-24 <H> Aleksandr_Prudnikov <R> club <T> FC_Terek_Grozny <H> FC_Terek_Grozny <R> ground <T> Grozny
<H> 1634:_The_Bavarian_Crisis <R> author <T> Eric_Flint <H> 1634:_The_Bavarian_Crisis <R> preceded_by <T> "DeMarce short stories in the The Grantville Gazettes"
<H> Death_on_a_Factory_Farm <R> music_composer <T> Jamie_Lawrence <H> Jamie_Lawrence <R> birth_date <T> 1970-03-08
<H> Lionsgate <R> key_person <T> Michael_R._Burns
<H> Nord_(Year_of_No_Light_album) <R> genre <T> Sludge_metal <H> Sludge_metal <R> music_subgenre <T> Southern_sludge
<H> Super_Capers <R> gross <T> 30955.0 <H> Super_Capers <R> budget <T> 2000000.0 <H> Super_Capers <R> runtime <T> 98.0
<H> Ciudad_Ayala <R> utc_offset <T> −6
<H> 11th_Mississippi_Infantry_Monument <R> municipality <T> Gettysburg,_Pennsylvania <H> 11th_Mississippi_Infantry_Monument <R> location <T> Adams_County,_Pennsylvania <H> 11th_Mississippi_Infantry_Monument <R> established <T> 2000 <H> 11th_Mississippi_Infantry_Monument <R> category <T> Contributing_property <H> Adams_County,_Pennsylvania <R> has_to_its_north <T> Cumberland_County,_Pennsylvania <H> Adams_County,_Pennsylvania <R> has_to_its_southwest <T> Frederick_County,_Maryland
<H> Piotr_Hallmann <R> weight <T> 70.308
<H> Turkey <R> percentage_of_area_water <T> 1.3
<H> English_Without_Tears <R> producer <T> Anatole_de_Grunwald <H> English_Without_Tears <R> cinematography <T> Bernard_Knowles <H> English_Without_Tears <R> music_composer <T> Nicholas_Brodszky <H> English_Without_Tears <R> director <T> Harold_French
<H> Lady_Anne_Monson <R> nationality <T> Kingdom_of_England <H> Lady_Anne_Monson <R> birth_place <T> Kingdom_of_England <H> Lady_Anne_Monson <R> birth_place <T> Darlington <H> Lady_Anne_Monson <R> birth_date <T> 1726-01-01 <H> Lady_Anne_Monson <R> residence <T> India <H> Lady_Anne_Monson <R> death_date <T> 1776-02-18
<H> Turn_Me_On_(album) <R> producer <T> Wharton_Tiers <H> Turn_Me_On_(album) <R> runtime <T> 35.1 <H> Turn_Me_On_(album) <R> producer <T> The_Honeymoon_Killers_(American_band) <H> Turn_Me_On_(album) <R> artist <T> The_Honeymoon_Killers_(American_band) <H> Turn_Me_On_(album) <R> preceded_by <T> Let_It_Breed
<H> Pontiac_Rageous <R> assembly <T> Michigan <H> Pontiac_Rageous <R> production_start_year <T> 1997 <H> Pontiac_Rageous <R> production_end_year <T> 1997 <H> Pontiac_Rageous <R> assembly <T> Detroit <H> Pontiac_Rageous <R> manufacturer <T> Pontiac <H> Pontiac_Rageous <R> body_style <T> Coupe
<H> University_of_Burgundy <R> number_of_students <T> 27400 <H> University_of_Burgundy <R> number_of_doctoral_students <T> 1299 <H> University_of_Burgundy <R> staff <T> 2900
<H> 11th_Mississippi_Infantry_Monument <R> municipality <T> Gettysburg,_Pennsylvania <H> 11th_Mississippi_Infantry_Monument <R> location <T> Adams_County,_Pennsylvania <H> 11th_Mississippi_Infantry_Monument <R> established <T> 2000 <H> 11th_Mississippi_Infantry_Monument <R> category <T> Contributing_property <H> 11th_Mississippi_Infantry_Monument <R> country <T> "United States" <H> Adams_County,_Pennsylvania <R> has_to_its_southeast <T> Carroll_County,_Maryland <H> Adams_County,_Pennsylvania <R> has_to_its_southwest <T> Frederick_County,_Maryland
<H> Nurhan_Atasoy <R> residence <T> Istanbul <H> Istanbul <R> utc_offset <T> +2 <H> Nurhan_Atasoy <R> citizenship <T> Turkey <H> Turkey <R> demonym <T> Turk
<H> Ciudad_Ayala <R> leader_title <T> "City Manager" <H> Ciudad_Ayala <R> government_type <T> Council-manager_government <H> Ciudad_Ayala <R> population_metro <T> 1777539
<H> Turn_Me_On_(album) <R> producer <T> The_Honeymoon_Killers_(American_band) <H> Turn_Me_On_(album) <R> producer <T> Wharton_Tiers <H> Wharton_Tiers <R> birth_date <T> 1953-01-01
<H> Adolfo_Suárez_Madrid–Barajas_Airport <R> location <T> "Madrid, Paracuellos de Jarama, San Sebastián de los Reyes and Alcobendas" <H> Adolfo_Suárez_Madrid–Barajas_Airport <R> operating_organisation <T> ENAIRE <H> Adolfo_Suárez_Madrid–Barajas_Airport <R> runway_length <T> 3500.0
<H> Expect_a_Miracle <R> genre <T> Easy_listening <H> Expect_a_Miracle <R> genre <T> Instrumental_music <H> Expect_a_Miracle <R> artist <T> Brian_Kelly_(composer_&_pianist)
<H> Super_Capers <R> distributor <T> Roadside_Attractions <H> Super_Capers <R> distributor <T> Lionsgate <H> Super_Capers <R> editing <T> Stacy_Katzman <H> Super_Capers <R> writer <T> Ray_Griggs_(director) <H> Super_Capers <R> runtime <T> 98.0 <H> Super_Capers <R> budget <T> 2000000.0 <H> Super_Capers <R> language <T> English_language
<H> Lady_Anne_Monson <R> birth_date <T> 1726-01-01 <H> Lady_Anne_Monson <R> professional_field <T> Botany <H> Lady_Anne_Monson <R> residence <T> India <H> India <R> population_total <T> 1293057000 <H> India <R> demonym <T> Indian
<H> Super_Capers <R> editing <T> Stacy_Katzman <H> Super_Capers <R> language <T> English_language <H> Super_Capers <R> starring <T> Tom_Sizemore <H> Super_Capers <R> starring <T> Michael_Rooker
<H> Aaron_Turner <R> genre <T> Black_metal <H> Aaron_Turner <R> associated_band_/associated_musical_artist <T> Lotus_Eaters_(band) <H> Aaron_Turner <R> active_years_start_year <T> 1995
<H> Alan_Shepard <R> nationality <T> United_States <H> Alan_Shepard <R> birth_date <T> "1923-11-18" <H> Alan_Shepard <R> birth_place <T> New_Hampshire <H> Alan_Shepard <R> alma_mater <T> "NWC, M.A. 1957" <H> Alan_Shepard <R> selected_by_nasa <T> 1959 <H> Alan_Shepard <R> served_as_chief_of_the_astronaut_office_in <T> 1963 <H> Alan_Shepard <R> death_place <T> California
<H> Abraham_A._Ribicoff <R> nationality <T> United_States <H> Abraham_A._Ribicoff <R> birth_place <T> United_States
<H> Alan_Shepard <R> nationality <T> United_States <H> Alan_Shepard <R> birth_date <T> "1923-11-18" <H> Alan_Shepard <R> birth_place <T> New_Hampshire <H> Alan_Shepard <R> mission <T> Apollo_14 <H> Alan_Shepard <R> served_as_chief_of_the_astronaut_office_in <T> 1963 <H> Alan_Shepard <R> award <T> Distinguished_Service_Medal_(United_States_Navy) <H> Alan_Shepard <R> death_place <T> California
<H> Turn_Me_On_(album) <R> runtime <T> 35.1 <H> Turn_Me_On_(album) <R> producer <T> The_Honeymoon_Killers_(American_band) <H> Turn_Me_On_(album) <R> artist <T> The_Honeymoon_Killers_(American_band)
<H> Agremiação_Sportiva_Arapiraquense <R> league <T> Campeonato_Brasileiro_Série_C <H> Agremiação_Sportiva_Arapiraquense <R> season <T> 2015 <H> Agremiação_Sportiva_Arapiraquense <R> number_of_members <T> 17000
<H> It's_Great_to_Be_Young_(1956_film) <R> cinematography <T> Gilbert_Taylor <H> It's_Great_to_Be_Young_(1956_film) <R> gross <T> 282838.0 <H> It's_Great_to_Be_Young_(1956_film) <R> starring <T> John_Mills
<H> University_of_Burgundy <R> campus <T> Dijon <H> University_of_Burgundy <R> number_of_students <T> 27400
<H> Bionico <R> ingredient <T> Condensed_milk <H> Bionico <R> course <T> Dessert <H> Bionico <R> country <T> Mexico <H> Mexico <R> currency <T> Mexican_peso <H> Mexico <R> demonym <T> Mexicans
<H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> genre <T> Rock_music <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> recorded_in <T> United_States <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> runtime <T> 230.05 <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> artist <T> The_Velvet_Underground <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> producer <T> The_Velvet_Underground <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> preceded_by <T> Squeeze_(The_Velvet_Underground_album) <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> recorded_in <T> St._Louis,_Missouri
<H> McVeagh_of_the_South_Seas <R> distributor <T> Alliance_Films_Corporation <H> McVeagh_of_the_South_Seas <R> imdb_id <T> 0004319 <H> McVeagh_of_the_South_Seas <R> director <T> Harry_Carey_(actor_born_1878) <H> McVeagh_of_the_South_Seas <R> director <T> Gregory_Allen
<H> Brandon_Carter <R> birth_place <T> England <H> Brandon_Carter <R> birth_date <T> 1942-01-01 <H> Brandon_Carter <R> professional_field <T> General_relativity <H> Brandon_Carter <R> doctoral_advisor <T> Dennis_William_Sciama
<H> Death_on_a_Factory_Farm <R> runtime <T> 83.0 <H> Death_on_a_Factory_Farm <R> director <T> Sarah_Teale
<H> Bedford_Aerodrome <R> runway_surface_type <T> Concrete <H> Bedford_Aerodrome <R> icao_location_identifier <T> EGBF <H> Bedford_Aerodrome <R> elevation_above_the_sea_level <T> 83.2104
<H> 1147_Stavropolis <R> absolute_magnitude <T> 11.5 <H> 1147_Stavropolis <R> apoapsis <T> 418476000000.0
<H> Abraham_A._Ribicoff <R> spouse <T> "Ruth Ribicoff" <H> Abraham_A._Ribicoff <R> party <T> Democratic_Party_(United_States) <H> Abraham_A._Ribicoff <R> birth_place <T> United_States <H> United_States <R> ethnic_group <T> African_Americans
<H> Piotr_Hallmann <R> birth_date <T> 1987-08-25 <H> Piotr_Hallmann <R> height <T> 175.26
<H> Turn_Me_On_(album) <R> producer <T> The_Honeymoon_Killers_(American_band) <H> The_Honeymoon_Killers_(American_band) <R> associated_band_/associated_musical_artist <T> Pussy_Galore_(band)
<H> Bananaman <R> starring <T> Bill_Oddie <H> Bananaman <R> creator <T> Steve_Bright <H> Bananaman <R> broadcasted_by <T> BBC <H> BBC <R> city <T> Broadcasting_House <H> BBC <R> founded_by <T> John_Reith,_1st_Baron_Reith
<H> Liselotte_Grschebina <R> birth_place <T> German_Empire <H> Liselotte_Grschebina <R> training <T> School_of_Applied_Arts_in_Stuttgart <H> Liselotte_Grschebina <R> nationality <T> Israel <H> Israel <R> official_language <T> Modern_Standard_Arabic <H> Israel <R> area_total <T> 20769100000.0
<H> Agremiação_Sportiva_Arapiraquense <R> ground <T> Estádio_Municipal_Coaracy_da_Mata_Fonseca <H> Estádio_Municipal_Coaracy_da_Mata_Fonseca <R> location <T> Arapiraca <H> Agremiação_Sportiva_Arapiraquense <R> number_of_members <T> 17000 <H> Agremiação_Sportiva_Arapiraquense <R> season <T> 2015_Campeonato_Brasileiro_Série_C <H> Agremiação_Sportiva_Arapiraquense <R> league <T> Campeonato_Brasileiro_Série_C <H> Campeonato_Brasileiro_Série_C <R> country <T> Brazil
<H> Istanbul <R> utc_offset <T> +2
<H> Mermaid_(Train_song) <R> genre <T> Reggae <H> Mermaid_(Train_song) <R> writer <T> Amund_Bjørklund <H> Mermaid_(Train_song) <R> runtime <T> 3.16 <H> Mermaid_(Train_song) <R> writer <T> Stargate_(production_team) <H> Mermaid_(Train_song) <R> followed_by <T> Imagine_(John_Lennon_song)
<H> Acharya_Institute_of_Technology <R> state <T> Karnataka <H> Acharya_Institute_of_Technology <R> campus <T> "In Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore – 560090." <H> Acharya_Institute_of_Technology <R> director <T> "Dr. G. P. Prabhukumar" <H> Acharya_Institute_of_Technology <R> affiliation <T> Visvesvaraya_Technological_University <H> Acharya_Institute_of_Technology <R> was_given_the_technical_campus_status_by <T> All_India_Council_for_Technical_Education <H> All_India_Council_for_Technical_Education <R> location <T> Mumbai
<H> Olga_Bondareva <R> birth_place <T> Leningrad,_USSR <H> Olga_Bondareva <R> birth_date <T> 1937-04-27 <H> Olga_Bondareva <R> death_place <T> Saint_Petersburg
<H> Acharya_Institute_of_Technology <R> campus <T> "In Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore – 560090." <H> Acharya_Institute_of_Technology <R> number_of_postgraduate_students <T> 700 <H> Acharya_Institute_of_Technology <R> director <T> "Dr. G. P. Prabhukumar" <H> Acharya_Institute_of_Technology <R> affiliation <T> Visvesvaraya_Technological_University <H> Acharya_Institute_of_Technology <R> was_given_the_technical_campus_status_by <T> All_India_Council_for_Technical_Education <H> All_India_Council_for_Technical_Education <R> location <T> Mumbai
<H> Brandon_Carter <R> birth_place <T> England <H> Brandon_Carter <R> doctoral_advisor <T> Dennis_William_Sciama
<H> Mermaid_(Train_song) <R> format <T> Music_download <H> Mermaid_(Train_song) <R> writer <T> Espen_Lind <H> Mermaid_(Train_song) <R> writer <T> Amund_Bjørklund <H> Mermaid_(Train_song) <R> producer <T> Espionage_(production_team) <H> Mermaid_(Train_song) <R> followed_by <T> Imagine_(John_Lennon_song) <H> Mermaid_(Train_song) <R> album <T> California_37_(Train_album)
<H> Polydor_Records <R> distributing_label <T> Interscope_Geffen_A&M
<H> Alan_Shepard <R> nationality <T> United_States <H> Alan_Shepard <R> birth_date <T> "1923-11-18" <H> Alan_Shepard <R> birth_place <T> New_Hampshire <H> Alan_Shepard <R> alma_mater <T> "NWC, M.A. 1957" <H> Alan_Shepard <R> date_of_retirement <T> "1974-08-01" <H> Alan_Shepard <R> death_place <T> California
<H> Mason_School_of_Business <R> country <T> United_States <H> Alan_B._Miller_Hall <R> current_tenants <T> Mason_School_of_Business <H> Alan_B._Miller_Hall <R> address <T> "101 Ukrop Way" <H> Alan_B._Miller_Hall <R> location <T> Virginia
<H> Pontiac_Rageous <R> assembly <T> Michigan <H> Pontiac_Rageous <R> body_style <T> Coupe
<H> English_Without_Tears <R> writer <T> Terence_Rattigan <H> English_Without_Tears <R> writer <T> Anatole_de_Grunwald <H> Anatole_de_Grunwald <R> birth_date <T> 1910-12-25
<H> Expect_a_Miracle <R> genre <T> Easy_listening <H> Expect_a_Miracle <R> preceded_by <T> Pools_of_Light_(Brian_Kelly_album)
<H> Bedford_Aerodrome <R> location <T> Thurleigh <H> Bedford_Aerodrome <R> city_served <T> Bedford_Autodrome <H> Bedford_Aerodrome <R> runway_length <T> 1095.0
<H> Nord_(Year_of_No_Light_album) <R> producer <T> Year_of_No_Light <H> Nord_(Year_of_No_Light_album) <R> followed_by <T> Live_at_Roadburn_2008_(Year_of_No_Light_album)
<H> 1147_Stavropolis <R> discovered <T> 1929-06-11 <H> 1147_Stavropolis <R> apoapsis <T> 418476000000.0
<H> Ciudad_Ayala <R> population_density <T> 1604.0 <H> Ciudad_Ayala <R> time_zone <T> Pacific_Standard_Time_Zone
<H> Nord_(Year_of_No_Light_album) <R> genre <T> Sludge_metal <H> Nord_(Year_of_No_Light_album) <R> genre <T> Post-metal <H> Post-metal <R> instrument <T> Synthesizer <H> Sludge_metal <R> instrument <T> Singing
<H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> recorded_in <T> United_States <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> runtime <T> 230.05 <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> artist <T> The_Velvet_Underground
<H> 1147_Stavropolis <R> discoverer <T> Grigory_Neujmin <H> 1147_Stavropolis <R> apoapsis <T> 418476000000.0
<H> Agremiação_Sportiva_Arapiraquense <R> league <T> Campeonato_Brasileiro_Série_C <H> Agremiação_Sportiva_Arapiraquense <R> season <T> 2015_Campeonato_Brasileiro_Série_C
<H> Liselotte_Grschebina <R> nationality <T> Israel <H> Liselotte_Grschebina <R> death_date <T> 1994-06-14 <H> Liselotte_Grschebina <R> training <T> School_of_Applied_Arts_in_Stuttgart
<H> Super_Capers <R> writer <T> Ray_Griggs_(director)
<H> Bionico <R> region <T> Guadalajara <H> Bionico <R> country <T> Mexico <H> Mexico <R> currency <T> Mexican_peso <H> Mexico <R> demonym <T> Mexicans <H> Bionico <R> course <T> Dessert <H> Dessert <R> dish_variation <T> Cookie
<H> Expect_a_Miracle <R> genre <T> Instrumental_music <H> Expect_a_Miracle <R> runtime <T> 54.56 <H> Expect_a_Miracle <R> producer <T> Brian_Kelly_(composer_&_pianist) <H> Expect_a_Miracle <R> artist <T> Brian_Kelly_(composer_&_pianist)
<H> English_Without_Tears <R> editing <T> Alan_Jaggs
<H> Campeonato_Brasileiro_Série_C <R> champions <T> Vila_Nova_Futebol_Clube <H> Agremiação_Sportiva_Arapiraquense <R> league <T> Campeonato_Brasileiro_Série_C <H> Agremiação_Sportiva_Arapiraquense <R> full_name <T> "Agremiação Sportiva Arapiraquense"
<H> Nie_Haisheng <R> birth_place <T> Zaoyang
<H> Turn_Me_On_(album) <R> producer <T> Wharton_Tiers <H> Turn_Me_On_(album) <R> preceded_by <T> Let_It_Breed
<H> Acharya_Institute_of_Technology <R> campus <T> "In Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore – 560090." <H> Acharya_Institute_of_Technology <R> state <T> Karnataka <H> Acharya_Institute_of_Technology <R> country <T> "India" <H> Acharya_Institute_of_Technology <R> affiliation <T> Visvesvaraya_Technological_University
<H> India <R> population_total <T> 1293057000
<H> Zaoyang <R> is_part_of <T> Hubei
<H> Tokat <R> country <T> Turkey
<H> University_of_Burgundy <R> campus <T> Dijon <H> University_of_Burgundy <R> number_of_doctoral_students <T> 1299 <H> University_of_Burgundy <R> staff <T> 2900
<H> Aaron_Turner <R> genre <T> Post-metal <H> Aaron_Turner <R> origin <T> Massachusetts <H> Aaron_Turner <R> instrument <T> Singing <H> Aaron_Turner <R> associated_band_/associated_musical_artist <T> Twilight_(band)
<H> Alan_Shepard <R> birth_place <T> New_Hampshire <H> Alan_Shepard <R> birth_date <T> "1923-11-18" <H> Alan_Shepard <R> death_place <T> California <H> Alan_Shepard <R> date_of_retirement <T> "1974-08-01"
<H> Turn_Me_On_(album) <R> genre <T> Noise_rock <H> Turn_Me_On_(album) <R> genre <T> Punk_blues
<H> Bedford_Aerodrome <R> location <T> Thurleigh <H> Bedford_Aerodrome <R> operating_organisation <T> MotorSport_Vision <H> MotorSport_Vision <R> founded_by <T> Peter_Ogden <H> Thurleigh <R> postal_code <T> MK44
<H> Take_It_Off! <R> producer <T> Wharton_Tiers
<H> Olga_Bondareva <R> birth_place <T> Leningrad,_USSR
<H> ALCO_RS-3 <R> build_date <T> "May 1950 - August 1956" <H> ALCO_RS-3 <R> power_type <T> Diesel-electric_transmission <H> ALCO_RS-3 <R> engine <T> V12_engine <H> ALCO_RS-3 <R> length <T> 17068.8 (millimetres)
<H> Take_It_Off! <R> preceded_by <T> Turn_Me_On_(album)
<H> John_Mills <R> death_place <T> Denham,_Buckinghamshire
<H> GMA_New_Media <R> key_person <T> Felipe_Gozon <H> GMA_New_Media <R> product <T> Mobile_Applications
<H> Brandon_Carter <R> birth_date <T> 1942-01-01 <H> Brandon_Carter <R> doctoral_advisor <T> Dennis_William_Sciama
<H> Super_Capers <R> distributor <T> Lionsgate <H> Super_Capers <R> distributor <T> Roadside_Attractions <H> Super_Capers <R> runtime <T> 98.0 <H> Super_Capers <R> starring <T> Tom_Sizemore <H> Super_Capers <R> starring <T> Michael_Rooker
<H> Expect_a_Miracle <R> type <T> Compilation_Album <H> Expect_a_Miracle <R> runtime <T> 54.56 <H> Expect_a_Miracle <R> artist <T> Brian_Kelly_(composer_&_pianist) <H> Expect_a_Miracle <R> producer <T> Brian_Kelly_(composer_&_pianist) <H> Expect_a_Miracle <R> preceded_by <T> Pools_of_Light_(Brian_Kelly_album)
<H> Abraham_A._Ribicoff <R> nationality <T> United_States <H> Abraham_A._Ribicoff <R> birth_place <T> United_States <H> Abraham_A._Ribicoff <R> spouse <T> Casey_Ribicoff
<H> Bedford_Aerodrome <R> location <T> Thurleigh <H> Bedford_Aerodrome <R> city_served <T> Bedford_Autodrome <H> Bedford_Aerodrome <R> operating_organisation <T> MotorSport_Vision <H> Bedford_Aerodrome <R> runway_length <T> 1095.0
<H> Piotr_Hallmann <R> birth_date <T> 1987-08-25 <H> Piotr_Hallmann <R> birth_place <T> Gdynia,_Poland <H> Piotr_Hallmann <R> weight <T> 70.308 <H> Gdynia,_Poland <R> founding_date <T> 1926-02-10 <H> Gdynia,_Poland <R> area_total <T> 135000000.0
<H> 1147_Stavropolis <R> discoverer <T> Grigory_Neujmin
<H> Piotr_Hallmann <R> birth_place <T> Gdynia,_Poland <H> Piotr_Hallmann <R> birth_date <T> 1987-08-25 <H> Piotr_Hallmann <R> height <T> 175.26
<H> Liselotte_Grschebina <R> nationality <T> Israel <H> Israel <R> leader <T> Reuven_Rivlin
<H> Super_Capers <R> starring <T> Adam_West
<H> The_Two_Towers <R> followed_by <T> The_Return_of_the_King
<H> Nurhan_Atasoy <R> birth_place <T> Reşadiye <H> Nurhan_Atasoy <R> birth_place <T> Turkey <H> Turkey <R> currency <T> Turkish_lira <H> Turkey <R> official_language <T> Turkish_language
<H> Agremiação_Sportiva_Arapiraquense <R> ground <T> Estádio_Municipal_Coaracy_da_Mata_Fonseca <H> Agremiação_Sportiva_Arapiraquense <R> league <T> Campeonato_Brasileiro_Série_C
<H> Jamie_Lawrence <R> birth_date <T> 1970-03-08
<H> Adams_County,_Pennsylvania <R> has_to_its_west <T> Franklin_County,_Pennsylvania <H> 11th_Mississippi_Infantry_Monument <R> location <T> Adams_County,_Pennsylvania <H> 11th_Mississippi_Infantry_Monument <R> category <T> Contributing_property
<H> Sludge_metal <R> instrument <T> Singing
<H> Bedford_Aerodrome <R> runway_surface_type <T> Concrete <H> Bedford_Aerodrome <R> icao_location_identifier <T> EGBF
<H> Death_on_a_Factory_Farm <R> editor <T> Geof_Bartz <H> Death_on_a_Factory_Farm <R> broadcasted_by <T> HBO <H> Death_on_a_Factory_Farm <R> producer <T> Sarah_Teale <H> Death_on_a_Factory_Farm <R> producer <T> Tom_Simon <H> Death_on_a_Factory_Farm <R> director <T> Tom_Simon
<H> McVeagh_of_the_South_Seas <R> writer <T> Harry_Carey_(actor_born_1878) <H> McVeagh_of_the_South_Seas <R> director <T> Harry_Carey_(actor_born_1878) <H> McVeagh_of_the_South_Seas <R> director <T> Cyril_Bruce
<H> Super_Capers <R> distributor <T> Lionsgate <H> Super_Capers <R> starring <T> Justin_Whalin <H> Super_Capers <R> distributor <T> Roadside_Attractions <H> Roadside_Attractions <R> founding_year <T> 2003-01-01
<H> Israel <R> long_name <T> "State of Israel"
<H> ALCO_RS-3 <R> engine <T> V12_engine <H> ALCO_RS-3 <R> cylinder_count <T> 12 <H> ALCO_RS-3 <R> length <T> 17068.8 (millimetres)
<H> Michael_Rooker <R> birth_date <T> 1955-04-06
<H> Mexico <R> area_total <T> 1972550.0
<H> 11th_Mississippi_Infantry_Monument <R> established <T> 2000 <H> 11th_Mississippi_Infantry_Monument <R> location <T> Adams_County,_Pennsylvania <H> 11th_Mississippi_Infantry_Monument <R> category <T> Contributing_property <H> 11th_Mississippi_Infantry_Monument <R> state <T> "Pennsylvania" <H> Adams_County,_Pennsylvania <R> has_to_its_west <T> Franklin_County,_Pennsylvania <H> Adams_County,_Pennsylvania <R> has_to_its_north <T> Cumberland_County,_Pennsylvania <H> Adams_County,_Pennsylvania <R> has_to_its_southeast <T> Carroll_County,_Maryland
<H> Aleksandr_Prudnikov <R> youthclub <T> FC_Spartak_Moscow <H> Aleksandr_Prudnikov <R> club <T> FC_Terek_Grozny <H> FC_Terek_Grozny <R> manager <T> Rashid_Rakhimov
<H> Ciudad_Ayala <R> type <T> City <H> Ciudad_Ayala <R> is_part_of <T> Morelos <H> Ciudad_Ayala <R> government_type <T> Council-manager_government <H> Ciudad_Ayala <R> population_metro <T> 1777539 <H> Ciudad_Ayala <R> population_density <T> 1604.0 <H> Ciudad_Ayala <R> leader_title <T> "City Manager"
<H> Brandon_Carter <R> birth_place <T> England <H> Brandon_Carter <R> birth_date <T> 1942-01-01 <H> Brandon_Carter <R> alma_mater <T> University_of_Cambridge <H> Brandon_Carter <R> professional_field <T> General_relativity <H> Brandon_Carter <R> known_for <T> Carter_constant <H> Brandon_Carter <R> known_for <T> No-hair_theorem <H> Brandon_Carter <R> doctoral_advisor <T> Dennis_William_Sciama
<H> Super_Capers <R> distributor <T> Roadside_Attractions <H> Super_Capers <R> distributor <T> Lionsgate <H> Super_Capers <R> starring <T> Tom_Sizemore <H> Super_Capers <R> starring <T> Michael_Rooker
<H> Sludge_metal <R> music_subgenre <T> Stoner_sludge
<H> Bionico <R> course <T> Dessert <H> Bionico <R> country <T> Mexico <H> Mexico <R> currency <T> Mexican_peso <H> Mexico <R> leader <T> Silvano_Aureoles_Conejo
<H> Bionico <R> course <T> Dessert <H> Bionico <R> region <T> Jalisco <H> Bionico <R> country <T> Mexico <H> Mexico <R> currency <T> Mexican_peso <H> Mexico <R> leader <T> Silvano_Aureoles_Conejo <H> Mexico <R> demonym <T> Mexicans
<H> English_Without_Tears <R> producer <T> Anatole_de_Grunwald <H> English_Without_Tears <R> runtime <T> 89.0
<H> Liselotte_Grschebina <R> birth_place <T> German_Empire <H> Liselotte_Grschebina <R> professional_field <T> Photographer <H> Liselotte_Grschebina <R> training <T> School_of_Applied_Arts_in_Stuttgart
<H> Alan_B._Miller_Hall <R> location <T> Virginia <H> Alan_B._Miller_Hall <R> current_tenants <T> Mason_School_of_Business
<H> ALCO_RS-3 <R> cylinder_count <T> 12 <H> ALCO_RS-3 <R> length <T> 17068.8 (millimetres)
<H> Liselotte_Grschebina <R> birth_place <T> German_Empire <H> German_Empire <R> currency <T> South_German_gulden
<H> Mermaid_(Train_song) <R> writer <T> Espen_Lind <H> Mermaid_(Train_song) <R> writer <T> Stargate_(production_team) <H> Stargate_(production_team) <R> associated_band_/associated_musical_artist <T> Benny_Blanco <H> Stargate_(production_team) <R> associated_band_/associated_musical_artist <T> Michael_Jackson
<H> The_Fellowship_of_the_Ring <R> preceded_by <T> The_Hobbit <H> The_Hobbit <R> release_date <T> 1937-09-21
<H> It's_Great_to_Be_Young_(1956_film) <R> cinematography <T> Gilbert_Taylor <H> It's_Great_to_Be_Young_(1956_film) <R> gross <T> 282838.0 <H> It's_Great_to_Be_Young_(1956_film) <R> runtime <T> 94.0 <H> It's_Great_to_Be_Young_(1956_film) <R> director <T> Cyril_Frankel <H> It's_Great_to_Be_Young_(1956_film) <R> starring <T> John_Mills
<H> Acharya_Institute_of_Technology <R> campus <T> "In Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore – 560090." <H> Acharya_Institute_of_Technology <R> academic_staff_size <T> "~500" <H> Acharya_Institute_of_Technology <R> director <T> "Dr. G. P. Prabhukumar" <H> Acharya_Institute_of_Technology <R> affiliation <T> Visvesvaraya_Technological_University <H> Acharya_Institute_of_Technology <R> was_given_the_technical_campus_status_by <T> All_India_Council_for_Technical_Education <H> All_India_Council_for_Technical_Education <R> location <T> Mumbai <H> Acharya_Institute_of_Technology <R> motto <T> "Nurturing Excellence"
<H> Agremiação_Sportiva_Arapiraquense <R> league <T> Campeonato_Brasileiro_Série_C <H> Campeonato_Brasileiro_Série_C <R> country <T> Brazil <H> Agremiação_Sportiva_Arapiraquense <R> number_of_members <T> 17000 <H> Agremiação_Sportiva_Arapiraquense <R> season <T> 2015
<H> Expect_a_Miracle <R> genre <T> Instrumental_music <H> Expect_a_Miracle <R> type <T> Compilation_Album <H> Expect_a_Miracle <R> runtime <T> 54.56 <H> Expect_a_Miracle <R> artist <T> Brian_Kelly_(composer_&_pianist) <H> Expect_a_Miracle <R> producer <T> Brian_Kelly_(composer_&_pianist) <H> Expect_a_Miracle <R> preceded_by <T> Pools_of_Light_(Brian_Kelly_album) <H> Expect_a_Miracle <R> followed_by <T> Afterplay_(Brian_Kelly_album)
<H> ALCO_RS-3 <R> engine <T> V12_engine <H> ALCO_RS-3 <R> length <T> 17068.8 (millimetres)
<H> Bedford_Aerodrome <R> location <T> Thurleigh <H> Bedford_Aerodrome <R> city_served <T> Bedford_Autodrome <H> Bedford_Aerodrome <R> operating_organisation <T> MotorSport_Vision <H> Bedford_Aerodrome <R> elevation_above_the_sea_level <T> 83.2104 <H> Bedford_Aerodrome <R> runway_length <T> 1095.0
<H> Pontiac_Rageous <R> assembly <T> Michigan <H> Pontiac_Rageous <R> production_start_year <T> 1997 <H> Pontiac_Rageous <R> production_end_year <T> 1997 <H> Pontiac_Rageous <R> assembly <T> Detroit <H> Pontiac_Rageous <R> manufacturer <T> Pontiac
<H> Liselotte_Grschebina <R> nationality <T> Israel <H> Liselotte_Grschebina <R> birth_place <T> Karlsruhe <H> Liselotte_Grschebina <R> birth_date <T> 1908-05-02
<H> Nie_Haisheng <R> birth_place <T> Hubei <H> Nie_Haisheng <R> birth_place <T> Zaoyang <H> Nie_Haisheng <R> mission <T> Shenzhou_10 <H> Nie_Haisheng <R> mission <T> Shenzhou_6
<H> Agremiação_Sportiva_Arapiraquense <R> ground <T> Estádio_Municipal_Coaracy_da_Mata_Fonseca <H> Estádio_Municipal_Coaracy_da_Mata_Fonseca <R> location <T> Arapiraca <H> Agremiação_Sportiva_Arapiraquense <R> full_name <T> "Agremiação Sportiva Arapiraquense" <H> Agremiação_Sportiva_Arapiraquense <R> season <T> 2015 <H> Agremiação_Sportiva_Arapiraquense <R> number_of_members <T> 17000 <H> Agremiação_Sportiva_Arapiraquense <R> league <T> Campeonato_Brasileiro_Série_C <H> Campeonato_Brasileiro_Série_C <R> country <T> Brazil
<H> Pontiac_Rageous <R> production_start_year <T> 1997 <H> Pontiac_Rageous <R> production_end_year <T> 1997 <H> Pontiac_Rageous <R> manufacturer <T> Pontiac <H> Pontiac_Rageous <R> body_style <T> Coupe
<H> Pontiac_Rageous <R> assembly <T> Detroit
<H> Bananaman <R> broadcasted_by <T> BBC <H> BBC <R> founded_by <T> John_Reith,_1st_Baron_Reith
<H> English_Without_Tears <R> music_composer <T> Nicholas_Brodszky <H> English_Without_Tears <R> director <T> Harold_French
<H> Mermaid_(Train_song) <R> genre <T> Reggae <H> Mermaid_(Train_song) <R> followed_by <T> Imagine_(John_Lennon_song) <H> Imagine_(John_Lennon_song) <R> genre <T> Pop_music <H> Imagine_(John_Lennon_song) <R> followed_by <T> Happy_Xmas_(War_Is_Over)
<H> Lady_Anne_Monson <R> nationality <T> Kingdom_of_England <H> Lady_Anne_Monson <R> residence <T> India <H> Lady_Anne_Monson <R> professional_field <T> Botany <H> Lady_Anne_Monson <R> spouse <T> George_Monson
<H> Akeem_Ayers <R> debut_team <T> Tennessee_Titans <H> Akeem_Ayers <R> active_years_start_year <T> 2011
<H> Death_on_a_Factory_Farm <R> editor <T> Geof_Bartz <H> Death_on_a_Factory_Farm <R> music_composer <T> Jamie_Lawrence <H> Death_on_a_Factory_Farm <R> runtime <T> 83.0 <H> Death_on_a_Factory_Farm <R> producer <T> Tom_Simon
<H> University_of_Burgundy <R> country <T> France
<H> MotorSport_Vision <R> city <T> Kent
<H> Pontiac_Rageous <R> assembly <T> Michigan <H> Michigan <R> area_total <T> 250493000000.0
<H> Bananaman <R> broadcasted_by <T> BBC <H> Bananaman <R> first_aired <T> "1983-10-03" <H> Bananaman <R> creator <T> Steve_Bright <H> BBC <R> city <T> Broadcasting_House
<H> Bionico <R> ingredient <T> Granola <H> Bionico <R> course <T> Dessert <H> Dessert <R> dish_variation <T> Cookie <H> Bionico <R> country <T> Mexico <H> Mexico <R> currency <T> Mexican_peso <H> Mexico <R> demonym <T> Mexicans
<H> University_of_Burgundy <R> campus <T> Dijon <H> University_of_Burgundy <R> number_of_doctoral_students <T> 1299 <H> University_of_Burgundy <R> number_of_students <T> 27400
<H> Olga_Bondareva <R> birth_place <T> Leningrad,_USSR <H> Olga_Bondareva <R> professional_field <T> Economics <H> Olga_Bondareva <R> professional_field <T> Mathematics <H> Olga_Bondareva <R> death_place <T> Saint_Petersburg <H> Olga_Bondareva <R> death_date <T> 1991-12-09
<H> Lady_Anne_Monson <R> nationality <T> Kingdom_of_England <H> Lady_Anne_Monson <R> birth_place <T> Kingdom_of_England <H> Lady_Anne_Monson <R> death_date <T> 1776-02-18
<H> Mermaid_(Train_song) <R> record_label <T> Columbia_Records
<H> Abraham_A._Ribicoff <R> nationality <T> American <H> Abraham_A._Ribicoff <R> birth_place <T> United_States <H> Abraham_A._Ribicoff <R> spouse <T> "Ruth Ribicoff" <H> Abraham_A._Ribicoff <R> in_office_while_president <T> John_F._Kennedy <H> Abraham_A._Ribicoff <R> party <T> Democratic_Party_(United_States)
<H> Pontiac_Rageous <R> assembly <T> Detroit <H> Pontiac_Rageous <R> manufacturer <T> Pontiac <H> Pontiac_Rageous <R> body_style <T> Coupe
<H> Bananaman <R> starring <T> Tim_Brooke-Taylor <H> Bananaman <R> first_aired <T> "1983-10-03"
<H> Grigory_Neujmin <R> birth_date <T> 1886-01-01
<H> Mermaid_(Train_song) <R> format <T> Music_download
<H> Bananaman <R> starring <T> Tim_Brooke-Taylor <H> Bananaman <R> broadcasted_by <T> BBC <H> BBC <R> city <T> Broadcasting_House
<H> Big_Hero_6_(film) <R> distributor <T> Walt_Disney_Studios_Motion_Pictures <H> Baymax <R> series <T> Big_Hero_6_(film)
<H> The_Fellowship_of_the_Ring <R> author <T> J._R._R._Tolkien <H> The_Fellowship_of_the_Ring <R> literary_genre <T> Fantasy_(genre) <H> The_Fellowship_of_the_Ring <R> publisher <T> George_Allen_&_Unwin <H> The_Fellowship_of_the_Ring <R> release_date <T> 1954-07-29 <H> The_Fellowship_of_the_Ring <R> preceded_by <T> The_Hobbit <H> The_Fellowship_of_the_Ring <R> followed_by <T> The_Two_Towers
<H> Ciudad_Ayala <R> leader_title <T> Governator <H> Ciudad_Ayala <R> population_density <T> 1604.0 <H> Ciudad_Ayala <R> elevation_above_the_sea_level <T> 1147.0 <H> Ciudad_Ayala <R> time_zone <T> Pacific_Daylight_Time <H> Ciudad_Ayala <R> time_zone <T> Pacific_Standard_Time_Zone
<H> Bedford_Aerodrome <R> runway_surface_type <T> Concrete <H> Bedford_Aerodrome <R> elevation_above_the_sea_level <T> 83.2104 <H> Bedford_Aerodrome <R> icao_location_identifier <T> EGBF <H> Bedford_Aerodrome <R> runway_name <T> "08/26" <H> Bedford_Aerodrome <R> runway_length <T> 1095.0
<H> Alan_Shepard <R> birth_place <T> New_Hampshire <H> Alan_Shepard <R> occupation <T> Test_pilot <H> Alan_Shepard <R> death_place <T> California
<H> Bedford_Aerodrome <R> runway_surface_type <T> Concrete <H> Bedford_Aerodrome <R> elevation_above_the_sea_level <T> 83.2104 <H> Bedford_Aerodrome <R> runway_name <T> "08/26"
<H> Alan_B._Miller_Hall <R> owner <T> College_of_William_&_Mary <H> Alan_B._Miller_Hall <R> address <T> "101 Ukrop Way" <H> Alan_B._Miller_Hall <R> building_start_date <T> "30 March 2007" <H> Alan_B._Miller_Hall <R> architect <T> Robert_A._M._Stern <H> Alan_B._Miller_Hall <R> architectural_style <T> Georgian_architecture <H> Alan_B._Miller_Hall <R> current_tenants <T> Mason_School_of_Business
<H> Adolfo_Suárez_Madrid–Barajas_Airport <R> location <T> "Madrid, Paracuellos de Jarama, San Sebastián de los Reyes and Alcobendas" <H> Adolfo_Suárez_Madrid–Barajas_Airport <R> elevation_above_the_sea_level <T> 610.0 <H> Adolfo_Suárez_Madrid–Barajas_Airport <R> operating_organisation <T> ENAIRE <H> ENAIRE <R> city <T> Madrid
<H> Alan_B._Miller_Hall <R> owner <T> College_of_William_&_Mary <H> Alan_B._Miller_Hall <R> address <T> "101 Ukrop Way" <H> Alan_B._Miller_Hall <R> location <T> Virginia <H> Alan_B._Miller_Hall <R> architect <T> Robert_A._M._Stern <H> Alan_B._Miller_Hall <R> building_start_date <T> "30 March 2007" <H> Alan_B._Miller_Hall <R> current_tenants <T> Mason_School_of_Business <H> Mason_School_of_Business <R> country <T> United_States
<H> Bedford_Aerodrome <R> location <T> Thurleigh <H> Bedford_Aerodrome <R> operating_organisation <T> MotorSport_Vision
<H> Liselotte_Grschebina <R> birth_date <T> 1908-05-02 <H> Liselotte_Grschebina <R> professional_field <T> Photographer <H> Liselotte_Grschebina <R> death_place <T> Petah_Tikva
<H> McVeagh_of_the_South_Seas <R> imdb_id <T> 0004319 <H> McVeagh_of_the_South_Seas <R> writer <T> Harry_Carey_(actor_born_1878) <H> McVeagh_of_the_South_Seas <R> director <T> Harry_Carey_(actor_born_1878) <H> McVeagh_of_the_South_Seas <R> starring <T> Harry_Carey_(actor_born_1878) <H> McVeagh_of_the_South_Seas <R> director <T> Cyril_Bruce
<H> Olga_Bondareva <R> birth_date <T> 1937-04-27 <H> Olga_Bondareva <R> alma_mater <T> Leningrad_State_University <H> Olga_Bondareva <R> professional_field <T> Economics
<H> The_Fellowship_of_the_Ring <R> publisher <T> George_Allen_&_Unwin <H> The_Fellowship_of_the_Ring <R> followed_by <T> The_Two_Towers
<H> McVeagh_of_the_South_Seas <R> writer <T> Harry_Carey_(actor_born_1878)
<H> The_Fellowship_of_the_Ring <R> author <T> J._R._R._Tolkien <H> The_Fellowship_of_the_Ring <R> followed_by <T> The_Two_Towers
<H> Alan_B._Miller_Hall <R> owner <T> College_of_William_&_Mary <H> Alan_B._Miller_Hall <R> address <T> "101 Ukrop Way" <H> Alan_B._Miller_Hall <R> location <T> Virginia <H> Alan_B._Miller_Hall <R> building_start_date <T> "30 March 2007" <H> Alan_B._Miller_Hall <R> completion_date <T> 2009-06-01 <H> Alan_B._Miller_Hall <R> architect <T> Robert_A._M._Stern <H> Alan_B._Miller_Hall <R> current_tenants <T> Mason_School_of_Business
<H> Mason_School_of_Business <R> country <T> United_States <H> Alan_B._Miller_Hall <R> current_tenants <T> Mason_School_of_Business <H> Alan_B._Miller_Hall <R> address <T> "101 Ukrop Way" <H> Alan_B._Miller_Hall <R> building_start_date <T> "30 March 2007" <H> Alan_B._Miller_Hall <R> architect <T> Robert_A._M._Stern <H> Alan_B._Miller_Hall <R> owner <T> College_of_William_&_Mary
<H> Imagine_(John_Lennon_song) <R> album <T> Imagine_(John_Lennon_album)
<H> University_of_Burgundy <R> campus <T> Dijon <H> University_of_Burgundy <R> number_of_students <T> 27400 <H> University_of_Burgundy <R> number_of_doctoral_students <T> 1299 <H> University_of_Burgundy <R> number_of_undergraduate_students <T> 16800 <H> University_of_Burgundy <R> staff <T> 2900
<H> Adolfo_Suárez_Madrid–Barajas_Airport <R> operating_organisation <T> ENAIRE <H> Adolfo_Suárez_Madrid–Barajas_Airport <R> elevation_above_the_sea_level <T> 610.0 <H> Adolfo_Suárez_Madrid–Barajas_Airport <R> runway_length <T> 3500.0
<H> Super_Capers <R> starring <T> Tom_Lister,_Jr. <H> Super_Capers <R> gross <T> 30955.0 <H> Super_Capers <R> runtime <T> 98.0 <H> Super_Capers <R> writer <T> Ray_Griggs_(director)
<H> 1147_Stavropolis <R> rotation_period <T> 20378.5 <H> 1147_Stavropolis <R> discovered <T> 1929-06-11 <H> 1147_Stavropolis <R> apoapsis <T> 418476000000.0
<H> Acharya_Institute_of_Technology <R> city <T> Bangalore <H> Acharya_Institute_of_Technology <R> director <T> "Dr. G. P. Prabhukumar" <H> Acharya_Institute_of_Technology <R> affiliation <T> Visvesvaraya_Technological_University
<H> Alan_B._Miller_Hall <R> owner <T> College_of_William_&_Mary <H> Alan_B._Miller_Hall <R> address <T> "101 Ukrop Way" <H> Alan_B._Miller_Hall <R> architect <T> Robert_A._M._Stern <H> Alan_B._Miller_Hall <R> tenant <T> Mason_School_of_Business <H> Alan_B._Miller_Hall <R> current_tenants <T> Mason_School_of_Business
<H> Turn_Me_On_(album) <R> producer <T> The_Honeymoon_Killers_(American_band)
<H> It's_Great_to_Be_Young_(1956_film) <R> writer <T> Ted_Willis <H> It's_Great_to_Be_Young_(1956_film) <R> director <T> Cyril_Frankel <H> It's_Great_to_Be_Young_(1956_film) <R> starring <T> Cecil_Parker <H> It's_Great_to_Be_Young_(1956_film) <R> starring <T> John_Mills <H> John_Mills <R> death_year <T> 2005
<H> Ciudad_Ayala <R> leader <T> Juan_Nolasco
<H> Mermaid_(Train_song) <R> genre <T> Pop_rock <H> Mermaid_(Train_song) <R> followed_by <T> Imagine_(John_Lennon_song) <H> Imagine_(John_Lennon_song) <R> followed_by <T> Happy_Xmas_(War_Is_Over)
<H> ALCO_RS-3 <R> build_date <T> "May 1950 - August 1956" <H> ALCO_RS-3 <R> engine <T> V12_engine <H> ALCO_RS-3 <R> length <T> 17068.8 (millimetres)
<H> 1634:_The_Bavarian_Crisis <R> author <T> Eric_Flint <H> 1634:_The_Bavarian_Crisis <R> number_of_pages <T> "448"
<H> Death_on_a_Factory_Farm <R> editor <T> Geof_Bartz <H> Death_on_a_Factory_Farm <R> broadcasted_by <T> HBO <H> Death_on_a_Factory_Farm <R> music_composer <T> Jamie_Lawrence <H> Death_on_a_Factory_Farm <R> runtime <T> 83.0 <H> Death_on_a_Factory_Farm <R> producer <T> Tom_Simon <H> Death_on_a_Factory_Farm <R> director <T> Tom_Simon
<H> Liselotte_Grschebina <R> birth_place <T> Karlsruhe <H> Liselotte_Grschebina <R> nationality <T> Israel <H> Israel <R> language <T> Modern_Hebrew
<H> University_of_Burgundy <R> number_of_undergraduate_students <T> 16800 <H> University_of_Burgundy <R> staff <T> 2900
<H> GMA_New_Media <R> product <T> Online_Game
<H> Hypermarcas <R> location <T> Brazil <H> Hypermarcas <R> product <T> Healthcare <H> Hypermarcas <R> product <T> Drugs
<H> Hypermarcas <R> revenue <T> 1800000000 <H> Hypermarcas <R> net_income <T> 108600000 <H> Hypermarcas <R> number_of_employees <T> 10252 <H> Hypermarcas <R> product <T> Cosmetics <H> Hypermarcas <R> product <T> Healthcare
<H> Super_Capers <R> distributor <T> Roadside_Attractions <H> Super_Capers <R> distributor <T> Lionsgate <H> Lionsgate <R> type <T> Public_company <H> Super_Capers <R> language <T> English_language <H> English_language <R> iso6391_code <T> en
<H> Turn_Me_On_(album) <R> producer <T> Wharton_Tiers <H> Turn_Me_On_(album) <R> followed_by <T> Take_It_Off!
<H> Pop_rock <R> music_subgenre <T> Indie_pop
<H> Ciudad_Ayala <R> leader_title <T> Governator <H> Ciudad_Ayala <R> population_density <T> 1604.0
<H> Ciudad_Ayala <R> type <T> City <H> Ciudad_Ayala <R> population_metro <T> 1777539 <H> Ciudad_Ayala <R> population_density <T> 1604.0 <H> Ciudad_Ayala <R> leader_title <T> "City Manager"
<H> Nord_(Year_of_No_Light_album) <R> genre <T> Sludge_metal
<H> ALCO_RS-3 <R> builder <T> American_Locomotive_Company <H> ALCO_RS-3 <R> power_type <T> Diesel-electric_transmission <H> ALCO_RS-3 <R> build_date <T> "May 1950 - August 1956" <H> ALCO_RS-3 <R> length <T> 17068.8 (millimetres)
<H> Train_(band) <R> genre <T> Pop_rock
<H> Super_Capers <R> distributor <T> Roadside_Attractions <H> Super_Capers <R> distributor <T> Lionsgate <H> Super_Capers <R> editing <T> Stacy_Katzman <H> Super_Capers <R> runtime <T> 98.0 <H> Super_Capers <R> language <T> English_language <H> Super_Capers <R> starring <T> Tom_Sizemore <H> Super_Capers <R> starring <T> Michael_Rooker
<H> The_Fellowship_of_the_Ring <R> author <T> J._R._R._Tolkien <H> The_Fellowship_of_the_Ring <R> publisher <T> George_Allen_&_Unwin <H> The_Fellowship_of_the_Ring <R> release_date <T> 1954-07-29 <H> The_Fellowship_of_the_Ring <R> preceded_by <T> The_Hobbit
<H> Mermaid_(Train_song) <R> genre <T> Reggae <H> Mermaid_(Train_song) <R> runtime <T> 3.16 <H> Mermaid_(Train_song) <R> musical_band <T> Train_(band) <H> Mermaid_(Train_song) <R> producer <T> Espionage_(production_team) <H> Mermaid_(Train_song) <R> preceded_by <T> This'll_Be_My_Year <H> Mermaid_(Train_song) <R> followed_by <T> Imagine_(John_Lennon_song)
<H> Darinka_Dentcheva <R> birth_date <T> 1958-01-01 <H> Darinka_Dentcheva <R> alma_mater <T> Humboldt_University <H> Darinka_Dentcheva <R> professional_field <T> Mathematical_optimization <H> Darinka_Dentcheva <R> influenced_by <T> Andrzej_Piotr_Ruszczyński <H> Darinka_Dentcheva <R> citizenship <T> United_States
<H> McVeagh_of_the_South_Seas <R> distributor <T> Alliance_Films_Corporation
<H> Nie_Haisheng <R> nationality <T> People's_Republic_of_China <H> Nie_Haisheng <R> birth_place <T> Zaoyang
<H> Nurhan_Atasoy <R> residence <T> Istanbul <H> Nurhan_Atasoy <R> birth_place <T> Turkey <H> Nurhan_Atasoy <R> residence <T> Turkey <H> Turkey <R> government_type <T> Unitary_state <H> Turkey <R> percentage_of_area_water <T> 1.3
<H> Super_Capers <R> starring <T> Michael_Rooker <H> Super_Capers <R> writer <T> Ray_Griggs_(director) <H> Ray_Griggs_(director) <R> birth_year <T> 1974
<H> Bedford_Aerodrome <R> operating_organisation <T> MotorSport_Vision
<H> Turn_Me_On_(album) <R> genre <T> Punk_blues <H> Punk_blues <R> instrument <T> Drum_kit
<H> Alan_B._Miller_Hall <R> owner <T> College_of_William_&_Mary <H> Alan_B._Miller_Hall <R> address <T> "101 Ukrop Way" <H> Alan_B._Miller_Hall <R> architect <T> Robert_A._M._Stern <H> Alan_B._Miller_Hall <R> current_tenants <T> Mason_School_of_Business
<H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> producer <T> The_Velvet_Underground
<H> It's_Great_to_Be_Young_(1956_film) <R> music_composer <T> Louis_Levy <H> It's_Great_to_Be_Young_(1956_film) <R> runtime <T> 94.0 <H> It's_Great_to_Be_Young_(1956_film) <R> director <T> Cyril_Frankel
<H> 11th_Mississippi_Infantry_Monument <R> established <T> 2000 <H> 11th_Mississippi_Infantry_Monument <R> country <T> "United States"
<H> Liselotte_Grschebina <R> birth_place <T> German_Empire
<H> Nord_(Year_of_No_Light_album) <R> genre <T> Post-metal <H> Nord_(Year_of_No_Light_album) <R> artist <T> Year_of_No_Light <H> Nord_(Year_of_No_Light_album) <R> release_date <T> 2006-09-06
<H> Turn_Me_On_(album) <R> genre <T> Noise_rock
<H> Ciudad_Ayala <R> government_type <T> Council-manager_government <H> Ciudad_Ayala <R> population_density <T> 1604.0 <H> Ciudad_Ayala <R> leader_title <T> Governator
<H> It's_Great_to_Be_Young_(1956_film) <R> starring <T> John_Mills <H> It's_Great_to_Be_Young_(1956_film) <R> director <T> Cyril_Frankel <H> It's_Great_to_Be_Young_(1956_film) <R> starring <T> Cecil_Parker
<H> Death_on_a_Factory_Farm <R> producer <T> Tom_Simon <H> Death_on_a_Factory_Farm <R> director <T> Tom_Simon
<H> Hypermarcas <R> type <T> S.A._(corporation) <H> Hypermarcas <R> net_income <T> 108600000 <H> Hypermarcas <R> industry <T> Pharmaceuticals <H> Hypermarcas <R> subsidiary <T> Mantecorp <H> Hypermarcas <R> number_of_employees <T> 10252 <H> Hypermarcas <R> product <T> Healthcare
<H> English_Without_Tears <R> editing <T> Alan_Jaggs <H> English_Without_Tears <R> cinematography <T> Bernard_Knowles <H> English_Without_Tears <R> runtime <T> 89.0 <H> English_Without_Tears <R> music_composer <T> Nicholas_Brodszky
<H> Brandon_Carter <R> birth_date <T> 1942-01-01 <H> Brandon_Carter <R> alma_mater <T> University_of_Cambridge <H> Brandon_Carter <R> professional_field <T> General_relativity
<H> ALCO_RS-3 <R> build_date <T> "May 1950 - August 1956" <H> ALCO_RS-3 <R> length <T> 17068.8 (millimetres)
<H> Nie_Haisheng <R> birth_place <T> Hubei <H> Nie_Haisheng <R> birth_date <T> 1964-10-13 <H> Nie_Haisheng <R> birth_place <T> Zaoyang <H> Nie_Haisheng <R> mission <T> Shenzhou_10 <H> Nie_Haisheng <R> mission <T> Shenzhou_6
<H> Alan_B._Miller_Hall <R> owner <T> College_of_William_&_Mary <H> Alan_B._Miller_Hall <R> address <T> "101 Ukrop Way" <H> Alan_B._Miller_Hall <R> building_start_date <T> "30 March 2007" <H> Alan_B._Miller_Hall <R> architect <T> Robert_A._M._Stern <H> Alan_B._Miller_Hall <R> tenant <T> Mason_School_of_Business <H> Alan_B._Miller_Hall <R> current_tenants <T> Mason_School_of_Business
<H> Piotr_Hallmann <R> birth_date <T> 1987-08-25 <H> Piotr_Hallmann <R> weight <T> 70.308 <H> Piotr_Hallmann <R> height <T> 175.26
<H> GMA_New_Media <R> founding_date <T> 2000-01-01 <H> GMA_New_Media <R> product <T> World_Wide_Web <H> GMA_New_Media <R> product <T> Mobile_Applications
<H> Mexico <R> leader_title <T> "President of the Senate"
<H> Lady_Anne_Monson <R> nationality <T> Kingdom_of_England <H> Lady_Anne_Monson <R> birth_place <T> Darlington <H> Lady_Anne_Monson <R> birth_date <T> 1726-01-01
<H> Bionico <R> course <T> Dessert <H> Bionico <R> main_ingredient <T> "Chopped Fruits, Sour Cream, Condensed Milk, Granola, Shredded Coconut, Raisins" <H> Bionico <R> country <T> Mexico <H> Mexico <R> currency <T> Mexican_peso <H> Mexico <R> leader <T> Silvano_Aureoles_Conejo <H> Mexico <R> demonym <T> Mexicans
<H> Turn_Me_On_(album) <R> producer <T> Wharton_Tiers <H> Turn_Me_On_(album) <R> runtime <T> 35.1 <H> Turn_Me_On_(album) <R> preceded_by <T> Let_It_Breed <H> Turn_Me_On_(album) <R> producer <T> The_Honeymoon_Killers_(American_band)
<H> Olga_Bondareva <R> birth_place <T> Leningrad,_USSR <H> Olga_Bondareva <R> birth_date <T> 1937-04-27 <H> Olga_Bondareva <R> known_for <T> Bondareva–Shapley_theorem <H> Olga_Bondareva <R> death_place <T> Saint_Petersburg
<H> Agremiação_Sportiva_Arapiraquense <R> ground <T> Estádio_Municipal_Coaracy_da_Mata_Fonseca <H> Estádio_Municipal_Coaracy_da_Mata_Fonseca <R> location <T> Arapiraca <H> Agremiação_Sportiva_Arapiraquense <R> full_name <T> "Agremiação Sportiva Arapiraquense" <H> Agremiação_Sportiva_Arapiraquense <R> season <T> 2015_Campeonato_Brasileiro_Série_C <H> Agremiação_Sportiva_Arapiraquense <R> league <T> Campeonato_Brasileiro_Série_C <H> Campeonato_Brasileiro_Série_C <R> country <T> Brazil <H> Campeonato_Brasileiro_Série_C <R> champions <T> Vila_Nova_Futebol_Clube
<H> Bionico <R> course <T> Dessert <H> Bionico <R> country <T> Mexico <H> Mexico <R> language <T> Spanish_language
<H> Dijon <R> elevation_above_the_sea_level <T> 245.0
<H> Mermaid_(Train_song) <R> format <T> Music_download <H> Mermaid_(Train_song) <R> producer <T> Espionage_(production_team) <H> Mermaid_(Train_song) <R> followed_by <T> Imagine_(John_Lennon_song)
<H> Acharya_Institute_of_Technology <R> campus <T> "In Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore – 560090." <H> Acharya_Institute_of_Technology <R> academic_staff_size <T> "~500" <H> Acharya_Institute_of_Technology <R> director <T> "Dr. G. P. Prabhukumar" <H> Acharya_Institute_of_Technology <R> was_given_the_technical_campus_status_by <T> All_India_Council_for_Technical_Education <H> All_India_Council_for_Technical_Education <R> location <T> Mumbai <H> Acharya_Institute_of_Technology <R> affiliation <T> Visvesvaraya_Technological_University <H> Visvesvaraya_Technological_University <R> city <T> Belgaum
<H> University_of_Burgundy <R> number_of_students <T> 27400 <H> University_of_Burgundy <R> campus <T> Dijon <H> Dijon <R> country <T> France <H> France <R> government_type <T> Unitary_state
<H> Nurhan_Atasoy <R> nationality <T> Turkish_people <H> Nurhan_Atasoy <R> citizenship <T> Turkey <H> Turkey <R> long_name <T> "Republic of Turkey" <H> Turkey <R> language <T> Turkish_language
<H> Reggae <R> stylistic_origin <T> Rhythm_and_Blues
<H> 1147_Stavropolis <R> discovered <T> 1929-06-11
<H> McVeagh_of_the_South_Seas <R> distributor <T> Alliance_Films_Corporation <H> McVeagh_of_the_South_Seas <R> imdb_id <T> 0004319 <H> McVeagh_of_the_South_Seas <R> producer <T> The_Progressive_Motion_Picture_Company <H> McVeagh_of_the_South_Seas <R> writer <T> Harry_Carey_(actor_born_1878) <H> McVeagh_of_the_South_Seas <R> director <T> Harry_Carey_(actor_born_1878) <H> McVeagh_of_the_South_Seas <R> starring <T> Harry_Carey_(actor_born_1878) <H> McVeagh_of_the_South_Seas <R> director <T> Cyril_Bruce
<H> Super_Capers <R> starring <T> Justin_Whalin
<H> Adolfo_Suárez_Madrid–Barajas_Airport <R> location <T> San_Sebastián_de_los_Reyes <H> Adolfo_Suárez_Madrid–Barajas_Airport <R> operating_organisation <T> ENAIRE <H> Adolfo_Suárez_Madrid–Barajas_Airport <R> elevation_above_the_sea_level <T> 610.0 <H> Adolfo_Suárez_Madrid–Barajas_Airport <R> runway_length <T> 3500.0
<H> Bedford_Aerodrome <R> runway_surface_type <T> Concrete <H> Bedford_Aerodrome <R> city_served <T> Bedford_Autodrome <H> Bedford_Aerodrome <R> icao_location_identifier <T> EGBF <H> Bedford_Aerodrome <R> elevation_above_the_sea_level <T> 83.2104 <H> Bedford_Aerodrome <R> runway_name <T> "08/26"
<H> English_Without_Tears <R> writer <T> Anatole_de_Grunwald <H> English_Without_Tears <R> cinematography <T> Bernard_Knowles
<H> Abraham_A._Ribicoff <R> spouse <T> "Ruth Ribicoff" <H> Abraham_A._Ribicoff <R> birth_place <T> United_States <H> Abraham_A._Ribicoff <R> death_place <T> United_States <H> United_States <R> ethnic_group <T> African_Americans
<H> Bedford_Aerodrome <R> location <T> Thurleigh <H> Thurleigh <R> country <T> United_Kingdom
<H> GMA_New_Media <R> parent_company <T> GMA_Network_(company)
<H> Lady_Anne_Monson <R> birth_place <T> Kingdom_of_England <H> Kingdom_of_England <R> capital <T> Winchester
<H> Ciudad_Ayala <R> type <T> City <H> Ciudad_Ayala <R> country <T> Mexico <H> Ciudad_Ayala <R> population_density <T> 1604.0 <H> Ciudad_Ayala <R> leader_title <T> Governator <H> Ciudad_Ayala <R> utc_offset <T> −6
<H> Alan_Shepard <R> nationality <T> United_States <H> Alan_Shepard <R> birth_date <T> "1923-11-18" <H> Alan_Shepard <R> birth_place <T> New_Hampshire <H> Alan_Shepard <R> alma_mater <T> "NWC, M.A. 1957" <H> Alan_Shepard <R> death_date <T> "1998-07-21" <H> Alan_Shepard <R> death_place <T> California
<H> Mermaid_(Train_song) <R> runtime <T> 3.16
<H> Mermaid_(Train_song) <R> musical_band <T> Train_(band) <H> Mermaid_(Train_song) <R> followed_by <T> Imagine_(John_Lennon_song) <H> Imagine_(John_Lennon_song) <R> musical_artist <T> John_Lennon <H> Imagine_(John_Lennon_song) <R> followed_by <T> Happy_Xmas_(War_Is_Over)
<H> 1147_Stavropolis <R> absolute_magnitude <T> 11.5 <H> 1147_Stavropolis <R> discovered <T> 1929-06-11
<H> Buzz_Aldrin <R> birth_place <T> Glen_Ridge,_New_Jersey <H> Buzz_Aldrin <R> alma_mater <T> "Massachusetts Institute of Technology, Sc.D. 1963"
<H> English_Without_Tears <R> director <T> Harold_French <H> Harold_French <R> occupation <T> Film_director
<H> Reşadiye <R> is_part_of <T> Tokat_Province
<H> Darinka_Dentcheva <R> birth_date <T> 1958-01-01 <H> Darinka_Dentcheva <R> professional_field <T> Mathematical_optimization <H> Darinka_Dentcheva <R> known_for <T> Stochastic_programming
<H> Olga_Bondareva <R> birth_name <T> "Olga Nikolaevna Bondareva" <H> Olga_Bondareva <R> birth_date <T> 1937-04-27 <H> Olga_Bondareva <R> known_for <T> Bondareva–Shapley_theorem
<H> Petah_Tikva <R> country <T> Israel
<H> Adolfo_Suárez_Madrid–Barajas_Airport <R> elevation_above_the_sea_level <T> 610.0 <H> Adolfo_Suárez_Madrid–Barajas_Airport <R> operating_organisation <T> ENAIRE <H> ENAIRE <R> city <T> Madrid
<H> Harold_French <R> active_years_start_year <T> 1920-01-01
<H> Bionico <R> region <T> Jalisco <H> Bionico <R> country <T> Mexico
<H> Aleksandr_Prudnikov <R> birth_date <T> 1989-02-24 <H> Aleksandr_Prudnikov <R> youthclub <T> FC_Spartak_Moscow <H> Aleksandr_Prudnikov <R> club <T> FC_Amkar_Perm <H> FC_Amkar_Perm <R> manager <T> Gadzhi_Gadzhiyev
<H> Agremiação_Sportiva_Arapiraquense <R> ground <T> Estádio_Municipal_Coaracy_da_Mata_Fonseca <H> Estádio_Municipal_Coaracy_da_Mata_Fonseca <R> location <T> Arapiraca <H> Agremiação_Sportiva_Arapiraquense <R> number_of_members <T> 17000 <H> Agremiação_Sportiva_Arapiraquense <R> season <T> 2015 <H> Agremiação_Sportiva_Arapiraquense <R> league <T> Campeonato_Brasileiro_Série_C <H> Campeonato_Brasileiro_Série_C <R> champions <T> Vila_Nova_Futebol_Clube
<H> Expect_a_Miracle <R> type <T> Compilation_Album <H> Expect_a_Miracle <R> runtime <T> 54.56 <H> Expect_a_Miracle <R> preceded_by <T> Pools_of_Light_(Brian_Kelly_album) <H> Expect_a_Miracle <R> producer <T> Brian_Kelly_(composer_&_pianist)
<H> ALCO_RS-3 <R> builder <T> American_Locomotive_Company <H> ALCO_RS-3 <R> cylinder_count <T> 12 <H> ALCO_RS-3 <R> build_date <T> "May 1950 - August 1956" <H> ALCO_RS-3 <R> length <T> 17068.8 (millimetres)
<H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> release_date <T> 2001-10-16 <H> Bootleg_Series_Volume_1:_The_Quine_Tapes <R> runtime <T> 230.05
<H> Bedford_Aerodrome <R> location <T> Thurleigh <H> Bedford_Aerodrome <R> runway_length <T> 1095.0
<H> 1147_Stavropolis <R> absolute_magnitude <T> 11.5 <H> 1147_Stavropolis <R> epoch <T> 31 July 2016 (JD2457600.5) <H> 1147_Stavropolis <R> periapsis <T> 260855000000.0 <H> 1147_Stavropolis <R> apoapsis <T> 418476000000.0 <H> 1147_Stavropolis <R> orbital_period <T> 1249.6
<H> Noise_rock <R> music_fusion_genre <T> Noise_pop
<H> Ciudad_Ayala <R> utc_offset <T> −6 <H> Ciudad_Ayala <R> population_density <T> 1604.0 <H> Ciudad_Ayala <R> elevation_above_the_sea_level <T> 1147.0