diff --git a/EP/__pycache__/cora.cpython-35.pyc b/EP/__pycache__/cora.cpython-35.pyc
deleted file mode 100644
index 9d7c440bca7e0dcdef453e3120e6ac9548292dea..0000000000000000000000000000000000000000
Binary files a/EP/__pycache__/cora.cpython-35.pyc and /dev/null differ
diff --git a/EP/__pycache__/initialize.cpython-35.pyc b/EP/__pycache__/initialize.cpython-35.pyc
deleted file mode 100644
index 301db6277e7cbd18b55079cc909d69a2eaa47d4a..0000000000000000000000000000000000000000
Binary files a/EP/__pycache__/initialize.cpython-35.pyc and /dev/null differ
diff --git a/EP/__pycache__/random_nodes_for_node_classification.cpython-35.pyc b/EP/__pycache__/random_nodes_for_node_classification.cpython-35.pyc
deleted file mode 100644
index 7dc8c53340932523796e6070c19baf35ed0a63f0..0000000000000000000000000000000000000000
Binary files a/EP/__pycache__/random_nodes_for_node_classification.cpython-35.pyc and /dev/null differ
diff --git a/Senseval_Prep/Senseval2/d00.pkl b/Senseval_Prep/Senseval2/d00.pkl
index 201e6830f541614bf0f729d4b5ef64d0ddbcb950..35ece51f061764d31abe7d63ab610ae11819ca8a 100644
Binary files a/Senseval_Prep/Senseval2/d00.pkl and b/Senseval_Prep/Senseval2/d00.pkl differ
diff --git a/Senseval_Prep/Senseval2/d01.pkl b/Senseval_Prep/Senseval2/d01.pkl
index 115c2c77b1715a39e161a3b71ec65bd93ed418e5..e91d5f897a4f1937b895fb736134c29397bd86b1 100644
Binary files a/Senseval_Prep/Senseval2/d01.pkl and b/Senseval_Prep/Senseval2/d01.pkl differ
diff --git a/Senseval_Prep/Senseval2/d02.pkl b/Senseval_Prep/Senseval2/d02.pkl
index 05bf45b5d04547c684b281b61446b2b11bee8501..1a7a40f14266c71b5d8f058c7c3c21c27779642a 100644
Binary files a/Senseval_Prep/Senseval2/d02.pkl and b/Senseval_Prep/Senseval2/d02.pkl differ
diff --git a/Senseval_Prep/senseval_preprocessing.py b/Senseval_Prep/senseval_preprocessing.py
index 6ef096d479843831debe5af6e478f36cab245107..8a0a5670e36fbd922b4bfd3f81f4908e241468ef 100644
--- a/Senseval_Prep/senseval_preprocessing.py
+++ b/Senseval_Prep/senseval_preprocessing.py
@@ -3,25 +3,26 @@ import pickle as pkl
 from nltk.stem import WordNetLemmatizer
 wnl = WordNetLemmatizer()
 
-file_path = "eng-all-words_seneval2.test.xml"
-#file_path = "english-all-words.xml"
+file_path2 = "eng-all-words_seneval2.test.xml"           #senseval2
+file_path3 = "english-all-words.xml"                    #senseval3
 
-tree_paths3 = {"d000": "cl23.mrg", "d001": "wsj_1695.mrg", "d002":"wsj_1778.mrg"}
-tree_paths2 = {"d00": "wsj_0089.mrg", "d01": "wsj_0465.mrg", "d02": "wsj_1286.mrg"}
+tree_paths2 = {"d00": "wsj_0089.mrg", "d01": "wsj_0465.mrg", "d02": "wsj_1286.mrg"}      #senseval2
+tree_paths3 = {"d000": "cl23.mrg", "d001": "wsj_1695.mrg", "d002":"wsj_1778.mrg"}       #senseval3
 
-def get_stopword_list(path):
-    with open (path, "r") as f:
+def get_stopword_list(stop_path):
+    with open (stop_path, "r") as f:
         stopli = []
         for line in f:
             stopli.append(line[:-1])
         return stopli
 
-def get_infos(path = tree_paths2["d00"]):
-    with open (path, "r") as f:
+def get_infos(tree_path):
+    with open (tree_path, "r") as f:
         file = f.read()
         li = re.findall("\([\.,'`A-Z:]+\$? [&%:\\\/`'a-zA-Z0-9\.,\?!-]+\)", file)
         return li
-def get_xml():
+
+def get_xml(file_path):
     with open(file_path, "r") as f:
         list_lines = f.readlines()[4:]
         text_dict = {}
@@ -101,9 +102,9 @@ def validation_line(line):
         line_info.append(line)
     return line_info
 
-def get_sentence(key = "d000"):
+def get_sentence(key, file_path):
     info_li = []
-    for token in get_xml()[key]:
+    for token in get_xml(file_path)[key]:
         if len(token)==1:
             info_li.append(None)
         elif len(token) == 0:
@@ -112,7 +113,7 @@ def get_sentence(key = "d000"):
             info_li.append([token[1], token[2]])
     return info_li
 
-def get_tag(treebank_tag):
+def get_wn_tag(treebank_tag):
     if treebank_tag.startswith('J') or treebank_tag == "ADJ":
         return "a"
     elif treebank_tag.startswith('V'):
@@ -124,48 +125,65 @@ def get_tag(treebank_tag):
     else:
         return ''
 
-def get_tag_infos(path = tree_paths2["d00"]):
-    infos = get_infos(path)
+def get_final_tag(treebank_tag):
+    if treebank_tag.startswith("NNP"):
+        return "PROPN"
+    elif treebank_tag.startswith('J') or treebank_tag == "ADJ":
+        return "ADJ"
+    elif treebank_tag.startswith('V') or treebank_tag == "MD":
+        return "VERB"
+    elif treebank_tag.startswith('N') or treebank_tag.startswith("PRO"):
+        return "NOUN"
+    elif treebank_tag.startswith('RB') or treebank_tag == "ADV":
+        return "ADV"
+    elif treebank_tag.startswith("CD"):
+        return "NUM"
+    else:
+        return ''
+
+def get_tag_infos(tree_path):
+    infos = get_infos(tree_path)
     new_list = []
     for elm in infos:
         a = elm[1:-1].split()
-        tag = get_tag(a[0])
+        tag = get_wn_tag(a[0])
+        gloss_tag = get_final_tag(a[0])
         token = a[1]
         if token == "'s":
             token = "is"
         if tag == "":
-            new_list.append([str(wnl.lemmatize(token)).lower(), a[0], tag])
+            new_list.append([str(wnl.lemmatize(token)).lower(), a[0], tag, gloss_tag])
         else:
-            new_list.append([wnl.lemmatize(token, pos=tag),  a[0], tag])
+            new_list.append([wnl.lemmatize(token, pos=tag).lower(),  a[0], tag, gloss_tag])
     return new_list
 
-def get_tag_and_info_list(key = "d00"):
-    token_list = get_tag_infos(tree_paths2[key])
-    info_list = get_sentence(key)
+def get_tag_and_info_list(key, file_path, tree_path):
+    token_list = get_tag_infos(tree_path[key])
+    info_list = get_sentence(key, file_path)
     return token_list, info_list
 
-def delete_stopwords(key, path):
-    stopwords = get_stopword_list(path)
-    tokens, infos = get_tag_and_info_list(key)
-    """
-    print (len(tokens))
-    print (len(get_infos(path)))
-    print (len(infos))
-    for idx in range(len(infos)):
-        print (infos[idx])
-        try:
-            print (tokens[idx])
-            print (get_infos(path)[idx])
-        except IndexError:
-            print ("foo")
-        print ("\n")
-    """
+def get_gloss_lemmas(path):
+    with open (path, "r") as f:
+        gloss_lemma_set = set()
+        for line in f.readlines():
+            gloss_lemma_set.add(line.split()[1])
+    return gloss_lemma_set
+
+def delete_stopwords(stop_path, key, gloss_path, file_path, tree_path):
+    stopwords = get_stopword_list(stop_path)
+    tokens, infos = get_tag_and_info_list(key, file_path, tree_path)
     new_tokens = []
     new_infos = []
+    gloss = get_gloss_lemmas(gloss_path)
+    punct = [",", ".", "!", "?", ":"]
     for idx in range(len(infos)):
         if infos[idx] == None:
             if tokens[idx][0] in stopwords:
                 continue
+            elif tokens[idx][0] not in gloss:
+                continue
+            elif tokens[idx][0] in punct:
+                continue
             else:
                 new_tokens.append(tokens[idx])
                 new_infos.append(infos[idx])
@@ -174,7 +192,6 @@ def delete_stopwords(key, path):
             new_infos.append(infos[idx])
     return new_tokens, new_infos
 
-
 def get_sats(tokens, info):
     sat_dict = {}
     for elm in info:
@@ -209,23 +226,23 @@ def get_sats(tokens, info):
         else:
             new_tokens.append(tokens[idx])
             new_info.append(info[idx])
-    print (len(info), len(new_info))
-    print (len(tokens), len(new_tokens))
     return [new_tokens, new_info]
 
-def write_pkl(path="stopwords.txt"):
-    for key in get_xml().keys():
-        without_stop_tokens, without_stop_info = delete_stopwords(key,path)
-
+def write_pkl(version = 2, stop_path="stopwords.txt", gloss_path = "gloss_mapping.txt"):
+    file_path = ""
+    tree_path = ""
+    if version == 2:
+        file_path = file_path2
+        tree_path = tree_paths2
+    elif version == 3:
+        file_path = file_path3
+        tree_path = tree_paths3
+    for key in get_xml(file_path).keys():
+        without_stop_tokens, without_stop_info = delete_stopwords(stop_path, key, gloss_path, file_path, tree_path)
         output = get_sats(without_stop_tokens, without_stop_info)
-
         with open(key+".pkl", "wb") as f:
             pkl.dump(output, f)
             print (key, "Done")
 
