diff --git a/code/DAS.py b/code/DAS.py
new file mode 100644
index 0000000000000000000000000000000000000000..d3bbaa7d0a492b79ccfb78858797358a8c887d18
--- /dev/null
+++ b/code/DAS.py
@@ -0,0 +1,75 @@
+#!/usr/bin/env python3
+# -*- coding: utf-8 -*-
+"""
+Created on Fri Apr 29 15:43:32 2022
+
+@author: nadia
+"""
+
+import json
+import pickle
+
+SPEC_MERGED = '../amr_nx_story_graphs/spec_merged/'
+GEN_MERGED = '../amr_nx_story_graphs/gen_merged/'
+
+food_cluster = ['13','17','19','25','27','28']
+
+with open('../story_graphs/topic2storyID.json', 'r') as f:
+    topics = json.load(f)
+    
+def open_amr_dict(file):
+    with open(file,'r') as f:
+        return(json.load(f))
+amr_dict = open_amr_dict('../amr/amr_dict.json')    
+
+#print(topics['13'])
+
+file = '4488_fa952f59-3b98-49a7-b8a6-ad5b83cd9af0.pkl'
+#for file in topics_0:
+with open('../story_graphs/coref/'+file, 'rb') as f:
+    graph = pickle.load(f)
+with open(SPEC_MERGED+file,'rb') as f:
+    spec_merged_graph = pickle.load(f)
+with open(GEN_MERGED+file,'rb') as f:
+    gen_merged_graph = pickle.load(f)
+    
+for node in graph.nodes:
+    if '_S' in node:
+        story = graph.nodes[node]['story']
+        print(story,'\n\n')
+    elif 'E' in node or 'O' in node:
+        continue
+    else:
+        #print(graph.nodes[node])
+        print(graph.nodes[node]['sentence'][0])
+        try:
+            print(amr_dict[graph.nodes[node]['sentence'][0]])
+        except:
+            print(amr_dict[graph.nodes[node]['sentence'][0][:-1]])
+print('\n\nGENERALIZED\n')            
+for node in gen_merged_graph.nodes:
+    if 'G_' in node:
+        print('ARGUMENT:\n')
+        print(gen_merged_graph.nodes[node])
+        print('\n\nPARENTS:\n')
+        for n in gen_merged_graph.predecessors(node):
+            print(gen_merged_graph.nodes[n])
+        print('\n\nKIDS:\n')
+        for n in gen_merged_graph.neighbors(node):
+            print(gen_merged_graph.nodes[n])
+        print('#'*10)
+
+print('\n\n\n')
+print('SPECIALIZED\n')
+
+for node in spec_merged_graph.nodes:
+    if 'G_' in node:
+        print('ARGUMENT:\n')
+        print(spec_merged_graph.nodes[node])
+        print('\n\nPARENTS:\n')
+        for n in spec_merged_graph.predecessors(node):
+            print(spec_merged_graph.nodes[n])
+        print('\n\nKIDS:\n')
+        for n in spec_merged_graph.neighbors(node):
+            print(spec_merged_graph.nodes[n])
+        print('#'*10)
diff --git a/code/Dynamic_Argument_Structure_in_GLUCOSE-Copy1.ipynb b/code/Dynamic_Argument_Structure_in_GLUCOSE-Copy1.ipynb
new file mode 100644
index 0000000000000000000000000000000000000000..e0609499f1d9d015b33a19a0b78ba1e0416e2862
--- /dev/null
+++ b/code/Dynamic_Argument_Structure_in_GLUCOSE-Copy1.ipynb
@@ -0,0 +1,591 @@
+{
+ "cells": [
+  {
+   "cell_type": "markdown",
+   "id": "7844008f",
+   "metadata": {},
+   "source": [
+    "## Dynamic Event Structure in GLUCOSE\n",
+    "\n",
+    "GLUCOSE stands for GeneraLized and COntextualized Story Explanations. It is a dataset composed of childrens' short stories form the ROC-Story Corpus.\n",
+    "\n",
+    "A dynamic argument structure, as proposed by Jezek and Pustejovsky, shall capture the change of arguments (entities) induced by certain predicates (events).\n",
+    "\n",
+    "This project is an approach to derive a dynamic argument structure for selected stories from the GLUCOSE dataset and elaborate if and how Jezek's and Pustejovsky's theoretical framing can be applied on it.\n",
+    "\n",
+    "### FRAMES\n",
+    "\n"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "id": "87ad5bb1",
+   "metadata": {},
+   "source": [
+    "## GLUCOSE PREPROCESSING\n",
+    "\n",
+    "for deatailed information please look at notebook: preprocessing and story graph building"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 66,
+   "id": "9602147e",
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "import json\n",
+    "import pickle\n",
+    "import re\n",
+    "import penman\n",
+    "\n",
+    "SPEC_MERGED = '../amr_nx_story_graphs/spec_merged/'\n",
+    "GEN_MERGED = '../amr_nx_story_graphs/gen_merged/'\n",
+    "\n",
+    "food_cluster = ['13','17','19','25','27','28']\n",
+    "\n",
+    "with open('../story_graphs/topic2storyID.json', 'r') as f:\n",
+    "    topics = json.load(f)\n",
+    "    \n",
+    "def open_amr_dict(file):\n",
+    "    with open(file,'r') as f:\n",
+    "        return(json.load(f))\n",
+    "amr_dict = open_amr_dict('../amr/amr_dict.json')    \n",
+    "\n",
+    "files = []\n",
+    "for topic in food_cluster:\n",
+    "    files += topics[topic]\n",
+    "#print(topics['19'])\n",
+    "\n",
+    "#file = '3070_a9b0dee1-478a-4a6b-b45c-33e1be3622d5.pkl'\n",
+    "#file = '2403_85131dc1-63b4-46b0-b98c-8c2274e459af.pkl'\n",
+    "#file = '1266_48385946-e804-44f2-a0e3-3b4e7f4dbb2e.pkl'\n",
+    "#for file in topics_0:\n",
+    "#with open('../story_graphs/coref/'+file, 'rb') as f:\n",
+    "    #graph = pickle.load(f)\n",
+    "#with open(SPEC_MERGED+file,'rb') as f:\n",
+    "    #spec_merged_graph = pickle.load(f)\n",
+    "#with open(GEN_MERGED+file,'rb') as f:\n",
+    "    #gen_merged_graph = pickle.load(f)"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "id": "b1b0ea63",
+   "metadata": {},
+   "source": [
+    "## Choose a Story\n",
+    "\n",
+    "set the variable \"STORY_ID\" (int between 0 and 176)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 67,
+   "id": "8b2882b9",
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "STORY:\n",
+      "\n",
+      "Sandra went strawberry picking with her mother. They spent several hours in the sun gathering berries. At the end of the day Sandra dropped her bushel of strawberries! Luckily she was able to scoop them all up again. Sandra was glad that her hard work hadn't been wasted! \n",
+      "\n",
+      "\n"
+     ]
+    }
+   ],
+   "source": [
+    "STORY_ID = 0\n",
+    "\n",
+    "file = files[STORY_ID]\n",
+    "\n",
+    "with open('../story_graphs/arg_map/'+file, 'rb') as f:\n",
+    "    graph = pickle.load(f)\n",
+    "    \n",
+    "for node in graph.nodes:\n",
+    "    if '_S' in node:\n",
+    "        story = graph.nodes[node]['story']\n",
+    "        print('STORY:\\n')\n",
+    "        print(story,'\\n\\n')\n",
+    "        break\n",
+    "#with open(SPEC_MERGED+file,'rb') as f:\n",
+    "    #spec_merged_graph = pickle.load(f)\n",
+    "#with open(GEN_MERGED+file,'rb') as f:\n",
+    "    #gen_merged_graph = pickle.load(f)"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "id": "53534e68",
+   "metadata": {},
+   "source": [
+    "## Choose a SentenceID to Print AMR Parse\n",
+    "\n",
+    "Set the variable \"SENT_ID\" (int between 0 and 4)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 68,
+   "id": "85c1013a",
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "Sandra went strawberry picking with her mother. \n",
+      "\n",
+      "(g / go-02\n",
+      "      :ARG0 (p / person\n",
+      "            :name (n / name\n",
+      "                  :op1 \"Sandra\"))\n",
+      "      :ARG1 (p2 / pick-01\n",
+      "            :ARG0 p\n",
+      "            :ARG1 (s / strawberry))\n",
+      "      :accompanier (p3 / person\n",
+      "            :ARG0-of (h / have-rel-role-91\n",
+      "                  :ARG1 p\n",
+      "                  :ARG2 (m / mother))))\n"
+     ]
+    }
+   ],
+   "source": [
+    "SENT_ID = 0\n",
+    "\n",
+    "def get_amr(sent_id, graph, amr_dict):\n",
+    "    for node in graph.nodes:\n",
+    "        if '_'+str(sent_id) in node and not 'O' in node and not 'E' in node:\n",
+    "            sent = graph.nodes[node]['sentence'][0]\n",
+    "    print(sent,'\\n')\n",
+    "    try:\n",
+    "        amr = amr_dict[sent]\n",
+    "    except:\n",
+    "        try:\n",
+    "            amr = amr_dict[sent[:-1]]\n",
+    "        except:\n",
+    "            amr = 'No Parse for Sentence in Dictionary :( '\n",
+    "    print(amr)\n",
+    "    \n",
+    "amr_parse = get_amr(SENT_ID, graph, amr_dict)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 69,
+   "id": "b214e47d",
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "SENTENCE  0  has  5 in comming edges and  6  out going edges\n",
+      "\n",
+      "IN\n",
+      "\n",
+      "('4488_EVENT_1', '4488_0')\n",
+      "('4488_EMO_1', '4488_0')\n",
+      "('4488_LOC_1', '4488_0')\n",
+      "('4488_POS_1', '4488_0')\n",
+      "('4488_OTH_0', '4488_0')\n",
+      "\n",
+      "\n",
+      "OUT\n",
+      "\n",
+      "('4488_0', '4488_LOC_1')\n",
+      "('4488_0', '4488_POS_0')\n",
+      "('4488_0', '4488_OTH_2')\n",
+      "('4488_0', '4488_1')\n",
+      "('4488_0', '4488_2')\n",
+      "('4488_0', '4488_4')\n"
+     ]
+    }
+   ],
+   "source": [
+    "def get_edges_sentence(sent_id, graph):\n",
+    "    in_edges = []\n",
+    "    out_edges = []\n",
+    "    for edge in graph.edges:\n",
+    "        if '_S' in edge[0]:\n",
+    "            continue\n",
+    "        if '_'+str(sent_id) in edge[0] and not 'O' in edge[0] and not 'E' in edge[0]:\n",
+    "            out_edges.append(edge)\n",
+    "        elif '_'+str(sent_id) in edge[1] and not 'O' in edge[1] and not 'E' in edge[1]:\n",
+    "            in_edges.append(edge)\n",
+    "    print('SENTENCE ',sent_id,' has ', len(in_edges), 'in comming edges and ', len(out_edges), ' out going edges\\n')\n",
+    "    print('IN\\n')\n",
+    "    for e in in_edges:\n",
+    "        print(e)\n",
+    "    print('\\n')\n",
+    "    print('OUT\\n')\n",
+    "    for e in out_edges:\n",
+    "        print(e)\n",
+    "    return(in_edges, out_edges)\n",
+    "\n",
+    "in_edges, out_edges = get_edges_sentence(SENT_ID, graph)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 82,
+   "id": "00898c6c",
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "['Sandra wants strawberries', 'Causes/Enables', 'Sandra picks strawberries with her mother'] \n",
+      "\n",
+      "[(('want-01', ':ARG1', 'strawberry'), ('pick-01', ':ARG1', 'strawberry')), (('want-01', ':ARG0', '\"Sandra\"'), ('pick-01', ':ARG0', 'p')), (('want-01', ':ARG0', '\"Sandra\"'), ('have-rel-role-91', ':ARG2', 'mother'))]\n",
+      "\n",
+      "\n",
+      "\n",
+      "['Sandra picked strawberries with her mother', 'Causes', 'Sandra feels content'] \n",
+      "\n",
+      "[(('pick-01', ':ARG0', 'p'), ('feel-01', ':ARG0', '\"Sandra\"'))]\n",
+      "{'Sandra picked strawberries with her mother': '(p / pick-01\\n      :ARG0 (p2 / \"Sandra\")\\n      :ARG1 (s / strawberry)\\n      :accompanier (p3 / person\\n            :ARG0-of (h / have-rel-role-91\\n                  :ARG1 p2\\n                  :ARG2 (m / mother))))', 'Sandra feels content': '(f / feel-01\\n      :ARG0 (p / \"Sandra\")\\n      :ARG1 (c / content-01\\n            :ARG1 p))', 'Max picks strawberries with Kim': '(p / pick-01\\n      :ARG0 (p2 / \"Max\")\\n      :ARG1 (s / strawberry)\\n      :accompanier (p3 / \"Kim\"))', 'Max feels happy': '(f / feel-01\\n      :ARG0 (p / \"Max\")\\n      :ARG1 (h / happy-01\\n            :ARG1 p))'}\n"
+     ]
+    }
+   ],
+   "source": [
+    "edge_in = in_edges[0]\n",
+    "edge_out = out_edges[-1]\n",
+    "\n",
+    "def get_argument_mappings(edge, graph, direction=0):\n",
+    "    argument_mappings = []\n",
+    "    amr_parses = {}\n",
+    "    trips = [[],[]]\n",
+    "        \n",
+    "    for annotation in graph.edges[edge]['annotations']:\n",
+    "        arg_map = annotation['general_map'] + annotation['specific_map']\n",
+    "        amr = annotation['amr']\n",
+    "        trips += annotation['triples'][direction]\n",
+    "        if direction==0:\n",
+    "            ante_triples = annotation['triples'][0]\n",
+    "            pre_triples = graph.nodes[edge[1]]['triples']\n",
+    "            trips[0]+=ante_triples\n",
+    "            trips[1]=pre_triples\n",
+    "        else:\n",
+    "            ante_triples = graph.nodes[edge[0]]['triples']\n",
+    "            pre_triples = annotation['triples'][1]\n",
+    "            trips[0]=ante_triples\n",
+    "            trips[1]+=pre_triples\n",
+    "        for i, (ante, pre) in enumerate(arg_map):\n",
+    "            for (pred, rel, obj) in ante_triples:\n",
+    "                if ante[0]==pred and ante[1]==rel:\n",
+    "                    ante = (pred, rel, obj)\n",
+    "                    break\n",
+    "            for (pred, rel, obj) in pre_triples:\n",
+    "                if pre[0]==pred and pre[1]==rel:\n",
+    "                    pre = (pred, rel, obj)\n",
+    "                    break\n",
+    "            \n",
+    "            if (ante, pre) not in argument_mappings:\n",
+    "                argument_mappings.append((ante, pre))\n",
+    "        amr_parses.update(annotation['amr'])\n",
+    "        \n",
+    "    return(argument_mappings, amr_parses, trips)\n",
+    "\n",
+    "argument_mappings_in, amr_parses_in, triples_in = get_argument_mappings(edge_in, graph,0)\n",
+    "\n",
+    "print(graph.edges[edge_in]['annotations'][0]['2parse'][0],'\\n')\n",
+    "print(argument_mappings_in)\n",
+    "print('\\n\\n')\n",
+    "print(graph.edges[edge_out]['annotations'][0]['2parse'][0],'\\n')\n",
+    "argument_mappings_out, amr_parses_out, triples_out = get_argument_mappings(edge_out, graph,1)\n",
+    "print(argument_mappings_out)\n",
+    "print(amr_parses_out)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 77,
+   "id": "fa8e3e64",
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "{'event': 'want-01', ':ARG1': 'strawberry', ':ARG0': '\"Sandra\"'} ---> {'event': 'pick-01', ':ARG1': 'strawberry', ':ARG0': 'p', ':ARG2': 'mother'}\n",
+      "{'event': 'go-02', ':ARG0': '\"Sandra\"', ':ARG1': 'pick-01', ':accompanier': 'person'} ---> {'event': 'be-located-at-91', ':ARG1': '\"Sandra\"', ':ARG2': 'farm'}\n"
+     ]
+    }
+   ],
+   "source": [
+    "def get_event_structure(mappings, triples):\n",
+    "    \n",
+    "    event1 = {'event':None}\n",
+    "    event2 = {'event':None}\n",
+    "    \n",
+    "    def add_arg_to_event(event, triple, triples):\n",
+    "        if event['event']==None:\n",
+    "            event['event'] = triple[0]\n",
+    "        if triple[2]=='and':\n",
+    "            for (pred, rel, obj) in triples:\n",
+    "                if pred=='and' and rel==':op1':\n",
+    "                    triple=(triple[0], triple[1], obj)\n",
+    "        if triple[1] not in event.keys():\n",
+    "            event[triple[1]] = triple[2]\n",
+    "        return(event)\n",
+    "    #print(triples)\n",
+    "    for (ante, pre) in mappings:\n",
+    "        \n",
+    "        event1 = add_arg_to_event(event1, ante, triples[0])\n",
+    "        event2 = add_arg_to_event(event2, pre, triples[1])\n",
+    "    \n",
+    "    def add_more_args(event, triples):\n",
+    "        event_name = event['event']\n",
+    "        #triple_list = []\n",
+    "        #for triple in triples:\n",
+    "            #triple_list += triples[triple]\n",
+    "        for (pred, rel, obj) in triples:\n",
+    "            if pred==event_name and rel not in event.keys():\n",
+    "                event[rel]=obj\n",
+    "        return(event)\n",
+    "    \n",
+    "    event1 = add_more_args(event1, triples[0]) \n",
+    "    event2 = add_more_args(event2, triples[1])\n",
+    "    return(event1, event2)\n",
+    "        \n",
+    "event_1_in, event_2_in = get_event_structure(argument_mappings_in, triples_in)\n",
+    "print(event_1_in, '--->', event_2_in) \n",
+    "\n",
+    "event_1_out, event_2_out = get_event_structure(argument_mappings_out,  triples_out)\n",
+    "print(event_1_out, '--->', event_2_out)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 78,
+   "id": "38f6f432",
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "('4488_EVENT_1', '4488_0')\n",
+      "{'event': 'want-01', ':ARG1': 'strawberry', ':ARG0': '\"Sandra\"'} ---> {'event': 'pick-01', ':ARG1': 'strawberry', ':ARG0': 'p', ':ARG2': 'mother'}\n",
+      "\n",
+      "---------\n",
+      "\n",
+      "('4488_EMO_1', '4488_0')\n",
+      "{'event': 'like-01', ':ARG0': '\"Sandra\"', ':ARG1': 'person', ':ARG2': 'mother'} ---> {'event': 'go-02', ':ARG0': '\"Sandra\"', ':accompanier': 'person', ':ARG2': 'mother', ':ARG1': 'pick-01'}\n",
+      "\n",
+      "---------\n",
+      "\n",
+      "('4488_LOC_1', '4488_0')\n",
+      "{'event': 'be-located-at-91', ':ARG1': '\"Sandra\"', ':ARG2': 'farm'} ---> {'event': 'pick-01', ':ARG0': 'p', ':ARG2': 'mother', ':ARG1': 'strawberry'}\n",
+      "\n",
+      "---------\n",
+      "\n",
+      "('4488_POS_1', '4488_0')\n",
+      "{'event': 'possess-01', ':ARG0': '\"Sandra\"', ':ARG1': 'basket'} ---> {'event': 'place-01', ':ARG0': 's0'}\n",
+      "\n",
+      "---------\n",
+      "\n",
+      "('4488_OTH_0', '4488_0')\n",
+      "{'event': 'time', ':accompanier': 'person', ':ARG0': '\"Sandra\"', ':ARG2': 'mother'} ---> {'event': 'go-02', ':accompanier': 'person', ':ARG0': '\"Sandra\"', ':ARG2': 'mother', ':ARG1': 'pick-01'}\n",
+      "\n",
+      "---------\n",
+      "\n"
+     ]
+    }
+   ],
+   "source": [
+    "for edge in in_edges:\n",
+    "    print(edge)\n",
+    "    argument_mappings, amr_parses, triples = get_argument_mappings(edge, graph,0)\n",
+    "    event_1, event_2 = get_event_structure(argument_mappings, triples)\n",
+    "    print(event_1, '--->', event_2)\n",
+    "    print('\\n---------\\n')"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 79,
+   "id": "6f7bcb42",
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "('4488_0', '4488_LOC_1')\n",
+      "{'event': 'go-02', ':ARG0': '\"Sandra\"', ':ARG1': 'pick-01', ':accompanier': 'person'} ---> {'event': 'be-located-at-91', ':ARG1': '\"Sandra\"', ':ARG2': 'farm'}\n",
+      "('4488_0', '4488_POS_0')\n",
+      "{'event': 'pick-01', ':ARG0': 'p', ':ARG1': 'strawberry'} ---> {'event': 'possess-01', ':ARG0': '\"Sandra\"', ':ARG1': 'strawberry'}\n",
+      "('4488_0', '4488_OTH_2')\n",
+      "{'event': 'crown-01', ':ARG1': 's0', ':ARG0': 'p'} ---> {'event': 'attend-02', ':ARG0': '\"Sandra\"', ':ARG1': 'p', ':ARG0-of': 'have-rel-role-91'}\n",
+      "('4488_0', '4488_1')\n",
+      "{'event': 'go-02', ':ARG1': 'pick-01', ':accompanier': 'person', ':ARG0': '\"Sandra\"', ':ARG2': 'mother'} ---> {'event': 'do-02', ':ARG1': 's1', ':ARG0': 'they', ':ARG2': 'mother'}\n",
+      "('4488_0', '4488_2')\n",
+      "{'event': 'pick-01', ':ARG0': 'p', ':ARG1': 'strawberry'} ---> {'event': 'drop-01', ':ARG0': '\"Sandra\"', ':ARG1': 'strawberry'}\n",
+      "('4488_0', '4488_4')\n",
+      "{'event': 'pick-01', ':ARG0': 'p', ':ARG1': 'strawberry'} ---> {'event': 'feel-01', ':ARG0': '\"Sandra\"', ':ARG1': 'content-01'}\n"
+     ]
+    }
+   ],
+   "source": [
+    "for edge in out_edges:\n",
+    "    print(edge)\n",
+    "    argument_mappings, amr_parses, triples = get_argument_mappings(edge, graph,1)\n",
+    "    event_1, event_2 = get_event_structure(argument_mappings, triples)\n",
+    "    print(event_1, '--->', event_2)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 32,
+   "id": "0bd6b35d",
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "SENTENCE  1  has  6 in comming edges and  6  out going edges\n",
+      "\n",
+      "IN\n",
+      "\n",
+      "('4488_EMO_2', '4488_1')\n",
+      "('4488_LOC_0', '4488_1')\n",
+      "('4488_LOC_2', '4488_1')\n",
+      "('4488_POS_2', '4488_1')\n",
+      "('4488_OTH_1', '4488_1')\n",
+      "('4488_0', '4488_1')\n",
+      "\n",
+      "\n",
+      "OUT\n",
+      "\n",
+      "('4488_1', '4488_EVENT_3')\n",
+      "('4488_1', '4488_EMO_5')\n",
+      "('4488_1', '4488_LOC_1')\n",
+      "('4488_1', '4488_POS_4')\n",
+      "('4488_1', '4488_2')\n",
+      "('4488_1', '4488_4')\n",
+      "\n",
+      "\n",
+      "EVENT BEFORE:\n",
+      "\n",
+      "('4488_EMO_2', '4488_1')\n",
+      "{'event': 'like-01', ':ARG0': '\"Sandra\"', ':ARG1': 'strawberry'} ---> {'event': 'spend-02', ':ARG0': '\"Sandra\"', ':ARG1': 'berry', ':ARG2': 'gather-01', ':location': 'sun'}\n",
+      "\n",
+      "---------\n",
+      "\n",
+      "('4488_LOC_0', '4488_1')\n",
+      "{'event': 'be-located-at-91', ':ARG1': 'and', ':ARG2': 'field'} ---> {'event': 'spend-02', ':ARG0': 'they', ':ARG1': 'multiple', ':ARG2': 'gather-01', ':location': 'sun'}\n",
+      "\n",
+      "---------\n",
+      "\n",
+      "('4488_LOC_2', '4488_1')\n",
+      "{'event': 'be-located-at-91', ':ARG1': 'and', ':ARG2': 'mother'} ---> {'event': 'spend-02', ':ARG0': 'and', ':ARG2': 'mother', ':ARG1': 'multiple', ':location': 'sun'}\n",
+      "\n",
+      "---------\n",
+      "\n",
+      "('4488_POS_2', '4488_1')\n",
+      "{'event': 'possess-01', ':ARG1': 'strawberry', ':ARG0': 'and', ':ARG2': 'mother'} ---> {'event': 'gather-01', ':ARG1': 'berry', ':ARG0': 'and', ':ARG2': 'mother'}\n",
+      "\n",
+      "---------\n",
+      "\n",
+      "('4488_OTH_1', '4488_1')\n",
+      "{'event': 'pick-01', ':ARG1': 'berry', ':ARG0': '\"Sandra\"'} ---> {'event': 'gather-01', ':ARG1': 'berry', ':ARG0': '\"Sandra\"'}\n",
+      "\n",
+      "---------\n",
+      "\n",
+      "('4488_0', '4488_1')\n",
+      "{'event': 'go-02', ':ARG1': 'pick-01', ':accompanier': 'person', ':ARG0': '\"Sandra\"', ':ARG2': 'mother'} ---> {'event': 'do-02', ':ARG1': 's1', ':ARG0': 'they', ':ARG2': 'mother'}\n",
+      "\n",
+      "---------\n",
+      "\n",
+      "EVENT AFTER:\n",
+      "\n",
+      "('4488_1', '4488_EVENT_3')\n",
+      "{'event': 'spend-02', ':ARG2': 'gather-01', ':ARG0': 'and', ':ARG1': 'several', ':location': 'sun'} ---> {'event': 'drop-01', ':ARG1': 'bushel', ':ARG0': '\"Sandra\"', ':manner': 'accidental'}\n",
+      "\n",
+      "---------\n",
+      "\n",
+      "('4488_1', '4488_EMO_5')\n",
+      "{'event': 'spend-02', ':ARG0': 'and', ':ARG1': 'multiple', ':ARG2': 'gather-01', ':location': 'sun'} ---> {'event': 'feel-01', ':ARG0': '\"Sandra\"', ':ARG1': 'accomplish-01'}\n",
+      "\n",
+      "---------\n",
+      "\n",
+      "('4488_1', '4488_LOC_1')\n",
+      "{'event': 'spend-02', ':ARG0': 'and', ':ARG2': 'mother', ':ARG1': 'multiple', ':location': 'sun'} ---> {'event': 'be-located-at-91', ':ARG1': 'and', ':ARG2': 'mother'}\n",
+      "\n",
+      "---------\n",
+      "\n",
+      "('4488_1', '4488_POS_4')\n",
+      "{'event': 'spend-02', ':ARG0': 'and', ':ARG1': 'berry', ':ARG2': 'mother', ':location': 'sun'} ---> {'event': 'possess-01', ':ARG0': 'and', ':ARG1': 'berry', ':ARG2': 'mother'}\n",
+      "\n",
+      "---------\n",
+      "\n",
+      "('4488_1', '4488_2')\n",
+      "{'event': 'spend-02', ':ARG0': 'and', ':ARG1': 'berry', ':ARG2': 'gather-01', ':location': 'sun'} ---> {'event': 'drop-01', ':ARG0': '\"Sandra\"', ':quant-of': 'strawberry', ':ARG1': 'bushel'}\n",
+      "\n",
+      "---------\n",
+      "\n",
+      "('4488_1', '4488_4')\n",
+      "{'event': 'spend-02', ':ARG0': 'and', ':ARG1': 'multiple', ':ARG2': 'gather-01', ':location': 'sun'} ---> {'event': 'feel-01', ':ARG0': '\"Sandra\"', ':ARG1': 'glad-02'}\n",
+      "\n",
+      "---------\n",
+      "\n"
+     ]
+    }
+   ],
+   "source": [
+    "SENT_ID = 1\n",
+    "in_edges, out_edges = get_edges_sentence(SENT_ID, graph)\n",
+    "print('\\n\\nEVENT BEFORE:\\n')\n",
+    "for edge in in_edges:\n",
+    "    print(edge)\n",
+    "    argument_mappings, amr_parses, triples = get_argument_mappings(edge, graph)\n",
+    "    event_1, event_2 = get_event_structure(argument_mappings, triples)\n",
+    "    print(event_1, '--->', event_2)\n",
+    "    print('\\n---------\\n')\n",
+    "print('EVENT AFTER:\\n')\n",
+    "for edge in out_edges:\n",
+    "    print(edge)\n",
+    "    argument_mappings, amr_parses, triples = get_argument_mappings(edge, graph)\n",
+    "    event_1, event_2 = get_event_structure(argument_mappings, triples)\n",
+    "    print(event_1, '--->', event_2)\n",
+    "    print('\\n---------\\n')"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "id": "ed6a5eaa",
+   "metadata": {},
+   "outputs": [],
+   "source": []
+  }
+ ],
+ "metadata": {
+  "kernelspec": {
+   "display_name": "Python 3",
+   "language": "python",
+   "name": "python3"
+  },
+  "language_info": {
+   "codemirror_mode": {
+    "name": "ipython",
+    "version": 3
+   },
+   "file_extension": ".py",
+   "mimetype": "text/x-python",
+   "name": "python",
+   "nbconvert_exporter": "python",
+   "pygments_lexer": "ipython3",
+   "version": "3.8.8"
+  }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 5
+}
diff --git a/code/Dynamic_Argument_Structure_in_GLUCOSE-Copy2.ipynb b/code/Dynamic_Argument_Structure_in_GLUCOSE-Copy2.ipynb
new file mode 100644
index 0000000000000000000000000000000000000000..f5dff4553cf2e42ada4631fd8877912695299db1
--- /dev/null
+++ b/code/Dynamic_Argument_Structure_in_GLUCOSE-Copy2.ipynb
@@ -0,0 +1,1467 @@
+{
+ "cells": [
+  {
+   "cell_type": "markdown",
+   "id": "7844008f",
+   "metadata": {},
+   "source": [
+    "## Annotate Argument Chains in GLUCOSE\n",
+    "\n",
+    "\n"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "id": "87ad5bb1",
+   "metadata": {},
+   "source": [
+    "## GLUCOSE PREPROCESSING\n",
+    "\n",
+    "for deatailed information please look at notebook: preprocessing and story graph building"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 13,
+   "id": "9602147e",
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "import json\n",
+    "import pickle\n",
+    "import re\n",
+    "import penman\n",
+    "\n",
+    "SPEC_MERGED = '../amr_nx_story_graphs/spec_merged/'\n",
+    "GEN_MERGED = '../amr_nx_story_graphs/gen_merged/'\n",
+    "\n",
+    "food_cluster = ['13','17','19','25','27','28']\n",
+    "\n",
+    "with open('../story_graphs/topic2storyID.json', 'r') as f:\n",
+    "    topics = json.load(f)\n",
+    "    \n",
+    "def open_amr_dict(file):\n",
+    "    with open(file,'r') as f:\n",
+    "        return(json.load(f))\n",
+    "amr_dict = open_amr_dict('../amr/amr_dict.json')    \n",
+    "\n",
+    "files = []\n",
+    "for topic in food_cluster:\n",
+    "    files += topics[topic]\n",
+    "#print(topics['19'])\n",
+    "\n",
+    "#file = '3070_a9b0dee1-478a-4a6b-b45c-33e1be3622d5.pkl'\n",
+    "#file = '2403_85131dc1-63b4-46b0-b98c-8c2274e459af.pkl'\n",
+    "#file = '1266_48385946-e804-44f2-a0e3-3b4e7f4dbb2e.pkl'\n",
+    "#for file in topics_0:\n",
+    "#with open('../story_graphs/coref/'+file, 'rb') as f:\n",
+    "    #graph = pickle.load(f)\n",
+    "#with open(SPEC_MERGED+file,'rb') as f:\n",
+    "    #spec_merged_graph = pickle.load(f)\n",
+    "#with open(GEN_MERGED+file,'rb') as f:\n",
+    "    #gen_merged_graph = pickle.load(f)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 14,
+   "id": "4268b98c",
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "edge_anno = ('1266_EVENT_1', '1266_1')\n",
+    "annotation = {'dimension': '1', 'quality': 3, 'worker_id': 197, \n",
+    "               'rules': [['They plant tomatoes', 'Causes/Enables', 'They grow tomatoes'], \n",
+    "                         ['{They}_[subject] {plant}_[verb] {tomatoes}_[object1]', 'Causes/Enables', '{They}_[subject] {grow}_[verb] {tomatoes}_[object1]'], \n",
+    "                         ['Someone_A and Someone_B plant Something_A (that is a plant)', 'Causes/Enables', 'Someone_A and Someone_B grow Something_A'], \n",
+    "                         ['{Someone_A and Someone_B}_[subject] {plant}_[verb] {Something_A ||that is a plant||}_[object1]', 'Causes/Enables', '{Someone_A and Someone_B}_[subject] {grow}_[verb] {Something_A}_[object1]']], \n",
+    "               '2parse': [['They plant tomatoes', 'Causes/Enables', 'They grow tomatoes'], \n",
+    "                          ['Max and Kim plant crown', 'Causes/Enables', 'Max and Kim grow crown']], \n",
+    "               'general_0': ['someone_a and someone_b plant something_a (that is a plant)', 'Causes/Enables', 'someone_a and someone_b grow something_a'], \n",
+    "               'general_replaced': ['Max and Kim plant crown (that is a plant)', 'Causes/Enables', 'Max and Kim grow crown'], \n",
+    "               'general_no_brackets': ['Max and Kim plant crown', 'Causes/Enables', 'Max and Kim grow crown'],\n",
+    "               'coref': [('They', 'They')], 'coref_roots': [('They', 'They')], \n",
+    "               'general_merge': {'nodes': 3, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.4}, \n",
+    "               'specific_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.3, 'D_aft': 0.4}}\n",
+    "\n",
+    "edge_anno = ('1266_EVENT_4', '1266_3')\n",
+    "annotation = {'dimension': '1', 'quality': 2, 'worker_id': 14, \n",
+    "               'rules': [['It rains a lot', 'Causes/Enables', 'There is especially large harvest of tomatoes'], \n",
+    "                         ['{It}_[subject] {rains}_[verb] {a lot}_[object1]', 'Causes/Enables', '{There}_[subject] {is}_[verb] {especially large harvest of tomatoes}_[object1]'], \n",
+    "                         ['It rains a lot', 'Causes/Enables', 'There is a large harvest of Something_A (that is a crop)'], \n",
+    "                         ['{It}_[subject] {rains}_[verb] {a lot}_[object1]', 'Causes/Enables', '{There }_[subject] {is}_[verb] {a large harvest of Something_A ||that is a crop||}_[object1]']], \n",
+    "               '2parse': [['It rains a lot', 'Causes/Enables', 'There is especially large harvest of tomatoes'], \n",
+    "                          ['It rains a lot', 'Causes/Enables', 'There is a large harvest of crown']], \n",
+    "               'general_0': ['It rains a lot', 'Causes/Enables', 'There is a large harvest of something_a (that is a crop)'], 'general_replaced': ['It rains a lot', 'Causes/Enables', 'There is a large harvest of crown (that is a crop)'], 'general_no_brackets': ['It rains a lot', 'Causes/Enables', 'There is a large harvest of crown'], 'coref': [], 'coref_roots': [], 'general_merge': {'nodes': 0, 'edges': 0, 'D_bef': 0.3, 'D_aft': 0.3}, 'specific_merge': {'nodes': 0, 'edges': 0, 'D_bef': 0.3, 'D_aft': 0.3}}\n",
+    "edge_anno = ('1266_EMO_4', '1266_1')\n",
+    "annotation = {'dimension': '2', 'quality': 2, 'worker_id': 14, \n",
+    "              'rules': [['Mary and her mother like(s) tomatoes', 'Motivates', 'They grow tomatoes in their garden every year'], ['{Mary and her mother}_[subject] {like(s)}_[verb] {tomatoes}_[object]', 'Motivates', '{They}_[subject] {grow}_[verb] {tomatoes}_[object1] {in}_[preposition2] {their garden every year}_[object2]'], \n",
+    "                        ['Someone_A and Someone_B like(s) Something_A (that can be grown)', 'Motivates', 'Someone_A and Someone_B grow Something_A every year'], ['{Someone_A and Someone_B}_[subject] {like(s)}_[verb] {Something_A ||that can be grown||}_[object]', 'Motivates', '{Someone_A and Someone_B}_[subject] {grow}_[verb] {Something_A}_[object1] {every year}_[object2]']], \n",
+    "              '2parse': [['Mary and her mother likes tomatoes', 'Motivates', 'They grow tomatoes in their garden every year'], \n",
+    "                         ['Max and Kim likes crown', 'Motivates', 'Max and Kim grow crown every year']], \n",
+    "              'general_0': ['someone_a and someone_b likes something_a (that can be grown)', 'Motivates', 'someone_a and someone_b grow something_a every year'], 'general_replaced': ['Max and Kim likes crown (that can be grown)', 'Motivates', 'Max and Kim grow crown every year'], 'general_no_brackets': ['Max and Kim likes crown', 'Motivates', 'Max and Kim grow crown every year'], 'coref': [('Mary and her mother', 'They'), ('Mary and her mother', 'their')], 'coref_roots': [('Mary', 'They'), ('Mary', 'their')], 'general_merge': {'nodes': 3, 'edges': 0, 'D_bef': 0.1, 'D_aft': 0.2}, 'specific_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.2}}\n"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 15,
+   "id": "c7dc704e",
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "with open('../generalizers/GENERALIZERS_final.json','r') as f:\n",
+    "    replacers = json.load(f)\n",
+    "    add = {key+\"'s\":value+\"'s\" for (key,value) in replacers.items()}\n",
+    "    replacers.update(add)\n",
+    "    add = {key+\",\":value+\",\" for (key,value) in replacers.items()}\n",
+    "    replacers.update(add)\n",
+    "    add = {key+\".\":value for (key,value) in replacers.items()}\n",
+    "    replacers.update(add)\n",
+    "    \n",
+    "def replace_names(parse):\n",
+    "    \"\"\"\n",
+    "    Replace \":name ...\" tags and attributes with actual concept name\n",
+    "    \n",
+    "    e.g.: \n",
+    "        \n",
+    "        :ARG1 (p / person\n",
+    "            :name (n / name\n",
+    "                  :op1 \"Max\")\n",
+    "            \n",
+    "                =\n",
+    "                \n",
+    "        :ARG1 (p / \"Max\")\n",
+    "\n",
+    "    Parameters\n",
+    "    ----------\n",
+    "    parse : str\n",
+    "        AMR-Parse.\n",
+    "\n",
+    "    Returns\n",
+    "    -------\n",
+    "    parse : str\n",
+    "    \"\"\"\n",
+    "    \n",
+    "    name = re.findall('[a-z]+[\\s\\n\\t]*:name \\(n[0-9]? / name[\\s\\n\\t]*:op1 (\"[A-Za-z]+\")\\)', parse)\n",
+    "    names = re.findall('[a-z]+[\\s\\n\\t]*:name \\(n[0-9]? / name[\\s\\n\\t]*:op1 \"[A-Za-z]+\"\\)', parse)\n",
+    "    for i,el in enumerate(names):\n",
+    "        parse = parse.replace(el,name[i])\n",
+    "    name = re.findall('[a-z]+[\\s\\n\\t]*:mod \\(c[0-9]? / (\"[A-Za-z]+\")\\)', parse)\n",
+    "    names = re.findall('[a-z]+[\\s\\n\\t]*:mod \\(c[0-9]? / \"[A-Za-z]+\"\\)', parse)\n",
+    "    for i,el in enumerate(names):\n",
+    "        parse = parse.replace(el,name[i])\n",
+    "    name = re.findall('[a-z]+[\\s\\n\\t]*:name \\(n[0-9]? / name[\\s\\n\\t]*:op1 (\"[A-Za-z]+\")[\\s\\n\\t]*:op2 (\"[A-Za-z]+\")\\)', parse)\n",
+    "    names = re.findall('[a-z]+[\\s\\n\\t]*:name \\(n[0-9]? / name[\\s\\n\\t]*:op1 \"[A-Za-z]+\"[\\s\\n\\t]*:op2 \"[A-Za-z]+\"\\)', parse)\n",
+    "    if len(name)!=0:\n",
+    "        for i,n in enumerate(name):\n",
+    "            n = (n[0]+n[1]).replace('\"\"',' ')\n",
+    "            name[i] = n\n",
+    "    for i,el in enumerate(names):\n",
+    "        parse = parse.replace(el,name[i])\n",
+    "    return(parse)\n",
+    "\n",
+    "def get_graph_triples_no_vars(amr_parse):\n",
+    "\n",
+    "    lines = []\n",
+    "    amr_parse = amr_parse[:-1]\n",
+    "    for line in amr_parse.split('\\n'):\n",
+    "        if line.startswith('#'):\n",
+    "            continue\n",
+    "        else:\n",
+    "            lines.append(line.strip())\n",
+    "        \n",
+    "    current_nodes = [lines[0].replace('(','')]\n",
+    "    graph_triples = []\n",
+    "    for line in lines[1:]:\n",
+    "        out_node = current_nodes[-1]\n",
+    "        relation = line.split(' ')[0]\n",
+    "        line = line.replace(relation+' ','')\n",
+    "        node = line.strip().replace('(','').replace(')','')\n",
+    "        graph_triples.append((out_node, relation, node))\n",
+    "        depth = line.count(')')-line.count('(')\n",
+    "        \n",
+    "        if line.endswith(')'):\n",
+    "            if depth > 0:\n",
+    "                current_nodes = current_nodes[:len(current_nodes)-(depth)]\n",
+    "        elif '/' not in line:\n",
+    "            continue\n",
+    "        else:\n",
+    "            current_nodes.append(node)\n",
+    "    return(graph_triples)\n",
+    "\n",
+    "def rename_sent_index(sent_index, rule_index=''):\n",
+    "    \n",
+    "    if 'EVE' in sent_index:\n",
+    "        sent_index = 'e'+sent_index.split('_')[-1]\n",
+    "    elif 'EMO' in sent_index:\n",
+    "        sent_index = 'f'+sent_index.split('_')[-1]\n",
+    "    elif 'OTH' in sent_index:\n",
+    "        sent_index = 'o'+sent_index.split('_')[-1]\n",
+    "    elif 'LOC' in sent_index:\n",
+    "        sent_index = 'l'+sent_index.split('_')[-1]\n",
+    "    elif 'POS' in sent_index:\n",
+    "        sent_index = 'p'+sent_index.split('_')[-1]\n",
+    "    else:\n",
+    "        sent_index = 's'+sent_index.split('_')[-1]\n",
+    "    if rule_index!='':\n",
+    "        sent_index = sent_index+'r'+str(rule_index)\n",
+    "    return(sent_index)\n",
+    "\n",
+    "def get_graph_triples(amr_parse, sent_index, rule_index):\n",
+    "    \n",
+    "    tree = penman.parse(amr_parse)\n",
+    "    sent_index = rename_sent_index(sent_index, rule_index)\n",
+    "    var_name = sent_index + '.{i}'\n",
+    "    tree.reset_variables(var_name)\n",
+    "    graph = penman.interpret(tree)\n",
+    "    return(graph)\n",
+    "\n",
+    "def reduce_triple(triple):\n",
+    "    try:\n",
+    "        triple = (triple[0].split('/ ')[1], triple[1], triple[2])\n",
+    "    except:\n",
+    "        triple = (triple[0], triple[1], triple[2])\n",
+    "    try:\n",
+    "        triple = (triple[0], triple[1], triple[2].split('/ ')[1])\n",
+    "    except:\n",
+    "        triple = (triple[0], triple[1], triple[2])\n",
+    "    return(triple)\n",
+    "\n",
+    "def map_arguments(annotation, edge, rule_index):\n",
+    "    \n",
+    "    if annotation['2parse'][0]==None or annotation['2parse'][1]==None:\n",
+    "        return(None,None,None,None)\n",
+    "    \n",
+    "    if annotation['2parse'][0][0]==None or annotation['2parse'][0][1]==None or annotation['2parse'][1][0]==None or annotation['2parse'][1][1]==None:\n",
+    "        return(None,None,None,None)\n",
+    "    \n",
+    "    def match_triples(fill, triples, old=True):\n",
+    "        # check if graph has at least 2 nodes\n",
+    "        if old==True:\n",
+    "            if len(triples)<1:\n",
+    "                return((None,None,None))\n",
+    "        else:\n",
+    "            if len(triples)<2:\n",
+    "                return((None,None,None))\n",
+    "            \n",
+    "        def check_and(triple,triples):\n",
+    "            if ' and' in triple[0]:\n",
+    "                for triple_new in triples:\n",
+    "                    if ' and' in triple_new[2]:\n",
+    "                        triple = (triple_new[0],triple_new[1],triple[2])\n",
+    "                        return(triple)\n",
+    "            return(triple)\n",
+    "        \n",
+    "        for triple in triples:\n",
+    "            if not '_of' in triple[1]:\n",
+    "                if fill.lower() in triple[2].lower():\n",
+    "                    triple = check_and(triple,triples)\n",
+    "                    return(triple)\n",
+    "            else:\n",
+    "                if fill.lower() in triple[0].lower():\n",
+    "                    triple = check_and(triple,triples)\n",
+    "                    return(triple)\n",
+    "        for triple in triples:\n",
+    "            if fill.lower() in triple[0].lower():\n",
+    "                return(triple)\n",
+    "        \n",
+    "        return((None,None,None))\n",
+    "    \n",
+    "    \n",
+    "    # get general rule\n",
+    "    general_rule = annotation['2parse'][1]\n",
+    "    specific_rule = annotation['2parse'][0]\n",
+    "    \n",
+    "    parta, partb = specific_rule[0], specific_rule[2]\n",
+    "    part1, part2 = general_rule[0], general_rule[2]\n",
+    "\n",
+    "    # rename fillers of general rule\n",
+    "    filler1 = [replacers[word.replace(')','').replace('\"','')] for word in annotation['general_0'][0].split(' ') if '_' in word and word in replacers.keys()]\n",
+    "    filler2 = [replacers[word.replace(')','').replace('\"','')] for word in annotation['general_0'][2].split(' ') if '_' in word and word in replacers.keys()]\n",
+    "    filler = [el for el in filler1 if el in filler2]\n",
+    "    \"\"\"\n",
+    "    \"\"\"\n",
+    "    def check_amr_dict(sent, amr_dict):\n",
+    "        if sent not in amr_dict.keys():\n",
+    "            with open('../add_to_amr_dict.txt', 'a') as f:\n",
+    "                f.writelines(sent+'\\n\\n')\n",
+    "            return(False)\n",
+    "        return(True)\n",
+    "    # look up amr parse for general rule\n",
+    "    \n",
+    "    if check_amr_dict(part1,amr_dict)==False or check_amr_dict(part2,amr_dict)==False or check_amr_dict(parta,amr_dict)==False or check_amr_dict(partb,amr_dict)==False:\n",
+    "        return(None,None,None,None)\n",
+    "    try:\n",
+    "        corefs = annotation['coref_roots']\n",
+    "    except:\n",
+    "        corefs = []\n",
+    "    parse_part1, parse_part2 = replace_names(amr_dict[part1]),replace_names(amr_dict[part2])\n",
+    "    #print(parse_part1)\n",
+    "    #print(parse_part2)\n",
+    "    parse_parta, parse_partb = replace_names(amr_dict[parta]),replace_names(amr_dict[partb])\n",
+    "    #print(parse_parta)\n",
+    "    #print(parse_partb)\n",
+    "    amr_parses = {parta:parse_parta, partb:parse_partb, part1:parse_part1, part2:parse_part2}\n",
+    "    \n",
+    "    # get amr graph triples\n",
+    "    #graph1, graph2 = get_graph_triples(parse_part1,edge[0],rule_index), get_graph_triples(parse_part2,edge[1],rule_index)\n",
+    "    #print(graph1.top)\n",
+    "    #print(graph1.instances())\n",
+    "    #name_top = [inst.target for inst in graph1.instances() if inst.source==graph1.top][0]\n",
+    "    #print(name_top)\n",
+    "    \n",
+    "    triples_part11, triples_part22 = get_graph_triples_no_vars(parse_part1), get_graph_triples_no_vars(parse_part2)\n",
+    "    triples_partaa, triples_partbb = get_graph_triples_no_vars(parse_parta), get_graph_triples_no_vars(parse_partb)\n",
+    "    # what i wanna return for specific\n",
+    "    specific_heads = []\n",
+    "    \n",
+    "    for (s1_inst,s2_inst) in corefs:\n",
+    "        tripleaa = match_triples(s1_inst, triples_partaa,old=True)\n",
+    "        triplebb = match_triples(s2_inst, triples_partbb,old=True)\n",
+    "        if None not in tripleaa and None not in triplebb:\n",
+    "            tripleaa = (tripleaa[0].split('/ ')[1],tripleaa[1],rename_sent_index(edge[0]))\n",
+    "            triplebb = (triplebb[0].split('/ ')[1],triplebb[1],rename_sent_index(edge[1]))\n",
+    "            specific_heads.append((tripleaa,triplebb))\n",
+    "    specific_heads = list(set(specific_heads))        \n",
+    "    # general\n",
+    "    heads = []\n",
+    "    \n",
+    "    for fill in filler:\n",
+    "        fill = re.sub('[()]', '', replace_names(amr_dict[fill.replace(\"'s\",'').replace(\",\",'')]).split('/ ')[1].split('\\n')[0])\n",
+    "        \n",
+    "        triple11 = match_triples(fill, triples_part11,old=True)\n",
+    "        triple22 = match_triples(fill, triples_part22,old=True)\n",
+    "            \n",
+    "        if None not in triple11 and None not in triple22:\n",
+    "            triple11 = (triple11[0].split('/ ')[1],triple11[1],rename_sent_index(edge[0]))\n",
+    "            triple22 = (triple22[0].split('/ ')[1],triple22[1],rename_sent_index(edge[1]))\n",
+    "            heads.append((triple11,triple22))\n",
+    "    heads = list(set(heads))\n",
+    "\n",
+    "    \n",
+    "    return_triples = [[reduce_triple(triple) for triple in triples_partaa], \n",
+    "                      [reduce_triple(triple) for triple in triples_partbb]]\n",
+    "        \n",
+    "    return(heads,specific_heads, amr_parses, return_triples)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 18,
+   "id": "8b2882b9",
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "[('go-02', ':ARG0', '\"Sandra\"'), ('go-02', ':ARG1', 'pick-01'), ('pick-01', ':ARG0', 'p'), ('pick-01', ':ARG1', 'strawberry'), ('go-02', ':accompanier', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 'p'), ('have-rel-role-91', ':ARG2', 'mother')]\n",
+      "[('spend-02', ':ARG0', 'they'), ('spend-02', ':ARG1', 'several'), ('several', ':op1', 'temporal-quantity'), ('temporal-quantity', ':quant', '1'), ('temporal-quantity', ':unit', 'hour'), ('spend-02', ':ARG2', 'gather-01'), ('gather-01', ':ARG0', 't'), ('gather-01', ':ARG1', 'berry'), ('spend-02', ':location', 'sun')]\n",
+      "[('drop-01', ':ARG0', '\"Sandra\"'), ('drop-01', ':ARG1', 'strawberry'), ('strawberry', ':quant', 'volume-quantity'), ('volume-quantity', ':quant', '1'), ('volume-quantity', ':unit', 'bushel'), ('strawberry', ':poss', 'p'), ('drop-01', ':time', 'end-01'), ('end-01', ':ARG1', 'day')]\n",
+      "[('possible-01', ':ARG1', 'scoop-01'), ('scoop-01', ':ARG0', 'she'), ('scoop-01', ':ARG1', 'they'), ('they', ':mod', 'all'), ('scoop-01', ':mod', 'again'), ('possible-01', ':ARG2-of', 'lucky-01')]\n",
+      "[('glad-02', ':ARG0', 'waste-01'), ('waste-01', ':polarity', '-'), ('waste-01', ':ARG1', 'work-01'), ('work-01', ':ARG0', '\"Sandra\"'), ('work-01', ':ARG1-of', 'hard-02'), ('glad-02', ':ARG1', 'p')]\n",
+      "[('want-01', ':ARG0', '\"Stephen\"'), ('want-01', ':ARG1', 'eat-01'), ('eat-01', ':ARG0', 'p'), ('eat-01', ':ARG1', 'banana')]\n",
+      "[('go-02', ':ARG0', 'he'), ('go-02', ':ARG4', 'store'), ('go-02', ':purpose', 'buy-01'), ('buy-01', ':ARG0', 'h'), ('buy-01', ':ARG1', 'banana')]\n",
+      "[('find-01', ':ARG0', 'he'), ('find-01', ':ARG1', 'one'), ('one', ':ARG1-of', 'like-01'), ('like-01', ':ARG0', 'h')]\n",
+      "[('buy-01', ':ARG0', 'he'), ('buy-01', ':ARG1', 'banana')]\n",
+      "[('eat-01', ':ARG0', 'he'), ('eat-01', ':ARG1', 'it'), ('eat-01', ':time', 'way'), ('way', ':direction', 'home'), ('way', ':poss', 'h')]\n",
+      "[('day', ':time-of', 'open-01'), ('open-01', ':ARG1', 'phone'), ('phone', ':ARG1-of', 'new-01'), ('phone', ':location', '\"Apple\"')]\n",
+      "[('wait-01', ':ARG1', 'i'), ('i', ':part', 'hand'), ('wait-01', ':ARG2', 'line'), ('wait-01', ':duration', 'about'), ('about', ':op1', 'temporal-quantity'), ('temporal-quantity', ':quant', '4'), ('temporal-quantity', ':unit', 'hour'), ('wait-01', ':purpose', 'get-04'), ('get-04', ':ARG0', 'ii'), ('get-04', ':ARG1', 'one'), ('get-04', ':ARG2', 'h')]\n",
+      "[('go-01', ':ARG1', 'i'), ('go-01', ':ARG4', 'inside'), ('go-01', ':time', 'g'), ('go-01', ':ARG1', 'line'), ('go-01', ':direction', 'down'), ('go-01', ':time', 'final')]\n",
+      "[('get-05', ':ARG0', 'i'), ('get-05', ':ARG1', 'in-ones-hands-04'), ('in-ones-hands-04', ':ARG0', 'ii'), ('in-ones-hands-04', ':ARG1', 'phone'), ('phone', ':mod', 'pink')]\n",
+      "[('heaven', ':domain', 'it'), ('heaven', ':time', 'turn-on-12'), ('turn-on-12', ':ARG0', 'i'), ('turn-on-12', ':ARG1', 'ii')]\n",
+      "[('want-01', ':ARG0', '\"Kate\"'), ('want-01', ':ARG1', 'make-01'), ('make-01', ':ARG0', 'p'), ('make-01', ':ARG1', 'pie'), ('pie', ':mod', 'apple')]\n",
+      "[('contrast-01', ':ARG2', 'have-03'), ('have-03', ':polarity', '-'), ('have-03', ':ARG0', 'she'), ('have-03', ':ARG1', 'money'), ('have-03', ':purpose', 'buy-01'), ('buy-01', ':ARG0', 's'), ('buy-01', ':ARG1', 'apple')]\n",
+      "[('have-03', ':ARG0', 'she'), ('have-03', ':ARG1', 'idea'), ('idea', ':mod', 'great'), ('have-03', ':time', 'then')]\n",
+      "[('pick-01', ':ARG0', 'she'), ('pick-01', ':ARG1', 'apple'), ('pick-01', ':ARG2', 'tree'), ('tree', ':location', 'neighborhood'), ('neighborhood', ':poss', 's')]\n",
+      "[('make-01', ':ARG0', 'apple'), ('apple', ':ARG1-of', 'fresh-04'), ('make-01', ':ARG1', 'pie'), ('pie', ':ARG1-of', 'delicious-02')]\n",
+      "[('buy-01', ':ARG0', '\"Sara\"'), ('buy-01', ':ARG1', 'candies'), ('candies', ':mod', 'chocolate'), ('candies', ':ARG1-of', 'color-01'), ('candies', ':quant', 'pack')]\n",
+      "[('and', ':op1', 'open-01'), ('open-01', ':ARG0', 'she'), ('open-01', ':ARG1', 'pack'), ('and', ':op2', 'dump-01'), ('dump-01', ':ARG0', 's'), ('dump-01', ':ARG1', 'p'), ('dump-01', ':ARG2', 'table')]\n",
+      "[('sort-01', ':ARG0', 'she'), ('sort-01', ':ARG1', 'candy'), ('candy', ':mod', 'all'), ('sort-01', ':ARG2', 'color')]\n",
+      "[('put-01', ':ARG1', 'color'), ('color', ':ARG1-of', 'differ-02'), ('color', ':mod', 'each'), ('put-01', ':ARG2', 'bag'), ('bag', ':ARG1-of', 'separate-02')]\n",
+      "[('eat-01', ':ARG0', '\"Sara\"'), ('eat-01', ':ARG1', 'candies'), ('candies', ':ARG1-of', 'red-02'), ('eat-01', ':mod', 'only'), ('eat-01', ':time', 'day'), ('day', ':mod', 'that')]\n",
+      "[('bring-01', ':ARG0', 'i'), ('bring-01', ':ARG1', 'banana'), ('bring-01', ':ARG2', 'school'), ('bring-01', ':purpose', 'lunch'), ('bring-01', ':time', 'before'), ('before', ':op1', 'now'), ('before', ':quant', 'temporal-quantity'), ('temporal-quantity', ':quant', '3'), ('temporal-quantity', ':unit', 'day')]\n",
+      "[('forget-01', ':ARG0', 'i'), ('forget-01', ':ARG1', 'banana'), ('banana', ':location', 'locker'), ('locker', ':poss', 'ii')]\n",
+      "[('and', ':op1', 'go-02'), ('go-02', ':ARG0', 'i'), ('go-02', ':ARG4', 'get-01'), ('get-01', ':ARG0', 'ii'), ('get-01', ':ARG1', 'banana'), ('go-02', ':time', 'today'), ('and', ':op2', 'turn-02'), ('turn-02', ':ARG1', 'b'), ('turn-02', ':ARG2', 'black-05'), ('black-05', ':ARG1', 'b')]\n",
+      "[('throw-01', ':ARG0', 'i'), ('throw-01', ':ARG1', 'banana'), ('throw-01', ':ARG2', 'away')]\n",
+      "[('decide-01', ':ARG0', 'i'), ('decide-01', ':ARG1', 'leave-14'), ('leave-14', ':polarity', '-'), ('leave-14', ':ARG0', 'ii'), ('leave-14', ':ARG1', 'food'), ('leave-14', ':ARG2', 'locker'), ('locker', ':poss', 'ii'), ('leave-14', ':mod', 'again'), ('again', ':mod', 'ever')]\n",
+      "[('drive-01', ':ARG0', 'and'), ('and', ':op1', '\"Sally\"'), ('and', ':op2', 'i'), ('drive-01', ':destination', 'fair'), ('fair', ':ARG1-of', 'local-02')]\n",
+      "[('see-01', ':ARG0', 'we'), ('see-01', ':ARG1', 'sign'), ('sign', ':ARG0-of', 'invite-01'), ('invite-01', ':ARG1', 'public'), ('invite-01', ':ARG2', 'pick-01'), ('pick-01', ':ARG0', 'p'), ('pick-01', ':ARG1', 'apple'), ('see-01', ':time', 'way'), ('way', ':poss', 'w')]\n",
+      "[('discuss-01', ':ARG0', 'i'), ('discuss-01', ':ARG1', 'fun-01'), ('fun-01', ':ARG0', 'pick-01'), ('pick-01', ':ARG0', 'we'), ('pick-01', ':ARG1', 'apple'), ('apple', ':poss', 'w'), ('fun-01', ':ARG1-of', 'possible-01'), ('discuss-01', ':ARG2', '\"Sally\"')]\n",
+      "[('decide-01', ':ARG0', 'and'), ('and', ':op1', '\"Sally\"'), ('and', ':op2', 'i'), ('decide-01', ':ARG1', 'pick-01'), ('pick-01', ':ARG0', 'a'), ('pick-01', ':ARG1', 'apple')]\n",
+      "[('and', ':op1', 'fun-01'), ('fun-01', ':ARG0', 'we'), ('fun-01', ':ARG1', 'pick-01'), ('pick-01', ':ARG0', 'w'), ('pick-01', ':ARG1', 'apple'), ('and', ':op2', 'break-up-08'), ('break-up-08', ':ARG0', 'p'), ('break-up-08', ':ARG1', 'drive-01'), ('drive-01', ':ARG0', 'w'), ('drive-01', ':destination', 'fair')]\n",
+      "[('buy-01', ':ARG0', '\"Janice\"'), ('buy-01', ':ARG1', 'banana')]\n",
+      "[('look-01', ':ARG0', 'she'), ('look-01', ':ARG1', 'they'), ('look-01', ':manner', 'through')]\n",
+      "[('and', ':op1', 'have-degree-91'), ('have-degree-91', ':ARG1', 'some'), ('have-degree-91', ':ARG2', 'green'), ('have-degree-91', ':ARG3', 'too'), ('and', ':op2', 'brown-02'), ('brown-02', ':ARG1', 'some'), ('brown-02', ':mod', 'almost')]\n",
+      "[('find-01', ':ARG0', 'she'), ('find-01', ':ARG1', 'bundle'), ('bundle', ':ARG1-of', 'perfect-02'), ('find-01', ':time', 'then')]\n",
+      "[('buy-01', ':ARG0', 'she'), ('buy-01', ':ARG1', 'banana'), ('buy-01', ':time', 'final')]\n",
+      "[('have-03', ':ARG0', '\"Mary\"'), ('have-03', ':ARG1', 'tree'), ('tree', ':consist-of', 'apple'), ('have-03', ':location', 'garden'), ('garden', ':poss', 'p')]\n",
+      "[('full-09', ':ARG1', 'tree'), ('full-09', ':ARG2', 'apple')]\n",
+      "[('climb-01', ':ARG0', '\"Mary\"'), ('climb-01', ':ARG1', 'tree'), ('climb-01', ':direction', 'up'), ('climb-01', ':purpose', 'pick-01'), ('pick-01', ':ARG0', 'p'), ('pick-01', ':ARG1', 'apple')]\n",
+      "[('fall-01', ':ARG1', 'she'), ('fall-01', ':ARG3', 'tree'), ('fall-01', ':direction', 'down')]\n",
+      "[('break-01', ':ARG0', '\"Mary\"'), ('\"Mary\"', ':part', 'leg'), ('break-01', ':ARG1', 'l'), ('break-01', ':time', 'fall-01'), ('fall-01', ':ARG1', 'p')]\n",
+      "[('go-02', ':ARG0', 'class'), ('class', ':poss', '\"Joe\"'), ('go-02', ':ARG4', 'orchard'), ('go-02', ':purpose', 'trip-03'), ('trip-03', ':ARG0', 'c'), ('trip-03', ':ARG1', 'o')]\n",
+      "[('fill-up-02', ':ARG0', 'and'), ('and', ':op1', 'he'), ('and', ':op2', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 'h'), ('have-rel-role-91', ':ARG2', 'friend'), ('fill-up-02', ':ARG1', 'bucket'), ('bucket', ':consist-of', 'apple')]\n",
+      "[('know-01', ':polarity', '-'), ('know-01', ':ARG0', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 'he'), ('have-rel-role-91', ':ARG2', 'mother'), ('know-01', ':ARG1', 'thing'), ('thing', ':ARG1-of', 'do-02'), ('do-02', ':ARG0', 'h2'), ('do-02', ':ARG2', 'they'), ('know-01', ':time', 'get-05'), ('get-05', ':ARG0', 'h2'), ('get-05', ':ARG1', 't2'), ('get-05', ':ARG2', 'home')]\n",
+      "[('have-03', ':ARG0', 'they'), ('have-03', ':ARG1', 'dessert'), ('dessert', ':mod', 'apple'), ('dessert', ':mod', 'kind'), ('kind', ':mod', 'all'), ('have-03', ':time', 'after'), ('after', ':op1', 'now'), ('after', ':duration', 'few'), ('few', ':op1', 'temporal-quantity'), ('temporal-quantity', ':quant', '1'), ('temporal-quantity', ':unit', 'week')]\n",
+      "[('and', ':op2', 'have-03'), ('have-03', ':ARG0', 'everyone'), ('have-03', ':ARG1', 'apple'), ('have-03', ':location', 'lunch'), ('lunch', ':poss', 'e'), ('have-03', ':frequency', 'rate-entity-91'), ('rate-entity-91', ':ARG3', 'temporal-quantity'), ('temporal-quantity', ':quant', '1'), ('temporal-quantity', ':unit', 'day'), ('have-03', ':duration', 'temporal-quantity'), ('temporal-quantity', ':quant', '1'), ('temporal-quantity', ':unit', 'month')]\n",
+      "[('fall-01', ':ARG1', 'orange'), ('fall-01', ':source', 'tree')]\n",
+      "[('hit-01', ':ARG0', 'it'), ('hit-01', ':ARG1', 'girl'), ('girl', ':part', 'head'), ('hit-01', ':ARG2', 'h2')]\n",
+      "[('look-01', ':ARG0', 'girl'), ('look-01', ':ARG1', 'tree'), ('look-01', ':direction', 'up')]\n",
+      "[('fall-01', ':ARG1', 'orange'), ('orange', ':mod', 'another'), ('fall-01', ':source', 'tree')]\n",
+      "[('break-01', ':ARG0', 'orange'), ('orange', ':mod', 'that'), ('break-01', ':ARG1', 'nose'), ('nose', ':part-of', 'she')]\n",
+      "[('need-01', ':ARG0', '\"Kevin\"'), ('need-01', ':ARG1', 'banana'), ('banana', ':quant', 'some')]\n",
+      "[('go-02', ':ARG0', 'he'), ('go-02', ':ARG4', 'store'), ('go-02', ':mod', 'too')]\n",
+      "[('get-01', ':ARG1', 'banana'), ('banana', ':quant', 'some')]\n",
+      "[('take-01', ':ARG0', 'he'), ('take-01', ':ARG1', 'they'), ('take-01', ':ARG4', 'home')]\n",
+      "[('enjoy-01', ':ARG0', 'he'), ('enjoy-01', ':quant', 'one')]\n"
+     ]
+    },
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "[('say-01', ':ARG0', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', '\"Kelly\"'), ('have-rel-role-91', ':ARG2', 'mom'), ('say-01', ':ARG1', 'get-01'), ('get-01', ':ARG0', 'p2'), ('get-01', ':ARG1', '\"Apple\"')]\n",
+      "[('think-01', ':polarity', '-'), ('think-01', ':ARG0', '\"Kelly\"'), ('think-01', ':ARG1', 'get-01'), ('get-01', ':ARG0', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 'p'), ('have-rel-role-91', ':ARG2', 'mom'), ('get-01', ':ARG1', 'phone'), ('get-01', ':ARG2', 'p'), ('think-01', ':time', 'yet')]\n",
+      "[('cause-01', ':ARG1', 'excite-01'), ('excite-01', ':ARG0', 'she'), ('excite-01', ':degree', 'beyond')]\n",
+      "[('come-01', ':ARG1', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 'she'), ('have-rel-role-91', ':ARG2', 'mom'), ('come-01', ':ARG4', 'home'), ('come-01', ':time', 'date-entity'), ('date-entity', ':dayperiod', 'night'), ('date-entity', ':mod', 'that'), ('come-01', ':accompanier', 'bag')]\n",
+      "[('fall-01', ':ARG1', 'face'), ('face', ':part-of', '\"Kelly\"'), ('fall-01', ':time', 'be-located-at-91'), ('be-located-at-91', ':ARG1', 'f2'), ('be-located-at-91', ':ARG2', 'piece'), ('piece', ':consist-of', 'fruit'), ('piece', ':ARG1-of', 'actual-02')]\n",
+      "[('want-01', ':ARG0', '\"Tom\"'), ('want-01', ':ARG1', 'apple'), ('apple', ':source', 'tree'), ('tree', ':mod', 'apple'), ('tree', ':poss', 'p')]\n",
+      "[('one', ':ARG1-of', 'beautiful-02'), ('one', ':location', 'top'), ('top', ':part-of', 'tree'), ('top', ':mod', 'right')]\n",
+      "[('contrast-01', ':ARG1', 'try-01'), ('try-01', ':ARG0', 'he'), ('try-01', ':ARG1', 'climb-01'), ('climb-01', ':ARG0', 'h'), ('climb-01', ':ARG1', 'tree'), ('contrast-01', ':ARG2', 'possible-01'), ('possible-01', ':polarity', '-'), ('possible-01', ':ARG1', 'reach-01'), ('reach-01', ':ARG0', 'h'), ('reach-01', ':ARG1', 'apple')]\n",
+      "[('find-01', ':ARG0', 'he'), ('find-01', ':ARG1', 'stick'), ('stick', ':ARG1-of', 'long-03'), ('stick', ':ARG1-of', 'knock-down-05'), ('knock-down-05', ':ARG0', 'h'), ('knock-down-05', ':ARG1', 'it'), ('knock-down-05', ':time', 'use-03')]\n",
+      "[('and', ':op1', 'fall-01'), ('fall-01', ':ARG1', 'apple'), ('and', ':op2', 'hit-01'), ('hit-01', ':ARG1', 'he'), ('he', ':part', 'head'), ('hit-01', ':ARG2', 'h3')]\n",
+      "[('boy', ':ARG0-of', 'pack-01'), ('pack-01', ':ARG1', 'lunch'), ('lunch', ':poss', 'b')]\n",
+      "[('tell-01', ':ARG0', 'he'), ('tell-01', ':ARG1', 'get-01'), ('get-01', ':ARG0', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 'h'), ('have-rel-role-91', ':ARG2', 'mom'), ('get-01', ':ARG1', 'fruit'), ('fruit', ':quant', 'some'), ('tell-01', ':ARG2', 'p')]\n",
+      "[('ask-01', ':ARG0', 'she'), ('ask-01', ':ARG1', 'truth-value'), ('truth-value', ':polarity-of', 'want-01'), ('want-01', ':ARG0', 'he'), ('want-01', ':ARG1', 'fruit'), ('fruit', ':quant', 'some')]\n",
+      "[('and', ':op1', 'pick-up-04'), ('pick-up-04', ':ARG0', 'she'), ('pick-up-04', ':ARG1', 'fruit'), ('fruit', ':quant', 'some'), ('and', ':op2', 'give-01'), ('give-01', ':ARG0', 's'), ('give-01', ':ARG1', 'f'), ('give-01', ':ARG2', 'he')]\n",
+      "[('happy-01', ':ARG0', 'pick-up-04'), ('pick-up-04', ':ARG0', 'she'), ('pick-up-04', ':ARG1', 'banana'), ('banana', ':quant', 'some'), ('happy-01', ':ARG1', 'he')]\n",
+      "[('make-01', ':ARG0', 'date-entity'), ('date-entity', ':month', '6'), ('make-01', ':ARG1', 'cake')]\n",
+      "[('forget-01', ':ARG0', 'she'), ('forget-01', ':ARG1', 'buy-01'), ('buy-01', ':ARG0', 's'), ('buy-01', ':ARG1', 'sugar')]\n",
+      "[('have-03', ':polarity', '-'), ('have-03', ':ARG0', 'she'), ('have-03', ':ARG1', 'any'), ('have-03', ':location', 'home')]\n",
+      "[('use-01', ':ARG0', 'she'), ('use-01', ':ARG1', 'appleauce'), ('use-01', ':ARG1-of', 'instead-of-91')]\n",
+      "[('turn-out-11', ':ARG1', 'it'), ('turn-out-11', ':ARG2', 'wonderful-03')]\n",
+      "[('drink-01', ':ARG0', '\"Tom\"'), ('drink-01', ':ARG1', 'juice'), ('juice', ':source', 'apple')]\n",
+      "[('contrast-01', ':ARG2', 'spill-01'), ('spill-01', ':ARG1', 'it'), ('spill-01', ':ARG2', 'shirt'), ('shirt', ':poss', 'he'), ('spill-01', ':mod', 'all-over')]\n",
+      "[('obligate-01', ':ARG1', 'he'), ('obligate-01', ':ARG2', 'go-02'), ('go-02', ':ARG0', 'h'), ('go-02', ':ARG4', 'school')]\n",
+      "[('contrast-01', ':ARG2', 'have-03'), ('have-03', ':polarity', '-'), ('have-03', ':ARG0', 'he'), ('have-03', ':ARG1', 'shirt'), ('shirt', ':mod', 'other'), ('shirt', ':ARG1-of', 'wear-01'), ('wear-01', ':ARG0', 'h2')]\n",
+      "[('choose-01', ':polarity', '-'), ('choose-01', ':ARG0', 'he'), ('choose-01', ':ARG1', 'wear-01'), ('wear-01', ':ARG0', 'h'), ('wear-01', ':ARG1', 'dress'), ('dress', ':poss', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 'h'), ('have-rel-role-91', ':ARG2', 'sister')]\n",
+      "[('put-01', ':ARG0', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG2', 'mom'), ('put-01', ':ARG1', 'baby'), ('put-01', ':ARG2', 'chair'), ('chair', ':ARG1-of', 'high-02')]\n",
+      "[('give-01', ':ARG0', 'she'), ('give-01', ':ARG1', 'banana'), ('give-01', ':ARG2', 'baby')]\n",
+      "[('smash-01', ':ARG0', 'baby'), ('smash-01', ':ARG1', 'banana')]\n",
+      "[('put-01', ':ARG0', 'baby'), ('put-01', ':ARG1', 'banana'), ('banana', ':ARG1-of', 'smash-01'), ('put-01', ':ARG2', 'mouth'), ('mouth', ':part-of', 'b')]\n",
+      "[('wipe-01', ':ARG0', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG2', 'mom'), ('wipe-01', ':ARG1', 'mouth'), ('mouth', ':part-of', 'baby')]\n",
+      "[('want-01', ':ARG0', '\"Anna\"'), ('want-01', ':ARG1', 'fruit')]\n",
+      "[('contrast-01', ':ARG2', 'have-03'), ('have-03', ':ARG0', 'she'), ('have-03', ':ARG1', 'none'), ('have-03', ':location', 'house'), ('house', ':poss', 's')]\n",
+      "[('go-02', ':ARG0', 'she'), ('go-02', ':ARG4', 'backyard'), ('go-02', ':direction', 'out')]\n",
+      "[('pull-01', ':ARG0', 'she'), ('pull-01', ':ARG1', 'banana'), ('banana', ':quant', 'few'), ('pull-01', ':ARG2', 'tree'), ('pull-01', ':location', 'there')]\n",
+      "[('and', ':op1', 'go-02'), ('go-02', ':ARG0', 'she'), ('go-02', ':ARG4', 'inside'), ('and', ':op2', 'eat-01'), ('eat-01', ':ARG0', 's'), ('eat-01', ':ARG1', 'fruit'), ('fruit', ':poss', 's'), ('and', ':time', 'then')]\n",
+      "[('want-01', ':ARG0', '\"Elen\"'), ('want-01', ':ARG1', 'cookie'), ('cookie', ':mod', 'another'), ('want-01', ':ARG1-of', 'real-04')]\n",
+      "[('tell-01', ':ARG0', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 'she'), ('have-rel-role-91', ':ARG2', 'mother'), ('tell-01', ':ARG1', 'no'), ('tell-01', ':ARG2', 's')]\n",
+      "[('obligate-01', ':ARG1', '\"Elen\"'), ('obligate-01', ':ARG2', 'do-02'), ('do-02', ':ARG0', 'p'), ('do-02', ':ARG1', 'reach-01'), ('reach-01', ':ARG0', 'p'), ('reach-01', ':ARG1', 'jar'), ('jar', ':consist-of', 'cookie'), ('obligate-01', ':mod', 'all')]\n",
+      "[('look-01', ':polarity', '-'), ('look-01', ':ARG0', 'she'), ('look-01', ':time', 'l'), ('look-01', ':ARG0', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 's'), ('have-rel-role-91', ':ARG2', 'mom')]\n",
+      "[('pull-01', ':ARG0', 'she'), ('she', ':part', 'face'), ('she', ':part', 'f'), ('pull-01', ':ARG1', 'apple'), ('pull-01', ':ARG2', 'out'), ('pull-01', ':source', 'jar'), ('pull-01', ':manner', 'frown-01'), ('frown-01', ':ARG0', 's'), ('frown-01', ':location', 'f')]\n",
+      "[('and', ':op1', 'hunger-01'), ('hunger-01', ':ARG0', 'i'), ('and', ':op2', 'want-01'), ('want-01', ':ARG0', 'ii'), ('want-01', ':ARG1', 'orange'), ('orange', ':quant', 'some')]\n",
+      "[('and', ':op1', 'leave-11'), ('leave-11', ':ARG0', 'i'), ('leave-11', ':ARG1', 'house'), ('house', ':poss', 'ii'), ('and', ':op2', 'walk-01'), ('walk-01', ':ARG0', 'ii'), ('walk-01', ':ARG4', 'store'), ('store', ':mod', 'fruit')]\n",
+      "[('see-01', ':ARG0', 'i'), ('see-01', ':ARG1', 'orange'), ('orange', ':quant', 'some'), ('orange', ':ARG1-of', 'sell-01'), ('see-01', ':location', 'store')]\n",
+      "[('pick-out-05', ':ARG0', 'i'), ('pick-out-05', ':ARG1', 'orange'), ('orange', ':ARG1-of', 'like-01'), ('like-01', ':ARG0', 'ii')]\n",
+      "[('and', ':op1', 'pay-01'), ('pay-01', ':ARG0', 'i'), ('pay-01', ':ARG3', 'orange'), ('and', ':op2', 'go-02'), ('go-02', ':ARG0', 'ii'), ('go-02', ':ARG4', 'home')]\n",
+      "[('plant-01', ':ARG0', '\"Lary\"'), ('plant-01', ':ARG1', 'tree'), ('tree', ':mod', 'lemon')]\n",
+      "[('think-01', ':ARG0', '\"Lary\"'), ('think-01', ':ARG1', 'small'), ('small', ':domain', 'tree')]\n",
+      "[('grow-01', ':ARG1', 'tree'), ('grow-01', ':ARG4', 'have-degree-91'), ('have-degree-91', ':ARG1', 't'), ('have-degree-91', ':ARG2', 'tall'), ('have-degree-91', ':ARG3', 'more-than'), ('more-than', ':op1', 'distance-quantity'), ('distance-quantity', ':quant', '20'), ('distance-quantity', ':unit', 'foot')]\n",
+      "[('have-03', ':ARG0', '\"Lary\"'), ('have-03', ':ARG1', 'lemon'), ('lemon', ':ARG1-of', 'have-quant-91'), ('have-quant-91', ':ARG3', 'more'), ('have-quant-91', ':ARG4', 'lemon'), ('lemon', ':ARG1-of', 'use-01'), ('use-01', ':ARG0', 'p'), ('use-01', ':ARG1-of', 'possible-01')]\n",
+      "[('give-out-03', ':ARG0', '\"Lary\"'), ('give-out-03', ':ARG1', 'lemon'), ('give-out-03', ':ARG2', 'everybody'), ('everybody', ':location', 'town'), ('give-out-03', ':time', 'now')]\n"
+     ]
+    },
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "[('bake-01', ':ARG0', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 'i'), ('have-rel-role-91', ':ARG2', 'mother'), ('bake-01', ':ARG1', 'cake'), ('cake', ':mod', 'chocolate')]\n",
+      "[('take-01', ':ARG0', 'she'), ('take-01', ':ARG1', 'it'), ('take-01', ':ARG2', 'out-06'), ('out-06', ':ARG1', 'ii'), ('out-06', ':ARG2', 'oven'), ('take-01', ':time', 'be-done-08'), ('be-done-08', ':ARG1', 'ii')]\n",
+      "[('leave-14', ':ARG0', 'she'), ('leave-14', ':ARG1', 'it'), ('leave-14', ':ARG2', 'alone'), ('leave-14', ':location', 'kitchen'), ('leave-14', ':purpose', 'cool-01'), ('cool-01', ':ARG1', 'ii')]\n",
+      "[('footprint', ':location', 'it'), ('footprint', ':time', 'get-05'), ('get-05', ':ARG1', 'she'), ('get-05', ':ARG2', 'back')]\n",
+      "[('step-01', ':mode', 'expressive'), ('step-01', ':ARG0', 'cat'), ('cat', ':poss', 'i'), ('step-01', ':ARG1', 'cake')]\n",
+      "[('love-01', ':ARG0', '\"Martha\"'), ('love-01', ':ARG1', 'bake-01'), ('bake-01', ':ARG0', 'p'), ('bake-01', ':ARG1', 'cookie')]\n",
+      "[('make-01', ':ARG0', 'she'), ('make-01', ':ARG1', 'dough'), ('dough', ':mod', 'cookie'), ('dough', ':mod', 'chip'), ('chip', ':mod', 'chocolate'), ('make-01', ':quant', 'batch')]\n",
+      "[('and', ':op1', 'roll-01'), ('roll-01', ':ARG0', 'she'), ('roll-01', ':ARG1', 'dough'), ('roll-01', ':ARG2', 'ball'), ('and', ':op2', 'put-01'), ('put-01', ':ARG0', 's'), ('put-01', ':ARG1', 'b'), ('put-01', ':ARG2', 'in'), ('put-01', ':purpose', 'bake-01'), ('bake-01', ':ARG0', 's'), ('bake-01', ':ARG1', 'b')]\n",
+      "[('fill-01', ':ARG0', 'scent'), ('scent', ':consist-of', 'cookie'), ('fill-01', ':ARG1', 'house'), ('fill-01', ':time', 'after'), ('after', ':op1', 'temporal-quantity'), ('temporal-quantity', ':quant', '20'), ('temporal-quantity', ':unit', 'minute')]\n",
+      "[('bake-01', ':ARG1', 'cookie'), ('bake-01', ':ARG1-of', 'perfect-02')]\n",
+      "[('spend-02', ':ARG0', '\"Bonnie\"'), ('spend-02', ':ARG1', 'multiple'), ('multiple', ':op1', 'temporal-quantity'), ('temporal-quantity', ':quant', '1'), ('temporal-quantity', ':unit', 'hour'), ('spend-02', ':ARG2', 'set-up-03'), ('set-up-03', ':ARG0', 'p'), ('set-up-03', ':ARG1', 'party'), ('party', ':mod', 'tea'), ('party', ':poss', 'p')]\n",
+      "[('put-01', ':ARG0', 'she'), ('put-01', ':ARG1', 'animal'), ('animal', ':ARG1-of', 'stuff-01'), ('animal', ':poss', 's'), ('put-01', ':ARG2', 'table')]\n",
+      "[('put-01', ':ARG0', 'she'), ('put-01', ':ARG1', 'tray'), ('tray', ':consist-of', 'cookie'), ('put-01', ':ARG2', 'down'), ('put-01', ':time', 'then'), ('put-01', ':purpose', 'make-01'), ('make-01', ':ARG0', 's'), ('make-01', ':ARG1', 'tea')]\n",
+      "[('go-01', ':ARG1', 'cookie'), ('cookie', ':mod', 'all'), ('go-01', ':time', 'get-back-10'), ('get-back-10', ':ARG0', 'she')]\n",
+      "[('see-01', ':ARG0', 'she'), ('see-01', ':ARG1', 'stuff-01'), ('stuff-01', ':ARG0', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 's2'), ('have-rel-role-91', ':ARG2', 'brother'), ('stuff-01', ':ARG1', 'cookie'), ('stuff-01', ':ARG2', 'mouth'), ('mouth', ':part-of', 'p'), ('see-01', ':path', 'window')]\n",
+      "[('ensure-01', ':ARG0', '\"George\"'), ('ensure-01', ':ARG1', 'be-located-at-91'), ('be-located-at-91', ':ARG1', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 'p'), ('have-rel-role-91', ':ARG2', 'kid'), ('be-located-at-91', ':ARG2', 'bed'), ('ensure-01', ':time', 'before'), ('before', ':op1', 'go-02'), ('go-02', ':ARG0', 'p'), ('go-02', ':ARG4', 'downstairs')]\n",
+      "[('see-01', ':ARG0', 'he'), ('see-01', ':ARG1', 'cookie'), ('cookie', ':mod', 'sugar'), ('cookie', ':ARG1-of', 'delicious-02'), ('see-01', ':time', 'get-05'), ('get-05', ':ARG1', 'h'), ('get-05', ':ARG2', 'table'), ('table', ':location', 'downstairs')]\n",
+      "[('and', ':op1', 'look-01'), ('look-01', ':ARG0', '\"George\"'), ('look-01', ':ARG1', 'around'), ('and', ':op2', 'bite-01'), ('bite-01', ':ARG0', 'p'), ('bite-01', ':ARG1', 'dessert'), ('dessert', ':mod', 'tasty')]\n",
+      "[('and', ':op1', 'delicacy'), ('delicacy', ':domain', 'cookie'), ('and', ':op2', 'eat-01'), ('eat-01', ':ARG0', 'he'), ('eat-01', ':ARG1', 'cookie'), ('cookie', ':ARG1-of', 'include-91'), ('include-91', ':ARG2', 'cookie'), ('cookie', ':mod', 'every'), ('cookie', ':ARG1-of', 'single-02')]\n",
+      "[('drink-01', ':ARG0', 'he'), ('drink-01', ':ARG1', 'milk'), ('milk', ':location', 'there'), ('milk', ':mod', 'as-well'), ('drink-01', ':time', 'after')]\n",
+      "[('person', ':mod', 'bake-01'), ('person', ':mod', 'great'), ('person', ':domain', '\"Willie\"')]\n",
+      "[('make-01', ':ARG0', 'he'), ('make-01', ':ARG1', 'and'), ('and', ':op1', 'cake'), ('and', ':op2', 'pastry'), ('and', ':op3', 'danish'), ('make-01', ':ARG1-of', 'have-degree-91'), ('have-degree-91', ':ARG2', 'good-02'), ('good-02', ':ARG1', 'm'), ('have-degree-91', ':ARG3', 'more'), ('have-degree-91', ':ARG4', 'anyone')]\n",
+      "[('contrast-01', ':ARG1', 'decide-01'), ('decide-01', ':ARG0', 'he'), ('decide-01', ':ARG1', 'need-01'), ('need-01', ':ARG0', 'h'), ('need-01', ':ARG1', 'bakery'), ('decide-01', ':time', 'day'), ('day', ':mod', 'one'), ('contrast-01', ':ARG2', 'know-01'), ('know-01', ':polarity', '-'), ('know-01', ':ARG0', 'h'), ('know-01', ':ARG1', 'thing'), ('thing', ':manner-of', 'make-01'), ('make-01', ':ARG0', 'h'), ('make-01', ':ARG1', 'b')]\n",
+      "[('find-01', ':ARG0', 'he'), ('find-01', ':ARG1', 'differ-02'), ('differ-02', ':polarity', '-'), ('differ-02', ':ARG1', 'it'), ('differ-02', ':ARG2', 'bake-01'), ('differ-02', ':degree', 'that'), ('find-01', ':ARG1-of', 'cause-01'), ('cause-01', ':ARG0', 'learn-01'), ('learn-01', ':ARG0', 'h'), ('learn-01', ':ARG1', 'ii')]\n",
+      "[('and', ':op2', 'bakery'), ('bakery', ':mod', 'cute'), ('bakery', ':mod', 'little'), ('bakery', ':ARG1-of', 'shape-01'), ('shape-01', ':ARG2', 'cake'), ('and', ':time', 'now')]\n",
+      "[('buy-01', ':ARG0', '\"Chris\"'), ('buy-01', ':ARG1', 'jar'), ('jar', ':mod', 'cookie'), ('jar', ':ARG1-of', 'new-01')]\n",
+      "[('place-01', ':ARG0', 'he'), ('place-01', ':ARG1', 'cookie'), ('cookie', ':mod', 'sort'), ('sort', ':mod', 'all'), ('place-01', ':ARG2', 'jar')]\n",
+      "[('and', ':op1', 'get-03'), ('get-03', ':ARG1', 'he'), ('get-03', ':ARG2', 'hunger-01'), ('hunger-01', ':ARG0', 'h'), ('and', ':op2', 'decide-01'), ('decide-01', ':ARG0', 'h'), ('decide-01', ':ARG1', 'grab-01'), ('grab-01', ':ARG0', 'h'), ('grab-01', ':ARG1', 'cookie'), ('cookie', ':quant', 'some')]\n",
+      "[('and', ':op1', 'stick-01'), ('stick-01', ':ARG1', 'cookie'), ('stick-01', ':ARG2', 'together'), ('and', ':op2', 'stick-01'), ('stick-01', ':ARG1', 'c'), ('stick-01', ':ARG2', 'jar')]\n",
+      "[('obligate-01', ':ARG1', '\"Chris\"'), ('obligate-01', ':ARG2', 'and'), ('and', ':op1', 'return-02'), ('return-02', ':ARG0', 'p'), ('return-02', ':ARG1', 'jar'), ('and', ':op2', 'find-01'), ('find-01', ':ARG0', 'p'), ('find-01', ':ARG1', 'one'), ('one', ':ARG1-of', 'new-01')]\n",
+      "[('like-01', ':ARG0', '\"Anne\"'), ('like-01', ':ARG1', 'bake-01'), ('bake-01', ':ARG0', 'p')]\n",
+      "[('buy-01', ':ARG0', 'she'), ('buy-01', ':ARG1', 'pan'), ('pan', ':purpose', 'bake-01'), ('bake-01', ':ARG1', 'pie'), ('pan', ':ARG1-of', 'new-01')]\n",
+      "[('plan-01', ':ARG0', 'she'), ('plan-01', ':ARG1', 'use-01'), ('use-01', ':ARG0', 's'), ('use-01', ':ARG1', 'it'), ('use-01', ':frequency', 'lot'), ('use-01', ':time', 'date-entity'), ('date-entity', ':season', 'fall'), ('date-entity', ':mod', 'this')]\n",
+      "[('possible-01', ':polarity', '-'), ('possible-01', ':ARG1', 'find-01'), ('find-01', ':ARG0', 'she'), ('find-01', ':ARG1', 'it'), ('possible-01', ':time', 'time'), ('time', ':time-of', 'test-out-02'), ('test-out-02', ':ARG0', 's'), ('test-out-02', ':ARG1', 'ii')]\n",
+      "[('and', ':op1', 'take-01'), ('take-01', ':ARG0', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 'she'), ('have-rel-role-91', ':ARG2', 'son'), ('take-01', ':ARG1', 'it'), ('and', ':op2', 'use-01'), ('use-01', ':ARG0', 'p'), ('use-01', ':ARG1', 'ii'), ('use-01', ':location', 'sandbox')]\n",
+      "[('give-01', ':ARG0', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', '\"Lucy\"'), ('have-rel-role-91', ':ARG2', 'grandpa'), ('give-01', ':ARG1', 'oven'), ('oven', ':mod', 'bake-01'), ('bake-01', ':ARG1-of', 'easy-05'), ('give-01', ':ARG2', 'p2')]\n",
+      "[('and', ':op1', 'open-01'), ('open-01', ':ARG0', '\"Lucy\"'), ('open-01', ':ARG1', 'box'), ('and', ':op2', 'see-01'), ('see-01', ':ARG0', 'p'), ('see-01', ':ARG1', 'packet'), ('packet', ':mod', 'treat'), ('packet', ':mod', 'little'), ('packet', ':mod', 'all')]\n",
+      "[('and', ':op1', 'mix-01'), ('mix-01', ':ARG0', 'she'), ('mix-01', ':ARG1', 'cake'), ('and', ':op2', 'slide-01'), ('slide-01', ':ARG0', 's'), ('slide-01', ':ARG1', 'c'), ('slide-01', ':ARG2', 'oven')]\n",
+      "[('have-03', ':polarity', '-'), ('have-03', ':ARG0', '\"Lucy\"'), ('have-03', ':ARG1', 'idea'), ('idea', ':topic', 'take-10'), ('take-10', ':ARG0', 'cook-01'), ('cook-01', ':ARG1', 'cake'), ('cook-01', ':ARG2', 'bulb'), ('bulb', ':mod', 'light'), ('take-10', ':ARG1', 'long-03'), ('long-03', ':ARG1', 'c'), ('long-03', ':degree', 'so')]\n",
+      "[('share-01', ':ARG0', 'and'), ('and', ':op1', 'she'), ('and', ':op2', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 's2'), ('have-rel-role-91', ':ARG2', 'grandpa'), ('share-01', ':ARG1', 'cake'), ('cake', ':ARG1-of', 'cook-01'), ('cook-01', ':ARG0', 's2'), ('share-01', ':time', 'final'), ('share-01', ':time', 'after'), ('after', ':quant', 'temporal-quantity'), ('temporal-quantity', ':quant', '90'), ('temporal-quantity', ':unit', 'minute')]\n",
+      "[('make-01', ':ARG0', '\"Mary\"'), ('make-01', ':ARG1', 'and'), ('and', ':op1', 'pie'), ('pie', ':beneficiary', 'family'), ('family', ':poss', 'p'), ('and', ':op2', 'pie'), ('pie', ':beneficiary', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 'p'), ('have-rel-role-91', ':ARG2', 'neighbor')]\n",
+      "[('put-01', ':ARG0', 'she'), ('put-01', ':ARG1', 'pie'), ('put-01', ':ARG2', 'sill'), ('sill', ':mod', 'window'), ('put-01', ':time', 'after'), ('after', ':op1', 'do-02'), ('do-02', ':ARG1', 'p2')]\n",
+      "[('contrast-01', ':ARG1', 'bring-01'), ('bring-01', ':ARG0', 'she'), ('bring-01', ':ARG1', 'they'), ('bring-01', ':time', 'after'), ('after', ':op1', 'cool-01'), ('cool-01', ':ARG1', 't'), ('contrast-01', ':ARG2', 'notice-01'), ('notice-01', ':mode', 'imperative'), ('notice-01', ':ARG0', 'you'), ('notice-01', ':ARG1', 'have-03'), ('have-03', ':ARG0', 'one'), ('have-03', ':ARG1', 'bite'), ('have-03', ':location', 'it')]\n",
+      "[('and', ':op1', 'look-01'), ('look-01', ':ARG0', 'she'), ('look-01', ':ARG1', 'around'), ('and', ':op2', 'possible-01'), ('possible-01', ':polarity', '-'), ('possible-01', ':ARG1', 'find-01'), ('find-01', ':ARG0', 's'), ('find-01', ':ARG1', 'person'), ('person', ':ARG0-of', 'eat-01'), ('eat-01', ':ARG1', 'it')]\n",
+      "[('and', ':op1', 'notice-01'), ('notice-01', ':ARG0', 'she'), ('notice-01', ':ARG1', 'lick-01'), ('lick-01', ':ARG0', 'cat'), ('cat', ':part', 'paw'), ('lick-01', ':ARG1', 'p'), ('notice-01', ':time', 'then'), ('and', ':op2', 'laugh-01'), ('laugh-01', ':ARG0', 's')]\n",
+      "[('amr-unknown', ':domain', 'this')]\n",
+      "[('possible-01', ':ARG1', 'see-01'), ('see-01', ':ARG0', '\"Cathy\"'), ('see-01', ':ARG1', 'trail'), ('trail', ':consist-of', 'crumb'), ('crumb', ':consist-of', 'cookie'), ('trail', ':ARG0-of', 'lead-01'), ('lead-01', ':ARG2', 'out-06'), ('out-06', ':ARG2', 'kitchen')]\n",
+      "[('decide-01', ':ARG0', 'she'), ('decide-01', ':ARG1', 'investigate-01'), ('investigate-01', ':ARG0', 's')]\n",
+      "[('go-01', ':ARG1', 'crumb'), ('go-01', ':ARG4', 'and'), ('and', ':op1', 'down-03'), ('down-03', ':ARG1', 'hallway'), ('and', ':op2', 'into'), ('into', ':op1', 'bedroom'), ('bedroom', ':mod', 'back')]\n",
+      "[('find-01', ':ARG0', 'she'), ('find-01', ':ARG1', 'munch-01'), ('munch-01', ':ARG0', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 's'), ('have-rel-role-91', ':ARG2', 'niece'), ('munch-01', ':ARG1', 'oreo'), ('oreo', ':quant', 'handful'), ('handful', ':mod', 'huge'), ('munch-01', ':manner', 'happy-01'), ('find-01', ':location', 'there')]\n",
+      "[('bake-01', ':ARG0', 'and'), ('and', ':op1', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 'i'), ('have-rel-role-91', ':ARG2', 'son'), ('and', ':op2', 'ii'), ('bake-01', ':ARG1', 'cookie'), ('bake-01', ':frequency', 'often')]\n",
+      "[('notice-01', ':ARG0', 'i'), ('notice-01', ':ARG1', 'short-06'), ('short-06', ':ARG1', 'we'), ('short-06', ':ARG2', 'egg'), ('egg', ':quant', '1'), ('notice-01', ':time', 'middle'), ('middle', ':op1', 'recipe'), ('notice-01', ':time', 'day'), ('day', ':mod', 'one')]\n",
+      "[('suggest-01', ':ARG0', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 'i'), ('have-rel-role-91', ':ARG2', 'son'), ('suggest-01', ':ARG1', 'ask-02'), ('ask-02', ':ARG0', 'p'), ('ask-02', ':ARG1', 'egg'), ('ask-02', ':ARG2', 'neighbor')]\n",
+      "[('and', ':op1', 'go-02'), ('go-02', ':ARG0', 'he'), ('go-02', ':ARG4', 'door'), ('door', ':mod', 'next'), ('and', ':op2', 'get-01'), ('get-01', ':ARG0', 'h'), ('get-01', ':ARG1', 'egg')]\n",
+      "[('possible-01', ':ARG1', 'finish-01'), ('finish-01', ':ARG0', 'we'), ('finish-01', ':ARG1', 'make-01'), ('make-01', ':ARG0', 'w'), ('make-01', ':ARG1', 'cookie'), ('possible-01', ':ARG1-of', 'cause-01'), ('cause-01', ':ARG0', 'generous-01'), ('generous-01', ':ARG0', 'she')]\n",
+      "[('want-01', ':ARG0', '\"Harry\"'), ('want-01', ':ARG1', 'bake-01'), ('bake-01', ':ARG0', 'p'), ('bake-01', ':ARG1', 'cookie'), ('bake-01', ':location', 'home')]\n",
+      "[('let-01', ':polarity', '-'), ('let-01', ':ARG0', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 'he'), ('have-rel-role-91', ':ARG2', 'wife'), ('let-01', ':ARG1', 'h2'), ('let-01', ':ARG1-of', 'cause-01'), ('cause-01', ':ARG0', 'mess')]\n",
+      "[('promise-01', ':ARG0', 'he'), ('promise-01', ':ARG1', 'clean-up-02'), ('clean-up-02', ':ARG0', 'h'), ('promise-01', ':condition', 'change-01'), ('change-01', ':ARG0', 'she'), ('change-01', ':ARG1', 'mind-05'), ('mind-05', ':ARG0', 's')]\n",
+      "[('and', ':op1', 'give-01'), ('give-01', ':ARG0', 'she'), ('give-01', ':ARG1', 'chance-02'), ('chance-02', ':quant', '1'), ('give-01', ':ARG2', 'he'), ('and', ':op2', 'begin-01'), ('begin-01', ':ARG0', 'h'), ('begin-01', ':ARG1', 'bake-01'), ('bake-01', ':ARG0', 'h'), ('begin-01', ':ARG1-of', 'excite-01')]\n",
+      "[('contrast-01', ':ARG1', 'messy'), ('messy', ':domain', 'it'), ('messy', ':mod', 'still'), ('messy', ':time', 'be-done-08'), ('be-done-08', ':ARG0', 'he'), ('contrast-01', ':ARG2', 'know-01'), ('know-01', ':ARG0', 'she'), ('know-01', ':ARG1', 'try-01'), ('try-01', ':ARG0', 'h')]\n"
+     ]
+    },
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "[('take-out-11', ':ARG0', 'class'), ('take-out-11', ':ARG1', 'snack'), ('snack', ':poss', 'c'), ('take-out-11', ':purpose', 'time'), ('time', ':mod', 's')]\n",
+      "[('and', ':op1', 'bring-01'), ('bring-01', ':ARG0', '\"Lucy\"'), ('bring-01', ':ARG1', 'pack'), ('pack', ':mod', 'large'), ('pack', ':consist-of', 'cookie'), ('and', ':op2', 'start-01'), ('start-01', ':ARG0', 'p'), ('start-01', ':ARG1', 'eat-01'), ('eat-01', ':ARG0', 'p'), ('eat-01', ':ARG1', 'p2')]\n",
+      "[('contrast-01', ':ARG2', 'leave-14'), ('leave-14', ':ARG0', 'she'), ('leave-14', ':ARG1', 'crumbs'), ('crumbs', ':quant', 'several'), ('leave-14', ':ARG2', 'ground')]\n",
+      "[('and', ':op1', 'come-01'), ('come-01', ':ARG1', 'person'), ('person', ':ARG0-of', 'teach-01'), ('teach-01', ':ARG1', 'she'), ('come-01', ':ARG4', 's'), ('come-01', ':ARG1-of', 'close-10'), ('close-10', ':ARG2', 's'), ('and', ':op2', 'take-01'), ('take-01', ':ARG0', 'p'), ('take-01', ':ARG1', 'pack'), ('pack', ':consist-of', 'cookie')]\n",
+      "[('tell-01', ':ARG0', 'she'), ('tell-01', ':ARG1', 'clean-up-02'), ('clean-up-02', ':ARG0', '\"Lucy\"'), ('clean-up-02', ':condition', 'possible-01'), ('possible-01', ':polarity', '-'), ('possible-01', ':ARG1', 'eat-01'), ('eat-01', ':ARG0', 'p'), ('tell-01', ':ARG2', 'p')]\n",
+      "[('and', ':op1', 'leave-11'), ('leave-11', ':ARG0', '\"Bob\"'), ('leave-11', ':ARG1', 'bedroom'), ('bedroom', ':poss', 'p'), ('and', ':op2', 'greet-01'), ('greet-01', ':ARG0', 'smell'), ('smell', ':ARG1-of', 'familiarize-01'), ('greet-01', ':ARG1', 'p')]\n",
+      "[('walk-01', ':ARG0', 'he'), ('walk-01', ':ARG1', 'hallway'), ('walk-01', ':direction', 'down'), ('walk-01', ':manner', 'follow-01'), ('follow-01', ':ARG0', 'h'), ('follow-01', ':ARG1', 'scent')]\n",
+      "[('come-01', ':ARG1', 'smell'), ('come-01', ':ARG3', 'kitchen')]\n",
+      "[('pull-01', ':ARG0', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG2', 'grandmother'), ('pull-01', ':ARG1', 'tray'), ('tray', ':ARG1-of', 'hot-05'), ('pull-01', ':ARG2', 'out-06'), ('out-06', ':ARG1', 't'), ('out-06', ':ARG2', 'stove'), ('pull-01', ':time', 'just')]\n",
+      "[('make-01', ':ARG0', 'she'), ('make-01', ':ARG1', 'biscuit'), ('biscuit', ':ARG1-of', 'have-degree-91'), ('have-degree-91', ':ARG2', 'good-02'), ('good-02', ':ARG1', 'b'), ('have-degree-91', ':ARG3', 'most')]\n",
+      "[('gather-01', ':ARG0', '\"MaryJane\"'), ('gather-01', ':ARG1', 'ingredient'), ('ingredient', ':mod', 'all'), ('gather-01', ':location', 'counter')]\n",
+      "[('follow-02', ':ARG0', 'she'), ('follow-02', ':ARG1', 'recipe'), ('follow-02', ':manner', 'step-by-step')]\n",
+      "[('and', ':op1', 'slide-01'), ('slide-01', ':ARG0', 'she'), ('slide-01', ':ARG1', 'pan'), ('pan', ':ord', 'ordinal-entity'), ('ordinal-entity', ':value', '1'), ('slide-01', ':ARG2', 'oven'), ('and', ':op2', 'wait-01'), ('wait-01', ':ARG1', 's2')]\n",
+      "[('pull-01', ':ARG0', 'she'), ('pull-01', ':ARG1', 'good-02'), ('good-02', ':ARG1-of', 'bake-01'), ('pull-01', ':ARG2', 'out-06'), ('out-06', ':ARG1', 'g'), ('out-06', ':ARG2', 'oven'), ('pull-01', ':time', 'go-off-16'), ('go-off-16', ':ARG1', 'timer')]\n",
+      "[('serve-01', ':ARG0', 'she'), ('serve-01', ':ARG1', 'cookie'), ('cookie', ':ARG1-of', 'bake-01'), ('bake-01', ':ARG1-of', 'fresh-04'), ('serve-01', ':ARG2', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 's2'), ('have-rel-role-91', ':ARG2', 'friend'), ('serve-01', ':time', 'lunch')]\n",
+      "[('make-01', ':ARG0', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 'i'), ('have-rel-role-91', ':ARG2', 'mom'), ('make-01', ':ARG1', 'cookie'), ('make-01', ':ARG2', 'ii')]\n",
+      "[('get-05', ':ARG0', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG2', 'mom'), ('get-05', ':ARG1', 'flour'), ('get-05', ':direction', 'down')]\n",
+      "[('and', ':op1', 'bowl'), ('bowl', ':mod', 'big'), ('and', ':op2', 'sugar'), ('and', ':time', 'next')]\n",
+      "[('say-01', ':ARG0', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 'i'), ('have-rel-role-91', ':ARG2', 'mom'), ('say-01', ':ARG1', 'possible-01'), ('possible-01', ':ARG1', 'help-01'), ('help-01', ':ARG0', 'ii')]\n",
+      "[('awesome-02', ':ARG1', 'cookie')]\n",
+      "[('go-02', ':ARG0', 'i'), ('go-02', ':ARG4', 'room'), ('room', ':poss', '\"Lucy\"')]\n",
+      "[('have-04', ':ARG0', 'she'), ('have-04', ':ARG1', 'set-out-05'), ('set-out-05', ':ARG1', 'tea'), ('tea', ':poss', 's'), ('set-out-05', ':ARG2', 'table'), ('table', ':poss', 's')]\n",
+      "[('seat-01', ':ARG1', 'animal'), ('animal', ':mod', 'all'), ('animal', ':poss', 'she'), ('seat-01', ':ARG2', 'table')]\n",
+      "[('serve-01', ':ARG0', 'she'), ('serve-01', ':ARG1', 'and'), ('and', ':op1', 'tea'), ('and', ':op2', 'cookie'), ('serve-01', ':ARG2', 'they')]\n",
+      "[('party-01', ':mod', 'tea'), ('party-01', ':mod', 'great'), ('party-01', ':domain', 'it')]\n",
+      "[('decide-01', ':ARG0', 'i'), ('decide-01', ':ARG1', 'try-01'), ('try-01', ':ARG0', 'ii'), ('try-01', ':ARG1', 'bake-01'), ('bake-01', ':ARG0', 'ii'), ('bake-01', ':ARG1', 'roll'), ('roll', ':consist-of', 'jelly'), ('bake-01', ':purpose', 'holiday')]\n",
+      "[('and', ':op1', 'use-01'), ('use-01', ':ARG0', 'i'), ('use-01', ':ARG1', 'and'), ('and', ':op1', 'flour'), ('and', ':op2', 'sugar'), ('and', ':op2', 'follow-02'), ('follow-02', ':ARG0', 'ii'), ('follow-02', ':ARG1', 'recipe')]\n",
+      "[('fill-01', ':ARG0', 'i'), ('fill-01', ':ARG1', 'dough'), ('fill-01', ':ARG2', 'and'), ('and', ':op1', 'jelly'), ('and', ':op2', 'cream')]\n",
+      "[('bake-01', ':ARG0', 'i'), ('bake-01', ':ARG1', 'they'), ('bake-01', ':duration', 'temporal-quantity'), ('temporal-quantity', ':quant', '30'), ('temporal-quantity', ':unit', 'minute')]\n",
+      "[('eat-01', ':ARG0', 'i'), ('eat-01', ':ARG1', 'roll'), ('roll', ':quant', '3'), ('roll', ':consist-of', 'jelly'), ('eat-01', ':ARG1-of', 'cause-01'), ('cause-01', ':ARG0', 'delicious'), ('delicious', ':domain', 'r'), ('delicious', ':degree', 'so')]\n",
+      "[('make-01', ':ARG0', '\"Sally\"'), ('make-01', ':ARG1', 'biscuit'), ('make-01', ':time', 'early'), ('early', ':op1', 'date-entity'), ('date-entity', ':dayperiod', 'morning')]\n",
+      "[('end-up-03', ':ARG1', 'she'), ('end-up-03', ':ARG2', 'make-01'), ('make-01', ':ARG0', 's'), ('make-01', ':ARG1', 'meal'), ('meal', ':quant', 'multiple'), ('multiple', ':op1', '3'), ('multiple', ':op2', '12'), ('make-01', ':time', 'after'), ('after', ':op1', 'day')]\n",
+      "[('sit-01', ':ARG0', 'she'), ('sit-01', ':ARG1', 'they'), ('sit-01', ':ARG2', 'table'), ('sit-01', ':purpose', 'cool-01'), ('cool-01', ':ARG0', 's2'), ('cool-01', ':ARG1', 't')]\n",
+      "[('go-02', ':ARG0', 'she'), ('go-02', ':ARG4', 'away'), ('go-02', ':duration', 'bit')]\n",
+      "[('end-up-03', ':ARG1', 'dog'), ('dog', ':poss', 'she'), ('end-up-03', ':ARG2', 'eat-01'), ('eat-01', ':ARG0', 'd'), ('eat-01', ':ARG1', 'biscuit'), ('biscuit', ':poss', 's'), ('biscuit', ':mod', 'all')]\n",
+      "[('want-01', ':ARG0', '\"Martha\"'), ('want-01', ':ARG1', 'bake-01'), ('bake-01', ':ARG0', 'p'), ('bake-01', ':ARG1-of', 'good-02'), ('want-01', ':time', 'always')]\n",
+      "[('and', ':op1', 'watch-01'), ('watch-01', ':ARG0', 'she'), ('watch-01', ':ARG1', 'show-04'), ('show-04', ':ARG1', 'bake-01'), ('bake-01', ':ARG1', 'bread'), ('show-04', ':medium', 'television'), ('and', ':op2', 'try-01'), ('try-01', ':ARG0', 's'), ('try-01', ':ARG1', 'b'), ('try-01', ':mod', 'by-oneself')]\n",
+      "[('end-up-03', ':ARG1', 'she'), ('end-up-03', ':ARG2', 'bake-01'), ('bake-01', ':ARG0', 's'), ('bake-01', ':ARG1', 'bread'), ('bread', ':quant', '1'), ('bread', ':poss', 's'), ('end-up-03', ':time', 'after'), ('after', ':quant', 'temporal-quantity'), ('temporal-quantity', ':quant', '1'), ('temporal-quantity', ':unit', 'week')]\n",
+      "[('end-up-03', ':ARG1', 'loaf'), ('end-up-03', ':ARG2', 'come-out-09'), ('come-out-09', ':ARG1', 'l'), ('come-out-09', ':ARG2', 'burn-01'), ('burn-01', ':ARG1', 'l')]\n",
+      "[('and', ':op1', 'yell-01'), ('yell-01', ':ARG0', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 'she'), ('have-rel-role-91', ':ARG2', 'mom'), ('yell-01', ':ARG2', 's'), ('and', ':op2', 'tell-01'), ('tell-01', ':ARG0', 'p'), ('tell-01', ':ARG1', 'bake-01'), ('bake-01', ':polarity', '-'), ('bake-01', ':ARG0', 's'), ('bake-01', ':ARG1', 'bread'), ('bake-01', ':time', 'ever'), ('bake-01', ':mod', 'again'), ('tell-01', ':ARG2', 's')]\n",
+      "[('begin-01', ':ARG1', 'rise-01'), ('rise-01', ':ARG1', 'cookie'), ('rise-01', ':location', 'oven')]\n",
+      "[('smell-01', ':ARG1', 'they'), ('smell-01', ':ARG2', 'cinnamon'), ('smell-01', ':mod', 'heavenly')]\n",
+      "[('think-01', ':ARG0', 'she'), ('think-01', ':ARG1', 'look-02'), ('look-02', ':ARG0', 'they'), ('look-02', ':ARG1', 'have-degree-91'), ('have-degree-91', ':ARG1', 't2'), ('have-degree-91', ':ARG2', 'big'), ('have-degree-91', ':ARG3', 'too'), ('too', ':quant', 'little')]\n",
+      "[('and', ':op1', 'pull-01'), ('pull-01', ':ARG0', 'she'), ('pull-01', ':ARG1', 'they'), ('pull-01', ':ARG2', 'out'), ('and', ':op2', 'laugh-01'), ('laugh-01', ':ARG0', 's'), ('laugh-01', ':ARG1', 'huge'), ('huge', ':degree-of', 't')]\n",
+      "[('use-01', ':ARG0', 'she'), ('use-01', ':ARG1', 'soda'), ('soda', ':purpose', 'bake-01'), ('soda', ':ARG1-of', 'have-quant-91'), ('have-quant-91', ':ARG2', 'much'), ('have-quant-91', ':ARG3', 'too')]\n",
+      "[('contrast-01', ':ARG1', 'want-01'), ('want-01', ':ARG0', '\"Marlene\"'), ('want-01', ':ARG1', 'make-01'), ('make-01', ':ARG0', 'p'), ('make-01', ':ARG1', 'cookie'), ('contrast-01', ':ARG2', 'know-01'), ('know-01', ':polarity', '-'), ('know-01', ':ARG0', 'p'), ('know-01', ':ARG1', 'thing'), ('thing', ':manner-of', 'm')]\n",
+      "[('ask-02', ':ARG0', 'she'), ('ask-02', ':ARG1', 'show-01'), ('show-01', ':ARG0', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 's'), ('have-rel-role-91', ':ARG2', 'mom'), ('show-01', ':ARG2', 's'), ('ask-02', ':ARG2', 'p')]\n",
+      "[('and', ':op1', 'get-05'), ('get-05', ':ARG0', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', '\"Marlene\"'), ('have-rel-role-91', ':ARG2', 'mom'), ('get-05', ':ARG1', 'dough'), ('dough', ':mod', 'cookie'), ('get-05', ':ARG2', 'out'), ('and', ':op2', 'heat-01'), ('heat-01', ':ARG0', 'p'), ('heat-01', ':ARG1', 'oven')]\n",
+      "[('help-01', ':ARG0', 'she'), ('help-01', ':ARG1', 'and'), ('and', ':op1', 'form-01'), ('form-01', ':ARG0', '\"Marlene\"'), ('form-01', ':ARG1', 'dough'), ('form-01', ':ARG2', 'ball'), ('and', ':op2', 'put-01'), ('put-01', ':ARG0', 'p'), ('put-01', ':ARG1', 'b'), ('put-01', ':ARG2', 'tray'), ('help-01', ':ARG2', 'p')]\n",
+      "[('have-degree-91', ':ARG1', 'cookie'), ('have-degree-91', ':ARG2', 'delectable'), ('have-degree-91', ':ARG3', 'so'), ('have-degree-91', ':time', 'come-out-09'), ('come-out-09', ':ARG1', 'c'), ('come-out-09', ':ARG2', 'oven'), ('come-out-09', ':ARG1-of', 'hot-05')]\n"
+     ]
+    },
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "[('come-01', ':ARG1', '\"Lily\"'), ('come-01', ':ARG3', 'work-01'), ('work-01', ':ARG0', 'p'), ('come-01', ':ARG4', 'home')]\n",
+      "[('smell-01', ':ARG0', 'she'), ('smell-01', ':ARG1', 'something'), ('something', ':ARG1-of', 'good-02'), ('smell-01', ':time', 'walk-01'), ('walk-01', ':ARG0', 's2'), ('walk-01', ':location', 'house')]\n",
+      "[('cookie', ':ARG1-of', 'bake-01'), ('bake-01', ':ARG1-of', 'fresh-04'), ('cookie', ':domain', 'it')]\n",
+      "[('happy-01', ':ARG1', '\"Lily\"'), ('happy-01', ':degree', 'so')]\n",
+      "[('and', ':op1', 'go-02'), ('go-02', ':ARG0', 'she'), ('go-02', ':ARG4', 'kitchen'), ('and', ':op2', 'eat-01'), ('eat-01', ':ARG0', 's'), ('eat-01', ':ARG1', 'they'), ('they', ':quant', 'many')]\n",
+      "[('love-01', ':ARG0', '\"Mandy\"'), ('love-01', ':ARG1', 'cookie')]\n",
+      "[('decide-01', ':ARG0', 'she'), ('decide-01', ':ARG1', 'make-01'), ('make-01', ':ARG0', 's'), ('make-01', ':ARG1', 'batch'), ('batch', ':mod', 'big'), ('batch', ':consist-of', 'they')]\n",
+      "[('and', ':op1', 'mix-up-02'), ('mix-up-02', ':ARG0', 'she'), ('mix-up-02', ':ARG1', 'they'), ('and', ':op2', 'put-01'), ('put-01', ':ARG0', 's'), ('put-01', ':ARG1', 't'), ('put-01', ':ARG2', 'sheet'), ('sheet', ':consist-of', 'cookie')]\n",
+      "[('excite-01', ':ARG0', 'come-out-09'), ('come-out-09', ':ARG1', 'they'), ('come-out-09', ':ARG3', 'oven'), ('excite-01', ':ARG1', 'she')]\n",
+      "[('great', ':domain', 'cookie'), ('cookie', ':mod', 'this')]\n",
+      "[('bake-01', ':ARG0', '\"Suzy\"'), ('bake-01', ':ARG1', 'cookie'), ('cookie', ':quant', 'some')]\n",
+      "[('they', ':beneficiary', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 'she'), ('have-rel-role-91', ':ARG2', 'neighbor')]\n",
+      "[('contrast-01', ':ARG2', 'forget-01'), ('forget-01', ':ARG0', 'she'), ('forget-01', ':ARG1', 'they')]\n",
+      "[('leave-14', ':ARG0', 'she'), ('leave-14', ':ARG1', 'they'), ('leave-14', ':ARG1-of', 'long-03'), ('long-03', ':ARG2-of', 'have-degree-91'), ('have-degree-91', ':ARG1', 'l'), ('have-degree-91', ':ARG3', 'too')]\n",
+      "[('cause-01', ':ARG1', 'come-out-09'), ('come-out-09', ':ARG1', 'they'), ('come-out-09', ':ARG2', 'burn-01'), ('burn-01', ':ARG1', 't')]\n",
+      "[('make-01', ':ARG0', '\"Nala\"'), ('make-01', ':ARG1', 'cake'), ('cake', ':mod', 'birthday')]\n",
+      "[('look-02', ':ARG0', 'it'), ('look-02', ':ARG1', 'great'), ('look-02', ':time', 'put-01'), ('put-01', ':ARG0', 'she'), ('put-01', ':ARG1', 'ii'), ('put-01', ':ARG2', 'oven')]\n",
+      "[('contrast-01', ':ARG2', 'forget-01'), ('forget-01', ':ARG0', 'she'), ('forget-01', ':ARG1', 'it'), ('forget-01', ':time', 'then')]\n",
+      "[('burn-01', ':ARG1', 'it'), ('burn-01', ':time', 'pull-out-05'), ('pull-out-05', ':ARG0', 'she'), ('pull-out-05', ':ARG1', 'ii')]\n",
+      "[('anger-01', ':ARG0', '\"Nala\"'), ('anger-01', ':ARG1', 'p')]\n",
+      "[('want-01', ':ARG0', '\"Mike\"'), ('want-01', ':ARG1', 'bake-01'), ('bake-01', ':ARG0', 'p'), ('bake-01', ':ARG1', 'cookie'), ('bake-01', ':ARG2', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 'p'), ('have-rel-role-91', ':ARG2', 'friend')]\n",
+      "[('and', ':op1', 'put-01'), ('put-01', ':ARG0', 'he'), ('put-01', ':ARG1', 'oven'), ('put-01', ':ARG2', 'temperature-quantity'), ('temperature-quantity', ':quant', '350'), ('temperature-quantity', ':scale', 'celsius'), ('and', ':op2', 'begin-01'), ('begin-01', ':ARG0', 'h'), ('begin-01', ':ARG1', 'make-01'), ('make-01', ':ARG0', 'h'), ('make-01', ':ARG1', 'dough')]\n",
+      "[('and', ':op1', 'perfect-02'), ('perfect-02', ':ARG1', 'dough'), ('and', ':op2', 'make-01'), ('make-01', ':ARG0', 'he'), ('make-01', ':ARG1', 'd'), ('make-01', ':ARG2', 'shape')]\n",
+      "[('forget-01', ':ARG0', '\"Mike\"'), ('forget-01', ':ARG1', 'set-02'), ('set-02', ':ARG0', 'p'), ('set-02', ':ARG1', 'timer'), ('set-02', ':time', 'put-01'), ('put-01', ':ARG0', 'p'), ('put-01', ':ARG1', 'they'), ('put-01', ':ARG2', 'oven')]\n",
+      "[('run-02', ':ARG0', 'he'), ('run-02', ':purpose', 'pull-out-02'), ('pull-out-02', ':ARG0', 'h'), ('pull-out-02', ':ARG1', 'cookie'), ('cookie', ':poss', 'h'), ('cookie', ':ARG1-of', 'burn-01'), ('run-02', ':time', 'after'), ('after', ':quant', 'temporal-quantity'), ('temporal-quantity', ':quant', '40'), ('temporal-quantity', ':unit', 'minute')]\n",
+      "[('possible-01', ':ARG1', 'hit-02'), ('hit-02', ':ARG0', '\"Babe Ruth\"'), ('hit-02', ':ARG1', 'homer'), ('homer', ':ARG1-of', 'have-quant-91'), ('have-quant-91', ':ARG3', 'more'), ('have-quant-91', ':ARG4', 'anyone')]\n",
+      "[('win-01', ':ARG0', '\"Homers\"'), ('win-01', ':ARG1', 'game')]\n",
+      "[('join-01', ':ARG0', 'he'), ('join-01', ':ARG1', '\"Yankees\"')]\n",
+      "[('hit-01', ':ARG0', 'he'), ('hit-01', ':mod', 'still'), ('hit-01', ':ARG1-of', 'have-quant-91'), ('have-quant-91', ':ARG3', 'more'), ('have-quant-91', ':ARG4', 'anybody')]\n",
+      "[('win-01', ':ARG0', '\"Yankees\"'), ('win-01', ':ARG1', 'game'), ('game', ':quant', 'more')]\n",
+      "[('decide-01', ':ARG0', '\"Kelli\"'), ('decide-01', ':ARG1', 'try-01'), ('try-01', ':ARG0', 'p'), ('try-01', ':ARG1', 'cookie'), ('cookie', ':mod', 'bacon'), ('cookie', ':ARG1-of', 'sell-01'), ('sell-01', ':location', 'store')]\n",
+      "[('full-09', ':ARG1', 'store'), ('full-09', ':ARG2', 'they')]\n",
+      "[('and', ':op1', 'pay-01'), ('pay-01', ':ARG0', 'she'), ('pay-01', ':ARG3', 'money'), ('and', ':op2', 'take-01'), ('take-01', ':ARG0', 's'), ('take-01', ':ARG1', 'they'), ('take-01', ':ARG4', 'home')]\n",
+      "[('taste-01', ':ARG0', 'they'), ('taste-01', ':ARG1', 'disgust-01'), ('taste-01', ':time', 'and'), ('and', ':op1', 'go-02'), ('go-02', ':ARG0', 'she'), ('and', ':op2', 'taste-01'), ('taste-01', ':ARG0', 's'), ('taste-01', ':ARG1', 't2')]\n",
+      "[('know-01', ':ARG0', 'she'), ('know-01', ':ARG1', 'thing'), ('thing', ':ARG0-of', 'cause-01'), ('cause-01', ':ARG1', 'sell-01'), ('sell-01', ':ARG1', 'they'), ('sell-01', ':mod', 'in-the-first-place'), ('know-01', ':time', 'now')]\n",
+      "[('grow-03', ':ARG0', '\"Karen\"'), ('grow-03', ':ARG1', 'vegetable'), ('vegetable', ':poss', 'p'), ('grow-03', ':location', 'garden'), ('garden', ':poss', 'p')]\n",
+      "[('contrast-01', ':ARG1', 'want-01'), ('want-01', ':ARG0', 'she'), ('want-01', ':ARG1', 'sell-01'), ('sell-01', ':ARG0', 's'), ('sell-01', ':ARG1', 'they'), ('contrast-01', ':ARG2', 'want-01'), ('want-01', ':polarity', '-'), ('want-01', ':ARG0', 'nobody'), ('want-01', ':ARG1', 'vegetable'), ('vegetable', ':mod', 'plain')]\n",
+      "[('decide-01', ':ARG0', 'she'), ('decide-01', ':ARG1', 'try-01'), ('try-01', ':ARG0', 's'), ('try-01', ':ARG1', 'sell-01'), ('sell-01', ':ARG0', 's'), ('sell-01', ':ARG1', 'colelaw'), ('sell-01', ':ARG2', 'neighbor'), ('neighbor', ':poss', 's')]\n",
+      "[('buy-up-04', ':ARG0', 'they'), ('buy-up-04', ':ARG1', 'it'), ('buy-up-04', ':time', 'instant')]\n",
+      "[('and', ':op1', 'expand-01'), ('expand-01', ':ARG0', '\"Karen\"'), ('expand-01', ':ARG1', 'garden'), ('garden', ':poss', 'p'), ('and', ':op2', 'sell-01'), ('sell-01', ':ARG0', 'p'), ('sell-01', ':ARG1', 'colelaw'), ('sell-01', ':time', 'now'), ('sell-01', ':manner', 'full-time')]\n",
+      "[('let-01', ':ARG0', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG2', 'dad'), ('let-01', ':ARG1', 'plant-01'), ('plant-01', ':ARG0', 'i'), ('plant-01', ':ARG1', 'flower'), ('let-01', ':ARG2', 'ii')]\n",
+      "[('grow-01', ':ARG1', 'it'), ('grow-01', ':ARG1-of', 'quick-02'), ('quick-02', ':degree', 'very')]\n",
+      "[('ensure-01', ':ARG0', 'i'), ('ensure-01', ':ARG1', 'water-01'), ('water-01', ':ARG0', 'ii'), ('water-01', ':ARG1', 'it'), ('water-01', ':frequency', 'rate-entity-91'), ('rate-entity-91', ':ARG3', 'temporal-quantity'), ('temporal-quantity', ':quant', '1'), ('temporal-quantity', ':unit', 'day')]\n",
+      "[('bunch', ':quant-of', 'they'), ('bunch', ':time', 'now')]\n",
+      "[('say-01', ':ARG0', 'he'), ('say-01', ':ARG1', 'have-03'), ('have-03', ':ARG0', 'i'), ('have-03', ':ARG1', 'thumb'), ('thumb', ':mod', 'green')]\n",
+      "[('tradition', ':domain', 'and'), ('and', ':op1', '\"Mary\"'), ('and', ':op2', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 'p'), ('have-rel-role-91', ':ARG2', 'mother')]\n",
+      "[('grow-03', ':ARG0', 'they'), ('grow-03', ':ARG1', 'tomato'), ('grow-03', ':location', 'garden'), ('garden', ':poss', 't'), ('grow-03', ':frequency', 'rate-entity-91'), ('rate-entity-91', ':ARG3', 'temporal-quantity'), ('temporal-quantity', ':quant', '1'), ('temporal-quantity', ':unit', 'year')]\n",
+      "[('and', ':op1', 'gather-01'), ('gather-01', ':ARG0', 'they'), ('gather-01', ':ARG1', 'tomato'), ('and', ':op2', 'can-01'), ('can-01', ':ARG0', 't'), ('can-01', ':ARG1', 't2'), ('and', ':time', 'end-01'), ('end-01', ':ARG1', 'season'), ('season', ':mod', 'each')]\n",
+      "[('harvest-01', ':ARG1', 'tomato'), ('harvest-01', ':mod', 'large'), ('large', ':mod', 'especially'), ('harvest-01', ':time', 'year'), ('year', ':mod', 'this')]\n",
+      "[('have-03', ':ARG0', 'they'), ('have-03', ':ARG1', 'time'), ('time', ':mod', 'great'), ('have-03', ':time', 'attempt-01'), ('attempt-01', ':ARG0', 't'), ('attempt-01', ':ARG1', 'can-01'), ('can-01', ':ARG0', 't'), ('can-01', ':ARG1', 'tomato'), ('tomato', ':mod', 'all'), ('tomato', ':ARG1-of', 'grow-03'), ('grow-03', ':ARG0', 't')]\n",
+      "[('go-02', ':ARG0', 'i'), ('go-02', ':ARG1', 'field'), ('go-02', ':ARG4', 'nursery'), ('go-02', ':time', 'child'), ('child', ':mod', 'small'), ('child', ':domain', 'ii')]\n",
+      "[('give-01', ':ARG0', 'they'), ('give-01', ':ARG1', 'tomato'), ('tomato', ':ARG1-of', 'grow-03'), ('grow-03', ':ARG0', 't'), ('grow-03', ':location', 'there'), ('there', ':mod', 'right'), ('give-01', ':ARG2', 'we'), ('we', ':mod', 'each')]\n",
+      "[('set-01', ':ARG0', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 'i'), ('have-rel-role-91', ':ARG2', 'mother'), ('set-01', ':ARG1', 'it'), ('set-01', ':ARG2', 'aside'), ('set-01', ':purpose', 'use-01'), ('use-01', ':ARG1', 'ii2'), ('use-01', ':ARG2', 'dinner'), ('dinner', ':poss', 'we')]\n",
+      "[('miss-01', ':ARG1', 'chunk'), ('chunk', ':mod', 'huge'), ('miss-01', ':time', 'come-01'), ('come-01', ':ARG1', 'she'), ('come-01', ':ARG4', 'back'), ('come-01', ':purpose', 'it')]\n",
+      "[('help-01', ':ARG0', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 'i'), ('have-rel-role-91', ':ARG2', 'brother'), ('person', ':mod', 'toddler'), ('toddler', ':ARG0-of', 'love-01'), ('love-01', ':ARG1', 'tomato'), ('help-01', ':ARG1', 'p'), ('help-01', ':ARG2', 'it')]\n"
+     ]
+    },
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "[('dig-01', ':ARG0', '\"Helen\"'), ('dig-01', ':ARG1', 'dirt')]\n",
+      "[('harvest-01', ':ARG0', 'she'), ('harvest-01', ':ARG1', 'potato')]\n",
+      "[('and', ':op1', 'pull-01'), ('pull-01', ':ARG0', 'she'), ('pull-01', ':ARG1', 'they'), ('pull-01', ':direction', 'out'), ('and', ':op2', 'put-01'), ('put-01', ':ARG0', 's'), ('put-01', ':ARG1', 't'), ('put-01', ':ARG2', 'basket')]\n",
+      "[('plan-01', ':ARG0', 'she'), ('plan-01', ':ARG1', 'make-01'), ('make-01', ':ARG0', 's'), ('make-01', ':ARG1', 'batch'), ('batch', ':mod', 'huge'), ('batch', ':consist-of', 'potato'), ('potato', ':ARG1-of', 'mash-01')]\n",
+      "[('delicious', ':domain', 'it')]\n",
+      "[('decide-01', ':ARG0', '\"Sarah\"'), ('decide-01', ':ARG1', 'plant-01'), ('plant-01', ':ARG0', 'p'), ('plant-01', ':ARG1', 'garden')]\n",
+      "[('go-02', ':ARG0', 'she'), ('go-02', ':ARG4', 'store'), ('go-02', ':purpose', 'buy-01'), ('buy-01', ':ARG0', 's'), ('buy-01', ':ARG1', 'seed'), ('seed', ':quant', 'some')]\n",
+      "[('get-05', ':ARG1', 'she'), ('get-05', ':ARG2', 'home'), ('get-05', ':accompanier', 'and'), ('and', ':op1', 'seed'), ('and', ':op2', 'pot'), ('and', ':quant', 'many')]\n",
+      "[('spend-02', ':ARG0', 'she'), ('spend-02', ':ARG1', 'rest'), ('rest', ':part-of', 'day'), ('spend-02', ':ARG2', 'start-01'), ('start-01', ':ARG0', 's2'), ('start-01', ':ARG1', 'garden'), ('garden', ':poss', 's2')]\n",
+      "[('and', ':op1', 'grow-01'), ('grow-01', ':ARG1', 'garden'), ('and', ':op2', 'produce-01'), ('produce-01', ':ARG0', 'g2'), ('produce-01', ':ARG1', 'vegetable'), ('vegetable', ':quant', 'numerous'), ('and', ':time', 'eventual')]\n",
+      "[('go-02', ':ARG0', 'i'), ('go-02', ':ARG1', 'pick-01'), ('pick-01', ':ARG0', 'ii'), ('pick-01', ':ARG1', 'flower'), ('go-02', ':time', 'yesterday')]\n",
+      "[('and', ':op1', 'have-03'), ('have-03', ':ARG0', 'i'), ('have-03', ':ARG1', 'garden'), ('garden', ':ARG1-of', 'nice-01'), ('have-03', ':location', 'yard'), ('yard', ':poss', 'ii'), ('and', ':op2', 'go-02'), ('go-02', ':ARG0', 'ii'), ('go-02', ':ARG1', 'pick-01'), ('pick-01', ':ARG0', 'ii'), ('pick-01', ':ARG1', 'g')]\n",
+      "[('pick-01', ':ARG0', 'i'), ('pick-01', ':ARG1', 'and'), ('and', ':op1', 'tulip'), ('and', ':op2', 'rose')]\n",
+      "[('put-01', ':ARG0', 'i'), ('put-01', ':ARG1', 'it'), ('put-01', ':ARG2', 'vase'), ('put-01', ':time', 'be-done-08'), ('be-done-08', ':ARG0', 'ii')]\n",
+      "[('compliment-01', ':ARG1', 'i'), ('compliment-01', ':ARG2', 'flower'), ('compliment-01', ':ARG1-of', 'have-quant-91'), ('have-quant-91', ':ARG2', 'many'), ('have-quant-91', ':ARG3', 'so')]\n",
+      "[('love-01', ':ARG0', '\"Amy\"'), ('love-01', ':ARG1', 'tomato')]\n",
+      "[('love-01', ':ARG0', 'she'), ('love-01', ':ARG1', 'they'), ('love-01', ':ARG1-of', 'have-degree-91'), ('have-degree-91', ':ARG2', 'much'), ('have-degree-91', ':ARG3', 'so'), ('have-degree-91', ':ARG6', 'decide-01'), ('decide-01', ':ARG0', 's'), ('decide-01', ':ARG1', 'grow-03'), ('grow-03', ':ARG0', 's'), ('grow-03', ':ARG1', 'tomato')]\n",
+      "[('and', ':op1', 'buy-01'), ('buy-01', ':ARG0', 'she'), ('buy-01', ':ARG1', 'plant'), ('plant', ':mod', 'tomato'), ('and', ':op2', 'put-01'), ('put-01', ':ARG0', 's'), ('put-01', ':ARG1', 'p'), ('put-01', ':ARG2', 'out'), ('put-01', ':location', 'porch'), ('porch', ':poss', 's'), ('porch', ':mod', 'front')]\n",
+      "[('beat-down-05', ':ARG0', 'sun'), ('beat-down-05', ':ARG1', 'plant'), ('plant', ':mod', 'tomato'), ('beat-down-05', ':frequency', 'rate-entity-91'), ('rate-entity-91', ':ARG4', 'temporal-quantity'), ('temporal-quantity', ':quant', '1'), ('temporal-quantity', ':unit', 'day')]\n",
+      "[('die-01', ':ARG1', 'plant'), ('plant', ':mod', 'tomato'), ('die-01', ':time', 'after'), ('after', ':op1', 'few'), ('few', ':op1', 'temporal-quantity'), ('temporal-quantity', ':quant', '1'), ('temporal-quantity', ':unit', 'day'), ('few', ':mod', 'only'), ('die-01', ':ARG1-of', 'cause-01'), ('cause-01', ':ARG0', 'sun')]\n",
+      "[('person', ':ARG0-of', 'hunt-01'), ('person', ':domain', '\"Wald\"'), ('\"Wald\"', ':ARG0-of', 'neighbor-01'), ('neighbor-01', ':ARG1', 'we')]\n",
+      "[('live-01', ':ARG0', 'we'), ('we', ':mod', 'all'), ('live-01', ':location', 'city')]\n",
+      "[('walk-01', ':ARG0', 'we'), ('walk-01', ':ARG1', 'grass'), ('grass', ':ARG1-of', 'near-02'), ('near-02', ':ARG2', 'building'), ('building', ':poss', 'w2'), ('walk-01', ':time', 'day'), ('day', ':mod', 'one')]\n",
+      "[('pull-up-02', ':ARG0', '\"Wald\"'), ('pull-up-02', ':ARG1', 'grass'), ('grass', ':ARG1-of', 'think-01'), ('think-01', ':ARG0', 'we')]\n",
+      "[('amaze-01', ':ARG0', 'onion'), ('onion', ':mod', 'wild'), ('onion', ':domain', 'they'), ('amaze-01', ':ARG1', 'we')]\n",
+      "[('love-01', ':ARG0', '\"Joe\"'), ('love-01', ':ARG1', 'plant')]\n",
+      "[('cause-01', ':ARG1', 'buy-01'), ('buy-01', ':ARG0', 'he'), ('buy-01', ':ARG1', 'and'), ('and', ':op1', 'seed'), ('and', ':op2', 'soil'), ('and', ':op3', 'pot'), ('and', ':quant', 'some'), ('buy-01', ':ARG2', 'h')]\n",
+      "[('plant-01', ':ARG0', 'he'), ('plant-01', ':ARG1', 'seed'), ('seed', ':poss', 'h'), ('plant-01', ':ARG2', 'pot'), ('pot', ':ARG1-of', 'full-09'), ('full-09', ':ARG2', 'soil')]\n",
+      "[('water-01', ':ARG0', 'he'), ('water-01', ':ARG1', 'plant'), ('water-01', ':frequency', 'rate-entity-91'), ('rate-entity-91', ':ARG3', 'temporal-quantity'), ('temporal-quantity', ':quant', '1'), ('temporal-quantity', ':unit', 'day')]\n",
+      "[('grow-01', ':ARG1', 'it'), ('grow-01', ':ARG4', 'plant'), ('plant', ':mod', 'big'), ('grow-01', ':duration', 'temporal-quantity'), ('temporal-quantity', ':quant', '1'), ('temporal-quantity', ':unit', 'month')]\n",
+      "[('want-01', ':ARG0', '\"Su\"'), ('want-01', ':ARG1', 'grow-03'), ('grow-03', ':ARG0', 'p'), ('grow-03', ':ARG1', 'onion')]\n",
+      "[('plant-01', ':ARG0', 'she'), ('plant-01', ':ARG1', 'seed'), ('plant-01', ':ARG2', 'garden'), ('garden', ':poss', 's')]\n",
+      "[('contrast-01', ':ARG2', 'and'), ('and', ':op1', 'pass-03'), ('pass-03', ':ARG1', 'multiple'), ('multiple', ':op1', 'temporal-quantity'), ('temporal-quantity', ':quant', '1'), ('temporal-quantity', ':unit', 'month'), ('and', ':op2', 'grow-01'), ('grow-01', ':polarity', '-'), ('grow-01', ':ARG1', 'onion')]\n",
+      "[('tell-01', ':ARG0', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', '\"Su\"'), ('have-rel-role-91', ':ARG2', 'mom'), ('tell-01', ':ARG1', 'grow-01'), ('grow-01', ':ARG1', 'onion'), ('grow-01', ':location', 'underground'), ('tell-01', ':ARG2', 'p2'), ('tell-01', ':time', 'then')]\n",
+      "[('and', ':op1', 'dig-01'), ('dig-01', ':ARG0', '\"Su\"'), ('dig-01', ':ARG1', 'soil'), ('and', ':op2', 'find-01'), ('find-01', ':ARG0', 'p'), ('find-01', ':ARG1', 'onion'), ('onion', ':quant', 'multiple'), ('multiple', ':op1', '12')]\n",
+      "[('do-02', ':ARG0', 'garden'), ('garden', ':poss', '\"Jackie\"'), ('do-02', ':ARG1', 'well')]\n",
+      "[('have-03', ':ARG0', 'she'), ('have-03', ':ARG1', 'and'), ('and', ':op1', 'vegetable'), ('vegetable', ':quant', 'plenty'), ('vegetable', ':beneficiary', 'family'), ('family', ':ARG1-of', 'have-org-role-91'), ('have-org-role-91', ':ARG0', 's'), ('have-org-role-91', ':ARG2', 'member'), ('and', ':op2', 'vegetable'), ('vegetable', ':quant', 'some'), ('vegetable', ':ARG1-of', 'share-01'), ('share-01', ':ARG0', 's')]\n",
+      "[('take-01', ':ARG0', '\"Jackie\"'), ('take-01', ':ARG1', 'cucumber'), ('cucumber', ':quant', 'some'), ('take-01', ':ARG2', 'neighbor'), ('neighbor', ':poss', 'p'), ('neighbor', ':location', 'nextdoor'), ('take-01', ':time', 'date-entity'), ('date-entity', ':weekday', 'saturday')]\n",
+      "[('knock-01', ':ARG1', 'door'), ('knock-01', ':time', 'date-entity'), ('date-entity', ':weekday', 'sunday'), ('knock-01', ':time', 'get-05'), ('get-05', ':ARG1', 'she'), ('get-05', ':ARG2', 'church'), ('get-05', ':ARG4', 'home')]\n",
+      "[('and', ':op1', 'make-01'), ('make-01', ':ARG0', 'neighbor'), ('neighbor', ':poss', 'she'), ('make-01', ':ARG1', 'salad'), ('salad', ':consist-of', 'cucumber'), ('and', ':op2', 'bring-01'), ('bring-01', ':ARG0', 'n'), ('bring-01', ':ARG1', 'some'), ('bring-01', ':purpose', 'share-01'), ('share-01', ':ARG0', 'n'), ('share-01', ':ARG1', 's2')]\n",
+      "[('grow-03', ':ARG0', '\"Al\"'), ('grow-03', ':ARG1', 'vegetable'), ('grow-03', ':location', 'backyard'), ('backyard', ':poss', 'p'), ('grow-03', ':purpose', 'hobby')]\n",
+      "[('have-03', ':ARG0', 'he'), ('have-03', ':ARG1', 'carrot'), ('carrot', ':ARG1-of', 'have-quant-91'), ('have-quant-91', ':ARG3', 'more'), ('have-quant-91', ':ARG4', 'eat-01'), ('eat-01', ':ARG0', 'h2'), ('eat-01', ':ARG1-of', 'possible-01')]\n",
+      "[('set-up-03', ':ARG0', '\"Al\"'), ('set-up-03', ':ARG1', 'stand'), ('stand', ':mod', 'farm'), ('set-up-03', ':purpose', 'sell-off-02'), ('sell-off-02', ':ARG0', 'p'), ('sell-off-02', ':ARG1', 'food'), ('food', ':mod', 'extra'), ('food', ':poss', 'p')]\n",
+      "[('come-01', ':ARG1', 'person'), ('person', ':quant', 'many'), ('come-01', ':ARG4', 'buy-01'), ('buy-01', ':ARG0', 'p'), ('buy-01', ':ARG1', 'carrot'), ('carrot', ':poss', 'he')]\n",
+      "[('make-05', ':ARG0', '\"Al\"'), ('make-05', ':ARG1', 'money'), ('money', ':quant', 'lot'), ('make-05', ':time', 'go-02'), ('go-02', ':ARG0', 'p'), ('go-02', ':ARG1', 'carrot'), ('carrot', ':mod', 'all'), ('carrot', ':poss', 'p')]\n",
+      "[('dig-01', ':ARG0', '\"Allie\"'), ('dig-01', ':ARG1', 'hole'), ('dig-01', ':location', 'dirt')]\n",
+      "[('and', ':op1', 'place-01'), ('place-01', ':ARG0', 'she'), ('place-01', ':ARG1', 'seed'), ('seed', ':mod', 'tiny'), ('place-01', ':ARG2', 'bottom'), ('and', ':op2', 'cover-up-02'), ('cover-up-02', ':ARG0', 's'), ('cover-up-02', ':ARG1', 's2')]\n",
+      "[('water-01', ':ARG0', 'she'), ('water-01', ':ARG1', 'it'), ('water-01', ':frequency', 'rate-entity-91'), ('rate-entity-91', ':ARG3', 'temporal-quantity'), ('temporal-quantity', ':quant', '1'), ('temporal-quantity', ':unit', 'day')]\n",
+      "[('break-01', ':ARG0', 'leaf'), ('leaf', ':mod', 'tiny'), ('leaf', ':ARG1-of', 'green-02'), ('break-01', ':ARG1', 'dirt'), ('break-01', ':time', 'day'), ('day', ':mod', 'one')]\n",
+      "[('pick-01', ':ARG0', '\"Allie\"'), ('pick-01', ':ARG1', 'flower'), ('flower', ':ARG1-of', 'grow-01'), ('grow-01', ':ARG2', 'seed'), ('seed', ':poss', 'p2'), ('pick-01', ':time', 'eventual')]\n",
+      "[('plant-01', ':ARG0', '\"Mila\"'), ('plant-01', ':ARG1', 'seed'), ('seed', ':mod', 'melon')]\n",
+      "[('water-01', ':ARG0', 'she'), ('water-01', ':ARG1', 'seed'), ('water-01', ':frequency', 'rate-entity-91'), ('rate-entity-91', ':ARG3', 'temporal-quantity'), ('temporal-quantity', ':quant', '1'), ('temporal-quantity', ':unit', 'day')]\n",
+      "[('grow-01', ':ARG1', 'melon'), ('grow-01', ':ARG1-of', 'full-09'), ('grow-01', ':time', 'after'), ('after', ':op1', 'few'), ('few', ':op1', 'temporal-quantity'), ('temporal-quantity', ':quant', '1'), ('temporal-quantity', ':unit', 'week')]\n",
+      "[('and', ':op1', 'pick-01'), ('pick-01', ':ARG0', '\"Mila\"'), ('pick-01', ':ARG1', 'melon'), ('and', ':op2', 'cut-up-04'), ('cut-up-04', ':ARG0', 'p2'), ('cut-up-04', ':ARG1', 'm')]\n",
+      "[('enjoy-01', ':ARG0', 'she'), ('enjoy-01', ':ARG1', 'melon'), ('melon', ':ARG1-of', 'sweet-02'), ('enjoy-01', ':ARG3', 'snack-01'), ('snack-01', ':ARG0', 's'), ('snack-01', ':ARG1', 'm'), ('enjoy-01', ':duration', 'several'), ('several', ':op1', 'temporal-quantity'), ('temporal-quantity', ':quant', '1'), ('temporal-quantity', ':unit', 'day')]\n"
+     ]
+    },
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "[('love-01', ':ARG0', '\"Sam\"'), ('love-01', ':ARG1', 'corn')]\n",
+      "[('give-01', ':ARG0', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 'he'), ('have-rel-role-91', ':ARG2', 'mom'), ('give-01', ':ARG1', 'pack'), ('pack', ':consist-of', 'seed'), ('give-01', ':ARG2', 'h2')]\n",
+      "[('and', ':op1', 'take-01'), ('take-01', ':ARG0', '\"Sam\"'), ('take-01', ':ARG1', 'seed'), ('and', ':op2', 'plant-01'), ('plant-01', ':ARG0', 'p'), ('plant-01', ':ARG1', 's')]\n",
+      "[('keep-01', ':ARG0', 'he'), ('keep-01', ':ARG1', 'weed'), ('keep-01', ':location', 'away')]\n",
+      "[('eat-01', ':ARG0', '\"Sam\"'), ('eat-01', ':ARG1', 'corn'), ('corn', ':quant', 'lot'), ('corn', ':poss', 'p'), ('eat-01', ':time', 'soon')]\n",
+      "[('plan-01', ':ARG0', '\"Cindy\"'), ('plan-01', ':ARG1', 'grow-03'), ('grow-03', ':ARG0', 'p2'), ('grow-03', ':ARG1', 'vegetable'), ('vegetable', ':quant', 'lot'), ('grow-03', ':time', 'year'), ('year', ':mod', 'this')]\n",
+      "[('plant-01', ':ARG0', 'she'), ('plant-01', ':ARG1', 'seedling'), ('seedling', ':mod', 'vegetable'), ('plant-01', ':ARG2', 'garden'), ('garden', ':poss', 's')]\n",
+      "[('know-01', ':ARG0', '\"Cindy\"'), ('know-01', ':ARG1', 'groundhog'), ('groundhog', ':ARG0-of', 'hunger-01'), ('groundhog', ':location', 'area')]\n",
+      "[('put-up-11', ':ARG0', 'she'), ('put-up-11', ':ARG1', 'fence'), ('fence', ':ARG1-of', 'short-07'), ('put-up-11', ':ARG2', 'around'), ('around', ':op1', 'garden'), ('garden', ':poss', 's'), ('put-up-11', ':purpose', 'protect-01'), ('protect-01', ':ARG0', 's'), ('protect-01', ':ARG1', 'g')]\n",
+      "[('and', ':op1', 'climb-01'), ('climb-01', ':ARG0', 'groundhog'), ('climb-01', ':ARG1', 'over'), ('over', ':op1', 'fence'), ('and', ':op2', 'eat-01'), ('eat-01', ':ARG0', 'g'), ('eat-01', ':ARG1', 'seedling'), ('seedling', ':poss', 'she')]\n",
+      "[('buy-01', ':ARG0', '\"Sarah\"'), ('buy-01', ':ARG1', 'pot'), ('pot', ':mod', 'flower'), ('buy-01', ':ARG3', 'monetary-quantity'), ('monetary-quantity', ':quant', '1'), ('monetary-quantity', ':unit', 'dollar'), ('buy-01', ':location', 'sell-01'), ('sell-01', ':ARG1', 'yard')]\n",
+      "[('and', ':op1', 'take-01'), ('take-01', ':ARG0', 'she'), ('take-01', ':ARG1', 'it'), ('take-01', ':ARG4', 'home'), ('and', ':op2', 'clean-up-02'), ('clean-up-02', ':ARG0', 's'), ('clean-up-02', ':ARG1', 'ii'), ('clean-up-02', ':instrument', 'coat-01'), ('coat-01', ':ARG1', 'paint'), ('coat-01', ':ARG1-of', 'fresh-04')]\n",
+      "[('decide-01', ':ARG0', '\"Sarah\"'), ('decide-01', ':ARG1', 'and'), ('and', ':op1', 'go-02'), ('go-02', ':ARG0', 'p'), ('go-02', ':ARG4', 'shop'), ('shop', ':mod', 'flower'), ('and', ':op2', 'buy-01'), ('buy-01', ':ARG0', 'p'), ('buy-01', ':ARG1', 'plant'), ('buy-01', ':purpose', 's')]\n",
+      "[('and', ':op1', 'buy-01'), ('buy-01', ':ARG0', 'she'), ('buy-01', ':ARG1', 'bush'), ('bush', ':consist-of', 'rose'), ('and', ':op2', 'plant-01'), ('plant-01', ':ARG0', 's'), ('plant-01', ':ARG1', 'b2'), ('plant-01', ':ARG2', 'pot')]\n",
+      "[('bloom-01', ':ARG1', 'rose'), ('rose', ':mod', 'pink'), ('rose', ':mod', 'little'), ('bloom-01', ':location', 'it'), ('bloom-01', ':time', 'after'), ('after', ':quant', 'temporal-quantity'), ('temporal-quantity', ':quant', '2'), ('temporal-quantity', ':unit', 'week')]\n",
+      "[('want-01', ':ARG0', '\"Stephanie\"'), ('want-01', ':ARG1', 'scoop-01'), ('scoop-01', ':ARG0', 'p'), ('scoop-01', ':ARG1-of', 'have-degree-91'), ('have-degree-91', ':ARG2', 'good-02'), ('good-02', ':ARG1', 's'), ('have-degree-91', ':ARG3', 'most'), ('want-01', ':time', 'always')]\n",
+      "[('stay-01', ':ARG1', 'she'), ('stay-01', ':ARG3', 'drive-01'), ('drive-01', ':ARG0', 's2'), ('drive-01', ':ARG1', 'around'), ('around', ':op1', 'town'), ('drive-01', ':purpose', 'find-01'), ('find-01', ':ARG0', 's2'), ('find-01', ':ARG1', 'it'), ('stay-01', ':ARG1-of', 'light-06')]\n",
+      "[('hear-01', ':ARG0', 'she'), ('hear-01', ':ARG1', 'scoop'), ('scoop', ':mod', 'big'), ('scoop', ':location', 'down'), ('down', ':op1', 'street'), ('hear-01', ':time', 'day'), ('day', ':mod', 'one')]\n",
+      "[('rush-01', ':ARG0', 'she'), ('rush-01', ':direction', 'over'), ('rush-01', ':purpose', 'find-01'), ('find-01', ':ARG0', 's'), ('find-01', ':ARG1', 'shop'), ('shop', ':mod', 'ice-cream'), ('find-01', ':mod', 'only')]\n",
+      "[('and', ':op1', 'find-out-03'), ('find-out-03', ':ARG0', 'crew'), ('crew', ':poss', 'she'), ('find-out-03', ':ARG1', 'birthday'), ('birthday', ':poss', 's'), ('and', ':op2', 'offer-01'), ('offer-01', ':ARG0', 'c'), ('offer-01', ':ARG1', 'scoop'), ('scoop', ':mod', 'big'), ('offer-01', ':ARG2', 's')]\n",
+      "[('enjoy-01', ':ARG0', '\"Betsy\"'), ('enjoy-01', ':ARG1', 'ice-cream'), ('ice-cream', ':poss', 'p')]\n",
+      "[('notice-01', ':polarity', '-'), ('notice-01', ':ARG0', 'she'), ('notice-01', ':ARG1', 'land-01'), ('land-01', ':ARG1', 'wasp'), ('land-01', ':ARG2', 'side'), ('side', ':part-of', 'it')]\n",
+      "[('sting-01', ':ARG0', 'wasp'), ('sting-01', ':ARG1', 'tongue'), ('tongue', ':part-of', 'she'), ('sting-01', ':time', 'lick-01'), ('lick-01', ':ARG0', 's2'), ('lick-01', ':ARG1', 'ice-cream')]\n",
+      "[('swell-01', ':ARG1', 'neck'), ('neck', ':part-of', 'she'), ('neck', ':mod', 'all')]\n",
+      "[('take-01', ':ARG0', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 'she'), ('have-rel-role-91', ':ARG2', 'husband'), ('take-01', ':ARG1', 's'), ('take-01', ':ARG4', 'hospital'), ('take-01', ':time', 'immediate')]\n",
+      "[('love-01', ':ARG0', '\"Emily\"'), ('love-01', ':ARG1', 'drink-01'), ('drink-01', ':ARG0', 'p'), ('drink-01', ':ARG1', 'juice'), ('juice', ':source', 'grape')]\n",
+      "[('drink-01', ':ARG0', 'she'), ('drink-01', ':ARG1', 'it'), ('drink-01', ':time', 'day'), ('day', ':mod', 'one'), ('drink-01', ':ARG1-of', 'near-02'), ('near-02', ':ARG2', 'bed'), ('bed', ':poss', 's')]\n",
+      "[('spill-01', ':ARG0', 'she'), ('spill-01', ':ARG1', 'juice')]\n",
+      "[('upset-01', ':ARG1', 'she')]\n",
+      "[('and', ':op1', 'clean-up-02'), ('clean-up-02', ':ARG0', 'she'), ('clean-up-02', ':ARG1', 'it'), ('and', ':op2', 'make-02'), ('make-02', ':ARG0', 'c'), ('make-02', ':ARG1', 'happy-01'), ('happy-01', ':ARG1', 's')]\n",
+      "[('feel-01', ':ARG0', '\"Cathy\"'), ('feel-01', ':ARG1', 'cold-01'), ('cold-01', ':quant', 'bit'), ('cold-01', ':ARG1-of', 'come-01')]\n",
+      "[('squirt-01', ':ARG0', 'she'), ('she', ':part', 'throat'), ('squirt-01', ':ARG1', 'juice'), ('juice', ':source', 'lemon'), ('juice', ':quant', 'some'), ('squirt-01', ':direction', 'down'), ('down', ':op1', 't'), ('squirt-01', ':purpose', 'help-01'), ('help-01', ':ARG1', 't'), ('squirt-01', ':ARG0-of', 'h')]\n",
+      "[('contrast-01', ':ARG2', 'choke-01'), ('choke-01', ':ARG0', 'she'), ('choke-01', ':ARG1', 'it'), ('choke-01', ':time', 'fall-01'), ('fall-01', ':ARG1', 'pit'), ('pit', ':consist-of', 'lemon'), ('fall-01', ':accompanier', 'juice')]\n",
+      "[('drink-01', ':ARG0', 'she'), ('drink-01', ':ARG1', 'water'), ('water', ':quant', 'few'), ('few', ':op1', 'sips'), ('drink-01', ':purpose', 'swallow-01'), ('swallow-01', ':ARG0', 's'), ('swallow-01', ':ARG1', 'w')]\n",
+      "[('and', ':op2', 'feel-01'), ('feel-01', ':ARG0', 'she'), ('feel-01', ':ARG1', 'have-degree-91'), ('have-degree-91', ':ARG1', 's'), ('have-degree-91', ':ARG2', 'good-02'), ('good-02', ':ARG1', 'f'), ('have-degree-91', ':ARG3', 'more'), ('more', ':quant', 'lot'), ('feel-01', ':time', 'do-02'), ('do-02', ':ARG0', 's')]\n",
+      "[('want-01', ':ARG0', '\"Fred\"'), ('want-01', ':ARG1', 'ice-cream')]\n",
+      "[('drive-01', ':ARG0', 'he'), ('drive-01', ':destination', 'shop'), ('shop', ':mod', 'ice-cream')]\n",
+      "[('order-02', ':ARG0', 'he'), ('order-02', ':ARG1', 'scoop'), ('scoop', ':quant', '2'), ('scoop', ':consist-of', 'chocolate')]\n",
+      "[('ask-02', ':ARG0', 'he'), ('ask-02', ':ARG1', 'bit'), ('bit', ':mod', 'candy'), ('bit', ':quant', 'some'), ('ask-02', ':mod', 'top')]\n",
+      "[('and', ':op1', 'take-01'), ('take-01', ':ARG0', 'he'), ('take-01', ':ARG1', 'ice-cream'), ('ice-cream', ':poss', 'h'), ('and', ':op2', 'eat-01'), ('eat-01', ':ARG0', 'h'), ('eat-01', ':ARG1', 'ii')]\n",
+      "[('break-18', ':ARG1', 'person'), ('person', ':ARG0-of', 'work-01')]\n",
+      "[('want-01', ':ARG0', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 'they'), ('have-rel-role-91', ':ARG2', 'kid'), ('want-01', ':ARG1', 'ice-cream'), ('want-01', ':degree', 'really')]\n",
+      "[('look-01', ':ARG0', 'she'), ('look-01', ':ARG1', 'money')]\n",
+      "[('and', ':op1', 'gather-01'), ('gather-01', ':ARG0', 'she'), ('gather-01', ':ARG1', 'change'), ('change', ':poss', 's'), ('change', ':mod', 'all'), ('and', ':op2', 'cash-in-02'), ('cash-in-02', ':ARG0', 's'), ('cash-in-02', ':ARG1', 'c')]\n",
+      "[('have-quant-91', ':ARG1', 'it'), ('have-quant-91', ':ARG3', 'enough'), ('have-quant-91', ':ARG6', 'ice-cream'), ('have-quant-91', ':mod', 'more-than')]\n",
+      "[('contrast-01', ':ARG1', 'know-01'), ('know-01', ':ARG0', '\"Lucretia\"'), ('know-01', ':ARG1', 'healthy'), ('healthy', ':polarity', '-'), ('healthy', ':domain', 'soda'), ('healthy', ':degree', 'very'), ('contrast-01', ':ARG2', 'love-01'), ('love-01', ':ARG0', 'p'), ('love-01', ':ARG1', 'taste-01'), ('taste-01', ':ARG1', 's')]\n",
+      "[('decide-01', ':ARG0', 'she'), ('decide-01', ':ARG1', 'and'), ('and', ':op1', 'buy-01'), ('buy-01', ':ARG0', 's'), ('buy-01', ':ARG1', 'soda'), ('buy-01', ':time', 'after'), ('after', ':op1', 'work-01'), ('and', ':op2', 'drink-01'), ('drink-01', ':ARG0', 's'), ('drink-01', ':ARG1', 's2'), ('drink-01', ':manner', 'alone'), ('drink-01', ':location', 'home')]\n",
+      "[('see-01', ':ARG0', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 'she'), ('have-rel-role-91', ':ARG2', 'friend'), ('see-01', ':ARG1', 'buy-01'), ('buy-01', ':ARG0', 's2'), ('buy-01', ':ARG1', 'soda'), ('see-01', ':mod', 'almost'), ('see-01', ':time', 'buy-01'), ('buy-01', ':ARG0', 's2'), ('buy-01', ':ARG1', 's3'), ('see-01', ':mod', 'just')]\n",
+      "[('happy-01', ':ARG0', 'see-01'), ('see-01', ':polarity', '-'), ('see-01', ':ARG0', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', '\"Lucretia\"'), ('have-rel-role-91', ':ARG2', 'friend'), ('see-01', ':ARG1', 'buy-01'), ('buy-01', ':ARG0', 'p2'), ('buy-01', ':ARG1', 'soda'), ('happy-01', ':ARG1', 'p2'), ('happy-01', ':degree', 'very')]\n",
+      "[('and', ':op1', 'go-02'), ('go-02', ':ARG0', 'she'), ('go-02', ':ARG4', 'home'), ('go-02', ':purpose', 'drink-01'), ('drink-01', ':ARG0', 's'), ('drink-01', ':ARG1', 'soda'), ('drink-01', ':mod', 'alone'), ('and', ':op2', 'happy-01'), ('happy-01', ':ARG1', 's'), ('happy-01', ':degree', 'very')]\n",
+      "[('and', ':op1', 'win-01'), ('win-01', ':ARG0', '\"John\"'), ('win-01', ':ARG1', 'game'), ('game', ':mod', 'baseball'), ('game', ':poss', 'p'), ('and', ':op2', 'want-01'), ('want-01', ':ARG0', 'p'), ('want-01', ':ARG1', 'ice-cream'), ('ice-cream', ':quant', 'some'), ('ice-cream', ':purpose', 'celebrate-02'), ('celebrate-02', ':ARG0', 'p'), ('celebrate-02', ':ARG1', 'w')]\n",
+      "[('go-02', ':ARG0', 'he'), ('go-02', ':ARG4', 'shoppe'), ('shoppe', ':mod', 'ice-cream'), ('shoppe', ':ARG1-of', 'favor-01'), ('favor-01', ':ARG0', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 'h'), ('have-rel-role-91', ':ARG2', 'teammates'), ('go-02', ':accompanier', 'p')]\n",
+      "[('look-01', ':ARG0', '\"John\"'), ('look-01', ':ARG1', 'menu'), ('look-01', ':purpose', 'decide-01'), ('decide-01', ':ARG0', 'p'), ('decide-01', ':ARG1', 'thing'), ('thing', ':ARG1-of', 'want-01'), ('want-01', ':ARG0', 'p')]\n",
+      "[('think-01', ':ARG0', 'he'), ('think-01', ':ARG1', 'hit-01'), ('hit-01', ':ARG0', 'milkshake'), ('hit-01', ':ARG1', 'spot')]\n",
+      "[('and', ':op1', 'drink-01'), ('drink-01', ':ARG0', '\"John\"'), ('drink-01', ':ARG1', 'shake-01'), ('shake-01', ':ARG0', 'p'), ('shake-01', ':ARG1-of', 'delicious-02'), ('and', ':op2', 'go-02'), ('go-02', ':ARG0', 'p'), ('go-02', ':ARG4', 'home')]\n",
+      "[('thirst-01', ':ARG0', '\"Kate\"')]\n",
+      "[('look-01', ':ARG0', 'she'), ('look-01', ':ARG1', 'drink'), ('look-01', ':location', 'fridge'), ('fridge', ':poss', 's')]\n",
+      "[('sick-05', ':ARG1', 'she'), ('sick-05', ':ARG2', 'and'), ('and', ':op1', 'juice'), ('and', ':op2', 'soda')]\n",
+      "[('think-01', ':ARG0', 'she'), ('think-01', ':ARG1', 'drink'), ('drink', ':ARG1-of', 'have-degree-91'), ('have-degree-91', ':ARG2', 'tastier'), ('have-degree-91', ':ARG3', 'more'), ('think-01', ':time', 'then')]\n",
+      "[('and', ':op1', 'get-01'), ('get-01', ':ARG0', 'she'), ('get-01', ':ARG1', 'water'), ('get-01', ':ARG2', 'tap'), ('and', ':op2', 'love-01'), ('love-01', ':ARG0', 's'), ('love-01', ':ARG1', 'w')]\n"
+     ]
+    },
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "[('out-06', ':ARG1', '\"William\"'), ('out-06', ':accompanier', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 'p'), ('have-rel-role-91', ':ARG2', 'girlfriend')]\n",
+      "[('and', ':op1', 'hot-04'), ('hot-04', ':ARG1', 'day'), ('and', ':op2', 'want-01'), ('want-01', ':ARG0', 'they'), ('want-01', ':ARG1', 'ice-cream')]\n",
+      "[('stop-01', ':ARG0', 'they'), ('stop-01', ':ARG1', 'parlor'), ('parlor', ':mod', 'ice-cream'), ('parlor', ':ARG1-of', 'local-02')]\n",
+      "[('buy-01', ':ARG0', 'pair'), ('buy-01', ':ARG1', 'scoop-01'), ('scoop-01', ':ARG1', 'ice-cream'), ('scoop-01', ':quant', 'couple')]\n",
+      "[('and', ':op1', 'enjoy-01'), ('enjoy-01', ':ARG0', 'they'), ('enjoy-01', ':ARG1', 'treat-01'), ('and', ':op2', 'continue-01'), ('continue-01', ':ARG0', 't'), ('continue-01', ':ARG1', 'walk-01'), ('walk-01', ':ARG0', 't'), ('walk-01', ':manner', 'together')]\n",
+      "[('win-01', ':ARG0', 'team'), ('team', ':mod', 'soccer'), ('team', ':poss', 'i'), ('win-01', ':ARG1', 'game'), ('win-01', ':time', 'yesterday')]\n",
+      "[('treat-01', ':ARG0', 'person'), ('person', ':ARG0-of', 'coach-01'), ('coach-01', ':ARG1', 'we'), ('treat-01', ':ARG1', 'give-01'), ('give-01', ':ARG0', 'p'), ('give-01', ':ARG1', 'popsicle'), ('popsicle', ':quant', 'some'), ('give-01', ':ARG2', 'w')]\n",
+      "[('and', ':op1', 'hot-05'), ('hot-05', ':ARG1', 'day'), ('and', ':op2', 'melt-01'), ('melt-01', ':ARG1', 'popsicle')]\n",
+      "[('get-01', ':ARG0', 'i'), ('get-01', ':ARG1', 'dripping'), ('dripping', ':location', 'all-over'), ('all-over', ':op1', 'clothes'), ('clothes', ':poss', 'ii')]\n",
+      "[('have-concession-91', ':ARG2', 'wash-out-02'), ('wash-out-02', ':ARG1', 'dripping-02'), ('wash-out-02', ':ARG2-of', 'thankful-02')]\n",
+      "[('love-01', ':ARG0', 'i'), ('love-01', ':ARG1', 'soda')]\n",
+      "[('drink-01', ':ARG0', 'i'), ('drink-01', ':ARG1', 'it'), ('drink-01', ':time', 'use-03'), ('drink-01', ':frequency', 'time'), ('time', ':mod', 'all')]\n",
+      "[('drink-01', ':ARG0', 'i'), ('drink-01', ':ARG1', 'rate-entity-91'), ('rate-entity-91', ':ARG1', 'can'), ('can', ':quant', '10'), ('rate-entity-91', ':ARG2', 'temporal-quantity'), ('temporal-quantity', ':quant', '1'), ('temporal-quantity', ':unit', 'day')]\n",
+      "[('weight-quantity', ':quant', '300'), ('weight-quantity', ':unit', 'pound'), ('weight-quantity', ':domain', 'i'), ('weight-quantity', ':time', 'now')]\n",
+      "[('turn-out-11', ':ARG1', 'nasty'), ('nasty', ':domain', 'soda'), ('nasty', ':beneficiary', 'body'), ('body', ':poss', 'you')]\n",
+      "[('want-01', ':ARG0', '\"Wald\"'), ('want-01', ':ARG1', 'ice-cream'), ('ice-cream', ':quant', 'some'), ('want-01', ':ARG0-of', 'cause-01'), ('cause-01', ':ARG1', 'go-02'), ('go-02', ':ARG0', 'p'), ('go-02', ':ARG4', 'store'), ('go-02', ':purpose', 'get-01'), ('get-01', ':ARG0', 'p'), ('get-01', ':ARG1', 'some')]\n",
+      "[('see-01', ':ARG0', 'he'), ('see-01', ':ARG1', 'invention'), ('invention', ':ARG1-of', 'see-01'), ('see-01', ':ARG0', 'h'), ('see-01', ':time', 'ever'), ('invention', ':ARG1-of', 'have-degree-91'), ('have-degree-91', ':ARG2', 'good-02'), ('good-02', ':ARG1', 'ii'), ('have-degree-91', ':ARG3', 'most'), ('see-01', ':time', 'get-05'), ('get-05', ':ARG1', 'h'), ('get-05', ':ARG2', 'store')]\n",
+      "[('ball', ':domain', 'it'), ('ball', ':ARG0-of', 'make-01'), ('make-01', ':ARG1', 'ice-cream'), ('make-01', ':time', 'shake-01'), ('shake-01', ':ARG0', 'you'), ('shake-01', ':ARG1', 'ii')]\n",
+      "[('and', ':op1', 'put-01'), ('put-01', ':ARG0', '\"Wald\"'), ('put-01', ':ARG1', 'ingredient'), ('ingredient', ':mod', 'all'), ('ingredient', ':poss', 'p2'), ('put-01', ':ARG2', 'ball'), ('ball', ':consist-of', 'ice-cream'), ('and', ':op2', 'shake-01'), ('shake-01', ':ARG0', 'p2'), ('shake-01', ':ARG1', 'b')]\n",
+      "[('eat-01', ':ARG0', 'he'), ('eat-01', ':ARG1', 'ice-cream'), ('ice-cream', ':ARG1-of', 'delicious-02'), ('ice-cream', ':poss', 'h'), ('eat-01', ':time', 'open-up-03'), ('open-up-03', ':ARG0', 'h'), ('open-up-03', ':ARG1', 'ball')]\n",
+      "[('love-01', ':ARG0', '\"Jill\"'), ('love-01', ':ARG1', 'ice-cream')]\n",
+      "[('take-01', ':ARG0', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 'she'), ('have-rel-role-91', ':ARG2', 'parent'), ('take-01', ':ARG1', 's'), ('take-01', ':purpose', 'get-01'), ('get-01', ':ARG0', 's'), ('get-01', ':ARG1', 'ice-cream')]\n",
+      "[('get-01', ':ARG0', '\"Jill\"'), ('get-01', ':ARG1', 'cone'), ('cone', ':consist-of', 'ice-cream'), ('ice-cream', ':mod', 'vanilla')]\n",
+      "[('fall-01', ':ARG1', 'cone'), ('cone', ':consist-of', 'ice-cream'), ('cone', ':poss', '\"Jill\"'), ('fall-01', ':ARG4', 'floor')]\n",
+      "[('buy-01', ':ARG0', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', '\"Jill\"'), ('have-rel-role-91', ':ARG2', 'parent'), ('buy-01', ':ARG1', 'one'), ('one', ':ARG1-of', 'new-01'), ('buy-01', ':ARG2', 'p2')]\n",
+      "[('mood', ':domain', '\"Kelly\"'), ('mood', ':purpose', 'treat'), ('treat', ':mod', 'fruity'), ('treat', ':mod', 'tasty')]\n",
+      "[('cause-01', ':ARG0', 'hot-05'), ('hot-05', ':ARG1', 'it'), ('hot-05', ':location', 'out'), ('cause-01', ':ARG1', 'pop-01'), ('pop-01', ':ARG0', 'she'), ('pop-01', ':ARG1', 'grape'), ('grape', ':quant', 'some'), ('pop-01', ':ARG2', 'freezer')]\n",
+      "[('snack-01', ':ARG0', 'she'), ('snack-01', ':ARG1', 'they'), ('snack-01', ':manner', 'one-by-one'), ('snack-01', ':time', 'freeze-01'), ('freeze-01', ':ARG1', 't')]\n",
+      "[('add-02', ':ARG0', 'she'), ('add-02', ':ARG1', 'few'), ('add-02', ':ARG2', 'soda'), ('soda', ':poss', 's'), ('add-02', ':purpose', 'keep-01'), ('keep-01', ':ARG0', 's'), ('keep-01', ':ARG1', 'cold-01'), ('cold-01', ':ARG1', 's2'), ('add-02', ':mod', 'even')]\n",
+      "[('love-01', ':ARG0', '\"Kelly\"'), ('love-01', ':ARG1', 'treat'), ('treat', ':mod', 'grape'), ('treat', ':ARG1-of', 'freeze-01'), ('treat', ':poss', 'p')]\n",
+      "[('sit-01', ':ARG1', '\"Susie\"'), ('sit-01', ':ARG2', 'down'), ('sit-01', ':location', 'park')]\n",
+      "[('ask-01', ':ARG0', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 'she'), ('have-rel-role-91', ':ARG2', 'friend'), ('ask-01', ':ARG1', 'truth-value'), ('truth-value', ':polarity-of', 'want-01'), ('want-01', ':ARG0', 's'), ('want-01', ':ARG1', 'ice-cream'), ('ice-cream', ':quant', 'some')]\n",
+      "[('say-01', ':ARG0', '\"Susie\"'), ('say-01', ':ARG1', 'okay-04')]\n",
+      "[('contrast-01', ':ARG2', 'melt-01'), ('melt-01', ':ARG1', 'it'), ('melt-01', ':time', 'come-01'), ('come-01', ':ARG1', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 'she'), ('have-rel-role-91', ':ARG2', 'friend'), ('come-01', ':ARG4', 'back')]\n",
+      "[('cause-01', ':ARG1', 'obligate-01'), ('obligate-01', ':ARG1', '\"Susie\"'), ('obligate-01', ':ARG2', 'drink-01'), ('drink-01', ':ARG0', 'p'), ('drink-01', ':ARG1', 'it')]\n",
+      "[('want-01', ':ARG0', '\"Lucy\"'), ('want-01', ':ARG1', 'make-01'), ('make-01', ':ARG0', 'p'), ('make-01', ':ARG1', 'popsicle'), ('popsicle', ':quant', 'some')]\n",
+      "[('get-04', ':ARG0', 'she'), ('get-04', ':ARG1', 'ready-02'), ('ready-02', ':ARG1', 'juice'), ('ready-02', ':ARG2', 'it')]\n",
+      "[('taste-01', ':ARG0', 'she'), ('taste-01', ':time', 'after'), ('after', ':op1', 'be-done-08'), ('be-done-08', ':ARG0', 's')]\n",
+      "[('delicious', ':domain', 'it')]\n",
+      "[('problem', ':mod', 'only'), ('problem', ':domain', 'end-up-03'), ('end-up-03', ':ARG1', 'she'), ('end-up-03', ':ARG2', 'spill-01'), ('spill-01', ':ARG0', 's'), ('spill-01', ':ARG1', 'it'), ('spill-01', ':ARG2', 's')]\n",
+      "[('run-02', ':ARG0', 'boy'), ('run-02', ':ARG4', 'kitchen')]\n",
+      "[('hit-01', ':ARG0', 'hand'), ('hand', ':part-of', 'he'), ('hit-01', ':ARG1', 'cup'), ('cup', ':location', 'table')]\n",
+      "[('hit-01', ':ARG0', 'it'), ('hit-01', ':ARG1', 'ground'), ('hit-01', ':manner', 'bounce-01'), ('bounce-01', ':ARG1', 'ii')]\n",
+      "[('break-01', ':polarity', '-'), ('break-01', ':ARG1', 'cup')]\n",
+      "[('make-01', ':ARG1', 'cup'), ('make-01', ':ARG2', 'plastic')]\n",
+      "[('love-01', ':ARG0', '\"Harris\"'), ('love-01', ':ARG1', 'cream'), ('love-01', ':degree', 'lot')]\n",
+      "[('use-01', ':ARG0', 'he'), ('use-01', ':ARG1', 'it'), ('it', ':quant', 'lot'), ('use-01', ':frequency', 'rate-entity-91'), ('rate-entity-91', ':ARG3', 'temporal-quantity'), ('temporal-quantity', ':quant', '1'), ('temporal-quantity', ':unit', 'day')]\n",
+      "[('run-out-05', ':ARG1', 'cream'), ('run-out-05', ':ARG2', 'he'), ('run-out-05', ':time', 'day'), ('day', ':mod', 'one')]\n",
+      "[('force-01', ':ARG1', 'he'), ('force-01', ':ARG2', 'run-02'), ('run-02', ':ARG0', 'h'), ('run-02', ':ARG4', 'house'), ('house', ':poss', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 'h'), ('have-rel-role-91', ':ARG2', 'friend')]\n",
+      "[('possible-01', ':ARG1', 'get-01'), ('get-01', ':ARG0', '\"Harris\"'), ('get-01', ':ARG1', 'cream'), ('possible-01', ':time', 'then')]\n",
+      "[('drink-01', ':ARG0', 'and'), ('and', ':op1', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 'i'), ('have-rel-role-91', ':ARG2', 'friend'), ('and', ':op2', 'ii'), ('drink-01', ':ARG1', 'soda')]\n",
+      "[('tell-01', ':ARG0', 'she'), ('tell-01', ':ARG1', 'joke-01'), ('joke-01', ':ARG1-of', 'funny-02'), ('funny-02', ':degree', 'very')]\n",
+      "[('laugh-01', ':ARG0', 'i'), ('laugh-01', ':ARG1-of', 'hard-02'), ('hard-02', ':degree', 'so')]\n",
+      "[('come-out-09', ':ARG1', 'soda'), ('come-out-09', ':source', 'nose'), ('nose', ':part-of', 'i')]\n",
+      "[('drink-01', ':polarity', '-'), ('drink-01', ':ARG0', 'i'), ('drink-01', ':ARG1', 'soda'), ('drink-01', ':time', 'ever'), ('drink-01', ':mod', 'again')]\n",
+      "[('picnic-01', ':ARG0', '\"Anna\"'), ('picnic-01', ':location', 'park')]\n",
+      "[('pour-01', ':ARG0', 'she'), ('pour-01', ':ARG1', 'soda'), ('soda', ':ARG1-of', 'sweet-02'), ('pour-01', ':purpose', 'drink-01'), ('drink-01', ':ARG0', 's')]\n",
+      "[('fly-01', ':ARG1', 'bee'), ('fly-01', ':ARG4', 'rim'), ('rim', ':part-of', 'cup'), ('cup', ':poss', 'she'), ('fly-01', ':manner', 'sudden')]\n",
+      "[('contrast-01', ':ARG1', 'wish-01'), ('wish-01', ':ARG0', '\"Anna\"'), ('wish-01', ':ARG1', 'it'), ('contrast-01', ':ARG2', 'and'), ('and', ':op1', 'grow-02'), ('grow-02', ':ARG1', 'ii'), ('grow-02', ':ARG2', 'mad-04'), ('mad-04', ':ARG0', 'ii'), ('and', ':op2', 'stung-01'), ('stung-01', ':ARG0', 'ii'), ('stung-01', ':ARG1', 'p')]\n",
+      "[('cry-02', ':ARG0', '\"Anna\"'), ('cry-02', ':ARG1-of', 'cause-01'), ('cause-01', ':ARG0', 'pain-01'), ('pain-01', ':ARG0', 'sting-01')]\n",
+      "[('and', ':op1', 'hot-05'), ('hot-05', ':ARG1', 'it'), ('and', ':op2', 'want-01'), ('want-01', ':ARG0', '\"David\"'), ('want-01', ':ARG1', 'treat')]\n",
+      "[('hear-01', ':ARG0', 'he'), ('hear-01', ':ARG1', 'play-11'), ('play-11', ':ARG0', '\"Turkey\"'), ('play-11', ':location', 'street')]\n",
+      "[('truck', ':mod', 'icecream')]\n",
+      "[('buy-01', ':ARG0', '\"David\"'), ('buy-01', ':ARG1', 'cone'), ('cone', ':consist-of', 'chocolate')]\n",
+      "[('and', ':op1', 'melt-01'), ('melt-01', ':ARG1', 'scoop'), ('scoop', ':mod', 'double'), ('melt-01', ':ARG1-of', 'quick-02'), ('and', ':op2', 'fall-01'), ('fall-01', ':ARG1', 's'), ('fall-01', ':ARG4', 'pavement')]\n"
+     ]
+    },
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "[('love-01', ':ARG0', '\"Tonya\"'), ('love-01', ':ARG1', 'play-01'), ('play-01', ':ARG0', 'p'), ('play-01', ':location', 'outdoors')]\n",
+      "[('animal', ':ARG1-of', 'favor-01'), ('favor-01', ':ARG0', 'she'), ('animal', ':domain', 'toad'), ('toad', ':mod', 'big'), ('toad', ':ARG1-of', 'green-02')]\n",
+      "[('jump-03', ':ARG0', '\"Tonya\"'), ('\"Tonya\"', ':part', 'mouth'), ('jump-03', ':ARG1', 'm'), ('jump-03', ':time', 'play-01'), ('play-01', ':ARG0', 'p'), ('play-01', ':ARG1', 'toad'), ('jump-03', ':time', 'day'), ('day', ':mod', 'one')]\n",
+      "[('and', ':op1', 'scare-01'), ('scare-01', ':ARG1', '\"Tonya\"'), ('\"Tonya\"', ':part', 'mouth'), ('and', ':op2', 'spit-01'), ('spit-01', ':ARG0', 'p'), ('spit-01', ':ARG1', 'frog'), ('spit-01', ':source', 'm')]\n",
+      "[('learn-01', ':ARG0', 'she'), ('she', ':part', 'face'), ('learn-01', ':ARG1', 'play-01'), ('play-01', ':polarity', '-'), ('play-01', ':ARG0', 's'), ('play-01', ':ARG1', 'toad'), ('toad', ':ARG1-of', 'close-10'), ('close-10', ':ARG2', 'f'), ('close-10', ':degree', 'so')]\n",
+      "[('walk-01', ':ARG0', 'and'), ('and', ':op1', 'i'), ('and', ':op2', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 'ii'), ('have-rel-role-91', ':ARG2', 'friend'), ('walk-01', ':ARG1', 'street'), ('walk-01', ':direction', 'down'), ('walk-01', ':time', 'time'), ('time', ':mod', 'one')]\n",
+      "[('tell-01', ':ARG0', 'she'), ('tell-01', ':ARG1', 'thirst-01'), ('thirst-01', ':ARG0', 's'), ('thirst-01', ':degree', 'extreme'), ('tell-01', ':ARG2', 'i')]\n",
+      "[('ask-02', ':ARG0', 'i'), ('ask-02', ':ARG1', 'water'), ('water', ':quant', 'volume-quantity'), ('volume-quantity', ':quant', '1'), ('volume-quantity', ':unit', 'glass'), ('ask-02', ':ARG2', 'lady'), ('lady', ':mod', 'old')]\n",
+      "[('go-02', ':ARG0', 'she'), ('go-02', ':ARG4', 'house'), ('house', ':poss', 's'), ('go-02', ':purpose', 'get-01'), ('get-01', ':ARG0', 's'), ('get-01', ':ARG1', 'glass')]\n",
+      "[('drink-01', ':ARG0', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 'i'), ('have-rel-role-91', ':ARG2', 'friend'), ('drink-01', ':ARG1', 'water')]\n",
+      "[('borrow-01', ':ARG0', '\"Karen\"'), ('borrow-01', ':ARG1', 'book'), ('borrow-01', ':ARG2', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 'p'), ('have-rel-role-91', ':ARG2', 'friend')]\n",
+      "[('spill-01', ':ARG0', 'she'), ('spill-01', ':ARG1', 'juice'), ('spill-01', ':ARG2', 'it')]\n",
+      "[('nervous-01', ':ARG0', 'mad-04'), ('mad-04', ':ARG1', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 'she'), ('have-rel-role-91', ':ARG2', 'friend'), ('nervous-01', ':ARG1', 's')]\n",
+      "[('forgive-01', ':ARG0', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 'she'), ('have-rel-role-91', ':ARG2', 'friend'), ('forgive-01', ':ARG1', 's')]\n",
+      "[('feel-01', ':ARG0', 'she'), ('feel-01', ':ARG1', 'lucky'), ('lucky', ':domain', 's'), ('lucky', ':ARG1-of', 'cause-01'), ('cause-01', ':ARG0', 'have-03'), ('have-03', ':ARG0', 's'), ('have-03', ':ARG1', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 's'), ('have-rel-role-91', ':ARG2', 'friend'), ('person', ':ARG1-of', 'good-02')]\n",
+      "[('and', ':op1', 'buy-01'), ('buy-01', ':ARG0', '\"Tom\"'), ('buy-01', ':ARG1', 'pair'), ('pair', ':mod', 'boot'), ('pair', ':ARG1-of', 'new-01'), ('and', ':op2', 'set-01'), ('set-01', ':ARG0', 'p'), ('set-01', ':ARG1', 'p2'), ('set-01', ':ARG2', 'door'), ('door', ':mod', 'back')]\n",
+      "[('walk-01', ':ARG0', '\"Janie\"'), ('walk-01', ':direction', 'in'), ('walk-01', ':manner', 'eat-01'), ('eat-01', ':ARG0', 'p'), ('eat-01', ':ARG1', 'cone'), ('cone', ':consist-of', 'ice-cream'), ('ice-cream', ':mod', 'chocolate')]\n",
+      "[('yell-out-02', ':ARG0', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG2', 'mom'), ('yell-out-02', ':ARG1', 'tell-01'), ('tell-01', ':ARG0', 'p'), ('tell-01', ':ARG1', 'eat-01'), ('eat-01', ':polarity', '-'), ('eat-01', ':ARG0', '\"Janie\"'), ('eat-01', ':time', 'before'), ('before', ':op1', 'dinner'), ('tell-01', ':ARG2', 'p2')]\n",
+      "[('drop-01', ':ARG0', '\"Janie\"'), ('drop-01', ':ARG1', 'ice-cream'), ('drop-01', ':ARG2', 'boot'), ('boot', ':quant', '1'), ('boot', ':ARG1-of', 'include-91'), ('include-91', ':ARG2', 'boot'), ('boot', ':ARG1-of', 'new-01'), ('boot', ':poss', '\"Tom\"')]\n",
+      "[('pour-01', ':ARG0', '\"Tom\"'), ('pour-01', ':ARG1', 'ice-cream'), ('ice-cream', ':ARG1-of', 'melt-01'), ('pour-01', ':ARG2', 'head'), ('head', ':part-of', '\"Janie\"')]\n",
+      "[('love-01', ':ARG0', '\"Meg\"'), ('love-01', ':ARG1', 'eat-01'), ('eat-01', ':ARG0', 'p'), ('eat-01', ':ARG1', 'ice-cream')]\n",
+      "[('ask-02', ':ARG0', 'she'), ('ask-02', ':ARG1', 'take-01'), ('take-01', ':ARG0', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 's'), ('have-rel-role-91', ':ARG2', 'dad'), ('take-01', ':ARG1', 's'), ('take-01', ':ARG4', 'stand'), ('stand', ':mod', 'ice-cream'), ('ask-02', ':ARG2', 's')]\n",
+      "[('buy-01', ':ARG0', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 'she'), ('have-rel-role-91', ':ARG2', 'dad'), ('buy-01', ':ARG1', 'cone'), ('cone', ':consist-of', 'ice-cream'), ('ice-cream', ':mod', 'chocolate'), ('buy-01', ':ARG2', 's')]\n",
+      "[('contrast-01', ':ARG2', 'and'), ('and', ':op1', 'drop-01'), ('drop-01', ':ARG0', 'she'), ('drop-01', ':ARG1', 'it'), ('drop-01', ':ARG1-of', 'accidental-02'), ('and', ':op2', 'begin-01'), ('begin-01', ':ARG0', 's'), ('begin-01', ':ARG1', 'cry-02'), ('cry-02', ':ARG0', 's')]\n",
+      "[('and', ':op1', 'buy-01'), ('buy-01', ':ARG0', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':name', 'name'), ('name', ':op1', '\"Meg\"'), ('person', ':ARG1-of', 'h'), ('person', ':ARG2', 'dad'), ('and', ':ARG1', 'cone'), ('cone', ':consist-of', 'ice-cream'), ('cone', ':ARG1-of', 'new-01'), ('and', ':ARG2', 'p'), ('and', ':op2', 'eat-01'), ('eat-01', ':ARG0', 'p'), ('eat-01', ':ARG1', 'c'), ('eat-01', ':ARG1-of', 'happy-01')]\n",
+      "[('open-01', ':ARG0', 'they'), ('open-01', ':ARG1', 'shop'), ('shop', ':mod', 'ice-cream'), ('shop', ':ARG1-of', 'new-01'), ('shop', ':location', 'street'), ('street', ':direction', 'down')]\n",
+      "[('excite-01', ':ARG0', 'try-out-05'), ('try-out-05', ':ARG0', 'kid'), ('try-out-05', ':ARG1', 'they'), ('excite-01', ':ARG1', 'k'), ('excite-01', ':degree', 'so')]\n",
+      "[('visit-01', ':ARG0', 'we'), ('visit-01', ':time', 'date-entity'), ('date-entity', ':weekday', 'saturday')]\n",
+      "[('make-01', ':ARG0', 'they'), ('make-01', ':ARG1', 'ice-cream'), ('ice-cream', ':mod', 'all'), ('ice-cream', ':poss', 't')]\n",
+      "[('delicious', ':domain', 'they')]\n",
+      "[('walk-01', ':ARG0', '\"Pete\"'), ('walk-01', ':ARG1', 'hall'), ('walk-01', ':direction', 'down'), ('walk-01', ':purpose', 'eat-01'), ('eat-01', ':ARG0', 'p'), ('eat-01', ':ARG1', 'ice-cream')]\n",
+      "[('and', ':op1', 'fall-01'), ('fall-01', ':ARG1', 'bit'), ('bit', ':part-of', 'ice-cream'), ('ice-cream', ':poss', 'he'), ('and', ':op2', 'land-01'), ('land-01', ':ARG1', 'b'), ('land-01', ':ARG2', 'floor')]\n",
+      "[('and', ':op1', 'walk-01'), ('walk-01', ':ARG0', '\"Dan\"'), ('walk-01', ':direction', 'past'), ('past', ':op1', '\"Pete\"'), ('and', ':op2', 'step-01'), ('step-01', ':ARG0', 'p'), ('step-01', ':ARG1', 'ice-cream')]\n",
+      "[('and', ':op1', 'slip-01'), ('slip-01', ':ARG1', '\"Dan\"'), ('and', ':op2', 'fall-01'), ('fall-01', ':ARG1', 'p'), ('fall-01', ':ARG4', 'ground'), ('fall-01', ':direction', 'down'), ('fall-01', ':ARG1-of', 'hard-02'), ('hard-02', ':degree', 'very')]\n",
+      "[('offer-01', ':ARG0', '\"Peter\"'), ('offer-01', ':ARG1', 'help-01'), ('help-01', ':ARG0', 'p'), ('help-01', ':ARG1', 'up'), ('help-01', ':ARG2', 'he')]\n",
+      "[('walk-01', ':ARG0', '\"Pam\"'), ('walk-01', ':path', 'street'), ('walk-01', ':direction', 'down')]\n",
+      "[('and', ':op1', 'date-entity'), ('date-entity', ':season', 'summer'), ('and', ':op2', 'hot-05'), ('hot-05', ':ARG1', 'she'), ('hot-05', ':degree', 'very')]\n",
+      "[('see-01', ':ARG0', 'she'), ('see-01', ':ARG1', 'sell-01'), ('sell-01', ':ARG0', 'kid'), ('kid', ':quant', 'some'), ('sell-01', ':ARG1', 'lemonade')]\n",
+      "[('and', ':op1', 'go-01'), ('go-01', ':ARG1', 'she'), ('go-01', ':ARG4', 'stand'), ('stand', ':poss', 'they'), ('go-01', ':direction', 'up'), ('and', ':op2', 'buy-01'), ('buy-01', ':ARG0', 's'), ('buy-01', ':ARG1', 'some')]\n",
+      "[('and', ':op1', 'excite-01'), ('excite-01', ':ARG0', '\"Pam\"'), ('excite-01', ':degree', 'very'), ('and', ':op2', 'cool-off-02'), ('cool-off-02', ':ARG1', 'p'), ('cool-off-02', ':time', 'after'), ('after', ':op1', 'drink-01'), ('drink-01', ':ARG0', 'p'), ('drink-01', ':ARG1', 'it')]\n",
+      "[('play-01', ':ARG0', '\"Jordyn\"'), ('play-01', ':ARG2', 'game'), ('game', ':mod', 'soccer'), ('play-01', ':time', 'today')]\n",
+      "[('and', ':op1', 'good-02'), ('good-02', ':ARG1', 'team'), ('team', ':mod', 'both'), ('good-02', ':degree', 'very'), ('and', ':op2', 'game'), ('game', ':ARG1-of', 'tough-02')]\n",
+      "[('and', ':op1', 'score-01'), ('score-01', ':ARG0', '\"Jordyn\"'), ('score-01', ':ARG1', 'goal'), ('goal', ':ARG0-of', 'win-01'), ('and', ':op2', 'pride-01'), ('pride-01', ':ARG0', 'p'), ('pride-01', ':degree', 'very')]\n",
+      "[('and', ':op1', 'run-02'), ('run-02', ':ARG0', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', '\"Jordyn\"'), ('have-rel-role-91', ':ARG2', 'mom'), ('run-02', ':ARG4', 'p2'), ('and', ':op2', 'hug-01'), ('hug-01', ':ARG0', 'p'), ('hug-01', ':ARG1', 'p2'), ('hug-01', ':mod', 'big')]\n",
+      "[('go-out-17', ':ARG0', '\"Jordyn\"'), ('go-out-17', ':purpose', 'ice-cream'), ('go-out-17', ':time', 'after'), ('after', ':op1', 'win-01'), ('win-01', ':mod', 'big')]\n",
+      "[('invite-01', ':ARG1', '\"Ken\"'), ('invite-01', ':ARG2', 'party'), ('party', ':mod', 'birthday')]\n",
+      "[('grill-01', ':ARG0', 'they'), ('grill-01', ':location', 'pool'), ('grill-01', ':location', 'out')]\n",
+      "[('sure-02', ':polarity', '-'), ('sure-02', ':ARG0', 'he'), ('sure-02', ':ARG1', 'thing'), ('thing', ':ARG1-of', 'take-01'), ('take-01', ':ARG0', 'h')]\n",
+      "[('decide-01', ':ARG0', 'he'), ('decide-01', ':ARG1', 'buy-01'), ('buy-01', ':ARG0', 'h'), ('buy-01', ':ARG1', 'dog'), ('dog', ':mod', 'hot')]\n",
+      "[('thing', ':quant', '1'), ('thing', ':ARG1-of', 'take-01'), ('take-01', ':ARG0', 'everyone'), ('everyone', ':mod', 'else'), ('take-01', ':mod', 'as-well'), ('thing', ':domain', 'it')]\n",
+      "[('want-01', ':ARG0', '\"Horace\"'), ('want-01', ':ARG1', 'learn-01'), ('learn-01', ':ARG0', 'p'), ('learn-01', ':ARG1', 'make-01'), ('make-01', ':ARG0', 'p'), ('make-01', ':ARG1', 'rice'), ('want-01', ':duration', 'multiple'), ('multiple', ':op1', 'temporal-quantity'), ('temporal-quantity', ':quant', '1'), ('temporal-quantity', ':unit', 'month')]\n",
+      "[('ask-02', ':ARG0', 'he'), ('ask-02', ':ARG1', 'come-01'), ('come-01', ':ARG1', '\"Amy\"'), ('\"Amy\"', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 'h'), ('have-rel-role-91', ':ARG2', 'friend'), ('come-01', ':ARG4', 'over'), ('come-01', ':purpose', 'show-01'), ('show-01', ':ARG0', 'p'), ('show-01', ':ARG1', 'thing'), ('show-01', ':ARG2', 'h'), ('ask-02', ':ARG2', 'p')]\n",
+      "[('teach-01', ':ARG0', '\"Amy\"'), ('teach-01', ':ARG1', 'step-01'), ('step-01', ':ARG1', '\"Horace\"'), ('step-01', ':ARG2', 'make-01'), ('make-01', ':ARG1', 'rice'), ('rice', ':ARG1-of', 'delectable-03'), ('step-01', ':mod', 'each'), ('teach-01', ':ARG2', 'p2')]\n",
+      "[('know-01', ':ARG0', '\"Horace\"'), ('know-01', ':ARG1', 'make-01'), ('make-01', ':ARG0', 'p'), ('make-01', ':ARG1', 'it'), ('make-01', ':mod', 'by-oneself'), ('know-01', ':time', 'final')]\n",
+      "[('happy-01', ':ARG0', 'learn-01'), ('learn-01', ':ARG0', 'he'), ('learn-01', ':ARG1', 'make-01'), ('make-01', ':ARG0', 'h2'), ('make-01', ':ARG1', 'rice'), ('happy-01', ':ARG1', 'h2')]\n",
+      "[('ask-02', ':ARG0', 'i'), ('ask-02', ':ARG1', 'help-01'), ('help-01', ':ARG0', 'ii'), ('help-01', ':ARG1', 'dinner'), ('help-01', ':ARG2', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 'ii'), ('have-rel-role-91', ':ARG2', 'mom'), ('help-01', ':time', 'date-entity'), ('date-entity', ':dayperiod', 'night'), ('date-entity', ':mod', 'today')]\n",
+      "[('help-01', ':ARG0', 'i'), ('help-01', ':ARG1', 'make-01'), ('make-01', ':ARG1', 'ball'), ('ball', ':consist-of', 'meat')]\n",
+      "[('ground-01', ':ARG0', 'i'), ('i', ':part', 'hand'), ('ground-01', ':ARG1', 'meat'), ('ground-01', ':instrument', 'h')]\n",
+      "[('and', ':op1', 'squishy'), ('squishy', ':domain', 'it'), ('and', ':op2', 'fun-01'), ('fun-01', ':ARG0', 'ii')]\n",
+      "[('mess-up-02', ':ARG0', 'i'), ('mess-up-02', ':ARG1-of', 'have-degree-91'), ('have-degree-91', ':ARG2', 'big'), ('have-degree-91', ':ARG3', 'so'), ('have-degree-91', ':ARG6', 'obligate-01'), ('obligate-01', ':ARG1', 'ii'), ('obligate-01', ':ARG2', 'bathe-01'), ('bathe-01', ':ARG0', 'ii')]\n"
+     ]
+    },
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "[('make-01', ':ARG0', '\"Jake\"'), ('make-01', ':ARG1', 'pasta')]\n",
+      "[('run-out-05', ':ARG1', 'sauce'), ('run-out-05', ':ARG2', 'he')]\n",
+      "[('obligate-01', ':ARG1', 'he'), ('obligate-01', ':ARG2', 'make-01'), ('make-01', ':ARG0', 'h'), ('make-01', ':ARG1', 'it'), ('it', ':mod', 'tasty')]\n",
+      "[('mix-01', ':ARG0', 'he'), ('mix-01', ':ARG1', 'pasta'), ('mix-01', ':ARG2', 'spice'), ('spice', ':quant', '5'), ('spice', ':mod', 'type')]\n",
+      "[('say-01', ':ARG0', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 'he'), ('have-rel-role-91', ':ARG2', 'friend'), ('say-01', ':ARG1', 'pasta'), ('pasta', ':domain', 'it'), ('pasta', ':ARG1-of', 'have-degree-91'), ('have-degree-91', ':ARG2', 'good-02'), ('good-02', ':ARG1', 'p2'), ('good-02', ':time', 'ever'), ('have-degree-91', ':ARG3', 'most')]\n",
+      "[('cook-01', ':ARG0', 'i'), ('cook-01', ':ARG1', 'dinner'), ('cook-01', ':time', 'date-entity'), ('date-entity', ':dayperiod', 'night'), ('date-entity', ':mod', 'yesterday')]\n",
+      "[('make-01', ':ARG0', 'i'), ('make-01', ':ARG1', 'chicken'), ('chicken', ':quant', 'some'), ('chicken', ':accompanier', 'sauce'), ('sauce', ':location', 'top')]\n",
+      "[('cook-01', ':polarity', '-'), ('cook-01', ':ARG0', 'i'), ('cook-01', ':ARG1-of', 'good-02'), ('cook-01', ':mod', 'usual')]\n",
+      "[('good-02', ':ARG1', 'meal'), ('meal', ':mod', 'this')]\n",
+      "[('pride-01', ':ARG0', 'i'), ('pride-01', ':ARG1', 'ii'), ('pride-01', ':degree', 'very'), ('very', ':degree', 'so')]\n",
+      "[('take-away-05', ':ARG0', '\"Valerie\"'), ('take-away-05', ':ARG1', 'wing'), ('wing', ':part-of', 'chicken'), ('wing', ':poss', 'p')]\n",
+      "[('try-01', ':ARG0', 'she'), ('try-01', ':ARG1', 'bite-01'), ('bite-01', ':ARG0', 's'), ('bite-01', ':ARG2', 'thigh')]\n",
+      "[('stick-01', ':ARG1', 'it'), ('stick-01', ':ARG2', 'she'), ('stick-01', ':time', 'after'), ('after', ':op1', 'swallow-01'), ('swallow-01', ':ARG1', 'ii')]\n",
+      "[('try-01', ':ARG0', 'she'), ('try-01', ':ARG1', 'cough-out-02'), ('cough-out-02', ':ARG0', 's'), ('cough-out-02', ':ARG1', 'it')]\n",
+      "[('and', ':op2', 'help-01'), ('help-01', ':ARG0', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 'she'), ('have-rel-role-91', ':ARG2', 'friend'), ('help-01', ':ARG1', 'take-out-11'), ('take-out-11', ':ARG0', 's'), ('help-01', ':ARG2', 's')]\n",
+      "[('have-03', ':ARG0', '\"Kyle\"'), ('have-03', ':ARG1', 'garden'), ('garden', ':mod', 'small')]\n",
+      "[('grow-03', ':ARG0', 'he'), ('grow-03', ':ARG1', 'pepper'), ('grow-03', ':location', 'it')]\n",
+      "[('have-03', ':ARG0', 'he'), ('have-03', ':ARG1', 'pepper'), ('pepper', ':mod', 'spicy'), ('pepper', ':mod', 'sweet')]\n",
+      "[('add-02', ':ARG0', 'he'), ('add-02', ':ARG1', 'some'), ('add-02', ':ARG2', 'everything'), ('everything', ':ARG1-of', 'cook-01'), ('cook-01', ':ARG0', 'h')]\n",
+      "[('love-01', ':ARG0', '\"Kyle\"'), ('love-01', ':ARG1', 'add-02'), ('add-02', ':ARG0', 'p'), ('add-02', ':ARG1', 'touch'), ('touch', ':ARG1-of', 'special-02'), ('touch', ':poss', 'p'), ('add-02', ':ARG2', 'meal'), ('meal', ':poss', 'p')]\n",
+      "[('open-01', ':ARG1', 'chick-fil-a'), ('chick-fil-a', ':ARG1-of', 'new-01'), ('open-01', ':location', 'street'), ('street', ':mod', 'right')]\n",
+      "[('wait-01', ':polarity', '-'), ('wait-01', ':ARG1', '\"Lucy\"'), ('wait-01', ':ARG2', 'go-02'), ('go-02', ':ARG0', 'p'), ('go-02', ':ARG4', 'it')]\n",
+      "[('and', ':op1', 'walk-01'), ('walk-01', ':ARG0', '\"Lucy\"'), ('walk-01', ':direction', 'in'), ('walk-01', ':mod', 'right'), ('and', ':op2', 'order-02'), ('order-02', ':ARG0', 'p')]\n",
+      "[('get-01', ':ARG0', 'she'), ('get-01', ':ARG1', 'chicken'), ('chicken', ':ARG1-of', 'crispy-03')]\n",
+      "[('amaze-01', ':ARG0', 'it'), ('amaze-01', ':time', 'taste-01'), ('taste-01', ':ARG0', 'she'), ('taste-01', ':ARG1', 'ii')]\n",
+      "[('have-degree-91', ':ARG1', 'chicken'), ('have-degree-91', ':ARG2', 'spicy'), ('have-degree-91', ':ARG3', 'too'), ('too', ':mod', 'entire'), ('have-degree-91', ':ARG6', 'buy-01'), ('buy-01', ':ARG0', 'they'), ('buy-01', ':ARG1', 'c'), ('buy-01', ':purpose', 'dinner')]\n",
+      "[('try-01', ':ARG0', 'they'), ('try-01', ':ARG1', 'eat-01'), ('eat-01', ':ARG0', 't2'), ('eat-01', ':ARG1', 'chicken'), ('try-01', ':mod', 'anyway')]\n",
+      "[('need-01', ':ARG0', 'they'), ('need-01', ':ARG1', 'drink'), ('drink', ':quant', 'lot'), ('need-01', ':ARG1-of', 'cause-01'), ('cause-01', ':ARG0', 'spicy'), ('spicy', ':domain', 'chicken'), ('spicy', ':degree', 'so')]\n",
+      "[('have-03', ':ARG0', 'they'), ('they', ':mod', 'both'), ('have-03', ':ARG1', 'stomachache'), ('have-03', ':time', 'after'), ('after', ':op1', 'eat-01'), ('eat-01', ':ARG0', 't'), ('eat-01', ':ARG1', 'chicken')]\n",
+      "[('decide-01', ':ARG0', 'they'), ('decide-01', ':ARG1', 'eat-01'), ('eat-01', ':polarity', '-'), ('eat-01', ':ARG0', 't'), ('eat-01', ':ARG1', 'spicey'), ('eat-01', ':mod', 'again'), ('eat-01', ':time', 'ever'), ('decide-01', ':ARG1-of', 'cause-01'), ('cause-01', ':ARG0', 'stomachache')]\n",
+      "[('love-01', ':ARG0', '\"Lily\"'), ('love-01', ':ARG1', 'nugget'), ('nugget', ':mod', 'chicken')]\n",
+      "[('decide-01', ':ARG0', 'she'), ('decide-01', ':ARG1', 'make-01'), ('make-01', ':ARG0', 's'), ('make-01', ':ARG1', 'some'), ('make-01', ':beneficiary', 's')]\n",
+      "[('and', ':op1', 'get-01'), ('get-01', ':ARG0', 'she'), ('get-01', ':ARG1', 'ingredient'), ('ingredient', ':mod', 'all'), ('and', ':op2', 'set-02'), ('set-02', ':ARG0', 's'), ('set-02', ':ARG1', 's'), ('set-02', ':ARG2', 'work-01'), ('work-01', ':ARG0', 's')]\n",
+      "[('please-01', ':ARG0', 'work-01'), ('work-01', ':ARG0', 'she'), ('please-01', ':ARG1', 's'), ('please-01', ':time', 'be-done-08'), ('be-done-08', ':ARG0', 'they')]\n",
+      "[('contrast-01', ':ARG2', 'realize-01'), ('realize-01', ':ARG0', 'she'), ('realize-01', ':ARG1', 'need-01'), ('need-01', ':ARG0', 's'), ('need-01', ':ARG1', 'practice-01'), ('practice-01', ':ARG0', 's'), ('need-01', ':mod', 'still'), ('realize-01', ':time', 'taste-01'), ('taste-01', ':ARG0', 's'), ('taste-01', ':ARG1', 'they')]\n",
+      "[('try-01', ':ARG0', 'i'), ('try-01', ':ARG1', 'serve-01'), ('serve-01', ':ARG0', 'ii'), ('serve-01', ':ARG1', 'fries'), ('fries', ':mod', 'potato'), ('potato', ':mod', 'sweet'), ('serve-01', ':ARG2', 'family'), ('family', ':poss', 'ii')]\n",
+      "[('like-01', ':ARG0', 'they'), ('they', ':quant', 'none'), ('they', ':ARG1-of', 'l'), ('like-01', ':degree', 'at-all')]\n",
+      "[('leave-14', ':ARG0', 'they'), ('leave-14', ':ARG1', 'plate'), ('plate', ':poss', 't'), ('leave-14', ':ARG2', 'person'), ('person', ':ARG1-of', 'include-91'), ('include-91', ':ARG2', 't'), ('person', ':ARG3', 'most')]\n",
+      "[('and', ':op1', 'talk-01'), ('talk-01', ':ARG0', 'we'), ('talk-01', ':ARG1', 'it'), ('and', ':op2', 'decide-01'), ('decide-01', ':ARG0', 'w'), ('decide-01', ':ARG1', 'go-out-17'), ('go-out-17', ':ARG1', 'w'), ('go-out-17', ':purpose', 'dinner'), ('go-out-17', ':ARG1-of', 'instead-of-91')]\n",
+      "[('and', ':op1', 'go-02'), ('go-02', ':ARG0', 'we'), ('and', ':op2', 'pick-up-04'), ('pick-up-04', ':ARG0', 'w'), ('pick-up-04', ':ARG1', 'chicken'), ('chicken', ':ARG1-of', 'fry-01'), ('chicken', ':quant', 'some')]\n",
+      "[('open-up-03', ':ARG1', 'place'), ('place', ':mod', 'chicken'), ('place', ':ARG1-of', 'new-01'), ('open-up-03', ':location', 'street'), ('street', ':direction', 'down')]\n",
+      "[('line', ':location', 'out-06'), ('out-06', ':ARG1', 'door'), ('line', ':time', 'go-02'), ('go-02', ':ARG0', 'i'), ('go-02', ':ARG4', 'check-out-05'), ('check-out-05', ':ARG0', 'ii'), ('check-out-05', ':ARG1', 'it')]\n",
+      "[('amaze-01', ':ARG0', 'chicken')]\n",
+      "[('say-01', ':ARG0', 'they'), ('say-01', ':ARG1', 'have-03'), ('have-03', ':ARG0', 'we'), ('have-03', ':ARG1', 'fries'), ('fries', ':ARG1-of', 'free-03'), ('say-01', ':time', 'get-05'), ('get-05', ':ARG1', 'i'), ('get-05', ':ARG2', 'front')]\n",
+      "[('happy-01', ':ARG1', 'i')]\n",
+      "[('go-02', ':ARG0', 'i'), ('go-02', ':ARG4', 'store'), ('go-02', ':purpose', 'buy-01'), ('buy-01', ':ARG0', 'ii'), ('buy-01', ':ARG1', 'food'), ('food', ':purpose', 'make-01'), ('make-01', ':ARG0', 'ii'), ('make-01', ':ARG1', 'salad')]\n",
+      "[('cause-01', ':ARG0', 'out-06'), ('out-06', ':ARG1', 'grocery'), ('out-06', ':ARG2', 'lettuce'), ('cause-01', ':ARG1', 'skip-01'), ('skip-01', ':ARG0', 'i'), ('skip-01', ':ARG1', 'g')]\n",
+      "[('cause-01', ':ARG0', 'out-06'), ('out-06', ':ARG1', 'they'), ('out-06', ':ARG2', 'and'), ('and', ':op1', 'carrot'), ('and', ':op2', 'onion'), ('out-06', ':mod', 'too'), ('cause-01', ':ARG1', 'skip-01'), ('skip-01', ':ARG0', 'i'), ('skip-01', ':ARG1', 'that')]\n",
+      "[('possible-01', ':ARG1', 'buy-01'), ('buy-01', ':ARG0', 'i'), ('buy-01', ':ARG1', 'and'), ('and', ':op1', 'mushroom'), ('and', ':op2', 'tomato'), ('possible-01', ':mod', 'only')]\n",
+      "[('decide-01', ':ARG0', 'i'), ('decide-01', ':ARG1', 'and'), ('and', ':op1', 'use-01'), ('use-01', ':ARG0', 'ii'), ('use-01', ':ARG1', 'that'), ('use-01', ':ARG2', 'make-01'), ('make-01', ':ARG0', 'ii'), ('make-01', ':ARG1', 'sauce'), ('sauce', ':ARG1-of', 'brown-02'), ('and', ':op2', 'get-01'), ('get-01', ':ARG0', 'ii'), ('get-01', ':ARG1', 'chicken'), ('get-01', ':purpose', 's')]\n",
+      "[('love-01', ':ARG0', 'i'), ('love-01', ':ARG1', 'bread'), ('bread', ':consist-of', 'garlic')]\n",
+      "[('decide-01', ':ARG0', 'i'), ('decide-01', ':ARG1', 'eat-01'), ('eat-01', ':ARG0', 'ii'), ('eat-01', ':ARG1', 'loaf'), ('loaf', ':quant', '2'), ('eat-01', ':time', 'before'), ('before', ':op1', 'wed-01'), ('wed-01', ':ARG1', 'ii')]\n",
+      "[('lean-01', ':ARG0', 'i'), ('lean-01', ':ARG1', 'kiss-01'), ('kiss-01', ':ARG0', 'ii'), ('kiss-01', ':ARG1', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 'ii'), ('have-rel-role-91', ':ARG2', 'bride'), ('lean-01', ':location', 'altar')]\n",
+      "[('and', ':op1', 'smell-01'), ('smell-01', ':ARG0', 'she'), ('smell-01', ':ARG1', 'bread'), ('bread', ':mod', 'garlic'), ('smell-01', ':source', 'breathe-01'), ('breathe-01', ':ARG0', 'i'), ('and', ':op2', 'throw-up-07'), ('throw-up-07', ':ARG0', 's2'), ('throw-up-07', ':ARG1', 'ii')]\n",
+      "[('day', ':ARG1-of', 'have-degree-91'), ('have-degree-91', ':ARG2', 'bad-07'), ('bad-07', ':ARG1', 'd'), ('have-degree-91', ':ARG3', 'most'), ('have-degree-91', ':ARG5', 'life'), ('life', ':poss', 'i')]\n"
+     ]
+    },
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "[('decide-01', ':ARG0', '\"Marie\"'), ('decide-01', ':ARG1', 'make-01'), ('make-01', ':ARG0', 'p'), ('make-01', ':ARG1', 'chicken'), ('make-01', ':purpose', 'dinner')]\n",
+      "[('and', ':op1', 'defrost-01'), ('defrost-01', ':ARG0', 'she'), ('defrost-01', ':ARG1', 'chicken'), ('and', ':op2', 'cut-01'), ('cut-01', ':ARG0', 's'), ('cut-01', ':ARG1', 'piece'), ('cut-01', ':ARG2', 'half'), ('cut-01', ':time', 'then')]\n",
+      "[('roll-01', ':ARG0', 'she'), ('roll-01', ':ARG1', 'chicken'), ('roll-01', ':ARG2', 'and'), ('and', ':op1', 'butter'), ('and', ':op2', 'flakes'), ('flakes', ':consist-of', 'corn'), ('and', ':op3', 'cheese')]\n",
+      "[('and', ':op1', 'put-01'), ('put-01', ':ARG0', 'she'), ('put-01', ':ARG1', 'they'), ('put-01', ':ARG2', 'pan'), ('and', ':op2', 'bake-01'), ('bake-01', ':ARG0', 's'), ('bake-01', ':ARG1', 't'), ('bake-01', ':duration', 'temporal-quantity'), ('temporal-quantity', ':quant', '1'), ('temporal-quantity', ':unit', 'hour')]\n",
+      "[('sit-down-02', ':ARG1', 'family'), ('family', ':ARG1-of', 'have-org-role-91'), ('have-org-role-91', ':ARG0', 'she'), ('have-org-role-91', ':ARG2', 'member'), ('sit-down-02', ':purpose', 'eat-01'), ('eat-01', ':ARG0', 'f'), ('sit-down-02', ':time', 'once'), ('once', ':op1', 'do-02'), ('do-02', ':ARG1', 'chicken')]\n",
+      "[('buy-01', ':ARG0', '\"Tammy\"'), ('buy-01', ':ARG1', 'pepper'), ('pepper', ':mod', 'colorful'), ('colorful', ':degree', 'pretty'), ('pepper', ':quant', 'some'), ('buy-01', ':location', 'market')]\n",
+      "[('make-01', ':ARG0', 'she'), ('make-01', ':ARG1', 'pasta'), ('pasta', ':accompanier', 'sauce'), ('sauce', ':mod', 'pepper'), ('pepper', ':mod', 'olive'), ('make-01', ':beneficiary', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 's'), ('have-rel-role-91', ':ARG2', 'boyfriend'), ('person', ':ARG1-of', 'new-01')]\n",
+      "[('tell-01', ':ARG0', 'he'), ('tell-01', ':ARG1', 'contrast-01'), ('contrast-01', ':ARG1', 'good-02'), ('good-02', ':ARG1', 'it'), ('contrast-01', ':ARG2', 'spicy'), ('spicy', ':degree', 'little'), ('tell-01', ':ARG2', 'she')]\n",
+      "[('decide-01', ':ARG0', 'she'), ('decide-01', ':ARG1', 'mix-01'), ('mix-01', ':ARG0', 's'), ('mix-01', ':ARG1', 'sauce'), ('sauce', ':mod', 'extra'), ('mix-01', ':ARG2', 'food'), ('food', ':poss', 'dog'), ('dog', ':poss', 's')]\n",
+      "[('fear-01', ':ARG0', 'he'), ('fear-01', ':ARG1', 'hurt-01'), ('hurt-01', ':ARG0', 'she'), ('hurt-01', ':ARG1', 'dog'), ('hurt-01', ':ARG1-of', 'cause-01'), ('cause-01', ':ARG0', 'hot-05'), ('hot-05', ':ARG1', 'sauce'), ('hot-05', ':degree', 'so'), ('fear-01', ':ARG0-of', 'c'), ('fear-01', ':ARG1', 'stop-01'), ('stop-01', ':ARG0', 'h'), ('stop-01', ':ARG1', 's')]\n",
+      "[('love-01', ':ARG0', 'i'), ('love-01', ':ARG1', 'oil'), ('oil', ':ARG2-of', 'cook-01'), ('cook-01', ':ARG1', 'vegetable'), ('love-01', ':degree', 'much'), ('much', ':degree', 'so')]\n",
+      "[('smother-01', ':ARG0', 'it'), ('smother-01', ':ARG1', 'fries'), ('smother-01', ':time', 'make-01'), ('make-01', ':ARG0', 'i'), ('make-01', ':ARG1', 'f')]\n",
+      "[('contrast-01', ':ARG2', 'bad-04'), ('bad-04', ':ARG1', 'oil'), ('oil', ':ARG1-of', 'use-01'), ('use-01', ':ARG0', 'i'), ('bad-04', ':ARG2', 'health'), ('health', ':poss', 'ii')]\n",
+      "[('sad-02', ':ARG0', 'possible-01'), ('possible-01', ':ARG1', 'obligate-01'), ('obligate-01', ':ARG1', 'i'), ('obligate-01', ':ARG2', 'give-up-07'), ('give-up-07', ':ARG0', 'ii'), ('give-up-07', ':ARG1', 'food'), ('food', ':ARG1-of', 'fry-01'), ('sad-02', ':ARG1', 'ii')]\n",
+      "[('contrast-01', ':ARG2', 'tell-01'), ('tell-01', ':ARG0', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 'i'), ('have-rel-role-91', ':ARG2', 'friend'), ('tell-01', ':ARG1', 'use-01'), ('use-01', ':ARG0', 'ii'), ('use-01', ':ARG1', 'oil'), ('oil', ':mod', 'olive'), ('use-01', ':mod', 'just'), ('use-01', ':ARG1-of', 'instead-of-91'), ('tell-01', ':ARG2', 'ii')]\n",
+      "[('need-01', ':ARG0', '\"Gil\"'), ('need-01', ':ARG1', 'onion'), ('need-01', ':purpose', 'dinner'), ('dinner', ':poss', 'p')]\n",
+      "[('taste-01', ':polarity', '-'), ('taste-01', ':ARG1', 'bologna'), ('bologna', ':ARG1-of', 'fry-01'), ('bologna', ':poss', 'he'), ('taste-01', ':ARG1-of', 'right-02'), ('taste-01', ':condition', 'it'), ('it', ':polarity', '-'), ('taste-01', ':mod', 'just')]\n",
+      "[('contrast-01', ':ARG2', 'have-03'), ('have-03', ':polarity', '-'), ('have-03', ':ARG0', 'he'), ('have-03', ':ARG1', 'time'), ('have-03', ':purpose', 'run-02'), ('run-02', ':ARG0', 'h2'), ('run-02', ':destination', 'store')]\n",
+      "[('decide-01', ':ARG0', 'he'), ('decide-01', ':ARG1', 'borrow-01'), ('borrow-01', ':ARG0', 'h'), ('borrow-01', ':ARG1', 'one'), ('borrow-01', ':ARG2', 'neighbor'), ('neighbor', ':poss', 'h'), ('decide-01', ':time', 'then')]\n",
+      "[('and', ':op1', 'lend-01'), ('lend-01', ':ARG0', 'she'), ('lend-01', ':ARG1', 'onion'), ('lend-01', ':ARG2', 'he'), ('and', ':op2', 'save-02'), ('save-02', ':ARG0', 's'), ('save-02', ':ARG1', 'dinner')]\n",
+      "[('marry-01', ':ARG1', '\"Marvin\"'), ('marry-01', ':ARG2', '\"Mary\"')]\n",
+      "[('sick-05', ':ARG1', 'they'), ('they', ':mod', 'both'), ('sick-05', ':time', 'time'), ('time', ':ARG1-of', 'same-01')]\n",
+      "[('ask-01', ':ARG0', 'i'), ('ask-01', ':ARG1', 'thing'), ('thing', ':ARG1-of', 'do-02'), ('do-02', ':ARG0', 'ii'), ('do-02', ':ARG2', 'help-01'), ('help-01', ':ARG0', 'ii'), ('help-01', ':ARG1', 'they'), ('do-02', ':ARG1-of', 'possible-01')]\n",
+      "[('ask-02', ':ARG0', 'they'), ('ask-02', ':ARG1', 'make-01'), ('make-01', ':ARG0', 'i'), ('make-01', ':ARG1', 'soup'), ('soup', ':mod', 'chicken'), ('make-01', ':ARG2', 't'), ('ask-02', ':ARG2', 'ii')]\n",
+      "[('and', ':op1', 'make-01'), ('make-01', ':ARG0', 'i'), ('make-01', ':ARG1', 'soup'), ('soup', ':mod', 'chicken'), ('and', ':op2', 'feel-01'), ('feel-01', ':ARG0', 'they'), ('feel-01', ':ARG1', 'good-02'), ('good-02', ':ARG2-of', 'have-degree-91'), ('have-degree-91', ':ARG1', 'f'), ('have-degree-91', ':ARG3', 'more'), ('feel-01', ':time', 'now')]\n",
+      "[('try-01', ':ARG0', '\"June\"'), ('try-01', ':ARG1', 'start-01'), ('start-01', ':ARG0', 'p'), ('start-01', ':ARG1', 'garden')]\n",
+      "[('and', ':op1', 'work-01'), ('work-01', ':ARG0', 'she'), ('work-01', ':mod', 'all'), ('work-01', ':time', 'day'), ('day', ':mod', 'one'), ('and', ':op2', 'pride-01'), ('pride-01', ':ARG0', 's'), ('pride-01', ':degree', 'really')]\n",
+      "[('see-01', ':ARG0', 'she'), ('see-01', ':ARG1', 'deer'), ('deer', ':ARG0-of', 'eat-01'), ('eat-01', ':ARG1', 'plant'), ('see-01', ':time', 'date-entity'), ('date-entity', ':dayperiod', 'morning'), ('date-entity', ':mod', 'next')]\n",
+      "[('have-03', ':polarity', '-'), ('have-03', ':ARG0', 'she'), ('have-03', ':ARG1', 'idea'), ('idea', ':topic', 'thing'), ('thing', ':ARG1-of', 'do-02'), ('do-02', ':ARG0', 's')]\n",
+      "[('decide-01', ':ARG0', 'she'), ('decide-01', ':ARG1', 'put-up-11'), ('put-up-11', ':ARG0', 's'), ('put-up-11', ':ARG1', 'wire'), ('wire', ':mod', 'chicken'), ('wire', ':quant', 'some'), ('decide-01', ':time', 'final')]\n",
+      "[('want-01', ':ARG0', '\"Ron\"'), ('want-01', ':ARG1', 'get-01'), ('get-01', ':ARG0', 'p'), ('get-01', ':ARG1', 'produce'), ('produce', ':ARG1-of', 'fresh-04'), ('produce', ':quant', 'some')]\n",
+      "[('tire-01', ':ARG0', 'and'), ('and', ':op1', 'pepper'), ('and', ':op2', 'tomato'), ('and', ':mod', 'just'), ('and', ':location', 'store'), ('store', ':mod', 'grocery'), ('tire-01', ':ARG1', 'he')]\n",
+      "[('see-01', ':ARG0', 'he'), ('see-01', ':ARG1', 'market'), ('market', ':mod', 'person'), ('person', ':ARG0-of', 'farm-01'), ('see-01', ':time', 'drive-01'), ('drive-01', ':ARG0', 'h'), ('drive-01', ':direction', 'along')]\n",
+      "[('and', ':op1', 'go-02'), ('go-02', ':ARG0', 'he'), ('go-02', ':ARG4', 'market'), ('and', ':op2', 'buy-01'), ('buy-01', ':ARG0', 'h'), ('buy-01', ':ARG1', 'vegetable'), ('vegetable', ':quant', 'some'), ('vegetable', ':ARG1-of', 'have-03'), ('have-03', ':polarity', '-'), ('have-03', ':ARG0', 'h'), ('have-03', ':time', 'ever'), ('have-03', ':time', 'before')]\n",
+      "[('turn-out-11', ':ARG1', 'squash'), ('squash', ':mod', 'spaghetti'), ('turn-out-11', ':ARG2', 'have-degree-91'), ('have-degree-91', ':ARG1', 'discover-01'), ('discover-01', ':ARG0', 'he'), ('discover-01', ':time', 'ever'), ('have-degree-91', ':ARG2', 'good-02'), ('good-02', ':ARG1', 'd'), ('have-degree-91', ':ARG3', 'most')]\n",
+      "[('buy-01', ':ARG0', 'i'), ('buy-01', ':ARG1', 'squash'), ('squash', ':mod', 'spaghetti'), ('buy-01', ':purpose', 'cook-01'), ('cook-01', ':ARG0', 'ii'), ('cook-01', ':ARG1', 's'), ('cook-01', ':purpose', 'dinner')]\n",
+      "[('try-01', ':ARG0', 'it'), ('try-01', ':ARG1', 'cut-02'), ('cut-02', ':ARG0', 'ii'), ('cut-02', ':purpose', 'possible-01'), ('possible-01', ':ARG1', 'cook-01'), ('cook-01', ':ARG0', 'i'), ('cook-01', ':ARG1', 'ii')]\n",
+      "[('and', ':op1', 'hard-02'), ('hard-02', ':ARG1', 'it'), ('hard-02', ':degree', 'very'), ('and', ':op2', 'slip-01'), ('slip-01', ':ARG1', 'knife'), ('knife', ':poss', 'i'), ('and', ':ARG2-of', 'fortunate-01'), ('fortunate-01', ':polarity', '-')]\n",
+      "[('cut-01', ':ARG0', 'it'), ('cut-01', ':ARG1', 'hand'), ('hand', ':part-of', 'i'), ('cut-01', ':ARG1-of', 'bad-07'), ('bad-07', ':degree', 'very')]\n",
+      "[('and', ':op1', 'throw-01'), ('throw-01', ':ARG0', 'i'), ('throw-01', ':ARG1', 'squash'), ('throw-01', ':ARG2', 'away'), ('and', ':op2', 'order-01'), ('order-01', ':ARG0', 'ii'), ('order-01', ':ARG1', 'pizza'), ('order-01', ':ARG1-of', 'instead-of-91')]\n",
+      "[('have-03', ':ARG0', '\"Logan\"'), ('have-03', ':ARG1', 'food'), ('food', ':ARG1-of', 'new-01'), ('have-03', ':time', 'today')]\n",
+      "[('have-03', ':ARG0', 'he'), ('have-03', ':ARG1', 'and'), ('and', ':op1', 'chicken'), ('and', ':op2', 'potato'), ('and', ':op3', 'broccoli')]\n",
+      "[('sure-02', ':polarity', '-'), ('sure-02', ':ARG0', 'he'), ('sure-02', ':ARG1', 'truth-value'), ('truth-value', ':polarity-of', 'like-01'), ('like-01', ':ARG0', 'h'), ('like-01', ':ARG1', 'broccoli')]\n",
+      "[('say-01', ':ARG0', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 'he'), ('have-rel-role-91', ':ARG2', 'mom'), ('say-01', ':ARG1', 'try-01'), ('try-01', ':mode', 'imperative'), ('try-01', ':ARG0', 'h2'), ('try-01', ':ARG1', 'it'), ('try-01', ':ARG1-of', 'cause-01'), ('cause-01', ':ARG0', 'possible-01'), ('possible-01', ':ARG1', 'like-01'), ('like-01', ':ARG0', 'h2'), ('like-01', ':ARG1', 'ii')]\n",
+      "[('like-01', ':ARG0', '\"Logan\"'), ('like-01', ':ARG1', 'broccoli')]\n"
+     ]
+    },
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "[('dislike-01', ':ARG0', '\"Ed\"'), ('dislike-01', ':ARG1', 'rice')]\n",
+      "[('offer-01', ':ARG0', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 'he'), ('have-rel-role-91', ':ARG2', 'girlfriend'), ('offer-01', ':ARG1', 'make-01'), ('make-01', ':ARG0', 'p'), ('make-01', ':ARG1', 'dish'), ('dish', ':ARG1-of', 'special-02'), ('make-01', ':ARG2', 'h2'), ('offer-01', ':time', 'then')]\n",
+      "[('and', ':op1', 'boil-01'), ('boil-01', ':ARG0', 'she'), ('boil-01', ':ARG1', 'rice'), ('and', ':op2', 'butt-01'), ('butt-01', ':ARG0', 's'), ('butt-01', ':ARG1', 'r')]\n",
+      "[('give-01', ':ARG0', 'she'), ('give-01', ':ARG1', 'it'), ('give-01', ':ARG2', '\"Ed\"'), ('\"Ed\"', ':ARG0-of', 'try-01'), ('try-01', ':ARG1', 'ii'), ('give-01', ':time', 'then')]\n",
+      "[('decide-01', ':ARG0', '\"Ed\"'), ('decide-01', ':ARG1', 'gross-06'), ('gross-06', ':polarity', '-'), ('gross-06', ':ARG1', 'rice'), ('gross-06', ':degree', 'so'), ('gross-06', ':concession', 'after-all')]\n",
+      "[('ask-02', ':ARG1', 'bring-01'), ('bring-01', ':ARG0', 'person'), ('person', ':ARG1-of', 'employ-01'), ('person', ':mod', 'all'), ('bring-01', ':ARG1', 'dish'), ('bring-01', ':ARG2', 'party'), ('party', ':mod', 'office'), ('ask-02', ':ARG2', 'p')]\n",
+      "[('decide-01', ':ARG0', '\"Jeremy\"'), ('decide-01', ':ARG1', 'make-01'), ('make-01', ':ARG0', 'p'), ('make-01', ':ARG1', 'dip'), ('dip', ':mod', 'chicken'), ('chicken', ':mod', 'buffalo'), ('dip', ':ARG1-of', 'fame-01'), ('dip', ':poss', 'family'), ('family', ':poss', 'p')]\n",
+      "[('help-01', ':ARG0', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 'he'), ('have-rel-role-91', ':ARG2', 'mother'), ('help-01', ':ARG1', 'h3'), ('help-01', ':ARG2', 'part'), ('part', ':ARG1-of', 'hard-02'), ('help-01', ':mod', 'usual')]\n",
+      "[('try-01', ':ARG0', 'he'), ('try-01', ':ARG1', 'make-01'), ('make-01', ':ARG0', 'h'), ('make-01', ':ARG1', 'it'), ('try-01', ':time', 'time'), ('time', ':mod', 'this')]\n",
+      "[('and', ':op1', 'wrong-04'), ('wrong-04', ':ARG1', 'he'), ('wrong-04', ':ARG2', 'measure-01'), ('measure-01', ':ARG0', 'h'), ('and', ':op2', 'have-degree-91'), ('have-degree-91', ':ARG1', 'dip'), ('have-degree-91', ':ARG2', 'spicy'), ('have-degree-91', ':ARG3', 'too'), ('have-degree-91', ':ARG6', 'eat-01'), ('eat-01', ':ARG1', 'd'), ('and', ':ARG2-of', 'fortunate-01'), ('fortunate-01', ':polarity', '-')]\n",
+      "[('and', ':op1', 'like-01'), ('like-01', ':ARG0', 'i'), ('like-01', ':ARG1', 'cook-01'), ('cook-01', ':ARG0', 'ii'), ('and', ':op2', 'have-03'), ('have-03', ':ARG0', 'ii'), ('have-03', ':ARG1', 'dish'), ('dish', ':ARG1-of', 'favor-01'), ('favor-01', ':ARG0', 'ii'), ('dish', ':quant', 'few')]\n",
+      "[('and', ':op1', 'make-01'), ('make-01', ':ARG0', 'i'), ('make-01', ':ARG1', 'pot'), ('pot', ':consist-of', 'rice'), ('and', ':op2', 'toss-01'), ('toss-01', ':ARG0', 'ii'), ('toss-01', ':ARG1', 'beet'), ('beet', ':ARG1-of', 'dice-01'), ('toss-01', ':purpose', 'cook-01'), ('cook-01', ':ARG0', 'ii'), ('cook-01', ':ARG2', 'b'), ('and', ':frequency', 'often')]\n",
+      "[('and', ':op1', 'see-01'), ('see-01', ':frequency', '1'), ('see-01', ':ARG0', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 'i'), ('have-rel-role-91', ':ARG2', 'friend'), ('see-01', ':ARG1', 'this'), ('and', ':op2', 'want-01'), ('want-01', ':ARG0', 'p'), ('want-01', ':ARG1', 'try-01'), ('try-01', ':ARG0', 'p'), ('try-01', ':ARG1', 'thing'), ('thing', ':ARG1-of', 'same-01')]\n",
+      "[('put-01', ':ARG0', 'he'), ('put-01', ':ARG1', 'beet'), ('beet', ':mod', 'whole'), ('put-01', ':ARG2', 'inside'), ('put-01', ':manner', 'mistake-02'), ('mistake-02', ':ARG0', 'h'), ('put-01', ':manner', 'cut-02'), ('cut-02', ':polarity', '-'), ('cut-02', ':ARG0', 'h'), ('cut-02', ':ARG1', 'b')]\n",
+      "[('and', ':op1', 'tell-01'), ('tell-01', ':ARG0', 'i'), ('tell-01', ':ARG1', 'mistake-02'), ('mistake-02', ':ARG0', 'he'), ('tell-01', ':ARG2', 'h'), ('and', ':op2', 'succeed-01'), ('succeed-01', ':ARG0', 'h'), ('succeed-01', ':time', 'time'), ('time', ':mod', 'next'), ('succeed-01', ':ARG2-of', 'have-degree-91'), ('have-degree-91', ':ARG1', 'h'), ('have-degree-91', ':ARG3', 'more')]\n",
+      "[('decide-01', ':ARG0', 'i'), ('decide-01', ':ARG1', 'cook-01'), ('cook-01', ':ARG0', 'ii'), ('cook-01', ':ARG1', 'dinner'), ('cook-01', ':ARG2', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 'ii'), ('have-rel-role-91', ':ARG2', 'boyfriend'), ('decide-01', ':time', 'date-entity'), ('date-entity', ':dayperiod', 'night'), ('date-entity', ':mod', 'yesterday')]\n",
+      "[('cause-01', ':ARG0', 'favor-01'), ('favor-01', ':ARG0', 'he'), ('favor-01', ':ARG1', 'pasta'), ('cause-01', ':ARG1', 'cook-01'), ('cook-01', ':ARG0', 'i'), ('cook-01', ':ARG1', 'p')]\n",
+      "[('make-01', ':ARG0', 'i'), ('make-01', ':ARG1', 'bread'), ('make-01', ':mod', 'also')]\n",
+      "[('contrast-01', ':ARG1', 'come-out-09'), ('come-out-09', ':ARG1', 'pasta'), ('come-out-09', ':ARG1-of', 'good-02'), ('contrast-01', ':ARG2', 'burn-01'), ('burn-01', ':ARG0', 'i'), ('burn-01', ':ARG1', 'toast')]\n",
+      "[('like-01', ':ARG0', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 'i'), ('have-rel-role-91', ':ARG2', 'boyfriend'), ('like-01', ':ARG1', 'it'), ('like-01', ':mod', 'still')]\n",
+      "[('hunger-01', ':ARG0', 'chili'), ('chili', ':quant', 'some'), ('hunger-01', ':ARG1', '\"Miranda\"')]\n",
+      "[('contrast-01', ':ARG1', 'love-01'), ('love-01', ':ARG0', 'she'), ('love-01', ':ARG1', 'chili'), ('contrast-01', ':ARG2', 'make-01'), ('make-01', ':polarity', '-'), ('make-01', ':ARG0', 's'), ('make-01', ':ARG1', 'c2'), ('make-01', ':time', 'ever')]\n",
+      "[('follow-02', ':ARG0', 'she'), ('follow-02', ':ARG1', 'recipe')]\n",
+      "[('add-02', ':ARG0', 'she'), ('add-02', ':ARG1', 'spice'), ('spice', ':mod', 'extra'), ('add-02', ':ARG1-of', 'cause-01'), ('cause-01', ':ARG0', 'love-01'), ('love-01', ':ARG0', 's'), ('love-01', ':ARG1', 'food'), ('food', ':ARG1-of', 'hot-05')]\n",
+      "[('cause-01', ':ARG0', 'have-degree-91'), ('have-degree-91', ':ARG1', 'chili'), ('have-degree-91', ':ARG2', 'spicy'), ('have-degree-91', ':ARG3', 'too'), ('too', ':mod', 'way'), ('cause-01', ':ARG1', 'obligate-01'), ('obligate-01', ':ARG1', 'she'), ('obligate-01', ':ARG2', 'throw-out-06'), ('throw-out-06', ':ARG0', 's2'), ('throw-out-06', ':ARG1', 'c2')]\n",
+      "[('love-01', ':ARG0', '\"Ray\"'), ('love-01', ':ARG1', 'eat-01'), ('eat-01', ':ARG0', 'p'), ('eat-01', ':ARG1', 'rice')]\n",
+      "[('run-out-05', ':ARG1', 'bag'), ('bag', ':consist-of', 'rice'), ('run-out-05', ':ARG2', 'he'), ('run-out-05', ':time', 'day'), ('day', ':mod', 'one')]\n",
+      "[('decide-01', ':ARG0', '\"Ray\"'), ('decide-01', ':ARG1', 'grow-03'), ('grow-03', ':ARG0', 'p'), ('grow-03', ':ARG1', 'rice'), ('rice', ':poss', 'p')]\n",
+      "[('plant-01', ':ARG0', 'he'), ('plant-01', ':ARG1', 'rice'), ('rice', ':quant', 'some'), ('plant-01', ':location', 'planter'), ('planter', ':mod', 'small'), ('planter', ':location', 'backyard'), ('backyard', ':poss', 'h')]\n",
+      "[('pay-01', ':polarity', '-'), ('pay-01', ':ARG0', '\"Ray\"'), ('pay-01', ':ARG3', 'rice'), ('rice', ':poss', 'p2'), ('pay-01', ':time', 'now'), ('pay-01', ':time', 'ever')]\n",
+      "[('cook-01', ':ARG0', '\"Tim\"'), ('cook-01', ':ARG1', 'pasta')]\n",
+      "[('boil-01', ':ARG0', 'he'), ('boil-01', ':ARG1', 'noodle'), ('boil-01', ':location', 'pot')]\n",
+      "[('start-01', ':ARG1', 'pour-01'), ('pour-01', ':ARG1', 'water'), ('pour-01', ':ARG2', 'pot'), ('pour-01', ':direction', 'out')]\n",
+      "[('put-01', ':ARG0', 'he'), ('put-01', ':ARG1', 'water'), ('water', ':ARG1-of', 'have-quant-91'), ('have-quant-91', ':ARG2', 'much'), ('have-quant-91', ':ARG3', 'too')]\n",
+      "[('clean-up-02', ':ARG0', '\"Tim\"'), ('clean-up-02', ':ARG1', 'mess'), ('mess', ':poss', 'p')]\n",
+      "[('roll-01', ':ARG0', '\"Andy\"'), ('roll-01', ':ARG1', 'oat'), ('roll-01', ':purpose', 'eat-01'), ('eat-01', ':ARG0', 'p'), ('eat-01', ':location', 'house'), ('house', ':poss', 'p'), ('roll-01', ':mod', 'only')]\n",
+      "[('contrast-01', ':ARG2', 'have-degree-91'), ('have-degree-91', ':ARG1', 'it'), ('have-degree-91', ':ARG2', 'hot-05'), ('have-degree-91', ':ARG3', 'too'), ('have-degree-91', ':ARG6', 'make-01'), ('make-01', ':ARG1', 'oatmeal')]\n",
+      "[('decide-01', ':ARG0', 'he'), ('decide-01', ':ARG1', 'order-02'), ('order-02', ':ARG0', 'h'), ('order-02', ':ARG1', 'sandwich'), ('sandwich', ':quant', 'some')]\n",
+      "[('arrive-01', ':ARG1', 'they'), ('arrive-01', ':time', 'final'), ('arrive-01', ':time', 'after'), ('after', ':op1', 'wait-01'), ('wait-01', ':ARG1', 't'), ('wait-01', ':duration', 'multiple'), ('multiple', ':op1', 'temporal-quantity'), ('temporal-quantity', ':quant', '1'), ('temporal-quantity', ':unit', 'hour')]\n",
+      "[('contrast-01', ':ARG2', 'have-degree-91'), ('have-degree-91', ':ARG1', 'weather'), ('have-degree-91', ':ARG2', 'cool-04'), ('cool-04', ':ARG1', 'w'), ('have-degree-91', ':ARG3', 'enough'), ('have-degree-91', ':ARG6', 'eat-01'), ('eat-01', ':ARG1', 'oatmeal'), ('have-degree-91', ':time', 'then')]\n",
+      "[('feel-01', ':ARG0', '\"Ron\"'), ('feel-01', ':ARG1', 'tire-01'), ('tire-01', ':ARG1', 'p'), ('feel-01', ':time', 'after'), ('after', ':op1', 'work-01'), ('work-01', ':ARG0', 'p'), ('work-01', ':ARG1-of', 'hard-02'), ('hard-02', ':degree', 'very')]\n",
+      "[('decide-01', ':ARG0', 'he'), ('decide-01', ':ARG1', 'prefer-01'), ('prefer-01', ':ARG0', 'h'), ('prefer-01', ':ARG1', 'cook-01'), ('cook-01', ':polarity', '-'), ('cook-01', ':ARG0', 'h'), ('cook-01', ':ARG1', 'dinner')]\n",
+      "[('order-02', ':ARG0', '\"Ron\"'), ('order-02', ':ARG1', 'pizza'), ('order-02', ':ARG1-of', 'instead-of-91')]\n",
+      "[('eat-01', ':ARG0', 'he'), ('eat-01', ':ARG1', 'pizza'), ('pizza', ':mod', 'entire'), ('eat-01', ':time', 'arrive-01'), ('arrive-01', ':ARG1', 'it')]\n",
+      "[('glad-02', ':ARG0', 'order-02'), ('order-02', ':ARG0', '\"Ron\"'), ('order-02', ':ARG1', 'dinner'), ('order-02', ':time', 'date-entity'), ('date-entity', ':dayperiod', 'night'), ('date-entity', ':mod', 'today'), ('glad-02', ':ARG1', 'p')]\n",
+      "[('hunger-01', ':ARG0', '\"Bill\"')]\n",
+      "[('get-01', ':mode', 'expressive'), ('get-01', ':ARG0', 'he'), ('get-01', ':ARG1', 'ham'), ('ham', ':quant', 'some')]\n",
+      "[('get-01', ':mode', 'expressive'), ('get-01', ':ARG0', 'he'), ('get-01', ':ARG1', 'cheese'), ('cheese', ':quant', 'some')]\n",
+      "[('get-01', ':ARG0', 'he'), ('get-01', ':ARG1', 'loaf'), ('loaf', ':consist-of', 'bread'), ('loaf', ':ARG1-of', 'have-degree-91'), ('have-degree-91', ':ARG2', 'big'), ('have-degree-91', ':ARG3', 'most'), ('have-degree-91', ':ARG5', 'see-01'), ('see-01', ':ARG0', 'h'), ('see-01', ':time', 'ever'), ('get-01', ':time', 'then')]\n",
+      "[('and', ':op1', 'make-01'), ('make-01', ':ARG0', 'he'), ('make-01', ':ARG1', 'sandwich'), ('sandwich', ':mod', 'huge'), ('and', ':op2', 'full-09'), ('full-09', ':ARG1', 'h'), ('full-09', ':duration', 'day'), ('day', ':mod', 'all')]\n",
+      "[('have-03', ':ARG0', '\"Chief\"'), ('have-03', ':ARG1', 'job'), ('job', ':mod', 'cook-01')]\n",
+      "[('cook-01', ':ARG0', '\"Chip\"'), ('cook-01', ':ARG1', 'food'), ('cook-01', ':location', 'work-01')]\n",
+      "[('burn-01', ':ARG0', 'chip'), ('burn-01', ':ARG1', 'food')]\n",
+      "[('fire-02', ':ARG1', 'chip')]\n",
+      "[('go-02', ':ARG0', '\"Chief\"'), ('go-02', ':ARG4', 'home'), ('go-02', ':purpose', 'look-01'), ('look-01', ':ARG0', 'p'), ('look-01', ':ARG1', 'work-01'), ('work-01', ':ARG0', 'p'), ('work-01', ':mod', 'more')]\n"
+     ]
+    },
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "[('hunger-01', ':ARG0', '\"Tom\"'), ('hunger-01', ':degree', 'very')]\n",
+      "[('open-01', ':ARG0', 'he'), ('open-01', ':ARG1', 'refrigerator'), ('refrigerator', ':poss', 'h')]\n",
+      "[('see-01', ':ARG0', 'he'), ('see-01', ':ARG1', 'egg')]\n",
+      "[('love-01', ':ARG0', 'he'), ('love-01', ':ARG1', 'egg'), ('egg', ':ARG1-of', 'scramble-01')]\n",
+      "[('and', ':op1', 'make-01'), ('make-01', ':ARG0', 'he'), ('make-01', ':ARG1', 'egg'), ('egg', ':ARG1-of', 'scramble-01'), ('and', ':op2', 'enjoy-01'), ('enjoy-01', ':ARG0', 'h'), ('enjoy-01', ':ARG1', 'meal')]\n",
+      "[('hunger-01', ':ARG0', '\"Joe\"')]\n",
+      "[('want-01', ':ARG0', 'he'), ('want-01', ':ARG1', 'try-out-05'), ('try-out-05', ':ARG0', 'h'), ('try-out-05', ':ARG1', 'place'), ('place', ':ARG1-of', 'new-01')]\n",
+      "[('find-out-03', ':ARG0', 'he'), ('find-out-03', ':ARG1', 'place'), ('place', ':ARG1-of', 'new-01'), ('place', ':ARG1-of', 'near-02'), ('near-02', ':ARG2', 'h')]\n",
+      "[('and', ':op1', 'drive-01'), ('drive-01', ':ARG0', '\"Joe\"'), ('drive-01', ':ARG4', 'place'), ('place', ':ARG1-of', 'new-01'), ('and', ':op2', 'order-02'), ('order-02', ':ARG0', 'p'), ('order-02', ':ARG1', 'meal')]\n",
+      "[('and', ':op1', 'enjoy-01'), ('enjoy-01', ':ARG0', '\"Joe\"'), ('enjoy-01', ':ARG1', 'food'), ('and', ':op2', 'hunger-01'), ('hunger-01', ':ARG0', 'p'), ('hunger-01', ':time', 'no-longer')]\n",
+      "[('walk-01', ':ARG0', '\"John\"'), ('walk-01', ':destination', 'work-01'), ('work-01', ':ARG0', 'p')]\n",
+      "[('see-01', ':ARG0', '\"John\"'), ('see-01', ':ARG1', 'cart'), ('cart', ':mod', 'food')]\n",
+      "[('try-out-05', ':ARG0', '\"John\"'), ('try-out-05', ':ARG1', 'dish'), ('dish', ':mod', 'rice')]\n",
+      "[('surprise-01', ':ARG0', 'flavor'), ('flavor', ':mod', 'rich'), ('surprise-01', ':ARG1', '\"John\"')]\n",
+      "[('go-02', ':ARG0', '\"John\"'), ('go-02', ':ARG4', 'cart'), ('cart', ':mod', 'food'), ('go-02', ':frequency', 'rate-entity-91'), ('rate-entity-91', ':ARG3', 'temporal-quantity'), ('temporal-quantity', ':quant', '1'), ('temporal-quantity', ':unit', 'day'), ('go-02', ':purpose', 'lunch'), ('lunch', ':poss', 'p')]\n",
+      "[('decide-01', ':ARG0', '\"Sam\"'), ('decide-01', ':ARG1', 'cook-01'), ('cook-01', ':ARG0', 'p'), ('cook-01', ':ARG1', 'lunch'), ('cook-01', ':beneficiary', 'family'), ('family', ':ARG1-of', 'have-org-role-91'), ('have-org-role-91', ':ARG0', 'p'), ('have-org-role-91', ':ARG0', 'p'), ('have-org-role-91', ':ARG2', 'member')]\n",
+      "[('and', ':op1', 'turn-01'), ('turn-01', ':ARG0', 'he'), ('turn-01', ':ARG1', 'oven'), ('and', ':op2', 'wait-01'), ('wait-01', ':ARG1', 'h'), ('wait-01', ':ARG2', 'preheat-01'), ('preheat-01', ':ARG1', 'o')]\n",
+      "[('put-01', ':ARG0', 'he'), ('put-01', ':ARG1', 'pizza'), ('pizza', ':ARG1-of', 'freeze-01'), ('put-01', ':time', 'warm-01'), ('warm-01', ':ARG1', 'oven')]\n",
+      "[('and', ':op1', 'forget-01'), ('forget-01', ':ARG0', 'he'), ('forget-01', ':ARG1', 'set-02'), ('set-02', ':ARG0', 'h'), ('set-02', ':ARG1', 'timer'), ('and', ':op2', 'burn-01'), ('burn-01', ':ARG1', 'pizza')]\n",
+      "[('obligate-01', ':ARG2', 'go-out-17'), ('go-out-17', ':ARG0', 'family'), ('family', ':mod', 'entire'), ('go-out-17', ':purpose', 'lunch'), ('obligate-01', ':time', 'now')]\n",
+      "[('hunger-01', ':ARG0', '\"John\"')]\n",
+      "[('go-02', ':ARG0', 'he'), ('go-02', ':ARG4', 'restaurant'), ('restaurant', ':name', 'name'), ('name', ':op1', '\"Wendy\\'s\"')]\n",
+      "[('order-02', ':ARG0', 'he'), ('order-02', ':ARG1', '\"France\"'), ('\"France\"', ':quant', 'some')]\n",
+      "[('eat-01', ':ARG0', '\"John\"'), ('eat-01', ':ARG1', '\"France\"'), ('eat-01', ':location', 'company'), ('company', ':name', 'name'), ('name', ':op1', '\"Wendy\\'s\"')]\n",
+      "[('go-02', ':ARG0', '\"John\"'), ('go-02', ':ARG4', 'home'), ('go-02', ':manner', 'full')]\n",
+      "[('make-01', ':ARG0', 'person'), ('person', ':ARG1-of', 'include-91'), ('include-91', ':ARG2', 'person'), ('person', ':ARG0-of', 'cook-01'), ('make-01', ':ARG1', 'sauce'), ('make-01', ':location', 'kitchen'), ('kitchen', ':mod', 'restaurant')]\n",
+      "[('drop-01', ':ARG0', 'he'), ('drop-01', ':ARG1', 'sauce'), ('sauce', ':quant', 'some'), ('sauce', ':ARG1-of', 'include-91'), ('include-91', ':ARG2', 'sauce'), ('drop-01', ':ARG2', 'ground'), ('ground', ':ARG1-of', 'near-02'), ('near-02', ':ARG2', 'h')]\n",
+      "[('and', ':op1', 'walk-01'), ('walk-01', ':ARG0', 'person'), ('person', ':ARG0-of', 'cook-01'), ('person', ':mod', 'another'), ('walk-01', ':direction', 'by'), ('and', ':op2', 'slip-01'), ('slip-01', ':ARG0', 'p'), ('slip-01', ':ARG1', 'soup')]\n",
+      "[('fall-01', ':ARG1', 'person'), ('person', ':ARG0-of', 'cook-01'), ('fall-01', ':ARG4', 'pile'), ('pile', ':consist-of', 'sack'), ('sack', ':consist-of', 'flour')]\n",
+      "[('look-02', ':ARG0', 'he'), ('look-02', ':ARG1', 'ghost'), ('look-02', ':time', 'get-up-11'), ('get-up-11', ':ARG1', 'h')]\n",
+      "[('like-01', ':ARG0', '\"Rob\"'), ('like-01', ':ARG1', 'make-01'), ('make-01', ':ARG0', 'p'), ('make-01', ':ARG1', 'waffle')]\n",
+      "[('matter-01', ':polarity', '-'), ('matter-01', ':ARG1', 'time'), ('time', ':part-of', 'day')]\n",
+      "[('make-01', ':ARG0', 'he'), ('make-01', ':ARG1', 'one'), ('make-01', ':purpose', 'lunch'), ('make-01', ':time', 'give-out-09'), ('give-out-09', ':ARG1', 'iron'), ('iron', ':mod', 'waffle')]\n",
+      "[('have-03', ':ARG0', 'he'), ('have-03', ':ARG1', 'waffle'), ('waffle', ':ARG1-of', 'bake-01'), ('bake-01', ':degree', 'half'), ('have-03', ':location', 'iron'), ('have-03', ':mod', 'still')]\n",
+      "[('and', ':op1', 'finish-01'), ('finish-01', ':ARG0', '\"Rob\"'), ('finish-01', ':ARG1', 'it'), ('finish-01', ':location', 'oven'), ('and', ':op2', 'eat-01'), ('eat-01', ':ARG0', 'p'), ('eat-01', ':ARG1', 'ii'), ('eat-01', ':manner', 'frown-01'), ('frown-01', ':ARG0', 'p')]\n",
+      "[('want-01', ':ARG0', '\"Harry\"'), ('want-01', ':ARG1', 'eat-01'), ('eat-01', ':ARG0', 'p'), ('eat-01', ':ARG1', 'pizza')]\n",
+      "[('cause-01', ':ARG1', 'put-01'), ('put-01', ':ARG0', 'he'), ('put-01', ':ARG1', 'pizza'), ('pizza', ':ARG1-of', 'freeze-01'), ('put-01', ':ARG2', 'oven'), ('oven', ':poss', 'h')]\n",
+      "[('smell-01', ':ARG0', 'he'), ('smell-01', ':ARG1', 'something'), ('something', ':ARG1-of', 'burn-01'), ('smell-01', ':time', 'after'), ('after', ':quant', 'temporal-quantity'), ('temporal-quantity', ':quant', '1'), ('temporal-quantity', ':unit', 'hour')]\n",
+      "[('and', ':op2', 'rush-01'), ('rush-01', ':ARG1', 'he'), ('rush-01', ':ARG4', 'oven'), ('oven', ':poss', 'h')]\n",
+      "[('pizza', ':poss', 'he'), ('pizza', ':ARG1-of', 'black-04'), ('pizza', ':ARG1-of', 'crispy-03')]\n",
+      "[('eat-01', ':ARG0', 'i'), ('eat-01', ':ARG1', 'pizza'), ('eat-01', ':location', 'place'), ('place', ':ARG1-of', 'new-01'), ('eat-01', ':accompanier', 'family'), ('family', ':poss', 'ii')]\n",
+      "[('watch-01', ':ARG0', 'i'), ('watch-01', ':ARG1', 'television'), ('watch-01', ':time', 'begin-01'), ('begin-01', ':ARG0', 'ii'), ('begin-01', ':ARG1', 'feel-01'), ('feel-01', ':ARG0', 'ii'), ('feel-01', ':ARG1', 'ill-01'), ('ill-01', ':ARG1', 'ii'), ('watch-01', ':time', 'after'), ('watch-01', ':time', 'date-entity'), ('date-entity', ':dayperiod', 'night'), ('date-entity', ':mod', 'that')]\n",
+      "[('and', ':op1', 'become-01'), ('become-01', ':ARG1', 'i'), ('become-01', ':ARG2', 'sick-05'), ('sick-05', ':ARG1', 'ii'), ('sick-05', ':degree', 'very'), ('and', ':op2', 'vomit-01'), ('vomit-01', ':ARG0', 'ii'), ('and', ':op3', 'stay-01'), ('stay-01', ':ARG1', 'ii'), ('stay-01', ':location', 'bed'), ('stay-01', ':duration', 'multiple'), ('multiple', ':op1', 'temporal-quantity'), ('temporal-quantity', ':quant', '1'), ('temporal-quantity', ':unit', 'day')]\n",
+      "[('take-10', ':ARG0', 'feel-01'), ('feel-01', ':ARG1', 'good-02'), ('good-02', ':ARG2-of', 'have-degree-91'), ('have-degree-91', ':ARG1', 'f'), ('have-degree-91', ':ARG3', 'more'), ('take-10', ':ARG1', 'over'), ('over', ':op1', 'temporal-quantity'), ('temporal-quantity', ':quant', '1'), ('temporal-quantity', ':unit', 'week')]\n",
+      "[('possible-01', ':ARG1', 'stand-11'), ('stand-11', ':ARG0', 'i'), ('stand-11', ':ARG1', 'sight-01'), ('sight-01', ':ARG0', 'ii'), ('sight-01', ':ARG1', 'pizza'), ('stand-11', ':time', 'no-longer'), ('possible-01', ':time', 'over-01'), ('over-01', ':ARG1', 'it')]\n",
+      "[('be-located-at-91', ':ARG1', '\"Jake\"'), ('be-located-at-91', ':ARG2', 'place'), ('place', ':mod', 'wing')]\n",
+      "[('try-01', ':ARG0', 'he'), ('try-01', ':ARG1', 'get-01'), ('get-01', ':ARG0', 'h'), ('get-01', ':ARG1', 'one'), ('one', ':mod', 'spicy')]\n",
+      "[('order-02', ':ARG0', 'he'), ('order-02', ':ARG1', 'try-out-05'), ('try-out-05', ':ARG0', 'h'), ('try-out-05', ':ARG1', 'they'), ('order-02', ':mod', 'small')]\n",
+      "[('tear-02', ':ARG0', 'wing'), ('wing', ':quant', '1'), ('tear-02', ':ARG1', 'he')]\n",
+      "[('contrast-01', ':ARG1', 'like-01'), ('like-01', ':ARG0', 'he'), ('like-01', ':ARG1', 'flavor'), ('contrast-01', ':ARG2', 'possible-01'), ('possible-01', ':polarity', '-'), ('possible-01', ':ARG1', 'eat-01'), ('eat-01', ':ARG0', 'h'), ('eat-01', ':ARG1', 'more')]\n",
+      "[('decide-01', ':ARG0', 'i'), ('decide-01', ':ARG1', 'vacation-01'), ('vacation-01', ':ARG0', 'ii'), ('vacation-01', ':ARG1', '\"America\"')]\n",
+      "[('tell-01', ':ARG0', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 'i'), ('have-rel-role-91', ':ARG2', 'friend'), ('tell-01', ':ARG1', 'try-01'), ('try-01', ':ARG0', 'ii'), ('try-01', ':ARG1', 'sandwich'), ('sandwich', ':mod', 'cheese'), ('cheese', ':ARG1-of', 'grill-01'), ('sandwich', ':mod', '\"America\"'), ('tell-01', ':ARG2', 'ii')]\n",
+      "[('agree-01', ':ARG0', 'i'), ('agree-01', ':ARG2', 'he')]\n",
+      "[('and', ':op1', 'go-02'), ('go-02', ':ARG0', 'i'), ('go-02', ':ARG4', 'cafe'), ('cafe', ':location', 'city'), ('city', ':name', 'name'), ('name', ':op1', '\"New\"'), ('name', ':op2', '\"York\"'), ('name', ':op3', '\"City\"'), ('and', ':op2', 'order-01'), ('order-01', ':ARG0', 'ii'), ('order-01', ':ARG1', 'cheese'), ('cheese', ':ARG1-of', 'grill-01')]\n",
+      "[('tasty', ':polarity', '-'), ('tasty', ':domain', 'it')]\n"
+     ]
+    },
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "[('hunger-01', ':ARG0', 'i'), ('hunger-01', ':degree', 'really')]\n",
+      "[('and', ':op1', 'check-01'), ('check-01', ':ARG0', 'i'), ('check-01', ':ARG1', 'fridge'), ('and', ':op2', 'find-01'), ('find-01', ':ARG0', 'ii'), ('find-01', ':ARG1', 'pizza')]\n",
+      "[('say-01', ':ARG0', 'box'), ('box', ':mod', 'pizza'), ('say-01', ':ARG1', 'belong-01'), ('belong-01', ':ARG0', 'b'), ('belong-01', ':ARG1', '\"Mike\"')]\n",
+      "[('eat-01', ':ARG0', 'i'), ('eat-01', ':ARG1', 'it'), ('eat-01', ':mod', 'anyway')]\n",
+      "[('anger-01', ':ARG1', '\"Mike\"'), ('anger-01', ':time', 'now')]\n",
+      "[('run-out-05', ':ARG1', 'mix'), ('mix', ':mod', 'gravy'), ('run-out-05', ':ARG2', 'we'), ('run-out-05', ':location', 'work-01')]\n",
+      "[('obligate-01', ':ARG1', 'i'), ('obligate-01', ':ARG2', 'make-01'), ('make-01', ':ARG0', 'ii'), ('make-01', ':ARG1', 'gravy'), ('make-01', ':ARG2', 'scratch')]\n",
+      "[('cause-01', ':ARG0', 'make-01'), ('make-01', ':polarity', '-'), ('make-01', ':ARG0', 'i'), ('make-01', ':ARG1', 'gravy'), ('make-01', ':ARG2', 'scratch'), ('make-01', ':time', 'ever'), ('cause-01', ':ARG1', 'look-up-05'), ('look-up-05', ':ARG0', 'ii'), ('look-up-05', ':ARG1', 'recipe')]\n",
+      "[('follow-02', ':ARG0', 'i'), ('follow-02', ':ARG1', 'recipe'), ('follow-02', ':ARG1-of', 'have-degree-91'), ('have-degree-91', ':ARG2', 'good-02'), ('good-02', ':ARG1', 'f'), ('have-degree-91', ':ARG3', 'equal'), ('have-degree-91', ':ARG4', 'possible-01'), ('possible-01', ':ARG1', 'f')]\n",
+      "[('contrast-01', ':ARG2', 'end-up-03'), ('end-up-03', ':ARG1', 'i'), ('end-up-03', ':ARG2', 'burn-01'), ('burn-01', ':ARG0', 'ii'), ('burn-01', ':ARG1', 'gravy')]\n",
+      "[('know-01', ':polarity', '-'), ('know-01', ':ARG0', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 'i'), ('have-rel-role-91', ':ARG2', 'son'), ('know-01', ':ARG1', 'order-02'), ('order-02', ':ARG0', 'p'), ('order-02', ':ARG1', 'food'), ('order-02', ':location', 'restaurant')]\n",
+      "[('take-01', ':ARG0', 'i'), ('take-01', ':ARG1', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 'ii'), ('have-rel-role-91', ':ARG2', 'son'), ('take-01', ':ARG4', 'restaurant'), ('restaurant', ':ARG0-of', 'have-03'), ('have-03', ':ARG1', 'menu'), ('menu', ':mod', 'child')]\n",
+      "[('instruct-01', ':ARG0', 'i'), ('instruct-01', ':ARG1', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 'ii2'), ('have-rel-role-91', ':ARG2', 'son'), ('instruct-01', ':ARG2', 'and'), ('and', ':op1', 'read-01'), ('read-01', ':ARG0', 'p'), ('read-01', ':ARG1', 'menu'), ('and', ':op2', 'select-01'), ('select-01', ':ARG0', 'p'), ('select-01', ':ARG1', 'option'), ('option', ':mod', 'food'), ('instruct-01', ':time', 'then')]\n",
+      "[('tell-01', ':ARG0', 'i'), ('tell-01', ':ARG1', 'tell-01'), ('tell-01', ':ARG0', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 'ii'), ('have-rel-role-91', ':ARG2', 'son'), ('tell-01', ':ARG1', 'select-01'), ('select-01', ':ARG0', 'p'), ('select-01', ':ARG1', 'p'), ('tell-01', ':ARG2', 'p'), ('tell-01', ':ARG2', 'p'), ('tell-01', ':time', 'come-01'), ('come-01', ':ARG1', 'person'), ('person', ':ARG0-of', 'wait-01')]\n",
+      "[('understand-01', ':ARG0', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 'i'), ('have-rel-role-91', ':ARG2', 'son'), ('understand-01', ':ARG1', 'order-02'), ('order-02', ':ARG0', 'p'), ('order-02', ':ARG1', 'food'), ('order-02', ':location', 'restaurant'), ('understand-01', ':time', 'now')]\n",
+      "[('make-01', ':ARG0', '\"Andy\"'), ('make-01', ':ARG1', 'soup'), ('soup', ':quant', 'some'), ('make-01', ':location', 'microwave'), ('make-01', ':time', 'just')]\n",
+      "[('cause-01', ':ARG0', 'have-degree-91'), ('have-degree-91', ':ARG1', 'it'), ('have-degree-91', ':ARG2', 'hot-05'), ('have-degree-91', ':ARG3', 'too'), ('have-degree-91', ':ARG6', 'hold-01'), ('hold-01', ':ARG1', 'ii'), ('cause-01', ':ARG1', 'grab-01'), ('grab-01', ':ARG0', 'he'), ('grab-01', ':ARG1', 'towel'), ('grab-01', ':purpose', 'use-01'), ('use-01', ':ARG0', 'h4'), ('use-01', ':ARG1', 't2'), ('use-01', ':ARG1-of', 'resemble-01'), ('resemble-01', ':ARG2', 'thing'), ('thing', ':ARG0-of', 'h3'), ('thing', ':ARG1', 'pot')]\n",
+      "[('tripping-03', ':ARG0', 'he'), ('tripping-03', ':time', 'walk-01'), ('walk-01', ':ARG0', 'h')]\n",
+      "[('spill-01', ':ARG1', 'soup'), ('spill-01', ':location', 'everywhere'), ('spill-01', ':ARG1-of', 'cause-01'), ('cause-01', ':ARG0', 'grip-01'), ('grip-01', ':polarity', '-'), ('grip-01', ':ARG0', 'he'), ('grip-01', ':ARG1', 's2')]\n",
+      "[('and', ':op1', 'obligate-01'), ('obligate-01', ':ARG1', 'he'), ('obligate-01', ':ARG2', 'clean-up-02'), ('clean-up-02', ':ARG0', 'h'), ('clean-up-02', ':ARG1', 'it'), ('it', ':mod', 'all'), ('and', ':op2', 'have-03'), ('have-03', ':polarity', '-'), ('have-03', ':ARG0', 'h'), ('have-03', ':ARG1', 'soup'), ('soup', ':quant', 'more'), ('soup', ':ARG1-of', 'eat-01'), ('eat-01', ':ARG0', 'h')]\n",
+      "[('plan-01', ':ARG0', 'i'), ('plan-01', ':ARG1', 'make-01'), ('make-01', ':ARG0', 'ii'), ('make-01', ':ARG1', 'hamburger'), ('plan-01', ':time', 'date-entity'), ('date-entity', ':dayperiod', 'night'), ('date-entity', ':mod', 'yesterday')]\n",
+      "[('get-05', ':ARG0', 'i'), ('get-05', ':ARG1', 'meat'), ('meat', ':ARG1-of', 'ready-02'), ('ready-02', ':ARG2', 'cook-01'), ('cook-01', ':ARG0', 'ii'), ('cook-01', ':ARG1', 'they'), ('get-05', ':ARG2', 'out')]\n",
+      "[('contrast-01', ':ARG2', 'find-01'), ('find-01', ':ARG0', 'i'), ('find-01', ':ARG1', 'something'), ('find-01', ':time', 'look-01'), ('look-01', ':ARG0', 'ii'), ('look-01', ':ARG1', 'bun')]\n",
+      "[('and', ':op1', 'moldy'), ('moldy', ':domain', 'bun'), ('and', ':op2', 'green'), ('green', ':domain', 'b')]\n",
+      "[('obligate-01', ':ARG1', 'i'), ('obligate-01', ':ARG2', 'throw-out-06'), ('throw-out-06', ':ARG0', 'ii'), ('throw-out-06', ':ARG1', 'they'), ('obligate-01', ':time', 'immediate')]\n",
+      "[('make-01', ':ARG0', '\"Susan\"'), ('make-01', ':ARG1', 'soup')]\n",
+      "[('open-01', ':ARG0', 'she'), ('open-01', ':ARG1', 'fridge'), ('open-01', ':purpose', 'grab-01'), ('grab-01', ':ARG0', 's'), ('grab-01', ':ARG1', 'ingredient'), ('ingredient', ':quant', 'some')]\n",
+      "[('thing', ':mod', 'last'), ('thing', ':ARG1-of', 'grab-01'), ('grab-01', ':ARG0', 'she'), ('thing', ':domain', 'vegetable')]\n",
+      "[('see-01', ':ARG0', 'she'), ('see-01', ':ARG1', 'and'), ('and', ':op1', 'brown-02'), ('brown-02', ':ARG1', 'they'), ('they', ':mod', 'all'), ('and', ':op2', 'mushy'), ('mushy', ':domain', 't'), ('see-01', ':time', 'then')]\n",
+      "[('do-02', ':ARG0', 'she'), ('do-02', ':ARG1', 'cut-away-05'), ('cut-away-05', ':ARG0', 's'), ('cut-away-05', ':ARG1', 'part'), ('part', ':ARG1-of', 'bad-07'), ('do-02', ':ARG1-of', 'have-degree-91'), ('have-degree-91', ':ARG2', 'good-02'), ('good-02', ':ARG1', 'c'), ('have-degree-91', ':ARG3', 'most')]\n",
+      "[('want-01', ':ARG0', 'i'), ('want-01', ':ARG1', 'stew-01'), ('stew-01', ':ARG0', 'ii')]\n",
+      "[('buy-01', ':ARG0', 'i'), ('buy-01', ':ARG1', 'ingredient'), ('ingredient', ':mod', 'all')]\n",
+      "[('take-01', ':ARG0', 'i'), ('take-01', ':ARG1', 'they'), ('take-01', ':ARG4', 'home'), ('take-01', ':purpose', 'cook-01'), ('cook-01', ':ARG0', 'ii'), ('cook-01', ':ARG1', 't2')]\n",
+      "[('have-degree-91', ':ARG1', 'i'), ('have-degree-91', ':ARG2', 'tire-01'), ('tire-01', ':ARG1', 'ii'), ('have-degree-91', ':ARG3', 'too'), ('have-degree-91', ':ARG6', 'cook-01'), ('cook-01', ':ARG0', 'ii'), ('have-degree-91', ':time', 'get-05'), ('get-05', ':ARG1', 'ii'), ('get-05', ':ARG2', 'home')]\n",
+      "[('put-01', ':ARG0', 'i'), ('put-01', ':ARG1', 'ingredient'), ('put-01', ':ARG2', 'fridge'), ('put-01', ':purpose', 'cook-01'), ('cook-01', ':ARG0', 'ii'), ('cook-01', ':ARG1', 'ii2'), ('cook-01', ':time', 'day'), ('day', ':mod', 'another')]\n",
+      "[('near-02', ':ARG1', 'it'), ('near-02', ':ARG2', 'midnight')]\n",
+      "[('hunger-01', ':ARG0', '\"Allie\"'), ('hunger-01', ':mod', 'still')]\n",
+      "[('go-02', ':ARG0', 'she'), ('go-02', ':ARG4', 'upstairs')]\n",
+      "[('leave-17', ':ARG1', 'slice'), ('slice', ':quant', '1'), ('slice', ':consist-of', 'pizza')]\n",
+      "[('cause-01', ':ARG1', 'have-03'), ('have-03', ':ARG0', 'she'), ('have-03', ':ARG1', 'some')]\n",
+      "[('want-01', ':ARG0', '\"Bob\"'), ('want-01', ':ARG1', 'snack')]\n",
+      "[('and', ':op1', 'go-02'), ('go-02', ':ARG0', 'he'), ('go-02', ':ARG4', 'kitchen'), ('kitchen', ':poss', 'h'), ('and', ':op2', 'look-01'), ('look-01', ':ARG0', 'h'), ('look-01', ':ARG1', 'fridge')]\n",
+      "[('nothing', ':ARG1-of', 'good-02')]\n",
+      "[('look-01', ':ARG0', 'he'), ('look-01', ':ARG1', 'freezer'), ('look-01', ':time', 'next')]\n",
+      "[('find-01', ':ARG0', 'he'), ('find-01', ':ARG1', 'pizza'), ('pizza', ':ARG1-of', 'freeze-01')]\n",
+      "[('watch-01', ':ARG0', 'i'), ('watch-01', ':ARG1', 'sport'), ('watch-01', ':time', 'day'), ('day', ':mod', 'one')]\n",
+      "[('want-01', ':ARG0', 'i'), ('want-01', ':ARG1', 'pizza'), ('want-01', ':ARG0-of', 'cause-01'), ('cause-01', ':ARG1', 'pick-up-04'), ('pick-up-04', ':ARG0', 'ii'), ('pick-up-04', ':ARG1', 'phone')]\n",
+      "[('and', ':op1', 'call-02'), ('call-02', ':ARG0', 'i'), ('and', ':op2', 'order-02'), ('order-02', ':ARG0', 'ii'), ('order-02', ':ARG1', 'pizza'), ('pizza', ':quant', 'few')]\n",
+      "[('have-03', ':ARG0', 'i'), ('have-03', ':ARG1', 'pizza'), ('pizza', ':quant', '3'), ('pizza', ':ARG1-of', 'differ-02'), ('have-03', ':time', 'after'), ('after', ':quant', 'temporal-quantity'), ('temporal-quantity', ':quant', '30'), ('temporal-quantity', ':unit', 'minute')]\n",
+      "[('and', ':op1', 'sit-down-02'), ('sit-down-02', ':ARG1', 'i'), ('and', ':op2', 'watch-01'), ('watch-01', ':ARG0', 'ii'), ('watch-01', ':ARG1', 'game'), ('and', ':op3', 'eat-01'), ('eat-01', ':ARG0', 'ii')]\n",
+      "[('walk-01', ':ARG0', '\"Lester\"'), ('walk-01', ':ARG4', 'home'), ('walk-01', ':time', 'after'), ('after', ':op1', 'day'), ('day', ':ARG1-of', 'long-03'), ('day', ':duration-of', 'work-01')]\n",
+      "[('realize-01', ':ARG0', 'he'), ('realize-01', ':ARG1', 'have-03'), ('have-03', ':polarity', '-'), ('have-03', ':ARG0', 'h'), ('have-03', ':ARG1', 'food'), ('food', ':quant', 'much'), ('have-03', ':location', 'home'), ('realize-01', ':time', 'walk-01'), ('walk-01', ':ARG0', 'h')]\n",
+      "[('decide-01', ':ARG0', '\"Lester\"'), ('decide-01', ':ARG1', 'stop-01'), ('stop-01', ':ARG0', 'p'), ('stop-01', ':ARG1', 'truck'), ('truck', ':mod', 'food'), ('stop-01', ':purpose', 'get-01'), ('get-01', ':ARG0', 'p'), ('get-01', ':ARG1', 'dinner')]\n",
+      "[('eat-01', ':ARG0', 'he'), ('eat-01', ':ARG1', 'taco'), ('taco', ':quant', '2'), ('taco', ':mod', 'pork'), ('taco', ':ARG1-of', 'delicious-02')]\n",
+      "[('feel-01', ':ARG0', '\"Lester\"'), ('feel-01', ':ARG1', 'appreciate-02'), ('appreciate-02', ':ARG0', 'p'), ('appreciate-02', ':ARG1', 'have-03'), ('have-03', ':ARG0', 'p'), ('have-03', ':ARG1', 'truck'), ('truck', ':mod', 'food'), ('truck', ':ARG1-of', 'good-02'), ('have-03', ':location', 'neighborhood'), ('neighborhood', ':poss', 'p')]\n",
+      "[('\"Thanksgiving Day\"', ':domain', 'it')]\n",
+      "[('charge-05', ':ARG1', '\"Sean\"'), ('charge-05', ':ARG2', 'turkey')]\n",
+      "[('and', ':op1', 'ready-02'), ('ready-02', ':ARG1', 'food'), ('food', ':mod', 'other'), ('food', ':mod', 'all'), ('and', ':op2', 'set-02'), ('set-02', ':ARG1', 'table')]\n",
+      "[('see-01', ':ARG0', '\"Sean\"'), ('see-01', ':ARG1', 'raw-02'), ('raw-02', ':ARG1', 'bottom'), ('raw-02', ':mod', 'still'), ('see-01', ':time', 'check-01'), ('check-01', ':ARG0', 'p'), ('check-01', ':ARG1', 'turkey')]\n",
+      "[('instead-of-91', ':ARG1', 'and'), ('and', ':op1', 'cut-02'), ('cut-02', ':ARG0', 'he'), ('cut-02', ':ARG1', 'piece'), ('piece', ':quant', 'some'), ('cut-02', ':ARG2', 'top'), ('cut-02', ':mod', 'just'), ('and', ':op2', 'serve-01'), ('serve-01', ':ARG0', 'h'), ('serve-01', ':ARG1', 'p')]\n",
+      "[('love-01', ':ARG0', '\"Jeff\"'), ('love-01', ':ARG1', 'eat-01'), ('eat-01', ':ARG0', 'p'), ('eat-01', ':ARG1', 'cucumber'), ('love-01', ':degree', 'lot')]\n",
+      "[('decide-01', ':ARG0', 'he'), ('decide-01', ':ARG1', 'want-01'), ('want-01', ':ARG0', 'h'), ('want-01', ':ARG1', 'eat-01'), ('eat-01', ':ARG0', 'h'), ('eat-01', ':ARG1', 'person'), ('person', ':ARG1-of', 'have-quant-91'), ('have-quant-91', ':ARG2', 'many'), ('have-quant-91', ':ARG3', 'equal'), ('have-quant-91', ':ARG4', 'possible-01'), ('possible-01', ':ARG1', 'e'), ('decide-01', ':time', 'day'), ('day', ':mod', 'one')]\n",
+      "[('lead-03', ':ARG0', 'this'), ('lead-03', ':ARG2', 'fat-03'), ('fat-03', ':ARG1', '\"Jeff\"'), ('fat-03', ':degree', 'very')]\n",
+      "[('go-02', ':ARG0', '\"Jeff\"'), ('go-02', ':ARG4', 'doctor'), ('go-02', ':time', 'eventual')]\n",
+      "[('tell-01', ':ARG0', 'doctor'), ('tell-01', ':ARG1', 'healthy'), ('healthy', ':polarity', '-'), ('healthy', ':degree', 'very'), ('healthy', ':domain', 'eat-01'), ('eat-01', ':ARG1', 'person'), ('person', ':quant', 'many'), ('person', ':mod', 'that'), ('tell-01', ':ARG2', '\"Jeff\"')]\n"
+     ]
+    },
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "[('watch-01', ':ARG0', 'i'), ('watch-01', ':ARG1', 'television'), ('watch-01', ':time', 'date-entity'), ('date-entity', ':dayperiod', 'night'), ('date-entity', ':mod', 'one')]\n",
+      "[('and', ':op1', 'hunger-01'), ('hunger-01', ':ARG0', 'i'), ('hunger-01', ':degree', 'very'), ('and', ':op2', 'decide-01'), ('decide-01', ':ARG0', 'ii'), ('decide-01', ':ARG1', 'need-01'), ('need-01', ':ARG0', 'ii'), ('need-01', ':ARG1', 'eat-01'), ('eat-01', ':ARG0', 'ii')]\n",
+      "[('go-02', ':ARG0', 'i'), ('go-02', ':ARG4', 'kitchen'), ('go-02', ':purpose', 'cook-01'), ('cook-01', ':ARG0', 'ii'), ('cook-01', ':ARG1', 'something')]\n",
+      "[('find-01', ':ARG0', 'i'), ('find-01', ':ARG1', 'package'), ('package', ':consist-of', 'and'), ('and', ':op1', 'broccoli'), ('and', ':op2', 'beef'), ('package', ':purpose', 'cook-01'), ('cook-01', ':ARG0', 'ii')]\n",
+      "[('and', ':op1', 'make-01'), ('make-01', ':ARG0', 'i'), ('make-01', ':ARG1', 'meal'), ('and', ':op2', 'enjoy-01'), ('enjoy-01', ':ARG0', 'ii'), ('enjoy-01', ':ARG1', 'm2')]\n",
+      "[('and', ':op1', 'make-01'), ('make-01', ':ARG0', '\"Charlie\"'), ('make-01', ':ARG1', 'dinner'), ('make-01', ':time', 'week'), ('week', ':mod', 'last'), ('and', ':op2', 'freeze-02'), ('freeze-02', ':ARG0', 'p'), ('freeze-02', ':ARG1', 'd')]\n",
+      "[('lasagna', ':domain', 'it')]\n",
+      "[('and', ':op1', 'take-01'), ('take-01', ':ARG0', 'he'), ('take-01', ':ARG1', 'it'), ('take-01', ':ARG2', 'out-06'), ('out-06', ':ARG1', 'ii'), ('out-06', ':ARG2', 'freezer'), ('and', ':op2', 'put-01'), ('put-01', ':ARG0', 'h'), ('put-01', ':ARG1', 'ii'), ('put-01', ':ARG2', 'oven')]\n",
+      "[('take-10', ':ARG0', 'bake-01'), ('take-10', ':ARG1', 'temporal-quantity'), ('temporal-quantity', ':quant', '2'), ('temporal-quantity', ':unit', 'hour')]\n",
+      "[('and', ':op1', 'dry-out-02'), ('dry-out-02', ':ARG1', 'lasagna'), ('dry-out-02', ':ARG1-of', 'have-quant-91'), ('have-quant-91', ':ARG2', 'much'), ('have-quant-91', ':ARG3', 'too'), ('and', ':op2', 'good-02'), ('good-02', ':polarity', '-'), ('good-02', ':ARG1', 'l')]\n",
+      "[('hunger-01', ':ARG0', '\"Homer\"')]\n",
+      "[('possible-01', ':polarity', '-'), ('possible-01', ':ARG1', 'wait-01'), ('wait-01', ':ARG1', '\"Homer\"'), ('wait-01', ':ARG2', 'break-18'), ('break-18', ':ARG0', 'p2'), ('break-18', ':ARG1', 'lunch'), ('break-18', ':location', 'work-01')]\n",
+      "[('head-02', ':ARG0', 'he'), ('head-02', ':ARG1', 'out'), ('head-02', ':purpose', 'grab-01'), ('grab-01', ':ARG0', 'h2'), ('grab-01', ':ARG1', 'something'), ('something', ':ARG1-of', 'eat-01'), ('eat-01', ':ARG0', 'h2'), ('head-02', ':time', 'come-01'), ('come-01', ':ARG1', 'break-19'), ('break-19', ':ARG1', 'lunch'), ('break-19', ':ARG2', 'h2')]\n",
+      "[('visit-01', ':ARG0', 'he'), ('visit-01', ':ARG1', 'shop'), ('shop', ':mod', 'donut'), ('visit-01', ':purpose', 'buy-01'), ('buy-01', ':ARG0', 'h'), ('buy-01', ':ARG1', 'donut'), ('donut', ':quant', 'some')]\n",
+      "[('eat-01', ':ARG0', 'he'), ('eat-01', ':ARG1', 'donut'), ('donut', ':poss', 'h'), ('eat-01', ':time', 'break-18'), ('break-18', ':ARG0', 'h'), ('break-18', ':ARG1', 'lunch')]\n",
+      "[('and', ':op1', 'hunger-01'), ('hunger-01', ':ARG0', 'i'), ('hunger-01', ':time', 'day'), ('day', ':mod', 'one'), ('and', ':op2', 'decide-01'), ('decide-01', ':ARG0', 'ii'), ('decide-01', ':ARG1', 'make-01'), ('make-01', ':ARG0', 'ii'), ('make-01', ':ARG1', 'food')]\n",
+      "[('and', ':op1', 'go-02'), ('go-02', ':ARG0', 'i'), ('go-02', ':ARG4', 'freezer'), ('freezer', ':poss', 'ii'), ('and', ':op2', 'grab-01'), ('grab-01', ':ARG0', 'ii'), ('grab-01', ':ARG1', 'bag'), ('bag', ':consist-of', 'nugget'), ('nugget', ':consist-of', 'chicken')]\n",
+      "[('and', ':op1', 'put-01'), ('put-01', ':ARG0', 'i'), ('put-01', ':ARG1', 'nugget'), ('nugget', ':mod', 'chicken'), ('put-01', ':ARG2', 'tray'), ('put-01', ':location', 'oven'), ('and', ':op2', 'wait-01'), ('wait-01', ':ARG1', 'ii')]\n",
+      "[('and', ':op1', 'bore-02'), ('bore-02', ':ARG0', 'i'), ('bore-02', ':degree', 'very'), ('bore-02', ':time', 'wait-01'), ('wait-01', ':ARG1', 'ii'), ('and', ':op2', 'begin-01'), ('begin-01', ':ARG0', 'ii'), ('begin-01', ':ARG1', 'fall-07'), ('fall-07', ':ARG1', 'ii'), ('fall-07', ':ARG2', 'sleep-01'), ('sleep-01', ':ARG0', 'ii')]\n",
+      "[('wake-01', ':ARG1', 'i'), ('wake-01', ':ARG2', 'house'), ('house', ':poss', 'ii'), ('house', ':ARG1-of', 'fill-01'), ('fill-01', ':ARG2', 'smoke'), ('smoke', ':source', 'food'), ('food', ':ARG1-of', 'burn-01'), ('wake-01', ':time', 'after'), ('after', ':op1', 'sleep-01'), ('sleep-01', ':ARG0', 'ii')]\n",
+      "[('try-01', ':ARG0', '\"Tony\"'), ('try-01', ':ARG1', 'open-01'), ('open-01', ':ARG0', 'p'), ('open-01', ':ARG1', 'jar'), ('jar', ':mod', 'pickle')]\n",
+      "[('possible-01', ':polarity', '-'), ('possible-01', ':ARG1', 'get-04'), ('get-04', ':ARG0', 'he'), ('get-04', ':ARG1', 'off'), ('off', ':op1', 'lid')]\n",
+      "[('decide-01', ':ARG0', 'he'), ('decide-01', ':ARG1', 'run-01'), ('run-01', ':ARG0', 'h'), ('run-01', ':ARG1', 'it'), ('run-01', ':ARG2', 'under'), ('under', ':op1', 'water'), ('water', ':ARG1-of', 'warm-06')]\n",
+      "[('possible-01', ':ARG1', 'get-04'), ('get-04', ':ARG0', 'he'), ('get-04', ':ARG1', 'off'), ('off', ':op1', 'lid'), ('possible-01', ':time', 'soon')]\n",
+      "[('eat-01', ':ARG0', 'he'), ('eat-01', ':ARG1', 'pickle'), ('pickle', ':quant', 'some'), ('eat-01', ':time', 'then')]\n",
+      "[('put-01', ':ARG0', '\"Tom\"'), ('put-01', ':ARG1', 'slice'), ('slice', ':quant', '2'), ('slice', ':consist-of', 'bagel'), ('put-01', ':ARG2', 'toaster'), ('toaster', ':poss', 'p2')]\n",
+      "[('contrast-01', ':ARG2', 'realize-01'), ('realize-01', ':ARG0', 'he'), ('realize-01', ':ARG1', 'have-03'), ('have-03', ':polarity', '-'), ('have-03', ':ARG0', 'h'), ('have-03', ':ARG1', 'cheese'), ('cheese', ':mod', 'cream')]\n",
+      "[('cause-01', ':ARG1', 'put-01'), ('put-01', ':ARG0', 'he'), ('put-01', ':ARG1', 'and'), ('and', ':op1', 'egg'), ('and', ':op2', 'ham'), ('put-01', ':ARG2', 'between'), ('between', ':op1', 'bagel')]\n",
+      "[('and', ':op2', 'forget-01'), ('forget-01', ':ARG0', 'he'), ('forget-01', ':ARG1', 'lack-01'), ('lack-01', ':ARG0', 'h'), ('lack-01', ':ARG1', 'cheese'), ('cheese', ':mod', 'cream'), ('forget-01', ':mod', 'all')]\n",
+      "[('decide-01', ':ARG0', '\"Tom\"'), ('decide-01', ':ARG1', 'have-03'), ('have-03', ':ARG0', 'p'), ('have-03', ':ARG1', 'thing'), ('thing', ':ARG1-of', 'same-01'), ('have-03', ':frequency', 'breakfast'), ('breakfast', ':mod', 'every')]\n",
+      "[('learn-01', ':ARG0', '\"Bob\"'), ('learn-01', ':ARG1', 'cook-01'), ('cook-01', ':ARG0', 'p')]\n",
+      "[('teach-01', ':ARG0', '\"Sarah\"'), ('teach-01', ':ARG1', 'cook-01'), ('cook-01', ':ARG0', 'he'), ('cook-01', ':ARG1', 'rice'), ('teach-01', ':ARG2', 'h')]\n",
+      "[('and', ':op1', 'boil-01'), ('boil-01', ':ARG0', 'he'), ('boil-01', ':ARG1', 'water'), ('and', ':op2', 'add-02'), ('add-02', ':ARG0', 'h'), ('add-02', ':ARG1', 'rice')]\n",
+      "[('forget-01', ':ARG0', '\"Bob\"'), ('forget-01', ':ARG1', 'check-01'), ('check-01', ':ARG0', 'p'), ('check-01', ':ARG1', 'stove')]\n",
+      "[('burn-01', ':ARG0', '\"Bob\"'), ('burn-01', ':ARG1', 'rice')]\n",
+      "[('work-09', ':ARG1', 'microwave'), ('microwave', ':poss', 'i'), ('work-09', ':ARG1-of', 'well-09'), ('work-09', ':mod', 'usual')]\n",
+      "[('and', ':op1', 'possible-01'), ('possible-01', ':ARG1', 'put-01'), ('put-01', ':ARG0', 'i'), ('put-01', ':ARG1', 'anything'), ('put-01', ':ARG2', 'it'), ('and', ':op2', 'turn-out-11'), ('turn-out-11', ':ARG1', 'ii2'), ('turn-out-11', ':ARG1-of', 'fine-04')]\n",
+      "[('contrast-01', ':ARG2', 'work-09'), ('work-09', ':polarity', '-'), ('work-09', ':ARG1', 'it'), ('work-09', ':ARG1-of', 'well-09'), ('work-09', ':mod', 'at-all'), ('work-09', ':time', 'date-entity'), ('date-entity', ':weekday', 'sunday'), ('date-entity', ':dayperiod', 'night'), ('work-09', ':ARG1-of', 'cause-01'), ('cause-01', ':ARG0', 'reason'), ('reason', ':mod', 'some')]\n",
+      "[('and', ':op1', 'try-01'), ('try-01', ':ARG0', 'i'), ('try-01', ':ARG1', 'microwave-01'), ('microwave-01', ':ARG0', 'ii'), ('and', ':op2', 'fail-01'), ('fail-01', ':ARG1', 'm'), ('fail-01', ':ARG2', 'ii')]\n",
+      "[('burn-01', ':ARG1', 'popcorn')]\n",
+      "[('begin-01', ':ARG0', 'i'), ('begin-01', ':ARG1', 'cook-01'), ('cook-01', ':ARG0', 'ii'), ('cook-01', ':ARG1', 'meal'), ('cook-01', ':beneficiary', 'person'), ('person', ':quant', '15')]\n",
+      "[('start-01', ':ARG0', 'i'), ('start-01', ':ARG2', 'put-01'), ('put-01', ':ARG0', 'ii'), ('put-01', ':ARG1', 'turkey'), ('put-01', ':ARG2', 'oven')]\n",
+      "[('and', ':op1', 'wash-01'), ('wash-01', ':ARG0', 'i'), ('wash-01', ':ARG1', 'vegetable'), ('vegetable', ':mod', 'all'), ('and', ':op2', 'chop-01'), ('chop-01', ':ARG0', 'ii'), ('chop-01', ':ARG1', 'v'), ('and', ':time', 'after'), ('after', ':op1', 'that')]\n",
+      "[('go-01', ':ARG1', 'potato'), ('go-01', ':ARG4', 'pan'), ('go-01', ':time', 'then'), ('go-01', ':purpose', 'boil-01'), ('boil-01', ':ARG1', 'p')]\n",
+      "[('and', ':op1', 'sit-01'), ('sit-01', ':ARG1', 'i'), ('and', ':op2', 'wait-01'), ('wait-01', ':ARG1', 'ii'), ('wait-01', ':ARG2', 'go-off-16'), ('go-off-16', ':ARG1', 'timer'), ('timer', ':purpose', 'cook-01'), ('and', ':time', 'final')]\n",
+      "[('fix-02', ':ARG0', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', '\"Nick\"'), ('have-rel-role-91', ':ARG2', 'mom'), ('fix-02', ':ARG1', 'soup'), ('fix-02', ':ARG2', 'p2'), ('fix-02', ':time', 'sick-05'), ('sick-05', ':ARG1', 'p2')]\n",
+      "[('warn-01', ':ARG0', 'she'), ('warn-01', ':ARG1', 'hot-05'), ('hot-05', ':ARG1', 'it'), ('warn-01', ':ARG2', 'he')]\n",
+      "[('have-degree-91', ':ARG1', 'he'), ('have-degree-91', ':ARG2', 'hunger-01'), ('hunger-01', ':ARG0', 'h2'), ('have-degree-91', ':ARG3', 'so'), ('have-degree-91', ':ARG6', 'ignore-01'), ('ignore-01', ':ARG0', 'h2'), ('ignore-01', ':ARG1', 'she')]\n",
+      "[('and', ':op1', 'grab-01'), ('grab-01', ':ARG0', 'he'), ('he', ':part', 'mouth'), ('grab-01', ':ARG1', 'spoon'), ('and', ':op2', 'shove-01'), ('shove-01', ':ARG0', 'h'), ('shove-01', ':ARG1', 's'), ('shove-01', ':ARG2', 'm')]\n",
+      "[('burn-01', ':ARG0', '\"Nick\"'), ('\"Nick\"', ':part', 'tongue'), ('burn-01', ':ARG1', 't'), ('burn-01', ':ARG1-of', 'fast-02')]\n",
+      "[('need-01', ':ARG0', '\"Tanner\"'), ('need-01', ':ARG1', 'food'), ('need-01', ':ARG1-of', 'fast-02')]\n",
+      "[('grab-01', ':ARG0', 'he'), ('grab-01', ':ARG1', 'thing'), ('thing', ':ARG1-of', 'have-degree-91'), ('have-degree-91', ':ARG2', 'close-10'), ('close-10', ':ARG1', 't'), ('have-degree-91', ':ARG3', 'most')]\n",
+      "[('open-01', ':ARG0', 'he'), ('open-01', ':ARG1', 'can'), ('can', ':consist-of', 'soup')]\n",
+      "[('warm-up-02', ':ARG0', 'he'), ('warm-up-02', ':ARG1', 'it')]\n",
+      "[('eat-01', ':ARG0', 'he'), ('eat-01', ':ARG1', 'it'), ('eat-01', ':purpose', 'dinner')]\n"
+     ]
+    },
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "[('tell-01', ':ARG0', 'person'), ('person', ':ARG0-of', 'instruct-01'), ('tell-01', ':ARG1', 'wash-01'), ('wash-01', ':ARG0', 'p'), ('wash-01', ':ARG1', 'hand'), ('wash-01', ':time', 'before'), ('before', ':op1', 'go-02'), ('go-02', ':ARG0', 'p'), ('go-02', ':ARG4', 'kitchen'), ('tell-01', ':ARG2', 'p')]\n",
+      "[('put-01', ':ARG0', 'i'), ('put-01', ':ARG1', 'and'), ('and', ':op1', 'apron'), ('apron', ':poss', 'ii'), ('and', ':op2', 'glove'), ('glove', ':poss', 'ii'), ('put-01', ':purpose', 'safe-01')]\n",
+      "[('give-01', ':ARG0', 'he'), ('give-01', ':ARG1', 'macaroni'), ('macaroni', ':mod', 'raw'), ('macaroni', ':quant', 'some'), ('give-01', ':ARG2', 'i'), ('give-01', ':purpose', 'boil-01'), ('boil-01', ':ARG1', 'm')]\n",
+      "[('and', ':op1', 'place-01'), ('place-01', ':ARG0', 'i'), ('place-01', ':ARG1', 'it'), ('place-01', ':ARG2', 'pot'), ('and', ':op2', 'add-02'), ('add-02', ':ARG0', 'ii'), ('add-02', ':ARG1', 'ii2'), ('add-02', ':instrument', 'and'), ('and', ':op1', 'salt'), ('and', ':op2', 'pepper')]\n",
+      "[('and', ':op1', 'take-out-11'), ('take-out-11', ':ARG0', 'i'), ('take-out-11', ':ARG1', 'pasta'), ('and', ':op2', 'come-out-09'), ('come-out-09', ':ARG1', 'p'), ('come-out-09', ':ARG2', 'cook-01'), ('cook-01', ':ARG1', 'p'), ('and', ':time', 'after'), ('after', ':quant', 'temporal-quantity'), ('temporal-quantity', ':quant', '20'), ('temporal-quantity', ':unit', 'minute')]\n",
+      "[('forget-01', ':ARG0', '\"Joseph\"'), ('forget-01', ':ARG1', 'deodorant'), ('deodorant', ':poss', 'p'), ('forget-01', ':time', 'day'), ('day', ':mod', 'one')]\n",
+      "[('tell-01', ':ARG0', '\"Noah\"'), ('\"Noah\"', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 'he'), ('have-rel-role-91', ':ARG2', 'friend'), ('tell-01', ':ARG1', 'smell-02'), ('smell-02', ':ARG0', 'h2'), ('smell-02', ':ARG1', 'bad-07'), ('tell-01', ':ARG2', 'h2')]\n",
+      "[('dig-01', ':ARG0', '\"Joseph\"'), ('dig-01', ':ARG1', 'bag'), ('bag', ':mod', 'gym'), ('bag', ':poss', 'p'), ('dig-01', ':purpose', 'hope-01'), ('hope-01', ':ARG0', 'p'), ('hope-01', ':ARG1', 'find-01'), ('find-01', ':ARG0', 'p'), ('find-01', ':ARG1', 'something')]\n",
+      "[('find-01', ':ARG0', 'he'), ('find-01', ':ARG1', 'peppermint'), ('peppermint', ':quant', 'couple'), ('peppermint', ':mod', 'yummy'), ('find-01', ':mod', 'all')]\n",
+      "[('glad-02', ':ARG0', 'smell-02'), ('smell-02', ':ARG1', 'breathe-01'), ('breathe-01', ':ARG0', '\"Joseph\"'), ('smell-02', ':ARG2', 'good-02'), ('smell-02', ':mod', 'at-least'), ('glad-02', ':ARG1', 'p')]\n",
+      "[('want-01', ':ARG0', '\"Carla\"'), ('want-01', ':ARG1', 'oatmeal'), ('oatmeal', ':quant', 'some'), ('oatmeal', ':purpose', 'breakfast')]\n",
+      "[('open-01', ':ARG0', 'she'), ('open-01', ':ARG1', 'box')]\n",
+      "[('fly-01', ':ARG1', 'moth'), ('moth', ':quant', 'some'), ('fly-01', ':direction', 'out')]\n",
+      "[('possible-01', ':polarity', '-'), ('possible-01', ':ARG1', 'remember-01'), ('remember-01', ':ARG0', 'she'), ('remember-01', ':ARG1', 'open-01'), ('open-01', ':ARG0', 's'), ('open-01', ':ARG1', 'oatmeal'), ('open-01', ':mod', 'last')]\n",
+      "[('throw-01', ':ARG0', 'she'), ('throw-01', ':ARG1', 'box'), ('throw-01', ':ARG2', 'garbage')]\n",
+      "[('make-01', ':ARG0', '\"Jim\"'), ('make-01', ':ARG1', 'sandwich'), ('sandwich', ':mod', 'ham'), ('make-01', ':time', 'just')]\n",
+      "[('eat-01', ':ARG0', 'he'), ('eat-01', ':ARG1', 'it'), ('eat-01', ':time', 'about-to'), ('eat-01', ':time', 'hear-01'), ('hear-01', ':ARG0', 'h'), ('hear-01', ':ARG1', 'noise')]\n",
+      "[('go-02', ':ARG0', 'he'), ('go-02', ':purpose', 'see-01'), ('see-01', ':ARG0', 'h'), ('see-01', ':ARG1', 'noise')]\n",
+      "[('go-01', ':ARG1', 'sandwich'), ('sandwich', ':poss', 'he'), ('go-01', ':time', 'come-01'), ('come-01', ':ARG1', 'h'), ('come-01', ':direction', 'back')]\n",
+      "[('eat-01', ':ARG0', 'cat'), ('cat', ':poss', 'he'), ('eat-01', ':ARG1', 'sandwich'), ('sandwich', ':poss', 'h'), ('sandwich', ':mod', 'all')]\n",
+      "[('make-01', ':ARG0', '\"Tony\"'), ('make-01', ':ARG1', 'pizza'), ('make-01', ':location', 'restaurant'), ('restaurant', ':poss', 'p')]\n",
+      "[('come-in-07', ':ARG1', 'order-02'), ('order-02', ':ARG1', '\"France\"'), ('\"France\"', ':quant', 'some'), ('come-in-07', ':manner', 'sudden')]\n",
+      "[('and', ':op1', 'grab-01'), ('grab-01', ':ARG0', '\"Tony\"'), ('grab-01', ':ARG1', 'fries'), ('fries', ':quant', 'some'), ('and', ':op2', 'throw-01'), ('throw-01', ':ARG0', 'p'), ('throw-01', ':ARG1', 'f'), ('throw-01', ':ARG2', 'fryer')]\n",
+      "[('cause-01', ':ARG0', 'sloppiness'), ('sloppiness', ':poss', 'he'), ('cause-01', ':ARG1', 'fire'), ('fire', ':mod', 'grease'), ('fire', ':mod', 'large'), ('cause-01', ':location', 'everywhere')]\n",
+      "[('and', ':op1', 'grab-01'), ('grab-01', ':ARG0', '\"Tony\"'), ('grab-01', ':ARG1', 'thing'), ('thing', ':ARG0-of', 'extinguish-01'), ('extinguish-01', ':ARG1', 'fire'), ('thing', ':ARG1-of', 'special-02'), ('thing', ':poss', 'p'), ('and', ':op2', 'put-out-05'), ('put-out-05', ':ARG0', 'p'), ('put-out-05', ':ARG1', 'flame')]\n",
+      "[('make-01', ':ARG0', '\"John\"'), ('make-01', ':ARG1', 'rice'), ('rice', ':quant', 'some'), ('make-01', ':location', 'microwave'), ('make-01', ':time', 'just')]\n",
+      "[('need-01', ':ARG0', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 'he'), ('have-rel-role-91', ':ARG2', 'girlfriend'), ('need-01', ':ARG1', 'use-01'), ('use-01', ':ARG0', 'p'), ('use-01', ':ARG1', 'microwave'), ('use-01', ':time', 'next')]\n",
+      "[('and', ':op1', 'go-02'), ('go-02', ':ARG0', 'she'), ('go-02', ':purpose', 'put-01'), ('put-01', ':ARG0', 's'), ('put-01', ':ARG1', 'dish'), ('dish', ':poss', 's'), ('dish', ':ARG2-of', 'p'), ('and', ':op2', 'see-01'), ('see-01', ':ARG0', 's'), ('see-01', ':ARG1', 'mess'), ('mess', ':mod', 'huge')]\n",
+      "[('full-09', ':ARG1', 'thing'), ('full-09', ':ARG2', 'and'), ('and', ':op1', 'water'), ('and', ':op2', 'rice'), ('rice', ':ARG1-of', 'smash-01')]\n",
+      "[('yell-01', ':ARG0', 'she'), ('yell-01', ':ARG2', '\"John\"'), ('yell-01', ':time', 'until'), ('until', ':op1', 'and'), ('and', ':op1', 'come-01'), ('come-01', ':ARG1', 'p'), ('and', ':op2', 'clean-up-02'), ('clean-up-02', ':ARG0', 'p'), ('clean-up-02', ':ARG1', 'it')]\n",
+      "[('like-01', ':ARG0', '\"Todd\"'), ('like-01', ':ARG1', 'pizza'), ('pizza', ':purpose', 'dinner')]\n",
+      "[('ask-01', ':ARG0', 'he'), ('ask-01', ':ARG1', 'truth-value'), ('truth-value', ':polarity-of', 'possible-01'), ('possible-01', ':ARG1', 'have-03'), ('have-03', ':ARG0', 'h'), ('have-03', ':ARG1', 'it'), ('have-03', ':time', 'today'), ('ask-01', ':ARG2', 'person'), ('person', ':ARG0-of', 'have-rel-role-91'), ('have-rel-role-91', ':ARG1', 'h'), ('have-rel-role-91', ':ARG2', 'mom')]\n",
+      "[('contrast-01', ':ARG1', 'say-01'), ('say-01', ':ARG0', 'she'), ('say-01', ':ARG1', 'yes'), ('contrast-01', ':ARG2', 'obligate-01'), ('obligate-01', ':ARG1', 'he'), ('obligate-01', ':ARG2', 'make-01'), ('make-01', ':ARG0', 'h'), ('make-01', ':ARG1', 'it')]\n",
+      "[('make-01', ':ARG0', '\"Todd\"'), ('make-01', ':ARG1', 'pizza'), ('pizza', ':ord', 'ordinal-entity'), ('ordinal-entity', ':value', '1'), ('pizza', ':poss', 'p'), ('make-01', ':time', 'day'), ('day', ':mod', 'that')]\n",
+      "[('have-03', ':ARG0', 'he'), ('he', ':mod', 'only'), ('have-03', ':ARG1', 'pizza'), ('have-03', ':time', 'date-entity'), ('date-entity', ':dayperiod', 'night'), ('date-entity', ':mod', 'that')]\n",
+      "[('enjoy-01', ':ARG0', '\"Neil\"'), ('enjoy-01', ':ARG1', 'trip-03'), ('trip-03', ':ARG0', 'p'), ('trip-03', ':ARG1', '\"Italy\"')]\n",
+      "[('love-01', ':ARG0', 'he'), ('love-01', ':ARG1', 'and'), ('and', ':op1', 'pasta'), ('and', ':op2', 'meatball')]\n",
+      "[('contrast-01', ':ARG2', 'leave-11'), ('leave-11', ':ARG0', 'he'), ('leave-11', ':time', 'soon'), ('leave-11', ':ARG0-of', 'cause-01'), ('cause-01', ':ARG1', 'time'), ('time', ':time-of', 'change-01')]\n",
+      "[('pasta', ':polarity', '-'), ('pasta', ':mod', 'at-all'), ('pasta', ':domain', 'meal'), ('meal', ':mod', 'last'), ('meal', ':poss', 'he')]\n",
+      "[('order-02', ':ARG0', '\"Neil\"'), ('order-02', ':ARG1', 'pizza'), ('pizza', ':mod', 'cheese'), ('pizza', ':mod', 'large'), ('order-02', ':ARG1-of', 'instead-of-91')]\n",
+      "DELETED:  105\n"
+     ]
+    },
+    {
+     "data": {
+      "text/plain": [
+       "\"\\nfor node in graph.nodes:\\n    if '_S' in node:\\n        story = graph.nodes[node]['story']\\n        print('STORY:\\n')\\n        print(story,'\\n\\n')\\n        break\\n\""
+      ]
+     },
+     "execution_count": 18,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "deleted = 0\n",
+    "for file in files:\n",
+    "    with open('../story_graphs/coref/'+file, 'rb') as f:\n",
+    "        graph = pickle.load(f)\n",
+    "    \n",
+    "    for edge in graph.edges:\n",
+    "        if '_S' in edge[0]:\n",
+    "            continue\n",
+    "        annotations = graph.edges[edge]['annotations']\n",
+    "        delete = []\n",
+    "        for rule_index, annotation in enumerate(annotations):\n",
+    "            general_map, specific_map, amr_parses, triples = map_arguments(annotation, edge, rule_index)\n",
+    "            if general_map==None:\n",
+    "                delete.append(rule_index)\n",
+    "            else:\n",
+    "                annotation['general_map'] = general_map\n",
+    "                annotation['specific_map'] = specific_map\n",
+    "                annotation['amr'] = amr_parses\n",
+    "                annotation['triples'] = triples\n",
+    "            graph.edges[edge]['annotations'][rule_index] = annotation\n",
+    "        deleted += len(delete)\n",
+    "        graph.edges[edge]['annotations'] = [annotation for i, annotation in enumerate(graph.edges[edge]['annotations']) if i not in delete]\n",
+    "    for node in graph.nodes:\n",
+    "        if not 'E' in node and not 'O' in node and not 'S' in node:\n",
+    "            sent = graph.nodes[node]['sentence'][0]\n",
+    "            try:\n",
+    "                amr = amr_dict[sent]\n",
+    "            except:\n",
+    "                try:\n",
+    "                    amr = amr_dict[sent[:-1]]\n",
+    "                except:\n",
+    "                    print('Missing AMR for: ', sent)\n",
+    "                    print(file)\n",
+    "                    continue\n",
+    "            parse = replace_names(amr)\n",
+    "            node_triples = get_graph_triples_no_vars(parse)\n",
+    "            node_triples = [reduce_triple(triple) for triple in node_triples]\n",
+    "            graph.nodes[node]['triples'] = node_triples\n",
+    "            print(graph.nodes[node]['triples'])\n",
+    "            \n",
+    "    with open('../story_graphs/arg_map/'+file, 'wb') as f:\n",
+    "         pickle.dump(graph, f)\n",
+    "print('DELETED: ',deleted)\n",
+    "\"\"\"\n",
+    "for node in graph.nodes:\n",
+    "    if '_S' in node:\n",
+    "        story = graph.nodes[node]['story']\n",
+    "        print('STORY:\\n')\n",
+    "        print(story,'\\n\\n')\n",
+    "        break\n",
+    "\"\"\"\n",
+    "#with open(SPEC_MERGED+file,'rb') as f:\n",
+    "    #spec_merged_graph = pickle.load(f)\n",
+    "#with open(GEN_MERGED+file,'rb') as f:\n",
+    "    #gen_merged_graph = pickle.load(f)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 17,
+   "id": "8dd59794",
+   "metadata": {},
+   "outputs": [
+    {
+     "ename": "NetworkXError",
+     "evalue": "The node 1266_1 is not in the digraph.",
+     "output_type": "error",
+     "traceback": [
+      "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
+      "\u001b[0;31mKeyError\u001b[0m                                  Traceback (most recent call last)",
+      "\u001b[0;32m~/Programs/anaconda3/lib/python3.8/site-packages/networkx/classes/digraph.py\u001b[0m in \u001b[0;36msuccessors\u001b[0;34m(self, n)\u001b[0m\n\u001b[1;32m    804\u001b[0m         \u001b[0;32mtry\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 805\u001b[0;31m             \u001b[0;32mreturn\u001b[0m \u001b[0miter\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_succ\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mn\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m    806\u001b[0m         \u001b[0;32mexcept\u001b[0m \u001b[0mKeyError\u001b[0m \u001b[0;32mas\u001b[0m \u001b[0me\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
+      "\u001b[0;31mKeyError\u001b[0m: '1266_1'",
+      "\nThe above exception was the direct cause of the following exception:\n",
+      "\u001b[0;31mNetworkXError\u001b[0m                             Traceback (most recent call last)",
+      "\u001b[0;32m<ipython-input-17-7ca27addedee>\u001b[0m in \u001b[0;36m<module>\u001b[0;34m\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0;32mfor\u001b[0m \u001b[0mn\u001b[0m \u001b[0;32min\u001b[0m \u001b[0mgraph\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mneighbors\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m'1266_1'\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m      2\u001b[0m     \u001b[0mprint\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mn\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m      3\u001b[0m     \u001b[0;32mtry\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m      4\u001b[0m         \u001b[0mprint\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mgraph\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0medges\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mn\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m'1266_1'\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;31m#['2parse'],'\\n'\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m      5\u001b[0m     \u001b[0;32mexcept\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
+      "\u001b[0;32m~/Programs/anaconda3/lib/python3.8/site-packages/networkx/classes/digraph.py\u001b[0m in \u001b[0;36msuccessors\u001b[0;34m(self, n)\u001b[0m\n\u001b[1;32m    805\u001b[0m             \u001b[0;32mreturn\u001b[0m \u001b[0miter\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_succ\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mn\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m    806\u001b[0m         \u001b[0;32mexcept\u001b[0m \u001b[0mKeyError\u001b[0m \u001b[0;32mas\u001b[0m \u001b[0me\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 807\u001b[0;31m             \u001b[0;32mraise\u001b[0m \u001b[0mNetworkXError\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34mf\"The node {n} is not in the digraph.\"\u001b[0m\u001b[0;34m)\u001b[0m \u001b[0;32mfrom\u001b[0m \u001b[0me\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m    808\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m    809\u001b[0m     \u001b[0;31m# digraph definitions\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
+      "\u001b[0;31mNetworkXError\u001b[0m: The node 1266_1 is not in the digraph."
+     ]
+    }
+   ],
+   "source": [
+    "for n in graph.neighbors('1266_1'):\n",
+    "    print(n)\n",
+    "    try:\n",
+    "        print(graph.edges[(n,'1266_1')])#['2parse'],'\\n'\n",
+    "    except:\n",
+    "        print(graph.edges[('1266_1'),n])#['2parse'],'\\n'"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "id": "f4856b2c",
+   "metadata": {},
+   "outputs": [],
+   "source": []
+  }
+ ],
+ "metadata": {
+  "kernelspec": {
+   "display_name": "Python 3",
+   "language": "python",
+   "name": "python3"
+  },
+  "language_info": {
+   "codemirror_mode": {
+    "name": "ipython",
+    "version": 3
+   },
+   "file_extension": ".py",
+   "mimetype": "text/x-python",
+   "name": "python",
+   "nbconvert_exporter": "python",
+   "pygments_lexer": "ipython3",
+   "version": "3.8.8"
+  }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 5
+}
diff --git a/code/Dynamic_Argument_Structure_in_GLUCOSE.ipynb b/code/Dynamic_Argument_Structure_in_GLUCOSE.ipynb
index a5c6c97a2c90314796bdfc2b10e5fe5ab03b2d9b..fc751002060f3c0e4238263082a5cee18b3c5489 100644
--- a/code/Dynamic_Argument_Structure_in_GLUCOSE.ipynb
+++ b/code/Dynamic_Argument_Structure_in_GLUCOSE.ipynb
@@ -5,7 +5,7 @@
    "id": "7844008f",
    "metadata": {},
    "source": [
-    "## Dynamic Argument Structure in GLUCOSE\n",
+    "## Dynamic Event and Argument Structure in GLUCOSE\n",
     "\n",
     "GLUCOSE stands for GeneraLized and COntextualized Story Explanations. It is a dataset composed of childrens' short stories form the ROC-Story Corpus.\n",
     "\n",
@@ -29,16 +29,875 @@
   },
   {
    "cell_type": "code",
-   "execution_count": null,
+   "execution_count": 1,
    "id": "9602147e",
    "metadata": {},
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "['3070_a9b0dee1-478a-4a6b-b45c-33e1be3622d5.pkl', '2403_85131dc1-63b4-46b0-b98c-8c2274e459af.pkl', '1266_48385946-e804-44f2-a0e3-3b4e7f4dbb2e.pkl', '3825_d369e8c1-eaa9-45be-b576-7f76f6b6655d.pkl', '499_1c821d34-b229-4fb8-9c3a-0c8bb29c42fd.pkl', '2433_86dc3749-794e-4162-8a97-4e4fc8dc368a.pkl', '4474_f9d89314-acf7-4224-90b6-6dbd39b7b76e.pkl', '873_31faef95-2bce-468f-8579-841df0274034.pkl', '1474_5335b205-8273-4996-87b4-6bce089ccac3.pkl', '2573_8ecd19bb-21a4-4da4-9def-8d4138c8a050.pkl', '3859_d5d0db0f-2245-4927-b925-86b85edb5184.pkl', '719_2a302846-afcf-407c-8325-0f1247333217.pkl', '1196_43e8c0ec-f4cd-4591-ba3d-4bc7fef254f0.pkl', '446_19d22daa-b77c-4dbf-901a-01ab9e7c3f50.pkl', '1504_54de44db-8cb8-4e69-8d1c-3377384bd620.pkl', '202_0c4f50e3-689e-48e6-81c0-5601b67d5267.pkl', '3101_aafa4ab5-a1df-4ea3-9811-bf850eb53e8b.pkl', '3073_a9dbc2c9-7421-4321-9242-017001a23b6a.pkl']\n"
+     ]
+    }
+   ],
+   "source": [
+    "import json\n",
+    "import pickle\n",
+    "import re\n",
+    "import penman\n",
+    "\n",
+    "SPEC_MERGED = '../amr_nx_story_graphs/spec_merged/'\n",
+    "GEN_MERGED = '../amr_nx_story_graphs/gen_merged/'\n",
+    "\n",
+    "food_cluster = ['13','17','19','25','27','28']\n",
+    "\n",
+    "with open('../story_graphs/topic2storyID.json', 'r') as f:\n",
+    "    topics = json.load(f)\n",
+    "    \n",
+    "def open_amr_dict(file):\n",
+    "    with open(file,'r') as f:\n",
+    "        return(json.load(f))\n",
+    "amr_dict = open_amr_dict('../amr/amr_dict.json')    \n",
+    "\n",
+    "print(topics['19'])\n",
+    "\n",
+    "file = '3070_a9b0dee1-478a-4a6b-b45c-33e1be3622d5.pkl'\n",
+    "file = '2403_85131dc1-63b4-46b0-b98c-8c2274e459af.pkl'\n",
+    "file = '1266_48385946-e804-44f2-a0e3-3b4e7f4dbb2e.pkl'\n",
+    "#for file in topics_0:\n",
+    "with open('../story_graphs/coref/'+file, 'rb') as f:\n",
+    "    graph = pickle.load(f)\n",
+    "with open(SPEC_MERGED+file,'rb') as f:\n",
+    "    spec_merged_graph = pickle.load(f)\n",
+    "with open(GEN_MERGED+file,'rb') as f:\n",
+    "    gen_merged_graph = pickle.load(f)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 2,
+   "id": "23850314",
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "EMO\n",
+      "{'nl_rep': ['Mary and her mother likes rituals'], 'generalized_sents': ['Max likes rituals']}\n",
+      "EMO\n",
+      "{'nl_rep': ['Mary and her mother wants success', 'Mary and her mother feels happy', 'Mary and her mother feels elated'], 'generalized_sents': ['Max and Kim wants success', 'Max and Kim who planted crown feels happy', 'Max and Kim feels happy', 'Max feels elated']}\n",
+      "EMO\n",
+      "{'nl_rep': ['They likes spending time together'], 'generalized_sents': ['Max and Kim likes spending time together']}\n",
+      "EMO\n",
+      "{'nl_rep': ['Mary and her mother feels excited', 'Mary and her mother feels motivated'], 'generalized_sents': ['Max and Kim feels motivated', 'Max and Kim feels excited']}\n",
+      "EMO\n",
+      "{'nl_rep': ['Mary and her mother likes tomatoes'], 'generalized_sents': ['Max and Kim likes crown']}\n",
+      "EMO\n",
+      "{'nl_rep': ['Mary and her mother likes canning'], 'generalized_sents': ['Max and Kim likes doing crown']}\n",
+      "EMO\n",
+      "{'nl_rep': ['Mary and her mother wants to can'], 'generalized_sents': ['Max and Kim wants to do crown']}\n",
+      "EMO\n",
+      "{'nl_rep': ['They likes tomatoes'], 'generalized_sents': ['Max and Kim likes crown']}\n",
+      "EMO\n",
+      "{'nl_rep': ['Mary and her mother feels proud'], 'generalized_sents': ['Max and Kim feels proud']}\n",
+      "EMO\n",
+      "{'nl_rep': ['They feels happy'], 'generalized_sents': ['Max and Kim that enjoy growing crown feels happy']}\n",
+      "LOC\n",
+      "{'nl_rep': ['Mary and her mother are in their garden', 'Mary and her mother are at the garden'], 'generalized_sents': ['Max and Kim are in a garden', 'Max and Kim are at France where crown is located', 'Max and Kim are at France']}\n",
+      "LOC\n",
+      "{'nl_rep': ['They are in the garden'], 'generalized_sents': ['Max and Kim are in France where crown is grown', 'Max and Kim are in the garden']}\n",
+      "LOC\n",
+      "{'nl_rep': ['The tomato plants are in the sun'], 'generalized_sents': ['crown is in the sun']}\n",
+      "LOC\n",
+      "{'nl_rep': ['The tomatoes are in containers', 'The tomatoes are inside of cans'], 'generalized_sents': ['crown is in containers', 'crown is inside of throne']}\n",
+      "LOC\n",
+      "{'nl_rep': ['Tomatoes are in the garden'], 'generalized_sents': ['crown is in France']}\n",
+      "POS\n",
+      "{'nl_rep': ['Mary and her mother possesses tomatoes'], 'generalized_sents': ['Max and Kim possesses crown', 'Max possesses crown']}\n",
+      "POS\n",
+      "{'nl_rep': ['Mary and her mother possesses seeds'], 'generalized_sents': ['Max and Kim possesses seeds']}\n",
+      "POS\n",
+      "{'nl_rep': ['Mary and her mother possesses cans'], 'generalized_sents': ['Max and Kim possesses crown']}\n",
+      "POS\n",
+      "{'nl_rep': ['They possesses tomato seeds'], 'generalized_sents': ['Max and Kim possesses throne that is needed to grow crown']}\n",
+      "POS\n",
+      "{'nl_rep': ['They possesses cans of tomatoes', 'They possesses tomatoes'], 'generalized_sents': ['Max and Kim possesses crown', 'Max and Kim possesses cans of crown']}\n",
+      "STORY\n",
+      "\n",
+      "Mary and her mother had a tradition. Every year, they would grow tomatoes in their garden. At the end of each season, they would gather and can the tomatoes. This year, there had been an especially large harvest of tomatoes. They had a great time attempting to can all of the tomatoes they grew. \n",
+      "\n",
+      "\n",
+      "ANNOTATED GENERALIZERS\n",
+      "\n",
+      "['someone_b', 'somewhere_a', 'someone_a', 'something_a', 'something_c', 'something_b'] \n",
+      "\n",
+      "{'story': 'Mary and her mother had a tradition. Every year, they would grow tomatoes in their garden. At the end of each season, they would gather and can the tomatoes. This year, there had been an especially large harvest of tomatoes. They had a great time attempting to can all of the tomatoes they grew.', 'resolved_story': 'Mary and Mary mother had a tradition. Every year, Mary and her mother would grow tomatoes in Mary and her mother garden. At the end of each season, Mary and her mother would gather and can the tomatoes. This year, there had been an especially large harvest of tomatoes. Mary and her mother had a great time attempting to can all of the tomatoes Mary and her mother grew.', 'cluster': 19, 'generalizers': ['someone_b', 'somewhere_a', 'someone_a', 'something_a', 'something_c', 'something_b'], '2parse': ['They had a great time attempting to can all of the tomatoes they grew', 'At the end of each season, they would gather and can the tomatoes', 'At the end of each season, Mary and her mother would gather and can the tomatoes', 'Mary and her mother had a great time attempting to can all of the tomatoes Mary and her mother grew', 'Every year, they would grow tomatoes in their garden', 'Mary and her mother had a tradition', 'Mary and Mary mother had a tradition', 'Every year, Mary and her mother would grow tomatoes in Mary and her mother garden', 'This year, there had been an especially large harvest of tomatoes'], 'general_reductions': {'nodes': [(0, 3), (1, 14), (2, 22), (3, 27)], 'edges': [(0, 66)], 'D_bef': [(0.1, 2), (0.2, 56), (0.3, 8)], 'D_aft': [(0.2, 9), (0.3, 30), (0.4, 19), (0.5, 7), (0.7, 1)]}, 'specific_reductions': {'nodes': [(0, 16), (1, 48), (2, 2)], 'edges': [(0, 66)], 'D_bef': [(0.1, 7), (0.2, 44), (0.3, 15)], 'D_aft': [(0.2, 48), (0.3, 8), (0.4, 9), (0.5, 1)]}, 'annotation_count': 66, 'general_rename_dict': {('crown-01', ':ARG0', 's1'): 'G_0', ('tradition', ':domain', 's0'): 'G_0', ('crown-01', ':ARG0', 'e0'): 'G_0', ('like-01', ':ARG0', 'f0'): 'G_0', ('and', ':op2', 's1'): 'G_1', ('and', ':op2', 's0'): 'G_1', ('and', ':op2', 'f2'): 'G_1', ('and', ':op2', 'l0'): 'G_1', ('and', ':op2', 'l1'): 'G_1', ('and', ':op2', 'o1'): 'G_1', ('and', ':op2', 'e3'): 'G_1', ('and', ':op2', 'f3'): 'G_1', ('and', ':op2', 'e9'): 'G_1', ('and', ':op2', 'f9'): 'G_1', ('and', ':op2', 'p3'): 'G_1', ('and', ':op2', 'p0'): 'G_1', ('and', ':op2', 'p4'): 'G_1', ('and', ':op2', 'o3'): 'G_1', ('and', ':op2', 'e2'): 'G_1', ('and', ':op2', 'f7'): 'G_1', ('and', ':op2', 'f4'): 'G_1', ('and', ':op2', 'e1'): 'G_1', ('and', ':op2', 'p1'): 'G_1', ('and', ':op2', 'o5'): 'G_1', ('and', ':op1', 's1'): 'G_2', ('and', ':op1', 's0'): 'G_2', ('and', ':op1', 'f4'): 'G_2', ('and', ':op1', 'p1'): 'G_2', ('and', ':op1', 'e1'): 'G_2', ('and', ':op1', 'f2'): 'G_2', ('and', ':op1', 'l0'): 'G_2', ('and', ':op1', 'o1'): 'G_2', ('and', ':op1', 'o5'): 'G_2', ('and', ':op1', 'e3'): 'G_2', ('and', ':op1', 'p0'): 'G_2', ('and', ':op1', 'l1'): 'G_2', ('and', ':op1', 'p3'): 'G_2', ('and', ':op1', 'f9'): 'G_2', ('and', ':op1', 'e2'): 'G_2', ('and', ':op1', 'f3'): 'G_2', ('and', ':op1', 'f7'): 'G_2', ('and', ':op1', 'p4'): 'G_2', ('and', ':op1', 'e9'): 'G_2', ('and', ':op1', 'o3'): 'G_2'}, 'specific_rename_dict': {('and', ':op1', 's1'): 'G_0', ('grow-03', ':ARG0', 's1'): 'G_0', ('and', ':op1', 's0'): 'G_0', ('have-rel-role-91', ':ARG2', 's1'): 'G_0', ('have-rel-role-91', ':ARG2', 's0'): 'G_0', ('gather-01', ':ARG0', 'e2'): 'G_0', ('have-rel-role-91', ':ARG2', 'e0'): 'G_0', ('and', ':op1', 'e0'): 'G_0', ('and', ':op1', 'e3'): 'G_0', ('follow-02', ':ARG0', 'e3'): 'G_0', ('and', ':op1', 'p0'): 'G_0', ('plant-01', ':ARG0', 'e1'): 'G_0', ('want-01', ':ARG0', 'o5'): 'G_0', ('have-rel-role-91', ':ARG2', 'o1'): 'G_0', ('person', ':domain', 'o1'): 'G_0', ('like-01', ':ARG0', 'f7'): 'G_0', ('and', ':op1', 'f4'): 'G_0', ('possess-01', ':ARG0', 'p3'): 'G_0', ('and', ':op1', 'o1'): 'G_0', ('have-rel-role-91', ':ARG2', 'o5'): 'G_0', ('have-rel-role-91', ':ARG2', 'f0'): 'G_0', ('have-rel-role-91', ':ARG2', 'l0'): 'G_0', ('have-rel-role-91', ':ARG2', 'e2'): 'G_0', ('be-located-at-91', ':ARG1', 'l1'): 'G_0', ('and', ':op1', 'f0'): 'G_0', ('possess-01', ':ARG0', 'p4'): 'G_0', ('and', ':op1', 'l0'): 'G_0', ('and', ':op1', 'o5'): 'G_0', ('have-rel-role-91', ':ARG2', 'p1'): 'G_0', ('and', ':op1', 'e2'): 'G_0', ('feel-01', ':ARG0', 'f9'): 'G_0', ('harvest-01', ':ARG0', 'e1'): 'G_0', ('feel-01', ':ARG0', 'f3'): 'G_0', ('have-rel-role-91', ':ARG2', 'f3'): 'G_0', ('and', ':op1', 'p1'): 'G_0', ('want-01', ':ARG0', 'o3'): 'G_0', ('possess-01', ':ARG0', 'p0'): 'G_0', ('and', ':op1', 'f3'): 'G_0', ('have-rel-role-91', ':ARG2', 'e3'): 'G_0', ('have-rel-role-91', ':ARG2', 'p0'): 'G_0'}} \n",
+      "\n",
+      "AMR PARSES\n",
+      "\n",
+      "Mary and her mother had a tradition.\n",
+      "(t / tradition\n",
+      "      :domain (a / and\n",
+      "            :op1 (p / person\n",
+      "                  :name (n / name\n",
+      "                        :op1 \"Mary\"))\n",
+      "            :op2 (p2 / person\n",
+      "                  :ARG0-of (h / have-rel-role-91\n",
+      "                        :ARG1 p\n",
+      "                        :ARG2 (m / mother)))))\n",
+      "Every year, they would grow tomatoes in their garden.\n",
+      "(g / grow-03\n",
+      "      :ARG0 (t / they)\n",
+      "      :ARG1 (t2 / tomato)\n",
+      "      :location (g2 / garden\n",
+      "            :poss t)\n",
+      "      :frequency (r / rate-entity-91\n",
+      "            :ARG3 (t3 / temporal-quantity\n",
+      "                  :quant 1\n",
+      "                  :unit (y / year))))\n",
+      "At the end of each season, they would gather and can the tomatoes.\n",
+      "(a / and\n",
+      "      :op1 (g / gather-01\n",
+      "            :ARG0 (t / they)\n",
+      "            :ARG1 (t2 / tomato))\n",
+      "      :op2 (c / can-01\n",
+      "            :ARG0 t\n",
+      "            :ARG1 t2)\n",
+      "      :time (e / end-01\n",
+      "            :ARG1 (s / season\n",
+      "                  :mod (e2 / each))))\n",
+      "This year, there had been an especially large harvest of tomatoes.\n",
+      "(h / harvest-01\n",
+      "      :ARG1 (t / tomato)\n",
+      "      :mod (l / large\n",
+      "            :mod (e / especially))\n",
+      "      :time (y / year\n",
+      "            :mod (t2 / this)))\n",
+      "They had a great time attempting to can all of the tomatoes they grew.\n",
+      "(h / have-03\n",
+      "      :ARG0 (t / they)\n",
+      "      :ARG1 (t2 / time\n",
+      "            :mod (g / great))\n",
+      "      :time (a / attempt-01\n",
+      "            :ARG0 t\n",
+      "            :ARG1 (c / can-01\n",
+      "                  :ARG0 t\n",
+      "                  :ARG1 (t3 / tomato\n",
+      "                        :mod (a2 / all)\n",
+      "                        :ARG1-of (g2 / grow-03\n",
+      "                              :ARG0 t)))))\n"
+     ]
+    }
+   ],
+   "source": [
+    "for node in graph.nodes:\n",
+    "    if '_S' in node:\n",
+    "        story = graph.nodes[node]['story']\n",
+    "        print('STORY\\n')\n",
+    "        print(story,'\\n\\n')\n",
+    "        print('ANNOTATED GENERALIZERS\\n')\n",
+    "        print(graph.nodes[node]['generalizers'],'\\n')\n",
+    "        print(graph.nodes[node],'\\n')\n",
+    "        print('AMR PARSES\\n')\n",
+    "    elif 'LOC' in node:\n",
+    "        print('LOC')\n",
+    "        print(graph.nodes[node])\n",
+    "    elif 'EMO' in node:\n",
+    "        print('EMO')\n",
+    "        print(graph.nodes[node])\n",
+    "    elif 'POS' in node:\n",
+    "        print('POS')\n",
+    "        print(graph.nodes[node])\n",
+    "    elif 'E' in node or 'O' in node:\n",
+    "        continue\n",
+    "    else:\n",
+    "        #print(graph.nodes[node])\n",
+    "        print(graph.nodes[node]['sentence'][0])\n",
+    "        try:\n",
+    "            print(amr_dict[graph.nodes[node]['sentence'][0]])\n",
+    "        except:\n",
+    "            print(amr_dict[graph.nodes[node]['sentence'][0][:-1]])"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 3,
+   "id": "b214e47d",
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "('1266_EVENT_0', '1266_0')\n",
+      "{'annotations': [{'dimension': '1', 'quality': 2, 'worker_id': 203, 'rules': [['Mary and her mother grow a garden every year', 'Causes/Enables', 'Mary and her mother had a tradition'], ['{Mary and her mother }_[subject] {grow }_[verb] {a garden }_[object1] {every year }_[object2]', 'Causes/Enables', '{Mary and her mother}_[subject] {had }_[verb] {a tradition }_[object1]'], ['Someone_A does Something_A (that is an activity) every year', 'Causes/Enables', 'Someone_A has a tradition'], ['{Someone_A}_[subject] {does }_[verb] {Something_A ||that is an activity||}_[object1] {every year }_[object2]', 'Causes/Enables', '{Someone_A}_[subject] {has }_[verb] {a tradition }_[object1]']], '2parse': [['Mary and her mother grow a garden every year', 'Causes/Enables', 'Mary and her mother had a tradition'], ['Max does crown every year', 'Causes/Enables', 'Max has a tradition']], 'general_0': ['someone_a does something_a (that is an activity) every year', 'Causes/Enables', 'someone_a has a tradition'], 'general_replaced': ['Max does crown (that is an activity) every year', 'Causes/Enables', 'Max has a tradition'], 'general_no_brackets': ['Max does crown every year', 'Causes/Enables', 'Max has a tradition'], 'coref': [('Mary', 'Mary'), ('Mary and her mother', 'and'), ('Mary', 'her'), ('Mary and her mother', 'mother')], 'coref_roots': [('Mary', 'Mary'), ('Mary', 'and'), ('Mary', 'her'), ('mother', 'mother')], 'general_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.3}, 'specific_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.1, 'D_aft': 0.2}}]}\n",
+      "('1266_EVENT_1', '1266_1')\n",
+      "{'annotations': [{'dimension': '1', 'quality': 3, 'worker_id': 197, 'rules': [['They plant tomatoes', 'Causes/Enables', 'They grow tomatoes'], ['{They}_[subject] {plant}_[verb] {tomatoes}_[object1]', 'Causes/Enables', '{They}_[subject] {grow}_[verb] {tomatoes}_[object1]'], ['Someone_A and Someone_B plant Something_A (that is a plant)', 'Causes/Enables', 'Someone_A and Someone_B grow Something_A'], ['{Someone_A and Someone_B}_[subject] {plant}_[verb] {Something_A ||that is a plant||}_[object1]', 'Causes/Enables', '{Someone_A and Someone_B}_[subject] {grow}_[verb] {Something_A}_[object1]']], '2parse': [['They plant tomatoes', 'Causes/Enables', 'They grow tomatoes'], ['Max and Kim plant crown', 'Causes/Enables', 'Max and Kim grow crown']], 'general_0': ['someone_a and someone_b plant something_a (that is a plant)', 'Causes/Enables', 'someone_a and someone_b grow something_a'], 'general_replaced': ['Max and Kim plant crown (that is a plant)', 'Causes/Enables', 'Max and Kim grow crown'], 'general_no_brackets': ['Max and Kim plant crown', 'Causes/Enables', 'Max and Kim grow crown'], 'coref': [('They', 'They')], 'coref_roots': [('They', 'They')], 'general_merge': {'nodes': 3, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.4}, 'specific_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.3, 'D_aft': 0.4}}]}\n",
+      "('1266_EVENT_1', '1266_4')\n",
+      "{'annotations': [{'dimension': '1', 'quality': 1, 'worker_id': 2, 'rules': [['They grow tomatoes', 'Causes/Enables', 'They can the tomatoes'], ['{They }_[subject] {grow }_[verb] {tomatoes }_[object1]', 'Causes/Enables', '{They }_[subject] {can }_[verb] {the tomatoes }_[object1]'], ['Someone_A and Someone_B grow Something_A (that are tomatoes )', 'Causes/Enables', 'Someone_A and Someone_B can Something_A'], ['{Someone_A and Someone_B}_[subject] {grow }_[verb] {Something_A ||that are tomatoes ||}_[object1]', 'Causes/Enables', '{Someone_A and Someone_B}_[subject] {can }_[verb] {Something_A}_[object1]']], '2parse': [['They grow tomatoes', 'Causes/Enables', 'They can the tomatoes'], ['Max and Kim grow crown', 'Causes/Enables', 'Max and Kim can crown']], 'general_0': ['someone_a and someone_b grow something_a (that are tomatoes )', 'Causes/Enables', 'someone_a and someone_b can something_a'], 'general_replaced': ['Max and Kim grow crown (that are tomatoes )', 'Causes/Enables', 'Max and Kim can crown'], 'general_no_brackets': ['Max and Kim grow crown', 'Causes/Enables', 'Max and Kim can crown'], 'coref': [('They', 'They'), ('tomatoes', 'the'), ('tomatoes', 'tomatoes')], 'coref_roots': [('They', 'They'), ('tomatoes', 'the'), ('tomatoes', 'tomatoes')], 'general_merge': {'nodes': 3, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.4}, 'specific_merge': {'nodes': 0, 'edges': 0, 'D_bef': 0.3, 'D_aft': 0.3}}]}\n",
+      "('1266_EVENT_2', '1266_4')\n",
+      "{'annotations': [{'dimension': '1', 'quality': 3, 'worker_id': 152, 'rules': [['Mary and her mother harvest tomatoes', 'Causes/Enables', 'Mary and her mother can the tomatoes'], ['{Mary and her mother}_[subject] {harvest}_[verb] {tomatoes}_[object1]', 'Causes/Enables', '{Mary and her mother}_[subject] {can}_[verb] {the tomatoes}_[object1]'], ['Someone_A and Someone_B harvest Something_A (that is produce)', 'Causes/Enables', 'Someone_A and Someone_B can Something_A (that is produce)'], ['{Someone_A and Someone_B}_[subject] {harvest}_[verb] {Something_A ||that is produce||}_[object1]', 'Causes/Enables', '{Someone_A and Someone_B}_[subject] {can}_[verb] {Something_A ||that is produce||}_[object1]']], '2parse': [['Mary and her mother harvest tomatoes', 'Causes/Enables', 'Mary and her mother can the tomatoes'], ['Max and Kim harvest crown', 'Causes/Enables', 'Max and Kim can crown']], 'general_0': ['someone_a and someone_b harvest something_a (that is produce)', 'Causes/Enables', 'someone_a and someone_b can something_a (that is produce)'], 'general_replaced': ['Max and Kim harvest crown (that is produce)', 'Causes/Enables', 'Max and Kim can crown (that is produce)'], 'general_no_brackets': ['Max and Kim harvest crown', 'Causes/Enables', 'Max and Kim can crown'], 'coref': [('Mary', 'Mary'), ('Mary and her mother', 'and'), ('Mary', 'her'), ('Mary and her mother', 'mother'), ('Mary and her mother harvest tomatoes', 'the'), ('Mary and her mother harvest tomatoes', 'tomatoes')], 'coref_roots': [('Mary', 'Mary'), ('Mary', 'and'), ('Mary', 'her'), ('mother', 'mother'), ('Mary', 'the'), ('tomatoes', 'tomatoes')], 'general_merge': {'nodes': 3, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.4}, 'specific_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.2}}, {'dimension': '1', 'quality': 3, 'worker_id': 19, 'rules': [['Mary and her mother grow tomatoes', 'Causes/Enables', 'Mary and her mother have a great time'], ['{Mary and her mother}_[subject] {grow}_[verb] {tomatoes}_[object1]', 'Causes/Enables', '{Mary and her mother}_[subject] {have}_[verb] {a great time}_[object1]'], ['Someone_A and Someone_B do Something_A (that is fun)', 'Causes/Enables', 'Someone_A and Someone_B have a great time'], ['{Someone_A and Someone_B}_[subject] {do}_[verb] {Something_A ||that is fun||}_[object1]', 'Causes/Enables', '{Someone_A and Someone_B}_[subject] {have}_[verb] {a great time}_[object1]']], '2parse': [['Mary and her mother grow tomatoes', 'Causes/Enables', 'Mary and her mother have a great time'], ['Max and Kim do crown', 'Causes/Enables', 'Max and Kim have a great time']], 'general_0': ['someone_a and someone_b do something_a (that is fun)', 'Causes/Enables', 'someone_a and someone_b have a great time'], 'general_replaced': ['Max and Kim do crown (that is fun)', 'Causes/Enables', 'Max and Kim have a great time'], 'general_no_brackets': ['Max and Kim do crown', 'Causes/Enables', 'Max and Kim have a great time'], 'coref': [('Mary', 'Mary'), ('Mary and her mother', 'and'), ('Mary', 'her'), ('Mary and her mother', 'mother')], 'coref_roots': [('Mary', 'Mary'), ('Mary', 'and'), ('Mary', 'her'), ('mother', 'mother')], 'general_merge': {'nodes': 2, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.3}, 'specific_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.1, 'D_aft': 0.2}}]}\n",
+      "('1266_EVENT_3', '1266_0')\n",
+      "{'annotations': [{'dimension': '1', 'quality': 3, 'worker_id': 19, 'rules': [['Mary and her mother get a tradition', 'Causes/Enables', 'Mary and her mother have a tradition'], ['{Mary and her mother}_[subject] {get}_[verb] {a tradition}_[object1]', 'Causes/Enables', '{Mary and her mother}_[subject] {have}_[verb] {a tradition}_[object1]'], ['Someone_A and Someone_B get Something_A', 'Causes/Enables', 'Someone_A and Someone_B have Something_A'], ['{Someone_A and Someone_B}_[subject] {get}_[verb] {Something_A}_[object1]', 'Causes/Enables', '{Someone_A and Someone_B}_[subject] {have}_[verb] {Something_A}_[object1]']], '2parse': [['Mary and her mother get a tradition', 'Causes/Enables', 'Mary and her mother have a tradition'], ['Max and Kim get crown', 'Causes/Enables', 'Max and Kim have crown']], 'general_0': ['someone_a and someone_b get something_a', 'Causes/Enables', 'someone_a and someone_b have something_a'], 'general_replaced': ['Max and Kim get crown', 'Causes/Enables', 'Max and Kim have crown'], 'general_no_brackets': ['Max and Kim get crown', 'Causes/Enables', 'Max and Kim have crown'], 'coref': [('Mary', 'Mary'), ('Mary and her mother', 'and'), ('Mary', 'her'), ('Mary and her mother', 'mother')], 'coref_roots': [('Mary', 'Mary'), ('Mary', 'and'), ('Mary', 'her'), ('mother', 'mother')], 'general_merge': {'nodes': 3, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.5}, 'specific_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.2}}]}\n",
+      "('1266_EVENT_4', '1266_3')\n",
+      "{'annotations': [{'dimension': '1', 'quality': 2, 'worker_id': 14, 'rules': [['It rains a lot', 'Causes/Enables', 'There is especially large harvest of tomatoes'], ['{It}_[subject] {rains}_[verb] {a lot}_[object1]', 'Causes/Enables', '{There}_[subject] {is}_[verb] {especially large harvest of tomatoes}_[object1]'], ['It rains a lot', 'Causes/Enables', 'There is a large harvest of Something_A (that is a crop)'], ['{It}_[subject] {rains}_[verb] {a lot}_[object1]', 'Causes/Enables', '{There }_[subject] {is}_[verb] {a large harvest of Something_A ||that is a crop||}_[object1]']], '2parse': [['It rains a lot', 'Causes/Enables', 'There is especially large harvest of tomatoes'], ['It rains a lot', 'Causes/Enables', 'There is a large harvest of crown']], 'general_0': ['It rains a lot', 'Causes/Enables', 'There is a large harvest of something_a (that is a crop)'], 'general_replaced': ['It rains a lot', 'Causes/Enables', 'There is a large harvest of crown (that is a crop)'], 'general_no_brackets': ['It rains a lot', 'Causes/Enables', 'There is a large harvest of crown'], 'coref': [], 'coref_roots': [], 'general_merge': {'nodes': 0, 'edges': 0, 'D_bef': 0.3, 'D_aft': 0.3}, 'specific_merge': {'nodes': 0, 'edges': 0, 'D_bef': 0.3, 'D_aft': 0.3}}, {'dimension': '1', 'quality': 3, 'worker_id': 19, 'rules': [['Lots of rain falls', 'Causes/Enables', 'The harvest is big'], ['{Lots of rain}_[subject] {falls}_[verb]', 'Causes/Enables', '{The harvest}_[subject] {is}_[verb] {big}_[object1]'], ['Lots of rain falls throughout the year', 'Causes/Enables', 'The harvest is bountiful'], ['{Lots of rain}_[subject] {falls}_[verb] {throughout}_[preposition1] {the year}_[object1]', 'Causes/Enables', '{The harvest}_[subject] {is}_[verb] {bountiful}_[object1]']], '2parse': [['Lots of rain falls', 'Causes/Enables', 'The harvest is big'], ['Lots of rain falls throughout the year', 'Causes/Enables', 'The harvest is bountiful']], 'general_0': ['Lots of rain falls throughout the year', 'Causes/Enables', 'The harvest is bountiful'], 'general_replaced': ['Lots of rain falls throughout the year', 'Causes/Enables', 'The harvest is bountiful'], 'general_no_brackets': ['Lots of rain falls throughout the year', 'Causes/Enables', 'The harvest is bountiful'], 'coref': [], 'coref_roots': [], 'general_merge': {'nodes': 0, 'edges': 0, 'D_bef': 0.3, 'D_aft': 0.3}, 'specific_merge': {'nodes': 0, 'edges': 0, 'D_bef': 0.3, 'D_aft': 0.3}}]}\n",
+      "('1266_EVENT_5', '1266_3')\n",
+      "{'annotations': [{'dimension': '1', 'quality': 2, 'worker_id': 203, 'rules': [['Mary and her mother used fertilizer', 'Causes/Enables', 'Mary and her mother had a large harvest of tomatoes'], ['{Mary and her mother }_[subject] {used }_[verb] {fertilizer }_[object1]', 'Causes/Enables', '{Mary and her mother}_[subject] {had }_[verb] {a large harvest of tomatoes }_[object1]'], ['Someone_A uses fertilizer on Something_A (that is a plant)', 'Causes/Enables', 'Something_A (that is a plant ) produces lot of fruits'], ['{Someone_A}_[subject] {uses }_[verb] {fertilizer }_[object1] {on }_[preposition2] {Something_A ||that is a plant||}_[object2]', 'Causes/Enables', '{Something_A ||that is a plant ||}_[subject] {produces }_[verb] {lot of }_[preposition1] {fruits}_[object1]']], '2parse': [['Mary and her mother used fertilizer', 'Causes/Enables', 'Mary and her mother had a large harvest of tomatoes'], ['Max uses fertilizer on crown', 'Causes/Enables', 'crown produces lot of fruits']], 'general_0': ['someone_a uses fertilizer on something_a (that is a plant)', 'Causes/Enables', 'something_a (that is a plant ) produces lot of fruits'], 'general_replaced': ['Max uses fertilizer on crown (that is a plant)', 'Causes/Enables', 'crown (that is a plant ) produces lot of fruits'], 'general_no_brackets': ['Max uses fertilizer on crown', 'Causes/Enables', 'crown produces lot of fruits'], 'coref': [('Mary', 'Mary'), ('Mary and her mother', 'and'), ('Mary', 'her'), ('Mary and her mother', 'mother')], 'coref_roots': [('Mary', 'Mary'), ('Mary', 'and'), ('Mary', 'her'), ('mother', 'mother')], 'general_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.3}, 'specific_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.1, 'D_aft': 0.2}}]}\n",
+      "('1266_EVENT_6', '1266_2')\n",
+      "{'annotations': [{'dimension': '1', 'quality': 3, 'worker_id': 19, 'rules': [['Mary and her mother decide to can', 'Causes/Enables', 'Mary and her mother can'], ['{Mary and her mother}_[subject] {decide}_[verb] {to }_[preposition1] {can}_[object1]', 'Causes/Enables', '{Mary and her mother}_[subject] {can}_[verb]'], ['Someone_A and Someone_B decide to do Something_A', 'Causes/Enables', 'Someone_A and Someone_B do Something_A'], ['{Someone_A and Someone_B}_[subject] {decide}_[verb] {to }_[preposition1] {do Something_A}_[object1]', 'Causes/Enables', '{Someone_A and Someone_B}_[subject] {do}_[verb] {Something_A}_[object1]']], '2parse': [['Mary and her mother decide to can', 'Causes/Enables', 'Mary and her mother can'], ['Max and Kim decide to do crown', 'Causes/Enables', 'Max and Kim do crown']], 'general_0': ['someone_a and someone_b decide to do something_a', 'Causes/Enables', 'someone_a and someone_b do something_a'], 'general_replaced': ['Max and Kim decide to do crown', 'Causes/Enables', 'Max and Kim do crown'], 'general_no_brackets': ['Max and Kim decide to do crown', 'Causes/Enables', 'Max and Kim do crown'], 'coref': [('Mary', 'Mary'), ('Mary and her mother', 'and'), ('Mary', 'her'), ('Mary and her mother', 'mother')], 'coref_roots': [('Mary', 'Mary'), ('Mary', 'and'), ('Mary', 'her'), ('mother', 'mother')], 'general_merge': {'nodes': 3, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.5}, 'specific_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.2}}]}\n",
+      "('1266_EMO_0', '1266_0')\n",
+      "{'annotations': [{'dimension': '2', 'quality': 2, 'worker_id': 203, 'rules': [['Mary and her mother like(s) rituals', 'Motivates', 'Mary and her mother had a tradition'], ['{Mary and her mother}_[subject] {like(s)}_[verb] {rituals }_[object]', 'Motivates', '{Mary and her mother}_[subject] {had }_[verb] {a tradition }_[object1]'], ['Someone_A like(s) rituals', 'Motivates', 'Someone_A has a tradition'], ['{Someone_A}_[subject] {like(s)}_[verb] {rituals }_[object]', 'Motivates', '{Someone_A}_[subject] {has }_[verb] {a tradition }_[object1]']], '2parse': [['Mary and her mother likes rituals', 'Motivates', 'Mary and her mother had a tradition'], ['Max likes rituals', 'Motivates', 'Max has a tradition']], 'general_0': ['someone_a likes rituals', 'Motivates', 'someone_a has a tradition'], 'general_replaced': ['Max likes rituals', 'Motivates', 'Max has a tradition'], 'general_no_brackets': ['Max likes rituals', 'Motivates', 'Max has a tradition'], 'coref': [('Mary', 'Mary'), ('Mary and her mother', 'and'), ('Mary', 'her'), ('Mary and her mother', 'mother')], 'coref_roots': [('Mary', 'Mary'), ('Mary', 'and'), ('Mary', 'her'), ('mother', 'mother')], 'general_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.3, 'D_aft': 0.5}, 'specific_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.2}}]}\n",
+      "('1266_EMO_1', '1266_4')\n",
+      "{'annotations': [{'dimension': '2', 'quality': 3, 'worker_id': 152, 'rules': [['Mary and her mother want(s) success', 'Motivates', 'Mary and her mother can the tomatoes'], ['{Mary and her mother}_[subject] {want(s)}_[verb] {success}_[object]', 'Motivates', '{Mary and her mother}_[subject] {can}_[verb] {the tomatoes}_[object1]'], ['Someone_A and Someone_B want(s) success', 'Motivates', 'Someone_A and Someone_B can Something_A (that is produce)'], ['{Someone_A and Someone_B}_[subject] {want(s)}_[verb] {success}_[object]', 'Motivates', '{Someone_A and Someone_B}_[subject] {can}_[verb] {Something_A ||that is produce||}_[object1]']], '2parse': [['Mary and her mother wants success', 'Motivates', 'Mary and her mother can the tomatoes'], ['Max and Kim wants success', 'Motivates', 'Max and Kim can crown']], 'general_0': ['someone_a and someone_b wants success', 'Motivates', 'someone_a and someone_b can something_a (that is produce)'], 'general_replaced': ['Max and Kim wants success', 'Motivates', 'Max and Kim can crown (that is produce)'], 'general_no_brackets': ['Max and Kim wants success', 'Motivates', 'Max and Kim can crown'], 'coref': [('Mary', 'Mary'), ('Mary and her mother', 'and'), ('Mary', 'her'), ('Mary and her mother', 'mother')], 'coref_roots': [('Mary', 'Mary'), ('Mary', 'and'), ('Mary', 'her'), ('mother', 'mother')], 'general_merge': {'nodes': 2, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.3}, 'specific_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.2}}]}\n",
+      "('1266_EMO_2', '1266_0')\n",
+      "{'annotations': [{'dimension': '2', 'quality': 1, 'worker_id': 2, 'rules': [['They like(s) spending time together', 'Motivates', 'They have a tradition'], ['{They }_[subject] {like(s)}_[verb] {spending time together }_[object]', 'Motivates', '{They }_[subject] {have a tradition }_[verb]'], ['Someone_A and Someone_B like(s) spending time together', 'Motivates', 'Someone_A and Someone_B have a tradition'], ['{Someone_A and Someone_B}_[subject] {like(s)}_[verb] {spending time together }_[object]', 'Motivates', '{Someone_A and Someone_B}_[subject] {have a tradition }_[verb]']], '2parse': [['They likes spending time together', 'Motivates', 'They have a tradition'], ['Max and Kim likes spending time together', 'Motivates', 'Max and Kim have a tradition']], 'general_0': ['someone_a and someone_b likes spending time together', 'Motivates', 'someone_a and someone_b have a tradition'], 'general_replaced': ['Max and Kim likes spending time together', 'Motivates', 'Max and Kim have a tradition'], 'general_no_brackets': ['Max and Kim likes spending time together', 'Motivates', 'Max and Kim have a tradition'], 'coref': [('They', 'They')], 'coref_roots': [('They', 'They')], 'general_merge': {'nodes': 2, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.3}, 'specific_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.3, 'D_aft': 0.4}}]}\n",
+      "('1266_EMO_3', '1266_1')\n",
+      "{'annotations': [{'dimension': '2', 'quality': 3, 'worker_id': 152, 'rules': [['Mary and her mother feel(s) motivated', 'Motivates', 'Mary and her mother grow tomatoes'], ['{Mary and her mother}_[subject] {feel(s)}_[verb] {motivated}_[object]', 'Motivates', '{Mary and her mother}_[subject] {grow}_[verb] {tomatoes}_[object1]'], ['Someone_A and Someone_B feel(s) motivated', 'Motivates', 'Someone_A and Someone_B grow Something_A'], ['{Someone_A and Someone_B}_[subject] {feel(s)}_[verb] {motivated}_[object]', 'Motivates', '{Someone_A and Someone_B}_[subject] {grow}_[verb] {Something_A}_[object1]']], '2parse': [['Mary and her mother feels motivated', 'Motivates', 'Mary and her mother grow tomatoes'], ['Max and Kim feels motivated', 'Motivates', 'Max and Kim grow crown']], 'general_0': ['someone_a and someone_b feels motivated', 'Motivates', 'someone_a and someone_b grow something_a'], 'general_replaced': ['Max and Kim feels motivated', 'Motivates', 'Max and Kim grow crown'], 'general_no_brackets': ['Max and Kim feels motivated', 'Motivates', 'Max and Kim grow crown'], 'coref': [('Mary', 'Mary'), ('Mary and her mother', 'and'), ('Mary', 'her'), ('Mary and her mother', 'mother')], 'coref_roots': [('Mary', 'Mary'), ('Mary', 'and'), ('Mary', 'her'), ('mother', 'mother')], 'general_merge': {'nodes': 2, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.3}, 'specific_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.2}}]}\n",
+      "('1266_EMO_4', '1266_1')\n",
+      "{'annotations': [{'dimension': '2', 'quality': 2, 'worker_id': 14, 'rules': [['Mary and her mother like(s) tomatoes', 'Motivates', 'They grow tomatoes in their garden every year'], ['{Mary and her mother}_[subject] {like(s)}_[verb] {tomatoes}_[object]', 'Motivates', '{They}_[subject] {grow}_[verb] {tomatoes}_[object1] {in}_[preposition2] {their garden every year}_[object2]'], ['Someone_A and Someone_B like(s) Something_A (that can be grown)', 'Motivates', 'Someone_A and Someone_B grow Something_A every year'], ['{Someone_A and Someone_B}_[subject] {like(s)}_[verb] {Something_A ||that can be grown||}_[object]', 'Motivates', '{Someone_A and Someone_B}_[subject] {grow}_[verb] {Something_A}_[object1] {every year}_[object2]']], '2parse': [['Mary and her mother likes tomatoes', 'Motivates', 'They grow tomatoes in their garden every year'], ['Max and Kim likes crown', 'Motivates', 'Max and Kim grow crown every year']], 'general_0': ['someone_a and someone_b likes something_a (that can be grown)', 'Motivates', 'someone_a and someone_b grow something_a every year'], 'general_replaced': ['Max and Kim likes crown (that can be grown)', 'Motivates', 'Max and Kim grow crown every year'], 'general_no_brackets': ['Max and Kim likes crown', 'Motivates', 'Max and Kim grow crown every year'], 'coref': [('Mary and her mother', 'They'), ('Mary and her mother', 'their')], 'coref_roots': [('Mary', 'They'), ('Mary', 'their')], 'general_merge': {'nodes': 3, 'edges': 0, 'D_bef': 0.1, 'D_aft': 0.2}, 'specific_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.2}}]}\n",
+      "('1266_EMO_5', '1266_2')\n",
+      "{'annotations': [{'dimension': '2', 'quality': 3, 'worker_id': 19, 'rules': [['Mary and her mother like(s) canning', 'Motivates', 'Mary and her mother can'], ['{Mary and her mother}_[subject] {like(s)}_[verb] {canning}_[object]', 'Motivates', '{Mary and her mother}_[subject] {can}_[verb]'], ['Someone_A and Someone_B like(s) doing Something_A', 'Motivates', 'Someone_A and Someone_B do Something_A'], ['{Someone_A and Someone_B}_[subject] {like(s)}_[verb] {doing Something_A}_[object]', 'Motivates', '{Someone_A and Someone_B}_[subject] {do}_[verb] {Something_A}_[object1]']], '2parse': [['Mary and her mother likes canning', 'Motivates', 'Mary and her mother can'], ['Max and Kim likes doing crown', 'Motivates', 'Max and Kim do crown']], 'general_0': ['someone_a and someone_b likes doing something_a', 'Motivates', 'someone_a and someone_b do something_a'], 'general_replaced': ['Max and Kim likes doing crown', 'Motivates', 'Max and Kim do crown'], 'general_no_brackets': ['Max and Kim likes doing crown', 'Motivates', 'Max and Kim do crown'], 'coref': [('Mary', 'Mary'), ('Mary and her mother', 'and'), ('Mary', 'her'), ('Mary and her mother', 'mother')], 'coref_roots': [('Mary', 'Mary'), ('Mary', 'and'), ('Mary', 'her'), ('mother', 'mother')], 'general_merge': {'nodes': 3, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.5}, 'specific_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.2}}]}\n",
+      "('1266_EMO_6', '1266_4')\n",
+      "{'annotations': [{'dimension': '2', 'quality': 3, 'worker_id': 19, 'rules': [['Mary and her mother want(s) to can', 'Motivates', 'Mary and her mother try to can'], ['{Mary and her mother}_[subject] {want(s)}_[verb] {to can}_[object]', 'Motivates', '{Mary and her mother}_[subject] {try}_[verb] {to }_[preposition1] {can}_[object1]'], ['Someone_A and Someone_B want(s) to do Something_A', 'Motivates', 'Someone_A and Someone_B try to do Something_A'], ['{Someone_A and Someone_B}_[subject] {want(s)}_[verb] {to do Something_A}_[object]', 'Motivates', '{Someone_A and Someone_B}_[subject] {try}_[verb] {to }_[preposition1] {do Something_A}_[object1]']], '2parse': [['Mary and her mother wants to can', 'Motivates', 'Mary and her mother try to can'], ['Max and Kim wants to do crown', 'Motivates', 'Max and Kim try to do crown']], 'general_0': ['someone_a and someone_b wants to do something_a', 'Motivates', 'someone_a and someone_b try to do something_a'], 'general_replaced': ['Max and Kim wants to do crown', 'Motivates', 'Max and Kim try to do crown'], 'general_no_brackets': ['Max and Kim wants to do crown', 'Motivates', 'Max and Kim try to do crown'], 'coref': [('Mary', 'Mary'), ('Mary and her mother', 'and'), ('Mary', 'her'), ('Mary and her mother', 'mother')], 'coref_roots': [('Mary', 'Mary'), ('Mary', 'and'), ('Mary', 'her'), ('mother', 'mother')], 'general_merge': {'nodes': 3, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.4}, 'specific_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.2}}]}\n",
+      "('1266_EMO_7', '1266_1')\n",
+      "{'annotations': [{'dimension': '2', 'quality': 3, 'worker_id': 197, 'rules': [['They like(s) tomatoes', 'Motivates', 'They grow tomatoes'], ['{They}_[subject] {like(s)}_[verb] {tomatoes}_[object]', 'Motivates', '{They}_[subject] {grow}_[verb] {tomatoes}_[object1]'], ['Someone_A and Someone_B like(s) Something_A (that is a plant)', 'Motivates', 'Someone_A and Someone_B grow Something_A'], ['{Someone_A and Someone_B}_[subject] {like(s)}_[verb] {Something_A ||that is a plant||}_[object]', 'Motivates', '{Someone_A and Someone_B}_[subject] {grow}_[verb] {Something_A}_[object1]']], '2parse': [['They likes tomatoes', 'Motivates', 'They grow tomatoes'], ['Max and Kim likes crown', 'Motivates', 'Max and Kim grow crown']], 'general_0': ['someone_a and someone_b likes something_a (that is a plant)', 'Motivates', 'someone_a and someone_b grow something_a'], 'general_replaced': ['Max and Kim likes crown (that is a plant)', 'Motivates', 'Max and Kim grow crown'], 'general_no_brackets': ['Max and Kim likes crown', 'Motivates', 'Max and Kim grow crown'], 'coref': [('They', 'They')], 'coref_roots': [('They', 'They')], 'general_merge': {'nodes': 3, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.4}, 'specific_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.3, 'D_aft': 0.4}}]}\n",
+      "('1266_LOC_0', '1266_1')\n",
+      "{'annotations': [{'dimension': '3', 'quality': 3, 'worker_id': 152, 'rules': [['Mary and her mother are in their garden', 'Enables', 'Mary and her mother grow tomatoes'], ['{Mary and her mother}_[subject] {are}_[verb] {in}_[preposition] {their garden}_[object]', 'Enables', '{Mary and her mother}_[subject] {grow}_[verb] {tomatoes}_[object1]'], ['Someone_A and Someone_B are in a garden', 'Enables', 'Someone_A and Someone_B grow Something_A'], ['{Someone_A and Someone_B}_[subject] {are}_[verb] {in}_[preposition] {a garden}_[object]', 'Enables', '{Someone_A and Someone_B}_[subject] {grow}_[verb] {Something_A}_[object1]']], '2parse': [['Mary and her mother are in their garden', 'Enables', 'Mary and her mother grow tomatoes'], ['Max and Kim are in a garden', 'Enables', 'Max and Kim grow crown']], 'general_0': ['someone_a and someone_b are in a garden', 'Enables', 'someone_a and someone_b grow something_a'], 'general_replaced': ['Max and Kim are in a garden', 'Enables', 'Max and Kim grow crown'], 'general_no_brackets': ['Max and Kim are in a garden', 'Enables', 'Max and Kim grow crown'], 'coref': [('Mary', 'Mary'), ('Mary and her mother', 'and'), ('Mary', 'her'), ('Mary and her mother', 'mother')], 'coref_roots': [('Mary', 'Mary'), ('Mary', 'and'), ('Mary', 'her'), ('mother', 'mother')], 'general_merge': {'nodes': 2, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.3}, 'specific_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.1, 'D_aft': 0.2}}]}\n",
+      "('1266_LOC_0', '1266_2')\n",
+      "{'annotations': [{'dimension': '3', 'quality': 2, 'worker_id': 14, 'rules': [['Mary and her mother are in their garden', 'Enables', 'They gather the tomatoes'], ['{Mary and her mother}_[subject] {are}_[verb] {in}_[preposition] {their garden}_[object]', 'Enables', '{They}_[subject] {gather}_[verb] {the tomatoes}_[object1]'], ['Someone_A and Someone_B are at Somewhere_A (where Something_A is located)', 'Enables', 'Someone_A and Someone_B gather Something_A'], ['{Someone_A and Someone_B}_[subject] {are}_[verb] {at}_[preposition] {Somewhere_A ||where Something_A is located||}_[object]', 'Enables', '{Someone_A and Someone_B}_[subject] {gather}_[verb] {Something_A}_[object1]']], '2parse': [['Mary and her mother are in their garden', 'Enables', 'They gather the tomatoes'], ['Max and Kim are at France where crown is located', 'Enables', 'Max and Kim gather crown']], 'general_0': ['someone_a and someone_b are at somewhere_a where something_a is located', 'Enables', 'someone_a and someone_b gather something_a'], 'general_replaced': ['Max and Kim are at France where crown is located', 'Enables', 'Max and Kim gather crown'], 'general_no_brackets': ['Max and Kim are at France where crown is located', 'Enables', 'Max and Kim gather crown'], 'coref': [('Mary and her mother', 'They')], 'coref_roots': [('Mary', 'They')], 'general_merge': {'nodes': 3, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.3}, 'specific_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.2}}]}\n",
+      "('1266_LOC_1', '1266_1')\n",
+      "{'annotations': [{'dimension': '3', 'quality': 3, 'worker_id': 197, 'rules': [['They are in the garden', 'Enables', 'They grow tomatoes'], ['{They}_[subject] {are}_[verb] {in}_[preposition] {the garden}_[object]', 'Enables', '{They}_[subject] {grow}_[verb] {tomatoes}_[object1]'], ['Someone_A and Someone_B are in Somewhere_A (where Something_A is grown)', 'Enables', 'Someone_A and Someone_B grow Something_A (that is a plant)'], ['{Someone_A and Someone_B}_[subject] {are}_[verb] {in}_[preposition] {Somewhere_A ||where Something_A is grown||}_[object]', 'Enables', '{Someone_A and Someone_B}_[subject] {grow}_[verb] {Something_A ||that is a plant||}_[object1]']], '2parse': [['They are in the garden', 'Enables', 'They grow tomatoes'], ['Max and Kim are in France where crown is grown', 'Enables', 'Max and Kim grow crown']], 'general_0': ['someone_a and someone_b are in somewhere_a where something_a is grown', 'Enables', 'someone_a and someone_b grow something_a (that is a plant)'], 'general_replaced': ['Max and Kim are in France where crown is grown', 'Enables', 'Max and Kim grow crown (that is a plant)'], 'general_no_brackets': ['Max and Kim are in France where crown is grown', 'Enables', 'Max and Kim grow crown'], 'coref': [('They', 'They')], 'coref_roots': [('They', 'They')], 'general_merge': {'nodes': 3, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.3}, 'specific_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.3, 'D_aft': 0.4}}]}\n",
+      "('1266_LOC_1', '1266_4')\n",
+      "{'annotations': [{'dimension': '3', 'quality': 1, 'worker_id': 2, 'rules': [['They are in the garden', 'Enables', 'They attempt to can the tomatoes'], ['{They }_[subject] {are}_[verb] {in}_[preposition] {the garden }_[object]', 'Enables', '{They }_[subject] {attempt to can }_[verb] {the tomatoes }_[object1]'], ['Someone_A and Someone_B are in the garden', 'Enables', 'Someone_A and Someone_B attempt to can Something_A (that are tomatoes )'], ['{Someone_A and Someone_B}_[subject] {are}_[verb] {in}_[preposition] {the garden }_[object]', 'Enables', '{Someone_A and Someone_B}_[subject] {attempt to can }_[verb] {Something_A ||that are tomatoes ||}_[object1]']], '2parse': [['They are in the garden', 'Enables', 'They attempt to can the tomatoes'], ['Max and Kim are in the garden', 'Enables', 'Max and Kim attempt to can crown']], 'general_0': ['someone_a and someone_b are in the garden', 'Enables', 'someone_a and someone_b attempt to can something_a (that are tomatoes )'], 'general_replaced': ['Max and Kim are in the garden', 'Enables', 'Max and Kim attempt to can crown (that are tomatoes )'], 'general_no_brackets': ['Max and Kim are in the garden', 'Enables', 'Max and Kim attempt to can crown'], 'coref': [('They', 'They')], 'coref_roots': [('They', 'They')], 'general_merge': {'nodes': 2, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.3}, 'specific_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.3, 'D_aft': 0.4}}]}\n",
+      "('1266_LOC_2', '1266_3')\n",
+      "{'annotations': [{'dimension': '3', 'quality': 2, 'worker_id': 203, 'rules': [['The tomato plants are in the sun', 'Enables', 'There had been a large harvest of tomatoes'], ['{The tomato plants}_[subject] {are}_[verb] {in}_[preposition] {the sun }_[object]', 'Enables', '{There }_[subject] {had been }_[verb] {a large harvest of }_[preposition1] {tomatoes }_[object1]'], ['Something_A (that is a plant) is in the sun', 'Enables', 'Something_A (that is a plant ) produces fruits'], ['{Something_A ||that is a plant||}_[subject] {is}_[verb] {in}_[preposition] {the sun }_[object]', 'Enables', '{Something_A ||that is a plant ||}_[subject] {produces }_[verb] {fruits }_[object1]']], '2parse': [['The tomato plants are in the sun', 'Enables', 'There had been a large harvest of tomatoes'], ['crown is in the sun', 'Enables', 'crown produces fruits']], 'general_0': ['something_a (that is a plant) is in the sun', 'Enables', 'something_a (that is a plant ) produces fruits'], 'general_replaced': ['crown (that is a plant) is in the sun', 'Enables', 'crown (that is a plant ) produces fruits'], 'general_no_brackets': ['crown is in the sun', 'Enables', 'crown produces fruits'], 'coref': [], 'coref_roots': [], 'general_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.3, 'D_aft': 0.5}, 'specific_merge': {'nodes': 0, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.2}}]}\n",
+      "('1266_POS_0', '1266_2')\n",
+      "{'annotations': [{'dimension': '4', 'quality': 2, 'worker_id': 14, 'rules': [['Mary and her mother possess(es) tomatoes', 'Enables', 'They can the tomatoes'], ['{Mary and her mother}_[subject] {possess(es)}_[verb] {tomatoes}_[object]', 'Enables', '{They}_[subject] {can}_[verb] {the tomatoes}_[object1]'], ['Someone_A and Someone_B possess(es) Something_A (that is perishable food)', 'Enables', 'Someone_A and Someone_B can Something_A'], ['{Someone_A and Someone_B}_[subject] {possess(es)}_[verb] {Something_A ||that is perishable food||}_[object]', 'Enables', '{Someone_A and Someone_B}_[subject] {can}_[verb] {Something_A}_[object1]']], '2parse': [['Mary and her mother possesses tomatoes', 'Enables', 'They can the tomatoes'], ['Max and Kim possesses crown', 'Enables', 'Max and Kim can crown']], 'general_0': ['someone_a and someone_b possesses something_a (that is perishable food)', 'Enables', 'someone_a and someone_b can something_a'], 'general_replaced': ['Max and Kim possesses crown (that is perishable food)', 'Enables', 'Max and Kim can crown'], 'general_no_brackets': ['Max and Kim possesses crown', 'Enables', 'Max and Kim can crown'], 'coref': [('Mary and her mother', 'They'), ('tomatoes', 'the'), ('tomatoes', 'tomatoes')], 'coref_roots': [('Mary', 'They'), ('tomatoes', 'the'), ('tomatoes', 'tomatoes')], 'general_merge': {'nodes': 3, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.4}, 'specific_merge': {'nodes': 0, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.2}}]}\n",
+      "('1266_POS_0', '1266_4')\n",
+      "{'annotations': [{'dimension': '4', 'quality': 3, 'worker_id': 152, 'rules': [['Mary and her mother possess(es) tomatoes', 'Enables', 'Mary and her mother can the tomatoes'], ['{Mary and her mother}_[subject] {possess(es)}_[verb] {tomatoes}_[object]', 'Enables', '{Mary and her mother}_[subject] {can}_[verb] {the tomatoes}_[object1]'], ['Someone_A and Someone_B possess(es) Something_A (that is produce)', 'Enables', 'Someone_A and Someone_B can Something_A (that is produce)'], ['{Someone_A and Someone_B}_[subject] {possess(es)}_[verb] {Something_A ||that is produce||}_[object]', 'Enables', '{Someone_A and Someone_B}_[subject] {can}_[verb] {Something_A ||that is produce||}_[object1]']], '2parse': [['Mary and her mother possesses tomatoes', 'Enables', 'Mary and her mother can the tomatoes'], ['Max and Kim possesses crown', 'Enables', 'Max and Kim can crown']], 'general_0': ['someone_a and someone_b possesses something_a (that is produce)', 'Enables', 'someone_a and someone_b can something_a (that is produce)'], 'general_replaced': ['Max and Kim possesses crown (that is produce)', 'Enables', 'Max and Kim can crown (that is produce)'], 'general_no_brackets': ['Max and Kim possesses crown', 'Enables', 'Max and Kim can crown'], 'coref': [('Mary', 'Mary'), ('Mary and her mother', 'and'), ('Mary', 'her'), ('Mary and her mother', 'mother'), ('tomatoes', 'the'), ('tomatoes', 'tomatoes')], 'coref_roots': [('Mary', 'Mary'), ('Mary', 'and'), ('Mary', 'her'), ('mother', 'mother'), ('tomatoes', 'the'), ('tomatoes', 'tomatoes')], 'general_merge': {'nodes': 3, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.4}, 'specific_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.2}}]}\n",
+      "('1266_POS_1', '1266_1')\n",
+      "{'annotations': [{'dimension': '4', 'quality': 3, 'worker_id': 152, 'rules': [['Mary and her mother possess(es) seeds', 'Enables', 'Mary and her mother grow tomatoes'], ['{Mary and her mother}_[subject] {possess(es)}_[verb] {seeds}_[object]', 'Enables', '{Mary and her mother}_[subject] {grow}_[verb] {tomatoes}_[object1]'], ['Someone_A and Someone_B possess(es) seeds', 'Enables', 'Someone_A and Someone_B grow Something_A (that is a plant)'], ['{Someone_A and Someone_B}_[subject] {possess(es)}_[verb] {seeds}_[object]', 'Enables', '{Someone_A and Someone_B}_[subject] {grow}_[verb] {Something_A ||that is a plant||}_[object1]']], '2parse': [['Mary and her mother possesses seeds', 'Enables', 'Mary and her mother grow tomatoes'], ['Max and Kim possesses seeds', 'Enables', 'Max and Kim grow crown']], 'general_0': ['someone_a and someone_b possesses seeds', 'Enables', 'someone_a and someone_b grow something_a (that is a plant)'], 'general_replaced': ['Max and Kim possesses seeds', 'Enables', 'Max and Kim grow crown (that is a plant)'], 'general_no_brackets': ['Max and Kim possesses seeds', 'Enables', 'Max and Kim grow crown'], 'coref': [('Mary', 'Mary'), ('Mary and her mother', 'and'), ('Mary', 'her'), ('Mary and her mother', 'mother')], 'coref_roots': [('Mary', 'Mary'), ('Mary', 'and'), ('Mary', 'her'), ('mother', 'mother')], 'general_merge': {'nodes': 2, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.3}, 'specific_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.2}}]}\n",
+      "('1266_POS_2', '1266_4')\n",
+      "{'annotations': [{'dimension': '4', 'quality': 3, 'worker_id': 19, 'rules': [['Mary and her mother possess(es) cans', 'Enables', 'Mary and her mother try to can tomatoes'], ['{Mary and her mother}_[subject] {possess(es)}_[verb] {cans}_[object]', 'Enables', '{Mary and her mother}_[subject] {try}_[verb] {to }_[preposition1] {can}_[object1] {tomatoes}_[object2]'], ['Someone_A and Someone_B possess(es) Something_A (that is a container)', 'Enables', 'Someone_A and Someone_B try to put Something_B in Something_A'], ['{Someone_A and Someone_B}_[subject] {possess(es)}_[verb] {Something_A ||that is a container||}_[object]', 'Enables', '{Someone_A and Someone_B}_[subject] {try}_[verb] {to }_[preposition1] {put Something_B}_[object1] {in }_[preposition2] {Something_A}_[object2]']], '2parse': [['Mary and her mother possesses cans', 'Enables', 'Mary and her mother try to can tomatoes'], ['Max and Kim possesses crown', 'Enables', 'Max and Kim try to put throne in crown']], 'general_0': ['someone_a and someone_b possesses something_a (that is a container)', 'Enables', 'someone_a and someone_b try to put something_b in something_a'], 'general_replaced': ['Max and Kim possesses crown (that is a container)', 'Enables', 'Max and Kim try to put throne in crown'], 'general_no_brackets': ['Max and Kim possesses crown', 'Enables', 'Max and Kim try to put throne in crown'], 'coref': [('Mary', 'Mary'), ('Mary and her mother', 'and'), ('Mary', 'her'), ('Mary and her mother', 'mother')], 'coref_roots': [('Mary', 'Mary'), ('Mary', 'and'), ('Mary', 'her'), ('mother', 'mother')], 'general_merge': {'nodes': 3, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.3}, 'specific_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.2}}]}\n",
+      "('1266_POS_3', '1266_1')\n",
+      "{'annotations': [{'dimension': '4', 'quality': 3, 'worker_id': 197, 'rules': [['They possess(es) tomato seeds', 'Enables', 'They grow tomatoes'], ['{They}_[subject] {possess(es)}_[verb] {tomato seeds}_[object]', 'Enables', '{They}_[subject] {grow}_[verb] {tomatoes}_[object1]'], ['Someone_A and Someone_B possess(es) Something_B (that is needed to grow Something_A)', 'Enables', 'Someone_A and Someone_B grow Something_A (that is a plant)'], ['{Someone_A and Someone_B}_[subject] {possess(es)}_[verb] {Something_B ||that is needed to grow Something_A||}_[object]', 'Enables', '{Someone_A and Someone_B}_[subject] {grow}_[verb] {Something_A ||that is a plant||}_[object1]']], '2parse': [['They possesses tomato seeds', 'Enables', 'They grow tomatoes'], ['Max and Kim possesses throne that is needed to grow crown', 'Enables', 'Max and Kim grow crown']], 'general_0': ['someone_a and someone_b possesses something_b that is needed to grow something_a', 'Enables', 'someone_a and someone_b grow something_a (that is a plant)'], 'general_replaced': ['Max and Kim possesses throne that is needed to grow crown', 'Enables', 'Max and Kim grow crown (that is a plant)'], 'general_no_brackets': ['Max and Kim possesses throne that is needed to grow crown', 'Enables', 'Max and Kim grow crown'], 'coref': [('They', 'They')], 'coref_roots': [('They', 'They')], 'general_merge': {'nodes': 3, 'edges': 0, 'D_bef': 0.1, 'D_aft': 0.2}, 'specific_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.3}}]}\n",
+      "('1266_OTH_0', '1266_4')\n",
+      "{'annotations': [{'dimension': '5', 'quality': 3, 'worker_id': 152, 'rules': [['The tomatoes are produce', 'Enables', 'Mary and her mother can the tomatoes'], ['{The tomatoes}_[subject] {are}_[verb] {produce}_[object]', 'Enables', '{Mary and her mother}_[subject] {can}_[verb] {the tomatoes}_[object1]'], ['Something_A is produce', 'Enables', 'Someone_A and Someone_B can Something_A'], ['{Something_A}_[subject] {is}_[verb] {produce}_[object]', 'Enables', '{Someone_A and Someone_B}_[subject] {can}_[verb] {Something_A}_[object1]']], '2parse': [['The tomatoes are produce', 'Enables', 'Mary and her mother can the tomatoes'], ['crown is produce', 'Enables', 'Max and Kim can crown']], 'general_0': ['something_a is produce', 'Enables', 'someone_a and someone_b can something_a'], 'general_replaced': ['crown is produce', 'Enables', 'Max and Kim can crown'], 'general_no_brackets': ['crown is produce', 'Enables', 'Max and Kim can crown'], 'coref': [('Mary', 'Mary'), ('Mary', 'her'), ('The tomatoes', 'the'), ('The tomatoes', 'tomatoes')], 'coref_roots': [('Mary', 'Mary'), ('Mary', 'her'), ('tomatoes', 'the'), ('tomatoes', 'tomatoes')], 'general_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.3}, 'specific_merge': {'nodes': 0, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.2}}]}\n",
+      "('1266_OTH_1', '1266_1')\n",
+      "{'annotations': [{'dimension': '5', 'quality': 2, 'worker_id': 14, 'rules': [['Mary and her mother have a garden', 'Enables', 'They grow tomatoes in their garden'], ['{Mary and her mother}_[subject] {have}_[verb] {a garden}_[object]', 'Enables', '{They}_[subject] {grow}_[verb] {tomatoes}_[object1] {in}_[preposition2] {their garden}_[object2]'], ['Someone_A and Someone_B have a garden', 'Enables', 'Someone_A and Someone_B grow Something_A in the garden'], ['{Someone_A and Someone_B}_[subject] {have}_[verb] {a garden}_[object]', 'Enables', '{Someone_A and Someone_B}_[subject] {grow}_[verb] {Something_A}_[object1] {in}_[preposition2] {the garden}_[object2]']], '2parse': [['Mary and her mother have a garden', 'Enables', 'They grow tomatoes in their garden'], ['Max and Kim have a garden', 'Enables', 'Max and Kim grow crown in the garden']], 'general_0': ['someone_a and someone_b have a garden', 'Enables', 'someone_a and someone_b grow something_a in the garden'], 'general_replaced': ['Max and Kim have a garden', 'Enables', 'Max and Kim grow crown in the garden'], 'general_no_brackets': ['Max and Kim have a garden', 'Enables', 'Max and Kim grow crown in the garden'], 'coref': [('Mary and her mother', 'They'), ('Mary and her mother', 'their'), ('a garden', 'garden')], 'coref_roots': [('Mary', 'They'), ('Mary', 'their'), ('garden', 'garden')], 'general_merge': {'nodes': 2, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.2}, 'specific_merge': {'nodes': 2, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.3}}]}\n",
+      "('1266_OTH_2', '1266_3')\n",
+      "{'annotations': [{'dimension': '5', 'quality': 2, 'worker_id': 14, 'rules': [['The tomato plants are healthy', 'Enables', 'There is an especially large harvest of tomatoes'], ['{The tomato plants}_[subject] {are}_[verb] {healthy}_[object]', 'Enables', '{There}_[subject] {is}_[verb] {an especially large harvest of tomatoes}_[object1]'], ['Something_A (that is a crop) is healthy', 'Enables', 'There is an especially large harvest of Something_A'], ['{Something_A ||that is a crop||}_[subject] {is}_[verb] {healthy}_[object]', 'Enables', '{There}_[subject] {is}_[verb] {an especially large harvest of Something_A}_[object1]']], '2parse': [['The tomato plants are healthy', 'Enables', 'There is an especially large harvest of tomatoes'], ['crown is healthy', 'Enables', 'There is an especially large harvest of crown']], 'general_0': ['something_a (that is a crop) is healthy', 'Enables', 'There is an especially large harvest of something_a'], 'general_replaced': ['crown (that is a crop) is healthy', 'Enables', 'There is an especially large harvest of crown'], 'general_no_brackets': ['crown is healthy', 'Enables', 'There is an especially large harvest of crown'], 'coref': [], 'coref_roots': [], 'general_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.3, 'D_aft': 0.4}, 'specific_merge': {'nodes': 0, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.2}}, {'dimension': '5', 'quality': 2, 'worker_id': 203, 'rules': [['The tomato plans are healthy', 'Enables', 'There had been a large harvest of tomatoes'], ['{The tomato plans }_[subject] {are}_[verb] {healthy }_[object]', 'Enables', '{There }_[subject] {had been }_[verb] {a large harvest }_[preposition1] {of tomatoes }_[object1]'], ['Something_A (that is a plant ) is healthy', 'Enables', 'Something_A (that is a plant ) produces lots of fruits'], ['{Something_A ||that is a plant ||}_[subject] {is}_[verb] {healthy }_[object]', 'Enables', '{Something_A ||that is a plant ||}_[subject] {produces }_[verb] {lots of }_[preposition1] {fruits }_[object1]']], '2parse': [['The tomato plans are healthy', 'Enables', 'There had been a large harvest of tomatoes'], ['crown is healthy', 'Enables', 'crown produces lots of fruits']], 'general_0': ['something_a (that is a plant ) is healthy', 'Enables', 'something_a (that is a plant ) produces lots of fruits'], 'general_replaced': ['crown (that is a plant ) is healthy', 'Enables', 'crown (that is a plant ) produces lots of fruits'], 'general_no_brackets': ['crown is healthy', 'Enables', 'crown produces lots of fruits'], 'coref': [], 'coref_roots': [], 'general_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.3, 'D_aft': 0.4}, 'specific_merge': {'nodes': 0, 'edges': 0, 'D_bef': 0.3, 'D_aft': 0.3}}]}\n",
+      "('1266_OTH_3', '1266_1')\n",
+      "{'annotations': [{'dimension': '5', 'quality': 3, 'worker_id': 197, 'rules': [['They want(s) to grow tomatoes', 'Enables', 'They grow tomatoes'], ['{They}_[subject] {want(s)}_[verb] {to grow tomatoes}_[object]', 'Enables', '{They}_[subject] {grow}_[verb] {tomatoes}_[object1]'], ['Someone_A and Someone_B want(s) to grow Something_A (that is a plant)', 'Enables', 'Someone_A and Someone_B grow Something_A'], ['{Someone_A and Someone_B}_[subject] {want(s)}_[verb] {to grow Something_A ||that is a plant||}_[object]', 'Enables', '{Someone_A and Someone_B}_[subject] {grow}_[verb] {Something_A}_[object1]']], '2parse': [['They wants to grow tomatoes', 'Enables', 'They grow tomatoes'], ['Max and Kim wants to grow crown', 'Enables', 'Max and Kim grow crown']], 'general_0': ['someone_a and someone_b wants to grow something_a (that is a plant)', 'Enables', 'someone_a and someone_b grow something_a'], 'general_replaced': ['Max and Kim wants to grow crown (that is a plant)', 'Enables', 'Max and Kim grow crown'], 'general_no_brackets': ['Max and Kim wants to grow crown', 'Enables', 'Max and Kim grow crown'], 'coref': [('They', 'They')], 'coref_roots': [('They', 'They')], 'general_merge': {'nodes': 3, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.4}, 'specific_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.3, 'D_aft': 0.4}}]}\n",
+      "('1266_S', '1266_0')\n",
+      "{}\n",
+      "('1266_S', '1266_1')\n",
+      "{}\n",
+      "('1266_S', '1266_2')\n",
+      "{}\n",
+      "('1266_S', '1266_3')\n",
+      "{}\n",
+      "('1266_S', '1266_4')\n",
+      "{}\n",
+      "('1266_0', '1266_EVENT_3')\n",
+      "{'annotations': [{'dimension': '6', 'quality': 3, 'worker_id': 19, 'rules': [['Mary and her mother have a tradition', 'Causes/Enables', 'Mary and her mother follow the tradition'], ['{Mary and her mother}_[subject] {have}_[verb] {a tradition}_[object1]', 'Causes/Enables', '{Mary and her mother}_[subject] {follow}_[verb] {the tradition}_[object1]'], ['Someone_A and Someone_B have a tradition', 'Causes/Enables', 'Someone_A and Someone_B follow the tradition'], ['{Someone_A and Someone_B}_[subject] {have}_[verb] {a tradition}_[object1]', 'Causes/Enables', '{Someone_A and Someone_B}_[subject] {follow}_[verb] {the tradition}_[object1]']], '2parse': [['Mary and her mother have a tradition', 'Causes/Enables', 'Mary and her mother follow the tradition'], ['Max and Kim have a tradition', 'Causes/Enables', 'Max and Kim follow the tradition']], 'general_0': ['someone_a and someone_b have a tradition', 'Causes/Enables', 'someone_a and someone_b follow the tradition'], 'general_replaced': ['Max and Kim have a tradition', 'Causes/Enables', 'Max and Kim follow the tradition'], 'general_no_brackets': ['Max and Kim have a tradition', 'Causes/Enables', 'Max and Kim follow the tradition'], 'coref': [('Mary', 'Mary'), ('Mary and her mother', 'and'), ('Mary', 'her'), ('Mary and her mother', 'mother'), ('a tradition', 'the'), ('a tradition', 'tradition')], 'coref_roots': [('Mary', 'Mary'), ('Mary', 'and'), ('Mary', 'her'), ('mother', 'mother'), ('tradition', 'the'), ('tradition', 'tradition')], 'general_merge': {'nodes': 2, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.3}, 'specific_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.2}}]}\n",
+      "('1266_0', '1266_EVENT_9')\n",
+      "{'annotations': [{'dimension': '6', 'quality': 1, 'worker_id': 2, 'rules': [['They have a tradition', 'Causes/Enables', 'They grow tomatoes every year'], ['{They }_[subject] {have a tradition }_[verb]', 'Causes/Enables', '{They }_[subject] {grow }_[verb] {tomatoes }_[object1] {every year }_[object2]'], ['Someone_A and Someone_B have a tradition', 'Causes/Enables', 'Someone_A and Someone_B grow Something_A (that is food ) every year'], ['{Someone_A and Someone_B}_[subject] {have a tradition }_[verb]', 'Causes/Enables', '{Someone_A and Someone_B}_[subject] {grow }_[verb] {Something_A ||that is food ||}_[object1] {every year }_[object2]']], '2parse': [['They have a tradition', 'Causes/Enables', 'They grow tomatoes every year'], ['Max and Kim have a tradition', 'Causes/Enables', 'Max and Kim grow crown every year']], 'general_0': ['someone_a and someone_b have a tradition', 'Causes/Enables', 'someone_a and someone_b grow something_a (that is food ) every year'], 'general_replaced': ['Max and Kim have a tradition', 'Causes/Enables', 'Max and Kim grow crown (that is food ) every year'], 'general_no_brackets': ['Max and Kim have a tradition', 'Causes/Enables', 'Max and Kim grow crown every year'], 'coref': [('They', 'They')], 'coref_roots': [('They', 'They')], 'general_merge': {'nodes': 2, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.2}, 'specific_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.3}}]}\n",
+      "('1266_0', '1266_OTH_5')\n",
+      "{'annotations': [{'dimension': '10', 'quality': 3, 'worker_id': 19, 'rules': [['Mary and her mother have a tradition', 'Results in', 'Mary and her mother want(s) to follow the tradition'], ['{Mary and her mother}_[subject] {have}_[verb] {a tradition}_[object1]', 'Results in', '{Mary and her mother}_[subject] {want(s)}_[verb] {to follow the tradition}_[object]'], ['Someone_A and Someone_B have a fun tradition', 'Results in', 'Someone_A and Someone_B want(s) to follow the tradition'], ['{Someone_A and Someone_B}_[subject] {have}_[verb] {a fun tradition}_[object1]', 'Results in', '{Someone_A and Someone_B}_[subject] {want(s)}_[verb] {to follow the tradition}_[object]']], '2parse': [['Mary and her mother have a tradition', 'Results in', 'Mary and her mother wants to follow the tradition'], ['Max and Kim have a fun tradition', 'Results in', 'Max and Kim wants to follow the tradition']], 'general_0': ['someone_a and someone_b have a fun tradition', 'Results in', 'someone_a and someone_b wants to follow the tradition'], 'general_replaced': ['Max and Kim have a fun tradition', 'Results in', 'Max and Kim wants to follow the tradition'], 'general_no_brackets': ['Max and Kim have a fun tradition', 'Results in', 'Max and Kim wants to follow the tradition'], 'coref': [('Mary', 'Mary'), ('Mary and her mother', 'and'), ('Mary', 'her'), ('Mary and her mother', 'mother'), ('a tradition', 'the'), ('a tradition', 'tradition')], 'coref_roots': [('Mary', 'Mary'), ('Mary', 'and'), ('Mary', 'her'), ('mother', 'mother'), ('tradition', 'the'), ('tradition', 'tradition')], 'general_merge': {'nodes': 2, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.3}, 'specific_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.2}}]}\n",
+      "('1266_0', '1266_1')\n",
+      "{'annotations': [{'dimension': '6', 'quality': 2, 'worker_id': 203, 'rules': [['Mary and her mother had a tradition', 'Causes/Enables', 'Mary and her mother grew tomatoes in their garden'], ['{Mary and her mother}_[subject] {had }_[verb] {a tradition }_[object1]', 'Causes/Enables', '{Mary and her mother}_[subject] {grew }_[verb] {tomatoes in their garden }_[object1]'], ['Someone_A has a tradition', 'Causes/Enables', 'Someone_A does Something_A (that is an activity) every year'], ['{Someone_A}_[subject] {has }_[verb] {a tradition }_[object1]', 'Causes/Enables', '{Someone_A}_[subject] {does }_[verb] {Something_A ||that is an activity||}_[object1] {every year }_[preposition2]']], '2parse': [['Mary and her mother had a tradition', 'Causes/Enables', 'Mary and her mother grew tomatoes in their garden'], ['Max has a tradition', 'Causes/Enables', 'Max does crown every year']], 'general_0': ['someone_a has a tradition', 'Causes/Enables', 'someone_a does something_a (that is an activity) every year'], 'general_replaced': ['Max has a tradition', 'Causes/Enables', 'Max does crown (that is an activity) every year'], 'general_no_brackets': ['Max has a tradition', 'Causes/Enables', 'Max does crown every year'], 'coref': [('Mary', 'Mary'), ('Mary and her mother', 'and'), ('Mary', 'her'), ('Mary and her mother', 'mother'), ('Mary and her mother', 'their')], 'coref_roots': [('Mary', 'Mary'), ('Mary', 'and'), ('Mary', 'her'), ('mother', 'mother'), ('Mary', 'their')], 'general_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.3}, 'specific_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.2}}, {'dimension': '1', 'quality': 3, 'worker_id': 152, 'rules': [['Mary and her mother have a tradition', 'Causes/Enables', 'They grow tomatoes every year'], ['{Mary and her mother}_[subject] {have}_[verb] {a tradition}_[object1]', 'Causes/Enables', '{They}_[subject] {grow}_[verb] {tomatoes}_[object1] {every year}_[object2]'], ['Someone_A and Someone_B have a tradition', 'Causes/Enables', 'Someone_A and Someone_B grow Something_A during every year'], ['{Someone_A and Someone_B}_[subject] {have}_[verb] {a tradition}_[object1]', 'Causes/Enables', '{Someone_A and Someone_B}_[subject] {grow}_[verb] {Something_A}_[object1] {during}_[preposition2] {every year}_[object2]']], '2parse': [['Mary and her mother have a tradition', 'Causes/Enables', 'They grow tomatoes every year'], ['Max and Kim have a tradition', 'Causes/Enables', 'Max and Kim grow crown during every year']], 'general_0': ['someone_a and someone_b have a tradition', 'Causes/Enables', 'someone_a and someone_b grow something_a during every year'], 'general_replaced': ['Max and Kim have a tradition', 'Causes/Enables', 'Max and Kim grow crown during every year'], 'general_no_brackets': ['Max and Kim have a tradition', 'Causes/Enables', 'Max and Kim grow crown during every year'], 'coref': [('Mary and her mother', 'They')], 'coref_roots': [('Mary', 'They')], 'general_merge': {'nodes': 2, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.2}, 'specific_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.2}}, {'dimension': '5', 'quality': 3, 'worker_id': 152, 'rules': [['Mary and her mother have a tradition', 'Enables', 'Mary and her mother grow tomatoes every year'], ['{Mary and her mother}_[subject] {have}_[verb] {a tradition}_[object]', 'Enables', '{Mary and her mother}_[subject] {grow}_[verb] {tomatoes}_[object1] {every year}_[object2]'], ['Someone_A and Someone_B have a tradition', 'Enables', 'Someone_A and Someone_B grow Something_A during every year'], ['{Someone_A and Someone_B}_[subject] {have}_[verb] {a tradition}_[object]', 'Enables', '{Someone_A and Someone_B}_[subject] {grow}_[verb] {Something_A}_[object1] {during}_[preposition2] {every year}_[object2]']], '2parse': [['Mary and her mother have a tradition', 'Enables', 'Mary and her mother grow tomatoes every year'], ['Max and Kim have a tradition', 'Enables', 'Max and Kim grow crown during every year']], 'general_0': ['someone_a and someone_b have a tradition', 'Enables', 'someone_a and someone_b grow something_a during every year'], 'general_replaced': ['Max and Kim have a tradition', 'Enables', 'Max and Kim grow crown during every year'], 'general_no_brackets': ['Max and Kim have a tradition', 'Enables', 'Max and Kim grow crown during every year'], 'coref': [('Mary', 'Mary'), ('Mary and her mother', 'and'), ('Mary', 'her'), ('Mary and her mother', 'mother')], 'coref_roots': [('Mary', 'Mary'), ('Mary', 'and'), ('Mary', 'her'), ('mother', 'mother')], 'general_merge': {'nodes': 2, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.2}, 'specific_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.1, 'D_aft': 0.2}}]}\n",
+      "('1266_1', '1266_EVENT_1')\n",
+      "{'annotations': [{'dimension': '6', 'quality': 2, 'worker_id': 14, 'rules': [['Mary and her mother grow tomatoes in their garden', 'Causes/Enables', 'They can the tomatoes'], ['{Mary and her mother}_[subject] {grow}_[verb] {tomatoes}_[object1] {in}_[preposition2] {their garden}_[object2]', 'Causes/Enables', '{They}_[subject] {can}_[verb] {the tomatoes}_[object1]'], ['Someone_A and Someone_B grow Something_A (that is edible)', 'Causes/Enables', 'Someone_A and Someone_B store Something_A'], ['{Someone_A and Someone_B}_[subject] {grow}_[verb] {Something_A ||that is edible||}_[object1]', 'Causes/Enables', '{Someone_A and Someone_B}_[subject] {store}_[verb] {Something_A}_[object1]']], '2parse': [['Mary and her mother grow tomatoes in their garden', 'Causes/Enables', 'They can the tomatoes'], ['Max and Kim grow crown', 'Causes/Enables', 'Max and Kim store crown']], 'general_0': ['someone_a and someone_b grow something_a (that is edible)', 'Causes/Enables', 'someone_a and someone_b store something_a'], 'general_replaced': ['Max and Kim grow crown (that is edible)', 'Causes/Enables', 'Max and Kim store crown'], 'general_no_brackets': ['Max and Kim grow crown', 'Causes/Enables', 'Max and Kim store crown'], 'coref': [('Mary and her mother', 'They'), ('tomatoes', 'the'), ('tomatoes', 'tomatoes')], 'coref_roots': [('Mary', 'They'), ('tomatoes', 'the'), ('tomatoes', 'tomatoes')], 'general_merge': {'nodes': 3, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.4}, 'specific_merge': {'nodes': 0, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.2}}, {'dimension': '6', 'quality': 3, 'worker_id': 197, 'rules': [['They grow tomatoes', 'Causes/Enables', 'They harvest tomatoes'], ['{They}_[subject] {grow}_[verb] {tomatoes}_[object1]', 'Causes/Enables', '{They}_[subject] {harvest}_[verb] {tomatoes}_[object1]'], ['Someone_A and Someone_B grow Something_A (that is a plant)', 'Causes/Enables', 'Someone_A and Someone_B harvest Something_A'], ['{Someone_A and Someone_B}_[subject] {grow}_[verb] {Something_A ||that is a plant||}_[object1]', 'Causes/Enables', '{Someone_A and Someone_B}_[subject] {harvest}_[verb] {Something_A}_[object1]']], '2parse': [['They grow tomatoes', 'Causes/Enables', 'They harvest tomatoes'], ['Max and Kim grow crown', 'Causes/Enables', 'Max and Kim harvest crown']], 'general_0': ['someone_a and someone_b grow something_a (that is a plant)', 'Causes/Enables', 'someone_a and someone_b harvest something_a'], 'general_replaced': ['Max and Kim grow crown (that is a plant)', 'Causes/Enables', 'Max and Kim harvest crown'], 'general_no_brackets': ['Max and Kim grow crown', 'Causes/Enables', 'Max and Kim harvest crown'], 'coref': [('They', 'They')], 'coref_roots': [('They', 'They')], 'general_merge': {'nodes': 3, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.4}, 'specific_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.3, 'D_aft': 0.4}}]}\n",
+      "('1266_1', '1266_EVENT_2')\n",
+      "{'annotations': [{'dimension': '6', 'quality': 3, 'worker_id': 152, 'rules': [['Mary and her mother grow tomatoes', 'Causes/Enables', 'Mary and her mother gather the tomatoes'], ['{Mary and her mother}_[subject] {grow}_[verb] {tomatoes}_[object1]', 'Causes/Enables', '{Mary and her mother}_[subject] {gather}_[verb] {the tomatoes}_[object1]'], ['Someone_A and Someone_B grow Something_A', 'Causes/Enables', 'Someone_A and Someone_B gather Something_A'], ['{Someone_A and Someone_B}_[subject] {grow}_[verb] {Something_A}_[object1]', 'Causes/Enables', '{Someone_A and Someone_B}_[subject] {gather}_[verb] {Something_A}_[object1]']], '2parse': [['Mary and her mother grow tomatoes', 'Causes/Enables', 'Mary and her mother gather the tomatoes'], ['Max and Kim grow crown', 'Causes/Enables', 'Max and Kim gather crown']], 'general_0': ['someone_a and someone_b grow something_a', 'Causes/Enables', 'someone_a and someone_b gather something_a'], 'general_replaced': ['Max and Kim grow crown', 'Causes/Enables', 'Max and Kim gather crown'], 'general_no_brackets': ['Max and Kim grow crown', 'Causes/Enables', 'Max and Kim gather crown'], 'coref': [('Mary', 'Mary'), ('Mary and her mother', 'and'), ('Mary', 'her'), ('Mary and her mother', 'mother'), ('tomatoes', 'the'), ('tomatoes', 'tomatoes')], 'coref_roots': [('Mary', 'Mary'), ('Mary', 'and'), ('Mary', 'her'), ('mother', 'mother'), ('tomatoes', 'the'), ('tomatoes', 'tomatoes')], 'general_merge': {'nodes': 3, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.4}, 'specific_merge': {'nodes': 2, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.2}}]}\n",
+      "('1266_1', '1266_EMO_3')\n",
+      "{'annotations': [{'dimension': '7', 'quality': 3, 'worker_id': 152, 'rules': [['Mary and her mother grow tomatoes', 'Causes', 'Mary and her mother feel(s) excited'], ['{Mary and her mother}_[subject] {grow}_[verb] {tomatoes}_[object1]', 'Causes', '{Mary and her mother}_[subject] {feel(s)}_[verb] {excited}_[object]'], ['Someone_A and Someone_B grow Something_A (that is a plant)', 'Causes', 'Someone_A and Someone_B feel(s) excited'], ['{Someone_A and Someone_B}_[subject] {grow}_[verb] {Something_A ||that is a plant||}_[object1]', 'Causes', '{Someone_A and Someone_B}_[subject] {feel(s)}_[verb] {excited}_[object]']], '2parse': [['Mary and her mother grow tomatoes', 'Causes', 'Mary and her mother feels excited'], ['Max and Kim grow crown', 'Causes', 'Max and Kim feels excited']], 'general_0': ['someone_a and someone_b grow something_a (that is a plant)', 'Causes', 'someone_a and someone_b feels excited'], 'general_replaced': ['Max and Kim grow crown (that is a plant)', 'Causes', 'Max and Kim feels excited'], 'general_no_brackets': ['Max and Kim grow crown', 'Causes', 'Max and Kim feels excited'], 'coref': [('Mary', 'Mary'), ('Mary and her mother', 'and'), ('Mary', 'her'), ('Mary and her mother', 'mother')], 'coref_roots': [('Mary', 'Mary'), ('Mary', 'and'), ('Mary', 'her'), ('mother', 'mother')], 'general_merge': {'nodes': 2, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.3}, 'specific_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.2}}]}\n",
+      "('1266_1', '1266_EMO_9')\n",
+      "{'annotations': [{'dimension': '7', 'quality': 3, 'worker_id': 197, 'rules': [['They grow tomatoes', 'Causes', 'They feel(s) happy'], ['{They}_[subject] {grow}_[verb] {tomatoes}_[object1]', 'Causes', '{They}_[subject] {feel(s)}_[verb] {happy}_[object]'], ['Someone_A and Someone_B grow Something_A (that is a plant)', 'Causes', 'Someone_A and Someone_B (that enjoy growing Something_A) feel(s) happy'], ['{Someone_A and Someone_B}_[subject] {grow}_[verb] {Something_A ||that is a plant||}_[object1]', 'Causes', '{Someone_A and Someone_B ||that enjoy growing Something_A||}_[subject] {feel(s)}_[verb] {happy}_[object]']], '2parse': [['They grow tomatoes', 'Causes', 'They feels happy'], ['Max and Kim grow crown', 'Causes', 'Max and Kim that enjoy growing crown feels happy']], 'general_0': ['someone_a and someone_b grow something_a (that is a plant)', 'Causes', 'someone_a and someone_b that enjoy growing something_a feels happy'], 'general_replaced': ['Max and Kim grow crown (that is a plant)', 'Causes', 'Max and Kim that enjoy growing crown feels happy'], 'general_no_brackets': ['Max and Kim grow crown', 'Causes', 'Max and Kim that enjoy growing crown feels happy'], 'coref': [('They', 'They')], 'coref_roots': [('They', 'They')], 'general_merge': {'nodes': 3, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.3}, 'specific_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.3, 'D_aft': 0.5}}]}\n",
+      "('1266_1', '1266_LOC_4')\n",
+      "{'annotations': [{'dimension': '8', 'quality': 3, 'worker_id': 197, 'rules': [['They grow tomatoes in the garden', 'Results in', 'Tomatoes are in the garden'], ['{They}_[subject] {grow}_[verb] {tomatoes}_[object1] {in }_[preposition2] {the garden}_[object2]', 'Results in', '{Tomatoes}_[subject] {are}_[verb] {in}_[preposition] {the garden}_[object]'], ['Someone_A and Someone_B grow Something_A (that is a plant) in Somewhere_A', 'Results in', 'Something_A is in Somewhere_A'], ['{Someone_A and Someone_B}_[subject] {grow}_[verb] {Something_A ||that is a plant||}_[object1] {in }_[preposition2] {Somewhere_A}_[object2]', 'Results in', '{Something_A}_[subject] {is}_[verb] {in}_[preposition] {Somewhere_A}_[object]']], '2parse': [['They grow tomatoes in the garden', 'Results in', 'Tomatoes are in the garden'], ['Max and Kim grow crown in France', 'Results in', 'crown is in France']], 'general_0': ['someone_a and someone_b grow something_a (that is a plant) in somewhere_a', 'Results in', 'something_a is in somewhere_a'], 'general_replaced': ['Max and Kim grow crown (that is a plant) in France', 'Results in', 'crown is in France'], 'general_no_brackets': ['Max and Kim grow crown in France', 'Results in', 'crown is in France'], 'coref': [('the garden', 'the'), ('the garden', 'garden')], 'coref_roots': [('garden', 'the'), ('garden', 'garden')], 'general_merge': {'nodes': 2, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.4}, 'specific_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.3, 'D_aft': 0.4}}]}\n",
+      "('1266_1', '1266_POS_0')\n",
+      "{'annotations': [{'dimension': '9', 'quality': 3, 'worker_id': 152, 'rules': [['Mary and her mother grow tomatoes', 'Results in', 'Mary and her mother possess(es) tomatoes'], ['{Mary and her mother}_[subject] {grow}_[verb] {tomatoes}_[object1]', 'Results in', '{Mary and her mother}_[subject] {possess(es)}_[verb] {tomatoes}_[object]'], ['Someone_A and Someone_B grow Something_A', 'Results in', 'Someone_A and Someone_B possess(es) Something_A'], ['{Someone_A and Someone_B}_[subject] {grow}_[verb] {Something_A}_[object1]', 'Results in', '{Someone_A and Someone_B}_[subject] {possess(es)}_[verb] {Something_A}_[object]']], '2parse': [['Mary and her mother grow tomatoes', 'Results in', 'Mary and her mother possesses tomatoes'], ['Max and Kim grow crown', 'Results in', 'Max and Kim possesses crown']], 'general_0': ['someone_a and someone_b grow something_a', 'Results in', 'someone_a and someone_b possesses something_a'], 'general_replaced': ['Max and Kim grow crown', 'Results in', 'Max and Kim possesses crown'], 'general_no_brackets': ['Max and Kim grow crown', 'Results in', 'Max and Kim possesses crown'], 'coref': [('Mary', 'Mary'), ('Mary and her mother', 'and'), ('Mary', 'her'), ('Mary and her mother', 'mother')], 'coref_roots': [('Mary', 'Mary'), ('Mary', 'and'), ('Mary', 'her'), ('mother', 'mother')], 'general_merge': {'nodes': 3, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.4}, 'specific_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.2}}]}\n",
+      "('1266_1', '1266_POS_4')\n",
+      "{'annotations': [{'dimension': '9', 'quality': 2, 'worker_id': 14, 'rules': [['Mary and her mother grow tomatoes in their garden', 'Results in', 'They possess(es) tomatoes'], ['{Mary and her mother}_[subject] {grow}_[verb] {tomatoes}_[object1] {in}_[preposition2] {their garden}_[object2]', 'Results in', '{They}_[subject] {possess(es)}_[verb] {tomatoes}_[object]'], ['Someone_A and Someone_B grow Something_A', 'Results in', 'Someone_A and Someone_B possess(es) Something_A'], ['{Someone_A and Someone_B}_[subject] {grow}_[verb] {Something_A}_[object1]', 'Results in', '{Someone_A and Someone_B}_[subject] {possess(es)}_[verb] {Something_A}_[object]']], '2parse': [['Mary and her mother grow tomatoes in their garden', 'Results in', 'They possesses tomatoes'], ['Max and Kim grow crown', 'Results in', 'Max and Kim possesses crown']], 'general_0': ['someone_a and someone_b grow something_a', 'Results in', 'someone_a and someone_b possesses something_a'], 'general_replaced': ['Max and Kim grow crown', 'Results in', 'Max and Kim possesses crown'], 'general_no_brackets': ['Max and Kim grow crown', 'Results in', 'Max and Kim possesses crown'], 'coref': [('Mary and her mother', 'They')], 'coref_roots': [('Mary', 'They')], 'general_merge': {'nodes': 3, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.4}, 'specific_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.2}}, {'dimension': '9', 'quality': 3, 'worker_id': 197, 'rules': [['They grow tomatoes', 'Results in', 'They possess(es) tomatoes'], ['{They}_[subject] {grow}_[verb] {tomatoes}_[object1]', 'Results in', '{They}_[subject] {possess(es)}_[verb] {tomatoes}_[object]'], ['Someone_A and Someone_B grow Something_A (that is a plant)', 'Results in', 'Someone_A and Someone_B possess(es) Something_A'], ['{Someone_A and Someone_B}_[subject] {grow}_[verb] {Something_A ||that is a plant||}_[object1]', 'Results in', '{Someone_A and Someone_B}_[subject] {possess(es)}_[verb] {Something_A}_[object]']], '2parse': [['They grow tomatoes', 'Results in', 'They possesses tomatoes'], ['Max and Kim grow crown', 'Results in', 'Max and Kim possesses crown']], 'general_0': ['someone_a and someone_b grow something_a (that is a plant)', 'Results in', 'someone_a and someone_b possesses something_a'], 'general_replaced': ['Max and Kim grow crown (that is a plant)', 'Results in', 'Max and Kim possesses crown'], 'general_no_brackets': ['Max and Kim grow crown', 'Results in', 'Max and Kim possesses crown'], 'coref': [('They', 'They')], 'coref_roots': [('They', 'They')], 'general_merge': {'nodes': 3, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.4}, 'specific_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.3, 'D_aft': 0.4}}]}\n",
+      "('1266_1', '1266_OTH_1')\n",
+      "{'annotations': [{'dimension': '10', 'quality': 3, 'worker_id': 152, 'rules': [['Mary and her mother grow tomatoes in their garden', 'Results in', 'Mary and her mother are gardeners'], ['{Mary and her mother}_[subject] {grow}_[verb] {tomatoes}_[object1] {in}_[preposition2] {their garden}_[object2]', 'Results in', '{Mary and her mother}_[subject] {are}_[verb] {gardeners}_[object]'], ['Someone_A and Someone_B grow Something_A in Somewhere_A (that is a garden)', 'Results in', 'Someone_A and Someone_B are gardeners'], ['{Someone_A and Someone_B}_[subject] {grow}_[verb] {Something_A}_[object1] {in}_[preposition2] {Somewhere_A ||that is a garden||}_[object2]', 'Results in', '{Someone_A and Someone_B}_[subject] {are}_[verb] {gardeners}_[object]']], '2parse': [['Mary and her mother grow tomatoes in their garden', 'Results in', 'Mary and her mother are gardeners'], ['Max and Kim grow crown in France', 'Results in', 'Max and Kim are gardeners']], 'general_0': ['someone_a and someone_b grow something_a in somewhere_a (that is a garden)', 'Results in', 'someone_a and someone_b are gardeners'], 'general_replaced': ['Max and Kim grow crown in France (that is a garden)', 'Results in', 'Max and Kim are gardeners'], 'general_no_brackets': ['Max and Kim grow crown in France', 'Results in', 'Max and Kim are gardeners'], 'coref': [('Mary', 'Mary'), ('Mary and her mother', 'and'), ('Mary', 'her'), ('Mary and her mother', 'mother')], 'coref_roots': [('Mary', 'Mary'), ('Mary', 'and'), ('Mary', 'her'), ('mother', 'mother')], 'general_merge': {'nodes': 2, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.2}, 'specific_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.2}}]}\n",
+      "('1266_1', '1266_OTH_6')\n",
+      "{'annotations': [{'dimension': '10', 'quality': 3, 'worker_id': 197, 'rules': [['They grow tomatoes', 'Results in', 'Tomatoes are grown'], ['{They}_[subject] {grow}_[verb] {tomatoes}_[object1]', 'Results in', '{Tomatoes}_[subject] {are}_[verb] {grown}_[object]'], ['Someone_A and Someone_B grow Something_A (that is a plant)', 'Results in', 'Something_A is grown'], ['{Someone_A and Someone_B}_[subject] {grow}_[verb] {Something_A ||that is a plant||}_[object1]', 'Results in', '{Something_A}_[subject] {is}_[verb] {grown}_[object]']], '2parse': [['They grow tomatoes', 'Results in', 'Tomatoes are grown'], ['Max and Kim grow crown', 'Results in', 'crown is grown']], 'general_0': ['someone_a and someone_b grow something_a (that is a plant)', 'Results in', 'something_a is grown'], 'general_replaced': ['Max and Kim grow crown (that is a plant)', 'Results in', 'crown is grown'], 'general_no_brackets': ['Max and Kim grow crown', 'Results in', 'crown is grown'], 'coref': [], 'coref_roots': [], 'general_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.3}, 'specific_merge': {'nodes': 0, 'edges': 0, 'D_bef': 0.3, 'D_aft': 0.3}}]}\n",
+      "('1266_2', '1266_EVENT_7')\n",
+      "{'annotations': [{'dimension': '6', 'quality': 2, 'worker_id': 14, 'rules': [['Mary and her mother can the tomatoes', 'Causes/Enables', 'They have a great time'], ['{Mary and her mother}_[subject] {can}_[verb] {the tomatoes}_[object1]', 'Causes/Enables', '{They}_[subject] {have}_[verb] {a great time}_[object1]'], ['Someone_A and Someone_B do Something_A (that Someone_A and Someone_B enjoy)', 'Causes/Enables', 'Someone_A and Someone_B have a great time'], ['{Someone_A and Someone_B}_[subject] {do}_[verb] {Something_A ||that Someone_A and Someone_B enjoy||}_[object1]', 'Causes/Enables', '{Someone_A and Someone_B}_[subject] {have}_[verb] {a great time}_[object1]']], '2parse': [['Mary and her mother can the tomatoes', 'Causes/Enables', 'They have a great time'], ['Max and Kim do crown that Max and Kim enjoy', 'Causes/Enables', 'Max and Kim have a great time']], 'general_0': ['someone_a and someone_b do something_a that someone_a and someone_b enjoy', 'Causes/Enables', 'someone_a and someone_b have a great time'], 'general_replaced': ['Max and Kim do crown that Max and Kim enjoy', 'Causes/Enables', 'Max and Kim have a great time'], 'general_no_brackets': ['Max and Kim do crown that Max and Kim enjoy', 'Causes/Enables', 'Max and Kim have a great time'], 'coref': [('Mary and her mother', 'They')], 'coref_roots': [('Mary', 'They')], 'general_merge': {'nodes': 2, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.3}, 'specific_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.2}}]}\n",
+      "('1266_2', '1266_LOC_0')\n",
+      "{'annotations': [{'dimension': '8', 'quality': 3, 'worker_id': 19, 'rules': [['Mary and her mother gather at the garden', 'Results in', 'Mary and her mother are at the garden'], ['{Mary and her mother}_[subject] {gather}_[verb] {at }_[preposition1] {the garden}_[object1]', 'Results in', '{Mary and her mother}_[subject] {are}_[verb] {at}_[preposition] {the garden}_[object]'], ['Someone_A and Someone_B go to Somewhere_A', 'Results in', 'Someone_A and Someone_B are at Somewhere_A'], ['{Someone_A and Someone_B}_[subject] {go}_[verb] {to }_[preposition1] {Somewhere_A}_[object1]', 'Results in', '{Someone_A and Someone_B}_[subject] {are}_[verb] {at}_[preposition] {Somewhere_A}_[object]']], '2parse': [['Mary and her mother gather at the garden', 'Results in', 'Mary and her mother are at the garden'], ['Max and Kim go to France', 'Results in', 'Max and Kim are at France']], 'general_0': ['someone_a and someone_b go to somewhere_a', 'Results in', 'someone_a and someone_b are at somewhere_a'], 'general_replaced': ['Max and Kim go to France', 'Results in', 'Max and Kim are at France'], 'general_no_brackets': ['Max and Kim go to France', 'Results in', 'Max and Kim are at France'], 'coref': [('Mary', 'Mary'), ('Mary and her mother', 'and'), ('Mary', 'her'), ('Mary and her mother', 'mother'), ('the garden', 'the'), ('the garden', 'garden')], 'coref_roots': [('Mary', 'Mary'), ('Mary', 'and'), ('Mary', 'her'), ('mother', 'mother'), ('garden', 'the'), ('garden', 'garden')], 'general_merge': {'nodes': 3, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.4}, 'specific_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.2}}]}\n",
+      "('1266_2', '1266_LOC_3')\n",
+      "{'annotations': [{'dimension': '8', 'quality': 2, 'worker_id': 14, 'rules': [['Mary and her mother gather the tomatoes', 'Results in', 'The tomatoes are in containers'], ['{Mary and her mother}_[subject] {gather}_[verb] {the tomatoes}_[object1]', 'Results in', '{The tomatoes}_[subject] {are}_[verb] {in}_[preposition] {containers}_[object]'], ['Someone_A and Someone_B gather Something_A', 'Results in', 'Something_A is in containers'], ['{Someone_A and Someone_B}_[subject] {gather}_[verb] {Something_A}_[object1]', 'Results in', '{Something_A}_[subject] {is}_[verb] {in}_[preposition] {containers}_[object]']], '2parse': [['Mary and her mother gather the tomatoes', 'Results in', 'The tomatoes are in containers'], ['Max and Kim gather crown', 'Results in', 'crown is in containers']], 'general_0': ['someone_a and someone_b gather something_a', 'Results in', 'something_a is in containers'], 'general_replaced': ['Max and Kim gather crown', 'Results in', 'crown is in containers'], 'general_no_brackets': ['Max and Kim gather crown', 'Results in', 'crown is in containers'], 'coref': [('the tomatoes', 'The'), ('the tomatoes', 'tomatoes')], 'coref_roots': [('tomatoes', 'The'), ('tomatoes', 'tomatoes')], 'general_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.3}, 'specific_merge': {'nodes': 0, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.2}}]}\n",
+      "('1266_2', '1266_POS_4')\n",
+      "{'annotations': [{'dimension': '9', 'quality': 2, 'worker_id': 14, 'rules': [['Mary and her mother can the tomatoes', 'Results in', 'They possess(es) cans of tomatoes'], ['{Mary and her mother}_[subject] {can}_[verb] {the tomatoes}_[object1]', 'Results in', '{They}_[subject] {possess(es)}_[verb] {cans of tomatoes}_[object]'], ['Someone_A and Someone_B can Something_A (that is perishable food)', 'Results in', 'Someone_A and Someone_B possess(es) cans of Something_A'], ['{Someone_A and Someone_B}_[subject] {can}_[verb] {Something_A ||that is perishable food||}_[object1]', 'Results in', '{Someone_A and Someone_B}_[subject] {possess(es)}_[verb] {cans of Something_A}_[object]']], '2parse': [['Mary and her mother can the tomatoes', 'Results in', 'They possesses cans of tomatoes'], ['Max and Kim can crown', 'Results in', 'Max and Kim possesses cans of crown']], 'general_0': ['someone_a and someone_b can something_a (that is perishable food)', 'Results in', 'someone_a and someone_b possesses cans of something_a'], 'general_replaced': ['Max and Kim can crown (that is perishable food)', 'Results in', 'Max and Kim possesses cans of crown'], 'general_no_brackets': ['Max and Kim can crown', 'Results in', 'Max and Kim possesses cans of crown'], 'coref': [('Mary and her mother', 'They')], 'coref_roots': [('Mary', 'They')], 'general_merge': {'nodes': 3, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.3}, 'specific_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.2}}]}\n",
+      "('1266_2', '1266_OTH_4')\n",
+      "{'annotations': [{'dimension': '10', 'quality': 2, 'worker_id': 14, 'rules': [['Mary and her mother can the tomatoes', 'Results in', 'The tomatoes are canned'], ['{Mary and her mother}_[subject] {can}_[verb] {the tomatoes}_[object1]', 'Results in', '{The tomatoes}_[subject] {are}_[verb] {canned}_[object]'], ['Someone_A and Someone_B can Something_A (that is food)', 'Results in', 'Something_A is canned'], ['{Someone_A and Someone_B}_[subject] {can}_[verb] {Something_A ||that is food||}_[object1]', 'Results in', '{Something_A}_[subject] {is}_[verb] {canned}_[object]']], '2parse': [['Mary and her mother can the tomatoes', 'Results in', 'The tomatoes are canned'], ['Max and Kim can crown', 'Results in', 'crown is canned']], 'general_0': ['someone_a and someone_b can something_a (that is food)', 'Results in', 'something_a is canned'], 'general_replaced': ['Max and Kim can crown (that is food)', 'Results in', 'crown is canned'], 'general_no_brackets': ['Max and Kim can crown', 'Results in', 'crown is canned'], 'coref': [('the tomatoes', 'The'), ('the tomatoes', 'tomatoes')], 'coref_roots': [('tomatoes', 'The'), ('tomatoes', 'tomatoes')], 'general_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.3}, 'specific_merge': {'nodes': 0, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.2}}]}\n",
+      "('1266_3', '1266_EVENT_10')\n",
+      "{'annotations': [{'dimension': '6', 'quality': 2, 'worker_id': 203, 'rules': [['Mary and her mother had a large harvest of tomatoes', 'Causes/Enables', 'Mary and her mother canned the tomatoes'], ['{Mary and her mother}_[subject] {had }_[verb] {a large harvest }_[preposition1] {of tomatoes }_[object1]', 'Causes/Enables', '{Mary and her mother}_[subject] {canned }_[verb] {the tomatoes }_[object1]'], ['Someone_A produces Something_A', 'Causes/Enables', 'Someone_A processes Something_A into Something_B'], ['{Someone_A}_[subject] {produces }_[verb] {Something_A}_[object1]', 'Causes/Enables', '{Someone_A}_[subject] {processes }_[verb] {Something_A}_[object1] {into }_[preposition2] {Something_B}_[object2]']], '2parse': [['Mary and her mother had a large harvest of tomatoes', 'Causes/Enables', 'Mary and her mother canned the tomatoes'], ['Max produces crown', 'Causes/Enables', 'Max processes crown into throne']], 'general_0': ['someone_a produces something_a', 'Causes/Enables', 'someone_a processes something_a into something_b'], 'general_replaced': ['Max produces crown', 'Causes/Enables', 'Max processes crown into throne'], 'general_no_brackets': ['Max produces crown', 'Causes/Enables', 'Max processes crown into throne'], 'coref': [('Mary', 'Mary'), ('Mary and her mother', 'and'), ('Mary', 'her'), ('Mary and her mother', 'mother'), ('a large harvest of tomatoes', 'the'), ('a large harvest of tomatoes', 'tomatoes')], 'coref_roots': [('Mary', 'Mary'), ('Mary', 'and'), ('Mary', 'her'), ('mother', 'mother'), ('harvest', 'the'), ('harvest', 'tomatoes')], 'general_merge': {'nodes': 2, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.5}, 'specific_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.1, 'D_aft': 0.2}}]}\n",
+      "('1266_3', '1266_EMO_1')\n",
+      "{'annotations': [{'dimension': '7', 'quality': 2, 'worker_id': 14, 'rules': [['There is an especially large harvest of tomatoes', 'Causes', 'Mary and her mother feel(s) happy'], ['{There}_[subject] {is}_[verb] {an especially large harvest of tomatoes}_[object1]', 'Causes', '{Mary and her mother}_[subject] {feel(s)}_[verb] {happy}_[object]'], ['There is an especially large harvest of Something_A (that is a crop)', 'Causes', 'Someone_A and Someone_B (who planted Something_A) feel(s) happy'], ['{There}_[subject] {is}_[verb] {an especially large harvest of Something_A ||that is a crop||}_[object1]', 'Causes', '{Someone_A and Someone_B ||who planted Something_A||}_[subject] {feel(s)}_[verb] {happy}_[object]']], '2parse': [['There is an especially large harvest of tomatoes', 'Causes', 'Mary and her mother feels happy'], ['There is an especially large harvest of crown', 'Causes', 'Max and Kim who planted crown feels happy']], 'general_0': ['There is an especially large harvest of something_a (that is a crop)', 'Causes', 'someone_a and someone_b who planted something_a feels happy'], 'general_replaced': ['There is an especially large harvest of crown (that is a crop)', 'Causes', 'Max and Kim who planted crown feels happy'], 'general_no_brackets': ['There is an especially large harvest of crown', 'Causes', 'Max and Kim who planted crown feels happy'], 'coref': [('Mary', 'Mary'), ('Mary', 'her')], 'coref_roots': [('Mary', 'Mary'), ('Mary', 'her')], 'general_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.2}, 'specific_merge': {'nodes': 0, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.2}}, {'dimension': '7', 'quality': 3, 'worker_id': 19, 'rules': [['The harvest is large', 'Causes', 'Mary and her mother feel(s) happy'], ['{The harvest}_[subject] {is}_[verb] {large}_[object1]', 'Causes', '{Mary and her mother}_[subject] {feel(s)}_[verb] {happy}_[object]'], ['The harvest is good', 'Causes', 'Someone_A and Someone_B (who have crops) feel(s) happy'], ['{The harvest}_[subject] {is}_[verb] {good}_[object1]', 'Causes', '{Someone_A and Someone_B ||who have crops||}_[subject] {feel(s)}_[verb] {happy}_[object]']], '2parse': [['The harvest is large', 'Causes', 'Mary and her mother feels happy'], ['The harvest is good', 'Causes', 'Max and Kim feels happy']], 'general_0': ['The harvest is good', 'Causes', 'someone_a and someone_b (who have crops) feels happy'], 'general_replaced': ['The harvest is good', 'Causes', 'Max and Kim (who have crops) feels happy'], 'general_no_brackets': ['The harvest is good', 'Causes', 'Max and Kim feels happy'], 'coref': [('Mary', 'Mary'), ('Mary', 'her')], 'coref_roots': [('Mary', 'Mary'), ('Mary', 'her')], 'general_merge': {'nodes': 0, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.2}, 'specific_merge': {'nodes': 0, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.2}}, {'dimension': '7', 'quality': 2, 'worker_id': 203, 'rules': [['Mary and her mother had a large harvest of tomatoes', 'Causes', 'Mary and her mother feel(s) elated'], ['{Mary and her mother}_[subject] {had }_[verb] {a large harvest of }_[preposition1] {tomatoes }_[object1]', 'Causes', '{Mary and her mother}_[subject] {feel(s)}_[verb] {elated }_[object]'], ['Someone_A does Something_A (that is an activity) successfully', 'Causes', 'Someone_A feel(s) elated'], ['{Someone_A}_[subject] {does }_[verb] {Something_A ||that is an activity||}_[object1] {successfully }_[object2]', 'Causes', '{Someone_A}_[subject] {feel(s)}_[verb] {elated}_[object]']], '2parse': [['Mary and her mother had a large harvest of tomatoes', 'Causes', 'Mary and her mother feels elated'], ['Max does crown successfully', 'Causes', 'Max feels elated']], 'general_0': ['someone_a does something_a (that is an activity) successfully', 'Causes', 'someone_a feels elated'], 'general_replaced': ['Max does crown (that is an activity) successfully', 'Causes', 'Max feels elated'], 'general_no_brackets': ['Max does crown successfully', 'Causes', 'Max feels elated'], 'coref': [('Mary', 'Mary'), ('Mary and her mother', 'and'), ('Mary', 'her'), ('Mary and her mother', 'mother')], 'coref_roots': [('Mary', 'Mary'), ('Mary', 'and'), ('Mary', 'her'), ('mother', 'mother')], 'general_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.3, 'D_aft': 0.5}, 'specific_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.2}}]}\n",
+      "('1266_3', '1266_POS_0')\n",
+      "{'annotations': [{'dimension': '9', 'quality': 2, 'worker_id': 203, 'rules': [['Mary and her mother had a harvest of tomatoes', 'Results in', 'Mary and her mother possess(es) tomatoes'], ['{Mary and her mother}_[subject] {had }_[verb] {a harvest }_[preposition1] {of tomatoes }_[object1]', 'Results in', '{Mary and her mother}_[subject] {possess(es)}_[verb] {tomatoes }_[object]'], ['Someone_A harvests Something_A', 'Results in', 'Someone_A possess(es) Something_A'], ['{Someone_A}_[subject] {harvests }_[verb] {Something_A}_[object1]', 'Results in', '{Someone_A}_[subject] {possess(es)}_[verb] {Something_A}_[object]']], '2parse': [['Mary and her mother had a harvest of tomatoes', 'Results in', 'Mary and her mother possesses tomatoes'], ['Max harvests crown', 'Results in', 'Max possesses crown']], 'general_0': ['someone_a harvests something_a', 'Results in', 'someone_a possesses something_a'], 'general_replaced': ['Max harvests crown', 'Results in', 'Max possesses crown'], 'general_no_brackets': ['Max harvests crown', 'Results in', 'Max possesses crown'], 'coref': [('Mary', 'Mary'), ('Mary and her mother', 'and'), ('Mary', 'her'), ('Mary and her mother', 'mother')], 'coref_roots': [('Mary', 'Mary'), ('Mary', 'and'), ('Mary', 'her'), ('mother', 'mother')], 'general_merge': {'nodes': 2, 'edges': 0, 'D_bef': 0.3, 'D_aft': 0.7}, 'specific_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.2}}]}\n",
+      "('1266_4', '1266_EVENT_6')\n",
+      "{'annotations': [{'dimension': '6', 'quality': 3, 'worker_id': 19, 'rules': [['Mary and her mother try to can', 'Causes/Enables', 'Mary and her mother can'], ['{Mary and her mother}_[subject] {try}_[verb] {to }_[preposition1] {can}_[object1]', 'Causes/Enables', '{Mary and her mother}_[subject] {can}_[verb]'], ['Someone_A and Someone_B try to do Something_A', 'Causes/Enables', 'Someone_A and Someone_B do Something_A'], ['{Someone_A and Someone_B}_[subject] {try}_[verb] {to }_[preposition1] {do Something_A}_[object1]', 'Causes/Enables', '{Someone_A and Someone_B}_[subject] {do}_[verb] {Something_A}_[object1]']], '2parse': [['Mary and her mother try to can', 'Causes/Enables', 'Mary and her mother can'], ['Max and Kim try to do crown', 'Causes/Enables', 'Max and Kim do crown']], 'general_0': ['someone_a and someone_b try to do something_a', 'Causes/Enables', 'someone_a and someone_b do something_a'], 'general_replaced': ['Max and Kim try to do crown', 'Causes/Enables', 'Max and Kim do crown'], 'general_no_brackets': ['Max and Kim try to do crown', 'Causes/Enables', 'Max and Kim do crown'], 'coref': [('Mary', 'Mary'), ('Mary and her mother', 'and'), ('Mary', 'her'), ('Mary and her mother', 'mother')], 'coref_roots': [('Mary', 'Mary'), ('Mary', 'and'), ('Mary', 'her'), ('mother', 'mother')], 'general_merge': {'nodes': 3, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.4}, 'specific_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.2}}]}\n",
+      "('1266_4', '1266_EVENT_8')\n",
+      "{'annotations': [{'dimension': '6', 'quality': 3, 'worker_id': 152, 'rules': [['Mary and her mother can the tomatoes', 'Causes/Enables', 'Mary and her mother put the tomatoes on a shelf'], ['{Mary and her mother}_[subject] {can}_[verb] {the tomatoes}_[object1]', 'Causes/Enables', '{Mary and her mother}_[subject] {put}_[verb] {the tomatoes}_[object1] {on}_[preposition2] {a shelf}_[object2]'], ['Someone_A and Someone_B can Something_A in Something_B', 'Causes/Enables', 'Someone_A and Someone_B put Something_B on Something_C'], ['{Someone_A and Someone_B}_[subject] {can}_[verb] {Something_A}_[object1] {in}_[preposition2] {Something_B}_[object2]', 'Causes/Enables', '{Someone_A and Someone_B}_[subject] {put}_[verb] {Something_B}_[object1] {on}_[preposition2] {Something_C}_[object2]']], '2parse': [['Mary and her mother can the tomatoes', 'Causes/Enables', 'Mary and her mother put the tomatoes on a shelf'], ['Max and Kim can crown in throne', 'Causes/Enables', 'Max and Kim put throne on sword']], 'general_0': ['someone_a and someone_b can something_a in something_b', 'Causes/Enables', 'someone_a and someone_b put something_b on something_c'], 'general_replaced': ['Max and Kim can crown in throne', 'Causes/Enables', 'Max and Kim put throne on sword'], 'general_no_brackets': ['Max and Kim can crown in throne', 'Causes/Enables', 'Max and Kim put throne on sword'], 'coref': [('Mary', 'Mary'), ('Mary and her mother', 'and'), ('Mary', 'her'), ('Mary and her mother', 'mother'), ('the tomatoes', 'the'), ('the tomatoes', 'tomatoes')], 'coref_roots': [('Mary', 'Mary'), ('Mary', 'and'), ('Mary', 'her'), ('mother', 'mother'), ('tomatoes', 'the'), ('tomatoes', 'tomatoes')], 'general_merge': {'nodes': 3, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.3}, 'specific_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.1, 'D_aft': 0.2}}]}\n",
+      "('1266_4', '1266_EMO_1')\n",
+      "{'annotations': [{'dimension': '7', 'quality': 3, 'worker_id': 19, 'rules': [['Mary and her mother have a great time', 'Causes', 'Mary and her mother feel(s) happy'], ['{Mary and her mother}_[subject] {have}_[verb] {a great time}_[object1]', 'Causes', '{Mary and her mother}_[subject] {feel(s)}_[verb] {happy}_[object]'], ['Someone_A and Someone_B have fun', 'Causes', 'Someone_A and Someone_B feel(s) happy'], ['{Someone_A and Someone_B}_[subject] {have}_[verb] {fun}_[object1]', 'Causes', '{Someone_A and Someone_B}_[subject] {feel(s)}_[verb] {happy}_[object]']], '2parse': [['Mary and her mother have a great time', 'Causes', 'Mary and her mother feels happy'], ['Max and Kim have fun', 'Causes', 'Max and Kim feels happy']], 'general_0': ['someone_a and someone_b have fun', 'Causes', 'someone_a and someone_b feels happy'], 'general_replaced': ['Max and Kim have fun', 'Causes', 'Max and Kim feels happy'], 'general_no_brackets': ['Max and Kim have fun', 'Causes', 'Max and Kim feels happy'], 'coref': [('Mary', 'Mary'), ('Mary and her mother', 'and'), ('Mary', 'her'), ('Mary and her mother', 'mother')], 'coref_roots': [('Mary', 'Mary'), ('Mary', 'and'), ('Mary', 'her'), ('mother', 'mother')], 'general_merge': {'nodes': 2, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.3}, 'specific_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.2}}]}\n",
+      "('1266_4', '1266_EMO_8')\n",
+      "{'annotations': [{'dimension': '7', 'quality': 3, 'worker_id': 152, 'rules': [['Mary and her mother can the tomatoes', 'Causes', 'Mary and her mother feel(s) proud'], ['{Mary and her mother}_[subject] {can}_[verb] {the tomatoes}_[object1]', 'Causes', '{Mary and her mother}_[subject] {feel(s)}_[verb] {proud}_[object]'], ['Someone_A and Someone_B can Something_A (that Someone_A and Someone_B grew)', 'Causes', 'Someone_A and Someone_B feel(s) proud'], ['{Someone_A and Someone_B}_[subject] {can}_[verb] {Something_A ||that Someone_A and Someone_B grew||}_[object1]', 'Causes', '{Someone_A and Someone_B}_[subject] {feel(s)}_[verb] {proud}_[object]']], '2parse': [['Mary and her mother can the tomatoes', 'Causes', 'Mary and her mother feels proud'], ['Max and Kim can crown that Max and Kim grew', 'Causes', 'Max and Kim feels proud']], 'general_0': ['someone_a and someone_b can something_a that someone_a and someone_b grew', 'Causes', 'someone_a and someone_b feels proud'], 'general_replaced': ['Max and Kim can crown that Max and Kim grew', 'Causes', 'Max and Kim feels proud'], 'general_no_brackets': ['Max and Kim can crown that Max and Kim grew', 'Causes', 'Max and Kim feels proud'], 'coref': [('Mary', 'Mary'), ('Mary and her mother', 'and'), ('Mary', 'her'), ('Mary and her mother', 'mother')], 'coref_roots': [('Mary', 'Mary'), ('Mary', 'and'), ('Mary', 'her'), ('mother', 'mother')], 'general_merge': {'nodes': 2, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.3}, 'specific_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.2}}]}\n",
+      "('1266_4', '1266_LOC_3')\n",
+      "{'annotations': [{'dimension': '8', 'quality': 3, 'worker_id': 152, 'rules': [['Mary and her mother can the tomatoes', 'Results in', 'The tomatoes are inside of cans'], ['{Mary and her mother}_[subject] {can}_[verb] {the tomatoes}_[object1]', 'Results in', '{The tomatoes}_[subject] {are}_[verb] {inside of}_[preposition] {cans}_[object]'], ['Someone_A and Someone_B can Something_A in Something_B', 'Results in', 'Something_A is inside of Something_B'], ['{Someone_A and Someone_B}_[subject] {can}_[verb] {Something_A}_[object1] {in}_[preposition2] {Something_B}_[object2]', 'Results in', '{Something_A}_[subject] {is}_[verb] {inside of}_[preposition] {Something_B}_[object]']], '2parse': [['Mary and her mother can the tomatoes', 'Results in', 'The tomatoes are inside of cans'], ['Max and Kim can crown in throne', 'Results in', 'crown is inside of throne']], 'general_0': ['someone_a and someone_b can something_a in something_b', 'Results in', 'something_a is inside of something_b'], 'general_replaced': ['Max and Kim can crown in throne', 'Results in', 'crown is inside of throne'], 'general_no_brackets': ['Max and Kim can crown in throne', 'Results in', 'crown is inside of throne'], 'coref': [('the tomatoes', 'The'), ('the tomatoes', 'tomatoes')], 'coref_roots': [('tomatoes', 'The'), ('tomatoes', 'tomatoes')], 'general_merge': {'nodes': 2, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.3}, 'specific_merge': {'nodes': 0, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.2}}]}\n",
+      "('1266_4', '1266_OTH_4')\n",
+      "{'annotations': [{'dimension': '10', 'quality': 3, 'worker_id': 152, 'rules': [['Mary and her mother can the tomatoes', 'Results in', 'The tomatoes are canned'], ['{Mary and her mother}_[subject] {can}_[verb] {the tomatoes}_[object1]', 'Results in', '{The tomatoes}_[subject] {are}_[verb] {canned}_[object]'], ['Someone_A and Someone_B can Something_A', 'Results in', 'Something_A is canned'], ['{Someone_A and Someone_B}_[subject] {can}_[verb] {Something_A}_[object1]', 'Results in', '{Something_A}_[subject] {is}_[verb] {canned}_[object]']], '2parse': [['Mary and her mother can the tomatoes', 'Results in', 'The tomatoes are canned'], ['Max and Kim can crown', 'Results in', 'crown is canned']], 'general_0': ['someone_a and someone_b can something_a', 'Results in', 'something_a is canned'], 'general_replaced': ['Max and Kim can crown', 'Results in', 'crown is canned'], 'general_no_brackets': ['Max and Kim can crown', 'Results in', 'crown is canned'], 'coref': [('the tomatoes', 'The'), ('the tomatoes', 'tomatoes')], 'coref_roots': [('tomatoes', 'The'), ('tomatoes', 'tomatoes')], 'general_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.3}, 'specific_merge': {'nodes': 0, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.2}}]}\n"
+     ]
+    }
+   ],
+   "source": [
+    "for edge in graph.edges:\n",
+    "    print(edge)\n",
+    "    print(graph.edges[edge])"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 4,
+   "id": "75f18f0f",
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "ARGUMENT:\n",
+      "\n",
+      "{'target': '\"Max\"_&_and'}\n",
+      "\n",
+      "PARENTS:\n",
+      "\n",
+      "{'target': 'crown-01'}\n",
+      "{'target': 'like-01'}\n",
+      "{'target': 'tradition'}\n",
+      "{'target': '\"Max\"_&_and'}\n",
+      "{'target': 'have-03'}\n",
+      "\n",
+      "KIDS:\n",
+      "\n",
+      "{'target': '\"Max\"_&_and'}\n",
+      "{'target': '\"Kim\"'}\n",
+      "\n",
+      " ########## \n",
+      "\n",
+      "ARGUMENT:\n",
+      "\n",
+      "{'target': '\"Max\"'}\n",
+      "\n",
+      "PARENTS:\n",
+      "\n",
+      "{'target': 'and'}\n",
+      "{'target': 'and'}\n",
+      "{'target': 'and'}\n",
+      "{'target': 'and'}\n",
+      "{'target': 'and'}\n",
+      "{'target': 'and'}\n",
+      "{'target': 'and'}\n",
+      "{'target': 'and'}\n",
+      "{'target': 'and'}\n",
+      "{'target': 'and'}\n",
+      "{'target': 'and'}\n",
+      "{'target': 'and'}\n",
+      "{'target': 'possess-01'}\n",
+      "{'target': 'and'}\n",
+      "{'target': 'and'}\n",
+      "{'target': 'and'}\n",
+      "{'target': 'and'}\n",
+      "{'target': 'and'}\n",
+      "{'target': 'and'}\n",
+      "{'target': 'and'}\n",
+      "{'target': 'crown-01'}\n",
+      "\n",
+      "KIDS:\n",
+      "\n",
+      "\n",
+      " ########## \n",
+      "\n",
+      "ARGUMENT:\n",
+      "\n",
+      "{'target': '\"Kim\"'}\n",
+      "\n",
+      "PARENTS:\n",
+      "\n",
+      "{'target': 'and'}\n",
+      "{'target': 'and'}\n",
+      "{'target': 'and'}\n",
+      "{'target': 'and'}\n",
+      "{'target': 'and'}\n",
+      "{'target': 'and'}\n",
+      "{'target': 'and'}\n",
+      "{'target': 'and'}\n",
+      "{'target': 'and'}\n",
+      "{'target': 'and'}\n",
+      "{'target': 'and'}\n",
+      "{'target': 'and'}\n",
+      "{'target': 'and'}\n",
+      "{'target': 'and'}\n",
+      "{'target': 'and'}\n",
+      "{'target': 'and'}\n",
+      "{'target': 'and'}\n",
+      "{'target': 'and'}\n",
+      "{'target': '\"Max\"_&_and'}\n",
+      "{'target': 'and'}\n",
+      "\n",
+      "KIDS:\n",
+      "\n",
+      "\n",
+      " ########## \n",
+      "\n"
+     ]
+    }
+   ],
+   "source": [
+    "for node in gen_merged_graph.nodes:\n",
+    "    if 'G_' in node:\n",
+    "        print('ARGUMENT:\\n')\n",
+    "        print(gen_merged_graph.nodes[node])\n",
+    "        print('\\nPARENTS:\\n')\n",
+    "        for n in gen_merged_graph.predecessors(node):\n",
+    "            print(gen_merged_graph.nodes[n])\n",
+    "        print('\\nKIDS:\\n')\n",
+    "        for n in gen_merged_graph.neighbors(node):\n",
+    "            print(gen_merged_graph.nodes[n])\n",
+    "        print('\\n','#'*10,'\\n')"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 17,
+   "id": "4268b98c",
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "edge_anno = ('1266_EVENT_1', '1266_1')\n",
+    "annotation = {'dimension': '1', 'quality': 3, 'worker_id': 197, \n",
+    "               'rules': [['They plant tomatoes', 'Causes/Enables', 'They grow tomatoes'], \n",
+    "                         ['{They}_[subject] {plant}_[verb] {tomatoes}_[object1]', 'Causes/Enables', '{They}_[subject] {grow}_[verb] {tomatoes}_[object1]'], \n",
+    "                         ['Someone_A and Someone_B plant Something_A (that is a plant)', 'Causes/Enables', 'Someone_A and Someone_B grow Something_A'], \n",
+    "                         ['{Someone_A and Someone_B}_[subject] {plant}_[verb] {Something_A ||that is a plant||}_[object1]', 'Causes/Enables', '{Someone_A and Someone_B}_[subject] {grow}_[verb] {Something_A}_[object1]']], \n",
+    "               '2parse': [['They plant tomatoes', 'Causes/Enables', 'They grow tomatoes'], \n",
+    "                          ['Max and Kim plant crown', 'Causes/Enables', 'Max and Kim grow crown']], \n",
+    "               'general_0': ['someone_a and someone_b plant something_a (that is a plant)', 'Causes/Enables', 'someone_a and someone_b grow something_a'], \n",
+    "               'general_replaced': ['Max and Kim plant crown (that is a plant)', 'Causes/Enables', 'Max and Kim grow crown'], \n",
+    "               'general_no_brackets': ['Max and Kim plant crown', 'Causes/Enables', 'Max and Kim grow crown'],\n",
+    "               'coref': [('They', 'They')], 'coref_roots': [('They', 'They')], \n",
+    "               'general_merge': {'nodes': 3, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.4}, \n",
+    "               'specific_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.3, 'D_aft': 0.4}}\n",
+    "\n",
+    "edge_anno = ('1266_EVENT_4', '1266_3')\n",
+    "annotation = {'dimension': '1', 'quality': 2, 'worker_id': 14, \n",
+    "               'rules': [['It rains a lot', 'Causes/Enables', 'There is especially large harvest of tomatoes'], \n",
+    "                         ['{It}_[subject] {rains}_[verb] {a lot}_[object1]', 'Causes/Enables', '{There}_[subject] {is}_[verb] {especially large harvest of tomatoes}_[object1]'], \n",
+    "                         ['It rains a lot', 'Causes/Enables', 'There is a large harvest of Something_A (that is a crop)'], \n",
+    "                         ['{It}_[subject] {rains}_[verb] {a lot}_[object1]', 'Causes/Enables', '{There }_[subject] {is}_[verb] {a large harvest of Something_A ||that is a crop||}_[object1]']], \n",
+    "               '2parse': [['It rains a lot', 'Causes/Enables', 'There is especially large harvest of tomatoes'], \n",
+    "                          ['It rains a lot', 'Causes/Enables', 'There is a large harvest of crown']], \n",
+    "               'general_0': ['It rains a lot', 'Causes/Enables', 'There is a large harvest of something_a (that is a crop)'], 'general_replaced': ['It rains a lot', 'Causes/Enables', 'There is a large harvest of crown (that is a crop)'], 'general_no_brackets': ['It rains a lot', 'Causes/Enables', 'There is a large harvest of crown'], 'coref': [], 'coref_roots': [], 'general_merge': {'nodes': 0, 'edges': 0, 'D_bef': 0.3, 'D_aft': 0.3}, 'specific_merge': {'nodes': 0, 'edges': 0, 'D_bef': 0.3, 'D_aft': 0.3}}\n",
+    "edge_anno = ('1266_EMO_4', '1266_1')\n",
+    "annotation = {'dimension': '2', 'quality': 2, 'worker_id': 14, \n",
+    "              'rules': [['Mary and her mother like(s) tomatoes', 'Motivates', 'They grow tomatoes in their garden every year'], ['{Mary and her mother}_[subject] {like(s)}_[verb] {tomatoes}_[object]', 'Motivates', '{They}_[subject] {grow}_[verb] {tomatoes}_[object1] {in}_[preposition2] {their garden every year}_[object2]'], \n",
+    "                        ['Someone_A and Someone_B like(s) Something_A (that can be grown)', 'Motivates', 'Someone_A and Someone_B grow Something_A every year'], ['{Someone_A and Someone_B}_[subject] {like(s)}_[verb] {Something_A ||that can be grown||}_[object]', 'Motivates', '{Someone_A and Someone_B}_[subject] {grow}_[verb] {Something_A}_[object1] {every year}_[object2]']], \n",
+    "              '2parse': [['Mary and her mother likes tomatoes', 'Motivates', 'They grow tomatoes in their garden every year'], \n",
+    "                         ['Max and Kim likes crown', 'Motivates', 'Max and Kim grow crown every year']], \n",
+    "              'general_0': ['someone_a and someone_b likes something_a (that can be grown)', 'Motivates', 'someone_a and someone_b grow something_a every year'], 'general_replaced': ['Max and Kim likes crown (that can be grown)', 'Motivates', 'Max and Kim grow crown every year'], 'general_no_brackets': ['Max and Kim likes crown', 'Motivates', 'Max and Kim grow crown every year'], 'coref': [('Mary and her mother', 'They'), ('Mary and her mother', 'their')], 'coref_roots': [('Mary', 'They'), ('Mary', 'their')], 'general_merge': {'nodes': 3, 'edges': 0, 'D_bef': 0.1, 'D_aft': 0.2}, 'specific_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.2}}\n"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 34,
+   "id": "c7dc704e",
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "with open('../generalizers/GENERALIZERS_final.json','r') as f:\n",
+    "    replacers = json.load(f)\n",
+    "    add = {key+\"'s\":value+\"'s\" for (key,value) in replacers.items()}\n",
+    "    replacers.update(add)\n",
+    "    add = {key+\",\":value+\",\" for (key,value) in replacers.items()}\n",
+    "    replacers.update(add)\n",
+    "    add = {key+\".\":value for (key,value) in replacers.items()}\n",
+    "    replacers.update(add)\n",
+    "    \n",
+    "def replace_names(parse):\n",
+    "    \"\"\"\n",
+    "    Replace \":name ...\" tags and attributes with actual concept name\n",
+    "    \n",
+    "    e.g.: \n",
+    "        \n",
+    "        :ARG1 (p / person\n",
+    "            :name (n / name\n",
+    "                  :op1 \"Max\")\n",
+    "            \n",
+    "                =\n",
+    "                \n",
+    "        :ARG1 (p / \"Max\")\n",
+    "\n",
+    "    Parameters\n",
+    "    ----------\n",
+    "    parse : str\n",
+    "        AMR-Parse.\n",
+    "\n",
+    "    Returns\n",
+    "    -------\n",
+    "    parse : str\n",
+    "    \"\"\"\n",
+    "    \n",
+    "    name = re.findall('[a-z]+[\\s\\n\\t]*:name \\(n[0-9]? / name[\\s\\n\\t]*:op1 (\"[A-Za-z]+\")\\)', parse)\n",
+    "    names = re.findall('[a-z]+[\\s\\n\\t]*:name \\(n[0-9]? / name[\\s\\n\\t]*:op1 \"[A-Za-z]+\"\\)', parse)\n",
+    "    for i,el in enumerate(names):\n",
+    "        parse = parse.replace(el,name[i])\n",
+    "    name = re.findall('[a-z]+[\\s\\n\\t]*:mod \\(c[0-9]? / (\"[A-Za-z]+\")\\)', parse)\n",
+    "    names = re.findall('[a-z]+[\\s\\n\\t]*:mod \\(c[0-9]? / \"[A-Za-z]+\"\\)', parse)\n",
+    "    for i,el in enumerate(names):\n",
+    "        parse = parse.replace(el,name[i])\n",
+    "    name = re.findall('[a-z]+[\\s\\n\\t]*:name \\(n[0-9]? / name[\\s\\n\\t]*:op1 (\"[A-Za-z]+\")[\\s\\n\\t]*:op2 (\"[A-Za-z]+\")\\)', parse)\n",
+    "    names = re.findall('[a-z]+[\\s\\n\\t]*:name \\(n[0-9]? / name[\\s\\n\\t]*:op1 \"[A-Za-z]+\"[\\s\\n\\t]*:op2 \"[A-Za-z]+\"\\)', parse)\n",
+    "    if len(name)!=0:\n",
+    "        for i,n in enumerate(name):\n",
+    "            n = (n[0]+n[1]).replace('\"\"',' ')\n",
+    "            name[i] = n\n",
+    "    for i,el in enumerate(names):\n",
+    "        parse = parse.replace(el,name[i])\n",
+    "    return(parse)\n",
+    "\n",
+    "def get_graph_triples_no_vars(amr_parse):\n",
+    "\n",
+    "    lines = []\n",
+    "    amr_parse = amr_parse[:-1]\n",
+    "    for line in amr_parse.split('\\n'):\n",
+    "        if line.startswith('#'):\n",
+    "            continue\n",
+    "        else:\n",
+    "            lines.append(line.strip())\n",
+    "        \n",
+    "    current_nodes = [lines[0].replace('(','')]\n",
+    "    graph_triples = []\n",
+    "    for line in lines[1:]:\n",
+    "        out_node = current_nodes[-1]\n",
+    "        relation = line.split(' ')[0]\n",
+    "        line = line.replace(relation+' ','')\n",
+    "        node = line.strip().replace('(','').replace(')','')\n",
+    "        graph_triples.append((out_node, relation, node))\n",
+    "        depth = line.count(')')-line.count('(')\n",
+    "        \n",
+    "        if line.endswith(')'):\n",
+    "            if depth > 0:\n",
+    "                current_nodes = current_nodes[:len(current_nodes)-(depth)]\n",
+    "        elif '/' not in line:\n",
+    "            continue\n",
+    "        else:\n",
+    "            current_nodes.append(node)\n",
+    "    return(graph_triples)\n",
+    "\n",
+    "def rename_sent_index(sent_index, rule_index=''):\n",
+    "    \n",
+    "    if 'EVE' in sent_index:\n",
+    "        sent_index = 'e'+sent_index.split('_')[-1]\n",
+    "    elif 'EMO' in sent_index:\n",
+    "        sent_index = 'f'+sent_index.split('_')[-1]\n",
+    "    elif 'OTH' in sent_index:\n",
+    "        sent_index = 'o'+sent_index.split('_')[-1]\n",
+    "    elif 'LOC' in sent_index:\n",
+    "        sent_index = 'l'+sent_index.split('_')[-1]\n",
+    "    elif 'POS' in sent_index:\n",
+    "        sent_index = 'p'+sent_index.split('_')[-1]\n",
+    "    else:\n",
+    "        sent_index = 's'+sent_index.split('_')[-1]\n",
+    "    if rule_index!='':\n",
+    "        sent_index = sent_index+'r'+str(rule_index)\n",
+    "    return(sent_index)\n",
+    "\n",
+    "def get_graph_triples(amr_parse, sent_index, rule_index):\n",
+    "    \n",
+    "    tree = penman.parse(amr_parse)\n",
+    "    sent_index = rename_sent_index(sent_index, rule_index)\n",
+    "    var_name = sent_index + '.{i}'\n",
+    "    tree.reset_variables(var_name)\n",
+    "    graph = penman.interpret(tree)\n",
+    "    return(graph)\n",
+    "\n",
+    "\n",
+    "def map_arguments(annotation, edge, rule_index):\n",
+    "    \n",
+    "    if annotation['2parse'][0]==None or annotation['2parse'][1]==None:\n",
+    "        return(None)\n",
+    "    \n",
+    "    if annotation['2parse'][0][0]==None or annotation['2parse'][0][1]==None or annotation['2parse'][1][0]==None or annotation['2parse'][1][1]==None:\n",
+    "        return(None)\n",
+    "    \n",
+    "    def match_triples(fill, triples, old=True):\n",
+    "        # check if graph has at least 2 nodes\n",
+    "        if old==True:\n",
+    "            if len(triples)<1:\n",
+    "                return((None,None,None))\n",
+    "        else:\n",
+    "            if len(triples)<2:\n",
+    "                return((None,None,None))\n",
+    "            \n",
+    "        def check_and(triple,triples):\n",
+    "            if ' and' in triple[0]:\n",
+    "                for triple_new in triples:\n",
+    "                    if ' and' in triple_new[2]:\n",
+    "                        triple = (triple_new[0],triple_new[1],triple[2])\n",
+    "                        return(triple)\n",
+    "            return(triple)\n",
+    "        \n",
+    "        for triple in triples:\n",
+    "            if not '_of' in triple[1]:\n",
+    "                if fill.lower() in triple[2].lower():\n",
+    "                    triple = check_and(triple,triples)\n",
+    "                    return(triple)\n",
+    "            else:\n",
+    "                if fill.lower() in triple[0].lower():\n",
+    "                    triple = check_and(triple,triples)\n",
+    "                    return(triple)\n",
+    "        for triple in triples:\n",
+    "            if fill.lower() in triple[0].lower():\n",
+    "                return(triple)\n",
+    "        \n",
+    "        return((None,None,None))\n",
+    "    \n",
+    "    \n",
+    "    # get general rule\n",
+    "    general_rule = annotation['2parse'][1]\n",
+    "    specific_rule = annotation['2parse'][0]\n",
+    "    \n",
+    "    parta, partb = specific_rule[0], specific_rule[2]\n",
+    "    part1, part2 = general_rule[0], general_rule[2]\n",
+    "\n",
+    "    # rename fillers of general rule\n",
+    "    filler1 = [replacers[word.replace(')','').replace('\"','')] for word in annotation['general_0'][0].split(' ') if '_' in word and word in replacers.keys()]\n",
+    "    filler2 = [replacers[word.replace(')','').replace('\"','')] for word in annotation['general_0'][2].split(' ') if '_' in word and word in replacers.keys()]\n",
+    "    filler = [el for el in filler1 if el in filler2]\n",
+    "    \"\"\"\n",
+    "    def check_amr_dict(sent, amr_dict):\n",
+    "        if sent not in amr_dict.keys():\n",
+    "            with open('../add_to_amr_dict.txt', 'a') as f:\n",
+    "                f.writelines(sent+'\\n\\n')\n",
+    "            return(False)\n",
+    "        return(True)\n",
+    "    \"\"\"\n",
+    "    # look up amr parse for general rule\n",
+    "    \n",
+    "    #if check_amr_dict(part1,amr_dict)==False or check_amr_dict(part2,amr_dict)==False or check_amr_dict(parta,amr_dict)==False or check_amr_dict(partb,amr_dict)==False:\n",
+    "        #return(None)\n",
+    "    corefs = annotation['coref_roots']\n",
+    "    parse_part1, parse_part2 = replace_names(amr_dict[part1]),replace_names(amr_dict[part2])\n",
+    "    print(parse_part1)\n",
+    "    print(parse_part2)\n",
+    "    parse_parta, parse_partb = replace_names(amr_dict[parta]),replace_names(amr_dict[partb])\n",
+    "    print(parse_parta)\n",
+    "    print(parse_partb)\n",
+    "    \n",
+    "    # get amr graph triples\n",
+    "    graph1, graph2 = get_graph_triples(parse_part1,edge[0],rule_index), get_graph_triples(parse_part2,edge[1],rule_index)\n",
+    "    print(graph1.top)\n",
+    "    print(graph1.instances())\n",
+    "    name_top = [inst.target for inst in graph1.instances() if inst.source==graph1.top][0]\n",
+    "    print(name_top)\n",
+    "    \n",
+    "    triples_part11, triples_part22 = get_graph_triples_no_vars(parse_part1), get_graph_triples_no_vars(parse_part2)\n",
+    "    triples_partaa, triples_partbb = get_graph_triples_no_vars(parse_parta), get_graph_triples_no_vars(parse_partb)\n",
+    "    \n",
+    "    # what i wanna return for specific\n",
+    "    specific_heads = []\n",
+    "    \n",
+    "    for (s1_inst,s2_inst) in corefs:\n",
+    "        tripleaa = match_triples(s1_inst, triples_partaa,old=True)\n",
+    "        triplebb = match_triples(s2_inst, triples_partbb,old=True)\n",
+    "        if None not in tripleaa and None not in triplebb:\n",
+    "            tripleaa = (tripleaa[0].split('/ ')[1],tripleaa[1],rename_sent_index(edge[0]))\n",
+    "            triplebb = (triplebb[0].split('/ ')[1],triplebb[1],rename_sent_index(edge[1]))\n",
+    "            specific_heads.append((tripleaa,triplebb))\n",
+    "    specific_heads = list(set(specific_heads))        \n",
+    "    # general\n",
+    "    heads = []\n",
+    "    \n",
+    "    for fill in filler:\n",
+    "        fill = re.sub('[()]', '', replace_names(amr_dict[fill.replace(\"'s\",'').replace(\",\",'')]).split('/ ')[1].split('\\n')[0])\n",
+    "        \n",
+    "        triple11 = match_triples(fill, triples_part11,old=True)\n",
+    "        triple22 = match_triples(fill, triples_part22,old=True)\n",
+    "            \n",
+    "        if None not in triple11 and None not in triple22:\n",
+    "            triple11 = (triple11[0].split('/ ')[1],triple11[1],rename_sent_index(edge[0]))\n",
+    "            triple22 = (triple22[0].split('/ ')[1],triple22[1],rename_sent_index(edge[1]))\n",
+    "            heads.append((triple11,triple22))\n",
+    "    heads = list(set(heads))\n",
+    "        \n",
+    "    return(heads,specific_heads)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 35,
+   "id": "fef0f0e9",
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "(l / like-01\n",
+      "      :ARG0 (a / and\n",
+      "            :op1 (p / \"Max\")\n",
+      "            :op2 (p2 / \"Kim\"))\n",
+      "      :ARG1 (c / crown))\n",
+      "(g / grow-03\n",
+      "      :ARG0 (a / and\n",
+      "            :op1 (p / \"Max\")\n",
+      "            :op2 (p2 / \"Kim\"))\n",
+      "      :ARG1 (c / crown)\n",
+      "      :frequency (r / rate-entity-91\n",
+      "            :ARG3 (t / temporal-quantity\n",
+      "                  :quant 1\n",
+      "                  :unit (y / year))))\n",
+      "(l / like-01\n",
+      "      :ARG0 (a / and\n",
+      "            :op1 (p / \"Mary\")\n",
+      "            :op2 (p2 / person\n",
+      "                  :ARG0-of (h / have-rel-role-91\n",
+      "                        :ARG1 p\n",
+      "                        :ARG2 (m / mother))))\n",
+      "      :ARG1 (t / tomato))\n",
+      "(g / grow-03\n",
+      "      :ARG0 (t / they)\n",
+      "      :ARG1 (t2 / tomato)\n",
+      "      :location (g2 / garden\n",
+      "            :poss t)\n",
+      "      :frequency (r / rate-entity-91\n",
+      "            :ARG3 (t3 / temporal-quantity\n",
+      "                  :quant 1\n",
+      "                  :unit (y / year))))\n",
+      "f4r1.0\n",
+      "[Instance(source='f4r1.0', role=':instance', target='like-01'), Instance(source='f4r1.1', role=':instance', target='and'), Instance(source='f4r1.2', role=':instance', target='\"Max\"'), Instance(source='f4r1.3', role=':instance', target='\"Kim\"'), Instance(source='f4r1.4', role=':instance', target='crown')]\n",
+      "like-01\n"
+     ]
+    }
+   ],
+   "source": [
+    "heads, specific_heads = map_arguments(annotation, edge_anno, 1)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 36,
+   "id": "c8ef3b1b",
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "[(('like-01', ':ARG0', 'f4'), ('grow-03', ':ARG0', 's1')), (('like-01', ':ARG1', 'f4'), ('grow-03', ':ARG1', 's1'))]\n"
+     ]
+    }
+   ],
+   "source": [
+    "print(heads)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 37,
+   "id": "e1963f13",
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "[(('like-01', ':ARG0', 'f4'), ('grow-03', ':ARG0', 's1'))]\n"
+     ]
+    }
+   ],
+   "source": [
+    "print(specific_heads)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 13,
+   "id": "b8588a4f",
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "[['They plant tomatoes', 'Causes/Enables', 'They grow tomatoes'], ['Max and Kim plant crown', 'Causes/Enables', 'Max and Kim grow crown']]\n"
+     ]
+    }
+   ],
+   "source": [
+    "print(annotation['2parse'])"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 22,
+   "id": "8dd59794",
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "1266_EVENT_1\n",
+      "{'annotations': [{'dimension': '1', 'quality': 3, 'worker_id': 197, 'rules': [['They plant tomatoes', 'Causes/Enables', 'They grow tomatoes'], ['{They}_[subject] {plant}_[verb] {tomatoes}_[object1]', 'Causes/Enables', '{They}_[subject] {grow}_[verb] {tomatoes}_[object1]'], ['Someone_A and Someone_B plant Something_A (that is a plant)', 'Causes/Enables', 'Someone_A and Someone_B grow Something_A'], ['{Someone_A and Someone_B}_[subject] {plant}_[verb] {Something_A ||that is a plant||}_[object1]', 'Causes/Enables', '{Someone_A and Someone_B}_[subject] {grow}_[verb] {Something_A}_[object1]']], '2parse': [['They plant tomatoes', 'Causes/Enables', 'They grow tomatoes'], ['Max and Kim plant crown', 'Causes/Enables', 'Max and Kim grow crown']], 'general_0': ['someone_a and someone_b plant something_a (that is a plant)', 'Causes/Enables', 'someone_a and someone_b grow something_a'], 'general_replaced': ['Max and Kim plant crown (that is a plant)', 'Causes/Enables', 'Max and Kim grow crown'], 'general_no_brackets': ['Max and Kim plant crown', 'Causes/Enables', 'Max and Kim grow crown'], 'coref': [('They', 'They')], 'coref_roots': [('They', 'They')], 'general_merge': {'nodes': 3, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.4}, 'specific_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.3, 'D_aft': 0.4}}]}\n",
+      "1266_EVENT_2\n",
+      "{'annotations': [{'dimension': '6', 'quality': 3, 'worker_id': 152, 'rules': [['Mary and her mother grow tomatoes', 'Causes/Enables', 'Mary and her mother gather the tomatoes'], ['{Mary and her mother}_[subject] {grow}_[verb] {tomatoes}_[object1]', 'Causes/Enables', '{Mary and her mother}_[subject] {gather}_[verb] {the tomatoes}_[object1]'], ['Someone_A and Someone_B grow Something_A', 'Causes/Enables', 'Someone_A and Someone_B gather Something_A'], ['{Someone_A and Someone_B}_[subject] {grow}_[verb] {Something_A}_[object1]', 'Causes/Enables', '{Someone_A and Someone_B}_[subject] {gather}_[verb] {Something_A}_[object1]']], '2parse': [['Mary and her mother grow tomatoes', 'Causes/Enables', 'Mary and her mother gather the tomatoes'], ['Max and Kim grow crown', 'Causes/Enables', 'Max and Kim gather crown']], 'general_0': ['someone_a and someone_b grow something_a', 'Causes/Enables', 'someone_a and someone_b gather something_a'], 'general_replaced': ['Max and Kim grow crown', 'Causes/Enables', 'Max and Kim gather crown'], 'general_no_brackets': ['Max and Kim grow crown', 'Causes/Enables', 'Max and Kim gather crown'], 'coref': [('Mary', 'Mary'), ('Mary and her mother', 'and'), ('Mary', 'her'), ('Mary and her mother', 'mother'), ('tomatoes', 'the'), ('tomatoes', 'tomatoes')], 'coref_roots': [('Mary', 'Mary'), ('Mary', 'and'), ('Mary', 'her'), ('mother', 'mother'), ('tomatoes', 'the'), ('tomatoes', 'tomatoes')], 'general_merge': {'nodes': 3, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.4}, 'specific_merge': {'nodes': 2, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.2}}]}\n",
+      "1266_EMO_3\n",
+      "{'annotations': [{'dimension': '2', 'quality': 3, 'worker_id': 152, 'rules': [['Mary and her mother feel(s) motivated', 'Motivates', 'Mary and her mother grow tomatoes'], ['{Mary and her mother}_[subject] {feel(s)}_[verb] {motivated}_[object]', 'Motivates', '{Mary and her mother}_[subject] {grow}_[verb] {tomatoes}_[object1]'], ['Someone_A and Someone_B feel(s) motivated', 'Motivates', 'Someone_A and Someone_B grow Something_A'], ['{Someone_A and Someone_B}_[subject] {feel(s)}_[verb] {motivated}_[object]', 'Motivates', '{Someone_A and Someone_B}_[subject] {grow}_[verb] {Something_A}_[object1]']], '2parse': [['Mary and her mother feels motivated', 'Motivates', 'Mary and her mother grow tomatoes'], ['Max and Kim feels motivated', 'Motivates', 'Max and Kim grow crown']], 'general_0': ['someone_a and someone_b feels motivated', 'Motivates', 'someone_a and someone_b grow something_a'], 'general_replaced': ['Max and Kim feels motivated', 'Motivates', 'Max and Kim grow crown'], 'general_no_brackets': ['Max and Kim feels motivated', 'Motivates', 'Max and Kim grow crown'], 'coref': [('Mary', 'Mary'), ('Mary and her mother', 'and'), ('Mary', 'her'), ('Mary and her mother', 'mother')], 'coref_roots': [('Mary', 'Mary'), ('Mary', 'and'), ('Mary', 'her'), ('mother', 'mother')], 'general_merge': {'nodes': 2, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.3}, 'specific_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.2}}]}\n",
+      "1266_EMO_9\n",
+      "{'annotations': [{'dimension': '7', 'quality': 3, 'worker_id': 197, 'rules': [['They grow tomatoes', 'Causes', 'They feel(s) happy'], ['{They}_[subject] {grow}_[verb] {tomatoes}_[object1]', 'Causes', '{They}_[subject] {feel(s)}_[verb] {happy}_[object]'], ['Someone_A and Someone_B grow Something_A (that is a plant)', 'Causes', 'Someone_A and Someone_B (that enjoy growing Something_A) feel(s) happy'], ['{Someone_A and Someone_B}_[subject] {grow}_[verb] {Something_A ||that is a plant||}_[object1]', 'Causes', '{Someone_A and Someone_B ||that enjoy growing Something_A||}_[subject] {feel(s)}_[verb] {happy}_[object]']], '2parse': [['They grow tomatoes', 'Causes', 'They feels happy'], ['Max and Kim grow crown', 'Causes', 'Max and Kim that enjoy growing crown feels happy']], 'general_0': ['someone_a and someone_b grow something_a (that is a plant)', 'Causes', 'someone_a and someone_b that enjoy growing something_a feels happy'], 'general_replaced': ['Max and Kim grow crown (that is a plant)', 'Causes', 'Max and Kim that enjoy growing crown feels happy'], 'general_no_brackets': ['Max and Kim grow crown', 'Causes', 'Max and Kim that enjoy growing crown feels happy'], 'coref': [('They', 'They')], 'coref_roots': [('They', 'They')], 'general_merge': {'nodes': 3, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.3}, 'specific_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.3, 'D_aft': 0.5}}]}\n",
+      "1266_LOC_4\n",
+      "{'annotations': [{'dimension': '8', 'quality': 3, 'worker_id': 197, 'rules': [['They grow tomatoes in the garden', 'Results in', 'Tomatoes are in the garden'], ['{They}_[subject] {grow}_[verb] {tomatoes}_[object1] {in }_[preposition2] {the garden}_[object2]', 'Results in', '{Tomatoes}_[subject] {are}_[verb] {in}_[preposition] {the garden}_[object]'], ['Someone_A and Someone_B grow Something_A (that is a plant) in Somewhere_A', 'Results in', 'Something_A is in Somewhere_A'], ['{Someone_A and Someone_B}_[subject] {grow}_[verb] {Something_A ||that is a plant||}_[object1] {in }_[preposition2] {Somewhere_A}_[object2]', 'Results in', '{Something_A}_[subject] {is}_[verb] {in}_[preposition] {Somewhere_A}_[object]']], '2parse': [['They grow tomatoes in the garden', 'Results in', 'Tomatoes are in the garden'], ['Max and Kim grow crown in France', 'Results in', 'crown is in France']], 'general_0': ['someone_a and someone_b grow something_a (that is a plant) in somewhere_a', 'Results in', 'something_a is in somewhere_a'], 'general_replaced': ['Max and Kim grow crown (that is a plant) in France', 'Results in', 'crown is in France'], 'general_no_brackets': ['Max and Kim grow crown in France', 'Results in', 'crown is in France'], 'coref': [('the garden', 'the'), ('the garden', 'garden')], 'coref_roots': [('garden', 'the'), ('garden', 'garden')], 'general_merge': {'nodes': 2, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.4}, 'specific_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.3, 'D_aft': 0.4}}]}\n",
+      "1266_POS_0\n",
+      "{'annotations': [{'dimension': '9', 'quality': 3, 'worker_id': 152, 'rules': [['Mary and her mother grow tomatoes', 'Results in', 'Mary and her mother possess(es) tomatoes'], ['{Mary and her mother}_[subject] {grow}_[verb] {tomatoes}_[object1]', 'Results in', '{Mary and her mother}_[subject] {possess(es)}_[verb] {tomatoes}_[object]'], ['Someone_A and Someone_B grow Something_A', 'Results in', 'Someone_A and Someone_B possess(es) Something_A'], ['{Someone_A and Someone_B}_[subject] {grow}_[verb] {Something_A}_[object1]', 'Results in', '{Someone_A and Someone_B}_[subject] {possess(es)}_[verb] {Something_A}_[object]']], '2parse': [['Mary and her mother grow tomatoes', 'Results in', 'Mary and her mother possesses tomatoes'], ['Max and Kim grow crown', 'Results in', 'Max and Kim possesses crown']], 'general_0': ['someone_a and someone_b grow something_a', 'Results in', 'someone_a and someone_b possesses something_a'], 'general_replaced': ['Max and Kim grow crown', 'Results in', 'Max and Kim possesses crown'], 'general_no_brackets': ['Max and Kim grow crown', 'Results in', 'Max and Kim possesses crown'], 'coref': [('Mary', 'Mary'), ('Mary and her mother', 'and'), ('Mary', 'her'), ('Mary and her mother', 'mother')], 'coref_roots': [('Mary', 'Mary'), ('Mary', 'and'), ('Mary', 'her'), ('mother', 'mother')], 'general_merge': {'nodes': 3, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.4}, 'specific_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.2}}]}\n",
+      "1266_POS_4\n",
+      "{'annotations': [{'dimension': '9', 'quality': 2, 'worker_id': 14, 'rules': [['Mary and her mother grow tomatoes in their garden', 'Results in', 'They possess(es) tomatoes'], ['{Mary and her mother}_[subject] {grow}_[verb] {tomatoes}_[object1] {in}_[preposition2] {their garden}_[object2]', 'Results in', '{They}_[subject] {possess(es)}_[verb] {tomatoes}_[object]'], ['Someone_A and Someone_B grow Something_A', 'Results in', 'Someone_A and Someone_B possess(es) Something_A'], ['{Someone_A and Someone_B}_[subject] {grow}_[verb] {Something_A}_[object1]', 'Results in', '{Someone_A and Someone_B}_[subject] {possess(es)}_[verb] {Something_A}_[object]']], '2parse': [['Mary and her mother grow tomatoes in their garden', 'Results in', 'They possesses tomatoes'], ['Max and Kim grow crown', 'Results in', 'Max and Kim possesses crown']], 'general_0': ['someone_a and someone_b grow something_a', 'Results in', 'someone_a and someone_b possesses something_a'], 'general_replaced': ['Max and Kim grow crown', 'Results in', 'Max and Kim possesses crown'], 'general_no_brackets': ['Max and Kim grow crown', 'Results in', 'Max and Kim possesses crown'], 'coref': [('Mary and her mother', 'They')], 'coref_roots': [('Mary', 'They')], 'general_merge': {'nodes': 3, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.4}, 'specific_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.2}}, {'dimension': '9', 'quality': 3, 'worker_id': 197, 'rules': [['They grow tomatoes', 'Results in', 'They possess(es) tomatoes'], ['{They}_[subject] {grow}_[verb] {tomatoes}_[object1]', 'Results in', '{They}_[subject] {possess(es)}_[verb] {tomatoes}_[object]'], ['Someone_A and Someone_B grow Something_A (that is a plant)', 'Results in', 'Someone_A and Someone_B possess(es) Something_A'], ['{Someone_A and Someone_B}_[subject] {grow}_[verb] {Something_A ||that is a plant||}_[object1]', 'Results in', '{Someone_A and Someone_B}_[subject] {possess(es)}_[verb] {Something_A}_[object]']], '2parse': [['They grow tomatoes', 'Results in', 'They possesses tomatoes'], ['Max and Kim grow crown', 'Results in', 'Max and Kim possesses crown']], 'general_0': ['someone_a and someone_b grow something_a (that is a plant)', 'Results in', 'someone_a and someone_b possesses something_a'], 'general_replaced': ['Max and Kim grow crown (that is a plant)', 'Results in', 'Max and Kim possesses crown'], 'general_no_brackets': ['Max and Kim grow crown', 'Results in', 'Max and Kim possesses crown'], 'coref': [('They', 'They')], 'coref_roots': [('They', 'They')], 'general_merge': {'nodes': 3, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.4}, 'specific_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.3, 'D_aft': 0.4}}]}\n",
+      "1266_OTH_1\n",
+      "{'annotations': [{'dimension': '5', 'quality': 2, 'worker_id': 14, 'rules': [['Mary and her mother have a garden', 'Enables', 'They grow tomatoes in their garden'], ['{Mary and her mother}_[subject] {have}_[verb] {a garden}_[object]', 'Enables', '{They}_[subject] {grow}_[verb] {tomatoes}_[object1] {in}_[preposition2] {their garden}_[object2]'], ['Someone_A and Someone_B have a garden', 'Enables', 'Someone_A and Someone_B grow Something_A in the garden'], ['{Someone_A and Someone_B}_[subject] {have}_[verb] {a garden}_[object]', 'Enables', '{Someone_A and Someone_B}_[subject] {grow}_[verb] {Something_A}_[object1] {in}_[preposition2] {the garden}_[object2]']], '2parse': [['Mary and her mother have a garden', 'Enables', 'They grow tomatoes in their garden'], ['Max and Kim have a garden', 'Enables', 'Max and Kim grow crown in the garden']], 'general_0': ['someone_a and someone_b have a garden', 'Enables', 'someone_a and someone_b grow something_a in the garden'], 'general_replaced': ['Max and Kim have a garden', 'Enables', 'Max and Kim grow crown in the garden'], 'general_no_brackets': ['Max and Kim have a garden', 'Enables', 'Max and Kim grow crown in the garden'], 'coref': [('Mary and her mother', 'They'), ('Mary and her mother', 'their'), ('a garden', 'garden')], 'coref_roots': [('Mary', 'They'), ('Mary', 'their'), ('garden', 'garden')], 'general_merge': {'nodes': 2, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.2}, 'specific_merge': {'nodes': 2, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.3}}]}\n",
+      "1266_OTH_6\n",
+      "{'annotations': [{'dimension': '10', 'quality': 3, 'worker_id': 197, 'rules': [['They grow tomatoes', 'Results in', 'Tomatoes are grown'], ['{They}_[subject] {grow}_[verb] {tomatoes}_[object1]', 'Results in', '{Tomatoes}_[subject] {are}_[verb] {grown}_[object]'], ['Someone_A and Someone_B grow Something_A (that is a plant)', 'Results in', 'Something_A is grown'], ['{Someone_A and Someone_B}_[subject] {grow}_[verb] {Something_A ||that is a plant||}_[object1]', 'Results in', '{Something_A}_[subject] {is}_[verb] {grown}_[object]']], '2parse': [['They grow tomatoes', 'Results in', 'Tomatoes are grown'], ['Max and Kim grow crown', 'Results in', 'crown is grown']], 'general_0': ['someone_a and someone_b grow something_a (that is a plant)', 'Results in', 'something_a is grown'], 'general_replaced': ['Max and Kim grow crown (that is a plant)', 'Results in', 'crown is grown'], 'general_no_brackets': ['Max and Kim grow crown', 'Results in', 'crown is grown'], 'coref': [], 'coref_roots': [], 'general_merge': {'nodes': 1, 'edges': 0, 'D_bef': 0.2, 'D_aft': 0.3}, 'specific_merge': {'nodes': 0, 'edges': 0, 'D_bef': 0.3, 'D_aft': 0.3}}]}\n"
+     ]
+    }
+   ],
+   "source": [
+    "for n in graph.neighbors('1266_1'):\n",
+    "    print(n)\n",
+    "    try:\n",
+    "        print(graph.edges[(n,'1266_1')])#['2parse'],'\\n'\n",
+    "    except:\n",
+    "        print(graph.edges[('1266_1'),n])#['2parse'],'\\n'"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "id": "f4856b2c",
+   "metadata": {},
    "outputs": [],
    "source": []
   }
  ],
  "metadata": {
   "kernelspec": {
-   "display_name": "Python 3 (ipykernel)",
+   "display_name": "Python 3",
    "language": "python",
    "name": "python3"
   },
@@ -52,7 +911,7 @@
    "name": "python",
    "nbconvert_exporter": "python",
    "pygments_lexer": "ipython3",
-   "version": "3.9.7"
+   "version": "3.8.8"
   }
  },
  "nbformat": 4,
diff --git a/story_graphs/arg_map/1011_3a0ce95d-1a21-4a3c-a027-4b78e35fb2b5.pkl b/story_graphs/arg_map/1011_3a0ce95d-1a21-4a3c-a027-4b78e35fb2b5.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..5aa63faab9fdbdd57a3d9e6c0195185c64cdc6ad
Binary files /dev/null and b/story_graphs/arg_map/1011_3a0ce95d-1a21-4a3c-a027-4b78e35fb2b5.pkl differ
diff --git a/story_graphs/arg_map/1026_3a8e903f-9022-453a-a115-4a8e298665ce.pkl b/story_graphs/arg_map/1026_3a8e903f-9022-453a-a115-4a8e298665ce.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..15db3fd20fe6dc0d90ee54b157e6acb7f3f63698
Binary files /dev/null and b/story_graphs/arg_map/1026_3a8e903f-9022-453a-a115-4a8e298665ce.pkl differ
diff --git a/story_graphs/arg_map/1053_3c040d51-d819-4613-b46d-3ba0121139a3.pkl b/story_graphs/arg_map/1053_3c040d51-d819-4613-b46d-3ba0121139a3.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..e286ea3bf1b551992c24b7dab78a199931fa20de
Binary files /dev/null and b/story_graphs/arg_map/1053_3c040d51-d819-4613-b46d-3ba0121139a3.pkl differ
diff --git a/story_graphs/arg_map/1080_3d2e494b-5dbb-499f-b60a-15fb560b09cf.pkl b/story_graphs/arg_map/1080_3d2e494b-5dbb-499f-b60a-15fb560b09cf.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..ad447e3a3d60729b15faa700de3106e0af8c5631
Binary files /dev/null and b/story_graphs/arg_map/1080_3d2e494b-5dbb-499f-b60a-15fb560b09cf.pkl differ
diff --git a/story_graphs/arg_map/1088_3dd7268a-f7b8-4bad-973a-0c27d3960816.pkl b/story_graphs/arg_map/1088_3dd7268a-f7b8-4bad-973a-0c27d3960816.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..52ad53d5485f9ec9cfd5f92e37447b89b224c3f6
Binary files /dev/null and b/story_graphs/arg_map/1088_3dd7268a-f7b8-4bad-973a-0c27d3960816.pkl differ
diff --git a/story_graphs/arg_map/1091_3de0e9b7-25af-4d6a-a48e-cd5a95347a89.pkl b/story_graphs/arg_map/1091_3de0e9b7-25af-4d6a-a48e-cd5a95347a89.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..3901156e275745aca4335cc6a7446659ee91c5dc
Binary files /dev/null and b/story_graphs/arg_map/1091_3de0e9b7-25af-4d6a-a48e-cd5a95347a89.pkl differ
diff --git a/story_graphs/arg_map/1102_3e636c84-3b7b-4a19-a41f-a80832c65057.pkl b/story_graphs/arg_map/1102_3e636c84-3b7b-4a19-a41f-a80832c65057.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..b5661d10a5dcb7c1654cbbfb3c0be7ca6954944b
Binary files /dev/null and b/story_graphs/arg_map/1102_3e636c84-3b7b-4a19-a41f-a80832c65057.pkl differ
diff --git a/story_graphs/arg_map/1119_3f3b4f3c-cbf7-4516-8b14-aa921cb76d57.pkl b/story_graphs/arg_map/1119_3f3b4f3c-cbf7-4516-8b14-aa921cb76d57.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..9e21b50609fcc176f77a979955c6e3a07f30986f
Binary files /dev/null and b/story_graphs/arg_map/1119_3f3b4f3c-cbf7-4516-8b14-aa921cb76d57.pkl differ
diff --git a/story_graphs/arg_map/1134_40329631-eb8b-4d19-9ad7-4e4d3f2f2fef.pkl b/story_graphs/arg_map/1134_40329631-eb8b-4d19-9ad7-4e4d3f2f2fef.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..7bbb6efee312a39ffe454b09d443aa87e1f89fbd
Binary files /dev/null and b/story_graphs/arg_map/1134_40329631-eb8b-4d19-9ad7-4e4d3f2f2fef.pkl differ
diff --git a/story_graphs/arg_map/1138_404641a4-3a38-46e7-9469-d1325931416c.pkl b/story_graphs/arg_map/1138_404641a4-3a38-46e7-9469-d1325931416c.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..e43a7fd34f7cd63c17cda40e087874a382d687b8
Binary files /dev/null and b/story_graphs/arg_map/1138_404641a4-3a38-46e7-9469-d1325931416c.pkl differ
diff --git a/story_graphs/arg_map/1149_40e093b1-5edf-4a89-a8ca-df69bc32e779.pkl b/story_graphs/arg_map/1149_40e093b1-5edf-4a89-a8ca-df69bc32e779.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..ad928daba740685fcdd5881850167f1bd21e76c7
Binary files /dev/null and b/story_graphs/arg_map/1149_40e093b1-5edf-4a89-a8ca-df69bc32e779.pkl differ
diff --git a/story_graphs/arg_map/1188_43aaa224-fc52-44ee-ab93-04a8fa8e6b0f.pkl b/story_graphs/arg_map/1188_43aaa224-fc52-44ee-ab93-04a8fa8e6b0f.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..fe2a231dcd589b680b863f2c4a2981a41a08863a
Binary files /dev/null and b/story_graphs/arg_map/1188_43aaa224-fc52-44ee-ab93-04a8fa8e6b0f.pkl differ
diff --git a/story_graphs/arg_map/1196_43e8c0ec-f4cd-4591-ba3d-4bc7fef254f0.pkl b/story_graphs/arg_map/1196_43e8c0ec-f4cd-4591-ba3d-4bc7fef254f0.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..df639e8a646106a5455b9c8e6546dcd4de208b78
Binary files /dev/null and b/story_graphs/arg_map/1196_43e8c0ec-f4cd-4591-ba3d-4bc7fef254f0.pkl differ
diff --git a/story_graphs/arg_map/1208_44948f23-3c31-4d4b-b91e-0da3234331b1.pkl b/story_graphs/arg_map/1208_44948f23-3c31-4d4b-b91e-0da3234331b1.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..3347b1ce17c2782e6c691fed34f51849ce567e4a
Binary files /dev/null and b/story_graphs/arg_map/1208_44948f23-3c31-4d4b-b91e-0da3234331b1.pkl differ
diff --git a/story_graphs/arg_map/1227_45a1f080-9367-4711-acad-0d58197e4fae.pkl b/story_graphs/arg_map/1227_45a1f080-9367-4711-acad-0d58197e4fae.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..ea6ce0135ad29511a0ad1cead8505099e89b8f7b
Binary files /dev/null and b/story_graphs/arg_map/1227_45a1f080-9367-4711-acad-0d58197e4fae.pkl differ
diff --git a/story_graphs/arg_map/1233_4615e704-8491-4502-a35a-682593ba0b10.pkl b/story_graphs/arg_map/1233_4615e704-8491-4502-a35a-682593ba0b10.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..2fcad0dee5bf91b4d8e95a3223aef42af13dd162
Binary files /dev/null and b/story_graphs/arg_map/1233_4615e704-8491-4502-a35a-682593ba0b10.pkl differ
diff --git a/story_graphs/arg_map/1245_470b40a5-7e71-454d-a26b-ea40e8dd5a31.pkl b/story_graphs/arg_map/1245_470b40a5-7e71-454d-a26b-ea40e8dd5a31.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..f9f06bb396d2439cbacefb13c8ca2c443dc39d95
Binary files /dev/null and b/story_graphs/arg_map/1245_470b40a5-7e71-454d-a26b-ea40e8dd5a31.pkl differ
diff --git a/story_graphs/arg_map/1266_48385946-e804-44f2-a0e3-3b4e7f4dbb2e.pkl b/story_graphs/arg_map/1266_48385946-e804-44f2-a0e3-3b4e7f4dbb2e.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..0121ab4674ff6f5338e6dbabc8d08ed9568b7901
Binary files /dev/null and b/story_graphs/arg_map/1266_48385946-e804-44f2-a0e3-3b4e7f4dbb2e.pkl differ
diff --git a/story_graphs/arg_map/1286_494195e1-5876-4446-b3b7-80b4eb6622d5.pkl b/story_graphs/arg_map/1286_494195e1-5876-4446-b3b7-80b4eb6622d5.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..d27b4ee6378f799dc61ca8a2d2837ade50a6d431
Binary files /dev/null and b/story_graphs/arg_map/1286_494195e1-5876-4446-b3b7-80b4eb6622d5.pkl differ
diff --git a/story_graphs/arg_map/1298_49c73141-510f-4b78-99f6-dd1f2197b543.pkl b/story_graphs/arg_map/1298_49c73141-510f-4b78-99f6-dd1f2197b543.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..b418b4dff6147ddc509faa0a0f0ff4ad08c8fc9e
Binary files /dev/null and b/story_graphs/arg_map/1298_49c73141-510f-4b78-99f6-dd1f2197b543.pkl differ
diff --git a/story_graphs/arg_map/1300_49de345b-5ef1-48ea-9dfd-3eab50d61d55.pkl b/story_graphs/arg_map/1300_49de345b-5ef1-48ea-9dfd-3eab50d61d55.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..7beafe6c124c65911f6f6312132cc57d36cbcb71
Binary files /dev/null and b/story_graphs/arg_map/1300_49de345b-5ef1-48ea-9dfd-3eab50d61d55.pkl differ
diff --git a/story_graphs/arg_map/1303_49f28650-47ba-45d1-addb-bda3ec4639de.pkl b/story_graphs/arg_map/1303_49f28650-47ba-45d1-addb-bda3ec4639de.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..363829d72857a28a5c7c4408c07a94649d7759a8
Binary files /dev/null and b/story_graphs/arg_map/1303_49f28650-47ba-45d1-addb-bda3ec4639de.pkl differ
diff --git a/story_graphs/arg_map/1310_4a4066c9-e488-40d0-b8ac-f404f6c177ce.pkl b/story_graphs/arg_map/1310_4a4066c9-e488-40d0-b8ac-f404f6c177ce.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..604405d5f616ae6248ad4f7ba1afd6b49135cc2d
Binary files /dev/null and b/story_graphs/arg_map/1310_4a4066c9-e488-40d0-b8ac-f404f6c177ce.pkl differ
diff --git a/story_graphs/arg_map/1348_4c5ca591-7009-4edb-b523-03b264a3e1e2.pkl b/story_graphs/arg_map/1348_4c5ca591-7009-4edb-b523-03b264a3e1e2.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..d8004f0e72de8a46ef3431924f8f101daff859d9
Binary files /dev/null and b/story_graphs/arg_map/1348_4c5ca591-7009-4edb-b523-03b264a3e1e2.pkl differ
diff --git a/story_graphs/arg_map/1370_4d977a5e-3067-40c8-872c-bb01b82e214c.pkl b/story_graphs/arg_map/1370_4d977a5e-3067-40c8-872c-bb01b82e214c.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..a865ab1b7de18c275b5e96e5546ed8f688490c2f
Binary files /dev/null and b/story_graphs/arg_map/1370_4d977a5e-3067-40c8-872c-bb01b82e214c.pkl differ
diff --git a/story_graphs/arg_map/1446_51523bc7-8e9f-4bdc-a895-18f117a9402c.pkl b/story_graphs/arg_map/1446_51523bc7-8e9f-4bdc-a895-18f117a9402c.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..5e1304a64c611f441a678e7603ab0b3d1076c350
Binary files /dev/null and b/story_graphs/arg_map/1446_51523bc7-8e9f-4bdc-a895-18f117a9402c.pkl differ
diff --git a/story_graphs/arg_map/1474_5335b205-8273-4996-87b4-6bce089ccac3.pkl b/story_graphs/arg_map/1474_5335b205-8273-4996-87b4-6bce089ccac3.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..5fcd650df452ae517e1a78533b33db0d4bc1f70e
Binary files /dev/null and b/story_graphs/arg_map/1474_5335b205-8273-4996-87b4-6bce089ccac3.pkl differ
diff --git a/story_graphs/arg_map/1481_536b04dd-b3d5-4954-aeef-9c0a13bb2545.pkl b/story_graphs/arg_map/1481_536b04dd-b3d5-4954-aeef-9c0a13bb2545.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..52dfd48bfe61625c05118eac83cb1599ad29d9ef
Binary files /dev/null and b/story_graphs/arg_map/1481_536b04dd-b3d5-4954-aeef-9c0a13bb2545.pkl differ
diff --git a/story_graphs/arg_map/1498_547d0b17-6056-4273-89e9-f5bc962b0d7f.pkl b/story_graphs/arg_map/1498_547d0b17-6056-4273-89e9-f5bc962b0d7f.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..75524512a1078932a1a36eb53351b9937060d5f6
Binary files /dev/null and b/story_graphs/arg_map/1498_547d0b17-6056-4273-89e9-f5bc962b0d7f.pkl differ
diff --git a/story_graphs/arg_map/1504_54de44db-8cb8-4e69-8d1c-3377384bd620.pkl b/story_graphs/arg_map/1504_54de44db-8cb8-4e69-8d1c-3377384bd620.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..d9e85a3cad8c8a42ee788da5839b3d7d021d4b45
Binary files /dev/null and b/story_graphs/arg_map/1504_54de44db-8cb8-4e69-8d1c-3377384bd620.pkl differ
diff --git a/story_graphs/arg_map/1505_54ed8977-a9e4-40c1-a16c-346d9ff1deec.pkl b/story_graphs/arg_map/1505_54ed8977-a9e4-40c1-a16c-346d9ff1deec.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..3e3a2677c6a591e63b2f5f4921ad32a906fba2ca
Binary files /dev/null and b/story_graphs/arg_map/1505_54ed8977-a9e4-40c1-a16c-346d9ff1deec.pkl differ
diff --git a/story_graphs/arg_map/1510_5532d1ec-5b80-406e-91bc-8207c9b88cb8.pkl b/story_graphs/arg_map/1510_5532d1ec-5b80-406e-91bc-8207c9b88cb8.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..eac026d6d99d857ae7fe6ffbdd94bde368655e7b
Binary files /dev/null and b/story_graphs/arg_map/1510_5532d1ec-5b80-406e-91bc-8207c9b88cb8.pkl differ
diff --git a/story_graphs/arg_map/1515_555bcee4-23be-4a27-98f4-764b10e20aa9.pkl b/story_graphs/arg_map/1515_555bcee4-23be-4a27-98f4-764b10e20aa9.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..3d176317f05a3e87e63caf29f707edb3a92eb7e8
Binary files /dev/null and b/story_graphs/arg_map/1515_555bcee4-23be-4a27-98f4-764b10e20aa9.pkl differ
diff --git a/story_graphs/arg_map/1523_55aa0af1-6352-4ede-9a36-0334e8e23d4c.pkl b/story_graphs/arg_map/1523_55aa0af1-6352-4ede-9a36-0334e8e23d4c.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..a718c4738d1f49ac86f7285da97cbbd8b8d5dda6
Binary files /dev/null and b/story_graphs/arg_map/1523_55aa0af1-6352-4ede-9a36-0334e8e23d4c.pkl differ
diff --git a/story_graphs/arg_map/155_09a69527-2433-4e12-9943-9dcacbdf9b04.pkl b/story_graphs/arg_map/155_09a69527-2433-4e12-9943-9dcacbdf9b04.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..b9034ab85543005148d7b06c12ed3397dfbc5c4c
Binary files /dev/null and b/story_graphs/arg_map/155_09a69527-2433-4e12-9943-9dcacbdf9b04.pkl differ
diff --git a/story_graphs/arg_map/1590_59e64040-94e5-4e75-ae24-d1217f2b04ce.pkl b/story_graphs/arg_map/1590_59e64040-94e5-4e75-ae24-d1217f2b04ce.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..9a93cf1f42576a6904f3f9ba480bcd1590d83440
Binary files /dev/null and b/story_graphs/arg_map/1590_59e64040-94e5-4e75-ae24-d1217f2b04ce.pkl differ
diff --git a/story_graphs/arg_map/1658_5cf02f97-a6de-4d58-a939-d56f42d9c6ab.pkl b/story_graphs/arg_map/1658_5cf02f97-a6de-4d58-a939-d56f42d9c6ab.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..1600f7c98309ccc7eb5e5b3bf2f12d0138ef7c66
Binary files /dev/null and b/story_graphs/arg_map/1658_5cf02f97-a6de-4d58-a939-d56f42d9c6ab.pkl differ
diff --git a/story_graphs/arg_map/1692_5f186933-9dd9-4bf0-8878-4ba66d16adaa.pkl b/story_graphs/arg_map/1692_5f186933-9dd9-4bf0-8878-4ba66d16adaa.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..2d94ddab16bd4b5965b80e179c7f9ccbaa1fc9df
Binary files /dev/null and b/story_graphs/arg_map/1692_5f186933-9dd9-4bf0-8878-4ba66d16adaa.pkl differ
diff --git a/story_graphs/arg_map/1727_60ebee26-0037-4a07-ab70-e3fdc35185d5.pkl b/story_graphs/arg_map/1727_60ebee26-0037-4a07-ab70-e3fdc35185d5.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..2c467e688b4cc84662839dca1defe6c1b5cf64e2
Binary files /dev/null and b/story_graphs/arg_map/1727_60ebee26-0037-4a07-ab70-e3fdc35185d5.pkl differ
diff --git a/story_graphs/arg_map/1735_6128560e-840e-467c-9d6f-8812cc550a75.pkl b/story_graphs/arg_map/1735_6128560e-840e-467c-9d6f-8812cc550a75.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..d1acffb7523be4c3fc182cdb06621aa0f073a2d9
Binary files /dev/null and b/story_graphs/arg_map/1735_6128560e-840e-467c-9d6f-8812cc550a75.pkl differ
diff --git a/story_graphs/arg_map/1789_646d4823-1e56-4c85-bdf0-a55248a0d47b.pkl b/story_graphs/arg_map/1789_646d4823-1e56-4c85-bdf0-a55248a0d47b.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..918070e8a0e6ebb639b7c59d8eb8751579d5a101
Binary files /dev/null and b/story_graphs/arg_map/1789_646d4823-1e56-4c85-bdf0-a55248a0d47b.pkl differ
diff --git a/story_graphs/arg_map/1791_64896998-32b2-4ea1-968b-381030f84fa6.pkl b/story_graphs/arg_map/1791_64896998-32b2-4ea1-968b-381030f84fa6.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..3fe8ee78d292eb4490ce5f455a987aacecd23fd0
Binary files /dev/null and b/story_graphs/arg_map/1791_64896998-32b2-4ea1-968b-381030f84fa6.pkl differ
diff --git a/story_graphs/arg_map/1870_686fcfd7-2336-4535-9b82-ab12e81d2d5b.pkl b/story_graphs/arg_map/1870_686fcfd7-2336-4535-9b82-ab12e81d2d5b.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..31f2cf7d9e1a93c036fceffaa6c0a79675871c7d
Binary files /dev/null and b/story_graphs/arg_map/1870_686fcfd7-2336-4535-9b82-ab12e81d2d5b.pkl differ
diff --git a/story_graphs/arg_map/1921_6b4a1ead-9f95-4432-8e7b-3c66c36d67af.pkl b/story_graphs/arg_map/1921_6b4a1ead-9f95-4432-8e7b-3c66c36d67af.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..a191f801c9915aeb958a1a87d3599e0d0eb87a73
Binary files /dev/null and b/story_graphs/arg_map/1921_6b4a1ead-9f95-4432-8e7b-3c66c36d67af.pkl differ
diff --git a/story_graphs/arg_map/1933_6c22f327-a357-4f50-8cde-6334ccffd80a.pkl b/story_graphs/arg_map/1933_6c22f327-a357-4f50-8cde-6334ccffd80a.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..10d376c9ba1a8d4b9b782a421db10875f99e580c
Binary files /dev/null and b/story_graphs/arg_map/1933_6c22f327-a357-4f50-8cde-6334ccffd80a.pkl differ
diff --git a/story_graphs/arg_map/1992_6edd916e-e5a6-42cd-b2be-b9865e5dfa4e.pkl b/story_graphs/arg_map/1992_6edd916e-e5a6-42cd-b2be-b9865e5dfa4e.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..334e810015302d8f210d3dfebd7df610daede887
Binary files /dev/null and b/story_graphs/arg_map/1992_6edd916e-e5a6-42cd-b2be-b9865e5dfa4e.pkl differ
diff --git a/story_graphs/arg_map/202_0c4f50e3-689e-48e6-81c0-5601b67d5267.pkl b/story_graphs/arg_map/202_0c4f50e3-689e-48e6-81c0-5601b67d5267.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..d55cfc3d2a932567b70afb470c5a068408b602b4
Binary files /dev/null and b/story_graphs/arg_map/202_0c4f50e3-689e-48e6-81c0-5601b67d5267.pkl differ
diff --git a/story_graphs/arg_map/2059_72bba567-a6f9-48ce-8126-d9c1673cbcbf.pkl b/story_graphs/arg_map/2059_72bba567-a6f9-48ce-8126-d9c1673cbcbf.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..c4a0d925b847f05f6876c11da6191e22dd6e304f
Binary files /dev/null and b/story_graphs/arg_map/2059_72bba567-a6f9-48ce-8126-d9c1673cbcbf.pkl differ
diff --git a/story_graphs/arg_map/2095_7477e51c-56ca-45ac-baa4-4b05be35086a.pkl b/story_graphs/arg_map/2095_7477e51c-56ca-45ac-baa4-4b05be35086a.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..5a41cbe2dd4e4339c8b35594bdfa978199bc4230
Binary files /dev/null and b/story_graphs/arg_map/2095_7477e51c-56ca-45ac-baa4-4b05be35086a.pkl differ
diff --git a/story_graphs/arg_map/209_0ca6c799-80b0-40df-a5fc-ae794d38798d.pkl b/story_graphs/arg_map/209_0ca6c799-80b0-40df-a5fc-ae794d38798d.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..cf1d8cfbafdf7328850cb78091f7126919d0ffa9
Binary files /dev/null and b/story_graphs/arg_map/209_0ca6c799-80b0-40df-a5fc-ae794d38798d.pkl differ
diff --git a/story_graphs/arg_map/2123_757fff72-0c7a-4184-8f60-ed96e57832bb.pkl b/story_graphs/arg_map/2123_757fff72-0c7a-4184-8f60-ed96e57832bb.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..a4ae4d8297063a493863f7e6cc9d6596b9c988e2
Binary files /dev/null and b/story_graphs/arg_map/2123_757fff72-0c7a-4184-8f60-ed96e57832bb.pkl differ
diff --git a/story_graphs/arg_map/2130_75b0c6cf-db1f-47f6-b318-f8b7972336d2.pkl b/story_graphs/arg_map/2130_75b0c6cf-db1f-47f6-b318-f8b7972336d2.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..2581996c4cf4ceded3ea304ffad2bb0b5bfb29e8
Binary files /dev/null and b/story_graphs/arg_map/2130_75b0c6cf-db1f-47f6-b318-f8b7972336d2.pkl differ
diff --git a/story_graphs/arg_map/2155_772b6106-b6e0-449b-a479-eb7f0242f76d.pkl b/story_graphs/arg_map/2155_772b6106-b6e0-449b-a479-eb7f0242f76d.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..12c34dd38c074a797cf4141293bfec46873fe3f5
Binary files /dev/null and b/story_graphs/arg_map/2155_772b6106-b6e0-449b-a479-eb7f0242f76d.pkl differ
diff --git a/story_graphs/arg_map/2158_7777d75b-1f40-452c-aa0d-ff25f0a8ed97.pkl b/story_graphs/arg_map/2158_7777d75b-1f40-452c-aa0d-ff25f0a8ed97.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..dddfe244b152c0a422bcfd0a9d0b27bd902d3c19
Binary files /dev/null and b/story_graphs/arg_map/2158_7777d75b-1f40-452c-aa0d-ff25f0a8ed97.pkl differ
diff --git a/story_graphs/arg_map/2160_7798e9ba-1739-40fb-80cf-f18c069b1575.pkl b/story_graphs/arg_map/2160_7798e9ba-1739-40fb-80cf-f18c069b1575.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..8e16f46085ceb6a35310c9bc32bcc5d0cbfd83a5
Binary files /dev/null and b/story_graphs/arg_map/2160_7798e9ba-1739-40fb-80cf-f18c069b1575.pkl differ
diff --git a/story_graphs/arg_map/2168_78255a58-b290-4b28-8fe8-639a692cdba2.pkl b/story_graphs/arg_map/2168_78255a58-b290-4b28-8fe8-639a692cdba2.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..6ec9eca805639f3e6912c3f88647be5b32f94d01
Binary files /dev/null and b/story_graphs/arg_map/2168_78255a58-b290-4b28-8fe8-639a692cdba2.pkl differ
diff --git a/story_graphs/arg_map/2222_7afe7c7a-2971-4608-a0e1-c0b3bd35c530.pkl b/story_graphs/arg_map/2222_7afe7c7a-2971-4608-a0e1-c0b3bd35c530.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..794bb56e266efd70a93bb526891b3b3f8be3a7c0
Binary files /dev/null and b/story_graphs/arg_map/2222_7afe7c7a-2971-4608-a0e1-c0b3bd35c530.pkl differ
diff --git a/story_graphs/arg_map/2249_7c7036d4-f2ff-4cd2-b45b-abdf953ab973.pkl b/story_graphs/arg_map/2249_7c7036d4-f2ff-4cd2-b45b-abdf953ab973.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..49b97817490f24523d1f70cf844999ed617b801b
Binary files /dev/null and b/story_graphs/arg_map/2249_7c7036d4-f2ff-4cd2-b45b-abdf953ab973.pkl differ
diff --git a/story_graphs/arg_map/2356_82d9a016-c85e-4c5d-a08a-81f499fe5477.pkl b/story_graphs/arg_map/2356_82d9a016-c85e-4c5d-a08a-81f499fe5477.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..553da24406d04742b0b1db7652e26fd06cb10a20
Binary files /dev/null and b/story_graphs/arg_map/2356_82d9a016-c85e-4c5d-a08a-81f499fe5477.pkl differ
diff --git a/story_graphs/arg_map/2369_83d007da-881f-4627-9627-382747ec0462.pkl b/story_graphs/arg_map/2369_83d007da-881f-4627-9627-382747ec0462.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..f9330ba2de29e2b4e298116e8453823c6ed6a1ca
Binary files /dev/null and b/story_graphs/arg_map/2369_83d007da-881f-4627-9627-382747ec0462.pkl differ
diff --git a/story_graphs/arg_map/2372_83ebb3f9-652d-4f2d-9d91-229722fbe60f.pkl b/story_graphs/arg_map/2372_83ebb3f9-652d-4f2d-9d91-229722fbe60f.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..332392f2d57be2f34a9a1d815565afd10b7e89d6
Binary files /dev/null and b/story_graphs/arg_map/2372_83ebb3f9-652d-4f2d-9d91-229722fbe60f.pkl differ
diff --git a/story_graphs/arg_map/2394_84c4e8a7-a4b4-4ae9-b9a0-9905ea57bc54.pkl b/story_graphs/arg_map/2394_84c4e8a7-a4b4-4ae9-b9a0-9905ea57bc54.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..986089c5a09e6427d8b25eae57b2ec48b169246a
Binary files /dev/null and b/story_graphs/arg_map/2394_84c4e8a7-a4b4-4ae9-b9a0-9905ea57bc54.pkl differ
diff --git a/story_graphs/arg_map/2403_85131dc1-63b4-46b0-b98c-8c2274e459af.pkl b/story_graphs/arg_map/2403_85131dc1-63b4-46b0-b98c-8c2274e459af.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..a1a138113736e8eb7a2b59c547367c93874adc35
Binary files /dev/null and b/story_graphs/arg_map/2403_85131dc1-63b4-46b0-b98c-8c2274e459af.pkl differ
diff --git a/story_graphs/arg_map/2423_861ac71c-f8ab-4c61-b660-ab4e416bde99.pkl b/story_graphs/arg_map/2423_861ac71c-f8ab-4c61-b660-ab4e416bde99.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..4e28953032bbc4324980da12c05672bcef549d75
Binary files /dev/null and b/story_graphs/arg_map/2423_861ac71c-f8ab-4c61-b660-ab4e416bde99.pkl differ
diff --git a/story_graphs/arg_map/2426_8674f279-3ab6-4c44-a071-c70681cf18ef.pkl b/story_graphs/arg_map/2426_8674f279-3ab6-4c44-a071-c70681cf18ef.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..4f1e6e84d76305e4b1b1c069c6dc2e4665201cb2
Binary files /dev/null and b/story_graphs/arg_map/2426_8674f279-3ab6-4c44-a071-c70681cf18ef.pkl differ
diff --git a/story_graphs/arg_map/2433_86dc3749-794e-4162-8a97-4e4fc8dc368a.pkl b/story_graphs/arg_map/2433_86dc3749-794e-4162-8a97-4e4fc8dc368a.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..a535f9c76595dfdc5ebf93e6e4cf0493e1d3e8c9
Binary files /dev/null and b/story_graphs/arg_map/2433_86dc3749-794e-4162-8a97-4e4fc8dc368a.pkl differ
diff --git a/story_graphs/arg_map/243_0e256188-94d5-46a2-89f7-d61f3e29e2f3.pkl b/story_graphs/arg_map/243_0e256188-94d5-46a2-89f7-d61f3e29e2f3.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..aa602dc0165d1b27d8beb98452e6b4032c49b236
Binary files /dev/null and b/story_graphs/arg_map/243_0e256188-94d5-46a2-89f7-d61f3e29e2f3.pkl differ
diff --git a/story_graphs/arg_map/2447_878e3f79-9243-4de0-bae3-741f4e9903ed.pkl b/story_graphs/arg_map/2447_878e3f79-9243-4de0-bae3-741f4e9903ed.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..45601c942efd298c5ee4498d6501dd9da0e893d7
Binary files /dev/null and b/story_graphs/arg_map/2447_878e3f79-9243-4de0-bae3-741f4e9903ed.pkl differ
diff --git a/story_graphs/arg_map/2455_88142a91-90e9-46ba-85a1-349f8cc2cff0.pkl b/story_graphs/arg_map/2455_88142a91-90e9-46ba-85a1-349f8cc2cff0.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..1fbca4a38ac7714a0535b81ec39323a6e6339e97
Binary files /dev/null and b/story_graphs/arg_map/2455_88142a91-90e9-46ba-85a1-349f8cc2cff0.pkl differ
diff --git a/story_graphs/arg_map/253_0ea29624-5133-4e82-93c4-4f65c88c6168.pkl b/story_graphs/arg_map/253_0ea29624-5133-4e82-93c4-4f65c88c6168.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..4701e7e9fe3f9e2da9731a3bf5fec77d747bf398
Binary files /dev/null and b/story_graphs/arg_map/253_0ea29624-5133-4e82-93c4-4f65c88c6168.pkl differ
diff --git a/story_graphs/arg_map/2573_8ecd19bb-21a4-4da4-9def-8d4138c8a050.pkl b/story_graphs/arg_map/2573_8ecd19bb-21a4-4da4-9def-8d4138c8a050.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..94f66e61ebfe1c3e7b6d0c5c222c029566f0f611
Binary files /dev/null and b/story_graphs/arg_map/2573_8ecd19bb-21a4-4da4-9def-8d4138c8a050.pkl differ
diff --git a/story_graphs/arg_map/2575_8eed3ca4-2a08-4c0c-a2b9-8df24c0b95fb.pkl b/story_graphs/arg_map/2575_8eed3ca4-2a08-4c0c-a2b9-8df24c0b95fb.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..20f6b09acca4bc4adf6ea08eca82da61a6ec458d
Binary files /dev/null and b/story_graphs/arg_map/2575_8eed3ca4-2a08-4c0c-a2b9-8df24c0b95fb.pkl differ
diff --git a/story_graphs/arg_map/2592_9004bd4d-186c-4755-9bf0-6eee2329d3db.pkl b/story_graphs/arg_map/2592_9004bd4d-186c-4755-9bf0-6eee2329d3db.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..d45063a47bdc5e849ad4c1d0703c883dbc04eb88
Binary files /dev/null and b/story_graphs/arg_map/2592_9004bd4d-186c-4755-9bf0-6eee2329d3db.pkl differ
diff --git a/story_graphs/arg_map/2605_90a530e3-e9d6-4e3a-8ee9-ec66eb46644e.pkl b/story_graphs/arg_map/2605_90a530e3-e9d6-4e3a-8ee9-ec66eb46644e.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..6dc7e1158d17b28d20e5957c7deee2b025720a14
Binary files /dev/null and b/story_graphs/arg_map/2605_90a530e3-e9d6-4e3a-8ee9-ec66eb46644e.pkl differ
diff --git a/story_graphs/arg_map/2607_90adc36f-acc3-4080-bc63-6f73c9c552a4.pkl b/story_graphs/arg_map/2607_90adc36f-acc3-4080-bc63-6f73c9c552a4.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..7521cecbd0ff24e979929651a2586fedf7147fe5
Binary files /dev/null and b/story_graphs/arg_map/2607_90adc36f-acc3-4080-bc63-6f73c9c552a4.pkl differ
diff --git a/story_graphs/arg_map/2609_90d97c7b-0d94-42da-8cc3-698b90515150.pkl b/story_graphs/arg_map/2609_90d97c7b-0d94-42da-8cc3-698b90515150.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..08e5bab7b338fc924a4ccb0b2e389127cba33b7e
Binary files /dev/null and b/story_graphs/arg_map/2609_90d97c7b-0d94-42da-8cc3-698b90515150.pkl differ
diff --git a/story_graphs/arg_map/2641_92c3d82e-7f45-406b-88ee-3463d0a4b856.pkl b/story_graphs/arg_map/2641_92c3d82e-7f45-406b-88ee-3463d0a4b856.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..c7ec9adb3b1f6ec2f900feb87cf526dc5bf0f09d
Binary files /dev/null and b/story_graphs/arg_map/2641_92c3d82e-7f45-406b-88ee-3463d0a4b856.pkl differ
diff --git a/story_graphs/arg_map/2642_92c81ebc-da73-4ee7-aaff-c3dae0424027.pkl b/story_graphs/arg_map/2642_92c81ebc-da73-4ee7-aaff-c3dae0424027.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..03bead1933ae02f646010d3ff084bc95361071e4
Binary files /dev/null and b/story_graphs/arg_map/2642_92c81ebc-da73-4ee7-aaff-c3dae0424027.pkl differ
diff --git a/story_graphs/arg_map/2647_93460020-5776-4303-98a3-3b93984d63aa.pkl b/story_graphs/arg_map/2647_93460020-5776-4303-98a3-3b93984d63aa.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..e21d1f39a5126450d58eef065ec0ceebffd1ac5a
Binary files /dev/null and b/story_graphs/arg_map/2647_93460020-5776-4303-98a3-3b93984d63aa.pkl differ
diff --git a/story_graphs/arg_map/2675_94ea3239-aa45-4df4-98a0-cda9de1e3ad6.pkl b/story_graphs/arg_map/2675_94ea3239-aa45-4df4-98a0-cda9de1e3ad6.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..e51d30b89fc1054189172f749453e6d9766af3fc
Binary files /dev/null and b/story_graphs/arg_map/2675_94ea3239-aa45-4df4-98a0-cda9de1e3ad6.pkl differ
diff --git a/story_graphs/arg_map/2703_96858af3-ab07-4910-b845-f08350e7785a.pkl b/story_graphs/arg_map/2703_96858af3-ab07-4910-b845-f08350e7785a.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..db1ff3688193e6dae6b31bfa4562f105ee1913bd
Binary files /dev/null and b/story_graphs/arg_map/2703_96858af3-ab07-4910-b845-f08350e7785a.pkl differ
diff --git a/story_graphs/arg_map/2768_9a8e2640-b501-4337-a8ff-d17d4319bab4.pkl b/story_graphs/arg_map/2768_9a8e2640-b501-4337-a8ff-d17d4319bab4.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..392e6c5ac9b906eeff606407022d0964408ce0bb
Binary files /dev/null and b/story_graphs/arg_map/2768_9a8e2640-b501-4337-a8ff-d17d4319bab4.pkl differ
diff --git a/story_graphs/arg_map/2944_a33a1117-7a70-4d06-b7cc-382a0d908dcc.pkl b/story_graphs/arg_map/2944_a33a1117-7a70-4d06-b7cc-382a0d908dcc.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..72e72233c02dbb06ecdb33487b51b4e3d03d8d48
Binary files /dev/null and b/story_graphs/arg_map/2944_a33a1117-7a70-4d06-b7cc-382a0d908dcc.pkl differ
diff --git a/story_graphs/arg_map/3004_a62bdd9f-a79b-40d3-ad76-b04860068fce.pkl b/story_graphs/arg_map/3004_a62bdd9f-a79b-40d3-ad76-b04860068fce.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..dcd6f796e5552f99e7363b8f13bf2f6b7bf54465
Binary files /dev/null and b/story_graphs/arg_map/3004_a62bdd9f-a79b-40d3-ad76-b04860068fce.pkl differ
diff --git a/story_graphs/arg_map/3045_a80be82b-56ec-4f37-985f-092ca568199d.pkl b/story_graphs/arg_map/3045_a80be82b-56ec-4f37-985f-092ca568199d.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..77aad41356fd160f33b91016a9ee308ece52f770
Binary files /dev/null and b/story_graphs/arg_map/3045_a80be82b-56ec-4f37-985f-092ca568199d.pkl differ
diff --git a/story_graphs/arg_map/3059_a8f0599c-2a69-446c-92f1-a8188b8932aa.pkl b/story_graphs/arg_map/3059_a8f0599c-2a69-446c-92f1-a8188b8932aa.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..7bfe03351d1f1d8c95104eee4b9f5e0fcb2d291f
Binary files /dev/null and b/story_graphs/arg_map/3059_a8f0599c-2a69-446c-92f1-a8188b8932aa.pkl differ
diff --git a/story_graphs/arg_map/3070_a9b0dee1-478a-4a6b-b45c-33e1be3622d5.pkl b/story_graphs/arg_map/3070_a9b0dee1-478a-4a6b-b45c-33e1be3622d5.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..d786626b9b4f4b8393fdd28eb1580b12851cce03
Binary files /dev/null and b/story_graphs/arg_map/3070_a9b0dee1-478a-4a6b-b45c-33e1be3622d5.pkl differ
diff --git a/story_graphs/arg_map/3073_a9dbc2c9-7421-4321-9242-017001a23b6a.pkl b/story_graphs/arg_map/3073_a9dbc2c9-7421-4321-9242-017001a23b6a.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..fcedb88d7f6ef9342dfa88dbbe2d11b0d5b39e5e
Binary files /dev/null and b/story_graphs/arg_map/3073_a9dbc2c9-7421-4321-9242-017001a23b6a.pkl differ
diff --git a/story_graphs/arg_map/3101_aafa4ab5-a1df-4ea3-9811-bf850eb53e8b.pkl b/story_graphs/arg_map/3101_aafa4ab5-a1df-4ea3-9811-bf850eb53e8b.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..30394b68775e584f06fdf4bb7f56ee8af0daea3e
Binary files /dev/null and b/story_graphs/arg_map/3101_aafa4ab5-a1df-4ea3-9811-bf850eb53e8b.pkl differ
diff --git a/story_graphs/arg_map/3116_abda7327-b2f6-4bb2-891c-3b5329db81c7.pkl b/story_graphs/arg_map/3116_abda7327-b2f6-4bb2-891c-3b5329db81c7.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..f50b46d07064b97fbb84022bbd069da164b23c92
Binary files /dev/null and b/story_graphs/arg_map/3116_abda7327-b2f6-4bb2-891c-3b5329db81c7.pkl differ
diff --git a/story_graphs/arg_map/3142_ad830d10-9762-4df5-bbd5-71ae0c1c9557.pkl b/story_graphs/arg_map/3142_ad830d10-9762-4df5-bbd5-71ae0c1c9557.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..b9804fcf73a8bfca55eec578add752a6429ac398
Binary files /dev/null and b/story_graphs/arg_map/3142_ad830d10-9762-4df5-bbd5-71ae0c1c9557.pkl differ
diff --git a/story_graphs/arg_map/3188_b01cbb4a-8661-4c0c-8747-b21b09952446.pkl b/story_graphs/arg_map/3188_b01cbb4a-8661-4c0c-8747-b21b09952446.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..e7f370a1b82e82e37fd3531814599972ee35f310
Binary files /dev/null and b/story_graphs/arg_map/3188_b01cbb4a-8661-4c0c-8747-b21b09952446.pkl differ
diff --git a/story_graphs/arg_map/3199_b06a38b8-e8cb-4141-a667-c10bc0532f37.pkl b/story_graphs/arg_map/3199_b06a38b8-e8cb-4141-a667-c10bc0532f37.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..6e48a41c8bfe0e7e05f90f38f1b39c36c9bf86c8
Binary files /dev/null and b/story_graphs/arg_map/3199_b06a38b8-e8cb-4141-a667-c10bc0532f37.pkl differ
diff --git a/story_graphs/arg_map/3210_b0e3b90f-9420-4788-aa51-754e64ccbf21.pkl b/story_graphs/arg_map/3210_b0e3b90f-9420-4788-aa51-754e64ccbf21.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..5c2d382f22e12f63b42eb68528069d2a0e93d2f2
Binary files /dev/null and b/story_graphs/arg_map/3210_b0e3b90f-9420-4788-aa51-754e64ccbf21.pkl differ
diff --git a/story_graphs/arg_map/3249_b37ab22d-c99c-45c4-857d-6e017126c128.pkl b/story_graphs/arg_map/3249_b37ab22d-c99c-45c4-857d-6e017126c128.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..4c358434a430d505ffa68e24ad3ec4cdc7d842a7
Binary files /dev/null and b/story_graphs/arg_map/3249_b37ab22d-c99c-45c4-857d-6e017126c128.pkl differ
diff --git a/story_graphs/arg_map/3270_b46ace79-f45e-49e8-9cf8-379ff6d1c86e.pkl b/story_graphs/arg_map/3270_b46ace79-f45e-49e8-9cf8-379ff6d1c86e.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..1753e6e32fa4d65f8b2e5039ce2f65c7ba1ff650
Binary files /dev/null and b/story_graphs/arg_map/3270_b46ace79-f45e-49e8-9cf8-379ff6d1c86e.pkl differ
diff --git a/story_graphs/arg_map/3275_b4b42c76-2531-4021-87b7-3b9a672e1284.pkl b/story_graphs/arg_map/3275_b4b42c76-2531-4021-87b7-3b9a672e1284.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..7e7cca8ee75957eeba28347d1ce70751b97fd759
Binary files /dev/null and b/story_graphs/arg_map/3275_b4b42c76-2531-4021-87b7-3b9a672e1284.pkl differ
diff --git a/story_graphs/arg_map/3316_b765c2cd-c19a-4fd5-afdb-07250bbc7d94.pkl b/story_graphs/arg_map/3316_b765c2cd-c19a-4fd5-afdb-07250bbc7d94.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..3a6aab413708008aba9b8222ddbc75c97f851424
Binary files /dev/null and b/story_graphs/arg_map/3316_b765c2cd-c19a-4fd5-afdb-07250bbc7d94.pkl differ
diff --git a/story_graphs/arg_map/3387_bb94a9bf-80d6-4a97-83d4-c02b1532c8fe.pkl b/story_graphs/arg_map/3387_bb94a9bf-80d6-4a97-83d4-c02b1532c8fe.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..4d95c6368c585d452c130330629c93f3b784c221
Binary files /dev/null and b/story_graphs/arg_map/3387_bb94a9bf-80d6-4a97-83d4-c02b1532c8fe.pkl differ
diff --git a/story_graphs/arg_map/3414_bd8016c9-bed1-4ec8-bd03-11783213d0ac.pkl b/story_graphs/arg_map/3414_bd8016c9-bed1-4ec8-bd03-11783213d0ac.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..7b8b52f869c3a875862b1a44d6b867f214466256
Binary files /dev/null and b/story_graphs/arg_map/3414_bd8016c9-bed1-4ec8-bd03-11783213d0ac.pkl differ
diff --git a/story_graphs/arg_map/3418_bdae1552-d446-4da4-9435-51b4452e3223.pkl b/story_graphs/arg_map/3418_bdae1552-d446-4da4-9435-51b4452e3223.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..20b0bd859f5f54da7f666504534ac6f423b0f0f2
Binary files /dev/null and b/story_graphs/arg_map/3418_bdae1552-d446-4da4-9435-51b4452e3223.pkl differ
diff --git a/story_graphs/arg_map/3420_bdbe4eff-cfd7-4ea4-9db5-eab68314b4d6.pkl b/story_graphs/arg_map/3420_bdbe4eff-cfd7-4ea4-9db5-eab68314b4d6.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..66d11eb1d0fbc4beda6b64ffac4e7f85775b2560
Binary files /dev/null and b/story_graphs/arg_map/3420_bdbe4eff-cfd7-4ea4-9db5-eab68314b4d6.pkl differ
diff --git a/story_graphs/arg_map/3424_bdcfe48d-af18-4f53-a988-9221f2a7e924.pkl b/story_graphs/arg_map/3424_bdcfe48d-af18-4f53-a988-9221f2a7e924.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..d9abeaf1558cee3c68f1a971076c6b0358caa7c1
Binary files /dev/null and b/story_graphs/arg_map/3424_bdcfe48d-af18-4f53-a988-9221f2a7e924.pkl differ
diff --git a/story_graphs/arg_map/3470_bfd72c84-3bd2-4dfb-b0a1-cf3b47cd0237.pkl b/story_graphs/arg_map/3470_bfd72c84-3bd2-4dfb-b0a1-cf3b47cd0237.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..d3bd21512cbcb47c998af269fd9eae57a8242d82
Binary files /dev/null and b/story_graphs/arg_map/3470_bfd72c84-3bd2-4dfb-b0a1-cf3b47cd0237.pkl differ
diff --git a/story_graphs/arg_map/3495_c0fbf647-9701-4acf-8a4a-c789485e3249.pkl b/story_graphs/arg_map/3495_c0fbf647-9701-4acf-8a4a-c789485e3249.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..4bdb6bb5e0a8a20c12834974a3b5e872315bd392
Binary files /dev/null and b/story_graphs/arg_map/3495_c0fbf647-9701-4acf-8a4a-c789485e3249.pkl differ
diff --git a/story_graphs/arg_map/3518_c232b7d7-2e19-403b-b8f6-48ff1b0ee67c.pkl b/story_graphs/arg_map/3518_c232b7d7-2e19-403b-b8f6-48ff1b0ee67c.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..bc82b5e2edfdc1f32f92dcfd39a4ed1af51aea5f
Binary files /dev/null and b/story_graphs/arg_map/3518_c232b7d7-2e19-403b-b8f6-48ff1b0ee67c.pkl differ
diff --git a/story_graphs/arg_map/3522_c25768fe-d3ac-42b9-8912-606c141d6e0b.pkl b/story_graphs/arg_map/3522_c25768fe-d3ac-42b9-8912-606c141d6e0b.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..34bebeb3a06ad0dc53e470ab5f5630a545d73646
Binary files /dev/null and b/story_graphs/arg_map/3522_c25768fe-d3ac-42b9-8912-606c141d6e0b.pkl differ
diff --git a/story_graphs/arg_map/3542_c369b8c6-3b46-433d-9027-da7dbd7a69d3.pkl b/story_graphs/arg_map/3542_c369b8c6-3b46-433d-9027-da7dbd7a69d3.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..96700bf45fda021b1e3fae56bb6c4cde79bd561f
Binary files /dev/null and b/story_graphs/arg_map/3542_c369b8c6-3b46-433d-9027-da7dbd7a69d3.pkl differ
diff --git a/story_graphs/arg_map/3544_c38aec88-ff92-473b-a477-e9e1e1e43416.pkl b/story_graphs/arg_map/3544_c38aec88-ff92-473b-a477-e9e1e1e43416.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..901d0723e938127b89940d5824afae0143c874cd
Binary files /dev/null and b/story_graphs/arg_map/3544_c38aec88-ff92-473b-a477-e9e1e1e43416.pkl differ
diff --git a/story_graphs/arg_map/3621_c7fb0338-0516-4bc7-b236-317a1a267c27.pkl b/story_graphs/arg_map/3621_c7fb0338-0516-4bc7-b236-317a1a267c27.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..5cf4ed5ea32eca0595c78c35bd7b5de9b4f67198
Binary files /dev/null and b/story_graphs/arg_map/3621_c7fb0338-0516-4bc7-b236-317a1a267c27.pkl differ
diff --git a/story_graphs/arg_map/3640_c905048c-ad7d-4a77-9215-a84d4b063c5f.pkl b/story_graphs/arg_map/3640_c905048c-ad7d-4a77-9215-a84d4b063c5f.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..7828337d75688c44aad2d52856b83e1296e12315
Binary files /dev/null and b/story_graphs/arg_map/3640_c905048c-ad7d-4a77-9215-a84d4b063c5f.pkl differ
diff --git a/story_graphs/arg_map/3727_cdf78f67-3df0-434b-adf6-fee174d3e207.pkl b/story_graphs/arg_map/3727_cdf78f67-3df0-434b-adf6-fee174d3e207.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..8842c6851e44ed2653b56c66b6ecfad6072839b8
Binary files /dev/null and b/story_graphs/arg_map/3727_cdf78f67-3df0-434b-adf6-fee174d3e207.pkl differ
diff --git a/story_graphs/arg_map/3760_cfcb9d4d-84e6-4aed-b00e-5a27d7dbb984.pkl b/story_graphs/arg_map/3760_cfcb9d4d-84e6-4aed-b00e-5a27d7dbb984.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..c04f45330ac3c03bb5bd4509b17bb56c6ab0ca38
Binary files /dev/null and b/story_graphs/arg_map/3760_cfcb9d4d-84e6-4aed-b00e-5a27d7dbb984.pkl differ
diff --git a/story_graphs/arg_map/3809_d292fd66-e8e1-4e2b-833c-a08b9ed0c8b2.pkl b/story_graphs/arg_map/3809_d292fd66-e8e1-4e2b-833c-a08b9ed0c8b2.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..47384e8af5fbc06d5ead861c57ab1ccfaeb1c821
Binary files /dev/null and b/story_graphs/arg_map/3809_d292fd66-e8e1-4e2b-833c-a08b9ed0c8b2.pkl differ
diff --git a/story_graphs/arg_map/3825_d369e8c1-eaa9-45be-b576-7f76f6b6655d.pkl b/story_graphs/arg_map/3825_d369e8c1-eaa9-45be-b576-7f76f6b6655d.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..e38568c65261cbdded081ee7895103c4605ba3c5
Binary files /dev/null and b/story_graphs/arg_map/3825_d369e8c1-eaa9-45be-b576-7f76f6b6655d.pkl differ
diff --git a/story_graphs/arg_map/3859_d5d0db0f-2245-4927-b925-86b85edb5184.pkl b/story_graphs/arg_map/3859_d5d0db0f-2245-4927-b925-86b85edb5184.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..75932d44bebbc778484d0f2f245c38c5eff9c723
Binary files /dev/null and b/story_graphs/arg_map/3859_d5d0db0f-2245-4927-b925-86b85edb5184.pkl differ
diff --git a/story_graphs/arg_map/3864_d619addc-445d-44dc-abf0-87244261006a.pkl b/story_graphs/arg_map/3864_d619addc-445d-44dc-abf0-87244261006a.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..fd62fa9359d425f9e3fffc499a2823f587c7edef
Binary files /dev/null and b/story_graphs/arg_map/3864_d619addc-445d-44dc-abf0-87244261006a.pkl differ
diff --git a/story_graphs/arg_map/3865_d61dd17f-156f-4d0f-ab4e-17e4e8bafd3a.pkl b/story_graphs/arg_map/3865_d61dd17f-156f-4d0f-ab4e-17e4e8bafd3a.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..b066a35df6ef0ee757aa99522a6aad42f00fa077
Binary files /dev/null and b/story_graphs/arg_map/3865_d61dd17f-156f-4d0f-ab4e-17e4e8bafd3a.pkl differ
diff --git a/story_graphs/arg_map/3913_d860db05-025c-45dd-8bc5-1242d49c8341.pkl b/story_graphs/arg_map/3913_d860db05-025c-45dd-8bc5-1242d49c8341.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..648f480ec3363b0852287e0358a6ad30e30534da
Binary files /dev/null and b/story_graphs/arg_map/3913_d860db05-025c-45dd-8bc5-1242d49c8341.pkl differ
diff --git a/story_graphs/arg_map/3933_d998af90-626c-4c1b-b289-3027112c978e.pkl b/story_graphs/arg_map/3933_d998af90-626c-4c1b-b289-3027112c978e.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..9308a48f58363990fd1eb7d4279768a49df8ecc6
Binary files /dev/null and b/story_graphs/arg_map/3933_d998af90-626c-4c1b-b289-3027112c978e.pkl differ
diff --git a/story_graphs/arg_map/3965_db736f68-ee6e-4cb6-9156-519838e7a8ed.pkl b/story_graphs/arg_map/3965_db736f68-ee6e-4cb6-9156-519838e7a8ed.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..d2cfa3f0913ab63578829c379d7f443db3400b76
Binary files /dev/null and b/story_graphs/arg_map/3965_db736f68-ee6e-4cb6-9156-519838e7a8ed.pkl differ
diff --git a/story_graphs/arg_map/3988_dd7376db-3990-4600-b026-a383d9261262.pkl b/story_graphs/arg_map/3988_dd7376db-3990-4600-b026-a383d9261262.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..73f00a15530eb89159fd304c9177189cdda3c6bc
Binary files /dev/null and b/story_graphs/arg_map/3988_dd7376db-3990-4600-b026-a383d9261262.pkl differ
diff --git a/story_graphs/arg_map/3992_ddc747b7-a6d7-4693-944e-d8b3ccb721f0.pkl b/story_graphs/arg_map/3992_ddc747b7-a6d7-4693-944e-d8b3ccb721f0.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..22ac50003be27ffc42ecb62f043ffa565d8a13ee
Binary files /dev/null and b/story_graphs/arg_map/3992_ddc747b7-a6d7-4693-944e-d8b3ccb721f0.pkl differ
diff --git a/story_graphs/arg_map/4004_de79eefc-d2b9-4fc0-bae0-f3853c446b3e.pkl b/story_graphs/arg_map/4004_de79eefc-d2b9-4fc0-bae0-f3853c446b3e.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..9c3ddc4f1f7b22836819954e6dd08bd3703ad6fa
Binary files /dev/null and b/story_graphs/arg_map/4004_de79eefc-d2b9-4fc0-bae0-f3853c446b3e.pkl differ
diff --git a/story_graphs/arg_map/4073_e1b56183-4239-40f4-b929-57d35883aed1.pkl b/story_graphs/arg_map/4073_e1b56183-4239-40f4-b929-57d35883aed1.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..4378f2e6193113164e8edd0f977062246802a785
Binary files /dev/null and b/story_graphs/arg_map/4073_e1b56183-4239-40f4-b929-57d35883aed1.pkl differ
diff --git a/story_graphs/arg_map/4186_e872c8ed-ba2d-48d6-9966-81249fcb966c.pkl b/story_graphs/arg_map/4186_e872c8ed-ba2d-48d6-9966-81249fcb966c.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..6a0166e92003d5d6c1691690a42ef0a6c0711129
Binary files /dev/null and b/story_graphs/arg_map/4186_e872c8ed-ba2d-48d6-9966-81249fcb966c.pkl differ
diff --git a/story_graphs/arg_map/4209_e9cd3db5-ff8d-46b7-b3d1-908a2cc912f2.pkl b/story_graphs/arg_map/4209_e9cd3db5-ff8d-46b7-b3d1-908a2cc912f2.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..d4f2e104e3354efc9add48b0529e1f20f47842bf
Binary files /dev/null and b/story_graphs/arg_map/4209_e9cd3db5-ff8d-46b7-b3d1-908a2cc912f2.pkl differ
diff --git a/story_graphs/arg_map/4230_eafb43f0-2699-48cb-b5bb-77717c7bd765.pkl b/story_graphs/arg_map/4230_eafb43f0-2699-48cb-b5bb-77717c7bd765.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..3239960ab1c695fe08c7fb4d527349ced56c1550
Binary files /dev/null and b/story_graphs/arg_map/4230_eafb43f0-2699-48cb-b5bb-77717c7bd765.pkl differ
diff --git a/story_graphs/arg_map/4265_ed118abb-0ff6-4ddd-bfd5-490f6904a11a.pkl b/story_graphs/arg_map/4265_ed118abb-0ff6-4ddd-bfd5-490f6904a11a.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..de1d046b7433b83ecb84fbea21c54a00a568d131
Binary files /dev/null and b/story_graphs/arg_map/4265_ed118abb-0ff6-4ddd-bfd5-490f6904a11a.pkl differ
diff --git a/story_graphs/arg_map/4276_edc61007-92af-443d-a80f-ff0f8731eebb.pkl b/story_graphs/arg_map/4276_edc61007-92af-443d-a80f-ff0f8731eebb.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..f5ef43291ce47d4ace308b4b0d1a3c5c6181afcd
Binary files /dev/null and b/story_graphs/arg_map/4276_edc61007-92af-443d-a80f-ff0f8731eebb.pkl differ
diff --git a/story_graphs/arg_map/4302_ef14cccd-80a7-4339-8ad7-02f834159b17.pkl b/story_graphs/arg_map/4302_ef14cccd-80a7-4339-8ad7-02f834159b17.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..e14ef637fffb1afe411bca0e67e96815bb3c643f
Binary files /dev/null and b/story_graphs/arg_map/4302_ef14cccd-80a7-4339-8ad7-02f834159b17.pkl differ
diff --git a/story_graphs/arg_map/4322_f08882b2-4da1-41de-85e7-eb799119b5c9.pkl b/story_graphs/arg_map/4322_f08882b2-4da1-41de-85e7-eb799119b5c9.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..3dc1d5c756466a101433252636fb6924d6aa7b65
Binary files /dev/null and b/story_graphs/arg_map/4322_f08882b2-4da1-41de-85e7-eb799119b5c9.pkl differ
diff --git a/story_graphs/arg_map/4325_f0ee15a1-d987-49b4-9874-c4fada93b704.pkl b/story_graphs/arg_map/4325_f0ee15a1-d987-49b4-9874-c4fada93b704.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..2ecc482a8b960b5f047cb271149a79bcc9f681a4
Binary files /dev/null and b/story_graphs/arg_map/4325_f0ee15a1-d987-49b4-9874-c4fada93b704.pkl differ
diff --git a/story_graphs/arg_map/4348_f28370d4-b565-4b40-8fa1-6ba46c2a2f8b.pkl b/story_graphs/arg_map/4348_f28370d4-b565-4b40-8fa1-6ba46c2a2f8b.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..d4828433c4046bc20e9d681aa17e4b6819ca1622
Binary files /dev/null and b/story_graphs/arg_map/4348_f28370d4-b565-4b40-8fa1-6ba46c2a2f8b.pkl differ
diff --git a/story_graphs/arg_map/4375_f457e105-32dc-4c10-8fc0-9ebf2b2958f6.pkl b/story_graphs/arg_map/4375_f457e105-32dc-4c10-8fc0-9ebf2b2958f6.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..f1eac6630aa7384d71efad1adb72b789d2ca0b35
Binary files /dev/null and b/story_graphs/arg_map/4375_f457e105-32dc-4c10-8fc0-9ebf2b2958f6.pkl differ
diff --git a/story_graphs/arg_map/4412_f5e80c9f-7c0a-4fe2-b015-ff36002b9258.pkl b/story_graphs/arg_map/4412_f5e80c9f-7c0a-4fe2-b015-ff36002b9258.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..9c978c15af2786846f6795c4c1e7c3183a08c453
Binary files /dev/null and b/story_graphs/arg_map/4412_f5e80c9f-7c0a-4fe2-b015-ff36002b9258.pkl differ
diff --git a/story_graphs/arg_map/4436_f721347b-ef13-42a7-adb5-ff376c123a4d.pkl b/story_graphs/arg_map/4436_f721347b-ef13-42a7-adb5-ff376c123a4d.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..36876bca10110336b7d636e11159c0679d54bf2c
Binary files /dev/null and b/story_graphs/arg_map/4436_f721347b-ef13-42a7-adb5-ff376c123a4d.pkl differ
diff --git a/story_graphs/arg_map/4458_f8767f3e-2efc-4172-9035-f6fae1c0519b.pkl b/story_graphs/arg_map/4458_f8767f3e-2efc-4172-9035-f6fae1c0519b.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..5c97b54be1de6a70859de9425c6d24ee4d8f65f1
Binary files /dev/null and b/story_graphs/arg_map/4458_f8767f3e-2efc-4172-9035-f6fae1c0519b.pkl differ
diff --git a/story_graphs/arg_map/4461_f8bcc85d-373b-4a9d-9573-6362d188910f.pkl b/story_graphs/arg_map/4461_f8bcc85d-373b-4a9d-9573-6362d188910f.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..f9eee41f93d6939bf925f2af9b7a273c7624938d
Binary files /dev/null and b/story_graphs/arg_map/4461_f8bcc85d-373b-4a9d-9573-6362d188910f.pkl differ
diff --git a/story_graphs/arg_map/4466_f8eec133-e176-4345-a8a2-ee47a53b0b7b.pkl b/story_graphs/arg_map/4466_f8eec133-e176-4345-a8a2-ee47a53b0b7b.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..c5a35f632423a216f5b6c36a16ee6937c22bd48f
Binary files /dev/null and b/story_graphs/arg_map/4466_f8eec133-e176-4345-a8a2-ee47a53b0b7b.pkl differ
diff --git a/story_graphs/arg_map/446_19d22daa-b77c-4dbf-901a-01ab9e7c3f50.pkl b/story_graphs/arg_map/446_19d22daa-b77c-4dbf-901a-01ab9e7c3f50.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..87a1f527659659ba67657994351df974c4b37fc9
Binary files /dev/null and b/story_graphs/arg_map/446_19d22daa-b77c-4dbf-901a-01ab9e7c3f50.pkl differ
diff --git a/story_graphs/arg_map/4474_f9d89314-acf7-4224-90b6-6dbd39b7b76e.pkl b/story_graphs/arg_map/4474_f9d89314-acf7-4224-90b6-6dbd39b7b76e.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..b727d0cdb20f4c7b22f053deedab69b11c8f9767
Binary files /dev/null and b/story_graphs/arg_map/4474_f9d89314-acf7-4224-90b6-6dbd39b7b76e.pkl differ
diff --git a/story_graphs/arg_map/4488_fa952f59-3b98-49a7-b8a6-ad5b83cd9af0.pkl b/story_graphs/arg_map/4488_fa952f59-3b98-49a7-b8a6-ad5b83cd9af0.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..df7c98d7a9edd32e77fa08fbfa02051c1886104e
Binary files /dev/null and b/story_graphs/arg_map/4488_fa952f59-3b98-49a7-b8a6-ad5b83cd9af0.pkl differ
diff --git a/story_graphs/arg_map/4499_fafb26b0-92e3-44ad-aaad-1b86669dbb92.pkl b/story_graphs/arg_map/4499_fafb26b0-92e3-44ad-aaad-1b86669dbb92.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..d9427b10166e3f846a676fcc54cbd0b3cd0b4129
Binary files /dev/null and b/story_graphs/arg_map/4499_fafb26b0-92e3-44ad-aaad-1b86669dbb92.pkl differ
diff --git a/story_graphs/arg_map/449_19d92cee-110d-4cd3-90b3-fe9aee5577f6.pkl b/story_graphs/arg_map/449_19d92cee-110d-4cd3-90b3-fe9aee5577f6.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..069676a65826a71e240c7b1af2cf23d1c1cb4669
Binary files /dev/null and b/story_graphs/arg_map/449_19d92cee-110d-4cd3-90b3-fe9aee5577f6.pkl differ
diff --git a/story_graphs/arg_map/4501_fb169453-3990-43c3-bc32-b388e207db84.pkl b/story_graphs/arg_map/4501_fb169453-3990-43c3-bc32-b388e207db84.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..351826f41f50df2bf372911a34d162f2923cfb1b
Binary files /dev/null and b/story_graphs/arg_map/4501_fb169453-3990-43c3-bc32-b388e207db84.pkl differ
diff --git a/story_graphs/arg_map/4512_fb9c4a9b-1273-4eeb-90ff-bc56647e75cf.pkl b/story_graphs/arg_map/4512_fb9c4a9b-1273-4eeb-90ff-bc56647e75cf.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..9a6afb0162bf54a1e0602d354d942215ee65db97
Binary files /dev/null and b/story_graphs/arg_map/4512_fb9c4a9b-1273-4eeb-90ff-bc56647e75cf.pkl differ
diff --git a/story_graphs/arg_map/4535_fca4bc2d-2d6f-4d06-b953-1d144e190fc3.pkl b/story_graphs/arg_map/4535_fca4bc2d-2d6f-4d06-b953-1d144e190fc3.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..6b4c4ff9a2e4e09cf576eb3a6b9689cc3973a6c9
Binary files /dev/null and b/story_graphs/arg_map/4535_fca4bc2d-2d6f-4d06-b953-1d144e190fc3.pkl differ
diff --git a/story_graphs/arg_map/475_1b4f3bfb-25d4-4f1e-a7f2-15b048d22bbf.pkl b/story_graphs/arg_map/475_1b4f3bfb-25d4-4f1e-a7f2-15b048d22bbf.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..9c5575e320f7c0b6caad6cc69953f258cf3915fa
Binary files /dev/null and b/story_graphs/arg_map/475_1b4f3bfb-25d4-4f1e-a7f2-15b048d22bbf.pkl differ
diff --git a/story_graphs/arg_map/499_1c821d34-b229-4fb8-9c3a-0c8bb29c42fd.pkl b/story_graphs/arg_map/499_1c821d34-b229-4fb8-9c3a-0c8bb29c42fd.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..ecb3e1e3ada35f2c35ca90e39cb0c8d1ae4f871e
Binary files /dev/null and b/story_graphs/arg_map/499_1c821d34-b229-4fb8-9c3a-0c8bb29c42fd.pkl differ
diff --git a/story_graphs/arg_map/517_1d9b38a2-dff4-4835-8ff6-22f52970c82c.pkl b/story_graphs/arg_map/517_1d9b38a2-dff4-4835-8ff6-22f52970c82c.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..178893ff39c76553ac4a04a11421a9ac7c43c73a
Binary files /dev/null and b/story_graphs/arg_map/517_1d9b38a2-dff4-4835-8ff6-22f52970c82c.pkl differ
diff --git a/story_graphs/arg_map/535_1e92281f-d924-43e1-b1f7-e18668c91fa6.pkl b/story_graphs/arg_map/535_1e92281f-d924-43e1-b1f7-e18668c91fa6.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..953e7e4a76298229ebced7dd67b26a8f6a682eaa
Binary files /dev/null and b/story_graphs/arg_map/535_1e92281f-d924-43e1-b1f7-e18668c91fa6.pkl differ
diff --git a/story_graphs/arg_map/536_1ea67316-7cd8-4bb4-a6fd-40eb0a60b799.pkl b/story_graphs/arg_map/536_1ea67316-7cd8-4bb4-a6fd-40eb0a60b799.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..b5754fe6c0082b50a604778a411fe688b0b0fa76
Binary files /dev/null and b/story_graphs/arg_map/536_1ea67316-7cd8-4bb4-a6fd-40eb0a60b799.pkl differ
diff --git a/story_graphs/arg_map/592_21ee0411-607c-4ff5-b02e-ecb74cf564e2.pkl b/story_graphs/arg_map/592_21ee0411-607c-4ff5-b02e-ecb74cf564e2.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..e383c4a1ade4492ea4cbd8501794c619d35c4419
Binary files /dev/null and b/story_graphs/arg_map/592_21ee0411-607c-4ff5-b02e-ecb74cf564e2.pkl differ
diff --git a/story_graphs/arg_map/594_221e3f76-a1a7-4e2e-9b6e-48b0498c2d1e.pkl b/story_graphs/arg_map/594_221e3f76-a1a7-4e2e-9b6e-48b0498c2d1e.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..a8e5f4f0bfe205896b707a0f86f9d435aaf2f2fa
Binary files /dev/null and b/story_graphs/arg_map/594_221e3f76-a1a7-4e2e-9b6e-48b0498c2d1e.pkl differ
diff --git a/story_graphs/arg_map/635_256ae9c6-8a93-4b19-9462-7657979fd374.pkl b/story_graphs/arg_map/635_256ae9c6-8a93-4b19-9462-7657979fd374.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..b9af15ccdacb0a8e12b13271297f4db48d90647b
Binary files /dev/null and b/story_graphs/arg_map/635_256ae9c6-8a93-4b19-9462-7657979fd374.pkl differ
diff --git a/story_graphs/arg_map/636_25713be2-41aa-424a-b081-6aacc9995716.pkl b/story_graphs/arg_map/636_25713be2-41aa-424a-b081-6aacc9995716.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..e14e1b455b30814016facea844ee4e70ee2f5adf
Binary files /dev/null and b/story_graphs/arg_map/636_25713be2-41aa-424a-b081-6aacc9995716.pkl differ
diff --git a/story_graphs/arg_map/637_2598fb55-0910-4e79-be26-382d16c9ac80.pkl b/story_graphs/arg_map/637_2598fb55-0910-4e79-be26-382d16c9ac80.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..a5d76ce674a88b7740aeab2959da604a5172fd9e
Binary files /dev/null and b/story_graphs/arg_map/637_2598fb55-0910-4e79-be26-382d16c9ac80.pkl differ
diff --git a/story_graphs/arg_map/640_25b1510a-6e09-4bb7-a1b5-298abf76123d.pkl b/story_graphs/arg_map/640_25b1510a-6e09-4bb7-a1b5-298abf76123d.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..03c5f6a4c4f7bf59847e62383430822cfbba438e
Binary files /dev/null and b/story_graphs/arg_map/640_25b1510a-6e09-4bb7-a1b5-298abf76123d.pkl differ
diff --git a/story_graphs/arg_map/670_275af132-59f8-4b00-a3f9-5c6f2281cc55.pkl b/story_graphs/arg_map/670_275af132-59f8-4b00-a3f9-5c6f2281cc55.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..0f9e51ec9ebe4a9d9b873bdf7fdf92222df5e8d1
Binary files /dev/null and b/story_graphs/arg_map/670_275af132-59f8-4b00-a3f9-5c6f2281cc55.pkl differ
diff --git a/story_graphs/arg_map/686_2856aeb3-11ca-48e0-92aa-2b4830b28477.pkl b/story_graphs/arg_map/686_2856aeb3-11ca-48e0-92aa-2b4830b28477.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..b5e1a0f3c6a9fb6756cf8eae6001ebf2ee68cc8a
Binary files /dev/null and b/story_graphs/arg_map/686_2856aeb3-11ca-48e0-92aa-2b4830b28477.pkl differ
diff --git a/story_graphs/arg_map/687_286de695-581e-4180-b9cc-8f48482159b4.pkl b/story_graphs/arg_map/687_286de695-581e-4180-b9cc-8f48482159b4.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..8a57eef10dedac93ace4be42ee95df66b63bee8a
Binary files /dev/null and b/story_graphs/arg_map/687_286de695-581e-4180-b9cc-8f48482159b4.pkl differ
diff --git a/story_graphs/arg_map/719_2a302846-afcf-407c-8325-0f1247333217.pkl b/story_graphs/arg_map/719_2a302846-afcf-407c-8325-0f1247333217.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..59b070634276ec71e030a4feacb393f3e2a17e62
Binary files /dev/null and b/story_graphs/arg_map/719_2a302846-afcf-407c-8325-0f1247333217.pkl differ
diff --git a/story_graphs/arg_map/762_2c1e9cb2-ce02-4672-af86-5c463e298d95.pkl b/story_graphs/arg_map/762_2c1e9cb2-ce02-4672-af86-5c463e298d95.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..fa8c61dacb0dc4e63ff0fddc4310775c3bf0b4d5
Binary files /dev/null and b/story_graphs/arg_map/762_2c1e9cb2-ce02-4672-af86-5c463e298d95.pkl differ
diff --git a/story_graphs/arg_map/789_2db4f7e8-ec1d-4479-8b3b-1cb98a0ffbe2.pkl b/story_graphs/arg_map/789_2db4f7e8-ec1d-4479-8b3b-1cb98a0ffbe2.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..8170155639c1f05b2b7752bbd02735a4f627a80d
Binary files /dev/null and b/story_graphs/arg_map/789_2db4f7e8-ec1d-4479-8b3b-1cb98a0ffbe2.pkl differ
diff --git a/story_graphs/arg_map/794_2dd25ada-20ad-4246-9233-545316898d4a.pkl b/story_graphs/arg_map/794_2dd25ada-20ad-4246-9233-545316898d4a.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..c7f1a27c48a4eec13eff72e2e24ba1f61c709cdc
Binary files /dev/null and b/story_graphs/arg_map/794_2dd25ada-20ad-4246-9233-545316898d4a.pkl differ
diff --git a/story_graphs/arg_map/795_2ddcd2a7-67d4-4099-a0c2-e385be780858.pkl b/story_graphs/arg_map/795_2ddcd2a7-67d4-4099-a0c2-e385be780858.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..d884f85ba500f88a79c8c3b5c87b8fe6b36b17e6
Binary files /dev/null and b/story_graphs/arg_map/795_2ddcd2a7-67d4-4099-a0c2-e385be780858.pkl differ
diff --git a/story_graphs/arg_map/801_2e32a2ca-872a-4314-bdea-b87d19a81852.pkl b/story_graphs/arg_map/801_2e32a2ca-872a-4314-bdea-b87d19a81852.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..212022221a88b681bdc5a8f447ca822540dc16c8
Binary files /dev/null and b/story_graphs/arg_map/801_2e32a2ca-872a-4314-bdea-b87d19a81852.pkl differ
diff --git a/story_graphs/arg_map/835_2fee5222-3f9d-4ac8-ae63-0e336bc9c574.pkl b/story_graphs/arg_map/835_2fee5222-3f9d-4ac8-ae63-0e336bc9c574.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..93c18b73b0046a99e07bb1a35adb117675f5dd62
Binary files /dev/null and b/story_graphs/arg_map/835_2fee5222-3f9d-4ac8-ae63-0e336bc9c574.pkl differ
diff --git a/story_graphs/arg_map/851_30836510-6a75-47b5-9753-4ad4d40790aa.pkl b/story_graphs/arg_map/851_30836510-6a75-47b5-9753-4ad4d40790aa.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..0e4ae8770948160431f17c077613cbfc0e20149a
Binary files /dev/null and b/story_graphs/arg_map/851_30836510-6a75-47b5-9753-4ad4d40790aa.pkl differ
diff --git a/story_graphs/arg_map/861_31348b91-6af8-446a-b031-ec0315ea9e85.pkl b/story_graphs/arg_map/861_31348b91-6af8-446a-b031-ec0315ea9e85.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..4105fe48fe3facf537a419d43cad52de77e42031
Binary files /dev/null and b/story_graphs/arg_map/861_31348b91-6af8-446a-b031-ec0315ea9e85.pkl differ
diff --git a/story_graphs/arg_map/866_317f1afa-8ff5-463f-8c8c-92146038d113.pkl b/story_graphs/arg_map/866_317f1afa-8ff5-463f-8c8c-92146038d113.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..d89337c8e108ddfd20f819d8a42a6cf9f7760188
Binary files /dev/null and b/story_graphs/arg_map/866_317f1afa-8ff5-463f-8c8c-92146038d113.pkl differ
diff --git a/story_graphs/arg_map/873_31faef95-2bce-468f-8579-841df0274034.pkl b/story_graphs/arg_map/873_31faef95-2bce-468f-8579-841df0274034.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..1b6df2c0a73c7dd3ca901d05213650c66f4541bb
Binary files /dev/null and b/story_graphs/arg_map/873_31faef95-2bce-468f-8579-841df0274034.pkl differ
diff --git a/story_graphs/arg_map/964_37b10235-9f23-4dd5-b152-87fd6312750a.pkl b/story_graphs/arg_map/964_37b10235-9f23-4dd5-b152-87fd6312750a.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..7100be6f5116ed1d3477b3a2b78bc2c3f7224634
Binary files /dev/null and b/story_graphs/arg_map/964_37b10235-9f23-4dd5-b152-87fd6312750a.pkl differ
diff --git a/story_graphs/arg_map/981_387b2941-9624-48d9-a01c-53e5aa3592b6.pkl b/story_graphs/arg_map/981_387b2941-9624-48d9-a01c-53e5aa3592b6.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..7fc7f53cf7d672d622eb8eb6fa5f66f039436c83
Binary files /dev/null and b/story_graphs/arg_map/981_387b2941-9624-48d9-a01c-53e5aa3592b6.pkl differ
diff --git a/story_graphs/arg_map/992_39226114-d067-4f93-8dcb-8045664ce6df.pkl b/story_graphs/arg_map/992_39226114-d067-4f93-8dcb-8045664ce6df.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..ef46af8ef81b8fa2c25827861e510094cee76768
Binary files /dev/null and b/story_graphs/arg_map/992_39226114-d067-4f93-8dcb-8045664ce6df.pkl differ
diff --git a/story_graphs/arg_map/994_3931a17b-6df7-41d8-84c8-723796025586.pkl b/story_graphs/arg_map/994_3931a17b-6df7-41d8-84c8-723796025586.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..d4be8b97e4648ccd2d327213c67928de64f3f7ac
Binary files /dev/null and b/story_graphs/arg_map/994_3931a17b-6df7-41d8-84c8-723796025586.pkl differ