Created
March 19, 2016 00:58
-
-
Save ipha/8ce08d38cc5ab46387c0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
from nltk.corpus import brown | |
PUNCTUATION = "!\"#$%'()*+,-./:;<=>?@[\\]^_`{|}~" | |
MIN_OCCURANCES = 20 | |
# Hold a count of words | |
countdict = {} | |
# Results in form (count, leading word, following word) | |
results = list() | |
prev = "" | |
# Itterate through every word | |
# Previous word is stored in 'prev' | |
for word in brown.words(): | |
wl = word.lower() | |
if wl in countdict: | |
if prev in countdict[wl]: | |
countdict[wl][prev] = countdict[wl][prev] + 1 | |
else: | |
countdict[wl][prev] = 1 | |
else: | |
countdict[wl] = {} | |
prev = wl | |
# Itterate through results filtering out punctuation and counts smaller than MIN_OCCURANCES | |
for word in countdict: | |
for prev in countdict[word]: | |
if countdict[word][prev] > MIN_OCCURANCES: | |
if (word not in PUNCTUATION) and (prev not in PUNCTUATION): | |
results.append((countdict[word][prev], prev, word)) | |
# Print results sorted by number of occurances | |
for result in sorted(results, key=lambda result: result[0]): | |
print(result) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(21, 'the', 'dictionary') | |
(21, 'be', 'one') | |
(21, '--', 'one') | |
(21, 'my', 'life') | |
(21, 'a', 'central') | |
(21, 'as', 'any') | |
(21, 'but', 'their') | |
(21, 'an', 'increase') | |
(21, 'the', 'increase') | |
(21, 'had', 'found') | |
(21, 'the', 'start') | |
(21, 'his', 'death') | |
(21, 'did', 'i') | |
(21, 'he', "wouldn't") | |
(21, 'a', 'cold') | |
(21, 'some', 'people') | |
(21, 'three', 'days') | |
(21, 'of', 'nuclear') | |
(21, 'ever', 'seen') | |
(21, 'federal', 'government') | |
(21, 'no', 'time') | |
(21, 'at', 'present') | |
(21, 'his', 'arms') | |
(21, 'the', 'election') | |
(21, 'had', 'only') | |
(21, 'his', 'brother') | |
(21, '``', 'on') | |
(21, 'depend', 'on') | |
(21, 'be', 'obtained') | |
(21, 'to', 'measure') | |
(21, 'an', 'average') | |
(21, 'was', 'over') | |
(21, 'at', 'them') | |
(21, 'the', 'higher') | |
(21, 'and', 'must') | |
(21, 'given', 'him') | |
(21, 'the', 'freedom') | |
(21, 'on', 'both') | |
(21, 'something', 'else') | |
(21, 'the', 'formula') | |
(21, 'this', 'type') | |
(21, 'to', 'recognize') | |
(21, 'we', 'did') | |
(21, 'why', 'did') | |
(21, 'her', 'first') | |
(21, 'then', 'she') | |
(21, 'available', 'in') | |
(21, 'described', 'in') | |
(21, 'faith', 'in') | |
(21, 'had', 'in') | |
(21, 'hand', 'in') | |
(21, 'house', 'in') | |
(21, 'children', 'in') | |
(21, 'people', 'were') | |
(21, '``', 'who') | |
(21, 'in', 'relation') | |
(21, 'the', 'atmosphere') | |
(21, 'in', 'march') | |
(21, 'nothing', 'more') | |
(21, 'one', 'more') | |
(21, 'same', 'thing') | |
(21, 'front', 'door') | |
(21, 'on', 'all') | |
(21, 'it', 'became') | |
(21, 'mrs.', 'coolidge') | |
(21, 'to', 'date') | |
(21, 'what', 'about') | |
(21, 'the', 'defense') | |
(21, 'i', 'might') | |
(21, 'is', 'concerned') | |
(21, 'to', 'discover') | |
(21, 'of', 'local') | |
(21, 'and', 'local') | |
(21, 'the', 'forest') | |
(21, 'me', 'as') | |
(21, 'he', 'moved') | |
(21, 'a', 'serious') | |
(21, 'the', 'important') | |
(21, 'of', 'land') | |
(21, 'not', 'see') | |
(21, 'a', 'moral') | |
(21, 'the', 'heavy') | |
(21, 'index', 'word') | |
(21, 'the', 'existence') | |
(21, 'but', 'still') | |
(21, 'and', 'left') | |
(21, 'about', 'half') | |
(21, 'been', 'given') | |
(21, 'to', 'deal') | |
(21, 'the', 'virgin') | |
(21, 'creation', 'of') | |
(21, 'distance', 'of') | |
(21, 'efforts', 'of') | |
(21, 'percent', 'of') | |
(21, 'moment', 'of') | |
(21, 'right', 'of') | |
(21, 'hands', 'of') | |
(21, 'signs', 'of') | |
(21, 'standards', 'of') | |
(21, 'plane', 'of') | |
(21, 'hope', 'of') | |
(21, 'report', 'of') | |
(21, 'typical', 'of') | |
(21, 'composed', 'of') | |
(21, 'i', 'made') | |
(21, 'a', 'house') | |
(21, 'probably', 'the') | |
(21, 'enter', 'the') | |
(21, 'join', 'the') | |
(21, 'considering', 'the') | |
(21, 'that', 'other') | |
(21, 'the', 'thyroid') | |
(21, 'must', 'not') | |
(21, "you've", 'got') | |
(21, 'too', 'often') | |
(21, 'a', 'list') | |
(21, 'so', 'well') | |
(21, 'the', 'coming') | |
(21, 'was', 'much') | |
(21, 'her', 'mouth') | |
(21, 'most', 'part') | |
(21, 'which', 'you') | |
(21, 'a', 'hard') | |
(21, 'are', 'at') | |
(21, 'the', 'poet') | |
(21, 'to', 'control') | |
(21, 'to', 'demonstrate') | |
(21, 'it', 'makes') | |
(21, 'they', "didn't") | |
(21, 'during', 'a') | |
(21, 'makes', 'a') | |
(21, 'either', 'a') | |
(21, 'many', 'a') | |
(21, 'around', 'a') | |
(21, 'build', 'a') | |
(21, 'that', 'may') | |
(21, 'for', 'new') | |
(21, 'and', 'came') | |
(21, 'long', 'enough') | |
(21, 'this', 'title') | |
(21, 'from', '``') | |
(21, 'the', 'corporation') | |
(21, 'the', 'sale') | |
(21, 'to', 'push') | |
(21, 'so', 'we') | |
(21, 'the', 'mountains') | |
(21, 'and', 'william') | |
(21, 'with', 'those') | |
(21, 'whether', 'or') | |
(21, 'this', 'group') | |
(21, 'he', 'cannot') | |
(21, 'having', 'been') | |
(21, 'is', 'needed') | |
(21, 'the', 'green') | |
(21, 'with', 'my') | |
(21, 'had', 'he') | |
(21, 'knew', 'he') | |
(21, 'the', 'elements') | |
(21, 'of', 'personal') | |
(21, 'the', 'motor') | |
(21, 'the', 'conclusion') | |
(21, 'a', 'low') | |
(21, 'reason', 'why') | |
(21, 'announced', 'that') | |
(21, 'by', 'that') | |
(21, 'suppose', 'that') | |
(21, 'obvious', 'that') | |
(21, 'noted', 'that') | |
(21, 'feel', 'that') | |
(21, 'come', 'into') | |
(21, 'a', 'former') | |
(21, 'while', 'they') | |
(21, '--', 'they') | |
(21, 'how', 'they') | |
(21, 'the', 'kid') | |
(21, 'you', 'ever') | |
(21, 'this', 'morning') | |
(21, 'on', "''") | |
(21, 'out', 'from') | |
(21, 'directly', 'to') | |
(21, 'thought', 'to') | |
(21, 'attempted', 'to') | |
(21, 'begins', 'to') | |
(21, 'turn', 'to') | |
(21, 'refer', 'to') | |
(21, 'best', 'to') | |
(21, 'apply', 'to') | |
(21, 'fail', 'to') | |
(21, 'equal', 'to') | |
(21, 'that', 'by') | |
(21, 'wife', 'and') | |
(21, 'was', 'getting') | |
(21, 'we', "don't") | |
(21, 'in', 'item') | |
(21, 'to', 'many') | |
(21, 'has', 'come') | |
(21, 'would', 'come') | |
(22, 'during', 'this') | |
(22, 'the', 'blood') | |
(22, 'very', 'little') | |
(22, 'a', 'life') | |
(22, 'several', 'years') | |
(22, 'as', 'their') | |
(22, 'have', 'found') | |
(22, '``', "let's") | |
(22, 'one', 'has') | |
(22, 'the', 'product') | |
(22, 'only', 'two') | |
(22, 'in', 'business') | |
(22, 'knew', 'what') | |
(22, 'in', 'no') | |
(22, 'american', 'people') | |
(22, 'the', 'incident') | |
(22, 'this', 'week') | |
(22, 'the', 'industrial') | |
(22, 'on', 'earth') | |
(22, 'nuclear', 'weapons') | |
(22, 'later', 'on') | |
(22, 'are', 'on') | |
(22, 'were', 'on') | |
(22, 'a', 'story') | |
(22, 'him', 'out') | |
(22, 'to', 'place') | |
(22, 'make', 'them') | |
(22, 'there', 'must') | |
(22, 'see', 'him') | |
(22, 'to', 'both') | |
(22, 'why', 'should') | |
(22, '``', "we'll") | |
(22, 'and', 'almost') | |
(22, 'is', 'af') | |
(22, 'by', 'af') | |
(22, 'and', 'did') | |
(22, 'what', 'did') | |
(22, 'obtained', 'in') | |
(22, 'confidence', 'in') | |
(22, 'again', 'in') | |
(22, 'whether', 'it') | |
(22, 'in', 'paris') | |
(22, 'is', 'required') | |
(22, 'has', 'already') | |
(22, 'a', 'college') | |
(22, 'the', 'appeal') | |
(22, 'give', 'up') | |
(22, 'and', 'be') | |
(22, "wouldn't", 'be') | |
(22, "i'll", 'be') | |
(22, 'worry', 'about') | |
(22, 'think', 'about') | |
(22, '``', 'our') | |
(22, 'and', 'felt') | |
(22, 'of', 'four') | |
(22, 'the', 'shelter') | |
(22, 'the', 'necessary') | |
(22, 'the', 'counter') | |
(22, 'be', 'too') | |
(22, 'them', 'as') | |
(22, 'only', 'as') | |
(22, 'or', 'as') | |
(22, 'be', 'as') | |
(22, 'the', 'wife') | |
(22, 'the', 'secret') | |
(22, 'but', 'was') | |
(22, 'he', 'stopped') | |
(22, 'the', 'communist') | |
(22, 'of', 'mind') | |
(22, 'i', 'took') | |
(22, 'up', 'her') | |
(22, 'gave', 'her') | |
(22, 'and', 'forth') | |
(22, 'will', 'give') | |
(22, 'would', 'give') | |
(22, 'levels', 'of') | |
(22, 'spring', 'of') | |
(22, 'properties', 'of') | |
(22, 'church', 'of') | |
(22, 'fall', 'of') | |
(22, 'need', 'of') | |
(22, 'freedom', 'of') | |
(22, 'months', 'of') | |
(22, 'court', 'of') | |
(22, 'consisting', 'of') | |
(22, 'institute', 'of') | |
(22, 'risk', 'of') | |
(22, 'stage', 'of') | |
(22, 'it', 'made') | |
(22, 'to', 'improve') | |
(22, 'even', 'so') | |
(22, 'in', 'regard') | |
(22, 'provide', 'the') | |
(22, 'hold', 'the') | |
(22, 'fill', 'the') | |
(22, 'here', 'the') | |
(22, 'accept', 'the') | |
(22, 'a', 'nation') | |
(22, 'in', 'favor') | |
(22, 'the', 'neighborhood') | |
(22, 'and', 'often') | |
(22, 'were', 'at') | |
(22, 'the', 'truck') | |
(22, 'an', 'effort') | |
(22, 'to', 'wait') | |
(22, 'as', 'such') | |
(22, 'to', 'escape') | |
(22, 'table', '1') | |
(22, 'a', 'full') | |
(22, 'and', '2') | |
(22, 'is', 'available') | |
(22, 'the', 'direct') | |
(22, 'the', 'gun') | |
(22, 'of', 'high') | |
(22, 'was', 'sure') | |
(22, 'once', 'a') | |
(22, 'there', 'may') | |
(22, 'he', 'added') | |
(22, 'they', 'came') | |
(22, 'is', 'something') | |
(22, 'with', '``') | |
(22, "don't", 'have') | |
(22, 'are', 'those') | |
(22, 'but', 'is') | |
(22, 'time', 'is') | |
(22, 'and', 'south') | |
(22, 'to', 'cover') | |
(22, 'the', 'russian') | |
(22, 'a', 'relatively') | |
(22, 'the', 'vast') | |
(22, '``', 'your') | |
(22, 'on', 'your') | |
(22, 'of', 'world') | |
(22, 'at', 'each') | |
(22, 'and', 'each') | |
(22, 'his', 'personal') | |
(22, 'of', 'st.') | |
(22, 'an', 'early') | |
(22, 'program', 'for') | |
(22, 'to', 'describe') | |
(22, 'the', 'low') | |
(22, 'same', 'way') | |
(22, "''", 'which') | |
(22, 'note', 'that') | |
(22, 'such', 'that') | |
(22, 'belief', 'that') | |
(22, 'true', 'that') | |
(22, 'learned', 'that') | |
(22, 'he', 'wondered') | |
(22, 'world', "''") | |
(22, 'home', "''") | |
(22, 'in', "''") | |
(22, 'day', "''") | |
(22, 'the', 'source') | |
(22, 'removed', 'from') | |
(22, 'ranging', 'from') | |
(22, 'hand', 'to') | |
(22, 'wished', 'to') | |
(22, 'this', 'to') | |
(22, 'managed', 'to') | |
(22, 'rise', 'to') | |
(22, 'permitted', 'to') | |
(22, 'assigned', 'to') | |
(22, 'first', 'to') | |
(22, 'the', 'sum') | |
(22, 'in', 'august') | |
(22, 'which', 'could') | |
(22, 'years', 'and') | |
(22, 'boys', 'and') | |
(22, 'president', 'and') | |
(22, 'feet', 'and') | |
(22, 'nature', 'and') | |
(22, '1', 'and') | |
(22, 'history', 'and') | |
(22, 'around', 'and') | |
(22, 'head', 'and') | |
(22, 'cities', 'and') | |
(22, 'is', 'probably') | |
(22, 'the', 'arc') | |
(22, 'to', 'watch') | |
(22, 'been', 'done') | |
(22, 'is', 'done') | |
(22, 'the', 'planning') | |
(22, 'the', 'rules') | |
(22, 'he', 'reached') | |
(22, 'a', 'deep') | |
(22, 'not', 'mean') | |
(22, 'we', 'now') | |
(22, 'the', 'shape') | |
(23, 'when', 'one') | |
(23, 'to', 'eat') | |
(23, 'a', 'position') | |
(23, 'had', 'known') | |
(23, 'have', 'any') | |
(23, 'of', 'law') | |
(23, 'of', 'india') | |
(23, 'she', 'found') | |
(23, 'all', 'i') | |
(23, 'by', 'no') | |
(23, 'other', 'people') | |
(23, 'the', 'above') | |
(23, 'the', 'republican') | |
(23, 'the', 'chance') | |
(23, 'the', 'son') | |
(23, 'the', 'firm') | |
(23, 'can', 'get') | |
(23, '``', 'get') | |
(23, 'i', 'get') | |
(23, 'the', 'daily') | |
(23, 'the', 'conditions') | |
(23, 'the', 'beach') | |
(23, 'them', 'on') | |
(23, 'them', 'out') | |
(23, 'the', 'driver') | |
(23, 'to', 'mr.') | |
(23, 'an', 'excellent') | |
(23, 'in', 'them') | |
(23, "i'm", 'going') | |
(23, 'the', 'sort') | |
(23, 'could', 'hear') | |
(23, 'of', 'national') | |
(23, 'this', 'kind') | |
(23, 'in', 'town') | |
(23, 'the', 'wide') | |
(23, 'the', 'russians') | |
(23, 'and', 'small') | |
(23, 'there', 'should') | |
(23, 'we', 'want') | |
(23, 'the', 'greek') | |
(23, '``', 'did') | |
(23, 'of', 'english') | |
(23, 'to', 'handle') | |
(23, '--', 'she') | |
(23, 'resulted', 'in') | |
(23, 'night', 'in') | |
(23, 'there', 'in') | |
(23, 'together', 'in') | |
(23, 'use', 'in') | |
(23, 'appeared', 'in') | |
(23, 'now', 'in') | |
(23, 'present', 'in') | |
(23, 'in', 'detail') | |
(23, 'did', 'it') | |
(23, 'like', 'it') | |
(23, 'believe', 'it') | |
(23, 'then', 'it') | |
(23, 'of', 'christ') | |
(23, 'jesus', 'christ') | |
(23, 'the', 'pain') | |
(23, 'the', 'methods') | |
(23, 'to', 'prepare') | |
(23, 'he', "wasn't") | |
(23, 'the', "president's") | |
(23, 'is', 'all') | |
(23, 'the', 'winter') | |
(23, 'him', 'up') | |
(23, 'never', 'be') | |
(23, 'and', 'about') | |
(23, 'information', 'about') | |
(23, 'the', 'appropriate') | |
(23, 'and', 'our') | |
(23, '``', "what's") | |
(23, 'which', 'might') | |
(23, 'you', 'might') | |
(23, 'one', 'might') | |
(23, 'and', 'turned') | |
(23, 'his', 'shoulder') | |
(23, 'time', 'was') | |
(23, 'name', 'was') | |
(23, 'of', 'rhode') | |
(23, 'her', 'mind') | |
(23, 'of', 'england') | |
(23, 'an', 'idea') | |
(23, 'performance', 'of') | |
(23, 'not', 'of') | |
(23, 'impact', 'of') | |
(23, 'favor', 'of') | |
(23, 'expense', 'of') | |
(23, 'council', 'of') | |
(23, 'elements', 'of') | |
(23, 'pieces', 'of') | |
(23, 'shape', 'of') | |
(23, 'significance', 'of') | |
(23, 'status', 'of') | |
(23, 'defense', 'of') | |
(23, 'a', 'thousand') | |
(23, 'and', 'equipment') | |
(23, 'of', 'various') | |
(23, 'watching', 'the') | |
(23, 'beneath', 'the') | |
(23, 'become', 'the') | |
(23, 'seen', 'the') | |
(23, 'increase', 'the') | |
(23, 'being', 'the') | |
(23, 'with', 'whom') | |
(23, 'need', 'not') | |
(23, 'might', 'not') | |
(23, 'and', 'because') | |
(23, 'but', 'because') | |
(23, 'are', 'often') | |
(23, 'three', 'times') | |
(23, 'in', 'part') | |
(23, '``', 'at') | |
(23, 'not', 'at') | |
(23, 'to', 'sit') | |
(23, 'to', 'remove') | |
(23, 'the', 'poor') | |
(23, 'no', 'means') | |
(23, 'before', 'a') | |
(23, 'now', 'a') | |
(23, 'the', 'title') | |
(23, 'word', '``') | |
(23, 'in', 'school') | |
(23, 'the', 'county') | |
(23, 'can', 'have') | |
(23, 'never', 'have') | |
(23, 'then', 'we') | |
(23, 'the', 'necessity') | |
(23, 'all', 'those') | |
(23, 'world', 'is') | |
(23, 'work', 'is') | |
(23, 'a', 'look') | |
(23, "i've", 'been') | |
(23, 'in', 'charge') | |
(23, 'i', 'feel') | |
(23, 'is', 'my') | |
(23, 'the', 'reaction') | |
(23, 'the', 'season') | |
(23, 'that', 'year') | |
(23, '&', 'sharpe') | |
(23, 'an', 'additional') | |
(23, 'a', 'most') | |
(23, 'to', 'supply') | |
(23, 'means', 'that') | |
(23, 'saying', 'that') | |
(23, 'things', 'that') | |
(23, 'realized', 'that') | |
(23, 'though', 'they') | |
(23, 'us', "''") | |
(23, 'this', 'same') | |
(23, 'reduced', 'to') | |
(23, 'trip', 'to') | |
(23, 'belong', 'to') | |
(23, 'years', 'to') | |
(23, 'visit', 'to') | |
(23, 'contribution', 'to') | |
(23, 'tendency', 'to') | |
(23, 'limited', 'to') | |
(23, 'caused', 'by') | |
(23, 'used', 'by') | |
(23, 'up', 'by') | |
(23, 'supported', 'by') | |
(23, 'equipped', 'with') | |
(23, 'this', 'and') | |
(23, 'peace', 'and') | |
(23, 'year', 'and') | |
(23, 'good', 'and') | |
(23, 'is', 'there') | |
(23, 'will', 'never') | |
(23, 'have', 'never') | |
(23, 'a', 'mile') | |
(23, 'in', 'hand') | |
(23, 'their', 'lives') | |
(23, 'his', 'chest') | |
(24, 'she', 'went') | |
(24, 'as', 'this') | |
(24, 'of', 'education') | |
(24, 'the', 'evidence') | |
(24, 'the', 'armed') | |
(24, 'the', 'dogs') | |
(24, 'the', 'expense') | |
(24, 'the', 'holy') | |
(24, 'where', 'i') | |
(24, 'the', 'hell') | |
(24, 'made', 'no') | |
(24, 'and', 'perhaps') | |
(24, 'the', 'days') | |
(24, 'his', 'body') | |
(24, 'index', 'words') | |
(24, 'to', 'time') | |
(24, 'and', 'very') | |
(24, 'are', 'very') | |
(24, 'went', 'back') | |
(24, 'we', 'get') | |
(24, 'set', 'out') | |
(24, '``', 'mr.') | |
(24, 'from', 'him') | |
(24, 'the', 'impact') | |
(24, 'this', 'sort') | |
(24, 'to', 'protect') | |
(24, 'the', 'bill') | |
(24, 'he', 'remembered') | |
(24, 'wage', 'rate') | |
(24, 'to', 'study') | |
(24, 'and', 'without') | |
(24, 'in', 'love') | |
(24, 'the', 'director') | |
(24, 'the', 'decision') | |
(24, 'living', 'in') | |
(24, 'you', 'in') | |
(24, 'for', 'in') | |
(24, 'have', 'in') | |
(24, 'held', 'in') | |
(24, 'get', 'in') | |
(24, 'the', 'quality') | |
(24, 'let', 'it') | |
(24, 'see', 'it') | |
(24, 'take', 'it') | |
(24, 'to', 'pick') | |
(24, 'a', 'minute') | |
(24, 'and', 'were') | |
(24, 'of', 'work') | |
(24, 'the', 'kennedy') | |
(24, 'and', 'political') | |
(24, 'out', 'his') | |
(24, 'made', 'his') | |
(24, 'put', 'his') | |
(24, 'upon', 'his') | |
(24, 'the', 'economic') | |
(24, 'not', 'more') | |
(24, 'with', 'more') | |
(24, 'to', 'preserve') | |
(24, 'them', 'all') | |
(24, 'got', 'up') | |
(24, 'only', 'be') | |
(24, 'in', 'contrast') | |
(24, 'she', 'felt') | |
(24, 'the', 'earlier') | |
(24, 'the', 'author') | |
(24, 'the', 'performance') | |
(24, 'same', 'as') | |
(24, 'have', 'gone') | |
(24, 'the', 'communists') | |
(24, 'would', 'go') | |
(24, 'she', 'wanted') | |
(24, 'what', 'do') | |
(24, 'the', 'wind') | |
(24, 'to', 'save') | |
(24, 'extent', 'of') | |
(24, 'distribution', 'of') | |
(24, 'law', 'of') | |
(24, 'change', 'of') | |
(24, 'operation', 'of') | |
(24, 'three', 'of') | |
(24, 'eyes', 'of') | |
(24, 'friend', 'of') | |
(24, 'version', 'of') | |
(24, 'cold', 'war') | |
(24, 'the', 'base') | |
(24, 'my', 'father') | |
(24, 'not', 'make') | |
(24, 'open', 'the') | |
(24, 'understand', 'the') | |
(24, 'of', 'living') | |
(24, 'very', 'few') | |
(24, 'state', 'department') | |
(24, 'a', 'beautiful') | |
(24, 'at', 'some') | |
(24, 'the', 'record') | |
(24, 'thank', 'you') | |
(24, 'where', 'you') | |
(24, 'a', 'pair') | |
(24, 'out', 'at') | |
(24, 'them', 'at') | |
(24, 'back', 'at') | |
(24, 'in', 'several') | |
(24, 'the', 'means') | |
(24, 'is', 'based') | |
(24, 'and', 'another') | |
(24, 'or', 'another') | |
(24, 'felt', 'a') | |
(24, 'taking', 'a') | |
(24, 'saw', 'a') | |
(24, 'gave', 'a') | |
(24, 'the', 'meeting') | |
(24, 'on', 'may') | |
(24, 'she', 'came') | |
(24, 'would', 'say') | |
(24, 'may', 'also') | |
(24, 'he', 'called') | |
(24, 'in', 'good') | |
(24, 'kansas', 'city') | |
(24, 'i', 'cannot') | |
(24, 'a', 'slight') | |
(24, 'be', 'applied') | |
(24, 'that', 'my') | |
(24, 'was', 'my') | |
(24, 'since', 'he') | |
(24, 'with', 'your') | |
(24, 'to', 'add') | |
(24, 'one', 'had') | |
(24, 'has', 'had') | |
(24, 'in', 'certain') | |
(24, 'room', 'for') | |
(24, 'basis', 'for') | |
(24, 'the', 'indian') | |
(24, 'one', 'way') | |
(24, 'says', 'that') | |
(24, 'stated', 'that') | |
(24, 'after', 'they') | |
(24, 'until', 'they') | |
(24, 'to', 'prove') | |
(24, 'man', "''") | |
(24, 'the', 'questionnaire') | |
(24, 'in', 'effect') | |
(24, 'impossible', 'to') | |
(24, 'something', 'to') | |
(24, 'entitled', 'to') | |
(24, 'intended', 'to') | |
(24, 'failure', 'to') | |
(24, 'brought', 'to') | |
(24, 'reference', 'to') | |
(24, 'subjected', 'to') | |
(24, 'attempts', 'to') | |
(24, 'the', 'crisis') | |
(24, 'these', 'things') | |
(24, 'out', 'by') | |
(24, 'but', 'by') | |
(24, 'country', 'and') | |
(24, 'first', 'and') | |
(24, 'hand', 'and') | |
(24, 'out', 'there') | |
(24, 'the', 'standard') | |
(24, 'had', 'heard') | |
(25, 'the', 'private') | |
(25, 'the', 'chicago') | |
(25, 'is', 'little') | |
(25, 'four', 'years') | |
(25, 'hundred', 'years') | |
(25, 'recent', 'years') | |
(25, 'the', 'strength') | |
(25, 'people', 'are') | |
(25, 'this', 'has') | |
(25, 'with', 'two') | |
(25, 'the', 'economy') | |
(25, 'would', 'take') | |
(25, 'the', 'influence') | |
(25, 'home', 'runs') | |
(25, 'time', 'when') | |
(25, 'he', 'tried') | |
(25, 'went', 'out') | |
(25, 'the', 'machine') | |
(25, 'a', 'nice') | |
(25, 'the', 'true') | |
(25, 'is', 'usually') | |
(25, 'take', 'place') | |
(25, 'one', 'man') | |
(25, 'brown', '&') | |
(25, 'some', 'kind') | |
(25, 'the', 'service') | |
(25, 'the', 'length') | |
(25, 'of', 'small') | |
(25, 'to', 'encourage') | |
(25, 'was', 'almost') | |
(25, 'the', 'five') | |
(25, 'said', 'in') | |
(25, 'expressed', 'in') | |
(25, 'placed', 'in') | |
(25, 'us', 'in') | |
(25, 'done', 'in') | |
(25, 'which', 'in') | |
(25, 'does', 'it') | |
(25, 'into', 'it') | |
(25, 'have', 'it') | |
(25, 'to', 'continue') | |
(25, "don't", 'think') | |
(25, 'have', 'already') | |
(25, 'under', 'his') | |
(25, 'when', 'his') | |
(25, 'before', 'his') | |
(25, 'above', 'all') | |
(25, 'the', 'regular') | |
(25, 'talking', 'about') | |
(25, 'the', 'values') | |
(25, 'a', 'black') | |
(25, 'his', 'second') | |
(25, 'have', 'become') | |
(25, 'he', 'started') | |
(25, 'him', '--') | |
(25, 'not', 'an') | |
(25, 'large', 'number') | |
(25, 'the', 'letter') | |
(25, 'the', 'governor') | |
(25, 'is', 'necessary') | |
(25, 'the', 'worst') | |
(25, 'her', 'as') | |
(25, 'are', 'as') | |
(25, 'in', 'rhode') | |
(25, 'in', 'europe') | |
(25, 'the', 'mind') | |
(25, 'around', 'her') | |
(25, 'is', 'given') | |
(25, 'sam', 'rayburn') | |
(25, 'conditions', 'of') | |
(25, 'expression', 'of') | |
(25, 'points', 'of') | |
(25, 'results', 'of') | |
(25, 'figure', 'of') | |
(25, 'city', 'of') | |
(25, 'or', 'of') | |
(25, 'symbol', 'of') | |
(25, 'ways', 'of') | |
(25, 'existence', 'of') | |
(25, 'speak', 'of') | |
(25, 'attitude', 'toward') | |
(25, 'the', 'crowd') | |
(25, 'in', 'various') | |
(25, 'it', 'the') | |
(25, 'prevent', 'the') | |
(25, 'onto', 'the') | |
(25, 'thus', 'the') | |
(25, 'half', 'the') | |
(25, 'became', 'the') | |
(25, 'set', 'the') | |
(25, 'am', 'not') | |
(25, 'is', 'well') | |
(25, 'can', 'you') | |
(25, 'and', 'these') | |
(25, 'long', 'ago') | |
(25, 'the', 'democratic') | |
(25, 'to', 'fight') | |
(25, 'his', 'family') | |
(25, 'human', 'beings') | |
(25, 'what', 'would') | |
(25, 'the', 'junior') | |
(25, 'for', 'another') | |
(25, 'in', 'another') | |
(25, 'a', 'fresh') | |
(25, 'given', 'a') | |
(25, 'her', 'a') | |
(25, 'you', 'say') | |
(25, 'they', 'also') | |
(25, 'by', '``') | |
(25, 'a', 'larger') | |
(25, 'for', 'three') | |
(25, "wouldn't", 'have') | |
(25, 'of', 'commerce') | |
(25, 'can', 'we') | |
(25, 'where', 'we') | |
(25, 'of', 'good') | |
(25, 'the', 'committee') | |
(25, 'his', 'home') | |
(25, 'whether', 'he') | |
(25, 'did', 'he') | |
(25, 'after', 'he') | |
(25, 'and', 'your') | |
(25, 'the', "nation's") | |
(25, 'the', 'train') | |
(25, 'a', 'personal') | |
(25, 'them', 'for') | |
(25, 'only', 'for') | |
(25, "''", 'for') | |
(25, 'that', 'for') | |
(25, 'this', 'act') | |
(25, 'the', 'eye') | |
(25, 'the', 'film') | |
(25, 'thing', 'that') | |
(25, 'except', 'that') | |
(25, 'them', 'into') | |
(25, 'for', 'they') | |
(25, 'life', "''") | |
(25, 'people', "''") | |
(25, 'god', "''") | |
(25, 'yes', "''") | |
(25, 'to', 'support') | |
(25, 'even', 'to') | |
(25, 'moved', 'to') | |
(25, 'plan', 'to') | |
(25, 'determined', 'to') | |
(25, 'begun', 'to') | |
(25, 'asked', 'to') | |
(25, 'one', 'could') | |
(25, 'in', 'itself') | |
(25, 'on', 'and') | |
(25, 'work', 'and') | |
(25, 'himself', 'and') | |
(25, 'words', 'and') | |
(25, 'his', 'horse') | |
(25, 'where', 'there') | |
(25, 'the', 'reasons') | |
(25, 'is', 'clear') | |
(26, 'soviet', 'union') | |
(26, 'from', 'any') | |
(26, 'been', 'found') | |
(26, 'and', 'found') | |
(26, 'i', 'found') | |
(26, 'to', 'permit') | |
(26, '``', 'are') | |
(26, 'it', 'down') | |
(26, 'to', 'feed') | |
(26, 'is', 'far') | |
(26, 'was', 'always') | |
(26, 'the', 'ultimate') | |
(26, 'other', 'words') | |
(26, 'one', 'time') | |
(26, 'any', 'time') | |
(26, 'it', 'back') | |
(26, 'that', 'only') | |
(26, 'effect', 'on') | |
(26, 'of', 'fact') | |
(26, 'and', 'over') | |
(26, 'that', 'night') | |
(26, 'in', 'him') | |
(26, 'he', 'seemed') | |
(26, 'for', 'both') | |
(26, 'the', 'force') | |
(26, 'in', 'af') | |
(26, 'the', 'method') | |
(26, 'at', 'me') | |
(26, 'of', 'five') | |
(26, 'while', 'she') | |
(26, 'where', 'she') | |
(26, 'especially', 'in') | |
(26, 'on', 'in') | |
(26, 'role', 'in') | |
(26, 'himself', 'in') | |
(26, 'all', 'in') | |
(26, 'given', 'in') | |
(26, 'of', 'science') | |
(26, 'so', 'it') | |
(26, 'was', 'already') | |
(26, '--', 'his') | |
(26, 'of', 'more') | |
(26, 'from', 'all') | |
(26, '``', "he's") | |
(26, 'five', 'minutes') | |
(26, 'pick', 'up') | |
(26, 'the', 'supreme') | |
(26, 'is', 'about') | |
(26, 'in', 'london') | |
(26, 'the', 'will') | |
(26, 'that', 'might') | |
(26, 'of', 'washington') | |
(26, 'the', 'responsibility') | |
(26, 'so', 'as') | |
(26, 'served', 'as') | |
(26, 'face', 'was') | |
(26, 'of', 'europe') | |
(26, 'told', 'her') | |
(26, 'will', 'do') | |
(26, 'of', 'experience') | |
(26, 'his', 'heart') | |
(26, 'association', 'of') | |
(26, 'but', 'of') | |
(26, 'costs', 'of') | |
(26, 'sum', 'of') | |
(26, 'interpretation', 'of') | |
(26, 'few', 'of') | |
(26, 'needs', 'of') | |
(26, 'action', 'of') | |
(26, 'much', 'the') | |
(26, 'reach', 'the') | |
(26, 'include', 'the') | |
(26, 'does', 'the') | |
(26, 'given', 'the') | |
(26, 'followed', 'the') | |
(26, 'taking', 'the') | |
(26, 'of', 'whom') | |
(26, 'one', 'can') | |
(26, 'the', 'few') | |
(26, 'the', 'report') | |
(26, 'very', 'well') | |
(26, 'the', 'lack') | |
(26, 'not', 'much') | |
(26, 'a', 'much') | |
(26, 'many', 'times') | |
(26, 'be', 'possible') | |
(26, 'the', 'society') | |
(26, 'will', 'you') | |
(26, '--', 'at') | |
(26, 'the', 'bedroom') | |
(26, 'the', 'degree') | |
(26, 'of', 'religion') | |
(26, 'had', 'just') | |
(26, 'i', 'like') | |
(26, 'the', 'boat') | |
(26, 'not', 'necessarily') | |
(26, 'is', 'another') | |
(26, 'do', 'anything') | |
(26, "there's", 'a') | |
(26, 'the', 'writer') | |
(26, 'this', 'new') | |
(26, 'were', 'also') | |
(26, "''", '``') | |
(26, 'a', 'variety') | |
(26, 'the', 'letters') | |
(26, 'there', 'have') | |
(26, 'had', 'once') | |
(26, 'no', 'reason') | |
(26, 'a', 'drink') | |
(26, 'than', 'those') | |
(26, 'the', 'objective') | |
(26, 'the', 'establishment') | |
(26, 'the', 'least') | |
(26, 'to', 'assume') | |
(26, 'the', 'effects') | |
(26, 'plans', 'for') | |
(26, 'good', 'for') | |
(26, 'pay', 'for') | |
(26, 'not', 'really') | |
(26, 'the', 'majority') | |
(26, 'the', 'hill') | |
(26, 'to', 'teach') | |
(26, 'next', 'morning') | |
(26, 'well', "''") | |
(26, 'matter', 'how') | |
(26, 'have', 'taken') | |
(26, 'the', 'person') | |
(26, 'obtained', 'from') | |
(26, 'it', 'from') | |
(26, 'means', 'to') | |
(26, 'comes', 'to') | |
(26, 'response', 'to') | |
(26, 'also', 'to') | |
(26, 'appeared', 'to') | |
(26, 'forward', 'to') | |
(26, 'compared', 'to') | |
(26, 'the', 'immediate') | |
(26, 'i', 'looked') | |
(26, 'she', 'knew') | |
(26, 'given', 'by') | |
(26, 'is', 'by') | |
(26, '--', 'with') | |
(26, 'has', 'never') | |
(26, 'of', 'light') | |
(26, 'i', 'heard') | |
(26, 'the', 'century') | |
(26, 'but', 'rather') | |
(27, 'when', 'this') | |
(27, 'under', 'this') | |
(27, 'to', 'life') | |
(27, 'the', 'wrong') | |
(27, 'before', 'i') | |
(27, 'i', "wouldn't") | |
(27, 'see', 'what') | |
(27, 'many', 'people') | |
(27, 'the', 'organization') | |
(27, 'from', 'time') | |
(27, 'and', 'asked') | |
(27, 'but', 'only') | |
(27, 'back', 'on') | |
(27, 'worked', 'out') | |
(27, 'about', 'them') | |
(27, 'give', 'him') | |
(27, 'asked', 'him') | |
(27, 'to', 'receive') | |
(27, 'air', 'force') | |
(27, "don't", 'want') | |
(27, 'the', 'interest') | |
(27, 'day', 'in') | |
(27, 'experience', 'in') | |
(27, 'included', 'in') | |
(27, 'set', 'in') | |
(27, 'although', 'it') | |
(27, 'found', 'it') | |
(27, 'think', 'it') | |
(27, 'will', 'continue') | |
(27, 'anyone', 'who') | |
(27, 'through', 'his') | |
(27, 'during', 'his') | |
(27, 'is', 'his') | |
(27, 'we', 'all') | |
(27, 'of', 'labor') | |
(27, 'all', 'about') | |
(27, 'a', 'question') | |
(27, 'the', 'black') | |
(27, 'we', 'might') | |
(27, 'she', 'might') | |
(27, 'the', 'feeling') | |
(27, 'to', 'sell') | |
(27, 'to', 'reduce') | |
(27, 'in', 'table') | |
(27, 'an', 'end') | |
(27, 'you', 'go') | |
(27, 'and', 'see') | |
(27, 'in', 'short') | |
(27, 'good', 'deal') | |
(27, 'in', 'common') | |
(27, 'interest', 'of') | |
(27, 'manager', 'of') | |
(27, 'role', 'of') | |
(27, 'theory', 'of') | |
(27, 'strength', 'of') | |
(27, 'percentage', 'of') | |
(27, 'cause', 'of') | |
(27, 'influence', 'of') | |
(27, 'born', 'of') | |
(27, 'in', 'american') | |
(27, 'an', 'example') | |
(27, 'me', 'the') | |
(27, 'meet', 'the') | |
(27, 'you', 'need') | |
(27, 'the', 'outside') | |
(27, 'are', 'some') | |
(27, 'the', 'greater') | |
(27, 'an', 'individual') | |
(27, 'the', 'station') | |
(27, 'the', 'growth') | |
(27, 'think', 'you') | |
(27, 'with', 'these') | |
(27, "''", 'at') | |
(27, 'be', 'at') | |
(27, 'the', 'less') | |
(27, 'i', 'just') | |
(27, 'the', 'physical') | |
(27, 'where', 'a') | |
(27, 'to', 'remain') | |
(27, 'the', 'bank') | |
(27, 'a', 'school') | |
(27, 'york', 'city') | |
(27, 'greater', 'than') | |
(27, 'how', 'long') | |
(27, 'thought', 'he') | |
(27, 'a', 'white') | |
(27, 'and', 'where') | |
(27, 'man', 'had') | |
(27, 'in', 'history') | |
(27, 'to', 'include') | |
(27, 'necessary', 'for') | |
(27, 'in', 'for') | |
(27, 'account', 'for') | |
(27, 'was', 'for') | |
(27, 'work', 'for') | |
(27, 'ready', 'for') | |
(27, 'one', 'that') | |
(27, 'after', 'that') | |
(27, 'or', 'that') | |
(27, 'indicated', 'that') | |
(27, 'as', 'that') | |
(27, 'doubt', 'that') | |
(27, 'aware', 'that') | |
(27, 'came', 'into') | |
(27, 'know', "''") | |
(27, 'pursuant', 'to') | |
(27, 'devoted', 'to') | |
(27, 'place', 'to') | |
(27, 'just', 'to') | |
(27, 'money', 'to') | |
(27, 'together', 'with') | |
(27, 'one', 'and') | |
(27, 'long', 'and') | |
(27, 'social', 'and') | |
(27, 'economic', 'and') | |
(27, 'a', 'simple') | |
(27, 'the', 'better') | |
(27, 'the', 'annual') | |
(28, 'they', 'went') | |
(28, 'do', 'this') | |
(28, '``', 'one') | |
(28, 'the', 'paper') | |
(28, 'vice', 'president') | |
(28, 'the', 'change') | |
(28, 'to', 'change') | |
(28, 'the', 'entrance') | |
(28, 'to', 'death') | |
(28, 'time', 'i') | |
(28, 'for', 'use') | |
(28, "that's", 'what') | |
(28, 'in', 'particular') | |
(28, 'the', 'far') | |
(28, 'the', 'german') | |
(28, 'she', 'thought') | |
(28, 'his', 'arm') | |
(28, 'could', 'get') | |
(28, 'only', 'when') | |
(28, 'about', 'him') | |
(28, 'before', 'him') | |
(28, 'in', 'connection') | |
(28, 'the', 'type') | |
(28, 'the', 'square') | |
(28, 'he', 'knows') | |
(28, 'who', 'did') | |
(28, 'to', 'spend') | |
(28, 'she', 'saw') | |
(28, 'a', 'problem') | |
(28, 'differences', 'in') | |
(28, 'find', 'it') | |
(28, 'until', 'it') | |
(28, 'had', 'his') | |
(28, 'a', 'thing') | |
(28, 'the', 'concept') | |
(28, 'looked', 'up') | |
(28, 'stood', 'up') | |
(28, 'something', 'about') | |
(28, 'ever', 'since') | |
(28, 'had', 'become') | |
(28, 'and', 'started') | |
(28, 'at', 'an') | |
(28, 'of', 'power') | |
(28, 'one', 'hundred') | |
(28, 'of', 'free') | |
(28, 'the', 'dust') | |
(28, 'serve', 'as') | |
(28, 'one', 'was') | |
(28, 'the', 'apartment') | |
(28, 'was', 'used') | |
(28, 'supreme', 'court') | |
(28, 'a', 'book') | |
(28, 'are', 'still') | |
(28, 'but', 'then') | |
(28, 'was', 'given') | |
(28, 'the', 'price') | |
(28, 'sight', 'of') | |
(28, 'values', 'of') | |
(28, 'phase', 'of') | |
(28, 'heart', 'of') | |
(28, 'characteristics', 'of') | |
(28, 'a', 'war') | |
(28, 'hit', 'the') | |
(28, 'yet', 'the') | |
(28, 'knew', 'the') | |
(28, 'consider', 'the') | |
(28, 'some', 'other') | |
(28, 'the', 'reader') | |
(28, 'the', 'trouble') | |
(28, 'any', 'case') | |
(28, 'him', 'at') | |
(28, 'but', 'at') | |
(28, 'the', 'contrary') | |
(28, 'of', 'several') | |
(28, 'to', 'form') | |
(28, 'a', 'form') | |
(28, 'looked', 'like') | |
(28, 'of', 'another') | |
(28, 'see', 'a') | |
(28, 'armed', 'forces') | |
(28, 'or', 'three') | |
(28, 'the', 'property') | |
(28, 'the', 'cause') | |
(28, 'we', 'cannot') | |
(28, 'for', 'himself') | |
(28, 'of', 'himself') | |
(28, 'to', 'himself') | |
(28, 'although', 'he') | |
(28, 'the', 'opportunity') | |
(28, 'to', 'allow') | |
(28, 'enough', 'for') | |
(28, 'place', 'for') | |
(28, 'asked', 'for') | |
(28, 'is', 'quite') | |
(28, 'to', 'fill') | |
(28, 'assume', 'that') | |
(28, 'convinced', 'that') | |
(28, 'the', 'rain') | |
(28, 'st.', 'john') | |
(28, 'again', "''") | |
(28, 'this', "''") | |
(28, 'see', 'how') | |
(28, 'apart', 'from') | |
(28, 'people', 'to') | |
(28, 'expect', 'to') | |
(28, 'left', 'to') | |
(28, 'begin', 'to') | |
(28, 'found', 'to') | |
(28, 'meant', 'to') | |
(28, 'that', 'to') | |
(28, 'here', 'to') | |
(28, 'accompanied', 'by') | |
(28, 'church', 'and') | |
(28, 'city', 'and') | |
(28, 'mind', 'and') | |
(28, 'day', 'and') | |
(28, 'off', 'and') | |
(28, 'eyes', 'and') | |
(28, 'was', 'never') | |
(28, 'the', 'stock') | |
(28, 'have', 'done') | |
(28, 'to', 'send') | |
(29, 'a', 'private') | |
(29, 'if', 'any') | |
(29, 'a', 'change') | |
(29, 'what', 'are') | |
(29, 'so', 'i') | |
(29, 'with', 'what') | |
(29, 'to', 'stand') | |
(29, 'to', 'seek') | |
(29, 'come', 'back') | |
(29, 'go', 'back') | |
(29, 'emphasis', 'on') | |
(29, 'come', 'on') | |
(29, 'it', 'over') | |
(29, 'first', 'place') | |
(29, 'they', 'must') | |
(29, 'let', 'him') | |
(29, 'he', "hadn't") | |
(29, "didn't", 'want') | |
(29, 'that', 'af') | |
(29, 'the', 'issue') | |
(29, 'a', 'period') | |
(29, 'what', 'she') | |
(29, 'me', 'in') | |
(29, 'one', 'in') | |
(29, 'published', 'in') | |
(29, 'difference', 'in') | |
(29, 'the', 'choice') | |
(29, 'before', 'it') | |
(29, 'from', 'it') | |
(29, 'the', 'meaning') | |
(29, 'the', 'congress') | |
(29, 'not', 'all') | |
(29, 'and', 'walked') | |
(29, 'and', 'sometimes') | |
(29, 'with', 'our') | |
(29, 'of', 'old') | |
(29, "''", 'as') | |
(29, 'of', 'public') | |
(29, 'was', 'gone') | |
(29, 'measure', 'of') | |
(29, 'construction', 'of') | |
(29, 'charge', 'of') | |
(29, 'collection', 'of') | |
(29, 'office', 'of') | |
(29, 'year', 'of') | |
(29, 'majority', 'of') | |
(29, 'a', 'considerable') | |
(29, 'her', 'father') | |
(29, 'the', "man's") | |
(29, 'once', 'the') | |
(29, '--', 'not') | |
(29, 'the', 'facts') | |
(29, 'the', 'building') | |
(29, 'is', 'often') | |
(29, 'real', 'estate') | |
(29, 'the', 'congregation') | |
(29, 'he', 'put') | |
(29, 'so', 'you') | |
(29, 'to', 'such') | |
(29, 'as', 'shown') | |
(29, 'for', 'several') | |
(29, 'the', 'figure') | |
(29, 'of', 'literature') | |
(29, 'half', 'a') | |
(29, 'called', 'a') | |
(29, 'the', 'nineteenth') | |
(29, 'to', 'face') | |
(29, 'was', 'something') | |
(29, 'for', '``') | |
(29, 'his', 'lips') | |
(29, "didn't", 'have') | |
(29, 'the', 'porch') | |
(29, 'to', 'pass') | |
(29, 'the', 'steps') | |
(29, 'to', 'feel') | |
(29, 'whom', 'he') | |
(29, 'for', 'he') | |
(29, 'how', 'he') | |
(29, 'an', 'opportunity') | |
(29, 'for', 'your') | |
(29, 'and', 'finally') | |
(29, 'the', 'legislature') | |
(29, 'you', 'had') | |
(29, 'attorney', 'general') | |
(29, 'of', 'general') | |
(29, 'the', 'afternoon') | |
(29, 'a', 'bad') | |
(29, 'the', 'volume') | |
(29, 'do', 'that') | |
(29, 'feeling', 'that') | |
(29, 'him', 'into') | |
(29, 'the', 'space') | |
(29, 'was', 'taken') | |
(29, 'thing', 'to') | |
(29, 'open', 'to') | |
(29, 'closer', 'to') | |
(29, 'efforts', 'to') | |
(29, 'contribute', 'to') | |
(29, 'similar', 'to') | |
(29, "''", 'with') | |
(29, 'next', 'day') | |
(29, 'every', 'day') | |
(29, 'me', 'and') | |
(29, 'power', 'and') | |
(29, 'new', 'and') | |
(29, 'door', 'and') | |
(29, 'school', 'and') | |
(29, 'water', 'and') | |
(29, 'the', 'voice') | |
(29, '``', 'come') | |
(29, 'a', 'system') | |
(30, 'least', 'one') | |
(30, 'than', 'one') | |
(30, 'the', 'importance') | |
(30, 'for', 'years') | |
(30, 'is', 'known') | |
(30, 'with', 'any') | |
(30, 'or', 'any') | |
(30, 'young', 'men') | |
(30, 'because', 'i') | |
(30, 'a', 'particular') | |
(30, 'these', 'days') | |
(30, 'to', 'raise') | |
(30, 'not', 'always') | |
(30, 'had', 'always') | |
(30, 'came', 'back') | |
(30, 'the', 'week') | |
(30, 'she', 'asked') | |
(30, 'a', 'line') | |
(30, 'depends', 'on') | |
(30, 'go', 'out') | |
(30, 'was', 'out') | |
(30, 'of', 'modern') | |
(30, 'the', 'initial') | |
(30, 'i', 'must') | |
(30, 'of', 'service') | |
(30, 'a', 'wide') | |
(30, 'the', 'large') | |
(30, 'they', 'should') | |
(30, 'the', 'wheel') | |
(30, 'in', 'fig.') | |
(30, 'had', 'it') | |
(30, 'had', 'already') | |
(30, 'shook', 'his') | |
(30, 'as', 'follows') | |
(30, 'they', 'all') | |
(30, 'he', 'became') | |
(30, 'the', 'marine') | |
(30, '--', 'an') | |
(30, 'not', 'too') | |
(30, 'not', 'as') | |
(30, '--', 'was') | |
(30, 'had', 'told') | |
(30, 'by', 'her') | |
(30, 'the', 'experience') | |
(30, 'was', 'then') | |
(30, 'the', 'site') | |
(30, 'to', 'cut') | |
(30, 'of', 'action') | |
(30, 'bottom', 'of') | |
(30, 'editor', 'of') | |
(30, 'art', 'of') | |
(30, 'bit', 'of') | |
(30, 'share', 'of') | |
(30, 'kinds', 'of') | |
(30, 'analysis', 'of') | |
(30, 'lots', 'of') | |
(30, 'acceptance', 'of') | |
(30, 'the', 'pattern') | |
(30, 'past', 'the') | |
(30, 'making', 'the') | |
(30, 'towards', 'the') | |
(30, 'why', 'the') | |
(30, 'many', 'other') | |
(30, 'we', 'need') | |
(30, 'who', 'can') | |
(30, 'in', 'america') | |
(30, 'by', 'some') | |
(30, 'the', 'normal') | |
(30, 'with', 'us') | |
(30, 'up', 'at') | |
(30, 'the', 'treasury') | |
(30, 'of', 'art') | |
(30, 'make', 'sure') | |
(30, 'making', 'a') | |
(30, 'you', 'a') | |
(30, 'this', 'may') | |
(30, 'his', 'new') | |
(30, 'but', 'even') | |
(30, 'the', 'bottle') | |
(30, 'more', 'or') | |
(30, 'the', 'project') | |
(30, 'to', 'produce') | |
(30, 'the', 'phone') | |
(30, 'with', 'each') | |
(30, 'on', 'each') | |
(30, 'looking', 'for') | |
(30, 'is', 'for') | |
(30, 'to', 'attend') | |
(30, 'suggested', 'that') | |
(30, 'it', 'that') | |
(30, 'the', 'role') | |
(30, 'she', 'looked') | |
(30, 'the', 'news') | |
(30, 'who', 'could') | |
(30, 'it', 'by') | |
(30, 'the', 'village') | |
(30, 'a', 'program') | |
(30, 'state', 'and') | |
(30, 'the', 'horse') | |
(30, 'to', 'realize') | |
(30, 'then', 'there') | |
(30, 'your', 'own') | |
(30, 'are', 'many') | |
(30, 'the', 'data') | |
(30, 'we', 'find') | |
(31, 'of', 'justice') | |
(31, 'that', 'any') | |
(31, 'of', 'death') | |
(31, 'then', 'i') | |
(31, 'first', 'two') | |
(31, 'of', 'business') | |
(31, 'the', 'business') | |
(31, 'the', 'particular') | |
(31, 'were', 'no') | |
(31, 'has', 'no') | |
(31, 'the', 'international') | |
(31, 'have', 'seen') | |
(31, 'and', 'get') | |
(31, 'can', 'only') | |
(31, 'him', 'on') | |
(31, 'carried', 'out') | |
(31, 'come', 'out') | |
(31, 'the', 'women') | |
(31, 'took', 'him') | |
(31, 'and', 'development') | |
(31, '--', 'if') | |
(31, 'you', 'should') | |
(31, 'the', 'bridge') | |
(31, 'the', 'lord') | |
(31, 'put', 'in') | |
(31, 'her', 'in') | |
(31, 'born', 'in') | |
(31, 'said', 'it') | |
(31, 'men', 'were') | |
(31, 'eyes', 'were') | |
(31, 'these', 'were') | |
(31, 'foreign', 'policy') | |
(31, 'and', 'let') | |
(31, '--', 'all') | |
(31, 'he', 'walked') | |
(31, 'still', 'be') | |
(31, 'into', 'an') | |
(31, 'the', 'term') | |
(31, '``', 'as') | |
(31, 'regarded', 'as') | |
(31, 'more', 'important') | |
(31, 'the', 'council') | |
(31, 'and', 'took') | |
(31, 'that', 'her') | |
(31, 'would', 'do') | |
(31, 'on', 'top') | |
(31, 'feeling', 'of') | |
(31, 'position', 'of') | |
(31, 'men', 'of') | |
(31, 'sides', 'of') | |
(31, 'function', 'of') | |
(31, 'consists', 'of') | |
(31, 'son', 'of') | |
(31, 'characteristic', 'of') | |
(31, 'character', 'of') | |
(31, 'has', 'made') | |
(31, 'have', 'made') | |
(31, 'are', 'made') | |
(31, 'read', 'the') | |
(31, 'to', 'other') | |
(31, 'the', 'ship') | |
(31, 'and', 'got') | |
(31, 'dominant', 'stress') | |
(31, 'that', 'at') | |
(31, 'a', 'brief') | |
(31, 'that', 'its') | |
(31, 'with', 'such') | |
(31, 'a', 'family') | |
(31, 'to', 'return') | |
(31, 'a', 'means') | |
(31, '``', 'just') | |
(31, 'the', 'medical') | |
(31, 'still', 'a') | |
(31, 'quite', 'a') | |
(31, 'do', 'a') | |
(31, 'i', 'came') | |
(31, 'always', 'been') | |
(31, 'the', 'material') | |
(31, 'and', 'my') | |
(31, 'and', 'white') | |
(31, 'and', 'began') | |
(31, 'of', 'history') | |
(31, 'or', 'for') | |
(31, 'indicate', 'that') | |
(31, 'saw', 'that') | |
(31, 'the', 'schools') | |
(31, 'than', 'they') | |
(31, 'of', 'how') | |
(31, 'new', 'members') | |
(31, 'him', 'from') | |
(31, 'answer', 'to') | |
(31, 'wants', 'to') | |
(31, 'which', 'to') | |
(31, 'years', 'later') | |
(31, 'hair', 'and') | |
(31, 'the', 'simple') | |
(31, 'her', 'hand') | |
(31, 'was', 'now') | |
(32, 'if', 'one') | |
(32, 'three', 'years') | |
(32, 'was', 'found') | |
(32, 'there', 'has') | |
(32, 'the', 'bed') | |
(32, 'the', 'opposite') | |
(32, 'for', 'what') | |
(32, 'the', 'eyes') | |
(32, 'to', 'operate') | |
(32, 'some', 'time') | |
(32, 'the', 'military') | |
(32, 'i', "couldn't") | |
(32, 'going', 'on') | |
(32, "''", 'on') | |
(32, 'to', 'kill') | |
(32, 'the', 'heat') | |
(32, 'st.', 'louis') | |
(32, 'way', 'in') | |
(32, 'down', 'in') | |
(32, 'seen', 'in') | |
(32, 'come', 'in') | |
(32, 'to', 'visit') | |
(32, 'get', 'it') | |
(32, 'the', 'political') | |
(32, 'off', 'his') | |
(32, 'were', 'all') | |
(32, 'the', "world's") | |
(32, 'the', 'battle') | |
(32, 'talk', 'about') | |
(32, 'a', 'point') | |
(32, 'had', 'an') | |
(32, 'years', 'old') | |
(32, 'section', 'of') | |
(32, 'millions', 'of') | |
(32, 'ahead', 'of') | |
(32, 'division', 'of') | |
(32, 'features', 'of') | |
(32, 'deal', 'of') | |
(32, 'corner', 'of') | |
(32, 'are', 'so') | |
(32, 'or', 'so') | |
(32, 'can', 'make') | |
(32, 'following', 'the') | |
(32, 'hear', 'the') | |
(32, 'which', 'can') | |
(32, 'both', 'sides') | |
(32, 'at', 'times') | |
(32, 'for', 'us') | |
(32, 'before', 'you') | |
(32, 'would', 'you') | |
(32, 'his', 'name') | |
(32, 'this', 'would') | |
(32, 'the', 'art') | |
(32, 'to', 'enter') | |
(32, 'the', 'streets') | |
(32, 'in', 'figure') | |
(32, 'give', 'a') | |
(32, 'under', 'a') | |
(32, 'having', 'a') | |
(32, 'to', 'remember') | |
(32, 'be', '``') | |
(32, 'the', 'trees') | |
(32, 'is', 'nothing') | |
(32, 'never', 'been') | |
(32, 'the', 'maximum') | |
(32, 'the', 'christian') | |
(32, 'all', 'he') | |
(32, 'to', 'try') | |
(32, '``', 'where') | |
(32, 'the', 'recent') | |
(32, 'each', 'year') | |
(32, 'the', 'play') | |
(32, 'in', 'most') | |
(32, 'the', 'woman') | |
(32, 'that', 'which') | |
(32, 'time', 'that') | |
(32, 'a', 'minimum') | |
(32, 'no', "''") | |
(32, 'the', 'members') | |
(32, 'known', 'to') | |
(32, 'be', 'to') | |
(32, 'talk', 'to') | |
(32, 'get', 'to') | |
(32, 'available', 'to') | |
(32, 'as', 'being') | |
(32, 'him', 'by') | |
(32, 'deal', 'with') | |
(32, 'her', 'and') | |
(32, 'he', 'heard') | |
(33, 'the', 'roof') | |
(33, 'at', 'their') | |
(33, 'to', 'start') | |
(33, 'an', 'area') | |
(33, 'are', 'no') | |
(33, 'the', 'telephone') | |
(33, 'his', 'son') | |
(33, 'to', 'obtain') | |
(33, 'and', 'mr.') | |
(33, 'the', 'walls') | |
(33, 'a', 'national') | |
(33, 'the', 'rear') | |
(33, 'because', 'she') | |
(33, 'engaged', 'in') | |
(33, 'put', 'it') | |
(33, 'knew', 'it') | |
(33, 'the', 'statement') | |
(33, 'once', 'more') | |
(33, 'two', 'weeks') | |
(33, 'the', 'thing') | |
(33, 'to', 'maintain') | |
(33, 'the', 'valley') | |
(33, 'they', 'might') | |
(33, 'of', 'every') | |
(33, 'the', 'distance') | |
(33, 'the', 'key') | |
(33, 'middle', 'of') | |
(33, 'lines', 'of') | |
(33, 'miles', 'of') | |
(33, 'story', 'of') | |
(33, 'care', 'of') | |
(33, 'application', 'of') | |
(33, 'combination', 'of') | |
(33, 'effects', 'of') | |
(33, 'something', 'of') | |
(33, 'sound', 'of') | |
(33, 'chairman', 'of') | |
(33, 'force', 'of') | |
(33, 'advantage', 'of') | |
(33, 'thinking', 'of') | |
(33, 'and', 'make') | |
(33, 'perhaps', 'the') | |
(33, 'concerning', 'the') | |
(33, 'no', 'other') | |
(33, 'all', 'other') | |
(33, 'is', 'expected') | |
(33, 'that', 'some') | |
(33, 'du', 'pont') | |
(33, 'to', 'accept') | |
(33, 'a', 'girl') | |
(33, 'but', 'you') | |
(33, 'down', 'at') | |
(33, 'by', 'its') | |
(33, 'of', 'view') | |
(33, 'to', 'consider') | |
(33, 'of', 'having') | |
(33, 'nothing', 'but') | |
(33, 'the', 'teacher') | |
(33, 'what', 'happened') | |
(33, 'had', 'happened') | |
(33, 'also', 'a') | |
(33, 'and', 'new') | |
(33, 'was', 'nothing') | |
(33, 'problem', 'is') | |
(33, 'the', 'older') | |
(33, 'to', 'win') | |
(33, 'for', 'my') | |
(33, 'the', 'negro') | |
(33, 'than', 'he') | |
(33, 'him', 'for') | |
(33, 'a', 'recent') | |
(33, 'to', 'act') | |
(33, 'the', 'blue') | |
(33, 'his', 'way') | |
(33, 'by', 'which') | |
(33, 'about', 'that') | |
(33, 'the', 'absence') | |
(33, 'the', 'lines') | |
(33, 'up', "''") | |
(33, 'up', 'from') | |
(33, 'sent', 'to') | |
(33, 'what', 'to') | |
(33, 'tends', 'to') | |
(33, 'and', 'looked') | |
(33, 'them', 'with') | |
(33, 'hands', 'and') | |
(33, 'now', 'and') | |
(33, 'too', 'many') | |
(33, 'but', 'now') | |
(33, 'other', 'side') | |
(34, 'about', 'this') | |
(34, 'any', 'one') | |
(34, 'the', 'fall') | |
(34, 'the', 'class') | |
(34, 'the', 'position') | |
(34, 'by', 'any') | |
(34, 'i', 'suppose') | |
(34, 'a', 'friend') | |
(34, 'will', 'take') | |
(34, 'his', 'back') | |
(34, 'and', 'only') | |
(34, 'in', 'on') | |
(34, 'of', 'mr.') | |
(34, 'tell', 'him') | |
(34, 'gave', 'him') | |
(34, 'the', 'bar') | |
(34, 'to', 'create') | |
(34, 'i', 'should') | |
(34, 'was', 'able') | |
(34, 'life', 'in') | |
(34, 'still', 'in') | |
(34, 'the', 'hospital') | |
(34, 'mr.', 'kennedy') | |
(34, 'of', 'economic') | |
(34, 'and', 'economic') | |
(34, 'was', 'more') | |
(34, 'the', 'principle') | |
(34, 'few', 'minutes') | |
(34, 'made', 'up') | |
(34, 'came', 'up') | |
(34, 'to', 'explain') | |
(34, 'that', 'our') | |
(34, 'or', 'an') | |
(34, '--', 'as') | |
(34, 'man', 'was') | |
(34, 'in', 'mind') | |
(34, 'establishment', 'of') | |
(34, 'support', 'of') | |
(34, 'total', 'of') | |
(34, '``', 'so') | |
(34, 'living', 'room') | |
(34, 'felt', 'the') | |
(34, 'find', 'the') | |
(34, 'why', 'not') | |
(34, 'how', 'can') | |
(34, "i've", 'got') | |
(34, 'is', 'much') | |
(34, 'not', 'merely') | |
(34, 'stared', 'at') | |
(34, 'at', 'its') | |
(34, 'the', 'traditional') | |
(34, 'the', 'students') | |
(34, 'the', 'money') | |
(34, 'all', 'but') | |
(34, 'to', 'avoid') | |
(34, 'put', 'a') | |
(34, 'being', 'a') | |
(34, 'provide', 'a') | |
(34, 'be', 'called') | |
(34, 'which', 'have') | |
(34, 'in', 'those') | |
(34, 'be', 'that') | |
(34, 'time', "''") | |
(34, 'taken', 'to') | |
(34, 'appear', 'to') | |
(34, 'chance', 'to') | |
(34, 'reason', 'to') | |
(34, 'that', 'could') | |
(34, 'contact', 'with') | |
(34, 'compared', 'with') | |
(34, 'dealing', 'with') | |
(34, 'hundred', 'and') | |
(34, 'again', 'and') | |
(34, 'light', 'and') | |
(34, 'to', 'establish') | |
(34, 'nineteenth', 'century') | |
(35, 'five', 'years') | |
(35, 'to', 'join') | |
(35, 'is', 'what') | |
(35, 'but', 'no') | |
(35, 'the', 'edge') | |
(35, 'was', 'very') | |
(35, 'information', 'on') | |
(35, 'is', 'on') | |
(35, 'the', 'sea') | |
(35, 'the', 'famous') | |
(35, 'home', 'in') | |
(35, 'little', 'more') | |
(35, 'be', 'more') | |
(35, 'it', '--') | |
(35, 'on', 'our') | |
(35, 'the', 'press') | |
(35, 'the', 'four') | |
(35, 'the', 'previous') | |
(35, 'used', 'as') | |
(35, 'the', 'girls') | |
(35, 'in', '1959') | |
(35, 'the', 'theory') | |
(35, 'is', 'important') | |
(35, 'can', 'see') | |
(35, 'you', 'see') | |
(35, 'were', 'still') | |
(35, 'had', 'given') | |
(35, 'meaning', 'of') | |
(35, 'discussion', 'of') | |
(35, 'regardless', 'of') | |
(35, 'thousands', 'of') | |
(35, 'word', 'of') | |
(35, 'pair', 'of') | |
(35, 'surface', 'of') | |
(35, 'were', 'made') | |
(35, 'is', 'made') | |
(35, 'a', 'boy') | |
(35, 'told', 'the') | |
(35, 'the', 'scene') | |
(35, 'on', 'some') | |
(35, 'the', 'list') | |
(35, 'and', 'again') | |
(35, 'once', 'again') | |
(35, 'for', 'these') | |
(35, 'i', 'wish') | |
(35, 'of', 'money') | |
(35, 'look', 'like') | |
(35, 'was', 'like') | |
(35, 'he', 'also') | |
(35, 'to', 'learn') | |
(35, 'the', 'pressure') | |
(35, 'now', 'he') | |
(35, 'while', 'he') | |
(35, 'out', 'for') | |
(35, 'not', 'for') | |
(35, 'available', 'for') | |
(35, 'a', 'complete') | |
(35, 'the', 'bible') | |
(35, 'think', 'that') | |
(35, 'out', 'into') | |
(35, 'different', 'from') | |
(35, 'forced', 'to') | |
(35, 'prepared', 'to') | |
(35, 'man', 'to') | |
(35, 'added', 'to') | |
(35, 'the', 'student') | |
(35, 'connection', 'with') | |
(35, 'the', 'stairs') | |
(35, 'research', 'and') | |
(35, 'that', 'many') | |
(35, 'and', 'thus') | |
(35, 'i', 'mean') | |
(36, 'but', 'one') | |
(36, 'by', 'one') | |
(36, 'of', 'years') | |
(36, 'and', 'down') | |
(36, 'in', 'time') | |
(36, 'that', 'when') | |
(36, 'put', 'on') | |
(36, 'and', 'out') | |
(36, 'the', 'population') | |
(36, 'a', 'place') | |
(36, 'on', 'him') | |
(36, 'the', 'civil') | |
(36, 'a', 'sort') | |
(36, 'a', 'car') | |
(36, 'of', 'great') | |
(36, 'tell', 'me') | |
(36, 'change', 'in') | |
(36, 'lived', 'in') | |
(36, 'since', 'it') | |
(36, 'than', 'it') | |
(36, 'be', 'considered') | |
(36, 'in', 'washington') | |
(36, 'and', 'therefore') | |
(36, 'to', 'achieve') | |
(36, 'in', 'england') | |
(36, 'about', 'her') | |
(36, 'and', 'still') | |
(36, 'to', 'break') | |
(36, 'he', 'left') | |
(36, 'choice', 'of') | |
(36, 'field', 'of') | |
(36, 'aspect', 'of') | |
(36, 'volume', 'of') | |
(36, 'got', 'the') | |
(36, 'found', 'the') | |
(36, 'heard', 'the') | |
(36, 'below', 'the') | |
(36, 'the', 'living') | |
(36, 'to', 'us') | |
(36, 'of', 'you') | |
(36, "don't", 'you') | |
(36, 'a', 'total') | |
(36, 'by', 'means') | |
(36, 'to', 'follow') | |
(36, 'she', "didn't") | |
(36, 'it', 'also') | |
(36, 'the', 'larger') | |
(36, 'he', 'gave') | |
(36, 'demand', 'for') | |
(36, '``', 'for') | |
(36, 'reasons', 'for') | |
(36, 'their', 'way') | |
(36, 'evidence', 'that') | |
(36, 'out', 'that') | |
(36, 'from', 'that') | |
(36, 'the', 'jury') | |
(36, 'do', "''") | |
(36, 'out', "''") | |
(36, 'easy', 'to') | |
(36, 'important', 'to') | |
(36, 'was', 'being') | |
(36, 'or', 'by') | |
(36, 'that', 'day') | |
(36, 'was', 'there') | |
(36, 'one', 'hand') | |
(36, 'one', 'side') | |
(37, 'ten', 'years') | |
(37, 'the', 'natural') | |
(37, 'the', 'u.n.') | |
(37, 'these', 'two') | |
(37, 'of', 'information') | |
(37, 'the', 'opening') | |
(37, 'you', 'get') | |
(37, 'be', 'on') | |
(37, 'get', 'out') | |
(37, 'pointed', 'out') | |
(37, 'and', 'women') | |
(37, 'you', 'must') | |
(37, 'of', 'both') | |
(37, 'to', 'understand') | |
(37, 'the', 'af') | |
(37, 'been', 'able') | |
(37, 'of', 'interest') | |
(37, 'his', 'work') | |
(37, 'it', 'be') | |
(37, 'for', 'our') | |
(37, 'like', 'an') | |
(37, 'is', 'too') | |
(37, 'a', 'public') | |
(37, 'an', 'important') | |
(37, 'a', 'half') | |
(37, 'the', 'action') | |
(37, 'understanding', 'of') | |
(37, 'growth', 'of') | |
(37, '``', 'of') | |
(37, 'description', 'of') | |
(37, 'hundreds', 'of') | |
(37, 'sources', 'of') | |
(37, 'would', 'make') | |
(37, 'whether', 'the') | |
(37, 'how', 'the') | |
(37, 'with', 'other') | |
(37, 'the', 'chief') | |
(37, 'the', 'radio') | |
(37, 'and', 'put') | |
(37, 'on', 'these') | |
(37, 'her', 'head') | |
(37, 'war', '2') | |
(37, 'what', 'a') | |
(37, 'within', 'a') | |
(37, 'her', 'face') | |
(37, 'an', '``') | |
(37, 'the', 'fourth') | |
(37, 'system', 'is') | |
(37, 'here', 'is') | |
(37, 'two', 'or') | |
(37, 'though', 'he') | |
(37, 'called', 'for') | |
(37, 'search', 'for') | |
(37, 'look', 'for') | |
(37, 'would', 'seem') | |
(37, 'hope', 'that') | |
(37, 'not', 'that') | |
(37, 'now', 'that') | |
(37, 'on', 'that') | |
(37, 'before', 'they') | |
(37, 'had', 'ever') | |
(37, 'allowed', 'to') | |
(37, 'appears', 'to') | |
(37, 'desire', 'to') | |
(37, 'would', 'never') | |
(37, 'had', 'done') | |
(37, 'a', 'third') | |
(37, 'the', 'level') | |
(37, 'have', 'come') | |
(38, '``', "you're") | |
(38, 'the', 'proper') | |
(38, 'the', 'hands') | |
(38, 'the', 'information') | |
(38, '``', 'when') | |
(38, 'the', 'pool') | |
(38, 'i', 'guess') | |
(38, 'is', 'going') | |
(38, 'was', 'born') | |
(38, 'people', 'in') | |
(38, 'here', 'in') | |
(38, 'at', 'it') | |
(38, 'the', 'boys') | |
(38, 'about', 'his') | |
(38, 'the', 'game') | |
(38, 'be', 'said') | |
(38, 'this', 'will') | |
(38, 'in', '1961') | |
(38, 'a', 'similar') | |
(38, 'the', 'moral') | |
(38, 'it', 'took') | |
(38, 'control', 'of') | |
(38, 'production', 'of') | |
(38, 'house', 'of') | |
(38, 'death', 'of') | |
(38, 'plenty', 'of') | |
(38, 'days', 'of') | |
(38, 'body', 'of') | |
(38, 'be', 'so') | |
(38, 'despite', 'the') | |
(38, 'give', 'the') | |
(38, "i'm", 'not') | |
(38, 'this', 'case') | |
(38, 'his', 'mouth') | |
(38, 'with', 'you') | |
(38, 'from', 'its') | |
(38, 'and', 'would') | |
(38, 'are', 'available') | |
(38, 'is', 'just') | |
(38, 'and', 'others') | |
(38, 'the', 'plan') | |
(38, 'would', 'like') | |
(38, 'a', 'dozen') | |
(38, 'he', 'stood') | |
(38, 'san', 'francisco') | |
(38, 'was', 'called') | |
(38, 'the', 'tax') | |
(38, 'to', 'set') | |
(38, 'man', 'is') | |
(38, 'i', 'shall') | |
(38, '--', 'which') | |
(38, 'realize', 'that') | |
(38, 'went', 'into') | |
(38, 'he', 'wrote') | |
(38, 'to', 'stop') | |
(38, 'needed', 'to') | |
(38, 'determined', 'by') | |
(38, 'out', 'with') | |
(38, 'covered', 'with') | |
(38, 'more', 'and') | |
(38, 'down', 'and') | |
(38, 'his', 'voice') | |
(38, 'i', 'never') | |
(39, 'if', 'this') | |
(39, 'new', 'orleans') | |
(39, 'the', 'temperature') | |
(39, 'to', 'increase') | |
(39, 'for', 'two') | |
(39, 'a', 'job') | |
(39, 'the', 'actual') | |
(39, 'long', 'time') | |
(39, 'even', 'when') | |
(39, 'go', 'on') | |
(39, 'was', 'it') | |
(39, '--', 'it') | |
(39, 'president', 'kennedy') | |
(39, 'are', 'all') | |
(39, 'of', 'about') | |
(39, 'was', 'about') | |
(39, 'you', "can't") | |
(39, 'who', 'will') | |
(39, 'the', 'age') | |
(39, "didn't", 'know') | |
(39, 'you', 'do') | |
(39, 'the', 'u.') | |
(39, 'the', 'sky') | |
(39, 'possibility', 'of') | |
(39, 'place', 'of') | |
(39, 'be', 'of') | |
(39, 'of', 'war') | |
(39, 'an', 'american') | |
(39, 'just', 'the') | |
(39, 'determine', 'the') | |
(39, 'using', 'the') | |
(39, 'i', 'got') | |
(39, 'a', 'piece') | |
(39, 'the', 'moon') | |
(39, 'to', 'these') | |
(39, 'or', 'at') | |
(39, 'looking', 'at') | |
(39, 'or', 'less') | |
(39, 'in', '1960') | |
(39, 'to', 'another') | |
(39, 'me', 'a') | |
(39, 'is', '``') | |
(39, 'his', 'mother') | |
(39, 'he', 'began') | |
(39, '--', 'for') | |
(39, 'the', 'purpose') | |
(39, 'at', 'which') | |
(39, 'with', 'that') | |
(39, 'back', 'into') | |
(39, 'know', 'how') | |
(39, 'had', 'taken') | |
(39, 'a', 'person') | |
(39, 'came', 'from') | |
(39, 'one', 'to') | |
(39, 'about', 'to') | |
(39, 'power', 'to') | |
(39, 'more', 'to') | |
(39, 'the', 'things') | |
(39, 'man', 'and') | |
(39, 'here', 'and') | |
(40, 'to', 'call') | |
(40, 'many', 'years') | |
(40, 'from', 'their') | |
(40, 'sat', 'down') | |
(40, 'in', 'what') | |
(40, 'the', 'dead') | |
(40, 'a', 'chance') | |
(40, 'is', 'likely') | |
(40, 'the', 'market') | |
(40, 'made', 'him') | |
(40, 'years', 'in') | |
(40, 'early', 'in') | |
(40, 'the', 'interior') | |
(40, 'and', 'will') | |
(40, 'had', 'left') | |
(40, 'a', 'given') | |
(40, 'be', 'given') | |
(40, 'methods', 'of') | |
(40, 'loss', 'of') | |
(40, 'principle', 'of') | |
(40, 'program', 'of') | |
(40, 'edge', 'of') | |
(40, 'light', 'of') | |
(40, 'system', 'of') | |
(40, 'list', 'of') | |
(40, 'reached', 'the') | |
(40, 'including', 'the') | |
(40, 'keep', 'the') | |
(40, 'and', 'after') | |
(40, 'that', 'such') | |
(40, 'the', 'presence') | |
(40, 'the', 'current') | |
(40, 'one', 'another') | |
(40, 'against', 'a') | |
(40, 'to', 'carry') | |
(40, 'to', 'believe') | |
(40, 'she', 'is') | |
(40, 'so', 'long') | |
(40, 'a', 'strong') | |
(40, 'to', 'ask') | |
(40, 'but', 'for') | |
(40, 'time', 'for') | |
(40, 'and', 'which') | |
(40, 'as', 'soon') | |
(40, 'relation', 'to') | |
(40, 'regard', 'to') | |
(40, 'prior', 'to') | |
(40, 'continued', 'to') | |
(40, 'tend', 'to') | |
(40, 'started', 'to') | |
(40, 'given', 'to') | |
(40, 'lead', 'to') | |
(40, 'approach', 'to') | |
(40, 'general', 'motors') | |
(40, 'but', 'with') | |
(40, 'associated', 'with') | |
(40, 'man', 'with') | |
(40, 'life', 'and') | |
(40, 'them', 'and') | |
(40, 'house', 'and') | |
(41, 'the', 'largest') | |
(41, 'that', 'their') | |
(41, 'by', 'their') | |
(41, 'small', 'business') | |
(41, 'few', 'days') | |
(41, 'is', 'always') | |
(41, 'came', 'out') | |
(41, 'in', 'place') | |
(41, 'she', 'did') | |
(41, 'work', 'in') | |
(41, 'part', 'in') | |
(41, 'it', 'up') | |
(41, 'from', 'an') | |
(41, 'the', 'lower') | |
(41, 'we', 'know') | |
(41, '``', 'do') | |
(41, 'a', 'common') | |
(41, 'presence', 'of') | |
(41, 'evidence', 'of') | |
(41, 'treatment', 'of') | |
(41, 'forms', 'of') | |
(41, 'numbers', 'of') | |
(41, 'experience', 'of') | |
(41, 'importance', 'of') | |
(41, 'pattern', 'of') | |
(41, "''", 'the') | |
(41, 'put', 'the') | |
(41, 'know', 'the') | |
(41, 'opened', 'the') | |
(41, 'did', 'the') | |
(41, 'that', 'can') | |
(41, 'a', 'different') | |
(41, 'the', 'corner') | |
(41, 'the', 'states') | |
(41, 'we', 'would') | |
(41, 'his', '``') | |
(41, 'the', 'reason') | |
(41, 'the', 'farm') | |
(41, 'the', 'home') | |
(41, 'to', 'your') | |
(41, 'what', 'had') | |
(41, 'a', 'general') | |
(41, 'the', 'picture') | |
(41, 'in', 'recent') | |
(41, 'the', 'act') | |
(41, 'sure', 'that') | |
(41, 'him', 'that') | |
(41, 'hard', 'to') | |
(41, 'applied', 'to') | |
(41, 'himself', 'to') | |
(41, 'are', 'being') | |
(41, 'we', 'could') | |
(41, 'him', 'with') | |
(41, 'a', 'better') | |
(42, 'to', 'run') | |
(42, 'two', 'men') | |
(42, 'she', 'has') | |
(42, 'but', 'what') | |
(42, 'a', 'fine') | |
(42, 'of', 'government') | |
(42, 'it', 'on') | |
(42, 'up', 'on') | |
(42, 'turned', 'out') | |
(42, 'is', 'true') | |
(42, 'among', 'them') | |
(42, 'the', 'knife') | |
(42, 'the', 'rate') | |
(42, 'which', 'she') | |
(42, 'men', 'in') | |
(42, 'it', 'were') | |
(42, 'it', "wasn't") | |
(42, 'up', 'his') | |
(42, 'to', 'read') | |
(42, 'are', 'more') | |
(42, 'there', 'will') | |
(42, 'that', 'an') | |
(42, 'in', 'every') | |
(42, 'direction', 'of') | |
(42, 'beginning', 'of') | |
(42, 'civil', 'war') | |
(42, 'the', 'western') | |
(42, 'leave', 'the') | |
(42, 'outside', 'the') | |
(42, 'also', 'the') | |
(42, 'gave', 'the') | |
(42, 'he', 'does') | |
(42, 'the', 'summer') | |
(42, 'for', 'such') | |
(42, 'the', 'full') | |
(42, 'the', 'southern') | |
(42, 'and', 'have') | |
(42, 'her', 'mother') | |
(42, 'the', 'sound') | |
(42, 'the', 'history') | |
(42, 'me', 'that') | |
(42, 'found', 'that') | |
(42, 'the', 'fire') | |
(42, 'there', "''") | |
(42, 'come', 'from') | |
(42, 'happened', 'to') | |
(42, 'referred', 'to') | |
(42, 'over', 'and') | |
(42, 'you', 'and') | |
(42, 'how', 'many') | |
(43, 'the', 'death') | |
(43, 'to', 'stay') | |
(43, 'is', 'very') | |
(43, 'the', 'administration') | |
(43, 'told', 'me') | |
(43, 'far', 'more') | |
(43, 'also', 'be') | |
(43, 'known', 'as') | |
(43, 'was', 'as') | |
(43, 'soon', 'as') | |
(43, 'the', 'primary') | |
(43, 'great', 'deal') | |
(43, 'act', 'of') | |
(43, 'made', 'of') | |
(43, 'course', 'of') | |
(43, 'both', 'of') | |
(43, 'absence', 'of') | |
(43, 'is', 'of') | |
(43, 'with', 'some') | |
(43, 'to', 'turn') | |
(43, 'is', 'possible') | |
(43, 'the', 'enemy') | |
(43, 'the', 'platform') | |
(43, 'took', 'a') | |
(43, 'found', 'a') | |
(43, 'to', 'new') | |
(43, 'not', 'even') | |
(43, 'and', 'those') | |
(43, 'time', 'he') | |
(43, 'until', 'he') | |
(43, 'up', 'for') | |
(43, 'that', 'most') | |
(43, 'to', 'serve') | |
(43, 'subject', 'to') | |
(43, 'ability', 'to') | |
(43, 'return', 'to') | |
(43, 'beginning', 'to') | |
(43, 'states', 'and') | |
(43, 'the', 'course') | |
(44, 'is', 'this') | |
(44, 'the', 'district') | |
(44, 'than', 'any') | |
(44, 'and', 'two') | |
(44, 'in', 'two') | |
(44, 'had', 'seen') | |
(44, 'the', 'evening') | |
(44, 'the', 'modern') | |
(44, 'of', 'man') | |
(44, 'the', 'red') | |
(44, 'he', 'should') | |
(44, 'for', 'more') | |
(44, 'any', 'more') | |
(44, 'have', 'an') | |
(44, 'was', 'too') | |
(44, 'are', 'of') | |
(44, 'concept', 'of') | |
(44, 'picture', 'of') | |
(44, 'states', 'of') | |
(44, 'parts', 'of') | |
(44, 'been', 'made') | |
(44, 'the', 'image') | |
(44, 'use', 'the') | |
(44, 'now', 'the') | |
(44, 'have', 'not') | |
(44, 'the', 'sense') | |
(44, 'in', 'turn') | |
(44, 'the', 'child') | |
(44, 'became', 'a') | |
(44, "it's", 'a') | |
(44, 'it', 'a') | |
(44, 'which', 'a') | |
(44, 'which', 'may') | |
(44, 'he', 'came') | |
(44, 'called', '``') | |
(44, 'that', 'have') | |
(44, 'the', 'industry') | |
(44, '``', 'is') | |
(44, 'so', 'he') | |
(44, 'there', 'had') | |
(44, 'to', 'reach') | |
(44, 'responsible', 'for') | |
(44, 'the', 'answer') | |
(44, 'that', 'way') | |
(44, 'the', 'direction') | |
(44, 'felt', 'that') | |
(44, 'than', 'to') | |
(44, 'led', 'to') | |
(44, 'only', 'by') | |
(44, 'the', 'many') | |
(44, 'the', 'hotel') | |
(45, 'i', 'went') | |
(45, 'and', 'social') | |
(45, 'the', 'cold') | |
(45, 'the', 'highest') | |
(45, 'work', 'on') | |
(45, 'it', 'out') | |
(45, 'the', 'universe') | |
(45, 'let', 'me') | |
(45, 'which', 'were') | |
(45, 'that', 'were') | |
(45, 'it', 'all') | |
(45, 'had', 'said') | |
(45, 'a', 'letter') | |
(45, 'his', 'feet') | |
(45, 'most', 'important') | |
(45, 'account', 'of') | |
(45, 'work', 'of') | |
(45, 'length', 'of') | |
(45, 'face', 'of') | |
(45, 'back', 'of') | |
(45, 'man', 'of') | |
(45, 'his', 'father') | |
(45, 'the', 'editor') | |
(45, 'entered', 'the') | |
(45, 'have', 'you') | |
(45, 'find', 'a') | |
(45, 'they', 'may') | |
(45, 'one', 'is') | |
(45, 'the', 'spring') | |
(45, 'a', 'world') | |
(45, 'as', 'for') | |
(45, 'the', 'problems') | |
(45, 'to', 'play') | |
(45, 'than', 'that') | |
(45, 'now', "''") | |
(45, 'and', 'from') | |
(45, 'refused', 'to') | |
(45, 'and', 'many') | |
(45, '``', 'now') | |
(46, 'los', 'angeles') | |
(46, 'at', 'night') | |
(46, 'behind', 'him') | |
(46, 'the', 'plane') | |
(46, 'made', 'it') | |
(46, 'i', "can't") | |
(46, 'this', 'point') | |
(46, 'him', 'as') | |
(46, 'power', 'of') | |
(46, 'method', 'of') | |
(46, 'age', 'of') | |
(46, 'portion', 'of') | |
(46, 'size', 'of') | |
(46, 'quality', 'of') | |
(46, 'without', 'the') | |
(46, 'left', 'the') | |
(46, 'so', 'the') | |
(46, 'he', 'got') | |
(46, 'and', 'some') | |
(46, 'the', 'part') | |
(46, 'all', 'these') | |
(46, 'the', 'commission') | |
(46, 'the', 'good') | |
(46, 'to', 'buy') | |
(46, 'we', 'shall') | |
(46, 'the', 'effect') | |
(46, 'failed', 'to') | |
(46, 'wish', 'to') | |
(46, 'off', 'to') | |
(46, 'he', 'never') | |
(46, 'her', 'own') | |
(47, 'like', 'this') | |
(47, '--', 'i') | |
(47, 'the', 'principal') | |
(47, 'and', 'no') | |
(47, 'i', 'asked') | |
(47, 'young', 'man') | |
(47, 'to', 'hear') | |
(47, 'the', 'period') | |
(47, 'though', 'it') | |
(47, 'i', 'felt') | |
(47, 'but', 'as') | |
(47, 'he', 'turned') | |
(47, 'is', 'used') | |
(47, 'director', 'of') | |
(47, 'day', 'of') | |
(47, 'aspects', 'of') | |
(47, 'set', 'of') | |
(47, 'had', 'made') | |
(47, 'the', 'ball') | |
(47, 'him', 'the') | |
(47, 'inside', 'the') | |
(47, 'or', 'other') | |
(47, 'be', 'expected') | |
(47, 'to', 'build') | |
(47, 'very', 'much') | |
(47, 'the', 'upper') | |
(47, 'the', 'stage') | |
(47, 'was', '``') | |
(47, 'and', 'yet') | |
(47, 'responsibility', 'for') | |
(47, 'except', 'for') | |
(47, 'reason', 'for') | |
(47, 'far', 'from') | |
(47, 'nothing', 'to') | |
(47, 'his', 'hand') | |
(47, 'are', 'now') | |
(48, 'and', 'went') | |
(48, 'of', 'social') | |
(48, 'the', 'words') | |
(48, 'he', "couldn't") | |
(48, 'a', 'month') | |
(48, 'came', 'in') | |
(48, 'over', 'his') | |
(48, 'has', 'become') | |
(48, 'the', 'free') | |
(48, 'the', 'dark') | |
(48, 'new', 'england') | |
(48, 'the', 'army') | |
(48, 'aware', 'of') | |
(48, 'world', 'of') | |
(48, 'people', 'of') | |
(48, 'areas', 'of') | |
(48, 'first', 'of') | |
(48, 'let', 'the') | |
(48, 'called', 'the') | |
(48, 'a', 'state') | |
(48, 'there', 'would') | |
(48, '``', "i've") | |
(48, 'of', 'three') | |
(48, 'the', 'senate') | |
(48, 'the', 'usual') | |
(48, '``', 'they') | |
(48, 'and', 'how') | |
(48, 'mr.', 'and') | |
(48, 'if', 'there') | |
(49, 'by', 'this') | |
(49, 'at', 'one') | |
(49, 'with', 'one') | |
(49, 'few', 'years') | |
(49, 'the', 'central') | |
(49, 'the', 'trial') | |
(49, 'her', 'eyes') | |
(49, 'be', 'seen') | |
(49, 'united', 'nations') | |
(49, 'you', 'think') | |
(49, 'all', 'his') | |
(49, 'picked', 'up') | |
(49, 'which', 'will') | |
(49, 'is', 'as') | |
(49, 'are', 'used') | |
(49, 'the', 'size') | |
(49, 'area', 'of') | |
(49, 'effect', 'of') | |
(49, 'even', 'a') | |
(49, 'without', 'a') | |
(49, 'we', 'may') | |
(49, 'are', 'also') | |
(49, 'i', 'believe') | |
(49, 'a', 'major') | |
(49, 'the', 'patient') | |
(49, 'a', 'whole') | |
(49, 'the', 'doctor') | |
(49, 'from', 'which') | |
(49, 'all', 'that') | |
(49, 'required', 'to') | |
(49, 'supposed', 'to') | |
(50, '``', 'this') | |
(50, 'on', 'one') | |
(50, 'the', 'life') | |
(50, 'he', 'found') | |
(50, 'and', 'has') | |
(50, 'last', 'week') | |
(50, 'but', 'when') | |
(50, 'out', 'on') | |
(50, 'the', 'story') | |
(50, 'the', 'nature') | |
(50, 'the', 'original') | |
(50, 'to', 'develop') | |
(50, 'he', 'took') | |
(50, 'from', 'her') | |
(50, 'name', 'of') | |
(50, 'question', 'of') | |
(50, 'not', 'so') | |
(50, 'is', 'so') | |
(50, 'do', 'the') | |
(50, 'if', 'not') | |
(50, 'the', 'congo') | |
(50, 'a', 'part') | |
(50, 'a', 'real') | |
(50, 'is', 'at') | |
(50, 'at', 'last') | |
(50, 'the', 'face') | |
(50, 'not', 'yet') | |
(50, 'the', 'range') | |
(50, '``', "that's") | |
(50, 'better', 'than') | |
(50, 'he', 'says') | |
(50, 'on', 'my') | |
(50, '``', 'my') | |
(50, 'to', 'write') | |
(50, 'clear', 'that') | |
(50, 'attention', 'to') | |
(50, 'as', 'many') | |
(51, 'this', 'one') | |
(51, 'the', 'union') | |
(51, 'with', 'no') | |
(51, 'it', 'did') | |
(51, 'for', 'instance') | |
(51, 'than', 'in') | |
(51, 'as', 'his') | |
(51, 'the', 'land') | |
(51, 'not', 'know') | |
(51, 'can', 'do') | |
(51, 'the', 'common') | |
(51, 'example', 'of') | |
(51, 'line', 'of') | |
(51, 'purpose', 'of') | |
(51, 'the', 'french') | |
(51, 'tell', 'you') | |
(51, 'did', 'you') | |
(51, 'in', '``') | |
(51, 'other', 'than') | |
(51, 'used', 'for') | |
(51, 'show', 'that') | |
(51, 'for', 'that') | |
(51, 'the', 'king') | |
(51, 'where', 'they') | |
(51, 'because', 'they') | |
(51, 'turned', 'to') | |
(51, 'filled', 'with') | |
(51, 'he', 'and') | |
(51, 'to', 'move') | |
(52, 'that', 'no') | |
(52, 'find', 'out') | |
(52, 'with', 'me') | |
(52, 'involved', 'in') | |
(52, 'the', 'music') | |
(52, 'one', 'who') | |
(52, 'was', 'his') | |
(52, 'i', 'told') | |
(52, 'a', 'word') | |
(52, 'and', 'made') | |
(52, 'a', 'sense') | |
(52, 'but', 'we') | |
(52, "''", 'or') | |
(52, 'the', 'peace') | |
(52, 'it', 'for') | |
(52, 'waiting', 'for') | |
(52, 'this', 'way') | |
(52, 'the', 'extent') | |
(52, 'them', "''") | |
(52, 'much', 'to') | |
(52, 'but', 'to') | |
(52, 'unable', 'to') | |
(52, 'concerned', 'with') | |
(52, 'one', 'day') | |
(52, 'in', 'and') | |
(52, '``', 'there') | |
(52, 'for', 'many') | |
(53, 'from', 'this') | |
(53, 'as', 'one') | |
(53, 'from', 'one') | |
(53, 'the', 'years') | |
(53, 'be', 'no') | |
(53, 'as', 'far') | |
(53, 'the', 'line') | |
(53, 'the', 'value') | |
(53, 'with', 'it') | |
(53, 'and', 'who') | |
(53, 'in', 'spite') | |
(53, 'to', 'determine') | |
(53, 'the', 'bottom') | |
(53, 'a', 'hundred') | |
(53, 'the', 'possibility') | |
(53, 'the', 'book') | |
(53, 'they', 'do') | |
(53, 'to', 'talk') | |
(53, 'spite', 'of') | |
(53, 'the', 'community') | |
(53, 'time', 'the') | |
(53, 'the', 'order') | |
(53, 'a', 'while') | |
(53, 'what', 'you') | |
(53, 'a', 'high') | |
(53, 'just', 'a') | |
(53, 'he', 'may') | |
(53, 'to', 'my') | |
(53, '``', 'yes') | |
(53, 'to', 'each') | |
(53, 'are', 'to') | |
(53, 'our', 'own') | |
(54, 'to', 'speak') | |
(54, 'to', 'any') | |
(54, 'down', 'on') | |
(54, 'the', 'average') | |
(54, 'man', 'in') | |
(54, 'who', 'were') | |
(54, 'the', 'power') | |
(54, 'he', 'wanted') | |
(54, 'image', 'of') | |
(54, 'do', 'so') | |
(54, 'of', 'american') | |
(54, '``', 'not') | |
(54, 'as', 'you') | |
(54, 'the', 'high') | |
(54, 'was', 'also') | |
(54, 'for', 'those') | |
(54, 'designed', 'to') | |
(54, 'the', 'difference') | |
(54, 'the', 'british') | |
(55, 'no', 'matter') | |
(55, 'all', 'over') | |
(55, 'i', 'want') | |
(55, 'i', 'did') | |
(55, 'the', 'english') | |
(55, 'for', 'me') | |
(55, 'if', 'she') | |
(55, 'men', 'who') | |
(55, 'the', 'window') | |
(55, 'i', 'will') | |
(55, 'on', 'an') | |
(55, 'a', 'bit') | |
(55, 'we', 'do') | |
(55, 'could', 'do') | |
(55, 'more', 'of') | |
(55, 'order', 'of') | |
(55, 'university', 'of') | |
(55, 'on', 'its') | |
(55, 'peace', 'corps') | |
(55, 'see', 'that') | |
(55, 'right', "''") | |
(55, 'him', "''") | |
(55, 'here', "''") | |
(55, 'next', 'to') | |
(56, 'to', 'what') | |
(56, 'the', 'study') | |
(56, 'place', 'in') | |
(56, 'live', 'in') | |
(56, 'changes', 'in') | |
(56, 'but', 'his') | |
(56, 'to', 'let') | |
(56, 'u.', 's.') | |
(56, 'difference', 'between') | |
(56, 'that', 'will') | |
(56, 'it', 'might') | |
(56, 'degree', 'of') | |
(56, 'has', 'the') | |
(56, 'who', 'would') | |
(56, 'was', 'just') | |
(56, 'her', 'husband') | |
(56, 'and', 'most') | |
(56, 'be', 'taken') | |
(56, '``', 'to') | |
(56, 'you', 'could') | |
(56, 'made', 'by') | |
(56, 'back', 'and') | |
(56, 'my', 'own') | |
(56, 'a', 'young') | |
(57, 'the', 'river') | |
(57, 'last', 'night') | |
(57, 'made', 'in') | |
(57, 'was', 'all') | |
(57, 'by', 'an') | |
(57, 'to', 'prevent') | |
(57, 'he', 'told') | |
(57, 'full', 'of') | |
(57, 'spirit', 'of') | |
(57, 'capable', 'of') | |
(57, 'case', 'of') | |
(57, 'problems', 'of') | |
(57, 'government', 'of') | |
(57, 'head', 'of') | |
(57, 'a', 'member') | |
(57, 'the', 'late') | |
(57, 'how', 'much') | |
(57, 'was', 'at') | |
(57, '``', "i'll") | |
(57, 'the', 'open') | |
(57, 'in', 'general') | |
(57, 'this', 'year') | |
(57, 'a', 'woman') | |
(57, 'for', 'which') | |
(57, 'us', 'to') | |
(57, 'opportunity', 'to') | |
(57, 'followed', 'by') | |
(58, 'his', 'hands') | |
(58, 'the', 'beginning') | |
(58, 'the', 'police') | |
(58, 'is', 'only') | |
(58, 'the', 'results') | |
(58, 'for', 'them') | |
(58, 'a', 'kind') | |
(58, 'but', 'if') | |
(58, 'only', 'in') | |
(58, 'were', 'in') | |
(58, 'do', 'it') | |
(58, 'one', 'thing') | |
(58, 'set', 'up') | |
(58, 'to', 'our') | |
(58, 'we', 'will') | |
(58, 'cent', 'of') | |
(58, 'or', 'not') | |
(58, 'the', 'real') | |
(58, 'that', 'these') | |
(58, 'if', 'a') | |
(58, 'out', 'a') | |
(58, 'and', 'also') | |
(58, '--', 'or') | |
(58, 'the', 'board') | |
(58, 'to', 'hold') | |
(58, 'the', 'anode') | |
(58, 'no', 'doubt') | |
(58, 'in', 'each') | |
(58, 'fiscal', 'year') | |
(58, 'returned', 'to') | |
(58, 'continue', 'to') | |
(58, 'over', 'to') | |
(58, 'of', 'many') | |
(59, 'that', 'has') | |
(59, 'of', 'people') | |
(59, 'the', 'subject') | |
(59, 'the', 'town') | |
(59, 'time', 'in') | |
(59, 'with', 'all') | |
(59, 'the', 'human') | |
(59, 'process', 'of') | |
(59, 'knowledge', 'of') | |
(59, 'though', 'the') | |
(59, 'the', 'need') | |
(59, 'to', 'some') | |
(59, 'the', 'individual') | |
(59, 'for', 'its') | |
(59, 'become', 'a') | |
(59, 'a', 'way') | |
(59, 'at', 'that') | |
(59, 'made', 'to') | |
(59, 'related', 'to') | |
(59, 'willing', 'to') | |
(59, 'has', 'to') | |
(59, 'the', 'program') | |
(59, '``', "don't") | |
(60, 'for', 'any') | |
(60, 'be', 'found') | |
(60, 'to', 'live') | |
(60, 'the', 'job') | |
(60, 'or', 'in') | |
(60, 'back', 'in') | |
(60, 'such', 'an') | |
(60, 'it', 'as') | |
(60, 'the', 'court') | |
(60, 'the', 'heart') | |
(60, 'any', 'of') | |
(60, 'the', 'party') | |
(60, 'got', 'a') | |
(60, 'the', 'audience') | |
(60, 'the', 'spirit') | |
(60, 'knew', 'that') | |
(60, '--', 'to') | |
(60, 'other', 'hand') | |
(61, 'the', 'body') | |
(61, 'went', 'on') | |
(61, 'even', 'if') | |
(61, 'we', 'should') | |
(61, 'a', 'series') | |
(61, 'where', 'it') | |
(61, 'he', 'will') | |
(61, 'he', 'might') | |
(61, 'had', 'gone') | |
(61, 'the', 'table') | |
(61, 'two', 'of') | |
(61, 'lot', 'of') | |
(61, 'none', 'of') | |
(61, 'took', 'the') | |
(61, 'of', 'other') | |
(61, 'of', 'america') | |
(61, 'a', 'child') | |
(61, "''", 'is') | |
(61, '``', 'he') | |
(61, 'we', 'had') | |
(61, 'the', 'former') | |
(61, 'decided', 'to') | |
(61, 'i', 'knew') | |
(62, 'the', 'greatest') | |
(62, 'two', 'years') | |
(62, 'or', 'two') | |
(62, 'in', 'both') | |
(62, 'they', 'did') | |
(62, 'not', 'in') | |
(62, '``', 'in') | |
(62, 'on', 'it') | |
(62, 'is', 'it') | |
(62, 'you', 'were') | |
(62, 'people', 'who') | |
(62, "''", 'was') | |
(62, 'a', 'short') | |
(62, 'the', 'truth') | |
(62, 'the', 'left') | |
(62, 'of', 'human') | |
(62, 'variety', 'of') | |
(62, 'view', 'of') | |
(62, 'the', 'nation') | |
(62, 'let', 'us') | |
(62, 'to', 'you') | |
(62, 'the', 'head') | |
(62, 'what', 'we') | |
(62, '``', 'how') | |
(62, 'need', 'to') | |
(62, 'is', 'being') | |
(62, 'men', 'and') | |
(63, 'his', 'life') | |
(63, 'at', 'any') | |
(63, 'with', 'them') | |
(63, 'i', 'saw') | |
(63, 'increase', 'in') | |
(63, 'shown', 'in') | |
(63, 'which', 'it') | |
(63, 'the', 'college') | |
(63, 'much', 'more') | |
(63, 'to', 'all') | |
(63, 'they', 'will') | |
(63, 'the', 'office') | |
(63, 'problem', 'of') | |
(63, 'board', 'of') | |
(63, 'history', 'of') | |
(63, 'he', 'made') | |
(63, 'behind', 'the') | |
(63, 'he', 'can') | |
(63, 'him', 'a') | |
(63, 'the', 'school') | |
(63, 'should', 'have') | |
(63, 'before', 'he') | |
(63, 'had', 'had') | |
(63, 'ought', 'to') | |
(63, 'out', 'and') | |
(63, 'it', 'and') | |
(63, 'you', "don't") | |
(64, 'have', 'no') | |
(64, 'he', 'must') | |
(64, 'at', 'first') | |
(64, 'interested', 'in') | |
(64, 'into', 'his') | |
(64, 'source', 'of') | |
(64, 'top', 'of') | |
(64, 'basis', 'of') | |
(64, 'world', 'war') | |
(64, 'saw', 'the') | |
(64, 'should', 'not') | |
(64, 'this', 'country') | |
(64, 'not', 'been') | |
(64, '--', 'he') | |
(64, 'the', 'soviet') | |
(65, 'the', 'matter') | |
(65, 'the', 'law') | |
(65, 'so', 'far') | |
(65, 'was', 'on') | |
(65, 'was', 'going') | |
(65, 'the', 'various') | |
(65, 'although', 'the') | |
(65, 'the', 'form') | |
(65, 'the', 'process') | |
(65, 'were', 'a') | |
(65, 'one', 'or') | |
(65, 'a', 'special') | |
(65, 'that', "''") | |
(65, 'the', 'amount') | |
(65, 'on', 'to') | |
(65, 'addition', 'to') | |
(65, 'it', 'with') | |
(65, 'so', 'many') | |
(65, 'the', 'system') | |
(66, 'but', 'this') | |
(66, 'for', 'one') | |
(66, 'which', 'has') | |
(66, 'know', 'what') | |
(66, 'the', 'small') | |
(66, '--', 'in') | |
(66, 'even', 'more') | |
(66, 'the', 'children') | |
(66, 'range', 'of') | |
(66, 'idea', 'of') | |
(66, 'the', 'others') | |
(66, 'or', '``') | |
(66, 'the', 'three') | |
(66, 'on', 'which') | |
(66, 'effort', 'to') | |
(66, 'got', 'to') | |
(66, 'with', 'respect') | |
(67, 'these', 'are') | |
(67, 'of', 'two') | |
(67, 'first', 'time') | |
(67, 'old', 'man') | |
(67, 'been', 'in') | |
(67, 'and', 'said') | |
(67, "don't", 'know') | |
(67, 'an', 'hour') | |
(67, 'beyond', 'the') | |
(67, 'both', 'the') | |
(67, 'for', 'you') | |
(67, 'take', 'a') | |
(67, 'are', 'a') | |
(67, 'when', 'we') | |
(67, 'at', 'home') | |
(67, 'the', 'basis') | |
(67, 'as', 'long') | |
(67, 'need', 'for') | |
(67, 'he', 'looked') | |
(68, 'which', 'i') | |
(68, 'that', 'time') | |
(68, 'the', 'situation') | |
(68, 'the', 'earth') | |
(68, 'you', 'want') | |
(68, 'his', 'first') | |
(68, 'a', 'second') | |
(68, 'be', 'an') | |
(68, 'president', 'of') | |
(68, 'each', 'of') | |
(68, 'white', 'house') | |
(68, 'may', 'not') | |
(68, 'the', 'girl') | |
(68, 'as', 'possible') | |
(68, 'are', 'you') | |
(68, 'be', 'sure') | |
(68, 'i', "didn't") | |
(68, 'the', 'cost') | |
(68, 'the', 'major') | |
(68, 'believe', 'that') | |
(68, 'know', 'that') | |
(68, 'the', 'morning') | |
(68, "''", 'to') | |
(68, 'the', 'side') | |
(69, 'the', 'social') | |
(69, 'and', 'are') | |
(69, 'life', 'of') | |
(69, 'half', 'of') | |
(69, 'thought', 'of') | |
(69, '``', "it's") | |
(69, 'of', 'water') | |
(69, '``', 'why') | |
(69, 'ready', 'to') | |
(69, 'respect', 'to') | |
(70, 'all', 'this') | |
(70, 'that', 'one') | |
(70, 'i', 'thought') | |
(70, 'he', 'asked') | |
(70, 'and', 'on') | |
(70, 'to', 'bring') | |
(70, 'it', 'should') | |
(70, 'be', 'able') | |
(70, 'but', 'she') | |
(70, 'far', 'as') | |
(70, 'his', 'mind') | |
(70, 'a', 'result') | |
(70, 'piece', 'of') | |
(70, 'nature', 'of') | |
(70, 'the', 'basic') | |
(70, 'and', 'you') | |
(70, 'which', 'would') | |
(70, 'the', 'sun') | |
(70, 'when', 'a') | |
(70, 'which', 'we') | |
(70, 'to', 'pay') | |
(70, 'like', 'that') | |
(70, 'you', 'to') | |
(70, 'attempt', 'to') | |
(70, 'possible', 'to') | |
(70, 'do', 'with') | |
(70, 'had', 'come') | |
(71, 'with', 'this') | |
(71, 'and', 'what') | |
(71, 'the', 'place') | |
(71, 'told', 'him') | |
(71, 'it', 'seemed') | |
(71, '``', 'if') | |
(71, 'the', 'kitchen') | |
(71, 'much', 'as') | |
(71, 'at', 'her') | |
(71, 'level', 'of') | |
(71, 'near', 'the') | |
(71, 'made', 'the') | |
(71, 'any', 'other') | |
(71, 'the', 'main') | |
(71, 'the', 'name') | |
(71, 'through', 'a') | |
(71, 'get', 'a') | |
(71, 'to', 'those') | |
(71, 'the', 'group') | |
(71, 'the', 'long') | |
(71, 'due', 'to') | |
(71, 'be', 'done') | |
(72, 'of', 'men') | |
(72, 'the', 'area') | |
(72, 'in', 'terms') | |
(72, 'a', 'week') | |
(72, 'the', 'wall') | |
(72, 'it', 'must') | |
(72, 'the', 'kind') | |
(72, 'or', 'more') | |
(72, 'think', 'of') | |
(72, 'was', 'so') | |
(72, 'get', 'the') | |
(72, 'in', 'such') | |
(72, 'about', 'a') | |
(72, 'the', 'east') | |
(72, 'of', 'each') | |
(72, 'and', 'by') | |
(72, 'time', 'and') | |
(73, 'in', 'it') | |
(73, '``', 'all') | |
(73, 'after', 'all') | |
(73, 'shall', 'be') | |
(73, 'they', 'can') | |
(73, 'in', 'these') | |
(73, 'as', 'though') | |
(73, 'the', 'moment') | |
(73, 'have', 'had') | |
(73, 'necessary', 'to') | |
(73, 'or', 'to') | |
(73, 'it', 'could') | |
(73, 'the', 'floor') | |
(74, 'was', 'only') | |
(74, 'the', 'night') | |
(74, 'of', 'him') | |
(74, 'that', 'if') | |
(74, 'are', 'in') | |
(74, 'to', 'show') | |
(74, 'make', 'it') | |
(74, 'is', 'more') | |
(74, 'cannot', 'be') | |
(74, 'types', 'of') | |
(74, 'time', 'of') | |
(74, 'period', 'of') | |
(74, 'said', 'the') | |
(74, 'above', 'the') | |
(74, 'of', 'state') | |
(74, 'it', 'does') | |
(74, '--', 'but') | |
(74, 'you', 'may') | |
(74, 'but', 'also') | |
(74, 'high', 'school') | |
(74, '--', 'that') | |
(74, 'only', 'to') | |
(74, 'had', 'never') | |
(75, 'the', 'company') | |
(75, "''", 'in') | |
(75, 'even', 'in') | |
(75, 'to', 'put') | |
(75, 'to', 'its') | |
(75, 'even', 'though') | |
(75, 'the', 'front') | |
(75, 'were', 'to') | |
(75, 'of', 'being') | |
(76, 'and', 'one') | |
(76, 'who', 'has') | |
(76, 'to', 'use') | |
(76, 'to', 'leave') | |
(76, 'the', 'local') | |
(76, 'what', 'was') | |
(76, 'the', 'idea') | |
(76, 'the', 'north') | |
(76, 'point', 'of') | |
(76, 'was', 'made') | |
(76, 'been', 'the') | |
(76, 'it', 'can') | |
(76, 'for', 'some') | |
(76, 'over', 'a') | |
(76, 'to', 'meet') | |
(76, 'said', 'he') | |
(76, 'for', 'each') | |
(76, 'difficult', 'to') | |
(76, 'along', 'with') | |
(77, 'that', 'are') | |
(77, 'what', 'i') | |
(77, 'interest', 'in') | |
(77, 'found', 'in') | |
(77, 'result', 'of') | |
(77, 'that', 'you') | |
(77, 'that', 'would') | |
(77, 'up', 'a') | |
(77, 'at', 'once') | |
(77, 'a', 'certain') | |
(77, 'a', 'day') | |
(77, 'it', 'seems') | |
(78, 'to', 'one') | |
(78, 'with', 'their') | |
(78, 'on', 'their') | |
(78, 'and', 'af') | |
(78, '``', 'oh') | |
(78, 'by', 'his') | |
(78, 'to', 'become') | |
(78, 'long', 'as') | |
(78, 'the', 'word') | |
(78, 'i', 'do') | |
(78, 'member', 'of') | |
(78, 'cost', 'of') | |
(78, 'has', 'not') | |
(78, 'the', 'department') | |
(78, 'or', 'even') | |
(78, 'a', 'group') | |
(78, 'in', 'your') | |
(78, 'last', 'year') | |
(78, 'with', 'which') | |
(78, 'up', 'with') | |
(79, 'was', 'one') | |
(79, 'a', 'matter') | |
(79, 'the', 'surface') | |
(79, 'the', 'development') | |
(79, 'what', 'it') | |
(79, 'the', 'point') | |
(79, 'an', 'old') | |
(79, 'and', 'as') | |
(79, 'means', 'of') | |
(79, 'as', 'we') | |
(79, 'but', 'that') | |
(79, 'said', 'to') | |
(79, 'is', 'now') | |
(80, 'because', 'it') | |
(80, 'couple', 'of') | |
(80, 'department', 'of') | |
(80, 'of', 'some') | |
(80, 'a', 'big') | |
(80, 'which', 'they') | |
(80, 'in', 'many') | |
(80, 'and', 'now') | |
(81, 'the', 'little') | |
(81, 'them', 'in') | |
(81, 'that', 'all') | |
(81, 'the', 'u.s.') | |
(81, 'terms', 'of') | |
(81, 'the', 'boy') | |
(81, 'the', 'center') | |
(81, 'looked', 'at') | |
(81, 'right', 'to') | |
(81, 'close', 'to') | |
(82, 'a', 'time') | |
(82, 'based', 'on') | |
(82, 'to', 'them') | |
(82, 'to', 'think') | |
(82, 'you', 'will') | |
(82, 'rest', 'of') | |
(82, 'the', 'room') | |
(82, 'af', 'is') | |
(82, 'where', 'he') | |
(83, 'and', 'if') | |
(83, 'center', 'of') | |
(83, 'the', 'hall') | |
(83, 'a', 'couple') | |
(83, 'she', 'could') | |
(84, 'the', 'final') | |
(84, 'rate', 'of') | |
(84, 'to', 'tell') | |
(84, 'then', 'the') | |
(84, 'his', 'face') | |
(84, 'try', 'to') | |
(84, 'its', 'own') | |
(84, 'the', 'light') | |
(85, 'that', 'his') | |
(85, 'he', 'felt') | |
(85, 'and', 'at') | |
(85, 'the', 'federal') | |
(85, 'the', 'third') | |
(86, 'the', 'result') | |
(86, 'on', 'her') | |
(86, "''", 'of') | |
(86, 'value', 'of') | |
(86, '``', 'well') | |
(86, 'to', 'help') | |
(86, 'to', 'that') | |
(87, 'he', 'went') | |
(87, 'be', 'in') | |
(87, 'the', 'question') | |
(87, 'could', 'see') | |
(87, 'he', "didn't") | |
(87, '``', "i'm") | |
(87, 'me', "''") | |
(88, 'man', 'who') | |
(88, 'and', 'an') | |
(88, 'secretary', 'of') | |
(88, 'study', 'of') | |
(88, 'because', 'the') | |
(88, 'the', 'family') | |
(88, '--', '``') | |
(88, 'a', 'moment') | |
(88, 'because', 'he') | |
(88, 'what', 'they') | |
(88, 'expected', 'to') | |
(89, 'a', 'lot') | |
(89, 'no', 'more') | |
(89, 'even', 'the') | |
(89, 'with', 'its') | |
(89, 'made', 'a') | |
(89, 'will', 'have') | |
(89, '``', 'that') | |
(89, 'was', 'that') | |
(89, 'how', 'to') | |
(90, 'for', 'their') | |
(90, 'at', 'him') | |
(90, 'but', 'in') | |
(90, 'a', 'more') | |
(90, 'rhode', 'island') | |
(90, 'be', 'used') | |
(90, 'the', 'top') | |
(90, 'series', 'of') | |
(90, 'the', 'middle') | |
(90, 'make', 'the') | |
(90, 'were', 'the') | |
(90, 'but', 'not') | |
(90, 'could', 'have') | |
(90, 'the', 'university') | |
(90, 'her', 'to') | |
(90, 'af', 'and') | |
(91, 'all', 'right') | |
(91, 'his', 'eyes') | |
(91, 'the', 'car') | |
(91, 'him', 'in') | |
(91, 'take', 'the') | |
(91, 'to', 'look') | |
(91, 'that', 'had') | |
(91, 'to', 'provide') | |
(91, 'say', 'that') | |
(92, 'as', 'she') | |
(92, 'as', 'in') | |
(92, 'out', 'in') | |
(92, 'years', 'of') | |
(92, 'when', 'you') | |
(92, 'in', 'new') | |
(92, 'of', 'your') | |
(92, 'and', 'had') | |
(93, 'the', 'back') | |
(93, 'he', 'saw') | |
(93, 'used', 'in') | |
(93, 'matter', 'of') | |
(93, 'in', 'other') | |
(93, 'the', 'street') | |
(93, 'the', 'total') | |
(93, 'but', 'a') | |
(93, 'the', 'white') | |
(93, 'the', 'year') | |
(94, 'and', 'mrs.') | |
(94, 'we', 'must') | |
(94, 'the', 'field') | |
(94, 'for', 'her') | |
(94, 'lack', 'of') | |
(94, 'much', 'of') | |
(94, 'those', 'of') | |
(94, 'too', 'much') | |
(94, 'not', 'have') | |
(94, 'to', 'come') | |
(95, 'same', 'time') | |
(95, 'of', 'time') | |
(95, 'it', 'in') | |
(95, 'for', 'it') | |
(95, 'who', 'have') | |
(95, 'the', 'early') | |
(96, 'the', 'future') | |
(96, 'his', 'wife') | |
(96, 'look', 'at') | |
(96, 'then', 'he') | |
(96, 'me', 'to') | |
(97, 'the', 'secretary') | |
(97, 'the', 'men') | |
(97, 'to', 'it') | |
(97, 'way', 'of') | |
(97, 'the', 'war') | |
(97, 'it', 'may') | |
(97, 'the', 'water') | |
(97, 'likely', 'to') | |
(97, 'the', 'young') | |
(98, 'of', 'one') | |
(98, 'and', 'her') | |
(98, 'is', 'still') | |
(98, 'development', 'of') | |
(98, 'throughout', 'the') | |
(98, 'as', 'much') | |
(98, 'who', 'is') | |
(98, 'the', 'ground') | |
(99, 'about', 'it') | |
(99, 'to', 'work') | |
(99, 'type', 'of') | |
(99, 'the', 'air') | |
(99, 'is', 'also') | |
(99, 'the', 'south') | |
(99, 'like', 'to') | |
(99, 'they', 'could') | |
(100, 'the', 'big') | |
(101, 'when', 'she') | |
(101, 'state', 'of') | |
(101, 'the', 'country') | |
(101, 'in', 'front') | |
(101, 'to', 'which') | |
(102, 'is', 'one') | |
(102, 'up', 'in') | |
(102, 'to', 'know') | |
(102, 'form', 'of') | |
(102, 'which', 'had') | |
(102, 'down', 'to') | |
(103, 'and', 'this') | |
(103, 'was', 'still') | |
(104, 'the', 'road') | |
(104, 'of', 'af') | |
(104, 'what', 'the') | |
(104, 'the', 'latter') | |
(104, 'to', '``') | |
(105, 'of', 'god') | |
(105, 'if', 'i') | |
(105, 'the', 'very') | |
(105, 'i', 'know') | |
(105, 'you', 'know') | |
(105, 'and', 'so') | |
(105, 'until', 'the') | |
(105, 'of', 'us') | |
(105, 'she', 'would') | |
(105, 'after', 'a') | |
(106, 'on', 'this') | |
(106, 'only', 'one') | |
(106, 'a', 'single') | |
(106, 'he', 'thought') | |
(106, 'we', 'were') | |
(106, 'was', 'an') | |
(106, 'front', 'of') | |
(106, 'only', 'the') | |
(106, 'each', 'other') | |
(106, 'the', 'case') | |
(106, 'so', 'much') | |
(106, 'and', 'we') | |
(106, 'and', 'is') | |
(106, 'said', 'that') | |
(106, 'him', 'and') | |
(107, 'in', 'one') | |
(107, 'with', 'him') | |
(107, 'when', 'it') | |
(107, '``', 'it') | |
(107, 'they', 'would') | |
(107, 'that', '``') | |
(107, 'if', 'we') | |
(107, 'go', 'to') | |
(107, 'he', 'knew') | |
(107, '``', 'and') | |
(108, 'of', 'what') | |
(108, '``', 'no') | |
(108, 'the', 'rest') | |
(108, 'group', 'of') | |
(108, 'and', 'not') | |
(108, 'were', 'not') | |
(108, 'and', 'its') | |
(108, 'a', 'year') | |
(108, 'and', 'with') | |
(109, 'of', 'life') | |
(109, 'and', 'when') | |
(109, 'and', 'all') | |
(109, 'with', 'her') | |
(109, 'will', 'not') | |
(109, 'i', 'would') | |
(110, 'the', 'work') | |
(110, 'make', 'a') | |
(111, 'come', 'to') | |
(112, 'of', 'any') | |
(112, 'who', 'are') | |
(112, 'for', 'all') | |
(112, 'while', 'the') | |
(113, 'the', 'use') | |
(113, 'and', 'more') | |
(113, 'amount', 'of') | |
(113, 'had', 'the') | |
(113, 'i', 'can') | |
(113, 'might', 'have') | |
(114, 'for', 'an') | |
(114, 'and', 'even') | |
(114, 'but', 'they') | |
(114, 'seem', 'to') | |
(114, 'them', 'to') | |
(115, 'this', 'time') | |
(115, 'a', 'large') | |
(115, 'the', 'entire') | |
(115, 'and', 'of') | |
(115, 'be', 'made') | |
(116, 'the', 'national') | |
(116, 'see', 'the') | |
(116, 'the', 'general') | |
(116, 'and', 'for') | |
(116, 'if', 'they') | |
(116, 'wanted', 'to') | |
(116, 'no', 'longer') | |
(117, 'but', 'there') | |
(118, 'for', 'him') | |
(118, 'the', 'more') | |
(118, 'who', 'was') | |
(118, 'the', 'west') | |
(118, 'along', 'the') | |
(118, 'of', 'new') | |
(118, 'went', 'to') | |
(118, 'it', 'to') | |
(118, 'the', 'following') | |
(119, 'the', 'problem') | |
(119, 'sort', 'of') | |
(119, 'when', 'they') | |
(120, 'the', 'number') | |
(120, 'in', 'addition') | |
(120, 'as', '``') | |
(120, 'tried', 'to') | |
(121, 'at', 'his') | |
(121, 'had', 'not') | |
(121, 'been', 'a') | |
(121, 'out', 'to') | |
(122, 'i', 'think') | |
(122, 'i', 'said') | |
(122, 'in', 'our') | |
(122, 'has', 'a') | |
(122, 'you', 'have') | |
(123, 'had', 'no') | |
(123, 'just', 'as') | |
(123, 'out', 'the') | |
(123, 'the', 'day') | |
(124, 'instead', 'of') | |
(124, '``', 'but') | |
(124, 'less', 'than') | |
(124, 'of', 'which') | |
(125, 'as', 'i') | |
(125, 'in', 'some') | |
(126, 'which', 'are') | |
(126, 'to', 'an') | |
(127, 'and', 'their') | |
(127, 'we', 'can') | |
(127, 'do', 'you') | |
(127, '``', 'we') | |
(127, 'of', 'my') | |
(127, 'in', 'my') | |
(127, 'up', 'and') | |
(128, 'that', 'in') | |
(128, 'order', 'to') | |
(129, 'the', 'one') | |
(129, 'off', 'the') | |
(129, 'may', 'have') | |
(129, 'and', 'there') | |
(130, 'no', 'one') | |
(130, 'the', 'people') | |
(130, 'the', 'government') | |
(130, 'a', 'number') | |
(130, 'his', 'head') | |
(130, 'away', 'from') | |
(130, 'i', 'could') | |
(131, 'in', 'any') | |
(131, 'and', 'she') | |
(131, 'like', 'the') | |
(131, 'it', 'had') | |
(131, 'came', 'to') | |
(132, 'side', 'of') | |
(132, 'seems', 'to') | |
(133, 'at', 'this') | |
(133, 'to', 'keep') | |
(133, 'and', '``') | |
(134, 'the', 'public') | |
(134, 'of', 'those') | |
(136, 'that', 'this') | |
(136, 'the', 'present') | |
(136, 'in', 'all') | |
(136, 'trying', 'to') | |
(136, 'according', 'to') | |
(137, 'and', 'was') | |
(137, 'than', 'a') | |
(137, 'must', 'have') | |
(137, 'to', 'find') | |
(138, 'not', 'the') | |
(138, 'within', 'the') | |
(138, 'years', 'ago') | |
(139, 'what', 'he') | |
(140, 'when', 'i') | |
(140, 'a', 'very') | |
(140, 'if', 'it') | |
(140, 'of', 'such') | |
(140, 'a', 'long') | |
(140, 'began', 'to') | |
(141, 'from', 'his') | |
(141, 'in', 'that') | |
(141, 'used', 'to') | |
(142, 'it', 'will') | |
(142, 'time', 'to') | |
(143, '``', 'what') | |
(143, 'around', 'the') | |
(143, 'upon', 'the') | |
(143, 'they', 'have') | |
(143, 'and', 'they') | |
(143, 'you', "''") | |
(144, 'to', 'their') | |
(144, 'you', 'are') | |
(144, 'with', 'an') | |
(144, 'the', 'church') | |
(145, 'per', 'cent') | |
(145, 'many', 'of') | |
(145, 'way', 'to') | |
(146, 'the', 'past') | |
(146, 'the', 'right') | |
(146, 'that', 'she') | |
(146, 'toward', 'the') | |
(147, 'the', 'president') | |
(147, 'only', 'a') | |
(147, 'their', 'own') | |
(148, 'is', 'in') | |
(149, 'that', 'there') | |
(150, 'the', 'city') | |
(151, 'to', 'give') | |
(151, 'in', 'order') | |
(151, '--', 'a') | |
(152, 'to', 'this') | |
(152, 'that', 'i') | |
(152, 'not', 'a') | |
(152, 'that', 'we') | |
(153, 'in', 'fact') | |
(153, 'in', 'her') | |
(153, 'sense', 'of') | |
(154, 'or', 'a') | |
(154, 'of', 'that') | |
(155, 'which', 'was') | |
(155, 'members', 'of') | |
(157, 'as', 'if') | |
(157, 'a', 'great') | |
(157, 'have', 'the') | |
(157, 'since', 'the') | |
(158, 'of', '``') | |
(159, 'the', 'great') | |
(160, 'she', 'said') | |
(160, 'enough', 'to') | |
(161, '``', 'a') | |
(161, 'as', 'they') | |
(161, 'i', "don't") | |
(162, 'is', 'an') | |
(162, 'that', 'of') | |
(163, 'you', 'can') | |
(163, 'seemed', 'to') | |
(163, 'want', 'to') | |
(164, 'but', 'i') | |
(164, 'what', 'is') | |
(164, 'the', 'best') | |
(165, 'it', 'has') | |
(165, 'might', 'be') | |
(166, 'is', 'no') | |
(166, 'where', 'the') | |
(166, 'it', "''") | |
(168, 'a', 'small') | |
(168, 'which', 'he') | |
(169, 'to', 'her') | |
(170, 'the', 'second') | |
(170, 'among', 'the') | |
(171, 'as', 'it') | |
(171, 'the', 'door') | |
(171, "''", 'and') | |
(172, 'for', 'this') | |
(172, 'down', 'the') | |
(172, 'would', 'not') | |
(173, 'for', 'example') | |
(174, 'he', 'did') | |
(174, 'to', 'me') | |
(175, 'as', 'to') | |
(176, 'are', 'the') | |
(176, 'in', 'its') | |
(177, 'a', '``') | |
(178, "''", '--') | |
(180, 'for', 'his') | |
(180, 'that', 'was') | |
(180, 'the', 'american') | |
(180, 'rather', 'than') | |
(181, 'was', 'no') | |
(181, 'was', 'in') | |
(181, 'not', 'to') | |
(183, 'all', 'of') | |
(184, 'the', 'man') | |
(184, 'at', 'all') | |
(184, 'be', 'the') | |
(184, 'to', 'say') | |
(186, 'this', 'was') | |
(186, 'across', 'the') | |
(187, 'could', 'not') | |
(189, 'or', 'the') | |
(189, 'the', 'whole') | |
(189, 'fact', 'that') | |
(191, 'able', 'to') | |
(193, 'end', 'of') | |
(193, 'before', 'the') | |
(194, 'the', 'fact') | |
(194, 'who', 'had') | |
(195, 'to', 'go') | |
(195, 'and', 'other') | |
(199, 'not', 'only') | |
(199, 'such', 'as') | |
(199, 'was', 'to') | |
(199, 'him', 'to') | |
(201, 'are', 'not') | |
(204, 'of', 'it') | |
(204, 'back', 'to') | |
(205, 'the', 'end') | |
(205, 'that', 'a') | |
(205, 'if', 'he') | |
(206, 'i', 'am') | |
(206, 'those', 'who') | |
(206, 'not', 'be') | |
(207, 'to', 'him') | |
(209, 'to', 'take') | |
(209, 'the', 'next') | |
(209, 'do', 'not') | |
(210, 'as', 'an') | |
(213, 'we', 'are') | |
(213, 'use', 'of') | |
(213, 'under', 'the') | |
(213, 'after', 'the') | |
(213, 'which', 'is') | |
(214, 'up', 'to') | |
(215, 'the', 'house') | |
(216, 'into', 'a') | |
(218, 'because', 'of') | |
(223, '``', 'you') | |
(223, 'the', 'last') | |
(225, 'he', 'has') | |
(226, 'does', 'not') | |
(226, 'if', 'you') | |
(228, 'up', 'the') | |
(229, 'there', 'were') | |
(229, 'of', 'its') | |
(230, 'kind', 'of') | |
(231, 'with', 'his') | |
(232, 'and', 'it') | |
(232, 'in', 'an') | |
(232, 'most', 'of') | |
(233, 'the', 'old') | |
(233, 'between', 'the') | |
(235, 'from', 'a') | |
(235, 'a', 'good') | |
(235, 'is', 'that') | |
(237, 'so', 'that') | |
(238, 'going', 'to') | |
(239, 'but', 'it') | |
(239, 'the', 'way') | |
(241, 'well', 'as') | |
(245, 'which', 'the') | |
(246, 'such', 'a') | |
(246, 'i', 'had') | |
(247, 'like', 'a') | |
(248, 'had', 'a') | |
(251, 'the', 'time') | |
(251, 'of', 'our') | |
(251, 'of', 'her') | |
(251, 'against', 'the') | |
(251, 'they', 'had') | |
(252, 'could', 'be') | |
(254, 'of', 'all') | |
(256, '--', 'the') | |
(256, 'than', 'the') | |
(257, 'in', 'their') | |
(258, 'the', 'only') | |
(258, 'have', 'a') | |
(259, 'i', 'have') | |
(260, 'to', 'see') | |
(262, 'is', 'to') | |
(264, 'it', 'would') | |
(264, 'we', 'have') | |
(265, 'on', 'his') | |
(266, 'at', 'a') | |
(267, 'that', 'they') | |
(268, 'the', 'two') | |
(268, 'but', 'he') | |
(270, 'the', 'state') | |
(274, 'have', 'to') | |
(276, 'a', 'man') | |
(276, 'as', 'he') | |
(277, 'of', 'an') | |
(277, 'a', 'new') | |
(279, 'he', 'would') | |
(280, 'he', 'could') | |
(281, 'his', 'own') | |
(284, 'if', 'the') | |
(284, 'that', 'is') | |
(284, 'and', 'that') | |
(289, '--', 'and') | |
(290, 'to', 'get') | |
(292, 'of', 'them') | |
(293, 'and', 'then') | |
(295, 'new', 'york') | |
(295, 'and', 'to') | |
(296, 'and', 'i') | |
(298, 'she', 'had') | |
(300, 'some', 'of') | |
(300, 'part', 'of') | |
(301, 'a', 'little') | |
(301, 'at', 'least') | |
(303, 'had', 'to') | |
(306, 'of', 'these') | |
(307, 'as', 'well') | |
(309, 'and', 'his') | |
(311, 'he', 'is') | |
(316, 'would', 'have') | |
(319, 'be', 'a') | |
(323, 'of', 'course') | |
(324, 'to', 'his') | |
(330, 'i', 'was') | |
(330, 'about', 'the') | |
(331, 'that', 'it') | |
(334, 'there', 'are') | |
(337, 'and', 'in') | |
(338, 'to', 'have') | |
(339, 'during', 'the') | |
(342, 'of', 'their') | |
(342, 'should', 'be') | |
(350, 'they', 'are') | |
(353, 'to', 'make') | |
(354, 'when', 'he') | |
(361, 'the', 'world') | |
(366, 'over', 'the') | |
(366, 'was', 'not') | |
(368, 'number', 'of') | |
(369, 'through', 'the') | |
(372, 'must', 'be') | |
(374, 'a', 'few') | |
(378, 'in', 'which') | |
(388, 'but', 'the') | |
(389, 'to', 'do') | |
(392, 'united', 'states') | |
(392, 'the', 'united') | |
(397, 'she', 'was') | |
(397, 'the', 'new') | |
(405, 'the', '``') | |
(412, 'more', 'than') | |
(413, '``', 'the') | |
(416, 'the', 'other') | |
(416, 'and', 'he') | |
(417, 'by', 'a') | |
(417, 'the', 'most') | |
(418, 'when', 'the') | |
(422, 'he', 'said') | |
(430, 'all', 'the') | |
(433, 'they', 'were') | |
(433, 'this', 'is') | |
(440, 'did', 'not') | |
(460, 'may', 'be') | |
(482, 'on', 'a') | |
(507, 'can', 'be') | |
(524, 'is', 'not') | |
(529, 'was', 'the') | |
(540, 'in', 'this') | |
(545, 'out', 'of') | |
(553, 'of', 'this') | |
(553, 'there', 'is') | |
(567, 'has', 'been') | |
(568, 'that', 'he') | |
(573, 'there', 'was') | |
(593, 'will', 'be') | |
(596, '``', 'i') | |
(607, 'would', 'be') | |
(620, 'and', 'a') | |
(621, 'in', 'his') | |
(627, 'the', 'same') | |
(650, 'have', 'been') | |
(659, 'to', 'a') | |
(662, 'the', 'first') | |
(675, 'into', 'the') | |
(702, 'one', 'of') | |
(749, 'as', 'the') | |
(759, 'had', 'been') | |
(777, 'was', 'a') | |
(791, 'for', 'a') | |
(795, 'is', 'the') | |
(810, 'of', 'his') | |
(867, 'is', 'a') | |
(903, 'he', 'had') | |
(914, 'with', 'a') | |
(980, 'as', 'a') | |
(1088, 'he', 'was') | |
(1296, 'it', 'was') | |
(1347, 'by', 'the') | |
(1379, 'that', 'the') | |
(1411, 'from', 'the') | |
(1414, 'in', 'a') | |
(1470, 'it', 'is') | |
(1472, 'of', 'a') | |
(1533, 'with', 'the') | |
(1655, 'at', 'the') | |
(1718, 'to', 'be') | |
(1852, 'for', 'the') | |
(2246, 'and', 'the') | |
(2466, 'on', 'the') | |
(3484, 'to', 'the') | |
(6025, 'in', 'the') | |
(9717, 'of', 'the') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment