-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathval.txt
1493 lines (1493 loc) · 425 KB
/
val.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
{"token": ["the", "system", "as", "described", "above", "has", "its", "greatest", "application", "in", "an", "arrayed", "configuration", "of", "antenna", "elements", "."], "h": {"name": "configuration", "pos": [12, 13]}, "t": {"name": "elements", "pos": [15, 16]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["the", "girl", "showed", "a", "photo", "of", "apple", "tree", "blossom", "on", "a", "fruit", "tree", "in", "the", "central", "valley", "."], "h": {"name": "tree", "pos": [7, 8]}, "t": {"name": "blossom", "pos": [8, 9]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["the", "provinces", "are", "divided", "into", "counties", "(", "shahrestan", ")", ",", "and", "subdivided", "into", "districts", "(", "bakhsh", ")", "and", "sub-districts", "(", "dehestan", ")", "."], "h": {"name": "provinces", "pos": [1, 2]}, "t": {"name": "counties", "pos": [5, 6]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["the", "ride-on", "boat", "tiller", "was", "developed", "by", "engineers", "arnold", "s.", "juliano", "and", "dr.", "eulito", "u.", "bautista", "."], "h": {"name": "boat", "pos": [2, 3]}, "t": {"name": "tiller", "pos": [3, 4]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["i", "have", "recently", "developed", "creases", "in", "my", "ear", "lobes", "."], "h": {"name": "ear", "pos": [7, 8]}, "t": {"name": "lobes", "pos": [8, 9]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["the", "province", "comprises", "the", "southeastern", "part", "of", "panay", "island", "with", "island-province", "of", "guimaras", "just", "across", "its", "coast", "."], "h": {"name": "province", "pos": [1, 2]}, "t": {"name": "part", "pos": [5, 6]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["he", "stopped", "rowing", "when", "the", "boat", "was", "opposite", "to", "the", "paddle", "wheel", "of", "the", "steamer", ",", "and", "the", "steamer", "stopped", "her", "engine", "at", "the", "same", "time", "."], "h": {"name": "steamer", "pos": [18, 19]}, "t": {"name": "engine", "pos": [21, 22]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["our", "experience", "extends", "to", "15", "years", "continued", "promotion", "of", "this", "archipelago", "of", "nine", "islands", "."], "h": {"name": "archipelago", "pos": [10, 11]}, "t": {"name": "islands", "pos": [13, 14]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["the", "owl", "held", "the", "mouse", "in", "its", "claw", "."], "h": {"name": "owl", "pos": [1, 2]}, "t": {"name": "claw", "pos": [7, 8]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["two", "of", "walters", "'s", "fingers", "are", "inside", "the", "koala", "'s", "pouch", "."], "h": {"name": "koala", "pos": [8, 9]}, "t": {"name": "pouch", "pos": [10, 11]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["to", "stand", "up", "to", "the", "wind", ",", "umbrella", "frames", "are", "strong", "yet", "flexible", "."], "h": {"name": "umbrella", "pos": [7, 8]}, "t": {"name": "frames", "pos": [8, 9]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["the", "list", "of", "the", "10", "most", "beautiful", "women", "posted", "on", "the", "official", "web", "site", "of", "the", "2009", "australian", "open", "was", "filled", "with", "sleek", ",", "thin", "images", "."], "h": {"name": "list", "pos": [1, 2]}, "t": {"name": "images", "pos": [25, 26]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["the", "front", "of", "the", "boring", "machine", "contains", "tungsten-tipped", "picks", "that", "workers", "guide", "with", "the", "use", "of", "laser", "projections", "on", "video", "screens", "."], "h": {"name": "machine", "pos": [5, 6]}, "t": {"name": "picks", "pos": [8, 9]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["cruisers", "and", "large", "yachts", "have", "much", "more", "sophisticated", "fittings", "that", "that", "require", "more", "skills", "."], "h": {"name": "cruisers", "pos": [0, 1]}, "t": {"name": "fittings", "pos": [8, 9]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["the", "finished", "doll", "was", "made", "with", "stockings", "for", "the", "face", "and", "a", "baby", "sock", "for", "the", "body", "."], "h": {"name": "doll", "pos": [2, 3]}, "t": {"name": "stockings", "pos": [6, 7]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["the", "series", "comprises", "some", "re-issues", "of", "the", "previous", "books", ",", "as", "well", "as", "new", "titles", "."], "h": {"name": "series", "pos": [1, 2]}, "t": {"name": "titles", "pos": [14, 15]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["the", "temperature", "at", "which", "flower", "buds", "are", "injured", "depends", "."], "h": {"name": "flower", "pos": [4, 5]}, "t": {"name": "buds", "pos": [5, 6]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["the", "venter", "encloses", "a", "venter", "canal", "cell", "and", "an", "egg", "cell", "."], "h": {"name": "venter", "pos": [1, 2]}, "t": {"name": "cell", "pos": [6, 7]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["the", "aroon", "indicator", "system", "consists", "of", "two", "lines", ",", "'aroon", "(", "up", ")", "'", "and", "'aroon", "(", "down", ")", "'", "."], "h": {"name": "system", "pos": [3, 4]}, "t": {"name": "lines", "pos": [7, 8]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["he", "unwinded", "the", "pocketwatch", "by", "letting", "down", "the", "mainspring", ",", "a", "ribbon", "of", "tightly", "rolled", "steel", "inside", "the", "mainspring", "barrel", "."], "h": {"name": "pocketwatch", "pos": [3, 4]}, "t": {"name": "mainspring", "pos": [8, 9]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["the", "robot", "reached", "the", "goal", "using", "a", "smaller", "number", "of", "internal", "states", "than", "with", "the", "conventional", "methods", "."], "h": {"name": "robot", "pos": [1, 2]}, "t": {"name": "states", "pos": [11, 12]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["it", "was", "a", "whole", "flying", "wedge", "of", "white", "swans", "flying", "over", "wall", "street", "marking", "the", "market", "in", "their", "own", "charming", "way", "."], "h": {"name": "wedge", "pos": [5, 6]}, "t": {"name": "swans", "pos": [8, 9]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["the", "kit", "includes", "an", "on-off-on", "toggle", "switch", "for", "the", "clipper", "switching", "and", "modifications", "."], "h": {"name": "kit", "pos": [1, 2]}, "t": {"name": "toggle switch", "pos": [5, 7]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["in", "biological", "anatomy", ",", "the", "mesencephalon", "(", "or", "midbrain", ")", "comprises", "the", "tectum", "(", "or", "corpora", "quadrigemini", ")", ",", "tegmentum", ",", "the", "ventricular", "mesocoelia", "(", "or", "``", "iter", "''", ")", ",", "and", "the", "cerebral", "peduncles", ",", "as", "well", "as", "several", "nuclei", "and", "fasciculi", "."], "h": {"name": "mesencephalon", "pos": [5, 6]}, "t": {"name": "tectum", "pos": [12, 13]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["about", "two", "months", "later", ",", "the", "baby", "alligator", "breaks", "open", "the", "egg", "with", "a", "sharp", "pick", "on", "the", "end", "of", "the", "nose", "called", "an", "``", "egg", "tooth", "''", "."], "h": {"name": "alligator", "pos": [7, 8]}, "t": {"name": "pick", "pos": [15, 16]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["the", "box", "regulated", "the", "temperature", "using", "an", "odoff", "controller", "and", "t2", "as", "temperature", "reference", "."], "h": {"name": "box", "pos": [1, 2]}, "t": {"name": "controller", "pos": [8, 9]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["this", "extensor", "mechanism", "is", "composed", "chiefly", "of", "the", "quadriceps", "femoris", "(", "rectus", "femoris", ",", "vastus", "lateralis", ",", "vastus", "intermedius", ",", "vastus", "medialis", ")", ",", "quadriceps", "tendon", ",", "patella", ",", "and", "patellar", "tendon", "."], "h": {"name": "mechanism", "pos": [2, 3]}, "t": {"name": "patella", "pos": [27, 28]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["however", ",", "the", "barbary", "macaque", "grows", "a", "big", "thick", "coat", "for", "the", "winter", ",", "which", "means", "they", "can", "live", "outside", "all", "year", "."], "h": {"name": "macaque", "pos": [4, 5]}, "t": {"name": "coat", "pos": [9, 10]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["the", "review", "published", "political", "commentary", "and", "opinion", ",", "but", "even", "more", "than", "that", "."], "h": {"name": "review", "pos": [1, 2]}, "t": {"name": "commentary", "pos": [4, 5]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["coquina", "is", "a", "poorly", "consolidated", "limestone", "composed", "of", "pieces", "of", "coral", "or", "shells", "."], "h": {"name": "limestone", "pos": [5, 6]}, "t": {"name": "pieces", "pos": [8, 9]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["the", "package", "includes", "an", "audio", "and", "video", "receiver", "that", "transmits", "information", "to", "the", "plasma", "display", "."], "h": {"name": "package", "pos": [1, 2]}, "t": {"name": "receiver", "pos": [7, 8]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["a", "catamaran", "tiller", "having", "a", "grip", "is", "provided", "to", "permit", "tension", "to", "be", "applied", "to", "the", "tiller", "more", "easily", "."], "h": {"name": "catamaran", "pos": [1, 2]}, "t": {"name": "tiller", "pos": [2, 3]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["this", "is", "a", "guide", "teaches", "you", "how", "to", "make", "a", "video", "tutorial", "by", "recording", "the", "computer", "screen", "without", "camera", "in", "minutes", "."], "h": {"name": "computer", "pos": [15, 16]}, "t": {"name": "screen", "pos": [16, 17]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["this", "machine", "has", "two", "heating", "units", "and", "two", "cooling", "units", "."], "h": {"name": "machine", "pos": [1, 2]}, "t": {"name": "units", "pos": [5, 6]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["this", "oven", "has", "a", "flat", "belt", "conveyor", "with", "three", "zones", "and", "complete", "controls", "."], "h": {"name": "oven", "pos": [1, 2]}, "t": {"name": "conveyor", "pos": [6, 7]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["we", "got", "a", "ball", "with", "catnip", "inside", "."], "h": {"name": "ball", "pos": [3, 4]}, "t": {"name": "catnip", "pos": [5, 6]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["this", "is", "due", "to", "a", "unique", "design", "that", "filters", "the", "dirt", "through", "the", "bag", "and", "not", "the", "blower", "fan", "."], "h": {"name": "design", "pos": [6, 7]}, "t": {"name": "bag", "pos": [13, 14]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["the", "sail", "had", "an", "important", "roach", "and", "had", "adjustable", "batten", "fittings", "on", "the", "leech", "and", "luff", "receptacles", "."], "h": {"name": "sail", "pos": [1, 2]}, "t": {"name": "roach", "pos": [5, 6]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["this", "specific", "machine", "has", "been", "fitted", "with", "a", "mirus", "automatic", "sheet", "feeder", "thereby", "increasing", "the", "capacity", "on", "large", "runs", "."], "h": {"name": "machine", "pos": [2, 3]}, "t": {"name": "feeder", "pos": [11, 12]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["she", "double", "clicked", "the", "mouse", "button", "by", "placing", "her", "finger", "on", "the", "left", "mouse-button", "and", "then", "quickly", "pressing", "and", "releasing", "the", "button", "two", "times", "."], "h": {"name": "mouse", "pos": [4, 5]}, "t": {"name": "button", "pos": [5, 6]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["what", "is", "so", "amazing", "about", "this", "technology", "is", "that", "the", "image", "is", "constructed", "from", "random", "photos", "pulled", "from", "the", "internet", "."], "h": {"name": "image", "pos": [10, 11]}, "t": {"name": "photos", "pos": [15, 16]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["this", "cabin", "has", "3", "beautifully", "decorated", "bedrooms", ";", "one", "on", "each", "level", "featuring", "custom", "made", "log", "beds", ",", "each", "with", "its", "own", "bathroom", "."], "h": {"name": "cabin", "pos": [1, 2]}, "t": {"name": "bedrooms", "pos": [6, 7]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["the", "stapler", "comprises", "a", "stapling", "head", "(", "2", ")", "and", "an", "anvil", "(", "3", ")", "."], "h": {"name": "stapler", "pos": [1, 2]}, "t": {"name": "anvil", "pos": [11, 12]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["this", "dishwasher", "has", "the", "tallest", "tub", "available*", "and", "allows", "you", "to", "wash", "more", "than", "ever", "before", "."], "h": {"name": "dishwasher", "pos": [1, 2]}, "t": {"name": "tub", "pos": [5, 6]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["he", "cleaned", "his", "piano", "keys", ",", "using", "the", "proposed", "tips", ",", "but", "also", "remembered", ":", "playing", "with", "clean", "hands", "can", "prevent", "future", "headache", "."], "h": {"name": "piano", "pos": [3, 4]}, "t": {"name": "keys", "pos": [4, 5]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["the", "worcester", "greenstar", "30", "cdi", "conventional", "boiler", "works", "with", "a", "hot", "water", "storage", "cylinder", "to", "provide", "hot", "water", "."], "h": {"name": "boiler", "pos": [6, 7]}, "t": {"name": "cylinder", "pos": [13, 14]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["many", "simple", "dc", "power", "supplies", "regulate", "the", "voltage", "using", "a", "shunt", "regulator", "such", "as", "a", "zener", "diode", "."], "h": {"name": "supplies", "pos": [4, 5]}, "t": {"name": "regulator", "pos": [11, 12]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["the", "tail", "is", "long", "and", "thin", "with", "a", "blue", "central", "tail", "feather", "."], "h": {"name": "tail", "pos": [1, 2]}, "t": {"name": "feather", "pos": [11, 12]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["this", "oven", "has", "a", "meat", "probe", "so", "i", "tried", "it", "in", "the", "lasagna", "at", "a", "set", "temperature", "of", "165", "degrees", "."], "h": {"name": "oven", "pos": [1, 2]}, "t": {"name": "probe", "pos": [5, 6]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["the", "accommodation", "briefly", "comprises", "of", "hall", ",", "downstairs", "w.c.", ",", "lounge", ",", "kitchen", ",", "three", "bedrooms", "and", "bathroom", "."], "h": {"name": "accommodation", "pos": [1, 2]}, "t": {"name": "hall", "pos": [5, 6]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["goatfish", "use", "a", "pair", "of", "large", "chin", "barbels", "to", "probe", "the", "sea", "bottom", "to", "detect", "buried", "prey", "."], "h": {"name": "goatfish", "pos": [0, 1]}, "t": {"name": "barbels", "pos": [7, 8]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["this", "website", "is", "dedicated", "to", "providing", "event", "details", ",", "guest", "book", ",", "class", "photos", ",", "rsvp", ",", "payment", "collection", "and", "trip", "planning", "information", "."], "h": {"name": "website", "pos": [1, 2]}, "t": {"name": "details", "pos": [7, 8]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["this", "is", "a", "tutorial", "on", "how", "to", "fix", "a", "mighty", "mouse", "'s", "scroll", "ball", "."], "h": {"name": "mouse", "pos": [10, 11]}, "t": {"name": "scroll ball", "pos": [12, 14]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["this", "train", "has", "as", "many", "as", "six", "sets", "of", "doors", "on", "each", "side", "to", "shorten", "the", "time", "for", "passengers", "to", "get", "on", "and", "off", "at", "station", "."], "h": {"name": "train", "pos": [1, 2]}, "t": {"name": "doors", "pos": [9, 10]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["the", "handpiece", "contains", "a", "primary", "coil", "and", "the", "sleeve", "encloses", "a", "secondary", "coil", ",", "which", "are", "inductively", "coupled", "together", "so", "that", "electromagnetic", "energy", "can", "be", "transferred", "between", "them", "."], "h": {"name": "handpiece", "pos": [1, 2]}, "t": {"name": "coil", "pos": [5, 6]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["a", "typical", "pig", "has", "a", "large", "head", "with", "a", "long", "snout", "which", "is", "strengthened", "by", "a", "special", "prenasal", "bone", "and", "by", "a", "disk", "of", "cartilage", "in", "the", "tip", "."], "h": {"name": "pig", "pos": [2, 3]}, "t": {"name": "head", "pos": [6, 7]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["the", "book", "includes", "a", "13-page", "index", ",", "which", "is", "quite", "extensive", "for", "a", "volume", "of", "this", "length", "."], "h": {"name": "book", "pos": [1, 2]}, "t": {"name": "index", "pos": [5, 6]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["the", "program", "offers", "a", "lively", "discussion", "of", "magnificent", "value", "."], "h": {"name": "program", "pos": [1, 2]}, "t": {"name": "discussion", "pos": [5, 6]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["i", "used", "these", "techniques", "to", "stretch", "my", "ear", "lobes", "to", "accept", "6", "gauge", "earrings", "."], "h": {"name": "ear", "pos": [7, 8]}, "t": {"name": "lobes", "pos": [8, 9]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["the", "baby", "tapir", "snorgled", "its", "snout", "into", "the", "basket", "full", "of", "cuddly", "baby", "bunnies", "."], "h": {"name": "tapir", "pos": [2, 3]}, "t": {"name": "snout", "pos": [5, 6]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["this", "documentary", "graphic", "novel", "brings", "together", "starkly", "beautiful", "black", "and", "white", "photographs", "taken", "by", "lefevre", "."], "h": {"name": "novel", "pos": [3, 4]}, "t": {"name": "photographs", "pos": [11, 12]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["almost", "all", "of", "today", "'s", "automobiles", "have", "painted", "plastic", "bumpers", "because", "they", "are", "easily", "damaged", "during", "parking", "maneuvers", "."], "h": {"name": "automobiles", "pos": [5, 6]}, "t": {"name": "bumpers", "pos": [9, 10]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["magnetic", "field", "is", "made", "of", "photons", "."], "h": {"name": "field", "pos": [1, 2]}, "t": {"name": "photons", "pos": [5, 6]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["a", "few", "bare-bodied", "young", "lads", "were", "standing", "on", "the", "rod", "of", "the", "tram", "'s", "wheel", ",", "hanging", "on", "to", "the", "windows", "with", "one", "hand", "."], "h": {"name": "tram", "pos": [12, 13]}, "t": {"name": "wheel", "pos": [14, 15]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["the", "clock", "has", "one", "brass", "bar", "attached", "to", "a", "chain", "on", "each", "side", "of", "the", "pendulum", "."], "h": {"name": "clock", "pos": [1, 2]}, "t": {"name": "bar", "pos": [5, 6]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["the", "clock", "has", "a", "lcd", "display", "with", "the", "following", "fields", ":", "dayofweek", "date", "x", "time", "(", "offset", "to", "utc", ")", "."], "h": {"name": "clock", "pos": [1, 2]}, "t": {"name": "display", "pos": [5, 6]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["a", "polarized", "plug", "has", "two", "blades", "with", "one", "wider", "than", "the", "other", "."], "h": {"name": "plug", "pos": [2, 3]}, "t": {"name": "blades", "pos": [5, 6]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["the", "nuclear", "hormone", "receptor", "superfamily", "consists", "of", "structurally", "related", ",", "ligand-dependent", "transcription", "factors", "and", "a", "large", "number", "of", "orphan", "receptors", "for", "which", "the", "ligand", "has", "not", "yet", "been", "identified", "."], "h": {"name": "superfamily", "pos": [4, 5]}, "t": {"name": "factors", "pos": [12, 13]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["this", "italian", "dish", "is", "made", "with", "gelatinous", "veal", "shanks", "that", "are", "braised", "with", "fresh", "vegetables", "and", "rich", "stock", "."], "h": {"name": "dish", "pos": [2, 3]}, "t": {"name": "shanks", "pos": [8, 9]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["two", "other", "structures", "in", "the", "depth", "of", "the", "midbrain", "that", "are", "important", "for", "normal", "motor", "function", "are", "the", "red", "nucleus", "(", "not", "visible", ")", "and", "the", "substantia", "nigra", "."], "h": {"name": "midbrain", "pos": [8, 9]}, "t": {"name": "nucleus", "pos": [19, 20]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["on", "the", "studio", "version", ",", "the", "song", "breaks", "wide", "open", "after", "the", "second", "chorus", "with", "a", "string", "section", "as", "ryan", "rips", "up", "the", "harmonica", "."], "h": {"name": "song", "pos": [6, 7]}, "t": {"name": "chorus", "pos": [13, 14]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["my", "dog", "has", "a", "little", "red", "ball", "on", "his", "snout", "."], "h": {"name": "dog", "pos": [1, 2]}, "t": {"name": "snout", "pos": [9, 10]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["the", "course", "scaled", "the", "mountain", "via", "a", "very", "muddy", "run-up", "."], "h": {"name": "course", "pos": [1, 2]}, "t": {"name": "run-up", "pos": [9, 10]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["the", "genome", "comprises", "4411529", "base", "pairs", ",", "contains", "around", "4000", "genes", ",", "and", "has", "a", "very", "high", "guanine", "+", "cytosine", "content", "."], "h": {"name": "genome", "pos": [1, 2]}, "t": {"name": "genes", "pos": [10, 11]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["this", "barbell", "toy", "has", "an", "acrylic", "ring", "to", "rattle", "and", "lots", "of", "dots", "to", "``", "tongue", "''", "."], "h": {"name": "toy", "pos": [2, 3]}, "t": {"name": "ring", "pos": [6, 7]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["the", "first", "parcel", "he", "found", "was", "a", "rouleau", "of", "fifty", "dollars", ",", "the", "coins", "not", "having", "burst", "the", "paper", "enveloping", "them", "."], "h": {"name": "rouleau", "pos": [7, 8]}, "t": {"name": "dollars", "pos": [10, 11]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["this", "personal", "alarm", "combines", "two", "great", "deterrents", "to", "attack-", "a", "loud", "alarm", "and", "flashing", "light", "."], "h": {"name": "alarm", "pos": [2, 3]}, "t": {"name": "light", "pos": [14, 15]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["from", "the", "duke", "himself", "he", "received", "his", "right", "spur", "and", "a", "magnificent", "eastern", "sword", "with", "golden", "hilt", "and", "shining", "blade", ",", "inscribed", "with", "letters", "."], "h": {"name": "sword", "pos": [13, 14]}, "t": {"name": "blade", "pos": [19, 20]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["a", "sliding", "knife", "is", "a", "knife", "which", "is", "opened", "by", "sliding", "the", "knife", "blade", "out", "the", "front", "of", "the", "handle", "."], "h": {"name": "knife", "pos": [12, 13]}, "t": {"name": "blade", "pos": [13, 14]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["the", "programme", "begins", "with", "the", "uwi", "venture", "competition", "which", "is", "opened", "to", "final", "year", "undergraduate", "students", ",", "graduate", "students", "and", "researchers", "at", "the", "uwi", "."], "h": {"name": "programme", "pos": [1, 2]}, "t": {"name": "competition", "pos": [7, 8]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["the", "more", "common", "double", "horn", "has", "a", "fourth", "valve", ",", "usually", "operated", "by", "the", "thumb", ",", "which", "routes", "the", "air", "to", "one", "set", "of", "tubing", "tuned", "to", "f", "or", "the", "second", "set", "of", "tubing", "tuned", "to", "b", "."], "h": {"name": "horn", "pos": [4, 5]}, "t": {"name": "valve", "pos": [8, 9]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["the", "story", "of", "the", "pilot", "episode", "is", "related", "through", "a", "series", "of", "flashbacks", "."], "h": {"name": "story", "pos": [1, 2]}, "t": {"name": "flashbacks", "pos": [12, 13]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["california", "law", "consists", "of", "29", "codes", ",", "covering", "various", "subject", "areas", ",", "the", "state", "constitution", "and", "statutes", "."], "h": {"name": "law", "pos": [1, 2]}, "t": {"name": "codes", "pos": [5, 6]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["the", "farm", "had", "many", "acres", "with", "a", "number", "of", "buildings", "dedicated", "to", "a", "variety", "of", "goodies", "from", "produce", ",", "fruits", ",", "baker", "goods", "and", "specialty", "items", "depending", "on", "the", "season", "."], "h": {"name": "farm", "pos": [1, 2]}, "t": {"name": "buildings", "pos": [9, 10]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["it", "'s", "a", "fish", "with", "lungs", ",", "and", "it", "can", "survive", "on", "land", "for", "brief", "periods", "."], "h": {"name": "fish", "pos": [3, 4]}, "t": {"name": "lungs", "pos": [5, 6]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["the", "book", "comprises", "ten", "chapters", "."], "h": {"name": "book", "pos": [1, 2]}, "t": {"name": "chapters", "pos": [4, 5]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["it", "shows", "a", "sailor", "with", "a", "list", "of", "crossed-out", "ex-girlfriend", "'s", "names", "going", "down", "his", "arm", "."], "h": {"name": "sailor", "pos": [3, 4]}, "t": {"name": "list", "pos": [6, 7]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["tasheki", "was", "taking", "photographs", "at", "the", "encounter", "site", "when", "a", "bullet", "hit", "his", "jaw", "bone", "."], "h": {"name": "jaw", "pos": [13, 14]}, "t": {"name": "bone", "pos": [14, 15]}, "relation": "Component-Whole(e2,e1)"}
{"token": ["the", "child", "was", "carefully", "wrapped", "and", "bound", "into", "the", "cradle", "by", "means", "of", "a", "cord", "."], "h": {"name": "child", "pos": [1, 2]}, "t": {"name": "cradle", "pos": [9, 10]}, "relation": "Other"}
{"token": ["a", "misty", "ridge", "uprises", "from", "the", "surge", "."], "h": {"name": "ridge", "pos": [2, 3]}, "t": {"name": "surge", "pos": [6, 7]}, "relation": "Other"}
{"token": ["this", "is", "the", "sprawling", "complex", "that", "is", "peru", "'s", "largest", "producer", "of", "silver", "."], "h": {"name": "complex", "pos": [4, 5]}, "t": {"name": "producer", "pos": [10, 11]}, "relation": "Other"}
{"token": ["their", "composer", "has", "sunk", "into", "oblivion", "."], "h": {"name": "composer", "pos": [1, 2]}, "t": {"name": "oblivion", "pos": [5, 6]}, "relation": "Other"}
{"token": ["his", "intellectually", "engaging", "books", "and", "essays", "remain", "pertinent", "to", "illuminating", "contemporary", "history", "."], "h": {"name": "essays", "pos": [5, 6]}, "t": {"name": "history", "pos": [11, 12]}, "relation": "Other"}
{"token": ["this", "sweet", "dress", "is", "made", "with", "a", "blend", "of", "cotton", "and", "silk", ",", "and", "the", "crochet", "flower", "necklace", "is", "the", "perfect", "accessory", "."], "h": {"name": "dress", "pos": [2, 3]}, "t": {"name": "blend", "pos": [7, 8]}, "relation": "Other"}
{"token": ["the", "medicare", "buy-in", "plan", "ran", "into", "senate", "resistance", "."], "h": {"name": "plan", "pos": [3, 4]}, "t": {"name": "resistance", "pos": [7, 8]}, "relation": "Other"}
{"token": ["the", "following", "information", "appeared", "in", "the", "notes", "to", "consolidated", "financial", "statements", "of", "some", "corporate", "annual", "reports", "."], "h": {"name": "notes", "pos": [6, 7]}, "t": {"name": "statements", "pos": [10, 11]}, "relation": "Other"}
{"token": ["hiphop", "appropriates", "the", "symbols", "of", "a", "consumer", "society", ":", "oversized", "diamond", "colliers", "are", "worn", "."], "h": {"name": "diamond", "pos": [10, 11]}, "t": {"name": "colliers", "pos": [11, 12]}, "relation": "Other"}
{"token": ["kelvin", "bought", "a", "silver", "ring", "which", "he", "was", "so", "happy", "with", "and", "he", "keeps", "wearing", "it", "now", "even", "though", "its", "abit", "too", "big", "haha", "."], "h": {"name": "silver", "pos": [3, 4]}, "t": {"name": "ring", "pos": [4, 5]}, "relation": "Other"}
{"token": ["my", "major", "disagreement", "with", "lyons", "concerns", "the", "causal", "part", "of", "his", "theory", "."], "h": {"name": "disagreement", "pos": [2, 3]}, "t": {"name": "causal part", "pos": [7, 9]}, "relation": "Other"}
{"token": ["the", "infectious", "bacterial", "disease", "brucellosis", "has", "been", "found", "in", "a", "beef", "cow", "in", "eastern", "idaho", "."], "h": {"name": "brucellosis", "pos": [4, 5]}, "t": {"name": "cow", "pos": [11, 12]}, "relation": "Other"}
{"token": ["as", "the", "anglo-norman", "force", "sustained", "but", "little", "loss", "in", "this", "battle", ",", "their", "archers", "at", "the", "onset", "showered", "a", "hail", "of", "arrows", "upon", "the", "irish", "host", "who", "were", "not", "protected", "with", "mail", "armour", ",", "and", "shot", "them", "down", "in", "hundreds", "before", "they", "could", "get", "to", "close", "quarters", ";", "and", "then", "the", "charge", "of", "the", "heavy", "anglo-norman", "cavalry", "of", "mail-clad", "knights", ",", "completed", "the", "havoc", "and", "rout", "of", "the", "undisciplined", "gaelic", "hosts", "."], "h": {"name": "rout", "pos": [65, 66]}, "t": {"name": "hosts", "pos": [70, 71]}, "relation": "Other"}
{"token": ["unlike", "other", "fish", ",", "grunion", "come", "out", "of", "the", "water", "completely", "to", "lay", "their", "eggs", "in", "the", "wet", "sand", "of", "the", "beach", "."], "h": {"name": "sand", "pos": [18, 19]}, "t": {"name": "beach", "pos": [21, 22]}, "relation": "Other"}
{"token": ["the", "findings", "have", "been", "published", "in", "a", "special", "section", "of", "the", "academic", "journal", "archives", "of", "sexual", "behavior", "."], "h": {"name": "findings", "pos": [1, 2]}, "t": {"name": "section", "pos": [8, 9]}, "relation": "Other"}
{"token": ["flowers", "are", "reborn", "from", "the", "soil", "and", "the", "climate", "begins", "to", "warm", ",", "all", "set", "to", "a", "score", "improvised", "by", "an", "orchestra", "of", "birds", "."], "h": {"name": "score", "pos": [17, 18]}, "t": {"name": "orchestra", "pos": [21, 22]}, "relation": "Other"}
{"token": ["my", "parents", "bought", "her", "a", "silver", "necklace", "almost", "identical", "to", "the", "one", "pictured", "."], "h": {"name": "silver", "pos": [5, 6]}, "t": {"name": "necklace", "pos": [6, 7]}, "relation": "Other"}
{"token": ["paul", "friedrich", "guides", "us", "through", "a", "babel", "of", "words", ",", "and", "worlds", "of", "the", "imagination", "ranging", "from", "his", "translations", "from", "five", "languages", "(", "notably", "the", "russian", "of", "his", "literary", "studies", ")", "to", "the", "poetry", "of", "the", "indian", "mexico", "of", "his", "anthropological", "field", "work", "to", "america", "writ", "large", "--", "super", "highways", ",", "a", "vermont", "farm", ",", "father", "and", "child", "."], "h": {"name": "babel", "pos": [6, 7]}, "t": {"name": "words", "pos": [8, 9]}, "relation": "Other"}
{"token": ["that", "decision", "was", "also", "the", "subject", "of", "an", "unsuccessful", "legal", "challenge", "."], "h": {"name": "decision", "pos": [1, 2]}, "t": {"name": "legal challenge", "pos": [9, 11]}, "relation": "Other"}
{"token": ["the", "train", "ride", "from", "station", "to", "station", "is", "approximate", "30", "minutes", "."], "h": {"name": "train ride", "pos": [1, 3]}, "t": {"name": "station", "pos": [4, 5]}, "relation": "Other"}
{"token": ["a", "maze", "of", "interlocking", "jurisdictions", "and", "levels", "of", "government", "confronts", "average", "citizens", "in", "trying", "to", "solve", "even", "the", "simplest", "of", "problems", "."], "h": {"name": "maze", "pos": [1, 2]}, "t": {"name": "jurisdictions", "pos": [4, 5]}, "relation": "Other"}
{"token": ["warm", "weather", "is", "here", ",", "and", "with", "it", "comes", "the", "scourge", "of", "mosquitoes", "."], "h": {"name": "scourge", "pos": [10, 11]}, "t": {"name": "mosquitoes", "pos": [12, 13]}, "relation": "Other"}
{"token": ["the", "formation", "of", "struvite", "stones", "is", "associated", "with", "the", "presence", "of", "urea-splitting", "bacteria", ",", "most", "commonly", "proteus", "mirabilis", "(", "but", "also", "klebsiella", ",", "serratia", ",", "providencia", "species", ")", "."], "h": {"name": "formation", "pos": [1, 2]}, "t": {"name": "stones", "pos": [4, 5]}, "relation": "Other"}
{"token": ["our", "army", "was", "successfully", "engaged", "during", "the", "day", "with", "strong", "rearguards", "of", "all", "arms", "on", "the", "petit", "morin", "river", ",", "thereby", "materially", "assisting", "the", "progress", "of", "the", "french", "armies", "on", "our", "right", "and", "left", ",", "against", "whom", "the", "enemy", "was", "making", "his", "greatest", "efforts", "."], "h": {"name": "enemy", "pos": [38, 39]}, "t": {"name": "efforts", "pos": [43, 44]}, "relation": "Other"}
{"token": ["we", "always", "try", "to", "maintain", "the", "best", "environment", "for", "programmers", ",", "starting", "with", "good", "salary", "and", "conducive", "working", "environment", "."], "h": {"name": "environment", "pos": [7, 8]}, "t": {"name": "programmers", "pos": [9, 10]}, "relation": "Other"}
{"token": ["the", "cultivation", "consisted", "of", "plowing", "the", "crop", "with", "a", "double-shovel", "plow", "."], "h": {"name": "cultivation", "pos": [1, 2]}, "t": {"name": "plow", "pos": [10, 11]}, "relation": "Other"}
{"token": ["we", "have", "placed", "the", "candidates", "into", "roles", "."], "h": {"name": "candidates", "pos": [4, 5]}, "t": {"name": "roles", "pos": [6, 7]}, "relation": "Other"}
{"token": ["frequent", "agitations", "throw", "academic", "life", "into", "disarray", "."], "h": {"name": "life", "pos": [4, 5]}, "t": {"name": "disarray", "pos": [6, 7]}, "relation": "Other"}
{"token": ["thus", ",", "in", "simple", "words", ",", "a", "tendon", "attaches", "a", "muscle", "to", "a", "bone", "."], "h": {"name": "tendon", "pos": [7, 8]}, "t": {"name": "muscle", "pos": [10, 11]}, "relation": "Other"}
{"token": ["positions", "were", "denoted", "by", "black", "dots", "along", "the", "tracks", ",", "the", "adjacent", "numbers", "indicating", "the", "day", "of", "the", "month", "."], "h": {"name": "positions", "pos": [0, 1]}, "t": {"name": "black dots", "pos": [4, 6]}, "relation": "Other"}
{"token": ["two", "plane", "crash", "survivors", "have", "paid", "a", "special", "visit", "to", "the", "hutt", "hospital", "surgeon", "whose", "team", "helped", "to", "re-build", "their", "shattered", "faces", "eight", "years", "ago", "."], "h": {"name": "surgeon", "pos": [13, 14]}, "t": {"name": "team", "pos": [15, 16]}, "relation": "Other"}
{"token": ["tissue", "damage", "and", "electrode", "corrosion", "are", "both", "associatcd", "with", "high", "charge", "density", "stimulation", "."], "h": {"name": "electrode", "pos": [3, 4]}, "t": {"name": "corrosion", "pos": [4, 5]}, "relation": "Other"}
{"token": ["for", "christmas", ",", "daniel", "gave", "kelly", "a", "tiffany", "bracelet", ",", "and", "for", "valentine", "'s", "day", "he", "bought", "a", "diamond", "necklace", "."], "h": {"name": "diamond", "pos": [18, 19]}, "t": {"name": "necklace", "pos": [19, 20]}, "relation": "Other"}
{"token": ["the", "sensor", "was", "manufactured", "in", "a", "cost", "effective", "thin", "film", "process", "."], "h": {"name": "sensor", "pos": [1, 2]}, "t": {"name": "process", "pos": [10, 11]}, "relation": "Other"}
{"token": ["the", "putative", "left", ",", "we", "see", ",", "is", "just", "as", "eager", "as", "the", "nominal", "right", "to", "brand", "crime", "and", "violence", "with", "any", "hint", "of", "political", "motivation", "as", "terrorism", ",", "and", "therefore", "to", "remove", "it", "from", "the", "ordinary", "processes", "of", "criminal", "law", "and", "sanction", ",", "which", "are", "already", "quite", "draconian", "in", "these", "united", "states", ",", "and", "to", "animate", "parallel", "systems", "of", "harsher", "surveillance", "and", "punishment", "for", "the", "political", "compeers", "of", "such", "criminals", "."], "h": {"name": "compeers", "pos": [67, 68]}, "t": {"name": "criminals", "pos": [70, 71]}, "relation": "Other"}
{"token": ["this", "process", "passes", "on", "a", "health", "gene", "to", "the", "next", "generation", "."], "h": {"name": "gene", "pos": [6, 7]}, "t": {"name": "generation", "pos": [10, 11]}, "relation": "Other"}
{"token": ["the", "map", "to", "the", "left", "shows", "a", "snapshot", "of", "weather", "conditions", "in", "selected", "towns", "across", "italy", "."], "h": {"name": "weather", "pos": [9, 10]}, "t": {"name": "conditions", "pos": [10, 11]}, "relation": "Other"}
{"token": ["the", "retailers", "poured", "resources", "into", "promoting", "low-alcohol", "wine", "."], "h": {"name": "resources", "pos": [3, 4]}, "t": {"name": "wine", "pos": [7, 8]}, "relation": "Other"}
{"token": ["the", "final", "part", "of", "the", "court", "is", "completed", "by", "the", "chapel", ",", "begun", "by", "mary", "i", "in", "1554", "in", "memory", "of", "her", "father", "."], "h": {"name": "part", "pos": [2, 3]}, "t": {"name": "chapel", "pos": [10, 11]}, "relation": "Other"}
{"token": ["the", "hotel", "arose", "from", "the", "reconstruction", "of", "historical", "building", "."], "h": {"name": "hotel", "pos": [1, 2]}, "t": {"name": "reconstruction", "pos": [5, 6]}, "relation": "Other"}
{"token": ["this", "``", "all", "around", "immature", "nice", "guy", "''", "is", ",", "above", "all", ",", "a", "choreographer", ",", "having", "devised", "the", "moves", "to", "the", "film", "adaptation", "of", "hairspray", "."], "h": {"name": "choreographer", "pos": [14, 15]}, "t": {"name": "moves", "pos": [19, 20]}, "relation": "Other"}
{"token": ["the", "state", "has", "assembled", "a", "$", "230", "million", "incentive", "package", "to", "lure", "the", "project", ",", "which", "could", "mean", "as", "many", "as", "9000", "jobs", "."], "h": {"name": "state", "pos": [1, 2]}, "t": {"name": "package", "pos": [9, 10]}, "relation": "Other"}
{"token": ["the", "solution", "comprises", "the", "creation", "of", "a", "decentralized", "internet", "host", "name", "resolution", "system", "with", "flat", "hierarchy", "on", "the", "basis", "of", "metrized", "small", "world", "data", "structure", "."], "h": {"name": "solution", "pos": [1, 2]}, "t": {"name": "creation", "pos": [4, 5]}, "relation": "Other"}
{"token": ["with", "an", "innate", "desire", "to", "know", "and", "to", "do", ",", "mankind", "has", "progressed", "past", "placing", "a", "dead", "fish", "in", "every", "hill", "of", "corn", ",", "beans", "and", "squash", "."], "h": {"name": "hill", "pos": [20, 21]}, "t": {"name": "corn", "pos": [22, 23]}, "relation": "Other"}
{"token": ["a", "special", "meeting", "of", "the", "shareholders", "of", "lydia", "diamond", "was", "held", "on", "december", "23rd", ",", "2009", "and", "the", "sale", "was", "approved", "by", "the", "shareholders", "."], "h": {"name": "meeting", "pos": [2, 3]}, "t": {"name": "shareholders", "pos": [5, 6]}, "relation": "Other"}
{"token": ["the", "aim", "of", "this", "study", ",", "therefore", ",", "was", "to", "examine", "the", "embryo", "quality", "obtained", "from", "vitrified", ",", "warmed", "oocytes", "in", "a", "standard", "infertility", "population", "."], "h": {"name": "quality", "pos": [13, 14]}, "t": {"name": "oocytes", "pos": [19, 20]}, "relation": "Other"}
{"token": ["the", "level", "surface", "closest", "to", "the", "mss", ",", "known", "as", "the", "geoid", ",", "departs", "from", "an", "ellipsoid", "by", "about", "100", "m", "in", "each", "direction", "."], "h": {"name": "geoid", "pos": [11, 12]}, "t": {"name": "ellipsoid", "pos": [16, 17]}, "relation": "Other"}
{"token": ["in", "the", "2006", "campaign", ",", "the", "governor", "won", "the", "hispanic", "vote", "with", "appearances", "such", "as", "one", "at", "casa", "de", "maryland", "."], "h": {"name": "governor", "pos": [6, 7]}, "t": {"name": "appearances", "pos": [12, 13]}, "relation": "Other"}
{"token": ["the", "chair", "of", "the", "corporation", ",", "at", "the", "time", "of", "election", ",", "shall", "be", "either", "a", "former", "president", ",", "the", "retiring", "president", ",", "or", "a", "member", "(", "not", "emeritus", ")", "of", "the", "corporation", "."], "h": {"name": "chair", "pos": [1, 2]}, "t": {"name": "corporation", "pos": [4, 5]}, "relation": "Other"}
{"token": ["the", "hole", "was", "found", "in", "a", "piece", "of", "the", "package", "that", "was", "ripped", "off", "near", "its", "edge", "."], "h": {"name": "hole", "pos": [1, 2]}, "t": {"name": "piece", "pos": [6, 7]}, "relation": "Other"}
{"token": ["he", "also", "pointed", "out", "that", "on", "the", "sabbath", "the", "priests", "broke", "the", "commandment", "with", "priestly", "work", "."], "h": {"name": "priests", "pos": [9, 10]}, "t": {"name": "work", "pos": [15, 16]}, "relation": "Other"}
{"token": ["in", "a", "cloudless", ",", "new", "moon", "sky", ",", "a", "billion", "stars", "lit", "the", "heavens", "."], "h": {"name": "stars", "pos": [10, 11]}, "t": {"name": "heavens", "pos": [13, 14]}, "relation": "Other"}
{"token": ["the", "chronic", "myelogenous", "leukemia-specific", "p210", "protein", "is", "the", "product", "of", "the", "bcr/abl", "hybrid", "gene", "."], "h": {"name": "protein", "pos": [5, 6]}, "t": {"name": "gene", "pos": [13, 14]}, "relation": "Other"}
{"token": ["the", "purpose", "of", "the", "audit", "was", "to", "report", "on", "the", "financial", "statements", "."], "h": {"name": "audit", "pos": [4, 5]}, "t": {"name": "financial statements", "pos": [10, 12]}, "relation": "Other"}
{"token": ["unfortunately", ",", "my", "friend", "falls", "in", "love", "easily", "and", "breaks", "her", "heart", "all", "the", "time", "."], "h": {"name": "friend", "pos": [3, 4]}, "t": {"name": "love", "pos": [6, 7]}, "relation": "Other"}
{"token": ["after", "completing", "the", "resetting", "through", "the", "reset", "signal", ",", "the", "bit", "period", "transmitted", "by", "the", "master", "module", "30", "is", "received", "."], "h": {"name": "resetting", "pos": [3, 4]}, "t": {"name": "signal", "pos": [7, 8]}, "relation": "Other"}
{"token": ["in", "his", "poem", ",", "written", "by", "the", "riverside", "near", "the", "battle-ground", ",", "mr.", "emerson", "alluded", "to", "``", "yon", "stem", "headstone", "''", "."], "h": {"name": "poem", "pos": [2, 3]}, "t": {"name": "riverside", "pos": [7, 8]}, "relation": "Other"}
{"token": ["asparagus", "is", "a", "natural", "cure", "for", "cancer", "."], "h": {"name": "asparagus", "pos": [0, 1]}, "t": {"name": "cancer", "pos": [6, 7]}, "relation": "Other"}
{"token": ["the", "beer", "acts", "as", "a", "great", "hair", "of", "the", "dog", "."], "h": {"name": "beer", "pos": [1, 2]}, "t": {"name": "dog", "pos": [9, 10]}, "relation": "Other"}
{"token": ["the", "company", "has", "run", "into", "a", "financial", "problem", "over", "the", "last", "few", "years", "."], "h": {"name": "company", "pos": [1, 2]}, "t": {"name": "problem", "pos": [7, 8]}, "relation": "Other"}
{"token": ["a", "girl", "plays", "her", "violin", "on", "a", "pogo", "stick", "."], "h": {"name": "girl", "pos": [1, 2]}, "t": {"name": "stick", "pos": [8, 9]}, "relation": "Other"}
{"token": ["mado", "manages", "to", "escape", "and", "kidnaps", "the", "scientist", "'s", "niece", "."], "h": {"name": "scientist", "pos": [7, 8]}, "t": {"name": "niece", "pos": [9, 10]}, "relation": "Other"}
{"token": ["the", "screenplay", "by", "patterson", "mcnutt", "and", "arthur", "j.", "beckhard", "focuses", "on", "the", "adoption", "of", "a", "young", "orphan", "(", "shirley", "temple", ")", "by", "a", "wealthy", "bachelor", "(", "john", "boles", ")", "."], "h": {"name": "orphan", "pos": [16, 17]}, "t": {"name": "bachelor", "pos": [24, 25]}, "relation": "Other"}
{"token": ["our", "objective", "is", "to", "review", "advances", "in", "the", "molecular", "biology", "and", "pharmacogenomics", "of", "lung", "cancer", "and", "how", "they", "apply", "to", "personalizing", "medicine", "."], "h": {"name": "advances", "pos": [5, 6]}, "t": {"name": "biology", "pos": [9, 10]}, "relation": "Other"}
{"token": ["the", "crew", "assisted", "with", "the", "investigation", "and", "was", "in", "service", "for", "around", "an", "hour", "."], "h": {"name": "crew", "pos": [1, 2]}, "t": {"name": "investigation", "pos": [5, 6]}, "relation": "Other"}
{"token": ["this", "data", "has", "been", "concerning", "primarily", "assembly", "operations", "."], "h": {"name": "data", "pos": [1, 2]}, "t": {"name": "operations", "pos": [7, 8]}, "relation": "Other"}
{"token": ["interior", "chief", "adds", "hurdles", "for", "drilling", "on", "public", "lands", "."], "h": {"name": "hurdles", "pos": [3, 4]}, "t": {"name": "drilling", "pos": [5, 6]}, "relation": "Other"}
{"token": ["it", "is", "the", "most", "efficient", "and", "compact", "form", "of", "insulation", "in", "a", "carafe", ",", "and", "it", "'s", "unbreakable", "."], "h": {"name": "insulation", "pos": [9, 10]}, "t": {"name": "carafe", "pos": [12, 13]}, "relation": "Other"}
{"token": ["although", "big", "city", "marathons", "offer", "great", "crowd", "support", "and", "a", "large", "camaraderie", "of", "runners", ",", "running", "in", "a", "big", "city", "marathon", "is", "not", "for", "everyone", "."], "h": {"name": "camaraderie", "pos": [11, 12]}, "t": {"name": "runners", "pos": [13, 14]}, "relation": "Other"}
{"token": ["in", "48", "%", "of", "the", "divorces", ",", "the", "kinship", "systems", "of", "grandparents", "expanded", "with", "divorce", "through", "one", "or", "more", "of", "the", "following", "four", "processes", "."], "h": {"name": "kinship systems", "pos": [8, 10]}, "t": {"name": "grandparents", "pos": [11, 12]}, "relation": "Other"}
{"token": ["the", "world", "is", "experiencing", "an", "unprecedented", "glut", "of", "savings", ",", "driving", "down", "real", "interest", "rates", "."], "h": {"name": "glut", "pos": [6, 7]}, "t": {"name": "savings", "pos": [8, 9]}, "relation": "Other"}
{"token": ["the", "case", "centers", "on", "a", "tree", "at", "a", "high", "school", "that", "was", "a", "meeting", "place", "for", "white", "students", "."], "h": {"name": "case", "pos": [1, 2]}, "t": {"name": "tree", "pos": [5, 6]}, "relation": "Other"}
{"token": ["still", "filled", "with", "rage", "after", "the", "fight", "with", "the", "darkside", ",", "i", "rush", "at", "ansem", ",", "light", "and", "dark", "energy", "overflowing", "from", "me", "."], "h": {"name": "rage", "pos": [3, 4]}, "t": {"name": "fight", "pos": [6, 7]}, "relation": "Other"}
{"token": ["sometimes", "the", "best", "blogging", "is", "going", "on", "well", "away", "from", "the", "most", "visible", "places", "."], "h": {"name": "blogging", "pos": [3, 4]}, "t": {"name": "places", "pos": [13, 14]}, "relation": "Other"}
{"token": ["the", "navy", "searched", "the", "vessel", "with", "the", "crew", "on", "board", "."], "h": {"name": "navy", "pos": [1, 2]}, "t": {"name": "crew", "pos": [7, 8]}, "relation": "Other"}
{"token": ["he", "sealed", "the", "cut", "after", "making", "a", "cut", "of", "the", "stem", "with", "a", "clean", ",", "sharp", "blade", "."], "h": {"name": "cut", "pos": [7, 8]}, "t": {"name": "blade", "pos": [16, 17]}, "relation": "Other"}
{"token": ["the", "workers", "locked", "themselves", "in", "the", "upstairs", "office", "and", "left", "the", "shocked", "managers", "downstairs", "in", "the", "shop", "."], "h": {"name": "managers", "pos": [12, 13]}, "t": {"name": "shop", "pos": [16, 17]}, "relation": "Other"}
{"token": ["the", "water", "information", "program", "is", "a", "public", "information", "program", "sponsored", "by", "the", "water", "districts", ",", "organizations", "and", "agencies", "in", "the", "san", "juan", "and", "dolores", "watersheds", "of", "southwestern", "colorado", "."], "h": {"name": "program", "pos": [8, 9]}, "t": {"name": "districts", "pos": [13, 14]}, "relation": "Other"}
{"token": ["scientists", "recently", "succeeded", "in", "wiping", "out", "a", "nasty", "memory", "from", "the", "mind", "of", "a", "genetically-engineered", "mouse", "."], "h": {"name": "memory", "pos": [8, 9]}, "t": {"name": "mouse", "pos": [15, 16]}, "relation": "Other"}
{"token": ["while", "many", "farmers", "did", "their", "plowing", "the", "land", "with", "a", "single", "furrow", "plow", ",", "some", "large-scale", "farmers", "began", "to", "use", "a", "multiple", "share", "or", "bukker", "plow", "."], "h": {"name": "plowing", "pos": [5, 6]}, "t": {"name": "plow", "pos": [12, 13]}, "relation": "Other"}
{"token": ["letters", "were", "be", "submitted", "by", "5", "p.m.", "on", "the", "wednesday", "before", "publication", "by", "mail", "."], "h": {"name": "publication", "pos": [11, 12]}, "t": {"name": "mail", "pos": [13, 14]}, "relation": "Other"}
{"token": ["the", "outer", "segment", "is", "comprised", "of", "a", "membrane", "which", "is", "folded", "into", "several", "layers", "of", "disks", "."], "h": {"name": "segment", "pos": [2, 3]}, "t": {"name": "membrane", "pos": [7, 8]}, "relation": "Other"}
{"token": ["since", "no", "computers", "were", "then", "available", "to", "him", ",", "he", "hand-simulated", "the", "boxes", "algorithm", ",", "using", "a", "device", "made", "from", "an", "assembly", "of", "matchboxes", "."], "h": {"name": "device", "pos": [17, 18]}, "t": {"name": "matchboxes", "pos": [23, 24]}, "relation": "Other"}
{"token": ["compared", "to", "running", "barefoot", ",", "running", "in", "conventional", "running", "shoes", "increases", "stress", "on", "the", "knee", "joints", "up", "to", "38", "%", "."], "h": {"name": "running", "pos": [5, 6]}, "t": {"name": "shoes", "pos": [9, 10]}, "relation": "Other"}
{"token": ["the", "postcard", "took", "the", "reader", "into", "the", "author", "'s", "past", "."], "h": {"name": "reader", "pos": [4, 5]}, "t": {"name": "past", "pos": [9, 10]}, "relation": "Other"}
{"token": ["these", "emotionally", "wrenching", "experiences", "encouraged", "the", "volunteers", "to", "seek", "the", "comradeship", "of", "fellow", "veterans", "."], "h": {"name": "comradeship", "pos": [10, 11]}, "t": {"name": "veterans", "pos": [13, 14]}, "relation": "Other"}
{"token": ["clay", "county", ",", "a", "small", "but", "thriving", "colony", "grows", "in", "the", "seepage", "spring", "which", "is", "the", "source", "of", "the", "creek", "."], "h": {"name": "spring", "pos": [12, 13]}, "t": {"name": "creek", "pos": [19, 20]}, "relation": "Other"}
{"token": ["new", "portable", "electronic", "devices", "are", "running", "into", "temperature", "sensitivity", "issues", "."], "h": {"name": "devices", "pos": [3, 4]}, "t": {"name": "issues", "pos": [9, 10]}, "relation": "Other"}
{"token": ["while", "melting", "butter", "on", "the", "stove", "is", "the", "preferred", "method", ",", "because", "it", "gives", "you", "more", "control", "over", "the", "process", ",", "you", "can", "also", "melt", "butter", "in", "a", "microwave", "."], "h": {"name": "stove", "pos": [5, 6]}, "t": {"name": "method", "pos": [9, 10]}, "relation": "Other"}
{"token": ["physiotherapy", "was", "focused", "on", "admission", "avoidance", ",", "prevention", "of", "deterioration", "after", "admission", "and", "facilitating", "early", "discharge", "."], "h": {"name": "physiotherapy", "pos": [0, 1]}, "t": {"name": "admission avoidance", "pos": [4, 6]}, "relation": "Other"}
{"token": ["moreover", ",", "the", "knightly", "ethic", "was", "based", "on", "a", "sense", "of", "honour", "and", "reflected", "the", "ideal", "of", "a", "comradeship", "of", "arms", "."], "h": {"name": "comradeship", "pos": [18, 19]}, "t": {"name": "arms", "pos": [20, 21]}, "relation": "Other"}
{"token": ["some", "sections", "have", "been", "denoted", "with", "an", "asterisk", "."], "h": {"name": "sections", "pos": [1, 2]}, "t": {"name": "asterisk", "pos": [7, 8]}, "relation": "Other"}
{"token": ["the", "corpse", "of", "a", "murderer", "was", "dangling", "from", "the", "noose", ",", "twisting", "in", "the", "wind", "."], "h": {"name": "corpse", "pos": [1, 2]}, "t": {"name": "noose", "pos": [9, 10]}, "relation": "Other"}
{"token": ["he", "takes", "words", "into", "action", "."], "h": {"name": "words", "pos": [2, 3]}, "t": {"name": "action", "pos": [4, 5]}, "relation": "Other"}
{"token": ["the", "martyrs", "conquered", "the", "fears", "associated", "with", "persecution", "and", "always", "remained", "loyal", "to", "the", "lord", "."], "h": {"name": "martyrs", "pos": [1, 2]}, "t": {"name": "persecution", "pos": [7, 8]}, "relation": "Other"}
{"token": ["secretary", "tim", "geithner", "came", "along", "with", "a", "fistful", "of", "taxpayer", "dollars", "."], "h": {"name": "fistful", "pos": [7, 8]}, "t": {"name": "dollars", "pos": [10, 11]}, "relation": "Other"}
{"token": ["this", "is", "the", "site", "deep", "inside", "the", "earth", "where", "fault", "movement", "begin", "."], "h": {"name": "site", "pos": [3, 4]}, "t": {"name": "earth", "pos": [7, 8]}, "relation": "Other"}
{"token": ["thus", ",", "we", "have", "set-up", ",", "early", "on", ",", "a", "familiar", "literary", "dynamic", "--", "-", "two", "compeers", "of", "different", "ages", "thrown", "together", ":", "huck", "finn", "and", "nigger", "jim", ",", "holden", "caufield", "and", "sister", "phoebe", ",", "hell", "--", "-", "maybe", "even", "dmitri", "karamazov", "and", "alyosha", "(", "or", ",", "if", "we", "stretch", "it", "far", "enough", ",", "falstaff", "and", "prince", "hal", ")", "."], "h": {"name": "compeers", "pos": [16, 17]}, "t": {"name": "ages", "pos": [19, 20]}, "relation": "Other"}
{"token": ["the", "most", "significant", "is", "a", "well-preserved", "black", "and", "white", "mosaic", "for", "which", "the", "authority", "has", "given", "a", "provisional", "translation", "."], "h": {"name": "authority", "pos": [13, 14]}, "t": {"name": "translation", "pos": [18, 19]}, "relation": "Other"}
{"token": ["clinicians", "entered", "the", "patients", "into", "randomised", "controlled", "trials", "."], "h": {"name": "patients", "pos": [3, 4]}, "t": {"name": "trials", "pos": [7, 8]}, "relation": "Other"}
{"token": ["the", "interrogation", "covers", "von", "neurath", "'s", "activities", "during", "the", "years", "1932", "to", "1938", "and", "hitler", "'s", "policy", "of", "aggression", "during", "the", "late", "1930s", "."], "h": {"name": "interrogation", "pos": [1, 2]}, "t": {"name": "activities", "pos": [6, 7]}, "relation": "Other"}
{"token": ["the", "star", "is", "landing", "into", "controversies", "because", "of", "thoughtless", "statements", "."], "h": {"name": "star", "pos": [1, 2]}, "t": {"name": "controversies", "pos": [5, 6]}, "relation": "Other"}
{"token": ["our", "political", "prisoner", "is", "falling", "into", "oblivion", "."], "h": {"name": "prisoner", "pos": [2, 3]}, "t": {"name": "oblivion", "pos": [6, 7]}, "relation": "Other"}
{"token": ["the", "vikings", "had", "become", "assimilated", "into", "a", "peaceable", "society", ",", "and", "monasteries", "at", "chertsey", "and", "abingdon", "were", "founded", "by", "the", "river", "."], "h": {"name": "monasteries", "pos": [11, 12]}, "t": {"name": "river", "pos": [20, 21]}, "relation": "Other"}
{"token": ["for", "years", "now", "my", "daughter", "has", "put", "up", "with", "verbal", "harssement", "from", "a", "girl", "."], "h": {"name": "daughter", "pos": [4, 5]}, "t": {"name": "harssement", "pos": [10, 11]}, "relation": "Other"}
{"token": ["the", "longest", "serving", "spacecraft", "goes", "into", "retirement", "."], "h": {"name": "spacecraft", "pos": [3, 4]}, "t": {"name": "retirement", "pos": [6, 7]}, "relation": "Other"}
{"token": ["the", "baby", "is", "falling", "into", "a", "sleep", "."], "h": {"name": "baby", "pos": [1, 2]}, "t": {"name": "sleep", "pos": [6, 7]}, "relation": "Other"}
{"token": ["although", "a", "commercial", "enigma", ",", "modified", "by", "polish", "cryptanalysts", "to", "match", "a", "military", "enigma", ",", "used", "phone", "plugs", ",", "the", "plugs", "in", "the", "plugboard", "of", "the", "actual", "enigma", "had", "two", "prongs", ",", "but", "they", "still", "functioned", "electrically", "in", "the", "same", "way", "as", "phone", "plugs", "."], "h": {"name": "plugs", "pos": [20, 21]}, "t": {"name": "plugboard", "pos": [23, 24]}, "relation": "Other"}
{"token": ["it", "is", "marked", "by", "a", "sign", "indicating", "the", "length", "of", "the", "pause", "."], "h": {"name": "sign", "pos": [5, 6]}, "t": {"name": "length", "pos": [8, 9]}, "relation": "Other"}
{"token": ["a", "professor", "portrays", "his", "students", "'", "term", "paper", "as", "his", "own", "."], "h": {"name": "professor", "pos": [1, 2]}, "t": {"name": "paper", "pos": [7, 8]}, "relation": "Other"}
{"token": ["the", "team", ",", "has", "carefully", "devised", "an", "amended", "research", "methodology", ";", "it", "has", "also", "since", "found", "that", "further", "compromises", "will", "have", "to", "be", "made", "."], "h": {"name": "team", "pos": [1, 2]}, "t": {"name": "methodology", "pos": [9, 10]}, "relation": "Other"}
{"token": ["the", "team", "drafted", "a", "great", "player", "in", "2002", "when", "they", "chose", "julius", "peppers", "second", "overall", "."], "h": {"name": "team", "pos": [1, 2]}, "t": {"name": "player", "pos": [5, 6]}, "relation": "Other"}
{"token": ["but", "over", "time", ",", "indigenous", "students", "have", "been", "moving", "into", "more", "specialised", "and", "skill-intensive", "components", "within", "disciplines", "."], "h": {"name": "students", "pos": [5, 6]}, "t": {"name": "components", "pos": [14, 15]}, "relation": "Other"}
{"token": ["a", "month", "of", "snowy", "sundays", "in", "january", "had", "an", "adverse", "impact", "on", "prospect", "'s", "finances", "."], "h": {"name": "month", "pos": [1, 2]}, "t": {"name": "sundays", "pos": [4, 5]}, "relation": "Other"}
{"token": ["at", "necropsy", "a", "heavy", "infestation", "of", "haematopinus", "lice", "was", "present", ",", "along", "with", "a", "polyserositis", "affecting", "the", "right", "hock", ",", "left", "elbow", "and", "peritoneum", "."], "h": {"name": "infestation", "pos": [4, 5]}, "t": {"name": "lice", "pos": [7, 8]}, "relation": "Other"}
{"token": ["three", "shark", "attacks", "in", "24", "hours", "threw", "local", "people", "into", "panic", "."], "h": {"name": "people", "pos": [8, 9]}, "t": {"name": "panic", "pos": [10, 11]}, "relation": "Other"}
{"token": ["we", "share", "a", "kinship", "of", "ideals", "with", "every", "man", "and", "woman", "on", "earth", "who", "struggles", "for", "their", "god-given", "rights", "."], "h": {"name": "kinship", "pos": [3, 4]}, "t": {"name": "ideals", "pos": [5, 6]}, "relation": "Other"}
{"token": ["case", "studies", ",", "some", "of", "them", "book", "long", ",", "have", "made", "a", "notable", "contribution", "to", "scientific", "medicine", "."], "h": {"name": "studies", "pos": [1, 2]}, "t": {"name": "medicine", "pos": [16, 17]}, "relation": "Other"}
{"token": ["he", "puts", "creativity", "into", "use", "."], "h": {"name": "creativity", "pos": [2, 3]}, "t": {"name": "use", "pos": [4, 5]}, "relation": "Other"}
{"token": ["in", "1905", "the", "press", "reported", "extensively", "and", "vividly", "on", "the", "disorders", "in", "the", "cities", "and", "countryside", ",", "the", "clamor", "for", "basic", "reform", ",", "the", "political", "discussions", "."], "h": {"name": "press", "pos": [3, 4]}, "t": {"name": "disorders", "pos": [10, 11]}, "relation": "Other"}
{"token": ["quotation", "is", "used", "to", "indicate", "the", "words", "of", "another", "speaker", "or", "writer", "."], "h": {"name": "quotation", "pos": [0, 1]}, "t": {"name": "words", "pos": [6, 7]}, "relation": "Other"}
{"token": ["the", "size", "of", "the", "thumbnails", "is", "changed", "with", "a", "sliding", "bar", "on", "the", "upper", "right", "corner", "of", "the", "window", "."], "h": {"name": "bar", "pos": [10, 11]}, "t": {"name": "corner", "pos": [15, 16]}, "relation": "Other"}
{"token": ["they", "evaluated", "maximum", "number", "of", "breached", "assemblies", "and", "exposed", "fuel", "area", "for", "a", "proposed", "shipment", "in", "a", "cask", "with", "a", "test", "leakage", "rate", "."], "h": {"name": "shipment", "pos": [14, 15]}, "t": {"name": "cask", "pos": [17, 18]}, "relation": "Other"}
{"token": ["dee", "'s", "end", "caps", "make", "pier", "piling", "sidewall", "forms", "function", "more", "efficiently", "by", "locking", "the", "forms", "together", "so", "they", "stay", "in", "place", "."], "h": {"name": "pier", "pos": [5, 6]}, "t": {"name": "forms", "pos": [8, 9]}, "relation": "Other"}
{"token": ["the", "frog", "is", "the", "environmental", "indicator", "of", "the", "land", ",", "but", "university", "of", "queensland", "researchers", "reckon", "when", "it", "comes", "to", "the", "sea", ",", "we", "should", "look", "to", "the", "turtle", "."], "h": {"name": "indicator", "pos": [5, 6]}, "t": {"name": "land", "pos": [8, 9]}, "relation": "Other"}
{"token": ["the", "catastrophe", "is", "narrated", "through", "metaphor", "."], "h": {"name": "catastrophe", "pos": [1, 2]}, "t": {"name": "metaphor", "pos": [5, 6]}, "relation": "Other"}
{"token": ["lesser", "black-backed", "gulls", "were", "capable", "of", "producing", ",", "on", "average", ",", "almost", "three", "times", "the", "normal", "clutch", "of", "three", "eggs", "."], "h": {"name": "clutch", "pos": [16, 17]}, "t": {"name": "eggs", "pos": [19, 20]}, "relation": "Other"}
{"token": ["a", "channel", "4", "drama", "set", "in", "a", "psychiatric", "unit", "has", "been", "criticised", "by", "a", "tv", "watchdog", "for", "its", "``", "offensive", "''", "title", "and", "for", "reinforcing", "prejudice", "against", "people", "with", "mental", "health", "problems", "."], "h": {"name": "drama", "pos": [3, 4]}, "t": {"name": "watchdog", "pos": [15, 16]}, "relation": "Other"}
{"token": ["itunes", ",", "however", ",", "is", "a", "different", "kettle", "of", "drums", "."], "h": {"name": "kettle", "pos": [7, 8]}, "t": {"name": "drums", "pos": [9, 10]}, "relation": "Other"}
{"token": ["wealth", "is", "nominally", "a", "superfluity", "of", "goods", "required", "for", "subsistence", ",", "but", "the", "character", "of", "these", "goods", "varies", "with", "the", "use", "of", "wealth", "."], "h": {"name": "superfluity", "pos": [4, 5]}, "t": {"name": "goods", "pos": [6, 7]}, "relation": "Other"}
{"token": ["his", "wife", "is", "a", "participant", "in", "the", "blogosphere", ",", "and", "he", "does", "n't", "want", "to", "ruin", "the", "surprise", "for", "her", "."], "h": {"name": "wife", "pos": [1, 2]}, "t": {"name": "blogosphere", "pos": [7, 8]}, "relation": "Other"}
{"token": ["the", "scan", "started", "at", "the", "rest", "potential", "toward", "the", "positive", "direction", "."], "h": {"name": "scan", "pos": [1, 2]}, "t": {"name": "potential", "pos": [6, 7]}, "relation": "Other"}
{"token": ["the", "eu", "inserted", "experts", "into", "the", "national", "defence", "."], "h": {"name": "experts", "pos": [3, 4]}, "t": {"name": "defence", "pos": [7, 8]}, "relation": "Other"}
{"token": ["the", "shop", "machined", "the", "part", "with", "a", "1.25", "inch", "diameter", "."], "h": {"name": "shop", "pos": [1, 2]}, "t": {"name": "diameter", "pos": [9, 10]}, "relation": "Other"}
{"token": ["by", "chance", ",", "toe", "discovers", "a", "rainbow-coloured", "rock", "with", "hidden", "power", "to", "grant", "wishes", "."], "h": {"name": "rock", "pos": [7, 8]}, "t": {"name": "power", "pos": [10, 11]}, "relation": "Other"}
{"token": ["the", "turbines", "are", "making", "an", "electricity", "system", "with", "low", "carbon", "emissions", "even", "greener", "-", "already", ",", "in", "seattle", ",", "more", "than", "90", "percent", "of", "the", "power", "comes", "from", "renewable", "sources", "."], "h": {"name": "system", "pos": [6, 7]}, "t": {"name": "carbon", "pos": [9, 10]}, "relation": "Other"}
{"token": ["in", "the", "framework", "of", "a", "holistic", "approach", "to", "student", "development", "and", "support", ",", "student", "services", "are", "also", "the", "contact", "point", "for", "other", "functions", "such", "as", "student", "out-of-class", "involvement", ",", "student", "participation", "in", "the", "university", "governance", "as", "well", "as", "in", "the", "student", "union", "."], "h": {"name": "student", "pos": [29, 30]}, "t": {"name": "governance", "pos": [34, 35]}, "relation": "Other"}
{"token": ["the", "market", "is", "rooted", "in", "the", "structure", "of", "zanzibar", "household", "economies", ",", "and", "therefore", "proides", "an", "indispensible", "function", "in", "daily", "life", "."], "h": {"name": "market", "pos": [1, 2]}, "t": {"name": "structure", "pos": [6, 7]}, "relation": "Other"}
{"token": ["the", "complete", "examination", "process", "has", "been", "carried", "out", "according", "to", "the", "pertinent", "directives", "."], "h": {"name": "examination process", "pos": [2, 4]}, "t": {"name": "directives", "pos": [12, 13]}, "relation": "Other"}
{"token": ["the", "signoff", "queue", "is", "used", "for", "reports", "that", "the", "user", "has", "not", "seen", "before", "."], "h": {"name": "queue", "pos": [2, 3]}, "t": {"name": "reports", "pos": [6, 7]}, "relation": "Other"}
{"token": ["parties", "have", "inherited", "entitlements", "to", "property", "."], "h": {"name": "entitlements", "pos": [3, 4]}, "t": {"name": "property", "pos": [5, 6]}, "relation": "Other"}
{"token": ["the", "libel", "claimant", "has", "proved", "that", "the", "statement", "was", "defamatory", "."], "h": {"name": "claimant", "pos": [2, 3]}, "t": {"name": "statement", "pos": [7, 8]}, "relation": "Other"}
{"token": ["by", "charging", "odd", "amounts", "like", "49", "or", "99", "cents", ",", "the", "cashier", "very", "probably", "opened", "the", "till", "."], "h": {"name": "cashier", "pos": [11, 12]}, "t": {"name": "till", "pos": [16, 17]}, "relation": "Other"}
{"token": ["next", "to", "moll", "lived", "the", "celebrated", "actress", "nancy", "dawson", ",", "a", "former", "harlot", "made", "famous", "by", "her", "lascivious", "hornpipe", "in", "gay", "'s", "phenomenally", "popular", "the", "beggar'ss", "opera", "."], "h": {"name": "harlot", "pos": [12, 13]}, "t": {"name": "hornpipe", "pos": [18, 19]}, "relation": "Other"}
{"token": ["but", "we", "are", "not", "at", "all", "complacent", "and", "we", "are", "well", "aware", "of", "the", "challenges", "around", "recruitment", "."], "h": {"name": "challenges", "pos": [14, 15]}, "t": {"name": "recruitment", "pos": [16, 17]}, "relation": "Other"}
{"token": ["the", "influential", "towns", "of", "brownville", "and", "fontanelle", "were", "founded", "that", "year", "as", "well", "."], "h": {"name": "towns", "pos": [2, 3]}, "t": {"name": "year", "pos": [10, 11]}, "relation": "Other"}
{"token": ["a", "chance", "discovery", "made", "by", "a", "road", "worker", "in", "1956", "uncovered", "a", "rich", "find", "of", "360", "million", "year", "old", "fish", "fossils", "."], "h": {"name": "discovery", "pos": [2, 3]}, "t": {"name": "worker", "pos": [7, 8]}, "relation": "Other"}
{"token": ["towne", "bank", ",", "which", "has", "only", "one", "retail", "location", ",", "was", "one", "of", "those", "opportunistic", "upstarts", ",", "a", "bank", "built", "on", "a", "bubble", "."], "h": {"name": "bank", "pos": [18, 19]}, "t": {"name": "bubble", "pos": [22, 23]}, "relation": "Other"}
{"token": ["the", "helix", "runs", "away", "from", "the", "nucleotide", "."], "h": {"name": "helix", "pos": [1, 2]}, "t": {"name": "nucleotide", "pos": [6, 7]}, "relation": "Other"}
{"token": ["the", "study", "found", "that", "people", "who", "took", "the", "combination", "of", "cholinesterase", "inhibitors", "(", "aricept", ",", "razadyne", ",", "or", "exelon", ")", "and", "memantine", ",", "showed", "a", "significantly", "slower", "rate", "of", "cognitve", "decline", "than", "those", "who", "took", "only", "a", "cholinesterase", "inhibitor", "or", "no", "drug", "."], "h": {"name": "combination", "pos": [8, 9]}, "t": {"name": "inhibitors", "pos": [11, 12]}, "relation": "Other"}
{"token": ["antelope", "horns", "grows", "from", "the", "southern", "california", "desert", "mountains", "across", "to", "arkansas", "and", "up", "into", "kansas", "."], "h": {"name": "horns", "pos": [1, 2]}, "t": {"name": "mountains", "pos": [8, 9]}, "relation": "Other"}
{"token": ["he", "sent", "the", "revellers", "into", "party", "mode", "."], "h": {"name": "revellers", "pos": [3, 4]}, "t": {"name": "party mode", "pos": [5, 7]}, "relation": "Other"}
{"token": ["the", "us", "regulatory", "agency", "was", "investigating", "allegations", "that", "at", "least", "one", "plane", "was", "considered", "unsafe", "to", "fly", "."], "h": {"name": "agency", "pos": [3, 4]}, "t": {"name": "allegations", "pos": [6, 7]}, "relation": "Other"}
{"token": ["the", "resulting", "biofilm", "grows", "from", "the", "inside", "out", "rather", "than", "planktonic", "organisms", "attaching", "and", "promoting", "the", "growth", "from", "the", "outside", "."], "h": {"name": "biofilm", "pos": [2, 3]}, "t": {"name": "inside", "pos": [6, 7]}, "relation": "Other"}
{"token": ["it", "also", "gives", "some", "of", "the", "history", "behind", "the", "formation", "of", "wolf", "'s", "dragoons", "and", "some", "of", "the", "battles", "and", "campaigns", "the", "mercenary", "regiment", "has", "fought", "."], "h": {"name": "formation", "pos": [9, 10]}, "t": {"name": "dragoons", "pos": [13, 14]}, "relation": "Other"}
{"token": ["the", "trapped", "mass", "takes", "part", "in", "the", "movement", "and", "therefore", "contributes", "to", "the", "inertia", "of", "the", "system", "."], "h": {"name": "mass", "pos": [2, 3]}, "t": {"name": "movement", "pos": [7, 8]}, "relation": "Other"}
{"token": ["i", "'ve", "been", "a", "closet", "writer", "for", "a", "long", "time", "."], "h": {"name": "closet", "pos": [4, 5]}, "t": {"name": "writer", "pos": [5, 6]}, "relation": "Other"}
{"token": ["fire", "was", "venting", "from", "the", "first", "floor", "of", "a", "multi-storeyed", "building", "in", "south", "mumbai", "'s", "nariman", "point", "area", "on", "monday", "."], "h": {"name": "fire", "pos": [0, 1]}, "t": {"name": "building", "pos": [10, 11]}, "relation": "Other"}
{"token": ["the", "charcuterie", "was", "well", "portioned", "offering", "lots", "of", "variety", ",", "well", "textured", ",", "with", "a", "nice", "accompaniment", "of", "condiments", "and", "composed", "salads", "."], "h": {"name": "accompaniment", "pos": [16, 17]}, "t": {"name": "condiments", "pos": [18, 19]}, "relation": "Other"}
{"token": ["the", "protesters", "carefully", "chose", "a", "private", "road", "in", "order", "not", "to", "cause", "inconvenience", "to", "the", "public", "."], "h": {"name": "protesters", "pos": [1, 2]}, "t": {"name": "road", "pos": [6, 7]}, "relation": "Other"}
{"token": ["the", "gist", "of", "trespass", "is", "direct", "physical", "interference", "with", "another", "'s", "exclusive", "possession", "of", "land", "."], "h": {"name": "trespass", "pos": [3, 4]}, "t": {"name": "interference", "pos": [7, 8]}, "relation": "Other"}
{"token": ["specialists", "from", "various", "fields", "pertinent", "to", "the", "theme", "took", "part", "and", "presented", "specific", "aspects", "of", "the", "topic", "."], "h": {"name": "fields", "pos": [3, 4]}, "t": {"name": "theme", "pos": [7, 8]}, "relation": "Other"}
{"token": ["the", "container", "encloses", "a", "one-cup", "capacity", ",", "plus", "with", "the", "bonus", "lid", "it", "provides", "convenient", "storage", "of", "chopped", "foods", "."], "h": {"name": "container", "pos": [1, 2]}, "t": {"name": "capacity", "pos": [5, 6]}, "relation": "Other"}
{"token": ["early", "in", "the", "song", ",", "the", "background", "singers", "repeat", "the", "christian", "and", "jewish", "word", "of", "praise", ",", "``", "hallelujah", "''", "."], "h": {"name": "song", "pos": [3, 4]}, "t": {"name": "singers", "pos": [7, 8]}, "relation": "Other"}
{"token": ["the", "180", "cm", "thick", "concrete", "shield", "starts", "at", "the", "radius", "of", "600", "cm", "."], "h": {"name": "shield", "pos": [5, 6]}, "t": {"name": "radius", "pos": [9, 10]}, "relation": "Other"}
{"token": ["it", "has", "changed", "the", "way", "i", "think", "about", "the", "formation", "of", "parties", "and", "party", "systems", "."], "h": {"name": "formation", "pos": [9, 10]}, "t": {"name": "parties", "pos": [11, 12]}, "relation": "Other"}
{"token": ["the", "fire", "started", "at", "the", "southeastern", "end", "of", "the", "circus", "maximus", "in", "shops", "selling", "flammable", "goods", "."], "h": {"name": "fire", "pos": [1, 2]}, "t": {"name": "southeastern end", "pos": [5, 7]}, "relation": "Other"}
{"token": ["we", "assessed", "the", "efficacy", "of", "a", "recombinant", "vaccine", "consisting", "of", "outer-surface", "protein", "a", "(", "ospa", ")", "without", "adjuvant", "in", "subjects", "at", "risk", "for", "lyme", "disease", "."], "h": {"name": "vaccine", "pos": [7, 8]}, "t": {"name": "outer-surface protein a", "pos": [10, 13]}, "relation": "Other"}
{"token": ["other", "items", "advertised", "on", "tv", "simply", "melt", "the", "chocolate", "on", "the", "stovetop", "."], "h": {"name": "items", "pos": [1, 2]}, "t": {"name": "stovetop", "pos": [11, 12]}, "relation": "Other"}
{"token": ["the", "sense", "was", "extended", "from", "the", "language", "to", "the", "people", "who", "spoke", "it", "."], "h": {"name": "sense", "pos": [1, 2]}, "t": {"name": "language", "pos": [6, 7]}, "relation": "Other"}
{"token": ["the", "farmer", "produced", "a", "surplus", "despite", "the", "country", "'s", "worst", "drought", "in", "30", "years", "by", "using", "conservation", "farming", "techniques", "."], "h": {"name": "farmer", "pos": [1, 2]}, "t": {"name": "surplus", "pos": [4, 5]}, "relation": "Other"}
{"token": ["it", "is", "an", "eden", "invented", "by", "the", "poet", "'s", "imagination", "into", "which", "external", "values", "are", "not", "disregarded", ",", "but", "have", "been", "absorbed", "and", "re-invented", "."], "h": {"name": "poet", "pos": [7, 8]}, "t": {"name": "imagination", "pos": [9, 10]}, "relation": "Other"}
{"token": ["treasure", "island", "is", "a", "gripping", "pirate", "story", ",", "fast-paced", "by", "the", "standards", "of", "its", "time", "and", "full", "of", "action", "."], "h": {"name": "story", "pos": [6, 7]}, "t": {"name": "standards", "pos": [11, 12]}, "relation": "Other"}
{"token": ["a", "university", "of", "colorado", "student", "died", "due", "to", "a", "jump", "from", "an", "overpass", "onto", "us", "36", "."], "h": {"name": "student", "pos": [4, 5]}, "t": {"name": "jump", "pos": [9, 10]}, "relation": "Other"}
{"token": ["after", "mile", "17", "the", "course", "went", "away", "from", "the", "water", "and", "onto", "streets", "with", "trees", "."], "h": {"name": "course", "pos": [4, 5]}, "t": {"name": "water", "pos": [9, 10]}, "relation": "Other"}
{"token": ["as", "the", "earth", "revolves", "around", "the", "sun", ",", "the", "place", "where", "light", "shines", "the", "brightest", "changes", "."], "h": {"name": "earth", "pos": [2, 3]}, "t": {"name": "sun", "pos": [6, 7]}, "relation": "Other"}
{"token": ["the", "marshes", "have", "been", "drained", "into", "the", "farms", "."], "h": {"name": "marshes", "pos": [1, 2]}, "t": {"name": "farms", "pos": [7, 8]}, "relation": "Other"}
{"token": ["mitochondria", "were", "passed", "on", "to", "subsequent", "generations", "only", "through", "egg", "cells", "."], "h": {"name": "mitochondria", "pos": [0, 1]}, "t": {"name": "generations", "pos": [6, 7]}, "relation": "Other"}
{"token": ["cost-benefit", "analysis", "is", "used", "mainly", "to", "assess", "the", "monetary", "value", "of", "very", "large", "private", "and", "public", "sector", "projects", "."], "h": {"name": "analysis", "pos": [1, 2]}, "t": {"name": "value", "pos": [9, 10]}, "relation": "Other"}
{"token": ["the", "three", "companions", "reached", "the", "city", "by", "way", "of", "the", "river", "selintan", "."], "h": {"name": "companions", "pos": [2, 3]}, "t": {"name": "way", "pos": [7, 8]}, "relation": "Other"}
{"token": ["this", "series", "made", "a", "contribution", "to", "the", "development", "of", "museological", "thought", "."], "h": {"name": "series", "pos": [1, 2]}, "t": {"name": "development", "pos": [7, 8]}, "relation": "Other"}
{"token": ["hence", ",", "the", "left", "regular", "grammars", "generate", "exactly", "all", "regular", "languages", "."], "h": {"name": "grammars", "pos": [5, 6]}, "t": {"name": "languages", "pos": [10, 11]}, "relation": "Other"}
{"token": ["this", "feared", "ruler", "founded", "the", "largest", "land", "empire", "in", "history", "."], "h": {"name": "ruler", "pos": [2, 3]}, "t": {"name": "empire", "pos": [7, 8]}, "relation": "Other"}
{"token": ["to", "connect", "the", "microcontroller", "to", "the", "internet", ",", "one", "must", "implement", "a", "protocol", "stack", "on", "the", "device", "."], "h": {"name": "protocol", "pos": [12, 13]}, "t": {"name": "stack", "pos": [13, 14]}, "relation": "Other"}
{"token": ["a", "technician", "assists", "the", "fishermen", "with", "this", "."], "h": {"name": "technician", "pos": [1, 2]}, "t": {"name": "fishermen", "pos": [4, 5]}, "relation": "Other"}
{"token": ["we", "are", "therefore", "invited", "software", "engineering", "researchers", "to", "apply", "for", "research", "awards", "in", "all", "areas", "of", "software", "engineering", "."], "h": {"name": "awards", "pos": [11, 12]}, "t": {"name": "areas", "pos": [14, 15]}, "relation": "Other"}
{"token": ["british", "troops", "made", "their", "deepest", "incursion", "into", "basra", "yesterday", ",", "``", "poking", "a", "toe", "''", "within", "four", "miles", "of", "the", "centre", "."], "h": {"name": "troops", "pos": [1, 2]}, "t": {"name": "incursion", "pos": [5, 6]}, "relation": "Other"}
{"token": ["for", "jung", ",", "the", "individual", "is", "a", "participant", "in", "a", "'collective", "unconscious", "'", "."], "h": {"name": "individual", "pos": [4, 5]}, "t": {"name": "'collective unconscious", "pos": [10, 12]}, "relation": "Other"}
{"token": ["he", "followed", "a", "specific", "procedure", "for", "obtaining", "the", "engineer", "'s", "permit", "in", "quebec", "and", "met", "certain", "requirements", "to", "receive", "an", "engineer", "'s", "permit", "."], "h": {"name": "engineer", "pos": [8, 9]}, "t": {"name": "permit", "pos": [10, 11]}, "relation": "Other"}
{"token": ["the", "party", "starts", "in", "an", "hour", "."], "h": {"name": "party", "pos": [1, 2]}, "t": {"name": "hour", "pos": [5, 6]}, "relation": "Other"}
{"token": ["they", "discovered", "a", "good", "bit", "of", "published", "literature", "about", "modification", "of", "yeast", "with", "resveratrol-related", "genes", "."], "h": {"name": "modification", "pos": [9, 10]}, "t": {"name": "genes", "pos": [14, 15]}, "relation": "Other"}
{"token": ["the", "above", "exceptions", "fully", "resolved", "the", "evaluation", "of", "a", "photograph", "by", "a", "court", "as", "a", "result", "of", "the", "claim", "."], "h": {"name": "photograph", "pos": [9, 10]}, "t": {"name": "court", "pos": [12, 13]}, "relation": "Other"}
{"token": ["scientists", "have", "successfully", "tested", "a", "system", "that", "translates", "brain", "waves", "into", "speech", "."], "h": {"name": "system", "pos": [5, 6]}, "t": {"name": "speech", "pos": [11, 12]}, "relation": "Other"}
{"token": ["the", "company", "has", "assembled", "five", "independent", "food", "safety", "experts", "to", "serve", "on", "its", "newly", "formed", "food", "safety", "advisory", "council", "."], "h": {"name": "company", "pos": [1, 2]}, "t": {"name": "experts", "pos": [8, 9]}, "relation": "Other"}
{"token": ["the", "fun", "run", "starts", "at", "noon", "."], "h": {"name": "fun run", "pos": [1, 3]}, "t": {"name": "noon", "pos": [5, 6]}, "relation": "Other"}
{"token": ["the", "site", "welcomed", "to", "the", "premier", "industrial", "grinding", "wheels", "resource", "."], "h": {"name": "grinding", "pos": [7, 8]}, "t": {"name": "wheels", "pos": [8, 9]}, "relation": "Other"}
{"token": ["since", "this", "afternoon", "the", "models", "have", "come", "into", "somewhat", "better", "agreement", "."], "h": {"name": "models", "pos": [4, 5]}, "t": {"name": "agreement", "pos": [10, 11]}, "relation": "Other"}
{"token": ["so", ",", "while", "naked", ",", "he", "stole", "a", "car", "with", "children", "inside", ",", "dropped", "one", "out", "of", "the", "window", ",", "and", "drove", "it", "through", "a", "fence", "."], "h": {"name": "car", "pos": [8, 9]}, "t": {"name": "children", "pos": [10, 11]}, "relation": "Other"}
{"token": ["percentages", "denote", "the", "interest", "rate", "."], "h": {"name": "percentages", "pos": [0, 1]}, "t": {"name": "rate", "pos": [4, 5]}, "relation": "Other"}
{"token": ["the", "president", "increased", "the", "fleet", "by", "the", "construction", "of", "one", "high-class", "cruiser", "."], "h": {"name": "president", "pos": [1, 2]}, "t": {"name": "construction", "pos": [7, 8]}, "relation": "Other"}
{"token": ["now", "we", "are", "beginning", "to", "understand", "how", "the", "brain", "works", "using", "brain-machine", "interface", "technology", "."], "h": {"name": "brain", "pos": [8, 9]}, "t": {"name": "technology", "pos": [13, 14]}, "relation": "Other"}
{"token": ["regulations", "limit", "the", "use", "of", "rfid", "technology", "for", "human", "tracking", "."], "h": {"name": "technology", "pos": [6, 7]}, "t": {"name": "tracking", "pos": [9, 10]}, "relation": "Other"}
{"token": ["i", "was", "a", "little", "worried", "about", "making", "an", "ascent", "of", "the", "crux", "with", "a", "backpack", "."], "h": {"name": "ascent", "pos": [8, 9]}, "t": {"name": "backpack", "pos": [14, 15]}, "relation": "Other"}
{"token": ["implementation", "of", "this", "proposal", "is", "being", "discussed", "at", "the", "state", "level", "."], "h": {"name": "implementation", "pos": [0, 1]}, "t": {"name": "level", "pos": [10, 11]}, "relation": "Other"}
{"token": ["this", "is", "based", "on", "the", "notion", "that", "a", "human", "is", "basically", "a", "purpose", "driven", "animal", "."], "h": {"name": "purpose", "pos": [12, 13]}, "t": {"name": "animal", "pos": [14, 15]}, "relation": "Other"}
{"token": ["i", "have", "just", "bought", "a", "silver", "necklace", "from", "a", "lady", "who", "makes", "her", "own", "jewellery", "with", "the", "fingerprints", "of", "my", "children", "on", "it", "."], "h": {"name": "silver", "pos": [5, 6]}, "t": {"name": "necklace", "pos": [6, 7]}, "relation": "Other"}
{"token": ["the", "earth", "'s", "thin", ",", "rocky", "crust", "is", "composed", "of", "silicon", ",", "aluminum", ",", "calcium", ",", "sodium", "and", "potassium", "."], "h": {"name": "crust", "pos": [6, 7]}, "t": {"name": "silicon", "pos": [10, 11]}, "relation": "Other"}
{"token": ["while", "making", "observations", "of", "the", "microfossil", "through", "the", "binocular", "microscope", "or", "on", "a", "computer", "monitor", ",", "the", "investigator", "needed", "to", "manually", "move", "the", "specimen", "."], "h": {"name": "observations", "pos": [2, 3]}, "t": {"name": "microscope", "pos": [9, 10]}, "relation": "Other"}
{"token": ["biddle", "has", "done", "a", "thorough", "job", "of", "cutting", "through", "the", "thicket", "of", "contradictions", "and", "fantasies", "that", "surround", "the", "strategic", "bombing", "debate", "from", "1914", "to", "1945", "."], "h": {"name": "thicket", "pos": [10, 11]}, "t": {"name": "contradictions", "pos": [12, 13]}, "relation": "Other"}
{"token": ["this", "study", "presents", "a", "comprehensive", "methodology", "for", "calculating", "the", "cost", "to", "society", "of", "various", "criminal", "acts", "."], "h": {"name": "society", "pos": [11, 12]}, "t": {"name": "acts", "pos": [15, 16]}, "relation": "Other"}
{"token": ["the", "fad", "started", "when", "a", "certain", "brand", "of", "socks", "manufactured", "by", "an", "american", "company", "became", "popular", "among", "japanese", "schoolgirls", "."], "h": {"name": "brand", "pos": [6, 7]}, "t": {"name": "company", "pos": [13, 14]}, "relation": "Other"}
{"token": ["after", "5", "minutes", "or", "so", ",", "the", "problem", "went", "away", "from", "an", "operational", "perspective", "."], "h": {"name": "problem", "pos": [7, 8]}, "t": {"name": "perspective", "pos": [13, 14]}, "relation": "Other"}
{"token": ["frazerian", "theory", "of", "corn", "spirits", "and", "fertility", "and", "have", "thus", "needed", "to", "enquire", "no", "further", ",", "so", "their", "distribution", "and", "function", "remains", "unclear", "."], "h": {"name": "corn", "pos": [3, 4]}, "t": {"name": "spirits", "pos": [4, 5]}, "relation": "Other"}
{"token": ["the", "author", "cites", "the", "case", "of", "an", "american", "citizen", "during", "the", "general", "war", "."], "h": {"name": "author", "pos": [1, 2]}, "t": {"name": "case", "pos": [4, 5]}, "relation": "Other"}
{"token": ["the", "army", "of", "israel", "was", "utterly", "defeated", "and", "its", "camp", "ransacked", ",", "which", "terribly", "augmented", "the", "horrors", "and", "disasters", "of", "the", "rout", "of", "saul", "'s", "army", "."], "h": {"name": "rout", "pos": [21, 22]}, "t": {"name": "army", "pos": [25, 26]}, "relation": "Other"}
{"token": ["my", "eyes", "have", "seen", "the", "defeat", "of", "my", "adversaries", ";", "my", "ears", "have", "heard", "the", "rout", "of", "my", "wicked", "foes", "."], "h": {"name": "rout", "pos": [15, 16]}, "t": {"name": "foes", "pos": [19, 20]}, "relation": "Other"}
{"token": ["another", "misconception", "i", "see", "often", "is", "a", "fuzzy", "idea", "of", "the", "difference", "between", "the", "copy", "constructor", "and", "the", "assignment", "operator", "."], "h": {"name": "assignment", "pos": [18, 19]}, "t": {"name": "operator", "pos": [19, 20]}, "relation": "Other"}
{"token": ["the", "discharge", "started", "from", "the", "burst", "pulse", "corona", "."], "h": {"name": "discharge", "pos": [1, 2]}, "t": {"name": "corona", "pos": [7, 8]}, "relation": "Other"}
{"token": ["a", "us", "aircraft", "was", "dropped", "into", "a", "difficult", "landing", "in", "mali", "."], "h": {"name": "aircraft", "pos": [2, 3]}, "t": {"name": "landing", "pos": [8, 9]}, "relation": "Other"}
{"token": ["antacids", "work", "by", "using", "a", "base", "to", "neutralize", "the", "acid", "."], "h": {"name": "antacids", "pos": [0, 1]}, "t": {"name": "base", "pos": [5, 6]}, "relation": "Other"}
{"token": ["ross", "noted", "that", "the", "landscapes", "he", "painted", "-", "typically", "mountains", ",", "lakes", ",", "snow", ",", "and", "log", "cabin", "scenes", "-", "were", "strongly", "influenced", "by", "his", "years", "living", "in", "alaska", ",", "where", "he", "was", "stationed", "for", "the", "majority", "of", "his", "air", "force", "career", "."], "h": {"name": "landscapes", "pos": [4, 5]}, "t": {"name": "mountains", "pos": [9, 10]}, "relation": "Other"}
{"token": ["the", "valuable", "book", "has", "arrived", "into", "my", "care", "."], "h": {"name": "book", "pos": [2, 3]}, "t": {"name": "care", "pos": [7, 8]}, "relation": "Other"}
{"token": ["we", "are", "a", "petroleum", "and", "petrochemical", "company", "."], "h": {"name": "petroleum", "pos": [3, 4]}, "t": {"name": "company", "pos": [6, 7]}, "relation": "Other"}
{"token": ["the", "users", "are", "running", "into", "problems", "with", "the", "installer", "."], "h": {"name": "users", "pos": [1, 2]}, "t": {"name": "problems", "pos": [5, 6]}, "relation": "Other"}
{"token": ["eventually", "the", "path", "went", "away", "from", "the", "lake", "into", "some", "gorse", "."], "h": {"name": "path", "pos": [2, 3]}, "t": {"name": "lake", "pos": [7, 8]}, "relation": "Other"}
{"token": ["the", "rock", "'", "n", "'", "roll", "business", "is", "falling", "into", "self-parody", "."], "h": {"name": "business", "pos": [6, 7]}, "t": {"name": "self-parody", "pos": [10, 11]}, "relation": "Other"}
{"token": ["a", "handful", "of", "countries", "blocked", "a", "legally", "binding", "deal", "on", "climate", "change", "in", "copenhagen", "and", "the", "talks", "process", "needs", "urgent", "reform", "to", "prevent", "something", "similar", "happening", "again", "."], "h": {"name": "handful", "pos": [1, 2]}, "t": {"name": "countries", "pos": [3, 4]}, "relation": "Other"}
{"token": ["all", "aspects", "are", "indicated", "with", "colour", "light", "signals", "."], "h": {"name": "aspects", "pos": [1, 2]}, "t": {"name": "signals", "pos": [7, 8]}, "relation": "Other"}
{"token": ["he", "underlined", "the", "tiny", "sacrifices", "made", "by", "western", "armies", "in", "comparison", "with", "those", "of", "the", "red", "army", "."], "h": {"name": "sacrifices", "pos": [4, 5]}, "t": {"name": "armies", "pos": [8, 9]}, "relation": "Other"}
{"token": ["one", "of", "the", "types", "of", "tissue", "that", "makes", "up", "bone", "is", "the", "mineralized", "osseous", "tissue", ",", "also", "called", "bone", "tissue", ",", "that", "gives", "it", "rigidity", "and", "a", "honeycomb-like", "three-dimensional", "internal", "structure", "."], "h": {"name": "types", "pos": [3, 4]}, "t": {"name": "bone", "pos": [9, 10]}, "relation": "Other"}
{"token": ["about", "1830", ",", "the", "new", "york", "mirror", "described", "the", "area", "as", "a", "``", "loathsome", "den", "of", "murderers", ",", "thieves", ",", "abandoned", "women", ",", "ruined", "children", ",", "filth", ",", "drunkenness", ",", "and", "broils", ".", "''"], "h": {"name": "den", "pos": [14, 15]}, "t": {"name": "murderers", "pos": [16, 17]}, "relation": "Other"}
{"token": ["i", "sold", "a", "gold", "ring", "to", "another", "company", "online", "and", "they", "sent", "me", "a", "lousy", "check", "for", "$", "14.00", "."], "h": {"name": "gold", "pos": [3, 4]}, "t": {"name": "ring", "pos": [4, 5]}, "relation": "Other"}
{"token": ["the", "dome", "of", "the", "museum", "rotunda", "is", "made", "from", "an", "actual", "brewing", "kettle", ",", "and", "walking", "into", "it", "gives", "visitors", "the", "sense", "of", "being", "in", "a", "kettle", "."], "h": {"name": "visitors", "pos": [19, 20]}, "t": {"name": "kettle", "pos": [26, 27]}, "relation": "Other"}
{"token": ["erikson", "(", "1976", ")", "found", "that", "people", "from", "among", "a", "community", "who", "escaped", "an", "horrific", "accident", "had", "made", "little", "progress", "after", "two", "years", "."], "h": {"name": "people", "pos": [6, 7]}, "t": {"name": "accident", "pos": [15, 16]}, "relation": "Other"}
{"token": ["the", "camp", "is", "more", "rugged", "than", "a", "hotel", "but", "comes", "with", "a", "great", "lake", "view", "and", "the", "comradeship", "of", "fellow", "chemistry", "teachers", "."], "h": {"name": "comradeship", "pos": [17, 18]}, "t": {"name": "teachers", "pos": [21, 22]}, "relation": "Other"}
{"token": ["it", "utilized", "a", "critical", "eye", "and", "free", "inquiry", "into", "the", "conditions", "of", "life", "and", "issues", "of", "morality", "."], "h": {"name": "inquiry", "pos": [7, 8]}, "t": {"name": "conditions", "pos": [10, 11]}, "relation": "Other"}
{"token": ["the", "old", "man", "went", "into", "diabetic", "coma", "."], "h": {"name": "man", "pos": [2, 3]}, "t": {"name": "coma", "pos": [6, 7]}, "relation": "Other"}
{"token": ["a", "chowchilla", "man", "is", "behind", "bars", ",", "after", "a", "pipe", "bomb", "was", "discovered", "inside", "a", "mobile", "home", "."], "h": {"name": "bomb", "pos": [10, 11]}, "t": {"name": "home", "pos": [16, 17]}, "relation": "Other"}
{"token": ["the", "symbol", "denotes", "concatenation", "."], "h": {"name": "symbol", "pos": [1, 2]}, "t": {"name": "concatenation", "pos": [3, 4]}, "relation": "Other"}
{"token": ["in", "the", "open", "air", "of", "the", "sanz", "hotel", ",", "amid", "the", "music", "of", "the", "fountain", "and", "the", "glint", "of", "the", "goldfish", ",", "i", "almost", "forgot", "my", "nationality", "and", "imagined", "myself", "a", "great", "spanish", "grandee", ",", "residing", "in", "an", "ancient", "spanish", "mansion", ",", "and", ",", "no", "doubt", ",", "unconsciously", "adopted", "something", "of", "the", "stately", "walk", "and", "conversation", "suited", "to", "the", "part", "."], "h": {"name": "glint", "pos": [17, 18]}, "t": {"name": "goldfish", "pos": [20, 21]}, "relation": "Other"}
{"token": ["i", "was", "lucky", "enough", "to", "see", "with", "my", "own", "eyes", "the", "recent", "stock-market", "crash", ",", "where", "they", "lost", "several", "million", "dollars", ",", "a", "rabble", "of", "dead", "money", "that", "went", "sliding", "off", "into", "the", "sea", "."], "h": {"name": "rabble", "pos": [23, 24]}, "t": {"name": "money", "pos": [26, 27]}, "relation": "Other"}
{"token": ["a", "specific", "legacy", "has", "relation", "to", "the", "time", "of", "making", "the", "will", "."], "h": {"name": "legacy", "pos": [2, 3]}, "t": {"name": "time", "pos": [7, 8]}, "relation": "Other"}
{"token": ["the", "aim", "of", "this", "study", "was", "the", "measurement", "of", "the", "intensity", "and", "circumstances", "of", "drug", "use", "."], "h": {"name": "study", "pos": [4, 5]}, "t": {"name": "measurement", "pos": [7, 8]}, "relation": "Other"}
{"token": ["after", "runners", "carried", "the", "torch", "through", "the", "streets", "of", "north", "platte", ",", "the", "torch", "was", "again", "handed", "off", "to", "a", "pony", "express", "rider", ",", "who", "continued", "down", "the", "trail", "."], "h": {"name": "runners", "pos": [1, 2]}, "t": {"name": "streets", "pos": [7, 8]}, "relation": "Other"}
{"token": ["in", "future", "britain", ",", "charismatic", "delinquent", "alex", "delarge", "is", "jailed", "and", "later", "volunteers", "for", "an", "experimental", "aversion", "therapy", "developed", "by", "the", "government", "in", "an", "effort", "to", "solve", "society", "'s", "crime", "problem", "."], "h": {"name": "therapy", "pos": [17, 18]}, "t": {"name": "government", "pos": [21, 22]}, "relation": "Other"}
{"token": ["the", "input", "queue", "is", "used", "for", "processing", "events", "from", "an", "mfg/pro", "application", "to", "a", "websphere-connected", "application", "."], "h": {"name": "input", "pos": [1, 2]}, "t": {"name": "queue", "pos": [2, 3]}, "relation": "Other"}
{"token": ["us", "forces", "fared", "so", "well", "that", "macarthur", "gained", "truman", "'s", "permission", "to", "attempt", "a", "total", "rout", "of", "communist", "forces", "."], "h": {"name": "rout", "pos": [15, 16]}, "t": {"name": "forces", "pos": [18, 19]}, "relation": "Other"}
{"token": ["the", "strategy", "covers", "the", "period", "to", "2016", ",", "with", "a", "strong", "focus", "on", "2010", "."], "h": {"name": "strategy", "pos": [1, 2]}, "t": {"name": "focus", "pos": [11, 12]}, "relation": "Other"}
{"token": ["it", "is", "found", "that", "the", "polysilicon", "grows", "from", "an", "initial", "step", "of", "the", "deposition", "."], "h": {"name": "polysilicon", "pos": [5, 6]}, "t": {"name": "step", "pos": [10, 11]}, "relation": "Other"}
{"token": ["the", "applet", "requires", "a", "browser", "that", "supports", "jdk", "1.1.5", "or", "above", "."], "h": {"name": "applet", "pos": [1, 2]}, "t": {"name": "browser", "pos": [4, 5]}, "relation": "Other"}
{"token": ["this", "new", ",", "improved", "active", "piezoelectric", "hydrophone", "is", "made", "with", "shielded", "clear", "waterproof", "cable", "and", "a", "copper", "acoustic", "chamber", "coated", "in", "non-toxic", ",", "durable", "black", "rubber", "."], "h": {"name": "hydrophone", "pos": [6, 7]}, "t": {"name": "cable", "pos": [13, 14]}, "relation": "Other"}
{"token": ["at", "this", "time", "the", "farm", "had", "three", "horses", "and", "a", "small", "tractor", "."], "h": {"name": "farm", "pos": [4, 5]}, "t": {"name": "horses", "pos": [7, 8]}, "relation": "Other"}
{"token": ["we", "are", "determined", "to", "pursue", "the", "conquest", "of", "evil", "with", "the", "good", "."], "h": {"name": "conquest", "pos": [6, 7]}, "t": {"name": "good", "pos": [11, 12]}, "relation": "Other"}
{"token": ["authentic", "people", ",", "knowing", "their", "place", "in", "the", "world", ",", "fulfill", "it", "with", "joy", "and", "attention", "."], "h": {"name": "people", "pos": [1, 2]}, "t": {"name": "joy", "pos": [13, 14]}, "relation": "Other"}
{"token": ["unificationists", "sees", "kingdom", "coming", "with", "the", "help", "of", "the", "new", "president", "."], "h": {"name": "unificationists", "pos": [0, 1]}, "t": {"name": "president", "pos": [10, 11]}, "relation": "Other"}
{"token": ["while", "most", "of", "the", "experimental", "literature", "focuses", "on", "individual", "contributions", ",", "many", "real-world", "problems", "involve", "the", "formation", "of", "coalitions", "."], "h": {"name": "formation", "pos": [16, 17]}, "t": {"name": "coalitions", "pos": [18, 19]}, "relation": "Other"}
{"token": ["the", "coalition", "sprang", "up", "after", "the", "tories", "released", "an", "economic", "statement", "lambasted", "by", "the", "opposition", "parties", "."], "h": {"name": "statement", "pos": [10, 11]}, "t": {"name": "parties", "pos": [15, 16]}, "relation": "Other"}
{"token": ["the", "system", "combined", "the", "hierarchical", "structure", "of", "decision", "trees", "with", "a", "clean", "probabilistic", "semantics", "."], "h": {"name": "system", "pos": [1, 2]}, "t": {"name": "structure", "pos": [5, 6]}, "relation": "Other"}
{"token": ["a", "child", "has", "been", "placed", "into", "foster", "care", "."], "h": {"name": "child", "pos": [1, 2]}, "t": {"name": "care", "pos": [7, 8]}, "relation": "Other"}
{"token": ["since", "then", ",", "millions", "of", "dollars", "have", "gone", "into", "reconstructions", "for", "victims", "of", "tsunami", "in", "2004", "."], "h": {"name": "dollars", "pos": [5, 6]}, "t": {"name": "reconstructions", "pos": [9, 10]}, "relation": "Other"}
{"token": ["its", "progenitor", "made", "his", "name", "with", "a", "wonderful", "non-fiction", "account", "of", "policing", "in", "baltimore", "called", "homicide", "."], "h": {"name": "progenitor", "pos": [1, 2]}, "t": {"name": "name", "pos": [4, 5]}, "relation": "Other"}
{"token": ["all", "houses", "are", "now", "built", "this", "way", "."], "h": {"name": "houses", "pos": [1, 2]}, "t": {"name": "way", "pos": [6, 7]}, "relation": "Other"}
{"token": ["the", "purpose", "of", "this", "test", "was", "to", "report", "to", "the", "american", "public", "on", "the", "academic", "achievement", "of", "individual", "students", ",", "schools", ",", "districts", ",", "and", "states", "."], "h": {"name": "test", "pos": [4, 5]}, "t": {"name": "achievement", "pos": [15, 16]}, "relation": "Other"}
{"token": ["i", "'ve", "been", "asking", "for", "a", "fizzy", "milk", "drink", "for", "a", "while", "."], "h": {"name": "milk", "pos": [7, 8]}, "t": {"name": "drink", "pos": [8, 9]}, "relation": "Other"}
{"token": ["the", "author", "of", "a", "keygen", "uses", "a", "disassembler", "to", "look", "at", "the", "raw", "assembly", "code", "."], "h": {"name": "author", "pos": [1, 2]}, "t": {"name": "disassembler", "pos": [7, 8]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["even", "commercial", "networks", "have", "moved", "into", "high-definition", "broadcast", "."], "h": {"name": "networks", "pos": [2, 3]}, "t": {"name": "high-definition broadcast", "pos": [6, 8]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["texas-born", "virtuoso", "finds", "harmony", ",", "sophistication", "in", "appalachian", "instrument", "."], "h": {"name": "virtuoso", "pos": [1, 2]}, "t": {"name": "instrument", "pos": [8, 9]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["newspapers", "swap", "content", "via", "widgets", "with", "the", "help", "of", "the", "newsgator", "service", "."], "h": {"name": "newspapers", "pos": [0, 1]}, "t": {"name": "service", "pos": [11, 12]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["adults", "use", "drugs", "for", "this", "purpose", "."], "h": {"name": "adults", "pos": [0, 1]}, "t": {"name": "drugs", "pos": [2, 3]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "councilor", "proposed", "assessing", "infinitival", "complements", "through", "elicitation", "."], "h": {"name": "councilor", "pos": [1, 2]}, "t": {"name": "elicitation", "pos": [7, 8]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["a", "team", "of", "students", "from", "virginia", "tech", "university", "have", "created", "a", "vehicle", "that", "allows", "vision", "impaired", "drivers", "to", "take", "control", "of", "the", "wheel", "."], "h": {"name": "drivers", "pos": [16, 17]}, "t": {"name": "wheel", "pos": [22, 23]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["this", "user", "plays", "games", "on", "a", "portable", "console", "."], "h": {"name": "user", "pos": [1, 2]}, "t": {"name": "console", "pos": [7, 8]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "driver", "of", "the", "cement", "truck", "cleaned", "the", "loading", "chute", "on", "his", "truck", "with", "a", "truck-mounted", "water", "hose", "and", "began", "to", "pull", "away", "."], "h": {"name": "driver", "pos": [1, 2]}, "t": {"name": "hose", "pos": [17, 18]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["a", "programmer", "uses", "a", "high", "level", "language", "to", "implement", "its", "algorithms", "."], "h": {"name": "programmer", "pos": [1, 2]}, "t": {"name": "language", "pos": [6, 7]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["from", "the", "scots", "(", "lingle", ")", "and", "french", "(", "ligneul", ",", "lignoul", ")", ",", "comes", "a", "shoemaker", "'s", "sewing", "thread", ",", "waxed", "and", "bristled", "(", "see", "waxed", "end", ")", "."], "h": {"name": "shoemaker", "pos": [16, 17]}, "t": {"name": "thread", "pos": [19, 20]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["a", "thief", "who", "tried", "to", "steal", "the", "truck", "broke", "the", "igenition", "with", "screwdriver", "."], "h": {"name": "thief", "pos": [1, 2]}, "t": {"name": "screwdriver", "pos": [12, 13]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["initially", "the", "user", "calibrates", "the", "microscope", "with", "a", "fluorescence", "lifetime", "standard", "positioned", "at", "the", "sample", "plane", "."], "h": {"name": "user", "pos": [2, 3]}, "t": {"name": "standard", "pos": [10, 11]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["this", "is", "the", "umbrella", "that", "peels", "the", "potatoes", "with", "a", "pencil", "and", "makes", "a", "pink", "ink", "with", "the", "peelings", "stood", "up", "."], "h": {"name": "umbrella", "pos": [3, 4]}, "t": {"name": "pencil", "pos": [10, 11]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "scientist", "approached", "the", "big", "cat", "with", "a", "notepad", "and", "a", "pencil", "in", "her", "hands", "."], "h": {"name": "scientist", "pos": [1, 2]}, "t": {"name": "notepad", "pos": [8, 9]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["governments", ",", "frightened", "of", "losing", "votes", ",", "resolved", "the", "crisis", "through", "subsidization", "."], "h": {"name": "governments", "pos": [0, 1]}, "t": {"name": "subsidization", "pos": [11, 12]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["one", "man", "pours", "on", "a", "liquid", "while", "the", "other", "man", "stirs", "the", "mixture", "with", "a", "wooden", "paddle", "or", "spatula", "."], "h": {"name": "man", "pos": [9, 10]}, "t": {"name": "paddle", "pos": [16, 17]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "team", "used", "the", "newly-developed", "nanoparticle", "to", "build", "therapies", "for", "treating", "individuals", "with", "cardiovascular", "disease", "."], "h": {"name": "team", "pos": [1, 2]}, "t": {"name": "nanoparticle", "pos": [5, 6]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "accused", "killed", "the", "victim", "with", "a", "kirpan", "and", "separated", "the", "head", "from", "the", "body", "and", "threw", "it", "in", "a", "canal", "near", "nabha", "."], "h": {"name": "accused", "pos": [1, 2]}, "t": {"name": "kirpan", "pos": [7, 8]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["students", "actually", "benefit", "from", "study", "through", "an", "sts", "approach", "."], "h": {"name": "study", "pos": [4, 5]}, "t": {"name": "approach", "pos": [8, 9]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["my", "grandparents", "rest", "beneath", "a", "stone", "that", "shows", "a", "farmer", "plowing", "with", "a", "mule", ",", "an", "emblem", "of", "the", "way", "they", "began", "their", "lives", "together", "back", "in", "the", "1930s", "."], "h": {"name": "farmer", "pos": [9, 10]}, "t": {"name": "mule", "pos": [13, 14]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["a", "teacher", "writes", "a", "whole", "number", "less", "than", "50000", "on", "the", "blackboard", "."], "h": {"name": "teacher", "pos": [1, 2]}, "t": {"name": "blackboard", "pos": [11, 12]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["a", "surgeon", "carefully", "applies", "the", "splints", "to", "the", "forearm", "."], "h": {"name": "surgeon", "pos": [1, 2]}, "t": {"name": "splints", "pos": [5, 6]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "supreme", "court", "has", "applied", "the", "protections", "of", "this", "amendment", "to", "the", "states", "through", "the", "due", "process", "clause", "of", "the", "fourteenth", "amendment", "."], "h": {"name": "supreme court", "pos": [1, 3]}, "t": {"name": "protections", "pos": [6, 7]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "winemaker", "carefully", "chose", "grapes", "from", "different", "lots", "in", "the", "vineyards", "and", "blended", "them", "into", "this", "wonderful", "pinot", "."], "h": {"name": "winemaker", "pos": [1, 2]}, "t": {"name": "grapes", "pos": [4, 5]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "restaurant", "first", "cleaned", "the", "floor", "with", "a", "company-approved", "cleaning", "agent", "before", "the", "cof", "test", "was", "conducted", "."], "h": {"name": "restaurant", "pos": [1, 2]}, "t": {"name": "agent", "pos": [10, 11]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "guys", "catch", "the", "shad", "with", "gill", "nets", "."], "h": {"name": "guys", "pos": [1, 2]}, "t": {"name": "nets", "pos": [7, 8]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["some", "of", "the", "nurses", "drank", "the", "alcohol", "out", "of", "jars", "containing", "diseased", "human", "viscera", "."], "h": {"name": "nurses", "pos": [3, 4]}, "t": {"name": "jars", "pos": [9, 10]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "nrc", ",", "rso", ",", "and", "the", "first", "bank", "representative", "accessed", "the", "vault", "with", "the", "key", "."], "h": {"name": "representative", "pos": [9, 10]}, "t": {"name": "key", "pos": [15, 16]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "hookah", "filters", "the", "smoke", "through", "water", ",", "making", "the", "end", "result", "much", "less", "harsh", "and", "allowing", "the", "flavor", "of", "the", "smoke", "to", "really", "come", "through", "."], "h": {"name": "hookah", "pos": [1, 2]}, "t": {"name": "water", "pos": [6, 7]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["a", "hairdresser", "fine-tunes", "your", "hair", "color", "without", "causing", "excessive", "damage", "by", "using", "toners", "."], "h": {"name": "hairdresser", "pos": [1, 2]}, "t": {"name": "toners", "pos": [12, 13]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["students", "locate", "these", "cities", "on", "the", "large", "map", "(", "b2", ")", "with", "assistance", "from", "the", "teacher", "(", "b14", ")", "marking", "them", "with", "colored", "pushpins", "."], "h": {"name": "students", "pos": [0, 1]}, "t": {"name": "pushpins", "pos": [23, 24]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "recipient", "receives", "the", "call", "through", "a", "miniature", "radio", "receiver", "carried", "on", "his", "person", ",", "the", "receiver", "having", "a", "built-in", "ferritic", "antenna", "."], "h": {"name": "recipient", "pos": [1, 2]}, "t": {"name": "receiver", "pos": [9, 10]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "authors", "assessed", "the", "reliability", "of", "the", "basic", "diagnostic", "methods", "in", "series", "of", "181", "patients", "with", "bladder", "tumoursas", "compared", "with", "operative", "findings", "."], "h": {"name": "authors", "pos": [1, 2]}, "t": {"name": "series", "pos": [11, 12]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "priest", "mixes", "the", "holy", "oil", "and", "the", "wine", "with", "a", "spoon", "and", "pours", "it", "into", "small", "containers", ",", "as", "many", "as", "there", "be", "priests", "."], "h": {"name": "priest", "pos": [1, 2]}, "t": {"name": "spoon", "pos": [11, 12]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "teacher", "covers", "the", "candle", "with", "a", "tall", "glass", "."], "h": {"name": "teacher", "pos": [1, 2]}, "t": {"name": "glass", "pos": [8, 9]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["all", "psychiatrists", "are", "familiar", "with", "antipsychotic", ",", "anti-anxiety", ",", "and", "antidepressant", "medications", ",", "whose", "origins", "date", "to", "the", "1950s", "."], "h": {"name": "psychiatrists", "pos": [1, 2]}, "t": {"name": "medications", "pos": [11, 12]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "assigned", "cashier", "code", "serves", "to", "identify", "the", "cashier", "using", "the", "electronic", "cash", "register", "."], "h": {"name": "cashier", "pos": [8, 9]}, "t": {"name": "register", "pos": [13, 14]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["stanford", "researchers", "have", "coated", "paper", "with", "carbon", "nanotubes", "and", "silver", "nanowires", "to", "serve", "as", "electricity", "storage", "devices", "."], "h": {"name": "researchers", "pos": [1, 2]}, "t": {"name": "paper", "pos": [4, 5]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "therapist", "treats", "the", "patient", "with", "a", "certain", "kind", "of", "manual", "therapy", "."], "h": {"name": "therapist", "pos": [1, 2]}, "t": {"name": "therapy", "pos": [11, 12]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["a", "person", "regains", "the", "movement", "roughly", "equal", "to", "walking", "on", "solid", "ground", "by", "using", "snowshoes", "."], "h": {"name": "person", "pos": [1, 2]}, "t": {"name": "snowshoes", "pos": [14, 15]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["incandescent", "bulbs", "work", "by", "using", "electricity", "to", "heat", "a", "tungsten", "filament", "in", "the", "bulb", "until", "it", "glows", "."], "h": {"name": "bulbs", "pos": [1, 2]}, "t": {"name": "electricity", "pos": [5, 6]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["a", "girl", "plays", "her", "violin", "on", "a", "pogo", "stick", "."], "h": {"name": "girl", "pos": [1, 2]}, "t": {"name": "violin", "pos": [4, 5]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["builders", "use", "a", "paste", "like", "adhesive", "(", "known", "in", "the", "building", "trade", "as", "mud", ")", "to", "fix", "the", "plasterboard", "to", "the", "wall", "."], "h": {"name": "builders", "pos": [0, 1]}, "t": {"name": "adhesive", "pos": [5, 6]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["more", "recently", ",", "starter", "manufacturers", "have", "attached", "the", "flange", "with", "a", "number", "of", "capscrews", "to", "the", "main", "housing", "thus", "allowing", "a", "finite", "number", "of", "position", "."], "h": {"name": "manufacturers", "pos": [4, 5]}, "t": {"name": "capscrews", "pos": [13, 14]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["human", "rights", "advocates", "lit", "a", "flame", "to", "press", "the", "international", "community", "-", "especially", "china", "-", "to", "bring", "security", "to", "darfur", ",", "sudan", "."], "h": {"name": "advocates", "pos": [2, 3]}, "t": {"name": "flame", "pos": [5, 6]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "etruscan", "craftsmen", "marked", "their", "wares", "with", "ink", "marks", "."], "h": {"name": "craftsmen", "pos": [2, 3]}, "t": {"name": "marks", "pos": [8, 9]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["philosophy", "is", "a", "special", "kind", "of", "discourse", "that", "uses", "language", "in", "order", "to", "give", "us", "access", "to", "extra-linguistic", "truth", "."], "h": {"name": "philosophy", "pos": [0, 1]}, "t": {"name": "language", "pos": [9, 10]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["a", "mechanic", "attaches", "a", "socket", "wrench", "to", "a", "bolt", "."], "h": {"name": "mechanic", "pos": [1, 2]}, "t": {"name": "wrench", "pos": [5, 6]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "young", "man", "watched", "the", "snow", "through", "the", "window", ",", "and", "he", "wanted", "to", "stay", "in", "that", "cafe", "forever", "."], "h": {"name": "man", "pos": [2, 3]}, "t": {"name": "window", "pos": [8, 9]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["i", "joined", "the", "group", "which", "took", "the", "bus", "to", "jura", "house", "gardens", "for", "the", "start", "of", "our", "walk", "."], "h": {"name": "group", "pos": [3, 4]}, "t": {"name": "bus", "pos": [7, 8]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["amendment", "4", "removed", "the", "subsection", "which", "applies", "the", "measure", "to", "partner", "authorities", "of", "local", "authorities", "."], "h": {"name": "subsection", "pos": [4, 5]}, "t": {"name": "measure", "pos": [8, 9]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["most", "dieters", "are", "familiar", "with", "the", "usual", "weight", "loss", "formula", ":", "proper", "diet", ",", "adequate", "exercise", ",", "and", "a", "healthier", "lifestyle", "."], "h": {"name": "dieters", "pos": [1, 2]}, "t": {"name": "formula", "pos": [9, 10]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["even", "if", "an", "abstract", "theme", "is", "at", "the", "center", "of", "the", "poem", ",", "the", "poet", "still", "uses", "concrete", "imagery", "in", "order", "to", "make", "it", "more", "accessible", "."], "h": {"name": "poet", "pos": [14, 15]}, "t": {"name": "imagery", "pos": [18, 19]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["washer", "works", "with", "a", "single", "cup", "of", "water", "."], "h": {"name": "washer", "pos": [0, 1]}, "t": {"name": "water", "pos": [7, 8]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "psychiatrist", "killed", "him", "with", "the", "drugs", "she", "gave", "him", "."], "h": {"name": "psychiatrist", "pos": [1, 2]}, "t": {"name": "drugs", "pos": [6, 7]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "restaurant", "creates", "dishes", "using", "farm", "fresh", "products", "and", "organic", "products", "found", "from", "local", "farms", "like", "meadow", "mountains", "and", "haystack", "."], "h": {"name": "restaurant", "pos": [1, 2]}, "t": {"name": "products", "pos": [10, 11]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "researchers", "studied", "the", "efficiencies", "of", "assessment", "through", "exams", ",", "particularly", "if", "the", "marking", "is", "routine", "or", "automated", ",", "are", "counterbalanced", "by", "its", "limitation", "."], "h": {"name": "researchers", "pos": [1, 2]}, "t": {"name": "exams", "pos": [8, 9]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["during", "camera", "adjustment", ",", "the", "surgeon", "accidentally", "tore", "the", "choroid", "and", "retina", "with", "a", "tissue", "forceps", "."], "h": {"name": "surgeon", "pos": [5, 6]}, "t": {"name": "forceps", "pos": [15, 16]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["previously", ",", "the", "end", "user", "machined", "the", "wrenches", "with", "a", "high-speed", "steel", "pull", "broach", "."], "h": {"name": "user", "pos": [4, 5]}, "t": {"name": "broach", "pos": [13, 14]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["her", "guardian", "angel", "went", "before", "her", ",", "lighting", "the", "road", "with", "a", "headlight-like", "lantern", "."], "h": {"name": "angel", "pos": [2, 3]}, "t": {"name": "lantern", "pos": [13, 14]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["semiconductor", "tech", "diagnoses", "eye", "disease", "over", "the", "internet", "."], "h": {"name": "tech", "pos": [1, 2]}, "t": {"name": "internet", "pos": [7, 8]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["historians", "use", "evidence", "and", "artifacts", "."], "h": {"name": "historians", "pos": [0, 1]}, "t": {"name": "evidence", "pos": [2, 3]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["visibly", "disturbed", ",", "the", "girl", "searched", "the", "room", "with", "the", "burning", "candle", "."], "h": {"name": "girl", "pos": [4, 5]}, "t": {"name": "candle", "pos": [11, 12]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["after", "the", "pottery", "is", "formed", ",", "either", "by", "a", "potter", "'s", "wheel", "or", "more", "primitive", "means", ",", "it", "has", "been", "left", "to", "thoroughly", "dry", "."], "h": {"name": "potter", "pos": [9, 10]}, "t": {"name": "wheel", "pos": [11, 12]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "present", "invention", "concerns", "an", "apparatus", "that", "makes", "a", "modular", "wall", "using", "a", "plurality", "of", "panels", "."], "h": {"name": "apparatus", "pos": [5, 6]}, "t": {"name": "panels", "pos": [15, 16]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["with", "the", "recent", "invention", "of", "plastic", "core", "roller", "covers", ",", "the", "painter", "is", "able", "to", "complete", "an", "entire", "job", "no", "matter", "how", "large", ",", "with", "their", "original", "roller", "."], "h": {"name": "painter", "pos": [11, 12]}, "t": {"name": "roller", "pos": [27, 28]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["a", "man", "uses", "a", "microphone", "as", "he", "gives", "a", "speech", "."], "h": {"name": "man", "pos": [1, 2]}, "t": {"name": "microphone", "pos": [4, 5]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "general", "reached", "the", "city", "by", "train", "from", "worcester", "at", "6", ",", "and", "was", "received", "by", "a", "delegation", "from", "the", "military", "of", "the", "city", ",", "accompanied", "by", "the", "brigade", "band", "."], "h": {"name": "general", "pos": [1, 2]}, "t": {"name": "train", "pos": [6, 7]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "examiner", "lightly", "touched", "the", "cornea", "with", "a", "hand-held", "probe", "until", "a", "reading", "was", "automatically", "recorded", "."], "h": {"name": "examiner", "pos": [1, 2]}, "t": {"name": "probe", "pos": [9, 10]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["this", "is", "how", "a", "politician", "uses", "tourism", "as", "an", "instrument", "for", "power", "."], "h": {"name": "politician", "pos": [4, 5]}, "t": {"name": "tourism", "pos": [6, 7]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "players", "flew", "to", "lexington", "on", "a", "plane", "separate", "from", "the", "team", "."], "h": {"name": "players", "pos": [1, 2]}, "t": {"name": "plane", "pos": [7, 8]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "violinist", "produces", "sound", "by", "drawing", "a", "bow", "across", "one", "or", "more", "strings", "(", "which", "may", "be", "stopped", "by", "the", "fingers", "of", "the", "other", "hand", ")", "."], "h": {"name": "violinist", "pos": [1, 2]}, "t": {"name": "bow", "pos": [7, 8]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["mfx", "colours", "are", "implemented", "at", "the", "design", "stage", ",", "where", "the", "designer", "creates", "artwork", "using", "the", "metalfx", "colour", "palettes", "and", "actions", "."], "h": {"name": "designer", "pos": [11, 12]}, "t": {"name": "palettes", "pos": [18, 19]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "painter", "continues", "adding", "paint", "on", "top", "of", "still", "wet", "paint", "rather", "than", "waiting", "a", "lengthy", "amount", "of", "time", "to", "allow", "each", "layer", "of", "paint", "to", "dry", "."], "h": {"name": "painter", "pos": [1, 2]}, "t": {"name": "paint", "pos": [4, 5]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["a", "woman", "applies", "the", "patch", "to", "the", "skin", "of", "her", "abdomen", "or", "buttock", "for", "three", "and", "a", "half", "weeks", "."], "h": {"name": "woman", "pos": [1, 2]}, "t": {"name": "patch", "pos": [4, 5]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "student", "association", "is", "the", "voice", "of", "the", "undergraduate", "student", "population", "of", "the", "state", "university", "of", "new", "york", "at", "buffalo", "."], "h": {"name": "student", "pos": [1, 2]}, "t": {"name": "association", "pos": [2, 3]}, "relation": "Member-Collection(e1,e2)"}
{"token": ["the", "fifty", "essays", "collected", "in", "this", "volume", "testify", "to", "most", "of", "the", "prominent", "themes", "from", "professor", "quispel", "'s", "scholarly", "career", "."], "h": {"name": "essays", "pos": [2, 3]}, "t": {"name": "volume", "pos": [6, 7]}, "relation": "Member-Collection(e1,e2)"}
{"token": ["from", "him", ",", "cain", "learns", "that", "alexis", "had", "survived", "his", "suicide", "and", "became", "the", "leader", "of", "that", "organization", ",", "renaming", "it", "delilah", "."], "h": {"name": "leader", "pos": [14, 15]}, "t": {"name": "organization", "pos": [17, 18]}, "relation": "Member-Collection(e1,e2)"}
{"token": ["fish", "swim", "in", "a", "shoal", ",", "but", "they", "fall", "one", "by", "one", "."], "h": {"name": "fish", "pos": [0, 1]}, "t": {"name": "shoal", "pos": [4, 5]}, "relation": "Member-Collection(e1,e2)"}
{"token": ["avci", "was", "the", "head", "of", "the", "chief", "of", "the", "police", "in", "diyarbakir", "between", "1984", "and", "1992", "."], "h": {"name": "head", "pos": [3, 4]}, "t": {"name": "police", "pos": [9, 10]}, "relation": "Member-Collection(e1,e2)"}
{"token": ["instead", "of", "``", "dominance", "''", "and", "``", "submission", "''", ",", "he", "uses", "the", "terms", "``", "assertiveness", "''", "and", "``", "passiveness", "''", "to", "reflect", "the", "role", "of", "the", "wolf", "in", "the", "pack", "."], "h": {"name": "wolf", "pos": [27, 28]}, "t": {"name": "pack", "pos": [30, 31]}, "relation": "Member-Collection(e1,e2)"}
{"token": ["anderson", "is", "regarded", "as", "one", "of", "the", "most", "able", "and", "articulate", "members", "of", "congress", ",", "but", "he", "has", "a", "voting", "record", "that", "is", "anathema", "to", "most", "other", "congressmen", "in", "his", "party", "."], "h": {"name": "congressmen", "pos": [27, 28]}, "t": {"name": "party", "pos": [30, 31]}, "relation": "Member-Collection(e1,e2)"}
{"token": ["this", "pecking", "order", "continues", "all", "the", "way", "down", "to", "the", "most", "subordinate", "wolf", "in", "the", "pack", "."], "h": {"name": "wolf", "pos": [12, 13]}, "t": {"name": "pack", "pos": [15, 16]}, "relation": "Member-Collection(e1,e2)"}
{"token": ["thus", ",", "aptitude", "provides", "no", "information", "about", "critical", "interactional", "processes", "that", "take", "place", "after", "the", "student", "has", "enrolled", "in", "the", "university", "."], "h": {"name": "student", "pos": [15, 16]}, "t": {"name": "university", "pos": [20, 21]}, "relation": "Member-Collection(e1,e2)"}
{"token": ["prevention", "of", "cae", "viral", "infection", "is", "important", "in", "goat", "herd", "management", "because", "there", "is", "no", "treatment", "that", "eliminates", "cae", "virus", "or", "vaccine", "to", "prevent", "this", "disease", "."], "h": {"name": "goat", "pos": [8, 9]}, "t": {"name": "herd", "pos": [9, 10]}, "relation": "Member-Collection(e1,e2)"}
{"token": ["a", "happy", "resident", "feels", "part", "of", "their", "association", "."], "h": {"name": "resident", "pos": [2, 3]}, "t": {"name": "association", "pos": [7, 8]}, "relation": "Member-Collection(e1,e2)"}
{"token": ["dr.", "brian", "howard", "is", "a", "remarkably", "skilled", "atlanta", "plastic", "surgeon", "who", "is", "part", "of", "a", "select", "group", "of", "medical", "professionals", "who", "has", "certification", "in", "plastic", "surgery", "."], "h": {"name": "surgeon", "pos": [9, 10]}, "t": {"name": "group", "pos": [16, 17]}, "relation": "Member-Collection(e1,e2)"}
{"token": ["each", "wolf", "in", "his", "pack", "plays", "a", "character", "befitting", "his", "social", "status", "."], "h": {"name": "wolf", "pos": [1, 2]}, "t": {"name": "pack", "pos": [4, 5]}, "relation": "Member-Collection(e1,e2)"}
{"token": ["the", "mother", "superior", "is", "a", "member", "of", "the", "corporation", "."], "h": {"name": "mother superior", "pos": [1, 3]}, "t": {"name": "corporation", "pos": [8, 9]}, "relation": "Member-Collection(e1,e2)"}
{"token": ["the", "current", "view", "is", "that", "the", "chronic", "inflammation", "in", "the", "distal", "part", "of", "the", "stomach", "caused", "by", "helicobacter", "pylori", "infection", "results", "in", "an", "increased", "acid", "production", "from", "the", "non-infected", "upper", "corpus", "region", "of", "the", "stomach", "."], "h": {"name": "inflammation", "pos": [7, 8]}, "t": {"name": "infection", "pos": [19, 20]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "burst", "has", "been", "caused", "by", "water", "hammer", "pressure", "."], "h": {"name": "burst", "pos": [1, 2]}, "t": {"name": "pressure", "pos": [8, 9]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["he", "had", "chest", "pains", "and", "headaches", "from", "mold", "in", "the", "bedrooms", "."], "h": {"name": "headaches", "pos": [5, 6]}, "t": {"name": "mold", "pos": [7, 8]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["calluses", "are", "caused", "by", "improperly", "fitting", "shoes", "or", "by", "a", "skin", "abnormality", "."], "h": {"name": "calluses", "pos": [0, 1]}, "t": {"name": "skin abnormality", "pos": [10, 12]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["as", "in", "the", "popular", "movie", "``", "deep", "impact", "''", ",", "the", "action", "of", "the", "perseid", "meteor", "shower", "is", "caused", "by", "a", "comet", ",", "in", "this", "case", "periodic", "comet", "swift-tuttle", "."], "h": {"name": "meteor shower", "pos": [15, 17]}, "t": {"name": "comet", "pos": [21, 22]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "radiation", "from", "the", "atomic", "bomb", "explosion", "is", "a", "typical", "acute", "radiation", "."], "h": {"name": "radiation", "pos": [1, 2]}, "t": {"name": "bomb explosion", "pos": [5, 7]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["a", "neoplastic", "recurrence", "arose", "from", "an", "extensive", "radiation", "induced", "ulceration", "."], "h": {"name": "recurrence", "pos": [2, 3]}, "t": {"name": "radiation", "pos": [7, 8]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["he", "has", "a", "tattoo", "on", "his", "right", "arm", "and", "scars", "from", "stitches", "on", "his", "right", "elbow", "."], "h": {"name": "scars", "pos": [9, 10]}, "t": {"name": "stitches", "pos": [11, 12]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "continuing", "nigerian", "outbreak", "is", "the", "biggest", "ever", "caused", "by", "the", "vaccine", "."], "h": {"name": "outbreak", "pos": [3, 4]}, "t": {"name": "vaccine", "pos": [11, 12]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "fire", "inside", "wtc", "was", "caused", "by", "exploding", "fuel", "."], "h": {"name": "fire", "pos": [1, 2]}, "t": {"name": "fuel", "pos": [8, 9]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "suffering", "caused", "by", "the", "terrorists", "is", "the", "real", "torture", "."], "h": {"name": "suffering", "pos": [1, 2]}, "t": {"name": "terrorists", "pos": [5, 6]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["in", "a", "poetic", "twist", ",", "the", "tsunami", "triggered", "by", "the", "rock", "band", "forced", "many", "american", "jazz", "and", "blues", "singers", "to", "seek", "work", "in", "the", "united", "kingdom", ",", "which", "is", "where", "anderson", "found", "a", "receptive", "audience", "in", "1965", "."], "h": {"name": "tsunami", "pos": [6, 7]}, "t": {"name": "band", "pos": [11, 12]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["leakage", "and", "fire", "caused", "due", "to", "corrosion", "of", "bypass", "piping", "for", "recirculation", "gas", "at", "a", "fuel", "oil", "desulphurization", "unit", "."], "h": {"name": "leakage", "pos": [0, 1]}, "t": {"name": "corrosion", "pos": [6, 7]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["historical", "view", "of", "the", "damage", "caused", "by", "the", "1693", "catania", "earthquake", "and", "the", "reconstruction", "activities", "."], "h": {"name": "damage", "pos": [4, 5]}, "t": {"name": "earthquake", "pos": [10, 11]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["ai", "requested", "that", "the", "perpetrators", "be", "prosecuted", "to", "the", "fullest", "extent", "of", "the", "law", ",", "that", "adequate", "compensation", "be", "provided", "to", "the", "victims", "and", "that", "senior", "government", "and", "police", "officials", "offer", "apologies", "for", "the", "suffering", "caused", "by", "the", "responsible", "police", "officers", "."], "h": {"name": "suffering", "pos": [34, 35]}, "t": {"name": "officers", "pos": [40, 41]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "marshall", "plan", "also", "provided", "a", "way", "of", "gaining", "public", "acceptance", "in", "europe", "for", "the", "new", "deal", "format", "that", "the", "united", "states", "had", "successfully", "used", "before", "the", "war", "to", "end", "the", "recession", "triggered", "by", "the", "1929", "wall", "street", "crash", "."], "h": {"name": "recession", "pos": [31, 32]}, "t": {"name": "crash", "pos": [38, 39]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["once", "they", "grow", "there", ",", "the", "swelling", "and", "inflammation", "caused", "by", "the", "infection", "closes", "off", "the", "sac", ",", "causing", "it", "not", "to", "``", "shed", "''", "bacteria", ",", "and", "protecting", "the", "bacteria", "inside", "from", "antibiotics", "and", "your", "body", "'s", "own", "immune", "cells", "."], "h": {"name": "swelling", "pos": [6, 7]}, "t": {"name": "infection", "pos": [12, 13]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["guitars", "are", "played", "acoustically", ";", "the", "tone", "is", "produced", "by", "the", "vibration", "of", "the", "strings", "which", "is", "amplified", "by", "the", "body", "of", "the", "guitar", ",", "which", "acts", "as", "a", "large", "hollow", "resonating", "chamber", ",", "or", "they", "may", "rely", "on", "an", "amplifier", "that", "can", "electronically", "manipulate", "tone", "."], "h": {"name": "tone", "pos": [6, 7]}, "t": {"name": "vibration", "pos": [11, 12]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["arcane", "subtlety", "reduced", "the", "threat", "caused", "by", "polymorph", "by", "40", "%", "at", "max", "rank", ",", "though", "the", "threat", "caused", "by", "the", "spell", "is", "minimal", "."], "h": {"name": "threat", "pos": [17, 18]}, "t": {"name": "spell", "pos": [21, 22]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "beautiful", "hydrothermal", "features", "in", "the", "park", "(", "geysers", ",", "hot", "springs", ",", "mud", "pots", ",", "etc", ".", ")", ",", "the", "uplift", "and", "subsidence", ",", "and", "many", "of", "the", "earthquakes", "are", "caused", "by", "the", "movements", "of", "hydrothermal", "and/or", "magmatic", "fluids", "."], "h": {"name": "earthquakes", "pos": [29, 30]}, "t": {"name": "movements", "pos": [34, 35]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "discomfort", "from", "the", "injury", "was", "now", "precluding", "him", "from", "his", "occupation", "which", "involved", "prolonged", "procedures", "in", "the", "standing", "position", "."], "h": {"name": "discomfort", "pos": [1, 2]}, "t": {"name": "injury", "pos": [4, 5]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "tardiness", "however", "has", "been", "caused", "by", "the", "arrival", "of", "my", "old", "man", ";", "who", "in", "true", "bloodworth", "fashion", "has", "had", "me", "walking", "everywhere", "."], "h": {"name": "tardiness", "pos": [1, 2]}, "t": {"name": "arrival", "pos": [8, 9]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "river", "had", "now", "turned", "into", "full", "flood", "after", "the", "deluge", "of", "rain", "a", "few", "days", "ago", "."], "h": {"name": "flood", "pos": [7, 8]}, "t": {"name": "deluge", "pos": [10, 11]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["she", "mentioned", "the", "scandal", "caused", "by", "a", "bbc", "documentary", "on", "the", "treatment", "of", "children", "in", "a", "special-needs", "home", "and", "asked", "how", "the", "state", "had", "responded", "to", "these", "."], "h": {"name": "scandal", "pos": [3, 4]}, "t": {"name": "documentary", "pos": [8, 9]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "world", "health", "organization", "(", "who", ")", "found", "that", "the", "radiation", "release", "from", "the", "chernobyl", "accident", "was", "200", "times", "that", "of", "the", "hiroshima", "and", "nagasaki", "."], "h": {"name": "radiation", "pos": [10, 11]}, "t": {"name": "accident", "pos": [15, 16]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["also", ",", "in", "the", "midst", "of", "the", "confusion", "caused", "by", "the", "coup", ",", "the", "issuing", "of", "militant", "posters", "was", "a", "way", "for", "artists", "and", "organizations", "to", "declare", "their", "active", "engagement", "against", "the", "rebellion", "."], "h": {"name": "confusion", "pos": [7, 8]}, "t": {"name": "coup", "pos": [11, 12]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "various", "forms", "of", "idealistic", ",", "materialistic", "and", "agnostic", "philosophies", "are", "subject", "to", "the", "tension", "caused", "by", "the", "indicated", "situation", "."], "h": {"name": "tension", "pos": [14, 15]}, "t": {"name": "situation", "pos": [19, 20]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["contractions", "of", "the", "diaphragm", "are", "caused", "by", "stimulation", "of", "the", "vagus", "nerve", "either", "by", "the", "brain", "or", "by", "irritation", "anywhere", "along", "the", "length", "of", "the", "nerve", "."], "h": {"name": "contractions", "pos": [0, 1]}, "t": {"name": "irritation", "pos": [18, 19]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["plantar", "warts", "are", "caused", "by", "a", "virus", "that", "infects", "the", "outer", "layer", "of", "skin", "on", "the", "soles", "of", "the", "feet", "."], "h": {"name": "warts", "pos": [1, 2]}, "t": {"name": "virus", "pos": [6, 7]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["tension", "release", "by", "mega", "food", "contains", "sensoril", ",", "a", "clinically", "studied", "extract", "of", "a", "ashwagandha", "that", "helps", "to", "inhibit", "fatigue", "and", "physical", "tension", "from", "everyday", "stress", "."], "h": {"name": "tension", "pos": [22, 23]}, "t": {"name": "stress", "pos": [25, 26]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["dizziness", "from", "nasal", "and", "sinus", "pressure", "usually", "can", "be", "seen", "on", "a", "good", "nasal", "examination", "and", "a", "ct", "of", "the", "sinuses", "."], "h": {"name": "dizziness", "pos": [0, 1]}, "t": {"name": "sinus pressure", "pos": [4, 6]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["phobia", "like", "fear", "from", "crowd", ",", "fear", "from", "insects", ",", "fear", "from", "height", "etc", "all", "contribute", "in", "developing", "the", "anxiety", "disorder", "."], "h": {"name": "fear", "pos": [2, 3]}, "t": {"name": "crowd", "pos": [4, 5]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "hidden", "preamble", "or", "timing", "signal", "is", "employed", "to", "mark", "the", "time", "of", "commencement", "of", "the", "transmission", "of", "information", "pulses", "from", "a", "transmitter", "."], "h": {"name": "transmission", "pos": [16, 17]}, "t": {"name": "transmitter", "pos": [22, 23]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "increase", "of", "the", "signal", "might", "correspond", "to", "formation", "of", "the", "high-density", "excitons", ",", "while", "the", "reduction", "of", "the", "signal", "originates", "from", "the", "relaxation", "."], "h": {"name": "reduction", "pos": [16, 17]}, "t": {"name": "relaxation", "pos": [23, 24]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["we", "estimate", "a", "wind", "speed", "associated", "with", "the", "devastation", "caused", "by", "the", "tornado", "."], "h": {"name": "devastation", "pos": [8, 9]}, "t": {"name": "tornado", "pos": [12, 13]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "basic", "indicator", "of", "the", "health", "condition", "of", "trees", ",", "stands", "and", "forests", "is", "tree", "defoliation", "."], "h": {"name": "indicator", "pos": [2, 3]}, "t": {"name": "condition", "pos": [6, 7]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "deficits", "are", "caused", "by", "people", "saving", "too", "much", "of", "their", "money", "."], "h": {"name": "deficits", "pos": [1, 2]}, "t": {"name": "people", "pos": [5, 6]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["in", "developing", "countries", "four-fifths", "of", "all", "the", "illnesses", "are", "caused", "by", "water-borne", "diseases", ",", "with", "diarrhoea", "being", "the", "leading", "cause", "of", "childhood", "death", "."], "h": {"name": "illnesses", "pos": [7, 8]}, "t": {"name": "diseases", "pos": [12, 13]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "destruction", "caused", "by", "the", "bombing", "of", "attorney", "general", "palmer", "'s", "home", "."], "h": {"name": "destruction", "pos": [1, 2]}, "t": {"name": "bombing", "pos": [5, 6]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "second", "biggest", "factor", "affecting", "the", "sound", "produced", "by", "a", "drum", "is", "the", "tension", "at", "which", "the", "drum", "head", "is", "held", "against", "the", "shell", "of", "the", "drum", "."], "h": {"name": "sound", "pos": [6, 7]}, "t": {"name": "drum", "pos": [10, 11]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "largest", "landslide", "triggered", "by", "the", "earthquake", "is", "located", "approximately", "32", "kilometers", "southeast", "of", "muzafarrabad", "in", "a", "tributary", "valley", "of", "the", "jhelum", "river", "."], "h": {"name": "landslide", "pos": [2, 3]}, "t": {"name": "earthquake", "pos": [6, 7]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["a", "fire", "triggered", "by", "the", "blasts", "damaged", "eight", "buildings", "at", "the", "plant", ",", "including", "one", "that", "was", "burned", "down", "."], "h": {"name": "fire", "pos": [1, 2]}, "t": {"name": "blasts", "pos": [5, 6]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["relieve", "spinal", "stenosis", "by", "enlarging", "the", "spinal", "canal", "to", "relieve", "pressure", "on", "the", "spinal", "cord", "that", "has", "been", "caused", "by", "a", "herniated", "or", "bulging", "disc", "."], "h": {"name": "pressure", "pos": [10, 11]}, "t": {"name": "disc", "pos": [24, 25]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["passengers", "have", "rights", "in", "the", "event", "of", "a", "delay", "or", "cancellation", "that", "has", "been", "caused", "by", "the", "airline", "."], "h": {"name": "cancellation", "pos": [10, 11]}, "t": {"name": "airline", "pos": [17, 18]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["however", "susanoo", "was", "in", "sorrow", "after", "the", "loss", "of", "his", "mother", "and", "he", "was", "raging", "in", "his", "kingdom", "."], "h": {"name": "sorrow", "pos": [4, 5]}, "t": {"name": "loss", "pos": [7, 8]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["but", "the", "earthquake", "triggered", "by", "the", "eruption", "of", "thera", "struck", "first", "."], "h": {"name": "earthquake", "pos": [2, 3]}, "t": {"name": "eruption", "pos": [6, 7]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["getting", "help", "has", "reduced", "the", "time", "to", "reverse", "all", "the", "irritation", "that", "had", "been", "caused", "by", "the", "fungus", "."], "h": {"name": "irritation", "pos": [10, 11]}, "t": {"name": "fungus", "pos": [17, 18]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["on", "the", "other", "hand", ",", "the", "higher", "the", "satisfaction", "from", "the", "purchase", ",", "the", "greater", "the", "benefit", "of", "word-of-mouth", "referrals", "and", "repeat", "purchasing", "."], "h": {"name": "satisfaction", "pos": [8, 9]}, "t": {"name": "purchase", "pos": [11, 12]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["district", "judge", "without", "a", "jury", "and", "judgment", "was", "entered", "for", "the", "defendants", "on", "the", "ground", "that", "the", "accident", "was", "caused", "by", "the", "plaintiff", "'s", "own", "negligence", "."], "h": {"name": "accident", "pos": [17, 18]}, "t": {"name": "negligence", "pos": [25, 26]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "children", "descend", "the", "ladder", "after", "hearing", "the", "fire", "alarm", "which", "has", "been", "triggered", "by", "the", "wood", "work", "workshop", "catching", "fire", "."], "h": {"name": "alarm", "pos": [9, 10]}, "t": {"name": "fire", "pos": [20, 21]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "us", "patent", "system", "is", "in", "a", "crisis", "that", "has", "been", "caused", "by", "the", "flood", "of", "patent", "applications", "being", "filed", "at", "the", "uspto", "every", "year", "."], "h": {"name": "crisis", "pos": [7, 8]}, "t": {"name": "flood", "pos": [14, 15]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["viral", "gastroenteritis", "is", "a", "highly", "contagious", "infection", "of", "the", "intestines", "caused", "by", "one", "of", "several", "viruses", "."], "h": {"name": "infection", "pos": [6, 7]}, "t": {"name": "viruses", "pos": [15, 16]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["we", "explore", "the", "experience", "of", "grief", "after", "the", "loss", "of", "a", "parent", "and", "offers", "support", ";", "we", "also", "make", "simple", "suggestions", ",", "and", "we", "provide", "a", "place", "for", "sharing", "memories", "."], "h": {"name": "grief", "pos": [5, 6]}, "t": {"name": "loss", "pos": [8, 9]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "war", "mentality", "was", "generated", "by", "the", "iraq", "war", "in", "combination", "with", "the", "constant", "drum", "beat", "of", "fear", "at", "home", "."], "h": {"name": "mentality", "pos": [2, 3]}, "t": {"name": "war", "pos": [8, 9]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["sip", "the", "tea", "slowly", "to", "reduce", "stomach", "pain", "from", "indigestion", ",", "bloating", "and", "feeling", "of", "fullness", "."], "h": {"name": "pain", "pos": [7, 8]}, "t": {"name": "indigestion", "pos": [9, 10]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["in", "businesses", "generally", "the", "third", "party", "claims", "for", "the", "damages", "that", "has", "been", "caused", "by", "the", "company", "vehicle", "."], "h": {"name": "damages", "pos": [9, 10]}, "t": {"name": "vehicle", "pos": [17, 18]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["during", "the", "trial", ",", "the", "prosecution", "presented", "``", "pictures", "of", "burning", "bodies", "and", "human", "remains", "as", "well", "as", "images", "of", "the", "explosion", "triggered", "by", "the", "pentagon", "crash", ".", "''"], "h": {"name": "explosion", "pos": [21, 22]}, "t": {"name": "crash", "pos": [26, 27]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["extensive", "damage", "at", "the", "mine", "has", "been", "caused", "by", "the", "strikers", "."], "h": {"name": "damage", "pos": [1, 2]}, "t": {"name": "strikers", "pos": [10, 11]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["i", "too", ",", "get", "a", "headache", "from", "wine", ",", "and", "was", "always", "told", "that", "it", "was", "the", "sulfites", "."], "h": {"name": "headache", "pos": [5, 6]}, "t": {"name": "wine", "pos": [7, 8]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["describing", "all", "of", "the", "harm", "caused", "by", "the", "hurricane", "has", "filled", "entire", "books", "so", "this", "web", "page", "summarizes", "the", "total", "damage", "and", "focuses", "on", "the", "damage", "incurred", "on", "long", "island", ",", "new", "york", "."], "h": {"name": "harm", "pos": [4, 5]}, "t": {"name": "hurricane", "pos": [8, 9]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["information", "is", "included", "on", "the", "disease", "caused", "by", "the", "organism", ",", "its", "transmission", ",", "geographical", "distribution", ",", "and", "hosts", "."], "h": {"name": "disease", "pos": [5, 6]}, "t": {"name": "organism", "pos": [9, 10]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["i", "was", "diagnosed", "with", "bipolar", "disorder", "following", "a", "breakdown", "triggered", "by", "the", "sudden", "death", "of", "my", "brother", "six", "years", "ago", "."], "h": {"name": "breakdown", "pos": [8, 9]}, "t": {"name": "death", "pos": [13, 14]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["convulsions", "that", "occur", "after", "dtap", "are", "caused", "by", "a", "fever", "."], "h": {"name": "convulsions", "pos": [0, 1]}, "t": {"name": "fever", "pos": [9, 10]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["as", "the", "vehicles", "caught", "fire", "after", "the", "collision", ",", "the", "transformers", "began", "to", "explode", "one", "after", "the", "other", "."], "h": {"name": "fire", "pos": [4, 5]}, "t": {"name": "collision", "pos": [7, 8]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["chronic", "daily", "headaches", "are", "tension", "headaches", "or", "headaches", "which", "are", "caused", "by", "taking", "too", "many", "pain", "killers", "."], "h": {"name": "headaches", "pos": [7, 8]}, "t": {"name": "pain killers", "pos": [15, 17]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["pneumococcal", "meningitis", "is", "caused", "by", "pneumococcus", "bacteria", ",", "which", "also", "cause", "several", "diseases", "of", "the", "respiratory", "system", ",", "including", "pneumonia", "."], "h": {"name": "meningitis", "pos": [1, 2]}, "t": {"name": "bacteria", "pos": [6, 7]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["also", "(", "on", "a", "proportional", "basis", ")", "the", "rainbow", "caused", "by", "the", "spray", "appeared", "smaller", "than", "that", "of", "the", "other", "rainbow", "."], "h": {"name": "rainbow", "pos": [8, 9]}, "t": {"name": "spray", "pos": [12, 13]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "changes", "now", "seen", "in", "the", "endometrium", "are", "caused", "by", "a", "hormone", "called", "progesterone", "."], "h": {"name": "changes", "pos": [1, 2]}, "t": {"name": "hormone", "pos": [11, 12]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["weak", "ligaments", "are", "caused", "by", "problems", "with", "collagen", "(", "protein", "fibres", "in", "the", "ligaments", ")", "."], "h": {"name": "weak ligaments", "pos": [0, 2]}, "t": {"name": "problems", "pos": [5, 6]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["for", "decades", ",", "most", "of", "the", "nation", "'s", "renewable", "power", "has", "come", "from", "dams", ",", "which", "supplied", "cheap", "electricity", "without", "requiring", "fossil", "fuels", "."], "h": {"name": "power", "pos": [9, 10]}, "t": {"name": "dams", "pos": [13, 14]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "optical", "signal", "is", "generated", "by", "an", "externally", "modulated", "tunable", "laser", ",", "and", "introduced", "to", "the", "chip", "through", "a", "tapered", "fiber", "."], "h": {"name": "signal", "pos": [2, 3]}, "t": {"name": "laser", "pos": [10, 11]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "byelection", "was", "caused", "by", "the", "resignation", "of", "boris", "johnson", "following", "his", "election", "as", "mayor", "of", "london", "in", "may", "."], "h": {"name": "byelection", "pos": [1, 2]}, "t": {"name": "resignation", "pos": [6, 7]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["swissair", "was", "a", "victim", "of", "the", "clandestine", "wealth-transfer", "plaguing", "the", "productive", "sector", "as", "a", "result", "of", "the", "falling", "interest-rate", "structure", "caused", "by", "bond", "speculation", "."], "h": {"name": "structure", "pos": [19, 20]}, "t": {"name": "speculation", "pos": [23, 24]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["he", "received", "reports", "from", "the", "residence", "hall", "presidents", "regarding", "evacuation", "after", "the", "fire", "drill", "."], "h": {"name": "evacuation", "pos": [9, 10]}, "t": {"name": "drill", "pos": [13, 14]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "tsunamis", "triggered", "by", "the", "massive", "earthquakes", "plunged", "those", "provinces", "into", "crisis", ":", "the", "number", "of", "people", "dead", "and", "missing", "has", "reached", "to", "245,782", "people", "."], "h": {"name": "tsunamis", "pos": [1, 2]}, "t": {"name": "earthquakes", "pos": [6, 7]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["we", "have", "to", "take", "into", "account", "the", "reality", "of", "the", "damage", "that", "has", "been", "caused", "by", "the", "deregulation", "of", "nutritional", "supplements", "."], "h": {"name": "damage", "pos": [10, 11]}, "t": {"name": "deregulation", "pos": [17, 18]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "disruption", "has", "been", "caused", "by", "a", "sensitivity", "reaction", "in", "the", "brain", "to", "an", "ingested", "substance", "."], "h": {"name": "disruption", "pos": [1, 2]}, "t": {"name": "substance", "pos": [15, 16]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "enormous", "landslide", ",", "which", "was", "triggered", "by", "an", "exceptionally", "heavy", "rainfall", "event", "(", "500", "mm", "in", "24", "h", ")", "on", "30", "october", "1998", "."], "h": {"name": "landslide", "pos": [2, 3]}, "t": {"name": "rainfall", "pos": [11, 12]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "pain", "was", "caused", "by", "the", "parasite", "entering", "the", "body", "through", "the", "skin", "during", "bathing", "or", "drinking", "of", "infested", "water", "."], "h": {"name": "pain", "pos": [1, 2]}, "t": {"name": "parasite", "pos": [6, 7]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "reaction", "starts", "at", "a", "rather", "low", "temperature", "(", "+", "5c", ")", ",", "and", "the", "calorimeter", "is", "run", "from", "40", "to", "130c", "."], "h": {"name": "reaction", "pos": [1, 2]}, "t": {"name": "temperature", "pos": [7, 8]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["i", "derive", "a", "tremendous", "amount", "of", "joy", "from", "teaching", "students", "in", "the", "research", "laboratory", "."], "h": {"name": "joy", "pos": [6, 7]}, "t": {"name": "teaching", "pos": [8, 9]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["a", "very", "serious", "problem", "ensued", "from", "the", "events", "of", "the", "day", "."], "h": {"name": "problem", "pos": [3, 4]}, "t": {"name": "events", "pos": [7, 8]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["a", "first", "revolution", "was", "triggered", "by", "the", "growing", "use", "of", "reading", "and", "writing", "."], "h": {"name": "revolution", "pos": [2, 3]}, "t": {"name": "writing", "pos": [12, 13]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "vibration", "caused", "by", "a", "heavy", "goods", "train", "on", "the", "metropolitan", "railway", ",", "which", "runs", "under", "the", "exhibition", "premises", ",", "had", "shaken", "the", "figure", "off", "its", "balance", "."], "h": {"name": "vibration", "pos": [1, 2]}, "t": {"name": "train", "pos": [7, 8]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["voltage", "surges", "or", "spikes", "are", "caused", "by", "lightning", ",", "short", "circuits", ",", "power", "company", "equipment", "problems", ",", "and", "inductive", "spikes", ",", "among", "many", "other", "causes", "."], "h": {"name": "surges", "pos": [1, 2]}, "t": {"name": "lightning", "pos": [7, 8]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "recovery", "is", "weak", "and", "fragile", ",", "and", "the", "economic", "and", "social", "damage", "caused", "by", "the", "crisis", "is", "long-lasting", "."], "h": {"name": "damage", "pos": [12, 13]}, "t": {"name": "crisis", "pos": [16, 17]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "cutaneous", "mycoses", "are", "caused", "by", "a", "homogeneous", "group", "of", "keratinophilic", "fungi", "termed", "the", "dermatophytes", "."], "h": {"name": "mycoses", "pos": [2, 3]}, "t": {"name": "fungi", "pos": [11, 12]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["recovery", "from", "the", "global", "economic", "crisis", "triggered", "by", "the", "collapse", "of", "lehman", "brothers", "was", "achieved", "with", "cooperation", "from", "brazil", ",", "russia", ",", "india", "and", "china", "."], "h": {"name": "crisis", "pos": [5, 6]}, "t": {"name": "collapse", "pos": [9, 10]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["swelling", "of", "the", "resin", "is", "caused", "by", "the", "expansion", "of", "the", "structure", "as", "a", "result", "of", "water", "(", "or", "other", "liquid", ")", "molecules", "penetrating", "the", "matrix", "."], "h": {"name": "swelling", "pos": [0, 1]}, "t": {"name": "expansion", "pos": [8, 9]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["there", "were", "setbacks", "and", "technical", "problems", "that", "ensued", "from", "the", "location", "design", ",", "flooding", ",", "and", "moisture", "that", "plagued", "the", "winery", "and", "bumped", "up", "the", "investment", "cost", "beyond", "the", "initial", "budgetary", "estimates", "."], "h": {"name": "setbacks", "pos": [2, 3]}, "t": {"name": "design", "pos": [11, 12]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["we", "find", "evidence", "that", "ernst", "suffered", "a", "thrombotic", "cardiovascular", "event", ",", "i.e.", ",", "a", "myocardial", "infraction", "triggered", "by", "a", "blood", "clot", "."], "h": {"name": "infraction", "pos": [15, 16]}, "t": {"name": "clot", "pos": [20, 21]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "breakdown", "of", "the", "linear", "relation", "of", "j,1", "d", "at", "peakeffect", "region", "indicates", "that", "the", "peakeffect", "originates", "from", "an", "addition", "pinning", "effect", "."], "h": {"name": "peakeffect", "pos": [15, 16]}, "t": {"name": "effect", "pos": [21, 22]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["however", ",", "a", "headache", "from", "wine", "is", "often", "stronger", "and", "last", "longer", "due", "to", "several", "compounds", "."], "h": {"name": "headache", "pos": [3, 4]}, "t": {"name": "wine", "pos": [5, 6]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["we", "discovered", "that", "my", "chronic", "migraines", "and", "neck", "pain", "were", "caused", "by", "the", "injuries", "i", "had", "sustained", "in", "my", "first", "car", "accident", "two", "and", "a", "half", "years", "ago", "."], "h": {"name": "migraines", "pos": [5, 6]}, "t": {"name": "injuries", "pos": [13, 14]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["he", "schose", "the", "better", "approach", ":", "to", "be", "honest", "and", "understanding", "and", "to", "acknowledge", "the", "distress", "caused", "by", "the", "hallucinations", "or", "delusions", "."], "h": {"name": "distress", "pos": [15, 16]}, "t": {"name": "delusions", "pos": [21, 22]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "best", "kept", "secret", "for", "avoiding", "abdominal", "weight", "gain", "due", "to", "stress", "is", "the", "use", "of", "adaptogens", "."], "h": {"name": "weight gain", "pos": [7, 9]}, "t": {"name": "stress", "pos": [11, 12]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["vietnam", "'s", "response", "on", "the", "toll", "caused", "by", "the", "earthquake", "in", "sichuan", ",", "china", "."], "h": {"name": "toll", "pos": [5, 6]}, "t": {"name": "earthquake", "pos": [9, 10]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["their", "analysis", "demonstrates", "beyond", "any", "doubt", "that", "the", "problem", "of", "unemployment", "has", "been", "caused", "by", "the", "state", ",", "not", "by", "any", "inherent", "flaws", "or", "failures", "in", "a", "free", "market", "."], "h": {"name": "problem", "pos": [8, 9]}, "t": {"name": "state", "pos": [16, 17]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["it", "seems", "like", "the", "fever", "heat", "got", "pushed", "out", "from", "the", "body", "as", "rashes", "."], "h": {"name": "heat", "pos": [5, 6]}, "t": {"name": "body", "pos": [11, 12]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "yellow", "discolouration", "has", "been", "caused", "by", "the", "damaging", "acidic", "properties", "of", "the", "low-grade", "mount", "used", "in", "the", "original", "frame", "."], "h": {"name": "discolouration", "pos": [2, 3]}, "t": {"name": "properties", "pos": [10, 11]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "damage", "caused", "by", "the", "tsunami", "-", "at", "least", "the", "physical", "damage", "-", "is", "barely", "visible", "in", "some", "places", "."], "h": {"name": "damage", "pos": [1, 2]}, "t": {"name": "tsunami", "pos": [5, 6]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "gaps", "in", "the", "rings", "are", "caused", "by", "resonance", "between", "the", "particles", "in", "the", "rings", "and", "the", "moons", "orbiting", "nearby", "."], "h": {"name": "gaps", "pos": [1, 2]}, "t": {"name": "resonance", "pos": [8, 9]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["over", "90", "%", "of", "the", "cases", "of", "ringworm", "of", "the", "scalp", "are", "caused", "by", "trichophyton", "tonsurans", ",", "a", "fungus", "that", "infects", "the", "hairs", "and", "causes", "them", "to", "break", "."], "h": {"name": "ringworm", "pos": [7, 8]}, "t": {"name": "fungus", "pos": [18, 19]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["many", "shoulder", "problems", "are", "caused", "by", "the", "breakdown", "of", "soft", "tissues", "in", "the", "shoulder", "region", "."], "h": {"name": "shoulder problems", "pos": [1, 3]}, "t": {"name": "breakdown", "pos": [7, 8]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["tulip", "mania", ",", "in", "the", "1600s", ",", "was", "caused", "by", "the", "massive", "influx", "of", "newly", "discovered", "gold", "into", "amsterdam", "from", "the", "new", "world", ":", "in", "particular", "the", "capture", "of", "the", "spanish", "treasury", "fleet", "."], "h": {"name": "mania", "pos": [1, 2]}, "t": {"name": "influx", "pos": [12, 13]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["currently", ",", "there", "is", "no", "known", "cure", "for", "asbestos", "cancer", "but", "several", "mesothelioma", "treatment", "regimens", "have", "proven", "to", "be", "successful", "in", "helping", "the", "patient", "avoid", "pain", "and", "discomfort", "caused", "by", "the", "disease", "."], "h": {"name": "pain", "pos": [25, 26]}, "t": {"name": "disease", "pos": [31, 32]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "patient", "experiences", "displaced", "emotional", "and", "financial", "deprivation", "as", "well", "as", "anger", "after", "the", "divorce", "."], "h": {"name": "deprivation", "pos": [7, 8]}, "t": {"name": "divorce", "pos": [14, 15]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["yellow", "fever", "is", "caused", "by", "infection", "with", "yellow", "fever", "virus", ",", "which", "is", "transmitted", "by", "the", "bite", "of", "infected", "mosquitoes", "."], "h": {"name": "fever", "pos": [1, 2]}, "t": {"name": "virus", "pos": [9, 10]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["even", "though", "his", "16-month", "old", "suffered", "from", "severe", "burns", "on", "her", "body", "caused", "by", "boiling", "water", "spilled", "on", "her", ",", "father", "refuses", "to", "allow", "ambulance", "to", "take", "his", "daughter", "to", "hadassah", "because", "'rabbi", "advised", "otherwise", "'", "."], "h": {"name": "burns", "pos": [8, 9]}, "t": {"name": "boiling water", "pos": [14, 16]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["botulism", "is", "a", "rare", "but", "serious", "paralytic", "illness", "caused", "by", "a", "nerve", "toxin", "that", "is", "produced", "by", "the", "bacterium", "clostridium", "botulinum", "."], "h": {"name": "illness", "pos": [7, 8]}, "t": {"name": "toxin", "pos": [12, 13]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "benefits", "from", "inflation", "which", "professor", "mulligan", "cites", "(", "e.g.", ",", "bailing", "out", "underwater", "mortgagers", ")", "are", "better", "understood", "as", "a", "government", "sponsored", "transfer", "of", "wealth", "from", "savers", "to", "speculators", "."], "h": {"name": "benefits", "pos": [1, 2]}, "t": {"name": "inflation", "pos": [3, 4]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "concerto", "comes", "from", "the", "pop", "of", "gas", "bubbles", "escaping", "the", "joints", ",", "snapping", "tendons", "and", "ligaments", ",", "and", "rickety", "arthritic", "joints", "."], "h": {"name": "concerto", "pos": [1, 2]}, "t": {"name": "pop", "pos": [5, 6]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["evacuees", "with", "disabilities", "had", "a", "difficult", "time", "conveying", "the", "trauma", "caused", "by", "the", "unexpected", "arrival", "of", "uniformed", "officers", "who", "ordered", "them", "out", "of", "their", "homes", "and", "sometimes", "forcibly", "removed", "them", "."], "h": {"name": "trauma", "pos": [9, 10]}, "t": {"name": "arrival", "pos": [14, 15]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "cysts", "are", "caused", "by", "chronic", "inflammation", "of", "the", "perichondrium", "with", "production", "of", "serous", "fluid", "between", "the", "perichondrium", "and", "cartilage", "."], "h": {"name": "cysts", "pos": [1, 2]}, "t": {"name": "inflammation", "pos": [6, 7]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["some", "posters", "(", "e.g", ".", "number", "18", ")", "encouraged", "the", "population", "of", "areas", "near", "the", "front", "to", "evacuate", ",", "thus", "avoiding", "the", "overcrowding", "and", "ensuing", "problems", "of", "food", "distribution", "and", "disease", "caused", "by", "the", "incoming", "refugees", "."], "h": {"name": "disease", "pos": [30, 31]}, "t": {"name": "refugees", "pos": [35, 36]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "violence", "has", "been", "caused", "by", "the", "hutu", "militia", "who", "fled", "rwanda", "after", "the", "genocide", "in", "that", "country", "and", "who", "have", "been", "in", "hiding", "in", "the", "forest", "in", "congo", "."], "h": {"name": "violence", "pos": [1, 2]}, "t": {"name": "militia", "pos": [8, 9]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["lena", "basilone", ",", "a", "cook", "at", "camp", "pendleton", ",", "was", "in", "the", "hospital", "recovering", "from", "a", "severe", "kitchen", "burn", "after", "the", "spilling", "of", "scalding", "liquid", "on", "her", "feet", "."], "h": {"name": "burn", "pos": [18, 19]}, "t": {"name": "spilling", "pos": [21, 22]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["gross", "revenues", "from", "the", "selling", "of", "crude", "oil", "in", "2003", "reached", "us", "$", "11.508", "billion", "or", "some", "112.85", "percent", "of", "the", "amount", "targeted", "in", "the", "2003", "state", "budget", "."], "h": {"name": "revenues", "pos": [1, 2]}, "t": {"name": "selling", "pos": [4, 5]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["whooping", "cough", "is", "another", "name", "for", "the", "pertussis", ",", "an", "infection", "of", "the", "airways", "caused", "by", "the", "bacteria", "bordetella", "pertussis", "."], "h": {"name": "infection", "pos": [10, 11]}, "t": {"name": "bacteria", "pos": [17, 18]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["and", "it", "is", "why", "we", "are", "even", "prouder", "to", "announce", "that", "the", "appeal", "-", "thanks", "to", "the", "generosity", "of", "our", "readers", "-", "has", "raised", "26,000", "pounds", ",", "despite", "the", "hardship", "that", "has", "been", "caused", "by", "the", "recession", "."], "h": {"name": "hardship", "pos": [29, 30]}, "t": {"name": "recession", "pos": [36, 37]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "problems", "are", "caused", "by", "buffer", "overflows", "when", "parsing", "an", "overly", "long", "parameter", "."], "h": {"name": "problems", "pos": [1, 2]}, "t": {"name": "overflows", "pos": [6, 7]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["discussion", "ensued", "from", "the", "florida", "contingent", "on", "the", "fact", "that", "very", "stringent", "landowner", "protection", "laws", "in", "florida", "make", "it", "imperative", "that", "the", "highest", "supportable", "appraised", "vallue", "be", "offered", "first", "."], "h": {"name": "discussion", "pos": [0, 1]}, "t": {"name": "contingent", "pos": [5, 6]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["symptoms", "vary", "according", "to", "the", "degree", "of", "inflammation", "caused", "by", "the", "bacteria", ",", "ranging", "from", "slightly", "loose", "stools", "to", "bloody", "diarrhea", ",", "abdominal", "pain", ",", "and", "fever", "."], "h": {"name": "inflammation", "pos": [7, 8]}, "t": {"name": "bacteria", "pos": [11, 12]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["people", "have", "been", "moving", "back", "into", "downtown", "."], "h": {"name": "people", "pos": [0, 1]}, "t": {"name": "downtown", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "solute", "was", "placed", "inside", "a", "beaker", "and", "5", "ml", "of", "the", "solvent", "was", "pipetted", "into", "a", "25", "ml", "glass", "flask", "for", "each", "trial", "."], "h": {"name": "solvent", "pos": [12, 13]}, "t": {"name": "flask", "pos": [20, 21]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["it", "describes", "a", "method", "for", "loading", "a", "horizontal", "stack", "of", "containers", "into", "a", "carton", "."], "h": {"name": "stack", "pos": [8, 9]}, "t": {"name": "carton", "pos": [13, 14]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["both", "his", "feet", "have", "been", "moving", "into", "the", "ball", "."], "h": {"name": "feet", "pos": [2, 3]}, "t": {"name": "ball", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["as", "a", "control", ",", "cowpea", "was", "sealed", "in", "double", "bags", "without", "fumigant", "."], "h": {"name": "cowpea", "pos": [4, 5]}, "t": {"name": "double bags", "pos": [8, 10]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["we", "poured", "the", "milk", "into", "the", "pumpkin", "mixture", "."], "h": {"name": "milk", "pos": [3, 4]}, "t": {"name": "pumpkin mixture", "pos": [6, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "epithelium", "from", "the", "knockout", "mouse", "bladder", "is", "migrating", "into", "the", "transplanted", "matrix", "."], "h": {"name": "epithelium", "pos": [1, 2]}, "t": {"name": "matrix", "pos": [12, 13]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["a", "large", "marble", "was", "dropped", "into", "the", "bowl", "."], "h": {"name": "marble", "pos": [2, 3]}, "t": {"name": "bowl", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["he", "posted", "the", "answers", "to", "the", "website", "."], "h": {"name": "answers", "pos": [3, 4]}, "t": {"name": "website", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["one", "tablet", "per", "quart", "was", "dropped", "into", "a", "canteen", "and", "made", "the", "water", "safe", "to", "drink", "."], "h": {"name": "tablet", "pos": [1, 2]}, "t": {"name": "canteen", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["individual", "investors", "moved", "into", "the", "property", "."], "h": {"name": "investors", "pos": [1, 2]}, "t": {"name": "property", "pos": [5, 6]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "prosecutors", "carried", "guns", "into", "the", "court", "room", "."], "h": {"name": "guns", "pos": [3, 4]}, "t": {"name": "court room", "pos": [6, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["chemical", "weapons", "have", "been", "dropped", "into", "the", "lake", "."], "h": {"name": "chemical weapons", "pos": [0, 2]}, "t": {"name": "lake", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["this", "book", "has", "transported", "readers", "into", "ancient", "times", "."], "h": {"name": "readers", "pos": [4, 5]}, "t": {"name": "ancient times", "pos": [6, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["he", "rescheduled", "the", "birthday", "party", "to", "the", "next", "day", "."], "h": {"name": "party", "pos": [4, 5]}, "t": {"name": "next day", "pos": [7, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["people", "have", "travelled", "into", "space", ",", "but", "not", "the", "deep", "ocean", "."], "h": {"name": "people", "pos": [0, 1]}, "t": {"name": "space", "pos": [4, 5]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["this", "machine", "is", "blowing", "sand", "into", "molds", "."], "h": {"name": "sand", "pos": [4, 5]}, "t": {"name": "molds", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["this", "is", "how", "grain", "was", "delivered", "to", "the", "wooden", "grain", "bins", "and", "hay", "was", "put", "inside", "the", "upper", "part", "of", "the", "rock", "barn", "."], "h": {"name": "hay", "pos": [12, 13]}, "t": {"name": "barn", "pos": [22, 23]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["when", "woody", "harrelson", "received", "a", "copy", "of", "the", "screenplay", "for", "``", "zombieland", "''", "last", "year", ",", "he", "stuffed", "the", "paper", "into", "his", "duffel", "bag", "of", "unread", "scripts", "and", "promptly", "forgot", "about", "it", "."], "h": {"name": "paper", "pos": [19, 20]}, "t": {"name": "bag", "pos": [23, 24]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["a", "program", "has", "fetched", "data", "into", "host", "variable", "arrays", "."], "h": {"name": "data", "pos": [4, 5]}, "t": {"name": "arrays", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["recently", ",", "only", "insignificant", "things", "arrive", "to", "theatres", "."], "h": {"name": "things", "pos": [4, 5]}, "t": {"name": "theatres", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["as", "the", "us", "and", "colombian", "military", "put", "pressure", "on", "drug", "traffickers", ",", "operations", "are", "migrating", "into", "nearby", "countries", "."], "h": {"name": "operations", "pos": [12, 13]}, "t": {"name": "nearby countries", "pos": [16, 18]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["they", "incorporated", "the", "immigrant", "flows", "into", "microsimulation", "."], "h": {"name": "immigrant flows", "pos": [3, 5]}, "t": {"name": "microsimulation", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "boy", "accidentally", "went", "into", "the", "girl", "'s", "bathroom", "."], "h": {"name": "boy", "pos": [1, 2]}, "t": {"name": "bathroom", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["hundreds", "of", "toxic", "chemicals", "were", "released", "into", "the", "atmosphere", "."], "h": {"name": "chemicals", "pos": [3, 4]}, "t": {"name": "atmosphere", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["all", "bookmarks", "have", "been", "exported", "to", "a", "single", "file", "."], "h": {"name": "bookmarks", "pos": [1, 2]}, "t": {"name": "file", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "indenter", "is", "pushed", "into", "the", "material", ",", "and", "both", "the", "load", "and", "displacement", "increase", "."], "h": {"name": "indenter", "pos": [1, 2]}, "t": {"name": "material", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "latest", "issue", "of", "five", "bells", "has", "been", "sent", "to", "poet", "union", "members", "."], "h": {"name": "issue", "pos": [2, 3]}, "t": {"name": "members", "pos": [12, 13]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "inhabitants", "send", "messages", "to", "each", "other", "by", "placing", "the", "message", "in", "a", "capsule", "and", "placing", "the", "capsule", "in", "a", "message", "tube", "."], "h": {"name": "capsule", "pos": [17, 18]}, "t": {"name": "tube", "pos": [21, 22]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["mayans", "charted", "venus", "'s", "motion", "across", "the", "sky", ",", "poured", "chocolate", "into", "jars", "and", "interred", "them", "with", "the", "dead", "."], "h": {"name": "chocolate", "pos": [10, 11]}, "t": {"name": "jars", "pos": [12, 13]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["he", "inserted", "a", "needle", "into", "the", "tattoo", "machine", "."], "h": {"name": "needle", "pos": [3, 4]}, "t": {"name": "machine", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "letter", "was", "sent", "from", "group", "to", "group", "of", "the", "dispersed", "believers", "to", "try", "and", "build", "them", "up", "``", "to", "encourage", "them", "''", "to", "fill", "them", "with", "hope", "."], "h": {"name": "letter", "pos": [1, 2]}, "t": {"name": "group", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["after", "soaking", "them", "overnight", ",", "we", "slipped", "the", "beans", "into", "a", "fairly", "wide-necked", "wine", "flask", "that", "'s", "been", "peeled", "of", "its", "straw", "wrapper", "."], "h": {"name": "beans", "pos": [8, 9]}, "t": {"name": "flask", "pos": [14, 15]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["i", "have", "imported", "an", "audio", "book", "into", "the", "software", "."], "h": {"name": "book", "pos": [5, 6]}, "t": {"name": "software", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "soldiers", "moved", "into", "the", "deep", "jungle", "."], "h": {"name": "soldiers", "pos": [1, 2]}, "t": {"name": "jungle", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["a", "baby", "girl", "was", "murdered", "and", "her", "body", "stuffed", "in", "a", "sack", "and", "dumped", "in", "a", "water", "body", "in", "the", "capital", "'s", "pallabi", "area", "."], "h": {"name": "body", "pos": [7, 8]}, "t": {"name": "sack", "pos": [11, 12]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "new", "model", "is", "moving", "into", "new", "territory", "with", "revisions", "."], "h": {"name": "model", "pos": [2, 3]}, "t": {"name": "territory", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["in", "a", "desperate", "attempt", ",", "the", "company", "poured", "money", "into", "the", "project", "."], "h": {"name": "money", "pos": [8, 9]}, "t": {"name": "project", "pos": [11, 12]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["she", "has", "fetched", "the", "poodle", "into", "the", "same", "acre", "of", "ground", "as", "pup", "."], "h": {"name": "poodle", "pos": [4, 5]}, "t": {"name": "acre", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["we", "placed", "some", "wax", "into", "the", "old", "tin", "can", "."], "h": {"name": "wax", "pos": [3, 4]}, "t": {"name": "can", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["billions", "flow", "into", "unit", "trust-linked", "products", "."], "h": {"name": "billions", "pos": [0, 1]}, "t": {"name": "products", "pos": [5, 6]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "company", "rescheduled", "the", "new", "construction", "to", "early", "next", "year", "."], "h": {"name": "construction", "pos": [5, 6]}, "t": {"name": "next year", "pos": [8, 10]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["past", "consciousness", "is", "travelling", "into", "the", "future", "."], "h": {"name": "consciousness", "pos": [1, 2]}, "t": {"name": "future", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["he", "held", "the", "vessel", "with", "his", "right", "hand", "and", "poured", "water", "into", "his", "left", "hand", ",", "and", "washed", "his", "hands", "up", "to", "the", "wrist", "."], "h": {"name": "water", "pos": [10, 11]}, "t": {"name": "hand", "pos": [14, 15]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "melt", "water", "has", "transported", "sediments", "into", "the", "lake", "."], "h": {"name": "sediments", "pos": [5, 6]}, "t": {"name": "lake", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "intestines", "have", "migrated", "into", "the", "abdomen", "from", "the", "umbilical", "cord", "."], "h": {"name": "intestines", "pos": [1, 2]}, "t": {"name": "abdomen", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "remaining", "power", "is", "exported", "to", "the", "grid", "."], "h": {"name": "power", "pos": [2, 3]}, "t": {"name": "grid", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "sinus", "rinse", "went", "into", "ear", "canal", "."], "h": {"name": "sinus rinse", "pos": [1, 3]}, "t": {"name": "ear canal", "pos": [5, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["cold", "air", "at", "the", "surface", "moved", "southward", "into", "the", "mountains", "of", "colorado", "."], "h": {"name": "cold air", "pos": [0, 2]}, "t": {"name": "mountains", "pos": [9, 10]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["fall", "planting", "can", "not", "be", "completed", "before", "the", "ground", "freezes", ",", "so", "i", "stored", "the", "seeds", "in", "a", "stratification", "unit", "until", "spring", "."], "h": {"name": "seeds", "pos": [15, 16]}, "t": {"name": "stratification unit", "pos": [18, 20]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "fibre", "pellets", "were", "blown", "into", "cavities", "using", "special", "equipment", "."], "h": {"name": "pellets", "pos": [2, 3]}, "t": {"name": "cavities", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["flowers", "are", "carried", "into", "the", "chapel", "."], "h": {"name": "flowers", "pos": [0, 1]}, "t": {"name": "chapel", "pos": [5, 6]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["this", "oil", "company", "imports", "oil", "to", "some", "countries", "illegally", "."], "h": {"name": "oil", "pos": [4, 5]}, "t": {"name": "countries", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["paternally", "derived", "genetic", "material", "is", "inherited", "to", "the", "next", "generation", "."], "h": {"name": "genetic material", "pos": [2, 4]}, "t": {"name": "generation", "pos": [9, 10]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["english", "cricket", "has", "now", "been", "dragged", "into", "the", "whole", "revolting", "business", "."], "h": {"name": "cricket", "pos": [1, 2]}, "t": {"name": "business", "pos": [10, 11]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "space", "monkey", "travels", "into", "space", "."], "h": {"name": "space monkey", "pos": [1, 3]}, "t": {"name": "space", "pos": [5, 6]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "plain", "http", "request", "was", "sent", "to", "an", "https", "port", "."], "h": {"name": "request", "pos": [3, 4]}, "t": {"name": "port", "pos": [9, 10]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "small", "box", "was", "placed", "inside", "the", "large", "box", "and", "the", "4-inch", "of", "surrounding", "space", "filled", "with", "either", "shredded", "fabric", ",", "fiberglass", "insulation", "or", "no", "insulation", "."], "h": {"name": "box", "pos": [2, 3]}, "t": {"name": "box", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["as", "his", "hand", "was", "put", "inside", "the", "glass", "box", ",", "he", "had", "to", "guess", "what", "creepy", "animal", "was", "inside", "."], "h": {"name": "hand", "pos": [2, 3]}, "t": {"name": "box", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["recently", ",", "a", "huge", "amount", "of", "commercial", "fish", "and", "shellfish", "have", "migrated", "to", "cooler", "water", "."], "h": {"name": "fish", "pos": [7, 8]}, "t": {"name": "water", "pos": [14, 15]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "murder", "has", "dragged", "the", "victim", "into", "the", "water", "."], "h": {"name": "victim", "pos": [5, 6]}, "t": {"name": "water", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["too", "often", ",", "students", "were", "misplaced", "into", "alternative", "schools", "."], "h": {"name": "students", "pos": [3, 4]}, "t": {"name": "schools", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["two", "prices", "arrived", "to", "the", "hotel", "."], "h": {"name": "prices", "pos": [1, 2]}, "t": {"name": "hotel", "pos": [5, 6]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["recently", ",", "in", "china", ",", "more", "people", "are", "moving", "into", "big", "cities", "."], "h": {"name": "people", "pos": [6, 7]}, "t": {"name": "cities", "pos": [11, 12]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "senator", "donated", "money", "to", "a", "local", "charity", "."], "h": {"name": "money", "pos": [3, 4]}, "t": {"name": "charity", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["narcotic", "goods", "have", "been", "imported", "into", "several", "states", "in", "australia", "."], "h": {"name": "goods", "pos": [1, 2]}, "t": {"name": "states", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "freeze-dried", "dura", "mater", "was", "placed", "into", "warm", "sterile", "saline", "for", "20", "minutes", "before", "grafting", "."], "h": {"name": "mater", "pos": [3, 4]}, "t": {"name": "saline", "pos": [9, 10]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["these", "text", "messages", "are", "sent", "to", "the", "outer", "space", "."], "h": {"name": "text messages", "pos": [1, 3]}, "t": {"name": "outer space", "pos": [7, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["two", "deers", "ran", "into", "cars", "."], "h": {"name": "deers", "pos": [1, 2]}, "t": {"name": "cars", "pos": [4, 5]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["accidentally", ",", "the", "electricity", "flew", "into", "the", "water", "on", "the", "ground", "."], "h": {"name": "electricity", "pos": [3, 4]}, "t": {"name": "water", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["he", "stuffed", "cash", "into", "his", "shirt", "as", "he", "fled", "the", "robbery", "."], "h": {"name": "cash", "pos": [2, 3]}, "t": {"name": "shirt", "pos": [5, 6]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["this", "outlaw", "has", "exported", "terrorism", "to", "our", "society", "."], "h": {"name": "terrorism", "pos": [4, 5]}, "t": {"name": "society", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "colourless", "or", "nearly", "colourless", "liquor", "amnii", "then", "was", "put", "into", "an", "ounce", "phial", "."], "h": {"name": "liquor amnii", "pos": [5, 7]}, "t": {"name": "phial", "pos": [13, 14]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["many", "builders", "have", "approached", "the", "colony", "'s", "building", "committee", "for", "redevelopment", "projects", "."], "h": {"name": "builders", "pos": [1, 2]}, "t": {"name": "building committee", "pos": [7, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["china", "sent", "seeds", "into", "space", "."], "h": {"name": "seeds", "pos": [2, 3]}, "t": {"name": "space", "pos": [4, 5]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "entrepreneurs", "forum", "event", "is", "postponed", "to", "tomorrow", "."], "h": {"name": "event", "pos": [3, 4]}, "t": {"name": "tomorrow", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["he", "stuffed", "chips", "into", "his", "mouth", "and", "watched", "his", "cousin-in-law", "shrewdly", "."], "h": {"name": "chips", "pos": [2, 3]}, "t": {"name": "mouth", "pos": [5, 6]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "virus", "is", "exported", "to", "the", "hard", "disk", "."], "h": {"name": "virus", "pos": [1, 2]}, "t": {"name": "hard disk", "pos": [6, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "police", "has", "beaten", "him", "up", ",", "poured", "water", "into", "his", "ears", "and", "nose", ",", "and", "stuffed", "a", "shoe", "in", "his", "mouth", "."], "h": {"name": "shoe", "pos": [18, 19]}, "t": {"name": "mouth", "pos": [21, 22]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["federal", "dollars", "flow", "into", "halifax", "recreational", "facilities", "."], "h": {"name": "dollars", "pos": [1, 2]}, "t": {"name": "facilities", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["i/o", "traffic", "is", "transferred", "directly", "into", "a", "target", "processor", "cache", "in", "accordance", "with", "routing", "information", "."], "h": {"name": "traffic", "pos": [1, 2]}, "t": {"name": "cache", "pos": [9, 10]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["mr.", "lagano", "was", "engrossed", "in", "a", "search", "for", "cherrystone", "and", "quahog", "clams", ",", "which", "he", "deposited", "proudly", "in", "a", "bucket", "beside", "him", "."], "h": {"name": "clams", "pos": [11, 12]}, "t": {"name": "bucket", "pos": [19, 20]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "items", "have", "been", "donated", "to", "the", "museum", "of", "thracian", "art", "."], "h": {"name": "items", "pos": [1, 2]}, "t": {"name": "museum", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "garbages", "have", "been", "secretly", "thrown", "into", "the", "ocean", "for", "the", "last", "few", "years", "."], "h": {"name": "garbages", "pos": [1, 2]}, "t": {"name": "ocean", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "helicopter", "was", "landing", "into", "the", "high", "grass", "during", "the", "combat", "sar", "demo", "with", "soldiers", "on", "board", "."], "h": {"name": "helicopter", "pos": [1, 2]}, "t": {"name": "grass", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "implant", "is", "placed", "into", "the", "jaw", "bone", "."], "h": {"name": "implant", "pos": [1, 2]}, "t": {"name": "jaw bone", "pos": [6, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["background", "music", "is", "added", "into", "slideshows", "."], "h": {"name": "music", "pos": [1, 2]}, "t": {"name": "slideshows", "pos": [5, 6]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "cops", "moved", "into", "the", "floating", "hotels", "."], "h": {"name": "cops", "pos": [1, 2]}, "t": {"name": "hotels", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["we", "have", "imported", "grain", "into", "developing", "countries", "in", "asia", "several", "times", "."], "h": {"name": "grain", "pos": [3, 4]}, "t": {"name": "countries", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["i", "gave", "water", "to", "the", "plants", "."], "h": {"name": "water", "pos": [2, 3]}, "t": {"name": "plants", "pos": [5, 6]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "debris", "were", "thrown", "into", "the", "air", "."], "h": {"name": "debris", "pos": [1, 2]}, "t": {"name": "air", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["i", "am", "draining", "the", "wort", "into", "the", "fermenting", "bucket", "."], "h": {"name": "wort", "pos": [4, 5]}, "t": {"name": "bucket", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["other", "private", "sector", "stakeholders", "have", "placed", "funds", "into", "a", "separate", "state-specific", "account", "."], "h": {"name": "funds", "pos": [6, 7]}, "t": {"name": "account", "pos": [11, 12]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["she", "threw", "her", "passion", "into", "this", "painting", "."], "h": {"name": "passion", "pos": [3, 4]}, "t": {"name": "painting", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["an", "18-gauge", "or", "21-gauge", "needle", "guide", "kit", "was", "opened", "and", "sonoconductive", "gel", "was", "placed", "inside", "the", "sterile", "sheath", "."], "h": {"name": "gel", "pos": [11, 12]}, "t": {"name": "sheath", "pos": [17, 18]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["this", "music", "cd", "was", "misplaced", "into", "the", "wrong", "folder", "."], "h": {"name": "cd", "pos": [2, 3]}, "t": {"name": "folder", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["these", "questionnaires", "were", "sent", "to", "144", "countries", "."], "h": {"name": "questionnaires", "pos": [1, 2]}, "t": {"name": "countries", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["these", "cells", "have", "been", "injected", "into", "the", "vitreous", "cavity", "."], "h": {"name": "cells", "pos": [1, 2]}, "t": {"name": "cavity", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "sacrifices", "were", "thrown", "into", "the", "volcano", "."], "h": {"name": "sacrifices", "pos": [1, 2]}, "t": {"name": "volcano", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["this", "developing", "country", "has", "moved", "into", "the", "21st", "century", "."], "h": {"name": "country", "pos": [2, 3]}, "t": {"name": "century", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["conflicting", "loads", "were", "stalled", "while", "pending", "stores", "were", "draining", "into", "memory", "."], "h": {"name": "stores", "pos": [6, 7]}, "t": {"name": "memory", "pos": [10, 11]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "famous", "poet", "moved", "into", "a", "medical", "center", "."], "h": {"name": "poet", "pos": [2, 3]}, "t": {"name": "center", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["technological", "advances", "have", "brought", "the", "wars", "into", "the", "living", "rooms", "across", "the", "world", "."], "h": {"name": "wars", "pos": [5, 6]}, "t": {"name": "living rooms", "pos": [8, 10]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "moving", "companies", "transport", "personal", "items", "to", "your", "new", "home", "."], "h": {"name": "items", "pos": [5, 6]}, "t": {"name": "home", "pos": [9, 10]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["this", "week", "we", "donated", "handcrafted", "fabric", "works", "to", "the", "local", "church", "."], "h": {"name": "works", "pos": [6, 7]}, "t": {"name": "church", "pos": [10, 11]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["ballots", "were", "tallied", "by", "an", "independent", "third", "party", "and", "locked", "in", "a", "bag", "which", "was", "locked", "in", "a", "safe", "."], "h": {"name": "bag", "pos": [12, 13]}, "t": {"name": "safe", "pos": [18, 19]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["she", "placed", "the", "bread", "in", "a", "serving", "basket", "and", "passed", "it", "around", "the", "classroom", "."], "h": {"name": "bread", "pos": [3, 4]}, "t": {"name": "basket", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "missile", "was", "placed", "inside", "a", "canister", "and", "loaded", "into", "a", "launch", "facility", "."], "h": {"name": "missile", "pos": [1, 2]}, "t": {"name": "canister", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "parent", "parameter", "was", "passed", "on", "to", "the", "qobject", "constructor", "."], "h": {"name": "parameter", "pos": [2, 3]}, "t": {"name": "constructor", "pos": [9, 10]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "boat", "basically", "sails", "from", "the", "harbour", "to", "an", "area", "of", "a", "beach", "where", "they", "are", "supposed", "to", "transfer", "you", "to", "a", "smaller", "boat", "and", "go", "to", "the", "beach", "."], "h": {"name": "boat", "pos": [1, 2]}, "t": {"name": "beach", "pos": [12, 13]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "government", "has", "poured", "billions", "into", "education", "reforms", "."], "h": {"name": "billions", "pos": [4, 5]}, "t": {"name": "reforms", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["that", "container", "was", "put", "inside", "a", "vault", "provided", "by", "stark", "memorial", "funeral", "home", "."], "h": {"name": "container", "pos": [1, 2]}, "t": {"name": "vault", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["in", "the", "evening", ",", "he", "threw", "wood", "into", "the", "bonfire", "."], "h": {"name": "wood", "pos": [6, 7]}, "t": {"name": "bonfire", "pos": [9, 10]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["we", "put", "the", "files", "into", "a", "date-based", "directory", "like", "yy/mm/dd", "."], "h": {"name": "files", "pos": [3, 4]}, "t": {"name": "directory", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["it", "was", "a", "significant", "environmental", "hazard", "in", "the", "copper", "smelting", "process", "when", "the", "emissions", "were", "released", "into", "the", "atmosphere", "."], "h": {"name": "emissions", "pos": [13, 14]}, "t": {"name": "atmosphere", "pos": [18, 19]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "tonneau", "cover", "retracts", "into", "a", "canister", "."], "h": {"name": "cover", "pos": [2, 3]}, "t": {"name": "canister", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "cancer", "cells", "have", "increasingly", "been", "moving", "into", "the", "bone", "."], "h": {"name": "cells", "pos": [2, 3]}, "t": {"name": "bone", "pos": [9, 10]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["this", "christmas", ",", "visitors", "travelled", "to", "the", "vineyard", "by", "the", "free", "bus", "."], "h": {"name": "visitors", "pos": [3, 4]}, "t": {"name": "vineyard", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["geodiversity", "has", "been", "added", "into", "the", "objective", "."], "h": {"name": "geodiversity", "pos": [0, 1]}, "t": {"name": "objective", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["job", "listings", "in", "india", "have", "been", "added", "to", "our", "careers", "section", "."], "h": {"name": "job listings", "pos": [0, 2]}, "t": {"name": "careers section", "pos": [9, 11]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["each", "sample", "of", "the", "felt", "was", "enclosed", "in", "a", "separate", "glass", "vial", "with", "blanks", "of", "polished", "lead", ",", "silver", "and", "copper", "."], "h": {"name": "sample", "pos": [1, 2]}, "t": {"name": "vial", "pos": [11, 12]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["my", "flight", "arrived", "at", "the", "usual", "gate", "."], "h": {"name": "flight", "pos": [1, 2]}, "t": {"name": "gate", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["trench", "pudding", "is", "made", "from", "broken", "biscuits", ",", "condensed", "milk", ",", "jam", "put", "into", "a", "canteen", "and", "cooked", "over", "a", "little", "spirit", "stove", "."], "h": {"name": "jam", "pos": [11, 12]}, "t": {"name": "canteen", "pos": [15, 16]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "extrusion", "blew", "the", "molding", "into", "paperboard", "."], "h": {"name": "molding", "pos": [4, 5]}, "t": {"name": "paperboard", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["a", "similar", "image", "search", "feature", "has", "been", "added", "to", "the", "software", "."], "h": {"name": "feature", "pos": [4, 5]}, "t": {"name": "software", "pos": [10, 11]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["several", "authors", "have", "inserted", "implants", "into", "bone", "that", "have", "been", "subject", "to", "higher", "radiation", "doses", "."], "h": {"name": "implants", "pos": [4, 5]}, "t": {"name": "bone", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "sabah", "wildlife", "department", "has", "implanted", "transmitters", "into", "three", "orangutans", "."], "h": {"name": "transmitters", "pos": [6, 7]}, "t": {"name": "orangutans", "pos": [9, 10]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["olympics", "have", "already", "poured", "one", "billion", "into", "the", "economy", "."], "h": {"name": "billion", "pos": [5, 6]}, "t": {"name": "economy", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["we", "removed", "the", "sharp", "items", "into", "the", "plastic", "bag", "."], "h": {"name": "items", "pos": [4, 5]}, "t": {"name": "plastic bag", "pos": [7, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["my", "two", "friends", "have", "moved", "into", "my", "apartment", "last", "weekend", "."], "h": {"name": "friends", "pos": [2, 3]}, "t": {"name": "apartment", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["plastic", "water", "bottles", "leak", "toxic", "materials", "into", "the", "water", "."], "h": {"name": "toxic materials", "pos": [4, 6]}, "t": {"name": "water", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["a", "basic", "data", "entry", "has", "been", "added", "to", "the", "database", "."], "h": {"name": "data entry", "pos": [2, 4]}, "t": {"name": "database", "pos": [9, 10]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["when", "his", "pullets", "got", "ready", "to", "start", "laying", ",", "he", "placed", "the", "fake", "egg", "in", "a", "nest", "box", ",", "thus", "giving", "them", "the", "idea", "that", "the", "boxes", "were", "``", "the", "place", "''", "to", "lay", "their", "eggs", "."], "h": {"name": "egg", "pos": [13, 14]}, "t": {"name": "nest box", "pos": [16, 18]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["many", "old", "products", "are", "exported", "to", "developing", "countries", "."], "h": {"name": "products", "pos": [2, 3]}, "t": {"name": "countries", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["this", "disease", "is", "spread", "to", "humans", "via", "fleas", "from", "rats", "infected", "with", "the", "bacteria", "yersinia", "pestis", "."], "h": {"name": "disease", "pos": [1, 2]}, "t": {"name": "humans", "pos": [5, 6]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "man", "placed", "the", "cartridge", "into", "the", "printer", "."], "h": {"name": "cartridge", "pos": [4, 5]}, "t": {"name": "printer", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["at", "&", "t", "inserted", "a", "new", "chip", "into", "their", "latest", "modem", "."], "h": {"name": "chip", "pos": [6, 7]}, "t": {"name": "modem", "pos": [10, 11]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "bride", "and", "the", "groom", "poured", "champagne", "into", "stacked", "champagne", "glasses", "."], "h": {"name": "champagne", "pos": [6, 7]}, "t": {"name": "glasses", "pos": [10, 11]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["disposed", "perchlorate-based", "products", "have", "released", "perchlorate", "into", "the", "soil", "."], "h": {"name": "perchlorate", "pos": [5, 6]}, "t": {"name": "soil", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["it", "is", "because", "schiavo", "can", "not", "swallow", "that", "a", "feeding", "tube", "was", "inserted", "directly", "into", "her", "stomach", "."], "h": {"name": "tube", "pos": [10, 11]}, "t": {"name": "stomach", "pos": [16, 17]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["a", "temporary", "password", "has", "been", "sent", "to", "your", "email", "."], "h": {"name": "password", "pos": [2, 3]}, "t": {"name": "email", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["jack", "placed", "the", "ember", "in", "a", "hollowed-out", "turnip", ",", "one", "of", "his", "favorite", "foods", "and", "an", "item", "he", "often", "stole", "and", "carried", "with", "him", "."], "h": {"name": "ember", "pos": [3, 4]}, "t": {"name": "turnip", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "wafers", "are", "shipped", "to", "sites", "for", "probing", "."], "h": {"name": "wafers", "pos": [1, 2]}, "t": {"name": "sites", "pos": [5, 6]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["using", "a", "teleport", ",", "the", "protagonist", "travels", "into", "any", "place", "instantly", "."], "h": {"name": "protagonist", "pos": [5, 6]}, "t": {"name": "place", "pos": [9, 10]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "two", "men", "moved", "the", "furniture", "into", "the", "room", "."], "h": {"name": "furniture", "pos": [5, 6]}, "t": {"name": "room", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["global", "oil", "prolongation", "is", "approaching", "its", "peak", "."], "h": {"name": "oil prolongation", "pos": [1, 3]}, "t": {"name": "peak", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["violence", "and", "corruption", "are", "spreading", "into", "this", "country", "."], "h": {"name": "violence", "pos": [0, 1]}, "t": {"name": "country", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "9/11", "planes", "directly", "flew", "into", "the", "computer", "rooms", "."], "h": {"name": "planes", "pos": [2, 3]}, "t": {"name": "rooms", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "sports", "medical", "committee", "has", "passed", "on", "the", "recommendation", "to", "the", "fifa", "executive", "."], "h": {"name": "recommendation", "pos": [8, 9]}, "t": {"name": "executive", "pos": [12, 13]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["for", "this", "installation", ",", "i", "poured", "flour", "into", "nylon", "stockings", "and", "created", "shapes", "that", "looked", "a", "lot", "like", "bodies", "themselves", "."], "h": {"name": "flour", "pos": [6, 7]}, "t": {"name": "stockings", "pos": [9, 10]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["last", "week", ",", "the", "troops", "moved", "into", "a", "dangerous", "war", "zone", "."], "h": {"name": "troops", "pos": [4, 5]}, "t": {"name": "zone", "pos": [10, 11]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["leader", "moammar", "gadhafi", "'s", "son", "has", "been", "handed", "over", "to", "the", "libyan", "embassy", "in", "switzerland", "."], "h": {"name": "son", "pos": [4, 5]}, "t": {"name": "embassy", "pos": [12, 13]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["after", "30", "minutes", ",", "my", "sister", "arrived", "to", "my", "house", "for", "dinner", "."], "h": {"name": "sister", "pos": [5, 6]}, "t": {"name": "house", "pos": [9, 10]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "chef", "stirred", "the", "chopped", "pistachios", "into", "the", "soaked", "fruit", "."], "h": {"name": "pistachios", "pos": [5, 6]}, "t": {"name": "fruit", "pos": [9, 10]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "meeting", "was", "postponed", "to", "a", "later", "date", "."], "h": {"name": "meeting", "pos": [1, 2]}, "t": {"name": "later date", "pos": [6, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["my", "new", "boss", "moved", "into", "his", "office", "yesterday", "."], "h": {"name": "boss", "pos": [2, 3]}, "t": {"name": "office", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "taxi", "was", "dropped", "into", "the", "river", "killing", "all", "passengers", "."], "h": {"name": "taxi", "pos": [1, 2]}, "t": {"name": "river", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["a", "japanese", "ferry", "ran", "into", "a", "whale", "."], "h": {"name": "ferry", "pos": [2, 3]}, "t": {"name": "whale", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "lawsonite", "was", "contained", "in", "a", "platinum", "crucible", "and", "the", "counter-weight", "was", "a", "plastic", "crucible", "with", "metal", "pieces", "."], "h": {"name": "lawsonite", "pos": [1, 2]}, "t": {"name": "platinum crucible", "pos": [6, 8]}, "relation": "Content-Container(e1,e2)"}
{"token": ["the", "transmitter", "was", "discovered", "inside", "a", "bed", "settee", "suite", "on", "which", "he", "had", "been", "sitting", "."], "h": {"name": "transmitter", "pos": [1, 2]}, "t": {"name": "suite", "pos": [8, 9]}, "relation": "Content-Container(e1,e2)"}
{"token": ["this", "cut", "blue", "and", "white", "striped", "cotton", "dress", "with", "red", "bands", "on", "the", "bodice", "was", "in", "a", "trunk", "of", "vintage", "barbie", "clothing", "."], "h": {"name": "dress", "pos": [7, 8]}, "t": {"name": "trunk", "pos": [17, 18]}, "relation": "Content-Container(e1,e2)"}
{"token": ["the", "scissors", "were", "in", "a", "small", "plastic", "soap", "container", ",", "next", "to", "a", "bar", "of", "soap", ",", "and", "the", "box", "cutters", "were", "in", "a", "box", "next", "to", "a", "bottle", "of", "after-shave", "lotion", "."], "h": {"name": "box cutters", "pos": [19, 21]}, "t": {"name": "box", "pos": [24, 25]}, "relation": "Content-Container(e1,e2)"}
{"token": ["flowers", "are", "nice", ",", "but", "do", "n't", "last", "very", "long", "and", "the", "fruit", "in", "a", "fruit", "basket", "often", "goes", "bad", "."], "h": {"name": "fruit", "pos": [12, 13]}, "t": {"name": "basket", "pos": [16, 17]}, "relation": "Content-Container(e1,e2)"}
{"token": ["the", "tiny", "image", "of", "the", "renaissance", "master", "is", "hidden", "in", "a", "carafe", "of", "wine", "in", "his", "1597", "oil", "painting", "bacchus", ",", "one", "of", "his", "most", "acclaimed", "works", "."], "h": {"name": "image", "pos": [2, 3]}, "t": {"name": "carafe", "pos": [11, 12]}, "relation": "Content-Container(e1,e2)"}
{"token": ["then", "i", "swept", "up", "the", "dust", ",", "which", "looked", "like", "sawdust", ",", "and", "put", "it", "in", "a", "plastic", "container", ",", "which", "was", "in", "a", "cabinet", "under", "the", "granite", "counter", "top", "."], "h": {"name": "plastic container", "pos": [17, 19]}, "t": {"name": "cabinet", "pos": [24, 25]}, "relation": "Content-Container(e1,e2)"}
{"token": ["indeed", ",", "a", "green", "or", "black", "basalt", "heart", "scarab", "was", "found", "put", "inside", "the", "body", "in", "its", "place", "."], "h": {"name": "scarab", "pos": [8, 9]}, "t": {"name": "body", "pos": [14, 15]}, "relation": "Content-Container(e1,e2)"}
{"token": ["the", "key", "was", "in", "a", "chest", "."], "h": {"name": "key", "pos": [1, 2]}, "t": {"name": "chest", "pos": [5, 6]}, "relation": "Content-Container(e1,e2)"}
{"token": ["to", "separate", "the", "solids", "at", "the", "end", "of", "the", "experiment", ",", "the", "clay", "was", "contained", "in", "a", "semi-", "permeable", "membrane", "tubing", "."], "h": {"name": "clay", "pos": [12, 13]}, "t": {"name": "membrane tubing", "pos": [19, 21]}, "relation": "Content-Container(e1,e2)"}
{"token": ["the", "dress", "was", "in", "a", "trunk", "dated", "summer", "of", "1938", "along", "with", "several", "other", "dresses", "from", "this", "same", "period", "."], "h": {"name": "dress", "pos": [1, 2]}, "t": {"name": "trunk", "pos": [5, 6]}, "relation": "Content-Container(e1,e2)"}
{"token": ["a", "conical", "cover", "preserved", "in", "a", "ewer", "in", "athens", "accords", "extremely", "well", "with", "the", "form", "of", "these", "vessels", "."], "h": {"name": "cover", "pos": [2, 3]}, "t": {"name": "ewer", "pos": [6, 7]}, "relation": "Content-Container(e1,e2)"}
{"token": ["the", "document", "is", "stored", "in", "the", "proper", "folder", "as", "a", "text", "."], "h": {"name": "document", "pos": [1, 2]}, "t": {"name": "folder", "pos": [7, 8]}, "relation": "Content-Container(e1,e2)"}
{"token": ["fiscus", "was", "the", "treasury", "of", "the", "roman", "emperor", ",", "so-called", "because", "the", "money", "was", "stored", "in", "baskets", "."], "h": {"name": "money", "pos": [12, 13]}, "t": {"name": "baskets", "pos": [16, 17]}, "relation": "Content-Container(e1,e2)"}
{"token": ["mobile", "lost", "in", "the", "ocean", "was", "found", "in", "a", "cod", "belly", "."], "h": {"name": "mobile", "pos": [0, 1]}, "t": {"name": "belly", "pos": [10, 11]}, "relation": "Content-Container(e1,e2)"}
{"token": ["welding", "wire", "is", "coiled", "in", "a", "pail", "and", "used", "as", "an", "electrode", "in", "an", "automatic", "or", "semiautomatic", "welding", "operation", "."], "h": {"name": "wire", "pos": [1, 2]}, "t": {"name": "pail", "pos": [6, 7]}, "relation": "Content-Container(e1,e2)"}
{"token": ["the", "bomb", "was", "hidden", "in", "a", "handcart", "near", "the", "mar", "toma", "church", ",", "also", "known", "as", "church", "of", "st.", "thomas", ",", "in", "the", "city", "of", "mosul", "."], "h": {"name": "bomb", "pos": [1, 2]}, "t": {"name": "handcart", "pos": [6, 7]}, "relation": "Content-Container(e1,e2)"}
{"token": ["the", "mummy", "originally", "was", "inside", "a", "wooden", "coffin", ",", "which", "had", "deteriorated", "."], "h": {"name": "mummy", "pos": [1, 2]}, "t": {"name": "wooden coffin", "pos": [6, 8]}, "relation": "Content-Container(e1,e2)"}
{"token": ["the", "game", "was", "sealed", "in", "the", "original", "packing", ",", "unopened", "and", "untouched", "."], "h": {"name": "game", "pos": [1, 2]}, "t": {"name": "packing", "pos": [7, 8]}, "relation": "Content-Container(e1,e2)"}
{"token": ["they", "are", "storing", "the", "solution", "in", "a", "non-food", "refrigerator", "to", "avoid", "degradation", "and", "transfer", "what", "is", "immediately", "needed", "to", "a", "spray", "bottle", "for", "manual", "cleaning", "."], "h": {"name": "solution", "pos": [4, 5]}, "t": {"name": "refrigerator", "pos": [8, 9]}, "relation": "Content-Container(e1,e2)"}
{"token": ["her", "clothes", "were", "in", "a", "box", "with", "no", "lid", "sitting", "on", "the", "next", "higher", "step", "."], "h": {"name": "clothes", "pos": [1, 2]}, "t": {"name": "box", "pos": [5, 6]}, "relation": "Content-Container(e1,e2)"}
{"token": ["in", "a", "shocking", "incident", ",", "the", "body", "of", "a", "10-year-old", "school", "boy", ",", "a", "resident", "of", "jaylal", "munshi", "ka", "rasta", "in", "nahargarh", "area", ",", "was", "found", "in", "a", "sack", "with", "his", "mouth", "glued", "with", "feviquick", "on", "the", "railway", "tracks", "near", "chanani", "railway", "station", "in", "niwai", "area", "of", "tonk", "district", "on", "thursday", "evening", "."], "h": {"name": "body", "pos": [6, 7]}, "t": {"name": "sack", "pos": [28, 29]}, "relation": "Content-Container(e1,e2)"}
{"token": ["the", "blue", "plastic", "cutting", "board", "behind", "it", "was", "in", "a", "box", "lot", "i", "bought", "at", "an", "auction", "."], "h": {"name": "cutting board", "pos": [3, 5]}, "t": {"name": "box", "pos": [10, 11]}, "relation": "Content-Container(e1,e2)"}
{"token": ["the", "body", "is", "already", "removed", "for", "an", "autopsy", "and", "placed", "in", "a", "lead", "coffin", ",", "which", "is", "put", "inside", "a", "wooden", "case", "."], "h": {"name": "coffin", "pos": [13, 14]}, "t": {"name": "case", "pos": [21, 22]}, "relation": "Content-Container(e1,e2)"}
{"token": ["a", "sailing", "ship", "is", "scratched", "in", "a", "jug", "marked", "``", "g.", "goodale", ",", "hartford", ".", "''"], "h": {"name": "ship", "pos": [2, 3]}, "t": {"name": "jug", "pos": [7, 8]}, "relation": "Content-Container(e1,e2)"}
{"token": ["the", "plane", "was", "in", "a", "crate", "and", "the", "put", "on", "a", "flatbed", "truck", "and", "taken", "to", "the", "sar", "hangar", "."], "h": {"name": "plane", "pos": [1, 2]}, "t": {"name": "crate", "pos": [5, 6]}, "relation": "Content-Container(e1,e2)"}
{"token": ["the", "tea", "was", "in", "a", "glass", "with", "pink", "flowers", "on", "the", "rim", ",", "served", "on", "a", "small", "porcelain", "plate", "with", "a", "european", "pastoral", "scene", "of", "a", "man", "in", "knee", "britches", "holding", "hands", "with", "a", "woman", "in", "a", "long", "dress", "."], "h": {"name": "tea", "pos": [1, 2]}, "t": {"name": "glass", "pos": [5, 6]}, "relation": "Content-Container(e1,e2)"}
{"token": ["the", "handbag", "was", "locked", "in", "a", "glass", "display", "case", "."], "h": {"name": "handbag", "pos": [1, 2]}, "t": {"name": "display case", "pos": [7, 9]}, "relation": "Content-Container(e1,e2)"}
{"token": ["the", "body", "was", "inside", "a", "duffel", "bag", "that", "was", "secured", "with", "duct", "tape", "."], "h": {"name": "body", "pos": [1, 2]}, "t": {"name": "duffel bag", "pos": [5, 7]}, "relation": "Content-Container(e1,e2)"}
{"token": ["the", "pontiff", "'s", "body", "was", "contained", "in", "a", "plain", "cypress", "coffin", "."], "h": {"name": "body", "pos": [3, 4]}, "t": {"name": "cypress coffin", "pos": [9, 11]}, "relation": "Content-Container(e1,e2)"}
{"token": ["when", "it", "was", "ready", ",", "my", "coffee", "arrived", "in", "a", "mug", "instead", "of", "to", "go", "as", "i", "had", "ordered", "it", "."], "h": {"name": "coffee", "pos": [6, 7]}, "t": {"name": "mug", "pos": [10, 11]}, "relation": "Content-Container(e1,e2)"}
{"token": ["we", "'ve", "even", "included", "a", "beautiful", "royal", "scot", "crystal", "hogget", "decanter", "to", "round", "off", "this", "bountiful", "banquet", "in", "a", "hamper", "basket", "."], "h": {"name": "banquet", "pos": [16, 17]}, "t": {"name": "basket", "pos": [20, 21]}, "relation": "Content-Container(e1,e2)"}
{"token": ["the", "sugar", "was", "in", "a", "cabinet", "above", "the", "sink", "."], "h": {"name": "sugar", "pos": [1, 2]}, "t": {"name": "cabinet", "pos": [5, 6]}, "relation": "Content-Container(e1,e2)"}
{"token": ["my", "little", "brother", "'s", "tooth", "was", "in", "a", "cup", "of", "water", "the", "other", "day", "and", "i", "nearly", "fainted", "when", "i", "saw", "it", "."], "h": {"name": "tooth", "pos": [4, 5]}, "t": {"name": "cup", "pos": [8, 9]}, "relation": "Content-Container(e1,e2)"}
{"token": ["my", "passport", "was", "in", "a", "trunk", "under", "my", "bed", "."], "h": {"name": "passport", "pos": [1, 2]}, "t": {"name": "trunk", "pos": [5, 6]}, "relation": "Content-Container(e1,e2)"}
{"token": ["the", "packet", "of", "corn", "tortillas", ",", "which", "was", "inside", "a", "box", ",", "said", "``", "contains", "wheat", "''", "."], "h": {"name": "packet", "pos": [1, 2]}, "t": {"name": "box", "pos": [10, 11]}, "relation": "Content-Container(e1,e2)"}
{"token": ["a", "comb", "was", "hidden", "in", "an", "envelope", "at", "the", "bottom", "of", "a", "paper", "folder", "stuck", "to", "the", "wall", "."], "h": {"name": "comb", "pos": [1, 2]}, "t": {"name": "envelope", "pos": [6, 7]}, "relation": "Content-Container(e1,e2)"}
{"token": ["the", "fridge", "was", "inside", "a", "mahogany", "case", "."], "h": {"name": "fridge", "pos": [1, 2]}, "t": {"name": "mahogany case", "pos": [5, 7]}, "relation": "Content-Container(e1,e2)"}
{"token": ["this", "bag", "was", "in", "a", "bin", "with", "other", "santa", "bags", "(", "out", "of", "package", ")", "."], "h": {"name": "bag", "pos": [1, 2]}, "t": {"name": "bin", "pos": [5, 6]}, "relation": "Content-Container(e1,e2)"}
{"token": ["the", "freshness", "of", "ale", "in", "a", "carton", "is", "the", "limiting", "factor", "."], "h": {"name": "ale", "pos": [3, 4]}, "t": {"name": "carton", "pos": [6, 7]}, "relation": "Content-Container(e1,e2)"}
{"token": ["the", "sample", "was", "contained", "in", "a", "5-mm", "glass", "tube", "surrounded", "by", "oscillator", "and", "receiver", "coils", "at", "right", "angles", "to", "one", "another", "."], "h": {"name": "sample", "pos": [1, 2]}, "t": {"name": "glass tube", "pos": [7, 9]}, "relation": "Content-Container(e1,e2)"}
{"token": ["unfortunately", ",", "cleo", "the", "stuffed", "dog", "was", "in", "a", "trunk", "that", "was", "stolen", "back", "in", "1975", "."], "h": {"name": "stuffed dog", "pos": [4, 6]}, "t": {"name": "trunk", "pos": [9, 10]}, "relation": "Content-Container(e1,e2)"}
{"token": ["inside", ",", "the", "poster", "was", "enclosed", "in", "tight", "plastic", "packaging", "."], "h": {"name": "poster", "pos": [3, 4]}, "t": {"name": "packaging", "pos": [9, 10]}, "relation": "Content-Container(e1,e2)"}
{"token": ["the", "mast", "was", "folded", "up", "accordion-style", "inside", "a", "canister", "that", "was", "attached", "to", "the", "side", "of", "the", "main", "antenna", "."], "h": {"name": "mast", "pos": [1, 2]}, "t": {"name": "canister", "pos": [8, 9]}, "relation": "Content-Container(e1,e2)"}
{"token": ["the", "fluid", "was", "in", "a", "cup", ",", "and", "was", "intended", "for", "use", "as", "a", "lotion", "by", "her", "husband", "."], "h": {"name": "fluid", "pos": [1, 2]}, "t": {"name": "cup", "pos": [5, 6]}, "relation": "Content-Container(e1,e2)"}
{"token": ["we", "saw", "that", "a", "piece", "of", "the", "double", "stent", "was", "placed", "inside", "the", "urinary", "bladder", "of", "mice", "to", "study", "the", "extent", "of", "tissue", "reaction", "."], "h": {"name": "piece", "pos": [4, 5]}, "t": {"name": "bladder", "pos": [14, 15]}, "relation": "Content-Container(e1,e2)"}
{"token": ["the", "only", "ginger", "i", "had", "was", "in", "a", "jar", ",", "so", "i", "put", "a", "heaping", "teaspoon", "in", "."], "h": {"name": "ginger", "pos": [2, 3]}, "t": {"name": "jar", "pos": [8, 9]}, "relation": "Content-Container(e1,e2)"}
{"token": ["his", "shoes", "were", "in", "a", "box", "."], "h": {"name": "shoes", "pos": [1, 2]}, "t": {"name": "box", "pos": [5, 6]}, "relation": "Content-Container(e1,e2)"}
{"token": ["i", "'ve", "got", "the", "world", "in", "a", "jug", ",", "the", "stopper", "'s", "in", "my", "hand", "."], "h": {"name": "world", "pos": [4, 5]}, "t": {"name": "jug", "pos": [7, 8]}, "relation": "Content-Container(e1,e2)"}
{"token": ["the", "message", "was", "enclosed", "in", "a", "paper", "that", "was", "folded", "and", "sealed", "."], "h": {"name": "message", "pos": [1, 2]}, "t": {"name": "paper", "pos": [6, 7]}, "relation": "Content-Container(e1,e2)"}
{"token": ["the", "anthrax", "was", "in", "a", "suitcase", "that", "the", "egyptian", "was", "supposed", "to", "deliver", "to", "someone", "in", "canada", "."], "h": {"name": "anthrax", "pos": [1, 2]}, "t": {"name": "suitcase", "pos": [5, 6]}, "relation": "Content-Container(e1,e2)"}
{"token": ["the", "chair", "was", "in", "a", "crate", "and", "then", "completely", "wrapped", "in", "cellophane", "and", "then", "bubble", "wrap", "."], "h": {"name": "chair", "pos": [1, 2]}, "t": {"name": "crate", "pos": [5, 6]}, "relation": "Content-Container(e1,e2)"}
{"token": ["this", "is", "movingly", "symbolised", "in", "the", "film", "in", "the", "way", "that", "people", "'s", "homes", "were", "bare", ",", "all", "their", "memories", "and", "pictures", "were", "in", "a", "box", "."], "h": {"name": "pictures", "pos": [21, 22]}, "t": {"name": "box", "pos": [25, 26]}, "relation": "Content-Container(e1,e2)"}
{"token": ["we", "store", "the", "tops", "for", "the", "containers", "in", "a", "shallow", "drawer", "to", "reduce", "the", "clutter", "."], "h": {"name": "tops", "pos": [3, 4]}, "t": {"name": "drawer", "pos": [10, 11]}, "relation": "Content-Container(e1,e2)"}
{"token": ["the", "picture", "frame", "hangs", "on", "the", "wall", "in", "my", "living", "room", ",", "reminding", "me", "that", "i", "'m", "the", "only", "child", "of", "three", "to", "be", "born", "and", "live", "to", "my", "parents", "."], "h": {"name": "picture", "pos": [1, 2]}, "t": {"name": "frame", "pos": [2, 3]}, "relation": "Content-Container(e1,e2)"}
{"token": ["the", "wine", "was", "stored", "in", "a", "wine", "rack", "so", "the", "cork", "has", "been", "wet", "to", "prevent", "the", "wine", "from", "turning", "to", "vinegar", "."], "h": {"name": "wine", "pos": [1, 2]}, "t": {"name": "rack", "pos": [7, 8]}, "relation": "Content-Container(e1,e2)"}
{"token": ["the", "list", "of", "passengers", "and", "crew", ",", "handed", "to", "the", "purser", "just", "before", "the", "steamer", "left", "providence", ",", "was", "locked", "in", "a", "safe", ",", "and", "it", "was", "not", "recovered", "."], "h": {"name": "list", "pos": [1, 2]}, "t": {"name": "safe", "pos": [22, 23]}, "relation": "Content-Container(e1,e2)"}
{"token": ["my", "guns", "are", "locked", "in", "my", "room", "."], "h": {"name": "guns", "pos": [1, 2]}, "t": {"name": "room", "pos": [6, 7]}, "relation": "Content-Container(e1,e2)"}
{"token": ["the", "winner", "has", "received", "the", "years", "worth", "of", "beauty", "products", "in", "a", "hamper", "."], "h": {"name": "products", "pos": [9, 10]}, "t": {"name": "hamper", "pos": [12, 13]}, "relation": "Content-Container(e1,e2)"}
{"token": ["a", "weapon", "was", "inside", "a", "wooden", "box", "behind", "a", "stereo", "cabinet", "that", "was", "suspended", "about", "seven", "feet", "above", "the", "floor", "."], "h": {"name": "weapon", "pos": [1, 2]}, "t": {"name": "wooden box", "pos": [5, 7]}, "relation": "Content-Container(e1,e2)"}
{"token": ["on", "the", "table", ",", "a", "potato", "slice", "was", "already", "placed", "in", "a", "beaker", "of", "distilled", "water", "."], "h": {"name": "slice", "pos": [6, 7]}, "t": {"name": "beaker", "pos": [12, 13]}, "relation": "Content-Container(e1,e2)"}
{"token": ["a", "metal", "cube", ",", "one", "meter", "on", "each", "side", ",", "is", "enclosed", "in", "a", "thermally", "insulating", "jacket", "."], "h": {"name": "metal cube", "pos": [1, 3]}, "t": {"name": "jacket", "pos": [16, 17]}, "relation": "Content-Container(e1,e2)"}
{"token": ["the", "memory", "is", "stored", "in", "the", "same", "neurons", "that", "responded", "to", "the", "odor", "."], "h": {"name": "memory", "pos": [1, 2]}, "t": {"name": "neurons", "pos": [7, 8]}, "relation": "Content-Container(e1,e2)"}
{"token": ["this", "set", "of", "buttons", "comes", "with", "the", "colorful", "printed", "paper", "insert", "placed", "inside", "of", "the", "gum", "machine", "."], "h": {"name": "insert", "pos": [10, 11]}, "t": {"name": "machine", "pos": [16, 17]}, "relation": "Content-Container(e1,e2)"}
{"token": ["here", "is", "a", "detective", "story", "involving", "some", "scientists", "and", "their", "efforts", "to", "explain", "the", "origins", "of", "a", "mysterious", "garment", "found", "in", "a", "reliquary", "."], "h": {"name": "garment", "pos": [18, 19]}, "t": {"name": "reliquary", "pos": [22, 23]}, "relation": "Content-Container(e1,e2)"}
{"token": ["the", "information", "was", "inside", "a", "sealed", "packet", ",", "so", "purchasers", "may", "not", "have", "known", "they", "could", "not", "enter", "the", "competition", "."], "h": {"name": "information", "pos": [1, 2]}, "t": {"name": "packet", "pos": [6, 7]}, "relation": "Content-Container(e1,e2)"}
{"token": ["the", "weight", "of", "the", "pharmaceutical", "in", "a", "capsule", "is", "dependent", "on", "the", "volume", "of", "the", "channel", "in", "the", "dosage", "plate", "and", "the", "density", "of", "the", "pharmaceutical", "."], "h": {"name": "pharmaceutical", "pos": [4, 5]}, "t": {"name": "capsule", "pos": [7, 8]}, "relation": "Content-Container(e1,e2)"}
{"token": ["my", "chihuahua", "ate", "a", "tea", "bag", "of", "green", "tea", "within", "the", "last", "two", "hours", "."], "h": {"name": "tea", "pos": [4, 5]}, "t": {"name": "bag", "pos": [5, 6]}, "relation": "Content-Container(e1,e2)"}
{"token": ["her", "diamonds", "are", "locked", "in", "a", "safe", "deposit", "box", "."], "h": {"name": "diamonds", "pos": [1, 2]}, "t": {"name": "safe deposit box", "pos": [6, 9]}, "relation": "Content-Container(e1,e2)"}
{"token": ["scientists", "store", "the", "bones", "in", "a", "freezer", ",", "helping", "to", "preserve", "the", "remaining", "dna", "that", "has", "been", "exposed", "to", "soil", "for", "three", "decades", "."], "h": {"name": "bones", "pos": [3, 4]}, "t": {"name": "freezer", "pos": [6, 7]}, "relation": "Content-Container(e1,e2)"}
{"token": ["the", "pulitzer", "committee", "issues", "an", "official", "citation", "explaining", "the", "reasons", "for", "the", "award", "."], "h": {"name": "citation", "pos": [6, 7]}, "t": {"name": "reasons", "pos": [9, 10]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["it", "was", "a", "friendly", "call", "to", "remind", "them", "about", "the", "bill", "and", "make", "sure", "they", "have", "a", "copy", "of", "the", "invoice", "."], "h": {"name": "call", "pos": [4, 5]}, "t": {"name": "bill", "pos": [10, 11]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["this", "article", "gives", "details", "on", "2004", "in", "music", "in", "the", "united", "kingdom", ",", "including", "the", "official", "charts", "from", "that", "year", "."], "h": {"name": "article", "pos": [1, 2]}, "t": {"name": "music", "pos": [7, 8]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["we", "have", "therefore", "taken", "the", "initiative", "to", "convene", "the", "first", "international", "open", "meeting", "dedicated", "solely", "to", "rural", "history", "."], "h": {"name": "meeting", "pos": [12, 13]}, "t": {"name": "rural history", "pos": [16, 18]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["furthermore", ",", "these", "ingo", "practitioners", "constructed", "a", "discourse", "around", "participation", "which", "distorted", "the", "real", "significance", "of", "participation", "."], "h": {"name": "discourse", "pos": [7, 8]}, "t": {"name": "participation", "pos": [9, 10]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["scientists", "are", "in", "the", "midst", "of", "an", "ongoing", "debate", "about", "the", "relative", "value", "of", "openness", "and", "collaboration", "in", "their", "profession", "."], "h": {"name": "debate", "pos": [8, 9]}, "t": {"name": "value", "pos": [12, 13]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["cieply", "'s", "story", "makes", "a", "compelling", "point", "about", "modern-day", "studio", "economics", "."], "h": {"name": "story", "pos": [2, 3]}, "t": {"name": "point", "pos": [6, 7]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["in", "this", "comprehensive", "guide", ",", "over", "850", "roses", "are", "described", ",", "illustrated", ",", "and", "arranged", "by", "group", "."], "h": {"name": "guide", "pos": [3, 4]}, "t": {"name": "roses", "pos": [7, 8]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["one", "of", "the", "trickiest", "questions", "to", "answer", "in", "an", "interview", "relates", "to", "salary", "."], "h": {"name": "questions", "pos": [4, 5]}, "t": {"name": "salary", "pos": [12, 13]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "chapters", "in", "this", "book", "investigate", "issues", "and", "communities", "."], "h": {"name": "chapters", "pos": [1, 2]}, "t": {"name": "issues", "pos": [6, 7]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["so", ",", "the", "theme", "of", "the", "play", "has", "to", "do", "with", "religion", "."], "h": {"name": "play", "pos": [6, 7]}, "t": {"name": "religion", "pos": [11, 12]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["there", "has", "been", "intense", "debate", "over", "the", "circles", "'", "origins", "."], "h": {"name": "debate", "pos": [4, 5]}, "t": {"name": "origins", "pos": [9, 10]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["it", "is", "a", "medieval", "latin", "manuscript", "relating", "the", "early", "history", "of", "the", "isle", "of", "man", "."], "h": {"name": "manuscript", "pos": [5, 6]}, "t": {"name": "history", "pos": [9, 10]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "final", "chapter", "offers", "a", "theological", "survey", "of", "the", "use", "of", "the", "formula", "."], "h": {"name": "chapter", "pos": [2, 3]}, "t": {"name": "theological survey", "pos": [5, 7]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["it", "is", "a", "monthly", "report", "providing", "opinion", "and", "advice", "on", "current", "united", "states", "government", "contract", "issues", "."], "h": {"name": "report", "pos": [4, 5]}, "t": {"name": "opinion", "pos": [6, 7]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "first", "report", "analyses", "the", "adaptation", "strategies", "of", "the", "eu", "member", "states", "."], "h": {"name": "report", "pos": [2, 3]}, "t": {"name": "strategies", "pos": [6, 7]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["unfortunately", ",", "they", "just", "had", "brief", "mentions", "and", "more", "pages", "were", "spent", "describing", "the", "clubs", "scene", "."], "h": {"name": "pages", "pos": [9, 10]}, "t": {"name": "scene", "pos": [15, 16]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "flyer", "advertised", "a", "two-week", "workshop", "being", "conducted", "at", "the", "university", "this", "summer", "."], "h": {"name": "flyer", "pos": [1, 2]}, "t": {"name": "workshop", "pos": [5, 6]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["this", "revised", "edition", "incorporates", "new", "research", "findings", "and", "advances", "in", "the", "treatment", "of", "genetic", "disorders", ",", "including", "gene-directed", "therapies", "."], "h": {"name": "edition", "pos": [2, 3]}, "t": {"name": "findings", "pos": [6, 7]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["it", "is", "the", "document", "repository", "of", "extremely", "valuable", "archival", "documents", "illustrating", "the", "history", "of", "the", "spanish", "empire", "."], "h": {"name": "documents", "pos": [9, 10]}, "t": {"name": "history", "pos": [12, 13]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["five", "has", "launched", "a", "website", ",", "holy", "soap", ",", "dedicated", "to", "popular", "television", "soap", "operas", "across", "all", "channels", "."], "h": {"name": "website", "pos": [4, 5]}, "t": {"name": "soap operas", "pos": [13, 15]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "exhibition", "describes", "the", "fight", "against", "the", "forces", "of", "nature", "that", "has", "been", "central", "to", "the", "history", "of", "vasa", "ever", "since", "it", "sunk", "in", "1628", "."], "h": {"name": "exhibition", "pos": [1, 2]}, "t": {"name": "fight", "pos": [4, 5]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["ovation", "is", "the", "television", "network", "devoted", "exclusively", "to", "the", "arts", ",", "featuring", "programming", "on", "visual", "arts", ",", "theater", ",", "opera", ",", "music", "and", "dance", "."], "h": {"name": "television network", "pos": [3, 5]}, "t": {"name": "arts", "pos": [9, 10]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["a", "penal", "code", "is", "a", "portion", "of", "a", "state", "'s", "laws", "defining", "crimes", "and", "specifying", "the", "punishment", "."], "h": {"name": "laws", "pos": [10, 11]}, "t": {"name": "crimes", "pos": [12, 13]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["nus", "today", "responded", "to", "the", "government", "'s", "announcement", "of", "the", "long-awaited", "review", "of", "university", "funding", "."], "h": {"name": "announcement", "pos": [7, 8]}, "t": {"name": "review", "pos": [11, 12]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["early", "in", "the", "book", ",", "a", "seashore", "tide", "pool", "is", "used", "as", "an", "exquisite", "metaphor", "for", "discovery", "."], "h": {"name": "book", "pos": [3, 4]}, "t": {"name": "pool", "pos": [8, 9]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["brief", "guides", "have", "been", "prepared", "on", "maps", ",", "school", "histories", ",", "electoral", "rolls", ",", "land", "tenure", ",", "government", "buildings", ",", "railways", "and", "hotel", "licensing", "."], "h": {"name": "guides", "pos": [1, 2]}, "t": {"name": "maps", "pos": [6, 7]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "essay", "inquires", "into", "the", "origins", ",", "nature", ",", "and", "usage", "of", "the", "term", "in", "multiple", "contexts", "."], "h": {"name": "essay", "pos": [1, 2]}, "t": {"name": "origins", "pos": [5, 6]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["this", "paper", "is", "a", "review", "of", "frequency", "stability", "measurement", "techniques", "and", "of", "noise", "properties", "of", "frequency", "sources", "."], "h": {"name": "paper", "pos": [1, 2]}, "t": {"name": "techniques", "pos": [9, 10]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "documents", "define", "policies", ",", "procedures", ",", "training", ",", "and", "auditing", "."], "h": {"name": "documents", "pos": [1, 2]}, "t": {"name": "policies", "pos": [3, 4]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "plot", "centers", "around", "a", "young", "girl", "who", "must", "decide", "between", "helping", "her", "community", "that", "is", "being", "falsely", "accused", "of", "witchcraft", "or", "staying", "silent", "to", "protect", "her", "family", "."], "h": {"name": "plot", "pos": [1, 2]}, "t": {"name": "girl", "pos": [6, 7]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["then", "there", "'s", "labour", "-", "where", "negotiations", "are", "under", "way", "on", "issues", "such", "as", "apprentice", "training", "."], "h": {"name": "negotiations", "pos": [6, 7]}, "t": {"name": "apprentice training", "pos": [14, 16]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "exhibition", "comprises", "original", "drawings", "featuring", "famous", "landmarks", "between", "plymouth", "and", "london", "."], "h": {"name": "drawings", "pos": [4, 5]}, "t": {"name": "landmarks", "pos": [7, 8]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "session", "discussed", "about", "inter-loans", "of", "performance", "sets", "."], "h": {"name": "session", "pos": [1, 2]}, "t": {"name": "inter-loans", "pos": [4, 5]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "painting", "represents", "the", "last", "meal", "shared", "by", "jesus", "with", "his", "disciples", "before", "his", "capture", "and", "death", "."], "h": {"name": "painting", "pos": [1, 2]}, "t": {"name": "meal", "pos": [5, 6]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "white", "paper", "full", "employment", "in", "australia", "was", "the", "defining", "document", "of", "economic", "policy", "in", "australia", "for", "the", "30", "years", "between", "1945", "and", "1975", "."], "h": {"name": "document", "pos": [10, 11]}, "t": {"name": "economic policy", "pos": [12, 14]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "statute", "applied", "to", "the", "six", "dominions", "which", "existed", "in", "1931", "."], "h": {"name": "statute", "pos": [1, 2]}, "t": {"name": "dominions", "pos": [6, 7]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["it", "is", "a", "cable", "television", "specialty", "channel", "showing", "sports", "and", "sport-related", "shows", "."], "h": {"name": "channel", "pos": [6, 7]}, "t": {"name": "sports", "pos": [8, 9]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "report", "emphasised", "the", "need", "for", "better", "co-ordination", "between", "the", "agencies", "."], "h": {"name": "report", "pos": [1, 2]}, "t": {"name": "need", "pos": [4, 5]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "lead", "serves", "both", "as", "an", "introduction", "to", "the", "article", "and", "as", "a", "summary", "of", "the", "important", "aspects", "of", "the", "subject", "of", "the", "article", "."], "h": {"name": "summary", "pos": [13, 14]}, "t": {"name": "aspects", "pos": [17, 18]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "artist", "'s", "installation", "studies", "the", "relationships", "between", "man", "and", "nature", "."], "h": {"name": "installation", "pos": [3, 4]}, "t": {"name": "relationships", "pos": [6, 7]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["some", "of", "these", "conspiracy", "theories", "allege", "that", "his", "birth", "certificate", "is", "a", "forgery", "."], "h": {"name": "theories", "pos": [4, 5]}, "t": {"name": "birth certificate", "pos": [8, 10]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["on", "the", "border", "issue", ",", "the", "original", "draft", "had", "declared", "some", "initial", "borders", ",", "which", "are", "to", "be", "confirmed", "and", "decided", "by", "the", "un", "partition", "plan", "."], "h": {"name": "draft", "pos": [7, 8]}, "t": {"name": "borders", "pos": [12, 13]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["members", "use", "the", "website", "to", "inform", "about", "projects", "and", "events", "."], "h": {"name": "website", "pos": [3, 4]}, "t": {"name": "projects", "pos": [7, 8]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "aim", "of", "this", "paper", "is", "to", "present", "some", "recent", "experimental", "results", "obtained", "in", "rayleigh-benard", "instability", "."], "h": {"name": "paper", "pos": [4, 5]}, "t": {"name": "results", "pos": [11, 12]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["it", "is", "a", "drama", "that", "is", "centered", "around", "a", "troubled", "teenage", "girl", "and", "a", "family", "that", "is", "trying", "to", "get", "over", "the", "loss", "of", "their", "son", "."], "h": {"name": "drama", "pos": [3, 4]}, "t": {"name": "girl", "pos": [11, 12]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["this", "paper", "offers", "a", "reflexive", "account", "of", "secondary", "analysis", "focused", "on", "the", "topic", "of", "convenience", "food", "and", "choice", "."], "h": {"name": "account", "pos": [5, 6]}, "t": {"name": "analysis", "pos": [8, 9]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["this", "includes", "those", "rules", "governing", "transfers", ",", "academic", "eligibility", ",", "age", "requirements", ",", "and", "the", "number", "of", "consecutive", "seasons", "of", "athletic", "eligibility", "beyond", "grade", "eight", "."], "h": {"name": "rules", "pos": [3, 4]}, "t": {"name": "transfers", "pos": [5, 6]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["this", "book", "relates", "tales", ",", "which", "were", "recorded", "by", "a", "popular", "minister", "in", "the", "early", "1900", "'s", "."], "h": {"name": "book", "pos": [1, 2]}, "t": {"name": "tales", "pos": [3, 4]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["a", "clip", "describing", "the", "bakery", "'s", "investment", "in", "people", "as", "well", "as", "machines", "has", "been", "presented", "."], "h": {"name": "clip", "pos": [1, 2]}, "t": {"name": "investment", "pos": [6, 7]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["this", "fable", "illustrates", "the", "force", "of", "jealousy", "between", "married", "people", "."], "h": {"name": "fable", "pos": [1, 2]}, "t": {"name": "force", "pos": [4, 5]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["throughout", "his", "writing", "career", ",", "all", "of", "his", "novels", "have", "concerned", "fictional", "secret", "agents", "."], "h": {"name": "novels", "pos": [8, 9]}, "t": {"name": "agents", "pos": [13, 14]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["a", "local", "gallery", "is", "promoting", "the", "work", "of", "a", "diverse", "range", "of", "artists", "from", "across", "the", "region", "."], "h": {"name": "gallery", "pos": [2, 3]}, "t": {"name": "work", "pos": [6, 7]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "book", "criticizes", "the", "institutionalized", "nuclear", "family", "from", "a", "feminist", "perspective", "."], "h": {"name": "book", "pos": [1, 2]}, "t": {"name": "family", "pos": [6, 7]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["legal", "regulations", "applying", "to", "professional", "corporations", "typically", "differ", "in", "important", "ways", "from", "those", "applying", "to", "other", "corporations", "."], "h": {"name": "regulations", "pos": [1, 2]}, "t": {"name": "professional corporations", "pos": [4, 6]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "novel", "depicts", "the", "harsh", "life", "of", "workers", "who", "worked", "on", "a", "crab-fishing", "and", "canning", "boat", "in", "the", "northern", "seas", "of", "japan", "."], "h": {"name": "novel", "pos": [1, 2]}, "t": {"name": "life", "pos": [5, 6]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "first", "two", "papers", "define", "the", "contemporary", "terrorist", "threat", "while", "the", "next", "three", "papers", "examine", "global", "counter-terrorism", "trends", "."], "h": {"name": "papers", "pos": [3, 4]}, "t": {"name": "threat", "pos": [8, 9]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "remaining", "articles", "run", "the", "gamut", "of", "sociological", "research", "."], "h": {"name": "articles", "pos": [2, 3]}, "t": {"name": "sociological research", "pos": [7, 9]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["it", "is", "a", "controversial", "topic", "that", "provokes", "strong", "arguments", "for", "and", "against", "the", "practice", "."], "h": {"name": "arguments", "pos": [8, 9]}, "t": {"name": "practice", "pos": [13, 14]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["here", ",", "in", "exclusive", "interview", "clips", ",", "he", "talked", "about", "his", "career", "and", "what", "he", "thought", "of", "today", "'s", "television", "."], "h": {"name": "clips", "pos": [5, 6]}, "t": {"name": "career", "pos": [11, 12]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["auto", "ads", "during", "this", "period", "tended", "to", "feature", "the", "beauty", "and", "engineering", "strength", "of", "the", "vehicle", "."], "h": {"name": "ads", "pos": [1, 2]}, "t": {"name": "beauty", "pos": [9, 10]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["his", "famous", "book", "telling", "of", "his", "explorations", "is", "valuable", "not", "only", "for", "its", "botanical", "and", "ethnological", "record", "but", "also", "for", "its", "poetry", "and", "narrative", "."], "h": {"name": "book", "pos": [2, 3]}, "t": {"name": "explorations", "pos": [6, 7]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["in", "the", "interview", "josie", "speaks", "about", "her", "childhood", "and", "family", "in", "dudley", "."], "h": {"name": "interview", "pos": [2, 3]}, "t": {"name": "childhood", "pos": [7, 8]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "point", "of", "the", "article", "is", "that", "food", "forms", "an", "important", "part", "of", "cny", "."], "h": {"name": "article", "pos": [4, 5]}, "t": {"name": "food", "pos": [7, 8]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["it", "also", "offers", "a", "concise", "guide", "to", "the", "historical", "documentary", "resources", "."], "h": {"name": "guide", "pos": [5, 6]}, "t": {"name": "resources", "pos": [10, 11]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "answers", "to", "questions", "raised", "about", "rules", "governing", "immigration", "were", "wheeled", "out", "one", "after", "another", "."], "h": {"name": "questions", "pos": [3, 4]}, "t": {"name": "rules", "pos": [6, 7]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["today", ",", "for", "the", "first", "time", "in", "the", "uk", ",", "full", "examination", "papers", "in", "chemistry", "and", "mathematics", "set", "for", "16-year-old", "school", "pupils", "in", "the", "people", "'s", "republic", "of", "china", "are", "to", "be", "published", "in", "english", "and", "made", "widely", "available", "."], "h": {"name": "papers", "pos": [12, 13]}, "t": {"name": "chemistry", "pos": [14, 15]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["his", "speech", "outlined", "urgent", "measures", "for", "stimulating", "the", "economy", "."], "h": {"name": "speech", "pos": [1, 2]}, "t": {"name": "measures", "pos": [4, 5]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["this", "leaflet", "gives", "a", "summary", "of", "holiday", "entitlements", "."], "h": {"name": "leaflet", "pos": [1, 2]}, "t": {"name": "entitlements", "pos": [7, 8]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["this", "poster", "advertises", "the", "1898", "exhibition", "of", "the", "shroud", "."], "h": {"name": "poster", "pos": [1, 2]}, "t": {"name": "exhibition", "pos": [5, 6]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "survey", "documents", "children", "'s", "opinions", "on", "a", "wide", "range", "of", "social", "issues", "."], "h": {"name": "survey", "pos": [1, 2]}, "t": {"name": "opinions", "pos": [5, 6]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "book", "contained", "not", "only", "recipes", "but", "also", "such", "things", "as", "coloring", "of", "textiles", "and", "other", "things", "concerning", "a", "household", "."], "h": {"name": "book", "pos": [1, 2]}, "t": {"name": "coloring", "pos": [11, 12]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "pertinent", "passage", "describes", "the", "flag", "as", "a", "tricolor", "consisting", "of", "green", ",", "white", "and", "orange", "bands", "."], "h": {"name": "passage", "pos": [2, 3]}, "t": {"name": "flag", "pos": [5, 6]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "commission", "submitted", "to", "the", "council", "and", "the", "european", "parliament", "a", "report", "on", "the", "application", "and", "conditions", "of", "implementation", "of", "the", "agreement", "."], "h": {"name": "report", "pos": [11, 12]}, "t": {"name": "application", "pos": [14, 15]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["this", "is", "a", "short", "film", "with", "12", "minutes", "duration", "on", "the", "life", "of", "a", "live", "statue", "-", "a", "mimo", "-", "on", "the", "streets", "of", "florence", ",", "italy", "."], "h": {"name": "film", "pos": [4, 5]}, "t": {"name": "life", "pos": [11, 12]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["picture", "books", "invite", "students", "to", "engage", "in", "critical", "discussion", "of", "complex", "issues", "of", "race", ",", "class", ",", "and", "gender", "."], "h": {"name": "discussion", "pos": [8, 9]}, "t": {"name": "issues", "pos": [11, 12]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "play", "reflects", ",", "among", "other", "things", ",", "questions", "about", "the", "nature", "of", "political", "power", "and", "the", "dilemmas", "facing", "royal", "families", "."], "h": {"name": "play", "pos": [1, 2]}, "t": {"name": "questions", "pos": [8, 9]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["a", "variety", "of", "methods", "are", "known", ",", "but", "only", "a", "few", "papers", "give", "details", "of", "equipment", "construction", "."], "h": {"name": "papers", "pos": [11, 12]}, "t": {"name": "construction", "pos": [16, 17]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["as", "of", "october", "5", ",", "2009", ",", "the", "group", "has", "finally", "produced", "a", "review", "summarising", "the", "work", "performed", "over", "the", "past", "12", "years", "."], "h": {"name": "review", "pos": [13, 14]}, "t": {"name": "work", "pos": [16, 17]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["all", "the", "epigraphs", "make", "reference", "to", "hell", "or", "the", "underworld", "."], "h": {"name": "epigraphs", "pos": [2, 3]}, "t": {"name": "hell", "pos": [6, 7]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["flyers", "and", "postcards", "supply", "current", "clients", "with", "company", "information", ",", "but", "normally", "do", "not", "increase", "clients", "to", "the", "mailing", "list", "."], "h": {"name": "flyers", "pos": [0, 1]}, "t": {"name": "company information", "pos": [7, 9]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "australian", "flexible", "learning", "framework", "has", "released", "a", "new", "report", "on", "mobile", "learning", "."], "h": {"name": "report", "pos": [9, 10]}, "t": {"name": "learning", "pos": [12, 13]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["obama", "uses", "nobel", "speech", "to", "explain", "his", "foreign", "policy", "doctrine", "."], "h": {"name": "speech", "pos": [3, 4]}, "t": {"name": "doctrine", "pos": [9, 10]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "chilean", "declaration", "of", "independence", "is", "a", "document", "declaring", "the", "independence", "of", "chile", "from", "the", "spanish", "empire", "."], "h": {"name": "document", "pos": [7, 8]}, "t": {"name": "independence", "pos": [10, 11]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "book", "asserts", "the", "notion", "that", "men", "and", "women", "are", "as", "different", "as", "beings", "from", "other", "planets", "."], "h": {"name": "book", "pos": [1, 2]}, "t": {"name": "notion", "pos": [4, 5]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "newsletter", "tells", "of", "practical", "projects", "developed", "to", "help", "those", "affected", "by", "the", "pandemic", "."], "h": {"name": "newsletter", "pos": [1, 2]}, "t": {"name": "projects", "pos": [5, 6]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["on", "17", "may", "2005", ",", "the", "committee", "held", "a", "hearing", "concerning", "specific", "allegations", "."], "h": {"name": "hearing", "pos": [9, 10]}, "t": {"name": "allegations", "pos": [12, 13]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "film", "portrays", "four", "girls", "in", "a", "trend-setting", "clique", "at", "a", "fictional", "ohio", "high", "school", "."], "h": {"name": "film", "pos": [1, 2]}, "t": {"name": "girls", "pos": [4, 5]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "following", "table", "indicates", "the", "party", "of", "elected", "officials", "in", "the", "u.s.", "state", "of", "california", "."], "h": {"name": "table", "pos": [2, 3]}, "t": {"name": "party", "pos": [5, 6]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["fact", "magazine", "was", "an", "american", "publication", "that", "commented", "on", "controversial", "topics", "."], "h": {"name": "publication", "pos": [5, 6]}, "t": {"name": "controversial topics", "pos": [9, 11]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["there", "are", "allegations", "that", "the", "massacre", "was", "organized", "."], "h": {"name": "allegations", "pos": [2, 3]}, "t": {"name": "massacre", "pos": [5, 6]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "factory", "'s", "products", "have", "included", "flower", "pots", ",", "finnish", "rooster-whistles", ",", "pans", ",", "trays", ",", "tea", "pots", ",", "ash", "trays", "and", "air", "moisturisers", "."], "h": {"name": "factory", "pos": [1, 2]}, "t": {"name": "trays", "pos": [14, 15]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "court", "decided", "the", "objection", "by", "making", "the", "instalment", "order", "as", "sought", "."], "h": {"name": "court", "pos": [1, 2]}, "t": {"name": "order", "pos": [9, 10]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["for", "us", "the", "term", "artists", "'", "book", "simply", "means", "a", "book", "made", "by", "an", "artist", ";", "a", "book", "made", "as", "a", "work", "of", "art", "rather", "than", "as", "a", "literary", "artifact", "."], "h": {"name": "artists", "pos": [4, 5]}, "t": {"name": "book", "pos": [6, 7]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["global", "digital", "music", "sales", "grow", "as", "the", "music", "industry", "develops", "new", "business", "models", "."], "h": {"name": "industry", "pos": [8, 9]}, "t": {"name": "models", "pos": [12, 13]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "bacterial", "aerosol", "was", "generated", "from", "an", "up-draft", "nebulizer", "."], "h": {"name": "bacterial aerosol", "pos": [1, 3]}, "t": {"name": "nebulizer", "pos": [8, 9]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["beaver", "dams", "are", "created", "as", "a", "protection", "against", "predators", ",", "such", "as", "coyotes", ",", "wolves", "and", "bears", ",", "and", "to", "provide", "easy", "access", "to", "food", "during", "winter", "."], "h": {"name": "beaver", "pos": [0, 1]}, "t": {"name": "dams", "pos": [1, 2]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["still", "other", "examples", "of", "the", "potter", "'s", "ceramics", "are", "clad", "in", "slinky", "assortments", "of", "tassels", "and", "beads", "."], "h": {"name": "potter", "pos": [5, 6]}, "t": {"name": "ceramics", "pos": [7, 8]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["police", "foiled", "an", "attempt", "to", "kill", "an", "artist", "who", "drew", "a", "cartoon", "depicting", "the", "prophet", "muhammad", "that", "sparked", "outrage", "in", "the", "muslim", "world", "."], "h": {"name": "artist", "pos": [7, 8]}, "t": {"name": "cartoon", "pos": [11, 12]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["james", "hagler", ",", "venice", "'s", "director", "of", "historical", "resources", ",", "has", "completed", "a", "picture", "book", "of", "the", "area", "'s", "buildings", "."], "h": {"name": "director", "pos": [5, 6]}, "t": {"name": "book", "pos": [14, 15]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "filmmakers", "dug", "a", "large", "hole", "in", "the", "ground", "for", "the", "scene", "where", "the", "narnians", "cause", "the", "pillars", "supporting", "the", "growth", "near", "aslan", "'s", "how", "to", "collapse", "on", "the", "telmarines", "."], "h": {"name": "filmmakers", "pos": [1, 2]}, "t": {"name": "hole", "pos": [5, 6]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "agitating", "students", "also", "put", "up", "a", "barricade", "on", "the", "dhaka-mymensingh", "highway", "disrupting", "vehicular", "movement", "for", "about", "two", "hours", "from", "10:30am", "to", "12:30pm", "."], "h": {"name": "students", "pos": [2, 3]}, "t": {"name": "barricade", "pos": [7, 8]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "fire", "started", "when", "the", "owner", "lit", "a", "fire", "behind", "the", "house", "."], "h": {"name": "owner", "pos": [5, 6]}, "t": {"name": "fire", "pos": [8, 9]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["a", "street", "writer", "who", "specialises", "in", "love", "letters", "becomes", "involved", "with", "one", "of", "the", "addressees", "."], "h": {"name": "writer", "pos": [2, 3]}, "t": {"name": "letters", "pos": [7, 8]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "workers", "build", "the", "honeycomb", "in", "which", "the", "eggs", "are", "laid", "and", "the", "honey", "and", "pollen", "is", "stored", "."], "h": {"name": "workers", "pos": [1, 2]}, "t": {"name": "honeycomb", "pos": [4, 5]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "corporation", "has", "constructed", "railways", "in", "ukraine", ",", "guinea", ",", "iran", ",", "iraq", ",", "and", "syria", "."], "h": {"name": "corporation", "pos": [1, 2]}, "t": {"name": "railways", "pos": [4, 5]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "second", "memorable", "shift", "was", "in", "september", ",", "when", "the", "plant", "made", "the", "75-millionth", "ton", "of", "steel", "."], "h": {"name": "plant", "pos": [10, 11]}, "t": {"name": "steel", "pos": [16, 17]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["caryn", "james", ",", "a", "film", "critic", "for", "the", "new", "york", "times", ",", "has", "just", "completed", "a", "novel", "."], "h": {"name": "critic", "pos": [5, 6]}, "t": {"name": "novel", "pos": [16, 17]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["in", "1882", "louis", "developed", "a", "method", "of", "making", "photographic", "plates", ",", "and", "by", "1894", "the", "brothers", "'", "factory", "was", "producing", "15", "million", "plates", "a", "year", "."], "h": {"name": "factory", "pos": [17, 18]}, "t": {"name": "plates", "pos": [22, 23]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "author", "'s", "reasons", "for", "creating", "a", "work", "differ", "remarkably", "from", "his", "incentive", "to", "publicly", "distribute", "the", "work", "."], "h": {"name": "author", "pos": [1, 2]}, "t": {"name": "work", "pos": [7, 8]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["next", "the", "soldiers", "put", "up", "a", "wall", "of", "stakes", "on", "the", "pile", "of", "dirt", "."], "h": {"name": "soldiers", "pos": [2, 3]}, "t": {"name": "wall", "pos": [6, 7]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "girl", ",", "in", "her", "first", "holiday", "season", "as", "an", "elm", "creek", "quilter", ",", "creates", "a", "quilt", "for", "her", "best", "friend", "even", "as", "she", "begins", "to", "question", "her", "feelings", "for", "him", "."], "h": {"name": "girl", "pos": [1, 2]}, "t": {"name": "quilt", "pos": [16, 17]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["and", "in", "every", "single", "trial", ",", "the", "sponsoring", "manufacturer", "'s", "drug", "came", "out", "as", "better", "than", ",", "or", "equal", "to", ",", "the", "others", "in", "the", "trial", "."], "h": {"name": "manufacturer", "pos": [8, 9]}, "t": {"name": "drug", "pos": [10, 11]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["to", "develop", "a", "rampart", ",", "troops", "piled", "up", "the", "dirt", "into", "a", "small", "hill", "."], "h": {"name": "troops", "pos": [5, 6]}, "t": {"name": "hill", "pos": [13, 14]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["he", "painstakingly", "taught", "the", "chords", "to", "the", "young", "troubadour", "'s", "anti-establishment", "broadsides", "."], "h": {"name": "troubadour", "pos": [8, 9]}, "t": {"name": "broadsides", "pos": [11, 12]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["for", "the", "last", "two", "years", ",", "the", "team", "has", "constructed", "two", "gardens", "out", "of", "recycled", "materials", "."], "h": {"name": "team", "pos": [7, 8]}, "t": {"name": "gardens", "pos": [11, 12]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["in", "1858", "a", "shoemaker", "invented", "a", "machine", "for", "sewing", "the", "soles", "of", "shoes", "to", "the", "uppers", "."], "h": {"name": "shoemaker", "pos": [3, 4]}, "t": {"name": "machine", "pos": [6, 7]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["here", "is", "a", "picture", "of", "the", "artist", "taking", "a", "photograph", "of", "a", "young", "girl", "in", "front", "of", "a", "vegetable", "stand", "on", "mulberry", "street", "in", "new", "york", "city", "."], "h": {"name": "artist", "pos": [6, 7]}, "t": {"name": "photograph", "pos": [9, 10]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["next", "was", "a", "stop", "at", "christien", "meindertsma", "'s", "gorgeous", "knitting", "exhibition", "where", "she", "and", "an", "assistant", "knit", "a", "giant", "really", "thick", "woolen", "rug", "using", "six-foot-long", "needles", "."], "h": {"name": "assistant", "pos": [15, 16]}, "t": {"name": "rug", "pos": [22, 23]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["under", "hideyoshi", "'s", "administration", "the", "factory", "'s", "output", "of", "firearms", "increased", "dramatically", "."], "h": {"name": "factory", "pos": [5, 6]}, "t": {"name": "firearms", "pos": [9, 10]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["listed", "as", "an", "author", "is", "andrew", "wakefield", "-", "he", "is", "the", "british", "researcher", "who", "started", "the", "vaccine-autism", "myth", "with", "his", "paper", "linking", "the", "mmr", "vaccine", "to", "autism", "."], "h": {"name": "researcher", "pos": [12, 13]}, "t": {"name": "paper", "pos": [20, 21]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["in", "defamation", ",", "the", "circumstances", "are", "that", "the", "defendant", "has", "made", "a", "statement", "which", "injures", "the", "reputation", "of", "the", "claimant", "."], "h": {"name": "defendant", "pos": [8, 9]}, "t": {"name": "statement", "pos": [12, 13]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["when", "the", "statesman", "threw", "together", "a", "draft", "of", "the", "constitution", "in", "1776", ",", "he", "probably", "did", "not", "realise", "he", "would", "be", "working", "in", "a", "couple", "of", "the", "positions", "specified", "quite", "so", "soon", "."], "h": {"name": "statesman", "pos": [2, 3]}, "t": {"name": "draft", "pos": [6, 7]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "mason", "who", "did", "the", "stonework", "did", "a", "wonderful", "job", "."], "h": {"name": "mason", "pos": [1, 2]}, "t": {"name": "stonework", "pos": [5, 6]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["chimpanzees", "make", "tools", "and", "use", "them", "to", "acquire", "foods", "and", "for", "social", "displays", "."], "h": {"name": "chimpanzees", "pos": [0, 1]}, "t": {"name": "tools", "pos": [2, 3]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["this", "is", "more", "of", "a", "production", "machine", "stitching", "600", "stitches", "per", "minute", "."], "h": {"name": "machine", "pos": [6, 7]}, "t": {"name": "stitches", "pos": [9, 10]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "campaign", "'s", "leaders", "were", "right", "to", "accept", "the", "arms", "manufacturer", "'s", "pledge", "."], "h": {"name": "manufacturer", "pos": [10, 11]}, "t": {"name": "pledge", "pos": [12, 13]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "officer", "swore", "an", "oath", "of", "secrecy", "on", "becoming", "a", "sky", "marshal", ",", "so", "his", "name", "ca", "n't", "be", "revealed", "."], "h": {"name": "officer", "pos": [1, 2]}, "t": {"name": "oath", "pos": [4, 5]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "brothers", "wrote", "this", "movie", "after", "coming", "up", "with", "the", "characters", "."], "h": {"name": "brothers", "pos": [1, 2]}, "t": {"name": "movie", "pos": [4, 5]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "police", "report", "has", "cast", "a", "spotlight", "on", "america", "'s", "self-help", "industry", "."], "h": {"name": "police", "pos": [1, 2]}, "t": {"name": "report", "pos": [2, 3]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["baird", "'s", "scanning", "disk", "produced", "an", "image", "of", "30", "lines", "resolution", ",", "just", "enough", "to", "discern", "a", "human", "face", ",", "from", "a", "double", "spiral", "of", "lenses", "."], "h": {"name": "disk", "pos": [3, 4]}, "t": {"name": "image", "pos": [6, 7]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "speaker", "opens", "the", "poem", "with", "a", "question", "addressed", "to", "the", "beloved", "."], "h": {"name": "speaker", "pos": [1, 2]}, "t": {"name": "question", "pos": [7, 8]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "cactus", "wren", "builds", "many", "nests", "in", "the", "cactus", ",", "but", "actually", "nests", "in", "only", "one", "."], "h": {"name": "wren", "pos": [2, 3]}, "t": {"name": "nests", "pos": [5, 6]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["during", "the", "1980s", ",", "that", "exceptional", "teacher", "at", "a", "poor", "public", "school", "built", "a", "calculus", "program", "rivaled", "by", "only", "a", "handful", "of", "exclusive", "academies", "."], "h": {"name": "teacher", "pos": [6, 7]}, "t": {"name": "program", "pos": [15, 16]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["an", "application", "developer", "with", "adobe", "said", "in", "a", "blog", "posting", "that", "adobe", "is", "working", "on", "the", "security", "flaw", "."], "h": {"name": "developer", "pos": [2, 3]}, "t": {"name": "posting", "pos": [9, 10]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "record", "holder", "folded", "his", "10cm", "aircraft", "by", "hand", "from", "a", "single", "sheet", "of", "paper", "and", "did", "not", "use", "scissors", "or", "glue", "."], "h": {"name": "holder", "pos": [2, 3]}, "t": {"name": "aircraft", "pos": [6, 7]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["144", "of", "those", "apartments", "have", "been", "personally", "designed", "by", "giorgio", "armani", "and", "the", "tower", "also", "boasts", "the", "designer", "'s", "first", "hotel", "."], "h": {"name": "designer", "pos": [17, 18]}, "t": {"name": "hotel", "pos": [20, 21]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["subsidiary", "sales", "companies", "were", "also", "located", "in", "canada", ",", "germany", ",", "and", "italy", ",", "and", "two", "factories", "were", "producing", "products", "in", "england", "."], "h": {"name": "factories", "pos": [16, 17]}, "t": {"name": "products", "pos": [19, 20]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "scientist", "synthesizes", "a", "copy", "of", "the", "magical", "red", "ball", "by", "using", "a", "few", "fragments", "that", "were", "left", "on", "the", "grandfather", "'s", "hand", "."], "h": {"name": "scientist", "pos": [1, 2]}, "t": {"name": "copy", "pos": [4, 5]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["once", "a", "major", "center", "of", "opium", "poppy", "production", "in", "afghanistan", ",", "the", "province", "'s", "production", "of", "poppy", "had", "decreased", "by", "up", "to", "95", "%", "in", "2005", "."], "h": {"name": "province", "pos": [12, 13]}, "t": {"name": "poppy", "pos": [16, 17]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["in", "his", "latest", "book", "he", "chronicles", ",", "in", "great", "detail", "and", "with", "first-hand", "knowledge", ",", "the", "factory", "'s", "output", "of", "diesel", "and", "diesel", "electric", "locomotives", "."], "h": {"name": "factory", "pos": [16, 17]}, "t": {"name": "locomotives", "pos": [24, 25]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["no", "material", "was", "prepared", "for", "the", "sessions", ",", "so", "the", "three", "musicians", "improvised", "an", "album", "'s", "worth", "of", "material", "."], "h": {"name": "musicians", "pos": [11, 12]}, "t": {"name": "material", "pos": [18, 19]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["students", "and", "local", "residents", "have", "worked", "together", "to", "produce", "10000", "bricks", ",", "and", "the", "mason", "has", "completed", "most", "of", "the", "work", "on", "the", "first", "guest", "house", "."], "h": {"name": "students", "pos": [0, 1]}, "t": {"name": "bricks", "pos": [10, 11]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "former", "prime", "minister", "'s", "daughter", "made", "numerous", "offensive", "comments", "about", "a", "french", "mixed-race", "tennis", "player", "."], "h": {"name": "daughter", "pos": [5, 6]}, "t": {"name": "comments", "pos": [9, 10]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["when", "we", "were", "in", "junior", "high", "school", ",", "my", "friend", "made", "a", "map", "of", "the", "school", "lunch", "tables", "according", "to", "popularity", "."], "h": {"name": "friend", "pos": [9, 10]}, "t": {"name": "map", "pos": [12, 13]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["dolphins", "created", "tools", "to", "use", "for", "entertainment", "."], "h": {"name": "dolphins", "pos": [0, 1]}, "t": {"name": "tools", "pos": [2, 3]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["under", "this", "completed", "contract", ",", "workgangs", "made", "up", "almost", "entirely", "of", "mormons", "built", "the", "union", "pacific", "track", "in", "the", "utah", "territory", "."], "h": {"name": "workgangs", "pos": [5, 6]}, "t": {"name": "track", "pos": [16, 17]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["sam", "houghton", ",", "a", "five-year", "old", "boy", "from", "buxton", ",", "derbyshire", ",", "patented", "an", "invention", "after", "coming", "up", "with", "an", "idea", "for", "a", "labour-saving", "broom", "to", "help", "his", "father", "sweep", "up", "leaves", "."], "h": {"name": "boy", "pos": [6, 7]}, "t": {"name": "idea", "pos": [20, 21]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "judge", "'s", "condemnatory", "report", "on", "israel", "'s", "actions", "in", "gaza", "has", "been", "dismissed", "as", "hopelessly", "one-sided", "by", "neutral", "observers", "."], "h": {"name": "judge", "pos": [1, 2]}, "t": {"name": "report", "pos": [4, 5]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["in", "all", "versions", "of", "word", ",", "the", "easiest", "way", "to", "review", "the", "editor", "'s", "changes", "is", "by", "displaying", "the", "reviewing", "toolbar", "."], "h": {"name": "editor", "pos": [12, 13]}, "t": {"name": "changes", "pos": [14, 15]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["his", "wife", "has", "just", "completed", "the", "first", "paper", "of", "her", "graduate", "degree", "."], "h": {"name": "wife", "pos": [1, 2]}, "t": {"name": "paper", "pos": [7, 8]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "film", "opened", "in", "america", "before", "christmas", ",", "and", "the", "critics", "have", "given", "their", "verdict", "."], "h": {"name": "critics", "pos": [10, 11]}, "t": {"name": "verdict", "pos": [14, 15]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["in", "early", "october", ",", "anwar", "al-awlaki", ",", "a", "radical", "cleric", "based", "in", "yemen", ",", "posted", "a", "provocative", "message", "on", "his", "english-language", "web", "site", "."], "h": {"name": "cleric", "pos": [9, 10]}, "t": {"name": "message", "pos": [17, 18]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["top", "stealth-plane", "experts", "have", "re-created", "a", "radical", ",", "nearly", "forgotten", "nazi", "aircraft", "."], "h": {"name": "experts", "pos": [2, 3]}, "t": {"name": "aircraft", "pos": [11, 12]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["a", "variety", "of", "companies", "manufacture", "bopet", "and", "other", "polyester", "films", "under", "different", "trade", "names", "."], "h": {"name": "companies", "pos": [3, 4]}, "t": {"name": "films", "pos": [9, 10]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "writer", "'s", "principal", "work", "during", "the", "years", "following", "pushkin", "'s", "death", "was", "the", "satirical", "epic", "dead", "souls", "."], "h": {"name": "writer", "pos": [1, 2]}, "t": {"name": "work", "pos": [4, 5]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["it", "is", "in", "the", "hours", "of", "darkness", "that", "the", "plant", "builds", "up", "the", "oxidase", "that", "is", "to", "call", "out", "the", "signal", "that", "the", "flower", "has", "run", "its", "full", "course", "."], "h": {"name": "plant", "pos": [9, 10]}, "t": {"name": "oxidase", "pos": [13, 14]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "factory", "produced", "british", "military", "rifles", ",", "muskets", "and", "swords", "from", "1816", "."], "h": {"name": "factory", "pos": [1, 2]}, "t": {"name": "rifles", "pos": [5, 6]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["snails", "and", "slugs", "cause", "holes", "in", "the", "leaves", "of", "young", "plants", "and", "can", "chew", "right", "through", "the", "stems", "of", "newly", "planted", "seedlings", "."], "h": {"name": "slugs", "pos": [2, 3]}, "t": {"name": "holes", "pos": [4, 5]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["among", "them", "are", "the", "2,000", "or", "so", "workers", "who", "still", "make", "diesel", "engines", "for", "ford", "on", "a", "site", "that", "employed", "more", "than", "50,000", "in", "the", "1950s", "."], "h": {"name": "workers", "pos": [7, 8]}, "t": {"name": "engines", "pos": [12, 13]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "english", "writer", ",", "poet", ",", "philologist", ",", "and", "university", "professor", "was", "best", "known", "as", "the", "author", "of", "the", "classic", "high", "fantasy", "works", "the", "hobbit", ",", "the", "lord", "of", "the", "rings", "and", "the", "silmarillion", "."], "h": {"name": "professor", "pos": [10, 11]}, "t": {"name": "works", "pos": [22, 23]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["scientists", "have", "assembled", "the", "first", "global", "geological", "map", "of", "the", "solar", "system", "'s", "largest", "moon", "-", "and", "in", "doing", "so", "have", "gathered", "new", "evidence", "into", "the", "formation", "of", "the", "large", ",", "icy", "satellite", "."], "h": {"name": "scientists", "pos": [0, 1]}, "t": {"name": "map", "pos": [7, 8]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["from", "the", "pulitzer", "prize-winning", "author", "of", "march", "comes", "this", "novel", "-", "inspired", "by", "a", "true", "story", "-", "that", "traces", "the", "journey", "of", "a", "rare", "illuminated", "manuscript", "through", "centuries", "of", "exile", "and", "war", "."], "h": {"name": "author", "pos": [4, 5]}, "t": {"name": "novel", "pos": [9, 10]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["traditionally", ",", "chandlers", "made", "both", "soap", "and", "candles", ",", "because", "a", "long", "time", "ago", "both", "of", "these", "products", "were", "made", "with", "lard", "."], "h": {"name": "chandlers", "pos": [2, 3]}, "t": {"name": "candles", "pos": [7, 8]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["they", "tried", "an", "assault", "of", "their", "own", "an", "hour", "later", ",", "with", "two", "columns", "of", "sixteen", "tanks", "backed", "by", "a", "battalion", "of", "panzer", "grenadiers", "."], "h": {"name": "battalion", "pos": [20, 21]}, "t": {"name": "grenadiers", "pos": [23, 24]}, "relation": "Member-Collection(e2,e1)"}
{"token": ["she", "soon", "had", "a", "stable", "of", "her", "own", "rescued", "hounds", "."], "h": {"name": "stable", "pos": [4, 5]}, "t": {"name": "hounds", "pos": [9, 10]}, "relation": "Member-Collection(e2,e1)"}
{"token": ["poor", "hygiene", "controls", ",", "reports", "of", "a", "brace", "of", "gamey", "grouse", "and", "what", "looked", "like", "a", "skinned", "fox", "all", "amounted", "to", "a", "pie", "that", "was", "unfit", "for", "human", "consumption", "."], "h": {"name": "brace", "pos": [7, 8]}, "t": {"name": "grouse", "pos": [10, 11]}, "relation": "Member-Collection(e2,e1)"}
{"token": ["the", "kerala", "backwaters", "are", "a", "chain", "of", "brackish", "lagoons", "and", "lakes", "lying", "parallel", "to", "the", "arabian", "sea", "coast", "of", "kerala", "state", "in", "southern", "india", "."], "h": {"name": "chain", "pos": [5, 6]}, "t": {"name": "lagoons", "pos": [8, 9]}, "relation": "Member-Collection(e2,e1)"}
{"token": ["whether", "your", "home", "includes", "a", "charm", "of", "finches", ",", "a", "sute", "of", "bloodhounds", ",", "or", "a", "knob", "of", "toads", ",", "i", "think", "it", "'s", "important", "to", "keep", "the", "numbers", "within", "reason", "."], "h": {"name": "knob", "pos": [16, 17]}, "t": {"name": "toads", "pos": [18, 19]}, "relation": "Member-Collection(e2,e1)"}
{"token": ["a", "great", "wing", "of", "fluorite", "dragons", ",", "the", "greatest", "concentration", "of", "the", "rather", "solitary", "dragons", "ever", "known", ",", "joined", "the", "desperate", "battle", "with", "the", "blues", "and", "silvers", "against", "chaos", "."], "h": {"name": "wing", "pos": [2, 3]}, "t": {"name": "dragons", "pos": [5, 6]}, "relation": "Member-Collection(e2,e1)"}
{"token": ["our", "mercenary", "army", "has", "now", "degenerated", "into", "a", "godless", "cabal", "of", "mindless", "killers", "not", "unlike", "the", "soviets", "that", "were", "butchering", "civilians", "in", "afghanistan", "(", "exactly", "as", "sadistically", "as", "we", "have", ")", "."], "h": {"name": "cabal", "pos": [9, 10]}, "t": {"name": "killers", "pos": [12, 13]}, "relation": "Member-Collection(e2,e1)"}
{"token": ["bmw", "'s", "idrive", "4.0", "brings", "in", "a", "horde", "of", "new", "features", "."], "h": {"name": "horde", "pos": [7, 8]}, "t": {"name": "features", "pos": [10, 11]}, "relation": "Member-Collection(e2,e1)"}
{"token": ["it", "consists", "of", "an", "ensemble", "of", "ladies", "who", "are", "highly", "qualified", "to", "play", "various", "arabic", "musical", "instruments", "."], "h": {"name": "ensemble", "pos": [4, 5]}, "t": {"name": "ladies", "pos": [6, 7]}, "relation": "Member-Collection(e2,e1)"}
{"token": ["in", "the", "corner", "there", "are", "several", "gate", "captains", "and", "a", "legion", "of", "wu", "crossbowmen", "."], "h": {"name": "legion", "pos": [10, 11]}, "t": {"name": "crossbowmen", "pos": [13, 14]}, "relation": "Member-Collection(e2,e1)"}
{"token": ["i", "was", "attacked", "by", "a", "flock", "of", "pigeons", "today", "."], "h": {"name": "flock", "pos": [5, 6]}, "t": {"name": "pigeons", "pos": [7, 8]}, "relation": "Member-Collection(e2,e1)"}
{"token": ["after", "the", "marian", "reforms", "the", "legion", "was", "notionally", "a", "unit", "of", "heavy", "infantrymen", "armed", "with", "just", "sword", "and", "pilum", ",", "but", "even", "so", "it", "was", "normally", "fielded", "with", "attached", "auxiliary", "skirmishers", "and", "missile", "troops", ",", "and", "incorporated", "a", "small", "cavalry", "unit", "."], "h": {"name": "unit", "pos": [9, 10]}, "t": {"name": "infantrymen", "pos": [12, 13]}, "relation": "Member-Collection(e2,e1)"}
{"token": ["an", "expensive", "uniform", "and", "a", "strict", "ballot", "rendered", "it", "somewhat", "too", "exclusive", "in", "its", "character", ",", "but", "in", "the", "end", "it", "answered", "its", "purpose", "by", "becoming", "practically", "a", "muster", "of", "the", "national", "leaders", "of", "the", "present", "and", "the", "future", "."], "h": {"name": "muster", "pos": [28, 29]}, "t": {"name": "leaders", "pos": [32, 33]}, "relation": "Member-Collection(e2,e1)"}
{"token": ["so", "when", "william", "did", "cross", "the", "boyne", "on", "july", "1st", "1690", ",", "he", "had", "an", "army", "consisting", "of", "the", "riffraff", "of", "europe", "'s", "mercenaries", "."], "h": {"name": "riffraff", "pos": [19, 20]}, "t": {"name": "mercenaries", "pos": [23, 24]}, "relation": "Member-Collection(e2,e1)"}
{"token": ["flames", "of", "purple", ",", "pink", ",", "yellow", "and", "blue", "dance", "in", "the", "air", "as", "a", "coven", "of", "sorcerers", "call", "forth", "energies", "from", "within", "the", "empyrean", "."], "h": {"name": "coven", "pos": [15, 16]}, "t": {"name": "sorcerers", "pos": [17, 18]}, "relation": "Member-Collection(e2,e1)"}
{"token": ["out", "of", "the", "early", "morning", "haze", ",", "a", "convoy", "of", "articulated", "lorries", "pulls", "into", "the", "gashouder", "square", "."], "h": {"name": "convoy", "pos": [8, 9]}, "t": {"name": "lorries", "pos": [11, 12]}, "relation": "Member-Collection(e2,e1)"}
{"token": ["as", "the", "gondorians", "moved", "forward", "the", "evil", "force", "started", "to", "withdraw", ",", "unleashing", "a", "rain", "of", "deadly", "arrows", "into", "the", "heavily", "armoured", "gondorians", "."], "h": {"name": "rain", "pos": [14, 15]}, "t": {"name": "arrows", "pos": [17, 18]}, "relation": "Member-Collection(e2,e1)"}
{"token": ["the", "city", "is", "a", "treasure", "trove", "of", "terrific", "libraries", ",", "interesting", "museums", ",", "and", "wonderful", "victorian", "architecture", "complemented", "by", "the", "incomparable", "work", "of", "scotland", "'s", "greatest", "architect", ",", "charles", "rennie", "mackintosh", "."], "h": {"name": "treasure trove", "pos": [4, 6]}, "t": {"name": "libraries", "pos": [8, 9]}, "relation": "Member-Collection(e2,e1)"}
{"token": ["in", "the", "same", "way", ",", "a", "society", "is", "built", "up", "of", "many", "individuals", "."], "h": {"name": "society", "pos": [6, 7]}, "t": {"name": "individuals", "pos": [12, 13]}, "relation": "Member-Collection(e2,e1)"}
{"token": ["in", "a", "former", "residence", ",", "your", "writer", "had", "an", "atrium", "containing", "a", "duel", "of", "dovesmoles", "numbering", "22", "."], "h": {"name": "duel", "pos": [12, 13]}, "t": {"name": "dovesmoles", "pos": [14, 15]}, "relation": "Member-Collection(e2,e1)"}
{"token": ["we", "also", "passed", "a", "wake", "of", "turkey", "buzzards", ",", "and", "i", "was", "again", "glad", "to", "not", "be", "driving", ",", "because", "my", "car", "and", "i", "both", "have", "shaky", "nerves", "still", ",", "from", "the", "great", "turkey", "buzzard", "incident", "of", "'08", "."], "h": {"name": "wake", "pos": [4, 5]}, "t": {"name": "buzzards", "pos": [7, 8]}, "relation": "Member-Collection(e2,e1)"}
{"token": ["besides", ",", "the", "chinese", "case", "also", "challenges", "some", "ideas", "of", "rss", "theory", ",", "including", "the", "concept", "of", "alliance", "of", "different", "social", "classes", "and", "the", "role", "of", "working", "class", "in", "democratization", "."], "h": {"name": "alliance", "pos": [17, 18]}, "t": {"name": "classes", "pos": [21, 22]}, "relation": "Member-Collection(e2,e1)"}
{"token": ["i", "reflected", "on", "this", "while", "passing", "a", "passel", "of", "pigeons", "parading", "on", "a", "loop", "sidewalk", "the", "other", "day", "."], "h": {"name": "passel", "pos": [7, 8]}, "t": {"name": "pigeons", "pos": [9, 10]}, "relation": "Member-Collection(e2,e1)"}
{"token": ["it", "was", "also", "home", "to", "a", "bale", "of", "snapping", "turtles", "and", "a", "siege", "of", "great", "blue", "herons", "."], "h": {"name": "siege", "pos": [12, 13]}, "t": {"name": "herons", "pos": [16, 17]}, "relation": "Member-Collection(e2,e1)"}
{"token": ["there", "are", "enough", "gills", "there", "to", "serve", "the", "oxygen", "demands", "of", "an", "entire", "shiver", "of", "whale", "sharks", "."], "h": {"name": "shiver", "pos": [13, 14]}, "t": {"name": "sharks", "pos": [16, 17]}, "relation": "Member-Collection(e2,e1)"}
{"token": ["she", "does", ",", "however", ",", "remember", "walking", "through", "campus", "when", "a", "chipper", "salesman", "gave", "her", "a", "fistful", "of", "bright", "orange", "coupons", "offering", "her", "and", "her", "friends", "complimentary", "slices", "of", "pizza", "."], "h": {"name": "fistful", "pos": [16, 17]}, "t": {"name": "coupons", "pos": [20, 21]}, "relation": "Member-Collection(e2,e1)"}
{"token": ["he", "likewise", "directed", "edric", "to", "fling", "out", "his", "nets", ",", "who", "was", "rewarded", "with", "a", "miraculous", "draught", "of", "salmons", "."], "h": {"name": "draught", "pos": [16, 17]}, "t": {"name": "salmons", "pos": [18, 19]}, "relation": "Member-Collection(e2,e1)"}
{"token": ["in", "a", "peep", "of", "bantam", "chickens", ",", "proliferative", "skin", "lesions", "were", "observed", "on", "the", "shanks", "of", "6", "of", "29", "birds", ",", "with", "digit", "necrosis", "observed", "in", "some", "birds", "."], "h": {"name": "peep", "pos": [2, 3]}, "t": {"name": "chickens", "pos": [5, 6]}, "relation": "Member-Collection(e2,e1)"}
{"token": ["i", "bore", "my", "chalice", "safely", "through", "a", "throng", "of", "foes", "."], "h": {"name": "throng", "pos": [7, 8]}, "t": {"name": "foes", "pos": [9, 10]}, "relation": "Member-Collection(e2,e1)"}
{"token": ["but", ",", "lord", "king", ",", "he", "has", "with", "him", "a", "meinie", "of", "full", "forty", "knights", "."], "h": {"name": "meinie", "pos": [10, 11]}, "t": {"name": "knights", "pos": [14, 15]}, "relation": "Member-Collection(e2,e1)"}
{"token": ["villagers", "in", "the", "netherlands", "are", "glad", "to", "have", "a", "mustering", "of", "stork", "visit", "them", "."], "h": {"name": "mustering", "pos": [9, 10]}, "t": {"name": "stork", "pos": [11, 12]}, "relation": "Member-Collection(e2,e1)"}
{"token": ["the", "translucent", "blue", "plastic", "belied", "the", "heady", "resonance", "of", "the", "instrument", ",", "and", "like", "a", "mission", "of", "monkeys", ",", "several", "coworkers", "were", "lured", "into", "the", "room", "by", "the", "dulcet", "tones", "of", "my", "accordion", "."], "h": {"name": "mission", "pos": [15, 16]}, "t": {"name": "monkeys", "pos": [17, 18]}, "relation": "Member-Collection(e2,e1)"}
{"token": ["her", "shallow", "waters", "seethe", "at", "times", ",", "standing", "tall", "and", "swaying", "back", "and", "forth", "like", "a", "quiver", "of", "king", "cobras", "."], "h": {"name": "quiver", "pos": [16, 17]}, "t": {"name": "cobras", "pos": [19, 20]}, "relation": "Member-Collection(e2,e1)"}
{"token": ["one", "of", "the", "grand", "canyon", "tour", "guides", "has", "a", "barren", "of", "mules", "for", "the", "tourists", "to", "ride", "down", "into", "the", "canyon", "."], "h": {"name": "barren", "pos": [9, 10]}, "t": {"name": "mules", "pos": [11, 12]}, "relation": "Member-Collection(e2,e1)"}
{"token": ["the", "13th", "gate", "offers", "13", "themed", "experiences", "to", "make", "every", "nightmare", "seem", "real", "from", "crawling", "through", "a", "crematory", "oven", "and", "an", "old", "hearse", "to", "being", "lost", "in", "dark", "underground", "tunnels", "or", "finding", "yourself", "standing", "on", "a", "rickety", "bridge", "over", "a", "bed", "of", "live", "snakes", "."], "h": {"name": "bed", "pos": [40, 41]}, "t": {"name": "snakes", "pos": [43, 44]}, "relation": "Member-Collection(e2,e1)"}
{"token": ["the", "influence", "of", "hole", "shape", "on", "extraordinary", "optical", "transmission", "was", "investigated", "using", "hole", "arrays", "consisting", "of", "rectangular", "holes", "with", "different", "aspect", "ratios", "."], "h": {"name": "arrays", "pos": [13, 14]}, "t": {"name": "holes", "pos": [17, 18]}, "relation": "Member-Collection(e2,e1)"}
{"token": ["there", "'s", "a", "trembling", "of", "finches", "on", "my", "lawn", "."], "h": {"name": "trembling", "pos": [3, 4]}, "t": {"name": "finches", "pos": [5, 6]}, "relation": "Member-Collection(e2,e1)"}
{"token": ["in", "addition", "to", "weinstein", ",", "the", "band", "is", "comprised", "of", "a", "formidable", "array", "of", "luminaries", "."], "h": {"name": "array", "pos": [12, 13]}, "t": {"name": "luminaries", "pos": [14, 15]}, "relation": "Member-Collection(e2,e1)"}
{"token": ["as", "a", "fraternity", "of", "adults", "we", "have", "a", "right", "to", "question", "the", "gm", ",", "and", "should", "expect", "a", "reasonable", "response", "."], "h": {"name": "fraternity", "pos": [2, 3]}, "t": {"name": "adults", "pos": [4, 5]}, "relation": "Member-Collection(e2,e1)"}
{"token": ["it", "was", "an", "immense", "flight", "of", "gulls", ",", "seamews", ",", "and", "cormorants", ";", "a", "vast", "multitude", "of", "affrighted", "sea", "birds", "."], "h": {"name": "flight", "pos": [4, 5]}, "t": {"name": "gulls", "pos": [6, 7]}, "relation": "Member-Collection(e2,e1)"}
{"token": ["while", "the", "job", "was", "good", ",", "ahmed", "'s", "daily", "exposure", "to", "the", "troupe", "of", "circus", "performers", "and", "artists", "continued", "to", "pique", "his", "interest", "."], "h": {"name": "troupe", "pos": [12, 13]}, "t": {"name": "performers", "pos": [15, 16]}, "relation": "Member-Collection(e2,e1)"}
{"token": ["any", "country", "gentleman", "who", "liked", "the", "sport", "kept", "a", "small", "pack", "of", "hounds", ",", "and", "rode", "over", "his", "own", "lands", "or", "the", "lands", "of", "such", "of", "his", "neighbours", "as", "had", "no", "similar", "establishments", "of", "their", "own", "."], "h": {"name": "pack", "pos": [10, 11]}, "t": {"name": "hounds", "pos": [12, 13]}, "relation": "Member-Collection(e2,e1)"}
{"token": ["day", "after", "day", ",", "then", ",", "he", "has", "put", "himself", "into", "a", "hornets", "'", "nest", ",", "or", "what", "the", "scottish", "call", "a", "bike", "of", "bees", "."], "h": {"name": "bike", "pos": [22, 23]}, "t": {"name": "bees", "pos": [24, 25]}, "relation": "Member-Collection(e2,e1)"}