-
Notifications
You must be signed in to change notification settings - Fork 0
/
extracted_db.json
14496 lines (14496 loc) · 303 KB
/
extracted_db.json
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
{
"b001": {
"topic": "waste_separation",
"stance": "pro",
"relations": {
"c1": {
"src": "a1",
"trg": "a5",
"type": "reb"
},
"c2": {
"src": "a2",
"trg": "a1",
"type": "sup"
},
"c3": {
"src": "a3",
"trg": "c1",
"type": "und"
},
"c4": {
"src": "a4",
"trg": "c3",
"type": "add"
}
},
"unit_roles": [
"opp",
"opp",
"pro",
"pro",
"pro"
],
"central_adu": "a5",
"central_pos": 5,
"units": [
{
"edu_id": "e1",
"adu_id": "a1",
"text": "Yes, it's annoying and cumbersome to separate your rubbish properly all the time.",
"rel": {
"id": "c1",
"type": "reb",
"trg": "a5"
},
"adu_stance": "opp",
"attach": "a5",
"attach_dist": 4,
"depth": 2,
"arg_trace": [
"c1"
]
},
{
"edu_id": "e2",
"adu_id": "a2",
"text": "Three different bin bags stink away in the kitchen and have to be sorted into different wheelie bins.",
"rel": {
"id": "c2",
"type": "sup",
"trg": "a1"
},
"adu_stance": "opp",
"attach": "a1",
"attach_dist": -1,
"depth": 4,
"arg_trace": [
"c2",
"a1",
"c1"
]
},
{
"edu_id": "e3",
"adu_id": "a3",
"text": "But still Germany produces way too much rubbish",
"rel": {
"id": "c3",
"type": "und",
"trg": "c1"
},
"adu_stance": "pro",
"attach": "a1",
"attach_dist": -2,
"depth": 3,
"arg_trace": [
"c3",
"c1"
]
},
{
"edu_id": "e4",
"adu_id": "a4",
"text": "and too many resources are lost when what actually should be separated and recycled is burnt.",
"rel": {
"id": "c4",
"type": "add",
"trg": "c3"
},
"adu_stance": "pro",
"attach": "a3",
"attach_dist": -1,
"depth": 4,
"arg_trace": [
"c4",
"c3",
"c1"
]
},
{
"edu_id": "e5",
"adu_id": "a5",
"text": "We Berliners should take the chance and become pioneers in waste separation!",
"rel": {},
"adu_stance": "pro",
"attach": "",
"attach_dist": 0,
"depth": 0,
"arg_trace": []
}
],
"lin_strat": [
"f",
"b",
"b",
"b",
"c"
]
},
"b002": {
"topic": "higher_dog_poo_fines",
"stance": "pro",
"relations": {
"c1": {
"src": "a1",
"trg": "a3",
"type": "sup"
},
"c2": {
"src": "a2",
"trg": "a3",
"type": "sup"
},
"c4": {
"src": "a4",
"trg": "a3",
"type": "reb"
},
"c5": {
"src": "a5",
"trg": "c4",
"type": "und"
}
},
"unit_roles": [
"pro",
"pro",
"pro",
"opp",
"pro"
],
"central_adu": "a3",
"central_pos": 3,
"units": [
{
"edu_id": "e1",
"adu_id": "a1",
"text": "One can hardly move in Friedrichshain or Neuk\u00f6lln these days without permanently scanning the ground for dog dirt.",
"rel": {
"id": "c1",
"type": "sup",
"trg": "a3"
},
"adu_stance": "pro",
"attach": "a3",
"attach_dist": 2,
"depth": 2,
"arg_trace": [
"c1"
]
},
{
"edu_id": "e2",
"adu_id": "a2",
"text": "And when bad luck does strike and you step into one of the many 'land mines' you have to painstakingly scrape the remains off your soles.",
"rel": {
"id": "c2",
"type": "sup",
"trg": "a3"
},
"adu_stance": "pro",
"attach": "a3",
"attach_dist": 1,
"depth": 2,
"arg_trace": [
"c2"
]
},
{
"edu_id": "e3",
"adu_id": "a3",
"text": "Higher fines are therefore the right measure against negligent, lazy or simply thoughtless dog owners.",
"rel": {},
"adu_stance": "pro",
"attach": "",
"attach_dist": 0,
"depth": 0,
"arg_trace": []
},
{
"edu_id": "e4",
"adu_id": "a4",
"text": "Of course, first they'd actually need to be caught in the act by public order officers,",
"rel": {
"id": "c4",
"type": "reb",
"trg": "a3"
},
"adu_stance": "opp",
"attach": "a3",
"attach_dist": -1,
"depth": 2,
"arg_trace": [
"c4"
]
},
{
"edu_id": "e5",
"adu_id": "a5",
"text": "but once they have to dig into their pockets, their laziness will sure vanish!",
"rel": {
"id": "c5",
"type": "und",
"trg": "c4"
},
"adu_stance": "pro",
"attach": "a4",
"attach_dist": -1,
"depth": 3,
"arg_trace": [
"c5",
"c4"
]
}
],
"lin_strat": [
"f",
"f",
"c",
"b",
"b"
]
},
"b003": {
"topic": "health_insurance_cover_complementary_medicine",
"stance": "con",
"relations": {
"c2": {
"src": "a2",
"trg": "a1",
"type": "reb"
},
"c3": {
"src": "a3",
"trg": "a2",
"type": "reb"
},
"c4": {
"src": "a4",
"trg": "a1",
"type": "reb"
},
"c5": {
"src": "a5",
"trg": "c4",
"type": "und"
}
},
"unit_roles": [
"pro",
"opp",
"pro",
"opp",
"pro"
],
"central_adu": "a1",
"central_pos": 1,
"units": [
{
"edu_id": "e1",
"adu_id": "a1",
"text": "Health insurance companies should not cover treatment in complementary medicine",
"rel": {},
"adu_stance": "pro",
"attach": "",
"attach_dist": 0,
"depth": 0,
"arg_trace": []
},
{
"edu_id": "e2",
"adu_id": "a2",
"text": "unless the promised effect and its medical benefit have been concretely proven.",
"rel": {
"id": "c2",
"type": "reb",
"trg": "a1"
},
"adu_stance": "opp",
"attach": "a1",
"attach_dist": -1,
"depth": 2,
"arg_trace": [
"c2"
]
},
{
"edu_id": "e3",
"adu_id": "a3",
"text": "Yet this very proof is lacking in most cases.",
"rel": {
"id": "c3",
"type": "reb",
"trg": "a2"
},
"adu_stance": "pro",
"attach": "a2",
"attach_dist": -1,
"depth": 4,
"arg_trace": [
"c3",
"a2",
"c2"
]
},
{
"edu_id": "e4",
"adu_id": "a4",
"text": "Patients do often report relief of their complaints after such treatments.",
"rel": {
"id": "c4",
"type": "reb",
"trg": "a1"
},
"adu_stance": "opp",
"attach": "a1",
"attach_dist": -3,
"depth": 2,
"arg_trace": [
"c4"
]
},
{
"edu_id": "e5",
"adu_id": "a5",
"text": "But as long as it is unclear as to how this works, the funds should rather be spent on therapies where one knows with certainty.",
"rel": {
"id": "c5",
"type": "und",
"trg": "c4"
},
"adu_stance": "pro",
"attach": "a4",
"attach_dist": -1,
"depth": 3,
"arg_trace": [
"c5",
"c4"
]
}
],
"lin_strat": [
"c",
"b",
"b",
"b",
"b"
]
},
"b004": {
"topic": "public_broadcasting_fees_on_demand",
"stance": "con",
"relations": {
"c1": {
"src": "a1",
"trg": "a3",
"type": "reb"
},
"c2": {
"src": "a2",
"trg": "a3",
"type": "reb"
},
"c4": {
"src": "a4",
"trg": "a3",
"type": "sup"
},
"c5": {
"src": "a5",
"trg": "a4",
"type": "sup"
}
},
"unit_roles": [
"opp",
"opp",
"pro",
"pro",
"pro"
],
"central_adu": "a3",
"central_pos": 3,
"units": [
{
"edu_id": "e1",
"adu_id": "a1",
"text": "Of course there are a number of programmes in public broadcasting that are not worth the licencing fee,",
"rel": {
"id": "c1",
"type": "reb",
"trg": "a3"
},
"adu_stance": "opp",
"attach": "a3",
"attach_dist": 2,
"depth": 2,
"arg_trace": [
"c1"
]
},
{
"edu_id": "e2",
"adu_id": "a2",
"text": "and others, such as \u201cMusikantenstadl\u201d and soap operas, are only interesting to certain audiences.",
"rel": {
"id": "c2",
"type": "reb",
"trg": "a3"
},
"adu_stance": "opp",
"attach": "a3",
"attach_dist": 1,
"depth": 2,
"arg_trace": [
"c2"
]
},
{
"edu_id": "e3",
"adu_id": "a3",
"text": "Nevertheless, everybody should contribute to the funding of the public broadcasters in equal measure,",
"rel": {},
"adu_stance": "pro",
"attach": "",
"attach_dist": 0,
"depth": 0,
"arg_trace": []
},
{
"edu_id": "e4",
"adu_id": "a4",
"text": "for we need general and independent media.",
"rel": {
"id": "c4",
"type": "sup",
"trg": "a3"
},
"adu_stance": "pro",
"attach": "a3",
"attach_dist": -1,
"depth": 2,
"arg_trace": [
"c4"
]
},
{
"edu_id": "e5",
"adu_id": "a5",
"text": "After all we want to get our view of the world neither through the lens of the government nor through that of rich media entrepreneurs.",
"rel": {
"id": "c5",
"type": "sup",
"trg": "a4"
},
"adu_stance": "pro",
"attach": "a4",
"attach_dist": -1,
"depth": 4,
"arg_trace": [
"c5",
"a4",
"c4"
]
}
],
"lin_strat": [
"f",
"f",
"c",
"b",
"b"
]
},
"b005": {
"topic": "stricter_regulation_of_intelligence_services",
"stance": "pro",
"relations": {
"c2": {
"src": "a2",
"trg": "a1",
"type": "sup"
},
"c3": {
"src": "a3",
"trg": "c2",
"type": "und"
},
"c4": {
"src": "a4",
"trg": "c3",
"type": "und"
},
"c5": {
"src": "a5",
"trg": "a4",
"type": "sup"
}
},
"unit_roles": [
"pro",
"pro",
"opp",
"pro",
"pro"
],
"central_adu": "a1",
"central_pos": 1,
"units": [
{
"edu_id": "e1",
"adu_id": "a1",
"text": "Intelligence services must urgently be regulated more tightly by parliament;",
"rel": {},
"adu_stance": "pro",
"attach": "",
"attach_dist": 0,
"depth": 0,
"arg_trace": []
},
{
"edu_id": "e2",
"adu_id": "a2",
"text": "this should be clear to everyone after the disclosures of Edward Snowden.",
"rel": {
"id": "c2",
"type": "sup",
"trg": "a1"
},
"adu_stance": "pro",
"attach": "a1",
"attach_dist": -1,
"depth": 2,
"arg_trace": [
"c2"
]
},
{
"edu_id": "e3",
"adu_id": "a3",
"text": "Granted, those concern primarily the British and American intelligence services,",
"rel": {
"id": "c3",
"type": "und",
"trg": "c2"
},
"adu_stance": "opp",
"attach": "a2",
"attach_dist": -1,
"depth": 3,
"arg_trace": [
"c3",
"c2"
]
},
{
"edu_id": "e4",
"adu_id": "a4",
"text": "but the German services evidently do collaborate with them closely.",
"rel": {
"id": "c4",
"type": "und",
"trg": "c3"
},
"adu_stance": "pro",
"attach": "a3",
"attach_dist": -1,
"depth": 4,
"arg_trace": [
"c4",
"c3",
"c2"
]
},
{
"edu_id": "e5",
"adu_id": "a5",
"text": "Their tools, data and expertise have been used to keep us under surveillance for a long time.",
"rel": {
"id": "c5",
"type": "sup",
"trg": "a4"
},
"adu_stance": "pro",
"attach": "a4",
"attach_dist": -1,
"depth": 6,
"arg_trace": [
"c5",
"a4",
"c4",
"c3",
"c2"
]
}
],
"lin_strat": [
"c",
"b",
"b",
"b",
"b"
]
},
"b006": {
"topic": "introduce_capital_punishment",
"stance": "con",
"relations": {
"c2": {
"src": "a2",
"trg": "a1",
"type": "sup"
},
"c3": {
"src": "a3",
"trg": "a1",
"type": "sup"
},
"c4": {
"src": "a4",
"trg": "a1",
"type": "reb"
},
"c5": {
"src": "a5",
"trg": "c4",
"type": "und"
}
},
"unit_roles": [
"pro",
"pro",
"pro",
"opp",
"pro"
],
"central_adu": "a1",
"central_pos": 1,
"units": [
{
"edu_id": "e1",
"adu_id": "a1",
"text": "The death penalty is a legal means that as such is not practicable in Germany.",
"rel": {},
"adu_stance": "pro",
"attach": "",
"attach_dist": 0,
"depth": 0,
"arg_trace": []
},
{
"edu_id": "e2",
"adu_id": "a2",
"text": "For one thing, inviolable human dignity is anchored in our constitution,",
"rel": {
"id": "c2",
"type": "sup",
"trg": "a1"
},
"adu_stance": "pro",
"attach": "a1",
"attach_dist": -1,
"depth": 2,
"arg_trace": [
"c2"
]
},
{
"edu_id": "e3",
"adu_id": "a3",
"text": "and furthermore no one may have the right to adjudicate upon the death of another human being.",
"rel": {
"id": "c3",
"type": "sup",
"trg": "a1"
},
"adu_stance": "pro",
"attach": "a1",
"attach_dist": -2,
"depth": 2,
"arg_trace": [
"c3"
]
},
{
"edu_id": "e4",
"adu_id": "a4",
"text": "Even if many people think that a murderer has already decided on the life or death of another person,",
"rel": {
"id": "c4",
"type": "reb",
"trg": "a1"
},
"adu_stance": "opp",
"attach": "a1",
"attach_dist": -3,
"depth": 2,
"arg_trace": [
"c4"
]
},
{
"edu_id": "e5",
"adu_id": "a5",
"text": "this is precisely the crime that we should not repay with the same.",
"rel": {
"id": "c5",
"type": "und",
"trg": "c4"
},
"adu_stance": "pro",
"attach": "a4",
"attach_dist": -1,
"depth": 3,
"arg_trace": [
"c5",
"c4"
]
}
],
"lin_strat": [
"c",
"b",
"b",
"b",
"b"
]
},
"b007": {
"topic": "higher_dog_poo_fines",
"stance": "pro",
"relations": {
"c2": {
"src": "a1",
"trg": "a2",
"type": "sup"
},
"c3": {
"src": "a2",
"trg": "a3",
"type": "sup"
},
"c4": {
"src": "a4",
"trg": "a3",
"type": "reb"
},
"c5": {
"src": "a5",
"trg": "a4",
"type": "reb"
}
},
"unit_roles": [
"pro",
"pro",
"pro",
"opp",
"pro"
],
"central_adu": "a3",
"central_pos": 3,
"units": [
{
"edu_id": "e1",
"adu_id": "a1",
"text": "Dog dirt on the pavement requires my complete, ground-focused attention on my way to work.",
"rel": {
"id": "c2",
"type": "sup",
"trg": "a2"
},
"adu_stance": "pro",
"attach": "a2",
"attach_dist": 1,
"depth": 4,
"arg_trace": [
"c2",
"a2",
"c3"
]
},
{
"edu_id": "e2",
"adu_id": "a2",
"text": "This results in a lack of alertness in the road traffic comparable to a minor offense of the traffic regulations.",
"rel": {
"id": "c3",
"type": "sup",
"trg": "a3"
},
"adu_stance": "pro",
"attach": "a3",
"attach_dist": 1,
"depth": 2,
"arg_trace": [
"c3"
]
},
{
"edu_id": "e3",
"adu_id": "a3",
"text": "That's why causing such obstacles must to be more urgently punished.",
"rel": {},
"adu_stance": "pro",
"attach": "",
"attach_dist": 0,
"depth": 0,
"arg_trace": []
},
{
"edu_id": "e4",
"adu_id": "a4",
"text": "Dog owners may think that dog dirt is only a harmless secretion of an animal like any other.",
"rel": {
"id": "c4",
"type": "reb",
"trg": "a3"
},
"adu_stance": "opp",
"attach": "a3",
"attach_dist": -1,
"depth": 2,
"arg_trace": [
"c4"
]
},
{
"edu_id": "e5",
"adu_id": "a5",
"text": "Yet then they misjudge its impact on road traffic.",
"rel": {
"id": "c5",
"type": "reb",
"trg": "a4"
},
"adu_stance": "pro",
"attach": "a4",
"attach_dist": -1,
"depth": 4,
"arg_trace": [
"c5",
"a4",
"c4"
]
}
],
"lin_strat": [
"f",
"f",
"c",
"b",
"b"
]
},
"b008": {
"topic": "over_the_counter_morning_after_pill",
"stance": "con",
"relations": {
"c1": {
"src": "a1",
"trg": "a5",
"type": "reb"
},
"c2": {
"src": "a2",
"trg": "a1",
"type": "reb"
},
"c3": {
"src": "a3",
"trg": "a2",
"type": "sup"
},
"c4": {
"src": "a4",
"trg": "c3",
"type": "add"
}
},
"unit_roles": [
"opp",
"pro",
"pro",
"pro",
"pro"
],
"central_adu": "a5",
"central_pos": 5,
"units": [
{
"edu_id": "e1",
"adu_id": "a1",
"text": "Of course it would be nice and simple if after a fun night out with a party acquaintance you could simply take the 'morning-after pill' and feel at ease.",
"rel": {
"id": "c1",
"type": "reb",
"trg": "a5"
},
"adu_stance": "opp",
"attach": "a5",
"attach_dist": 4,
"depth": 2,
"arg_trace": [
"c1"
]
},
{
"edu_id": "e2",
"adu_id": "a2",
"text": "But it's not that simple.",
"rel": {
"id": "c2",
"type": "reb",
"trg": "a1"
},
"adu_stance": "pro",
"attach": "a1",
"attach_dist": -1,
"depth": 4,
"arg_trace": [
"c2",
"a1",
"c1"
]
},
{
"edu_id": "e3",
"adu_id": "a3",
"text": "Perhaps a new life was already created that night.",
"rel": {
"id": "c3",
"type": "sup",
"trg": "a2"
},
"adu_stance": "pro",
"attach": "a2",
"attach_dist": -1,
"depth": 6,
"arg_trace": [
"c3",
"a2",
"c2",
"a1",
"c1"
]
},
{
"edu_id": "e4",
"adu_id": "a4",
"text": "I would kill it without further thought.",
"rel": {
"id": "c4",
"type": "add",
"trg": "c3"
},
"adu_stance": "pro",
"attach": "a3",
"attach_dist": -1,
"depth": 7,
"arg_trace": [
"c4",
"c3",
"a2",
"c2",
"a1",
"c1"
]
},
{