-#write_pkl()
-
-def read_pkl(path = "d000.pkl"):
-    with open (path, "rb") as f:
-        li = pkl.load(f)
-        return li
+if __name__ == "__main__":
+    write_pkl(version=3)
diff --git a/WSD/computed_keys.txt b/WSD/computed_keys.txt
new file mode 100644
index 0000000000000000000000000000000000000000..b5ae4471a34f0516e0673a878b1f2f63e87220c5
--- /dev/null
+++ b/WSD/computed_keys.txt
@@ -0,0 +1,2081 @@
+d000 d000.s000.t001 be%2:42:01::
+d000 d000.s000.t004 man%1:18:08::
+d000 d000.s000.t006 say%2:32:08::
+d000 d000.s001.t001 peer%2:39:00::
+d000 d000.s001.t005 drinking%1:04:00::
+d000 d000.s001.t006 companion%1:18:01::
+d000 d000.s001.t008 bleary%5:00:00:tired:00
+d000 d000.s001.t010 tear%1:04:00:: 
+d000 d000.s001.t011 eye%1:09:00::
+d000 d000.s002.t001 have%2:40:05::
+d000 d000.s002.t003 ready%5:00:01:available:00
+d000 d000.s002.t004 answer%1:10:01::
+d000 d000.s002.t007 much%3:00:00::
+d000 d000.s002.t010 surprise%1:04:00::
+d000 d000.s002.t014 fit%1:07:00::
+d000 d000.s002.t016 coughing%1:26:00::
+d000 d000.s003.t000 
+d000 d000.s003.t002 man%1:06:00::
+d000 d000.s003.t003 drunk%5:00:00:excited:00
+d000 d000.s003.t005 crazy%5:00:00:excited:00
+d000 d000.s004.t002 
+d000 d000.s004.t003 buddy%1:18:00::
+d000 d000.s004.t005 match%2:33:00::
+d000 d000.s004.t007 drink%1:17:00::
+d000 d000.s004.t009 drink%1:17:00::
+d000 d000.s004.t012 lose%2:40:01::
+d000 d000.s004.t013 count%1:04:00::
+d000 d000.s004.t017 man%1:18:08::
+d000 d000.s004.t019 eye%1:06:00::
+d000 d000.s004.t020 be%2:42:07::
+d000 d000.s004.t022 clear%5:00:00:net:00
+d000 d000.s005.t001 guy%1:06:00::
+d000 d000.s005.t002 be%2:42:07::
+d000 d000.s005.t005 rocker%1:06:02::
+d000 d000.s005.t008 think%2:31:02::
+d000 d000.s005.t015 look_away%2:39:00::
+d000 d000.s005.t019 eye%1:06:00::
+d000 d000.s006.t000 eyes%1:09:00::
+d000 d000.s006.t003 be%2:42:01::
+d000 d000.s006.t004 clear%5:00:00:distinct:00
+d000 d000.s006.t008 bright%5:00:00:intelligent:00
+d000 d000.s006.t011 strange%5:00:01:unfamiliar:00
+d000 d000.s006.t012 intensity%1:07:01::
+d000 d000.s006.t017 cold%5:00:00:far:00
+d000 d000.s006.t018 fire%1:10:00::
+d000 d000.s006.t019 burn%2:41:00::
+d000 d000.s007.t004 notice%2:32:00::
+d000 d000.s008.t003 man%1:14:00::
+d000 d000.s008.t004 be%2:42:00::
+d000 d000.s008.t006 drunk%3:00:00::
+d000 d000.s009.t001 wonder%2:31:00::
+d000 d000.s009.t004 get%2:40:14::
+d000 d000.s009.t005 tie%2:36:00::
+d000 d000.s009.t009 stranger%1:18:00::
+d000 d000.s010.t003 of_course%4:02:00::
+d000 d000.s010.t006 remember%2:31:01::
+d000 d000.s011.t002 blur%2:30:00::
+d000 d000.s011.t007 hour%1:07:00::
+d000 d000.s011.t009 steady%3:00:00::
+d000 d000.s011.t010 drinking%1:04:01::
+d000 d000.s011.t014 occasion%1:28:00::
+d000 d000.s011.t017 come_back%2:32:00::
+d000 d000.s012.t001 stranger%1:18:00::
+d000 d000.s012.t004 head%1:18:03::
+d000 d000.s012.t006 sink%2:30:00::
+d000 d000.s012.t009 thought%1:09:03::
+d000 d000.s012.t011 start%2:38:00::
+d000 d000.s012.t014 cross%2:38:03::
+d000 d000.s012.t016 street%1:14:00::
+d000 d000.s012.t019 light%1:15:00::
+d000 d000.s012.t023 huge%5:00:01:large:00
+d000 d000.s012.t024 moving_van%1:06:00::
+d000 d000.s012.t026 roar%2:32:02::
+d000 d000.s012.t029 intersection%1:04:00::
+d000 d000.s013.t000 brakes%1:06:00::
+d000 d000.s013.t001 howl%2:29:00::
+d000 d000.s013.t004 horn%1:06:05::
+d000 d000.s013.t005 blare%2:39:00::
+d000 d000.s013.t010 man%1:05:01::
+d000 d000.s013.t014 
+d000 d000.s013.t020 call_out%2:32:00::
+d000 d000.s013.t025 second%1:10:00::
+d000 d000.s014.t001 shout%1:10:00::
+d000 d000.s014.t003 be%2:42:13::
+d000 d000.s014.t004 involuntary%3:00:01::
+d000 d000.s014.t006 
+d000 d000.s014.t011 do%2:36:00::
+d000 d000.s014.t014 thinking%1:09:00::
+d000 d000.s014.t018 
+d000 d000.s015.t002 
+d000 d000.s015.t010 care%2:37:02::
+d000 d000.s015.t015 guy%1:18:00::
+d000 d000.s015.t018 hit%2:35:00::
+d000 d000.s016.t003 regret%2:32:02::
+d000 d000.s016.t006 open%2:41:00::
+d000 d000.s016.t008 mouth%1:10:00::
+d000 d000.s016.t011 truck%1:06:01::
+d000 d000.s016.t012 come_to%2:42:03::
+d000 d000.s016.t015 stop%1:15:00::
+d000 d000.s016.t018 angry%5:00:00:stormy:00
+d000 d000.s016.t019 driver%1:06:00::
+d000 d000.s016.t020 
+d000 d000.s016.t024 cab%1:06:02::
+d000 d000.s016.t026 walk%2:33:00::
+d000 d000.s017.t004 
+d000 d000.s017.t006 thank%2:32:00::
+d000 d000.s017.t010 have%2:40:00::
+d000 d000.s017.t012 arm%1:08:00::
+d000 d000.s017.t015 shoulder%1:13:00::
+d000 d000.s017.t019 be%2:42:07::
+d000 d000.s017.t021 old%5:00:00:past:00
+d000 d000.s017.t022 friend%1:18:02::
+d000 d000.s018.t002 driver%1:18:02::
+d000 d000.s018.t003 start%2:38:00::
+d000 d000.s018.t006 curse%2:32:02::
+d000 d000.s018.t015 be%2:42:00::
+d000 d000.s018.t018 plot%1:10:01::
+d000 d000.s018.t023 
+d000 d000.s018.t025 safe%5:00:00:sound:00 driving%1:04:03::
+d000 d000.s018.t026 record%1:21:00::
+d000 d000.s019.t002 man%1:18:08::
+d000 d000.s019.t005 save%2:41:00::
+d000 d000.s019.t007 turn%2:42:00::
+d000 d000.s019.t009 look%2:39:02::
+d000 d000.s019.t013 truck_driver%1:18:00::
+d000 d000.s019.t016 face%1:08:00::
+d000 d000.s019.t020 say%2:32:08::
+d000 d000.s019.t022 word%1:10:04::
+d000 d000.s020.t004 driver%1:18:02::
+d000 d000.s020.t005 stop%2:42:00::
+d000 d000.s020.t007 swear%2:31:10::
+d000 d000.s020.t011 turn%2:32:14::
+d000 d000.s020.t014 
+d000 d000.s020.t016 go%2:38:09::
+d000 d000.s020.t020 truck%1:06:01::
+d000 d000.s021.t003 give%2:40:11::
+d000 d000.s021.t005 much%3:00:00::
+d000 d000.s021.t006 thought%1:09:03::
+d000 d000.s021.t009 time%1:28:05::
+d000 d000.s022.t002 recall%2:32:02::
+d000 d000.s022.t008 wonder%2:32:12::
+d000 d000.s022.t011 truck%1:06:00::
+d000 d000.s022.t012 driver%1:18:00::
+d000 d000.s022.t014 see%2:39:03::
+d000 d000.s022.t018 eye%1:15:00::
+d000 d000.s022.t021 make%2:42:11::
+d000 d000.s023.t003 be%2:42:13::
+d000 d000.s023.t005 sort%1:18:00::
+d000 d000.s023.t007 look%1:07:00::
+d000 d000.s023.t011 call%2:32:03::
+d000 d000.s023.t013 bluff%1:10:00::
+d000 d000.s023.t016 say%2:32:01::
+d000 d000.s023.t018 word%1:23:00::
+d000 d000.s024.t002 light%1:18:00::
+d000 d000.s024.t003 go%2:35:13::
+d000 d000.s024.t005 way%1:21:00::
+d000 d000.s024.t009 go_on%2:38:00::
+d000 d000.s024.t013 street%1:14:00::
+d000 d000.s025.t003 
+d000 d000.s025.t004 find_out%2:32:01::
+d000 d000.s025.t008 be%2:42:01::
+d000 d000.s025.t011 
+d000 d000.s025.t016 favorite%5:00:00:loved:00
+d000 d000.s025.t017 bar%1:06:05::
+d000 d000.s025.t021 insist%2:32:03::
+d000 d000.s025.t024 offer%2:41:03::
+d000 d000.s025.t027 buy%2:40:03::
+d000 d000.s025.t028 drink%1:04:01::
+d000 d000.s026.t002 go%2:42:00::
+d000 d000.s026.t005 
+d000 d000.s026.t010 
+d000 d000.s026.t013 corner%1:06:01::
+d000 d000.s026.t015 pass%2:42:08::
+d000 d000.s026.t017 time%1:07:01::
+d000 d000.s026.t020 nurse%2:29:00::
+d000 d000.s026.t022 favorite%5:00:00:popular:00
+d000 d000.s026.t023 grudge%1:12:00::
+d000 d000.s027.t002 decide%2:31:00::
+d000 d000.s027.t007 mind%2:31:00::
+d000 d000.s027.t008 company%1:14:01::
+d000 d000.s027.t010 in_return%4:02:00::
+d000 d000.s027.t012 free%5:00:01:unoccupied:00
+d000 d000.s027.t013 drink%1:13:00::
+d000 d000.s027.t018 make%2:40:01::
+d000 d000.s027.t019 good%5:00:00:righteous:00
+d000 d000.s027.t020 money%1:21:02::
+d000 d000.s027.t023 job%1:04:02::
+d000 d000.s028.t001 be%2:42:07::
+d000 d000.s029.t002 wonder%2:31:00::
+d000 d000.s029.t005 be%2:42:07::
+d000 d000.s029.t010 have%2:40:05::
+d000 d000.s029.t012 screwball%1:18:00::
+d000 d000.s029.t014 company%1:14:01::
+d000 d000.s030.t004 take%2:40:05::
+d000 d000.s030.t006 offer%1:10:01::
+d000 d000.s030.t011 begin%2:30:01::
+d000 d000.s030.t014 feel%2:31:00::
+d000 d000.s030.t015 uneasy%5:00:00:uncomfortable:01
+d000 d000.s031.t003 get%2:30:03::
+d000 d000.s031.t005 coughing%1:26:00::
+d000 d000.s031.t007 
+d000 d000.s031.t011 realize%2:31:01::
+d000 d000.s031.t018 give%2:32:15::
+d000 d000.s031.t020 be%2:42:13::
+d000 d000.s031.t023 first_name%1:10:00::
+d000 d000.s031.t027 wait%2:31:00::
+d000 d000.s031.t030 answer%1:10:01::
+d000 d000.s031.t036 seem%2:42:00::
+d000 d000.s031.t039 wink%2:29:02::
+d000 d000.s031.t042 continue%2:38:00::
+d000 d000.s031.t045 stare%2:39:00::
+d000 d000.s032.t001 manage%2:41:03::
+d000 d000.s032.t003 weak%5:00:00:human:00
+d000 d000.s032.t004 laugh%1:10:01::
+d000 d000.s033.t007 think%2:30:00::
+d000 d000.s034.t000 thanks%1:10:00::
+d000 d000.s035.t001 faint%5:00:02:indistinct:00
+d000 d000.s035.t002 
+d000 d000.s035.t003 appear%2:30:00::
+d000 d000.s035.t006 man%1:18:03::
+d000 d000.s035.t008 eyebrow%1:08:00::
+d000 d000.s036.t002 think%2:31:06::
+d000 d000.s036.t007 take%2:31:03::
+d000 d000.s037.t001 mean%2:31:01::
+d000 d000.s038.t002 have%2:40:00::
+d000 d000.s038.t004 kind%1:09:00::
+d000 d000.s038.t006 grudge%1:12:00::
+d000 d000.s039.t004 
+d000 d000.s039.t008 truck%1:06:01::
+d000 d000.s039.t011 be%2:42:09::
+d000 d000.s040.t001 believe%2:31:00::
+d000 d000.s040.t004 return%2:32:00::
+d000 d000.s040.t005 favor%1:12:00::
+d000 d000.s041.t002 do%2:36:01::
+d000 d000.s041.t003 
+d000 d000.s041.t005 somebody%1:03:00::
+d000 d000.s041.t008 like%2:37:04::
+d000 d000.s042.t003 cost%2:42:00::
+d000 d000.s042.t006 cent%1:23:00::
+d000 d000.s043.t001 go_ahead%2:32:00::
+d000 d000.s043.t004 try%2:41:01::
+d000 d000.s044.t001 rub%2:35:01::
+d000 d000.s044.t003 forehead%1:08:01::
+d000 d000.s045.t002 begin%2:42:00::
+d000 d000.s045.t005 feel%2:31:01::
+d000 d000.s045.t006 woolly%5:00:00:soft:01
+d000 d000.s046.t004 be%2:42:01::
+d000 d000.s046.t008 humor%2:32:00::
+d000 d000.s046.t010 guy%1:18:00::
+d000 d000.s046.t013 make%2:38:05::
+d000 d000.s046.t015 exit%1:11:00::
+d000 d000.s047.t004 expect%2:31:01::
+d000 d000.s047.t005 
+d000 d000.s047.t007 come%2:42:05::
+d000 d000.s047.t013 be%2:42:07::
+d000 d000.s047.t015 few%3:00:00::
+d000 d000.s047.t016 people%1:14:00::
+d000 d000.s048.t002 right%5:00:00:appropriate:00
+d000 d000.s048.t006 concede%2:40:00::
+d000 d000.s048.t015 know%2:31:03::
+d000 d000.s048.t020 get_along_with%2:41:00::
+d000 d000.s048.t024 landlord%1:18:00::
+d000 d000.s049.t001 keep%2:42:00::
+d000 d000.s049.t003 rid%2:40:00::
+d000 d000.s049.t007 like%2:31:00::
+d000 d000.s049.t010 listen%2:41:11::
+d000 d000.s049.t013 radio%1:10:00::
+d000 d000.s049.t015 sing%2:32:01::
+d000 d000.s049.t019 take%2:38:05::
+d000 d000.s049.t021 bath%1:06:01::
+d000 d000.s050.t001 say%2:32:08::
+d000 d000.s050.t004 neighbor%1:17:00::
+d000 d000.s050.t005 complain%2:32:01::
+d000 d000.s050.t011 believe%2:31:03::
+d000 d000.s051.t004 tell%2:32:03::
+d000 d000.s051.t009 bother%2:38:00::
+d000 d000.s052.t001 man%1:18:08::
+d000 d000.s052.t002 close%2:32:05::
+d000 d000.s052.t004 eye%1:06:00::
+d000 d000.s052.t006 nod%2:32:01::
+d000 d000.s053.t002 look%2:31:00::
+d000 d000.s053.t007 seem%2:42:00::
+d000 d000.s053.t009 content%2:34:00::
+d000 d000.s054.t001 fine%5:00:00:thin:01
+d000 d000.s055.t001 give%2:40:15::
+d000 d000.s055.t004 address%1:10:01::
+d000 d000.s056.t002 take%2:38:09::
+d000 d000.s056.t004 little%5:00:00:young:00
+d000 d000.s056.t005 time%1:28:01::
+d000 d000.s057.t001 want%2:34:00::
+d000 d000.s057.t004 study%2:31:03::
+d000 d000.s057.t006 landlord%1:18:00::
+d000 d000.s057.t008 habit%1:04:02::
+d000 d000.s057.t010 movement%1:10:00::
+d000 d000.s058.t001 see%2:35:09::
+d000 d000.s058.t005 make%2:40:02::
+d000 d000.s058.t007 look%2:42:00::
+d000 d000.s058.t010 accident%1:11:00::
+d000 d000.s059.t001 suicide%1:18:00::
+d000 d000.s059.t005 look%2:39:02::
+d000 d000.s059.t006 reasonable%3:00:00::
+d000 d000.s060.t004 be%2:42:02::
+d000 d000.s060.t006 trouble%1:11:01::
+d000 d000.s060.t009 customer%1:18:00::
+d000 d000.s061.t002 eyebrow%1:08:00::
+d000 d000.s061.t003 fly%2:35:00::
+d000 d000.s062.t001 customer%1:18:00::
+d000 d000.s063.t001 smile%2:32:00::
+d000 d000.s064.t002 be%2:42:00::
+d000 d000.s064.t004 line_of_work%1:04:00::
+d000 d000.s064.t010 say%2:42:00::
+d000 d000.s065.t001 minute%1:28:01::
+d000 d000.s065.t007 make%2:36:08::
+d000 d000.s065.t009 break%1:04:05::
+d000 d000.s065.t012 
+d000 d000.s065.t013 stand_up%2:32:00::
+d000 d000.s065.t016 nod%2:32:00::
+d000 d000.s065.t017 farewell%1:10:00::
+d000 d000.s066.t001 watch%2:32:09::
+d000 d000.s066.t003 small%5:00:00:decreased:00
+d000 d000.s066.t005 wiry%5:00:00:thin:03
+d000 d000.s066.t006 man%1:18:08::
+d000 d000.s066.t007 slip%1:04:02::
+d000 d000.s066.t010 door%1:06:03::
+d000 d000.s066.t016 felt%2:35:01::
+d000 d000.s066.t017 relieve%2:40:00::
+d000 d000.s066.t020 see%2:41:00::
+d000 d000.s066.t024 seem%2:39:01::
+d000 d000.s066.t027 notice%2:39:00::
+d000 d000.s066.t029 departure%1:11:00::
+d000 d000.s067.t001 decide%2:31:00::
+d000 d000.s067.t004 stay%2:38:00::
+d000 d000.s067.t011 time%1:28:01::
+d000 d000.s067.t012 pass%2:38:05::
+d000 d000.s067.t014 seem%2:42:00::
+d000 d000.s067.t018 strange%5:00:01:unfamiliar:00
+d000 d000.s067.t019 little%5:00:00:young:00
+d000 d000.s067.t020 man%1:18:08::
+d000 d000.s067.t023 be%2:42:07::
+d000 d000.s067.t029 other%5:00:00:past:00
+d000 d000.s067.t030 glass%1:23:00::
+d000 d000.s067.t033 table%1:14:01::
+d000 d000.s068.t001 time%1:28:00::
+d000 d000.s068.t003 midnight%1:28:00::
+d000 d000.s068.t005 return%2:38:00::
+d000 d000.s068.t008 apartment%1:06:00::
+d000 d000.s068.t010 hit_the_sack%2:29:00::
+d000 d000.s068.t015 put%2:31:00::
+d000 d000.s068.t017 
+d000 d000.s068.t018 incident%1:26:00::
+d000 d000.s068.t021 mind%1:09:00::
+d000 d000.s068.t024 
+d000 d000.s069.t001 next%5:00:00:incoming:00
+d000 d000.s069.t002 day%1:28:02::
+d000 d000.s069.t007 hangover%1:18:00::
+d000 d000.s069.t008 remind%2:31:00::
+d000 d000.s069.t013 be%2:42:01::
+d000 d000.s069.t015 night%1:26:00::
+d000 d000.s070.t001 hangover%1:18:00::
+d000 d000.s070.t003 turn%1:10:00::
+d000 d000.s070.t004 remind%2:31:00::
+d000 d000.s070.t008 conversation%1:10:00::
+d000 d000.s070.t011 weirdy%1:18:00::
+d000 d000.s070.t015 groan%2:32:00::
+d000 d000.s071.t001 go%2:30:00::
+d000 d000.s071.t004 aspirin%1:06:00::
+d000 d000.s071.t008 day%1:28:02::
+d000 d000.s071.t011 pass%2:30:11::
+d000 d000.s071.t013 surly%5:00:00:ill-natured:00
+d000 d000.s071.t014 landlord%1:18:00::
+d000 d000.s071.t017 
+d000 d000.s071.t020 
+d000 d000.s071.t022 be%2:42:01::
+d000 d000.s071.t026 
+d000 d000.s071.t030 tenant%1:18:01::
+d000 d000.s071.t031 be%2:42:01::
+d000 d000.s071.t033 burden%1:09:01::
+d000 d000.s071.t036 life%1:16:00::
+d000 d000.s072.t001 shrug%2:29:00::
+d000 d000.s072.t003 ignore%2:31:01::
+d000 d000.s073.t001 go%2:42:10::
+d000 d000.s074.t003 landlord%1:18:00::
+d000 d000.s074.t004 be%2:42:00::
+d000 d000.s074.t006 
+d000 d000.s075.t001 of_course%4:02:00::
+d000 d000.s075.t006 mail%2:35:00::
+d000 d000.s075.t008 monthly%3:01:00::
+d000 d000.s075.t009 check%1:21:00::
+d000 d000.s075.t011 separate%3:00:00::
+d000 d000.s075.t012 maintenance%1:21:00::
+d000 d000.s075.t015 wife%1:18:00::
+d000 d000.s075.t019 wish%2:37:00::
+d000 d000.s075.t022 
+d000 d000.s075.t024 do%2:36:01::
+d000 d000.s075.t025 
+d000 d000.s076.t001 coming%1:04:02::
+d000 d000.s076.t002 home%1:06:01::
+d000 d000.s076.t004 work%1:19:00::
+d000 d000.s076.t008 startle%2:38:00::
+d000 d000.s076.t011 see%2:39:02::
+d000 d000.s076.t013 police%1:14:00::
+d000 d000.s076.t014 car%1:06:01::
+d000 d000.s076.t017 front%1:19:00::
+d000 d000.s076.t020 apartment%1:06:00::
+d000 d000.s076.t021 building%1:04:00::
+d000 d000.s077.t002 lobby%1:14:00::
+d000 d000.s077.t004 people%1:14:00::
+d000 d000.s077.t006 stand%2:31:00::
+d000 d000.s077.t010 talk%2:32:01::
+d000 d000.s078.t001 spine%1:05:00::
+d000 d000.s078.t002 crawl%2:42:01::
+d000 d000.s078.t005 foreboding%5:00:00:prophetic:00
+d000 d000.s078.t006 premonition%1:12:00::
+d000 d000.s078.t009 ask%2:42:00::
+d000 d000.s078.t013 fellow%1:18:02::
+d000 d000.s078.t014 tenant%1:18:01::
+d000 d000.s078.t018 happen%2:40:12::
+d000 d000.s079.t001 landlord%1:18:00::
+d000 d000.s079.t003 die%2:30:00::
+d000 d000.s080.t002 afternoon%1:28:00::
+d000 d000.s080.t005 seem%2:39:02::
+d000 d000.s080.t009 fall%2:30:13::
+d000 d000.s080.t012 
+d000 d000.s080.t016 obscure%5:00:00:inglorious:00
+d000 d000.s080.t017 errand%1:04:00::
+d000 d000.s080.t019 inspection%1:04:00::
+d000 d000.s081.t003 be%2:42:07::
+d000 d000.s082.t000 nobody%1:18:00::
+d000 d000.s082.t001 witness%2:39:00::
+d000 d000.s082.t003 fall%1:28:01::
+d000 d000.s082.t007 sickening%5:00:00:unwholesome:00
+d000 d000.s082.t008 impact%1:04:00::
+d000 d000.s082.t011 body%1:07:00::
+d000 d000.s082.t012 
+d000 d000.s082.t015 pavement%1:06:00::
+d000 d000.s082.t019 basement%1:06:01::
+d000 d000.s082.t020 delivery%1:10:00::
+d000 d000.s082.t021 entrance%1:11:00::
+d000 d000.s083.t001 hop%2:38:02::
+d000 d000.s083.t003 nobody%1:18:00::
+d000 d000.s083.t004 notice%2:39:00::
+d000 d000.s083.t006 sudden%3:00:00::
+d000 d000.s083.t007 pallor%1:07:00::
+d000 d000.s083.t011 felt%2:35:01::
+d000 d000.s083.t013 blood%1:18:00::
+d000 d000.s083.t014 drain%2:30:04::
+d000 d000.s083.t017 cheek%1:07:00::
+d000 d000.s084.t001 mutter%2:32:00::
+d000 d000.s084.t002 
+d000 d000.s084.t005 terrible%5:00:00:intense:00
+d000 d000.s084.t007 be%2:42:01::
+d000 d000.s084.t010 walk%2:41:00::
+d000 d000.s084.t012 deliberate%5:00:00:thoughtful:00
+d000 d000.s084.t013 slowness%1:09:01::
+d000 d000.s084.t016 elevator%1:06:01::
+d000 d000.s085.t003 apartment%1:06:00::
+d000 d000.s085.t006 pour%2:38:03::
+d000 d000.s085.t008 drink%1:04:01::
+d000 d000.s085.t010 tremble%2:38:00::
+d000 d000.s085.t011 hand%1:18:00::
+d000 d000.s085.t013 flop%2:38:01::
+d000 d000.s085.t017 chair%1:06:01::
+d000 d000.s086.t002 while%1:28:00::
+d000 d000.s086.t004 begin%2:30:01::
+d000 d000.s086.t007 feel%2:31:00::
+d000 d000.s086.t016 bother%2:38:00::
+d000 d000.s086.t019 ask%2:32:09::
+d000 d000.s086.t021 question%1:10:01::
+d000 d000.s088.t005 convince%2:32:00::
+d000 d000.s088.t009 be%2:42:07::
+d000 d000.s088.t011 accident%1:11:01::
+d000 d000.s088.t015 coincidence%1:11:00::
+d000 d000.s089.t001 
+d000 d000.s089.t003 have%2:40:05::
+d000 d000.s089.t004 nothing%1:23:00::
+d000 d000.s089.t007 do%2:36:01::
+d000 d000.s089.t012 course%1:04:01::
+d000 d000.s090.t001 go_to_bed%2:29:00::
+d000 d000.s090.t005 happy%5:00:00:fortunate:00
+d000 d000.s090.t010 be%2:42:01::
+d000 d000.s090.t011 rid%2:40:00::
+d000 d000.s090.t014 lousy%5:00:00:dirty:01
+d000 d000.s090.t015 landlord%1:18:00::
+d000 d000.s091.t004 man%1:18:08::
+d000 d000.s091.t005 have%2:40:05::
+d000 d000.s091.t007 family%1:14:01::
+d000 d000.s091.t012 suffer%2:31:00::
+d000 d000.s091.t016 be%2:42:01::
+d000 d000.s092.t003 say%2:32:08::
+d000 d000.s092.t008 kill%2:42:00::
+d000 d000.s092.t010 man%1:18:08::
+d000 d000.s092.t014 favor%1:04:00::
+d000 d000.s093.t002 think%2:31:00::
+d000 d000.s093.t007 mean%2:31:05::
+d000 d000.s093.t010 say%2:32:08::
+d000 d000.s094.t001 
+d000 d000.s094.t003 eye%1:06:00::
+d000 d000.s094.t004 be%2:42:01::
+d000 d000.s094.t005 large%5:00:00:pregnant:00
+d000 d000.s094.t007 sad%5:00:00:bad:00
+d000 d000.s094.t014 hurt%2:30:04::
+d000 d000.s094.t016 feeling%1:26:00::
+d000 d000.s095.t001 be%2:42:01::
+d000 d000.s095.t004 recurrent%5:00:00:continual:00
+d000 d000.s095.t006 annoying%5:00:00:disagreeable:00
+d000 d000.s095.t007 dream%1:09:04::
+d000 d000.s095.t012 dream%1:09:04::
+d000 d000.s095.t014 begin%2:32:03::
+d000 d000.s095.t017 take%2:31:02::
+d000 d000.s095.t019 overtone%1:10:00::
+d000 d000.s095.t022 nightmare%1:09:00::
+d000 d000.s096.t003 know%2:35:00::
+d000 d000.s096.t006 be%2:42:01::
+d000 d000.s096.t009 dream%1:09:04::
+d000 d000.s097.t002 be%2:42:13::
+d000 d000.s097.t004 tight%5:00:00:difficult:00
+d000 d000.s097.t008 know%2:31:03::
+d000 d000.s097.t011 be%2:42:13::
+d000 d000.s098.t001 be%2:42:09::
+d000 d000.s098.t003 same%3:00:00::
+d000 d000.s098.t004 bar%1:06:05::
+d000 d000.s098.t008 be%2:42:09::
+d000 d000.s098.t010 week%1:28:01::
+d000 d000.s098.t014 night%1:28:03::
+d000 d000.s098.t018 have%2:30:00::
+d000 d000.s098.t020 excuse%1:10:00::
+d000 d000.s098.t023 drink%2:34:02::
+d000 d000.s098.t026 usual%5:00:00:familiar:02
+d000 d000.s099.t003 sit%2:38:03::
+d000 d000.s099.t006 usual%5:00:00:familiar:02
+d000 d000.s099.t007 corner%1:06:02::
+d000 d000.s099.t010 little%5:00:00:young:00
+d000 d000.s099.t011 table%1:14:01::
+d000 d000.s099.t016 
+d000 d000.s099.t019 talkative%5:00:00:communicative:00
+d000 d000.s099.t021 friendly%3:00:01::
+d000 d000.s099.t022 lush%1:18:00::
+d000 d000.s100.t001 be%2:42:09::
+d000 d000.s100.t002 enjoy%2:37:00::
+d000 d000.s100.t004 weekly%3:01:00::
+d000 d000.s100.t005 ritual%1:04:01::
+d000 d000.s100.t008 wash_down%2:34:00::
+d000 d000.s100.t011 pet%1:18:00::
+d000 d000.s100.t012 grievance%1:10:00::
+d000 d000.s100.t014 bourbon%1:13:00::
+d000 d000.s100.t018 water%1:27:00::
+d000 d000.s101.t001 favorite%5:00:00:popular:00
+d000 d000.s101.t002 grievance%1:12:00::
+d000 d000.s101.t003 be%2:41:00::
+d000 d000.s101.t006 landlord%1:18:00::
+d000 d000.s102.t004 forget%2:31:02::
+d000 d000.s103.t001 fact%1:26:01::
+d000 d000.s103.t006 mention%2:32:00::
+d000 d000.s103.t010 spur%1:10:00::
+d000 d000.s103.t013 moment%1:07:00::
+d000 d000.s104.t001 real%5:00:00:concrete:00
+d000 d000.s104.t002 grievance%1:10:01::
+d000 d000.s104.t003 be%2:42:13::
+d000 d000.s105.t002 end%1:09:00::
+d000 d000.s105.t005 fourth%5:00:00:ordinal:00
+d000 d000.s105.t006 hairy%3:00:00::
+d000 d000.s105.t013 make%2:29:01::
+d000 d000.s105.t014 
+d000 d000.s105.t015 ring%1:06:02::
+d000 d000.s105.t021 bottom%1:06:00::
+d000 d000.s105.t024 glass%1:06:04::
+d000 d000.s105.t027 become%2:42:01::
+d000 d000.s105.t028 aware%3:00:04::
+d000 d000.s105.t031 be%2:40:00::
+d000 d000.s106.t001 look%2:39:02::
+d000 d000.s106.t004 bloodshot%5:00:00:unhealthy:00
+d000 d000.s106.t005 eye%1:06:00::
+d000 d000.s106.t007 behold%2:39:00::
+d000 d000.s106.t009 
+d000 d000.s106.t010 sit%2:38:03::
+d000 d000.s106.t013 table%1:14:01::
+d000 d000.s106.t015 smile%2:29:00::
+d000 d000.s106.t017 secret%5:00:02:concealed:00
+d000 d000.s106.t018 smile%1:10:00::
+d000 d000.s106.t025 be%2:42:13::
+d000 d000.s106.t026 fellow%1:18:03::
+d000 d000.s106.t027 conspirator%1:18:00::
+d000 d000.s107.t004 notice%2:32:01::
+d000 d000.s107.t008 be%2:42:01::
+d000 d000.s107.t010 name%1:14:00::
+d000 d000.s107.t020 see%2:32:00::
+d000 d000.s107.t022 sit_down%2:35:00::
+d000 d000.s108.t001 man%1:05:01::
+d000 d000.s108.t002 be%2:42:09::
+d000 d000.s108.t003 uncanny%5:00:00:unnatural:00
+d000 d000.s108.t007 shadow%1:26:01::
+d000 d000.s108.t010 make%2:36:08::
+d000 d000.s108.t012 much%3:00:00::
+d000 d000.s108.t013 noise%1:11:01::
+d000 d000.s108.t016 shadow%1:09:00::
+d000 d000.s109.t001 
+d000 d000.s109.t004 shrink%2:30:11::
+d000 d000.s109.t007 out_of_sight%5:00:00:invisible:00
+d000 d000.s109.t011 be%2:40:00::
+d000 d000.s109.t013 trap%2:35:01::
+d000 d000.s109.t017 corner%1:06:00::
+d000 d000.s109.t020 
+d000 d000.s109.t022 dark%5:00:00:black:02
+d000 d000.s109.t023 little%5:00:00:emotional:00
+d000 d000.s109.t024 man%1:18:00::
+d000 d000.s110.t001 begin%2:42:04::
+d000 d000.s110.t004 wish%2:32:01::
+d000 d000.s110.t009 shout%2:32:01::
+d000 d000.s110.t011 other%5:00:02:past:00
+d000 d000.s110.t012 evening%1:28:00::
+d000 d000.s110.t015 truck%1:06:01::
+d000 d000.s110.t016 
+d000 d000.s110.t020 crossing%1:17:00::
+d000 d000.s111.t002 go%2:30:04::
+d000 d000.s111.t005 be%2:42:02::
+d000 d000.s111.t006 saddle%2:32:00::
+d000 d000.s111.t013 creep%1:06:00::
+d000 d000.s111.t016 bar%1:06:05:: buddy%1:18:00::
+d000 d000.s112.t002 have%2:40:00::
+d000 d000.s112.t005 start%2:38:02::
+d000 d000.s112.t007 go%2:35:13::
+d000 d000.s112.t012 other%5:00:00:past:00
+d000 d000.s112.t013 place%1:15:05::
+d000 d000.s113.t002 low%3:00:03::
+d000 d000.s113.t003 voice%1:07:01::
+d000 d000.s113.t007 whisper%2:32:00::
+d000 d000.s113.t010 man%1:06:00::
+d000 d000.s113.t012 ask%2:32:02::
+d000 d000.s113.t016 be%2:42:13::
+d000 d000.s113.t017 happy%5:00:00:fortunate:00
+d000 d000.s113.t020 way%1:21:00::
+d000 d000.s113.t022 landlord%1:18:00::
+d000 d000.s113.t025 take_off%2:38:00::
+d000 d000.s113.t029 back%1:08:00::
+d000 d000.s114.t001 make%2:42:15::
+d000 d000.s114.t003 mistake%1:04:00::
+d000 d000.s114.t006 answer%2:31:05::
+d000 d000.s114.t009 offhand%5:00:00:careless:00
+d000 d000.s114.t010 way%1:09:01::
+d000 d000.s114.t014 realize%2:31:01::
+d000 d000.s114.t017 skepticism%1:09:00::
+d000 d000.s114.t020 show%2:39:00::
+d000 d000.s114.t023 face%1:08:00::
+d000 d000.s114.t025 voice%1:10:02::
+d000 d000.s115.t001 frown%2:29:00::
+d000 d000.s115.t005 become%2:42:03::
+d000 d000.s115.t006 sad%5:00:00:sorrowful:00
+d000 d000.s115.t008 moody%5:00:00:ill-natured:00
+d000 d000.s116.t003 want%2:42:01::
+d000 d000.s116.t006 encourage%2:41:00::
+d000 d000.s116.t008 company%1:14:02::
+d000 d000.s116.t011 felt%2:35:01::
+d000 d000.s116.t016 buy%2:40:02::
+d000 d000.s116.t019 drink%1:13:00::
+d000 d000.s116.t024 prevent%2:41:01::
+d000 d000.s116.t025 possible%3:00:04::
+d000 d000.s116.t026 trouble%1:26:02::
+d000 d000.s117.t002 be%2:42:02::
+d000 d000.s117.t004 trouble%1:11:01::
+d000 d000.s118.t001 guy%1:18:00::
+d000 d000.s118.t002 sulk%2:42:00::
+d000 d000.s118.t005 drink%1:13:04::
+d000 d000.s118.t008 upset%2:35:00::
+d000 d000.s118.t012 lack%1:26:00::
+d000 d000.s118.t014 appreciation%1:04:01::
+d000 d000.s119.t002 break%2:32:05::
+d000 d000.s119.t004 uncomfortable%3:00:01::
+d000 d000.s119.t005 silence%1:26:00::
+d000 d000.s119.t008 begin%2:32:03::
+d000 d000.s119.t011 talk%2:32:05::
+d000 d000.s120.t001 time%1:28:01::
+d000 d000.s120.t005 drink%1:04:01::
+d000 d000.s120.t010 complain%2:32:01::
+d000 d000.s120.t014 wife%1:18:00::
+d000 d000.s120.t017 be%2:42:01::
+d000 d000.s120.t020 subject%1:09:00::
+d000 d000.s120.t023 minute%1:07:00::
+d000 d000.s120.t028 notice%2:32:00::
+d000 d000.s120.t030 renewed%5:00:00:revived:00
+d000 d000.s120.t031 interest%1:14:00::
+d000 d000.s120.t034 listener%1:18:00::
+d000 d000.s120.t037 show%2:32:02::
+d000 d000.s120.t040 
+d000 d000.s120.t041 face%1:10:01::
+d000 d000.s120.t045 bright%5:00:00:reverberant:00
+d000 d000.s120.t046 eye%1:09:00::
+d000 d000.s121.t002 pause%2:32:01::
+d000 d000.s121.t005 moisten%2:30:00::
+d000 d000.s121.t007 throat%1:08:00::
+d000 d000.s121.t010 stranger%1:18:00::
+d000 d000.s121.t011 break_in%2:35:00::
+d000 d000.s122.t004 pay%2:40:01::
+d000 d000.s122.t006 bill%1:10:04::
+d000 d000.s123.t002 run_around%2:38:00::
+d000 d000.s123.t005 other%5:00:00:past:00
+d000 d000.s123.t006 men%1:14:00::
+d000 d000.s123.t011 hate%2:37:00::
+d000 d000.s123.t015 say%2:32:08::
+d000 d000.s123.t021 divorce%2:41:01::
+d000 d000.s124.t001 scowl%2:29:00::
+d000 d000.s125.t002 bitch%1:10:00::
+d000 d000.s125.t004 love%2:37:00::
+d000 d000.s125.t006 divorce%1:04:00::
+d000 d000.s125.t010 growl%2:32:00::
+d000 d000.s126.t004 get%2:40:01::
+d000 d000.s126.t005 half%1:28:00::
+d000 d000.s126.t010 have%2:40:02::
+d000 d000.s127.t000 community_property%1:21:00::
+d000 d000.s127.t002 deal%1:14:00::
+d000 d000.s127.t005 know%2:31:01::
+d000 d000.s128.t002 have%2:40:05::
+d000 d000.s128.t005 sell_out%2:40:00::
+d000 d000.s128.t008 business%1:09:01::
+d000 d000.s128.t011 pay_off%2:40:04::
+d000 d000.s128.t016 share%1:21:00::
+d000 d000.s129.t002 drop%2:41:01::
+d000 d000.s130.t001 nod%2:38:00::
+d000 d000.s132.t002 see%2:41:12::
+d000 d000.s133.t002 understand%2:31:00::
+d000 d000.s133.t007 be%2:40:00::
+d000 d000.s133.t010 state%1:14:01::
+d000 d000.s134.t001 come%2:31:14::
+d000 d000.s134.t006 retire%2:40:00::
+d000 d000.s135.t001 be%2:42:07::
+d000 d000.s135.t007 do%2:36:01::
+d000 d000.s135.t009 free%5:00:01:unoccupied:00
+d000 d000.s135.t010 job%1:06:00::
+d000 d000.s136.t003 tell%2:32:08::
+d000 d000.s137.t001 felt%2:30:00::
+d000 d000.s137.t003 twinge%1:09:00::
+d000 d000.s137.t005 annoyance%1:04:00::
+d000 d000.s137.t008 hear%2:31:00::
+d000 d000.s137.t011 familiar%5:00:00:close:02
+d000 d000.s137.t012 
+d000 d000.s138.t002 
+d000 d000.s138.t003 thought%1:09:03::
+d000 d000.s138.t004 run%2:42:00::
+d000 d000.s138.t005 circle%1:14:00::
+d000 d000.s138.t008 clouded%5:00:00:unclear:00
+d000 d000.s138.t009 brain%1:13:00::
+d000 d000.s139.t001 
+d000 d000.s139.t006 
+d000 d000.s139.t010 guy%1:18:00::
+d000 d000.s139.t011 be%2:42:07::
+d000 d000.s139.t015 say%2:32:08::
+d000 d000.s139.t018 be%2:42:07::
+d000 d000.s140.t001 retired%5:00:00:inactive:08
+d000 d000.s140.t002 professional%5:00:00:white-collar:00
+d000 d000.s140.t003 killer%1:09:00::
+d000 d000.s141.t002 be%2:42:07::
+d000 d000.s141.t005 nut%1:18:02::
+d000 d000.s141.t008 harm%1:04:00::
+d000 d000.s141.t010 do%2:36:01::
+d000 d000.s142.t003 be%2:42:00::
+d000 d000.s142.t005 real_thing%1:07:00::
+d000 d000.s142.t010 do%2:29:04::
+d000 d000.s142.t011 
+d000 d000.s143.t001 felt%2:30:00::
+d000 d000.s143.t003 cunning%5:00:00:artful:00
+d000 d000.s143.t006 proud%3:00:00::
+d000 d000.s143.t011 play%2:35:00::
+d000 d000.s143.t014 other%5:00:00:past:00
+d000 d000.s143.t015 man%1:18:08::
+d000 d000.s143.t017 soft_spot%1:12:00::
+d000 d000.s144.t002 
+d000 d000.s144.t003 intend%2:32:02::
+d000 d000.s144.t007 say%2:32:01::
+d000 d000.s145.t003 be%2:42:01::
+d000 d000.s145.t010 know%2:35:00::
+d000 d000.s146.t001 cop%1:18:00::
+d000 d000.s146.t004 suspect%2:31:00::
+d000 d000.s146.t006 thing%1:10:00::
+d000 d000.s146.t010 think%2:31:02::
+d000 d000.s146.t013 be%2:42:07::
+d000 d000.s146.t015 coincidence%1:11:00::
+d000 d000.s147.t006 know%2:31:11::
+d000 d000.s148.t003 be%2:41:00::
+d000 d000.s148.t005 accident%1:11:00::
+d000 d000.s149.t001 shrug%2:29:00::
+d000 d000.s150.t004 say%2:32:03::
+d000 d000.s150.t007 manage%2:41:09::
+d000 d000.s151.t001 stranger%1:18:00::
+d000 d000.s151.t003 hook%2:35:02::
+d000 d000.s152.t001 eye%1:06:00::
+d000 d000.s152.t002 burn%2:41:00::
+d000 d000.s153.t007 mutter%2:32:00::
+d000 d000.s154.t002 of_course%4:02:00::
+d000 d000.s154.t004 look%2:42:00::
+d000 d000.s154.t007 accident%1:11:00::
+d000 d000.s155.t002 work%2:34:10::
+d000 d000.s155.t005 way%1:21:00::
+d000 d000.s155.t011 time%1:28:01::
+d000 d000.s155.t014 customer%1:18:00::
+d000 d000.s155.t015 have%2:40:05::
+d000 d000.s155.t017 alibi%1:10:01::
+d000 d000.s156.t001 let%2:32:00::
+d000 d000.s156.t003 prove%2:38:01::
+d000 d000.s157.t001 think%2:31:00::
+d000 d000.s157.t005 manage%2:41:08::
+d000 d000.s157.t008 favor%1:04:00::
+d000 d000.s158.t001 wait%2:42:01::
+d000 d000.s159.t001 swish%2:38:00::
+d000 d000.s159.t003 liquor%1:13:01::
+d000 d000.s159.t006 bottom%1:15:01::
+d000 d000.s159.t009 glass%1:23:00::
+d001 d001.s000.t002 rout%1:14:00::
+d001 d001.s000.t006 congressional%3:01:00::
+d001 d001.s000.t007 hopeful%1:18:00::
+d001 d001.s000.t011 district%1:15:00::
+d001 d001.s000.t016 back%2:30:01::
+d001 d001.s000.t018 democratic%3:00:00::
+d001 d001.s000.t019 presidential%3:00:00::
+d001 d001.s000.t020 candidate%1:18:01::
+d001 d001.s000.t024 be%2:42:02::
+d001 d001.s000.t026 reminder%1:09:00::
+d001 d001.s000.t033 federal%5:00:00:national:01
+d001 d001.s000.t034 level%1:07:00::
+d001 d001.s000.t036 political%3:01:02::
+d001 d001.s000.t038 
+d001 d001.s000.t039 splitting%5:00:00:cacophonous:00
+d001 d001.s000.t042 be%2:42:07::
+d001 d001.s000.t045 rise%1:04:00::
+d001 d001.s000.t048 past%5:00:00:outgoing:00
+d001 d001.s000.t049 
+d001 d001.s001.t003 presidential%3:00:00::
+d001 d001.s001.t004 election%1:04:01::
+d001 d001.s001.t005 year%1:28:01::
+d001 d001.s001.t013 
+d001 d001.s001.t016 nation%1:14:02::
+d001 d001.s001.t018 congressional%3:01:00::
+d001 d001.s001.t019 district%1:15:00::
+d001 d001.s001.t020 choose%2:31:02::
+d001 d001.s001.t022 different%5:00:01:other:00
+d001 d001.s001.t023 party%1:14:02::
+d001 d001.s001.t025 candidate%1:18:01::
+d001 d001.s002.t002 percentage%1:24:00::
+d001 d001.s002.t004 equal%2:42:00::
+d001 d001.s002.t006 third%5:00:00:ordinal:00
+d001 d001.s002.t010 be%2:42:07::
+d001 d001.s002.t013 
+d001 d001.s003.t002 know%2:31:03::
+d001 d001.s003.t004 voter%1:18:00::
+d001 d001.s003.t005 tend%2:41:01::
+d001 d001.s003.t008 favor%2:31:00::
+d001 d001.s003.t009 
+d001 d001.s003.t013 race%1:11:00::
+d001 d001.s003.t015 president%1:18:03::
+d001 d001.s004.t002 presidential%3:01:00::
+d001 d001.s004.t003 election%1:04:01::
+d001 d001.s004.t006 past%5:00:00:outgoing:00
+d001 d001.s004.t007 
+d001 d001.s004.t014 presidential%3:01:00::
+d001 d001.s004.t015 candidacy%1:04:00::
+d001 d001.s004.t020 capture%2:36:00::
+d001 d001.s004.t023 percentage%1:21:00::
+d001 d001.s004.t026 major%3:00:02:: party%2:41:00::
+d001 d001.s004.t027 popular%5:00:00:nonclassical:00
+d001 d001.s004.t028 vote%1:04:00::
+d001 d001.s004.t030 president%1:18:01::
+d001 d001.s004.t035 congressional%3:01:00::
+d001 d001.s004.t036 
+d001 d001.s004.t039 popular%3:00:00::
+d001 d001.s004.t040 vote%1:07:00::
+d001 d001.s005.t005 pattern%1:09:03::
+d001 d001.s005.t006 be%2:42:07::
+d001 d001.s005.t009 opposite%1:24:04::
+d001 d001.s006.t002 account%2:32:02::
+d001 d001.s006.t005 result%1:19:00::
+d001 d001.s006.t007 recent%5:00:00:new:00
+d001 d001.s006.t008 decade%1:28:00::
+d001 d001.s007.t001 simple%5:00:00:plain:01
+d001 d001.s007.t002 economic%5:00:00:worldly:00
+d001 d001.s007.t003 theory%1:09:01::
+d001 d001.s007.t005 provide%2:32:00::
+d001 d001.s007.t009 partial%5:00:00:incomplete:00
+d001 d001.s007.t010 explanation%1:09:00::
+d001 d001.s007.t013 split_personality%1:26:00::
+d001 d001.s007.t015 display%2:41:00::
+d001 d001.s007.t018 
+d001 d001.s007.t021 voting_booth%1:06:00::
+d001 d001.s008.t001 theory%1:09:02::
+d001 d001.s008.t002 rely%2:31:11::
+d001 d001.s008.t005 assumption%1:07:00::
+d001 d001.s009.t002 
+d001 d001.s009.t005 buy%2:40:03::
+d001 d001.s009.t010 brand%1:10:01::
+d001 d001.s009.t014 select%2:31:00::
+d001 d001.s009.t016 political%3:01:02::
+d001 d001.s009.t017 agent%1:18:02::
+d001 d001.s009.t021 republican%5:00:00:democratic:00
+d001 d001.s009.t022 brand%1:10:01::
+d001 d001.s009.t025 believe%2:31:04::
+d001 d001.s009.t028 minimalist%3:01:00::
+d001 d001.s009.t029 state%1:03:00::
+d001 d001.s009.t033 virtue%1:07:04::
+d001 d001.s009.t035 private%5:00:00:personal:00
+d001 d001.s009.t036 
+d001 d001.s009.t039 vice%1:04:00::
+d001 d001.s009.t041 public%3:00:00::
+d001 d001.s009.t042 action%1:04:01::
+d001 d001.s009.t046 democratic%5:00:00:common:01
+d001 d001.s009.t047 brand%1:10:01::
+d001 d001.s009.t050 believe%2:31:03::
+d001 d001.s009.t052 big%5:00:00:pregnant:00
+d001 d001.s009.t053 government%1:09:00::
+d001 d001.s009.t056 public%3:00:00::
+d001 d001.s009.t057 
+d001 d001.s009.t060 remedy%2:30:00::
+d001 d001.s009.t062 excess%1:04:00::
+d001 d001.s009.t063 attendant%5:00:00:related:02
+d001 d001.s009.t066 
+d001 d001.s009.t068 private%5:00:02:personal:00
+d001 d001.s009.t069 interest%1:07:02::
+d001 d001.s010.t002 congressional%3:01:00::
+d001 d001.s010.t003 representative%1:18:02::
+d001 d001.s010.t004 have%2:36:00::
+d001 d001.s010.t006 basic%5:00:00:standard:01
+d001 d001.s010.t007 responsibility%1:07:00::
+d001 d001.s010.t011 vote%2:41:13::
+d001 d001.s010.t013 office%1:14:01::
+d001 d001.s010.t016 deal%2:40:06::
+d001 d001.s010.t018 national%3:01:02::
+d001 d001.s010.t019 issue%1:18:00::
+d001 d001.s010.t021 
+d001 d001.s010.t022 action%1:04:01::
+d001 d001.s010.t023 
+d001 d001.s010.t026 cast%2:35:01::
+d001 d001.s010.t027 roll_call%1:04:00::
+d001 d001.s010.t029 vote%1:04:00::
+d001 d001.s010.t031 legislation%1:10:00::
+d001 d001.s010.t034 impose%2:41:00::
+d001 d001.s010.t035 cost%1:07:00::
+d001 d001.s010.t037 confer%2:40:00::
+d001 d001.s010.t038 benefit%1:07:00::
+d001 d001.s010.t041 population%1:04:00::
+d001 d001.s010.t043 at_large%5:00:00:free:00
+d001 d001.s010.t046 attend%2:39:00::
+d001 d001.s010.t048 local%3:00:01::
+d001 d001.s010.t049 issue%1:21:00::
+d001 d001.s010.t051 constituency%1:14:00::
+d001 d001.s010.t052 service%1:04:01::
+d001 d001.s010.t054 pork_barrel%1:21:00::
+d001 d001.s011.t002 republican%5:00:00:democratic:00
+d001 d001.s011.t003 congressional%3:01:00::
+d001 d001.s011.t004 representative%1:18:02::
+d001 d001.s011.t009 belief%1:09:01::
+d001 d001.s011.t012 minimalist%3:01:00::
+d001 d001.s011.t013 state%1:14:01::
+d001 d001.s011.t015 be%2:42:13::
+d001 d001.s011.t017 willing%3:00:00::
+d001 d001.s011.t020 engage%2:35:00::
+d001 d001.s011.t022 local%3:00:02::
+d001 d001.s011.t023 benefit%2:40:01:: seeking%1:04:01::
+d001 d001.s011.t025 be%2:42:13::
+d001 d001.s011.t026 democratic%5:00:00:common:01
+d001 d001.s011.t027 member%1:14:00::
+d001 d001.s012.t002 assumption%1:09:00::
+d001 d001.s012.t003 hold%2:40:02::
+d001 d001.s012.t005 voter%1:18:00::
+d001 d001.s012.t007 race%1:11:00::
+d001 d001.s012.t010 face%2:33:00::
+d001 d001.s012.t014 economic%5:00:00:profitable:00
+d001 d001.s012.t015 theory%1:09:02::
+d001 d001.s012.t016 be%2:42:13::
+d001 d001.s012.t020 prisoner%1:18:00::
+d001 d001.s012.t022 dilemma%1:09:00::
+d001 d001.s012.t024 have%2:42:00::
+d001 d001.s012.t026 incentive%1:21:00::
+d001 d001.s012.t031 margin%1:21:01::
+d001 d001.s012.t035 lean%2:31:10::
+d001 d001.s012.t036 democratic%3:00:00::
+d001 d001.s013.t002 put%2:40:00::
+d001 d001.s013.t006 office%1:14:01::
+d001 d001.s013.t012 
+d001 d001.s013.t015 
+d001 d001.s013.t017 local%3:01:01::
+d001 d001.s013.t018 benefit%1:07:00::
+d001 d001.s013.t022 legislator%1:18:00::
+d001 d001.s013.t024 be%2:42:01::
+d001 d001.s013.t026 powerless%3:00:00::
+d001 d001.s013.t029 prevent%2:41:01::
+d001 d001.s013.t030 other%5:00:00:past:00
+d001 d001.s013.t031 legislator%1:18:00::
+d001 d001.s013.t035 bring%2:35:02::
+d001 d001.s013.t036 home%1:15:03::
+d001 d001.s013.t038 bacon%1:13:00::
+d001 d001.s013.t042 respective%5:00:00:individual:00
+d001 d001.s013.t043 constituency%1:14:00::
+d001 d001.s014.t001 legislator%1:18:00::
+d001 d001.s014.t006 be%2:42:07::
+d001 d001.s014.t014 come%2:42:05::
+d001 d001.s014.t016 national%3:01:02::
+d001 d001.s014.t017 policy%1:10:00::
+d001 d001.s014.t018 
+d001 d001.s015.t001 race%1:14:00::
+d001 d001.s015.t008 voter%1:18:00::
+d001 d001.s015.t010 incentive%1:21:00::
+d001 d001.s015.t014 margin%1:21:01::
+d001 d001.s015.t016 be%2:41:00::
+d001 d001.s015.t019 lean%2:31:10::
+d001 d001.s016.t003 president%1:18:03::
+d001 d001.s016.t005 
+d001 d001.s016.t006 local%3:00:01::
+d001 d001.s016.t007 benefit%1:21:00::
+d001 d001.s016.t010 voter%1:18:00::
+d001 d001.s016.t012 particular%5:00:00:fastidious:00
+d001 d001.s016.t013 
+d001 d001.s016.t015 such%5:00:01:specified:00
+d001 d001.s016.t017 president%1:18:03::
+d001 d001.s016.t018 be%2:42:13::
+d001 d001.s016.t020 likely%3:00:04::
+d001 d001.s016.t023 be%2:42:13::
+d001 d001.s016.t025 effective%5:00:00:operative:00
+d001 d001.s016.t028 prevent%2:41:00::
+d001 d001.s016.t029 other%5:00:02:past:00
+d001 d001.s016.t030 
+d001 d001.s016.t033 legislator%1:18:00::
+d001 d001.s016.t036 bring_home%2:30:00::
+d001 d001.s016.t039 local%3:01:01::
+d001 d001.s016.t040 benefit%1:07:00::
+d001 d001.s017.t001 individual%5:00:00:personal:00
+d001 d001.s017.t002 voter%1:18:00::
+d001 d001.s017.t004 standing%1:26:00::
+d001 d001.s017.t008 enhance%2:30:00::
+d001 d001.s017.t012 tax%1:21:00::
+d001 d001.s018.t002 theory%1:09:02::
+d001 d001.s018.t003 be%2:42:07::
+d001 d001.s018.t005 simple%5:00:02:plain:01
+d001 d001.s018.t008 appear%2:41:03::
+d001 d001.s018.t011 explain%2:32:00::
+d001 d001.s018.t012 several%5:00:00:individual:00
+d001 d001.s018.t013 thing%1:26:00::
+d001 d001.s019.t000 first%5:00:02:opening:00
+d001 d001.s019.t003 
+d001 d001.s019.t004 splitting%5:00:00:cacophonous:00
+d001 d001.s019.t006 increase%2:30:00::
+d001 d001.s019.t008 take%2:40:05::
+d001 d001.s019.t010 peculiar%5:00:00:characteristic:00
+d001 d001.s019.t011 pattern%1:09:03::
+d001 d001.s019.t019 past%5:00:00:outgoing:00
+d001 d001.s019.t020 
+d001 d001.s019.t027 election%1:04:01::
+d001 d001.s019.t032 president%1:18:03::
+d001 d001.s019.t035 advent%1:04:00::
+d001 d001.s019.t041 government%1:04:00::
+d001 d001.s019.t042 occupy%2:42:04::
+d001 d001.s019.t046 role%1:07:00::
+d001 d001.s019.t048 society%1:26:00::
+d001 d001.s019.t051 prisoner%1:18:00::
+d001 d001.s019.t053 dilemma%1:09:00::
+d001 d001.s019.t054 problem%1:10:00::
+d001 d001.s019.t055 confront%2:32:03::
+d001 d001.s019.t056 voter%1:18:00::
+d001 d001.s019.t058 race%1:11:01::
+d001 d001.s019.t061 be%2:40:00::
+d001 d001.s019.t064 severe%5:00:00:plain:01
+d001 d001.s020.t000 second%5:00:00:ordinal:00
+d001 d001.s020.t003 explain%2:32:01::
+d001 d001.s020.t005 voter%1:18:00::
+d001 d001.s020.t006 hold%2:41:14::
+d001 d001.s020.t009 disdain%1:10:00::
+d001 d001.s020.t012 love%2:37:00::
+d001 d001.s020.t014 own%5:00:00:personal:00
+d001 d001.s020.t015 congressional%3:01:00::
+d001 d001.s020.t016 representative%1:18:02::
+d001 d001.s020.t020 individual%5:00:00:independent:00
+d001 d001.s020.t021 legislator%1:18:00::
+d001 d001.s020.t023 
+d001 d001.s020.t024 appreciate%2:37:00::
+d001 d001.s020.t026 specific%3:00:00::
+d001 d001.s020.t027 benefit%1:21:00::
+d001 d001.s020.t030 legislator%1:18:00::
+d001 d001.s020.t031 
+d001 d001.s020.t038 overall%5:00:00:general:00
+d001 d001.s020.t039 cost%1:07:00::
+d001 d001.s020.t040 associate%2:41:02::
+d001 d001.s020.t044 other%5:00:00:past:00
+d001 d001.s020.t045 legislator%1:18:00::
+d001 d001.s020.t046 do%2:36:01::
+d001 d001.s020.t050 own%5:00:00:personal:00
+d001 d001.s020.t051 constituency%1:14:00::
+d001 d001.s021.t000 third%5:00:00:ordinal:00
+d001 d001.s021.t003 theory%1:09:00::
+d001 d001.s021.t004 suggest%2:32:00::
+d001 d001.s021.t006 legislator%1:18:00::
+d001 d001.s021.t009 
+d001 d001.s021.t011 much%3:00:00::
+d001 d001.s021.t014 national%3:01:02::
+d001 d001.s021.t015 policy%1:10:00::
+d001 d001.s021.t016 
+d001 d001.s021.t017 relative%3:00:00::
+d001 d001.s021.t019 local%3:01:01::
+d001 d001.s021.t020 benefit%1:07:00:: seeking%1:04:01::
+d001 d001.s021.t021 have%2:40:05::
+d001 d001.s021.t023 security%1:21:04::
+d001 d001.s021.t025 office%1:14:01::
+d001 d001.s022.t001 
+d001 d001.s022.t003 first%1:24:00:: term%1:10:01::
+d001 d001.s022.t004 member%1:18:00::
+d001 d001.s022.t007 house%1:15:00::
+d001 d001.s022.t012 vulnerable%5:00:00:susceptible:00
+d001 d001.s022.t014 incumbent%1:18:00::
+d001 d001.s022.t017 become%2:42:01::
+d001 d001.s022.t019 immune%5:00:00:unsusceptible:00
+d001 d001.s022.t021 defeat%2:33:00::
+d001 d001.s023.t002 exception%1:09:01::
+d001 d001.s023.t005 recent%5:00:00:new:00
+d001 d001.s023.t006 trend%1:09:00::
+d001 d001.s023.t007 be%2:42:07::
+d001 d001.s023.t009 defeat%1:11:00::
+d001 d001.s023.t015 freshman%1:18:01::
+d001 d001.s023.t016 
+d001 d001.s023.t017 bring%2:35:02::
+d001 d001.s023.t020 office%1:14:01::
+d001 d001.s023.t026 revolution%1:11:00::
+d001 d001.s023.t028 run%2:36:02::
+d001 d001.s023.t030 
+d001 d001.s024.t002 freshman%1:18:00::
+d001 d001.s024.t003 place%2:31:03::
+d001 d001.s024.t006 emphasis%1:10:00::
+d001 d001.s024.t009 partisan%5:00:00:aligned:01
+d001 d001.s024.t010 role%1:07:00::
+d001 d001.s024.t013 spread%2:42:00::
+d001 d001.s024.t016 revolution%1:11:00::
+d001 d001.s024.t019 national%3:01:02::
+d001 d001.s024.t020 policy%1:10:00::
+d001 d001.s024.t021 make%2:32:00::
+d001 d001.s024.t024 be%2:42:01::
+d001 d001.s024.t026 vulnerable%3:00:00::
+d001 d001.s024.t028 defeat%2:33:00::
+d001 d001.s025.t000 fourth%5:00:00:ordinal:00
+d001 d001.s025.t003 theory%1:09:00::
+d001 d001.s025.t004 indicate%2:32:01::
+d001 d001.s025.t010 have%2:40:05::
+d001 d001.s025.t012 difficult%5:00:00:effortful:00
+d001 d001.s025.t013 time%1:28:01::
+d001 d001.s025.t015 attract%2:37:01::
+d001 d001.s025.t016 viable%5:00:00:possible:00
+d001 d001.s025.t017 candidate%1:18:01::
+d001 d001.s025.t019 congressional%3:01:00::
+d001 d001.s025.t020 office%1:06:00::
+d001 d001.s026.t000 potential%3:00:00::
+d001 d001.s026.t001 candidate%1:18:00::
+d001 d001.s026.t003 be%2:42:07::
+d001 d001.s026.t004 discourage%2:32:01::
+d001 d001.s026.t008 run%2:36:02::
+d001 d001.s026.t013 congressional%3:01:00::
+d001 d001.s026.t014 salary%1:21:00::
+d001 d001.s026.t018 prospect%1:26:00::
+d001 d001.s026.t020 defeat%1:11:00::
+d001 d001.s026.t023 hand%1:09:00::
+d001 d001.s026.t026 democratic%3:00:00::
+d001 d001.s026.t027 opponent%1:18:02::
+d001 d001.s027.t002 extent%1:26:00::
+d001 d001.s027.t004 potential%3:00:00::
+d001 d001.s027.t006 candidate%1:18:00::
+d001 d001.s027.t009 financial%3:01:00::
+d001 d001.s027.t010 backer%1:18:00::
+d001 d001.s027.t011 realize%2:40:01::
+d001 d001.s027.t014 congressional%3:01:00::
+d001 d001.s027.t015 prisoner%1:18:00::
+d001 d001.s027.t017 dilemma%1:09:00::
+d001 d001.s027.t018 game%1:04:00::
+d001 d001.s027.t019 work%2:41:10::
+d001 d001.s027.t022 disadvantage%1:07:00::
+d001 d001.s027.t029 hinder%2:41:00::
+d001 d001.s027.t033 attempt%1:04:00::
+d001 d001.s027.t036 
+d001 d001.s027.t038 competitive%5:00:00:aggressive:00
+d001 d001.s027.t039 slate%1:06:00::
+d001 d001.s027.t041 congressional%3:01:00::
+d001 d001.s027.t042 candidate%1:18:01::
+d001 d001.s028.t000 fifth%5:00:00:ordinal:00
+d001 d001.s028.t003 theory%1:09:02::
+d001 d001.s028.t005 provide%2:41:00::
+d001 d001.s028.t009 partial%5:00:00:inclined:02
+d001 d001.s028.t010 reason%1:26:00::
+d001 d001.s028.t013 
+d001 d001.s028.t014 splitting%5:00:00:cacophonous:00
+d001 d001.s028.t016 be%2:42:13::
+d001 d001.s029.t002 extent%1:07:00::
+d001 d001.s029.t004 democratic%3:00:00::
+d001 d001.s029.t005 legislator%1:18:00::
+d001 d001.s029.t010 hold%2:31:08::
+d001 d001.s029.t012 disproportionate%5:00:00:incommensurate:00
+d001 d001.s029.t013 share%1:04:00::
+d001 d001.s029.t015 power%1:09:01::
+d001 d001.s029.t022 be%2:42:07::
+d001 d001.s029.t023 able%3:00:00::
+d001 d001.s029.t026 
+d001 d001.s029.t027 such%5:00:01:specified:00
+d001 d001.s029.t028 
+d001 d001.s029.t032 local%3:01:01::
+d001 d001.s029.t033 benefit%1:07:00::
+d001 d001.s029.t036 respective%5:00:00:individual:00
+d001 d001.s029.t037 constituency%1:14:00::
+d001 d001.s029.t039 voter%1:18:00::
+d001 d001.s029.t044 have%2:40:05::
+d001 d001.s029.t047 strong%5:00:00:fresh:01
+d001 d001.s029.t048 incentive%1:16:00::
+d001 d001.s029.t051 keep%2:41:05::
+d001 d001.s029.t052 such%5:00:01:specified:00
+d001 d001.s029.t053 
+d001 d001.s029.t055 office%1:04:00::
+d001 d001.s030.t003 theory%1:09:01::
+d001 d001.s030.t004 suggest%2:32:03::
+d001 d001.s030.t006 
+d001 d001.s030.t009 fare%2:34:00::
+d001 d001.s030.t014 race%1:14:00::
+d001 d001.s030.t017 campaign%1:04:01::
+d001 d001.s031.t001 local%3:00:01::
+d001 d001.s031.t002 benefit%1:07:00:: seeking%1:04:01::
+d001 d001.s031.t003 matter%2:42:00::
+d001 d001.s031.t006 national%3:01:02::
+d001 d001.s031.t007 policy%1:10:00::
+d001 d001.s031.t008 
+d001 d001.s031.t009 matter%2:42:00::
+d001 d001.s031.t014 chamber%1:14:00::
+d001 d001.s031.t019 be%2:42:07::
+d001 d001.s031.t022 pattern%1:09:03::
+d001 d001.s031.t026 expect%2:31:01::
+d001 d001.s031.t029 
+d001 d001.s031.t030 be%2:42:13::
+d001 d001.s031.t032 willing%3:00:00::
+d001 d001.s031.t035 engage%2:35:00::
+d001 d001.s031.t037 local%3:00:02::
+d001 d001.s031.t038 benefit%2:40:01:: seeking%1:04:01::
+d001 d001.s031.t041 democratic%5:00:00:common:01
+d001 d001.s031.t042 counterpart%1:09:00::
+d001 d001.s032.t000 
+d001 d001.s032.t003 empirical%3:00:00::
+d001 d001.s032.t004 support%1:04:00::
+d001 d001.s032.t007 theory%1:09:01::
+d001 d001.s033.t001 piece%1:28:00::
+d001 d001.s033.t003 evidence%1:09:00::
+d001 d001.s033.t004 corroborate%2:42:00::
+d001 d001.s033.t006 key%5:00:00:important:00
+d001 d001.s033.t007 assumption%1:10:00::
+d001 d001.s033.t009 democratic%3:00:00::
+d001 d001.s033.t010 legislator%1:18:00::
+d001 d001.s033.t011 be%2:42:13::
+d001 d001.s033.t013 willing%3:00:00::
+d001 d001.s033.t016 engage%2:35:00::
+d001 d001.s033.t018 local%3:00:02::
+d001 d001.s033.t019 benefit%2:40:01:: seeking%1:04:01::
+d001 d001.s033.t022 republican%5:00:00:democratic:00
+d001 d001.s033.t023 colleague%1:18:01::
+d001 d001.s034.t000 first%5:00:00:forward:03
+d001 d001.s034.t002 economist%1:18:00::
+d001 d001.s034.t008 find%2:40:03::
+d001 d001.s034.t011 senator%1:18:00::
+d001 d001.s034.t012 turn_back%2:38:02::
+d001 d001.s034.t020 allocate%2:40:00::
+d001 d001.s034.t021 personal%3:01:00::
+d001 d001.s034.t022 staff%1:06:00::
+d001 d001.s034.t023 budget%1:21:03::
+d001 d001.s034.t025 
+d001 d001.s035.t002 extent%1:07:00::
+d001 d001.s035.t005 primary%5:00:00:important:00
+d001 d001.s035.t006 duty%1:04:02::
+d001 d001.s035.t008 personal%5:00:00:subjective:00
+d001 d001.s035.t009 staff%1:06:00::
+d001 d001.s035.t010 involve%2:42:01::
+d001 d001.s035.t011 local%3:01:01::
+d001 d001.s035.t012 benefit%2:40:00:: seeking%1:04:01::
+d001 d001.s035.t015 indicate%2:32:01::
+d001 d001.s035.t017 political%3:00:00::
+d001 d001.s035.t018 philosophy%1:09:02::
+d001 d001.s035.t019 lead%2:32:01::
+d001 d001.s035.t020 congressional%3:01:00::
+d001 d001.s035.t021 
+d001 d001.s035.t023 
+d001 d001.s035.t027 narrow%5:00:00:careful:00
+d001 d001.s035.t028 
+d001 d001.s035.t029 concern%1:09:00::
+d001 d001.s036.t000 second%5:00:00:ordinal:00
+d001 d001.s036.t004 key%5:00:00:important:00
+d001 d001.s036.t005 assumption%1:10:00::
+d001 d001.s036.t006 be%2:42:07::
+d001 d001.s036.t007 valid%5:00:00:unexpired:00
+d001 d001.s036.t009 
+d001 d001.s036.t011 have%2:40:04::
+d001 d001.s036.t013 attendance%1:04:00::
+d001 d001.s036.t014 rate%1:21:00::
+d001 d001.s036.t016  call%1:04:02::
+d001 d001.s036.t017 vote%1:09:00::
+d001 d001.s036.t019 
+d001 d001.s036.t023 extent%1:26:00::
+d001 d001.s036.t025 such%5:00:01:specified:00
+d001 d001.s036.t026 vote%1:04:00::
+d001 d001.s036.t027 reflect%2:32:01::
+d001 d001.s036.t028 national%3:01:02::
+d001 d001.s036.t029 policy%1:10:00::
+d001 d001.s036.t030 
+d001 d001.s036.t034 participate%2:41:00::
+d001 d001.s036.t036 such%5:00:01:specified:00
+d001 d001.s036.t037 vote%1:04:00::
+d001 d001.s036.t038 take%2:40:05::
+d001 d001.s036.t042 time%1:28:01::
+d001 d001.s036.t045 legislator%1:18:00::
+d001 d001.s036.t048 
+d001 d001.s036.t050 local%3:01:01::
+d001 d001.s036.t051 benefit%1:21:00:: seeking%1:04:01::
+d001 d001.s037.t001 be%2:42:07::
+d001 d001.s037.t005 data%1:14:00::
+d001 d001.s037.t006 indicate%2:32:03::
+d001 d001.s037.t012 case%1:04:00::
+d001 d001.s038.t001 democratic%5:00:00:common:01
+d001 d001.s038.t003 
+d001 d001.s038.t004 rate%1:21:00::
+d001 d001.s038.t007 exceed%2:42:00::
+d001 d001.s038.t009 republican%5:00:00:democratic:00
+d001 d001.s038.t011 
+d001 d001.s038.t012 
+d001 d001.s039.t004 show%2:32:01::
+d001 d001.s039.t007 table%1:14:00::
+d001 d001.s039.t009 
+d001 d001.s039.t010 allocate%2:40:00::
+d001 d001.s039.t013 proportion%1:07:01::
+d001 d001.s039.t016 personal%3:01:00::
+d001 d001.s039.t017 staff%1:14:00::
+d001 d001.s039.t019 district%1:15:00::
+d001 d001.s039.t020 office%1:04:01::
+d001 d001.s039.t023 local%3:01:01::
+d001 d001.s039.t024 benefit%1:07:00:: seeking%1:04:01::
+d001 d001.s039.t025 duty%1:21:00::
+d001 d001.s039.t026 matter%2:42:00::
+d001 d001.s039.t029 national%3:00:00::
+d001 d001.s039.t030 policy%1:10:00::
+d001 d001.s039.t031 making%1:04:00::
+d001 d001.s039.t032 activity%1:22:00::
+d001 d001.s039.t033 matter%2:42:00::
+d001 d001.s039.t035 relative%5:00:00:proportionate:00
+d001 d001.s039.t038 office%1:04:00::
+d001 d001.s040.t001 examination%1:10:00::
+d001 d001.s040.t003 change%1:21:03::
+d001 d001.s040.t005 personal%3:01:01::
+d001 d001.s040.t006 
+d001 d001.s040.t007 decision%1:04:00::
+d001 d001.s040.t017 control%1:09:02::
+d001 d001.s040.t020 body%1:08:00::
+d001 d001.s040.t021 change%2:30:02::
+d001 d001.s040.t022 party%1:14:02::
+d001 d001.s040.t023 hand%1:18:00::
+d001 d001.s040.t029 reveal%2:39:00::
+d001 d001.s040.t032 personal%3:00:00::
+d001 d001.s040.t033 
+d001 d001.s040.t034 difference%1:10:00::
+d001 d001.s040.t035 note%2:32:00::
+d001 d001.s040.t039 table%1:14:01::
+d001 d001.s040.t042 be%2:42:07::
+d001 d001.s040.t043 attribute%2:31:00::
+d001 d001.s040.t047 disproportionate%3:00:00::
+d001 d001.s040.t048 control%1:18:00::
+d001 d001.s040.t050 
+d001 d001.s040.t051 
+d001 d001.s040.t054 exercise%2:29:01::
+d001 d001.s040.t057 majority%1:23:00:: party%1:14:02::
+d001 d001.s040.t058 status%1:26:00::
+d001 d001.s040.t061 other%3:00:00::
+d001 d001.s040.t062 resource%1:07:00::
+d001 d001.s040.t063 
+d001 d001.s040.t065 committee%1:14:01::
+d001 d001.s040.t066 staff%1:14:01::
+d001 d001.s041.t001 additional%5:00:03:added:00
+d001 d001.s041.t002 piece%1:28:00::
+d001 d001.s041.t004 evidence%1:09:00::
+d001 d001.s041.t010 holding%1:21:00::
+d001 d001.s041.t011 other%5:00:00:past:00
+d001 d001.s041.t012 factor%1:09:00::
+d001 d001.s041.t014 constant%5:00:00:invariable:00
+d001 d001.s041.t016 
+d001 d001.s041.t018 incumbency%1:04:00::
+d001 d001.s041.t019 advantage%1:07:00::
+d001 d001.s041.t021 regional%5:00:00:territorial:00
+d001 d001.s041.t022 factor%1:09:00::
+d001 d001.s041.t025 
+d001 d001.s041.t027 popular%5:00:00:democratic:00
+d001 d001.s041.t028 vote%1:07:00::
+d001 d001.s041.t030 republican%3:01:01::
+d001 d001.s041.t031 presidential%3:01:00::
+d001 d001.s041.t033 senatorial%3:01:00::
+d001 d001.s041.t034 candidate%1:18:00::
+d001 d001.s041.t036 state%1:03:00::
+d001 d001.s041.t037 conduct%2:38:01::
+d001 d001.s041.t040 election%1:04:01::
+d001 d001.s041.t041 
+d001 d001.s041.t045 be%2:42:07::
+d001 d001.s041.t047 
+d001 d001.s041.t048 function%1:04:00::
+d001 d001.s041.t051 onerous%5:00:00:heavy:02
+d001 d001.s041.t053 federal_government%1:14:00::
+d001 d001.s041.t056 tax%1:21:00::
+d001 d001.s041.t057 burden%1:09:01::
+d001 d001.s041.t058 be%2:42:13::
+d001 d001.s041.t061 state%1:14:00::
+d001 d001.s041.t064 progressive%5:00:00:liberal:00
+d001 d001.s041.t065 tax_rate%1:21:00::
+d001 d001.s041.t067 
+d001 d001.s041.t068 higher%5:00:01:high:02 income%1:21:00::
+d001 d001.s041.t069 state%1:15:00::
+d001 d001.s042.t001 put%2:40:00::
+d001 d001.s042.t007 candidate%1:18:01::
+d001 d001.s042.t009 president%1:18:01::
+d001 d001.s042.t011 look_on%2:31:00::
+d001 d001.s042.t018 voter%1:18:00::
+d001 d001.s042.t020 republican%5:00:00:democratic:00
+d001 d001.s042.t021 candidate%1:18:01::
+d001 d001.s042.t027 prisoner%1:18:00::
+d001 d001.s042.t029 dilemma%1:09:00::
+d001 d001.s042.t030 be%2:42:02::
+d001 d001.s042.t032 severe%5:00:00:critical:03
+d001 d001.s043.t002 
+d001 d001.s043.t003 splitting%5:00:00:cacophonous:00
+d001 d001.s043.t004 appear%2:30:01::
+d001 d001.s043.t007 take%2:31:09::
+d001 d001.s043.t009 same%3:00:02::
+d001 d001.s043.t010 peculiar%5:00:00:unusual:00
+d001 d001.s043.t011 pattern%1:09:02::
+d001 d001.s043.t015 state%1:14:01::
+d001 d001.s043.t016 government%1:04:00::
+d001 d001.s043.t017 level%1:06:03::
+d001 d001.s043.t023 federal%3:01:02::
+d001 d001.s043.t024 level%1:06:03::
+d001 d001.s044.t000 state%1:03:00::
+d001 d001.s044.t001 government%1:04:00::
+d001 d001.s044.t002 be%2:42:01::
+d001 d001.s044.t006 split%2:41:03::
+d001 d001.s044.t009 republican%5:00:00:democratic:00 legislature%1:14:00::
+d001 d001.s044.t010 line%1:14:00::
+d001 d001.s044.t013 reverse%1:11:01::
+d001 d001.s045.t001 cross%2:42:00:: state%1:14:00::
+d001 d001.s045.t002 econometric%3:01:00::
+d001 d001.s045.t003 investigation%1:09:00::
+d001 d001.s045.t007 
+d001 d001.s045.t011 hold%2:35:03::
+d001 d001.s045.t012 other%5:00:00:strange:00
+d001 d001.s045.t013 
+d001 d001.s045.t014 constant%5:00:00:invariable:00
+d001 d001.s045.t017 difference%1:07:00::
+d001 d001.s045.t020 state%1:14:01::
+d001 d001.s045.t022 major%5:00:00:senior:00 party%1:11:00::
+d001 d001.s045.t023 vote%1:07:00::
+d001 d001.s045.t024 go%2:35:13::
+d001 d001.s045.t027 republican%5:00:00:democratic:00
+d001 d001.s045.t028 gubernatorial%3:01:00::
+d001 d001.s045.t029 candidate%1:18:00::
+d001 d001.s045.t032 republican%5:00:00:democratic:00
+d001 d001.s045.t033 share%1:21:00::
+d001 d001.s045.t037 state%1:14:00::
+d001 d001.s045.t038 house%1:14:01::
+d001 d001.s045.t039 be%2:42:13::
+d001 d001.s045.t041 
+d001 d001.s045.t042 
+d001 d001.s045.t045 state%1:14:00::
+d001 d001.s045.t046 tax_rate%1:21:00::
+d001 d001.s046.t001 sum%1:09:00::
+d001 d001.s046.t006 federal%3:01:02::
+d001 d001.s046.t008 state%1:14:01::
+d001 d001.s046.t009 government%1:04:00::
+d001 d001.s046.t010 level%1:06:03::
+d001 d001.s046.t013 part%1:24:00::
+d001 d001.s046.t017 irrational%3:01:00::
+d001 d001.s046.t018 behavior%1:04:00::
+d001 d001.s046.t020 voter%1:18:00::
+d001 d001.s046.t021 display%2:41:00::
+d001 d001.s046.t025 voting_booth%1:06:00::
+d001 d001.s046.t028 have%2:40:05::
+d001 d001.s046.t031 rational%5:00:00:mental:00
+d001 d001.s046.t032 explanation%1:09:00::
+d001 d001.s047.t002 teach%2:32:00::
+d001 d001.s047.t010 business_school%1:14:00::
+d002 d002.s000.t002 long%3:00:05::
+d002 d002.s000.t004 frightening%5:00:00:alarming:00
+d002 d002.s000.t005 night%1:28:00::
+d002 d002.s000.t009 devastate%2:30:00::
+d002 d002.s000.t010 
+d002 d002.s000.t014 resident%1:18:00::
+d002 d002.s000.t015 search%2:39:00::
+d002 d002.s000.t017 comfort%1:04:00::
+d002 d002.s000.t019 solace%1:04:00::
+d002 d002.s001.t001 find%2:32:01::
+d002 d002.s001.t005 
+d002 d002.s001.t008 personal_computer%1:06:00::
+d002 d002.s002.t000 
+d002 d002.s002.t003 make%2:38:05::
+d002 d002.s002.t005 way%1:09:00::
+d002 d002.s002.t008 computer%1:18:00::
+d002 d002.s002.t011 quake%1:11:00::
+d002 d002.s002.t014 check_in%2:32:00::
+d002 d002.s002.t020 electronic%3:01:00::
+d002 d002.s002.t021 bulletin_board%1:06:01::
+d002 d002.s002.t026 link%2:42:01::
+d002 d002.s002.t027 computer%1:06:00::
+d002 d002.s002.t028 radio%2:32:00:: 
+d002 d002.s002.t031 phone_line%1:06:00::
+d002 d002.s003.t004 vivid%5:00:00:realistic:00
+d002 d002.s003.t005 bulletin%1:10:00::
+d002 d002.s003.t006 come%2:42:15::
+d002 d002.s003.t016 board%1:06:03::
+d002 d002.s003.t019 be%2:42:00::
+d002 d002.s003.t024 outpost%1:15:00::
+d002 d002.s003.t027 electronic%3:01:01::
+d002 d002.s003.t028 underground%1:06:00::
+d002 d002.s004.t001 two-thirds%1:23:00::
+d002 d002.s004.t007 subscriber%1:18:02::
+d002 d002.s004.t008 live%2:42:08::
+d002 d002.s005.t001 quake%1:11:00::
+d002 d002.s005.t002 knock_out%2:35:00::
+d002 d002.s005.t008 hour%1:28:01::
+d002 d002.s005.t013 come_up%2:38:00::
+d002 d002.s005.t019 
+d002 d002.s005.t021 emotional%3:01:00::
+d002 d002.s005.t022 
+d002 d002.s005.t023 report%1:10:02::
+d002 d002.s006.t001 be%2:42:13::
+d002 d002.s006.t002 excerpt%1:10:00::
+d002 d002.s006.t005 electronic%3:01:01::
+d002 d002.s006.t006 traffic%1:14:00::
+d002 d002.s006.t008 night%1:28:02::
+d002 d002.s007.t001 time%1:28:04::
+d002 d002.s007.t002 be%2:42:05::
+d002 d002.s007.t005 time%1:28:04::
+d002 d002.s007.t009 initial%1:10:00::
+d002 d002.s007.t011 
+d002 d002.s007.t012 be%2:42:05::
+d002 d002.s007.t015 subscriber%1:18:00::
+d002 d002.s007.t016 use%2:34:01::
+d002 d002.s007.t020 identify%2:31:01::
+d002 d002.s011.t001 be%2:41:00::
+d002 d002.s011.t004 avenue%1:06:00::
+d002 d002.s011.t008 third%5:00:00:ordinal:00
+d002 d002.s011.t009 floor%1:14:00::
+d002 d002.s011.t012 old%5:00:00:preceding:00
+d002 d002.s011.t013 building%1:06:00::
+d002 d002.s011.t019 heart%1:09:01::
+d002 d002.s011.t021 beat%1:15:00::
+d002 d002.s011.t023 beat%1:15:00::
+d002 d002.s011.t027 
+d002 d002.s011.t028 ok%5:00:00:satisfactory:00
+d002 d002.s012.t001 
+d002 d002.s012.t009 fall%2:30:06::
+d002 d002.s012.t012 poster%1:05:00::
+d002 d002.s012.t013 
+d002 d002.s012.t015 glass%1:27:00::
+d002 d002.s012.t018 floor%1:06:00::
+d002 d002.s012.t020 file_cabinet%1:06:00::
+d002 d002.s012.t022 open%5:00:00:nonunion:00
+d002 d002.s012.t028 floor%1:06:02::
+d002 d002.s015.t001 be%2:42:01::
+d002 d002.s015.t004 favorite%5:00:00:loved:00
+d002 d002.s015.t005 watering_hole%1:15:00::
+d002 d002.s015.t009 wait%2:31:00::
+d002 d002.s015.t012 game%1:05:00::
+d002 d002.s015.t014 start%2:38:02::
+d002 d002.s016.t001 felt%2:30:00::
+d002 d002.s016.t003 temblor%1:11:00::
+d002 d002.s016.t004 begin%2:30:00::
+d002 d002.s016.t006 glance%2:39:00::
+d002 d002.s016.t009 table%1:17:00::
+d002 d002.s016.t010 next%5:00:00:incoming:00
+d002 d002.s016.t014 smile%2:29:00::
+d002 d002.s016.t016 guilty%5:00:00:ashamed:00
+d002 d002.s016.t017 smile%2:29:00::
+d002 d002.s016.t021 mouth%2:32:00::
+d002 d002.s016.t023 word%1:10:05::
+d002 d002.s016.t026 
+d002 d002.s017.t001 be%2:42:07::
+d002 d002.s017.t004 long%3:00:01::
+d002 d002.s017.t007 
+d002 d002.s017.t010 temblor%1:11:00::
+d002 d002.s017.t012 pass%2:38:05::
+d002 d002.s018.t001 time%1:03:00::
+d002 d002.s018.t005 get%2:38:00::
+d002 d002.s018.t010 building%1:14:00::
+d002 d002.s018.t011 start%2:36:01::
+d002 d002.s018.t013 shake%2:38:02::
+d002 d002.s018.t021 be%2:40:00::
+d002 d002.s018.t023 child%1:18:01::
+d002 d002.s018.t025 toy%1:05:00::
+d002 d002.s018.t026 block%1:09:00::
+d002 d002.s018.t031 toss%2:38:00::
+d002 d002.s021.t001 be%2:42:02::
+d002 d002.s021.t006 library%1:14:00::
+d002 d002.s021.t009 hit%2:38:07::
+d002 d002.s022.t000 endless%5:00:00:continuous:01
+d002 d002.s022.t001 second%1:23:00::
+d002 d002.s022.t003 wonder%2:32:12::
+d002 d002.s022.t006 huge%5:00:01:large:00
+d002 d002.s022.t007 window%1:06:03::
+d002 d002.s022.t009 buckle%2:30:00::
+d002 d002.s022.t011 shower%2:43:00::
+d002 d002.s022.t014 glass%1:27:00::
+d002 d002.s023.t002 few%3:00:00::
+d002 d002.s023.t003 book%1:10:00::
+d002 d002.s023.t004 fell%2:38:09::
+d002 d002.s023.t007 reading_room%1:06:00::
+d002 d002.s024.t002 auto%1:06:00::
+d002 d002.s024.t003 
+d002 d002.s024.t004 shop%1:06:01::
+d002 d002.s024.t005 fire%1:04:00::
+d002 d002.s024.t006 send%2:38:01::
+d002 d002.s024.t008 
+d002 d002.s024.t009 
+d002 d002.s024.t011 black%5:00:00:dirty:01
+d002 d002.s024.t012 smoke%1:10:00::
+d002 d002.s024.t015 air%1:15:00::
+d002 d002.s027.t002 daughter%1:18:00::
+d002 d002.s027.t005 be%2:41:00::
+d002 d002.s027.t006 fine%5:00:00:pure:02
+d002 d002.s028.t001 building%1:06:00::
+d002 d002.s028.t002 shake%2:29:00::
+d002 d002.s028.t004 hell%1:15:01::
+d002 d002.s028.t007 keep%2:41:02::
+d002 d002.s028.t009 get%2:35:09::
+d002 d002.s029.t003 gas_tank%1:06:00::
+d002 d002.s029.t010 explode%2:30:00::
+d002 d002.s029.t012 burn%2:30:02::
+d002 d002.s029.t014 downtown%1:15:00::
+d002 d002.s029.t017 thing%1:26:00::
+d002 d002.s029.t019 be%2:42:00::
+d002 d002.s029.t021 peaceful%5:00:00:nonviolent:00
+d002 d002.s030.t001 lot%1:14:00::
+d002 d002.s030.t003 car%1:06:03::
+d002 d002.s030.t004 alarm%1:12:00::
+d002 d002.s030.t005 go_off%2:38:00::
+d002 d002.s031.t001 
+d002 d002.s031.t002 be%2:42:09::
+d002 d002.s031.t003 fine%5:00:00:thin:01
+d002 d002.s031.t006 nervous%5:00:00:troubled:00
+d002 d002.s034.t000 huge%5:00:01:large:00
+d002 d002.s034.t001 fire%1:11:00::
+d002 d002.s034.t004 gas_main%1:06:00::
+d002 d002.s035.t000 
+d002 d002.s035.t003 be%2:42:02::
+d002 d002.s035.t004 make%2:30:12::
+d002 d002.s035.t008 fill%1:23:00::
+d002 d002.s035.t010 liquefy%2:43:00::
+d002 d002.s036.t001 woman%1:14:00::
+d002 d002.s036.t004 three%1:23:00:: story%1:10:02::
+d002 d002.s036.t005 apartment%1:06:00::
+d002 d002.s036.t006 be%2:42:01::
+d002 d002.s036.t007 able%3:00:00::
+d002 d002.s036.t010 walk%2:41:01::
+d002 d002.s036.t013 window%1:06:04::
+d002 d002.s036.t016 third%5:00:00:ordinal:00
+d002 d002.s036.t017 floor%1:06:01::
+d002 d002.s036.t019 street%1:06:00::
+d002 d002.s036.t020 level%1:06:01::
+d002 d002.s036.t023 quake%1:11:00::
+d002 d002.s037.t001 house%1:14:01::
+d002 d002.s037.t003 settle%2:40:00::
+d002 d002.s037.t008 ground%1:24:00::
+d002 d002.s040.t001 be%2:42:07::
+d002 d002.s040.t002 drive%2:32:00::
+d002 d002.s040.t004 truck%1:06:01::
+d002 d002.s040.t006 
+d002 d002.s040.t010 red_light%1:10:00::
+d002 d002.s040.t014 corner%1:06:02::
+d002 d002.s040.t022 border%1:06:00::
+d002 d002.s040.t025 hit%2:35:05::
+d002 d002.s041.t001 part%1:06:00::
+d002 d002.s041.t002 be%2:42:07::
+d002 d002.s041.t003 watch%2:32:09::
+d002 d002.s041.t004 power_line%1:06:00::
+d002 d002.s041.t006 wave%2:35:01::
+d002 d002.s041.t009 head%1:06:00::
+d002 d002.s041.t012 way%1:09:01::
+d002 d002.s041.t016 drive%2:41:00::
+d002 d002.s044.t001 
+d002 d002.s044.t003 
+d002 d002.s044.t007 pier%1:06:02::
+d002 d002.s045.t001 flop%2:38:00::
+d002 d002.s045.t007 dramatic%3:01:00::
+d002 d002.s046.t000 many%3:00:00::
+d002 d002.s046.t001 hairline%1:08:00::
+d002 d002.s046.t002 crack%1:06:01::
+d002 d002.s046.t005 concrete%3:00:00::
+d002 d002.s046.t006 slab%1:06:00::
+d002 d002.s047.t001 ruined%5:00:02:destroyed:00
+d002 d002.s047.t003 damn%5:00:00:cursed:00
+d002 d002.s047.t004 fishing%1:04:00::
+d002 d002.s050.t001 ride_out%2:42:00::
+d002 d002.s050.t006 second%5:00:00:ordinal:00
+d002 d002.s050.t007 floor%1:10:00::
+d002 d002.s050.t012 55th%5:00:00:ordinal:00
+d002 d002.s051.t001 hear%2:41:00::
+d002 d002.s051.t002 part%1:24:00::
+d002 d002.s051.t005 building%1:14:00::
+d002 d002.s051.t008 head%1:11:00::
+d002 d002.s051.t009 crack%2:35:00::
+d002 d002.s052.t002 think%2:31:03::
+d002 d002.s052.t006 die%2:30:00::
+d002 d002.s053.t003 decide%2:31:06::
+d002 d002.s053.t007 come%2:42:05::
+d002 d002.s053.t008 home%1:15:03::
+d002 d002.s053.t014 house%1:06:00::
+d002 d002.s053.t015 be%2:42:01::
+d002 d002.s053.t017 stilt%1:05:01::
+d002 d002.s054.t001 decide%2:31:06::
+d002 d002.s054.t004 brave%2:42:00::
+d002 d002.s054.t006 storm%1:04:00::
+d002 d002.s055.t001 be%2:40:00::
+d002 d002.s055.t003 horrible%5:00:00:alarming:00
+d002 d002.s055.t004 smell%1:09:01::
+d002 d002.s055.t006 gas%1:26:00::
+d002 d002.s055.t009 pass%2:41:11::
+d002 d002.s055.t012 refinery%1:06:00::
+d002 d002.s055.t015 cross%2:38:01::
+d002 d002.s056.t003 see%2:39:02::
+d002 d002.s056.t005 cloud%1:26:00::
+d002 d002.s056.t008 bay%1:11:00::
+d002 d002.s056.t011 horrible%5:00:00:alarming:00
+d002 d002.s056.t012 fire%1:11:00::
+d002 d002.s057.t002 felt%2:30:00::
+d002 d002.s057.t003 many%3:00:00::
+d002 d002.s057.t004 aftershock%1:11:00::
+d002 d002.s058.t001 back%1:06:00::
+d002 d002.s058.t002 be%2:42:13::
+d002 d002.s058.t005 knot%1:23:00::
+d002 d002.s058.t008 hand%1:05:01::
+d002 d002.s058.t009 be%2:42:13::
+d002 d002.s058.t011 shake%2:30:00::
+d002 d002.s059.t001 think%2:31:02::
+d002 d002.s059.t004 few%3:00:00::
+d002 d002.s059.t007 aftershock%1:11:00::
+d002 d002.s059.t010 be%2:42:07::
+d002 d002.s059.t012 body%1:10:00::
+d002 d002.s059.t013 shake%2:37:00::
+d002 d002.s062.t002 see%2:32:00::
+d002 d002.s062.t004 flame%1:22:00::
+d002 d002.s062.t010 house%1:06:00::
+d002 d002.s062.t013 bay%1:06:01::
+d002 d002.s063.t002 be%2:42:01::
+d002 d002.s063.t003 hard%3:00:06::
+d002 d002.s063.t006 believe%2:31:03::
+d002 d002.s063.t011 happen%2:40:12::
+d002 d002.s066.t000 building%1:06:00::
+d002 d002.s066.t003 corner%1:06:01::
+d002 d002.s066.t005 damage%2:30:00::
+d002 d002.s066.t010 old%5:00:00:preceding:00
+d002 d002.s066.t011 lady%1:18:01::
+d002 d002.s066.t015 old%5:00:00:preceding:00
+d002 d002.s066.t016 mother%1:18:00::
+d002 d002.s066.t017 be%2:42:13::
+d002 d002.s066.t020 
+d002 d002.s067.t000 
+d002 d002.s067.t002 software%1:10:00::
+d002 d002.s068.t002 type%2:31:00::
+d002 d002.s068.t006 
+d002 d002.s068.t007 position%1:15:00::
+d002 d002.s072.t003 feel%2:31:00::
+d002 d002.s072.t005 thing%1:10:00::
+d002 d002.s072.t008 notice%2:32:01::
+d002 d002.s072.t010 strange%5:00:01:unfamiliar:00
+d002 d002.s072.t011 bird%1:18:00::
+d002 d002.s072.t012 behavior%1:04:00::
+d002 d002.s073.t000 duck%1:23:00::
+d002 d002.s073.t001 swarm%1:14:00::
+d002 d002.s076.t002 felt%2:30:00::
+d002 d002.s076.t004 aftershock%1:11:00::
+d002 d002.s076.t006 few%3:00:00::
+d002 d002.s076.t007 second%1:23:00::
+d002 d002.s077.t001 
+d002 d002.s077.t003 numb%5:00:00:insensitive:02
+d002 d002.s080.t000 downtown%1:15:00::
+d002 d002.s080.t002 seem%2:42:00::
+d002 d002.s080.t005 be%2:42:07::
+d002 d002.s080.t007 part%1:06:00::
+d002 d002.s080.t009 town%1:15:00::
+d002 d002.s080.t012 be%2:42:07::
+d002 d002.s081.t001 power%1:09:01::
+d002 d002.s081.t003 minimal%3:00:00::
+d002 d002.s081.t004 phone%1:10:00::
+d002 d002.s081.t008 mess%1:26:00::
+d002 d002.s081.t010 mayonnaise%1:13:00::
+d002 d002.s081.t012 wine%1:13:00::
+d002 d002.s081.t020 floor%1:06:02::
+d002 d002.s081.t023 big%3:00:01::
+d002 d002.s081.t024 old%5:00:00:genuine:00
+d002 d002.s081.t025 general_store%1:06:00::
+d002 d002.s082.t001 quiver%1:26:00::
+d002 d002.s082.t002 move%2:38:02::
+d002 d002.s082.t005 house%1:15:00::
+d002 d002.s082.t007 few%3:00:00::
+d002 d002.s082.t008 minute%1:10:00::
+d002 d002.s082.t010 unpredictable%5:00:00:indeterminable:00
+d002 d002.s082.t011 interval%1:07:00::
+d002 d002.s082.t015 
+d002 d002.s082.t020 live%2:42:07::
+d002 d002.s082.t023 kitchen%1:06:00::
+d002 d002.s082.t025 take%2:40:05::
+d002 d002.s082.t026 refuge%1:15:00::
+d002 d002.s082.t029 desk%1:06:00::
+d002 d002.s083.t001 run_out%2:30:03::
+d002 d002.s083.t009 be%2:42:09::
+d002 d002.s083.t012 distressed%3:00:04::
+d002 d002.s084.t001 be%2:42:00::
+d002 d002.s084.t007 quake%1:11:00::
+d002 d002.s084.t008 
+d002 d002.s084.t010 town%1:15:01::
+d002 d002.s085.t001 
+d002 d002.s085.t005 
+d002 d002.s086.t002 thing%1:09:02::
+d002 d002.s086.t003 get%2:40:01::
+d002 d002.s086.t007 run%2:35:04::
+d002 d002.s086.t010 door%1:06:02::
+d002 d002.s086.t012 spend%2:42:00::
+d002 d002.s086.t014 next%5:00:00:close:01
+d002 d002.s086.t015 few%3:00:00::
+d002 d002.s086.t016 minute%1:10:00::
+d002 d002.s086.t019 watch%2:32:09::
+d002 d002.s086.t021 brick%1:18:00::
+d002 d002.s086.t022 sidewalk%1:06:00::
+d002 d002.s086.t025 
+d002 d002.s086.t026 ooze%2:29:00::
+d002 d002.s086.t033 flower%1:20:02::
+d002 d002.s086.t034 wave%2:35:00::
+d002 d002.s086.t037 eerie%5:00:00:strange:00
+d002 d002.s086.t038 rhythm%1:04:00::
+d002 d002.s087.t000 amazing%5:00:00:surprising:00
+d002 d002.s087.t003 do%2:29:04::
+d002 d002.s087.t006 one%1:23:00::
+d002 d002.s087.t008 heart_rate%1:28:00::
+d002 d002.s087.t011 one%1:23:00::
+d002 d002.s087.t013 short-term%5:00:00:short:02
+d002 d002.s087.t014 memory%1:09:03::
+d002 d002.s088.t001 look%2:39:02::
+d002 d002.s088.t002 calm%5:00:00:peaceful:00
+d002 d002.s088.t006 be%2:42:01::
+d002 d002.s088.t008 surreal%5:00:00:unrealistic:00
+d002 d002.s088.t009 low%5:00:00:unrefined:01
+d002 d002.s088.t010 level%1:07:00::
+d002 d002.s088.t012 confusion%1:26:01::
+d002 d002.s088.t015 aftershock%1:11:00::
+d002 d002.s088.t016 continue%2:38:00::
+d002 d002.s091.t000 power%1:09:01::
+d002 d002.s091.t001 be%2:42:01::
+d002 d002.s091.t008 medical_center%1:15:00::
+d002 d002.s091.t011 seem%2:42:00::
+d002 d002.s091.t015 quiet_down%2:39:00::
+d002 d002.s091.t019 night%1:26:00::
+d002 d002.s091.t023 do%2:36:00::
+d002 d002.s091.t024 triage%1:04:00::
+d002 d002.s091.t028 parking_lot%1:15:00::
+d002 d002.s091.t032 
+d002 d002.s091.t034 light%1:19:00::
+d002 d002.s092.t001 friend%1:18:03::
+d002 d002.s092.t004 be%2:42:05::
+d002 d002.s092.t007 underground%5:00:00:covert:00
+d002 d002.s092.t008 computer%1:18:00::
+d002 d002.s092.t009 center%1:08:00::
+d002 d002.s092.t011 downtown%1:15:00::
+d002 d002.s092.t015 quake%1:11:00::
+d002 d002.s092.t016 hit%2:33:03::
+d002 d002.s093.t001 say%2:32:07::
+d002 d002.s093.t006 computer%1:06:00::
+d002 d002.s093.t007 take%2:40:04::
+d002 d002.s093.t009 three%5:00:00:cardinal:00 foot%2:38:00::
+d002 d002.s093.t010 trip%1:04:01::
+d002 d002.s093.t012 slide%2:38:02::
+d002 d002.s093.t015 floor%1:17:01::
+d002 d002.s094.t000 today%1:28:01::
+d002 d002.s094.t002 be%2:42:09::
+d002 d002.s094.t003 interesting%3:00:00::
+d002 d002.s094.t005 people%1:14:01::
+d002 d002.s094.t006 realize%2:40:01::
+d002 d002.s094.t008 hard%3:00:02::
+d002 d002.s094.t009 life%1:09:00::
+d002 d002.s094.t014 be%2:42:01::
+d002 d002.s094.t019 while%1:28:00::
+d002 d002.s097.t001 get%2:32:00::
+d002 d002.s097.t002 home%1:15:03::
+d002 d002.s097.t004 let%2:32:00::
+d002 d002.s097.t006 dog%1:18:02::
+d002 d002.s097.t009 house%1:06:00::
+d002 d002.s097.t011 notice%2:32:01::
+d002 d002.s097.t013 sound%1:17:00::
+d002 d002.s097.t016 head%1:23:00::
+d002 d002.s097.t020 someone%1:03:00::
+d002 d002.s097.t022 walk%2:41:01::
+d002 d002.s097.t025 roof%1:06:01::
+d002 d002.s098.t002 notice%2:32:01::
+d002 d002.s098.t005 car%1:06:03::
+d002 d002.s098.t007 bounce%2:40:01::
+d002 d002.s098.t013 someone%1:03:00::
+d002 d002.s098.t015 jump%2:30:01::
+d002 d002.s099.t001 realize%2:40:01::
+d002 d002.s099.t005 happen%2:41:00::
+d002 d002.s099.t007 scream%2:32:01::
+d002 d002.s099.t010 house%1:04:00::
+d002 d002.s099.t013 dog%1:18:01::
+d002 d002.s100.t000 cupboard%1:06:00::
+d002 d002.s100.t001 door%1:07:00::
+d002 d002.s100.t003 fly%2:35:00::
+d002 d002.s100.t006 trash_can%1:06:00::
+d002 d002.s100.t010 kitchen%1:06:00::
+d002 d002.s100.t011 walk%2:33:00::
+d002 d002.s100.t013 few%3:00:00::
+d002 d002.s100.t014 
+d002 d002.s100.t017 dog%1:18:02::
+d002 d002.s100.t018 come%2:42:03::
+d002 d002.s100.t023 scoot%2:38:00::
+d002 d002.s100.t027 dog%1:18:02::
+d002 d002.s100.t028 run%2:35:01::
+d002 d002.s100.t030 stand%2:31:00::
+d002 d002.s100.t033 doorway%1:06:00::
+d002 d002.s100.t037 watch%2:32:09::
+d002 d002.s100.t039 outside%3:00:04::
+d002 d002.s100.t040 trash%1:27:00::
+d002 d002.s100.t041 can%1:06:02::
+d002 d002.s100.t042 dance%2:36:00::
+d002 d002.s100.t045 concrete%1:27:00::
+d002 d002.s101.t002 realize%2:31:01::
+d002 d002.s101.t005 be%2:42:13::
+d002 d002.s101.t010 go%2:30:03::
+d002 d002.s101.t012 stand%2:31:01::
+d002 d002.s101.t015 
+d002 d002.s101.t018 house%1:14:01::
+d002 d002.s101.t021 wait%2:31:00::
+d002 d002.s101.t023 pray%2:32:01::
+d002 d002.s101.t027 come%2:42:03::
+d002 d002.s101.t028 home%1:15:03::
+d002 d002.s101.t030 shiver%2:29:00::
+d002 d002.s101.t034 be%2:42:01::
+d002 d002.s101.t040 get%2:39:13::
+d002 d002.s102.t003 life%1:09:00::
+d002 d002.s102.t006 be%2:42:01::
+d002 d002.s102.t008 frightened%5:00:00:afraid:00
+d002 d002.s103.t002 saw%2:35:00::
+d002 d002.s103.t004 picture%1:26:00::
+d002 d002.s103.t014 begin%2:41:04::
+d002 d002.s103.t017 cry%2:32:07::
+d002 d002.s106.t005 be%2:42:09::
+d002 d002.s106.t011 
+d002 d002.s106.t014 evening%1:28:00::
+d002 d002.s106.t016 lot%1:23:00::
+d002 d002.s106.t018 people%1:14:01::
+d002 d002.s106.t020 dog%1:18:01::
+d002 d002.s106.t021 walk_around%2:41:00::
+d002 d002.s106.t024 drink%2:34:02::
+d002 d002.s106.t025 beer%1:13:00::
+d002 d002.s109.t001 be%2:42:01::
+d002 d002.s109.t003 sit_down%2:35:00::
+d002 d002.s109.t007 meet%2:42:00::
+d002 d002.s109.t010 new%3:00:00::
+d002 d002.s109.t011 therapy%1:04:00::
+d002 d002.s109.t012 client%1:18:00::
+d002 d002.s109.t015 couple%1:14:00::
+d002 d002.s109.t019 building%1:14:00::
+d002 d002.s109.t020 start%2:30:00::
+d002 d002.s109.t022 shake%2:38:02::
+d002 d002.s109.t024 like_crazy%4:02:00::
+d002 d002.s110.t001 be%2:42:07::
+d002 d002.s110.t003 flimsy%5:00:01:weak:00
+d002 d002.s110.t004 structure%1:07:00::
+d002 d002.s110.t006 build%2:30:10::
+d002 d002.s110.t010 support%1:10:01::
+d002 d002.s110.t016 
+d002 d002.s111.t004 stop%2:41:00::
+d002 d002.s111.t006 breathe%2:32:00::
+d002 d002.s111.t009 moment%1:19:00::
+d002 d002.s111.t015 keep%2:42:00::
+d002 d002.s111.t018 come%2:42:05::
+d002 d002.s111.t021 lunge%2:38:00::
+d002 d002.s111.t024 doorway%1:06:00::
+d002 d002.s112.t001 needless%5:00:00:unnecessary:00
+d002 d002.s112.t004 say%2:32:04::
+d002 d002.s112.t007 be%2:42:13::
+d002 d002.s112.t009 interesting%3:00:00::
+d002 d002.s112.t010 first%5:00:00:best:00
+d002 d002.s112.t011 session%1:14:00::
+d002 d002.s115.t001 escape%2:30:04::
+d002 d002.s115.t004 unscathed%5:00:00:uninjured:00
+d002 d002.s116.t001 trouble%1:12:03::
+d002 d002.s116.t002 be%2:40:00::
+d002 d002.s116.t003 scar%2:35:00::
+d002 d002.s116.t004 family%1:14:04::
+d002 d002.s116.t009 get_through%2:38:00::
+d002 d002.s116.t011 phone_line%1:06:00::
+d002 d002.s116.t016 spend%2:42:00::
+d002 d002.s116.t019 horrible%5:00:00:alarming:00
+d002 d002.s116.t020 hour%1:07:00::
+d002 d002.s116.t023 know%2:31:11::
+d002 d002.s119.t003 be%2:42:07::
+d002 d002.s119.t006 
+d002 d002.s119.t010 lawn%1:15:00::
+d002 d002.s119.t011 start%2:38:02::
+d002 d002.s119.t013 roll%2:35:01::
+d002 d002.s119.t015 ocean%1:23:00::
+d002 d002.s119.t016 wave%1:25:00::
+d002 d002.s120.t001 run%2:35:01::
+d002 d002.s120.t004 house%1:06:00::
+d002 d002.s120.t007 get%2:32:08::
+d002 d002.s120.t012 next%5:00:00:incoming:00
+d002 d002.s120.t013 tremor%1:26:00::
+d002 d002.s120.t014 throw%2:38:03::
+d002 d002.s120.t018 air%1:15:00::
+d002 d002.s120.t020 bounce%2:35:03::
+d002 d002.s120.t024 try%2:34:00::
+d002 d002.s120.t027 get%2:32:08::
+d002 d002.s120.t030 
+d002 d002.s121.t001 be%2:42:00::
+d002 d002.s121.t003 fine%5:00:00:satisfactory:00
+d002 d002.s121.t010 freak%2:37:00::
+d002 d002.s122.t000 kitchen%1:06:00::
+d002 d002.s122.t001 full%3:00:01::
+d002 d002.s122.t004 crystal%1:06:02::
+d002 d002.s123.t000 
+d002 d002.s123.t002 tape%1:06:04::
+d002 d002.s123.t006 room%1:26:00::
+d002 d002.s124.t002 
+d002 d002.s124.t005 house%1:06:02::
+d002 d002.s124.t006 be%2:42:08::
+d002 d002.s124.t009 be%2:42:08::
+d002 d002.s124.t013 be%2:42:08::
+d002 d002.s124.t018 structure%1:07:00::
+d002 d002.s124.t019 be%2:41:00::
+d002 d002.s124.t020 fine%5:00:00:pure:02
+d002 d002.s125.t003 stand%2:31:00::
+d002 d002.s125.t006 lawn%1:15:00::
+d002 d002.s125.t011 wait%2:42:01::
+d002 d002.s125.t014 tremor%1:11:00::
+d002 d002.s125.t017 notice%2:32:01::
+d002 d002.s125.t021 earthworm%1:05:00::
+d002 d002.s125.t023 emerge%2:42:00::
+d002 d002.s125.t026 ground%1:17:01::
+d002 d002.s125.t028 slither%2:38:00::
+d002 d002.s125.t031 lawn%1:15:00::
+d002 d002.s128.t002 be%2:42:07::
+d002 d002.s128.t003 amazing%5:00:00:impressive:00
+d002 d002.s128.t006 second%1:23:00::
+d002 d002.s128.t010 change%2:30:02::
+d002 d002.s128.t012 life%1:09:00::
+d002 d002.s131.t001 guess%2:32:00::
+d002 d002.s131.t006 live%2:42:07::
+d002 d002.s131.t012 wait%2:31:00::
+d002 d002.s131.t018 aftershock%1:11:00::
+d002 d002.s132.t002 be%2:42:07::
+d002 d002.s132.t003 hard%3:00:06::
+d002 d002.s132.t006 accept%2:40:00::
+d002 d002.s132.t009 be%2:42:07::
+d002 d002.s132.t013 take%2:40:05::
+d002 d002.s132.t015 second%1:23:00::
+d002 d002.s133.t001 wonder%2:32:12::
+d002 d002.s133.t005 be%2:42:02::
+d002 d002.s133.t006 able%5:00:00:capable:00
+d002 d002.s133.t009 
+d002 d002.s136.t000 flesh%1:08:01::
+d002 d002.s136.t001 go%2:30:03::
+d002 d002.s136.t003 total%1:06:00::
+d002 d002.s136.t006 flight%1:04:01::
+d002 d002.s136.t008 fight%1:10:00::
+d002 d002.s137.t000 nausea%1:26:00::
+d002 d002.s137.t001 seem%2:42:00::
+d002 d002.s137.t003 commonplace%5:00:02:ordinary:00
+d002 d002.s137.t004 symptom%1:10:00::
+d002 d002.s138.t002 quiet%5:00:00:unostentatious:00
+d002 d002.s139.t001 walk%2:33:00::
+d002 d002.s139.t010 few%3:00:00::
+d002 d002.s139.t011 minute%1:10:00::
+d002 d002.s139.t015 morning%1:11:00::
+d002 d002.s140.t000 next%5:00:00:incoming:00
+d002 d002.s140.t005 homeless%5:00:00:unfortunate:00
+d002 d002.s140.t006 couple%1:17:00::
+d002 d002.s140.t009 bundle%2:29:00::
+d002 d002.s140.t013 blue%5:00:00:sexy:00
+d002 d002.s140.t014 
+d002 d002.s140.t017 sit_up%2:29:00::
+d002 d002.s140.t020 say%2:42:00::
+d002 d002.s140.t023 good_morning%1:10:00::
+d002 d002.s140.t029 woman%1:18:02::
+d002 d002.s140.t030 smile%2:32:00::
+d002 d002.s140.t032 say%2:42:00::
+d002 d002.s140.t035 
+d002 d002.s140.t039 great%5:00:00:pregnant:00
+d002 d002.s140.t043 be%2:42:01::
+d002 d002.s140.t044 
+d002 d002.s141.t001 agree%2:40:02::
+d002 d002.s142.t001 be%2:42:07::
+d002 d002.s143.t000 great%5:00:01:extraordinary:00
diff --git a/WSD/wsd_method1.py b/WSD/wsd_method1.py
index 707d9c0bf1f51b2de6fc682a2971ed88bd884c69..8aa2c70bdfc0d9ba2c234835feef066aac536d4c 100644
--- a/WSD/wsd_method1.py
+++ b/WSD/wsd_method1.py
@@ -42,7 +42,8 @@ def open_mapping(filename):
 
 def open_sense_keys(filename):
 	"""
-	
+	open wn30-17 sense key mapping
+	returns a dictionary {(syn_id_30, pos):sense_key_17}
 	"""
 	with open(filename, 'r') as input:
 		sense_keys = {(line.split()[0], line.split()[3]):line.split()[2] for line in input.readlines()}
@@ -52,11 +53,10 @@ def map_words(sentence):
 	"""
 	takes a list of ambig words 
 	mapps them to potential synsets
-	returns a list of synset_id lists
+	returns a list of synset_id lists  [ [[w1s1],[w1s2],[w1s3]] , [[w2s1],...] ,...]
 	"""
 	pos = ['n','v','a','r']
 	ambig_list = []
-	#split = False
 	def get_lem_id(token):
 		if token in lemmata_mapping.keys():
 			ambig_list.append(lemmata_mapping[token][1])
@@ -76,20 +76,17 @@ def map_words(sentence):
 
 	for word in sentence:
 		add = False
-		#print(word)
 		add = get_lem_id(word[0]+'/'+word[1])
-		#print(add)
 		if add: continue
 		elif '-' in word[0]: 
 			words = word[0].split('-')
 			for w in words:
 				add = get_node_id(w)
-				#if add: split = True
 		else:
 			add = get_node_id(word[0])
 
 		if not add: ambig_list.append(['U'])
-	#print(ambig_list)		
+		
 	return ambig_list
 
 def embed(node_id):
@@ -97,23 +94,12 @@ def embed(node_id):
 	takes a node id (int)
 	returns it's embedding (array)
 	"""
-	#l1 = pos_embeddings
-	#l2 = lemmata_embeddings
-	embedding = np.concatenate((id_embeddings[node_id],pos_embeddings[node_id],lex_file_embeddings[node_id],lemmata_embeddings[node_id]), axis=0)
+	labels = (id_embeddings[node_id],pos_embeddings[node_id],lex_file_embeddings[node_id],lemmata_embeddings[node_id])
+	embedding = np.concatenate(labels, axis=0)
 
 	return embedding
 
 
-#def concatenate(l1 , l2):
-	"""
-	soll: konkatiniert die Embeddings ausgewählter Labels pro Knoten
-		--> soll embed() werden
-	ist: konkatiniert die Embeddings ausgewählter Labels aller Knoten
-	"""
-	#embeddings = [np.concatenate((l1[i], l2[i]), axis=0) for i in range(len(l1))]
-	#return embeddings
-
-
 def get_distance(node_combi):
 	"""
 	takes a list of node embedding lists