Python Tutorial: Tokens and N-grams

(C) 2017-2019 by Damir Cavar <dcavar@iu.edu>

Download: This and various other Jupyter notebooks are available from my GitHub repo.

Version: 1.1, September 2019

Introduction

This is a tutorial about frequency profiles using Python 3.x and the NLTK.

This tutorial was developed as part of the course material for the course Advanced Natural Language Processing in the Computational Linguistics Program of the Department of Linguistics at Indiana University.

The Brown corpus in distributed as part of the NLTK Data. To be able to use the NLTK Data and the Brown corpus on your local machine, you need to install the data as described on the Installing NLTK Data page. If you want to use iPython on your local machine, I recommend installing a Python 3.x distribution, for example the most recent Anaconda release, and reading the instructions how to run iPython on Anaconda.

Using the Brown Corpus

The documentation of the Brown corpus design and properties can be found on this page.

Using the following line of code we are importing the Brown corpus into the running Python instance. This will make the tokens and PoS-tags from the Brown corpus available for further processing.

In [1]:
from nltk.corpus import brown
In [2]:
print(brown.tagged_words())
[('The', 'AT'), ('Fulton', 'NP-TL'), ...]
In [3]:
tokens, tags = zip(*brown.tagged_words())

You can inspect the resulting list of tokens by printing it out (a selection of the first 20):

In [5]:
tokens[:20]
Out[5]:
('The',
 'Fulton',
 'County',
 'Grand',
 'Jury',
 'said',
 'Friday',
 'an',
 'investigation',
 'of',
 "Atlanta's",
 'recent',
 'primary',
 'election',
 'produced',
 '``',
 'no',
 'evidence',
 "''",
 'that')

You can print the tags as well:

The sequence of tokens and tags is aligned, that is, the first tag in the tags list belongs to the first token in the tokens list. You can print the token-tag pair out in the following way:

In [6]:
print("Token:", tokens[0], "Tag:", tags[0])
Token: The Tag: AT

To create a frequency profile of tags for example, we can make use of the Counter container datatype from the collections module. We import the Counter datatype with the following code:

In [7]:
from collections import Counter, defaultdict

We can create a frequency profile of the tags from the Brown corpus and store it in the variable tagCounts using the following code:

In [8]:
tagCounter = Counter(tags)
print(tagCounter)
Counter({'NN': 152470, 'IN': 120557, 'AT': 97959, 'JJ': 64028, '.': 60638, ',': 58156, 'NNS': 55110, 'CC': 37718, 'RB': 36464, 'NP': 34476, 'VB': 33693, 'VBN': 29186, 'VBD': 26167, 'CS': 22143, 'PPS': 18253, 'VBG': 17893, 'PP$': 16872, 'TO': 14918, 'PPSS': 13802, 'CD': 13510, 'NN-TL': 13372, 'MD': 12431, 'PPO': 11181, 'BEZ': 10066, 'BEDZ': 9806, 'AP': 9522, 'DT': 8957, '``': 8837, "''": 8789, 'QL': 8735, 'VBZ': 7373, 'BE': 6360, 'RP': 6009, 'WDT': 5539, 'HVD': 4895, '*': 4603, 'WRB': 4509, 'BER': 4379, 'JJ-TL': 4107, 'NP-TL': 4019, 'HV': 3928, 'WPS': 3924, '--': 3405, 'BED': 3282, 'ABN': 3010, 'DTI': 2921, 'PN': 2573, 'NP$': 2565, 'BEN': 2470, 'DTS': 2435, 'HVZ': 2433, ')': 2273, '(': 2264, 'NNS-TL': 2226, 'EX': 2164, 'JJR': 1958, 'OD': 1935, 'NR': 1566, ':': 1558, 'NN$': 1480, 'IN-TL': 1477, 'NN-HL': 1471, 'DO': 1353, 'NPS': 1275, 'PPL': 1233, 'RBR': 1182, 'DOD': 1047, 'JJT': 1005, 'CD-TL': 898, 'MD*': 866, 'AT-TL': 746, 'ABX': 730, 'BEG': 686, 'NNS-HL': 609, 'UH': 608, '.-HL': 598, 'VBN-TL': 591, 'NP-HL': 517, 'IN-HL': 508, 'DO*': 485, 'PPSS+MD': 484, 'DOZ': 467, 'CD-HL': 444, 'PPS+BEZ': 430, 'DOD*': 402, 'JJ-HL': 396, 'NN$-TL': 361, 'JJS': 359, 'ABL': 357, 'PPLS': 345, 'AT-HL': 332, "'": 317, 'NR-TL': 309, 'CC-TL': 307, 'FW-NN': 288, 'HVG': 281, 'WPO': 280, 'PPSS+BER': 278, 'PPSS+BEM': 270, 'QLP': 261, 'NNS$': 257, 'WP$': 252, 'PPSS+HV': 241, 'HVN': 237, 'BEM': 226, 'OD-TL': 201, ')-HL': 184, 'DT+BEZ': 179, 'WQL': 176, ',-HL': 171, 'FW-NN-TL': 170, 'PP$$': 164, '(-HL': 162, 'NIL': 157, 'BEDZ*': 154, 'VBG-HL': 146, 'PPS+MD': 144, 'NP$-TL': 141, ':-HL': 138, 'VBN-HL': 137, 'VBG-TL': 133, 'NN-TL-HL': 129, 'VB-HL': 125, 'CC-HL': 119, 'NN-NC': 118, 'BEZ*': 117, 'EX+BEZ': 105, 'DTX': 104, 'RBT': 101, 'HVD*': 99, 'VB-TL': 96, 'DOZ*': 89, 'PN$': 89, 'FW-IN': 84, 'PPSS+HVD': 83, 'FW-NNS': 83, 'PPS+HVD': 83, 'NNS$-TL': 74, 'FW-JJ-TL': 74, 'VBZ-HL': 72, 'VB+PPO': 71, 'NPS-TL': 67, 'NR$': 66, 'TO-HL': 55, 'FW-JJ': 53, 'RB-HL': 49, 'BER*': 47, 'WDT+BEZ': 47, 'FW-AT-TL': 44, 'PPS+HVZ': 43, 'HV*': 42, 'JJ-NC': 41, 'IN-NC': 41, 'VB-NC': 41, 'AP-HL': 40, 'RB-TL': 40, 'FW-IN-TL': 40, 'NPS$': 38, 'WRB-HL': 36, 'FW-NNS-TL': 36, 'PP$-TL': 35, 'AT-NC': 35, 'NN+BEZ': 34, 'FW-RB': 32, 'PPSS-NC': 31, 'BEZ-HL': 30, 'WDT-HL': 30, 'MD-HL': 27, 'FW-CC': 27, 'FW-VB': 26, 'JJ-TL-HL': 26, 'RB-NC': 26, '---HL': 26, 'NNS-NC': 26, 'CS-HL': 25, 'NP+BEZ': 25, 'PPSS-HL': 25, 'FW-AT': 24, 'BED*': 22, 'HVZ*': 22, ':-TL': 22, 'WPS+BEZ': 21, 'JJS-TL': 20, 'NN$-HL': 20, 'PPS-HL': 19, 'AP-TL': 18, 'FW-IN+AT-TL': 18, 'JJR-HL': 17, 'VBZ-TL': 17, 'CD-TL-HL': 17, 'VBG+TO': 17, 'FW-WDT': 16, 'DOZ-HL': 16, 'NRS': 16, '.-NC': 16, 'VBG-NC': 16, 'UH-TL': 15, 'JJR-TL': 15, 'NP-NC': 15, 'RP-HL': 14, 'NNS-TL-HL': 14, 'FW-CC-TL': 14, 'BE-HL': 13, 'PPO-TL': 13, 'FW-AT+NN-TL': 13, 'TO-NC': 13, 'PP$-NC': 13, 'WPS-TL': 12, 'FW-VBN': 12, 'BER-HL': 11, 'RB+BEZ': 11, 'NR$-TL': 11, 'WRB+BEZ': 11, 'HV-NC': 11, 'VBD-NC': 11, 'NR-HL': 10, 'TO-TL': 10, 'PP$-HL': 10, 'AP$': 9, 'RB$': 9, 'RN': 9, 'FW-PPL': 9, 'PPSS-TL': 9, 'DT-TL': 9, 'WRB-TL': 9, 'FW-NN$': 9, 'PPS-NC': 9, 'VBN-NC': 9, 'PPO-NC': 9, 'BEM*': 9, 'VBD-HL': 8, 'NPS-HL': 8, 'OD-HL': 8, 'MD-TL': 8, '*-HL': 8, 'NP$-HL': 8, 'BEZ-TL': 8, 'WPS+MD': 8, 'FW-UH': 8, 'BEDZ-NC': 8, 'NP-TL-HL': 7, 'MD+HV': 7, 'FW-CD': 7, 'ABN-TL': 7, 'FW-NP': 7, 'FW-VBG': 7, 'DT-NC': 7, 'WRB-NC': 7, 'WDT-NC': 7, 'VBZ-NC': 7, 'PN+BEZ': 7, 'VBN-TL-HL': 6, 'DT-HL': 6, 'JJT-HL': 6, 'VBD-TL': 6, 'DTI-HL': 6, 'BER-TL': 6, 'QL-TL': 6, 'FW-*': 6, 'IN-TL-HL': 6, 'PPS-TL': 6, 'FW-NN-NC': 6, 'FW-PPSS': 6, 'WPS+HVD': 6, 'NP+HVZ': 6, 'WRB+DOD': 6, 'DT$': 5, 'FW-IN+NN': 5, 'CD$': 5, 'JJR-NC': 5, 'PPO-HL': 5, 'DO-TL': 5, 'WQL-TL': 5, 'PN-TL': 5, 'NR-TL-HL': 5, 'AT-TL-HL': 5, 'NN+HVZ': 5, 'VBN+TO': 5, 'BER-NC': 5, 'UH-NC': 5, ',-NC': 5, 'CD-NC': 5, 'RP-NC': 5, 'CC-NC': 5, 'CS-NC': 5, 'BEZ-NC': 5, 'ABN-HL': 4, 'DO-HL': 4, 'NNS$-HL': 4, 'WPO-TL': 4, 'FW-VBZ': 4, 'FW-PPO': 4, 'QL-HL': 4, 'FW-OD-TL': 4, 'HVZ-TL': 4, 'RP-TL': 4, ',-TL': 4, 'FW-NN$-TL': 4, 'FW-BEZ': 4, 'FW-NP-TL': 4, 'JJT-TL': 4, 'EX+MD': 4, 'FW-IN+AT': 4, 'NR-NC': 4, 'VB+TO': 4, 'RP+IN': 4, 'PN+HVZ': 3, 'FW-VB-NC': 3, 'NPS$-TL': 3, 'WRB+BEZ-TL': 3, 'FW-IN+AT-T': 3, 'FW-RB-TL': 3, 'HV-HL': 3, 'VB+IN': 3, 'DO*-HL': 3, 'FW-PP$': 3, 'FW-BER': 3, 'FW-NR-TL': 3, 'FW-CS': 3, 'HV-TL': 3, 'FW-PPO+IN': 3, 'VBN-TL-NC': 3, 'NNS-TL-NC': 3, 'NN-TL-NC': 3, 'BED-NC': 3, 'PPS+BEZ-NC': 3, 'NP+BEZ-NC': 3, 'WPS-NC': 3, 'EX+HVD': 3, 'PN+MD': 3, 'DT+MD': 3, 'HV+TO': 3, 'RB+CS': 3, 'FW-DT': 2, 'PN-HL': 2, 'FW-IN+NN-TL': 2, 'FW-AT+NP-TL': 2, 'BEN-TL': 2, 'CS-TL': 2, 'CC-TL-HL': 2, 'FW-JJ-NC': 2, 'FW-VBD': 2, 'FW-*-TL': 2, 'DTS-HL': 2, 'PN-NC': 2, 'WDT+HVZ': 2, 'FW-IN+NP-TL': 2, 'NN+MD': 2, 'FW-NNS-NC': 2, 'VB+RP': 2, 'FW-PP$-TL': 2, 'DTI-TL': 2, '.-TL': 2, 'FW-NPS': 2, 'FW-CD-TL': 2, 'FW-PPL+VBZ': 2, 'DOZ-TL': 2, 'WDT+BEZ-NC': 2, 'HVZ-NC': 2, 'QL-NC': 2, 'WPS+BEZ-NC': 2, 'PPSS+MD-NC': 2, 'AP-NC': 2, 'DO-NC': 2, 'MD-NC': 2, 'NNS$-NC': 2, 'PPL-NC': 2, 'BEM-NC': 2, 'NPS-NC': 2, 'JJ+JJ-NC': 2, 'WPS-HL': 2, 'FW-DT+BEZ': 2, 'WPS+HVZ': 2, 'MD+TO': 2, 'NN+BEZ-TL': 2, 'EX+HVZ': 2, 'PPSS+VB': 2, 'NNS+MD': 2, 'NP+MD': 2, 'TO+VB': 2, 'VB+AT': 2, 'DTS+BEZ': 2, 'MD*-HL': 1, 'BEDZ-HL': 1, 'PPS+BEZ-HL': 1, 'HVD-HL': 1, 'FW-AT-HL': 1, 'FW-PP$-NC': 1, 'NPS$-HL': 1, 'UH-HL': 1, 'WDT+BEZ-HL': 1, 'PPL-HL': 1, 'FW-VBD-TL': 1, 'PPSS+BER-TL': 1, 'BE-TL': 1, 'PPSS+HV-TL': 1, 'DOD*-TL': 1, 'WDT+BEZ-TL': 1, 'FW-JJR': 1, 'WDT+BER+PP': 1, 'FW-UH-NC': 1, 'RB+BEZ-HL': 1, 'JJS-HL': 1, 'PPL-TL': 1, 'JJR+CS': 1, 'NRS-TL': 1, 'FW-HV': 1, 'DOZ*-TL': 1, 'FW-NPS-TL': 1, '*-TL': 1, 'FW-PN': 1, 'FW-BE': 1, 'FW-PPS': 1, 'FW-NR': 1, 'FW-TO+VB': 1, 'JJ$-TL': 1, 'FW-VB-TL': 1, 'FW-RB+CC': 1, 'FW-WPO': 1, 'FW-NN-TL-NC': 1, 'FW-WPS': 1, 'FW-DTS': 1, 'NNS$-TL-HL': 1, 'FW-VBG-TL': 1, 'EX-HL': 1, 'PPSS+BER-N': 1, 'NP+HVZ-NC': 1, 'DT+BEZ-NC': 1, 'RB+BEZ-NC': 1, '*-NC': 1, 'EX-NC': 1, 'BER*-NC': 1, 'PPSS+BER-NC': 1, 'RBR-NC': 1, 'OD-NC': 1, 'ABN-NC': 1, 'JJT-NC': 1, 'DOD-NC': 1, 'WPO-NC': 1, 'NN+NN-NC': 1, 'AP+AP-NC': 1, 'VB+JJ-NC': 1, 'VB+VB-NC': 1, 'FW-QL': 1, 'JJ-TL-NC': 1, 'FW-JJT': 1, 'WPS+BEZ-TL': 1, 'HVG-HL': 1, 'MD+PPSS': 1, 'NR+MD': 1, 'NN+IN': 1, 'NN+HVD-TL': 1, 'WDT+DOD': 1, 'WRB+DO': 1, 'WRB+IN': 1, 'WRB+MD': 1, 'NN+HVZ-TL': 1, 'WRB+BER': 1, 'PPSS+BEZ': 1, 'PPSS+BEZ*': 1, 'RBR+CS': 1, 'IN+PPO': 1, 'IN+IN': 1, 'DO+PPSS': 1, 'WRB+DOZ': 1, 'WDT+DO+PPS': 1, 'WRB+DOD*': 1, 'WDT+BER': 1, 'FW-OD-NC': 1, 'FW-PPSS+HV': 1, 'PN+HVD': 1, 'FW-UH-TL': 1})
In [9]:
tokenCounter = Counter(tokens)
print(tokenCounter)
Counter({'the': 62713, ',': 58334, '.': 49346, 'of': 36080, 'and': 27915, 'to': 25732, 'a': 21881, 'in': 19536, 'that': 10237, 'is': 10011, 'was': 9777, 'for': 8841, '``': 8837, "''": 8789, 'The': 7258, 'with': 7012, 'it': 6723, 'as': 6706, 'he': 6566, 'his': 6466, 'on': 6395, 'be': 6344, ';': 5566, 'I': 5161, 'by': 5103, 'had': 5102, 'at': 4963, '?': 4693, 'not': 4423, 'are': 4333, 'from': 4207, 'or': 4118, 'this': 3966, 'have': 3892, 'an': 3542, 'which': 3540, '--': 3432, 'were': 3279, 'but': 3007, 'He': 2982, 'her': 2885, 'one': 2873, 'they': 2773, 'you': 2766, 'all': 2726, 'would': 2677, 'him': 2576, 'their': 2562, 'been': 2470, ')': 2466, '(': 2435, 'has': 2425, 'will': 2204, 'who': 2192, 'more': 2130, 'out': 2058, 'It': 2037, 'we': 1973, 'she': 1949, 'said': 1943, 'there': 1877, 'up': 1874, 'In': 1801, ':': 1795, 'than': 1788, 'them': 1786, 'into': 1782, 'no': 1781, 'its': 1780, 'about': 1766, 'so': 1755, 'when': 1746, 'can': 1738, 'only': 1646, 'other': 1627, '!': 1596, 'could': 1580, 'time': 1556, 'if': 1466, 'what': 1435, 'some': 1407, 'But': 1374, 'A': 1314, 'two': 1311, 'any': 1301, 'may': 1292, 'do': 1259, 'first': 1242, 'like': 1237, 'these': 1228, 'over': 1206, 'such': 1192, 'This': 1179, 'me': 1165, 'my': 1161, 'man': 1151, 'our': 1142, 'made': 1122, 'new': 1060, 'most': 1055, 'now': 1045, 'then': 1025, 'must': 1003, 'also': 999, 'Af': 995, 'did': 994, 'even': 985, 'back': 950, 'before': 948, 'years': 943, 'through': 941, 'And': 938, 'many': 925, 'She': 911, 'much': 900, 'way': 892, 'down': 888, 'your': 868, 'should': 865, 'There': 851, 'where': 850, 'They': 847, 'Mr.': 844, 'after': 823, 'because': 811, 'people': 811, 'too': 801, 'little': 788, 'those': 782, 'very': 772, 'own': 772, 'make': 768, 'good': 767, 'each': 759, 'well': 757, 'work': 755, 'just': 751, 'men': 736, 'If': 732, 'still': 731, 'see': 728, 'get': 719, 'between': 716, 'long': 713, 'being': 691, 'world': 684, 'We': 679, 'know': 679, 'same': 679, 'life': 676, 'might': 670, 'us': 670, 'never': 664, 'year': 649, 'under': 648, 'For': 648, 'both': 643, 'last': 636, 'off': 634, 'day': 623, 'how': 623, 'came': 621, 'against': 618, 'used': 610, 'great': 608, 'here': 607, 'go': 605, 'himself': 599, 'right': 597, 'come': 589, 'When': 585, 'few': 583, 'take': 577, 'New': 575, 'another': 573, 'American': 569, 'old': 568, 'use': 566, 'while': 560, 'around': 556, 'three': 553, 'As': 547, 'state': 544, 'without': 541, 'found': 536, 'Mrs.': 534, 'again': 534, 'His': 530, 'place': 528, '1': 527, 'home': 526, 'You': 520, 'small': 518, 'thought': 515, 'went': 506, 'say': 495, 'upon': 475, 'What': 473, 'got': 471, 'left': 471, 'number': 467, 'part': 465, 'course': 464, 'United': 463, 'high': 461, 'since': 455, 'during': 453, 'away': 453, 'always': 449, 'fact': 447, '2': 446, 'does': 445, 'States': 445, 'every': 434, 'until': 433, 'water': 431, 'think': 427, 'less': 426, 'enough': 426, 'To': 426, 'took': 425, 'put': 424, 'head': 421, 'something': 420, 'One': 419, 'hand': 418, 'school': 417, 'once': 414, 'told': 411, 'far': 409, 'At': 409, 'set': 408, 'almost': 406, 'better': 402, 'public': 401, 'end': 400, 'house': 400, 'night': 398, 'called': 396, 'find': 395, 'knew': 395, 'system': 393, "didn't": 393, 'going': 392, 'eyes': 391, "don't": 387, 'asked': 382, 'however': 382, 'group': 381, 'toward': 380, 'give': 379, 'days': 377, 'point': 375, 'though': 375, 'possible': 373, 'program': 373, 'given': 372, 'present': 370, 'face': 370, 'per': 370, 'side': 370, 'room': 366, 'looked': 366, 'important': 365, 'look': 364, 'order': 363, 'business': 363, 'next': 362, 'things': 361, 'John': 360, 'become': 359, 'young': 359, 'nothing': 358, 'No': 358, 'later': 357, 'felt': 357, 'That': 357, 'social': 356, 'case': 355, 'Then': 355, 'large': 354, 'rather': 354, 'need': 352, 'form': 351, 'saw': 350, 'often': 349, 'On': 346, 'These': 345, 'least': 343, 'children': 342, 'along': 342, 'best': 341, 'second': 341, 'several': 338, 'ever': 333, 'seemed': 333, 'early': 333, 'Of': 332, 'thing': 331, 'four': 326, 'power': 326, 'want': 326, 'mind': 324, 'interest': 323, 'within': 321, 'turned': 320, 'light': 320, 'area': 319, "'": 317, 'done': 316, 'big': 316, 'among': 314, 'problem': 312, 'members': 312, 'country': 312, 'began': 312, 'door': 312, 'general': 311, 'family': 311, 'sense': 311, 'kind': 310, 'development': 310, 'matter': 306, 'whole': 306, 'different': 306, 'war': 305, 'open': 305, 'itself': 304, 'certain': 303, 'help': 303, 'York': 302, 'God': 299, 'others': 294, 'human': 294, 'let': 293, 'name': 292, 'means': 291, 'action': 287, '3': 287, 'example': 287, 'gave': 285, 'hands': 285, 'yet': 283, 'feet': 283, 'line': 282, 'taken': 279, 'law': 277, 'past': 277, 'With': 277, 'seen': 276, 'All': 275, 'above': 275, 'across': 274, 'local': 273, 'either': 273, 'government': 272, 'experience': 272, 'quite': 271, 'show': 271, 'themselves': 270, 'car': 270, "I'm": 269, 'Now': 269, 'words': 269, 'body': 269, 'history': 268, 'really': 267, 'anything': 265, 'death': 264, 'times': 264, 'State': 263, 'period': 263, 'half': 263, 'word': 261, 'together': 260, 'city': 259, 'money': 259, 'held': 259, 'whether': 258, 'cannot': 258, 'information': 258, 'having': 258, 'week': 257, 'President': 257, 'already': 257, 'political': 254, 'shall': 254, 'white': 254, 'brought': 253, 'making': 252, 'seems': 252, 'real': 251, 'question': 250, 'whose': 250, 'keep': 247, 'After': 246, 'today': 246, 'ago': 246, 'moment': 246, 'became': 245, 'tell': 245, 'service': 245, 'known': 245, 'behind': 244, 'result': 243, 'field': 243, 'free': 243, 'five': 242, 'why': 242, 'available': 240, 'heard': 240, 'problems': 240, 'study': 239, 'reason': 239, 'sure': 239, 'position': 238, 'change': 237, 'probably': 236, 'job': 236, 'areas': 235, 'boy': 235, 'special': 233, 'individual': 233, 'Miss': 232, 'close': 230, 'So': 230, 'seem': 229, 'major': 227, 'wife': 227, 'wanted': 226, 'turn': 226, 'am': 225, 'full': 225, 'cost': 223, 'church': 223, 'policy': 221, 'necessary': 221, 'voice': 220, 'clear': 219, 'economic': 219, 'air': 218, 'company': 218, 'true': 217, 'front': 217, 'woman': 217, 'feel': 216, 'able': 216, 'future': 215, 'age': 215, 'provide': 214, 'office': 214, 'community': 214, 'perhaps': 214, 'love': 214, 'effect': 213, 'stood': 212, 'national': 212, 'level': 212, 'Some': 211, 'How': 211, 'girl': 211, 'child': 210, 'control': 209, 'rate': 209, 'total': 209, 'common': 208, 'morning': 208, 'run': 206, 'Washington': 206, '4': 206, 'short': 206, 'following': 205, 'million': 204, 'students': 204, 'By': 203, 'evidence': 201, 'sound': 201, 'town': 201, 'force': 200, 'value': 200, 'top': 199, 'believe': 199, 'hard': 199, 'mean': 199, 'land': 199, 'although': 198, 'An': 198, 'leave': 198, 'surface': 198, 'type': 197, 'play': 197, 'plan': 196, 'six': 196, 'military': 196, 'situation': 196, 'party': 195, 'English': 195, 'process': 195, 'various': 195, 'further': 194, 'strong': 194, 'says': 194, 'increase': 194, 'lines': 194, 'America': 194, 'started': 194, 'music': 194, 'idea': 193, 'minutes': 193, 'longer': 193, 'personal': 192, 'Dr.': 192, 'society': 192, 'tax': 191, 'House': 191, 'alone': 191, 'mother': 191, 'near': 190, 'schools': 190, 'outside': 190, 'gone': 190, 'usually': 189, 'months': 188, 'West': 187, 'needed': 187, 'General': 187, 'center': 187, 'Not': 187, 'expected': 186, 'kept': 186, 'nature': 186, 'private': 186, 'living': 185, 'Even': 185, 'century': 185, 'values': 185, 'pressure': 184, 'ground': 184, 'basis': 184, 'view': 183, 'art': 183, 'women': 182, 'greater': 181, 'required': 181, 'South': 181, 'call': 181, 'wrote': 181, "I'll": 181, 'moved': 181, 'cut': 180, 'modern': 180, 'conditions': 179, 'complete': 179, 'road': 178, 'return': 178, 'particular': 178, 'support': 177, 'attention': 177, 'soon': 176, 'else': 176, 'book': 176, 'education': 175, 'live': 175, 'late': 174, 'material': 174, "couldn't": 173, 'lost': 173, 'hours': 173, 'stage': 173, 'Since': 173, 'costs': 172, 'amount': 172, 'followed': 172, '1960': 172, 'single': 172, 'added': 171, 'third': 171, 'except': 171, 'hundred': 171, 'space': 171, 'However': 170, 'fire': 170, 'board': 170, 'including': 170, 'coming': 170, 'person': 170, 'heart': 170, 'tried': 170, 'dark': 170, 'pay': 169, 'developed': 169, 'reached': 169, 'miles': 169, 'move': 168, 'feeling': 168, 'recent': 167, 'act': 167, 'read': 167, 'makes': 167, 'dead': 166, 'shown': 166, 'figure': 166, 'simply': 166, 'Thus': 166, 'Department': 164, 'St.': 164, 'equipment': 164, 'hope': 164, 'class': 164, 'received': 163, 'taking': 163, 'college': 163, '&': 163, 'doing': 163, 'basic': 163, 'National': 163, 'From': 163, 'hold': 162, 'inside': 162, 'everything': 162, 'looking': 162, 'trying': 162, 'Why': 162, 'sometimes': 162, 'U.S.': 161, 'industry': 161, 'picture': 161, 'sort': 161, 'cold': 161, 'data': 161, 'care': 160, 'difficult': 160, 'spirit': 160, 'terms': 160, "It's": 160, 'low': 160, 'father': 160, 'rest': 160, 'beginning': 159, 'War': 159, 'walked': 159, 'nor': 159, 'getting': 158, 'subject': 158, 'states': 158, 'religious': 158, 'passed': 157, 'floor': 157, 'My': 157, 'beyond': 157, 'especially': 156, 'bring': 156, 'therefore': 156, 'black': 156, 'cent': 155, 'simple': 155, 'range': 154, 'England': 154, 'property': 153, 'report': 153, 'paper': 153, 'written': 153, 'needs': 152, '10': 152, 'Secretary': 152, 'natural': 152, 'meeting': 151, 'likely': 151, 'hear': 151, 'final': 151, 'higher': 151, "can't": 151, 'growth': 151, 'talk': 151, 'Her': 151, 'Congress': 150, 'considered': 150, 'friends': 150, 'fine': 149, 'answer': 149, 'entire': 149, 'ten': 149, 'sat': 149, 'working': 148, 'countries': 148, 'forces': 148, 'difference': 148, 'story': 148, 'William': 147, "wasn't": 147, 'cases': 147, 'involved': 147, 'meet': 147, 'building': 147, 'table': 147, 'hair': 147, 'similar': 146, 'thus': 146, 'training': 146, 'Government': 146, 'street': 146, 'happened': 146, 'purpose': 145, 'effort': 145, 'hour': 145, 'stand': 145, 'issue': 144, 'paid': 144, 'North': 144, 'Christian': 144, 'earlier': 143, 'sent': 143, 'whom': 143, 'knowledge': 143, 'points': 143, 'Here': 143, 'market': 143, 'ready': 142, "it's": 142, 'particularly': 142, '5': 142, 'increased': 141, 'decided': 141, 'addition': 141, 'East': 141, 'statement': 141, 'results': 141, 'showed': 141, 'son': 140, 'Kennedy': 140, 'letter': 140, 'start': 140, 'thinking': 140, 'production': 140, 'Well': 140, 'weeks': 139, 'bad': 139, 'due': 139, 'wall': 139, 'girls': 139, 'moral': 139, 'French': 139, 'size': 138, 'methods': 138, 'reading': 138, 'programs': 138, 'ideas': 138, 'color': 137, 'method': 137, 'understand': 137, 'directly': 137, 'stock': 137, 'population': 136, 'fall': 136, 'Yet': 136, 'normal': 135, 'Island': 135, 'concerned': 135, 'foreign': 135, 'strength': 135, 'appeared': 135, 'lay': 135, 'City': 134, '1961': 134, 'deal': 134, 'police': 134, 'record': 134, 'trade': 134, 'Federal': 134, 'nearly': 134, 'food': 134, 'research': 133, 'questions': 133, 'merely': 133, 'member': 133, 'comes': 133, 'peace': 133, 'continued': 133, 'During': 132, 'summer': 132, 'direction': 132, 'section': 132, 'using': 132, 'influence': 132, 'ran': 132, 'boys': 132, 'below': 132, 'opened': 131, 'trouble': 131, 'finally': 131, 'husband': 131, 'physical': 131, 'literature': 131, 'led': 130, 'step': 130, 'list': 130, 'month': 130, 'suddenly': 130, 'temperature': 130, 'George': 129, 'met': 129, 'instead': 129, 'chance': 129, 'stopped': 129, 'piece': 129, 'cause': 129, 'effective': 128, 'services': 128, 'worked': 128, 'provided': 128, 'former': 128, 'actually': 128, 'Soviet': 128, 'anyone': 128, 'wrong': 128, 'try': 128, 'evening': 128, 'myself': 128, 'theory': 128, 'average': 127, 'forms': 127, 'defense': 126, 'changes': 126, 'placed': 126, 'ways': 126, 'bed': 126, 'lead': 126, 'sales': 125, 'degree': 125, 'president': 125, 'systems': 125, 'groups': 125, 'efforts': 125, "wouldn't": 125, 'Church': 125, "I've": 125, 'friend': 125, 'herself': 125, 'manner': 124, 'aid': 124, 'University': 124, 'movement': 124, 'meaning': 124, 'truth': 124, 'carried': 124, 'lot': 124, 'somewhat': 123, 'Although': 123, 'wide': 123, 'fear': 123, 'respect': 123, 'series': 122, 'direct': 122, 'plant': 122, 'performance': 122, 'works': 122, 'approach': 122, 'game': 122, 'treatment': 122, 'beautiful': 122, 'throughout': 122, 'larger': 122, 'red': 122, 'couple': 121, 'reaction': 121, 'easy': 121, 'Just': 121, 'C': 121, 'numbers': 121, 'charge': 120, 'court': 120, 'J.': 120, 'While': 120, 'described': 120, 'remember': 120, 'opportunity': 120, 'generally': 119, 'reported': 119, 'served': 119, 'freedom': 119, 'understanding': 119, 'determined': 119, 'eye': 119, 'labor': 119, 'running': 119, 'decision': 119, 'First': 119, 'indeed': 119, 'window': 119, 'medical': 118, 'Aj': 118, 'hot': 118, 'trial': 118, 'Each': 118, 'clearly': 118, 'nation': 118, 'Europe': 118, 'British': 118, 'lower': 118, 'persons': 117, 'immediately': 117, 'international': 117, 'nations': 117, 'appear': 117, 'certainly': 117, 'image': 117, 'S.': 117, 'account': 117, 'feed': 117, 'character': 117, 'learned': 116, 'ask': 116, 'fiscal': 116, 'based': 116, 'responsibility': 116, 'Act': 116, 'earth': 116, 'steps': 115, 'audience': 115, 'technical': 115, 'planning': 115, 'volume': 115, 'returned': 115, 'obtained': 115, 'arms': 115, 'activity': 115, 'forward': 115, 'length': 115, "man's": 115, 'ones': 114, '6': 114, 'types': 114, 'industrial': 114, 'gives': 114, 'blood': 114, 'lived': 113, 'test': 113, 'doubt': 113, 'serious': 113, 'function': 113, 'saying': 113, 'corner': 113, '15': 113, 'straight': 113, 'federal': 112, '30': 112, 'latter': 112, 'farm': 112, 'plane': 112, 'quality': 112, 'according': 111, 'Another': 111, 'White': 111, 'writing': 111, 'Such': 111, 'square': 111, 'include': 111, 'hit': 111, 'Brown': 111, 'pattern': 111, 'Court': 110, 'horse': 110, 'letters': 110, 'A.': 110, 'choice': 110, 'organization': 110, 'nuclear': 110, 'completely': 110, 'moving': 110, 'Our': 110, 'May': 110, 'stop': 110, 'born': 110, 'activities': 110, 'extent': 110, 'visit': 109, 'shot': 109, 'parts': 109, 'wish': 109, 'student': 109, 'cars': 109, 'lack': 109, 'specific': 109, 'Southern': 109, 'progress': 109, 'recently': 109, 'design': 109, 'pool': 109, 'Oh': 109, 'firm': 108, 'indicated': 108, 'distance': 108, 'main': 108, 'established': 108, 'effects': 108, 'slowly': 108, 'importance': 108, 'plans': 107, 'stay': 107, 'Negro': 107, 'spring': 107, 'expect': 107, 'neither': 107, 'heavy': 107, 'Their': 107, 'speak': 107, 'hall': 107, 'principle': 107, 'stress': 107, 'additional': 106, 'operation': 106, '8': 106, 'designed': 106, 'cities': 106, 'consider': 106, 'ahead': 106, 'leaders': 106, 'central': 106, 'remained': 106, 'easily': 106, 'note': 106, 'existence': 106, 'growing': 106, 'applied': 106, 'language': 106, 'attitude': 106, 'continue': 105, 'afternoon': 105, 'Many': 105, 'Rhode': 105, 'radio': 105, 'science': 105, 'season': 105, 'write': 105, 'reach': 105, 'apparently': 104, 'Most': 104, 'spent': 104, 'College': 104, 'press': 104, 'covered': 104, 'Union': 104, 'interested': 104, 'role': 104, "I'd": 104, 'waiting': 104, 'closed': 104, 'Do': 104, 'becomes': 104, 'administration': 103, 'serve': 103, 'suggested': 103, 'attack': 103, 'staff': 103, 'elements': 103, 'analysis': 103, 'mouth': 103, 'Western': 103, 'played': 103, "won't": 103, 'World': 103, 'faith': 103, 'Only': 102, 'date': 102, 'married': 102, 'limited': 102, 'prepared': 102, '1959': 102, 'original': 102, 'reasons': 102, 'factors': 102, 'scene': 102, 'sun': 102, "Don't": 102, 'B': 102, 'teeth': 102, 'James': 101, 'Sunday': 101, 'bit': 101, 'current': 101, 'Two': 101, 'raised': 101, 'rise': 101, 'demand': 101, 'professional': 101, 'dropped': 101, 'deep': 101, 'ball': 101, 'playing': 101, 'exactly': 101, 'built': 101, 'religion': 101, 'race': 100, 'figures': 100, 'Thomas': 100, 'rates': 100, 'meant': 100, 'price': 100, 'gun': 99, 'places': 99, 'daily': 99, 'events': 99, 'hardly': 99, 'filled': 99, 'June': 99, 'pretty': 99, 'talking': 99, 'sides': 99, 'facilities': 98, 'techniques': 98, 'Street': 98, 'related': 98, 'entered': 98, 'Chicago': 98, 'knows': 98, "hadn't": 98, 'machine': 98, 'Is': 98, 'March': 97, 'fight': 97, 'dollars': 97, 'blue': 97, 'concern': 97, 'caught': 97, 'income': 97, 'officer': 97, 'claim': 97, 'Christ': 97, "That's": 97, 'supply': 97, 'style': 97, 'Charles': 96, '12': 96, 'walk': 96, 'energy': 96, 'status': 96, 'popular': 96, 'usual': 96, 'institutions': 96, 'standing': 96, 'actual': 96, 'glass': 96, 'attempt': 95, 'changed': 95, 'share': 95, 'thousand': 95, 'products': 95, 'trees': 95, 'studies': 95, 'behavior': 95, 'accepted': 94, 'unit': 94, 'seven': 94, 'gas': 94, 'opinion': 94, 'included': 94, 'green': 94, '7': 94, 'film': 94, 'considerable': 94, 'shows': 94, 'materials': 94, 'primary': 93, 'relations': 93, 'older': 93, 'C.': 93, 'eight': 93, 'highly': 93, 'Americans': 93, 'station': 93, "you're": 93, 'successful': 93, 'drive': 93, 'Old': 93, 'practice': 93, 'giving': 93, 'Perhaps': 93, 'remain': 93, 'standard': 93, 'none': 92, 'determine': 92, 'books': 92, 'poor': 92, 'sitting': 92, '20': 92, 'Communist': 92, 'proper': 92, 'Jack': 92, 'middle': 92, 'obvious': 92, 'fell': 92, 'thin': 92, 'marriage': 92, 'tradition': 92, 'pieces': 92, 'sign': 91, 'worth': 91, '1958': 91, 'project': 91, 'structure': 91, 'happy': 91, 'Mike': 91, 'arm': 91, 'objective': 91, 'radiation': 91, 'Let': 91, 'produced': 90, 'follow': 90, 'funds': 90, 'source': 90, 'caused': 90, 'balance': 90, 'entirely': 90, 'purposes': 90, 'dinner': 90, 'news': 90, 'weight': 90, "that's": 90, 'university': 90, 'heat': 90, 'kitchen': 90, 'complex': 90, 'cattle': 90, 'goes': 89, 'construction': 89, 'annual': 89, 'Yes': 89, 'noted': 89, 'leadership': 89, 'regard': 89, 'discussion': 89, 'mass': 89, 'famous': 89, 'condition': 89, 'London': 89, 'Committee': 88, 'management': 88, 'announced': 88, 'names': 88, 'principal': 88, 'carry': 88, 'health': 88, 'equal': 88, 'unless': 88, 'develop': 88, 'River': 88, 'Or': 88, 'laws': 87, 'doctor': 87, 'measure': 87, 'quickly': 87, 'Both': 87, 'possibility': 87, 'enemy': 87, 'Mary': 87, 'spoke': 87, 'units': 87, 'whatever': 87, "isn't": 87, 'pain': 87, 'relationship': 87, 'oil': 87, 'obviously': 87, 'clothes': 87, 'Where': 87, 'Association': 86, 'takes': 86, 'pass': 86, 'E.': 86, 'allowed': 86, 'companies': 86, 'patient': 86, 'touch': 86, 'Lord': 86, 'break': 86, 'finished': 86, 'success': 86, 'died': 86, 'inches': 86, 'facts': 86, 'County': 85, 'assistance': 85, 'marked': 85, 'failure': 85, 'require': 85, 'cover': 85, 'build': 85, 'More': 85, 'frequently': 85, 'published': 85, 'records': 85, "doesn't": 85, 'loss': 85, 'Once': 85, 'German': 85, 'concept': 85, 'previous': 84, 'Corps': 84, 'base': 84, 'greatest': 84, 'variety': 84, 'remains': 84, 'appears': 84, 'stated': 84, 'Catholic': 84, 'stations': 84, 'relatively': 84, 'aware': 84, 'clay': 84, 'carefully': 84, 'significant': 84, 'distribution': 83, 'Henry': 83, 'Robert': 83, 'W.': 83, 'offered': 83, 'authority': 83, 'capacity': 83, 'learn': 83, 'prevent': 83, 'product': 83, 'hotel': 83, 'shape': 83, 'bridge': 83, 'collection': 83, 'remembered': 83, 'interests': 83, 'sight': 83, 'proposed': 82, 'begin': 82, 'produce': 82, 'impossible': 82, 'chief': 82, 'named': 82, 'requirements': 82, 'circumstances': 82, '25': 82, 'presented': 82, 'churches': 82, 'active': 82, 'opening': 82, 'dance': 82, 'instance': 82, 'ship': 82, 'sources': 82, 'slightly': 82, 'broad': 82, 'poetry': 82, 'operating': 81, 'agreed': 81, 'event': 81, 'team': 81, 'parents': 81, 'essential': 81, 'immediate': 81, 'fixed': 81, 'financial': 81, 'officers': 81, 'philosophy': 81, 'key': 81, 'provides': 81, 'interesting': 81, 'houses': 81, 'created': 81, 'Germany': 81, 'trip': 81, 'jazz': 81, 'watched': 81, 'scientific': 81, 'sex': 81, 'cells': 81, 'committee': 80, 'campaign': 80, 'fully': 80, 'capital': 80, 'subjects': 80, 'yesterday': 80, 'workers': 80, 'speed': 80, 'recognized': 80, 'explained': 80, 'indicate': 80, 'lives': 80, 'leaving': 80, 'agreement': 80, 'manager': 80, 'bottom': 80, 'Russian': 80, 'sea': 80, 'features': 80, 'musical': 80, 'term': 79, 'studied': 79, 'Sam': 79, 'session': 79, 'offer': 79, 'forced': 79, 'atmosphere': 79, 'add': 79, 'regular': 79, 'desire': 79, 'apartment': 79, 'spread': 79, 'mentioned': 79, 'operations': 79, 'drink': 79, 'expression': 79, 'reports': 78, 'citizens': 78, 'enter': 78, 'battle': 78, 'teacher': 78, 'bill': 78, 'maximum': 78, 'Its': 78, 'opposite': 78, 'union': 78, 'fast': 78, 'picked': 78, 'neck': 78, 'someone': 78, 'reality': 78, 'differences': 78, '-': 78, 'traditional': 77, 'reduced': 77, 'district': 77, 'crisis': 77, 'laid': 77, 'favor': 77, 'Providence': 77, 'believed': 77, '100': 77, 'looks': 77, 'secret': 77, 'bright': 77, 'train': 77, 'smaller': 77, 'edge': 77, 'river': 77, 'poems': 77, 'anode': 77, 'receive': 76, 'B.': 76, 'director': 76, 'rules': 76, 'economy': 76, 'School': 76, 'Commission': 76, 'separate': 76, 'address': 76, 'procedure': 76, 'Council': 76, 'response': 76, 'classes': 76, 'Club': 76, 'buildings': 76, 'watch': 76, 'strange': 76, 'formed': 76, 'follows': 76, 'editor': 76, 'winter': 76, 'index': 76, 'fresh': 76, 'difficulty': 76, 'beside': 76, 'literary': 76, 'bottle': 76, 'Jr.': 75, 'permit': 75, 'vote': 75, 'hearing': 75, 'Red': 75, 'justice': 75, 'Other': 75, 'hospital': 75, 'treated': 75, 'file': 75, 'Virginia': 75, 'killed': 75, 'stayed': 75, 'memory': 75, 'removed': 75, 'presence': 75, 'France': 75, "he'd": 75, 'fit': 74, 'pointed': 74, 'November': 74, 'quiet': 74, 'De': 74, 'Army': 74, 'Berlin': 74, 'security': 74, 'nine': 74, 'check': 74, 'expressed': 74, 'failed': 74, 'ability': 74, 'coffee': 74, 'watching': 74, 'Jewish': 74, 'tone': 74, 'seeing': 74, 'observed': 74, 'hell': 74, 'wait': 73, 'Louis': 73, 'selected': 73, 'frame': 73, 'gain': 73, 'advantage': 73, 'discovered': 73, 'pulled': 73, 'twenty': 73, 'everyone': 73, 'youth': 73, 'faculty': 73, 'contrast': 73, 'knife': 73, 'election': 72, 'personnel': 72, 'official': 72, 'Jones': 72, 'individuals': 72, 'positive': 72, 'resources': 72, 'planned': 72, 'assumed': 72, 'Company': 72, 'Because': 72, 'store': 72, 'Russia': 72, 'Morgan': 72, 'murder': 72, 'standards': 72, 'familiar': 72, 'T': 72, 'items': 71, 'faces': 71, 'accept': 71, 'legal': 71, 'increasing': 71, 'Richard': 71, 'responsible': 71, 'factor': 71, 'H.': 71, 'chosen': 71, 'bar': 71, 'proved': 71, 'broke': 71, 'writer': 71, 'brother': 71, 'forth': 71, 'detail': 71, 'region': 71, 'smiled': 71, 'daughter': 70, 'brief': 70, 'county': 70, 'platform': 70, 'allow': 70, 'San': 70, 'April': 70, 'round': 70, 'Also': 70, 'sharp': 70, 'dog': 70, 'corporation': 70, 'send': 70, 'carrying': 70, 'solid': 70, 'Mercer': 70, 'evil': 70, 'Rome': 70, 'wants': 70, 'Service': 70, 'rose': 70, 'realize': 69, 'Texas': 69, 'seek': 69, 'Board': 69, 'willing': 69, 'rights': 69, 'vocational': 69, 'leader': 69, 'increases': 69, 'constant': 69, 'club': 69, 'waited': 69, 'ordered': 69, 'nice': 69, 'buy': 69, 'levels': 69, 'shelter': 69, 'otherwise': 69, 'fields': 69, 'realized': 69, 'walls': 69, 'rich': 69, 'die': 69, 'boat': 69, 'suppose': 69, 'won': 68, 'fair': 68, 'Monday': 68, 'Before': 68, 'Democratic': 68, 'calls': 68, 'Those': 68, 'rule': 68, 'connection': 68, 'danger': 68, 'Khrushchev': 68, 'completed': 68, 'principles': 68, 'flow': 68, 'animal': 68, 'horses': 68, 'characteristic': 68, 'writers': 68, 'compared': 68, 'settled': 68, 'drawn': 68, 'dust': 68, 'maybe': 68, 'foot': 68, 'poet': 68, 'historical': 68, 'minimum': 68, 'sweet': 68, 'lips': 68, 'actions': 67, 'career': 67, 'asking': 67, 'ordinary': 67, 'plus': 67, 'Paris': 67, 'statements': 67, 'Moreover': 67, 'powers': 67, 'Saturday': 67, 'largely': 67, 'dogs': 67, 'camp': 67, 'ends': 67, 'excellent': 67, 'beauty': 67, 'occurred': 67, 'potential': 67, 'yourself': 67, 'legs': 67, 'Du': 67, 'answered': 67, 'appropriate': 67, 'wine': 67, 'thick': 67, 'policies': 66, 'directed': 66, 'telephone': 66, 'despite': 66, 'declared': 66, 'unity': 66, 'July': 66, 'significance': 66, 'initial': 66, 'helped': 66, 'independent': 66, 'issues': 66, 'reference': 66, 'twice': 66, 'division': 66, 'signs': 66, 'quick': 66, 'weather': 66, 'block': 66, 'flat': 66, 'substantial': 66, 'relief': 66, 'rain': 66, 'background': 66, 'practical': 66, 'phase': 66, 'dress': 66, 'intellectual': 66, 'impact': 66, 'membership': 66, 'chair': 66, 'box': 66, 'ought': 66, 'ourselves': 66, 'upper': 66, 'fingers': 66, 'dry': 66, 'emotional': 66, 'Hanover': 66, 'D.': 65, 'leading': 65, 'estimated': 65, 'Bill': 65, 'educational': 65, 'projects': 65, 'politics': 65, 'stands': 65, 'rapidly': 65, 'Peace': 65, 'search': 65, 'fashion': 65, 'beat': 65, 'gets': 65, 'plays': 65, "He's": 65, 'Phil': 65, 'California': 65, 'sit': 65, 'supposed': 65, 'Maybe': 65, 'wore': 65, 'employees': 65, 'warm': 65, 'claims': 65, 'desk': 65, 'electronic': 65, 'Though': 65, 'sections': 65, 'brown': 65, 'adequate': 65, 'imagination': 65, 'measured': 65, 'hung': 65, 'reasonable': 64, 'matters': 64, 'site': 64, 'teachers': 64, 'discussed': 64, 'application': 64, 'Laos': 64, 'clean': 64, 'object': 64, 'Day': 64, 'families': 64, 'bodies': 64, 'cell': 64, 'approximately': 64, 'capable': 64, 'wonder': 64, 'communication': 64, 'protection': 64, 'aircraft': 64, 'gray': 64, 'grew': 64, 'objects': 64, 'empty': 64, 'jury': 63, 'birth': 63, 'Tom': 63, 'aspects': 63, 'message': 63, 'explain': 63, 'fighting': 63, 'model': 63, 'happen': 63, 'jobs': 63, 'located': 63, 'drew': 63, 'belief': 63, 'Jesus': 63, 'yards': 63, 'argument': 63, 'King': 63, 'Parker': 63, 'typical': 63, 'broken': 63, 'closely': 63, "one's": 63, 'contemporary': 63, 'grow': 63, 'ancient': 63, 'China': 63, 'primarily': 63, 'fifty': 63, 'spiritual': 63, 'holding': 63, 'universe': 63, 'sleep': 63, 'reduce': 62, 'portion': 62, 'M.': 62, 'resolution': 62, 'passing': 62, 'kill': 62, 'benefit': 62, 'honor': 62, '9': 62, 'billion': 62, 'sufficient': 62, '11': 62, 'dramatic': 62, 'fellow': 62, 'struggle': 62, 'affairs': 62, 'December': 62, 'cutting': 62, 'towards': 62, 'drove': 62, 'arrived': 62, 'unusual': 62, 'powerful': 62, 'achieved': 62, 'assignment': 62, 'north': 62, 'highest': 62, 'greatly': 62, 'newspaper': 62, 'recognize': 62, 'mission': 62, 'Wilson': 62, 'pictures': 62, 'turning': 62, 'assume': 62, 'relation': 62, 'dominant': 62, 'homes': 61, 'procedures': 61, 'prices': 61, 'wind': 61, 'friendly': 61, 'department': 61, 'post': 61, 'R.': 61, 'teaching': 61, '50': 61, 'starting': 61, 'speech': 61, 'European': 61, 'conference': 61, 'showing': 61, 'Boston': 61, 'liberal': 61, 'escape': 61, 'agencies': 61, 'U.': 61, 'master': 61, 'narrow': 61, 'soft': 61, 'page': 61, 'properties': 61, 'weapons': 61, 'Greek': 61, 'Are': 61, 'Sir': 61, 'Friday': 60, 'learning': 60, 'rising': 60, 'existing': 60, 'closer': 60, 'goal': 60, 'traffic': 60, "he's": 60, "you'll": 60, 'commercial': 60, 'sets': 60, 'join': 60, 'everybody': 60, 'fourth': 60, 'save': 60, 'nose': 60, 'refused': 60, 'column': 60, 'vast': 60, 'contained': 60, 'machinery': 60, 'onto': 60, 'experiments': 60, 'maintain': 60, 'domestic': 60, 'careful': 60, 'pleasure': 60, 'Finally': 60, 'feelings': 60, 'stared': 60, 'experiment': 60, 'extreme': 60, 'Who': 60, 'dream': 60, 'location': 60, 'heavily': 59, 'Under': 59, 'ended': 59, 'F.': 59, 'tomorrow': 59, 'maintenance': 59, 'setting': 59, 'score': 59, 'Central': 59, 'novel': 59, 'task': 59, 'headed': 59, 'sensitive': 59, 'equally': 59, 'conclusion': 59, 'contract': 59, 'Bible': 59, 'ultimate': 59, 'struck': 59, 'Negroes': 59, 'south': 59, 'rifle': 59, 'shoulder': 59, 'exchange': 59, 'finds': 59, 'Sometimes': 59, 'organizations': 59, 'exist': 59, 'ideal': 59, 'eat': 59, 'concerning': 59, 'duty': 58, 'Tuesday': 58, 'courses': 58, 'Dallas': 58, 'establish': 58, 'District': 58, 'talked': 58, 'formula': 58, 'emphasis': 58, 'neighborhood': 58, 'parties': 58, 'uses': 58, 'Administration': 58, 'judgment': 58, "You're": 58, 'Nations': 58, 'India': 58, 'understood': 58, 'roof': 58, 'army': 58, 'possibly': 58, 'tests': 58, 'command': 58, 'lie': 58, 'busy': 58, 'occasion': 58, 'smile': 58, 'appeal': 58, 'Roman': 58, 'plants': 58, 'slow': 58, 'safe': 58, 'etc.': 58, 'liked': 58, 'metal': 58, 'stories': 58, 'technique': 58, 'useful': 58, 'exercise': 58, 'cool': 58, 'lose': 58, 'wondered': 58, 'circle': 58, 'sexual': 58, 'charged': 57, 'keeping': 57, 'Senate': 57, 'details': 57, 'aside': 57, 'drop': 57, 'budget': 57, 'permitted': 57, 'causes': 57, 'processes': 57, 'Every': 57, 'achievement': 57, 'apparent': 57, 'taste': 57, 'majority': 57, 'Section': 57, 'Three': 57, 'Great': 57, 'goods': 57, 'contact': 57, 'appearance': 57, 'baby': 57, 'songs': 57, 'streets': 57, 'guests': 57, 'Lewis': 57, 'continuing': 57, 'enjoyed': 57, 'chemical': 57, 'unique': 57, 'associated': 57, 'alive': 57, 'somehow': 57, 'combination': 57, 'fairly': 57, 'fat': 57, 'painting': 57, 'Congo': 57, 'requires': 57, 'pale': 57, 'Fig.': 57, 'shook': 57, 'officials': 56, 'informed': 56, 'providing': 56, 'tension': 56, 'advance': 56, 'repeated': 56, 'Among': 56, 'headquarters': 56, 'apply': 56, 'September': 56, 'wage': 56, 'surprised': 56, 'avoid': 56, 'solution': 56, 'organized': 56, '14': 56, 'song': 56, 'Palmer': 56, 'spot': 56, 'intensity': 56, 'Man': 56, 'shop': 56, 'entrance': 56, 'electric': 56, 'competition': 56, 'bought': 56, 'represented': 56, 'sky': 56, 'entitled': 56, 'truly': 56, "There's": 56, 'academic': 56, 'signal': 56, 'Chinese': 56, 'becoming': 56, 'minds': 56, 'culture': 56, 'thirty': 56, 'loved': 56, 'spite': 56, 'evident': 56, 'tree': 56, 'conducted': 55, 'item': 55, 'notice': 55, 'sought': 55, '18': 55, 'firms': 55, 'confidence': 55, 'Joe': 55, 'previously': 55, 'credit': 55, 'joined': 55, 'Martin': 55, 'replied': 55, 'demands': 55, 'extended': 55, 'scale': 55, 'critical': 55, 'Joseph': 55, 'win': 55, 'afraid': 55, 'regarded': 55, 'Britain': 55, 'artist': 55, 'begins': 55, 'soldiers': 55, 'theme': 55, 'perfect': 55, 'device': 55, 'vision': 55, 'runs': 55, 'hole': 55, 'naturally': 55, 'Like': 55, 'kid': 55, 'identity': 55, 'travel': 55, 'mine': 55, 'hat': 55, 'wished': 55, 'truck': 55, 'Your': 55, 'yes': 55, "she'd": 55, 'L.': 54, 'roads': 54, 'bank': 54, 'attend': 54, 'text': 54, 'minute': 54, 'unable': 54, 'Republican': 54, 'positions': 54, 'supported': 54, 'grounds': 54, 'vital': 54, 'victory': 54, 'symbol': 54, '16': 54, 'worry': 54, 'seat': 54, 'Smith': 54, 'divided': 54, 'rooms': 54, 'wheel': 54, 'double': 54, 'improved': 54, 'notes': 54, 'trained': 54, 'components': 54, 'motion': 54, 'rock': 54, 'pure': 54, 'sample': 54, 'Jews': 54, 'dictionary': 54, 'experienced': 53, 'granted': 53, 'largest': 53, 'Hudson': 53, 'pushed': 53, 'absence': 53, 'prove': 53, 'negative': 53, 'huge': 53, 'risk': 53, 'Nothing': 53, 'motor': 53, 'spend': 53, 'January': 53, 'description': 53, 'assigned': 53, 'draw': 53, 'percent': 53, 'No.': 53, 'p.m.': 53, 'conduct': 53, 'games': 53, 'leg': 53, "there's": 53, 'loose': 53, 'wonderful': 53, 'flowers': 53, 'generation': 53, 'properly': 53, 'suggest': 53, 'create': 53, 'chest': 53, 'beneath': 53, 'orders': 53, 'Japanese': 53, 'windows': 53, 'tall': 53, 'imagine': 53, 'inner': 53, 'bear': 53, 'sin': 53, 'experiences': 53, 'depth': 53, 'disease': 53, 'title': 52, 'establishment': 52, 'crowd': 52, 'phone': 52, 'introduced': 52, 'decisions': 52, 'payment': 52, 'element': 52, 'bitter': 52, 'vehicles': 52, 'machines': 52, 'pick': 52, 'widely': 52, 'centers': 52, 'grass': 52, 'baseball': 52, 'dozen': 52, 'Alfred': 52, 'bedroom': 52, 'August': 52, 'troops': 52, 'acting': 52, 'soil': 52, 'yellow': 52, 'Indian': 52, 'forget': 52, 'U.N.': 52, 'guess': 52, 'sounds': 52, 'wagon': 52, 'content': 52, 'flesh': 52, 'governments': 51, 'achieve': 51, 'approval': 51, 'conflict': 51, 'handle': 51, 'David': 51, 'views': 51, 'correct': 51, 'October': 51, 'Arthur': 51, 'stream': 51, 'raise': 51, 'driving': 51, 'developing': 51, 'Los': 51, 'wild': 51, 'stages': 51, 'mark': 51, 'agree': 51, 'telling': 51, 'plenty': 51, 'abroad': 51, 'snow': 51, 'advanced': 51, 'Still': 51, 'animals': 51, 'slight': 51, 'situations': 51, 'wood': 51, 'begun': 51, 'putting': 51, 'breakfast': 51, 'shoulders': 51, 'nodded': 51, 'necessarily': 51, 'angle': 51, 'wet': 51, 'Protestant': 51, 'thoughts': 51, 'characteristics': 51, 'waves': 51, 'Table': 51, 'laughed': 51, 'practices': 50, 'mention': 50, 'issued': 50, 'expense': 50, 'extremely': 50, 'elections': 50, 'Massachusetts': 50, 'housing': 50, 'detailed': 50, 'Latin': 50, 'Eisenhower': 50, 'remove': 50, 'D': 50, 'pull': 50, 'proud': 50, 'faced': 50, 'extra': 50, 'Philadelphia': 50, 'Warren': 50, 'advice': 50, 'pair': 50, 'surprise': 50, 'brilliant': 50, 'walking': 50, 'conversation': 50, 'uniform': 50, 'devoted': 50, 'conviction': 50, 'rear': 50, 'Did': 50, 'desired': 50, 'noticed': 50, 'interpretation': 50, 'easier': 50, 'breath': 50, 'Have': 50, 'employed': 49, '13': 49, 'millions': 49, 'fill': 49, 'request': 49, 'television': 49, 'firmly': 49, 'conventional': 49, 'hopes': 49, 'tendency': 49, 'minor': 49, 'wooden': 49, 'depends': 49, 'About': 49, 'trust': 49, 'taught': 49, 'cultural': 49, 'administrative': 49, 'papers': 49, 'incident': 49, 'operator': 49, 'Therefore': 49, 'tiny': 49, 'convinced': 49, 'silent': 49, 'colors': 49, 'sick': 49, 'moon': 49, 'consideration': 49, 'publication': 49, 'towns': 49, 'childhood': 49, 'efficiency': 48, 'suit': 48, 'chairman': 48, 'passage': 48, 'destroy': 48, 'estate': 48, '24': 48, 'Co.': 48, 'choose': 48, 'agency': 48, 'hoped': 48, 'de': 48, 'chain': 48, 'knowing': 48, 'operate': 48, 'speaking': 48, 'acceptance': 48, 'driver': 48, 'remarks': 48, 'worse': 48, 'fifteen': 48, 'advertising': 48, 'impressive': 48, 'west': 48, 'tired': 48, '1957': 48, 'park': 48, 'Charlie': 48, 'quietly': 48, 'cry': 48, 'gold': 48, 'female': 48, 'finding': 48, 'formal': 48, 'rolled': 48, 'comparison': 48, 'creative': 48, 'lady': 48, 'measures': 48, 'swung': 48, 'moments': 48, 'opportunities': 48, 'maintained': 48, 'leaves': 48, 'poem': 48, 'attitudes': 48, 'valley': 48, 'measurements': 48, 'Hearst': 48, 'bonds': 47, 'denied': 47, 'Fort': 47, 'railroad': 47, '21': 47, 'Cuba': 47, 'limit': 47, 'sold': 47, 'internal': 47, 'deny': 47, 'Moscow': 47, 'integration': 47, 'expenses': 47, 'testimony': 47, 'garden': 47, 'apart': 47, 'Angeles': 47, 'screen': 47, 'remarkable': 47, '23': 47, 'shooting': 47, 'Italian': 47, 'vacation': 47, 'village': 47, 'tragedy': 47, 'concentration': 47, 'Black': 47, 'burning': 47, 'unknown': 47, 'engine': 47, 'payments': 47, 'boats': 47, 'personality': 47, 'library': 47, 'aspect': 47, 'plain': 47, 'fundamental': 47, 'version': 47, 'mere': 47, 'somewhere': 47, 'silence': 47, 'soul': 47, 'drinking': 47, 'periods': 47, 'examples': 47, 'patterns': 47, 'dear': 47, 'Lincoln': 47, 'practically': 47, 'detective': 47, 'stone': 47, 'P': 47, 'skin': 47, 'liquid': 47, 'recommended': 46, 'welfare': 46, 'Georgia': 46, 'Blue': 46, 'rural': 46, 'creation': 46, 'League': 46, 'Frank': 46, '22': 46, 'Junior': 46, 'difficulties': 46, 'losses': 46, 'executive': 46, 'trend': 46, 'review': 46, 'engaged': 46, '60': 46, 'provision': 46, 'Park': 46, 'wave': 46, 'identified': 46, '1954': 46, 'hero': 46, 'nobody': 46, 'decade': 46, 'association': 46, 'threw': 46, 'blind': 46, 'interior': 46, 'lights': 46, 'Mantle': 46, 'humor': 46, 'Wright': 46, 'pink': 46, 'seriously': 46, 'stairs': 46, 'missile': 46, 'minister': 46, 'functions': 46, 'strike': 46, 'birds': 46, 'percentage': 46, 'models': 46, 'movements': 46, 'resistance': 46, 'conscious': 46, 'wearing': 46, 'numerous': 46, 'concrete': 46, 'precisely': 46, 'centuries': 46, 'Civil': 46, 'equivalent': 46, 'article': 46, 'independence': 46, 'fiction': 46, 'contrary': 46, 'fears': 46, 'anger': 46, 'partly': 46, 'till': 46, 'artery': 46, 'congregation': 46, 'Q': 46, 'governor': 45, 'courts': 45, 'promised': 45, 'promise': 45, 'opposition': 45, 'bills': 45, 'adopted': 45, 'Institute': 45, 'load': 45, 'depend': 45, 'Africa': 45, 'sheet': 45, 'impression': 45, 'feels': 45, 'encourage': 45, 'civil': 45, 'referred': 45, 'Edward': 45, 'safety': 45, 'honest': 45, 'weakness': 45, 'native': 45, 'Pennsylvania': 45, 'ride': 45, 'curious': 45, 'Alexander': 45, 'expansion': 45, 'containing': 45, 'target': 45, 'please': 45, 'somebody': 45, 'includes': 45, 'luck': 45, 'sports': 45, 'twelve': 45, 'intended': 45, 'welcome': 45, 'February': 45, 'panels': 45, 'supplies': 45, 'Hall': 45, 'Society': 45, 'shares': 45, 'contain': 45, 'meat': 45, 'Watson': 45, 'cast': 45, 'fought': 45, 'sorry': 45, 'medium': 45, 'diameter': 45, 'precision': 45, 'preparation': 45, 'shut': 45, 'curve': 45, 'relative': 44, 'burden': 44, 'legislation': 44, 'Five': 44, 'considerably': 44, 'taxes': 44, 'Instead': 44, 'captain': 44, 'employment': 44, 'amounts': 44, 'admitted': 44, 'sum': 44, 'opinions': 44, 'Asia': 44, 'thousands': 44, 'See': 44, 'valuable': 44, 'charges': 44, 'cross': 44, 'pounds': 44, 'Big': 44, 'dangerous': 44, 'mounted': 44, 'accomplished': 44, 'lies': 44, 'suffering': 44, 'milk': 44, 'singing': 44, 'qualities': 44, 'cup': 44, 'offers': 44, 'sale': 44, 'boards': 44, 'calling': 44, 'agent': 44, 'path': 44, 'Lucy': 44, 'band': 44, 'climbed': 44, 'shoes': 44, 'Medical': 44, 'elsewhere': 44, 'instrument': 44, 'expensive': 44, 'approached': 44, 'Adam': 44, 'arranged': 44, 'answers': 44, 'terrible': 44, 'intelligence': 44, 'Manchester': 44, 'odd': 44, 'Hans': 44, 'slaves': 44, 'thickness': 44, 'mold': 44, 'investigation': 43, 'believes': 43, 'automobile': 43, 'warning': 43, 'bond': 43, 'violence': 43, 'P.': 43, 'lawyer': 43, 'insisted': 43, 'dollar': 43, 'explanation': 43, 'eventually': 43, 'count': 43, 'Again': 43, 'gradually': 43, 'rapid': 43, 'Hotel': 43, 'saved': 43, 'purchase': 43, 'reader': 43, 'confusion': 43, 'recorded': 43, 'enjoy': 43, 'Indeed': 43, 'Any': 43, 'fired': 43, 'flight': 43, 'nearby': 43, 'interference': 43, 'guy': 43, 'Class': 43, 'concerns': 43, 'Lake': 43, 'separated': 43, 'lovely': 43, 'comfort': 43, 'fun': 43, 'artists': 43, 'driven': 43, 'consists': 43, 'warfare': 43, 'collected': 43, 'riding': 43, 'Little': 43, 'coat': 43, 'occur': 43, 'grown': 43, 'resulting': 43, 'expenditures': 43, 'drama': 43, "you've": 43, 'i.e.': 43, 'essentially': 43, 'lifted': 43, 'revolution': 43, 'confused': 43, 'contribute': 43, 'readily': 43, 'darkness': 43, 'Motors': 43, 'recognition': 43, 'Figure': 43, 'washing': 43, 'ice': 43, 'emotions': 43, 'Him': 43, 'oxygen': 43, 'environment': 43, 'Mama': 43, 'Nevertheless': 42, 'appointed': 42, 'listed': 42, 'obtain': 42, 'fund': 42, 'liquor': 42, 'smooth': 42, 'Without': 42, 'La': 42, 'excess': 42, 'core': 42, 'wisdom': 42, 'foods': 42, 'seeking': 42, 'origin': 42, 'G.': 42, 'replaced': 42, 'pace': 42, 'suffered': 42, 'helping': 42, 'dirt': 42, 'crossed': 42, 'Time': 42, 'Place': 42, 'switch': 42, 'east': 42, "ain't": 42, 'mail': 42, 'snake': 42, 'Anne': 42, 'wages': 42, 'mile': 42, 'hate': 42, 'spirits': 42, 'increasingly': 42, 'bag': 42, 'bound': 42, 'acres': 42, 'raw': 42, 'pilot': 42, 'Adams': 42, 'tend': 42, 'brain': 42, 'heads': 42, 'arts': 42, 'sufficiently': 42, 'author': 42, 'reflected': 42, 'reactions': 42, 'identification': 42, 'varied': 42, 'angry': 42, 'weapon': 42, 'touched': 42, 'pocket': 42, 'exists': 42, 'shore': 42, 'porch': 42, 'cloth': 42, 'possibilities': 42, 'distinct': 42, 'particles': 42, 'catch': 42, 'Rachel': 42, 'Linda': 42, 'Office': 41, 'mental': 41, 'urban': 41, 'opposed': 41, '17': 41, 'insurance': 41, 'residential': 41, 'proposal': 41, 'storage': 41, 'loan': 41, 'teach': 41, 'holds': 41, 'errors': 41, 'dealing': 41, 'constantly': 41, 'communities': 41, 'Defense': 41, 'salary': 41, 'continuous': 41, 'reduction': 41, 'comment': 41, 'visited': 41, 'ease': 41, 'hundreds': 41, 'Division': 41, 'developments': 41, 'spending': 41, 'distinction': 41, 'wire': 41, 'Francisco': 41, 'Carl': 41, "'em": 41, 'continues': 41, 'favorite': 41, 'tour': 41, 'Come': 41, 'dancing': 41, 'Besides': 41, 'ships': 41, 'pleased': 41, 'extensive': 41, 'Captain': 41, 'bread': 41, 'distinguished': 41, 'match': 41, 'remaining': 41, 'shift': 41, 'democratic': 41, 'varying': 41, 'volumes': 41, 'editorial': 41, 'psychological': 41, 'Will': 41, 'brush': 41, "Let's": 41, 'involves': 41, 'describe': 41, 'salt': 41, 'tissue': 41, 'Henrietta': 41, 'Kate': 41, 'exception': 40, 'prison': 40, 'Commerce': 40, 'composed': 40, 'afford': 40, 'Atlantic': 40, 'societies': 40, 'neighbors': 40, 'removal': 40, 'manufacturers': 40, 'happens': 40, 'Walter': 40, 'sell': 40, 'forest': 40, 'Democrats': 40, 'representative': 40, 'changing': 40, 'Last': 40, 'writes': 40, 'Orleans': 40, '40': 40, 'rough': 40, 'steady': 40, 'throw': 40, 'notion': 40, 'younger': 40, 'threat': 40, 'demanded': 40, 'Illinois': 40, 'existed': 40, 'Bob': 40, 'prior': 40, 'missed': 40, 'prominent': 40, 'Later': 40, 'arc': 40, 'shared': 40, 'rare': 40, 'talent': 40, 'orchestra': 40, 'display': 40, 'burned': 40, 'permanent': 40, 'ring': 40, 'Winston': 40, 'investment': 40, 'liberty': 40, 'pride': 40, 'seed': 40, 'marketing': 40, 'brings': 40, 'Papa': 40, 'indicates': 40, 'discover': 40, 'painted': 40, 'Uncle': 40, 'shouted': 40, 'virtually': 40, 'focus': 40, 'stepped': 40, 'finger': 40, 'universal': 40, 'guns': 40, 'long-range': 40, 'limits': 40, 'Does': 40, 'throat': 40, 'thrown': 40, 'joy': 40, 'everywhere': 40, 'fed': 40, 'smoke': 40, 'atoms': 40, 'skill': 40, 'parallel': 40, 'shear': 40, 'cooling': 40, 'marine': 40, 'rode': 40, 'Gross': 40, 'Judge': 39, 'considering': 39, 'offices': 39, 'combined': 39, 'Education': 39, 'Lawrence': 39, 'customers': 39, 'legislative': 39, 'dependent': 39, 'Several': 39, 'secretary': 39, 'Rayburn': 39, 'Communists': 39, 'determination': 39, 'deeply': 39, 'Attorney': 39, 'assured': 39, 'attractive': 39, 'transportation': 39, 'represents': 39, 'colleges': 39, 'languages': 39, 'Air': 39, 'Avenue': 39, 'Mississippi': 39, 'engineering': 39, 'lots': 39, 'striking': 39, 'trials': 39, 'muscle': 39, 'gained': 39, 'contributed': 39, "o'clock": 39, 'anybody': 39, 'surely': 39, 'TV': 39, 'award': 39, 'Good': 39, 'Long': 39, 'comparable': 39, 'sake': 39, 'Life': 39, 'downtown': 39, 'automatic': 39, 'derived': 39, 'express': 39, 'revealed': 39, 'provisions': 39, 'allotment': 39, 'controlled': 39, 'reaching': 39, 'communism': 39, 'bars': 39, 'musicians': 39, 'intense': 39, 'participation': 39, 'electrical': 39, 'Justice': 39, 'necessity': 39, 'Out': 39, 'recall': 39, 'destroyed': 39, 'funny': 39, 'glance': 39, 'regarding': 39, 'stranger': 39, 'rarely': 39, 'objectives': 39, 'inch': 39, 'visual': 39, 'defined': 39, 'anxiety': 39, 'Despite': 38, 'candidates': 38, 'Constitution': 38, 'scheduled': 38, '31': 38, 'Research': 38, 'mostly': 38, 'leaned': 38, '200': 38, 'Actually': 38, 'judge': 38, 'hill': 38, 'atomic': 38, 'handed': 38, 'theater': 38, 'Governor': 38, 'copy': 38, 'Bay': 38, 'transfer': 38, "We'll": 38, 'Thompson': 38, 'Paul': 38, 'sharply': 38, 'goals': 38, 'nineteenth': 38, 'Within': 38, 'decide': 38, 'International': 38, 'flying': 38, 'Robinson': 38, 'Ohio': 38, 'sudden': 38, 'selection': 38, 'thoroughly': 38, 'bringing': 38, 'Japan': 38, 'studying': 38, 'brothers': 38, 'corresponding': 38, 'agents': 38, 'Today': 38, 'institution': 38, 'guidance': 38, 'satisfactory': 38, 'engineer': 38, 'turns': 38, 'assumption': 38, 'steel': 38, 'Treasury': 38, "father's": 38, 'tables': 38, 'relationships': 38, 'knees': 38, 'Pike': 38, 'soldier': 38, 'represent': 38, 'tool': 38, 'eleven': 38, 'holes': 38, "What's": 38, 'criticism': 38, 'mankind': 38, 'external': 38, "God's": 38, 'voices': 38, 'hydrogen': 38, 'doctrine': 38, 'Was': 38, 'contains': 38, 'primitive': 38, 'Cousin': 38, 'handling': 37, 'approved': 37, 'acts': 37, 'Roberts': 37, 'serving': 37, 'skills': 37, 'strongly': 37, 'Chief': 37, 'improve': 37, 'track': 37, 'tremendous': 37, 'deeper': 37, 'reply': 37, 'Senator': 37, 'R': 37, 'assure': 37, 'authorized': 37, 'fail': 37, 'newspapers': 37, 'Public': 37, 'iron': 37, 'edges': 37, 'anyway': 37, 'Would': 37, 'stronger': 37, 'signed': 37, 'delivered': 37, 'resulted': 37, 'Roy': 37, 'forever': 37, 'formation': 37, 'anywhere': 37, "they're": 37, 'ears': 37, 'Center': 37, 'magic': 37, 'swimming': 37, 'furniture': 37, 'handsome': 37, 'arrangements': 37, 'Susan': 37, 'restaurant': 37, 'chose': 37, 'drawing': 37, 'innocent': 37, 'Much': 37, 'atom': 37, 'profession': 37, 'regional': 37, 'male': 37, 'improvement': 37, 'belong': 37, 'finish': 37, 'fool': 37, 'comedy': 37, 'noise': 37, 'stick': 37, 'prime': 37, 'ages': 37, 'listening': 37, 'illusion': 37, 'briefly': 37, 'pressures': 37, 'sleeping': 37, 'comfortable': 37, 'chapter': 37, 'enormous': 37, 'admit': 37, 'Holmes': 37, 'conscience': 37, 'stomach': 37, 'distant': 37, 'foam': 37, 'thyroid': 37, 'civilization': 37, 'destruction': 37, 'constructed': 37, 'blocks': 37, 'hills': 37, 'devices': 37, 'tested': 37, 'E': 37, 'forgotten': 37, 'organic': 37, 'species': 37, 'questionnaire': 37, 'attended': 36, 'authorities': 36, 'Jackson': 36, 'specifically': 36, 'accounts': 36, "year's": 36, 'districts': 36, 'license': 36, 'High': 36, 'effectively': 36, 'completion': 36, 'mood': 36, 'waters': 36, 'moves': 36, 'cooperation': 36, 'affected': 36, 'intention': 36, 'Jim': 36, 'glad': 36, 'Times': 36, 'definite': 36, 'guide': 36, 'severe': 36, 'schedule': 36, 'feature': 36, 'peoples': 36, 'error': 36, 'attempts': 36, 'mystery': 36, 'Chapter': 36, 'Maris': 36, 'Nor': 36, 'push': 36, 'Peter': 36, 'People': 36, 'Hardy': 36, 'contribution': 36, 'observations': 36, 'supplied': 36, 'release': 36, 'spoken': 36, 'plot': 36, 'crew': 36, 'equipped': 36, 'managed': 36, 'kinds': 36, 'occupied': 36, 'cleaning': 36, 'accompanied': 36, 'serves': 36, 'characters': 36, 'maturity': 36, 'edition': 36, 'substantially': 36, 'desirable': 36, 'Journal': 36, 'Spanish': 36, 'aim': 36, 'recreation': 36, 'stored': 36, 'beings': 36, 'seeds': 36, 'dressed': 36, 'Furthermore': 36, 'instant': 36, 'host': 36, 'mixed': 36, 'variable': 36, 'hurt': 36, 'symbols': 36, 'random': 36, 'ratio': 36, 'images': 36, 'coating': 36, 'staining': 36, 'over-all': 35, 'Atlanta': 35, 'Hospital': 35, '1962': 35, 'Wednesday': 35, 'personally': 35, 'automatically': 35, 'sounded': 35, 'Clark': 35, 'grant': 35, 'visiting': 35, 'challenge': 35, "we're": 35, 'sympathetic': 35, 'Look': 35, 'experts': 35, 'satisfied': 35, 'doors': 35, 'Conference': 35, 'guard': 35, 'claimed': 35, 'tough': 35, 'mad': 35, 'outstanding': 35, 'jumped': 35, 'Republic': 35, 'Jane': 35, 'wear': 35, 'bombs': 35, 'Stanley': 35, 'sees': 35, 'consumer': 35, 'grade': 35, 'eggs': 35, 'installed': 35, 'yield': 35, 'probability': 35, 'technology': 35, 'outlook': 35, 'output': 35, 'classic': 35, 'concert': 35, 'conclusions': 35, 'agricultural': 35, 'consequences': 35, 'accurate': 35, 'pleasant': 35, 'inevitably': 35, 'patients': 35, 'producing': 35, 'prepare': 35, 'readers': 35, 'phenomenon': 35, 'paint': 35, 'tongue': 35, 'waste': 35, 'regions': 35, 'Pope': 35, 'Pont': 35, 'accuracy': 35, 'Part': 35, 'symbolic': 35, 'disappeared': 35, "haven't": 35, 'calculated': 35, 'worried': 35, 'sequence': 35, 'dirty': 35, 'Matsuo': 35, 'urged': 34, 'protect': 34, 'Four': 34, 'candidate': 34, 'Sept.': 34, 'alternative': 34, 'Harry': 34, 'smell': 34, 'dispute': 34, 'estimate': 34, 'sending': 34, 'extension': 34, 'latest': 34, 'tied': 34, 'scholarship': 34, 'tonight': 34, 'genuine': 34, 'Canada': 34, 'listen': 34, 'raising': 34, 'Harvard': 34, 'nationalism': 34, 'exposed': 34, 'clerk': 34, 'stores': 34, 'retired': 34, 'suggestion': 34, 'blame': 34, 'preserve': 34, 'bigger': 34, 'Can': 34, 'filling': 34, 'Hill': 34, 'Johnson': 34, 'normally': 34, 'Samuel': 34, 'owners': 34, 'Lee': 34, 'row': 34, 'multiple': 34, 'lying': 34, 'realistic': 34, 'reception': 34, 'meets': 34, 'performed': 34, 'logical': 34, 'owned': 34, 'thereby': 34, 'sister': 34, 'bus': 34, 'tells': 34, 'coast': 34, 'Baker': 34, 'decades': 34, 'paintings': 34, 'affect': 34, "mother's": 34, 'vary': 34, 'camera': 34, 'visible': 34, 'emotion': 34, 'definition': 34, 'sympathy': 34, 'swept': 34, 'desegregation': 34, 'guest': 34, 'processing': 34, 'Italy': 34, 'Neither': 34, 'lists': 34, "today's": 34, 'mechanical': 34, 'mistake': 34, 'presumably': 34, 'frequent': 34, 'dignity': 34, 'western': 34, 'height': 34, 'illustrated': 34, 'worship': 34, 'drunk': 34, 'sir': 34, 'calm': 34, 'visitors': 34, 'sad': 34, 'isolated': 34, 'washed': 34, 'openly': 34, 'bent': 34, 'tools': 34, 'tends': 34, 'reasonably': 34, 'self': 34, 'sacred': 34, 'clouds': 34, 'stretched': 34, 'context': 34, 'myth': 34, 'mountains': 34, 'axis': 34, 'patent': 34, 'pencil': 34, 'Earth': 34, 'binomial': 34, 'filed': 33, 'succeeded': 33, 'rejected': 33, 'Thursday': 33, 'missing': 33, 'favorable': 33, 'Supreme': 33, 'guilt': 33, 'involving': 33, 'benefits': 33, 'experimental': 33, 'route': 33, 'affair': 33, 'fewer': 33, 'neutral': 33, 'unlike': 33, 'vehicle': 33, 'examine': 33, 'advised': 33, 'beach': 33, 'owner': 33, 'branches': 33, 'admission': 33, 'badly': 33, 'cash': 33, 'determining': 33, 'sentence': 33, 'bomb': 33, 'emergency': 33, 'blow': 33, 'Andy': 33, 'Take': 33, 'damage': 33, 'knee': 33, 'performances': 33, 'yard': 33, 'leads': 33, 'arrangement': 33, 'worst': 33, 'folk': 33, 'roles': 33, 'presents': 33, 'sugar': 33, 'jacket': 33, 'attempted': 33, 'parked': 33, 'survive': 33, 'seldom': 33, 'alert': 33, 'massive': 33, 'suitable': 33, 'hunting': 33, 'routine': 33, 'wash': 33, 'inevitable': 33, 'grave': 33, 'demonstrated': 33, 'equation': 33, 'scheme': 33, 'Catholics': 33, 'phrase': 33, 'fallen': 33, 'namely': 33, 'Player': 33, 'dying': 33, 'connected': 33, 'tragic': 33, 'Too': 33, 'findings': 33, 'Be': 33, 'Never': 33, 'wise': 33, 'Poland': 33, 'quantity': 33, 'bone': 33, 'Prokofieff': 33, 'cards': 33, 'Early': 33, 'discovery': 33, 'healthy': 33, 'gate': 33, 'chlorine': 33, 'Jess': 33, 'inadequate': 32, 'elected': 32, 'Williams': 32, 'highway': 32, 'gift': 32, 'Howard': 32, 'shouting': 32, 'receiving': 32, "nation's": 32, 'Castro': 32, 'gesture': 32, 'concluded': 32, 'crime': 32, 'stems': 32, 'awareness': 32, 'financing': 32, 'partner': 32, 'presentation': 32, 'reporters': 32, 'interview': 32, 'remarked': 32, 'joint': 32, 'returning': 32, 'Square': 32, 'currently': 32, 'effectiveness': 32, 'covering': 32, 'Harold': 32, 'accident': 32, 'strictly': 32, 'Mark': 32, 'proof': 32, '26': 32, 'kids': 32, 'Indians': 32, "world's": 32, 'fly': 32, 'magazine': 32, 'Pat': 32, '19': 32, 'lunch': 32, 'Next': 32, 'bride': 32, 'artistic': 32, 'beer': 32, 'crazy': 32, 'covers': 32, 'household': 32, 'duties': 32, 'Lady': 32, 'Holy': 32, 'promote': 32, 'violent': 32, 'burst': 32, 'F': 32, 'collective': 32, 'efficient': 32, 'occasionally': 32, 'Second': 32, 'adjustment': 32, 'chicken': 32, 'variation': 32, 'Chandler': 32, 'ocean': 32, "child's": 32, 'island': 32, 'grace': 32, 'gathered': 32, 'remote': 32, 'testing': 32, 'initiative': 32, 'e.g.': 32, 'occasional': 32, 'tears': 32, 'cooking': 32, 'hurry': 32, 'slipped': 32, 'suffer': 32, 'weak': 32, 'courage': 32, 'instructions': 32, 'reflection': 32, 'regardless': 32, 'circles': 32, 'conception': 32, 'simultaneously': 32, 'crowded': 32, 'fruit': 32, 'forty': 32, 'smiling': 32, 'measurement': 32, 'Gorton': 32, '**zg': 32, 'Scotty': 32, 'counties': 31, 'protected': 31, 'elaborate': 31, 'tossed': 31, 'armed': 31, 'printed': 31, 'so-called': 31, 'senior': 31, 'ruled': 31, 'allowing': 31, 'nevertheless': 31, 'discussions': 31, 'facing': 31, 'spots': 31, 'Prince': 31, 'enterprise': 31, 'remark': 31, 'long-term': 31, 'panel': 31, 'Field': 31, 'Navy': 31, 'transition': 31, 'depending': 31, 'involve': 31, 'Kansas': 31, 'knocked': 31, 'identical': 31, 'mature': 31, 'winning': 31, 'checked': 31, 'Dave': 31, 'barely': 31, 'mud': 31, 'dancer': 31, 'Pacific': 31, 'secondary': 31, 'strain': 31, 'ending': 31, 'successfully': 31, 'wedding': 31, 'fallout': 31, 'nights': 31, 'excitement': 31, 'decline': 31, 'parking': 31, 'survey': 31, 'tape': 31, 'corn': 31, 'quarter': 31, "aren't": 31, 'returns': 31, 'Communism': 31, 'Christianity': 31, 'poetic': 31, 'stuff': 31, 'poets': 31, 'chamber': 31, 'Russians': 31, 'Had': 31, 'muscles': 31, '1952': 31, 'density': 31, 'respectively': 31, 'invariably': 31, 'columns': 31, 'ceiling': 31, 'considerations': 31, 'perfectly': 31, 'counter': 31, 'naked': 31, 'pages': 31, 'composer': 31, 'frequencies': 31, 'precise': 31, 'fish': 31, 'whereas': 31, 'slavery': 31, 'locking': 31, 'gently': 31, 'thermal': 31, 'Via': 31, 'N': 31, 'Poet': 31, 'saline': 31, 'skywave': 31, 'emission': 31, 'Curt': 31, 'widespread': 30, 'grand': 30, 'Mayor': 30, 'Sen.': 30, 'starts': 30, 'Felix': 30, 'conservative': 30, 'sponsored': 30, 'reducing': 30, 'football': 30, 'worker': 30, 'absolute': 30, 'matching': 30, 'extraordinary': 30, 'Labor': 30, 'instances': 30, 'expert': 30, 'lumber': 30, 'universities': 30, 'Force': 30, 'suspect': 30, 'Business': 30, 'temporary': 30, 'Over': 30, 'fence': 30, 'suspended': 30, 'Franklin': 30, 'net': 30, 'Louisiana': 30, 'movies': 30, 'heading': 30, "You'll": 30, 'et': 30, 'superior': 30, 'network': 30, 'Johnny': 30, 'Eddie': 30, 'Van': 30, 'dates': 30, 'letting': 30, 'supper': 30, 'cuts': 30, 'roll': 30, 'selling': 30, 'reveal': 30, 'ranging': 30, 'Alex': 30, 'competitive': 30, 'survival': 30, 'excessive': 30, 'Something': 30, 'lightly': 30, 'substance': 30, 'tube': 30, 'piano': 30, 'beef': 30, 'virtue': 30, 'films': 30, 'Get': 30, 'secure': 30, 'Sharpe': 30, 'impressed': 30, 'historian': 30, 'listened': 30, 'crucial': 30, 'confronted': 30, 'troubled': 30, 'campus': 30, 'eating': 30, 'Through': 30, 'surprising': 30, 'complicated': 30, 'occurrence': 30, 'preceding': 30, 'skilled': 30, 'markets': 30, 'slave': 30, 'softly': 30, 'shock': 30, 'blanket': 30, 'encountered': 30, 'consequence': 30, 'divine': 30, 'scientists': 30, 'articles': 30, 'Professor': 30, 'whenever': 30, 'flux': 30, 'Shakespeare': 30, 'romantic': 30, 'farther': 30, 'abstract': 30, 'mixture': 30, 'falling': 30, 'Rector': 30, 'concentrated': 30, 'meal': 30, 'stable': 30, 'stem': 30, 'basement': 30, 'Dartmouth': 30, 'Miriam': 30, 'Woodruff': 30, 'divorce': 29, 'Republicans': 29, 'Sherman': 29, 'argued': 29, 'utility': 29, 'junior': 29, 'O.': 29, 'modest': 29, 'fate': 29, 'ignored': 29, 'Morse': 29, 'Assembly': 29, 'mainly': 29, 'perform': 29, 'transferred': 29, 'guilty': 29, 'Bank': 29, 'Brooklyn': 29, 'replace': 29, 'ethical': 29, 'loans': 29, 'threatened': 29, 'hence': 29, 'helps': 29, 'split': 29, 'Ann': 29, 'Mickey': 29, 'shots': 29, 'trips': 29, 'exciting': 29, 'entertainment': 29, 'Armed': 29, 'dancers': 29, 'movie': 29, 'Albert': 29, 'tasks': 29, 'Others': 29, 'recording': 29, 'suburban': 29, 'signals': 29, 'comments': 29, 'barn': 29, 'colored': 29, 'sewage': 29, 'controls': 29, 'strip': 29, 'missiles': 29, 'cotton': 29, 'dealers': 29, 'lesson': 29, 'buying': 29, 'furnish': 29, 'creating': 29, 'morality': 29, 'fishing': 29, 'residence': 29, 'delight': 29, 'era': 29, 'poured': 29, 'argue': 29, 'Industrial': 29, 'extend': 29, 'measuring': 29, 'hoping': 29, 'sang': 29, 'radical': 29, 'helpful': 29, 'constitute': 29, 'purely': 29, 'magnitude': 29, 'According': 29, 'suggests': 29, 'Hence': 29, 'glasses': 29, 'scenes': 29, 'shorts': 29, 'proportion': 29, 'consciousness': 29, 'reminded': 29, 'ear': 29, 'asleep': 29, 'trail': 29, 'sciences': 29, 'shadow': 29, 'pressed': 29, 'Juniors': 29, 'p': 29, 'evaluation': 29, 'grinned': 29, 'unconscious': 29, 'Carleton': 29, 'bronchial': 29, 'Brannon': 29, 'enthusiasm': 28, 'newly': 28, 'voting': 28, 'representing': 28, 'debate': 28, 'Harris': 28, 'extending': 28, 'calendar': 28, 'absent': 28, 'bench': 28, 'innocence': 28, 'questioned': 28, 'contributions': 28, 'meetings': 28, 'Until': 28, 'specified': 28, '1955': 28, 'profit': 28, 'false': 28, 'demonstrate': 28, 'Irish': 28, 'encounter': 28, 'classical': 28, 'gay': 28, 'expanding': 28, 'N.': 28, 'defeat': 28, 'losing': 28, 'introduction': 28, 'Oct.': 28, 'graduate': 28, 'Nobody': 28, 'examined': 28, 'Roosevelt': 28, 'Beach': 28, 'Yankees': 28, '1956': 28, 'sacrifice': 28, 'arise': 28, 'silver': 28, 'wound': 28, 'fourteen': 28, 'Hal': 28, 'talents': 28, 'studio': 28, "They're": 28, 'African': 28, 'Santa': 28, 'unions': 28, 'encouraged': 28, 'structures': 28, 'marks': 28, 'branch': 28, 'witness': 28, 'fled': 28, 'locked': 28, 'quarters': 28, 'rendered': 28, 'mechanism': 28, 'surfaces': 28, 'satisfaction': 28, 'offering': 28, 'pound': 28, 'tons': 28, 'closing': 28, 'industries': 28, 'colony': 28, 'warmth': 28, 'fabrics': 28, "let's": 28, 'discuss': 28, 'ballet': 28, 'peculiar': 28, 'paused': 28, 'propaganda': 28, 'vigorous': 28, 'deliberately': 28, 'tight': 28, 'sand': 28, "you'd": 28, 'bare': 28, 'happening': 28, 'coal': 28, 'libraries': 28, 'citizen': 28, 'dimensions': 28, 'Whether': 28, 'solutions': 28, 'root': 28, 'sovereignty': 28, 'Interior': 28, 'jurisdiction': 28, 'lighted': 28, 'shapes': 28, 'cure': 28, 'consistent': 28, 'anxious': 28, 'cow': 28, 'clarity': 28, 'apparatus': 28, 'verse': 28, 'Suppose': 28, 'committed': 28, 'pot': 28, 'southern': 28, 'commonly': 28, 'laugh': 28, 'sensitivity': 28, 'electron': 28, 'hated': 28, 'plastic': 28, 'electronics': 28, 'carbon': 28, 'drugs': 28, 'plastics': 28, 'sovereign': 28, 'optimal': 28, 'polynomial': 28, 'Ramey': 28, 'thanks': 27, 'operated': 27, 'Legislature': 27, 'fees': 27, 'weekend': 27, 'council': 27, 'responses': 27, 'voted': 27, 'veteran': 27, 'Davis': 27, 'pistol': 27, 'permits': 27, 'Hughes': 27, 'Coast': 27, 'requirement': 27, 'acquire': 27, 'Marshall': 27, 'representatives': 27, 'prefer': 27, 'proposals': 27, 'professor': 27, 'finance': 27, 'absolutely': 27, 'doctors': 27, 'mighty': 27, 'scattered': 27, 'Dean': 27, 'profound': 27, 'insist': 27, 'commission': 27, 'diplomatic': 27, 'territory': 27, 'exact': 27, 'municipal': 27, 'merit': 27, 'surplus': 27, 'gathering': 27, 'exclusive': 27, 'T.': 27, 'combat': 27, 'recovery': 27, 'formerly': 27, 'a.m.': 27, 'flew': 27, 'golf': 27, 'passes': 27, 'Dan': 27, 'permission': 27, 'rushed': 27, 'Christmas': 27, 'tea': 27, 'sing': 27, 'dining': 27, 'maid': 27, 'reputation': 27, 'Delaware': 27, 'Greenwich': 27, 'ladies': 27, 'Clayton': 27, 'maintaining': 27, 'Fred': 27, 'upstairs': 27, 'engineers': 27, 'distributed': 27, 'Jefferson': 27, 'Newport': 27, 'restrictions': 27, 'reserved': 27, 'upward': 27, 'drying': 27, 'dull': 27, 'grain': 27, 'opera': 27, 'mirror': 27, 'marriages': 27, 'shade': 27, 'refer': 27, 'utterly': 27, 'consisting': 27, 'horizon': 27, 'delicate': 27, 'scope': 27, 'applying': 27, 'prestige': 27, 'subsequent': 27, 'seconds': 27, 'limitations': 27, 'advantages': 27, 'friendship': 27, 'Germans': 27, 'Obviously': 27, 'regulations': 27, 'outer': 27, 'occurs': 27, 'Men': 27, 'Revolution': 27, 'imagined': 27, 'ecumenical': 27, 'passion': 27, 'discipline': 27, 'shoot': 27, 'samples': 27, 'associations': 27, 'observation': 27, 'gentle': 27, 'prevented': 27, 'salvation': 27, 'mountain': 27, 'perception': 27, 'Forces': 27, 'minimal': 27, 'examination': 27, 'holder': 27, 'laughing': 27, 'powder': 27, 'clinical': 27, 'slept': 27, 'Julia': 27, 'fiber': 27, 'pursuant': 27, 'V': 27, 'pulmonary': 27, 'damn': 27, 'Myra': 27, 'Shayne': 27, 'Cady': 27, 'lacking': 26, 'appointment': 26, 'attorney': 26, 'controversy': 26, "We're": 26, 'paying': 26, 'Science': 26, 'placing': 26, '1953': 26, "Kennedy's": 26, 'climate': 26, 'critics': 26, 'outcome': 26, 'reform': 26, 'ill': 26, 'establishing': 26, 'Bureau': 26, 'released': 26, 'shopping': 26, 'vice': 26, 'gross': 26, 'handled': 26, 'Mitchell': 26, 'Young': 26, 'unhappy': 26, 'desperate': 26, 'Forest': 26, "we'll": 26, 'pointing': 26, 'publicly': 26, 'corps': 26, 'Middle': 26, 'royal': 26, 'reserve': 26, 'Virgin': 26, 'Certainly': 26, 'revenues': 26, 'reorganization': 26, 'builder': 26, 'threatening': 26, 'ours': 26, 'compare': 26, 'disaster': 26, 'frames': 26, 'players': 26, 'injury': 26, 'Billy': 26, 'magnificent': 26, '27': 26, 'quoted': 26, 'inherent': 26, 'eager': 26, 'recalled': 26, 'overcome': 26, "She's": 26, 'journey': 26, 'storm': 26, 'cellar': 26, 'Eileen': 26, 'victim': 26, 'submarine': 26, 'Almost': 26, 'suspicion': 26, 'electricity': 26, 'funeral': 26, 'meals': 26, 'approaching': 26, 'literally': 26, 'stockholders': 26, 'farmers': 26, 'enemies': 26, 'card': 26, 'belt': 26, 'instruction': 26, 'justify': 26, 'presently': 26, 'invited': 26, 'sophisticated': 26, 'ranch': 26, 'appreciate': 26, 'lively': 26, 'butter': 26, 'Make': 26, 'delightful': 26, 'dreams': 26, 'acquired': 26, 'preferred': 26, 'anti-trust': 26, 'marginal': 26, 'Southerners': 26, 'cents': 26, 'legend': 26, 'Coolidge': 26, 'textile': 26, 'altogether': 26, 'customer': 26, 'Colonel': 26, 'humanity': 26, 'trembling': 26, 'emerged': 26, 'disturbed': 26, 'concepts': 26, 'eternal': 26, 'judgments': 26, 'perspective': 26, 'mysterious': 26, 'conceived': 26, 'Arlene': 26, 'sheets': 26, 'cried': 26, 'Sarah': 26, 'frightened': 26, 'identify': 26, 'phenomena': 26, 'dried': 26, 'fellowship': 26, 'Zen': 26, 'Jew': 26, 'aesthetic': 26, 'velocity': 26, 'bullet': 26, 'frozen': 26, 'stained': 26, 'staring': 26, 'Palfrey': 26, 'variables': 26, 'shirt': 26, 'Patchen': 26, 'Pathology': 26, 'Agreement': 26, 'tangent': 26, 'Johnnie': 26, 'gyro': 26, 'Ekstrohm': 26, 'Helva': 26, 'Greg': 26, 'departments': 25, 'eliminate': 25, 'Aug.': 25, 'settlement': 25, 'shortly': 25, 'allowances': 25, 'sessions': 25, 'abandoned': 25, 'recommend': 25, 'Houston': 25, 'Owen': 25, 'intelligent': 25, 'prevention': 25, 'composition': 25, '300': 25, 'medicine': 25, 'Speaker': 25, 'NATO': 25, 'directions': 25, 'Nixon': 25, 'assist': 25, 'intervals': 25, 'bearing': 25, 'attracted': 25, 'accused': 25, 'dilemma': 25, 'prospect': 25, 'Director': 25, 'Eugene': 25, 'builders': 25, 'laboratory': 25, 'torn': 25, 'mothers': 25, 'inspired': 25, 'volunteers': 25, 'stretch': 25, 'Art': 25, 'delayed': 25, 'king': 25, 'Nick': 25, 'productive': 25, 'aboard': 25, 'reaches': 25, 'harm': 25, 'Wally': 25, 'entry': 25, 'Pittsburgh': 25, 'golden': 25, 'breaking': 25, 'publicity': 25, 'shelters': 25, 'D.C.': 25, 'bath': 25, 'temperatures': 25, 'exhibit': 25, 'Valley': 25, 'suits': 25, 'partially': 25, 'designs': 25, 'promptly': 25, 'gear': 25, 'cloud': 25, 'Mother': 25, 'Village': 25, 'dawn': 25, 'generous': 25, 'attacked': 25, 'communications': 25, 'Son': 25, 'Tim': 25, 'bird': 25, 'demonstration': 25, 'attached': 25, 'landing': 25, 'Probably': 25, 'roughly': 25, 'O': 25, 'exceptions': 25, 'mobile': 25, 'charm': 25, 'vivid': 25, 'Use': 25, 'flexible': 25, 'instruments': 25, 'grateful': 25, 'Carolina': 25, 'rational': 25, 'painful': 25, 'proceeded': 25, 'Whatever': 25, 'stars': 25, 'glanced': 25, 'ritual': 25, 'scholars': 25, 'wars': 25, 'responsibilities': 25, 'besides': 25, 'surrounding': 25, 'peaceful': 25, 'approaches': 25, 'repeat': 25, 'vein': 25, 'lonely': 25, 'hanging': 25, 'fist': 25, 'component': 25, 'magazines': 25, 'continually': 25, 'observe': 25, 'destructive': 25, 'feeding': 25, 'gentleman': 25, 'supporting': 25, 'disk': 25, 'subtle': 25, 'reflect': 25, 'switches': 25, 'worthy': 25, 'frontier': 25, 'beard': 25, 'transformed': 25, 'traders': 25, 'oral': 25, "O'Banion": 25, 'Title': 25, 'Bang-Jensen': 25, 'SBA': 25, 'Alec': 25, 'Barton': 25, 'Tilghman': 25, 'enthusiastic': 24, 'speaker': 24, 'entering': 24, 'contracts': 24, 'constitutional': 24, 'insure': 24, 'subjected': 24, 'absorbed': 24, 'recommendation': 24, 'racial': 24, 'viewed': 24, '70': 24, 'retirement': 24, 'qualified': 24, 'backed': 24, 'allies': 24, 'march': 24, 'realization': 24, 'wherever': 24, 'Economic': 24, 'Development': 24, 'neighboring': 24, 'Very': 24, 'full-time': 24, 'cited': 24, 'cocktail': 24, 'Jersey': 24, 'managers': 24, 'announcement': 24, 'honored': 24, 'Northern': 24, 'Six': 24, 'Premier': 24, 'promotion': 24, 'parade': 24, 'Puerto': 24, 'probable': 24, 'critic': 24, 'Portland': 24, 'noon': 24, 'accomplish': 24, 'contest': 24, 'Small': 24, 'promising': 24, 'drill': 24, 'Moore': 24, 'chances': 24, 'conductor': 24, 'Post': 24, 'Ford': 24, 'Broadway': 24, 'arrive': 24, 'Arts': 24, 'Mason': 24, 'Social': 24, 'prospects': 24, 'freight': 24, 'nowhere': 24, 'Blanche': 24, 'cook': 24, 'firing': 24, 'commander': 24, 'seized': 24, 'applications': 24, 'slid': 24, 'tribute': 24, 'planes': 24, 'magnetic': 24, 'adult': 24, 'hired': 24, 'expressing': 24, 'faint': 24, 'tail': 24, 'wings': 24, 'phases': 24, 'consisted': 24, 'dealer': 24, 'woods': 24, 'assembled': 24, 'functional': 24, "they'd": 24, 'hang': 24, 'Mexican': 24, 'exclusively': 24, 'correspondence': 24, 'nearest': 24, 'tended': 24, 'aimed': 24, 'specimen': 24, 'impressions': 24, 'drivers': 24, 'scarcely': 24, 'wildly': 24, 'access': 24, 'Further': 24, 'wholly': 24, 'pupils': 24, 'chin': 24, 'excuse': 24, 'rice': 24, 'operational': 24, 'prayer': 24, 'nervous': 24, 'interpreted': 24, 'Sure': 24, 'desires': 24, 'wishes': 24, 'Independence': 24, 'automobiles': 24, 'accurately': 24, 'vague': 24, 'philosophical': 24, 'fog': 24, 'actor': 24, 'continuity': 24, 'yours': 24, 'cycle': 24, "You've": 24, 'categories': 24, 'theological': 24, 'peas': 24, 'rigid': 24, 'contacts': 24, 'detergent': 24, 'tubes': 24, 'sitter': 24, 'wines': 24, 'diffusion': 24, 'Theresa': 24, 'registration': 23, 'occupation': 23, 'assistant': 23, 'midnight': 23, 'Everything': 23, 'thinks': 23, 'discrimination': 23, 'Cook': 23, "President's": 23, 'Presidential': 23, 'Foreign': 23, 'regime': 23, 'channels': 23, 'part-time': 23, 'Gen.': 23, 'Should': 23, 'compete': 23, 'factory': 23, 'luncheon': 23, 'league': 23, 'explicit': 23, 'colleagues': 23, 'estimates': 23, 'historic': 23, 'governmental': 23, 'settle': 23, 'dedicated': 23, 'Douglas': 23, 'widow': 23, '29': 23, 'beliefs': 23, 'Testament': 23, 'stressed': 23, 'relieved': 23, 'Pete': 23, 'Casey': 23, 'Maryland': 23, 'controlling': 23, 'pack': 23, 'bases': 23, 'Suddenly': 23, 'Ruth': 23, 'code': 23, 'harder': 23, 'terror': 23, 'Westminster': 23, 'Press': 23, 'Jean': 23, 'suggestions': 23, 'furnished': 23, 'Palace': 23, 'civilian': 23, 'arrival': 23, 'resumed': 23, 'Soon': 23, 'cleared': 23, 'lawyers': 23, 'killing': 23, 'treat': 23, 'category': 23, 'Madison': 23, 'incredible': 23, 'dive': 23, 'attempting': 23, 'trading': 23, 'depression': 23, 'manufacturer': 23, 'System': 23, 'weekly': 23, 'jump': 23, 'coverage': 23, 'adjusted': 23, 'Symphony': 23, 'Tell': 23, 'charming': 23, 'Hollywood': 23, 'noble': 23, 'leather': 23, 'stuck': 23, 'musician': 23, 'employee': 23, 'justified': 23, 'Daily': 23, 'giant': 23, 'northern': 23, 'barrel': 23, 'sink': 23, 'fortune': 23, 'unexpected': 23, 'hungry': 23, 'protest': 23, 'cheap': 23, 'falls': 23, 'generations': 23, 'wake': 23, 'realism': 23, 'plug': 23, 'continuously': 23, 'reflects': 23, 'Father': 23, 'meaningful': 23, 'bore': 23, 'heaven': 23, 'grades': 23, "Brown's": 23, 'exercises': 23, 'lock': 23, 'trace': 23, 'refrigerator': 23, 'outdoor': 23, 'lands': 23, 'enable': 23, 'rocks': 23, 'twenty-five': 23, 'exposure': 23, 'Tennessee': 23, 'belly': 23, 'cigarette': 23, 'radar': 23, 'narrative': 23, 'genius': 23, 'curiosity': 23, 'stupid': 23, 'astronomy': 23, 'degrees': 23, 'hurried': 23, 'mathematical': 23, 'assumptions': 23, 'pond': 23, 'empirical': 23, 'excited': 23, 'habit': 23, 'lengths': 23, 'zero': 23, 'imitation': 23, 'saddle': 23, 'heating': 23, 'fibers': 23, 'folklore': 23, 'norms': 23, 'wounded': 23, 'whispered': 23, 'Fogg': 23, "He'd": 23, 'anti-Semitism': 23, 'authors': 23, 'Maggie': 23, 'Quiney': 23, 'Spencer': 23, 'substrate': 23, 'snakes': 23, 'Onset': 23, 'ambiguous': 22, 'servants': 22, 'warned': 22, 'registered': 22, 'Meanwhile': 22, 'traveled': 22, 'Miller': 22, 'anticipated': 22, 'obligations': 22, 'complained': 22, 'expects': 22, 'Affairs': 22, 'aids': 22, 'ward': 22, 'carries': 22, 'voluntary': 22, 'rank': 22, 'troubles': 22, 'appreciation': 22, 'attending': 22, 'suited': 22, 'Royal': 22, 'earliest': 22, 'trucks': 22, 'retained': 22, 'posts': 22, 'intentions': 22, 'democracy': 22, 'tractor': 22, 'Green': 22, 'conspiracy': 22, 'uncertain': 22, 'overseas': 22, 'biggest': 22, 'bridges': 22, 'Law': 22, 'adding': 22, 'Ralph': 22, 'Rev.': 22, 'Miami': 22, 'fifth': 22, 'triumph': 22, 'Baltimore': 22, "we'd": 22, 'Don': 22, 'sighed': 22, 'metropolitan': 22, 'amateur': 22, 'respects': 22, 'dealt': 22, 'tie': 22, "shouldn't": 22, 'frank': 22, 'engagement': 22, 'Music': 22, 'pressing': 22, 'adults': 22, 'chairs': 22, 'Vienna': 22, 'worn': 22, 'manufacturing': 22, 'altered': 22, 'sharing': 22, 'valid': 22, 'Student': 22, 'rifles': 22, 'evidently': 22, 'S': 22, 'Elaine': 22, 'assessment': 22, 'convenient': 22, 'loaded': 22, 'insects': 22, 'convention': 22, 'spare': 22, 'gang': 22, 'factories': 22, 'regularly': 22, 'lift': 22, 'autumn': 22, 'surrender': 22, 'plates': 22, 'resist': 22, "America's": 22, 'Century': 22, 'pulling': 22, 'ownership': 22, 'participate': 22, 'totally': 22, 'tip': 22, 'belongs': 22, 'panic': 22, 'capabilities': 22, 'select': 22, 'occasions': 22, 'describes': 22, 'mess': 22, '0': 22, 'bombers': 22, 'successes': 22, 'grows': 22, 'whisky': 22, 'sticks': 22, 'hide': 22, 'sentiment': 22, 'searching': 22, 'implications': 22, "she's": 22, 'honey': 22, 'cat': 22, 'fault': 22, 'Spirit': 22, 'casual': 22, 'Sandburg': 22, 'Victor': 22, 'freely': 22, 'laughter': 22, 'destiny': 22, 'drinks': 22, 'Article': 22, 'targets': 22, 'thrust': 22, 'sphere': 22, 'relevant': 22, 'novels': 22, 'melting': 22, 'formulas': 22, 'unfortunate': 22, 'deck': 22, 'joke': 22, 'uneasy': 22, 'souls': 22, 'reliable': 22, 'possessed': 22, 'eliminated': 22, 'bother': 22, 'insight': 22, 'preparing': 22, 'steadily': 22, 'oxidation': 22, 'planets': 22, 'temple': 22, 'Alaska': 22, 'structural': 22, 'frequency': 22, 'displacement': 22, 'dressing': 22, 'plaster': 22, 'economical': 22, 'exploration': 22, 'herd': 22, 'Anglo-Saxon': 22, 'happiness': 22, 'yelled': 22, 'middle-class': 22, 'alienation': 22, 'sampling': 22, 'urethane': 22, 'foams': 22, 'Bobbie': 22, 'Deegan': 22, 'recommendations': 21, 'Police': 21, 'Party': 21, 'Being': 21, 'corporations': 21, 'saving': 21, 'delay': 21, 'relatives': 21, 'Nov.': 21, 'originally': 21, 'Morris': 21, 'questioning': 21, 'Capitol': 21, "children's": 21, 'mutual': 21, 'Detroit': 21, 'cope': 21, '1948': 21, 'pertinent': 21, 'assembly': 21, 'Johnston': 21, 'charter': 21, 'strategy': 21, 'hesitated': 21, 'respond': 21, 'launched': 21, 'crises': 21, 'Michigan': 21, 'bid': 21, '1950': 21, 'dynamic': 21, 'Wagner': 21, 'Apparently': 21, 'investigations': 21, 'submitted': 21, 'forming': 21, 'Rico': 21, 'keeps': 21, 'Could': 21, 'harmony': 21, 'unlikely': 21, 'accepting': 21, 'preliminary': 21, 'Home': 21, 'behalf': 21, 'loyalty': 21, 'Philip': 21, 'hits': 21, 'Russ': 21, 'races': 21, 'Mills': 21, 'Bobby': 21, 'miss': 21, 'doubtful': 21, 'definitely': 21, 'statistics': 21, 'spectacular': 21, 'fans': 21, 'masses': 21, 'hearts': 21, 'Vernon': 21, 'balanced': 21, 'Ben': 21, 'Missouri': 21, 'despair': 21, 'Warwick': 21, 'teams': 21, 'stiff': 21, 'thank': 21, 'Francis': 21, 'Eastern': 21, 'concerts': 21, 'luxury': 21, 'skirt': 21, 'seated': 21, 'Kay': 21, "We've": 21, 'Book': 21, 'Taylor': 21, 'Wall': 21, 'Queen': 21, 'dances': 21, '28': 21, 'availability': 21, 'killer': 21, 'Joyce': 21, 'drawings': 21, 'suspected': 21, 'Report': 21, 'governing': 21, 'prospective': 21, 'profits': 21, 'painter': 21, 'wheels': 21, 'defend': 21, 'farmer': 21, 'crack': 21, 'Di': 21, 'characterized': 21, 'moderate': 21, 'chiefly': 21, 'computed': 21, 'inclined': 21, 'lowered': 21, 'heels': 21, 'dishes': 21, 'pile': 21, 'Go': 21, 'passengers': 21, "weren't": 21, 'addresses': 21, 'rhythm': 21, 'Which': 21, "John's": 21, 'ideological': 21, 'fluid': 21, 'Vermont': 21, 'Above': 21, 'urgent': 21, 'pause': 21, 'conferences': 21, 'substitute': 21, 'liberals': 21, '34': 21, 'ugly': 21, 'Having': 21, 'seventeen': 21, 'racing': 21, 'Belgians': 21, 'obliged': 21, 'Katanga': 21, 'respectable': 21, 'Note': 21, 'mines': 21, 'displays': 21, 'educated': 21, 'enjoyment': 21, 'backward': 21, 'craft': 21, 'desperately': 21, 'shame': 21, 'Utopia': 21, 'certainty': 21, 'Podger': 21, 'Rock': 21, 'Aristotle': 21, 'classification': 21, 'Everyone': 21, 'Nation': 21, 'moreover': 21, 'Cromwell': 21, 'persuaded': 21, 'thorough': 21, 'Program': 21, 'Marshal': 21, 'tale': 21, 'Consider': 21, 'envelope': 21, 'possession': 21, 'H': 21, 'shining': 21, 'intimate': 21, 'arbitrary': 21, 'traditions': 21, 'Poor': 21, 'roots': 21, 'cabin': 21, 'meanings': 21, 'habits': 21, 'dare': 21, 'neat': 21, 'fortunate': 21, 'boating': 21, 'hen': 21, 'milligrams': 21, 'protein': 21, 'stumbled': 21, 'Reverend': 21, 'mode': 21, 'reveals': 21, 'Lo': 21, 'Shu': 21, 'planet': 21, 'rent': 21, 'stern': 21, 'nuts': 21, 'particle': 21, 'garage': 21, 'linear': 21, "patient's": 21, 'smart': 21, 'Faulkner': 21, 'complement': 21, 'mate': 21, 'regiment': 21, 'Hell': 21, 'soap': 21, 'Bridget': 21, 'Wait': 21, 'planetary': 21, 'occurring': 21, 'Keith': 21, 'Steele': 21, 'Completion': 21, 'hypothalamic': 21, 'rang': 21, 'Maude': 21, 'Hoag': 21, "B'dikkat": 21, 'Penny': 21, 'Allen': 20, 'orderly': 20, 'receives': 20, 'taxpayers': 20, 'Jan.': 20, 'adjustments': 20, 'repair': 20, 'votes': 20, 'banks': 20, 'enforced': 20, 'El': 20, 'Feb.': 20, 'solve': 20, 'monthly': 20, 'quarrel': 20, 'grants': 20, 'illness': 20, 'rehabilitation': 20, 'confirmed': 20, 'speeches': 20, 'disposal': 20, 'inspection': 20, 'attacks': 20, 'acceptable': 20, 'intervention': 20, 'negotiations': 20, 'naval': 20, 'displayed': 20, 'encouraging': 20, 'residents': 20, 'procurement': 20, 'Notte': 20, 'conditioned': 20, 'greeted': 20, 'expanded': 20, 'emphasize': 20, 'Manhattan': 20, 'temporarily': 20, 'puts': 20, '1946': 20, 'decent': 20, 'ranks': 20, 'dedication': 20, "city's": 20, 'Donald': 20, 'Inc.': 20, '75': 20, 'injured': 20, 'flash': 20, 'patience': 20, 'trends': 20, 'sixth': 20, 'exhibition': 20, 'pitch': 20, 'purchased': 20, 'strongest': 20, 'grabbed': 20, 'Florida': 20, 'crossing': 20, 'clock': 20, 'grip': 20, 'guys': 20, 'pitcher': 20, '1951': 20, 'helpless': 20, 'replacement': 20, '1949': 20, 'Point': 20, 'Arnold': 20, 'nerves': 20, 'bowl': 20, 'Major': 20, 'Opera': 20, 'fitted': 20, 'motel': 20, 'suite': 20, 'promises': 20, 'colorful': 20, 'clothing': 20, 'queen': 20, 'Spring': 20, 'Corporation': 20, 'secrets': 20, 'criminal': 20, 'patrol': 20, 'revolutionary': 20, 'converted': 20, 'crash': 20, 'auto': 20, 'conversion': 20, 'guided': 20, "company's": 20, 'brushed': 20, 'Fund': 20, 'crop': 20, 'newer': 20, 'warrant': 20, 'lucky': 20, 'merger': 20, 'Volume': 20, 'pipe': 20, 'struggling': 20, 'Orchestra': 20, 'cream': 20, "hasn't": 20, 'figured': 20, 'Family': 20, 'Abel': 20, 'shaking': 20, 'tent': 20, 'blonde': 20, 'define': 20, 'responded': 20, 'Outside': 20, 'commodities': 20, 'indirect': 20, 'forgive': 20, 'binding': 20, 'lean': 20, 'landscape': 20, 'amazing': 20, 'alike': 20, 'passages': 20, 'gentlemen': 20, 'wealth': 20, 'Alabama': 20, 'consequently': 20, 'savage': 20, 'shadows': 20, 'fraction': 20, 'beam': 20, 'precious': 20, 'vacuum': 20, 'endless': 20, 'minority': 20, 'urge': 20, 'competent': 20, 'convictions': 20, 'diet': 20, 'bold': 20, 'fascinating': 20, 'accordance': 20, 'motives': 20, 'listeners': 20, 'distinctive': 20, 'Heaven': 20, 'attain': 20, 'sweat': 20, 'wondering': 20, 'wit': 20, 'solely': 20, 'Upon': 20, 'grains': 20, 'sidewalk': 20, 'brave': 20, 'creatures': 20, 'melody': 20, 'Swift': 20, 'similarly': 20, 'breathing': 20, 'devil': 20, 'heroic': 20, 'manage': 20, 'authentic': 20, 'Laura': 20, 'Dolores': 20, 'leaped': 20, 'transformation': 20, 'physiological': 20, 'worries': 20, 'punishment': 20, "Christ's": 20, 'B.C.': 20, 'relating': 20, 'probabilities': 20, 'Often': 20, 'impulse': 20, 'package': 20, 'anticipation': 20, 'slide': 20, 'screw': 20, 'tire': 20, 'Cathy': 20, 'sauce': 20, 'Michelangelo': 20, 'invention': 20, 'cheek': 20, 'inventory': 20, 'pursue': 20, 'peered': 20, 'crawled': 20, 'Pa': 20, 'Borden': 20, 'Plato': 20, 'Oedipus': 20, 'lungs': 20, 'input': 20, 'refund': 20, '/': 20, 'suitcase': 20, 'Pip': 20, 'Skyros': 20, 'Freddy': 20, 'Chairman': 19, 'Gov.': 19, 'consistently': 19, 'witnesses': 19, 'savings': 19, 'stake': 19, 'remainder': 19, 'physics': 19, 'arrest': 19, 'startled': 19, 'ruling': 19, 'whereby': 19, 'imposed': 19, 'discharge': 19, 'avoided': 19, 'submarines': 19, 'dominated': 19, 'Cuban': 19, 'sailing': 19, "state's": 19, 'bet': 19, 'enforcement': 19, 'revenue': 19, 'supervision': 19, 'tangible': 19, 'politicians': 19, 'aroused': 19, 'explains': 19, 'tactics': 19, 'respective': 19, 'surrounded': 19, 'stresses': 19, 'filing': 19, 'hotels': 19, 'males': 19, 'Memorial': 19, 'guards': 19, 'Vincent': 19, 'rush': 19, 'Salem': 19, 'compromise': 19, 'strategic': 19, 'clubs': 19, 'plate': 19, 'Stadium': 19, 'champion': 19, 'specialists': 19, 'Unfortunately': 19, 'wiped': 19, 'swing': 19, 'whip': 19, 'Lane': 19, 'achievements': 19, 'drank': 19, 'stroke': 19, '1927': 19, 'Foundation': 19, 'Frederick': 19, 'loud': 19, 'addressed': 19, 'Calif.': 19, 'solved': 19, 'bundle': 19, 'register': 19, 'improvements': 19, 'victims': 19, 'bay': 19, 'arrested': 19, 'cottage': 19, 'hidden': 19, 'lid': 19, 'packed': 19, 'Road': 19, 'lacked': 19, 'condemned': 19, 'prisoners': 19, 'attract': 19, 'sheep': 19, 'assessors': 19, 'companion': 19, 'mercy': 19, 'rid': 19, 'jet': 19, 'Allied': 19, 'Shore': 19, 'earnings': 19, 'winds': 19, 'venture': 19, 'Rather': 19, 'Seven': 19, 'retail': 19, 'notable': 19, 'affects': 19, 'demanding': 19, 'allows': 19, 'toes': 19, 'loves': 19, 'Mexico': 19, 'likes': 19, 'indication': 19, 'label': 19, 'ladder': 19, 'dreamed': 19, 'architect': 19, 'foundation': 19, 'Pamela': 19, 'slip': 19, 'spell': 19, 'neatly': 19, 'lobby': 19, 'decisive': 19, 'dated': 19, 'fatal': 19, 'insistence': 19, 'midst': 19, 'devotion': 19, 'produces': 19, 'fantastic': 19, 'ambition': 19, 'combinations': 19, 'mechanics': 19, 'slope': 19, 'rolling': 19, 'ultimately': 19, 'reporter': 19, 'startling': 19, 'happily': 19, 'Third': 19, 'rises': 19, 'variations': 19, 'exceed': 19, 'preserved': 19, 'canvas': 19, 'overwhelming': 19, 'theirs': 19, 'bullets': 19, 'nest': 19, 'civic': 19, 'assurance': 19, 'harbor': 19, 'individually': 19, 'lesser': 19, 'lighting': 19, 'bones': 19, 'cholesterol': 19, 'verbal': 19, 'petitioner': 19, 'ignore': 19, 'Means': 19, 'applies': 19, 'gardens': 19, 'united': 19, 'curves': 19, 'hatred': 19, 'scared': 19, 'motive': 19, 'Land': 19, 'trap': 19, 'depths': 19, 'poverty': 19, 'Wisconsin': 19, 'tales': 19, 'broader': 19, 'sketches': 19, 'Paula': 19, 'Doc': 19, 'fever': 19, 'realm': 19, 'Accordingly': 19, 'Throughout': 19, 'salesmen': 19, 'optical': 19, 'theatre': 19, 'cancer': 19, 'hypothalamus': 19, 'immortality': 19, 'assert': 19, 'numerical': 19, 'bend': 19, 'dim': 19, 'pupil': 19, 'intermediate': 19, 'twisted': 19, 'fractions': 19, 'timber': 19, 'boots': 19, 'foil': 19, 'Form': 19, 'glued': 19, 'awake': 19, 'essay': 19, 'distinguish': 19, 'patents': 19, 'lb.': 19, 'therapist': 19, 'nude': 19, 'murderer': 19, 'tsunami': 19, 'Mobile': 19, "State's": 19, 'Mars': 19, 'Rousseau': 19, 'smelled': 19, 'Gun': 19, 'reactivity': 19, 'tetrachloride': 19, 'sera': 19, 'vector': 19, 'vertex': 19, 'Rourke': 19, 'Killpath': 19, 'Haney': 19, 'Letch': 19, 'Grand': 18, 'voters': 18, 'commented': 18, 'priority': 18, 'privilege': 18, 'policeman': 18, 'Austin': 18, 'folks': 18, 'underground': 18, 'earned': 18, 'observers': 18, 'stolen': 18, 'deliver': 18, 'proceedings': 18, 'judges': 18, 'repeatedly': 18, '35': 18, 'aged': 18, 'hospitals': 18, 'emerge': 18, 'Organization': 18, 'proceed': 18, 'remarkably': 18, 'compelled': 18, 'Southeast': 18, 'faster': 18, 'Arkansas': 18, 'arose': 18, 'lip': 18, 'basically': 18, 'talks': 18, 'announce': 18, 'succession': 18, 'mathematics': 18, 'shrugged': 18, '1945': 18, 'Columbia': 18, 'Islands': 18, 'camps': 18, 'ranged': 18, 'directors': 18, "Can't": 18, 'objection': 18, 'pronounced': 18, 'representation': 18, 'sons': 18, 'bargaining': 18, 'workshop': 18, 'pioneer': 18, 'Dick': 18, 'physically': 18, 'Yankee': 18, 'coach': 18, 'bat': 18, 'Tokyo': 18, 'slender': 18, 'snapped': 18, 'favored': 18, 'kicked': 18, 'string': 18, 'Academy': 18, 'splendid': 18, 'strikes': 18, 'player': 18, 'Room': 18, '400': 18, 'ceremony': 18, 'prize': 18, 'tournament': 18, 'Ernie': 18, 'Harvey': 18, 'Stevens': 18, 'costumes': 18, 'Tommy': 18, 'toast': 18, 'boss': 18, 'birthday': 18, '80': 18, 'Week': 18, 'Ah': 18, 'Meredith': 18, 'competence': 18, "men's": 18, 'invitation': 18, 'brick': 18, 'predicted': 18, 'Harbor': 18, 'buried': 18, 'Kowalski': 18, 'escaped': 18, 'corporate': 18, 'crops': 18, 'wildlife': 18, 'livestock': 18, 'emphasized': 18, 'businesses': 18, 'flower': 18, 'Stephen': 18, 'investigated': 18, 'acted': 18, 'officially': 18, 'shipping': 18, 'ratios': 18, 'overhead': 18, 'makers': 18, 'gains': 18, 'supplement': 18, 'classroom': 18, 'gather': 18, 'abrupt': 18, 'sank': 18, '50%': 18, 'disposed': 18, 'supreme': 18, 'designer': 18, 'marble': 18, 'Oxford': 18, 'lamp': 18, 'resting': 18, 'parlor': 18, 'assignments': 18, 'monument': 18, 'attributed': 18, 'gallery': 18, 'informal': 18, 'tensions': 18, 'Beyond': 18, 'mechanisms': 18, 'founded': 18, 'specialized': 18, 'manufacture': 18, 'commerce': 18, 'drops': 18, 'terribly': 18, 'Said': 18, 'lap': 18, 'instantly': 18, 'earnest': 18, 'ridiculous': 18, 'cooperative': 18, 'Modern': 18, 'religions': 18, 'autonomy': 18, 'comprehensive': 18, 'jungle': 18, 'applicable': 18, 'humble': 18, 'defended': 18, 'spectacle': 18, 'submit': 18, 'interrupted': 18, 'servant': 18, 'partnership': 18, 'dairy': 18, 'congregations': 18, 'drift': 18, 'rubbed': 18, 'exceptional': 18, 'plainly': 18, 'consistency': 18, 'Remember': 18, 'tooth': 18, 'phrases': 18, 'styles': 18, 'bathroom': 18, 'sung': 18, 'circuit': 18, 'causing': 18, 'locations': 18, 'relax': 18, 'deadly': 18, 'brass': 18, 'sixteen': 18, 'naive': 18, 'sixty': 18, 'hostile': 18, 'cosmic': 18, 'theoretical': 18, 'denial': 18, 'shifted': 18, 'blowing': 18, 'corners': 18, 'faded': 18, 'rugged': 18, 'affection': 18, 'Jazz': 18, 'refers': 18, 'speaks': 18, 'simpler': 18, 'eighteenth': 18, 'Few': 18, 'tray': 18, 'theories': 18, 'situated': 18, 'differ': 18, 'consumption': 18, 'Keys': 18, 'fats': 18, 'theology': 18, 'technological': 18, 'glory': 18, 'History': 18, 'proportions': 18, 'interval': 18, 'exercised': 18, 'Religion': 18, 'daytime': 18, 'drug': 18, 'brightness': 18, 'puzzled': 18, 'straightened': 18, 'mustard': 18, 'aluminum': 18, 'bunk': 18, 'movable': 18, 'grams': 18, 'systematic': 18, 'roared': 18, 'epic': 18, 'subjective': 18, 'Sergeant': 18, 'marry': 18, 'Upton': 18, 'adolescence': 18, 'Griffith': 18, 'Helion': 18, "doctor's": 18, 'Saxon': 18, 'Cobb': 18, 'iodine': 18, 'nonspecific': 18, 'effluent': 18, 'Stevie': 18, 'Andrei': 18, 'Kitti': 18, 'Madden': 18, 'Langford': 18, 'Barco': 18, 'Fulton': 17, 'praise': 17, 'compensation': 17, 'jail': 17, 'Health': 17, 'Rob': 17, 'consulted': 17, 'amendment': 17, 'formally': 17, 'anonymous': 17, 'stocks': 17, 'pockets': 17, 'Gulf': 17, 'violation': 17, 'associate': 17, 'underlying': 17, 'Cape': 17, 'Pierre': 17, 'Community': 17, 'bureau': 17, 'persuade': 17, 'popularity': 17, 'friction': 17, 'Geneva': 17, 'Lao': 17, 'useless': 17, 'performing': 17, 'vitality': 17, 'asks': 17, 'Raymond': 17, 'Fire': 17, 'assign': 17, 'undoubtedly': 17, 'chorus': 17, 'vicious': 17, 'resentment': 17, 'visits': 17, 'declined': 17, 'interviews': 17, 'scientist': 17, 'pays': 17, 'separation': 17, 'kingdom': 17, 'slowed': 17, 'erected': 17, 'loyal': 17, 'stripped': 17, 'alternatives': 17, 'squeezed': 17, 'followers': 17, 'females': 17, 'K.': 17, 'designated': 17, 'Baptist': 17, 'explosive': 17, 'Dec.': 17, 'grasp': 17, 'motions': 17, 'eighth': 17, 'balls': 17, 'reporting': 17, 'defensive': 17, 'wing': 17, 'Cleveland': 17, 'Hank': 17, 'throwing': 17, 'checks': 17, 'cracked': 17, 'Standard': 17, 'fan': 17, 'seasons': 17, 'shaped': 17, 'awards': 17, 'Show': 17, 'departure': 17, 'barriers': 17, 'sport': 17, 'anniversary': 17, 'admired': 17, 'holiday': 17, 'via': 17, 'awarded': 17, 'muttered': 17, "They'll": 17, 'Security': 17, 'Milton': 17, 'Usually': 17, 'wagons': 17, 'crown': 17, 'convenience': 17, 'merchants': 17, 'uncle': 17, 'cooled': 17, 'codes': 17, 'Simms': 17, "woman's": 17, 'rested': 17, 'candle': 17, 'spontaneous': 17, 'describing': 17, 'captured': 17, 'renewed': 17, 'indifference': 17, 'entries': 17, 'intersection': 17, 'Banks': 17, 'flowing': 17, 'Anniston': 17, 'Carroll': 17, 'preservation': 17, 'fuel': 17, 'suicide': 17, 'counted': 17, 'inquiries': 17, 'chip': 17, 'gin': 17, 'pushing': 17, 'delivery': 17, 'chart': 17, 'Golden': 17, 'logic': 17, 'Connecticut': 17, 'guitar': 17, 'accompanying': 17, 'crystal': 17, 'Ballet': 17, 'preaching': 17, 'cap': 17, 'acquisition': 17, 'undertaken': 17, 'stretching': 17, 'diplomacy': 17, 'lest': 17, 'aggressive': 17, 'notions': 17, 'illustrate': 17, 'supernatural': 17, 'brand': 17, 'destroying': 17, 'artificial': 17, 'shocked': 17, 'sums': 17, 'flood': 17, 'customs': 17, 'chaos': 17, 'tanks': 17, 'quote': 17, 'heroes': 17, 'possess': 17, 'Frankie': 17, 'cats': 17, 'belonged': 17, 'vaguely': 17, 'Hamilton': 17, 'palm': 17, 'engines': 17, 'capture': 17, 'loudly': 17, 'Special': 17, 'copies': 17, 'advances': 17, 'Fortunately': 17, 'Keep': 17, 'dome': 17, 'seal': 17, 'campaigns': 17, 'mistaken': 17, 'Otherwise': 17, 'resolved': 17, 'formidable': 17, 'expecting': 17, 'acceleration': 17, 'rests': 17, 'Far': 17, 'Horn': 17, 'editors': 17, 'pastor': 17, 'desert': 17, 'infinite': 17, 'bears': 17, 'progressive': 17, 'neighborhoods': 17, 'enjoying': 17, 'staying': 17, 'surprisingly': 17, 'shorter': 17, 'basket': 17, 'collar': 17, 'Listen': 17, 'brains': 17, 'Christians': 17, "husband's": 17, 'Please': 17, 'socialism': 17, 'consist': 17, 'awful': 17, 'well-known': 17, 'Burma': 17, 'sole': 17, 'substances': 17, 'prevailing': 17, 'neglected': 17, 'shifts': 17, 'obscure': 17, 'print': 17, 'historians': 17, 'hypothesis': 17, 'interaction': 17, 'Seventh': 17, 'transport': 17, 'Love': 17, 'bitterness': 17, 'beloved': 17, 'reverse': 17, 'flame': 17, 'Benson': 17, 'absurd': 17, 'implied': 17, 'present-day': 17, 'medieval': 17, 'inquiry': 17, 'holy': 17, 'hunger': 17, 'and/or': 17, 'comparative': 17, 'v.': 17, 'god': 17, 'distances': 17, 'hay': 17, 'Ma': 17, 'sunlight': 17, 'photograph': 17, 'lit': 17, 'circular': 17, 'transom': 17, 'milling': 17, 'ammunition': 17, 'formulation': 17, 'Lieutenant': 17, 'screaming': 17, 'screamed': 17, 'voyage': 17, 'intuition': 17, 'plantation': 17, 'cops': 17, 'Giffen': 17, 'Lizzie': 17, 'forgot': 17, 'murmured': 17, 'molecular': 17, 'sensed': 17, 'stall': 17, 'Trevelyan': 17, 'Krim': 17, 'TSH': 17, 'corridor': 17, 'abruptly': 17, 'BOD': 17, 'accelerometer': 17, 'Yeah': 17, 'Ada': 17, 'Angie': 17, 'Lalaurie': 17, 'Nadine': 17, 'Moreland': 17, 'deserves': 16, 'Superior': 16, 'legislators': 16, 'improving': 16, 'farms': 16, 'raises': 16, 'Revenue': 16, 'appearing': 16, 'circulation': 16, 'Scott': 16, 'fee': 16, 'sites': 16, 'costly': 16, 'gotten': 16, 'Mission': 16, "boy's": 16, 'chemistry': 16, 'inquired': 16, 'Asked': 16, 'abuse': 16, 'financed': 16, 'payroll': 16, 'nurse': 16, 'unnecessary': 16, 'ambitious': 16, 'requiring': 16, 'geographical': 16, 'Viet': 16, 'disturbing': 16, 'severely': 16, 'shops': 16, '1910': 16, 'consent': 16, 'draft': 16, '500': 16, 'Military': 16, 'fires': 16, 'ivory': 16, 'ticket': 16, 'successor': 16, 'confirm': 16, 'taxi': 16, 'halfway': 16, 'viewpoint': 16, 'commitments': 16, 'quest': 16, 'weary': 16, 'clearing': 16, 'trim': 16, 'legitimate': 16, 'adequately': 16, 'Montgomery': 16, 'apartments': 16, 'Greece': 16, '42': 16, 'instructed': 16, 'elementary': 16, 'Temple': 16, 'strengthen': 16, 'reads': 16, 'graduates': 16, 'Brooks': 16, 'chores': 16, 'bounced': 16, 'slammed': 16, 'flavor': 16, 'squad': 16, 'Walker': 16, 'pitching': 16, 'allowance': 16, 'claiming': 16, "he'll": 16, 'Nelson': 16, 'spotted': 16, 'M': 16, 'Denver': 16, 'star': 16, 'loop': 16, 'Ray': 16, 'cherished': 16, 'waved': 16, 'span': 16, 'hitting': 16, 'I.': 16, 'Stuart': 16, 'commit': 16, 'fame': 16, 'expectations': 16, 'differently': 16, 'inherited': 16, 'earn': 16, 'gown': 16, 'Byron': 16, 'Back': 16, 'goodness': 16, 'confident': 16, 'collect': 16, 'telephoned': 16, 'Me': 16, 'opens': 16, 'import': 16, 'lessons': 16, 'link': 16, 'tile': 16, 'suburbs': 16, 'Rose': 16, 'portrait': 16, 'Mount': 16, 'Fifth': 16, 'detectives': 16, 'broadcast': 16, 'mortgage': 16, 'asserted': 16, 'steam': 16, 'Way': 16, 'lover': 16, 'spun': 16, 'confession': 16, 'overnight': 16, 'mailed': 16, 'Line': 16, 'priests': 16, 'obligation': 16, 'documents': 16, 'operators': 16, 'inability': 16, 'Stein': 16, 'youngsters': 16, 'Cranston': 16, 'mistakes': 16, 'breed': 16, 'cockpit': 16, 'beautifully': 16, 'adjust': 16, 'gambling': 16, 'tracing': 16, 'wanting': 16, 'translated': 16, 'fancy': 16, 'fringe': 16, 'dangers': 16, 'Clay': 16, 'thereafter': 16, 'Occasionally': 16, 'shake': 16, 'simplicity': 16, 'Museum': 16, 'orange': 16, 'reflecting': 16, 'matched': 16, 'Henri': 16, 'Anthony': 16, 'outfit': 16, 'bass': 16, 'finest': 16, 'persistent': 16, 'traveling': 16, 'sins': 16, 'Gray': 16, 'museum': 16, 'delighted': 16, 'discussing': 16, 'aims': 16, 'satisfy': 16, 'shell': 16, 'allocation': 16, 'orientation': 16, 'qualifications': 16, 'secular': 16, 'partners': 16, 'titles': 16, 'foolish': 16, 'devised': 16, 'employers': 16, 'stating': 16, 'whites': 16, 'excluding': 16, 'switched': 16, 'endurance': 16, 'philosopher': 16, 'notably': 16, 'Hammarskjold': 16, 'illustration': 16, 'Already': 16, 'None': 16, 'rail': 16, 'ample': 16, 'maintains': 16, 'capita': 16, 'bulk': 16, 'translate': 16, 'conjunction': 16, 'hers': 16, 'Power': 16, 'twist': 16, 'audiences': 16, 'piled': 16, 'Right': 16, 'spreading': 16, 'contents': 16, 'Free': 16, 'flexibility': 16, 'lined': 16, 'disastrous': 16, 'rows': 16, 'stride': 16, 'confined': 16, 'influenced': 16, 'rage': 16, 'implies': 16, 'unto': 16, 'silently': 16, "o'": 16, 'resume': 16, 'injustice': 16, 'heated': 16, 'messages': 16, 'translation': 16, 'readings': 16, 'thee': 16, 'vertical': 16, 'ruined': 16, 'compatible': 16, 'alarm': 16, 'compounds': 16, 'morale': 16, 'wives': 16, 'flag': 16, 'Declaration': 16, 'refuse': 16, 'buffer': 16, 'referring': 16, 'minimize': 16, 'statue': 16, 'ideals': 16, 'orbit': 16, 'sober': 16, 'conclude': 16, 'diseases': 16, 'abandon': 16, 'insights': 16, 'bleeding': 16, 'tap': 16, 'alien': 16, 'angular': 16, 'uncertainty': 16, 'trails': 16, 'proposition': 16, 'selective': 16, 'Up': 16, 'curriculum': 16, 'horror': 16, 'glimpse': 16, 'Similarly': 16, 'photographs': 16, 'bitterly': 16, 'bunch': 16, 'cowboy': 16, 'inserted': 16, 'sketch': 16, 'forehead': 16, 'infectious': 16, 'occupy': 16, 'wasted': 16, 'Gavin': 16, 'fitting': 16, 'keys': 16, 'humorous': 16, 'liver': 16, 'priest': 16, 'justification': 16, 'downward': 16, 'ate': 16, 'imaginary': 16, 'anyhow': 16, 'Following': 16, 'thereof': 16, 'indirectly': 16, 'weighed': 16, 'Code': 16, 'Someone': 16, 'conformity': 16, 'metaphysical': 16, 'gonna': 16, 'spray': 16, '1/2': 16, 'camping': 16, 'bunks': 16, 'cylinder': 16, 'jaw': 16, 'fences': 16, 'Hawaii': 16, 'pottery': 16, 'jar': 16, 'closet': 16, 'Trial': 16, 'synthesis': 16, 'respiratory': 16, 'pen': 16, 'correlation': 16, 'installations': 16, 'Claire': 16, "Hudson's": 16, 'cavalry': 16, 'isolation': 16, 'dusty': 16, 'crouched': 16, 'Dickens': 16, 'kiss': 16, 'analytic': 16, 'damned': 16, 'optimum': 16, 'hiding': 16, 'opium': 16, 'Sec.': 16, 'voltage': 16, 'graph': 16, 'serum': 16, 'thyroglobulin': 16, 'clover': 16, 'secants': 16, 'odd-lot': 16, 'Geometric': 16, 'operand': 16, 'leveling': 16, 'Payne': 16, 'Styka': 16, 'Gilborn': 16, 'Mae': 16, 'Handley': 16, 'Nicolas': 16, 'Hanford': 16, 'Willis': 16, "Department's": 15, 'employes': 15, 'petition': 15, "wife's": 15, 'validity': 15, 'defeated': 15, 'sheriff': 15, 'termed': 15, 'sponsor': 15, 'oppose': 15, 'committees': 15, 'mentally': 15, 'decrease': 15, 'indicating': 15, 'client': 15, 'devote': 15, 'thru': 15, 'boost': 15, 'drain': 15, 'indispensable': 15, 'wider': 15, 'explosion': 15, 'disappointment': 15, 'tentative': 15, 'essence': 15, 'optimism': 15, 'Morton': 15, 'coalition': 15, 'domination': 15, 'invasion': 15, 'constructive': 15, 'react': 15, 'pin': 15, 'juvenile': 15, 'hire': 15, 'Socialist': 15, 'Local': 15, 'unemployment': 15, 'stature': 15, 'glow': 15, '1944': 15, 'attraction': 15, "women's": 15, 'dropping': 15, "country's": 15, 'eighteen': 15, 'optimistic': 15, 'Minister': 15, 'operates': 15, 'Congressman': 15, 'shortage': 15, 'contributing': 15, 'unpleasant': 15, 'competing': 15, 'Berger': 15, 'Common': 15, 'Continental': 15, 'Cambridge': 15, 'agreements': 15, 'tract': 15, 'parks': 15, 'tore': 15, 'blast': 15, 'landed': 15, 'reward': 15, 'practicing': 15, 'Al': 15, 'Norman': 15, 'missions': 15, 'Powell': 15, 'verdict': 15, 'ninth': 15, 'catcher': 15, 'Jerry': 15, 'batting': 15, 'physician': 15, 'kick': 15, 'scored': 15, 'meaningless': 15, 'trick': 15, 'smashed': 15, 'Buck': 15, 'personalities': 15, 'Roger': 15, 'potato': 15, 'alongside': 15, 'creature': 15, 'dragging': 15, 'knock': 15, 'sights': 15, 'Dark': 15, 'trains': 15, 'staged': 15, 'preceded': 15, 'pools': 15, 'originated': 15, 'burns': 15, 'forbidden': 15, 'pursuit': 15, 'stove': 15, 'Havana': 15, 'segregated': 15, 'intend': 15, 'excellence': 15, 'Waddell': 15, 'assault': 15, 'battery': 15, 'daylight': 15, 'Northwest': 15, 'arguments': 15, 'judged': 15, 'cubic': 15, 'qualify': 15, '1912': 15, 'peak': 15, 'heritage': 15, 'sooner': 15, 'continuation': 15, 'comparatively': 15, 'alter': 15, 'railroads': 15, 'shipments': 15, 'owed': 15, 'vessel': 15, 'parent': 15, 'Madame': 15, 'Oriental': 15, 'apt': 15, 'potatoes': 15, 'onion': 15, 'ham': 15, 'texture': 15, 'heavier': 15, 'tones': 15, 'Carla': 15, 'Elizabeth': 15, 'dish': 15, 'Library': 15, 'lecture': 15, 'picnic': 15, 'Radio': 15, 'reactionary': 15, 'Chamber': 15, 'actors': 15, 'silly': 15, 'swinging': 15, 'Festival': 15, 'Marine': 15, 'seemingly': 15, 'discouraged': 15, 'realities': 15, 'penetration': 15, 'dragged': 15, 'cease': 15, 'miracle': 15, 'dimension': 15, 'tightly': 15, 'stimulus': 15, 'restricted': 15, 'Naturally': 15, 'reasoning': 15, 'nineteenth-century': 15, 'vs.': 15, 'stirred': 15, 'Sea': 15, 'tense': 15, 'Vice': 15, 'deliberate': 15, 'muscular': 15, 'purchases': 15, 'Dutch': 15, 'ties': 15, 'dug': 15, '1940': 15, 'Stevenson': 15, 'virtues': 15, 'nut': 15, 'textiles': 15, 'imports': 15, 'clue': 15, 'feasible': 15, 'joining': 15, 'governed': 15, 'intensive': 15, 'sturdy': 15, 'Ten': 15, 'crude': 15, 'specialist': 15, 'guerrillas': 15, 'divisions': 15, 'vegetables': 15, 'sweep': 15, 'ashamed': 15, 'accustomed': 15, 'fabric': 15, 'considers': 15, 'prolonged': 15, 'Biblical': 15, 'writings': 15, 'straw': 15, 'razor': 15, 'shower': 15, 'guessed': 15, 'Laboratory': 15, 'senses': 15, 'explanations': 15, 'opponent': 15, 'exhausted': 15, 'misery': 15, 'distress': 15, 'transmission': 15, 'freezing': 15, 'cafe': 15, 'Israel': 15, 'arranging': 15, 'Thank': 15, 'horrible': 15, 'proves': 15, 'remind': 15, 'p.': 15, 'Stalin': 15, 'plunged': 15, 'Somehow': 15, 'biological': 15, 'refusal': 15, 'linked': 15, 'clever': 15, 'commonplace': 15, 'doubts': 15, 'preventive': 15, 'damp': 15, "what's": 15, 'differential': 15, 'networks': 15, 'glorious': 15, 'memories': 15, 'sentimental': 15, 'lyrics': 15, 'Amy': 15, 'exhibits': 15, 'touching': 15, 'crying': 15, 'contours': 15, 'deals': 15, 'burn': 15, 'anchor': 15, 'stirring': 15, 'novelist': 15, 'vanished': 15, 'ambitions': 15, 'Sloan': 15, 'palace': 15, 'sustained': 15, 'Englishman': 15, 'arteries': 15, 'Internal': 15, 'gradual': 15, "they'll": 15, 'denominations': 15, 'distinctions': 15, 'socially': 15, 'pill': 15, 'dissolved': 15, 'cared': 15, 'packing': 15, 'ballistic': 15, 'Steinberg': 15, 'tappet': 15, 'substituted': 15, 'tourist': 15, 'Bridge': 15, 'cracking': 15, 'needle': 15, 'battens': 15, 'bottles': 15, 'Determine': 15, 'lung': 15, 'onset': 15, "Drug's": 15, 'productivity': 15, 'printing': 15, 'fluids': 15, "Pont's": 15, 'doorway': 15, 'farming': 15, 'soils': 15, 'commanded': 15, 'disappointed': 15, 'whiskey': 15, 'Ryan': 15, 'self-help': 15, 'rope': 15, 'afterward': 15, 'kissed': 15, 'Ulyate': 15, 'Selden': 15, 'flashed': 15, 'bees': 15, 'Fromm': 15, 'deserted': 15, 'Katie': 15, 'Aegean': 15, 'Blackman': 15, 'Anything': 15, 'sociology': 15, 'helium': 15, 'Lublin': 15, 'Homeric': 15, 'Burton': 15, 'collage': 15, "Fromm's": 15, "Hardy's": 15, 'Juanita': 15, 'Dandy': 15, 'Eugenia': 15, 'revised': 14, 'purchasing': 14, 'influences': 14, 'encouragement': 14, 'picking': 14, 'approve': 14, 'highways': 14, 'threats': 14, 'feared': 14, 'Daniel': 14, 'locate': 14, 'V.': 14, 'pro': 14, 'amended': 14, 'eliminating': 14, 'penalty': 14, 'Representatives': 14, 'succeed': 14, 'border': 14, 'counsel': 14, 'policemen': 14, "Russia's": 14, 'dismissed': 14, 'contempt': 14, 'employer': 14, 'nursing': 14, 'combine': 14, 'criticized': 14, 'hastily': 14, 'administrator': 14, 'selections': 14, 'alliance': 14, 'threshold': 14, 'participating': 14, 'reforms': 14, 'arises': 14, 'Kentucky': 14, 'professors': 14, 'disclosed': 14, 'Advisory': 14, 'organize': 14, 'eligible': 14, 'rescue': 14, 'Speaking': 14, 'fails': 14, 'colonial': 14, "town's": 14, 'affixed': 14, 'applause': 14, 'passenger': 14, 'debut': 14, 'carved': 14, 'seats': 14, 'ceremonies': 14, 'marching': 14, 'Between': 14, 'odds': 14, 'transit': 14, '$1': 14, 'annually': 14, 'Planning': 14, 'fighters': 14, 'driveway': 14, 'AP': 14, 'paths': 14, 'coordination': 14, 'Water': 14, 'Theodore': 14, 'delegates': 14, 'loses': 14, '10,000': 14, 'failing': 14, 'sensation': 14, 'engage': 14, 'seventh': 14, 'apprentice': 14, 'Columbus': 14, 'bothered': 14, 'statistical': 14, "He'll": 14, '45': 14, 'upset': 14, 'countless': 14, 'Jay': 14, 'Hodges': 14, 'merits': 14, 'honors': 14, 'careers': 14, 'gum': 14, 'Joan': 14, 'Egypt': 14, 'appearances': 14, 'entertain': 14, 'Marty': 14, 'Song': 14, 'touches': 14, 'candy': 14, 'frightening': 14, 'boxes': 14, 'tickets': 14, 'hats': 14, 'husbands': 14, 'celebrated': 14, '1947': 14, 'fastened': 14, 'convicted': 14, 'proceeds': 14, 'pursued': 14, 'executed': 14, 'Emory': 14, 'daughters': 14, 'uniforms': 14, 'counts': 14, 'Alice': 14, 'producer': 14, "day's": 14, 'pains': 14, 'valued': 14, 'Beverly': 14, 'complaint': 14, 'connections': 14, 'flights': 14, 'scrutiny': 14, 'Swiss': 14, 'sizable': 14, 'pickup': 14, 'momentum': 14, 'pan': 14, 'short-term': 14, 'one-third': 14, 'supports': 14, 'producers': 14, 'province': 14, 'shoe': 14, 'Theater': 14, 'trustees': 14, 'cafeteria': 14, 'yarn': 14, 'appealing': 14, 'drums': 14, 'pianist': 14, 'scenery': 14, 'bored': 14, 'feathers': 14, 'Check': 14, 'polished': 14, 'loving': 14, "people's": 14, 'lawn': 14, 'Renaissance': 14, 'evenings': 14, "Khrushchev's": 14, 'caution': 14, 'organs': 14, 'Control': 14, 'disapproval': 14, 'prone': 14, 'protective': 14, 'framed': 14, 'structured': 14, 'enterprises': 14, 'monopoly': 14, 'deemed': 14, 'readiness': 14, 'rounded': 14, '15th': 14, 'intact': 14, 'pine': 14, 'Angels': 14, 'borrowed': 14, 'backs': 14, 'sweater': 14, 'Eve': 14, 'oldest': 14, 'Picasso': 14, 'boundaries': 14, 'Belgian': 14, 'administered': 14, 'unfortunately': 14, 'reluctant': 14, 'flung': 14, 'Command': 14, 'soup': 14, 'toll': 14, 'vigor': 14, 'Behind': 14, 'Nassau': 14, 'centered': 14, 'drag': 14, 'penetrating': 14, 'Dominican': 14, 'Start': 14, 'habitat': 14, 'hopeless': 14, 'ruin': 14, 'Additional': 14, 'paragraphs': 14, 'spectrum': 14, 'emerging': 14, 'draws': 14, 'amusing': 14, 'intent': 14, 'clearer': 14, 'Recently': 14, 'accommodate': 14, 'irrelevant': 14, 'cannery': 14, 'rivers': 14, 'breeze': 14, 'indications': 14, 'treats': 14, 'deviation': 14, 'uncomfortable': 14, 'relaxed': 14, 'sensible': 14, 'remembering': 14, 'answering': 14, 'Churches': 14, 'lemon': 14, 'bow': 14, 'cleaned': 14, 'lion': 14, 'cruel': 14, 'analyzed': 14, 'tobacco': 14, 'Kent': 14, 'sincere': 14, 'prescribed': 14, 'heater': 14, 'capability': 14, 'vulnerable': 14, 'mild': 14, 'usage': 14, 'True': 14, 'leap': 14, 'superiority': 14, 'Protestants': 14, 'shallow': 14, 'speeds': 14, 'painfully': 14, 'profitable': 14, 'restored': 14, 'symptoms': 14, 'shells': 14, 'summary': 14, 'superb': 14, 'immense': 14, 'nearer': 14, 'commands': 14, 'retreat': 14, 'Aunt': 14, 'cop': 14, 'upright': 14, 'Yalta': 14, 'achieving': 14, 'ignorance': 14, 'stare': 14, 'pit': 14, 'expressions': 14, 'dared': 14, 'projected': 14, 'Fourth': 14, 'horn': 14, 'solitary': 14, 'manners': 14, 'heap': 14, 'celebration': 14, 'expedition': 14, 'instinct': 14, 'sustain': 14, 'proteins': 14, 'Shall': 14, 'Irenaeus': 14, 'foundations': 14, 'literal': 14, 'fruits': 14, 'odor': 14, 'survived': 14, 'pairs': 14, 'climax': 14, 'grim': 14, 'conceive': 14, 'realtors': 14, 'attach': 14, 'attic': 14, 'Amen': 14, 'width': 14, 'significantly': 14, 'favorably': 14, 'resonance': 14, "industry's": 14, 'coordinated': 14, 'Model': 14, 'revolver': 14, 'coupled': 14, 'fork': 14, 'pie': 14, 'beaches': 14, 'adventure': 14, 'illuminated': 14, 'cups': 14, 'fix': 14, 'strips': 14, 'bubbles': 14, 'wax': 14, 'nails': 14, 'armies': 14, 'publications': 14, 'Confederate': 14, 'bathing': 14, 'conditioning': 14, 'swiftly': 14, 'thoughtfully': 14, 'generator': 14, 'preparations': 14, 'wrapped': 14, 'determines': 14, 'molding': 14, 'Ages': 14, 'Bari': 14, 'gradient': 14, 'bark': 14, 'Diane': 14, 'Eichmann': 14, 'dislike': 14, 'swore': 14, "Plato's": 14, 'Garryowen': 14, 'Okay': 14, 'judicial': 14, 'oils': 14, 'clung': 14, 'rancher': 14, 'singular': 14, 'Harlem': 14, 'blank': 14, 'discretion': 14, 'Garth': 14, 'bell': 14, 'chill': 14, 'fury': 14, 'Greville': 14, 'spectra': 14, 'fig.': 14, 'rupees': 14, 'Export-Import': 14, 'decomposition': 14, 'aqueous': 14, 'proportional': 14, 'woke': 14, 'python': 14, 'conjugates': 14, 'diagonalizable': 14, 'Iliad': 14, 'folded': 14, 'Beowulf': 14, 'Jessica': 14, "Jess's": 14, 'Edythe': 14, 'Welch': 14, 'handful': 13, 'remedy': 13, 'enabling': 13, 'undue': 13, 'deputies': 13, 'praised': 13, 'cruelty': 13, 'GOP': 13, 'Rep.': 13, 'congressional': 13, 'superintendent': 13, 'treasurer': 13, 'relieve': 13, '65': 13, 'pending': 13, 'Springs': 13, 'Doctor': 13, 'Oklahoma': 13, 'athletic': 13, 'breakdown': 13, 'spokesman': 13, 'unfair': 13, 'expand': 13, 'guaranteed': 13, 'propose': 13, 'Ill.': 13, 'Nam': 13, 'modified': 13, 'restrained': 13, 'observer': 13, 'reviewed': 13, 'Along': 13, 'lever': 13, 'gaining': 13, 'adopt': 13, 'disposition': 13, 'beating': 13, 'witnessed': 13, 'Ave.': 13, 'Women': 13, 'preferably': 13, 'fits': 13, 'Commissioner': 13, 'corruption': 13, 'visitor': 13, 'Democrat': 13, 'missionary': 13, 'protested': 13, 'inhabitants': 13, 'meanwhile': 13, 'standpoint': 13, 'Lafayette': 13, 'Guard': 13, 'restless': 13, 'solidarity': 13, 'convey': 13, 'acute': 13, 'sue': 13, '$600': 13, 'objected': 13, 'absorb': 13, 'statewide': 13, 'Empire': 13, '800': 13, 'Ed': 13, 'N.Y.': 13, 'accelerated': 13, 'Garden': 13, 'Helen': 13, 'Sox': 13, 'tries': 13, "we've": 13, 'Assistant': 13, 'incomplete': 13, 'defending': 13, 'Minnesota': 13, 'Mays': 13, 'elderly': 13, 'belonging': 13, 'Lou': 13, 'ace': 13, 'afternoons': 13, 'quit': 13, "night's": 13, 'Graham': 13, 'matches': 13, 'Open': 13, 'monstrous': 13, 'brooding': 13, 'par': 13, 'handy': 13, 'grin': 13, 'strings': 13, 'bull': 13, 'beaten': 13, 'tumbled': 13, 'cows': 13, 'correctly': 13, 'invitations': 13, 'singers': 13, 'publishing': 13, 'portable': 13, 'ethics': 13, 'Lucille': 13, 'Children': 13, 'dough': 13, 'Tribune': 13, 'Members': 13, 'Colorado': 13, 'elegant': 13, 'Methodist': 13, 'Hand': 13, 'Night': 13, 'Lester': 13, 'Anderson': 13, 'Hills': 13, 'graduated': 13, 'A.M.': 13, 'outset': 13, 'dot': 13, 'underwater': 13, 'complexity': 13, 'Indiana': 13, 'Hope': 13, 'appealed': 13, 'Prairie': 13, 'neighbor': 13, 'surviving': 13, 'suburb': 13, 'supplying': 13, 'McClellan': 13, 'safely': 13, 'Ambassador': 13, 'exaggerated': 13, 'statutory': 13, 'commitment': 13, 'pole': 13, 'flames': 13, 'familiarity': 13, 'collapsed': 13, 'Order': 13, 'omitted': 13, 'barbecue': 13, 'economics': 13, 'appeals': 13, 'acid': 13, 'rental': 13, 'stopping': 13, 'Scotland': 13, 'Birmingham': 13, 'dean': 13, 'Space': 13, 'Using': 13, 'imply': 13, 'cousin': 13, 'Nazi': 13, 'explaining': 13, 'abilities': 13, 'sells': 13, '1900': 13, 'stimulation': 13, 'undertake': 13, 'businessmen': 13, 'lowest': 13, 'assets': 13, 'taxed': 13, 'steep': 13, 'Ireland': 13, 'Truman': 13, 'pepper': 13, 'utter': 13, 'lasting': 13, 'carpet': 13, 'couples': 13, 'Somewhere': 13, 'Building': 13, 'Generally': 13, 'streetcar': 13, 'walks': 13, 'understandable': 13, 'prayers': 13, 'conducting': 13, 'Bishop': 13, 'lend': 13, 'brutality': 13, 'Put': 13, 'smallest': 13, 'mileage': 13, 'associates': 13, 'Gallery': 13, 'miserable': 13, 'separately': 13, 'rely': 13, 'satisfying': 13, 'owns': 13, 'Word': 13, 'depreciation': 13, 'derive': 13, 'implicit': 13, 'fellows': 13, 'ideology': 13, 'dictatorship': 13, 'sentences': 13, 'impersonal': 13, 'gates': 13, 'suspicious': 13, 'rebellion': 13, 'rounds': 13, 'roar': 13, 'gifted': 13, 'Light': 13, 'classified': 13, 'dumb': 13, 'swift': 13, 'Greene': 13, 'collecting': 13, 'investigators': 13, 'ethnic': 13, 'consumed': 13, 'Food': 13, 'planners': 13, 'modernization': 13, 'forcing': 13, 'ton': 13, 'psychology': 13, 'biography': 13, 'evaluate': 13, 'vigorously': 13, 'scores': 13, 'stability': 13, 'creates': 13, 'blockade': 13, 'sector': 13, 'customary': 13, 'tempted': 13, 'politician': 13, 'earnestly': 13, 'progressed': 13, 'objections': 13, 'cake': 13, 'posture': 13, 'document': 13, 'selecting': 13, 'contradiction': 13, 'shattered': 13, 'forgiveness': 13, 'Dad': 13, 'autistic': 13, 'nursery': 13, 'rug': 13, 'typically': 13, 'crimes': 13, 'treaty': 13, 'invented': 13, 'Whenever': 13, 'rockets': 13, 'rubber': 13, '32': 13, 'Yale': 13, 'repetition': 13, 'experimentation': 13, 'tumor': 13, 'slightest': 13, 'adapted': 13, 'sheer': 13, 'ego': 13, 'embrace': 13, 'remembers': 13, 'erect': 13, 'suggesting': 13, 'promoting': 13, 'likewise': 13, 'Hart': 13, 'Inquirer': 13, 'drainage': 13, 'vocal': 13, 'boundary': 13, 'influential': 13, 'media': 13, 'execution': 13, 'induced': 13, 'defects': 13, 'fusion': 13, 'doses': 13, 'Unless': 13, 'radically': 13, 'perceive': 13, 'manpower': 13, 'insane': 13, 'equilibrium': 13, 'Death': 13, 'Gardens': 13, 'tips': 13, 'gloom': 13, 'decay': 13, 'participated': 13, 'analogy': 13, 'communicate': 13, 'lectures': 13, 'patch': 13, 'mix': 13, 'placement': 13, 'deepest': 13, 'enters': 13, 'resemblance': 13, 'sincerity': 13, 'differed': 13, 'diverse': 13, 'thread': 13, 'Low': 13, 'fists': 13, 'permanently': 13, 'imaginative': 13, 'casually': 13, 'static': 13, 'Turning': 13, 'romance': 13, 'curled': 13, 'behaved': 13, 'Comedie': 13, 'prose': 13, 'programing': 13, 'spur': 13, 'abundance': 13, 'references': 13, 'Below': 13, 'fictional': 13, 'eagerly': 13, 'cone': 13, 'averaged': 13, 'integral': 13, 'assuming': 13, 'liberalism': 13, 'mutually': 13, 'debt': 13, 'sprang': 13, 'opposing': 13, 'leveled': 13, 'exerted': 13, 'maps': 13, 'twentieth': 13, 'clarify': 13, 'involvement': 13, 'ordering': 13, 'monk': 13, 'dwelling': 13, 'blade': 13, 'waving': 13, 'behave': 13, 'insert': 13, 'files': 13, 'colt': 13, 'lantern': 13, 'fond': 13, 'pint': 13, 'Naval': 13, 'port': 13, 'squares': 13, 'charcoal': 13, 'toilet': 13, 'screwed': 13, 'sealed': 13, 'beams': 13, 'conditioner': 13, 'compass': 13, 'ultraviolet': 13, 'computer': 13, 'antenna': 13, 'receiver': 13, 'detection': 13, 'tub': 13, 'Oersted': 13, 'bacterial': 13, 'necessities': 13, 'Forests': 13, 'Products': 13, 'champagne': 13, 'linguist': 13, 'therapeutic': 13, "officer's": 13, 'cereal': 13, 'begged': 13, 'scream': 13, 'X': 13, 'infantry': 13, 'Telegraph': 13, 'G': 13, 'Jeep': 13, 'hut': 13, 'Thayer': 13, 'sinister': 13, 'Packard': 13, 'proclaim': 13, 'litigation': 13, 'A.L.A.M.': 13, 'cluster': 13, 'Tory': 13, 'Copernicus': 13, 'unaware': 13, 'solar': 13, 'manifold': 13, 'curb': 13, 'null': 13, 'Piepsam': 13, 'abstraction': 13, 'monitoring': 13, 'Figures': 13, 'frieze': 13, 'hormone': 13, 'Arlen': 13, 'Garibaldi': 13, 'moonlight': 13, 'Utopian': 13, 'Malraux': 13, 'Sally': 13, 'subsection': 13, 'paramagnetic': 13, 'plasma': 13, 'nighttime': 13, 'solids': 13, 'nuclei': 13, 'tissues': 13, 'arrow': 13, 'WTV': 13, 'invariant': 13, 'casework': 13, 'Kohnstamm-positive': 13, 'Kohnstamm': 13, 'compulsivity': 13, 'roleplaying': 13, 'cheeks': 13, 'Athabascan': 13, "Pip's": 13, 'lagoon': 13, 'phosphor': 13, 'Ludie': 13, 'Somebody': 13, 'Argiento': 13, 'Hino': 13, "She'd": 13, 'Glendora': 13, 'Rod': 13, 'effected': 12, 'incorporated': 12, 'Ask': 12, 'pension': 12, '1913': 12, 'ballot': 12, '$100': 12, 'expended': 12, 'agriculture': 12, 'deficit': 12, 'whipped': 12, 'lieutenant': 12, 'two-thirds': 12, 'ribbon': 12, 'Mass.': 12, 'advisers': 12, 'dental': 12, '1.5': 12, 'staggered': 12, 'enacted': 12, 'cabinet': 12, 'Wayne': 12, 'harsh': 12, 'globe': 12, 'strengthening': 12, 'spokesmen': 12, 'correspondent': 12, 'fleet': 12, 'pro-Western': 12, 'urgency': 12, 'Station': 12, 'Grant': 12, 'legislature': 12, 'contended': 12, 'controversial': 12, 'Country': 12, 'Federation': 12, "Women's": 12, 'opponents': 12, 'nomination': 12, 'Essex': 12, 'credited': 12, 'co-operation': 12, 'resolve': 12, 'believing': 12, 'choices': 12, 'Hunter': 12, 'episode': 12, 'hopeful': 12, 'parochial': 12, 'amid': 12, 'welcomed': 12, 'Dwight': 12, 'chapters': 12, 'spectators': 12, 'Andrew': 12, 'Guam': 12, 'focused': 12, 'crossroads': 12, 'Future': 12, 'terminate': 12, 'acknowledge': 12, 'blocked': 12, 'joints': 12, '$500': 12, 'Turkish': 12, 'speakers': 12, 'dependence': 12, 'babies': 12, 'inning': 12, 'lighter': 12, 'breaks': 12, 'Better': 12, 'Southwest': 12, 'kicking': 12, 'undergoing': 12, 'idle': 12, 'loosely': 12, 'newest': 12, 'Richardson': 12, 'Metropolitan': 12, 'Masters': 12, 'strokes': 12, 'honestly': 12, 'heights': 12, 'enabled': 12, 'bubble': 12, 'Monroe': 12, 'tennis': 12, 'youngest': 12, 'festival': 12, 'farewell': 12, 'Everybody': 12, 'Russell': 12, 'nerve': 12, 'Herbert': 12, 'decides': 12, 'restaurants': 12, 'tourists': 12, 'Winchester': 12, 'entertaining': 12, 'Richmond': 12, 'maids': 12, 'cab': 12, 'blades': 12, 'layer': 12, 'Benjamin': 12, 'resident': 12, 'cumulative': 12, 'prosperity': 12, 'presumed': 12, 'Electric': 12, 'purse': 12, 'indictment': 12, 'wealthy': 12, 'icy': 12, 'salesman': 12, 'grandfather': 12, 'adjoining': 12, 'youthful': 12, 'rebels': 12, 'fulfillment': 12, 'sisters': 12, 'Bryan': 12, 'employ': 12, 'theatrical': 12, 'Harmony': 12, 'blues': 12, 'Drive': 12, 'acknowledged': 12, 'beds': 12, 'cane': 12, 'crashed': 12, 'manned': 12, 'halted': 12, 'challenging': 12, 'Friends': 12, 'buddy': 12, 'Switzerland': 12, 'lately': 12, 'realizing': 12, 'world-wide': 12, 'maker': 12, 'boil': 12, 'grab': 12, 'sweeping': 12, 'durable': 12, 'Farm': 12, 'extends': 12, 'inventories': 12, 'incentive': 12, 'liquidation': 12, '1943': 12, 'Fine': 12, 'floors': 12, 'copper': 12, 'compact': 12, 'Cooper': 12, 'supposedly': 12, 'distinctly': 12, 'Anyone': 12, 'pray': 12, 'performers': 12, 'tank': 12, 'downstairs': 12, 'fountain': 12, 'Churchill': 12, 'stereotype': 12, 'equality': 12, 'giants': 12, 'Parliament': 12, 'convert': 12, 'reacted': 12, 'sorts': 12, 'ominous': 12, 'turmoil': 12, 'counting': 12, 'initially': 12, 'News': 12, 'guerrilla': 12, 'tower': 12, "Roberts'": 12, 'Half': 12, 'Pearson': 12, 'borders': 12, 'couch': 12, 'recalls': 12, 'aloud': 12, 'nineteen': 12, 'daring': 12, 'doubtless': 12, 'Pentagon': 12, 'Has': 12, 'interviewed': 12, 'lasted': 12, 'gripped': 12, 'Congolese': 12, 'Inside': 12, 'instituted': 12, 'elite': 12, 'Lumumba': 12, 'mercenaries': 12, 'resort': 12, 'ordinarily': 12, 'raced': 12, 'Taking': 12, 'requested': 12, 'ceased': 12, 'noting': 12, 'populated': 12, 'everyday': 12, 'teen-agers': 12, 'Soviets': 12, 'deserve': 12, 'Trujillo': 12, 'deserved': 12, 'stray': 12, 'settlers': 12, 'ironic': 12, 'partisan': 12, 'adventures': 12, 'suspension': 12, 'yielded': 12, 'islands': 12, 'unlimited': 12, 'fearful': 12, 'compounded': 12, 'Charter': 12, 'prayed': 12, 'clergy': 12, 'smoothly': 12, 'adjacent': 12, 'furiously': 12, 'diagnosis': 12, 'sizes': 12, 'Korea': 12, 'baptized': 12, 'stereo': 12, 'louder': 12, 'hairs': 12, 'seeming': 12, 'Bulletin': 12, 'Recent': 12, 'Rockefeller': 12, 'gods': 12, 'stubborn': 12, 'virus': 12, 'temptation': 12, 'dialogue': 12, 'functioning': 12, 'purity': 12, 'snap': 12, 'foremost': 12, 'masters': 12, 'absorption': 12, 'adolescent': 12, 'painters': 12, '20th': 12, 'swallowed': 12, 'solemn': 12, 'coincide': 12, 'ridge': 12, 'Market': 12, 'weep': 12, 'Garry': 12, 'resultant': 12, 'traced': 12, 'ignorant': 12, 'lyric': 12, 'composers': 12, 'accordingly': 12, 'Shelley': 12, 'Charlotte': 12, 'promoted': 12, 'passionate': 12, 'sadly': 12, 'acquainted': 12, 'Nazis': 12, 'lightning': 12, 'territorial': 12, 'Joel': 12, 'circumstance': 12, 'pity': 12, 'shelf': 12, 'collaboration': 12, 'Beethoven': 12, 'boot': 12, 'impulses': 12, 'fashionable': 12, 'thunder': 12, 'evolution': 12, 'sunny': 12, 'consciously': 12, 'Emperor': 12, 'Hot': 12, 'interpretations': 12, 'intellectuals': 12, 'Sansom': 12, 'explore': 12, 'Monsieur': 12, 'cooler': 12, 'trailers': 12, 'eaten': 12, 'alcohol': 12, 'insoluble': 12, 'quaint': 12, 'irony': 12, 'blindness': 12, 'mythological': 12, 'evidenced': 12, 'arriving': 12, 'passions': 12, "Lord's": 12, 'defenses': 12, 'pleading': 12, 'Yang': 12, 'initiated': 12, 'map': 12, 'calculation': 12, 'affirm': 12, 'aspirations': 12, 'Data': 12, 'luminous': 12, 'gossip': 12, 'anti-slavery': 12, 'magical': 12, 'perceived': 12, 'exclaimed': 12, 'whisper': 12, 'landlord': 12, 'Seeing': 12, 'porous': 12, 'Try': 12, 'leaf': 12, 'egg': 12, 'refrigeration': 12, 'vessels': 12, 'hardened': 12, 'Atlas': 12, 'infrared': 12, 'tappets': 12, 'Cut': 12, 'combustion': 12, 'mare': 12, 'trot': 12, '2:36': 12, 'trigger': 12, 'gauge': 12, "kid's": 12, 'chewing': 12, 'lime': 12, 'villages': 12, 'sunset': 12, 'Discovery': 12, 'cavity': 12, 'antique': 12, 'transparent': 12, 'tilted': 12, 'insect': 12, 'installation': 12, 'pretending': 12, 'overall': 12, 'stones': 12, 'Max': 12, 'independently': 12, 'Artists': 12, 'cm.': 12, 'detected': 12, 'lens': 12, 'fantasy': 12, 'elevator': 12, 'carryover': 12, 'Tri-State': 12, 'discount': 12, 'neon': 12, 'molded': 12, 'gaze': 12, 'dolls': 12, 'hymen': 12, 'Grandma': 12, 'phony': 12, 'wires': 12, 'vocabulary': 12, 'dentist': 12, 'retention': 12, 'chickens': 12, 'Selkirk': 12, 'stockade': 12, 'Torrio': 12, 'murders': 12, 'jerked': 12, 'crest': 12, 'swollen': 12, '7th': 12, 'violently': 12, 'coatings': 12, 'Age': 12, 'unlocked': 12, 'processed': 12, 'leaning': 12, 'blew': 12, 'unwed': 12, 'bastards': 12, 'Persians': 12, 'dice': 12, 'composite': 12, 'attendant': 12, 'Ptolemaic': 12, 'individualism': 12, 'Gabriel': 12, 'incest': 12, 'cigarettes': 12, "Steele's": 12, 'Hetman': 12, 'wrinkled': 12, 'diversity': 12, "Trevelyan's": 12, 'demographic': 12, 'Meltzer': 12, 'statute': 12, 'state-owned': 12, 'cm': 12, 'terminal': 12, 'unadjusted': 12, 'hollow': 12, '104': 12, 'Income': 12, 'deduct': 12, "Foundation's": 12, 'antibody': 12, 'dialysis': 12, 'anaconda': 12, 'antigen': 12, 'nilpotent': 12, 'intersections': 12, 'secant': 12, 'unstructured': 12, 'transferor': 12, 'Mexicans': 12, 'formulaic': 12, 'bastard': 12, 'Chris': 12, 'limp': 12, 'Purdew': 12, 'Andrus': 12, 'McFeeley': 12, 'meadow': 12, 'Brassnose': 12, 'Delphine': 12, 'Feathertop': 12, 'Cappy': 12, 'investigate': 11, 'Bar': 11, 'criticisms': 11, 'airport': 11, 'equitable': 11, 'delegation': 11, 'bankers': 11, 'rejection': 11, 'deaf': 11, 'yearly': 11, 'gifts': 11, '$1,000': 11, 'adverse': 11, '250': 11, 'teaches': 11, 'Master': 11, 'portions': 11, 'constituted': 11, 'requests': 11, 'Similar': 11, '90': 11, "Eisenhower's": 11, 'noticeable': 11, 'emotionally': 11, 'UN': 11, 'fulfilled': 11, 'concentrate': 11, 'respected': 11, 'Kremlin': 11, 'aided': 11, 'doubled': 11, 'locally': 11, 'outline': 11, 'declares': 11, 'squeeze': 11, 'Town': 11, 'Michael': 11, 'regretted': 11, 'proven': 11, 'graduation': 11, 'plowing': 11, 'Cross': 11, 'rival': 11, 'Edwin': 11, 'contrasting': 11, 'premium': 11, 'conceded': 11, '41': 11, '1942': 11, '1920': 11, 'presidential': 11, 'tracks': 11, 'observing': 11, 'script': 11, 'Ross': 11, 'Barnett': 11, 'Consequently': 11, 'honeymoon': 11, 'constitution': 11, 'exert': 11, 'architecture': 11, 'cooperate': 11, 'repaired': 11, 'Sons': 11, '1000': 11, 'Corp.': 11, 'flies': 11, 'rebel': 11, 'Oregon': 11, 'revelation': 11, 'forthcoming': 11, '1,000': 11, 'Orioles': 11, 'Birds': 11, 'Albany': 11, 'posted': 11, 'enlisted': 11, 'nearing': 11, 'consult': 11, 'Tony': 11, 'Moritz': 11, 'timing': 11, 'nailed': 11, 'shaken': 11, 'Porter': 11, 'organ': 11, 'Railroad': 11, 'compartment': 11, 'Willie': 11, 'injuries': 11, 'retain': 11, 'Hogan': 11, 'perfection': 11, 'slice': 11, 'lengthy': 11, 'blond': 11, 'happier': 11, 'Hong': 11, 'Kong': 11, 'fur': 11, 'Knight': 11, 'Fall': 11, "earth's": 11, 'peasants': 11, 'swim': 11, 'dies': 11, 'towels': 11, 'proprietor': 11, 'Presbyterian': 11, 'Chapel': 11, 'Earl': 11, 'Stone': 11, 'sculpture': 11, 'entertained': 11, 'Easter': 11, 'array': 11, 'silk': 11, 'drastic': 11, 'loading': 11, 'necessitated': 11, '38': 11, 'tires': 11, 'poorly': 11, 'plow': 11, 'Agriculture': 11, 'choosing': 11, 'comprise': 11, 'testified': 11, 'dots': 11, 'grimly': 11, 'Pohl': 11, 'Services': 11, 'Eight': 11, 'Trustees': 11, 'criteria': 11, 'integrated': 11, 'theaters': 11, 'scratching': 11, 'transfers': 11, 'treating': 11, 'Claude': 11, 'unusually': 11, 'commissioners': 11, 'consultant': 11, 'Jimmy': 11, 'lodge': 11, 'Heights': 11, 'cemetery': 11, 'Hillsboro': 11, 'rabbit': 11, 'ribs': 11, 'incidents': 11, 'investors': 11, 'coincidence': 11, '1930': 11, 'Reserve': 11, 'threaten': 11, 'Dillon': 11, 'Exchange': 11, 'satisfactorily': 11, 'discrepancy': 11, 'gasoline': 11, 'planted': 11, 'mineral': 11, 'deductions': 11, 'taxpayer': 11, 'warn': 11, 'entities': 11, 'colonel': 11, 'Boys': 11, 'buys': 11, 'breast': 11, 'juice': 11, 'arched': 11, 'shades': 11, 'Midwest': 11, 'wired': 11, 'L': 11, 'appreciated': 11, 'Phillips': 11, 'frantic': 11, 'marking': 11, 'wonderfully': 11, 'fixing': 11, 'towering': 11, 'titled': 11, 'mounting': 11, 'laying': 11, 'tomb': 11, 'summit': 11, 'shifting': 11, 'smiles': 11, 'eventual': 11, 'expectation': 11, 'interpret': 11, 'unified': 11, 'temper': 11, 'scholar': 11, 'generated': 11, 'trivial': 11, 'usefulness': 11, 'nominal': 11, 'unprecedented': 11, 'squarely': 11, 'manufactured': 11, 'carriers': 11, 'embarrassing': 11, 'purple': 11, 'recover': 11, 'moist': 11, 'settling': 11, 'successive': 11, 'divide': 11, 'Australia': 11, 'accumulation': 11, 'undergraduate': 11, 'continent': 11, 'trusted': 11, 'housed': 11, 'journalism': 11, 'tribes': 11, 'infant': 11, 'tin': 11, 'quo': 11, 'Main': 11, 'Progress': 11, 'airplane': 11, 'streams': 11, 'deficiency': 11, 'limiting': 11, 'cheaper': 11, 'twisting': 11, 'contrasts': 11, 'nucleus': 11, 'develops': 11, 'founding': 11, 'restraint': 11, 'render': 11, 'Either': 11, 'Maria': 11, 'frankly': 11, 'symbolized': 11, 'specimens': 11, 'awkward': 11, 'nod': 11, 'sanction': 11, 'secured': 11, 'coexistence': 11, 'Less': 11, 'hardest': 11, 'politically': 11, 'tropical': 11, 'assistants': 11, 'sliding': 11, 'spaces': 11, 'preserves': 11, 'depressed': 11, 'vacant': 11, 'Side': 11, 'confess': 11, 'dominance': 11, 'Maxwell': 11, 'beneficial': 11, 'blankets': 11, '1941': 11, 'debts': 11, 'sprawled': 11, 'beg': 11, 'frighten': 11, 'bursting': 11, 'lake': 11, 'shaft': 11, 'floating': 11, 'hazard': 11, 'eloquent': 11, 'lane': 11, 'natives': 11, 'conceivable': 11, 'bronze': 11, 'capitalism': 11, 'Korean': 11, 'chronic': 11, 'gap': 11, 'statesman': 11, 'memorable': 11, 'Polish': 11, 'anticipate': 11, 'oriented': 11, 'Hampshire': 11, 'facility': 11, 'veterans': 11, 'lousy': 11, 'frustration': 11, 'distorted': 11, 'agrees': 11, 'appropriated': 11, 'actively': 11, 'pollen': 11, 'afforded': 11, 'leisure': 11, 'strained': 11, 'Hiroshima': 11, 'faithful': 11, 'U': 11, 'cult': 11, 'civilized': 11, 'curse': 11, 'custom': 11, 'dose': 11, 'pose': 11, 'historically': 11, 'constitutes': 11, 'intelligible': 11, 'muffled': 11, 'rotation': 11, 'rejects': 11, 'convincing': 11, 'foreigners': 11, 'preacher': 11, 'rhythms': 11, 'Venus': 11, 'rendering': 11, 'curtain': 11, 'disciplined': 11, 'bands': 11, 'Information': 11, 'sleeve': 11, 'amazed': 11, 'Herald': 11, 'childish': 11, 'eastern': 11, 'narrator': 11, 'partial': 11, 'attributes': 11, 'keen': 11, 'Got': 11, 'explored': 11, 'energetic': 11, 'quantities': 11, 'neglect': 11, 'fatigue': 11, 'contraction': 11, 'electrons': 11, "Shakespeare's": 11, 'barbed': 11, 'sigh': 11, 'shed': 11, 'rocking': 11, 'appetite': 11, 'varies': 11, 'schoolhouse': 11, 'possessions': 11, 'tender': 11, 'passive': 11, 'tear': 11, 'pituitary': 11, 'minerals': 11, 'framework': 11, 'epidemic': 11, 'grasped': 11, 'apprehension': 11, 'formulations': 11, 'indifferent': 11, 'Anglican': 11, 'Protestantism': 11, 'endured': 11, 'formulated': 11, 'conclusive': 11, 'bits': 11, 'orthodox': 11, 'disguised': 11, 'merchant': 11, 'Looking': 11, 'Moon': 11, 'enclosed': 11, 'uniformity': 11, 'finite': 11, 'cultures': 11, 'thoughtful': 11, 'psychologists': 11, 'privacy': 11, 'arising': 11, 'Mahayana': 11, 'unexpectedly': 11, 'spit': 11, 'proclamation': 11, 'Hey': 11, 'weights': 11, 'bloom': 11, 'duration': 11, 'locating': 11, 'ninety': 11, 'trailer': 11, 'infancy': 11, 'commercially': 11, 'angles': 11, 'flush': 11, 'rotating': 11, 'wart': 11, 'complain': 11, 'inspect': 11, 'photographic': 11, 'Column': 11, 'meats': 11, 'grill': 11, 'butt': 11, 'specify': 11, 'obtainable': 11, 'compound': 11, 'dimensional': 11, 'Timothy': 11, 'eccentric': 11, 'dreaming': 11, 'pavement': 11, 'furnace': 11, 'comfortably': 11, 'gymnastics': 11, 'climb': 11, 'microorganisms': 11, 'meters': 11, 'vapor': 11, 'disappear': 11, 'enzymes': 11, 'sodium': 11, 'construct': 11, 'sixties': 11, 'evaluated': 11, 'treatments': 11, 'adopting': 11, 'acrylic': 11, 'mills': 11, 'therapy': 11, 'revealing': 11, 'snatched': 11, 'mist': 11, 'Ever': 11, 'postwar': 11, 'foregoing': 11, "individual's": 11, 'invested': 11, 'deciding': 11, 'surgeon': 11, 'rider': 11, 'cohesive': 11, 'disliked': 11, 'liking': 11, 'spinning': 11, 'counterparts': 11, 'sexes': 11, 'rubbing': 11, 'twenty-four': 11, 'waist': 11, 'McKinley': 11, 'log': 11, 'Winslow': 11, 'Spelman': 11, 'motivation': 11, 'Reef': 11, 'thereto': 11, 'Piazza': 11, 'ghetto': 11, 'posse': 11, 'detached': 11, 'crawl': 11, 'crept': 11, 'energies': 11, 'approximate': 11, 'Dylan': 11, 'metaphysics': 11, 'Introduction': 11, 'Szold': 11, 'Jastrow': 11, 'Taliesin': 11, "Jack's": 11, 'outcomes': 11, 'surveys': 11, 'Kehl': 11, 'Plymouth': 11, 'carriage': 11, 'analyses': 11, 'calendars': 11, 'cylindrical': 11, 'ml': 11, 'mg.': 11, 'fluorescence': 11, 'autonomic': 11, 'congruence': 11, 'electoral': 11, 'Sixties': 11, 'Cubism': 11, 'Brumidi': 11, 'aerator': 11, "Scotty's": 11, 'frowning': 11, 'nigger': 11, 'Vince': 11, 'Rev': 11, 'Mahzeer': 11, 'Hesperus': 11, 'Dill': 11, 'McBride': 11, 'Throat': 11, 'Quint': 11, 'Vivian': 11, 'Viola': 11, 'Crombie': 11, 'topics': 10, 'interim': 10, 'Tax': 10, '71': 10, '1937': 10, 'rally': 10, 'allotted': 10, 'Authority': 10, 'unanimously': 10, 'Paso': 10, 'meantime': 10, 'alleged': 10, 'semester': 10, 'Chester': 10, 'consulting': 10, 'Must': 10, 'subsistence': 10, 'defendants': 10, 'Goldberg': 10, 'privately': 10, 'diagnostic': 10, 'Apart': 10, 'prediction': 10, 'ad': 10, 'allied': 10, 'preoccupied': 10, 'underdeveloped': 10, 'aggression': 10, 'restrain': 10, 'bloc': 10, 'feeds': 10, 'Asian': 10, 'Pathet': 10, 'spark': 10, 'coordinate': 10, 'Hawksley': 10, 'Riverside': 10, 'deputy': 10, 'nationally': 10, 'favors': 10, 'simplest': 10, 'Dumont': 10, 'Plains': 10, 'decency': 10, '36': 10, 'elephants': 10, 'adoption': 10, 'mates': 10, 'waterfront': 10, 'Gordon': 10, 'technicians': 10, 'unite': 10, 'representations': 10, 'patronage': 10, 'segregation': 10, 'frustrated': 10, 'token': 10, 'confronting': 10, 'disagreement': 10, 'Pratt': 10, 'Certain': 10, '48': 10, 'Leonard': 10, 'acre': 10, 'sectors': 10, 'economically': 10, 'advisory': 10, 'Barbara': 10, 'consecutive': 10, 'Brandt': 10, 'denying': 10, 'Fla.': 10, 'stole': 10, 'singled': 10, 'streak': 10, 'Hansen': 10, 'champions': 10, 'crowds': 10, 'completing': 10, 'Richards': 10, 'swelling': 10, 'hip': 10, 'rushing': 10, 'insists': 10, 'Except': 10, 'Ramsey': 10, 'warmed': 10, 'masterpiece': 10, 'lifetime': 10, 'privileged': 10, 'slashed': 10, 'Skorich': 10, 'elevated': 10, 'advocate': 10, 'lease': 10, 'abandonment': 10, 'margin': 10, 'bounds': 10, 'ye': 10, 'fathers': 10, "We'd": 10, 'compiled': 10, 'professionals': 10, 'holidays': 10, 'adds': 10, 'Industry': 10, 'obstacle': 10, "Chicago's": 10, 'wheeled': 10, 'typewriter': 10, 'Give': 10, 'Best': 10, 'Stock': 10, 'schedules': 10, 'poised': 10, 'Ellen': 10, 'Parents': 10, 'Fellowship': 10, 'Freeman': 10, 'Conrad': 10, 'Ken': 10, 'deposited': 10, 'feminine': 10, 'Newman': 10, 'Evans': 10, 'Drexel': 10, "latter's": 10, 'Margaret': 10, 'Eleanor': 10, 'slim': 10, 'principally': 10, 'summoned': 10, 'deficiencies': 10, 'chains': 10, 'Route': 10, 'Lloyd': 10, 'guiding': 10, 'hardware': 10, 'implication': 10, 'hull': 10, 'magnification': 10, 'clients': 10, 'Polaris': 10, 'robbed': 10, 'youths': 10, '1935': 10, 'chase': 10, 'misfortune': 10, 'fleeing': 10, 'southeast': 10, 'Del': 10, 'privileges': 10, 'likelihood': 10, 'negotiate': 10, '72': 10, 'Emma': 10, 'disturbance': 10, 'Northeast': 10, 'handicapped': 10, 'Fair': 10, 'Scottish': 10, 'poultry': 10, 'judging': 10, 'theft': 10, 'Persian': 10, 'tide': 10, 'founder': 10, "girl's": 10, 'freed': 10, 'alternate': 10, 'urging': 10, 'halt': 10, 'Governments': 10, 'mob': 10, 'Slim': 10, 'radioactive': 10, 'Huff': 10, 'Stacy': 10, 'segment': 10, 'vice-president': 10, 'declaring': 10, 'hemisphere': 10, 'merge': 10, 'climbing': 10, 'acreage': 10, "Government's": 10, 'forecast': 10, 'distributions': 10, 'Adjusted': 10, 'glowing': 10, 'descent': 10, 'archaeology': 10, 'monks': 10, 'Bake': 10, 'tops': 10, 'wool': 10, 'railway': 10, '1917': 10, 'violin': 10, 'rides': 10, "Here's": 10, 'drum': 10, 'nonsense': 10, 'undergone': 10, 'reunion': 10, 'Theatre': 10, 'symphony': 10, 'Isaac': 10, 'Romans': 10, 'unfamiliar': 10, 'darling': 10, 'politely': 10, 'dozens': 10, '85': 10, '1859': 10, 'journalist': 10, 'catastrophe': 10, 'misunderstanding': 10, 'willingness': 10, 'veto': 10, 'disarmament': 10, 'conversations': 10, 'owe': 10, 'uniquely': 10, 'parish': 10, 'mortal': 10, 'spreads': 10, 'tenure': 10, 'reservoir': 10, 'accuse': 10, 'Quite': 10, 'gigantic': 10, 'bags': 10, 'combining': 10, 'pious': 10, 'assuring': 10, 'Rusk': 10, 'marines': 10, 'Foster': 10, 'constituents': 10, 'dreadful': 10, 'pork': 10, 'restrict': 10, 'licked': 10, 'bite': 10, 'amazement': 10, 'northwest': 10, 'zone': 10, 'Herman': 10, 'enjoys': 10, 'crushed': 10, 'mining': 10, 'dash': 10, 'prostitution': 10, '57': 10, 'Prize': 10, 'recruit': 10, 'ranges': 10, 'ration': 10, 'puzzle': 10, 'la': 10, 'Sweden': 10, 'secede': 10, 'luggage': 10, 'subsequently': 10, 'Simmons': 10, 'turnpikes': 10, 'risen': 10, 'exports': 10, 'recognizes': 10, 'specialization': 10, 'tyranny': 10, 'seas': 10, 'commercials': 10, 'ads': 10, 'occurrences': 10, 'incapable': 10, 'overt': 10, 'compilation': 10, 'patriotic': 10, 'layers': 10, 'applicants': 10, 'shy': 10, 'disturb': 10, 'harvest': 10, "Johnson's": 10, 'integrity': 10, 'arguing': 10, 'diminished': 10, 'admiration': 10, 'clues': 10, 'conscientious': 10, 'loads': 10, 'honesty': 10, 'oh': 10, 'conform': 10, 'rhythmic': 10, 'pleasantly': 10, 'impatience': 10, 'thumb': 10, 'extensively': 10, 'limitation': 10, 'tremendously': 10, 'favorites': 10, 'compulsive': 10, 'Gazette': 10, 'Warsaw': 10, "brother's": 10, 'instrumental': 10, 'managerial': 10, 'descending': 10, 'blessing': 10, 'Hebrew': 10, 'buttons': 10, 'paste': 10, 'brace': 10, 'recordings': 10, 'Thanks': 10, "bull's-eye": 10, 'perfume': 10, 'akin': 10, 'admire': 10, 'editorials': 10, 'disabled': 10, 'VA': 10, 'drastically': 10, 'misleading': 10, 'entity': 10, '17th': 10, 'refusing': 10, 'exceeds': 10, 'solidly': 10, 'utilize': 10, 'departing': 10, 'wholesome': 10, 'tremble': 10, 'greatness': 10, 'megatons': 10, 'Sun': 10, 'rake': 10, 'Telephone': 10, 'mount': 10, 'vengeance': 10, 'ardent': 10, 'sermon': 10, 'imperative': 10, 'indignant': 10, 'Cold': 10, 'projections': 10, 'expenditure': 10, 'Training': 10, 'cultivated': 10, 'generals': 10, 'scars': 10, 'introduce': 10, 'Clearly': 10, 'curiously': 10, 'bolt': 10, 'genuinely': 10, 'mm.': 10, 'criterion': 10, 'paragraph': 10, 'analyze': 10, 'Larkin': 10, 'longing': 10, 'bearded': 10, 'vegetable': 10, 'museums': 10, 'pleasing': 10, 'mastery': 10, 'dramatically': 10, 'Review': 10, 'nickname': 10, 'costume': 10, 'admirable': 10, 'witty': 10, 'awfully': 10, 'intensely': 10, 'intricate': 10, 'philosophic': 10, 'reject': 10, 'waking': 10, 'indebted': 10, 'dialect': 10, 'persisted': 10, 'vain': 10, 'sings': 10, 'hysterical': 10, 'oily': 10, 'sixteenth': 10, 'fragile': 10, 'compositions': 10, 'Julie': 10, 'Blues': 10, 'sensations': 10, 'retrieved': 10, 'melodies': 10, 'marital': 10, 'Bright': 10, 'grief': 10, 'coarse': 10, 'embodiment': 10, 'neurotic': 10, 'argues': 10, 'danced': 10, 'thirty-five': 10, 'accomplishments': 10, "Who's": 10, 'listener': 10, 'sociological': 10, 'prints': 10, 'logically': 10, 'Herr': 10, "King's": 10, 'earthy': 10, 'huddled': 10, 'devoting': 10, 'summers': 10, 'coin': 10, 'framing': 10, 'void': 10, 'patches': 10, 'strict': 10, 'preventing': 10, 'boredom': 10, 'angels': 10, 'undesirable': 10, 'Aside': 10, 'saint': 10, 'elemental': 10, 'accounting': 10, 'enduring': 10, 'Whereas': 10, 'communion': 10, 'mornings': 10, 'rolls': 10, 'clergyman': 10, "Mary's": 10, 'immigrants': 10, "Man's": 10, 'poison': 10, 'afterwards': 10, 'strenuous': 10, 'A.D.': 10, "Isn't": 10, 'diagram': 10, 'hesitate': 10, 'missionaries': 10, 'burial': 10, 'outward': 10, 'cursed': 10, 'channel': 10, 'contributes': 10, 'blooming': 10, 'tasted': 10, 'ripe': 10, 'detect': 10, 'employing': 10, 'doomed': 10, 'differs': 10, 'wipe': 10, 'sail': 10, 'launch': 10, 'Figs.': 10, 'Cap': 10, 'screws': 10, 'drilling': 10, 'Tar': 10, 'harness': 10, 'paced': 10, 'Jet': 10, 'Magnum': 10, 'muzzle': 10, 'pump': 10, 'boiled': 10, 'Ernest': 10, 'button': 10, 'cigar': 10, 'thermometer': 10, 'coats': 10, 'reinforce': 10, 'container': 10, 'keelson': 10, 'mixing': 10, 'cement': 10, 'ingenious': 10, 'adjusting': 10, 'arch': 10, 'oxen': 10, 'raid': 10, 'paints': 10, 'screens': 10, 'insulation': 10, 'negligible': 10, 'eighty': 10, 'nitrogen': 10, 'transducer': 10, 'creep': 10, 'pasture': 10, 'synthetic': 10, 'educator': 10, 'deceased': 10, 'tents': 10, 'Staff': 10, 'three-dimensional': 10, 'no.': 10, 'linguists': 10, 'sailed': 10, 'anchored': 10, 'hideous': 10, 'Stop': 10, 'imagery': 10, 'psychologist': 10, 'fertility': 10, 'Concord': 10, 'airplanes': 10, 'doll': 10, 'nowadays': 10, 'vagina': 10, 'learns': 10, 'accumulated': 10, 'Steichen': 10, 'impatient': 10, 'fake': 10, 'jaws': 10, 'Brodie': 10, 'utilized': 10, 'avoiding': 10, 'duly': 10, 'mice': 10, 'refrain': 10, 'comrades': 10, 'sergeant': 10, 'Cavalry': 10, 'legends': 10, 'waiter': 10, 'saloon': 10, 'Depot': 10, 'bush': 10, 'strode': 10, 'scar': 10, 'bee': 10, 'acquiring': 10, 'calmly': 10, 'relevance': 10, 'identities': 10, 'non-violent': 10, 'prejudice': 10, 'fragments': 10, 'swear': 10, 'tunnel': 10, 'militia': 10, 'segments': 10, 'Calhoun': 10, 'marijuana': 10, 'scanned': 10, 'plotted': 10, 'muddy': 10, 'lunar': 10, 'descriptions': 10, 'specificity': 10, 'assessing': 10, 'Littlepage': 10, "Papa's": 10, 'Howe': 10, 'Lilly': 10, 'Fosdick': 10, 'Sturley': 10, 'viscosity': 10, 'commuter': 10, 'Appendix': 10, 'Petitioner': 10, 'dimly': 10, 'cathode': 10, 'inorganic': 10, 'anionic': 10, 'albumin': 10, 'gm.': 10, 'conjugate': 10, 'theorem': 10, 'polynomials': 10, 'commute': 10, 'text-form': 10, 'phonologic': 10, 'Istiqlal': 10, 'AIA': 10, 'Boris': 10, 'Odyssey': 10, 'kennings': 10, 'Autocoder': 10, 'mg/l': 10, 'Trig': 10, 'Majdanek': 10, 'Pedersen': 10, 'rustling': 10, "Alex's": 10, 'Eyes': 10, 'Lauren': 10, 'holster': 10, 'Lucien': 10, 'Hub': 10, 'Meeker': 10, 'Pops': 10, 'Montero': 10, 'Brenner': 10, 'Carmer': 10, 'Todman': 10, "Greg's": 10, 'Executive': 9, "Georgia's": 9, 'clerical': 9, 'proportionate': 9, "governor's": 9, 'Savannah': 9, 'resigned': 9, 'Byrd': 9, 'Marvin': 9, 'outright': 9, 'polls': 9, 'reportedly': 9, 'protests': 9, 'contention': 9, 'scholastic': 9, 'permitting': 9, 'miscellaneous': 9, 'eminent': 9, 'domain': 9, 'poll': 9, 'Texans': 9, '150': 9, 'retire': 9, '100,000': 9, 'Shortly': 9, 'precipitated': 9, 'Acting': 9, 'prosecution': 9, 'illegal': 9, '18th': 9, 'Claims': 9, 'precedent': 9, 'discourage': 9, '47': 9, 'Congressional': 9, 'ministers': 9, 'nightmare': 9, 'unchanged': 9, 'manifestations': 9, 'hastened': 9, 'surveyed': 9, 'timely': 9, 'ally': 9, 'tougher': 9, 'resumption': 9, 'Relations': 9, 'Youth': 9, 'centralized': 9, 'revisions': 9, 'Falls': 9, 'counseling': 9, 'obtaining': 9, 'Group': 9, 'sewer': 9, 'ordinance': 9, 'addressing': 9, 'Harriet': 9, '10-year': 9, '1925': 9, 'municipalities': 9, 'voluntarily': 9, 'stepping': 9, 'induce': 9, 'Bronx': 9, 'Rules': 9, 'sometime': 9, 'Indonesia': 9, 'Battle': 9, 'viewing': 9, 'reviewing': 9, 'replies': 9, 'hazards': 9, 'bounded': 9, 'plea': 9, 'Barnes': 9, 'Salter': 9, 'seeks': 9, 'homer': 9, 'pennant': 9, 'yielding': 9, 'deadlock': 9, 'glove': 9, 'Milwaukee': 9, 'Gentile': 9, 'spectator': 9, 'P.M.': 9, 'bulky': 9, 'workable': 9, 'catching': 9, 'filly': 9, '$10,000': 9, 'timed': 9, 'halfback': 9, 'Cotton': 9, 'thigh': 9, '55': 9, 'Rice': 9, 'Meek': 9, 'tackle': 9, 'End': 9, 'Gene': 9, 'averages': 9, 'Bears': 9, 'flooded': 9, '46': 9, 'Giants': 9, 'al': 9, 'Living': 9, 'dissatisfaction': 9, 'Cincinnati': 9, '1924': 9, 'Shaw': 9, 'depended': 9, 'Shea': 9, 'Bernard': 9, 'Year': 9, 'motivated': 9, 'delivering': 9, 'majestic': 9, 'competitors': 9, 'guarding': 9, 'Minneapolis': 9, 'thirteen': 9, 'slower': 9, 'Larry': 9, 'sore': 9, 'finishing': 9, "other's": 9, 'doubted': 9, 'ringing': 9, 'Trade': 9, 'bushes': 9, 'whirling': 9, 'Phoenix': 9, 'Ball': 9, 'Garson': 9, "It'll": 9, 'Angel': 9, 'deposit': 9, 'Esther': 9, 'bleak': 9, 'reared': 9, 'tastes': 9, 'chapel': 9, 'dinners': 9, 'arrange': 9, 'sponsors': 9, 'chairmen': 9, 'Oscar': 9, 'Pa.': 9, 'Bermuda': 9, 'Jenkins': 9, 'corrected': 9, 'murdered': 9, 'spy': 9, 'designing': 9, 'potent': 9, 'Av.': 9, 'Moses': 9, 'reckless': 9, 'sped': 9, 'Hengesbach': 9, "else's": 9, 'Sidney': 9, 'Students': 9, 'businessman': 9, 'taxation': 9, 'challenged': 9, 'derives': 9, 'occupants': 9, 'picket': 9, 'attacking': 9, 'menace': 9, 'humans': 9, 'fulfill': 9, 'handles': 9, 'collaborated': 9, 'AM': 9, 'skies': 9, 'exhibited': 9, 'cooked': 9, 'coins': 9, 'sewing': 9, 'tearing': 9, 'Interstate': 9, 'discharged': 9, 'heel': 9, 'escort': 9, 'drifting': 9, 'Freedom': 9, 'Wyoming': 9, 'Rogers': 9, 'Da': 9, 'Fiedler': 9, 'pulse': 9, 'roaring': 9, 'steering': 9, 'steer': 9, 'Schweitzer': 9, 'dread': 9, 'acquaintance': 9, 'Foods': 9, 'boiling': 9, 'Headquarters': 9, 'export': 9, 'mill': 9, 'Presently': 9, 'employs': 9, 'Factory': 9, 'Unit': 9, '3,000': 9, 'Housing': 9, 'thesis': 9, 'questionable': 9, 'monetary': 9, 'convertible': 9, 'consolidation': 9, 'narrowed': 9, 'battered': 9, 'dense': 9, 'averaging': 9, 'deduction': 9, 'incurred': 9, '2%': 9, 'surge': 9, 'patrons': 9, 'Cadillac': 9, 'melted': 9, 'Add': 9, 'breasts': 9, 'one-half': 9, 'facets': 9, 'chocolate': 9, 'glaze': 9, 'reservations': 9, 'Hungarian': 9, 'hardship': 9, 'notices': 9, 'accent': 9, 'accord': 9, 'rated': 9, 'retains': 9, 'Cologne': 9, 'Kirov': 9, 'spacious': 9, 'Luis': 9, 'furnishings': 9, 'miniature': 9, 'Star': 9, 'Band': 9, 'tours': 9, 'warnings': 9, 'exploit': 9, 'adaptation': 9, 'resembles': 9, 'emerges': 9, 'attainment': 9, 'paradox': 9, 'knit': 9, 'guarantee': 9, 'earning': 9, 'begging': 9, 'indignation': 9, 'unconsciously': 9, '1933': 9, 'tortured': 9, 'wheat': 9, 'antagonism': 9, 'consumers': 9, 'embassy': 9, 'cautious': 9, 'Dulles': 9, 'numbered': 9, 'traditionally': 9, 'choke': 9, 'scrambled': 9, 'closest': 9, 'Unlike': 9, 'spontaneously': 9, 'unquestionably': 9, 'destined': 9, 'Always': 9, 'locker': 9, 'anecdote': 9, 'zinc': 9, 'Into': 9, "Island's": 9, 'lazy': 9, 'wilderness': 9, 'groupings': 9, 'exploited': 9, 'provinces': 9, 'departed': 9, 'interfere': 9, 'elder': 9, 'awoke': 9, 'Mountains': 9, 'slug': 9, 'labeled': 9, 'B-52': 9, 'Maine': 9, 'Higher': 9, 'Turnpike': 9, 'Fiat': 9, 'Plan': 9, 'enables': 9, 'industrialized': 9, 'pour': 9, 'seams': 9, 'proportionately': 9, 'resource': 9, 'classics': 9, 'vitally': 9, 'await': 9, 'spared': 9, 'empire': 9, 'proudly': 9, 'abundant': 9, 'presenting': 9, 'recovered': 9, 'prohibition': 9, 'ills': 9, 'Australian': 9, 'Deal': 9, 'persuasion': 9, 'fighter': 9, 'Mass': 9, 'troop': 9, 'commanding': 9, 'conventions': 9, 'conflicts': 9, 'unification': 9, 'preference': 9, 'commissions': 9, 'pouring': 9, 'restore': 9, 'subordinates': 9, 'forecasting': 9, 'Against': 9, 'unimportant': 9, 'publishers': 9, 'gratitude': 9, 'beans': 9, 'Kingdom': 9, 'enchanting': 9, 'blessed': 9, 'conceptions': 9, 'attendance': 9, 'drifted': 9, 'withdrew': 9, 'tolerant': 9, 'cage': 9, "son's": 9, 'versions': 9, 'winding': 9, 'salad': 9, 'pineapple': 9, 'hierarchy': 9, 'Freud': 9, 'looming': 9, 'currents': 9, 'dazzling': 9, 'Forbes': 9, 'broadening': 9, 'plumbing': 9, 'verses': 9, 'heavens': 9, 'angel': 9, 'toe': 9, 'tailored': 9, 'cork': 9, 'scratch': 9, 'gland': 9, 'Publications': 9, 'guides': 9, 'Arizona': 9, 'breathed': 9, 'pants': 9, 'agony': 9, 'barrier': 9, 'Say': 9, 'additions': 9, 'immensely': 9, 'manifest': 9, 'Sundays': 9, 'regret': 9, 'heartily': 9, 'well-being': 9, 'assessed': 9, 'impose': 9, 'trades': 9, 'prevents': 9, 'versus': 9, 'inspiration': 9, 'ghost': 9, 'dictates': 9, 'destination': 9, 'annoyance': 9, 'anatomy': 9, 'sweetheart': 9, 'augmented': 9, '40,000': 9, 'proceeding': 9, 'irresponsible': 9, 'atmospheric': 9, 'wishful': 9, 'theologians': 9, 'efficacy': 9, 'cousins': 9, 'engendered': 9, 'invite': 9, 'Left': 9, 'dresses': 9, 'superbly': 9, 'malaise': 9, 'mortar': 9, 'conservatism': 9, 'summarized': 9, 'comparing': 9, 'soloist': 9, 'marvelous': 9, 'Anyway': 9, 'satire': 9, 'gracious': 9, 'conveyed': 9, 'grotesque': 9, 'ensemble': 9, 'brilliantly': 9, 'Philharmonic': 9, 'nicely': 9, 'marched': 9, 'settings': 9, 'projection': 9, 'Girl': 9, 'cheerful': 9, 'positively': 9, 'colleague': 9, 'hint': 9, 'cave': 9, 'Eden': 9, 'fox': 9, 'ambassador': 9, 'flashes': 9, 'chromatic': 9, 'resisted': 9, 'picturesque': 9, 'elegance': 9, 'twentieth-century': 9, 'extremes': 9, 'Indies': 9, 'attractions': 9, 'Minor': 9, 'blown': 9, 'tune': 9, 'sterile': 9, 'cites': 9, 'skillful': 9, 'stretches': 9, 'advertised': 9, 'gospel': 9, 'illustrations': 9, 'preoccupation': 9, 'wept': 9, 'smells': 9, 'trifle': 9, 'outlet': 9, 'conceivably': 9, 'introducing': 9, 'forests': 9, 'shores': 9, 'inward': 9, 'vitamins': 9, 'K': 9, 'nagging': 9, 'molecules': 9, 'Eventually': 9, 'vividly': 9, 'existential': 9, 'latent': 9, 'formulate': 9, 'Fathers': 9, 'symbolize': 9, 'virgin': 9, 'obedience': 9, 'honorable': 9, 'warming': 9, 'histories': 9, 'proclaimed': 9, 'compressed': 9, 'Norton': 9, 'shivering': 9, 'systematically': 9, 'vent': 9, 'Han': 9, 'hints': 9, 'philosophers': 9, 'Preparation': 9, 'postponed': 9, 'topic': 9, 'denominational': 9, 'appalling': 9, 'pathological': 9, 'Buddhism': 9, 'Toynbee': 9, 'evils': 9, 'declining': 9, 'metallic': 9, 'swallow': 9, 'balloon': 9, 'orbits': 9, 'lessened': 9, 'disclose': 9, 'enrolled': 9, 'worldly': 9, 'stillness': 9, 'haste': 9, 'sorrow': 9, 'ingredients': 9, 'Push-Pull': 9, 'improves': 9, 'enormously': 9, 'pansies': 9, 'dig': 9, 'moisture': 9, 'avocado': 9, 'weighing': 9, 'reconnaissance': 9, 'dual': 9, 'editions': 9, 'Classes': 9, 'concentrations': 9, 'hauled': 9, 'plywood': 9, 'rating': 9, 'carefree': 9, 'pulls': 9, 'rails': 9, 'Drill': 9, 'equations': 9, 'simplified': 9, 'constants': 9, 'computing': 9, 'simplify': 9, 'radius': 9, 'brood': 9, '2:35': 9, 'Thor': 9, 'Precious': 9, 'Duke': 9, 'rack': 9, 'smoked': 9, 'resin': 9, 'draped': 9, 'roast': 9, 'amused': 9, 'reins': 9, "Wright's": 9, 'graceful': 9, 'grease': 9, 'cheese': 9, '1/4': 9, 'Frankfurter': 9, 'stains': 9, 'seam': 9, 'bin': 9, 'pigment': 9, 'rocky': 9, 'quill': 9, 'horizontal': 9, 'Coombs': 9, 'Ferry': 9, 'ratings': 9, 'filter': 9, 'offset': 9, 'extracted': 9, 'etcetera': 9, 'vastly': 9, 'swayed': 9, 'watercolor': 9, 'shaved': 9, 'persistence': 9, 'beginnings': 9, 'illumination': 9, 'anatomical': 9, 'specially': 9, 'borrow': 9, 'Ritter': 9, 'discoveries': 9, 'similarity': 9, '0.1': 9, '0.5': 9, 'gram': 9, 'utilization': 9, 'quantitative': 9, 'defining': 9, 'institutional': 9, 'assigning': 9, 'campers': 9, 'advancement': 9, 'tenants': 9, 'clause': 9, 'butyrate': 9, 'cellulose': 9, 'ft.': 9, 'untouched': 9, 'supplementary': 9, 'indulge': 9, 'linguistic': 9, 'indicators': 9, 'Merchant': 9, 'weird': 9, 'irregular': 9, 'sensory': 9, 'counterpart': 9, 'caring': 9, 'gravel': 9, 'hillside': 9, 'overcast': 9, "How's": 9, 'creativity': 9, 'intercourse': 9, 'anxiously': 9, 'searched': 9, 'quack': 9, 'orthodontist': 9, 'admissible': 9, 'sullen': 9, "Peter's": 9, 'homely': 9, 'guts': 9, 'occupational': 9, "O'Banion's": 9, 'earthquake': 9, 'calculations': 9, 'Fighting': 9, 'mask': 9, 'bouncing': 9, 'elders': 9, 'sticky': 9, 'soaking': 9, "Palfrey's": 9, 'Walton': 9, "Gavin's": 9, 'Kirby': 9, 'geometry': 9, 'denoted': 9, 'circled': 9, 'yell': 9, 'Kearton': 9, 'peering': 9, 'developmental': 9, 'seventeenth': 9, 'condensed': 9, 'pelts': 9, 'Bienville': 9, 'puzzling': 9, 'therein': 9, 'Wisman': 9, 'echo': 9, 'pamphlets': 9, 'spatial': 9, 'suggestive': 9, 'Boulevard': 9, 'ragged': 9, "Mann's": 9, 'mimesis': 9, 'purified': 9, "Faulkner's": 9, 'badness': 9, 'nephew': 9, 'generalized': 9, 'Shann': 9, 'reviews': 9, 'monkey': 9, 'grunted': 9, 'wrist': 9, 'perceptions': 9, 'elimination': 9, 'snapping': 9, 'redcoats': 9, 'Othon': 9, 'Germanic': 9, 'invasions': 9, 'Voltaire': 9, 'duck': 9, 'Partisan': 9, 'Credit': 9, 'ions': 9, 'figs.': 9, 'Christiana': 9, 'Rankin': 9, 'Gonzales': 9, 'Jupiter': 9, 'generators': 9, 'Douglass': 9, 'impurities': 9, 'hard-surface': 9, 'alveolar': 9, 'antibodies': 9, 'DEAE-cellulose': 9, 'distal': 9, 'bronchioles': 9, 'Profile': 9, 'Skeletal': 9, 'PBS': 9, 'discharges': 9, 'f{t}': 9, 'involution': 9, 'regulus': 9, 'subsystems': 9, 'Kohnstamm-negative': 9, 'grammatical': 9, 'morphophonemics': 9, 'Wagner-Peyser': 9, 'apportionment': 9, 'ditch': 9, 'vases': 9, 'Braque': 9, 'aerated': 9, 'irradiation': 9, 'palatability': 9, 'suds': 9, 'stiffly': 9, 'Prevot': 9, 'handkerchief': 9, 'steeple': 9, 'dumped': 9, 'dusk': 9, 'Randolph': 9, 'Kayabashi': 9, 'skiff': 9, 'spat': 9, 'Pastern': 9, 'eyebrows': 9, 'Grosse': 9, "it'll": 9, 'Holden': 9, 'Hohlbein': 9, 'Docherty': 9, 'Muller': 9, 'Dogtown': 9, 'Jubal': 9, 'half-man': 9, 'Hague': 9, 'Gran': 9, 'Roebuck': 9, 'Eromonga': 9, 'Schaffner': 9, 'Elec': 9, 'biwa': 9, 'Partlow': 9, 'Blatz': 9, 'irregularities': 8, 'outgoing': 8, 'periodic': 8, 'mayor': 8, 'featured': 8, 'requesting': 8, 'Highway': 8, 'Lt.': 8, 'Garland': 8, 'chambers': 8, 'reconstruction': 8, 'Rural': 8, 'congressmen': 8, 'Price': 8, 'republic': 8, 'undermine': 8, 'Agency': 8, 'revision': 8, 'Clarence': 8, 'Technology': 8, 'basketball': 8, 'instructor': 8, 'ADC': 8, 'Port': 8, 'fundamentally': 8, 'Issue': 8, 'hearings': 8, '4th': 8, 'scholarships': 8, '1963': 8, '180': 8, 'tactical': 8, 'solemnly': 8, 'consultation': 8, 'inclination': 8, 'revolt': 8, 'neutralist': 8, 'Citizens': 8, 'Investigation': 8, 'setup': 8, 'CD': 8, 'assemble': 8, 'urges': 8, 'enforce': 8, 'offense': 8, 'resent': 8, 'Newark': 8, 'FBI': 8, '1921': 8, 'elect': 8, 'feeble': 8, 'tangle': 8, 'Fifteen': 8, 'Liberal': 8, 'Controller': 8, 'corrupt': 8, 'selfish': 8, 'Works': 8, "Rayburn's": 8, 'overly': 8, 'succeeds': 8, 'monuments': 8, 'Hoover': 8, 'territories': 8, 'guessing': 8, 'predict': 8, 'wreck': 8, 'La.': 8, 'toss': 8, 'revive': 8, 'Hemphill': 8, 'contracted': 8, 'investigating': 8, 'Industries': 8, 'bankruptcy': 8, 'repairs': 8, '$2': 8, 'renewal': 8, 'spends': 8, 'bites': 8, 'Julian': 8, "years'": 8, 'barred': 8, 'Mo.': 8, '350': 8, 'honoring': 8, 'Oak': 8, 'Lodge': 8, 'Hugh': 8, 'denomination': 8, 'authoritative': 8, 'miracles': 8, 'Proof': 8, 'Sullivan': 8, 'blows': 8, 'mound': 8, 'Barker': 8, 'freshman': 8, 'Sheldon': 8, 'Manager': 8, 'mating': 8, 'Grace': 8, 'undergo': 8, 'slaughter': 8, "week's": 8, 'aerial': 8, 'ankle': 8, 'Tech': 8, 'Buffalo': 8, 'exceptionally': 8, 'comforting': 8, 'leagues': 8, 'Charley': 8, 'clicked': 8, 'Examiner': 8, 'slump': 8, 'rulers': 8, '19th': 8, 'Series': 8, 'championship': 8, 'Pirates': 8, 'Guy': 8, 'Babe': 8, 'prominently': 8, 'echoes': 8, 'heed': 8, 'Gibson': 8, 'flu': 8, 'Friend': 8, 'trio': 8, 'pitched': 8, 'contented': 8, "they've": 8, 'peaks': 8, 'resented': 8, 'preached': 8, 'inviting': 8, "Ruth's": 8, 'Wendell': 8, 'McCormick': 8, 'niece': 8, 'Pretty': 8, 'Memphis': 8, 'Carnegie': 8, 'generously': 8, 'Chase': 8, 'stag': 8, 'decorations': 8, 'comic': 8, 'testify': 8, 'Scots': 8, 'accommodations': 8, 'boast': 8, 'Rhodes': 8, 'veil': 8, 'Angelo': 8, 'festivities': 8, 'oysters': 8, 'chef': 8, 'scenic': 8, 'shelves': 8, 'Walnut': 8, 'wins': 8, 'Jacques': 8, 'hostess': 8, 'crimson': 8, 'two-story': 8, 'divorced': 8, 'aunt': 8, 'sentenced': 8, "Navy's": 8, 'Perry': 8, 'nominated': 8, 'Vocational': 8, 'subdivision': 8, 'Traffic': 8, 'Help': 8, 'auditorium': 8, 'taxing': 8, 'paramount': 8, 'Rights': 8, 'N.C.': 8, 'Expressway': 8, 'cameras': 8, 'Murray': 8, '99': 8, 'Achievement': 8, 'Results': 8, 'Strong': 8, 'diamond': 8, 'thieves': 8, 'deed': 8, 'collections': 8, 'shotgun': 8, 'decoration': 8, 'sanctuary': 8, 'bomber': 8, 'serene': 8, 'abolish': 8, 'stupidity': 8, 'charging': 8, '1896': 8, "They've": 8, 'cleaners': 8, 'cleaner': 8, 'prompt': 8, 'Sales': 8, 'appropriations': 8, 'unsatisfactory': 8, 'traded': 8, 'Peterson': 8, 'Oil': 8, '100%': 8, 'dividends': 8, 'precarious': 8, 'efficiently': 8, 'appliances': 8, 'Sioux': 8, 'trailed': 8, 'termination': 8, 'pad': 8, 'tax-free': 8, 'declare': 8, 'wardrobe': 8, 'designers': 8, 'Noel': 8, 'supporters': 8, 'steak': 8, 'flour': 8, 'Danish': 8, 'varieties': 8, 'ceramic': 8, 'decorative': 8, 'rooted': 8, 'baked': 8, 'recipe': 8, 'foliage': 8, 'practiced': 8, 'Budapest': 8, 'entails': 8, 'dismal': 8, 'Judy': 8, 'appraisal': 8, 'Le': 8, 'Francesca': 8, 'Kern': 8, 'preach': 8, 'engagements': 8, 'contests': 8, 'toys': 8, 'discarded': 8, 'pillow': 8, 'headlights': 8, 'unhappily': 8, 'Presidents': 8, 'uncommon': 8, 'simultaneous': 8, 'benches': 8, 'aide': 8, 'wreath': 8, 'monotonous': 8, 'outsiders': 8, 'confrontation': 8, 'encounters': 8, 'Camp': 8, 'Embassy': 8, 'negotiating': 8, 'brethren': 8, 'zeal': 8, 'duplication': 8, 'resembled': 8, 'delegate': 8, 'grips': 8, 'caliber': 8, 'boycott': 8, 'exaggerate': 8, 'restriction': 8, 'regulation': 8, 'survivors': 8, 'irrational': 8, '1914': 8, '1922': 8, 'artillery': 8, 'blunt': 8, 'staffs': 8, 'endure': 8, 'southward': 8, 'Considering': 8, 'confront': 8, 'gait': 8, 'Southerner': 8, 'raged': 8, 'notorious': 8, 'declaration': 8, 'boldly': 8, 'conspicuously': 8, 'dominate': 8, 'peril': 8, 'athlete': 8, '1938': 8, 'concede': 8, 'Airport': 8, 'sandwich': 8, 'strikingly': 8, 'weaker': 8, 'vines': 8, 'confided': 8, 'boom': 8, 'applicant': 8, 'Chancellor': 8, 'hunt': 8, 'statesmen': 8, '$300': 8, '1908': 8, 'provincial': 8, 'withdraw': 8, 'recruits': 8, 'volunteer': 8, 'eased': 8, 'toll-road': 8, 'speculative': 8, 'slumped': 8, 'mouths': 8, 'Wales': 8, 'lovers': 8, 'broaden': 8, 'Basic': 8, 'catalogue': 8, 'borne': 8, 'replacing': 8, 'bluff': 8, 'deaths': 8, 'dispatch': 8, 'buffalo': 8, 'prairie': 8, 'conquest': 8, 'westward': 8, "party's": 8, '2,000': 8, 'terrain': 8, 'militant': 8, 'Twice': 8, 'backing': 8, 'forceful': 8, 'patiently': 8, 'blindly': 8, 'humidity': 8, 'domes': 8, 'momentous': 8, 'bloody': 8, 'worthwhile': 8, 'complaints': 8, 'astonishing': 8, 'devise': 8, 'guarantees': 8, 'restoration': 8, 'predictable': 8, 'Bottom': 8, 'presses': 8, 'stimulating': 8, 'impartial': 8, 'unstable': 8, 'Presidency': 8, 'Meeting': 8, 'recommending': 8, 'straightforward': 8, 'junk': 8, 'calf': 8, 'wonders': 8, 'Imagine': 8, 'turtle': 8, 'Pam': 8, 'counters': 8, 'establishments': 8, 'sprung': 8, "You'd": 8, 'jammed': 8, 'bounce': 8, 'foe': 8, 'revival': 8, 'essays': 8, 'busily': 8, 'youngster': 8, 'thou': 8, 'usable': 8, 'blend': 8, 'crisp': 8, 'brighter': 8, 'releases': 8, 'financially': 8, 'reassurance': 8, 'Remove': 8, 'melancholy': 8, 'precaution': 8, 'undergraduates': 8, 'sleeves': 8, 'panting': 8, 'populations': 8, 'repeating': 8, 'articulate': 8, 'thief': 8, 'Prime': 8, 'granting': 8, 'se': 8, 'utilizing': 8, 'coldly': 8, 'grinding': 8, 'clarified': 8, 'premises': 8, 'advise': 8, 'bless': 8, 'slum': 8, 'Deep': 8, 'apportioned': 8, 'equals': 8, 'Connally': 8, 'perilous': 8, 'expose': 8, 'Inspector': 8, 'everlasting': 8, 'withheld': 8, 'focal': 8, 'directional': 8, 'stamp': 8, 'exploded': 8, 'Atomic': 8, 'footsteps': 8, 'Dead': 8, 'Marx': 8, 'qualification': 8, 'resemble': 8, 'accompaniment': 8, 'census': 8, 'reminder': 8, 'cardinal': 8, 'cynical': 8, 'inescapable': 8, 'Leaving': 8, 'Catholicism': 8, 'Orthodox': 8, 'irresistible': 8, 'spirited': 8, 'interpreter': 8, 'sympathies': 8, 'discontent': 8, 'ensure': 8, 'residue': 8, 'concealed': 8, 'removing': 8, 'kills': 8, 'imported': 8, 'technically': 8, 'saloons': 8, 'ancestry': 8, 'sailors': 8, 'Gradually': 8, 'evolved': 8, 'pathetic': 8, 'Draft': 8, 'plots': 8, 'chooses': 8, 'reciprocal': 8, 'wounds': 8, 'Von': 8, 'compelling': 8, 'Confrontation': 8, 'sophistication': 8, 'half-hour': 8, 'Need': 8, 'rust': 8, 'Snow': 8, 'absurdity': 8, 'minus': 8, 'cushion': 8, 'Lucia': 8, 'deer': 8, 'cooks': 8, 'relish': 8, 'poles': 8, "1920's": 8, 'interruption': 8, 'potentialities': 8, 'Strange': 8, 'authenticity': 8, 'architectural': 8, 'adherence': 8, 'Sonata': 8, 'Piano': 8, 'Op.': 8, 'unsuccessful': 8, 'impassioned': 8, 'rousing': 8, 'importantly': 8, 'seriousness': 8, 'scholarly': 8, 'Hitler': 8, 'wrath': 8, 'themes': 8, 'characterization': 8, 'possesses': 8, 'architects': 8, 'dashed': 8, "enemy's": 8, 'disadvantages': 8, 'glancing': 8, 'wicked': 8, 'deeds': 8, 'baroque': 8, 'traces': 8, 'cares': 8, 'deprived': 8, 'sticking': 8, 'singer': 8, 'agreeable': 8, 'Dance': 8, 'slack': 8, 'Really': 8, 'belts': 8, 'peers': 8, 'haunting': 8, 'cliff': 8, 'reminds': 8, 'thrusting': 8, 'observes': 8, "Didn't": 8, 'lone': 8, 'profoundly': 8, '600': 8, 'supplements': 8, 'canvases': 8, 'ash': 8, 'penetrated': 8, 'kindly': 8, 'flair': 8, 'charts': 8, 'satellite': 8, 'peer': 8, 'emancipation': 8, 'dwell': 8, 'mingled': 8, 'jokes': 8, 'motif': 8, 'foreseen': 8, 'weeping': 8, 'creeping': 8, 'Studies': 8, 'gracefully': 8, 'expresses': 8, 'Stravinsky': 8, 'Chien': 8, "poet's": 8, 'pills': 8, 'logs': 8, 'faulty': 8, 'stumbling': 8, 'relied': 8, 'Whoever': 8, 'compulsion': 8, 'downright': 8, 'distaste': 8, 'accidents': 8, 'calcium': 8, 'dispelled': 8, 'witches': 8, 'horns': 8, 'Surely': 8, 'unpaid': 8, 'excluded': 8, 'analogous': 8, '1861': 8, 'Universe': 8, 'Englishmen': 8, 'someday': 8, 'Faith': 8, 'embarrassment': 8, 'ecclesiastical': 8, 'spiral': 8, 'mortality': 8, 'Creator': 8, 'obey': 8, 'Unitarian': 8, 'Emerson': 8, 'accusing': 8, 'descended': 8, 'snarled': 8, 'bosom': 8, 'Saviour': 8, 'radiant': 8, 'mounts': 8, 'perpetual': 8, 'curtains': 8, 'symbolism': 8, 'diagrams': 8, 'Yin': 8, 'Near': 8, 'upside': 8, 'examinations': 8, 'recreational': 8, 'differentiation': 8, 'tolerance': 8, 'mentioning': 8, 'analyzing': 8, 'accidental': 8, 'realistically': 8, 'anguish': 8, 'repel': 8, 'avoidance': 8, 'insistent': 8, 'shaping': 8, 'dependable': 8, 'Seminary': 8, 'strains': 8, 'interdependent': 8, 'distilled': 8, 'attained': 8, 'Buddha': 8, 'yourselves': 8, 'mock': 8, 'Guideposts': 8, 'post-war': 8, 'Thornburg': 8, 'shield': 8, 'coupling': 8, 'skinny': 8, 'Super-Set': 8, 'compost': 8, 'mobility': 8, 'exceedingly': 8, 'one-shot': 8, 'SAC': 8, 'non': 8, 'Showmanship': 8, 'dock': 8, 'interlocking': 8, "1/4''": 8, "1/2''": 8, '2-56': 8, 'centimeters': 8, 'rocked': 8, 'skipped': 8, 'barrels': 8, 'chuck': 8, 'Cruz': 8, 'polish': 8, 'apple': 8, 'metropolis': 8, 'surroundings': 8, 'Holland': 8, 'Constantine': 8, 'Across': 8, 'Mosque': 8, 'courtyard': 8, 'coals': 8, 'buns': 8, 'franks': 8, 'frankfurter': 8, 'vinegar': 8, 'spaced': 8, 'mahogany': 8, 'planking': 8, 'jig': 8, 'clamped': 8, 'exterior': 8, 'springs': 8, 'spindle': 8, 'scrap': 8, 'relates': 8, 'pH': 8, 'debris': 8, 'pumping': 8, 'gaiety': 8, 'umbrella': 8, '1931': 8, 'fitness': 8, 'palms': 8, 'ultrasonic': 8, 'bacteria': 8, 'microscope': 8, 'transmitted': 8, 'indicator': 8, 'celestial': 8, 'electrostatic': 8, 'assumes': 8, 'bloat': 8, 'rot': 8, 'infection': 8, 'frowned': 8, 'vacations': 8, 'rigidly': 8, 'overboard': 8, 'hose': 8, 'fabrication': 8, 'extruded': 8, 'carrier': 8, 'lb': 8, 'stacked': 8, 'kilometer': 8, 'discernible': 8, 'ambiguity': 8, 'actuality': 8, 'stunned': 8, 'Vecchio': 8, 'flashlight': 8, 'slab': 8, 'peculiarly': 8, 'struggled': 8, 'Burns': 8, 'Jenny': 8, 'Wolfe': 8, 'telegram': 8, 'clocks': 8, 'messenger': 8, 'scrub': 8, 'slips': 8, 'Victorian': 8, 'erotic': 8, 'reversed': 8, 'bacon': 8, 'paradoxically': 8, 'Pulley': 8, 'tumors': 8, 'quacks': 8, 'orthodontic': 8, 'sucking': 8, 'embarrassed': 8, 'mourning': 8, 'Production': 8, 'pig': 8, 'secrecy': 8, 'sanctions': 8, 'propagation': 8, 'unnatural': 8, 'Juet': 8, 'aborigines': 8, 'fort': 8, 'modes': 8, 'companions': 8, 'illiterate': 8, 'homogeneous': 8, 'bias': 8, 'detectable': 8, 'Mel': 8, 'Frenchman': 8, 'stiffened': 8, 'pet': 8, 'peripheral': 8, 'Ivy': 8, 'knot': 8, 'afflicted': 8, 'scraped': 8, 'Victoria': 8, 'alibi': 8, "goin'": 8, 'aperture': 8, 'triumphantly': 8, 'knuckles': 8, 'pregnant': 8, 'automotive': 8, 'conflicting': 8, 'Palazzo': 8, 'staircase': 8, 'diminishing': 8, 'telegraph': 8, 'grandmother': 8, 'lower-class': 8, 'co-optation': 8, 'drawer': 8, 'civilizational': 8, 'crawling': 8, 'wandered': 8, "who's": 8, 'potters': 8, 'sunrise': 8, 'strangers': 8, 'agrarian': 8, 'disappearance': 8, 'Pollock': 8, 'knelt': 8, 'betrayed': 8, 'cyclist': 8, 'Poetics': 8, 'immediacy': 8, 'isolate': 8, 'prosperous': 8, 'X-ray': 8, 'utopian': 8, 'proprietorship': 8, 'martyr': 8, 'ontological': 8, 'Ptolemy': 8, 'Copernican': 8, 'Mamma': 8, 'Weston': 8, 'taut': 8, 'parliamentary': 8, "Mercer's": 8, "Hetman's": 8, 'accompany': 8, 'predispositions': 8, 'claimant': 8, 'multiplicity': 8, "Garibaldi's": 8, 'Strasbourg': 8, 'traps': 8, 'Athens': 8, 'ruins': 8, 'O.K.': 8, 'newt': 8, 'hips': 8, 'archaeological': 8, 'retreated': 8, 'haunted': 8, 'Doctrine': 8, 'farmhouse': 8, 'smoking': 8, 'hypothetical': 8, 'dystopias': 8, 'science-fiction': 8, "Malraux's": 8, 'fresco': 8, "Krim's": 8, 'surveying': 8, 'whereof': 8, 'sixty-one': 8, 'germanium': 8, 'notify': 8, 'allotments': 8, 'decreases': 8, '1040': 8, 'arcs': 8, 'kinetic': 8, 'parameters': 8, 'decreased': 8, '**yc': 8, 'capillary': 8, 'actives': 8, 'sorbed': 8, 'iodide': 8, 'micrometeorite': 8, 'meteorites': 8, 'bumblebees': 8, 'willow': 8, 'mouse': 8, 'interlobular': 8, 'thyroxine': 8, 'inhibit': 8, 'mg': 8, 'parasympathetic': 8, 'Theorem': 8, 'C-plane': 8, 'Ruanda-Urundi': 8, 'consonantal': 8, 'intonation': 8, 'phonemic': 8, 'Swadesh': 8, 'public-limit': 8, 'respondents': 8, 'respondent': 8, 'social-class': 8, 'tactual': 8, 'creek': 8, 'Barney': 8, 'Dorset': 8, 'frantically': 8, '24-hr.': 8, 'crystals': 8, '**yf': 8, 'foamed': 8, 'knitted': 8, 'restorative': 8, 'accelerometers': 8, 'jumping': 8, 'Papa-san': 8, 'winked': 8, 'chuckled': 8, 'Brandon': 8, 'slapped': 8, 'Jed': 8, 'yeah': 8, 'shoved': 8, 'muttering': 8, 'lotion': 8, "who'd": 8, 'impatiently': 8, 'clutching': 8, 'stool': 8, 'Lolotte': 8, 'Matson': 8, 'Beauclerk': 8, 'Nogol': 8, "Helva's": 8, 'veranda': 8, 'quirt': 8, 'Macklin': 8, "Curt's": 8, 'trunk': 8, 'Artie': 8, 'Robards': 8, 'Doaty': 8, 'Buzz': 8, 'Gratt': 8, 'Ryusenji': 8, 'Hamrick': 8, "Barco's": 8, 'workbench': 8, 'radish': 8, 'Welfare': 7, 'pricing': 7, 'Ala.': 7, '1923': 7, 'petitions': 7, 'resignation': 7, 'gubernatorial': 7, 'issuance': 7, '$50': 7, '$10': 7, 'legislator': 7, 'watered': 7, 'violate': 7, 'contractual': 7, 'enact': 7, 'con': 7, 'fare': 7, 'enlarged': 7, 'retarded': 7, 'certificate': 7, 'Paradise': 7, 'Signal': 7, 'preserving': 7, 'admitting': 7, 'Karns': 7, '24th': 7, '9th': 7, 'levy': 7, 'enlarge': 7, 'constructing': 7, 'doubling': 7, 'hailed': 7, 'Tex.': 7, 'Treaty': 7, 'tragedies': 7, 'relaxation': 7, 'deterrent': 7, 'facto': 7, 'cease-fire': 7, 'victories': 7, 'ban': 7, 'recipient': 7, 'coping': 7, 'assertion': 7, 'assisted': 7, 'enactment': 7, 'radios': 7, 'statutes': 7, 'grocery': 7, 'labor-management': 7, 'utilities': 7, 'dividing': 7, 'Martinelli': 7, 'Sr.': 7, 'carcass': 7, 'forum': 7, 'waged': 7, 'insult': 7, 'overwhelmingly': 7, 'Case': 7, 'repay': 7, 'Orange': 7, 'credits': 7, 'expedient': 7, 'retiring': 7, 'Representative': 7, 'Buckley': 7, 'scandals': 7, 'norm': 7, 'slums': 7, 'Question': 7, 'Same': 7, 'proposes': 7, 'Y.': 7, 'Questions': 7, 'Maurice': 7, 'Burke': 7, 'merchandising': 7, 'wholesale': 7, 'avenue': 7, 'occupying': 7, 'statues': 7, 'Delta': 7, 'troublesome': 7, 'Steel': 7, 'dwellings': 7, '$5': 7, 'Deputy': 7, 'pleaded': 7, 'probation': 7, 'teamsters': 7, 'ankles': 7, "car's": 7, 'organizing': 7, 'bowed': 7, 'agreeing': 7, 'congenial': 7, 'cooperating': 7, 'fruitful': 7, 'Whipple': 7, 'Grove': 7, '8,000': 7, 'lending': 7, 'fraud': 7, 'dismissal': 7, 'mails': 7, 'solo': 7, 'pitchers': 7, 'brisk': 7, 'Prior': 7, 'half-mile': 7, 'donated': 7, '110': 7, '37': 7, 'prevailed': 7, 'Happy': 7, 'stops': 7, 'collectors': 7, 'bang': 7, 'infield': 7, 'exotic': 7, 'Reno': 7, 'Olympic': 7, 'awaited': 7, 'Incidentally': 7, 'distressing': 7, 'crushing': 7, 'trailing': 7, 'Award': 7, 'Patricia': 7, 'switching': 7, 'Ted': 7, 'Golf': 7, 'charity': 7, 'floated': 7, 'confessed': 7, 'Nine': 7, 'collapse': 7, 'Cardinal': 7, 'recession': 7, 'imposing': 7, "club's": 7, "York's": 7, 'Benington': 7, 'faults': 7, 'fifteenth': 7, 'oats': 7, 'bestowed': 7, 'Leo': 7, 'Hamm': 7, 'Homer': 7, 'embassies': 7, 'smoothed': 7, 'Pakistan': 7, 'hinted': 7, "Russell's": 7, 'injection': 7, 'phones': 7, 'Nobel': 7, 'Everywhere': 7, 'cheer': 7, 'awaiting': 7, 'bum': 7, 'sporting': 7, 'motels': 7, 'Va.': 7, 'attendants': 7, 'lace': 7, 'Carter': 7, 'Shop': 7, 'bundles': 7, 'dessert': 7, 'Col.': 7, 'Troop': 7, 'invites': 7, 'Greater': 7, 'Nicholas': 7, 'Carnival': 7, 'jointly': 7, 'ballroom': 7, 'chic': 7, 'slippers': 7, 'roses': 7, 'threads': 7, 'choking': 7, 'damaged': 7, 'Annapolis': 7, 'Boy': 7, 'Work': 7, 'overlooked': 7, 'inefficient': 7, 'Simpkins': 7, 'totaled': 7, '33': 7, 'terrace': 7, 'reactor': 7, 'Canadian': 7, 'bail': 7, 'currency': 7, 'reproduced': 7, 'fastest': 7, 'narcotics': 7, 'posed': 7, 'mentions': 7, 'CTA': 7, 'Evanston': 7, 'Anna': 7, 'Funeral': 7, 'twin': 7, 'announcing': 7, 'Murphy': 7, 'Vientiane': 7, 'offensive': 7, 'confirmation': 7, 'Seattle': 7, 'Fidel': 7, 'obstacles': 7, 'affiliated': 7, 'sporadic': 7, 'integrate': 7, 'subdued': 7, 'cursing': 7, '5,000': 7, 'pensions': 7, 'fiery': 7, 'directing': 7, 'Burnside': 7, 'collision': 7, 'Beatrice': 7, 'potentially': 7, 'booked': 7, 'Aaron': 7, '69': 7, 'garbage': 7, 'valuation': 7, 'Fletcher': 7, 'Oliver': 7, 'alterations': 7, 'afloat': 7, 'Princeton': 7, 'spraying': 7, 'conservation': 7, 'forgetting': 7, 'middle-aged': 7, 'pilots': 7, "Hitler's": 7, 'rocket': 7, 'speck': 7, 'bolted': 7, 'persecution': 7, 'managing': 7, 'executives': 7, 'bluntly': 7, 'upturn': 7, '40%': 7, 'securities': 7, 'Read': 7, "1960's": 7, 'experiencing': 7, 'yields': 7, '10%': 7, 'Farmers': 7, 'tractors': 7, 'Nearly': 7, 'receipts': 7, 'taxable': 7, 'softened': 7, 'signing': 7, 'entirety': 7, 'subsidiary': 7, 'edged': 7, 'seasonal': 7, 'Marcus': 7, 'Down': 7, 'portrayal': 7, 'Leave': 7, 'monotony': 7, 'arches': 7, 'wrinkles': 7, 'combines': 7, 'accessories': 7, 'Days': 7, 'comprised': 7, 'buses': 7, 'Wells': 7, 'continents': 7, 'Register': 7, 'exchanged': 7, 'execute': 7, "Today's": 7, 'shrewd': 7, 'Colonial': 7, 'Solid': 7, 'pursuing': 7, 'trumpet': 7, 'redhead': 7, 'sampled': 7, 'Operation': 7, 'strive': 7, 'uphold': 7, '7:30': 7, 'Imperial': 7, 'vulgar': 7, 'peasant': 7, 'harmonies': 7, 'listing': 7, 'summed': 7, 'greet': 7, 'sculptures': 7, 'solving': 7, 'haze': 7, 'Nikita': 7, 'concessions': 7, 'deliberations': 7, 'reluctantly': 7, 'cancel': 7, 'biology': 7, 'accomplishment': 7, 'generosity': 7, 'wasteful': 7, 'riot': 7, 'temperament': 7, 'salaries': 7, 'Religious': 7, 'disputes': 7, 'provoked': 7, 'attributable': 7, 'defective': 7, 'abuses': 7, 'evoked': 7, 'inform': 7, 'govern': 7, 'evaluating': 7, 'denounced': 7, 'regulated': 7, 'exemption': 7, 'Gore': 7, 'erupted': 7, 'fronts': 7, 'Lexington': 7, "Year's": 7, 'Study': 7, 'flatly': 7, 'Mister': 7, 'inferior': 7, 'chore': 7, 'disappointing': 7, 'Starting': 7, 'paces': 7, 'backgrounds': 7, 'incredibly': 7, 'broadened': 7, 'kidding': 7, 'fierce': 7, "ladies'": 7, 'socks': 7, 'Adlai': 7, 'tapped': 7, 'exhaust': 7, 'gaudy': 7, 'headlines': 7, 'bargain': 7, 'barge': 7, 'revenge': 7, 'skins': 7, 'beatnik': 7, 'Conant': 7, 'lure': 7, 'reign': 7, 'ancestor': 7, 'commencing': 7, 'ruthless': 7, '25,000': 7, 'indefinite': 7, 'colonies': 7, 'Tshombe': 7, 'commenced': 7, 'blamed': 7, 'uniformed': 7, 'Mediterranean': 7, 'surged': 7, 'Things': 7, 'Success': 7, 'rosy': 7, 'calculating': 7, 'Follow': 7, 'hopelessly': 7, 'plight': 7, 'wary': 7, 'multiplying': 7, 'discriminating': 7, 'repeal': 7, 'builds': 7, 'sanitation': 7, "Company's": 7, 'Caribbean': 7, 'uncovered': 7, 'vanity': 7, 'confines': 7, 'breathe': 7, 'inference': 7, 'provocative': 7, 'salami': 7, 'unbroken': 7, 'sipping': 7, 'links': 7, 'dealings': 7, 'chatter': 7, 'Italians': 7, 'anarchy': 7, 'misplaced': 7, 'triggered': 7, 'experimentally': 7, 'Shadow': 7, 'symptomatic': 7, 'Dag': 7, 'consensus': 7, 'pinched': 7, 'Problems': 7, 'fashioned': 7, 'Key': 7, 'underneath': 7, 'sands': 7, 'Juan': 7, "farmer's": 7, 'innovation': 7, 'hurricane': 7, 'sighted': 7, "Washington's": 7, 'dunes': 7, 'Joint': 7, 'countryside': 7, 'Ellis': 7, 'Tammany': 7, 'elephant': 7, 'Batista': 7, 'immigration': 7, 'postcard': 7, 'Competition': 7, 'axes': 7, 'U.S.S.R.': 7, 'retaining': 7, 'heretofore': 7, 'warmly': 7, 'grey': 7, 'echoed': 7, 'grudge': 7, 'envy': 7, 'shrill': 7, 'obscured': 7, 'stranded': 7, 'endlessly': 7, 'heir': 7, 'old-fashioned': 7, 'woven': 7, 'Hardly': 7, 'sunshine': 7, 'gravely': 7, 'Nashville': 7, 'incidentally': 7, 'cruising': 7, 'enlightened': 7, 'courtesy': 7, 'hunch': 7, 'Physical': 7, 'Dear': 7, 'coloring': 7, 'immature': 7, 'depicted': 7, 'CDC': 7, 'participates': 7, 'illustrates': 7, 'fascinated': 7, 'hysteria': 7, 'postpone': 7, 'unwilling': 7, 'Ring': 7, 'Sing': 7, 'prisoner': 7, 'confinement': 7, 'locks': 7, 'IBM': 7, 'nostalgia': 7, 'recalling': 7, 'Scriptures': 7, 'comprehension': 7, 'Congregational': 7, 'tapered': 7, 'oval': 7, 'tan': 7, 'brushes': 7, 'brushing': 7, 'crowned': 7, 'disorders': 7, 'cerebral': 7, 'Turn': 7, 'discs': 7, 'narrower': 7, 'fifties': 7, 'straining': 7, 'wisely': 7, 'distortion': 7, 'visions': 7, 'desperation': 7, 'commend': 7, 'abolition': 7, 'packaging': 7, 'Engineering': 7, 'futility': 7, 'disagree': 7, 'self-determination': 7, 'burdens': 7, 'certified': 7, 'Twenty': 7, 'terraces': 7, 'contemplate': 7, 'immunity': 7, 'reservation': 7, 'subway': 7, 'alley': 7, 'polite': 7, 'Schuylkill': 7, 'exploding': 7, 'install': 7, 'sentiments': 7, 'hymn': 7, 'premise': 7, 'sixty-five': 7, 'departures': 7, 'graveyard': 7, 'hanged': 7, 'Karl': 7, 'corpse': 7, 'credo': 7, 'embodied': 7, 'discomfort': 7, 'intake': 7, 'Pauling': 7, 'Magazine': 7, 'concentrating': 7, 'insufficient': 7, 'generalizations': 7, 'yearning': 7, 'sympathize': 7, 'reassuring': 7, 'persists': 7, 'plentiful': 7, 'unmistakable': 7, 'Taiwan': 7, 'Mao': 7, 'starvation': 7, 'defy': 7, 'undertook': 7, 'Tibet': 7, 'inhuman': 7, 'arrives': 7, 'gestures': 7, 'rags': 7, 'emergencies': 7, 'cycles': 7, 'motionless': 7, '$200': 7, 'origins': 7, 'portraits': 7, 'ugliness': 7, 'strangely': 7, 'Twentieth': 7, 'bureaucracy': 7, 'Molotov': 7, 'suspicions': 7, 'maneuvers': 7, 'broadcasts': 7, 'McCarthy': 7, 'communicating': 7, 'experimenting': 7, 'edited': 7, 'flattered': 7, 'publisher': 7, "Charles'": 7, 'Brahms': 7, 'tunes': 7, 'Spain': 7, 'sincerely': 7, 'bony': 7, 'magnificently': 7, 'reinforced': 7, 'wink': 7, 'newcomer': 7, 'topped': 7, 'large-scale': 7, 'idiom': 7, 'Victory': 7, 'battles': 7, 'myriad': 7, 'careless': 7, 'exuberant': 7, 'stamped': 7, 'overcomes': 7, 'blaze': 7, 'Jen': 7, 'novelties': 7, 'whipping': 7, 'sensibility': 7, 'numbering': 7, 'scratched': 7, 'Yorker': 7, 'noteworthy': 7, 'mildly': 7, 'concluding': 7, 'tart': 7, 'Kennan': 7, 'revolutions': 7, 'negotiated': 7, "author's": 7, 'endowed': 7, 'talented': 7, 'torso': 7, 'ballads': 7, 'linger': 7, 'digging': 7, 'symphonic': 7, 'tonal': 7, 'Elizabethan': 7, 'equivalents': 7, 'superficial': 7, 'inexperienced': 7, 'chord': 7, 'Together': 7, 'Going': 7, 'ballad': 7, 'generate': 7, 'Ferguson': 7, 'mores': 7, 'lyrical': 7, '1929': 7, 'raucous': 7, 'expressive': 7, 'invent': 7, 'irritation': 7, 'recorder': 7, 'conclusively': 7, 'Call': 7, 'hesitation': 7, 'tricks': 7, 'chronological': 7, 'trusts': 7, 'dignified': 7, 'strides': 7, 'Sponsor': 7, 'assimilation': 7, "artist's": 7, 'Gloucester': 7, 'mysteries': 7, 'galaxies': 7, 'hopefully': 7, 'rays': 7, 'gases': 7, 'enclosure': 7, 'responds': 7, 'depart': 7, 'fortified': 7, 'raining': 7, 'traveler': 7, 'illusions': 7, 'reproduce': 7, 'hotter': 7, 'Nice': 7, 'mansion': 7, 'mint': 7, 'Swedish': 7, 'Suite': 7, 'weekends': 7, 'lakes': 7, 'Clerfayt': 7, 'discourse': 7, 'liberties': 7, 'beast': 7, 'morally': 7, 'Napoleon': 7, 'calories': 7, 'spoilage': 7, 'concentrates': 7, 'powdered': 7, 'inventor': 7, 'coronary': 7, 'prey': 7, 'fostered': 7, 'fatty': 7, 'correspond': 7, 'emptied': 7, 'superstition': 7, 'filthy': 7, "Bultmann's": 7, 'unavoidable': 7, 'flock': 7, 'despise': 7, 'Whitehead': 7, 'exclude': 7, 'popularly': 7, 'implying': 7, 'utmost': 7, 'mapping': 7, 'thy': 7, 'lord': 7, 'dominion': 7, 'disobedience': 7, 'offspring': 7, 'factual': 7, 'alarmed': 7, 'spiritually': 7, 'ministry': 7, 'joys': 7, 'amusement': 7, 'dubious': 7, 'diversion': 7, 'refuge': 7, 'stimulated': 7, 'emperor': 7, 'Membership': 7, 'Supper': 7, 'preparatory': 7, 'inactive': 7, 'exclusion': 7, 'Jerusalem': 7, 'prohibited': 7, 'prevail': 7, 'precautions': 7, 'unrelated': 7, 'Real': 7, 'restrictive': 7, 'securing': 7, "client's": 7, 'blizzard': 7, 'snows': 7, 'swell': 7, 'obeyed': 7, 'approximation': 7, 'patriot': 7, 'Hopkins': 7, 'generating': 7, 'manipulation': 7, 'monastic': 7, 'beckoned': 7, 'hears': 7, 'mailing': 7, 'Marina': 7, 'Undoubtedly': 7, 'skiing': 7, 'Bench': 7, 'elbows': 7, 'symmetry': 7, 'thighs': 7, 'glaring': 7, 'sprinkling': 7, 'phosphate': 7, 'blossoms': 7, 'reputable': 7, 'acids': 7, 'terrifying': 7, 'vulnerability': 7, 'Titan': 7, 'airborne': 7, 'Large': 7, 'photography': 7, 'performer': 7, 'Quartet': 7, 'cite': 7, 'fidelity': 7, 'multiplied': 7, 'alteration': 7, 'easiest': 7, 'pacing': 7, 'Finals': 7, 'sensing': 7, 'fishermen': 7, 'motors': 7, 'terrified': 7, 'Manufacturers': 7, 'nomenclature': 7, 'sloping': 7, "1/8''": 7, 'lifting': 7, 'cylinders': 7, 'piston': 7, 'Hoot': 7, 'masculine': 7, 'Direct': 7, 'trotted': 7, '2:37': 7, 'antelope': 7, 'shortened': 7, 'tallyho': 7, 'Heat': 7, 'ink': 7, 'cured': 7, 'tablespoons': 7, 'oven': 7, 'ledger': 7, 'predominantly': 7, 'landmarks': 7, 'formations': 7, 'Sophia': 7, 'diamonds': 7, 'chilled': 7, 'knives': 7, 'Years': 7, 'Score': 7, 'frankfurters': 7, 'drained': 7, 'molds': 7, 'bending': 7, 'strand': 7, 'curved': 7, 'Hold': 7, 'glue': 7, 'flooring': 7, 'rag': 7, 'Body': 7, 'breadth': 7, 'hereby': 7, 'rigorous': 7, 'gatherings': 7, 'protesting': 7, 'brutal': 7, 'dripping': 7, 'pipes': 7, 'penetrate': 7, 'Animals': 7, 'slopes': 7, 'skeptical': 7, 'high-pitched': 7, 'beset': 7, 'transform': 7, 'moods': 7, 'recognizable': 7, 'Horse': 7, 'lessening': 7, 'mercury': 7, 'mouthpiece': 7, 'submerged': 7, "Oersted's": 7, 'banished': 7, 'voltaic': 7, '1819': 7, 'magnetism': 7, 'Electrical': 7, 'diarrhea': 7, 'incidence': 7, 'lambs': 7, 'intensification': 7, 'distributor': 7, 'economies': 7, 'examining': 7, 'accreditation': 7, 'Recreation': 7, 'Thanksgiving': 7, 'Present': 7, 'consultants': 7, 'Automobile': 7, 'wandering': 7, 'Approximately': 7, 'liability': 7, 'styrene': 7, 'dominates': 7, 'acetate': 7, 'openings': 7, 'stud': 7, 'unload': 7, 'clinging': 7, 'squat': 7, 'twenty-one': 7, 'wiser': 7, 'nickel': 7, 'charting': 7, 'impaired': 7, 'relate': 7, 'rehearsed': 7, 'gazed': 7, 'crashing': 7, 'invisible': 7, 'deja': 7, 'vue': 7, 'concurrent': 7, 'nutrition': 7, 'Montpelier': 7, 'wiry': 7, 'Somers': 7, 'gadgets': 7, 'vaginal': 7, 'orgasm': 7, 'Diana': 7, 'Harrington': 7, 'Jelke': 7, 'Shaefer': 7, 'disorder': 7, 'proxy': 7, 'elastic': 7, 'twins': 7, 'intuitive': 7, 'odors': 7, 'irons': 7, 'rented': 7, "Wasn't": 7, 'unavailable': 7, 'regards': 7, 'ascertain': 7, 'condemnation': 7, 'fragmentary': 7, 'cabins': 7, 'twenty-three': 7, 'Snelling': 7, 'annoyed': 7, 'laundering': 7, "Sherman's": 7, 'lore': 7, 'collector': 7, 'analyst': 7, 'rattling': 7, 'earthquakes': 7, 'Goulding': 7, 'platoon': 7, 'ambush': 7, 'barefoot': 7, 'appreciably': 7, 'graduating': 7, 'bathed': 7, 'rusty': 7, 'Blood': 7, 'scraping': 7, 'Winter': 7, 'brandy': 7, 'bucket': 7, 'aeration': 7, 'Hanoverian': 7, 'conveniently': 7, 'Giles': 7, 'typing': 7, "1930's": 7, 'cosmetics': 7, 'Cattle': 7, 'ranchers': 7, 'choked': 7, 'stir': 7, 'discontinued': 7, 'faintly': 7, 'cracks': 7, 'bruised': 7, 'spin': 7, 'pony': 7, 'prevails': 7, 'preferences': 7, 'pretend': 7, 'postulated': 7, 'polar': 7, 'deterministic': 7, 'self-certainty': 7, 'infringement': 7, 'conceal': 7, 'procedural': 7, 'royalty': 7, 'withholding': 7, 'Dei': 7, 'facade': 7, 'Corso': 7, 'callous': 7, 'trapped': 7, 'instinctively': 7, 'congregational': 7, 'recruitment': 7, 'nonetheless': 7, 'displeased': 7, 'Rooney': 7, 'tails': 7, 'Menshikov': 7, 'Kyoto': 7, 'Celtic': 7, 'arena': 7, 'restraining': 7, 'frail': 7, 'Base': 7, 'screeching': 7, 'squall': 7, 'aborigine': 7, 'boulder': 7, 'patted': 7, 'eyelids': 7, 'Frankfurt': 7, 'Palestine': 7, 'refugee': 7, '1832': 7, 'urbanization': 7, 'ambiguities': 7, 'perceptual': 7, 'excitedly': 7, 'organisms': 7, 'Venice': 7, 'cautiously': 7, 'epithets': 7, 'wretched': 7, 'quivering': 7, 'exalted': 7, 'Slowly': 7, 'warriors': 7, 'longed': 7, 'punished': 7, 'defiance': 7, 'configuration': 7, 'n': 7, 'dispersed': 7, 'diffraction': 7, 'rendezvous': 7, 'accruing': 7, 'Shylock': 7, 'activation': 7, 'knight': 7, 'simulated': 7, 'Duclos': 7, 'stack': 7, 'speculate': 7, 'spherical': 7, 'terrestrial': 7, 'discrete': 7, 'Rabbi': 7, 'Olgivanna': 7, 'awaken': 7, 'writ': 7, 'eyed': 7, 'Lilian': 7, 'Heard': 7, 'trousers': 7, 'chimney': 7, 'Molesworth': 7, 'Succession': 7, 'maximization': 7, "Shelley's": 7, 'grinning': 7, 'Rhine': 7, 'streaming': 7, 'surrendered': 7, 'Meynell': 7, 'wearily': 7, 'Fe': 7, 'suppression': 7, 'Tessie': 7, 'Saxons': 7, 'quarry': 7, 'apron': 7, 'dystopian': 7, 'Seems': 7, "Patchen's": 7, 'hunted': 7, 'Interest': 7, 'aggregate': 7, 'follow-up': 7, 'Plantations': 7, 'hereunto': 7, 'pathology': 7, 'Illustration': 7, 'consequent': 7, 'resistors': 7, 'bulb': 7, 'diaphragm': 7, 'Yugoslav': 7, 'trustee': 7, 'restraints': 7, 'bidding': 7, 'Gibbs': 7, 'Darling': 7, 'parameter': 7, 'symmetric': 7, 'surface-active': 7, 'soiled': 7, 'photochemical': 7, 'meteoritic': 7, 'aerosol': 7, 'chromatography': 7, 'centrifuged': 7, 'hr': 7, 'queens': 7, 'beebread': 7, 'Andrena': 7, 'supportive': 7, 'Summary': 7, 'denotes': 7, 'cf.': 7, 'gall': 7, 'dilution': 7, 'cortex': 7, 'vectors': 7, 'subspace': 7, 'marksman': 7, 'Lemma': 7, 'quadric': 7, 'equate': 7, 'regression': 7, 'Brandywine': 7, 'hebephrenic': 7, 'semantic': 7, 'lookup': 7, 'syllables': 7, 'declarative': 7, 'Yokuts': 7, 'verbs': 7, 'indices': 7, 'bottoms': 7, '203': 7, 'referrals': 7, 'positivist': 7, 'Vermejo': 7, 'oak': 7, "More's": 7, 'wallpaper': 7, 'flatness': 7, 'Costaggini': 7, 'Kitty': 7, 'Hawk': 7, 'Mussorgsky': 7, 'exit': 7, 'Expectations': 7, 'hammer': 7, 'elbow': 7, 'Define': 7, 'DIOCS': 7, 'ponds': 7, 'algae': 7, 'protozoa': 7, 'stalked': 7, 'Mines': 7, 'polyether': 7, 'photocathode': 7, 'darkened': 7, 'shout': 7, 'errand': 7, 'clutched': 7, 'taller': 7, 'peaked': 7, 'goddamn': 7, 'Rebel': 7, 'Kahler': 7, 'hawk': 7, 'lump': 7, 'groped': 7, 'hallway': 7, 'Flannagan': 7, 'glare': 7, 'hugging': 7, 'cough': 7, 'slacks': 7, 'Geely': 7, 'Gibby': 7, 'Paxton': 7, 'Willings': 7, 'Mullins': 7, "Meeker's": 7, "Nick's": 7, 'slick': 7, '1105': 7, "an'": 7, 'Digby': 7, 'Macneff': 7, 'gapt': 7, 'Siddo': 7, 'hoofs': 7, "Mike's": 7, 'Oso': 7, 'grove': 7, 'Kodyke': 7, 'Summers': 7, 'buckskin': 7, 'Hez': 7, 'Donovan': 7, 'Woman': 7, 'Heiser': 7, 'Sabella': 7, 'Mousie': 7, 'dugout': 7, 'Fudo': 7, 'Catatonia': 7, 'Gorboduc': 7, 'distribute': 6, 'surveillance': 6, 'concessionaires': 6, 'Pearl': 6, 'Berry': 6, '74': 6, 'Ridge': 6, 'Vandiver': 6, 'Construction': 6, 'revolving': 6, 'intends': 6, 'endorse': 6, '13th': 6, 'veiled': 6, '300,000': 6, 'Operating': 6, 'Antonio': 6, 'ponies': 6, 'Schwartz': 6, 'Money': 6, 'licensing': 6, 'construed': 6, 'defenders': 6, 'small-town': 6, 'Collins': 6, 'Newton': 6, 'Chapman': 6, "master's": 6, 'Hays': 6, 'patrolman': 6, 'Bellows': 6, 'attorneys': 6, 'Wexler': 6, 'precinct': 6, '28th': 6, 'Cost': 6, '$5,000': 6, 'Officials': 6, '$20': 6, 'one-fourth': 6, '$2,000': 6, '700': 6, 'compulsory': 6, 'appointments': 6, 'conspicuous': 6, 'courteous': 6, 'tenor': 6, 'impetus': 6, 'firmer': 6, 'susceptible': 6, 'educators': 6, 'totalitarian': 6, 'shipped': 6, 'tolerated': 6, 'Aid': 6, 'freeze': 6, 'steamed': 6, 'all-out': 6, 'Souvanna': 6, 'relinquish': 6, 'Simultaneously': 6, 'Narragansett': 6, 'responding': 6, 'appoint': 6, 'merchandise': 6, 'outlets': 6, 'inspiring': 6, 'Sixth': 6, 'Westfield': 6, 'continuance': 6, 'witnessing': 6, 'candidacy': 6, 'mandatory': 6, 'commissioner': 6, 'Appeals': 6, 'Conservation': 6, '$60': 6, 'Abraham': 6, 'contend': 6, 'proposing': 6, "leader's": 6, "yesterday's": 6, 'revulsion': 6, 'alienated': 6, 'spotlight': 6, 'publicized': 6, 'petty': 6, 'economist': 6, "France's": 6, 'cordial': 6, "government's": 6, '1865': 6, 'vantage': 6, 'gazing': 6, 'foes': 6, 'clouded': 6, 'Reports': 6, 'finances': 6, 'towel': 6, 'signature': 6, 'contractor': 6, '95': 6, 'outspoken': 6, 'Turkey': 6, 'deadline': 6, 'aiding': 6, 'Multnomah': 6, 'Individual': 6, 'Beaverton': 6, 'specifications': 6, 'Terry': 6, 'bodily': 6, 'upwards': 6, 'pastors': 6, 'laymen': 6, 'upheld': 6, 'defendant': 6, "A's": 6, 'throws': 6, 'doubles': 6, 'Whitey': 6, 'popped': 6, 'pitches': 6, '86': 6, 'shortstop': 6, 'workout': 6, 'rookie': 6, "Sunday's": 6, 'Stengel': 6, 'assisting': 6, 'Bird': 6, 'Dunn': 6, 'ramp': 6, 'someplace': 6, 'Fresh': 6, 'colts': 6, 'Butcher': 6, 'Waters': 6, 'Football': 6, 'conversions': 6, '56': 6, 'touchdown': 6, 'Coach': 6, 'Kelsey': 6, 'opener': 6, 'Indianapolis': 6, 'Louisville': 6, 'Chuck': 6, 'tagged': 6, 'Utah': 6, 'reflexes': 6, 'Liston': 6, 'revived': 6, 'abide': 6, 'NBC': 6, 'finale': 6, "Mantle's": 6, 'feat': 6, '$20,000': 6, 'Sutherland': 6, 'stadium': 6, 'winner': 6, 'Trophy': 6, 'blazing': 6, 'athletics': 6, 'hooked': 6, 'idol': 6, "Palmer's": 6, 'flowed': 6, 'Danny': 6, 'bats': 6, 'runaway': 6, 'healed': 6, 'inscription': 6, 'Notre': 6, 'Dame': 6, 'super': 6, 'Crystal': 6, 'sensational': 6, 'spelled': 6, 'possessing': 6, 'Alvin': 6, 'Cancer': 6, 'Arms': 6, 'buffet': 6, "summer's": 6, 'Honolulu': 6, 'canceled': 6, 'promotional': 6, 'morals': 6, "She'll": 6, 'slogan': 6, 'bayonet': 6, 'doings': 6, 'gala': 6, 'Marr': 6, 'cookies': 6, 'marvel': 6, 'accidentally': 6, 'ants': 6, 'Alpha': 6, 'Marie': 6, 'hospitality': 6, 'totals': 6, 'Harcourt': 6, 'Meyer': 6, 'fraternity': 6, 'Katherine': 6, 'attends': 6, 'Auditorium': 6, 'ashes': 6, 'Wiley': 6, 'robbery': 6, 'assaulted': 6, '$150': 6, 'ambulance': 6, 'storms': 6, 'Werner': 6, 'manual': 6, 'laborers': 6, 'Elmer': 6, 'Various': 6, "Britain's": 6, 'Dreadnought': 6, 'hunter': 6, 'patterned': 6, 'passport': 6, 'wrapping': 6, 'manuscript': 6, 'adviser': 6, 'reactors': 6, 'navy': 6, 'detecting': 6, 'wavelengths': 6, '$800': 6, 'Stewart': 6, 'pardon': 6, '1934': 6, 'Patrolman': 6, 'Jenks': 6, 'Johns': 6, 'Prosecutor': 6, 'Mile': 6, 'arrears': 6, 'northeast': 6, 'narrowly': 6, 'Vietnamese': 6, 'makeshift': 6, 'Siberia': 6, 'tax-exempt': 6, 'Teaching': 6, 'creed': 6, 'bruises': 6, '68': 6, 'Wallace': 6, 'Wilmington': 6, 'ripped': 6, 'scratches': 6, 'Pierce': 6, 'Turner': 6, 'congestion': 6, 'crippling': 6, 'weaknesses': 6, '1926': 6, 'Abbey': 6, 'grandchildren': 6, 'dividend': 6, 'Nevada': 6, 'ribbons': 6, 'assessments': 6, 'lamb': 6, 'wallet': 6, 'rings': 6, 'Workers': 6, 'contributors': 6, 'ashore': 6, 'rescued': 6, 'sinking': 6, 'interfering': 6, 'Riders': 6, 'imprisonment': 6, 'Sciences': 6, 'Buchheister': 6, 'Convention': 6, 'plague': 6, 'wrecked': 6, 'pollution': 6, 'Allies': 6, 'm.p.h.': 6, 'Quaker': 6, 'ghastly': 6, 'Caesar': 6, 'workmen': 6, 'Leavitt': 6, 'meter': 6, 'Bonn': 6, 'Gin': 6, 'Moss': 6, 'bearings': 6, 'banquet': 6, 'Janice': 6, 'pessimism': 6, 'cautioned': 6, 'liable': 6, 'debentures': 6, 'weaken': 6, 'examiner': 6, 'borrowing': 6, '5%': 6, '25%': 6, 'Toronto': 6, 'depletion': 6, 'figuring': 6, 'percentages': 6, 'Greer': 6, 'creator': 6, 'Forsythe': 6, 'Stay': 6, 'Mostly': 6, 'sprinkle': 6, 'Heritage': 6, 'outdoors': 6, 'softening': 6, 'snack': 6, 'tucked': 6, 'attire': 6, 'vicinity': 6, 'Hawaiian': 6, 'coconut': 6, 'Robbins': 6, 'linen': 6, 'needles': 6, 'Getting': 6, 'pilgrimage': 6, 'impeccable': 6, 'Browning': 6, 'Pasadena': 6, 'residing': 6, 'puppet': 6, 'lamps': 6, 'manipulate': 6, 'circus': 6, 'relegated': 6, 'props': 6, 'Lauderdale': 6, 'productions': 6, 'Workshop': 6, 'lecturer': 6, 'assemblies': 6, 'Episcopal': 6, 'Yuri': 6, 'auspices': 6, 'senseless': 6, 'boasted': 6, 'tease': 6, 'Channel': 6, 'gallons': 6, 'wiping': 6, 'windshield': 6, 'fore': 6, 'caps': 6, 'fireplace': 6, 'paneling': 6, 'Confederacy': 6, 'Ancient': 6, 'disgusted': 6, 'heightened': 6, 'announcements': 6, 'negotiation': 6, 'toughness': 6, 'debates': 6, 'weakened': 6, 'probe': 6, 'secretly': 6, 'Initially': 6, 'episodes': 6, 'strengthened': 6, 'well-informed': 6, 'esprit': 6, 'declines': 6, 'Nebraska': 6, 'Aircraft': 6, 'rationale': 6, 'engaging': 6, 'invoked': 6, 'advocating': 6, 'commodity': 6, 'guise': 6, '120': 6, 'invaded': 6, 'mountainous': 6, 'noses': 6, 'Colmer': 6, 'Humphrey': 6, 'perennial': 6, 'presiding': 6, 'disbelief': 6, 'Augusta': 6, 'putt': 6, 'visibly': 6, 'paired': 6, 'rivalry': 6, 'contemptuous': 6, '6th': 6, 'downhill': 6, 'separating': 6, 'drives': 6, 'grumble': 6, "Miller's": 6, 'photographers': 6, 'Farrell': 6, 'aching': 6, '1919': 6, 'Fitzgerald': 6, 'Elder': 6, 'Lacking': 6, 'lad': 6, 'smothered': 6, 'first-class': 6, 'prizes': 6, 'treasures': 6, 'tentatively': 6, 'desegregated': 6, 'successors': 6, 'discovering': 6, 'enrollment': 6, 'uranium': 6, 'le': 6, 'unprepared': 6, 'succeeding': 6, 'withdrawal': 6, 'preferable': 6, 'reliance': 6, 'Alliance': 6, 'dapper': 6, 'aisle': 6, 'Border': 6, 'pry': 6, 'flattened': 6, 'investments': 6, 'turnpike': 6, 'margins': 6, 'apologetically': 6, 'ever-present': 6, 'understands': 6, 'geographically': 6, 'abandoning': 6, 'budgeting': 6, 'insured': 6, 'resolutions': 6, 'governors': 6, 'retaliation': 6, 'stance': 6, 'DeKalb': 6, 'schemes': 6, 'chanted': 6, 'repression': 6, 'wartime': 6, 'recognizing': 6, 'roam': 6, 'zoo': 6, 'Grasslands': 6, 'flourished': 6, 'classify': 6, 'dramas': 6, 'gripping': 6, 'coincided': 6, 'presidents': 6, 'banner': 6, 'savages': 6, 'mandate': 6, 'stealing': 6, 'maze': 6, 'documented': 6, 'assess': 6, 'chancellor': 6, 'Regardless': 6, 'anti-Communist': 6, 'breach': 6, 'automation': 6, 'predicting': 6, 'keel': 6, 'shoreline': 6, 'Udall': 6, 'Survey': 6, 'sits': 6, 'outlined': 6, 'refugees': 6, 'strife': 6, 'Nowhere': 6, '1936': 6, 'floods': 6, 'man-made': 6, 'inaction': 6, 'blossom': 6, 'canning': 6, 'poise': 6, 'forgiven': 6, 'heavenly': 6, 'commotion': 6, 'earthly': 6, 'sadness': 6, 'feather': 6, 'relic': 6, 'thanked': 6, 'Desegregation': 6, 'jam': 6, 'ambivalent': 6, 'alternately': 6, 'manhood': 6, 'out-of-town': 6, 'thinker': 6, 'versa': 6, 'notch': 6, 'fabulous': 6, 'assembling': 6, 'Plans': 6, 'unorthodox': 6, 'subordinate': 6, 'Iron': 6, 'artificially': 6, 'futile': 6, 'predecessors': 6, 'fortunes': 6, 'subscribers': 6, 'pasted': 6, 'Specific': 6, 'bust': 6, '1883': 6, 'congressman': 6, 'academy': 6, 'cohesion': 6, 'Version': 6, 'righteousness': 6, 'teachings': 6, 'airy': 6, 'textures': 6, 'throats': 6, 'toothbrush': 6, 'shaving': 6, 'experimented': 6, 'glands': 6, 'manifestation': 6, 'sculptor': 6, 'interviewing': 6, 'presentations': 6, 'inexpensive': 6, 'Records': 6, 'RCA': 6, 'complexes': 6, 'seller': 6, 'angrily': 6, 'helper': 6, 'temptations': 6, 'fleeting': 6, 'goat': 6, 'wears': 6, 'devoid': 6, 'sack': 6, 'accelerating': 6, 'canoe': 6, 'inception': 6, 'costing': 6, 'persist': 6, 'Short': 6, 'Voice': 6, 'riders': 6, 'cutters': 6, 'packaged': 6, 'laborer': 6, 'omitting': 6, 'Toward': 6, 'inquire': 6, 'refreshing': 6, 'flowering': 6, 'hardy': 6, 'folly': 6, 'Emergency': 6, 'hymns': 6, 'Hough': 6, 'wrongs': 6, 'Especially': 6, 'coffin': 6, 'lash': 6, 'gangs': 6, 'scandal': 6, 'fairness': 6, 'satellites': 6, 'Guardian': 6, 'Lenin': 6, 'frenzy': 6, 'exceeding': 6, 'ambassadors': 6, 'recourse': 6, 'Glenn': 6, 'unpopular': 6, 'demonstrates': 6, "Church's": 6, 'Archbishop': 6, 'Ethics': 6, 'non-Catholic': 6, 'participants': 6, 'hypocrisy': 6, 'subjectively': 6, 'spine': 6, 'paralysis': 6, 'adaptations': 6, 'Hero': 6, 'dreary': 6, 'stunning': 6, 'Eighth': 6, 'continuum': 6, 'slipping': 6, 'abdomen': 6, 'fascination': 6, 'uniformly': 6, 'progressively': 6, 'indicative': 6, 'operative': 6, 'atop': 6, 'grenades': 6, 'rub': 6, 'Active': 6, 'induction': 6, 'twenty-two': 6, 'idly': 6, 'virtuous': 6, 'intimately': 6, 'grudgingly': 6, 'practitioners': 6, 'excerpt': 6, 'casts': 6, 'glittering': 6, 'lacks': 6, 'soprano': 6, 'booking': 6, 'juicy': 6, 'Bates': 6, 'imperial': 6, 'castle': 6, 'herds': 6, 'splendor': 6, 'poignant': 6, 'brightly': 6, 'Armstrong': 6, 'auxiliary': 6, 'clip': 6, 'ecstasy': 6, 'Phase': 6, 'disc': 6, 'jackets': 6, 'volley': 6, 'tingling': 6, 'complied': 6, 'alas': 6, 'meticulously': 6, 'twists': 6, 'saga': 6, 'recital': 6, 'lapse': 6, 'communicative': 6, 'closes': 6, 'vibrant': 6, 'explode': 6, "Where's": 6, 'Berman': 6, 'chords': 6, 'evoke': 6, 'biting': 6, 'subtly': 6, 'forthright': 6, 'Different': 6, 'Writing': 6, 'singly': 6, 'Thurber': 6, 'superimposed': 6, 'robe': 6, 'moderately': 6, 'rat': 6, 'pessimistic': 6, 'treason': 6, 'seizure': 6, 'oppression': 6, 'portray': 6, 'pleasures': 6, 'stint': 6, 'concerto': 6, 'album': 6, 'sensual': 6, 'workmanship': 6, 'elaborately': 6, 'contemporaries': 6, 'refined': 6, 'inexplicable': 6, 'Des': 6, 'operetta': 6, 'thinner': 6, 'overheard': 6, 'Count': 6, 'sax': 6, 'slapping': 6, 'Nineteen': 6, 'Rodgers': 6, 'delivers': 6, 'elicited': 6, 'cathedral': 6, 'Highlands': 6, 'affectionate': 6, 'charted': 6, 'loneliness': 6, 'interdependence': 6, 'Phedre': 6, 'rebut': 6, 'Kid': 6, 'forty-five': 6, 'Olga': 6, 'distrust': 6, 'portrayed': 6, 'gorgeous': 6, 'broadcasting': 6, 'Negro-appeal': 6, 'billions': 6, 'solace': 6, 'Roots': 6, 'Schwarzkopf': 6, 'extract': 6, 'routes': 6, 'Gap': 6, 'Mountain': 6, 'Upper': 6, 'Dakota': 6, 'marinas': 6, 'outboard': 6, "Remarque's": 6, 'grounded': 6, 'cliche': 6, 'terminology': 6, 'restoring': 6, 'treacherous': 6, 'originate': 6, 'lbs.': 6, 'saturated': 6, 'scarce': 6, 'Says': 6, 'crutches': 6, 'Scientists': 6, 'ingredient': 6, 'arterial': 6, 'deposits': 6, 'slowing': 6, 'molecule': 6, 'characterize': 6, 'underworld': 6, 'potency': 6, 'universally': 6, 'Think': 6, 'demythologization': 6, 'smug': 6, 'aligned': 6, 'modernity': 6, 'Continent': 6, 'accepts': 6, 'longest': 6, 'decreasing': 6, 'fold': 6, 'depicting': 6, 'clergymen': 6, 'identifies': 6, 'willed': 6, 'similitude': 6, 'immortal': 6, 'grandeur': 6, 'insisting': 6, 'suppress': 6, 'propriety': 6, 'blot': 6, 'whereupon': 6, 'shoving': 6, 'clear-cut': 6, 'canons': 6, 'astonished': 6, 'anew': 6, 'Test': 6, 'Thou': 6, 'sweetly': 6, 'ailments': 6, 'Munich': 6, 'Practically': 6, 'pounding': 6, 'sword': 6, 'sinned': 6, 'workings': 6, 'evangelism': 6, 'pastoral': 6, 'bulletin': 6, 'unconcerned': 6, 'paradigm': 6, 'partition': 6, 'hostility': 6, 'amorphous': 6, 'whatsoever': 6, 'mainland': 6, 'pre-war': 6, 'Presumably': 6, 'indefinitely': 6, 'deduced': 6, 'distinguishing': 6, 'annihilation': 6, 'frightful': 6, 'attaining': 6, 'agitation': 6, 'compliance': 6, 'magnified': 6, 'sponge': 6, 'modify': 6, 'Hawthorne': 6, 'initiation': 6, '1815': 6, 'ancestors': 6, 'observance': 6, 'manifested': 6, 'handicap': 6, "mind's": 6, 'contemplation': 6, 'inhabited': 6, 'demons': 6, 'disseminated': 6, 'materialism': 6, 'Around': 6, 'invalid': 6, 'gleaming': 6, 'bodybuilder': 6, 'Weider': 6, 'exercising': 6, 'dissatisfied': 6, 'Set': 6, 'writhing': 6, 'pansy': 6, 'mulch': 6, 'manure': 6, 'diluted': 6, 'thaw': 6, 'bloomed': 6, 'assures': 6, 'pear': 6, 'attacker': 6, 'compute': 6, 'B-70': 6, 'airfields': 6, 'propulsion': 6, 'china': 6, 'Schnabel': 6, "Schnabel's": 6, 'noises': 6, 'brute': 6, 'Handler': 6, 'sportsmen': 6, 'licensed': 6, 'coasts': 6, 'Engineers': 6, 'tedious': 6, 'horizons': 6, 'Designers': 6, 'unduly': 6, 'notches': 6, 'levers': 6, 'connecting': 6, 'right-hand': 6, 'spacing': 6, 'slot': 6, 'progresses': 6, 'File': 6, 'subtraction': 6, 'compression': 6, 'liquids': 6, 'rpm': 6, 'Adios': 6, 'Hi': 6, 'Deerstalker': 6, 'cartridge': 6, 'carbine': 6, 'compares': 6, 'cocked': 6, '1905': 6, 'Creek': 6, 'fragrance': 6, 'porter': 6, 'shave': 6, 'minced': 6, 'pinch': 6, 'fried': 6, 'strewn': 6, 'pigs': 6, 'birthplace': 6, 'Forge': 6, 'Pictures': 6, 'uneven': 6, 'filtering': 6, 'Zion': 6, 'Canyon': 6, 'loom': 6, 'Fountain': 6, '1895': 6, 'emeralds': 6, 'rinse': 6, 'flares': 6, 'gloves': 6, 'Contrary': 6, 'tablespoon': 6, 'spear': 6, 'tapping': 6, 'stain': 6, 'Measurements': 6, 'coil': 6, 'spoon': 6, 'sew': 6, 'Run': 6, 'Needless': 6, 'clamps': 6, 'Linden': 6, 'cottages': 6, 'expandable': 6, 'dusting': 6, 'wander': 6, 'Liberty': 6, 'Haven': 6, 'thirty-four': 6, 'drowned': 6, 'buggy': 6, 'piling': 6, 'cling': 6, 'annoying': 6, "pool's": 6, 'pins': 6, 'ducts': 6, 'upkeep': 6, 'filtered': 6, 'thermostat': 6, 'BTU': 6, 'condensation': 6, 'Geological': 6, 'desolate': 6, 'frontage': 6, "Prokofieff's": 6, 'twenties': 6, 'outraged': 6, 'epoch': 6, 'compose': 6, 'profile': 6, 'expeditions': 6, 'spontaneity': 6, 'newborn': 6, 'clumsy': 6, 'staggering': 6, 'x-ray': 6, 'replaces': 6, 'amplified': 6, 'rotated': 6, 'outlines': 6, 'veins': 6, 'educate': 6, 'stimulate': 6, 'Copenhagen': 6, 'supplemented': 6, 'Poetry': 6, 'salts': 6, 'Drug': 6, 'reduces': 6, 'abortion': 6, 'enzyme': 6, 'reproduction': 6, 'ketosis': 6, 'Frequently': 6, 'headaches': 6, 'inhibition': 6, 'denies': 6, 'periodically': 6, 'firearms': 6, "SAAMI's": 6, "public's": 6, 'remedies': 6, 'secretaries': 6, 'lays': 6, 'supplier': 6, 'tubing': 6, 'low-cost': 6, 'adhesive': 6, 'sprayed': 6, 'quicker': 6, 'packages': 6, 'scaffold': 6, 'carpenter': 6, 'anthropology': 6, 'nodding': 6, 'Immediately': 6, 'psyche': 6, 'laden': 6, 'cargo': 6, 'decks': 6, 'bellowed': 6, 'clambered': 6, 'cries': 6, 'momentary': 6, 'bizarre': 6, 'sandy': 6, 'erosion': 6, 'wastes': 6, 'whole-wheat': 6, 'complexion': 6, 'Burlington': 6, 'legendary': 6, 'unhappiness': 6, 'Travel': 6, 'projecting': 6, 'Huxley': 6, 'membrane': 6, 'posterior': 6, 'Kenneth': 6, 'Calderone': 6, 'sexually': 6, 'submitting': 6, 'prostitute': 6, 'hid': 6, 'Bey': 6, 'luxurious': 6, 'kidney': 6, 'quackery': 6, 'metals': 6, 'flashing': 6, 'Reich': 6, 'Multiply': 6, 'dissolve': 6, 'straighten': 6, 'J': 6, "family's": 6, 'adolescents': 6, 'strangled': 6, 'overcoming': 6, "Eichmann's": 6, 'betrayal': 6, 'convict': 6, 'sensibilities': 6, 'blurred': 6, 'affirmed': 6, "captain's": 6, 'journal': 6, 'forties': 6, 'calmed': 6, 'axe': 6, 'huts': 6, 'ox': 6, 'barley': 6, 'prompted': 6, 'trader': 6, 'dodge': 6, 'drunken': 6, 'patriotism': 6, 'myths': 6, 'definitions': 6, 'Capone': 6, 'methodically': 6, 'insolence': 6, 'Osaka': 6, 'gravity': 6, 'amplitude': 6, 'glowed': 6, 'organism': 6, 'trooper': 6, 'ridden': 6, 'Leyte': 6, 'misunderstood': 6, 'pretended': 6, 'newspaperman': 6, 'Cultural': 6, "life's": 6, 'traversed': 6, 'wrists': 6, 'antiseptic': 6, 'weakening': 6, "parents'": 6, 'healing': 6, 'soaked': 6, 'practicable': 6, 'Burgundy': 6, 'planter': 6, "William's": 6, 'Emancipation': 6, 'sofa': 6, 'travelers': 6, '1888': 6, 'drafting': 6, 'Seeds': 6, 'Brazil': 6, 'strays': 6, "'im": 6, 'whirled': 6, 'graves': 6, 'whining': 6, 'sidewise': 6, 'illustrative': 6, 'fuzzy': 6, 'delinquent': 6, 'Erikson': 6, 'elementary-school': 6, 'polarization': 6, 'transcends': 6, 'explicitly': 6, 'disregard': 6, 'interchange': 6, 'adjunct': 6, 'renaissance': 6, 'piazza': 6, 'Della': 6, 'shaded': 6, 'Agnese': 6, 'uneasily': 6, 'robbers': 6, 'sequences': 6, 'rebuilding': 6, 'characteristically': 6, 'engages': 6, 'Perier': 6, 'confidential': 6, 'oath': 6, 'barren': 6, 'countenance': 6, 'Masu': 6, 'Nara': 6, 'reflections': 6, 'complicity': 6, 'Bourbons': 6, 'outbursts': 6, "Court's": 6, 'nation-state': 6, 'internally': 6, 'socialist': 6, 'feudal': 6, 'abstractions': 6, 'thinkers': 6, "Wisman's": 6, 'sucked': 6, 'starving': 6, 'blinked': 6, 'glistening': 6, 'sniffed': 6, 'vaults': 6, 'attribute': 6, 'lounge': 6, 'Whigs': 6, 'testament': 6, 'oddly': 6, 'unreal': 6, 'unwanted': 6, 'environmental': 6, 'clad': 6, 'syntax': 6, 'impelled': 6, 'reconstruct': 6, 'Beckett': 6, 'Waiting': 6, 'corresponds': 6, 'buzzing': 6, 'dialectic': 6, 'liberated': 6, 'queer': 6, 'scent': 6, 'slit': 6, 'churchyard': 6, 'highroad': 6, 'causal': 6, 'merry': 6, 'Heidenstam': 6, 'Parthenon': 6, 'entrepreneur': 6, 'Sherlock': 6, 'informs': 6, 'verified': 6, 'Spade': 6, 'exclamation': 6, 'noisy': 6, 'Saint': 6, 'Amendment': 6, 'indecent': 6, 'pretense': 6, 'Examples': 6, 'tenuous': 6, 'reversible': 6, 'psychoanalytic': 6, 'neurosis': 6, 'comparisons': 6, 'Arp': 6, '1939': 6, 'originality': 6, 'reflective': 6, 'contour': 6, "Copernicus'": 6, "Ptolemy's": 6, 'epicycles': 6, 'velocities': 6, 'astronomical': 6, 'rabbi': 6, 'Jo': 6, 'urgently': 6, 'broadly': 6, 'scout': 6, "Bang-Jensen's": 6, 'Manley': 6, 'Adoniram': 6, 'chattering': 6, 'Whig': 6, 'Tories': 6, 'pretentious': 6, "Hearst's": 6, 'brow': 6, 'stairway': 6, 'recurring': 6, 'Hellenic': 6, "Milton's": 6, 'exhibiting': 6, 'papal': 6, 'Venetian': 6, 'interplay': 6, 'Lowell': 6, 'Ministry': 6, "Thomas'": 6, 'sundown': 6, 'whistled': 6, 'coordinates': 6, 'diction': 6, 'comb': 6, 'divan': 6, 'Suvorov': 6, 'Acropolis': 6, 'shattering': 6, 'assassin': 6, 'severed': 6, "Aristotle's": 6, "Morgan's": 6, 'riflemen': 6, 'forty-four': 6, 'intercept': 6, 'web': 6, 'jug': 6, 'place-name': 6, 'infiltration': 6, 'Macbeth': 6, 'Shakespearean': 6, 'Blake': 6, 'streaks': 6, 'bailiff': 6, 'Stratford': 6, "Earth's": 6, 'Breasted': 6, 'Trees': 6, 'bewildered': 6, 'sunk': 6, 'Rexroth': 6, 'Lauro': 6, 'Bosis': 6, 'swam': 6, 'Contact': 6, 'Offices': 6, 'Cooperatives': 6, 'focusing': 6, 'Fixed': 6, 'out-of-state': 6, 'Symposium': 6, 'centum': 6, 'Forensic': 6, 'Publication': 6, 'calibration': 6, 'Experiments': 6, 'spectral': 6, 'thermometers': 6, '**yl': 6, 'users': 6, 'gunfire': 6, 'authorizations': 6, 'Radiation': 6, 'spoiled': 6, 'rupee': 6, 'groundwave': 6, 'yarns': 6, 'digital': 6, 'manometer': 6, 'interfacial': 6, 'greasy': 6, 'polymerization': 6, 'micelle': 6, 'Substances': 6, 'sensors': 6, 'intersect': 6, 'meteorite': 6, 'Neutral': 6, 'agglutinin': 6, 'larvae': 6, 'boa': 6, 'constrictor': 6, 'septa': 6, 'pleura': 6, 'pleural': 6, 'anastomoses': 6, 'Tables': 6, 'arrows': 6, 'ossification': 6, 'iodinated': 6, 'fibrosis': 6, 'Microscopically': 6, 'cord': 6, 'Dowex-2-chloride': 6, 'pseudophloem': 6, 'NS': 6, 'divides': 6, "N'": 6, '7-1': 6, "bull's-eyes": 6, 'inscribed': 6, 'f-plane': 6, 'single-valued': 6, 'tangents': 6, 'referral': 6, 'arm-elevation': 6, 'descriptive': 6, 'questionnaires': 6, 'Granny': 6, 'schizophrenic': 6, 'Text': 6, 'vowel': 6, 'morphophonemic': 6, 'orthography': 6, 'GNP': 6, 'Regulation': 6, 'maladjustment': 6, 'Sources': 6, 'all-Negro': 6, 'frivolous': 6, 'Pels': 6, 'suspense': 6, 'canyon': 6, 'Manuel': 6, 'Orvis': 6, 'bells': 6, "Brumidi's": 6, 'plank': 6, 'Rangoni': 6, "Thomas's": 6, 'forefinger': 6, 'DA': 6, 'DC': 6, 'rotor': 6, 'radiopasteurization': 6, 'Hesiometer': 6, 'peeling': 6, 'garment': 6, 'foaming': 6, 'intensifier': 6, 'intensifiers': 6, 'R-stage': 6, 'gyro-stabilized': 6, 'amplifier': 6, 'absently': 6, 'sneaked': 6, 'bothering': 6, 'yelling': 6, 'sleepy': 6, 'Bong': 6, 'fucken': 6, 'humming': 6, 'Coughlin': 6, "They'd": 6, 'redcoat': 6, 'musket': 6, 'Jake': 6, 'dripped': 6, 'snoring': 6, 'Mollie': 6, 'Mose': 6, 'Fritzie': 6, 'creaked': 6, "baby's": 6, 'winking': 6, 'flushed': 6, 'Thelma': 6, 'mast': 6, 'flopped': 6, 'blushed': 6, 'fille': 6, 'unbearable': 6, 'bartender': 6, 'Roberta': 6, 'Jarrodsville': 6, 'Perrin': 6, 'okay': 6, 'Hirey': 6, "Black's": 6, 'Katharine': 6, 'fingerprint': 6, 'Bonner': 6, 'darted': 6, 'Hello': 6, "Killpath's": 6, 'bitch': 6, 'throttle': 6, 'Nellie': 6, 'Norberg': 6, 'Shell': 6, 'dipper': 6, 'tightened': 6, 'Powers': 6, 'Hernandez': 6, 'Matilda': 6, 'Gyp': 6, 'zing': 6, 'tanned': 6, 'Doolin': 6, 'Prieur': 6, 'boxcar': 6, 'Tolley': 6, 'Gunny': 6, "Doaty's": 6, 'Gansevoort': 6, "Spencer's": 6, 'Shafer': 6, 'Gladdy': 6, 'Alma': 6, 'Rossoff': 6, "Welch's": 6, 'pegboard': 6, 'implementation': 5, 'foster': 5, 'populous': 5, 'administrators': 5, 'Grady': 5, 'Hartsfield': 5, "mayor's": 5, 'Pelham': 5, 'precincts': 5, 'signatures': 5, 'unanimous': 5, 'coordinator': 5, '$4': 5, 'Barber': 5, 'Ordinary': 5, 'Carey': 5, 'Sheriff': 5, 'adamant': 5, '63': 5, 'enforcing': 5, 'Cox': 5, 'Senators': 5, 'Parkhouse': 5, 'authorizing': 5, 'schooling': 5, 'authorize': 5, 'option': 5, 'senate': 5, 'meager': 5, 'dissent': 5, 'senators': 5, 'retailers': 5, 'Texan': 5, 'sway': 5, 'peanut': 5, 'recipients': 5, 'Parsons': 5, 'Alan': 5, 'nationwide': 5, 'week-end': 5, 'Cod': 5, 'Mayer': 5, '23d': 5, 'intimidation': 5, 'misuse': 5, '29th': 5, 'dismiss': 5, 'entail': 5, 'Full': 5, 'stays': 5, 'needy': 5, 'totaling': 5, 'institute': 5, 'Leader': 5, 'Oslo': 5, 'freer': 5, 'animated': 5, "another's": 5, 'clash': 5, 'intellectually': 5, 'surprises': 5, 'diplomat': 5, 'correspondents': 5, 'attachment': 5, 'Cabinet': 5, 'modifications': 5, 'monumental': 5, 'provocation': 5, 'voiced': 5, 'SEATO': 5, 'neutralized': 5, 'Noting': 5, 'Nugent': 5, 'confronts': 5, 'livelihood': 5, 'licenses': 5, 'Liberals': 5, 'Reama': 5, 'Rotary': 5, 'machinist': 5, 'completes': 5, 'plead': 5, 'offenses': 5, 'Scotch': 5, 'Clubs': 5, 'tattered': 5, 'mediocre': 5, 'inject': 5, "president's": 5, 'Sandman': 5, 'Clifford': 5, 'impinging': 5, 'citation': 5, 'co-operative': 5, 'slogans': 5, 'tracts': 5, '$15': 5, 'suffrage': 5, 'slate': 5, 'forecasts': 5, 'siding': 5, 'mortgages': 5, 'Sargent': 5, 'Shriver': 5, 'beaming': 5, 'allocated': 5, '6,000': 5, 'Secretariat': 5, 'pro-Communist': 5, 'diplomats': 5, 'External': 5, 'Princess': 5, 'agenda': 5, 'inaugural': 5, 'bordering': 5, 'Miss.': 5, 'headache': 5, 'flows': 5, 'Baton': 5, 'Rouge': 5, 'forbids': 5, 'arouse': 5, 'allegations': 5, 'affiliations': 5, 'bids': 5, 'bankrupt': 5, "Berger's": 5, '$5000': 5, 'collects': 5, 'Barnard': 5, 'Horace': 5, '39': 5, 'Eastwick': 5, 'Area': 5, 'clusters': 5, 'Reynolds': 5, 'pedestrian': 5, 'UPI': 5, 'firemen': 5, 'bombing': 5, 'overthrow': 5, 'Private': 5, 'evacuation': 5, 'greeting': 5, 'Circuit': 5, 'fund-raising': 5, 'two-year': 5, 'Assemblies': 5, 'bulwark': 5, 'editing': 5, 'clarification': 5, 'verbally': 5, 'Election': 5, 'necessitate': 5, 'capsule': 5, 'linking': 5, 'Fisher': 5, 'Oriole': 5, 'Heywood': 5, 'southpaw': 5, 'Breeding': 5, 'Hartman': 5, 'Palm': 5, 'escaping': 5, 'runners': 5, 'triple': 5, 'scoring': 5, "Army's": 5, 'Knox': 5, 'Petersburg': 5, 'coaches': 5, 'expired': 5, 'boarding': 5, 'Md.': 5, 'downed': 5, 'Glen': 5, 'crowding': 5, 'Self': 5, 'Kerr': 5, 'thrill': 5, 'Ga.': 5, 'pads': 5, '77': 5, 'sophomore': 5, 'SMU': 5, 'thrusts': 5, 'reserves': 5, 'Held': 5, 'Trinity': 5, 'Bud': 5, 'speedy': 5, 'unofficial': 5, 'pinpoint': 5, 'bunched': 5, 'accounted': 5, 'Twins': 5, 'Turk': 5, 'pop': 5, "Smith's": 5, 'anymore': 5, 'Spahn': 5, 'Herb': 5, 'Gehrig': 5, 'blackout': 5, 'Athletic': 5, 'irritable': 5, 'purposely': 5, 'barrage': 5, 'applaud': 5, 'bleachers': 5, 'Cardinals': 5, 'Eagles': 5, 'three-year': 5, 'Baseball': 5, 'Dodgers': 5, 'Branch': 5, 'franchise': 5, 'Meadow': 5, 'Writers': 5, 'sponsorship': 5, 'tournaments': 5, 'fairway': 5, 'gully': 5, 'downstream': 5, 'twelfth': 5, 'rains': 5, 'Ruling': 5, 'provisional': 5, 'Bend': 5, 'Hemus': 5, '96': 5, 'Hartweger': 5, 'clutch': 5, 'Teachers': 5, '130': 5, 'DiMaggio': 5, 'glamorous': 5, "bride's": 5, 'Molly': 5, 'Florence': 5, 'Towne': 5, 'en': 5, 'Ariz.': 5, 'Gary': 5, 'scoop': 5, 'Doris': 5, 'Flower': 5, 'mink': 5, 'Dolce': 5, 'Vita': 5, 'dynamite': 5, 'Loop': 5, 'genial': 5, 'Beginning': 5, 'Guests': 5, 'Bradford': 5, 'Carruthers': 5, 'down-to-earth': 5, 'asset': 5, 'Salvation': 5, 'gulf': 5, 'mat': 5, 'steaming': 5, 'chat': 5, 'informally': 5, 'parole': 5, 'suitcases': 5, 'braced': 5, 'satin': 5, 'Kappa': 5, 'Shirley': 5, 'flared': 5, "Woman's": 5, 'Thrift': 5, 'Boyd': 5, 'Monte': 5, 'Jerome': 5, 'Lynn': 5, 'Louise': 5, 'Rex': 5, 'hosts': 5, 'fringed': 5, 'edging': 5, 'embroidered': 5, 'lay-offs': 5, 'Simpson': 5, 'Arundel': 5, 'discrepancies': 5, 'Commissioners': 5, 'Councilman': 5, 'dispatched': 5, 'Capt.': 5, "university's": 5, 'Dodge': 5, 'amounted': 5, 'masonry': 5, 'sub': 5, 'widowed': 5, '76': 5, 'communist': 5, 'hunter-killer': 5, 'racket': 5, 'aiming': 5, 'criminals': 5, 'peddler': 5, 'boarded': 5, '30th': 5, 'ensued': 5, 'Stickney': 5, 'rebuild': 5, 'Sterling': 5, 'Mt.': 5, 'Elliott': 5, 'Cornell': 5, 'fumes': 5, 'Funds': 5, 'Given': 5, 'truce': 5, 'Delhi': 5, 'verify': 5, 'Cubans': 5, 'tribunal': 5, 'Legion': 5, "Castro's": 5, "University's": 5, 'conforms': 5, 'exempt': 5, 'NE': 5, 'Leon': 5, 'Appeal': 5, 'Human': 5, 'COAHR': 5, 'eve': 5, 'pledged': 5, 'uptown': 5, 'Survivors': 5, 'Nancy': 5, 'Slate': 5, 'Ronald': 5, 'latch': 5, 'disability': 5, 'ant': 5, '30,000': 5, '20,000': 5, 'Patrol': 5, '111': 5, 'flaming': 5, 'Webster': 5, 'Patterson': 5, 'Huntley': 5, 'Detective': 5, 'culminates': 5, 'logging': 5, '1928': 5, 'AFL-CIO': 5, 'Rite': 5, 'Larson': 5, 'teenagers': 5, 'baton': 5, 'Sue': 5, 'Millie': 5, 'quarterly': 5, 'furs': 5, 'cabinets': 5, 'Sydney': 5, '3rd': 5, 'one-story': 5, 'pennies': 5, 'celebrating': 5, "months'": 5, 'Rider': 5, 'interstate': 5, 'Audubon': 5, 'handing': 5, 'grapes': 5, 'ratification': 5, 'Reed': 5, 'Wild': 5, 'hurtling': 5, 'maneuver': 5, 'airfield': 5, 'skimmed': 5, 'theologian': 5, 'syndicate': 5, 'buddies': 5, 'Maintenance': 5, 'probing': 5, 'Supply': 5, 'supervise': 5, 'Loan': 5, 'Investors': 5, 'circulating': 5, 'Letters': 5, 'mergers': 5, 'buyers': 5, 'proximity': 5, '1834': 5, 'extraction': 5, 'piping': 5, 'salesmanship': 5, 'Page': 5, 'Hayes': 5, 'Ronnie': 5, 'inflation': 5, 'complaining': 5, 'squared': 5, 'selects': 5, 'Round': 5, 'renting': 5, 'saturation': 5, '20%': 5, 'Ltd.': 5, 'economists': 5, 'particulars': 5, 'donor': 5, 'Ninth': 5, 'transaction': 5, 'kerosene': 5, 'imposition': 5, 'Treatment': 5, 'prefers': 5, 'deserts': 5, 'commuting': 5, "moment's": 5, 'actress': 5, 'princess': 5, 'hides': 5, 'hamburger': 5, 'Morocco': 5, 'Chicken': 5, 'Salt': 5, 'seasoned': 5, 'canned': 5, 'sculptured': 5, 'Called': 5, 'tiles': 5, 'Design': 5, 'pedestal': 5, 'nostalgic': 5, 'silhouettes': 5, 'Las': 5, 'Vegas': 5, 'slides': 5, 'Drs.': 5, 'tapestry': 5, 'ever-changing': 5, 'Changes': 5, 'puppets': 5, 'tying': 5, 'nondescript': 5, 'decorator': 5, 'Kings': 5, 'Plus': 5, 'displaying': 5, 'batch': 5, 'format': 5, 'Cafe': 5, 'stuffed': 5, "Governor's": 5, 'librarian': 5, 'workshops': 5, 'vows': 5, 'fundamentals': 5, 'Guest': 5, 'capitalist': 5, 'shapeless': 5, 'refinement': 5, 'soloists': 5, 'Mail': 5, '16th': 5, 'harmless': 5, 'frigid': 5, 'exploring': 5, 'briskly': 5, 'austere': 5, 'Gas': 5, 'fins': 5, 'OK': 5, 'aft': 5, 'Americana': 5, 'Regional': 5, 'Brevard': 5, 'crippled': 5, 'Concerts': 5, 'welcoming': 5, 'Hail': 5, 'tag': 5, 'liaison': 5, "Nation's": 5, 'exchanges': 5, 'intimated': 5, 'Ideally': 5, 'adversary': 5, 'salutary': 5, 'minorities': 5, 'sacrifices': 5, 'achieves': 5, 'nourished': 5, 'sparks': 5, 'hiring': 5, 'intangible': 5, 'definitive': 5, 'plagued': 5, 'rig': 5, 'Folklore': 5, 'Pp.': 5, '1776': 5, 'monopolies': 5, 'mechanic': 5, 'injunctions': 5, 'interfered': 5, 'President-elect': 5, 'exaggeration': 5, 'chaotic': 5, 'seize': 5, 'transports': 5, 'Inauguration': 5, 'lukewarm': 5, 'leaked': 5, 'smelling': 5, 'phalanx': 5, 'Rule': 5, 'midway': 5, 'Coe': 5, 'hasty': 5, 'whichever': 5, 'awed': 5, 'shaky': 5, 'bogey': 5, 'unmistakably': 5, 'aggressiveness': 5, '160': 5, 'awe': 5, 'spurred': 5, '43': 5, 'flourish': 5, 'Cerv': 5, 'ballplayer': 5, 'volunteered': 5, 'vowed': 5, 'disinterested': 5, 'brother-in-law': 5, 'weeds': 5, 'glimpsed': 5, 'sly': 5, 'Ernst': 5, 'classrooms': 5, 'evasive': 5, 'lied': 5, 'quarreling': 5, 'geography': 5, 'innumerable': 5, 'Mutual': 5, 'Insurance': 5, 'compassion': 5, 'fearing': 5, 'unrest': 5, 'manifestly': 5, 'motivations': 5, 'Kasavubu': 5, 'Patrice': 5, 'fragmentation': 5, 'engulfed': 5, 'variously': 5, 'Inter-American': 5, 'abstention': 5, 'conferred': 5, "sheriff's": 5, 'steal': 5, 'high-school': 5, 'Beardens': 5, 'silenced': 5, 'Crosby': 5, 'distracted': 5, 'all-important': 5, 'stew': 5, 'menu': 5, 'drab': 5, 'ventured': 5, 'unmarried': 5, 'extensions': 5, 'Luther': 5, 'layout': 5, 'shrink': 5, 'handwriting': 5, 'budgets': 5, 'richest': 5, 'cross-section': 5, 'cherish': 5, 'librarians': 5, '1965': 5, 'periodicals': 5, 'saves': 5, 'bookkeeping': 5, 'Schools': 5, 'Story': 5, 'richer': 5, 'fuller': 5, 'fireworks': 5, "Jefferson's": 5, 'peeled': 5, 'undertaking': 5, 'strengthens': 5, 'removes': 5, 'demonstrating': 5, 'Capital': 5, 'isolating': 5, 'misgivings': 5, 'valleys': 5, 'Simply': 5, 'glamour': 5, 'faction': 5, 'shortcomings': 5, 'regulars': 5, 'bosses': 5, 'Frontier': 5, 'persuading': 5, 'murderers': 5, 'invade': 5, 'inconsistent': 5, 'attrition': 5, 'abiding': 5, 'Algerian': 5, 'unwelcome': 5, 'regulatory': 5, "Hammarskjold's": 5, 'uncompromising': 5, 'captive': 5, 'sprouting': 5, 'commendable': 5, 'affinity': 5, 'would-be': 5, 'apprehensions': 5, 'hazardous': 5, 'reluctance': 5, 'stagnant': 5, 'zoning': 5, 'tiger': 5, 'Faget': 5, 'preposterous': 5, 'screening': 5, 'haven': 5, 'Swing': 5, 'salvage': 5, 'aloof': 5, 'ridicule': 5, 'lent': 5, 'Cunard': 5, 'slippery': 5, 'Estimate': 5, 'housekeeping': 5, 'safeguard': 5, 'permissive': 5, 'postal': 5, 'Letter': 5, 'Occasional': 5, 'cans': 5, 'disciples': 5, 'girlish': 5, 'subsided': 5, "Aren't": 5, 'breathless': 5, 'cartoons': 5, 'unworthy': 5, 'believers': 5, 'suffers': 5, 'hammock': 5, 'caressing': 5, 'harshly': 5, 'self-contained': 5, 'signaling': 5, 'midday': 5, 'wrap': 5, 'hopped': 5, 'chilly': 5, 'hum': 5, 'peacefully': 5, 'all-white': 5, 'freeways': 5, 'freeway': 5, 'accelerate': 5, 'unequivocally': 5, "Richard's": 5, 'duplicate': 5, 'adapt': 5, 'ingenuity': 5, 'traits': 5, 'incoming': 5, 'revered': 5, 'do-it-yourself': 5, 'enlist': 5, 'Carvey': 5, 'thence': 5, 'organizational': 5, 'Communese': 5, 'excerpts': 5, 'injecting': 5, 'succumbed': 5, '1821': 5, 'Evening': 5, 'glitter': 5, 'paved': 5, 'Train': 5, 'fills': 5, 'woodwork': 5, 'craftsmanship': 5, 'congratulations': 5, 'Divinity': 5, 'archaic': 5, 'uttered': 5, 'bishop': 5, 'elongated': 5, 'Wine': 5, 'pumps': 5, 'sandals': 5, 'padded': 5, 'dip': 5, 'Reply': 5, 'symptom': 5, 'baths': 5, 'Nehru': 5, "Lincoln's": 5, 'depressing': 5, '2-year-old': 5, 'substitutes': 5, 'uncertainties': 5, 'glances': 5, 'wry': 5, 'fading': 5, 'carts': 5, 'Operations': 5, 'bravado': 5, 'foresight': 5, 'developer': 5, 'Beth': 5, 'brotherhood': 5, 'Words': 5, 'Veterans': 5, 'impractical': 5, 'initiate': 5, 'exasperation': 5, 'sympathetically': 5, 'Top': 5, 'suffocating': 5, 'greedy': 5, 'Bertha': 5, 'proprietors': 5, 'inaccurate': 5, 'denounce': 5, 'certify': 5, 'terrific': 5, 'cypress': 5, 'swamp': 5, 'stumps': 5, 'Lower': 5, 'post-attack': 5, 'cafes': 5, 'converse': 5, 'advantageous': 5, 'lessen': 5, 'expelled': 5, 'arithmetic': 5, 'unscrupulous': 5, 'corruptible': 5, 'escalation': 5, 'threatens': 5, 'embark': 5, 'contestants': 5, 'proving': 5, 'intercontinental': 5, 'imitate': 5, 'unfavorable': 5, "Stalin's": 5, 'misdeeds': 5, 'predecessor': 5, 'Thant': 5, 'dormant': 5, 'neutralism': 5, 'invaders': 5, 'butchery': 5, 'holocaust': 5, 'adherents': 5, 'dismay': 5, 'genetic': 5, 'inhibited': 5, 'fission': 5, 'haul': 5, 'sidewalks': 5, 'computation': 5, 'viable': 5, 'sane': 5, 'unwittingly': 5, 'Unity': 5, 'extravagant': 5, 'undeniable': 5, 'Formosa': 5, 're-enter': 5, 'Mainland': 5, 'coolly': 5, 'liberation': 5, 'contemplated': 5, 'nephews': 5, 'frontiers': 5, 'rape': 5, 'scan': 5, 'owes': 5, 'Egyptian': 5, 'ripples': 5, 'greetings': 5, 'Arabic': 5, 'murky': 5, 'landscapes': 5, 'butts': 5, 'obsession': 5, 'obsessed': 5, 'anti-party': 5, 'journals': 5, "People's": 5, 'sickness': 5, 'liquidated': 5, 'Koreans': 5, 'Minutemen': 5, 'supremacy': 5, 'unloaded': 5, 'second-rate': 5, 'tariff': 5, 'Europeans': 5, 'O.E.C.D.': 5, 'Join': 5, 'age-old': 5, 'Philosophy': 5, 'disrupted': 5, 'Flying': 5, 'SR': 5, 'Personally': 5, 'invaluable': 5, 'abused': 5, 'rounding': 5, 'Nathan': 5, 'Concerto': 5, 'slashing': 5, 'noblest': 5, 'spitting': 5, 'lets': 5, 'cradle': 5, 'Dietrich': 5, 'operatic': 5, 'devastating': 5, 'planks': 5, 'kitchens': 5, 'tangled': 5, 'brigadier': 5, 'gaunt': 5, 'excellently': 5, 'richness': 5, 'buff': 5, 'teens': 5, 'unfolding': 5, 'Tucker': 5, 'sundry': 5, 'percussive': 5, 'clattered': 5, "artists'": 5, 'Xydis': 5, 'priorities': 5, 'commanders': 5, 'identifiable': 5, 'cliches': 5, 'proficient': 5, 'shriek': 5, 'belligerent': 5, 'Musical': 5, 'Christopher': 5, 'whispering': 5, 'sparkling': 5, 'touring': 5, 'virtual': 5, 'profess': 5, 'plunge': 5, 'Silence': 5, 'admirably': 5, 'metaphor': 5, 'utterance': 5, 'artistically': 5, 'puny': 5, 'vices': 5, 'complications': 5, "Roosevelt's": 5, 'justly': 5, 'jagged': 5, 'Yugoslavia': 5, 'prescribe': 5, 'impeded': 5, 'limbs': 5, 'incidental': 5, 'lush': 5, 'melodic': 5, 'technician': 5, 'smoothness': 5, 'revivals': 5, 'countrymen': 5, 'Couperin': 5, 'concertos': 5, 'rococo': 5, 'shakes': 5, 'baritone': 5, 'chuckle': 5, 'tread': 5, 'attentive': 5, 'lenses': 5, 'Beautiful': 5, 'haunches': 5, 'Baby': 5, 'delicacy': 5, 'timid': 5, 'relaxing': 5, '53': 5, 'premiere': 5, 'arresting': 5, 'transposed': 5, 'mindful': 5, 'accents': 5, 'Nagrin': 5, 'triumphant': 5, 'obscurity': 5, 'Milk': 5, 'Rall': 5, 'pictorial': 5, 'otter': 5, 'basin': 5, 'lobes': 5, 'widened': 5, "Moliere's": 5, 'Wives': 5, 'Arnolphe': 5, 'Seigner': 5, 'sensuality': 5, 'Gone': 5, 'Eh': 5, 'Elman': 5, 'truthfully': 5, 'out-of-doors': 5, 'heroine': 5, 'Apollo': 5, 'pas': 5, 'astonishingly': 5, 'zest': 5, "horse's": 5, 'indecision': 5, 'mastered': 5, 'platforms': 5, "Sloan's": 5, 'chronology': 5, 'superseded': 5, 'palette': 5, 'hatching': 5, 'roofs': 5, '1915': 5, 'sojourn': 5, 'Lyttleton': 5, 'receding': 5, 'whistling': 5, 'contends': 5, 'happenings': 5, 'illuminating': 5, 'lawns': 5, 'Parks': 5, 'balcony': 5, 'volatile': 5, 'refinements': 5, 'ignores': 5, 'astonishment': 5, 'Byzantine': 5, 'self-consciousness': 5, 'avant-garde': 5, 'relentless': 5, 'enterprising': 5, 'planting': 5, 'Nature': 5, 'Late': 5, 'glinting': 5, 'staccato': 5, 'indoors': 5, 'commentary': 5, 'upper-middle-class': 5, 'Staten': 5, 'cart': 5, 'overweight': 5, 'buzz': 5, 'Corinthian': 5, 'poking': 5, 'Off': 5, 'Portago': 5, 'aimless': 5, 'tuberculosis': 5, 'Lillian': 5, 'limb': 5, 'existent': 5, 'insignificant': 5, 'transported': 5, 'mystical': 5, 'formulae': 5, 'tenacity': 5, 'surround': 5, 'one-tenth': 5, 'dispose': 5, 'directs': 5, 'spans': 5, 'lingering': 5, 'Medicine': 5, 'immoral': 5, 'appestat': 5, 'insecurity': 5, 'chemically': 5, 'crystalline': 5, 'materially': 5, 'inquiring': 5, 'witch': 5, 'disintegration': 5, 'evokes': 5, 'designate': 5, 'Devil': 5, 'adhered': 5, 'Greeks': 5, 'richly': 5, 'Barth': 5, 'tenth': 5, '260': 5, 'primeval': 5, 'portrays': 5, 'eternity': 5, 'oyster': 5, 'envied': 5, 'temporal': 5, 'sting': 5, '1845': 5, 'indelible': 5, 'posterity': 5, 'penance': 5, 'Channing': 5, 'rod': 5, 'prophecy': 5, 'reminding': 5, 'Almighty': 5, 'bishops': 5, 'pope': 5, 'deceived': 5, 'suffused': 5, 'endeavor': 5, 'comprehend': 5, 'begotten': 5, 'avenues': 5, 'bedside': 5, 'warts': 5, '30%': 5, 'Watch': 5, 'mania': 5, 'psalmist': 5, 'warlike': 5, 'wailing': 5, 'Classical': 5, 'dynasty': 5, 'despotism': 5, 'divergent': 5, 'fullest': 5, 'arbitrarily': 5, 'symbolically': 5, 'activated': 5, 'harmonious': 5, 'tendencies': 5, 'reverence': 5, 'Directions': 5, 'ascribed': 5, 'Universal': 5, 'equated': 5, 'enrich': 5, 'justifiably': 5, 'Welcome': 5, 'confuse': 5, 'defines': 5, 'interfaith': 5, 'affecting': 5, 'occasioned': 5, 'authoritarian': 5, 'prominence': 5, 'Ceylon': 5, 'Cairo': 5, 'prevalent': 5, 'repelled': 5, 'risks': 5, 'imputed': 5, 'worlds': 5, 'contingencies': 5, "anyone's": 5, 'incur': 5, 'clothed': 5, 'self-evident': 5, 'ambivalence': 5, 'oneself': 5, 'stricken': 5, 'respectability': 5, 'Realtors': 5, 'minimized': 5, 'Discussion': 5, 'equity': 5, 'professions': 5, 'professed': 5, 'discouraging': 5, 'counterpoint': 5, 'generalize': 5, 'lowering': 5, 'Walt': 5, 'comply': 5, 'fearless': 5, 'insuring': 5, 'doctrines': 5, 'Ephesians': 5, 'amen': 5, 'instantaneous': 5, 'astounding': 5, 'Courts': 5, 'ready-made': 5, 'barbell': 5, 'gotta': 5, 'affords': 5, 'Leg': 5, 'Clean': 5, 'beauties': 5, 'encourages': 5, 'buds': 5, 'avocados': 5, 'pulp': 5, 'refrigerated': 5, 'nutrients': 5, 'appreciable': 5, 'vitamin': 5, 'dietary': 5, 'vibration': 5, 'Nuclear': 5, 'stealth': 5, 'ideally': 5, 'committing': 5, 'perfected': 5, 'obsolete': 5, 'priceless': 5, 'Curzon': 5, 'faithfully': 5, 'vanish': 5, 'Dog': 5, 'Aids': 5, 'Judging': 5, 'kitten': 5, 'pets': 5, 'horsepower': 5, 'wherein': 5, "water's": 5, 'widths': 5, "12''": 5, 'left-hand': 5, 'drilled': 5, 'spacers': 5, 'Number': 5, 'slots': 5, 'underside': 5, 'accessible': 5, 'triangular': 5, "'round": 5, 'multiplication': 5, 'boring': 5, 'irregularly': 5, 'axle': 5, 'Dale': 5, 'Fury': 5, 'Caper': 5, 'thrived': 5, 'fine-looking': 5, 'Faber': 5, 'Martha': 5, 'Rich': 5, 'baffled': 5, 'Demon': 5, 'buck': 5, 'scales': 5, 'Remington': 5, 'edible': 5, 'Magnums': 5, 'recoil': 5, 'cartridges': 5, 'single-shot': 5, 'brakes': 5, 'scabbard': 5, 'hunters': 5, 'Colt': 5, 'creaking': 5, 'orchards': 5, 'hamper': 5, 'medicines': 5, 'primacy': 5, 'peninsula': 5, 'tilt': 5, 'ripple': 5, 'roasted': 5, 'walnuts': 5, 'nuisance': 5, 'pies': 5, 'apples': 5, 'expanse': 5, 'photo': 5, 'mischief': 5, 'carriages': 5, 'Istanbul': 5, 'disappearing': 5, 'Bosphorus': 5, 'Turks': 5, 'bazaar': 5, 'plastered': 5, 'Hippodrome': 5, 'obelisk': 5, 'pillars': 5, 'towers': 5, 'sauces': 5, 'hibachi': 5, 'unbreakable': 5, 'Simple': 5, 'sausages': 5, 'popping': 5, 'chili': 5, 'Makes': 5, 'chunks': 5, 'craters': 5, 'Creek-Turn': 5, 'lids': 5, 'candles': 5, 'marker': 5, 'Hotei': 5, 'one-inch': 5, 'chines': 5, 'rip': 5, 'installing': 5, 'drains': 5, 'Available': 5, 'timbers': 5, 'inspector': 5, 'radial': 5, 'securely': 5, 'Feed': 5, 'reversing': 5, 'Newburyport': 5, 'Salisbury': 5, 'Jonathan': 5, 'Deer': 5, 'Commonwealth': 5, '1810': 5, '1793': 5, 'piers': 5, 'navigation': 5, 'roadway': 5, '1868': 5, 'Philippi': 5, 'retreating': 5, 'Grafton': 5, 'carving': 5, 'colder': 5, 'dictated': 5, 'pertaining': 5, 'trunks': 5, 'enjoined': 5, 'latitude': 5, 'refreshed': 5, 'conditioners': 5, 'caves': 5, 'encroachment': 5, 'checking': 5, 'laissez-faire': 5, 'mistress': 5, 'fluent': 5, 'novelty': 5, 'homogeneity': 5, 'shabby': 5, 'washes': 5, 'easel': 5, 'burnt': 5, 'connotation': 5, 'athletes': 5, 'laboratories': 5, 'microscopic': 5, 'sonar': 5, 'receivers': 5, 'boyhood': 5, 'surveyor': 5, 'lodging': 5, 'divisive': 5, "host's": 5, 'fertile': 5, 'disorganized': 5, 'reckon': 5, 'faculties': 5, 'esteem': 5, 'fuse': 5, 'polarity': 5, 'scours': 5, 'severity': 5, 'Aureomycin': 5, 'infections': 5, 'milligram': 5, 'calves': 5, 'consuming': 5, 'Caution': 5, 'Increased': 5, 'enhance': 5, 'Technical': 5, 'qualitative': 5, 'beverage': 5, 'politeness': 5, 'extant': 5, 'refuses': 5, 'shortsighted': 5, 'uninterrupted': 5, 'vending': 5, 'relying': 5, 'checkbook': 5, 'alleviate': 5, 'migration': 5, 'comforts': 5, 'fights': 5, 'turbine': 5, 'badge': 5, 'evaluations': 5, 'Oakwood': 5, 'shocks': 5, 'gallon': 5, 'bugs': 5, 'entrenched': 5, 'chipping': 5, 'polyester': 5, 'shielded': 5, 'opaque': 5, 'Lumber': 5, 'unitized': 5, 'unloading': 5, 'high-priced': 5, 'bricks': 5, 'lofty': 5, 'seating': 5, 'cute': 5, 'programming': 5, 'perverse': 5, 'linguistics': 5, 'psychiatric': 5, 'psychiatrists': 5, 'psychotherapy': 5, 'flags': 5, 'stressing': 5, 'poisonous': 5, 'vile': 5, 'raids': 5, 'Vesole': 5, 'paradise': 5, 'Seaman': 5, 'beacon': 5, 'wakeful': 5, 'perpetuate': 5, 'escorted': 5, 'orator': 5, 'Finding': 5, 'northward': 5, 'labored': 5, 'Barre': 5, 'Englander': 5, 'Waco': 5, 'safer': 5, 'one-man': 5, 'meadows': 5, 'hazy': 5, 'serenity': 5, 'Find': 5, 'forestall': 5, 'needless': 5, 'caresses': 5, 'physicians': 5, 'anterior': 5, 'facilitate': 5, 'censorship': 5, 'bump': 5, 'ironing': 5, 'Farouk': 5, 'gushed': 5, 'gamblers': 5, 'decorated': 5, '2000': 5, 'chloride': 5, 'twirling': 5, 'prescription': 5, 'Stephens': 5, 'prosecuted': 5, 'suck': 5, 'Susie': 5, 'appliance': 5, 'disrupt': 5, 'experimenter': 5, 'Conversely': 5, 'empirically': 5, 'Z': 5, 'intrinsic': 5, 'locality': 5, 'hail': 5, 'corpses': 5, 'legally': 5, 'corpus': 5, 'catharsis': 5, 'recollection': 5, 'Czechoslovakia': 5, 'Final': 5, 'clenched': 5, 'Pole': 5, "ship's": 5, 'patched': 5, 'sworn': 5, 'Forks': 5, 'Kingston': 5, 'Daer': 5, 'Lucian': 5, '1844': 5, 'thicker': 5, 'figurative': 5, 'Yank': 5, 'stationed': 5, 'Rebs': 5, 'stereotyped': 5, 'ass': 5, 'rationalize': 5, 'analysts': 5, 'acutely': 5, 'shudder': 5, 'Cicero': 5, 'lethal': 5, 'waiters': 5, '1909': 5, "O'Connor": 5, 'buckle': 5, 'proliferation': 5, 'catastrophic': 5, 'swivel': 5, 'Custer': 5, 'troopers': 5, 'hurling': 5, 'battlefield': 5, 'graphic': 5, 'oppressed': 5, 'abreast': 5, 'reputed': 5, 'backwoods': 5, 'decisively': 5, 'rattle': 5, 'thumping': 5, 'shutters': 5, 'blackened': 5, 'siege': 5, 'Educational': 5, 'Scientific': 5, 'beards': 5, 'ancestral': 5, 'academically': 5, 'generates': 5, 'Fran': 5, 'coolness': 5, 'Tobacco': 5, 'poker': 5, 'proverb': 5, 'glycerine': 5, 'steeped': 5, 'inscrutable': 5, 'allowable': 5, 'chilling': 5, 'humane': 5, 'furious': 5, 'apologized': 5, 'appointees': 5, 'Ideas': 5, 'debated': 5, 'shrine': 5, 'tenant': 5, 'cropped': 5, 'chopping': 5, 'ax': 5, 'factions': 5, 'punch': 5, 'Penn': 5, 'corral': 5, 'inquest': 5, "Morse's": 5, 'Fleet': 5, 'rhetoric': 5, 'hardships': 5, 'consolidated': 5, 'soybeans': 5, 'constituent': 5, 'locust': 5, 'fibrous': 5, 'stony': 5, 'hosses': 5, "givin'": 5, 'lieu': 5, 'resorted': 5, 'hoss': 5, 'Loveless': 5, 'fetch': 5, 'thickly': 5, 'stamping': 5, 'ducked': 5, 'scant': 5, 'Likewise': 5, 'inn': 5, 'kidneys': 5, 'shone': 5, 'trolley': 5, 'groping': 5, 'self-discipline': 5, 'Hanch': 5, 'Columns': 5, 'skillfully': 5, 'denoting': 5, 'Standing': 5, 'uneasiness': 5, 'Northerners': 5, 'Historically': 5, 'self-examination': 5, 'registers': 5, 'outreach': 5, 'motifs': 5, 'unfriendly': 5, 'harassed': 5, 'tuition': 5, 'espionage': 5, 'gaily': 5, 'wits': 5, 'exploitation': 5, "states'": 5, 'scornful': 5, 'wrecking': 5, 'unreconstructed': 5, "South's": 5, 'therefrom': 5, 'claimants': 5, 'coincides': 5, 'homeland': 5, 'elapsed': 5, 'continual': 5, 'obnoxious': 5, 'guarded': 5, 'fragment': 5, 'thickened': 5, 'swooped': 5, 'self-conscious': 5, 'bivouac': 5, 'fella': 5, 'lugged': 5, 'upstream': 5, 'alcoves': 5, 'fortress': 5, 'cheerfully': 5, 'Founding': 5, 'merging': 5, '15%': 5, 'deference': 5, 'individualized': 5, 'choreographer': 5, 'serial': 5, 'intensities': 5, 'Ching': 5, 'evolve': 5, 'Cunningham': 5, 'transitions': 5, 'hostilities': 5, 'communes': 5, 'insofar': 5, 'Godot': 5, 'sharpened': 5, 'humility': 5, 'tweed': 5, 'kneel': 5, 'Lipton': 5, 'mystique': 5, 'tame': 5, 'psychoanalysis': 5, 'negation': 5, 'enhanced': 5, 'drugged': 5, 'garments': 5, 'tubs': 5, 'pots': 5, 'enchanted': 5, 'spire': 5, 'centrally': 5, 'cunning': 5, 'Jacoby': 5, 'humiliation': 5, 'disguise': 5, 'catastrophes': 5, 'intellect': 5, 'interrelated': 5, 'scepticism': 5, "Thompson's": 5, 'enroll': 5, '1916': 5, 'grouped': 5, 'acquiescence': 5, 'coherent': 5, 'procession': 5, 'advent': 5, "Watson's": 5, 'Moriarty': 5, 'measurable': 5, 'endeavors': 5, 'fervent': 5, "Gabriel's": 5, "corporation's": 5, 'stimuli': 5, 'Activities': 5, 'aberrant': 5, 'powders': 5, 'inheritance': 5, 'competently': 5, 'bout': 5, 'Thinking': 5, 'capacities': 5, 'Civilization': 5, 'Reactionary': 5, 'uncanny': 5, 'Grigorss': 5, 'fisherman': 5, 'overrun': 5, 'wasting': 5, 'sentry': 5, 'Flemish': 5, 'Jason': 5, 'Pendleton': 5, 'habitual': 5, 'Lyford': 5, 'irritated': 5, 'diurnal': 5, 'distinguishes': 5, 'resultants': 5, 'approximated': 5, 'monster': 5, "Harper's": 5, 'mustache': 5, "Joe's": 5, 'unwillingness': 5, 'Sadie': 5, 'warrants': 5, 'Constable': 5, 'mattered': 5, 'maternal': 5, 'tact': 5, 'indulged': 5, 'sparse': 5, 'transactions': 5, 'hairy': 5, 'glared': 5, 'Caravan': 5, 'Crisis': 5, 'asserts': 5, 'whoever': 5, 'showered': 5, 'monacle': 5, 'allusions': 5, 'Herford': 5, 'Baer': 5, 'shadowing': 5, "lady's": 5, 'make-up': 5, 'telephones': 5, 'fruitless': 5, 'brandishing': 5, 'banister': 5, 'Emmett': 5, 'swirled': 5, 'Gentile-Jewish': 5, 'legacy': 5, 'differentiated': 5, 'romantics': 5, 'Grey': 5, 'Blenheim': 5, 'Rebels': 5, 'Orders': 5, 'Burr': 5, 'kindness': 5, 'brows': 5, 'cock': 5, 'tribal': 5, 'Mando': 5, 'huh': 5, 'entitle': 5, 'Advocate': 5, 'hemorrhage': 5, 'bequest': 5, 'exceeded': 5, 'Thy': 5, 'Gosson': 5, 'periphery': 5, 'thankful': 5, "Edward's": 5, 'arbiter': 5, 'clerks': 5, 'nasty': 5, 'Alpert': 5, 'rude': 5, 'Kemble': 5, 'Lappenberg': 5, 'CTCA': 5, 'immaculate': 5, 'estates': 5, 'monei': 5, 'yow': 5, 'ther': 5, 'mee': 5, 'Bancroft': 5, 'hys': 5, 'unseen': 5, 'adventurous': 5, 'S.K.': 5, 'Gantry': 5, "Lewis's": 5, '1625': 5, 'banter': 5, "Wells's": 5, "Childhood's": 5, 'Merchants': 5, 'Machine': 5, 'skepticism': 5, 'Budd': 5, 'ghettos': 5, 'disfigured': 5, 'dozed': 5, 'ghosts': 5, 'Were': 5, 'Printed': 5, 'self-sustaining': 5, 'Remarks': 5, 'Registry': 5, 'garages': 5, 'rotary': 5, 'Leesona': 5, 'Analysis': 5, 'installment': 5, 'eighty-sixth': 5, 'Pageant': 5, 'Islanders': 5, 'Pilgrims': 5, 'Regions': 5, 'morphological': 5, 'mammalian': 5, 'Fifty': 5, 'atmospheres': 5, 'shutter': 5, 'interstellar': 5, 'reproducible': 5, 'gradients': 5, 'conductivity': 5, 'Temperature': 5, 'hereinafter': 5, 'backlog': 5, 'Financial': 5, 'Method': 5, 'shielding': 5, '353': 5, 'decrees': 5, 'needing': 5, 'Sections': 5, 'cochannel': 5, 'Example': 5, 'one-': 5, 'constancy': 5, 'Fellows': 5, 'Unifil': 5, 'Uniconer': 5, 'Alumni': 5, 'retailing': 5, 'Devey': 5, 'Sloanaker': 5, 'reflector': 5, 'mm': 5, 'graphite': 5, 'electrode': 5, 'Experimental': 5, 'elasticity': 5, 'deformation': 5, 'curvature': 5, 'dipole': 5, 'ion': 5, 'interfaces': 5, 'quantum': 5, 'Pyrex': 5, 'flask': 5, 'inversely': 5, 'Poynting-Robertson': 5, 'micrometeorites': 5, 'inverse': 5, 'microns': 5, 'Biological': 5, 'intentional': 5, 'BW': 5, 'inert': 5, 'ulcer': 5, 'electrophoresis': 5, 'ABO': 5, 'Rh': 5, 'donors': 5, 'min': 5, 'Region': 5, 'pussy': 5, 'catkins': 5, 'hatch': 5, 'Psithyrus': 5, 'rattlesnakes': 5, 'hilum': 5, 'artery-pulmonary': 5, 'shunts': 5, 'Chart': 5, 'Onsets': 5, 'epiphysis': 5, 'potassium': 5, 'di-iodotyrosine': 5, 'antithyroid': 5, 'uptake': 5, 'anemia': 5, 'marrow': 5, 'neutrophils': 5, 'mucosa': 5, 'conjugated': 5, 'neocortex': 5, '**ya': 5, "D'": 5, 't': 5, 'l': 5, "C'": 5, 'pertains': 5, 'reassured': 5, 'helplessness': 5, 'subgroups': 5, 'AIMO': 5, 'Scale': 5, 'I.Q.': 5, 'receptionist': 5, 'W-region': 5, 'modifier': 5, 'phonology': 5, 'nail': 5, 'aberrations': 5, 'long-run': 5, 'Balafrej': 5, 'U.N.F.P.': 5, 'loadings': 5, 'Fifties': 5, "Respondents'": 5, 'AWOC': 5, "Secretary's": 5, 'plaintiff': 5, 'marshal': 5, 'Catskill': 5, 'dismounted': 5, 'whereabouts': 5, 'drugstore': 5, "clerk's": 5, 'Marsden': 5, 'warrior': 5, 'shreds': 5, 'Cubist': 5, 'Analytical': 5, 'Pozzatti': 5, 'Pimen': 5, 'gasping': 5, 'Mityukh': 5, 'Poems': 5, 'worrying': 5, 'Tones': 5, 'Gertrude': 5, 'soles': 5, 'shouts': 5, 'EQU': 5, 'compiler': 5, 'two-digit': 5, 'Index': 5, 'DUF': 5, 'metabolite': 5, 'hydrolysis': 5, 'tektites': 5, 'gallium': 5, 'solvent': 5, 'Properties': 5, 'Criticality': 5, 'Currency': 5, 'ionizing': 5, 'sterilization': 5, 'radiosterilization': 5, 'irradiated': 5, 'accelerator': 5, 'cu.': 5, 'laundry': 5, 'template': 5, 'coupler': 5, 'optimality': 5, 'gyros': 5, 'torque': 5, 'torquer': 5, 'servo': 5, 'sprawling': 5, 'biscuits': 5, 'phoned': 5, 'sweaty': 5, 'blackness': 5, 'Seward': 5, 'dingy': 5, 'trembled': 5, 'yanked': 5, 'Drew': 5, 'Violet': 5, 'shuddered': 5, 'screeched': 5, 'Slater': 5, "That'll": 5, 'Damn': 5, 'Favre': 5, 'Bern': 5, 'drizzle': 5, 'Mutton': 5, 'greatcoat': 5, 'mumbled': 5, 'gasped': 5, 'Moll': 5, 'hoarse': 5, 'gasps': 5, 'scented': 5, 'Grabski': 5, 'overcoat': 5, 'parted': 5, 'joyous': 5, 'striped': 5, "mustn't": 5, 'stockings': 5, 'crib': 5, 'froze': 5, 'shovel': 5, 'Stowey': 5, 'scrawled': 5, 'knocking': 5, 'Leona': 5, 'lavender': 5, 'kissing': 5, 'Homicide': 5, "driver's": 5, 'lurched': 5, 'dived': 5, 'kittens': 5, 'Emile': 5, 'plowed': 5, 'clapping': 5, 'overalls': 5, 'Brian': 5, "Garth's": 5, "Mahzeer's": 5, 'fumbled': 5, 'Needham': 5, 'Calenda': 5, "Poet's": 5, 'Jaguar': 5, 'plumb': 5, "Alec's": 5, 'Anta': 5, 'grok': 5, 'Martian': 5, 'Earthmen': 5, 'dromozoa': 5, 'half-breed': 5, 'Fiske': 5, 'Aricaras': 5, "Montero's": 5, 'bale': 5, "Indian's": 5, 'flicked': 5, 'vaudeville': 5, 'Kruger': 5, 'Maguire': 5, 'Conchita': 5, 'Arbuckle': 5, 'Burnsides': 5, 'Nate': 5, 'Sante': 5, 'Grafin': 5, 'Hettie': 5, 'bleached': 5, 'Manu': 5, "Throat's": 5, 'cheekbones': 5, "Kitty's": 5, 'Pompeii': 5, 'Kizzie': 5, 'Adelia': 5, 'sunburn': 5, 'Diego': 5, 'Reuveni': 5, 'Askington': 5, 'Walitzee': 5, 'John-and-Linda': 5, 'Thom': 5, 'Tuxapoka': 5, 'Acala': 5, 'furrow': 5, 'A-Z': 5, 'Zenith': 5, 'Richert': 5, 'Kafka': 5, 'Jury': 4, "Atlanta's": 4, 'Ivan': 4, 'outmoded': 4, 'modernizing': 4, 'jurors': 4, 'Failure': 4, 'guardians': 4, 'Jail': 4, 'Griffin': 4, 'interlude': 4, 'adjournment': 4, 'Roads': 4, 'reconsideration': 4, 'emphasizing': 4, 'Bush': 4, 'subcommittee': 4, 'drafted': 4, 'pipeline': 4, 'Bankers': 4, 'keynote': 4, 'impair': 4, 'betting': 4, 'excise': 4, 'brokers': 4, 'Natural': 4, 'Cotten': 4, '114': 4, 'Grover': 4, 'Denton': 4, 'Independent': 4, 'soaring': 4, 'illegitimacy': 4, 'burglary': 4, 'Criminal': 4, 'prejudicial': 4, 'Salinger': 4, 'wording': 4, '133': 4, 'coercion': 4, 'Faced': 4, 'complementary': 4, 'mammoth': 4, '7.5': 4, '750': 4, 'deductible': 4, "Wouldn't": 4, '$1,500': 4, '1966': 4, 'appropriation': 4, 'unspecified': 4, 'Legislators': 4, 'Weaver': 4, 'disapprove': 4, 'Portugal': 4, 'global': 4, "States'": 4, 'affirmation': 4, "secretary's": 4, 'East-West': 4, 'coordinating': 4, 'docile': 4, 'Thailand': 4, 'verification': 4, 'assailed': 4, 'exile': 4, 'fiasco': 4, 'blended': 4, 'build-up': 4, 'acclaimed': 4, 'complication': 4, 'Phouma': 4, 'trusting': 4, 'delinquency': 4, 'multiply': 4, 'drive-in': 4, 'Atty.': 4, 'regulating': 4, 'dating': 4, 'conservatives': 4, 'steered': 4, 'favoring': 4, 'timetable': 4, 'Action': 4, 'motorists': 4, 'Republicanism': 4, 'Trenton': 4, 'congealed': 4, 'centralization': 4, 'Ike': 4, 'condemning': 4, 'giveaway': 4, 'prop': 4, 'sagging': 4, 'Sheets': 4, 'vacancy': 4, 'warden': 4, 'Inn': 4, 'courageous': 4, 'bloodstream': 4, 'onrush': 4, '$45': 4, 'conquer': 4, '1920s': 4, "Mayor's": 4, 'Levitt': 4, 'assent': 4, 'Counties': 4, 'dormitories': 4, 'stalled': 4, 'Ghana': 4, 'Missionary': 4, 'Sukarno': 4, 'banker': 4, 'intensified': 4, 'Administrative': 4, 'Boun': 4, 'two-hour': 4, 'Pfaff': 4, 'Miles': 4, 'Assuming': 4, 'shrines': 4, '5000': 4, 'Moving': 4, 'lawmakers': 4, 'companionship': 4, 'US': 4, 'hike': 4, '$28': 4, 'normalcy': 4, 'unnoticed': 4, 'disclosures': 4, 'sued': 4, 'Transportation': 4, '2d': 4, 'intervened': 4, 'violated': 4, 'headline': 4, 'Goodis': 4, 'occupancy': 4, "Council's": 4, 'Finance': 4, 'compensated': 4, 'manslaughter': 4, 'fined': 4, 'violating': 4, 'Redevelopment': 4, 'Residential': 4, 'eliminates': 4, 'Stanton': 4, 'ignition': 4, 'hood': 4, 'TNT': 4, 'coup': 4, 'Northwestern': 4, 'Melvin': 4, 'Edith': 4, 'five-year': 4, 'vacated': 4, 'truths': 4, 'scriptures': 4, 'immigrant': 4, '1-1/2': 4, 'conspirators': 4, 'Hyde': 4, 'Tuttle': 4, 'Throneberry': 4, 'fanned': 4, 'tally': 4, 'merited': 4, 'Lumpe': 4, 'Jackie': 4, 'blasted': 4, 'scoreboard': 4, 'rapped': 4, 'Ron': 4, 'slugged': 4, 'melt': 4, 'hitters': 4, 'Hoyt': 4, 'Wilhelm': 4, 'Roland': 4, 'famed': 4, 'hitch': 4, 'streamlined': 4, 'celebrate': 4, 'nightfall': 4, 'inflicted': 4, 'Clint': 4, 'Knights': 4, 'thirds': 4, 'indoor': 4, 'housewife': 4, 'quarterback': 4, 'eleventh': 4, 'Stamford': 4, 'kinda': 4, 'Longhorns': 4, 'coaching': 4, 'gratification': 4, 'Gannon': 4, "game's": 4, 'Stram': 4, 'tactic': 4, 'spree': 4, '280': 4, 'bulge': 4, 'innings': 4, 'McAuliffe': 4, 'smash': 4, 'tripled': 4, 'Mich.': 4, 'ranked': 4, 'lightweight': 4, "Gardner's": 4, 'Lemon': 4, 'Jensen': 4, 'newsmen': 4, 'Champion': 4, 'speculating': 4, 'Sports': 4, 'Ensign': 4, 'Ritchie': 4, 'tongues': 4, 'pastime': 4, 'milestone': 4, 'rookies': 4, 'clubhouse': 4, "Willie's": 4, 'televised': 4, 'terminated': 4, 'humiliating': 4, 'Yanks': 4, '$25,000': 4, 'reconsider': 4, 'columnist': 4, 'relentlessly': 4, 'convince': 4, 'Kathy': 4, 'Gardner': 4, 'Gold': 4, 'Professional': 4, 'frustrations': 4, 'sliced': 4, 'heartening': 4, "countin'": 4, 'tee': 4, 'embankment': 4, 'embedded': 4, 'amendments': 4, 'Tonight': 4, 'Smoky': 4, 'Nordmann': 4, 'commended': 4, 'Bradley': 4, 'Quincy': 4, '52': 4, 'slugger': 4, '51': 4, 'behaving': 4, 'reserving': 4, 'thrilling': 4, 'possessive': 4, 'Grounds': 4, 'bulletins': 4, "board's": 4, 'Bruce': 4, 'aunts': 4, 'Fashion': 4, 'Geraghty': 4, 'acclaim': 4, 'visa': 4, 'surgery': 4, 'bachelor': 4, "Hollywood's": 4, 'glamor': 4, 'Simon': 4, 'Box': 4, 'charities': 4, 'holders': 4, "Berlin's": 4, 'Gate': 4, 'Tarzan': 4, 'misses': 4, 'suites': 4, 'Shoup': 4, 'Campbell': 4, 'alcoholics': 4, 'withdrawn': 4, 'onslaught': 4, 'influx': 4, 'roadside': 4, 'peculiarities': 4, 'Motel': 4, 'hospitable': 4, 'Judith': 4, 'Honor': 4, 'Baird': 4, 'Arlington': 4, 'featuring': 4, 'Philmont': 4, 'combo': 4, "R's": 4, 'specialties': 4, 'secretarial': 4, 'aides': 4, 'Allan': 4, "David's": 4, 'Wheeler': 4, 'year-round': 4, 'Smythe': 4, 'posters': 4, 'Evelyn': 4, 'son-in-law': 4, 'Janssen': 4, 'Godwin': 4, 'Jordan': 4, 'trimmed': 4, 'supervisors': 4, 'mechanically': 4, 'long-time': 4, 'Pullen': 4, 'Schaefer': 4, 'clearance': 4, 'Chesapeake': 4, 'Younger': 4, 'Cherry': 4, 'Ultimately': 4, "navy's": 4, 'Skipjack': 4, 'Gee': 4, 'Houghton': 4, 'transmitter': 4, 'Fuchs': 4, 'undeveloped': 4, 'Vic': 4, 'outrun': 4, '70,000': 4, 'rumor': 4, 'Teller': 4, 'Sokol': 4, 'addicts': 4, 'creditable': 4, 'eyebrow': 4, 'Wabash': 4, 'Dunbar': 4, 'Wilmette': 4, 'speeding': 4, 'southwest': 4, 'foreman': 4, 'Elsie': 4, 'Township': 4, 'aftermath': 4, "Anne's": 4, 'Cemetery': 4, '61': 4, '$135': 4, 'Principal': 4, 'surpluses': 4, 'fondness': 4, '10-year-old': 4, 'Kimmell': 4, 'showdown': 4, 'Laotian': 4, 'assaults': 4, 'tribunals': 4, 'collaborators': 4, 'Rio': 4, "Anderson's": 4, 'Associated': 4, 'endowments': 4, 'desiring': 4, 'Willard': 4, 'worded': 4, 'contacted': 4, 'Killingsworth': 4, 'W': 4, 'NW': 4, 'wistfully': 4, 'pest': 4, 'Macon': 4, '14th': 4, 'computers': 4, 'junction': 4, 'renew': 4, 'Brett': 4, 'Wash.': 4, 'Blvd.': 4, 'Cohn': 4, 'culmination': 4, 'advisors': 4, 'Savings': 4, '$250': 4, '4-H': 4, '8:30': 4, 'Jossy': 4, 'Hutchins': 4, '$700': 4, '$75': 4, 'bedrooms': 4, 'dumping': 4, 'rubbish': 4, 'fender': 4, 'audio-visual': 4, 'Persons': 4, 'bestowal': 4, 'juror': 4, 'masked': 4, 'Marin': 4, 'Willy': 4, 'runway': 4, 'altitude': 4, 'streaked': 4, 'banked': 4, 'Martini': 4, 'endorsed': 4, 'obligated': 4, 'jolt': 4, 'complacency': 4, 'Glimco': 4, "Stein's": 4, 'janitor': 4, 'gangsters': 4, 'Sanitation': 4, 'suppressed': 4, 'Gregorio': 4, 'hottest': 4, 'cable': 4, 'priced': 4, 'Lay': 4, 'resistant': 4, 'ginning': 4, 'weighs': 4, 'Whitney': 4, 'Neal': 4, 'Potter': 4, 'Woodrow': 4, 'inappropriate': 4, 'Dow': 4, 'envisioned': 4, 'Bell': 4, 'know-how': 4, 'holdings': 4, 'subordinated': 4, 'Growth': 4, 'Doyle': 4, 'far-reaching': 4, 'foreseeable': 4, 'rebuffed': 4, '$1.1': 4, 'fertilizer': 4, 'implements': 4, 'chemicals': 4, 'Iowa': 4, "farmers'": 4, 'Net': 4, 'deducted': 4, 'suspects': 4, 'invoking': 4, 'challenges': 4, 'Neiman-Marcus': 4, 'fashions': 4, 'plaques': 4, 'silhouette': 4, 'greens': 4, 'Isles': 4, 'Coward': 4, 'tribe': 4, 'adept': 4, 'flourishes': 4, 'gravy': 4, 'spice': 4, 'robes': 4, 'baking': 4, 'Serve': 4, 'tiled': 4, 'Composite': 4, 'chests': 4, 'gleam': 4, 'motto': 4, 'chartered': 4, 'Foliage': 4, 'Swim': 4, '90%': 4, 'rainy': 4, 'grammar': 4, 'Published': 4, 'Stars': 4, 'denote': 4, 'Tudor': 4, 'Flowers': 4, 'Panama': 4, 'Measure': 4, 'reminiscent': 4, 'craftsmen': 4, 'innate': 4, 'Eighteenth': 4, 'specializing': 4, 'flanked': 4, 'Tahoe': 4, 'decor': 4, 'steaks': 4, "Tom's": 4, 'preclude': 4, 'Restaurant': 4, 'Escape': 4, 'Smallwood': 4, 'Coral': 4, 'Gables': 4, 'Jorge': 4, 'Crusade': 4, 'ordained': 4, 'Anniversary': 4, 'Concert': 4, 'Beauty': 4, 'winners': 4, 'friendliness': 4, 'frankness': 4, 'piety': 4, 'sparkle': 4, 'incomparable': 4, 'virile': 4, 'sumptuous': 4, 'Chestnut': 4, 'toy': 4, 'warehouse': 4, 'rehearsal': 4, 'immorality': 4, 'glories': 4, 'moderates': 4, 'Person': 4, 'venerable': 4, 'chrome': 4, 'nozzle': 4, 'tipped': 4, 'doorman': 4, 'Duncan': 4, 'Phyfe': 4, 'descendants': 4, 'AID': 4, 'Jacqueline': 4, 'demolished': 4, 'bandstand': 4, 'nuns': 4, 'teenage': 4, 'Baldrige': 4, 'perched': 4, '1891': 4, 'Alexandria': 4, 'ignoring': 4, 'Skyline': 4, 'leisurely': 4, 'implement': 4, 'stakes': 4, 'denunciation': 4, 'compel': 4, 'formulating': 4, 'councils': 4, 'advisability': 4, 'directorate': 4, 'erroneous': 4, 'instincts': 4, 'evolutionary': 4, 'aptly': 4, 'diocesan': 4, 'detachment': 4, 'subsidized': 4, 'clustered': 4, 'pictured': 4, 'recruiting': 4, 'coveted': 4, 'underestimate': 4, 'in-group': 4, 'anti-monopoly': 4, 'forbid': 4, 'allegedly': 4, 'undefined': 4, 'uncontrolled': 4, 'penalties': 4, 'empires': 4, 'untrammeled': 4, 'reacting': 4, 'imposes': 4, 'outlawed': 4, 'enacting': 4, 'Mine': 4, 'Coal': 4, 'interrupt': 4, 'understatement': 4, 'self-respect': 4, 'Cutting': 4, 'Bennington': 4, 'Political': 4, 'intrigue': 4, 'campaigned': 4, "Missouri's": 4, 'Sitting': 4, 'face-saving': 4, "Senate's": 4, 'modification': 4, "Player's": 4, 'mishap': 4, 'wedge': 4, 'Afterwards': 4, 'composure': 4, '73': 4, 'Pensacola': 4, 'Thereafter': 4, 'Rosburg': 4, 'birdie': 4, 'birdied': 4, 'chipped': 4, '450': 4, 'Gregory': 4, 'major-league': 4, 'doubly': 4, 'jeopardy': 4, 'thwarted': 4, '58': 4, '108': 4, "Maris's": 4, 'mathematically': 4, '154': 4, 'minors': 4, 'weigh': 4, 'Send': 4, 'Sinatra': 4, 'entourage': 4, 'hearty': 4, 'Fabian': 4, 'classmates': 4, 'slob': 4, 'enigma': 4, 'eccentricity': 4, 'fabled': 4, 'lavishly': 4, 'Charlayne': 4, 'Kimpton': 4, 'pondered': 4, 'researchers': 4, 'grabbing': 4, 'gunmen': 4, 'dialects': 4, 'Generale': 4, 'Moise': 4, 'obstructed': 4, "U.N.'s": 4, 'three-month': 4, 'withdrawing': 4, 'picks': 4, 'Chiang': 4, 'Outer': 4, '707': 4, 'teen-age': 4, 'Desert': 4, 'Rickards': 4, 'pirates': 4, 'nap': 4, 'Augustine': 4, 'baggage': 4, 'Bearden': 4, 'Officer': 4, 'take-off': 4, 'slugs': 4, 'unarmed': 4, '$100,000': 4, 'unanimity': 4, 'peacetime': 4, 'Strategic': 4, 'Debate': 4, '1851': 4, 'bean': 4, 'speculations': 4, 'tending': 4, "road's": 4, 'Costs': 4, 'attracting': 4, 'Olivetti': 4, 'infrequent': 4, 'Important': 4, 'miners': 4, 'Welsh': 4, 'mechanization': 4, 'nonfiction': 4, 'diversified': 4, 'startlingly': 4, 'thriving': 4, 'inclusive': 4, 'backbone': 4, 'repository': 4, 'discounts': 4, 'billing': 4, 'Books': 4, 'documentary': 4, 'conducts': 4, 'prepares': 4, 'publishes': 4, 'newsletter': 4, 'newcomers': 4, 'congratulate': 4, 'dictum': 4, 'wolves': 4, 'extremity': 4, 'Africans': 4, 'nurses': 4, 'repulsive': 4, 'dictator': 4, 'demise': 4, 'oppressive': 4, 'displeasure': 4, 'amply': 4, 'illustrating': 4, 'barricades': 4, 'Adenauer': 4, 'stiffening': 4, 'Past': 4, 'bourbon': 4, 'viewer': 4, 'bluffs': 4, 'growl': 4, 'sensibly': 4, 'Calvin': 4, 'bury': 4, 'surrendering': 4, 'propel': 4, 'incompetence': 4, 'rations': 4, 'hangs': 4, 'Interama': 4, 'ventures': 4, 'arisen': 4, 'parliament': 4, 'firmness': 4, 'rewrite': 4, 'extremists': 4, 'capitalize': 4, 'confusions': 4, 'collectively': 4, 'responsive': 4, 'wedded': 4, 'snowy': 4, 'arduous': 4, 'stripes': 4, 'accountability': 4, 'Dalton': 4, 'controversies': 4, 'gravest': 4, 'geographic': 4, "General's": 4, 'vest': 4, 'concurrence': 4, 'sewers': 4, 'Hemisphere': 4, 'downfall': 4, '1980': 4, 'villains': 4, 'stamps': 4, 'bud': 4, 'shines': 4, '$3,000': 4, 'altar': 4, 'jealousy': 4, 'Forgive': 4, 'Matthew': 4, 'saith': 4, 'seventy': 4, 'pulpit': 4, 'satisfactions': 4, 'bucks': 4, 'saints': 4, 'sinners': 4, 'auction': 4, 'Walking': 4, 'consummated': 4, 'rebuff': 4, 'incipient': 4, 'lanes': 4, 'pedal': 4, 'psychiatrist': 4, 'rituals': 4, 'uncover': 4, 'outgrow': 4, 'embroidery': 4, 'naturalistic': 4, 'darned': 4, 'stalwart': 4, 'henceforth': 4, 'rampant': 4, 'strategists': 4, 'audible': 4, 'deluge': 4, 'TASS': 4, 'datelined': 4, 'armaments': 4, 'fanning': 4, 'proverbial': 4, 'Cyrus': 4, 'convicts': 4, 'inmates': 4, 'occupant': 4, 'contemplating': 4, 'Car': 4, 'carpets': 4, 'Beebe': 4, 'Frelinghuysen': 4, 'hello': 4, 'attested': 4, 'manuscripts': 4, '1901': 4, 'baptism': 4, 'Blessed': 4, 'rapidity': 4, 'Prof.': 4, 'gamut': 4, 'overlook': 4, 'cushioning': 4, 'weave': 4, 'Laboratories': 4, 'dentists': 4, 'bristles': 4, 'gadget': 4, 'numb': 4, 'Brace': 4, 'sciatica': 4, 'esoteric': 4, 'Dover': 4, 'impart': 4, 'feverish': 4, 'inferiority': 4, 'frauds': 4, 'magician': 4, 'considerate': 4, 'lions': 4, 'strolled': 4, 'ache': 4, 'Enough': 4, 'woolen': 4, 'breakthrough': 4, 'distressed': 4, 'Bridges': 4, 'makings': 4, 'unemployed': 4, 'Politics': 4, 'grossly': 4, 'oversimplified': 4, 'utilizes': 4, 'Irving': 4, 'non-service-connected': 4, 'ensuing': 4, 'curtail': 4, 'Secondly': 4, 'hospitalization': 4, 'A.M.A.': 4, 'sheltered': 4, 'Masaryk': 4, 'Jan': 4, 'subsidize': 4, 'incorrect': 4, 'criticize': 4, 'DuPont': 4, 'unwarranted': 4, 'concur': 4, 'affiliation': 4, 'comedian': 4, 'Changing': 4, 'sediments': 4, 'Mayflower': 4, 'mistrust': 4, 'disapproved': 4, 'desolation': 4, "someone's": 4, 'snatch': 4, 'prohibiting': 4, 'fountains': 4, 'murderous': 4, 'ducks': 4, 'Austria': 4, 'expulsion': 4, 'Member': 4, 'undone': 4, 'affirmative': 4, 'servicing': 4, 'Prayer': 4, 'inflict': 4, 'widen': 4, 'dictators': 4, 'dislikes': 4, 'canon': 4, 'softness': 4, 'calisthenics': 4, 'push-up': 4, '50-megaton': 4, 'Morrison': 4, 'discontinuity': 4, 'urbanized': 4, 'Energy': 4, 'chagrin': 4, 'gallant': 4, 'avail': 4, 'instability': 4, 'Buddhist': 4, 'dogma': 4, 'Chevrolet': 4, 'mobilized': 4, 'dump': 4, 'pistols': 4, 'traitors': 4, 'accorded': 4, 'Baptists': 4, 'blasts': 4, 'foreboding': 4, '200,000': 4, 'bind': 4, 'contamination': 4, 'justifiable': 4, 'designation': 4, 'Vatican': 4, 'Canterbury': 4, 'Divine': 4, 'tightening': 4, 'pervasive': 4, 'dreamy': 4, 'liberate': 4, 'gladly': 4, "Moscow's": 4, 'puzzles': 4, 'premieres': 4, "White's": 4, 'Unsinkable': 4, 'Die': 4, 'prevalence': 4, 'Grecian': 4, 'burgeoning': 4, 'familial': 4, 'Ionic': 4, 'graces': 4, 'maniac': 4, 'sailor': 4, 'orchestras': 4, 'sends': 4, 'ecstatic': 4, 'provokes': 4, 'Hurok': 4, 'gypsy': 4, 'Brazilian': 4, 'sweaters': 4, 'Austrian': 4, 'Schiele': 4, 'grotesquely': 4, 'Cried': 4, 'disgusting': 4, 'sexuality': 4, 'unrelieved': 4, 'lust': 4, 'interminable': 4, 'quarrels': 4, 'variant': 4, 'deteriorated': 4, 'Enver': 4, 'misty': 4, 'Lauchli': 4, 'skirmish': 4, 'grouping': 4, 'cleverly': 4, 'enviable': 4, 'taverns': 4, 'willy-nilly': 4, 'eighteenth-century': 4, 'substituting': 4, 'impending': 4, 'flown': 4, 'sufferer': 4, 'fundamentalist': 4, 'dogmatism': 4, 'Interpretation': 4, 'doctored': 4, 'transcript': 4, 'tapes': 4, 'glibly': 4, 'estimation': 4, 'Alas': 4, 'Godkin': 4, 'marred': 4, 'incoherent': 4, 'Milstein': 4, 'violinist': 4, 'Overture': 4, 'Bayreuth': 4, 'repertory': 4, 'notified': 4, 'Civic': 4, 'affluence': 4, 'courtiers': 4, 'impress': 4, 'Eliot': 4, 'saddled': 4, 'Quixote': 4, 'exposition': 4, 'performs': 4, 'nobility': 4, 'armor': 4, 'soberly': 4, 'tempo': 4, 'complexities': 4, 'abetted': 4, 'appropriately': 4, 'dubbed': 4, 'subtleties': 4, 'helpfully': 4, 'concludes': 4, 'finely': 4, 'photographed': 4, 'trimmings': 4, 'cheers': 4, 'Mad': 4, 'Scene': 4, 'disconcerting': 4, 'waxed': 4, 'immersed': 4, 'fullness': 4, 'serviceable': 4, 'Twenties': 4, 'interiors': 4, 'Gospels': 4, "D'Albert": 4, 'noisily': 4, 'directness': 4, 'smack': 4, 'Lewisohn': 4, "pianist's": 4, 'keyboard': 4, 'Variations': 4, 'weighted': 4, 'jungles': 4, 'Parts': 4, 'Burmese': 4, 'anecdotes': 4, 'tireless': 4, 'scanty': 4, 'logistics': 4, 'Choir': 4, 'twenty-six': 4, 'unsettled': 4, 'Lines': 4, 'ingratiating': 4, 'choreographed': 4, 'professionally': 4, 'dizzy': 4, 'Playhouse': 4, 'eroded': 4, 'Fiorello': 4, 'Rudy': 4, 'chieftain': 4, 'hurrying': 4, 'verve': 4, 'splendidly': 4, 'springtime': 4, 'trenchant': 4, 'grown-up': 4, 'penned': 4, 'Platonism': 4, 'jocular': 4, 'prophet': 4, 'unifying': 4, 'alphabetical': 4, 'Dream': 4, 'exaggerating': 4, 'veritable': 4, 'Virginian': 4, 'quotation': 4, 'banged': 4, 'exposing': 4, 'thirties': 4, 'corrosion': 4, 'crusade': 4, 'outrage': 4, 'eagle': 4, 'populace': 4, 'topical': 4, 'continental': 4, 'unconditional': 4, 'settlements': 4, 'Recognizing': 4, 'shocking': 4, 'persuasive': 4, 'criminality': 4, 'sulky': 4, 'prejudices': 4, 'cynicism': 4, 'baffling': 4, 'first-rate': 4, 'lightened': 4, 'Donnybrook': 4, 'dross': 4, 'Joshua': 4, 'lucid': 4, 'evenly': 4, 'whine': 4, 'Skolovsky': 4, 'methodical': 4, 'decaying': 4, 'madrigal': 4, 'BAM': 4, 'occupies': 4, 'disks': 4, "Rameau's": 4, 'Bach': 4, 'tutor': 4, 'satiric': 4, 'plump': 4, 'applauded': 4, 'Smiling': 4, 'Alone': 4, 'evidences': 4, 'flapped': 4, 'combed': 4, 'photographer': 4, 'microphones': 4, 'Rain': 4, 'striving': 4, "Mulligan's": 4, 'infected': 4, 'glimpses': 4, 'drumming': 4, "Schubert's": 4, 'Nikolais': 4, 'diversions': 4, 'menacing': 4, 'subscription': 4, 'Westchester': 4, 'Strike': 4, 'delightfully': 4, 'Gaieties': 4, 'incisive': 4, 'Altogether': 4, 'parody': 4, 'hinges': 4, 'chronicle': 4, 'conveys': 4, 'Camusfearna': 4, 'isle': 4, 'furnishing': 4, 'travelled': 4, 'marshes': 4, 'catalogued': 4, 'drawers': 4, 'ledge': 4, 'revolved': 4, 'manages': 4, 'contradict': 4, 'repeats': 4, 'experimenters': 4, 'stately': 4, 'Jouvet': 4, 'Ledoux': 4, 'Tartuffe': 4, 'laughs': 4, 'good-natured': 4, 'Scapin': 4, 'Django': 4, 'Bourbon': 4, 'old-time': 4, 'jealous': 4, 'labeling': 4, 'gregarious': 4, 'twenty-eight': 4, 'loveliness': 4, 'deux': 4, 'engrossing': 4, 'zealous': 4, 'Pons': 4, 'rewards': 4, 'marches': 4, 'southeastern': 4, "station's": 4, '360': 4, 'quotes': 4, 'solidity': 4, 'flapping': 4, 'presumptuous': 4, 'plasticity': 4, 'extrapolated': 4, 'moderator': 4, 'Bonnor': 4, 'jargon': 4, 'ultra-violet': 4, 'telescope': 4, 'Beatie': 4, 'proclaims': 4, 'clods': 4, 'antagonistic': 4, 'redundancy': 4, 'Ado': 4, 'Wollman': 4, 'bravely': 4, 'coy': 4, 'melodramatic': 4, 'leaps': 4, 'armchair': 4, 'inherit': 4, 'pastry': 4, 'connoisseur': 4, 'Beneath': 4, 'petals': 4, 'mansions': 4, 'Andrea': 4, 'environs': 4, 'stucco': 4, 'velvet': 4, 'Corporations': 4, "mankind's": 4, 'salient': 4, 'analytical': 4, "everybody's": 4, 'hopping': 4, 'Roll': 4, 'Maritime': 4, 'quieter': 4, 'groves': 4, 'softer': 4, 'brightest': 4, 'Saratoga': 4, 'Peninsula': 4, '1892': 4, '1876': 4, 'jets': 4, 'gem': 4, 'weighty': 4, 'autobiography': 4, 'Crane': 4, 'mule': 4, 'Maid': 4, 'horrors': 4, 'pitiful': 4, 'Maestro': 4, 'cure-all': 4, 'capes': 4, 'salty': 4, 'shingles': 4, 'eastward': 4, 'rigs': 4, 'dam': 4, 'Erich': 4, 'Marquis': 4, 'love-making': 4, 'fumbling': 4, 'Gaulle': 4, 'studded': 4, 'loudest': 4, 'one-fifth': 4, 'banish': 4, 'indescribable': 4, 'diabetes': 4, 'malnutrition': 4, 'parasites': 4, 'obesity': 4, 'Puritan': 4, 'Jolliffe': 4, 'subconscious': 4, 'seals': 4, 'fatally': 4, 'transitional': 4, 'user': 4, 'experiential': 4, 'rightly': 4, 'demon': 4, 'unfolds': 4, 'sinner': 4, 'Bultmann': 4, 'infatuation': 4, 'cultured': 4, 'restatement': 4, 'apostolic': 4, 'tenable': 4, 'enthusiastically': 4, 'Fawkes': 4, 'Fate': 4, 'warehouses': 4, 'vicar': 4, 'Forty': 4, 'respectful': 4, 'converts': 4, 'periodical': 4, 'uniqueness': 4, 'Savior': 4, 'rained': 4, 'imperfect': 4, 'woe': 4, 'disobeyed': 4, 'proclaiming': 4, 'betray': 4, 'excommunicated': 4, 'naming': 4, 'bravery': 4, 'mobs': 4, 'respecting': 4, 'individuality': 4, 'genteel': 4, 'prophesied': 4, 'tides': 4, 'Gospel': 4, 'admiring': 4, 'textbook': 4, 'affections': 4, 'discern': 4, 'bliss': 4, 'drowning': 4, 'gnawing': 4, 'Himself': 4, 'Fear': 4, 'tranquilizers': 4, 'promotes': 4, 'belongings': 4, 'profanity': 4, 'Notice': 4, 'threefold': 4, 'cults': 4, 'mirrors': 4, 'Sacred': 4, 'Elements': 4, 'interrelation': 4, 'conversely': 4, 'Tao': 4, 'Reception': 4, 'pp.': 4, 'participant': 4, 'cultivation': 4, 'splinter': 4, 'dispense': 4, 'intrinsically': 4, 'juncture': 4, 'nurture': 4, 'Afro-Asian': 4, 'repudiation': 4, 'rejoicing': 4, 'reconsidered': 4, 'intentionally': 4, 'Movement': 4, 'watches': 4, 'finality': 4, 'balancing': 4, 'outweighed': 4, 'deriving': 4, 'realtor': 4, 'detrimental': 4, 'responsiveness': 4, 'alumni': 4, 'communal': 4, 'fragmented': 4, 'prejudiced': 4, 'clauses': 4, 'well-kept': 4, 'embraces': 4, 'bearer': 4, 'snowing': 4, '250,000': 4, 'spheres': 4, 'physicist': 4, 'Nantucket': 4, 'allegiance': 4, 'Reform': 4, 'Quakers': 4, 'benevolence': 4, 'paralleled': 4, 'ephemeral': 4, 'incessant': 4, 'dogmatic': 4, 'compromising': 4, 'transmuted': 4, 'awesome': 4, 'eminence': 4, 'supremely': 4, 'offend': 4, 'disasters': 4, 'Taoism': 4, 'ethos': 4, 'synonymous': 4, 'antipathy': 4, 'theoretically': 4, 'strove': 4, 'supernaturalism': 4, 'Hwang': 4, 'Pah': 4, 'torrent': 4, 'pragmatic': 4, 'self-confidence': 4, 'reconcile': 4, '1898': 4, 'indulgence': 4, 'amongst': 4, 'blinded': 4, 'believer': 4, 'righteous': 4, 'miraculous': 4, 'philanthropic': 4, 'Catherine': 4, 'braces': 4, 'Montreal': 4, 'chisel': 4, 'Definition': 4, 'lifters': 4, 'straightening': 4, 'Pansies': 4, 'gardener': 4, 'coldest': 4, 'protects': 4, 'spade': 4, 'decayed': 4, 'heaving': 4, 'tomato': 4, 'lapses': 4, 'versatility': 4, "victim's": 4, 'runways': 4, 'supersonic': 4, 'Arte': 4, 'Adrian': 4, 'sheds': 4, 'delicious': 4, 'shading': 4, 'compliments': 4, 'scrawny': 4, "everyone's": 4, 'purported': 4, 'innovations': 4, 'environments': 4, 'quantitatively': 4, 'Giselle': 4, 'brilliance': 4, 'KC': 4, 'Ch.': 4, 'Barcus': 4, 'Ham': 4, 'Danes': 4, 'Comes': 4, 'Boats': 4, 'markedly': 4, 'wells': 4, 'watering': 4, 'smartly': 4, "year-'round": 4, 'toilets': 4, 'galleys': 4, 'purchasers': 4, 'encompass': 4, 'burdened': 4, 'reorganized': 4, 'lengthwise': 4, 'Close': 4, 'photos': 4, 'sq.': 4, 'dia.': 4, 'V-shaped': 4, 'mated': 4, 'remotely': 4, 'Numbers': 4, 'subtracted': 4, 'Factors': 4, 'cross-sectional': 4, 'cc.': 4, 'valves': 4, 'gasket': 4, 'calculate': 4, 'irregularity': 4, '2:34': 4, 'hopples': 4, 'worms': 4, 'Freight': 4, 'Hickory': 4, 'three-quarters': 4, 'Coffee': 4, 'Stormy': 4, 'Ruger': 4, 'flurry': 4, "'61": 4, 'brands': 4, 'tubular': 4, 'tang': 4, 'optional': 4, 'tiring': 4, 'sandwiches': 4, 'hissing': 4, "Manning's": 4, 'Fish': 4, 'roulette': 4, 'groomed': 4, 'celery': 4, 'nutmeg': 4, 'Sherry': 4, 'glistened': 4, 'clump': 4, 'haunt': 4, 'garlic': 4, 'vineyards': 4, 'syrup': 4, 'unbelievable': 4, 'U.S.A.': 4, 'two-day': 4, 'Ethan': 4, 'Winooski': 4, 'locales': 4, 'memorial': 4, 'wooded': 4, 'midwestern': 4, 'stroll': 4, 'overgrown': 4, 'boyish': 4, 'cowboys': 4, 'forts': 4, 'panorama': 4, 'Directly': 4, 'minarets': 4, 'temples': 4, 'Justinian': 4, 'rectangular': 4, 'lettering': 4, 'swords': 4, 'shorten': 4, 'diagonally': 4, 'hamburgers': 4, '75%': 4, 'sized': 4, 'skinless': 4, 'goodbye': 4, 'sauerkraut': 4, 'onions': 4, 'teaspoon': 4, 'rectangle': 4, 'Spread': 4, 'Trim': 4, 'cupped': 4, 'warping': 4, 'Bisque': 4, "manufacturer's": 4, 'overlap': 4, 'rim': 4, 'creamer': 4, 'cardboard': 4, 'glazed': 4, 'stitches': 4, 'sock': 4, 'galley': 4, 'cruiser': 4, 'Fiberglas': 4, 'Plastic': 4, 'fasten': 4, 'floorboards': 4, 'Bear': 4, 'mesh': 4, 'coated': 4, 'attachments': 4, 'drills': 4, 'cutter': 4, 'erection': 4, 'Newbury': 4, 'petitioned': 4, 'Merrimack': 4, 'politic': 4, 'supervised': 4, 'Portsmouth': 4, 'Fayette': 4, 'rebuilt': 4, 'Parkersburg': 4, 'reasoned': 4, 'fantasies': 4, 'localities': 4, 'filters': 4, 'blower': 4, 'circulated': 4, 'Families': 4, 'safest': 4, 'draperies': 4, 'insulated': 4, 'investigator': 4, 'potentials': 4, 'overlooks': 4, 'shrubs': 4, 'Serge': 4, 'Republics': 4, 'ascending': 4, 'aristocracy': 4, 'submission': 4, 'treaties': 4, 'disciplines': 4, 'tenderness': 4, 'instrumentation': 4, 'disparate': 4, 'unfolded': 4, 'rigors': 4, 'extracting': 4, 'imparted': 4, 'engraved': 4, 'cleansing': 4, 'soften': 4, 'umber': 4, 'medals': 4, 'Medal': 4, 'Purchase': 4, 'Associate': 4, 'gymnasts': 4, 'gymnastic': 4, 'abdominal': 4, 'Electronics': 4, 'microscopy': 4, 'wavelength': 4, 'advancing': 4, 'heartbeat': 4, 'resonant': 4, 'scanning': 4, 'diameters': 4, 'Denmark': 4, '1801': 4, 'corresponded': 4, '1817': 4, '1812': 4, 'chemists': 4, 'analogies': 4, 'additives': 4, 'sanctioned': 4, 'hydrochloride': 4, 'Sheep': 4, 'Dynafac': 4, '0.2': 4, '0.4': 4, 'extracts': 4, 'Greatest': 4, 'worm': 4, 'self-unloading': 4, 'yrs.': 4, 'beats': 4, 'adhere': 4, 'furnishes': 4, 'carpentry': 4, 'tolerate': 4, 'suffice': 4, 'restricting': 4, 'entitles': 4, 'commensurate': 4, 'alerting': 4, 'bereavement': 4, "worker's": 4, 'containers': 4, 'Rifle': 4, 'Outdoor': 4, 'Teen': 4, 'rods': 4, 'willingly': 4, 'rebelled': 4, 'gage': 4, 'Engineer': 4, 'classifications': 4, 'quotations': 4, 'equivalence': 4, 'metered': 4, 'coolant': 4, 'radiator': 4, 'reductions': 4, 'vinyl': 4, 'trans-illuminated': 4, 'polyethylene': 4, 'tooling': 4, 'expectancy': 4, 'obstruct': 4, 'characterizes': 4, 'changeable': 4, 'cemented': 4, 'corrugated': 4, 'bathtub': 4, 'drywall': 4, 'mechanized': 4, '$.03': 4, 'palaces': 4, 'capitals': 4, 'Rue': 4, 'sedans': 4, 'limousine': 4, 'chauffeur': 4, 'skimming': 4, 'peanuts': 4, 'knotted': 4, "1950's": 4, 'three-part': 4, 'cetera': 4, 'scientifically': 4, 'pronouns': 4, 'stammered': 4, 'freighter': 4, 'ammo': 4, 'Axis': 4, 'inhumane': 4, 'shiver': 4, 'Musmanno': 4, 'olive': 4, 'fluttering': 4, 'airports': 4, 'shine': 4, 'imbedded': 4, 'scorn': 4, 'Dreams': 4, 'subconsciously': 4, 'unexplained': 4, 'Depew': 4, 'lends': 4, 'Folly': 4, 'pails': 4, 'cabbage': 4, 'eyeing': 4, 'cereals': 4, 'liberally': 4, 'underfoot': 4, 'maple': 4, 'hikes': 4, 'swirling': 4, 'crumpled': 4, 'terminals': 4, 'inaugurated': 4, 'backers': 4, 'Postmaster': 4, 'visibility': 4, 'penny': 4, 'Conferences': 4, 'knack': 4, 'hem': 4, 'rugs': 4, 'mosaic': 4, 'forte': 4, 'hobby': 4, 'clippings': 4, 'burrow': 4, 'consummation': 4, 'virginity': 4, 'manuals': 4, 'momentarily': 4, 'asserting': 4, 'submissive': 4, 'unhealthy': 4, 'cheated': 4, 'counselor': 4, 'well-educated': 4, 'monopolize': 4, 'Schillinger': 4, 'hover': 4, "somebody's": 4, "Diane's": 4, 'littered': 4, 'knowingly': 4, 'Continuing': 4, 'shrieked': 4, '97': 4, 'ailment': 4, 'distributing': 4, 'strychnine': 4, 'relies': 4, 'protruded': 4, 'malocclusion': 4, 'Front': 4, 'predisposition': 4, 'narrowing': 4, 'jumble': 4, 'malformed': 4, 'alignment': 4, 'births': 4, 'mediums': 4, 'ESP': 4, 'Methods': 4, 'tabulated': 4, 'profitably': 4, 'SS': 4, 'anti-Semitic': 4, 'Hungary': 4, 'abyss': 4, 'unspeakable': 4, 'awakened': 4, 'poisoned': 4, 'birth-control': 4, 'Author': 4, 'contraceptives': 4, 'procreation': 4, 'spouses': 4, 'frustrate': 4, 'Prohibition': 4, 'contraception': 4, 'fiat': 4, 'ill-starred': 4, 'Arctic': 4, 'tantalizing': 4, 'recruited': 4, 'unexplored': 4, 'Staffe': 4, 'misconception': 4, 'Iceland': 4, 'inlet': 4, 'passageway': 4, 'Hands': 4, 'headwaters': 4, 'Territory': 4, '1818': 4, 'grasshoppers': 4, 'Pembina': 4, "Selkirk's": 4, 'warmer': 4, 'Superintendent': 4, 'bushels': 4, 'flat-bottomed': 4, 'plains': 4, '1840': 4, 'patron': 4, 'slowness': 4, 'jist': 4, 'twister': 4, 'escapes': 4, 'blots': 4, 'exploits': 4, 'comrade': 4, 'M.A.': 4, 'Volunteers': 4, 'heterogeneous': 4, 'incarnation': 4, 'propagandistic': 4, 'Related': 4, 'culturally': 4, 'housewives': 4, 'propagandists': 4, 'administering': 4, 'interwoven': 4, 'choir': 4, 'thieving': 4, 'rowdy': 4, 'gag': 4, 'platinum': 4, 'booze': 4, 'stead': 4, 'pounded': 4, 'dwarf': 4, 'swells': 4, 'Hilo': 4, 'Commander': 4, 'disregarded': 4, 'hurled': 4, 'jerky': 4, 'Apaches': 4, 'Regiment': 4, 'rifleman': 4, 'bucking': 4, 'Regular': 4, 'cannon': 4, 'pinned': 4, 'slamming': 4, 'toad': 4, 'Illustrations': 4, 'lethargy': 4, 'Keo': 4, 'Cool': 4, 'Economics': 4, 'Philippines': 4, 'gentile': 4, 'lower-middle': 4, 'vigilance': 4, 'puffed': 4, 'lard': 4, 'sprinkled': 4, 'turpentine': 4, 'scalp': 4, 'bathe': 4, 'corrosive': 4, 'itch': 4, 'defied': 4, 'soak': 4, 'bandage': 4, 'wetting': 4, 'claret': 4, 'wicker': 4, 'dregs': 4, 'Gorham': 4, 'unnamed': 4, "Sam's": 4, 'rejecting': 4, 'unborn': 4, 'Scholar': 4, 'Comptroller': 4, 'critically': 4, 'rightful': 4, 'voyageurs': 4, 'kisses': 4, 'lounging': 4, 'casting': 4, '1907': 4, 'quarreled': 4, '11:20': 4, 'hatchet': 4, "Stanley's": 4, 'eclipses': 4, '1887': 4, 'Founders': 4, 'Sister': 4, 'marketable': 4, 'confidentially': 4, 'plumber': 4, 'soybean': 4, 'Orient': 4, 'flakes': 4, 'Cereal': 4, 'oilseeds': 4, 'sesame': 4, 'detergents': 4, '2.6': 4, 'fermented': 4, 'drought': 4, 'stampede': 4, 'cowhand': 4, "throwin'": 4, 'stripe': 4, 'rustler': 4, "sayin'": 4, 'rustle': 4, 'terrier': 4, 'gallop': 4, "she'll": 4, 'crackers': 4, 'Lighting': 4, "Ain't": 4, 'ropes': 4, 'strung': 4, 'gelding': 4, 'tensely': 4, 'Rover': 4, 'eminently': 4, 'derision': 4, 'taunt': 4, 'risked': 4, 'ingested': 4, 'sonofabitch': 4, 'conceptual': 4, 'socialization': 4, 'Experience': 4, 'superimpose': 4, 'diffuse': 4, 'antiquated': 4, 'retort': 4, 'centering': 4, 'embraced': 4, 'cross-licensing': 4, 'inventions': 4, 'Navona': 4, 'Steps': 4, 'civilizations': 4, 'Augustus': 4, 'Doric': 4, 'palazzo': 4, 'Julius': 4, 'Raphael': 4, 'Walk': 4, 'torment': 4, 'self-esteem': 4, "Negro's": 4, 'Melies': 4, 'Robbery': 4, 'pail': 4, 'deceptive': 4, 'replenish': 4, 'assimilated': 4, 'perpetuating': 4, 'informing': 4, 'captivity': 4, 'habitants': 4, 'Chickasaws': 4, 'whispers': 4, 'stale': 4, 'Karamazov': 4, 'vogue': 4, 'Rumor': 4, 'sheik': 4, 'Israeli': 4, 'eldest': 4, 'unafraid': 4, 'sounder': 4, 'to-day': 4, 'friendships': 4, 'meddling': 4, 'inferences': 4, 'societal': 4, 'standardized': 4, 'watersheds': 4, 'consoles': 4, 'circuits': 4, 'wolf': 4, 'ridges': 4, 'blink': 4, 'squatting': 4, 'squatted': 4, 'powerfully': 4, 'Isfahan': 4, 'Persia': 4, 'pavilion': 4, 'mountainside': 4, 'boughs': 4, 'descend': 4, 'filmed': 4, 'Marlowe': 4, 'inducing': 4, 'Know': 4, 'hereafter': 4, 'relinquished': 4, "Mahler's": 4, 'Kulturbund': 4, "Marx's": 4, 'Bruckner': 4, 'introduces': 4, 'upholding': 4, 'blissful': 4, 'vanishing': 4, 'aristocratic': 4, 'languid': 4, 'Snopes': 4, 'choreographers': 4, 'contradictions': 4, 'establishes': 4, 'tossing': 4, 'freshness': 4, 'pirouette': 4, 'Nineteenth': 4, 'pretence': 4, 'delegated': 4, 'cooperatives': 4, "Beckett's": 4, 'hates': 4, 'inflections': 4, 'baggy': 4, 'Tape': 4, 'ethic': 4, 'beatniks': 4, 'pungent': 4, 'leering': 4, 'knights': 4, 'unfettered': 4, 'prophets': 4, 'despairing': 4, 'radicalism': 4, 'Y': 4, 'steeples': 4, 'half-way': 4, 'vine': 4, 'sag': 4, 'barns': 4, 'indolent': 4, 'modulation': 4, 'sufferings': 4, 'individualistic': 4, 'humanism': 4, 'rationalism': 4, 'imitated': 4, 'interrelations': 4, 'registering': 4, 'rudimentary': 4, 'constellations': 4, 'derivation': 4, 'inseparable': 4, 'loathsome': 4, 'redemption': 4, 'brim': 4, 'rewarding': 4, 'selves': 4, "Byron's": 4, 'twined': 4, 'Somewhat': 4, 'idyllic': 4, 'fervor': 4, 'glorified': 4, 'Ride': 4, "king's": 4, 'convent': 4, 'Poe': 4, 'grappling': 4, 'stormy': 4, 'self-imposed': 4, 'customarily': 4, 'completeness': 4, 'f': 4, 'interlaced': 4, 're-examine': 4, 'contrasted': 4, 'evangelical': 4, 'specifies': 4, 'Fink': 4, 'Purpose': 4, 'invoke': 4, 'directives': 4, 'internationally': 4, 'radicals': 4, 'humbly': 4, 'climactic': 4, 'disruptive': 4, 'explicable': 4, 'storyteller': 4, 'madly': 4, 'plausible': 4, 'Sibylla': 4, 'rigorously': 4, 'Abstract': 4, 'constructions': 4, 'darkening': 4, 'sketching': 4, 'Stalag': 4, 'Stettin': 4, 'Rosenberg': 4, 'Compson': 4, 'novelists': 4, 'apex': 4, 'Thorpe': 4, 'idealized': 4, "Lyford's": 4, 'sketched': 4, 'observational': 4, "sun's": 4, 'Circular': 4, 'natures': 4, 'Almagest': 4, 'Sara': 4, 'condemn': 4, 'childlike': 4, 'biographical': 4, 'disciple': 4, 'Szolds': 4, 'Marches': 4, 'prettiest': 4, 'parting': 4, 'heaped': 4, 'antics': 4, 'regained': 4, 'sine': 4, 'shyly': 4, "Carl's": 4, 'Luxemburg': 4, 'kneeling': 4, 'self-indulgence': 4, 'co-operate': 4, 'Adolf': 4, 'Berle': 4, 'loathed': 4, 'Calcutta': 4, 'loaf': 4, 'exclaiming': 4, 'Bengal': 4, 'Running': 4, 'tawny': 4, 'banana': 4, 'foreigner': 4, 'blasphemous': 4, 'Observations': 4, 'altering': 4, 'Paper': 4, 'counteract': 4, 'Guild': 4, 'Whiteman': 4, 'Benny': 4, 'lavatory': 4, 'highball': 4, 'immobility': 4, 'derby': 4, 'coroner': 4, 'fondly': 4, 'Prudence': 4, 'horrified': 4, 'fanaticism': 4, 'punctuated': 4, 'unreliable': 4, 'Feeling': 4, 'Personal': 4, 'despairingly': 4, 'intently': 4, 'trilogy': 4, 'dynamics': 4, 'self-satisfaction': 4, 'Savoy': 4, 'reread': 4, 'bicycle': 4, 'scouring': 4, 'talkative': 4, 'annals': 4, 'whistle': 4, 'pits': 4, "daughter's": 4, 'good-bye': 4, 'stoop': 4, 'Potemkin': 4, 'procure': 4, 'trance': 4, 'stooping': 4, 'Underneath': 4, 'Cossacks': 4, 'curving': 4, 'Uh': 4, 'skirts': 4, 'Athenians': 4, 'thirst': 4, 'winced': 4, 'irritating': 4, 'Vale': 4, 'gruff': 4, 'compiling': 4, 'prodigious': 4, 'stark': 4, 'unclean': 4, 'foul': 4, 'Pawtuxet': 4, 'blasphemy': 4, 'transfusions': 4, 'explanatory': 4, 'revise': 4, 'sacredness': 4, 'sorted': 4, 'discusses': 4, 'Wood': 4, 'milieu': 4, 'religiously': 4, 'rabbits': 4, 'Peters': 4, 'failures': 4, 'Boniface': 4, 'triangle': 4, 'unaided': 4, 'disadvantage': 4, 'Amadee': 4, 'swarthy': 4, 'Florentine': 4, 'dyed': 4, 'cursory': 4, 'Lew': 4, 'rocker': 4, 'Talmud': 4, 'childishness': 4, 'Wade-Evans': 4, 'Seebohm': 4, 'Systems': 4, 'tack': 4, 'ranking': 4, 'ascertained': 4, 'Aeschylus': 4, 'Hamlet': 4, 'Lear': 4, 'retribution': 4, 'Faust': 4, 'towne': 4, 'Exchequer': 4, 'procured': 4, "Greville's": 4, 'generalization': 4, 'bald': 4, 'Peru': 4, 'Dorado': 4, 'charitable': 4, 'rumors': 4, 'snobbery': 4, 'bachelors': 4, '1629': 4, '1632': 4, 'prolusions': 4, 'fencing': 4, 'Brave': 4, 'Courtenay': 4, 'Altenburg': 4, 'modesty': 4, 'embracing': 4, 'advocated': 4, 'fearfully': 4, 'groom': 4, 'poetry-and-jazz': 4, 'Tristano': 4, 'Marsh': 4, "han'": 4, 'disconnected': 4, 'Yiddish': 4, 'crazily': 4, 'shivered': 4, 'Excuse': 4, 'quitting': 4, 'banging': 4, 'Product': 4, 'incentives': 4, 'nationals': 4, 'favoritism': 4, 'twofold': 4, 'appraise': 4, 'Hon.': 4, 'stabilizing': 4, 'neglecting': 4, 'assigns': 4, 'audit': 4, 'situs': 4, 'abode': 4, 'Fiscal': 4, 'resides': 4, 'Woonsocket': 4, 'proponents': 4, 'Stat.': 4, 'Provided': 4, 'nonmetallic': 4, 'lignite': 4, '14-1/2': 4, 'Application': 4, 'Tumor': 4, 'loaned': 4, 'registries': 4, 'Thirty-five': 4, 'microseconds': 4, 'high-speed': 4, 'interferometer': 4, '4.2': 4, '2.1': 4, 'deviations': 4, 'in.': 4, 'concave': 4, 'dissociation': 4, 'imprisoned': 4, 'consented': 4, 'adjudication': 4, 'ports': 4, 'Plenty': 4, 'Source': 4, 'double-wall': 4, 'vents': 4, 'rehearsals': 4, 'maximizing': 4, 'divestiture': 4, 'preferential': 4, '348': 4, '1-a': 4, 'registrant': 4, 'desks': 4, 'Protection': 4, 'infestations': 4, '3.5': 4, 'strengths': 4, 'high-energy': 4, 'undertakings': 4, 'receipt': 4, 'radiated': 4, 'Essentially': 4, 'overpayment': 4, '1040A': 4, 'Chapters': 4, 'weaving': 4, 'Limited': 4, 'Annual': 4, 'directory': 4, 'black-body': 4, '3.15': 4, '0.8': 4, 'linearly': 4, 'Mare': 4, 'transpiring': 4, 'fluxes': 4, 'sheath': 4, 'Ref.': 4, 'voltages': 4, 'tungsten': 4, 'argon': 4, 'hr.': 4, 'viscoelastic': 4, 'gravitational': 4, 'shearing': 4, 'ellipsoids': 4, 'radii': 4, 'entropy': 4, 'unpaired': 4, '2.5': 4, 'occluded': 4, 'Spectra': 4, 'polyphosphates': 4, 'dwindling': 4, 'uncharged': 4, 'micelles': 4, 'ionic': 4, 'alkali': 4, 'sealing': 4, 'mixtures': 4, 'meteors': 4, 'Eta': 4, 'incubation': 4, 'alveoli': 4, 'dosage': 4, 'dosages': 4, 'elution': 4, 'anti-B': 4, 'titer': 4, 'titers': 4, 'homozygous': 4, 'agglutination': 4, 'dialyzed': 4, '230': 4, 'isotonic': 4, 'Spinco': 4, 'honeybees': 4, 'Bombus': 4, 'andrenas': 4, 'amethystine': 4, 'anacondas': 4, 'bronchus': 4, 'bronchiole': 4, 'hilar': 4, 'airways': 4, 'parenchyma': 4, 'emphysema': 4, 'transverse': 4, 'skeletal': 4, 'Completions': 4, 'crosses': 4, 'organification': 4, 'cell-free': 4, 'vitro': 4, 'vivo': 4, 'tri-iodothyronine': 4, 'proteases': 4, 'thyroid-stimulating': 4, 'acetone': 4, 'hemoglobin': 4, 'atrophy': 4, 'gastrocnemius': 4, 'intensify': 4, 'visceral': 4, 'cytoplasm': 4, 'ethyl': 4, 'buffered': 4, 'antiserum': 4, 'distinguishable': 4, 'globulin': 4, 'xylem': 4, 'excitability': 4, 'hypothalamic-cortical': 4, 'excitatory': 4, 'Mecholyl': 4, 'neuroses': 4, 'finite-dimensional': 4, 'divisible': 4, 'integer': 4, 'cubes': 4, 'diagonal': 4, 'pencils': 4, 'middle-': 4, 'Particularly': 4, 'recurrent': 4, 'rites': 4, 'Loomis': 4, 'IRSAC': 4, 'pregnancy': 4, 'relinquishing': 4, 'third-grade': 4, 'Intelligence': 4, 'compulsives': 4, 'antagonists': 4, "person's": 4, 'X-region': 4, 'storing': 4, 'modifying': 4, 'unstressed': 4, 'pronoun': 4, 'insulting': 4, 'consonants': 4, 'Tone': 4, 'vulture': 4, 'adjectives': 4, 'verb': 4, 'lexicostatistics': 4, 'plodding': 4, 'Poles': 4, 'merged': 4, 'Ibrahim': 4, 'maneuvering': 4, 'pierced': 4, 'movers': 4, 'wage-price': 4, 'positivism': 4, '1875': 4, '381': 4, '381(a)': 4, 'Seaboard': 4, 'Aerospace': 4, 'TR': 4, 'Processing': 4, 'wishing': 4, 'outputs': 4, 'kilowatt-hour': 4, 'distort': 4, 'decidedly': 4, 'kinesthetic': 4, 'vase': 4, 'slanting': 4, 'Ripe': 4, 'Shot': 4, 'Battenkill': 4, 'dime': 4, 'Barnumville': 4, 'Resolved': 4, 'simulate': 4, "Braque's": 4, 'undepicted': 4, 'intertwined': 4, 'ya': 4, 'awhile': 4, 'mopped': 4, 'phrasing': 4, 'Varlaam': 4, "guard's": 4, 'Coming': 4, 'coldness': 4, 'mocking': 4, 'Revulsion': 4, 'saxophone': 4, 'intoned': 4, 'nemesis': 4, 'forge': 4, "Magwitch's": 4, 'bangs': 4, 'Estella': 4, 'cruelly': 4, 'Pocket': 4, 'processor': 4, '7070/7074': 4, 'Input/Output': 4, 'RDWS': 4, 'ft': 4, '6-hr.': 4, 'Grab': 4, 'sludge': 4, 'antisubmarine': 4, 'polymers': 4, 'Mineralogy': 4, "Groth's": 4, 'Chemische': 4, 'Krystallographie': 4, 'Groth': 4, 'Format': 4, 'food-preservation': 4, 'blanching': 4, 'gamma': 4, '**yt': 4, 'Urethane': 4, '275': 4, 'prepolymer': 4, 'flexural': 4, 'tensile': 4, 'rinsing': 4, 'warp': 4, 'flat-bed': 4, 'couplers': 4, 'fiber-coupled': 4, 'cathodoluminescent': 4, 'P-20': 4, 'fluorescent': 4, 'Af-stage': 4, 'torquers': 4, 'autocollimator': 4, 'plumpness': 4, 'bandaged': 4, "Kate's": 4, 'scarf': 4, 'coward': 4, 'crouch': 4, 'Mickie': 4, 'booth': 4, 'lunged': 4, 'placid': 4, 'rosebuds': 4, 'Boxell': 4, 'Catt': 4, 'soared': 4, 'Presiding': 4, 'Herold': 4, 'gleamed': 4, 'Someday': 4, 'chewed': 4, 'Goddamn': 4, 'em': 4, 'patting': 4, "C'mon": 4, 'snuggled': 4, 'dashing': 4, 'plucked': 4, 'Camaret': 4, 'trudged': 4, 'hearth': 4, 'heaved': 4, 'Selena': 4, 'Skopas': 4, 'Melzi': 4, 'twitched': 4, 'Tussle': 4, "Jonathan's": 4, 'drunkenly': 4, 'Tomorrow': 4, 'feathered': 4, 'groin': 4, 'nested': 4, 'Funk': 4, 'goddam': 4, 'hook': 4, 'hound': 4, 'curly': 4, "Jim's": 4, 'Sposato': 4, 'oyabun': 4, 'Alastor': 4, 'Beckworth': 4, 'belched': 4, 'snorted': 4, 'skiffs': 4, 'sickened': 4, 'sherry': 4, 'Angelina': 4, 'suspiciously': 4, 'ah': 4, 'Starbird': 4, 'hey': 4, "Pa's": 4, 'insides': 4, 'poked': 4, 'sill': 4, 'thirsty': 4, 'blushing': 4, 'chambre': 4, 'Anyhow': 4, "Ada's": 4, 'bellboy': 4, 'beep': 4, 'microphone': 4, 'fools': 4, 'Dammit': 4, "Where'd": 4, 'jowls': 4, 'graying': 4, 'growled': 4, 'Felice': 4, 'Peralta': 4, 'cognac': 4, 'mailboxes': 4, 'dryly': 4, 'Lisa': 4, 'good-looking': 4, 'spades': 4, "so's": 4, "Sarah's": 4, 'swished': 4, 'Honotassa': 4, 'lain': 4, 'stupor': 4, 'freak': 4, 'flannel': 4, 'fingerprints': 4, "Andy's": 4, 'bouquet': 4, 'clapped': 4, 'Weigand': 4, 'Siamese': 4, 'Uh-huh': 4, 'Midge': 4, 'Orville': 4, 'raked': 4, 'Accacia': 4, 'Guess': 4, 'Beech': 4, 'Pasture': 4, 'scowled': 4, 'Radic': 4, 'grokked': 4, 'grokking': 4, 'vs': 4, 'Forerunner': 4, 'Sigmen': 4, 'Yarrow': 4, 'Ozagen': 4, 'zigzagging': 4, 'scooted': 4, 'super-condamine': 4, 'Shayol': 4, 'hoarsely': 4, 'Reaching': 4, 'goin': 4, 'murmuring': 4, 'fiercely': 4, 'Purvis': 4, 'Hurry': 4, "name's": 4, 'faro': 4, 'caressed': 4, 'Donna': 4, 'Tomas': 4, "coroner's": 4, 'livery': 4, "nothin'": 4, 'mused': 4, 'Sweeney': 4, 'Japs': 4, 'giggles': 4, 'loosened': 4, "Thor's": 4, "Orleans'": 4, 'Manas': 4, 'glisten': 4, 'tultul': 4, 'Songau': 4, 'Karipo': 4, 'superiors': 4, "marine's": 4, "Tilghman's": 4, 'nymphomaniac': 4, 'Laban': 4, 'Quinzaine': 4, 'Dunne': 4, 'Rosa': 4, 'lay-sisters': 4, 'Dolly': 4, 'Pile': 4, 'Clouds': 4, 'Rawlings': 4, "Myra's": 4, 'Francie': 4, 'Groggins': 4, 'Stubblefield': 4, 'Stubblefields': 4, 'alligator': 4, 'Ricco': 4, 'Gerry': 4, "Freddy's": 4, 'Allstates': 4, 'Ticonderoga': 4, "Viola's": 4, 'Grazie': 4, 'Cabrini': 4, "Burnside's": 4, 'Neitzbohr': 4, 'Alicia': 4, 'Purchasing': 3, 'Implementation': 3, 'awarding': 3, 'Attorneys': 3, 'Rd.': 3, 'hurdle': 3, 'Caldwell': 3, "Byrd's": 3, '$3': 3, "body's": 3, 'repealed': 3, 'coolest': 3, "Saturday's": 3, 'Dewey': 3, 'Ratcliff': 3, 'advocacy': 3, 'Beaumont': 3, 'Lamar': 3, 'correctness': 3, 'reservoirs': 3, '81': 3, 'senator': 3, 'majorities': 3, "Texas'": 3, 'Worth': 3, 'Wise': 3, 'hamlet': 3, '$5,000,000': 3, 'math': 3, 'Kan.': 3, "school's": 3, 'Okla.': 3, 're-elected': 3, 'dependency': 3, 'prelude': 3, 'Clements': 3, 'drafts': 3, 'vindication': 3, '21st': 3, 'discharging': 3, '$37': 3, 'boosting': 3, 'Nursing': 3, 'clinic': 3, 'socialized': 3, '92': 3, 'enlarging': 3, 'Reaction': 3, 'Dirksen': 3, 'Halleck': 3, 'Ore.': 3, 'Ministers': 3, 'Angola': 3, 'hoc': 3, "Rusk's": 3, 'inconclusive': 3, 'setbacks': 3, 'vagueness': 3, 'exploratory': 3, 'cornerstone': 3, 'setback': 3, 'Cooperation': 3, 'ratified': 3, 'Former': 3, 'Vice-President': 3, 'amateurish': 3, 'revamped': 3, 'contingency': 3, 'disagreed': 3, 'hilt': 3, 'erred': 3, 'Juvenile': 3, 'Delinquency': 3, 'Crime': 3, 'arrests': 3, 'Matching': 3, 'Race': 3, 'drifts': 3, 'supermarkets': 3, 'Sheraton-Biltmore': 3, 'voter': 3, 'confessing': 3, 'Bourcier': 3, 'solicitor': 3, 'Increasing': 3, 'Sanitary': 3, "Monday's": 3, 'Solicitor': 3, 'Plainfield': 3, 'Meyner': 3, 'Earlier': 3, 'discredited': 3, 'nominee': 3, 'campaigning': 3, '1964': 3, 'Sheeran': 3, "organization's": 3, 'Neil': 3, 'plows': 3, 'modernized': 3, 'hoodlums': 3, 'underwrite': 3, 'conserve': 3, 'four-year': 3, 'tusks': 3, 'Screvane': 3, 'Beame': 3, 'Sapio': 3, 'Queens': 3, 'Abe': 3, 'Stark': 3, 'Campus': 3, 'locale': 3, 'Hurrah': 3, "Administration's": 3, 'Trimble': 3, 'Leadership': 3, 'Delaney': 3, "O'Neill": 3, 'Twelve': 3, 'churchmen': 3, 'uncommitted': 3, 'Malcolm': 3, 'Elementary': 3, 'Thousands': 3, 'thoroughfare': 3, '1600': 3, '16,000': 3, 'academies': 3, 'Canal': 3, 'helm': 3, 'withstand': 3, 'longstanding': 3, "Mississippi's": 3, 'bypass': 3, "administration's": 3, 'grant-in-aid': 3, 'muster': 3, 'Underlying': 3, 'stab': 3, 'economize': 3, 'rigged': 3, 'contracting': 3, 'Property': 3, 'PTC': 3, 'violations': 3, 'overhauling': 3, 'rooming': 3, 'penalized': 3, '$15,000': 3, "Authority's": 3, 'Metal': 3, 'Reconstruction': 3, 'landscaped': 3, 'esplanade': 3, 'Gladden': 3, 'Hood': 3, 'dissension': 3, 'Gursel': 3, 'contested': 3, 'junta': 3, 'protocol': 3, 'pledges': 3, 'Ierulli': 3, 'extraordinarily': 3, 'exported': 3, 'Molvar': 3, 'SW': 3, 'Willamette': 3, 'swearing': 3, 'Masonic': 3, '4:30': 3, 'Zimmerman': 3, 'infallible': 3, 'emphasizes': 3, 'sinless': 3, 'Springfield': 3, '12,000': 3, 'Encouraging': 3, 'apprentices': 3, 'well-established': 3, 'Dist.': 3, 'Athletics': 3, 'coasted': 3, 'Siebern': 3, 'Norm': 3, 'Marv': 3, 'Rookie': 3, 'baseman': 3, 'offerings': 3, 'Keegan': 3, 'Braves': 3, '375': 3, 'Ward': 3, 'bunt': 3, 'fouling': 3, 'Flock': 3, 'rundown': 3, 'homers': 3, '49': 3, 'inducted': 3, 'fielding': 3, 'slugging': 3, 'slated': 3, "tomorrow's": 3, 'Houk': 3, 'Steve': 3, 'contingent': 3, "League's": 3, "Patrick's": 3, 'duel': 3, 'twenty-first': 3, 'Bowl': 3, 'astray': 3, 'place-kicking': 3, '135': 3, 'hampered': 3, 'ineligible': 3, 'kicks': 3, 'completions': 3, 'intercepted': 3, '44': 3, 'taper': 3, 'idleness': 3, 'Myers': 3, 'Buster': 3, 'Davidson': 3, 'flashy': 3, '64': 3, 'Completing': 3, '126': 3, 'Nischwitz': 3, '6-3': 3, 'viewers': 3, 'Hinton': 3, 'Rudolph': 3, 'Cooke': 3, 'rightfield': 3, 'Cliff': 3, 'roller': 3, 'outfield': 3, 'hammered': 3, '45-degree': 3, "season's": 3, 'diving': 3, 'Minnie': 3, 'liner': 3, 'Ogden': 3, 'hurting': 3, 'keyhole': 3, 'feats': 3, 'rightfully': 3, 'leaguer': 3, 'all-time': 3, "player's": 3, 'Phillies': 3, "Mickey's": 3, 'blacked': 3, 'Edwards': 3, 'Dyer': 3, 'Choice': 3, 'Vikings': 3, 'Troy': 3, 'Mazeroski': 3, 'Slocum': 3, 'imminent': 3, 'majors': 3, 'Flushing': 3, 'Frick': 3, 'Sands': 3, 'Georgetown': 3, 'outfielder': 3, 'saluted': 3, 'Amateur': 3, "writers'": 3, 'Illustrated': 3, 'Belt': 3, 'endeared': 3, 'golfer': 3, 'wailed': 3, 'ruefully': 3, 'wayward': 3, 'heyday': 3, 'Chisholm': 3, 'excavation': 3, 'bunker': 3, 'lengthening': 3, 'misled': 3, 'Mizell': 3, "baseball's": 3, 'Redbirds': 3, 'Change': 3, 'Murtaugh': 3, 'Nieman': 3, 'lineup': 3, 'Stan': 3, 'Musial': 3, 'quieted': 3, 'Clemente': 3, 'so-so': 3, "'52": 3, 'Cards': 3, 'triumphs': 3, 'recovering': 3, 'overcame': 3, 'battling': 3, 'lavish': 3, 'Mankowski': 3, 'congratulated': 3, "Bill's": 3, 'Reid': 3, '5-1': 3, 'Len': 3, 'sow': 3, "Angeles'": 3, 'Wrigley': 3, 'Polo': 3, 'Alsop': 3, 'Met': 3, 'Sims': 3, 'uncles': 3, 'Tennis': 3, 'dervishes': 3, 'Damascus': 3, "Geraghty's": 3, 'bows': 3, 'Clinton': 3, 'Maureen': 3, 'Lyon': 3, 'Drury': 3, 'Handsome': 3, 'low-down': 3, 'Jude': 3, 'staging': 3, 'underprivileged': 3, 'Lover': 3, 'Brain': 3, 'showman': 3, 'struggles': 3, 'guttural': 3, 'nightly': 3, 'Bowman': 3, "Officers'": 3, 'precede': 3, 'Bldg.': 3, 'Glass': 3, 'cheery': 3, 'gray-haired': 3, 'mid-June': 3, 'summertime': 3, 'Tucson': 3, 'boasting': 3, 'vacationing': 3, 'carpeted': 3, 'brink': 3, '$14': 3, 'brocade': 3, 'bridegroom': 3, 'officiated': 3, 'Shreveport': 3, 'organdy': 3, 'neckline': 3, 'accented': 3, 'Hartford': 3, 'Conn.': 3, 'pearl': 3, 'orchids': 3, 'Cedric': 3, 'Beat': 3, 'Cohen': 3, 'Brothers': 3, 'hostesses': 3, 'controllers': 3, 'Spurdle': 3, 'Moody': 3, 'Ethel': 3, 'commentator': 3, 'Hole': 3, 'Clifton': 3, 'Marsicano': 3, 'Blumberg': 3, 'Dusseldorf': 3, 'Vieth': 3, 'Wellesley': 3, 'debutante': 3, 'Vickery': 3, 'Eustis': 3, 'ablaze': 3, 'tiers': 3, 'slipper': 3, 'beads': 3, 'Streets': 3, '900': 3, 'bandit': 3, '2100': 3, 'one-room': 3, 'Doctors': 3, 'barber': 3, 'Equipment': 3, 'jurist': 3, 'Somerset': 3, 'seekers': 3, 'View': 3, 'Lonsdale': 3, 'candid': 3, 'anti-submarine': 3, 'Krogers': 3, 'Lola': 3, 'sorely': 3, 'magistrate': 3, 'Bailey': 3, 'naturalized': 3, '1950s': 3, 'Fourteen': 3, 'undersea': 3, 'Westinghouse': 3, 'destroyers': 3, 'reputedly': 3, 'detector': 3, 'Range': 3, 'Designs': 3, 'Oddly': 3, 'rivalries': 3, 'grievances': 3, 'compensations': 3, 'Tree': 3, 'medal': 3, 'Otis': 3, 'Jeremiah': 3, '$40': 3, 'supervisor': 3, 'Stratton': 3, 'slaying': 3, 'bludgeon': 3, 'vindicated': 3, '54': 3, 'retracted': 3, 'Cash': 3, "Pohl's": 3, 'bottled': 3, 'Mound': 3, "grandmother's": 3, 'Vicky': 3, 'Dennis': 3, '$400': 3, 'canvass': 3, '$25': 3, 'Returning': 3, 'Winthrop': 3, 'Heavy': 3, '60,000': 3, 'McNair': 3, 'executions': 3, 'roundup': 3, 'jails': 3, 'roadblock': 3, 'irrespective': 3, 'stand-ins': 3, 'Greenville': 3, 'Crawford': 3, 'melee': 3, 'resisting': 3, 'eradication': 3, 'Blasingame': 3, '$17,000': 3, 'adapting': 3, 'Peck': 3, 'robberies': 3, 'Schuyler': 3, 'Bess': 3, 'entertainers': 3, 'Spice-Nice': 3, 'counseled': 3, 'spices': 3, 'Bond': 3, 'Karen': 3, 'Carlson': 3, 'horsemanship': 3, 'clown': 3, 'Attendance': 3, 'twirler': 3, 'hog': 3, 'showmanship': 3, 'Sherwood': 3, 'Pezza': 3, 'Giorgio': 3, 'ransacked': 3, 'jewels': 3, '$450': 3, 'earrings': 3, '$900': 3, '$125': 3, '$85': 3, 'jewelry': 3, 'Smithfield': 3, 'Vernava': 3, 'Maple': 3, 'Fruit': 3, 'damages': 3, '83': 3, 'lieutenants': 3, "fund's": 3, 'quota': 3, 'Parrillo': 3, 'Sorrentino': 3, 'raft': 3, 'perjury': 3, 'Ku': 3, 'Klux': 3, 'Klan': 3, '59': 3, 'excused': 3, 'lenient': 3, 'NYU': 3, 'Hester': 3, 'endangering': 3, 'rodents': 3, 'seashore': 3, 'inviolate': 3, 'Seventeen': 3, 'V-1': 3, 'Missiles': 3, 'Sunnyvale': 3, '420': 3, 'valve': 3, 'Lockheed': 3, 'world-famous': 3, 'Leading': 3, "janitors'": 3, 'chiefs': 3, 'Gus': 3, 'Monk': 3, 'hoodlum': 3, 'Arger': 3, 'pier': 3, 'connect': 3, 'janitors': 3, "workers'": 3, 'repaid': 3, 'detonation': 3, 'Curtis': 3, 'lucrative': 3, 'Cable': 3, 'underwriters': 3, 'price-earnings': 3, 'driers': 3, '1899': 3, 'Gordin': 3, 'harvesting': 3, 'saws': 3, 'Buick': 3, 'Chrysler': 3, 'Mercury': 3, 'Gerald': 3, 'Edna': 3, 'Sharon': 3, 'Sprinkel': 3, 'Trust': 3, 'Investment': 3, 'Draper': 3, 'refuted': 3, 'abortive': 3, 'tighten': 3, 'dipped': 3, 'Marketing': 3, 'unconventional': 3, '1970': 3, 'marketed': 3, 'dares': 3, 'Due': 3, '1986': 3, 'Chemical': 3, '2-1/2': 3, 'Diversified': 3, 'Answer': 3, 'custodian': 3, 'Fundamental': 3, 'programmed': 3, 'shareholders': 3, 'queries': 3, 'Perlman': 3, 'Bad': 3, 'Consumer': 3, 'pickers': 3, 'competitor': 3, 'Paradoxically': 3, 'slash': 3, 'Fields': 3, '14%': 3, 'Keeler': 3, 'Harvester': 3, 'lag': 3, 'haggling': 3, "Dealers'": 3, 'stepped-up': 3, 'shortages': 3, 'Motor': 3, 'marketings': 3, 'mid-September': 3, 'mined': 3, 'Requests': 3, 'stemmed': 3, 'commenting': 3, 'railing': 3, 'spouse': 3, 'pitfall': 3, 'discriminatory': 3, 'non-profit': 3, 'personification': 3, 'revolutionized': 3, 'ebony': 3, 'creations': 3, 'postgraduate': 3, 'Auntie': 3, 'Associations': 3, 'wrangler': 3, 'snacks': 3, 'stomachs': 3, 'pizza': 3, 'shiny': 3, 'Tibetan': 3, 'correlated': 3, 'Studio': 3, 'avoids': 3, 'Philippine': 3, 'decorating': 3, 'acacia': 3, 'poster': 3, 'walnut': 3, 'Saledo': 3, 'dignitaries': 3, 'Mmes': 3, 'McKee': 3, 'cookie': 3, 'Reese': 3, 'Hilton': 3, 'finals': 3, 'Clara': 3, 'yeast': 3, 'Messrs.': 3, 'Ludwig': 3, 'originating': 3, 'Giving': 3, 'Gloriana': 3, 'Advance': 3, 'updated': 3, 'Coopers': 3, 'Gregg': 3, 'Arden': 3, 'Newcomers': 3, 'socket': 3, 'inverted': 3, 'Pulling': 3, 'suspend': 3, 'fixture': 3, 'decorators': 3, 'antiques': 3, 'lurked': 3, 'utilitarian': 3, 'versatile': 3, 'nightclubs': 3, 'chalk': 3, 'Lounge': 3, 'Judson': 3, 'smoother': 3, 'rapport': 3, 'specialize': 3, 'chops': 3, 'Mackey': 3, 'peppery': 3, 'Newfoundland': 3, 'ballets': 3, 'Plant': 3, 'acquaint': 3, 'doorstep': 3, 'four-hour': 3, 'Abolition': 3, 'bedtime': 3, 'Lutheran': 3, 'Henderson': 3, 'Marriage': 3, 'headmaster': 3, 'Cecilia': 3, 'Leningrad': 3, 'incomparably': 3, 'choreography': 3, 'undistinguished': 3, 'assemblage': 3, 'enchantment': 3, 'skip': 3, 'crowning': 3, 'impoverished': 3, 'Goldwater': 3, 'Hit': 3, 'Inna': 3, 'Lilac': 3, 'muted': 3, 'solos': 3, 'Players': 3, 'sponsoring': 3, 'off-duty': 3, 'Toys': 3, 'charmed': 3, 'billed': 3, 'three-hour': 3, 'sadism': 3, 'villa': 3, 'pall': 3, 'enthralling': 3, 'Monthly': 3, 'USSR': 3, "Francisco's": 3, 'gulped': 3, 'gloomily': 3, 'yesteryear': 3, 'doormen': 3, 'Dollar': 3, 'snubbed': 3, 'sofas': 3, 'Andover': 3, 'unveiled': 3, '1792': 3, 'mantel': 3, 'Pfohl': 3, 'white-clad': 3, 'Handicapped': 3, 'lemonade': 3, "Gallery's": 3, 'Madonna': 3, 'Monet': 3, 'impressionist': 3, 'rotunda': 3, 'Masons': 3, '2:30': 3, 'materialize': 3, 'deterioration': 3, 'inroads': 3, 'inauguration': 3, 'awakening': 3, 'inflexible': 3, 'Developments': 3, 'three-man': 3, 'dampened': 3, 'dangerously': 3, "West's": 3, 'impunity': 3, 'Vietnam': 3, 'cocky': 3, '44-year-old': 3, 'adversaries': 3, 'disunity': 3, 'retrospect': 3, 'Official': 3, 'goaded': 3, 'staffed': 3, 'collegiate': 3, 'outsider': 3, 'citizenship': 3, 'loath': 3, 'gamble': 3, 'idealism': 3, 'envision': 3, 'jurisdictional': 3, 'squabbles': 3, 'footing': 3, 'undertakes': 3, 'overtime': 3, 'allocate': 3, 'decree': 3, 'Capitalism': 3, 'Taft-Hartley': 3, 'organizers': 3, 'subsidy': 3, 'steamship': 3, 'alleging': 3, 'Herter': 3, 'Dictator': 3, 'huddle': 3, 'swarm': 3, 'appeasement': 3, "war's": 3, 'unspoken': 3, 'choppy': 3, 'segregationist': 3, 'pretext': 3, 'electors': 3, 'unheard': 3, 'reprisal': 3, 'huddling': 3, 'thereupon': 3, 'oust': 3, 'Cannon': 3, "Speaker's": 3, 'Committees': 3, 'maverick': 3, 'arenas': 3, 'loomed': 3, 'specter': 3, 'truncated': 3, 'liberal-conservative': 3, 'wide-ranging': 3, 'Hubert': 3, "Massachusetts'": 3, 'filibuster': 3, "Mexico's": 3, 'ante': 3, 'Privately': 3, 'presidency': 3, 'staunchest': 3, 'agonizing': 3, 'graciously': 3, 'overtake': 3, 'erratic': 3, 'meteorological': 3, 'winnings': 3, 'threesome': 3, 'golfers': 3, 'pars': 3, '2nd': 3, 'grimace': 3, 'boldness': 3, 'axiomatic': 3, 'vehemence': 3, '8th': 3, 'sublime': 3, 'shrinking': 3, 'Experts': 3, '1932': 3, 'understandably': 3, 'overdeveloped': 3, 'opus': 3, 'Tropic': 3, 'trait': 3, 'Reading': 3, 'Play': 3, 'sportswriter': 3, 'left-handed': 3, 'swings': 3, 'conspired': 3, 'winged': 3, "capital's": 3, 'Inaugural': 3, 'Loper': 3, 'ensembles': 3, 'stitch': 3, 'hitched': 3, 'rein': 3, '93': 3, 'sportsman': 3, 'rallies': 3, 'Zealand': 3, 'ruddy': 3, 'frustrating': 3, 'Chaplin': 3, 'grandiose': 3, "Europe's": 3, 'ardor': 3, 'kindergarten': 3, 'plaintiffs': 3, 'Midway': 3, 'Beadle': 3, 'heredity': 3, 'Cover': 3, 'excite': 3, '1885': 3, 'explorers': 3, '13.5': 3, 'colonialism': 3, 'imagines': 3, 'Brussels': 3, 'beneficiaries': 3, 'oversimplification': 3, 'detested': 3, 'splitting': 3, 'Leopoldville': 3, 'Twenty-four': 3, 'mutiny': 3, 'looting': 3, 'nonwhite': 3, 'Tunisia': 3, 'initiating': 3, 'dispatching': 3, 'redoubled': 3, 'kidnaped': 3, "Lumumba's": 3, 'Bizerte': 3, 'Tunisian': 3, 'irreconcilable': 3, "China's": 3, 'diminutive': 3, 'Chen': 3, 'woo': 3, 'Guatemala': 3, 'Boeing': 3, 'Airlines': 3, 'Flight': 3, 'Salvador': 3, 'Sacramento': 3, 'hostages': 3, 'Gilman': 3, 'Immigration': 3, 'submachine': 3, 'Tension': 3, 'ultimatum': 3, 'inboard': 3, 'transporting': 3, 'precedence': 3, 'Idaho': 3, 'citizenry': 3, 'lags': 3, '121': 3, "engineers'": 3, 'low-wage': 3, 'curbing': 3, 'Pact': 3, 'Portuguese': 3, 'quotas': 3, 'stabilization': 3, 'shrinkage': 3, 'clientele': 3, 'bounty': 3, 'foresee': 3, 'Hempstead': 3, 'Sample': 3, 'Substance': 3, 'inadequacy': 3, 'shuffle': 3, '$30,000': 3, 'aggressions': 3, 'Ciudad': 3, 'assassination': 3, 'Venezuela': 3, 'professedly': 3, 'tarnished': 3, 'censure': 3, 'Parkway': 3, 'NCTA': 3, 'launching': 3, 'parkway': 3, 'acquiesce': 3, 'comprising': 3, 'zones': 3, 'gratuitous': 3, 'Remembering': 3, 'indignities': 3, 'grazing': 3, 'cinema': 3, 'folds': 3, 'Communications': 3, 'barring': 3, 'lax': 3, 'mercilessly': 3, 'issuing': 3, 'savored': 3, 'unreasonable': 3, 'awaits': 3, 'flamboyant': 3, 'educating': 3, 'Sound': 3, 'pillage': 3, 'telegraphers': 3, 'covenant': 3, 'seminar': 3, 'bayed': 3, 'admirer': 3, 'gunman': 3, 'millennium': 3, 'protecting': 3, 'half-hearted': 3, 'Pass': 3, 'minded': 3, 'precariously': 3, "Nations'": 3, 'courageously': 3, 'outbreaks': 3, 'Monument': 3, "Miami's": 3, 'bickering': 3, 'long-awaited': 3, 'Graves': 3, 'Metro': 3, '$500,000': 3, 'shortest': 3, 'Inevitably': 3, 'aging': 3, 'Erhart': 3, 'reaffirmed': 3, 'endearing': 3, 'joiner': 3, 'Mosk': 3, 'assail': 3, 'accusations': 3, 'Falling': 3, "Einstein's": 3, 'offshore': 3, 'hectic': 3, "California's": 3, 'dismaying': 3, 'preamble': 3, 'speedily': 3, 'unilateral': 3, 'OAS': 3, 'conjecture': 3, 'growers': 3, 'basing': 3, 'pioneered': 3, 'warns': 3, 'Chatham': 3, 'Anybody': 3, 'confirms': 3, 'reinforces': 3, "region's": 3, 'Granted': 3, 'outdated': 3, "Batista's": 3, 'Fellowships': 3, 'blithely': 3, "Truman's": 3, 'Economy': 3, 'fares': 3, '75,000': 3, 'bolster': 3, 'mobilization': 3, 'Mekong': 3, 'recede': 3, 'monsoon': 3, 'instructional': 3, 'Lyndon': 3, 'subservient': 3, 'leases': 3, 'watchdog': 3, 'investigative': 3, 'borough': 3, 'pocketbook': 3, 'freedoms': 3, 'ten-year': 3, 'Twenty-second': 3, 'speculation': 3, 'groundwork': 3, "Conant's": 3, 'reformer': 3, 'labels': 3, 'broth': 3, 'rationing': 3, 'tomatoes': 3, 'trespasses': 3, 'Till': 3, 'Luke': 3, 'sobering': 3, 'Garcia': 3, 'cynics': 3, 'rector': 3, 'parishioners': 3, 'bruise': 3, 'Pod': 3, 'rippling': 3, 'broad-brimmed': 3, 'breath-taking': 3, 'bidders': 3, 'cocoon': 3, 'purring': 3, 'resorting': 3, 'realizes': 3, 'pokes': 3, 'invading': 3, 'unhesitatingly': 3, 'soggy': 3, 'Failing': 3, 'grabs': 3, '98': 3, 'Triandos': 3, 'well-defined': 3, 'defect': 3, 'layman': 3, 'disinterest': 3, 'pushes': 3, 'parenthood': 3, 'Seen': 3, 'Possibly': 3, 'floral': 3, 'upholstery': 3, 'backyards': 3, 'nominally': 3, 'weakest': 3, 'predicts': 3, 'Significantly': 3, 'Evidently': 3, 'enlargement': 3, 'munitions': 3, 'crush': 3, 'non-military': 3, 'weeklies': 3, '1897': 3, 'unsigned': 3, 'Nile': 3, 'Fanny': 3, 'Girls': 3, 'bevy': 3, 'Amsterdam': 3, 'Billie': 3, 'doorknob': 3, "prisoners'": 3, 'catering': 3, 'loyalties': 3, 'Wagon': 3, 'grandson': 3, 'Kind': 3, 'Dwyer': 3, 'autograph': 3, '1611': 3, 'translations': 3, 'dove': 3, 'dissuade': 3, 'alight': 3, 'spelling': 3, 'blest': 3, 'novice': 3, 'Revelation': 3, 'copied': 3, 'invest': 3, 'unlined': 3, 'barest': 3, 'pastel': 3, 'straws': 3, 'plugged': 3, 'gums': 3, 'pores': 3, 'Edison': 3, 'Sophocles': 3, 'eclectic': 3, 'Decca': 3, 'modestly': 3, 'Volumes': 3, 'playwright': 3, "Sandburg's": 3, 'Newest': 3, 'Wheelock': 3, 'upsets': 3, 'marksmanship': 3, 'unmoved': 3, 'clings': 3, 'motivates': 3, 'misbehavior': 3, 'snatches': 3, 'homecoming': 3, 'perpetually': 3, 'ebullient': 3, 'lilting': 3, 'aroma': 3, 'woodsmoke': 3, 'tethered': 3, 'blur': 3, 'strolling': 3, 'eyeglasses': 3, 'churning': 3, 'Errors': 3, 'underscored': 3, 'transact': 3, 'Forum': 3, 'aggravated': 3, 'adage': 3, 'oaths': 3, 'debating': 3, 'praying': 3, "community's": 3, 'absorbing': 3, 'Gabrielle': 3, 'Whom': 3, 'Miranda': 3, 'Knife': 3, 'Pleasant': 3, 'snowstorm': 3, 'service-connected': 3, 'fosters': 3, 'Barry': 3, 'McNamara': 3, 'uppermost': 3, 'instruct': 3, 'polling': 3, 'unskilled': 3, '1.1': 3, 'God-given': 3, 'yoke': 3, 'freeholders': 3, 'hasten': 3, 'booths': 3, 'fossilized': 3, 'spores': 3, 'Working': 3, 'leash': 3, 'roaming': 3, 'Thirties': 3, 'resurgence': 3, 'militarism': 3, 'devastated': 3, 'disarmed': 3, 'neutrality': 3, 'terrorized': 3, 'Woodside': 3, 'donate': 3, 'crafts': 3, 'Woodward': 3, 'patrolling': 3, 'ordinances': 3, 'Minutes': 3, 'apathy': 3, 'gentility': 3, 'dropouts': 3, 'harmful': 3, 'arsenal': 3, 'intimidated': 3, 'tunnels': 3, 'delinquents': 3, 'inflicting': 3, 'torture': 3, 'addicted': 3, 'corrupting': 3, 'predictions': 3, 'risky': 3, 'Strauss': 3, 'exacerbation': 3, 'inspire': 3, 'animosity': 3, 'compulsively': 3, 'strives': 3, 'emulate': 3, 'Whole': 3, 'arrivals': 3, 'Observer': 3, 'Lippmann': 3, 'Restoration': 3, 'deplores': 3, 'sanctity': 3, 'precedents': 3, 'connotations': 3, 'fetching': 3, 'Moloch': 3, 'slaughtered': 3, 'thousandth': 3, 'midsummer': 3, 'Hanging': 3, 'stasis': 3, 'happiest': 3, 'Nonetheless': 3, 'ornament': 3, 'sanity': 3, 'annum': 3, 'radioactivity': 3, 'poisoning': 3, 'detonated': 3, 'balloons': 3, 'bets': 3, 'indeterminate': 3, 'germ': 3, 'researcher': 3, 'downgraded': 3, 'herein': 3, 'resuming': 3, 'mid': 3, 'contaminated': 3, 'militarily': 3, 'Christendom': 3, 'purification': 3, 'Equally': 3, 'discouragement': 3, 'apologetic': 3, 'unbalanced': 3, 'apologies': 3, 'Moral': 3, 'Moslem': 3, 'Islamic': 3, 'generality': 3, 'tiniest': 3, 'pointedly': 3, 'itinerary': 3, 'redundant': 3, 'overtly': 3, 'galvanizing': 3, 'commune': 3, 'crystallization': 3, 'jelly': 3, 'shockingly': 3, 'reappears': 3, 'cartoon': 3, 'apartheid': 3, 'anti-French': 3, 'awkwardly': 3, 'Adjustment': 3, 'Honey': 3, 'musicals': 3, 'Mi': 3, 'Widow': 3, 'Moliere': 3, 'Casbah': 3, 'guitars': 3, 'Sesame': 3, 'sideways': 3, 'proffered': 3, 'Bristol': 3, 'Sol': 3, 'veils': 3, 'surname': 3, 'picnics': 3, 'lithe': 3, 'tormented': 3, 'unawareness': 3, "Schiele's": 3, 'Speed': 3, 'somber': 3, 'inhibitions': 3, 'rebelliously': 3, 'unabashed': 3, 'stringy': 3, 'contorted': 3, 'Marxist': 3, 'proletariat': 3, 'harping': 3, 'rents': 3, 'doctrinal': 3, 'averting': 3, 'Albania': 3, 'liar': 3, 'bully': 3, 'foggy': 3, 'DePugh': 3, 'camouflage': 3, 'garb': 3, 'sheriffs': 3, 'dummy': 3, 'tortuous': 3, 'jeep': 3, 'outpost': 3, 'encampment': 3, 'dearth': 3, 'ramifications': 3, 'Eric': 3, 'incorporation': 3, 'monstrosity': 3, 'Amendments': 3, 'many-sided': 3, 'telepathy': 3, 'honorably': 3, 'Duty': 3, 'Hessians': 3, 'Facing': 3, 'accretion': 3, 'defeating': 3, 'Mar.': 3, 'bothers': 3, 'powerless': 3, 'publish': 3, 'fifteen-minute': 3, "Young's": 3, "Lloyd's": 3, 'Neck': 3, 'autobiographical': 3, 'submits': 3, "Snow's": 3, "book's": 3, 'milder': 3, 'Lindemann': 3, 'Nonsense': 3, 'recitals': 3, 'cadenza': 3, 'incandescent': 3, 'Hendl': 3, 'sprawl': 3, 'orchestral': 3, 'howl': 3, 'budge': 3, 'Lena': 3, 'Everett': 3, 'Giovanni': 3, 'farce': 3, 'Hark': 3, 'lurking': 3, 'shenanigans': 3, 'stirs': 3, 'rustic': 3, 'manor': 3, 'wasteland': 3, 'embodies': 3, 'spaciousness': 3, 'Jerebohms': 3, 'Rolls-Royce': 3, 'flyer': 3, 'havoc': 3, 'callers': 3, "Kipling's": 3, 'quart': 3, 'sustenance': 3, 'illustrious': 3, 'Sancho': 3, 'Panza': 3, 'Cherkasov': 3, 'self-appointed': 3, 'roughness': 3, 'artistry': 3, 'Projects': 3, 'Dixieland': 3, 'blotted': 3, 'showcase': 3, 'musicianship': 3, 'trill': 3, 'bel': 3, 'canto': 3, 'Bellini': 3, 'Complete': 3, "London's": 3, 'cadre': 3, 'unrealistic': 3, 'intrigues': 3, 'vying': 3, 'conjugal': 3, 'felicity': 3, 'virtuoso': 3, 'poorest': 3, 'Defeat': 3, 'Viscount': 3, 'unending': 3, 'enlightening': 3, 'barges': 3, 'humanitarian': 3, 'Baroque': 3, 'madrigals': 3, 'waver': 3, 'accompaniments': 3, 'Dixon': 3, 'high-spirited': 3, 'Matunuck': 3, 'daisies': 3, 'cartoonist': 3, 'specialty': 3, 'fledgling': 3, 'Epitaph': 3, 'Creighton': 3, 'irritations': 3, 'Loesser': 3, 'sifted': 3, 'outdo': 3, 'voluminous': 3, 'suitably': 3, 'Pulitzer': 3, 'lance': 3, 'principals': 3, 'LaGuardia': 3, 'routines': 3, 'choreographic': 3, 'distraction': 3, 'impromptu': 3, 'gallantry': 3, 'Hardwick': 3, 'castles': 3, 'adorable': 3, 'well-meaning': 3, 'Royce': 3, 'Santayana': 3, 'fronting': 3, 'recriminations': 3, 'displace': 3, 'schoolboy': 3, 'comprises': 3, 'cunningly': 3, 'slumber': 3, 'vistas': 3, 'Drifts': 3, 'radio-TV': 3, 'Wings': 3, 'keenly': 3, 'sash': 3, 'unaffected': 3, 'self-confident': 3, 'relented': 3, 'foibles': 3, 'slicker': 3, 'allegory': 3, 'posing': 3, 'rats': 3, 'aggrieved': 3, "Kennan's": 3, 'Dexter': 3, 'inexperience': 3, 'purges': 3, 'Baltic': 3, 'F.D.R.': 3, 'warped': 3, 'subjugation': 3, 'silences': 3, 'resolute': 3, 'authorship': 3, 'Enright': 3, 'courting': 3, 'marries': 3, 'scraps': 3, 'matrimony': 3, 'whirl': 3, "afternoon's": 3, 'forego': 3, 'sounding': 3, 'ponderous': 3, 'cloying': 3, 'colorless': 3, 'salute': 3, 'sloppy': 3, 'villain': 3, 'consummate': 3, 'sonatas': 3, 'troupe': 3, 'Francaise': 3, 'LD': 3, 'brevity': 3, 'instrumentalists': 3, 'Giuseppe': 3, 'light-weight': 3, 'tiresome': 3, 'Fuller': 3, 'rationalist': 3, 'cleverness': 3, 'bawdy': 3, 'ditties': 3, 'orchestration': 3, 'Born': 3, 'Away': 3, 'underway': 3, 'fortunately': 3, 'throne': 3, 'Weather': 3, 'rewarded': 3, 'throng': 3, 'Blakey': 3, 'Vaughan': 3, 'Putting': 3, 'Shearing': 3, 'lullaby': 3, 'Pony': 3, 'Sonatas': 3, 'expansiveness': 3, 'shanty': 3, 'beckons': 3, 'instructive': 3, 'catalogues': 3, 'esthetics': 3, 'satirical': 3, 'idiosyncrasies': 3, 'diverting': 3, 'Marion': 3, 'Cliburn': 3, 'Nocturne': 3, 'Igor': 3, 'Spruce': 3, 'impudent': 3, 'Dorothy': 3, 'Married': 3, 'inventive': 3, 'earnestness': 3, 'melodious': 3, 'idioms': 3, '1643': 3, "Coward's": 3, 'persuasively': 3, 'crouching': 3, 'mystic': 3, 'geese': 3, 'recounts': 3, 'Mijbil': 3, 'compliment': 3, 'Iraq': 3, 'Mij': 3, 'nip': 3, 'marbles': 3, 'sharpening': 3, 'implicitly': 3, 'traveller': 3, 'insensitive': 3, 'attracts': 3, "play's": 3, 'excessively': 3, 'ludicrous': 3, 'dissimilar': 3, 'deluded': 3, 'benefactor': 3, 'meanness': 3, 'Gentleman': 3, 'agility': 3, 'toughs': 3, 'Artillery': 3, 'Ory': 3, 'Rag': 3, 'Toot': 3, 'Strings': 3, 'up-to-date': 3, 'Alfredo': 3, 'superfluous': 3, 'lurid': 3, 'unsympathetic': 3, 'Taras': 3, 'Ukrainian': 3, 'lusty': 3, 'madmen': 3, 'searches': 3, 'exquisite': 3, 'Nutcracker': 3, 'esthetic': 3, 'yearned': 3, 'day-to-day': 3, 'Making': 3, 'top-level': 3, 'eagerness': 3, 'cultivate': 3, 'celebrities': 3, 'stylist': 3, 'breathtaking': 3, 'inexorably': 3, 'intelligently': 3, 'advertisers': 3, 'upgrade': 3, 'half-dozen': 3, 'Broadcasting': 3, 'jockey': 3, 'hollering': 3, 'pigments': 3, 'bracing': 3, 'Traveling': 3, 'foraging': 3, 'Riefling': 3, '23rd': 3, 'fussy': 3, 'inwardly': 3, 'disarming': 3, 'unobtrusive': 3, "Bonn's": 3, 'shuddering': 3, 'compensatory': 3, 'tortoise': 3, 'Bondi': 3, 'functioned': 3, 'relativistic': 3, 'relativity': 3, 'thinly': 3, 'proton': 3, 'charge-excess': 3, 'gravitation': 3, 'rationally': 3, 'defensible': 3, 'cosmos': 3, 'trappings': 3, 'twilight': 3, 'messy': 3, 'Benedick': 3, 'umbrellas': 3, 'grieving': 3, 'downpour': 3, 'Elisabeth': 3, 'purest': 3, 'gasp': 3, 'highlights': 3, 'frills': 3, 'enthusiasts': 3, 'Skies': 3, 'addiction': 3, 'Sitwell': 3, 'savory': 3, 'transmit': 3, 'delights': 3, 'seacoast': 3, 'Palladio': 3, 'traceable': 3, 'friezes': 3, 'WBAI': 3, 'Yesterday': 3, 'Violence': 3, "society's": 3, 'aspiration': 3, 'wilt': 3, 'fulfilling': 3, 'keyed': 3, 'vermilion': 3, 'Frost': 3, '125': 3, 'Rockies': 3, 'maples': 3, "Virginia's": 3, 'Straits': 3, 'Color': 3, 'week-long': 3, 'Corn': 3, 'Centennial': 3, 'nozzles': 3, '3-1/2': 3, 'hurts': 3, 'Head': 3, 'depict': 3, 'Mist': 3, 'parades': 3, 'pageants': 3, 'devotees': 3, 'dissolving': 3, 'tasting': 3, 'loveliest': 3, 'steadier': 3, 'turbulence': 3, '1.8': 3, 'Dana': 3, 'playground': 3, 'Yacht': 3, 'launches': 3, '70%': 3, 'plush': 3, 'race-driver': 3, 'purposeful': 3, 'Remarque': 3, 'demure': 3, 'microcosm': 3, 'Freudian': 3, 'race-drivers': 3, 'mystics': 3, 'carping': 3, 'gluttons': 3, 'capsules': 3, '500,000': 3, 'digestive': 3, "Keys's": 3, "mothers'": 3, 'reddish': 3, 'bloated': 3, 'well-fed': 3, 'Principles': 3, 'caloric': 3, 'flagrant': 3, 'drinker': 3, 'Metrecal': 3, 'bile': 3, 'soluble': 3, 'intima': 3, 'narrows': 3, 'clot': 3, 'Netherlands': 3, "Sweden's": 3, 'hydrogens': 3, 'exerts': 3, 'extraneous': 3, 'excesses': 3, 'ominously': 3, 'virulence': 3, 'unavoidably': 3, 'Lucifer': 3, 'mid-twentieth': 3, 'absolutes': 3, 'wickedness': 3, 'mythology': 3, 'kerygma': 3, 'admittedly': 3, 'secularized': 3, 'estranged': 3, 'communicated': 3, 'profundity': 3, 'Corinthians': 3, 'accomplishing': 3, 'Scripture': 3, 'providence': 3, 'depriving': 3, 'follower': 3, 'self-destruction': 3, 'unambiguous': 3, 'maturation': 3, 'self-consciously': 3, 'Buri': 3, 'biblical': 3, '1864': 3, 'bonfire': 3, '800,000': 3, '1850': 3, 'churchgoing': 3, 'cathedrals': 3, 'lapsed': 3, 'nationalistic': 3, 'laity': 3, 'superficially': 3, 'universality': 3, 'Origen': 3, 'interprets': 3, 'Historical': 3, 'arrogance': 3, "devil's": 3, 'potentiality': 3, 'parallelism': 3, 'Wherefore': 3, 'forfeit': 3, 'conformed': 3, 'dissolution': 3, 'symbolizes': 3, 'divinely': 3, 'Gannett': 3, 'persecuted': 3, 'diffusing': 3, 'Orthodoxy': 3, 'insults': 3, 'assurances': 3, 'liberality': 3, 'abject': 3, 'lick': 3, 'veneration': 3, 'brittle': 3, 'Garrison': 3, 'abolitionists': 3, 'phrased': 3, 'exquisitely': 3, 'institutionalized': 3, 'Talk': 3, 'malaria': 3, '1848': 3, 'audacity': 3, 'geology': 3, 'reverent': 3, 'doubting': 3, 'assuredly': 3, 'appetites': 3, 'likeness': 3, 'precepts': 3, 'dismissing': 3, 'vested': 3, 'beheld': 3, 'ministering': 3, 'Psalm': 3, '12%': 3, 'aspirin': 3, 'advertise': 3, 'predicament': 3, 'conquered': 3, 'famine': 3, 'nakedness': 3, 'stronghold': 3, 'behold': 3, 'hath': 3, 'ruler': 3, 'divination': 3, 'Confucian': 3, 'proscription': 3, 'functionally': 3, 'equating': 3, 'Centrality': 3, 'dynastic': 3, 'Colors': 3, 'Notes': 3, 'postulate': 3, 'Provinces': 3, 'Yellow': 3, 'Evangelism': 3, 'List': 3, 'packet': 3, 'memorized': 3, 'painless': 3, 'introductory': 3, 'face-to-face': 3, 'Lead': 3, 'alerted': 3, 'Opportunities': 3, 'forcibly': 3, 'instrumentally': 3, 'creatively': 3, 'thwart': 3, 'separates': 3, 'compensate': 3, 'aflame': 3, 'indigenous': 3, 'justifications': 3, 'Hindu': 3, 'epitomized': 3, 'Ironically': 3, 'expressly': 3, 'Muslim': 3, 'Islam': 3, 'penniless': 3, 'delineation': 3, 'objectively': 3, 'problematic': 3, 'pacifism': 3, 'Compared': 3, 'anticipations': 3, 'Eighty-Four': 3, 'pax-ordo': 3, 'Heavenly': 3, 'uselessly': 3, 'regaining': 3, 'proviso': 3, 'immanent': 3, 'Estate': 3, 'Boards': 3, 'Wesleyan': 3, 'nationality': 3, 'wanton': 3, 'repudiated': 3, 'presumes': 3, 'infinitely': 3, 'octillion': 3, 'oceans': 3, 'farthest': 3, 'predetermined': 3, 'atheists': 3, 'orbiting': 3, 'unobtainable': 3, 'subscribed': 3, 'drunkenness': 3, 'labour': 3, 'Theological': 3, '1893': 3, 'pilgrim': 3, 'flaw': 3, 'alabaster': 3, 'Melville': 3, 'warranted': 3, 'kindred': 3, '1789': 3, 'devout': 3, 'cowardly': 3, 'emphatically': 3, 'Finney': 3, 'Weld': 3, 'insufficiently': 3, 'freedmen': 3, 'Proper': 3, 'swaying': 3, 'outrages': 3, 'provoke': 3, 'obeying': 3, 'comprehending': 3, 'pantheon': 3, 'wielded': 3, 'Confucianism': 3, 'Taoist': 3, 'metaphysic': 3, 'texts': 3, 'self-reliant': 3, 'Eternal': 3, 'magically': 3, 'seclusion': 3, 'credulity': 3, 'emitted': 3, 'Shan': 3, 'therewith': 3, 'Satan': 3, 'reborn': 3, 'Nicodemus': 3, 'zealously': 3, 'repent': 3, "soul's": 3, 'curses': 3, 'Peale': 3, 'leaflets': 3, 'LeSourd': 3, 'Hundreds': 3, 'Serious': 3, 'thump': 3, 'whir': 3, 'crucifix': 3, "guy's": 3, 'unkind': 3, 'Courcy': 3, "10''": 3, 'Muscle': 3, 'Builder': 3, 'pecs': 3, 'frontal': 3, 'Super-Sets': 3, 'flare': 3, 'workouts': 3, 'discovers': 3, 'Lunge': 3, 'unforgettable': 3, 'Squatting': 3, 'Stands': 3, 'wobble': 3, 'velvety': 3, 'adequacy': 3, 'ventilation': 3, 'sawdust': 3, 'frost': 3, '4-inch': 3, 'Pick': 3, 'tug': 3, 'stub': 3, 'Treat': 3, 'solicitude': 3, 'healthful': 3, 'Bartlett': 3, 'bland': 3, 'delays': 3, 'ripening': 3, 'nutritional': 3, 'Calcium': 3, 'pulsating': 3, 'clutches': 3, 'merciless': 3, 'defenseless': 3, 'ICBM': 3, 'imprecisely': 3, 'spacecraft': 3, 'Minuteman': 3, 'thrust-to-weight': 3, 'dispersion': 3, 'SAMOS': 3, 'Trout': 3, 'renditions': 3, "Angel's": 3, "student's": 3, 'impetuous': 3, "Curzon's": 3, 'expertise': 3, 'indistinguishable': 3, 'reproduces': 3, 'Spirito': 3, 'tolerable': 3, 'ceases': 3, 'Dogs': 3, 'Kennel': 3, 'Betty': 3, 'intermediates': 3, 'upsurge': 3, 'thirty-two': 3, 'Providing': 3, 'sailboats': 3, 'Arriving': 3, 'Boat': 3, 'boatman': 3, 'owning': 3, 'Terms': 3, 'aloft': 3, 'Engine': 3, 'sparked': 3, 'marina': 3, 'coined': 3, 'cater': 3, '4,000': 3, 'snag': 3, 'prototype': 3, "1''": 3, 'horizontally': 3, 'Position': 3, 'reassemble': 3, 'roundhead': 3, 'Scribe': 3, 'rodding': 3, 'rodder': 3, 'decimal': 3, 'blanks': 3, 'subtracting': 3, 'pistons': 3, 'inflated': 3, '168': 3, 'Debonnie': 3, 'Prompt': 3, 'Laguerre': 3, 'Monel': 3, 'conformation': 3, '2-year-olds': 3, "Star's": 3, 'curbs': 3, 'playful': 3, '2:33': 3, 'pacers': 3, 'Frisco': 3, 'Ash': 3, 'Rodney': 3, 'Brief': 3, 'Custom': 3, 'Worthy': 3, '2:30.3-:36': 3, 'rainfall': 3, '2:01.1': 3, 'Abbe': 3, 'shooter': 3, 'handgun': 3, 'over/under': 3, 'defunct': 3, 'jacketed': 3, 'intriguing': 3, 'rim-fires': 3, 'calibers': 3, 'bolt-action': 3, 'Previously': 3, 'well-made': 3, 'Kodiak': 3, 'autoloader': 3, 'Targo': 3, 'lever-action': 3, '12-gauge': 3, 'Boulder': 3, 'contrived': 3, 'pickled': 3, 'bulbs': 3, 'westerly': 3, "Vernon's": 3, 'standby': 3, "1890's": 3, "Antoine's": 3, 'splash': 3, 'herbs': 3, 'kedgeree': 3, 'cupful': 3, 'tablespoonful': 3, 'omelet': 3, 'Arbogast': 3, 'swarmed': 3, 'maroon': 3, 'Promptly': 3, 'lounged': 3, 'denouncing': 3, 'stables': 3, 'esteemed': 3, 'saucepan': 3, 'mashed': 3, 'Worcestershire': 3, 'catsup': 3, 'simmer': 3, 'Champlain': 3, 'Photos': 3, 'spectacles': 3, 'Vicksburg': 3, 'wrought': 3, 'Quarter': 3, 'Chattanooga': 3, 'Charlottesville': 3, 'Monticello': 3, 'ante-bellum': 3, 'tripod': 3, 'Singing': 3, 'Wyatt': 3, 'autos': 3, 'world-renowned': 3, 'Fishing': 3, 'Derby': 3, 'Yosemite': 3, 'landmark': 3, 'spires': 3, 'Constantinople': 3, 'Ottoman': 3, 'Marmara': 3, 'Easy': 3, 'empties': 3, 'Passing': 3, 'stubby': 3, 'sultans': 3, 'chariot': 3, "Kaiser's": 3, 'octagonal': 3, 'Sultan': 3, 'Ahmet': 3, 'serpents': 3, 'arcade': 3, 'prisons': 3, 'veered': 3, 'chimneys': 3, 'utensils': 3, 'bowls': 3, 'Made': 3, 'barbecues': 3, 'coolers': 3, 'mopping': 3, 'spiced': 3, 'feast': 3, 'styled': 3, "neighbor's": 3, 'teaspoons': 3, 'Combine': 3, 'chopped': 3, 'carne': 3, 'Coney': 3, 'chop': 3, 'Brush': 3, 'Instructions': 3, 'Materials': 3, 'Pressing': 3, 'grooves': 3, 'yellow-green': 3, 'blue-green': 3, '05': 3, 'personalized': 3, 'circumference': 3, 'overlapped': 3, 'toner': 3, 'turquoise': 3, 'beveled': 3, 'overlapping': 3, 'shakers': 3, 'armhole': 3, 'backstitch': 3, 'slanted': 3, 'amuse': 3, 'hauling': 3, 'Stronghold': 3, 'resorcinol': 3, 'Draw': 3, 'half-inch': 3, 'butted': 3, 'three-inch-wide': 3, 'planer': 3, 'batten': 3, 'flaring': 3, 'padding': 3, 'Type': 3, 'modular': 3, 'intermittent': 3, 'fixtures': 3, 'weatherproof': 3, 'thicknesses': 3, 'ripping': 3, 'multitude': 3, 'threaded': 3, 'oiled': 3, 'clockwise': 3, 'interchangeable': 3, 'spurs': 3, 'sever': 3, 'clamping': 3, '1791': 3, 'Esquire': 3, 'patented': 3, '113': 3, 'oration': 3, '1882': 3, 'Approved': 3, 'Infantry': 3, 'swarming': 3, 'Harpers': 3, 'Chenoweth': 3, '1863': 3, 'centennial': 3, 'diluting': 3, 'viewpoints': 3, 'shimmering': 3, 'restful': 3, 'sharks': 3, 'etiquette': 3, 'collusion': 3, 'telephoning': 3, 'splashing': 3, 'undressing': 3, 'Preserving': 3, 'fenced': 3, 'rots': 3, 'divers': 3, 'scrubbing': 3, 'grate': 3, 'FHA': 3, 'inclusion': 3, 'concurs': 3, 'Heart': 3, 'redecorating': 3, 'fatigued': 3, 'Separate': 3, 'blinds': 3, 'drier': 3, 'Keeping': 3, 'orienting': 3, 'ownerships': 3, 'watershed': 3, 'unrestricted': 3, 'migratory': 3, 'coastal': 3, 'Topography': 3, 'elevation': 3, 'topography': 3, 'irrigation': 3, 'personifies': 3, 'social-economic': 3, 'post-World': 3, 'Koussevitzky': 3, 'foyer': 3, 'Oranges': 3, 'symphonies': 3, 'salons': 3, 'new-found': 3, 'Fascism': 3, 'cringing': 3, 'Socialism': 3, 'forged': 3, 'recapture': 3, 'proclamations': 3, 'circumspect': 3, 'wove': 3, 'kinship': 3, 'distillation': 3, 'Batavia': 3, 'watercolors': 3, 'composing': 3, 'freehand': 3, 'mop': 3, 'bristle': 3, "Payne's": 3, 'silhouetted': 3, 'half-closed': 3, 'niche': 3, 'Gilbert': 3, 'Watercolor': 3, 'tumbling': 3, 'infants': 3, 'bulging': 3, 'Arm': 3, 'Arch': 3, 'Improvement': 3, 'betterment': 3, 'perfecting': 3, 'Ventilation': 3, 'affectionately': 3, 'hitherto': 3, 'aorta': 3, 'dimensioning': 3, 'undisturbed': 3, 'ventricle': 3, 'Battery': 3, 'calibrated': 3, 'gratifying': 3, 'Based': 3, 'diagnose': 3, 'millimeter': 3, 'apothecary': 3, 'revel': 3, 'lecturing': 3, '1797': 3, 'Bavaria': 3, 'stormed': 3, 'francs': 3, '1803': 3, 'ecliptic': 3, '1820': 3, 'Manthey': 3, 'Lion': 3, 'Pharmacy': 3, 'magnet': 3, 'trough': 3, 'veterinary': 3, 'Increases': 3, 'abscesses': 3, 'pneumonia': 3, 'premix': 3, '0.3': 3, 'minimizing': 3, '1.0': 3, 'diethylstilbestrol': 3, 'Cows': 3, 'fermentation': 3, 'foamy': 3, 'phenothiazine': 3, 'Continuous': 3, 'acetonemia': 3, 'calving': 3, 'conveyor': 3, 'efficiencies': 3, 'price-consciousness': 3, 'distributors': 3, 'Average': 3, 'assertions': 3, 'scrutinizing': 3, 'accentuated': 3, 'tuned': 3, 'outdistanced': 3, 'certification': 3, 'Dictionary': 3, 'supervising': 3, 'exhibitions': 3, 'dissection': 3, 'scrutinized': 3, 'initials': 3, 'rushes': 3, 'irresponsibility': 3, 'policing': 3, 'taxis': 3, 'shutdown': 3, 'shutdowns': 3, 'on-the-job': 3, 'beware': 3, 'absences': 3, 'inconvenience': 3, 'widest': 3, 'ever-expanding': 3, 'sown': 3, '1,500': 3, 'Personnel': 3, 'Jennings': 3, 'benefited': 3, 'camper': 3, 'bedding': 3, 'guesses': 3, '$7': 3, 'disillusionment': 3, 'Consulting': 3, 'Senior': 3, 'non-supervisory': 3, 'high-level': 3, 'research-staff': 3, 'Sixty': 3, 'township': 3, 'welded': 3, 'leaks': 3, 'breakdowns': 3, 'Evidence': 3, 'Sign': 3, 'Plastics': 3, 'built-in': 3, 'tailor-made': 3, 'Dept.': 3, 'laminate': 3, 'incorporates': 3, 'translucent': 3, 'sec.': 3, 'studs': 3, 'asphalt': 3, 'strapping': 3, '6%': 3, 'manhours': 3, 'bricklaying': 3, 'Structural': 3, 'bricklayers': 3, '156': 3, 'anachronism': 3, 'gratefully': 3, 'pick-up': 3, 'Documents': 3, 'travelling': 3, 'Romeo': 3, 'luxuries': 3, 'infinitesimal': 3, 'kilometers': 3, 'lured': 3, 'Primary': 3, 'Eskimo': 3, 'attuned': 3, 'Language': 3, 'socio-economic': 3, 'psychiatry': 3, 'cues': 3, 'typed': 3, 'transcribed': 3, 'giveaways': 3, 'congruent': 3, 'Interestingly': 3, 'Adriatic': 3, 'Porto': 3, 'mole': 3, 'depot': 3, 'Beckstrom': 3, 'nestled': 3, 'convoy': 3, 'reappeared': 3, 'Naples': 3, 'scouting': 3, 'Bascom': 3, 'radar-controlled': 3, 'Damned': 3, 'renovated': 3, 'schooner': 3, 'savagely': 3, 'chattered': 3, 'merriment': 3, 'open-mouthed': 3, 'confesses': 3, 'psychical': 3, 'clasping': 3, 'overwhelmed': 3, 'psychic': 3, 'retinal': 3, 'perceptive': 3, 'progressions': 3, 'Hilprecht': 3, 'treasure': 3, 'forgetfulness': 3, 'one-time': 3, 'nominate': 3, 'fertilizers': 3, 'stooped': 3, 'enrichment': 3, 'carrots': 3, 'Colman': 3, 'fragrant': 3, 'Lots': 3, 'loaves': 3, 'residues': 3, 'spilling': 3, 'Northfield': 3, 'bundled': 3, 'cloudburst': 3, 'easing': 3, 'aviator': 3, 'sod': 3, 'Aviation': 3, 'downwind': 3, 'Reuben': 3, "Fogg's": 3, 'sheepskin': 3, 'Marston': 3, 'disregarding': 3, 'reckoning': 3, 'threading': 3, 'deduce': 3, 'Instrument': 3, 'thawed': 3, 'flip': 3, 'barracks': 3, 'powdery': 3, 'amaze': 3, 'ceramics': 3, 'cakes': 3, 'carve': 3, 'hobbies': 3, 'coop': 3, 'maturing': 3, 'unhurried': 3, 'childbirth': 3, 'dilatation': 3, 'reflex': 3, 'intrusion': 3, 'relaxes': 3, 'Extensive': 3, 'virility': 3, 'psychologically': 3, 'premature': 3, 'matron': 3, 'lewd': 3, 'counselors': 3, 'Planned': 3, 'Parenthood': 3, 'maleness': 3, 'PTA': 3, 'overtures': 3, 'marketplace': 3, 'arousal': 3, 'knuckle': 3, 'coaxed': 3, 'D.A.': 3, 'procurer': 3, 'audition': 3, "blonde's": 3, 'Nero': 3, 'Excelsior': 3, 'halls': 3, 'beguiling': 3, 'pimp': 3, 'Egyptians': 3, 'overthrown': 3, 'overcrowded': 3, 'autopsy': 3, 'squeezing': 3, 'ozone': 3, 'cysts': 3, "Lee's": 3, 'Practices': 3, 'masseur': 3, 'Authorities': 3, 'BBB': 3, 'loot': 3, 'Typically': 3, 'insulin': 3, 'Hull': 3, 'compresses': 3, 'cures': 3, 'scrape': 3, 'classmate': 3, "boys'": 3, 'Bugs': 3, 'orthodontics': 3, "dentist's": 3, 'protruding': 3, 'deformity': 3, 'thumbs': 3, 'ill-conceived': 3, '$750': 3, 'orthodontists': 3, 'scoffed': 3, 'prematurely': 3, 'extra-sensory': 3, 'entranced': 3, 'clarifying': 3, 'communicator': 3, 'slant': 3, 'visually': 3, 'confining': 3, 'Hard': 3, 'Returns': 3, 'Part-time': 3, 'uneconomical': 3, 'Location': 3, 'starved': 3, 'dulled': 3, 'Counsel': 3, 'recollections': 3, 'exhausting': 3, 'fiend': 3, 'stubbornly': 3, 'anti-Semites': 3, 'exemplified': 3, 'infamous': 3, 'Heydrich': 3, 'phraseology': 3, 'Solution': 3, 'arousing': 3, 'dishonest': 3, 'fates': 3, 'memoirs': 3, 'dramatize': 3, 'rancor': 3, 'faiths': 3, 'Commonweal': 3, 'Non-Catholics': 3, 'supplant': 3, 'sinful': 3, 'racketeers': 3, 'Lambeth': 3, 'self-control': 3, 'Repeated': 3, 'Conscience': 3, '1610': 3, 'Thames': 3, 'Historians': 3, 'Muscovy': 3, '1609': 3, 'Furious': 3, 'Overfall': 3, '1602': 3, 'strait': 3, 'Ahead': 3, 'perversely': 3, 'explorer': 3, 'Greenland': 3, "Juet's": 3, 'Java': 3, 'cape': 3, 'muskets': 3, 'bloodshed': 3, 'boatswain': 3, 'Traverse': 3, 'Bailly': 3, 'Dickson': 3, 'prophetically': 3, 'renamed': 3, 'Hercules': 3, 'nets': 3, '1835': 3, 'smuggled': 3, 'dilapidated': 3, 'litter': 3, 'wildcat': 3, 'Georgian': 3, 'diarrhoea': 3, 'admonitions': 3, 'usages': 3, 'boon': 3, 'Sis': 3, 'drunkard': 3, 'A.B.': 3, 'diary': 3, 'justifying': 3, 'curricula': 3, 'outlived': 3, 'rebelling': 3, 'confederacy': 3, 'literate': 3, 'bogus': 3, 'footnote': 3, 'uncritical': 3, 'propagandist': 3, "analyst's": 3, 'hillbilly': 3, 'bleakly': 3, 'trouser': 3, 'dispassionately': 3, 'tenderly': 3, 'wreaths': 3, 'trample': 3, 'lurch': 3, 'rackets': 3, 'Sicilian': 3, 'looted': 3, 'trespassed': 3, 'grapevine': 3, 'parable': 3, 'offended': 3, 'unimpressed': 3, 'idiotic': 3, 'boosted': 3, 'concession': 3, 'geologists': 3, 'damaging': 3, '1707': 3, 'forlorn': 3, 'travels': 3, 'reckoned': 3, 'fateful': 3, 'scurried': 3, 'Institution': 3, 'oscillation': 3, 'forwarded': 3, 'epicenter': 3, 'unsolved': 3, '1906': 3, 'Cheyennes': 3, 'Villa': 3, 'CO': 3, 'erudite': 3, 'berth': 3, 'grenade': 3, 'attackers': 3, 'counterattack': 3, 'profusely': 3, 'Glory': 3, 'Assumption': 3, 'diminishes': 3, 'Bantus': 3, 'denials': 3, 'policy-makers': 3, 'plunging': 3, 'Sounds': 3, 'meandering': 3, 'Shy': 3, 'shovels': 3, 'rite': 3, 'divinities': 3, 'salve': 3, 'strivings': 3, 'synagogue': 3, 'wryly': 3, 'pursuits': 3, 'irritably': 3, 'constituting': 3, 'prodded': 3, 'advertisements': 3, 'announces': 3, 'Horowitz': 3, 'watery': 3, 'salted': 3, 'ointment': 3, 'herb': 3, '1872': 3, 'sores': 3, 'blister': 3, 'saliva': 3, 'poultice': 3, 'itching': 3, 'soda': 3, 'swelled': 3, 'ounce': 3, 'unlock': 3, 'shipper': 3, 'Grands': 3, 'Crus': 3, 'extenuating': 3, 'guardian': 3, 'inexhaustible': 3, 'bargains': 3, 'spoil': 3, 'Fat': 3, 'reclining': 3, 'sweetness': 3, 'unattractive': 3, 'Chateau': 3, 'sediment': 3, 'corkscrew': 3, 'Rest': 3, 'perpetrated': 3, 'freeing': 3, 'incensed': 3, 'assented': 3, 'apprehensively': 3, 'Child': 3, 'bondage': 3, 'bribed': 3, 'Renoir': 3, 'moderns': 3, 'anti-intellectual': 3, 'inveterate': 3, 'prodigy': 3, 'sparring': 3, 'ironically': 3, 'H.M.S.': 3, 'gilt': 3, 'allegorical': 3, 'Dolley': 3, "Dartmouth's": 3, 'Dickey': 3, 'disdain': 3, 'ski': 3, 'scooped': 3, 'freshmen': 3, 'Outing': 3, '140': 3, 'proctor': 3, 'charters': 3, 'pausing': 3, 'commencement': 3, 'Amos': 3, 'curbside': 3, 'stepmother': 3, 'vomiting': 3, 'Hiram': 3, 'profited': 3, 'observant': 3, 'Flint': 3, 'recitation': 3, 'retrograde': 3, 'botany': 3, 'persistently': 3, 'chess': 3, 'Observatory': 3, 'Census': 3, 'horseback': 3, '1890': 3, 'bequests': 3, 'Smith-Hughes': 3, 'occupations': 3, 'disappears': 3, 'vocation': 3, 'sorghum': 3, 'byproducts': 3, 'arable': 3, 'flax': 3, 'soaps': 3, 'explosives': 3, 'kernel': 3, 'starch': 3, 'psyllium': 3, 'lumps': 3, 'kernels': 3, 'ornaments': 3, 'rosaries': 3, 'beverages': 3, 'Beer': 3, 'alcoholic': 3, "herdin'": 3, 'potted': 3, "durin'": 3, "grazin'": 3, 'Injun': 3, "it'd": 3, 'dazed': 3, 'uncounted': 3, 'cattlemen': 3, 'synonym': 3, 'hustler': 3, 'reined': 3, 'focussed': 3, 'motley': 3, 'lioness': 3, 'paw': 3, 'lashed': 3, 'hind': 3, 'noose': 3, 'gentler': 3, 'thorn': 3, 'maneuvered': 3, 'deficient': 3, 'worshiping': 3, 'antithesis': 3, 'organically': 3, 'perspectives': 3, 'edifice': 3, 'erecting': 3, 'fielder': 3, 'payday': 3, 'grocers': 3, 'Shires': 3, 'illicit': 3, 'insanity': 3, 'prosper': 3, 'entertainments': 3, 'epileptic': 3, "World's": 3, 'unaccompanied': 3, 'premarital': 3, "Erikson's": 3, 'schema': 3, 'configurations': 3, "adolescent's": 3, 'adulthood': 3, 'ostensible': 3, "female's": 3, 'homemaker': 3, 'deprive': 3, 'Sex': 3, 'nuances': 3, 'disprove': 3, 'attributing': 3, 'inventors': 3, 'deposition': 3, 'bouts': 3, 'likened': 3, '1911': 3, 'indiscriminate': 3, 'depositions': 3, 'retard': 3, 'ordeal': 3, 'blocking': 3, '1904': 3, 'first-hand': 3, 'debacle': 3, 'summation': 3, 'Malta': 3, 'Maltese': 3, 'modeled': 3, 'Mattei': 3, 'Stand': 3, 'Opposite': 3, 'frescoes': 3, 'colonnade': 3, 'Baullari': 3, 'turbulent': 3, "Sant'": 3, 'Rivers': 3, 'Danube': 3, 'Plate': 3, 'stupendous': 3, 'Neptune': 3, 'prostitutes': 3, 'thoughtless': 3, 'accumulating': 3, 'threes': 3, 'merest': 3, 'turf': 3, 'horrifying': 3, 'Northerner': 3, 'hideously': 3, 'inexorable': 3, 'postscript': 3, 'elicit': 3, 'Wherever': 3, 'cinematic': 3, '1903': 3, 'Birth': 3, 'chasing': 3, 'actresses': 3, 'phonograph': 3, 'poorer': 3, 'exodus': 3, 'stratum': 3, 'collapsing': 3, 'secondarily': 3, 'folksy': 3, 'antennae': 3, 'transmutation': 3, 'exclusiveness': 3, 'polarized': 3, 'livres': 3, 'Choctaws': 3, 'Carolinians': 3, 'deerskins': 3, 'cheaply': 3, "D'Artaguette": 3, 'Cumberland': 3, 'incited': 3, 'termini': 3, 'incite': 3, 'ineffective': 3, 'reap': 3, "Uncle's": 3, 'tantamount': 3, 'threadbare': 3, 'Inquisition': 3, 'senatorial': 3, 'berated': 3, 'ministries': 3, 'handclasp': 3, 'glowered': 3, 'Newspaper': 3, 'unsuitable': 3, 'Washizu': 3, 'Nishima': 3, 'suppositions': 3, 'unjust': 3, 'gal': 3, 'non-violence': 3, 'demoralize': 3, 'intolerable': 3, 'repressed': 3, 'reconstructed': 3, 'socialistic': 3, 'furthered': 3, 'observable': 3, 'truism': 3, 'Thirty': 3, 'Employment': 3, 'nation-wide': 3, 'viability': 3, 'breakup': 3, 'nationalist': 3, 'monarch': 3, 'sovereigns': 3, 'nebulous': 3, 'windowless': 3, 'farfetched': 3, 'tick': 3, 'pushers': 3, 'unthinkable': 3, 'Chiefs': 3, 'ape': 3, 'crammed': 3, 'dangling': 3, 'outback': 3, 'fugitive': 3, 'memorize': 3, 'paws': 3, 'stink': 3, 'eh': 3, 'sweating': 3, 'Idje': 3, 'promenade': 3, 'Khaju': 3, 'Fridays': 3, 'carelessly': 3, 'orchard': 3, 'vintage': 3, 'caravan': 3, 'paradoxical': 3, 'riverbank': 3, 'tulip': 3, 'und': 3, 'wanderings': 3, 'recurred': 3, 'twinkle': 3, 'Prague': 3, "Puccini's": 3, 'upheaval': 3, 'Mystery': 3, 'Mahler': 3, "Bruckner's": 3, 'destinies': 3, 'footstep': 3, 'documentation': 3, 'Confederation': 3, "Hamilton's": 3, 'amazingly': 3, "Congress'": 3, '1783': 3, 'moderation': 3, 'Schaack': 3, 'hindered': 3, 'Sartoris': 3, 'glimmer': 3, 'masks': 3, 'hoops': 3, 'parasol': 3, 'Breath': 3, 'uninhibited': 3, 'purposive': 3, 'chanced': 3, 'designating': 3, 'arbitrate': 3, 'rearrange': 3, 'Constitutions': 3, 'forerunner': 3, 'Proclamation': 3, 'dispel': 3, 'amenable': 3, 'meteor': 3, 'Solar': 3, 'drunks': 3, 'induces': 3, 'domains': 3, 'predictive': 3, 'X-rays': 3, 'permeated': 3, 'Jesuit': 3, 'genesis': 3, 'Madeleine': 3, 'withstood': 3, 'jeopardize': 3, 'gestured': 3, 'flattery': 3, 'tidings': 3, 'taboo': 3, 'metaphors': 3, 'reconciled': 3, 'nothingness': 3, 'barbarians': 3, 'implacable': 3, 'categorical': 3, 'mentality': 3, 'undisciplined': 3, 'borderline': 3, 'disordered': 3, 'homosexuals': 3, 'concerted': 3, 'sordid': 3, 'betrays': 3, 'lilacs': 3, 'quietness': 3, 'grape-arbor': 3, 'shadowed': 3, 'verbenas': 3, 'blighted': 3, 'claws': 3, 'pebbles': 3, 'prettier': 3, "horses'": 3, 'drone': 3, 'thud': 3, 'voluptuous': 3, 'Lautner': 3, 'perceives': 3, 'emblematic': 3, 'mindless': 3, 'resonances': 3, 'revert': 3, 'Leverkuhn': 3, 'Praisegod': 3, 'sinfulness': 3, 'doom': 3, 'howls': 3, 'bitten': 3, 'blue-eyed': 3, 'raving': 3, 'self-destructive': 3, '1902': 3, 'imitations': 3, 'mimetic': 3, 'Mimesis': 3, 'overtones': 3, 'conjoined': 3, 'incitement': 3, 'defender': 3, 'epistemology': 3, 'Hound': 3, "Doesn't": 3, 'Englanders': 3, 'idealist': 3, 'amidst': 3, 'Pay': 3, 'ransom': 3, 'mocked': 3, 'schoolmaster': 3, "Heidenstam's": 3, 'Pilgrimage': 3, 'Thoughts': 3, 'Loneliness': 3, 'revelations': 3, 'provincialism': 3, 'pitiable': 3, 'fortitude': 3, 'thirty-six': 3, 'individualist': 3, "detective's": 3, 'deductive': 3, 'egotism': 3, 'condemns': 3, 'despised': 3, 'Dashiell': 3, 'accusation': 3, 'overload': 3, 'connective': 3, 'e': 3, 'channeled': 3, "Rousseau's": 3, 'correction': 3, 'set-up': 3, 'swallowing': 3, 'cumbersome': 3, 'Proprietorships': 3, 'accumulate': 3, "Wilson's": 3, 'scare': 3, 'Il': 3, 'unwise': 3, 'hurl': 3, 'falsity': 3, 'tell-tale': 3, 'worthless': 3, 'transpired': 3, 'testifies': 3, 'elaborated': 3, 'disruption': 3, 'helplessly': 3, 'necessitates': 3, 'emergence': 3, 'hopelessness': 3, 'delirium': 3, 'oedipal': 3, 'undercurrent': 3, 'incestuous': 3, "novelist's": 3, 'bloodless': 3, 'Sinner': 3, 'tablet': 3, 'suitors': 3, 'sternly': 3, 'Mondrian': 3, 'abstracts': 3, 'utopia': 3, 'apparition': 3, 'sabotage': 3, 'cloak': 3, 'Abstraction': 3, 'doorways': 3, 'traditionalist': 3, 'pedigree': 3, 'notwithstanding': 3, 'Gothic': 3, 'undiminished': 3, 'narratives': 3, 'flowered': 3, 'Agreeable': 3, 'Autocracies': 3, 'sourly': 3, 'insecure': 3, 'conversational': 3, 'nocturnal': 3, 'Perfect': 3, 'ethereal': 3, 'eighty-three': 3, 'cellular': 3, "Newton's": 3, 'Revolutionibus': 3, 'Sullam': 3, 'strands': 3, 'Adler': 3, 'jolly': 3, 'mischievous': 3, 'Cloud': 3, 'punish': 3, 'Cupply': 3, 'pane': 3, 'panes': 3, 'fused': 3, 'weakly': 3, 'yachts': 3, 'nightingale': 3, 'mute': 3, 'fastidious': 3, 'marrying': 3, 'Instinctively': 3, 'innocently': 3, 'scandalized': 3, 'envelopes': 3, 'Segovia': 3, 'precocious': 3, 'pawnshop': 3, 'celebrity': 3, 'banquets': 3, 'Magdalene': 3, 'legitimized': 3, 'self-defense': 3, 'consonant': 3, 'instrumentalities': 3, 'mistakenly': 3, 'astrophysics': 3, 'advising': 3, 'Secretaries': 3, 'Stavropoulos': 3, 'courteously': 3, 'bristled': 3, 'speechless': 3, 'omissions': 3, 'twinge': 3, 'Congregationalists': 3, 'thrilled': 3, 'exultation': 3, 'Privy': 3, 'Commons': 3, 'Convocation': 3, 'Publick': 3, 'Marlborough': 3, 'complains': 3, 'Defoe': 3, 'pamphlet': 3, 'Dunkirk': 3, 'Courtier': 3, 'inconsequential': 3, 'aptitude': 3, 'absent-mindedly': 3, 'Koehler': 3, 'American-Negro': 3, 'unused': 3, 'Robbie': 3, 'Honorable': 3, 'telegraphic': 3, 'Cossack': 3, 'Brisbane': 3, 'Runyon': 3, 'confide': 3, 'ten-foot': 3, 'blurted': 3, 'shawl': 3, 'Smithsonian': 3, 'Coolidges': 3, 'Stearns': 3, 'anthology': 3, 'undo': 3, 'adversely': 3, 'implementing': 3, 'symposium': 3, 'glossary': 3, 'gratified': 3, 'Platonic': 3, 'savoring': 3, 'depravity': 3, 'Stoicism': 3, 'Stoic': 3, 'sonnet': 3, "historian's": 3, "Alexander's": 3, 'dictate': 3, 'supporter': 3, 'seduction': 3, 'constituency': 3, 'disgrace': 3, 'confer': 3, 'surreptitiously': 3, 'expectant': 3, 'waspish': 3, 'barricade': 3, 'mustached': 3, 'thanking': 3, 'Andre': 3, 'Alsatian': 3, 'governess': 3, 'kettle': 3, 'patter': 3, 'pallid': 3, 'hug': 3, 'broadside': 3, "officers'": 3, 'deployed': 3, 'heroism': 3, 'booby': 3, 'armored': 3, 'protestations': 3, 'laudanum': 3, 'rationed': 3, 'Laurence': 3, '1788': 3, "Potemkin's": 3, "Czarina's": 3, 'Parisian': 3, 'Serenissimus': 3, "Prince's": 3, 'sapped': 3, 'monsters': 3, 'ray': 3, 'Current': 3, 'crowing': 3, 'whiskers': 3, 'donned': 3, 'ornamented': 3, 'sheaf': 3, 'headless': 3, 'torsos': 3, 'Sounion': 3, 'inlets': 3, 'nectar': 3, 'dined': 3, 'trays': 3, 'morsel': 3, 'Crittenden': 3, 'gadfly': 3, 'mules': 3, 'slanderer': 3, '11th': 3, 'printer': 3, 'mid-thirties': 3, 'airs': 3, 'Rawson': 3, 'Pocasset': 3, 'dispensation': 3, "Gorton's": 3, 'magistrates': 3, 'reformation': 3, 'Shawomet': 3, 'chaplain': 3, 'elated': 3, 'postponing': 3, "Sharpe's": 3, 'Am': 3, 'infliction': 3, 'streamed': 3, 'Wonder': 3, 'Einstein': 3, "Krutch's": 3, '1582': 3, 'Puritans': 3, 'aspire': 3, 'conformist': 3, 'converge': 3, 'conformists': 3, 'Whitemarsh': 3, 'evacuated': 3, 'commander-in-chief': 3, 'Gascony': 3, 'pronouncement': 3, 'abeyance': 3, 'cardinals': 3, 'Sicily': 3, 'Curia': 3, 'diligence': 3, 'staunch': 3, 'est': 3, 'downs': 3, 'Countries': 3, 'Fleischmanns': 3, "Alfred's": 3, 'sobs': 3, 'Speak': 3, "Lilly's": 3, 'Bede': 3, 'veracity': 3, 'Hodgkin': 3, 'Lot': 3, 'du': 3, 'extinction': 3, 'reigning': 3, 'sceptical': 3, 'Printing': 3, '1918': 3, 'venereal': 3, 'cribs': 3, "Fosdick's": 3, 'vociferous': 3, 'transcending': 3, 'Hugo': 3, 'Euripides': 3, 'encompassed': 3, 'damnation': 3, 'melodrama': 3, 'vaulting': 3, 'Goethe': 3, 'wager': 3, 'Bushell': 3, 'Elinor': 3, 'Fulke': 3, 'prosecuting': 3, 'paie': 3, 'lordship': 3, 'allusion': 3, 'uppon': 3, 'hande': 3, 'colde': 3, 'shuld': 3, 'methodological': 3, "Adams'": 3, 'trustworthy': 3, 'dispatches': 3, 'embodying': 3, 'mundane': 3, 'motivating': 3, 'caste': 3, 'howling': 3, 'Broun': 3, 'Sedgwick': 3, 'Trastevere': 3, 'bookshelves': 3, 'patronized': 3, 'uncharted': 3, 'Mencken': 3, 'Drawing': 3, 'drunkards': 3, 'Birkhead': 3, 'indisposed': 3, 'Drunk': 3, 'pajamas': 3, 'incepting': 3, 'ordo': 3, 'matriculated': 3, 'artfully': 3, 'resided': 3, 'prolusion': 3, 'Overlords': 3, 'robots': 3, "Kornbluth's": 3, 'behavioral': 3, 'humanist': 3, 'defiant': 3, 'fooling': 3, 'goddess': 3, 'discontinuous': 3, 'catalyst': 3, 'furor': 3, 'piercing': 3, 'radiance': 3, 'Pasha': 3, 'federation': 3, 'hesitant': 3, 'insularity': 3, 'overhaul': 3, 'apocalyptic': 3, 'odious': 3, 'Gillespie': 3, 'bop': 3, 'chants': 3, 'juxtaposition': 3, 'Angry': 3, 'aberration': 3, 'typicality': 3, 'Closely': 3, 'Commentary': 3, 'Critical': 3, 'approximations': 3, 'Booth': 3, 'Berto': 3, 'Rimanelli': 3, 'busts': 3, 'diapers': 3, 'short-run': 3, 'Management': 3, 'Courses': 3, 'Chambers': 3, 'identifying': 3, 'Specifications': 3, 'Directory': 3, 'Loans': 3, 'Minerals': 3, 'Exploration': 3, 'nonexistent': 3, 'administer': 3, 'conditional': 3, 'mobilizing': 3, 'commence': 3, 'Record': 3, 'effecting': 3, 'Cars': 3, 'Actual': 3, 'itemized': 3, 'personally-owned': 3, '$.07': 3, 'refine': 3, 'grants-in-aid': 3, 'Middletown': 3, 'specifying': 3, 'summarize': 3, 'expansions': 3, 'Domestic': 3, 'Electronic': 3, 'Morning': 3, 'Inventory': 3, 'forty-seven': 3, 'Included': 3, 'payable': 3, '22nd': 3, 'Jaycees': 3, 'consumptive': 3, 'brackish': 3, 'subsections': 3, 'correlate': 3, 'expiration': 3, 'ores': 3, 'Subject': 3, 'Histochemistry': 3, 'Diseases': 3, 'medico-military': 3, 'biochemical': 3, 'Support': 3, 'demonstrations': 3, 'fascicles': 3, '1959-1960': 3, 'Clinico-pathologic': 3, 'Manual': 3, 'Additionally': 3, 'extraterrestrial': 3, 'hydrides': 3, 'OH': 3, 'spectroscopy': 3, 'thermometry': 3, 'vapor-pressure': 3, 'millidegrees': 3, 'millidegree': 3, 'Preliminary': 3, 'resistor': 3, 'coefficient': 3, 'straddling': 3, 'integrals': 3, 'coefficients': 3, 'NBS': 3, 'Physics': 3, 'interactions': 3, 'indexing': 3, 'profiles': 3, 'Procedure': 3, 'accrued': 3, '3,500': 3, 'Sulzberger': 3, 'Oakes': 3, 'Blockade': 3, 'excludes': 3, 'Divide': 3, 'Share': 3, 'pit-run': 3, 'Tests': 3, 'checklist': 3, "Motors'": 3, '332': 3, 'allocable': 3, 'pioneering': 3, 'memorandum': 3, 'supra': 3, 'bureaucratic': 3, 'bureaucracies': 3, 'currencies': 3, 'vegetation': 3, 'sawtimber': 3, 'Continuation': 3, 'timberlands': 3, 'proficiency': 3, 'high-value': 3, 'forage': 3, 'inholdings': 3, 'Done': 3, 'Agricultural': 3, 'objectionable': 3, 'ionized': 3, 'ionosphere': 3, 'radiations': 3, 'variability': 3, 'Deduction': 3, 'aliens': 3, 'Extensions': 3, 'astride': 3, 'turret': 3, 'trademark': 3, 'grinders': 3, "Leesona's": 3, 'winder': 3, 'take-up': 3, 'Moos': 3, 'intercollegiate': 3, 'eligibility': 3, 'Algol': 3, '5.7': 3, 'totalled': 3, 'rectifier': 3, 'Sprague': 3, 'day-by-day': 3, 'summon': 3, 'Saturn': 3, 'reflectors': 3, 'Piddington': 3, 'Minnett': 3, 'chap.': 3, 'McCullough': 3, '50-foot': 3, '4.3': 3, 'lobe': 3, 'Argon': 3, 'transpiration': 3, 'schematic': 3, 'thermocouple': 3, 'thermocouples': 3, 'pulley': 3, 'osmotic': 3, 'birefringence': 3, 'droplets': 3, 'polycrystalline': 3, 'isotropic': 3, 'chromium': 3, 'Theoretical': 3, '2.4': 3, 'Cr': 3, 'oxygens': 3, 'piezoelectric': 3, 'g': 3, '375-degrees-C': 3, 'crystallites': 3, 'Mc/sec': 3, 'adsorbed': 3, 'swatches': 3, 'redeposition': 3, 'particulate': 3, 'loosen': 3, 'float': 3, 'agglomeration': 3, 'hydrocarbon': 3, 'oleophilic': 3, 'detergency': 3, 'reagents': 3, '-78-degrees': 3, 'radiochlorine': 3, 'reactants': 3, 'i.d.': 3, '5.5': 3, 'fillings': 3, 'retardation': 3, 'diminish': 3, 'interplanetary': 3, 'impacts': 3, 'cores': 3, 'probes': 3, 'sensor': 3, 'extrapolation': 3, 'toxic': 3, 'aerosols': 3, 'aerosolized': 3, 'bronchi': 3, 'portal': 3, 'typhus': 3, 'fractionation': 3, 'ultracentrifugation': 3, 'stepwise': 3, 'fractionated': 3, 'anti-A': 3, 'Sober': 3, '256': 3, 'resuspended': 3, '1700': 3, 'chromatographic': 3, 'ultracentrifuge': 3, 'preparative': 3, 'Fraction': 3, 'blooms': 3, 'moss': 3, 'woolly': 3, 'broods': 3, 'fertilized': 3, 'maximal': 3, 'reticulate': 3, 'rattlesnake': 3, 'hoop': 3, "Oliver's": 3, 'Zoo': 3, 'ounces': 3, 'emaciated': 3, 'subspecies': 3, 'vascular': 3, 'mammals': 3, 'pathways': 3, 'arteriolar': 3, "'50": 3, "'58": 3, 'Nakamura': 3, "'48": 3, 'antagonist': 3, 'inferred': 3, 'Maturity': 3, 'modal': 3, 'Elbow': 3, 'Span': 3, 'menarche': 3, 'pubescent': 3, 'mono-iodotyrosine': 3, 'tyrosine': 3, 'iodinating': 3, 'enzymatic': 3, 'secretion': 3, 'thiouracil': 3, 'goitre': 3, 'owing': 3, 'solvents': 3, 'alternatively': 3, 'USP': 3, 'disabling': 3, 'myocardial': 3, 'triamcinolone': 3, 'pelvic': 3, 'Severe': 3, 'vertebral': 3, 'necrosis': 3, 'mottled': 3, 'atrophic': 3, 'jejunum': 3, 'granular': 3, 'cortical': 3, 'Microscopic': 3, 'biceps': 3, 'Coons': 3, 'yellow-dwarf': 3, 'FITC': 3, 'autofluorescence': 3, 'nonspecifically': 3, 'convulsive': 3, 'feedback': 3, 'wakefulness': 3, 'depressions': 3, 'nausea': 3, 'tuning': 3, 'disturbances': 3, 'monic': 3, 'algebraically': 3, 'i': 3, 'notation': 3, 'b': 3, 'differentiable': 3, 'satisfies': 3, 'repetitions': 3, 'litters': 3, 'aces': 3, 'Experiment': 3, '90-degrees': 3, 'monotone': 3, 'sub-interval': 3, 'g{t}': 3, 'involutions': 3, 'involutorial': 3, 'nonsingular': 3, 'tangency': 3, 'Af-fold': 3, '**yb': 3, 'dearly': 3, 'democratize': 3, 'consolation': 3, 'colossal': 3, 'self-sufficient': 3, 'unifies': 3, 'Durkheim': 3, 'attaching': 3, "B.'s": 3, 'time-honored': 3, 'averted': 3, 'illegitimate': 3, 'Communication': 3, 'Boundary': 3, 'linkage': 3, 'deviant': 3, 'endogamy': 3, 'clipped': 3, 'jure': 3, 'demography': 3, 'censuses': 3, 'hindsight': 3, 'auditors': 3, 'Guilford-Martin': 3, 'suggestibility': 3, 'involuntary': 3, 'nonreactivity': 3, 'constriction': 3, 'socioeconomic': 3, 'Anxiety': 3, 'Meaning': 3, 'Arithmetic': 3, 'under-achievement': 3, 'Roleplaying': 3, 'introject': 3, 'infuriated': 3, 'uncomfortably': 3, 'nonverbal': 3, 'bales': 3, 'inflected': 3, 'Y-cell': 3, 'inflection': 3, 'endings': 3, 'summarizing': 3, 'Dominant': 3, 'prepositional': 3, 'vowels': 3, 'murmur': 3, 'Kikuyu': 3, 'orthographic': 3, 'Igbo': 3, 'prosodic': 3, 'unnecessarily': 3, "Hoijer's": 3, 'glottochronological': 3, 'Hoijer': 3, 'adjectival': 3, 'millennia': 3, 'by-product': 3, 'Oder': 3, 'feasibility': 3, 'Moroccan': 3, 'P.D.I.': 3, 'U.M.C.I.A.': 3, 'George-Barden': 3, 'demonstrable': 3, 'ceaseless': 3, 'fatter': 3, 'unsold': 3, 'amortization': 3, 'profit-maximizing': 3, 'abstracting': 3, 'gouging': 3, '3%': 3, 'cost-of-living': 3, 'presumption': 3, 'Hegelian': 3, 'jurisprudence': 3, 'injunction': 3, 'disorderly': 3, "transferor's": 3, 'furthermore': 3, 'non-taxable': 3, '368(a)(1)': 3, 'airmail': 3, 'Concerning': 3, 'maladjusted': 3, 'Middle-South': 3, 'working-class': 3, 'lower-middle-class': 3, 'upper-': 3, 'double-step': 3, 'unallocable': 3, 'out-of-pocket': 3, 'carload': 3, 'single-step': 3, 'subtype': 3, 'behaviour': 3, 'perilously': 3, 'positivists': 3, "animal's": 3, 'unfitting': 3, 'jumbled': 3, 'hexameter': 3, 'Protogeometric': 3, 'sharper': 3, 'Dawn': 3, 'Dipylon': 3, 'Martinez': 3, "Salyer's": 3, 'arroyo': 3, 'MacPherson': 3, 'Pedro': 3, 'Laramie': 3, 'depredations': 3, 'Chavez': 3, 'Raton': 3, 'horsemen': 3, 'telegrapher': 3, 'Junction': 3, 'gusts': 3, 'oranges': 3, 'Marble': 3, 'Blackmer': 3, 'Vail': 3, 'Utopians': 3, 'Dorr': 3, 'Patriot': 3, 'Foss': 3, 'Trafton': 3, 'Seated': 3, 'Barstow': 3, "arm's": 3, 'typography': 3, 'facet-planes': 3, "Picasso's": 3, 'bas-relief': 3, 'grape': 3, 'transforms': 3, 'literalness': 3, 'abstracted': 3, '128': 3, 'Rotunda': 3, 'roughcast': 3, 'Architect': 3, 'slaked': 3, 'scaffolding': 3, 'secco': 3, 'oxide': 3, 'mutilated': 3, 'presume': 3, 'Sane': 3, 'shred': 3, 'guild': 3, 'lifelike': 3, "Boris'": 3, 'monologue': 3, 'Missail': 3, "Grigori's": 3, 'Verdi': 3, 'wail': 3, '1860': 3, 'Satires': 3, 'Circumstance': 3, 'Dynasts': 3, 'rapture': 3, 'fascinate': 3, 'Partly': 3, 'Valery': 3, 'Tiepolo': 3, 'bard': 3, 'Proceeding': 3, 'synonyms': 3, 'Cynewulf': 3, 'self-pity': 3, 'greed': 3, "Orlick's": 3, 'mending': 3, 'Orlick': 3, 'Havisham': 3, 'spasm': 3, 'coding': 3, 'macro-instructions': 3, 'DRDW': 3, 'DLINE': 3, 'DTF': 3, '7070': 3, 'programmer': 3, 'IOCSIXF': 3, 'IOCSIXG': 3, 'Subdivision': 3, 'septic': 3, 'nitrate': 3, 'floc': 3, 'ciliated': 3, 'Sloane': 3, 'arylesterase': 3, 'collagen': 3, 'a.': 3, 'viscoelasticity': 3, 'elongation': 3, 'Flory': 3, 'Hoeve': 3, 'Carefully': 3, 'References': 3, 'Cury': 3, 'Donnay': 3, 'Crystallographic': 3, 'alloys': 3, 'Structures': 3, "Dana's": 3, 'Mrad': 3, 'cesium-137': 3, 'accelerators': 3, 'nuclide': 3, 'kwhr': 3, 'Radiopasteurization': 3, 'mutton': 3, 'substrates': 3, 'interface': 3, 'schematically': 3, 'eqn.': 3, 'rupture': 3, 'polypropylene': 3, 'pumped': 3, 'draining': 3, 'restorability': 3, 'tumble': 3, 'dryer': 3, 'perforated': 3, '109-degrees-F': 3, 'Drain': 3, 'Cascading': 3, 'interstage': 3, 'double-stage': 3, 'impinge': 3, 'Fresnel': 3, 'maximizes': 3, 'magnifying': 3, 'specification': 3, 'transient': 3, '7-2': 3, 'manually': 3, 'inconvenient': 3, 'inertial': 3, 'pickoff': 3, 'east-west': 3, 'lipstick': 3, 'bathrobe': 3, 'throbbed': 3, 'teasing': 3, 'throbbing': 3, 'mercifully': 3, 'sighing': 3, 'unsung': 3, 'leered': 3, 'noticing': 3, 'Jeff': 3, 'devilish': 3, 'snaked': 3, 'Dalloway': 3, 'dainty': 3, 'chandelier': 3, 'Deacon': 3, 'spotless': 3, "Seward's": 3, 'Murder': 3, 'Keene': 3, 'faltered': 3, 'balustrade': 3, "stranger's": 3, 'bulged': 3, 'Reformed': 3, 'Neversink': 3, 'illumined': 3, 'hateful': 3, 'pat': 3, 'industrious': 3, 'swaggered': 3, 'grownups': 3, 'ruffled': 3, 'crummy': 3, 'niggers': 3, 'nothin': 3, 'ol': 3, 'thinkin': 3, 'comin': 3, 'fuck': 3, 'unleashed': 3, 'hafta': 3, 'bandits': 3, 'Discourse': 3, 'slovenly': 3, 'punctured': 3, 'bayonets': 3, 'Committeemen': 3, 'smirk': 3, 'deep-set': 3, 'neared': 3, 'blinking': 3, 'Caroli': 3, 'outskirts': 3, 'snarling': 3, 'bristling': 3, 'improvised': 3, 'hardtack': 3, 'exchanging': 3, 'freckles': 3, 'poncho': 3, 'undershirt': 3, 'Ole': 3, 'giggled': 3, "po'k": 3, 'crumbled': 3, "Y'all": 3, 'wanna': 3, 'short-lived': 3, 'redder': 3, 'shuffling': 3, 'icebox': 3, 'lathered': 3, 'Mme': 3, 'Redoute': 3, 'criss-crossed': 3, 'pillows': 3, 'sneakers': 3, 'probed': 3, 'stalls': 3, 'skullcap': 3, 'Galli': 3, 'scoured': 3, 'jerking': 3, 'Trouble': 3, 'bewilderment': 3, 'shriveled': 3, 'fathom': 3, 'schoolroom': 3, 'sired': 3, 'git': 3, 'Lattimer': 3, 'Mynheer': 3, 'Cortlandt': 3, 'saddlebags': 3, 'berry': 3, 'shied': 3, 'nostrils': 3, 'rooster': 3, 'clam': 3, 'ached': 3, 'lather': 3, 'Brandel': 3, 'ideologies': 3, 'Ulanys': 3, 'Globocnik': 3, 'spouted': 3, 'Androfski': 3, 'hummed': 3, 'understandingly': 3, 'smelt': 3, 'kitchenette': 3, "Eileen's": 3, 'skull': 3, 'bubbling': 3, 'gouged': 3, "Rector's": 3, 'lacy': 3, 'manservant': 3, 'Ariadne': 3, 'Pausing': 3, 'resentful': 3, 'bombproof': 3, 'rotting': 3, 'frayed': 3, 'shrilly': 3, 'Bomb': 3, 'hepatitis': 3, 'Flannagans': 3, 'Izaak': 3, "Izaak's": 3, 'seaweed': 3, 'dammit': 3, 'pa': 3, 'busted': 3, "boss's": 3, 'forty-nine': 3, 'crook': 3, 'Albright': 3, 'Gosh': 3, 'retorted': 3, 'turkey': 3, 'chick': 3, 'patronne': 3, 'hens': 3, 'cackled': 3, 'chambermaid': 3, 'cradled': 3, 'coughing': 3, 'drown': 3, 'fuss': 3, 'lint': 3, 'Brennan': 3, 'psychopathic': 3, 'bug': 3, 'batteries': 3, 'bugging': 3, 'beeps': 3, 'spilled': 3, 'dialed': 3, 'twitch': 3, 'Guardino': 3, "Rose's": 3, 'Landis': 3, 'Acey': 3, 'Squire': 3, 'foolishly': 3, 'splashed': 3, 'Alvarez': 3, "Rourke's": 3, 'faintest': 3, 'stake-out': 3, 'groaned': 3, 'forearm': 3, 'sagged': 3, 'courthouse': 3, 'azaleas': 3, 'Ferrell': 3, 'grille': 3, 'Peerless': 3, 'Katya': 3, "there'd": 3, 'handbag': 3, 'propped': 3, 'Happened': 3, 'storehouse': 3, 'Drink': 3, "George's": 3, 'lamplight': 3, "Gilborn's": 3, 'swooping': 3, 'cinch': 3, 'sobered': 3, 'pompous': 3, 'chortled': 3, 'prancing': 3, 'Grubb': 3, 'dozing': 3, 'Sorry': 3, 'Fox': 3, 'Shirl': 3, 'Skolman': 3, 'louse': 3, 'shouldered': 3, 'dully': 3, 'squinting': 3, 'scheming': 3, 'overnighters': 3, 'lab': 3, 'Sort': 3, 'Motive': 3, 'dinnertime': 3, "Madden's": 3, 'Medfield': 3, 'harbored': 3, 'Leigh': 3, 'fuzz': 3, "Haven't": 3, "Muller's": 3, "lieutenant's": 3, 'keeper': 3, 'squinted': 3, 'joking': 3, 'shin': 3, 'cobra': 3, 'Soak': 3, 'drawled': 3, 'mister': 3, 'McIver': 3, 'boulders': 3, 'Freya': 3, 'crests': 3, 'Lolly': 3, 'grievance': 3, 'Jist': 3, 'soundly': 3, 'Archangel': 3, "Jubal's": 3, 'speeded': 3, 'Martians': 3, 'nests': 3, 'homesick': 3, 'Sandalphon': 3, 'Pornsen': 3, 'thrashed': 3, 'pip': 3, 'roiling': 3, 'Langer': 3, 'fuses': 3, 'critters': 3, 'intimacy': 3, 'flipped': 3, 'neural': 3, 'babes': 3, 'diverted': 3, 'rammed': 3, 'Leaning': 3, 'buckets': 3, 'stallion': 3, "Clayton's": 3, 'holstered': 3, 'McLish': 3, 'peg': 3, "Knife's": 3, 'slam': 3, 'pans': 3, 'belied': 3, "Dill's": 3, 'soothing': 3, "Barton's": 3, 'Melissa': 3, 'bled': 3, 'Miraculously': 3, 'pursed': 3, 'derrick': 3, 'flailing': 3, 'Elena': 3, 'Rockfork': 3, 'puncher': 3, 'Jesse': 3, 'tracked': 3, 'settler': 3, 'homesteaders': 3, "Brenner's": 3, 'snort': 3, 'Crouch': 3, 'Sweat': 3, "Dan's": 3, 'skipping': 3, 'dell': 3, 'unison': 3, 'dives': 3, "Carmer's": 3, "Penny's": 3, 'bronc': 3, 'Antler': 3, 'Sweeneys': 3, 'Herry': 3, 'duffel': 3, "Ma'am": 3, 'hevin': 3, 'Aw': 3, 'amber': 3, 'SX-21': 3, 'cabana': 3, 'Eye': 3, 'Rawlins': 3, 'dew': 3, 'Express': 3, 'Steinhager': 3, 'miserably': 3, 'wiggled': 3, 'Sommers': 3, 'lifeboat': 3, 'bailing': 3, 'whitened': 3, 'Griggs': 3, 'Frayne': 3, 'outrigger': 3, 'rung': 3, 'moons': 3, "L'Turu": 3, "Ramey's": 3, 'RAF': 3, "Keith's": 3, 'Commodore': 3, 'bobbing': 3, "Conyers'": 3, 'Petrie': 3, 'clasped': 3, 'passionately': 3, 'gaped': 3, 'Devol': 3, 'coachman': 3, 'Perdido': 3, 'crap': 3, 'forked': 3, 'bowing': 3, "Maggie's": 3, 'Evadna': 3, "Grandma's": 3, 'mouthful': 3, "Tolley's": 3, 'triplets': 3, 'pike': 3, 'Kiz': 3, 'Blackwell': 3, 'Momoyama': 3, 'Yokosuka': 3, 'murdering': 3, 'Pagan': 3, 'Calf': 3, 'Wrangler': 3, 'Sparky': 3, 'Hurrays': 3, 'handspikes': 3, 'red-haired': 3, 'paot': 3, 'underwear': 3, 'McKenzie': 3, 'Monmouth': 3, 'Harvie': 3, 'outcry': 3, 'Uhhu': 3, 'Ferraros': 3, 'Signora': 3, 'Move': 3, 'bandages': 3, 'nervously': 3, 'good-by': 3, 'cowbirds': 3, 'Quintus': 3, 'Longue': 3, 'Vue': 3, "Linda's": 3, 'steels': 3, 'Lovejoy': 3, "Nadine's": 3, "Wally's": 3, 'Fairview': 3, 'Carraway': 3, "Kirby's": 3, 'Peony': 3, "what's-his-name": 3, 'ballplayers': 3, 'Fudomae': 3, "Charlotte's": 3, 'Snakes': 3, 'Anthea': 3, 'Herberet': 3, 'Jennie': 3, 'Poitrine': 3, 'Feeley': 3, 'Crumb': 3, 'Ambiguity': 3, 'saleslady': 3, 'peacocks': 3, 'non-fiction': 3, 'Quasimodo': 3, 'hard-fought': 2, 'inure': 2, 'swipe': 2, 'disproportionate': 2, "court's": 2, 'wards': 2, 'multi-million-dollar': 2, 'intern': 2, 'Opelika': 2, 'Bowden': 2, 'reelection': 2, 'Snodgrass': 2, 'dissents': 2, 'opposes': 2, "Caldwell's": 2, '$30': 2, 'rescind': 2, 'quickie': 2, 'hopper': 2, 'Colquitt': 2, 'Taxation': 2, 'taunted': 2, 'escheat': 2, 'Tyler': 2, "taxpayers'": 2, 'unconstitutional': 2, 'county-wide': 2, 'outlay': 2, 'Reps.': 2, 'sledding': 2, 'Galveston': 2, 'donations': 2, 'vacancies': 2, 'appointee': 2, 'Wesley': 2, 'Weatherford': 2, '$15,000,000': 2, "bill's": 2, 'Buchanan': 2, 'Sulphur': 2, '4-year': 2, 'sp.': 2, 'regents': 2, 'Bachelor': 2, 'Southwestern': 2, '1961-62': 2, 'Supt.': 2, 'culminating': 2, 'desertion': 2, 'Virgil': 2, 'Carson': 2, 'Calls': 2, 'Extension': 2, 'Summerdale': 2, 'disclosure': 2, 'courtroom': 2, 'Hyannis': 2, 'Decisions': 2, '677': 2, 'prosecutor': 2, '58th': 2, 'altho': 2, '31st': 2, 'advisement': 2, '240': 2, 'malingering': 2, '540': 2, 'Ind.': 2, 'candor': 2, 'exacerbated': 2, 'rumored': 2, "members'": 2, 'locomotive': 2, 'Norway': 2, 'accredited': 2, 'reiterated': 2, 'haltingly': 2, 'Policies': 2, 'excuses': 2, 'conciliatory': 2, 'recommends': 2, 'formative': 2, 'Fulbright': 2, 'offenders': 2, 'larceny': 2, 'defray': 2, 'Laughlin': 2, 'sirens': 2, 'Rumford': 2, 'Seekonk': 2, 'shirking': 2, 'Sabbath': 2, "council's": 2, '1,700': 2, 'governs': 2, 'canvassers': 2, 'scheduling': 2, 'non-partisan': 2, 'fines': 2, 'prosecute': 2, 'boos': 2, "Hughes'": 2, 'decried': 2, 'Truck': 2, 'barbs': 2, 'Defends': 2, 'peace-loving': 2, 'rebound': 2, 'discredit': 2, "Jersey's": 2, 'Copeland': 2, 'Greenfield': 2, '330': 2, 'committeewoman': 2, 'Supervisor': 2, 'ballots': 2, 'Roos': 2, 'MacDonald': 2, 'Duffy': 2, 'Seidel': 2, 'Bontempo': 2, 'fire-fighting': 2, 'briefing': 2, 'wardens': 2, 'pledge': 2, 'Attacks': 2, 'tripping': 2, 'breathes': 2, 'springboard': 2, 'Acres': 2, 'misconstrued': 2, 'Geraldine': 2, 'anti-organization': 2, 'last-minute': 2, 'Carmine': 2, 'Gerosa': 2, "Gerosa's": 2, 'incumbent': 2, 'plunder': 2, 'public-school': 2, 'Interviews': 2, 'church-state': 2, 'jesting': 2, 'under-developed': 2, 'ninety-nine': 2, '10,000,000': 2, '150,000,000': 2, 'war-ridden': 2, 'Zurich': 2, 'Oum': 2, 'neutralists': 2, 'delegations': 2, 'plenary': 2, 'Princes': 2, 'Averell': 2, 'Harriman': 2, 'consultations': 2, 'six-point': 2, 'Appointment': 2, 'reside': 2, 'ceremonial': 2, '169': 2, 'Archives': 2, 'Edgar': 2, 'powered': 2, 'unpredictability': 2, 'scramble': 2, 're-enactment': 2, 'Districts': 2, 'loyalists': 2, 'functionary': 2, 'vexing': 2, 'Constant': 2, 'receptive': 2, 'imprudently': 2, '$200,000': 2, 'contractors': 2, 'rigging': 2, 'Varani': 2, 'Pleas': 2, 'Travelers': 2, 'Wide': 2, 'Builders': 2, 'Knauer': 2, 'regulate': 2, 'McConnell': 2, 'Davenport': 2, 'hit-run': 2, 'reprimanded': 2, 'pedestrians': 2, 'Stage': 2, 'planner': 2, 'Fighters': 2, 'fractures': 2, 'battalion': 2, "Gladden's": 2, 'starter': 2, 'Led': 2, "union's": 2, 'Mining': 2, 'Shiflett': 2, 'secretary-treasurer': 2, 'indecisive': 2, "d'etat": 2, 'Menderes': 2, 'pardoned': 2, 'Helping': 2, 'Patience': 2, 'detriment': 2, "Portland's": 2, 'Hatfield': 2, 'Kiwanis': 2, 'blueprints': 2, '$3.5': 2, 'Blaine': 2, 'Incumbent': 2, 're-election': 2, 'Seeking': 2, 'Sexton': 2, "denomination's": 2, 'Super': 2, 'Breakthrough': 2, '7,000': 2, "church's": 2, 'Engaging': 2, 'Surrounding': 2, 'ministerial': 2, 'mistrial': 2, 'acquittal': 2, 'Schwab': 2, 'Weinstein': 2, 'defraud': 2, 'Burbank': 2, 'winless': 2, 'Indications': 2, 'draught': 2, 'righthander': 2, 'scoreless': 2, 'two-run': 2, 'Catcher': 2, "House's": 2, 'Stepanovich': 2, 'Howser': 2, 'Kunkel': 2, 'Adair': 2, "Kunkel's": 2, 'tallies': 2, 'batter': 2, "Baltimore's": 2, 'ripened': 2, "Birds'": 2, '22-year-old': 2, "tonight's": 2, '6-foot': 2, 'Ky.': 2, "Hansen's": 2, 'rangy': 2, 'whiz': 2, 'Duren': 2, 'Milt': 2, 'Squad': 2, 'teammates': 2, 'festive': 2, 'Gaining': 2, "Jr.'s": 2, 'Purse': 2, 'Jockey': 2, 'Grimm': 2, '1.24': 2, '8,280': 2, 'celebrants': 2, 'stewards': 2, "Mills's": 2, 'quarter-mile': 2, 'straightaway': 2, 'Games': 2, 'bespectacled': 2, 'Sylvania': 2, 'unearned': 2, "team's": 2, 'Eldon': 2, 'Longhorn': 2, 'roster': 2, 'playoff': 2, 'ailing': 2, 'yardage': 2, '447': 2, 'Saxton': 2, 'surpassed': 2, '271': 2, 'second-half': 2, 'kickoff': 2, 'uncorked': 2, 'fullback': 2, 'crucified': 2, 'McNaughton': 2, 'hearsay': 2, 'Lubbock': 2, 'Baylor': 2, 'Aggies': 2, 'sprained': 2, 'Bills': 2, 'pre-season': 2, 'Leaguers': 2, 'Rabb': 2, 'Exclaimed': 2, 'Broncs': 2, 'Carmichael': 2, 'jarred': 2, 'tosses': 2, '361': 2, '355': 2, '149': 2, '189': 2, 'liveliness': 2, 'husky': 2, 'lefthander': 2, 'on-the-scene': 2, 'lagged': 2, 'Lefty': 2, 'Paschal': 2, 'McDaniel': 2, "Alusik's": 2, 'Wert': 2, 'Gaines': 2, '1:48': 2, 'Chico': 2, 'Kenny': 2, 'eluded': 2, 'batted': 2, "Green's": 2, '25th': 2, 'Diving': 2, "Boston's": 2, 'Writer': 2, 'pops': 2, 'heroics': 2, 'wagging': 2, '40-year-old': 2, 'no-hit': 2, "Giants'": 2, 'top-grade': 2, 'laurels': 2, 'Pennock': 2, 'Gomez': 2, 'Slaughter': 2, 'sluggers': 2, 'windy': 2, "Mays'": 2, 'video': 2, 'Reds': 2, 'Yogi': 2, 'Berra': 2, 'Blanchard': 2, '2-run': 2, 'Joey': 2, '5-run': 2, 'Lopez': 2, 'fouled': 2, 'Daley': 2, "Shaw's": 2, 'Gauer': 2, 'Brocklin': 2, 'Steelers': 2, 'Rensselaer': 2, 'Packers': 2, 'engrossed': 2, 'Waldorf-Astoria': 2, "Wagner's": 2, 'dais': 2, 'meritorious': 2, 'Named': 2, 'Gimbel': 2, 'disappointments': 2, 'Snead': 2, "golf's": 2, 'Dublin': 2, 'comeback': 2, 'Symington': 2, '$80,738': 2, 'heralded': 2, 'Sportsman': 2, 'Rochester': 2, 'incompetents': 2, 'meditating': 2, 'sacrilege': 2, 'self-sacrifice': 2, 'yen': 2, 'downtrodden': 2, 'victimized': 2, 'banshees': 2, 'duffers': 2, 'Thirteen': 2, 'loophole': 2, 'nicer': 2, 'relieves': 2, 'jangling': 2, 'head-on': 2, "Arnold's": 2, 'spongy': 2, 'Mauch': 2, 'Solly': 2, 'Broglio': 2, '4-0': 2, 'Cubs': 2, 'Haddix': 2, 'Boyer': 2, 'Busch': 2, 'Pirate': 2, 'Taussig': 2, 'groove': 2, 'Bucks': 2, 'Burgess': 2, 'Virdon': 2, 'blasting': 2, '7-6': 2, 'two-season': 2, "'49": 2, '5-5': 2, "'55": 2, 'Billikens': 2, 'Speakers': 2, 'Kieffer': 2, 'Bevo': 2, "Gordon's": 2, "Louis's": 2, 'Outstanding': 2, 'Billiken': 2, '1960-61': 2, 'runner-up': 2, 'Invitation': 2, 'Tournament': 2, 'Scherer': 2, 'defeats': 2, "Yankees'": 2, 'belted': 2, "Stengel's": 2, 'prod': 2, 'hitter': 2, 'mantle': 2, 'Commies': 2, 'Romantic': 2, 'Armour': 2, 'Hampton': 2, "bridegroom's": 2, 'measles': 2, 'Camilla': 2, 'starred': 2, 'off-beat': 2, 'Parichy': 2, 'Vero': 2, 'Q.': 2, 'bridal': 2, "Luke's": 2, 'Syria': 2, 'Arab': 2, 'Debutante': 2, "Molly's": 2, 'Balkan': 2, 'Lambert': 2, 'Burkes': 2, 'Sethness': 2, 'Consul': 2, "O'Sullivan": 2, 'ex-Mrs.': 2, 'stein': 2, 'debuting': 2, 'exec': 2, 'wed': 2, 'gals': 2, 'phonies': 2, 'Thrush': 2, 'biz': 2, 'Typical': 2, 'Freddie': 2, 'Fur': 2, 'worthiest': 2, 'Paree': 2, 'Trager': 2, "Nobody's": 2, 'Mets': 2, 'clashes': 2, 'Brandenburg': 2, 'dept.': 2, 'megaton': 2, 'sidled': 2, 'flicker': 2, 'masterful': 2, 'dynamo': 2, 'Twist': 2, 'Lorenz': 2, 'probate': 2, 'Gods': 2, 'patio': 2, 'celebrates': 2, 'Grandparents': 2, 'Mullenax': 2, 'Plaza': 2, 'Merrill': 2, 'Piero': 2, 'Cocktails': 2, 'juniors': 2, 'Mead': 2, 'Butler': 2, 'Carr': 2, 'Rickenbaugh': 2, 'Scarsdale': 2, 'compassionate': 2, 'pert': 2, 'Mom': 2, 'parolees': 2, 'mingle': 2, 'beggar': 2, 'sweets': 2, 'readjust': 2, 'all-American': 2, 'safari': 2, 'Vacancy': 2, 'souvenir': 2, 'Shamrock': 2, 'wall-to-wall': 2, 'carpeting': 2, 'Gay': 2, 'Ferris': 2, 'Coronado': 2, 'Monica': 2, 'Perkins': 2, 'Sequoia': 2, 'Frances': 2, 'Elvis': 2, 'Mortar': 2, 'Alton': 2, 'Pi': 2, 'bateau': 2, 'princesse': 2, 'stephanotis': 2, 'bridesmaids': 2, 'Mayfair': 2, 'newlyweds': 2, 'Corpus': 2, 'Christi': 2, 'Glenda': 2, "sister's": 2, 'Pampa': 2, 'Glison': 2, 'Gaston': 2, 'Ervin': 2, 'Grinsfelder': 2, 'Basin': 2, 'reproductions': 2, 'grillwork': 2, 'bric-a-brac': 2, 'Glazer': 2, 'Goodman': 2, 'Chance': 2, 'Clyde': 2, 'Newbold': 2, 'honorary': 2, 'Meet': 2, 'Artist': 2, 'Proceeds': 2, 'Marc': 2, 'Shoettle': 2, 'Blum': 2, 'Schultz': 2, 'co-chairmen': 2, 'Rosen': 2, 'Marella': 2, 'Orcutt': 2, 'Emmert': 2, 'Comus': 2, 'feted': 2, 'Vieux': 2, 'Carre': 2, 'Dane': 2, 'rejoin': 2, 'pl.': 2, 'masquerade': 2, 'Pierson': 2, 'Nairne': 2, 'Rowley': 2, 'taffeta': 2, 'frock': 2, 'greenish': 2, 'bodice': 2, '12:01': 2, "railroad's": 2, 'Salary': 2, 'furlough': 2, 'robbing': 2, '$18': 2, 'assailant': 2, 'Somerville': 2, 'second-degree': 2, 'paralyzed': 2, '229': 2, 'salting': 2, 'crews': 2, 'snowfall': 2, 'Sent': 2, 'banned': 2, 'Manor': 2, "Dresbach's": 2, 'Edgewater': 2, 'Tawes': 2, "Maryland's": 2, 'Ferdinand': 2, 'Delegates': 2, 'Nonresidential': 2, 'Pantas': 2, 'Convenience': 2, 'balconies': 2, 'Vital': 2, 'subs': 2, 'Nautilus': 2, 'Kroger': 2, "general's": 2, 'untold': 2, 'propeller': 2, 'refueling': 2, 'malice': 2, 'Cooperman': 2, 'indictments': 2, 'narcotic': 2, 'peddlers': 2, 'heroin': 2, 'Sears': 2, 'adjourned': 2, 'Pullings': 2, 'indicted': 2, '51st': 2, 'paycheck': 2, 'accosted': 2, 'Dunkel': 2, 'reformatory': 2, 'commuted': 2, '3211': 2, 'Corcoran': 2, 'brokerage': 2, 'skidded': 2, 'stepson': 2, 'Westphalia': 2, 'Ledge': 2, 'arson': 2, 'Locked': 2, 'deliberation': 2, 'homeowners': 2, 'Pankowski': 2, 'Christine': 2, 'sister-in-law': 2, 'Mall': 2, '480': 2, 'Dequindre': 2, 'Pohly': 2, '770': 2, 'motorist': 2, 'Sisk': 2, 'grader': 2, 'Scripps': 2, 'Belvidere': 2, 'Sarkees': 2, 'Correction': 2, 'Plea': 2, 'full-fledged': 2, 'squads': 2, 'Pinar': 2, 'disbanded': 2, 'Kegham': 2, 'by-laws': 2, 'tax-exemption': 2, 'aforementioned': 2, 'Wheel': 2, 'Insofar': 2, 'Coleman': 2, 'lacerations': 2, 'picketing': 2, 'Downtown': 2, 'Gather': 2, 'three-day': 2, "Friday's": 2, 'Kililngsworth': 2, 'Gettysburg': 2, 'Marietta': 2, 'Apartment': 2, "Blanchard's": 2, 'S.C.': 2, 'subdue': 2, 'intensifying': 2, 'Troup': 2, 'Bulloch': 2, 'allergic': 2, 'venom': 2, 'Cain': 2, 'Piedmont': 2, 'Snellville': 2, 'Calvary': 2, 'overturned': 2, 'skidding': 2, 'Hammett': 2, 'Rte.': 2, 'Lawrenceville': 2, "month's": 2, 'budgeted': 2, 'slackening': 2, 'pact': 2, 'converting': 2, '$8': 2, 'Juras': 2, "Field's": 2, 'regrets': 2, "commission's": 2, 'robber': 2, 'Grocery': 2, 'holdup': 2, 'Logan': 2, '50th': 2, '1886': 2, 'Employes': 2, '1565': 2, 'Clerks': 2, 'Durante': 2, 'Shrine': 2, 'interment': 2, 'Georgia-Pacific': 2, 'Youngsters': 2, 'full-scale': 2, 'Stephenson': 2, 'Kathleen': 2, 'Exhibition': 2, 'Wick': 2, 'Walters': 2, 'quartet': 2, 'Stephanie': 2, 'Zurcher': 2, 'Phyllis': 2, 'Carol': 2, 'Nyberg': 2, 'Tigard': 2, 'entrant': 2, 'swine': 2, 'Mill': 2, 'Grenier': 2, 'uninjured': 2, '$65': 2, 'Eddy': 2, 'Brook': 2, 'picketed': 2, "firm's": 2, 'Circle': 2, "Stone's": 2, 'Alva': 2, 'bumper': 2, 'denting': 2, 'Democratic-endorsed': 2, 'improperly': 2, 'Walsh': 2, "superintendent's": 2, "owners'": 2, 'Saul': 2, 'Claus': 2, 'Scores': 2, 'dimes': 2, '11:30': 2, '$50,000': 2, 'Merit': 2, 'Aurora': 2, 'Kretchmer': 2, 'wrongdoing': 2, 'Graduate': 2, 'N.J.': 2, 'peck': 2, 'Wilderness': 2, 'co-ordination': 2, 'Heinkel': 2, 'airstrip': 2, 'Reichenberg': 2, 'warhead': 2, 'stave': 2, "rocket's": 2, 'signaled': 2, 'Moments': 2, 'Casassa': 2, 'Molinari': 2, 'Figone': 2, 'grisly': 2, 'racketeer': 2, 'prosecutors': 2, 'Pesce': 2, 'deodorant': 2, '$12,500': 2, '$40,000': 2, 'undetermined': 2, 'Dearborn': 2, 'Charge': 2, 'underwriting': 2, '$12.50': 2, 'Guerin': 2, 'reams': 2, 'E.G.T.': 2, 'Frito': 2, 'run-up': 2, 'fittest': 2, '46th': 2, "1900's": 2, 'Factories': 2, 'Hardwicke-Etter': 2, 'Cen-Tennial': 2, 'burr': 2, "February's": 2, 'year-to-year': 2, 'Executives': 2, 'Sheraton-Dallas': 2, 'Fil': 2, 'Tech.': 2, 'Eaton': 2, 'Hammond': 2, 'Sunset': 2, 'Beryl': 2, 'Assn.': 2, 'Alto': 2, 'gauntlet': 2, 'conferees': 2, '1959-60': 2, 'Danger': 2, 'aggressively': 2, 'blackmail': 2, 'erasing': 2, 'hoped-for': 2, '8%': 2, 'paving': 2, '354': 2, 'highs': 2, 'Trading': 2, 'industrialist': 2, 'stockholder': 2, '$90': 2, 'dwindled': 2, 'Fairchild': 2, 'Camera': 2, '1930s': 2, 'three-way': 2, "builders'": 2, 'Houtz': 2, 'tilts': 2, 'upswing': 2, 'yardstick': 2, 'Tractor': 2, 'Merritt': 2, 'year-earlier': 2, 'Total': 2, 'subsidies': 2, 'I.R.S.': 2, 'cadet': 2, "taxpayer's": 2, "manufacturers'": 2, 'Voters': 2, '1%': 2, 'wholly-owned': 2, '$18.9': 2, 'tasteful': 2, 'Exposition': 2, 'luncheons': 2, 'showings': 2, 'timeless': 2, 'wrinkle': 2, 'Norell': 2, 'Irene': 2, 'femininity': 2, 'pinks': 2, 'reds': 2, 'starring': 2, 'motion-picture': 2, 'Goodbye': 2, 'Random': 2, 'Harvest': 2, 'Curie': 2, 'Pride': 2, 'Sunrise': 2, 'skeet': 2, 'ogled': 2, 'dutifully': 2, "SMU's": 2, 'groceries': 2, 'cafeterias': 2, '195': 2, 'chow': 2, 'mayonnaise': 2, 'jumpy': 2, 'flavored': 2, 'condiments': 2, 'Cabot': 2, 'mushrooms': 2, 'Perennian': 2, 'burl': 2, 'hand-woven': 2, 'permanence': 2, 'paneled': 2, 'recessed': 2, 'decorate': 2, 'dressers': 2, 'magenta': 2, 'Stagecoach': 2, 'Trail': 2, 'get-together': 2, 'calico': 2, 'Roquemore': 2, 'fun-loving': 2, 'Anywhere': 2, 'climaxed': 2, 'Jamaica': 2, 'photographing': 2, 'Bolker': 2, 'Becket': 2, 'Mmes.': 2, 'Stetson': 2, 'Leroy': 2, 'Wilshire': 2, 'Fritz': 2, 'tapestries': 2, 'uprisings': 2, 'raincoats': 2, 'crackpots': 2, 'subtitled': 2, "morning's": 2, 'postman': 2, 'Publisher': 2, 'residences': 2, 'Pen': 2, 'Craig': 2, 'Cynthia': 2, 'Todd': 2, 'Listed': 2, 'Windsor': 2, 'Raoul': 2, 'Laguna': 2, 'Ransom': 2, 'Chases': 2, 'Lockies': 2, 'scalloped': 2, 'tricked': 2, 'knocks': 2, 'Leland': 2, 'Alden': 2, 'tambourine': 2, 'augment': 2, 'classed': 2, 'slapstick': 2, "O'Clock": 2, 'Steak': 2, 'LaSalle': 2, 'Galt': 2, 'Ocean': 2, 'Skip': 2, 'Fike': 2, 'reminiscence': 2, 'Winds': 2, "Al's": 2, "Maestro's": 2, 'remodeling': 2, 'Latter': 2, 'shrimp': 2, 'Heilman': 2, 'plotting': 2, "Club's": 2, 'Gould': 2, 'Gill': 2, 'Mouse': 2, 'Bea': 2, 'Morley': 2, 'Carlo': 2, 'Dancers': 2, 'Bali': 2, 'Schenk': 2, 'Jacksonville': 2, 'Orlando': 2, 'Aquinas': 2, 'Subsequent': 2, "Communism's": 2, 'Anti-Communist': 2, 'antidote': 2, 'Jon': 2, 'city-wide': 2, 'Dade': 2, 'Lois': 2, 'Rae': 2, '7:45': 2, 'Riviera': 2, 'Successful': 2, 'Jorda': 2, 'Palermo': 2, 'five-month': 2, 'renowned': 2, 'Stern': 2, 'pianists': 2, 'Sleeping': 2, 'infantile': 2, 'captivating': 2, 'Precise': 2, 'Dukes': 2, 'Irina': 2, 'Kolpakova': 2, 'Alla': 2, 'Soloviev': 2, 'acrobatic': 2, 'Zubkovskaya': 2, 'Fairy': 2, 'courtly': 2, '$9': 2, 'Franciscans': 2, 'Adventures': 2, 'decadence': 2, 'Anita': 2, 'seaside': 2, 'Producer': 2, 'Fellini': 2, 'fairies': 2, 'four-letter': 2, 'heartbreaking': 2, 'Weeks': 2, '9:30': 2, '10:30': 2, 'Summer': 2, 'racy': 2, 'ha': 2, 'oases': 2, 'fair-weather': 2, 'Cadillacs': 2, 'craftsman': 2, 'heirs': 2, 'Tranquility': 2, 'armchairs': 2, 'redecoration': 2, 'rarity': 2, 'competed': 2, 'Transylvania': 2, 'Banner': 2, 'duplicated': 2, 'music-loving': 2, 'Forever': 2, 'Letitia': 2, 'Bouton': 2, 'curator': 2, "Rembrandt's": 2, 'Cathedral': 2, 'Gogh': 2, 'Boucher': 2, 'high-ceilinged': 2, '1500': 2, 'Accepted': 2, '5-day': 2, 'chatting': 2, 'antagonisms': 2, 'lull': 2, 'illusory': 2, 'one-sided': 2, 'deteriorating': 2, 'alarmingly': 2, 'stalemate': 2, 'blundered': 2, 'overreach': 2, 'miscalculation': 2, 'Iran': 2, 'disabuse': 2, 'onus': 2, 'biologist': 2, 'resourcefulness': 2, 'comradeship': 2, 'pitifully': 2, 'enrollments': 2, 'Commenting': 2, 'Professors': 2, 'low-key': 2, 'confirming': 2, 'intangibles': 2, 'high-sounding': 2, 'faked': 2, 'versed': 2, "students'": 2, 'ersatz': 2, 'disrepute': 2, "McClellan's": 2, 'Machinists': 2, 'unresponsive': 2, 'heavy-electrical-goods': 2, 'Accounting': 2, 'flex': 2, 'managements': 2, 'mea': 2, '211': 2, '214': 2, "management's": 2, 'ineptness': 2, 'fictitious': 2, 'pretends': 2, 'Recovery': 2, 'impolitic': 2, 'Landrum-Griffin': 2, 'palmed': 2, 'Wealth': 2, 'conspiracies': 2, '1825': 2, 'hypocrisies': 2, 'Savage': 2, 'Compare': 2, 'defends': 2, 'monopolistic': 2, 'Hoffa': 2, 'amend': 2, 'Aeronautics': 2, 'airlines': 2, 'closed-door': 2, '87': 2, 'foreign-policy': 2, 'precautionary': 2, 'battleground': 2, 'predictably': 2, 'calamity': 2, 'mourn': 2, 'parading': 2, 'acknowledgment': 2, '87th': 2, 'sluice': 2, 'masquerades': 2, 'menaced': 2, 'bottleneck': 2, 'breaching': 2, 'seniority': 2, 'dour': 2, 'internationalist': 2, 'Equal': 2, 'unscathed': 2, 'Threat': 2, 'caucus': 2, 'purged': 2, 'Wilbur': 2, 'forma': 2, 'bipartisan': 2, "Minnesota's": 2, 'three-fifths': 2, 'upped': 2, 'convening': 2, 'Electoral': 2, 'harrowing': 2, '72nd': 2, 'pros': 2, 'gaping': 2, 'rainstorm': 2, 'bogeyed': 2, 'trophy': 2, 'jitters': 2, 'three-round': 2, '210': 2, '213': 2, 'footnotes': 2, 'mano': 2, 'undisputed': 2, 'Instant': 2, 'horde': 2, 'cloudless': 2, 'contender': 2, 'birdies': 2, 'lining': 2, 'thunderous': 2, 'fairways': 2, 'mar': 2, 'overpowered': 2, 'punching': 2, 'four-wood': 2, '180-degrees': 2, 'bogeys': 2, 'teammate': 2, 'amiable': 2, 'thinning': 2, 'home-run': 2, 'epicure': 2, 'spurt': 2, 'Double': 2, 'Greenberg': 2, 'Extend': 2, 'air-conditioning': 2, 'Oldsmobile': 2, 'Fargo': 2, "Simpson's": 2, 'dark-haired': 2, '11-year-old': 2, 'candidly': 2, 'shuns': 2, 'Benched': 2, 'idols': 2, 'vow': 2, '100-yard': 2, 'fielders': 2, 'dullest': 2, 'disillusioned': 2, 'Caroline': 2, 'pal': 2, 'ensconced': 2, 'spills': 2, 'catapulted': 2, 'deplored': 2, 'brotherly': 2, 'Forte': 2, 'Prix': 2, 'balding': 2, 'Ace': 2, 'Stirling': 2, 'marveled': 2, 'captivated': 2, "Art's": 2, 'bellboys': 2, 'Klees': 2, 'Throw': 2, 'Basel': 2, 'Beyeler': 2, '$1,500,000': 2, 'speculated': 2, 'Break': 2, 'Bootle': 2, 'pretexts': 2, 'teahouse': 2, 'Surprised': 2, 'grads': 2, 'McGeorge': 2, 'Bundy': 2, 'Trustee': 2, 'Geneticist': 2, 'physiology': 2, 'Maynard': 2, '2,100': 2, 'endowment': 2, 'heady': 2, 'temperate': 2, 'paternalism': 2, 'unmatched': 2, 'Ordinarily': 2, 'cobalt': 2, 'Anaconda': 2, 'lumped': 2, 'carpenters': 2, 'gale': 2, 'une': 2, 'federalism': 2, 'Kasai': 2, 'Equator': 2, 'premier': 2, 'Publique': 2, 'tribesmen': 2, 'Terror': 2, 'civilians': 2, 'seceded': 2, 'Secretary-General': 2, 'Guinea': 2, 'Eire': 2, 'secessionist': 2, 'intervene': 2, 'exasperated': 2, 'Mobutu': 2, 'obstructionist': 2, 'directive': 2, 'unify': 2, 'smoldered': 2, 'flickered': 2, 'thorny': 2, 'Ladgham': 2, 'emissary': 2, 'stewardess': 2, 'Carnegey': 2, 'hijacked': 2, 'Peruvian': 2, 'radioed': 2, 'refuel': 2, 'McCauley': 2, 'Mullen': 2, 'swap': 2, 'hijackers': 2, "Cuba's": 2, 'embargo': 2, '160,000': 2, 'tacked': 2, 'enlivened': 2, 'crabs': 2, 'grapefruit': 2, 'haute': 2, 'outnumber': 2, '$32,000': 2, '186': 2, 'Slow': 2, 'Toll': 2, 'tolls': 2, '62': 2, 'default': 2, 'break-even': 2, 'competitively': 2, 'toured': 2, "Italy's": 2, 'Turin': 2, 'earns': 2, 'Underwood': 2, 'Idea': 2, 'textile-producing': 2, 'Pakistanis': 2, 'chafing': 2, 'bilateral': 2, 'takings': 2, 'nationalized': 2, 'Productivity': 2, 'Communist-led': 2, 'borrower': 2, 'five-cent': 2, 'rentals': 2, 'grist': 2, '15,000': 2, 'Confronted': 2, 'sparsely': 2, 'high-density': 2, 'microfilm': 2, 'interlibrary': 2, 'teletype': 2, 'quarter-century': 2, "system's": 2, 'brochures': 2, 'maligned': 2, '124': 2, '66': 2, 'convened': 2, 'Long-range': 2, 'reappraisal': 2, 'spate': 2, 'wade': 2, 'regularity': 2, 'Coosa': 2, 'area-wide': 2, 'delusion': 2, 'leeway': 2, 'low-grade': 2, 'brushfire': 2, 'beefed-up': 2, 'Emmerich': 2, 'Touring': 2, 'industrialization': 2, 'hunk': 2, 'abolished': 2, 'tyrant': 2, 'Betancourt': 2, 'Venezuelan': 2, 'benevolent': 2, 'Unquestionably': 2, 'overflowing': 2, 'Thereupon': 2, "Trujillo's": 2, 'mouthing': 2, 'tacit': 2, 'totalitarianism': 2, 'authoritarianism': 2, 'Cabin': 2, 'dismemberment': 2, 'Ulbricht': 2, 'illegally': 2, 'taunts': 2, 'step-by-step': 2, 'canyons': 2, 'unfenced': 2, 'unplowed': 2, 'ecological': 2, 'clinch': 2, 'hard-liquor': 2, 'Broadcasters': 2, 'Distilled': 2, 'Spirits': 2, 'unfairly': 2, 'fatuous': 2, 'livelier': 2, 'public-spirited': 2, 'pawn': 2, 'tacitly': 2, 'patrolled': 2, 'ETV': 2, '$1,000,000': 2, 'departs': 2, 'loquacious': 2, 'subside': 2, 'oratorical': 2, 'Harding': 2, 'FDR': 2, 'un': 2, 'dismembered': 2, 'atrocities': 2, 'demonstrably': 2, 'fantastically': 2, 'expediency': 2, 'reversal': 2, 'Telegraphers': 2, 'compensating': 2, 'Meditations': 2, 'bellowing': 2, 'hijacking': 2, 'Colombian': 2, 'demurrer': 2, 'felonious': 2, 'shockwave': 2, 'riddled': 2, 'ignite': 2, 'calming': 2, 'approvingly': 2, 'Goodbody': 2, 'indenture': 2, 'validate': 2, 'repayable': 2, 'Tract': 2, 'cooperated': 2, "Florida's": 2, 'Singer': 2, 'wizard': 2, "Germany's": 2, 'un-American': 2, 'subversive': 2, 'disagrees': 2, 'blaming': 2, 'purport': 2, 'fleas': 2, 'developers': 2, 'Closed': 2, 'anti-secrecy': 2, 'delegating': 2, 'loopholes': 2, 'expeditious': 2, 'Balaguer': 2, 'warships': 2, 'Trujillos': 2, 'takeover': 2, 'Bosch': 2, 'eradicate': 2, 'Matter': 2, 'Craft': 2, 'secession': 2, 'Organizations': 2, 'feuds': 2, 'bastion': 2, 'outsmarted': 2, 'shortening': 2, "Jackson's": 2, 'fedora': 2, 'prince': 2, "Hodges'": 2, 'Initial': 2, 'jobless': 2, 'Prosperity': 2, "builder's": 2, 'herons': 2, 'desirability': 2, 'conserving': 2, 'joyride': 2, "area's": 2, 'Carbondale': 2, 'Clair': 2, 'reformers': 2, 'primaries': 2, 'sachems': 2, 'Responsibility': 2, 'prerogatives': 2, 'all-powerful': 2, 'discourses': 2, 'statesmanship': 2, 'prosaic': 2, 'shipbuilding': 2, 'Airways': 2, "Taylor's": 2, 'Indochina': 2, 'level-headed': 2, 'grind': 2, 'nonpartisan': 2, 'stipulate': 2, 'hobbled': 2, 'leasing': 2, 'Borough': 2, 'Highways': 2, 'appropriating': 2, 'expediting': 2, 'Inter-american': 2, 'consolidating': 2, 'purge': 2, 'tightest': 2, 'unemotional': 2, 'Suburbs': 2, 'accuses': 2, 'selfless': 2, 'postmen': 2, 'creditors': 2, 'possum': 2, 'requisitioned': 2, '22,000': 2, 'Reason': 2, 'finishes': 2, 'Forgiveness': 2, 'grudges': 2, 'teen-ager': 2, 'toughest': 2, 'ruthlessly': 2, 'visualize': 2, 'riches': 2, 'vainly': 2, 'Theirs': 2, 'sacrificial': 2, 'bestow': 2, 'ostentatious': 2, 'ministered': 2, 'hooks': 2, 'slung': 2, "Podger's": 2, 'pre-history': 2, 'suddenness': 2, 'Alacrity': 2, 'rivaled': 2, 'crickets': 2, 'scary': 2, 'tucking': 2, 'inevitability': 2, 'patronizing': 2, 'bombings': 2, 'outbreak': 2, 'emboldened': 2, 'peaceable': 2, 'four-lane': 2, 'spies': 2, 'resolutely': 2, 'self-preservation': 2, 'hallowed': 2, 'oncoming': 2, 'ridiculously': 2, 'platoons': 2, 'autism': 2, 'stiffens': 2, 'crewel': 2, 'stylized': 2, 'Scandinavian': 2, 'wraps': 2, 'top-drawer': 2, "CDC's": 2, 'pre-primary': 2, 'afar': 2, 'pyramid': 2, 'Biggest': 2, '4-': 2, 'staked': 2, 'hopefuls': 2, 'aspirants': 2, 'Ziffren': 2, 'Northland': 2, 'espoused': 2, 'graphically': 2, 'Curtain': 2, 'Literary': 2, 'painstakingly': 2, 'lawful': 2, 'apogee': 2, 'clique': 2, 'Sochi': 2, 'McCloy': 2, 'sabre': 2, 'suspensions': 2, 'Atkinson': 2, 'baron': 2, 'Ziegfeld': 2, 'seafood': 2, 'Vera': 2, 'rimmed': 2, 'Inmates': 2, 'Prison': 2, 'Wider': 2, 'arbitration': 2, 'Prisoners': 2, 'Contemplating': 2, 'Lucius': 2, 'archives': 2, 'breakfasts': 2, 'congratulatory': 2, 'Revised': 2, 'perusal': 2, 'Galilee': 2, 'punctuation': 2, 'blessings': 2, 'Sermon': 2, 'cadence': 2, 'Originally': 2, 'pavements': 2, 'leathers': 2, 'weightlessness': 2, 'Styles': 2, 'Heels': 2, 'dressy': 2, 'hues': 2, 'tintable': 2, 'weaves': 2, 'lacey': 2, 'lustre': 2, 'nautical': 2, 'Designed': 2, 'luster': 2, 'highlight': 2, 'Broxodent': 2, 'brake': 2, 'detachable': 2, 'massage': 2, 'dystrophy': 2, 'enjoyable': 2, 'shimmy': 2, 'numbness': 2, 'tendons': 2, 'sclerosis': 2, 'cramp': 2, 'Cholesterol': 2, 'sluggish': 2, "buyer's": 2, 'Wisdom': 2, 'Lipchitz': 2, 'Sean': 2, 'Downs': 2, 'albums': 2, 'Previous': 2, "tourist's": 2, 'vocabularies': 2, 'bonus': 2, 'Recording': 2, 'Hillyer': 2, 'Benet': 2, 'fortify': 2, 'quiz': 2, 'irreparable': 2, '$2,000,000': 2, 'Westerner': 2, 'ballast': 2, 'non-existent': 2, "Daddy's": 2, 'playmate': 2, "Mother's": 2, "emperor's": 2, 'wanders': 2, 'oblivious': 2, 'bifocals': 2, 'unaccountably': 2, 'slap': 2, 'middle-age': 2, 'rasp': 2, 'ooze': 2, 'fair-sized': 2, 'Congressmen': 2, 'endorsement': 2, 'migrants': 2, 'well-to-do': 2, 'exemptions': 2, 'Preston': 2, 'Governors': 2, 'savior': 2, 'ensuring': 2, 'migrant': 2, 'Clemens': 2, 'disabilities': 2, 'vitriolic': 2, 'Rising': 2, 'week-ends': 2, 'outlying': 2, 'Judges': 2, 'DePaul': 2, 'Liberace': 2, '192': 2, 'Ways': 2, 'inaccuracy': 2, 'Congresswoman': 2, 'covert': 2, 'leased': 2, 'reek': 2, 'plus-one': 2, 'Gizenga': 2, 'oppressors': 2, 'Katangans': 2, 'Permit': 2, 'moneys': 2, 'biscuit': 2, 'Peep': 2, 'Legislation': 2, 'shipwreck': 2, 'Lastly': 2, 'manmade': 2, 'preparedness': 2, 'burglars': 2, 'landlords': 2, 'stalking': 2, 'Survival': 2, 'Eighty-seventh': 2, 'Transit': 2, 'Phone': 2, 'long-distance': 2, 'Visitors': 2, 'Jobs': 2, 'Cavanagh': 2, 'Negligence': 2, 'complimented': 2, 'Sokolsky': 2, 'Ghost': 2, 'Trimmer': 2, 'waits': 2, "Luther's": 2, 'Hymn': 2, 'Mighty': 2, 'Nagasaki': 2, 'Jagan': 2, 'Guiana': 2, 'home-grown': 2, 'posthumous': 2, "Ahmad's": 2, 'expressway': 2, 'Paint': 2, 'Fairmount': 2, 'thugs': 2, 'rapists': 2, 'push-ups': 2, 'Stans': 2, 'Escalation': 2, 'soothsayers': 2, 'apiece': 2, '30-': 2, 'infinitum': 2, 'Capable': 2, 'Crossman': 2, 'M.P.': 2, 'front-line': 2, 'commentators': 2, 'intransigence': 2, 'mausoleum': 2, 'chastisement': 2, 'Tales': 2, 'gallows': 2, 'punishments': 2, 'presentable': 2, 'applauding': 2, 'structurally': 2, 'crave': 2, 'commando': 2, 'carbines': 2, 'fanatical': 2, 'publicizing': 2, 'bigotry': 2, 'awnings': 2, 'inalienable': 2, 'salubrious': 2, 'ancillary': 2, 'hither': 2, 'sect': 2, 'wont': 2, 'invisibly': 2, 'descends': 2, 'holier-than-thou': 2, 'PHS': 2, 'embryonic': 2, 'leukemia': 2, 'AEC': 2, 'broom': 2, 'dilemmas': 2, 'presupposes': 2, 'confidently': 2, 'evaded': 2, 'Ecumenical': 2, 'Holiness': 2, 'reverses': 2, 'pervades': 2, '6.9': 2, 'penny-wise': 2, 'mollify': 2, 'economizing': 2, 'Principle': 2, "O'Brien": 2, 'going-over': 2, 'Lebanese': 2, 'ethically': 2, 'self-delusion': 2, 'asinine': 2, "Browning's": 2, 'Relative': 2, 'Skill': 2, 'conscripted': 2, 'perforce': 2, 'depersonalization': 2, 'despot': 2, 'privations': 2, 'catalytic': 2, 'clan': 2, 'granary': 2, 'scarcity': 2, 'calamitous': 2, 'bleed': 2, 'Algeria': 2, 'heightening': 2, 'Quemoy': 2, 'buildup': 2, 'hurriedly': 2, 'blacks': 2, 'exposes': 2, 'strategically': 2, 'Suez': 2, 'Castros': 2, 'Nkrumah': 2, 'materiel': 2, 'Suez-Hungary': 2, 'Tito': 2, 'unoriginals': 2, 'dramatist': 2, 'Nowadays': 2, 'bestseller': 2, 'Period': 2, 'originals': 2, 'Taste': 2, "Ireland's": 2, 'Re': 2, 'jaunty': 2, 'Conquering': 2, 'Dry': 2, 'Merry': 2, 'adapters': 2, 'Cooch': 2, 'Terpers': 2, 'Yorkers': 2, 'Arabian': 2, 'Nights': 2, 'burlesque': 2, 'epidermis': 2, 'papier-mache': 2, 'low-pitched': 2, 'reappear': 2, 'harem': 2, 'progeny': 2, 'fingertips': 2, 'improvisations': 2, 'bends': 2, 'crawls': 2, 'crass': 2, 'prohibit': 2, 'cosmopolitan': 2, 'voluble': 2, 'bubbled': 2, 'intriguingly': 2, 'Textile': 2, 'Serene': 2, 'Daughter': 2, 'Marlene': 2, 'divorcee': 2, 'seamen': 2, 'turtleneck': 2, 'button-down': 2, 'expressionist': 2, 'cityscapes': 2, 'tantrums': 2, 'roundly': 2, 'jailed': 2, 'spittle': 2, 'homemade': 2, 'gutters': 2, 'nudes': 2, 'primly': 2, 'uninitiated': 2, 'world-shaking': 2, 'twelve-hour': 2, 'rehash': 2, 'democratization': 2, 'kolkhoz': 2, 'kolkhozes': 2, 'admissions': 2, 'prides': 2, 'Lands': 2, 'Soviet-Chinese': 2, 'Chou': 2, 'twenty-year': 2, 'Albanian': 2, 'Albanians': 2, 'shameful': 2, 'appease': 2, 'Eleven': 2, 'tramped': 2, 'helmets': 2, 'Shiloh': 2, 'contretemps': 2, 'recoilless': 2, 'concealment': 2, 'camouflaged': 2, 'casualties': 2, 'Tenure': 2, 'sacrificing': 2, 'nationalisms': 2, 'Referring': 2, 'Frankly': 2, 'libertarians': 2, 'Hazlitt': 2, 'Mental': 2, 'Sp': 2, "Michael's": 2, 'equitably': 2, 'woefully': 2, 'Taken': 2, 'Hessian': 2, 'Steuben': 2, 'Cherokee': 2, 'clemency': 2, 'Capet': 2, 'incompetent': 2, 'Liberalism': 2, 'Congratulations': 2, 'delving': 2, 'Khrushchevs': 2, "Editor's": 2, 'journalists': 2, 'front-page': 2, 'boxed': 2, 'transcripts': 2, 'censored': 2, 'ABC': 2, 'Propaganda': 2, 'disintegrate': 2, 'Tobin': 2, 'Supplement': 2, 'commits': 2, 'formality': 2, 'commentaries': 2, "Watson-Watt's": 2, 'rebuttal': 2, 'Lectures': 2, 'falsehoods': 2, 'unclear': 2, 'discounted': 2, 'unjustifiable': 2, 'falsehood': 2, 'unlocks': 2, "orchestra's": 2, 'Weber': 2, 'buoyant': 2, 'Tannhaeuser': 2, 'operas': 2, 'Parsifal': 2, 'Kempe': 2, 'absurdities': 2, 'Shorter': 2, 'Horne': 2, 'impasse': 2, 'cancellation': 2, 'Paintings': 2, 'Meadows': 2, 'Lammermoor': 2, 'Franco': 2, 'eccentrics': 2, 'collisions': 2, 'Jerebohm': 2, 'wily': 2, 'blandly': 2, 'simplicities': 2, 'pageant': 2, 'pheasants': 2, 'conjures': 2, 'dungeon': 2, 'butlers': 2, 'Piccadilly': 2, 'Miguel': 2, 'Fifty-fifth': 2, 'escapades': 2, 'knight-errant': 2, 'squire': 2, 'seventeenth-century': 2, 'chivalry': 2, 'Nikolai': 2, 'lanky': 2, 'chivalrous': 2, 'hypocrites': 2, 'rogues': 2, 'caricature': 2, 'Directed': 2, 'studiously': 2, 'impious': 2, 'stilted': 2, 'Splendid': 2, 'comedians': 2, 'comically': 2, 'oftentimes': 2, 'wearisome': 2, 'poignancy': 2, 'deathbed': 2, 'haunts': 2, 'portentous': 2, 'Timex': 2, 'Lionel': 2, 'hearer': 2, "Crosby's": 2, 'closeups': 2, 'considerately': 2, 'Pee': 2, 'Wee': 2, 'Samples': 2, 'memorabilia': 2, 'bygone': 2, 'ovation': 2, 'stylization': 2, 'sextet': 2, 'coloratura': 2, 'outburst': 2, 'aurally': 2, 'injected': 2, 'Covent': 2, 'interruptions': 2, 'percussion': 2, 'Percussive': 2, 'Percussion': 2, 'brassy': 2, 'imprimatur': 2, 'impeccably': 2, 'unimpeachable': 2, 'studios': 2, 'storyline': 2, 'Naomi': 2, 'Boaz': 2, 'Gibbon': 2, 'recounting': 2, 'Francois': 2, 'Conservatory': 2, 'overriding': 2, 'drawback': 2, 'Brahmsian': 2, 'Bella': 2, 'Fleming': 2, 'Film': 2, 'Rachmaninoff': 2, 'Prelude': 2, 'treble': 2, 'romanticism': 2, 'unfailingly': 2, 'technicalities': 2, 'ill-equipped': 2, 'remnants': 2, 'hygiene': 2, 'bolder': 2, 'Brooding': 2, 'encumbered': 2, 'Bragg': 2, 'Britten': 2, 'earsplitting': 2, 'stomped': 2, 'vivacious': 2, 'pauses': 2, 'selectively': 2, 'mazurka': 2, 'Theatre-by-the-Sea': 2, 'Hearts': 2, 'Brooke': 2, 'adopts': 2, "hero's": 2, 'edgy': 2, 'flawless': 2, 'Hedison': 2, 'Osborne': 2, 'chap': 2, 'lingers': 2, 'spider': 2, 'Bolger': 2, 'evocations': 2, 'gowns': 2, "Students'": 2, 'perky': 2, 'Ought': 2, 'Abbott': 2, 'chorines': 2, 'Dora': 2, 'Floyd': 2, "Floyd's": 2, 'frolic': 2, 'hackneyed': 2, "era's": 2, 'hereabouts': 2, 'sterling': 2, 'objectivity': 2, 'healthily': 2, 'nightclub': 2, 'Hutton': 2, 'Yvette': 2, 'quicksilver': 2, "James's": 2, 'felicities': 2, "Henry's": 2, "Whitehead's": 2, 'aridity': 2, 'Josiah': 2, 'squealed': 2, 'belaboring': 2, 'truer': 2, 'unstrung': 2, 'necklace': 2, "Thurber's": 2, 'paean': 2, 'amusingly': 2, 'sneaky': 2, 'Wister': 2, 'essences': 2, 'reassuringly': 2, 'pen-and-ink': 2, 'unimpaired': 2, 'humanness': 2, 'piecemeal': 2, 'nightmarish': 2, 'Confucius': 2, 'lunchtime': 2, 'sardonic': 2, "Churchill's": 2, 'Everest': 2, 'accolade': 2, 'insubstantial': 2, 'epigrams': 2, 'Catfish': 2, 'wharf': 2, 'gullible': 2, 'fifty-cent': 2, 'bullies': 2, 'fable': 2, 'Burman': 2, 'decadent': 2, 'laureate': 2, 'fables': 2, 'readable': 2, 'appraisals': 2, 'mitigating': 2, 'disloyal': 2, 'implicated': 2, 'F.B.I.': 2, 'Morgenthau': 2, 'anti-Nazi': 2, 'inexcusable': 2, 'preconceptions': 2, 'wistful': 2, 'Provisional': 2, 'Bolsheviks': 2, 'debunking': 2, 'exemplify': 2, 'characterizations': 2, 'orations': 2, 'rouse': 2, 'Quiet': 2, 'superlative': 2, 'Innesfree': 2, 'Danaher': 2, 'matchmaker': 2, 'Flynn': 2, 'Foy': 2, 'mettle': 2, 'malevolence': 2, 'sneers': 2, 'intimidate': 2, 'authentically': 2, 'limber': 2, 'glide': 2, 'quickstep': 2, 'lovable': 2, "Pagnol's": 2, 'Paray': 2, 'sprinted': 2, 'workmanlike': 2, 'featureless': 2, 'Resnik': 2, 'Siepi': 2, 'Alvise': 2, 'Deller': 2, 'Vanguard': 2, 'BG': 2, 'chansons': 2, 'interregnum': 2, 'choruses': 2, 'catches': 2, 'obliterate': 2, 'Jannequin': 2, 'Monteverdi': 2, 'chronologically': 2, 'Rameau': 2, 'Musique': 2, 'out-of-the-way': 2, '18e': 2, 'Bodin': 2, 'Corelli': 2, 'En': 2, 'evocative': 2, 'Ensemble': 2, 'Recital': 2, 'Anton': 2, 'Haydn': 2, 'Josef': 2, 'Songs': 2, 'Mendelssohn': 2, 'Copland': 2, 'essentials': 2, "Chabrier's": 2, 'Gontran': 2, 'Chabrier': 2, 'tutoring': 2, 'libretto': 2, 'Cocteau': 2, 'unrecognized': 2, 'lumbering': 2, 'chubby': 2, 'Wander': 2, 'Been': 2, 'Rainbow': 2, 'pique': 2, 'Mort': 2, 'wedged': 2, 'bouffant': 2, 'encroaching': 2, 'rescuing': 2, 'wind-blown': 2, 'horribly': 2, 'Weep': 2, 'mellowed': 2, 'vocalists': 2, 'Stack': 2, 'vocalist': 2, 'Hannah': 2, 'drummer': 2, 'Evolution': 2, 'Hendricks': 2, 'hour-long': 2, 'resounding': 2, 'alto': 2, 'Isaacs': 2, 'Gilels': 2, 'ensue': 2, 'chantey': 2, 'French-Canadian': 2, 'Alwin': 2, 'visage': 2, "lion's": 2, 'conceiving': 2, 'Journey': 2, "Tamiris'": 2, 'refreshingly': 2, "anybody's": 2, 'Toobin': 2, 'Tchaikovsky': 2, 'introspective': 2, 'laced': 2, 'Chopin': 2, 'Wallenstein': 2, 'hallmarks': 2, 'gems': 2, 'Garrick': 2, 'LOC': 2, '1066': 2, 'LSO': 2, 'plaintive': 2, 'whisked': 2, 'lyricist': 2, '1065': 2, 'resourceful': 2, 'Sail': 2, 'Live': 2, 'Told': 2, 'conquerors': 2, 'tediously': 2, 'straggle': 2, 'dotting': 2, 'Dutton': 2, 'fjords': 2, 'dolphins': 2, "Maxwell's": 2, 'ransack': 2, 'glen': 2, 'idyll': 2, 'self-discovery': 2, 'solitude': 2, 'exhilarating': 2, "Mijbil's": 2, 'zoologist': 2, 'reviewer': 2, 'interpreting': 2, "Comedie's": 2, "Racine's": 2, 'clowns': 2, 'Pity': 2, 'hypocrite': 2, 'impersonation': 2, 'busiest': 2, 'Hirsch': 2, 'courtship': 2, 'no-nonsense': 2, "nobody's": 2, 'Reinhardt': 2, 'ill-fated': 2, 'guitarist': 2, 'Flea': 2, 'Belgium': 2, 'Djangology': 2, 'Quintet': 2, 'Saw': 2, 'Alcorn': 2, 'Beale': 2, 'Mischa': 2, 'syrupy': 2, 'Riegger': 2, 'Romanza': 2, 'potboiler': 2, 'woodwind': 2, 'undergoes': 2, 'artless': 2, 'misguided': 2, 'unresolved': 2, 'Alexandre': 2, 'Livshitz': 2, 'Bulba': 2, 'cavorting': 2, 'Sokolov': 2, 'Petipa-Minkus': 2, "love's": 2, 'adagio': 2, 'Moiseyeva': 2, 'Sergei': 2, 'frolicking': 2, 'eyewitness': 2, 'close-up': 2, 'insiders': 2, 'Rarely': 2, 'broody': 2, 'moody': 2, 'Efficiency': 2, 'chide': 2, 'Verreau': 2, 'shakily': 2, 'whiteness': 2, 'Carmen': 2, 'FM': 2, 'Advertisers': 2, '30-odd': 2, 'boasts': 2, 'deceit': 2, 'Advertising': 2, 'eloquently': 2, 'Saloon': 2, 'rooftop': 2, 'Wind': 2, 'vista': 2, 'Significant': 2, 'Dust': 2, 'diaries': 2, 'Wangenheim': 2, 'Stadtisches': 2, 'Fantasy': 2, 'head-tossing': 2, "conductor's": 2, 'inexact': 2, 'cosmologists': 2, 'cosmology': 2, 'Whitrow': 2, 'Theories': 2, 'expands': 2, 'gaps': 2, 'protons': 2, 'immeasurable': 2, 'unclouded': 2, 'long-sought': 2, 'brand-new': 2, 'jilted': 2, "Wesker's": 2, 'Wesker': 2, 'Seeming': 2, 'dedicates': 2, 'gilded': 2, "Squire's": 2, 'Rink': 2, 'Belvedere': 2, 'Papp': 2, 'overflowed': 2, 'inured': 2, 'simple-minded': 2, 'vivacity': 2, 'Nan': 2, 'Replied': 2, 'Yea': 2, "department's": 2, 'lighthearted': 2, 'regal': 2, 'lieder': 2, 'Schubert': 2, 'Wolf': 2, 'mannerism': 2, 'Clever': 2, 'additionally': 2, 'Ailey': 2, 'Lavallade': 2, "Ailey's": 2, 'Duel': 2, 'Erik': 2, 'prowess': 2, 'Brother': 2, 'Shepard': 2, 'seductive': 2, 'lifts': 2, 'slices': 2, 'labors': 2, 'metaphorical': 2, 'sniff': 2, 'guidebook': 2, 'Norwegian': 2, 'spattered': 2, 'invigoration': 2, 'tulips': 2, 'shaggy': 2, 'Vicenza': 2, 'pillared': 2, 'julep': 2, 'lamentations': 2, 'Poised': 2, "Reavey's": 2, 'off-Broadway': 2, 'stamina': 2, 'multitudinous': 2, 'programed': 2, 'Blomdahl': 2, 'Saturdays': 2, 'Moiseyev': 2, 'Dances': 2, 'hilarious': 2, 'juggling': 2, "'n'": 2, 'Canadians': 2, 'Tasmania': 2, 'aspen': 2, "Vermont's": 2, 'Berkshires': 2, 'Placid': 2, 'Farther': 2, 'Catskills': 2, 'mid-October': 2, '78': 2, 'Mackinac': 2, 'Shawnee': 2, 'Hiawatha': 2, 'Aspencades': 2, 'Rye': 2, 'carnival': 2, 'Hunt': 2, 'Territorial': 2, 'steamboat': 2, 'peacock': 2, 'McCullers': 2, 'reaffirm': 2, 'conceals': 2, 'deft': 2, 'repressive': 2, 'retelling': 2, 'anguished': 2, 'Filipino': 2, 'one-night': 2, 'harvests': 2, 'festivals': 2, 'Niagara': 2, 'Galena': 2, 'Purple': 2, 'Delon': 2, 'foot-loose': 2, 'Norma': 2, 'Callas': 2, 'venomous': 2, 'beriberi': 2, 'fungus': 2, 'balmy': 2, 'frostbite': 2, 'Boating': 2, 'Pleasure': 2, 'breezes': 2, 'harbors': 2, 'Rey': 2, 'Inland': 2, 'laps': 2, '500-mile': 2, 'gusty': 2, 'undependable': 2, 'cruisers': 2, 'Brazos': 2, 'pirate': 2, 'waterway': 2, 'Pontchartrain': 2, 'nobleman': 2, 'Mille': 2, 'Favorites': 2, 'denouement': 2, 'modicum': 2, 'formalities': 2, '105': 2, 'adhesion': 2, '165': 2, 'volcano': 2, 'ably': 2, 'invincible': 2, "Montgomery's": 2, 'poverty-stricken': 2, 'Monty': 2, 'reunited': 2, 'militarist': 2, 'Lanza': 2, 'vigilant': 2, 'clucks': 2, 'consume': 2, 'automated': 2, 'spinach': 2, 'tonics': 2, 'high-protein': 2, '8-oz.': 2, 'Physiologist': 2, 'Eat': 2, 'Physiological': 2, 'rumble': 2, 'blocky': 2, 'Pursuing': 2, 'logged': 2, 'contadini': 2, 'fleshy': 2, 'Neapolitan': 2, 'metabolism': 2, 'insidious': 2, '1,600': 2, 'sprue': 2, 'premiums': 2, 'restricts': 2, 'adjusts': 2, 'oz.': 2, 'satiety': 2, 'overeating': 2, 'delicacies': 2, 'fishes': 2, 'cupboard': 2, 'hauls': 2, 'fatalities': 2, 'waxy': 2, 'adrenal': 2, 'hormones': 2, 'circulatory': 2, 'culminate': 2, 'piles': 2, 'poly-unsaturated': 2, 'objectification': 2, 'misconceptions': 2, 'superstitions': 2, 'devils': 2, 'Abigail': 2, 'Parris': 2, 'ken': 2, "Devil's": 2, 'diametrically': 2, 'inculcation': 2, 'numinous': 2, 'separable': 2, 'misrepresents': 2, 'conceptuality': 2, 'ciphers': 2, 'unconvincing': 2, 'pronouncements': 2, 'mythologies': 2, 'demythologize': 2, 'demythologized': 2, 'foolishness': 2, 'alienate': 2, 'sacrificium': 2, 'irreversible': 2, 'distinctively': 2, 'Niebuhr': 2, 'affirming': 2, 'unconditionally': 2, 'untenable': 2, 'indefensible': 2, 'qualifies': 2, 'frees': 2, 'Promotion': 2, 'Representing': 2, 'unauthorized': 2, 'Octave': 2, 'engender': 2, 'unpublished': 2, '19th-century': 2, "1840's": 2, "1850's": 2, 'disloyalty': 2, 'keenest': 2, 'recounted': 2, 'chapels': 2, 'Anglicans': 2, 'breakwater': 2, 'reciting': 2, 'reclaim': 2, 'recite': 2, 'dowry': 2, 'venerated': 2, 'canonized': 2, 'un-English': 2, 'Universities': 2, 'Liverpool': 2, 'Sacrifice': 2, 'Bells': 2, 'nun': 2, 'Lords': 2, 'votive': 2, 'swoops': 2, 'carnal': 2, 'whence': 2, 'systematizing': 2, 'beguiled': 2, 'disobedient': 2, 'carelessness': 2, 'prompts': 2, 'parallels': 2, 'nadir': 2, 'pitied': 2, 'irremediable': 2, 'ceasing': 2, 'deliverance': 2, "Adam's": 2, 'naturalness': 2, 'Ezra': 2, 'judiciously': 2, 'legitimately': 2, 'Unitarianism': 2, 'Frothingham': 2, 'Unitarians': 2, 'expel': 2, 'escutcheon': 2, "Parker's": 2, 'attest': 2, 'burly': 2, 'Waldo': 2, "Emerson's": 2, 'loins': 2, 'shabbily': 2, 'realms': 2, 'contagion': 2, 'cherishing': 2, 'Sumner': 2, 'commonplaces': 2, 'interrogation': 2, 'inspections': 2, 'Opinion': 2, 'hyperbole': 2, 'sermons': 2, 'founders': 2, 'evaporated': 2, 'decorum': 2, 'arraigned': 2, 'capitalists': 2, 'preachers': 2, 'remorseless': 2, 'professing': 2, 'Andrews': 2, 'dominating': 2, 'Truth': 2, 'Criticism': 2, 'inculcated': 2, 'floundering': 2, 'chasm': 2, 'modernists': 2, 'overreached': 2, 'dearest': 2, 'giveth': 2, 'trusteth': 2, 'whosoever': 2, 'believeth': 2, 'perish': 2, "Jesus'": 2, 'flooding': 2, 'necks': 2, 'suicides': 2, '80,000': 2, 'longings': 2, 'confessional': 2, 'unfounded': 2, 'tellers': 2, 'frivolity': 2, 'devour': 2, 'loudspeakers': 2, 'apostle': 2, 'Babylonians': 2, "Ch'in": 2, '220': 2, 'wei': 2, 'culminated': 2, '605': 2, 'cosmological': 2, 'multiplies': 2, 'overshadowed': 2, 'erased': 2, 'Five-Elements': 2, 'Functions': 2, 'fives': 2, 'Scholars': 2, 'stifle': 2, 'Yin-Yang': 2, 'axial': 2, 'sinuous': 2, 'Honan': 2, 'correspondingly': 2, 'wayside': 2, 'Visitation': 2, 'outlining': 2, 'devotions': 2, 'discipleship': 2, 'refreshment': 2, 'Duties': 2, 'solicited': 2, 'finder': 2, 'refreshments': 2, 'Conduct': 2, 'catechism': 2, 'Invite': 2, 'crescendo': 2, 'Provide': 2, 'Inspiring': 2, 'Guidance': 2, 'Care': 2, 'Institutions': 2, 'Interfaith': 2, 'inadequacies': 2, 'non-Christians': 2, 'incarnate': 2, 'Buddhists': 2, 'sects': 2, 'Muslims': 2, 'jurists': 2, 'succinctly': 2, 'determinedly': 2, 'Comparable': 2, 'multitudes': 2, "Weigel's": 2, 'Hinduism': 2, 'Leslie': 2, 'absoluteness': 2, 'unintended': 2, 'efficaciously': 2, 'analyzes': 2, 'unforeseen': 2, 'non-political': 2, 'devastation': 2, 'improbable': 2, 'proximate': 2, 'capitulation': 2, 'Orwell': 2, 'irredeemable': 2, 'misshapen': 2, 'amass': 2, 'brutally': 2, 'preconditioned': 2, 'habitable': 2, 'fright': 2, 'endures': 2, 'endurable': 2, 'one-sixth': 2, 'NAREB': 2, 'colloquium': 2, 'forthrightness': 2, 'buyer': 2, 'professionalism': 2, 'anticipates': 2, 'undermined': 2, 'omission': 2, 'Judicial': 2, 'ethicist': 2, 'attaches': 2, 'chunk': 2, 'raging': 2, 'Milky': 2, 'ellipses': 2, 'negatively': 2, 'immaterial': 2, 'symmetrical': 2, 'thirty-one': 2, 'connexion': 2, 'cognizance': 2, 'malicious': 2, 'offender': 2, 'granddaughter': 2, 'mend': 2, 'revivalism': 2, 'Transcendentalism': 2, 'Whitman': 2, 'parentage': 2, 'Saints': 2, 'Hopkinsian': 2, 'alleviation': 2, 'Inner': 2, 'emancipate': 2, 'Greenleaf': 2, "Finney's": 2, 'Oberlin': 2, 'Beecher': 2, 'Tappan': 2, 'worshipped': 2, 'otherworldly': 2, 'puissant': 2, 'alternation': 2, 'countrywide': 2, 'constraint': 2, 'adultery': 2, 'urns': 2, 'Taoists': 2, 'Quietist': 2, 'unchanging': 2, 'underwent': 2, 'superhuman': 2, 'bonzes': 2, 'Promoters': 2, 'practicality': 2, 'redeem': 2, 'Proponents': 2, 'Quietism': 2, "Ch'an": 2, 'perturbations': 2, 'Infinite': 2, 'indwelling': 2, 'cognitive': 2, 'irreverence': 2, 'riddles': 2, 'recluse': 2, 'Tien': 2, 'appeased': 2, 'mealtime': 2, 'Zendo': 2, 'Plenary': 2, 'Pius': 2, '1778': 2, 'incorruptible': 2, 'abides': 2, 'blemish': 2, '5-7': 2, 'Galatians': 2, 'worshipful': 2, 'sacraments': 2, 'flogged': 2, 'circulate': 2, 'Granville': 2, 'roving': 2, 'Sherrill': 2, 'milks': 2, 'deadliest': 2, 'sanctimonious': 2, 'Sharp': 2, 'Rumors': 2, 'Diario': 2, 'stoned': 2, 'throes': 2, 'paredon': 2, 'millionaire': 2, 'Paredon': 2, 'schoolmates': 2, 'entrusted': 2, 'Jean-Paul': 2, "Henri's": 2, 'shapely': 2, 'gym': 2, 'Pullover': 2, 'lats': 2, 'deltoids': 2, 'pumped-up': 2, 'dumbbell': 2, 'classically': 2, 'serratus': 2, 'Pushup': 2, 'Incline': 2, 'incline': 2, 'hallmark': 2, 'high-set': 2, 'high-rep': 2, 'definition-specialization': 2, 'bodybuilders': 2, 'spectacularly': 2, 'facet': 2, 'cables': 2, 'riotous': 2, 'unimproved': 2, 'fingered': 2, 'germinate': 2, 'seedbed': 2, 'coddled': 2, 'rooting': 2, 'thrifty': 2, 'transplant': 2, 'pulverized': 2, 'thawing': 2, 'unheated': 2, 'greenhouse': 2, 'strawberries': 2, 'bobby': 2, 'sickly': 2, 'prolific': 2, 'graded': 2, "grocer's": 2, "plant's": 2, 'poisons': 2, 'unsaturated': 2, 'diets': 2, 'bewitched': 2, "opponent's": 2, 'ICBMs': 2, 'trajectory': 2, 'cinders': 2, '3,000-foot': 2, 'disperse': 2, 'VTOL': 2, 'takeoff': 2, 'vertically': 2, 'disarm': 2, 'psi': 2, 'discreetly': 2, 'reissue': 2, 'Babin': 2, 'vibrancy': 2, 'markings': 2, 'Pro': 2, 'collaborate': 2, 'indulgent': 2, 'magnificence': 2, 'Thing': 2, 'Caruso': 2, 'Toscanini': 2, 'spotting': 2, 'Scheherazade': 2, 'obtrudes': 2, 'clicks': 2, 'timbre': 2, 'LP': 2, 'charms': 2, 'suave': 2, "Wolff's": 2, 'Forty-six': 2, 'Betsey': 2, "Children's": 2, 'Cadet': 2, "Ass'n": 2, 'Journalism': 2, 'Scholarship': 2, '4:45': 2, 'Hone': 2, 'announcer': 2, 'campaigners': 2, 'Holyoke': 2, 'Setter': 2, 'Brumby': 2, 'Afghan': 2, 'Entries': 2, 'Percy': 2, 'Contest': 2, 'Intermediates': 2, 'Intermediate': 2, 'Terrier': 2, 'trophies': 2, 'Grande': 2, 'proprieter': 2, '40,000,000': 2, 'heaviest': 2, 'Texoma': 2, 'sleek': 2, 'outboards': 2, 'canoes': 2, 'accommodating': 2, 'phenomenal': 2, 'waterways': 2, 'Fees': 2, 'Ignorance': 2, 'Safety': 2, 'NAEBM': 2, 'booklets': 2, 'dine': 2, 'ever-increasing': 2, 'Currently': 2, 'pertain': 2, 'interact': 2, 'turnout': 2, 'turnouts': 2, 'flange': 2, 'wedge-shaped': 2, 'sanding': 2, "5-3/4''": 2, 'Solder': 2, 'Placement': 2, 'Tap': 2, "3-3/4''": 2, 'solder': 2, 'align': 2, 'spacer': 2, 'Locate': 2, 'Draw-file': 2, 'chamfer': 2, "1-1/4''": 2, 'snug': 2, 'hack': 2, 'Endeavor': 2, 'rotate': 2, 'mathematician': 2, 'pave': 2, 'stroking': 2, "engine's": 2, 'one-quarter': 2, 'Dimensions': 2, 'Compression': 2, "cylinder's": 2, 'Cylinder': 2, 'beaker': 2, 'micrometer': 2, 'Applying': 2, 'domed': 2, 'displaced': 2, 'Tire': 2, 'Raceway': 2, '2:25': 2, 'Kimberly': 2, 'Gal': 2, 'Heel-Lotus': 2, 'Heel-Miracle': 2, 'work-out': 2, 'Stardel': 2, 'Pride-Starlette': 2, 'Mon-Fay': 2, 'Mon-Columbia': 2, 'Mon-Goddess': 2, '2:32.2': 2, 'harnessed': 2, 'crupper': 2, 'Torrid': 2, 'sorrel': 2, 'Sampson': 2, 'Dream-Miss': 2, 'Valentine': 2, 'Grattan': 2, '2:32': 2, '2:40': 2, 'Spark': 2, "Faber's": 2, 'last-named': 2, 'Dares': 2, 'Gene-Princess': 2, 'Grapes': 2, 'Trader': 2, '2:30-:34.3': 2, '2:30.3-:36.1': 2, '2:38': 2, 'Scarlet': 2, 'Mar': 2, 'Lullwater': 2, '2:20': 2, 'Tiger': 2, '2:26': 2, '2:22': 2, '2:04.2': 2, '2:02.3': 2, 'Creed': 2, 'Tan': 2, 'strictest': 2, '$110': 2, 'whitetail': 2, 'deadliness': 2, 'Marlin': 2, "Marlin's": 2, '240-grain': 2, 'sapling': 2, '6-1/2': 2, 'fps': 2, 'varmint': 2, 'top-quality': 2, 'small-game': 2, 'rim-fire': 2, 'FN': 2, 'bores': 2, '$170': 2, "1961's": 2, 'top-tang': 2, '122': 2, '21-inch': 2, '12-1/2-inch': 2, "beginner's": 2, 'pump-action': 2, 'scattergun': 2, 'sighting': 2, 'Finland': 2, 'Coaching': 2, 'prospered': 2, 'upland': 2, 'redwood': 2, 'Breakfast': 2, 'Gazing': 2, 'hostler': 2, 'rum': 2, 'botanists': 2, 'fir': 2, 'incense': 2, 'breakfasted': 2, 'adjoined': 2, 'Rubber': 2, 'Whiskey': 2, 'napkins': 2, 'coachmen': 2, 'Kirkpatrick': 2, "Palace's": 2, 'seasoning': 2, 'Belmont': 2, 'matchless': 2, 'greased': 2, 'hard-boiled': 2, 'cayenne': 2, "Ladies'": 2, 'piquant': 2, 'coppery': 2, 'teaspoonful': 2, 'Moorish': 2, 'clatter': 2, 'dashboard': 2, 'redwoods': 2, 'furrowed': 2, 'splashes': 2, 'bins': 2, 'cloves': 2, 'six-foot': 2, 'dryness': 2, 'wintry': 2, 'crackle': 2, 'bakery': 2, 'waning': 2, 'baker': 2, 'peel': 2, 'photogenic': 2, 'battlefields': 2, 'Lancaster': 2, 'Return': 2, 'Adirondack': 2, 'ferry': 2, 'weekday': 2, 'Cypress': 2, 'Seaquarium': 2, 'Jungle': 2, 'Yorktown': 2, 'Gatlinburg': 2, 'Charleston': 2, 'Natchez': 2, 'profusion': 2, 'Exposure': 2, 'shafts': 2, 'synchronized': 2, 'unfold': 2, 'hatched': 2, 'Abilene': 2, 'ex-President': 2, 'travelogue': 2, 'exposures': 2, 'Bryce': 2, 'fanciful': 2, 'highpoint': 2, 'Built': 2, 'haphazard': 2, 'boulevards': 2, 'mosques': 2, 'Founded': 2, '1453': 2, 'vestige': 2, 'Pan': 2, 'hubs': 2, 'liners': 2, 'Seventeenth': 2, 'Emperors': 2, 'mosque': 2, 'Sixteenth': 2, 'Ephesus': 2, 'Heliopolis': 2, 'emperors': 2, '196': 2, 'Crusaders': 2, 'entwined': 2, 'chant': 2, 'Bayezit': 2, 'overlooking': 2, 'flaky': 2, 'cistern': 2, 'porcelain': 2, 'portico': 2, 'Throne': 2, 'cross-legged': 2, 'pearls': 2, 'basting': 2, 'halves': 2, 'desserts': 2, 'forks': 2, 'Melamine': 2, 'saucers': 2, 'oilcloth': 2, 'A-1': 2, 'mugs': 2, 'Decide': 2, 'bureaus': 2, 'skillet': 2, 'Bologna': 2, 'mushroom': 2, 'Feuchtwanger': 2, 'grilled': 2, 'toasted': 2, 'sedately': 2, 'juices': 2, 'Bring': 2, 'horse-radish': 2, '1/3': 2, 'burners': 2, 'tasty': 2, 'sweet-sour': 2, 'Mustard': 2, 'broiler': 2, 'tidbits': 2, 'Simmer': 2, 'moisten': 2, 'caraway': 2, 'gashes': 2, 'Stick': 2, 'pinching': 2, 'patties': 2, 'grated': 2, 'glazing': 2, 'Stoneware': 2, 'one-stroke': 2, 'cones': 2, 'glazes': 2, 'Allow': 2, 'dampness': 2, 'Slight': 2, 'roughened': 2, 'bisque': 2, 'unfired': 2, 'plaque': 2, 'Stained': 2, 'Paperweight': 2, 'undercut': 2, 'eraser': 2, 'Jars': 2, 'Pattern': 2, "3/16''": 2, 'reinforcing': 2, '08': 2, 'Glaze': 2, 'matt': 2, 'sponged': 2, '06-05': 2, 'shaker': 2, 'coils': 2, 'stopper': 2, 'Handle': 2, 'dowel': 2, 'dampen': 2, 'Vases': 2, 'wick': 2, 'purled': 2, 'Thread': 2, '5-foot': 2, 'Merc': 2, 'mph': 2, 'skiis': 2, 'Gator': 2, '565': 2, '13/16-inch': 2, 'silicon': 2, 'Packing': 2, 'Weldwood': 2, 'lapped': 2, '3/8-inch': 2, 'notched': 2, 'bilge': 2, 'misalignment': 2, 'resin-saturated': 2, 'laminated': 2, 'fairing': 2, '42-inch': 2, 'trimming': 2, 'rough-sanded': 2, 'decking': 2, 'five-gallon': 2, 'bonded': 2, 'handyman': 2, 'scaled': 2, 'accessibility': 2, 'informative': 2, 'carport': 2, 'wiring': 2, 'louvers': 2, '1/8-inch': 2, 'gable': 2, 'woodworking': 2, 'pulleys': 2, 'Feeds': 2, 'adjustable': 2, 'slowest': 2, 'hardness': 2, "Hon'ble": 2, 'affording': 2, 'subscribing': 2, 'Travels': 2, 'Haverhill': 2, 'engraving': 2, 'herewith': 2, '6000': 2, 'tavern': 2, 'Templeman': 2, 'Finley': 2, 'advertisement': 2, 'Chain': 2, '1827': 2, 'declivity': 2, 'Fairmont': 2, 'Eli': 2, 'railhead': 2, 'inclement': 2, 'tokens': 2, 'Brigadier': 2, 'burnings': 2, 'Corder': 2, 'torch': 2, 'unrewarding': 2, 'grounding': 2, 'trek': 2, 'pool-side': 2, 'lashes': 2, 'coerce': 2, 'beforehand': 2, 'lingo': 2, 'inadvertently': 2, 'swimmers': 2, 'alfresco': 2, 'usher': 2, 'conveniences': 2, 'horseplay': 2, 'matting': 2, 'plunges': 2, 'pristine': 2, 'vacuuming': 2, '8-inch': 2, '6-inch': 2, 'dramatizes': 2, 'prefabricated': 2, 'glass-fiber': 2, 'harmed': 2, 'colds': 2, 'godsend': 2, 'Housekeeping': 2, 'repainting': 2, 'Clothes': 2, 'naps': 2, 'radiators': 2, 'knotty': 2, 'oversize': 2, 'rambling': 2, 'releasing': 2, 'winters': 2, 'thrower': 2, 'Cooling': 2, 'compressor': 2, 'Attention': 2, 'pare': 2, 'well-designed': 2, '$11': 2, 'overhangs': 2, 'Drawn': 2, 'light-colored': 2, 'Avoid': 2, 'Begin': 2, 'Quality': 2, 'cools': 2, 'geological': 2, 'Shape': 2, "fisherman's": 2, 'well-trained': 2, 'modernism': 2, 'tongue-in-cheek': 2, 'skeptics': 2, 'Bloch': 2, 'life-long': 2, 'broadcastings': 2, 'migrated': 2, 'crystallizing': 2, 'conscription': 2, 'Fascist': 2, 'defection': 2, 'traditionalism': 2, 'torrents': 2, 'Slavic': 2, 'harmonic': 2, 'orchestrations': 2, 'heaviness': 2, 'florid': 2, 'dialectics': 2, 'blunder': 2, 'presuming': 2, 'Les': 2, 'admirers': 2, 'patchwork': 2, 'by-products': 2, 'protagonist': 2, '20th-Century': 2, 'fairy': 2, 'Musicians': 2, 'watercolorists': 2, 'backdrop': 2, 'discerning': 2, 'Chauncey': 2, 'lightest': 2, 'darkest': 2, 'finer': 2, 'crispness': 2, 'inspecting': 2, 'watercolorist': 2, 'sable': 2, 'sienna': 2, 'Winsor': 2, 'cadmium': 2, 'ochre': 2, 'elaboration': 2, 'foreground': 2, 'progression': 2, 'vicarious': 2, 'zodiacal': 2, 'natal': 2, 'Ranger': 2, 'Rockport': 2, 'memberships': 2, 'tar': 2, 'Olympics': 2, 'somersault': 2, 'stunts': 2, 'cartwheels': 2, 'gyms': 2, 'mats': 2, 'dashes': 2, 'chinning': 2, 'chin-up': 2, 'Push-ups': 2, 'Handstands': 2, 'Drop': 2, 'tumbler': 2, 'bio-medicine': 2, 'electrocardiograph': 2, 'audio': 2, 'originates': 2, 'color-TV': 2, 'Berkely': 2, 'Zworykin': 2, 'orthicon': 2, 'one-twentieth': 2, 'synchronous': 2, 'dioxide': 2, 'medically': 2, 'Sonar': 2, 'transducers': 2, 'traverse': 2, 'spleen': 2, 'catheter': 2, 'capacitor': 2, 'gastrointestinal': 2, 'pulsing': 2, 'cartilage': 2, 'Baum': 2, 'epoxy': 2, '90-degree': 2, 'integrates': 2, 'scans': 2, 'Anders': 2, 'wigmaker': 2, 'matriculate': 2, 'dormitory': 2, 'pharmacy': 2, 'alkalis': 2, 'Schelling': 2, 'Elector': 2, 'quixotic': 2, '1782': 2, '1800': 2, 'Davy': 2, 'pharmaceutical': 2, '1813': 2, 'Sur': 2, 'repulsions': 2, 'galvanic': 2, '1814': 2, 'Esmarch': 2, 'magnetized': 2, 'Beccaria': 2, 'cause-and-effect': 2, 'unimpressive': 2, 'Knowing': 2, "drug's": 2, 'additive': 2, 'anti-infective': 2, 'oxytetracycline': 2, 'shipment': 2, 'feed-lot': 2, 'Prevention': 2, 'rhinotracheitis': 2, 'vaccination': 2, 'breeding': 2, 'Feeder': 2, 'fattening': 2, 'Include': 2, 'medication': 2, 'Improves': 2, 'metabolic': 2, 'registry': 2, 'Bacillus': 2, 'subtilis': 2, 'low-moisture': 2, '2-5': 2, 'lactating': 2, 'legume': 2, 'propionate': 2, 'Helps': 2, 'Dried': 2, 'rumen': 2, 'lactate': 2, 'Fence-line': 2, 'Selecting': 2, 'fence-line': 2, 'Filling': 2, 'silos': 2, 'discretionary': 2, 'Geographic': 2, 'acquisitions': 2, 'branded': 2, 'pre-selling': 2, 'Selective': 2, 'high-quality': 2, 'Distribution': 2, 'influencing': 2, 'shepherd': 2, 'qualitatively': 2, 'geared': 2, 'crux': 2, 'lengthen': 2, 'catalogs': 2, 'curricular': 2, 'Occupational': 2, 'coverings': 2, 'supervises': 2, 'Consultation': 2, 'Participation': 2, 'Considerable': 2, 'repute': 2, 'cents-per-hour': 2, 'Holidays': 2, 'midweek': 2, 'boiler': 2, 'prepackaged': 2, 'second-': 2, 'audited': 2, 'fill-ins': 2, 'Retirement': 2, 'hourly': 2, 'distributes': 2, 'itemizing': 2, 'supplemental': 2, 'drinkers': 2, 'Choose': 2, 'non-contributory': 2, 'retires': 2, 'illnesses': 2, 'Eating': 2, 'concessionaire': 2, 'rap': 2, 'replacements': 2, 'Sporting': 2, 'diligent': 2, 'SAAMI': 2, 'Project': 2, 'Events': 2, 'Babylon': 2, 'ever-growing': 2, 'primed': 2, 'campground': 2, 'pup': 2, 'Pop': 2, 'sunshades': 2, 'stoves': 2, 'lanterns': 2, 'campgrounds': 2, 'Seashore': 2, 'Camping': 2, 'campsites': 2, 'binoculars': 2, '$29': 2, 'splits': 2, '$10.50': 2, '$9.50': 2, 'over-emphasized': 2, 'status-conscious': 2, 'contributor': 2, 'supervisory': 2, 'individual-contributor': 2, 'GE': 2, 'vp': 2, 'gm': 2, 'Advanced': 2, 'abundantly': 2, 'fad': 2, 'first-level': 2, 'engineering-management': 2, 'divisional': 2, 'formalize': 2, 'longevity': 2, 'remuneration': 2, 'Publicity': 2, 'Dutchess': 2, 'Pipeline': 2, 'easement': 2, 'oilheating': 2, 'fueloil': 2, 'Poughkeepsie': 2, 'simplifies': 2, "24''": 2, 'trucking': 2, 'easements': 2, "editor's": 2, 'inhibitors': 2, 'Pitch': 2, 'inhibitor': 2, 'hoses': 2, 'plugs': 2, 'estimating': 2, 'Neon': 2, '85%': 2, 'transparency': 2, 'durability': 2, 'incorporate': 2, 'monomer': 2, 'impervious': 2, 'vacuum-formed': 2, 'weathering': 2, 'reproducing': 2, 'Mylar': 2, 'overlay': 2, 'Trans-illuminated': 2, 'billboards': 2, 'lumen': 2, 'Signs': 2, 'Sixteen': 2, 'screened': 2, 'Ideal': 2, 'weather-resistant': 2, 'pegs': 2, 'brackets': 2, 'Tenite': 2, 'wrestle': 2, 'Finish': 2, 'stair': 2, 'Schmitt': 2, 'rethink': 2, 'on-site': 2, 'trusses': 2, 'cosponsored': 2, 'gypsum': 2, 'sheathing': 2, 'acoustical': 2, 'NLRDA': 2, 'strap': 2, '$.50': 2, "dealer's": 2, 'time-&-motion': 2, '170': 2, 'SCR': 2, 'happenstance': 2, 'Tour': 2, 'relive': 2, 'Grail': 2, 'stairways': 2, 'crags': 2, 'Saracens': 2, 'Rental': 2, 'dockside': 2, 'Driving': 2, '$3.00': 2, '6-passenger': 2, 'wee': 2, 'racks': 2, '$7.00': 2, '$8.00': 2, 'Rates': 2, '$14.00': 2, 'chauffeur-driven': 2, '7-passenger': 2, 'English-speaking': 2, 'real-life': 2, 'MacArthur': 2, 'drawl': 2, 'oversoft': 2, 'flirtation': 2, 'gambit': 2, 'junctures': 2, 'regrettably': 2, 'paralanguage': 2, 'facial': 2, 'spells': 2, 'well-adjusted': 2, 'fade': 2, 'therapists': 2, 'high-powered': 2, 'disinclination': 2, 'non-verbal': 2, "therapist's": 2, 'pedantic': 2, 'veering': 2, 'articulated': 2, 'Blauberman': 2, 'x-rays': 2, 'Fifteenth': 2, 'straddled': 2, 'despatched': 2, 'unacquainted': 2, 'noxious': 2, 'retaliatory': 2, 'immemorial': 2, 'Me-210': 2, 'anti-aircraft': 2, 'squadron': 2, 'tracers': 2, '1/c': 2, 'Rochford': 2, 'grins': 2, 'noncommittal': 2, 'tinsel': 2, 'eerily': 2, 'keening': 2, 'coughed': 2, 'Balkans': 2, 'hundred-odd': 2, 'Junkers': 2, 'battering': 2, 'unerring': 2, 'gunners': 2, 'blinding': 2, 'Luckily': 2, 'erupt': 2, 'previsions': 2, 'coincidences': 2, 'unscientific': 2, 'stout': 2, "Freud's": 2, 'prophetic': 2, 'prevision': 2, 'continuities': 2, 'life-like': 2, 'dreamer': 2, 'impressing': 2, 'Perception': 2, 'theorize': 2, 'prehistoric': 2, 'immensity': 2, 'journeys': 2, 'pulsation': 2, 'inaudible': 2, 'Assyrian': 2, 'Babylonian': 2, 'corroborated': 2, 'substitution': 2, 'obliteration': 2, 'assimilate': 2, 'ghostly': 2, 'insecticides': 2, 'beets': 2, 'squash': 2, 'Homemade': 2, 'menus': 2, 'freshly': 2, 'pours': 2, 'listens': 2, 'cornmeal': 2, 'salads': 2, 'sprouted': 2, 'roosters': 2, 'Associates': 2, 'kelp': 2, 'Candy': 2, 'Soup': 2, 'hiking': 2, 'shampoo': 2, 'sheen': 2, 'biplane': 2, 'plume': 2, 'ruptured': 2, 'prostrate': 2, 'Flood': 2, 'Railway': 2, 'shoveled': 2, 'takeoffs': 2, 'landings': 2, 'flyers': 2, 'clogging': 2, 'Tall': 2, 'Curtiss': 2, 'Delivery': 2, 'leak': 2, 'airline': 2, 'roundabout': 2, 'countered': 2, 'wreckage': 2, 'pouches': 2, 'old-style': 2, 'mittens': 2, 'drafty': 2, 'aviation': 2, 'rackety': 2, 'Plane': 2, 'ticked': 2, 'idling': 2, 'Ground': 2, 'repairmen': 2, 'looms': 2, 'Sixty-five': 2, 'merrily': 2, 'puttering': 2, 'candies': 2, 'dandy': 2, 'housework': 2, 'Luck': 2, 'procreative': 2, 'hive': 2, 'sameness': 2, 'specie': 2, 'forbears': 2, 'Tennyson': 2, 'remake': 2, 'artisan': 2, 'Joking': 2, 'stateroom': 2, 'confiding': 2, 'profuse': 2, 'Extreme': 2, 'foresaw': 2, 'dilate': 2, 'dilation': 2, 'instinctive': 2, 'lubricant': 2, 'dilated': 2, 'decisiveness': 2, 'deep-seated': 2, 'complicate': 2, 'dishearten': 2, 'self-centered': 2, 'arouses': 2, 'divergence': 2, 'nudity': 2, 'Attempts': 2, 'proponent': 2, 'epitome': 2, 'nay': 2, 'emancipated': 2, 'self-assertive': 2, 'heedless': 2, 'custody': 2, 'sacrificed': 2, 'domineering': 2, 'shrewish': 2, 'homosexual': 2, 'aggressor': 2, 'Circumstances': 2, '20-year-old': 2, 'assertive': 2, 'Deauville': 2, 'underestimated': 2, 'teenager': 2, 'Brew': 2, 'financier': 2, 'yearnings': 2, 'teamed': 2, 'buzzed': 2, 'cagey': 2, 'courtesan': 2, 'dope': 2, 'bragged': 2, 'neon-lit': 2, 'sage': 2, 'Pure': 2, "friend's": 2, "days'": 2, 'miseries': 2, 'ticks': 2, 'buzzes': 2, 'capitalizing': 2, 'translating': 2, 'huckster': 2, 'impotence': 2, 'sanipractor': 2, 'cultist': 2, 'FDA': 2, 'ghouls': 2, 'bilked': 2, 'practitioner': 2, 'incurable': 2, "Fraud's": 2, 'diabetic': 2, 'spike': 2, 'Hang': 2, 'healer': 2, 'Spokane': 2, 'diagnosed': 2, 'Postal': 2, 'oldsters': 2, 'arthritis': 2, 'rheumatism': 2, 'avarice': 2, 'quarrelsome': 2, "Dick's": 2, 'Tooth': 2, 'occlusion': 2, 'Malocclusion': 2, 'fangs': 2, 'hereditary': 2, 'trapping': 2, 'interferes': 2, 'Straightening': 2, '$1,200': 2, 'clinics': 2, 'modifies': 2, 'advises': 2, 'checkup': 2, 'impacted': 2, 'sensitives': 2, 'Parapsychology': 2, "medium's": 2, 'sittings': 2, 'questioner': 2, "sitter's": 2, 'Atta': 2, 'typhoid': 2, 'smallpox': 2, 'sitters': 2, 'mediumistic': 2, 'meaningfulness': 2, 'apprehended': 2, 'signify': 2, "owner's": 2, 'cultivating': 2, 'nearness': 2, 'Facilities': 2, 'Pond': 2, 'Soil': 2, 'subtract': 2, 'dirge': 2, 'gassed': 2, 'gruesome': 2, 'shrewdly': 2, 'awfulness': 2, 'emotionalism': 2, 'refining': 2, 'Gurion': 2, 'scuttled': 2, 'Jew-baiter': 2, 'rightness': 2, 'outrageous': 2, 'non-party': 2, 'madness': 2, 'enemy-Jew': 2, 'highlighting': 2, 'resign': 2, 'Hospitals': 2, 'birth-prevention': 2, "nature's": 2, 'fostering': 2, 'propositions': 2, 'Believing': 2, 'ushered': 2, 'bootleggers': 2, 'unparalleled': 2, 'emphatic': 2, 'Pool': 2, 'limping': 2, 'Galway': 2, 'seaman': 2, 'persisting': 2, '1607': 2, 'Strait': 2, 'ice-filled': 2, 'meekly': 2, 'Worse': 2, 'Lodley': 2, 'Perse': 2, 'navigator': 2, 'ruffian': 2, 'pimps': 2, 'Drake': 2, 'mists': 2, "weeks'": 2, 'tacking': 2, 'deposed': 2, 'Assiniboine': 2, 'Harrison': 2, 'pacify': 2, 'regiments': 2, 'ravages': 2, 'Alexis': 2, 'Settlements': 2, 'rowed': 2, '1822': 2, 'Dousman': 2, 'Observing': 2, '1837': 2, '1847': 2, '1831': 2, 'Assiniboia': 2, 'vitals': 2, 'semi-literate': 2, 'yore': 2, 'forgit': 2, 'parodied': 2, 'pups': 2, 'Fall-in': 2, 'Close-up': 2, 'maladies': 2, 'looseness': 2, 'Save': 2, 'garrison': 2, 'Reb': 2, "planters'": 2, 'amorous': 2, 'Alf': 2, 'sed': 2, 'gust': 2, 'doo': 2, 'orney': 2, 'damed': 2, 'infantryman': 2, 'ornery': 2, 'choicest': 2, 'disparagement': 2, 'ignoramus': 2, '1862': 2, 'shucks': 2, 'corporal': 2, 'gunpowder': 2, 'greenest': 2, 'imperialism': 2, 'Spanish-American': 2, '1880s': 2, "citizen's": 2, 'rewriting': 2, 'self-deception': 2, 'uniting': 2, 'Hale': 2, 'Bunyan': 2, 'amateurs': 2, 'hunts': 2, 'Publishers': 2, 'Sandburgs': 2, "others'": 2, 'creased': 2, 'armpit': 2, 'dextrous': 2, 'feline': 2, 'plugugly': 2, 'psychopath': 2, 'Corner': 2, 'Name': 2, 'congested': 2, 'tenements': 2, 'newsboy': 2, 'befuddled': 2, 'vendors': 2, 'interludes': 2, 'acquitted': 2, 'Sicilians': 2, 'testimonial': 2, 'consorting': 2, 'honour': 2, 'Pasley': 2, 'feasts': 2, 'jowl': 2, 'energetically': 2, 'landslide': 2, 'Salle': 2, "Max's": 2, 'incompatible': 2, 'bums': 2, 'graver': 2, 'Torrio-Capone': 2, 'brothels': 2, 'coups': 2, 'volcanic': 2, 'eruption': 2, 'Atlantis': 2, 'Tsunami': 2, '27,000': 2, 'flattening': 2, 'salvo': 2, 'ebbing': 2, 'quake': 2, 'sardines': 2, 'reminders': 2, 'Earthquakes': 2, 'restlessness': 2, 'Knowledge': 2, 'tremor': 2, 'Bursting': 2, 'commissioned': 2, 'tearfully': 2, 'beachhead': 2, 'bitterest': 2, 'Naktong': 2, "Chandler's": 2, 'ram': 2, 'reinforcements': 2, 'faring': 2, 'bounding': 2, 'stragglers': 2, 'whacked': 2, 'bellow': 2, "Goulding's": 2, 'cowardice': 2, 'rata': 2, 'Might': 2, 'Prestige': 2, 'conquests': 2, 'insidiously': 2, 'adherent': 2, "Kremlin's": 2, 'teetering': 2, 'besieged': 2, 'Nasser': 2, 'swerving': 2, 'bridgehead': 2, 'Castroism': 2, 'mourned': 2, 'dislodge': 2, 'roused': 2, 'Amid': 2, 'bicycles': 2, 'eclipse': 2, 'Bullet': 2, 'peppered': 2, 'Frans': 2, 'Precisely': 2, 'tranquil': 2, 'Tahiti': 2, 'Lions': 2, 'ruts': 2, 'Savannakhet': 2, 'Luang': 2, 'Prabang': 2, 'ten-gallon': 2, 'Champassak': 2, 'peeked': 2, 'constructively': 2, 'anthropologist': 2, 'coconuts': 2, 'shirts': 2, 'Pak': 2, 'notables': 2, 'maggots': 2, 'Judaism': 2, 'outing': 2, 'teen': 2, '29.2': 2, 'marginality': 2, 'nineteen-year-old': 2, 'differentiate': 2, 'non-Jewish': 2, 'perpetuation': 2, 'enveloping': 2, 'tentacles': 2, 'hapless': 2, 'homogeneously': 2, 'hordes': 2, 'dogmatically': 2, 'jubilant': 2, 'Witt': 2, 'unsalted': 2, 'Female': 2, 'Bruises': 2, 'informant': 2, 'oozed': 2, 'welding': 2, 'poultices': 2, 'parings': 2, 'old-timer': 2, 'rue': 2, 'chew': 2, 'blisters': 2, 'Insect': 2, 'swellings': 2, 'berries': 2, 'pests': 2, 'wasp': 2, 'stings': 2, 'sublimate': 2, 'ridding': 2, 'lice': 2, 'cinder': 2, 'flaxseed': 2, 'eyeball': 2, 'wisp': 2, 'cider': 2, 'sassafras': 2, 'rye': 2, 'elm': 2, 'gummy': 2, 'corns': 2, 'ubiquitous': 2, 'cramps': 2, 'negociant': 2, 'promoters': 2, 'misrepresentation': 2, 'dishonesty': 2, 'blends': 2, 'doting': 2, 'palate': 2, 'abysmal': 2, 'reprehensible': 2, 'stacking': 2, 'corked': 2, 'fifty-five': 2, 'electrically': 2, 'decanting': 2, 'Bordeaux': 2, 'Beaujolais': 2, 'decanted': 2, 'tug-of-war': 2, 'longer-lived': 2, 'punctually': 2, 'remonstrated': 2, 'injurious': 2, 'inducement': 2, "brothers'": 2, "Giffen's": 2, 'Plantation': 2, 'vowing': 2, 'Edmund': 2, 'planters': 2, 'Attakapas': 2, 'Bashaw': 2, 'Slavery': 2, '1780': 2, 'diffidence': 2, 'Hathaway': 2, 'Cezanne': 2, 'accountant': 2, 'Schlesinger': 2, 'albeit': 2, 'unattached': 2, 'credentials': 2, 'renovation': 2, 'ex': 2, 'Mormon': 2, 'plain-spoken': 2, 'dams': 2, 'Borglum': 2, "Bryan's": 2, 'memorials': 2, 'Potomac': 2, 'hotly': 2, 'redress': 2, 'emanating': 2, 'Georges': 2, 'bequeathed': 2, 'Belasco': 2, 'perils': 2, 'Logically': 2, 'Surrounded': 2, 'manly': 2, 'camaraderie': 2, 'hookup': 2, 'riverbanks': 2, 'Northampton': 2, 'outnumbered': 2, 'Ski': 2, 'Team': 2, 'spruce': 2, 'Ivies': 2, 'Himalayas': 2, 'oratory': 2, 'orators': 2, 'thundering': 2, 'eloquence': 2, 'Eleazar': 2, 'remoteness': 2, 'hacked': 2, 'Wentworth': 2, 'exuberance': 2, 'near-by': 2, 'disdaining': 2, 'pines': 2, 'broached': 2, 'Spartan': 2, 'emeritus': 2, 'numerically': 2, 'unattended': 2, 'unannounced': 2, 'Bedford': 2, 'Knowlton': 2, 'Westport': 2, 'vagabond': 2, 'accomplice': 2, 'exoneration': 2, 'pears': 2, 'cricket': 2, 'butler': 2, 'retentive': 2, '1879': 2, "Winslow's": 2, 'dabbling': 2, 'Mathematics': 2, 'exacting': 2, 'hearers': 2, 'thankfulness': 2, 'bereft': 2, 'Worcester': 2, 'seminary': 2, 'Messenger': 2, 'tool-and-die': 2, 'half-time': 2, 'furthering': 2, 'Statistically': 2, 'underline': 2, 'falter': 2, 'adjective': 2, 'repairing': 2, 'curd': 2, 'three-fourths': 2, 'byproduct': 2, 'oil-bearing': 2, 'tung': 2, 'varnishes': 2, 'poppy': 2, 'nondrying': 2, 'peach': 2, 'glycerin': 2, 'resins': 2, 'starchy': 2, 'brazil': 2, 'filberts': 2, 'hickory': 2, 'almonds': 2, 'copra': 2, 'aromatic': 2, 'sweet-smelling': 2, 'necklaces': 2, 'Tradition': 2, 'anise': 2, 'fennel': 2, 'flavors': 2, 'flavoring': 2, 'kola': 2, 'Hay': 2, "bein'": 2, 'banded': 2, 'droughts': 2, 'wintered': 2, 'Them': 2, 'tenderfoot': 2, 'cowman': 2, 'magpies': 2, "meanin'": 2, "pushin'": 2, "prayin'": 2, 'hoof': 2, "travelin'": 2, 'throwed': 2, 'wohaw': 2, 'frontiersmen': 2, 'yank': 2, "rider's": 2, "tailin'": 2, 'bulls': 2, 'lineback': 2, "runnin'": 2, 'longhorn': 2, 'splotched': 2, 'coloration': 2, 'bellies': 2, 'flank': 2, 'truthfulness': 2, "swingin'": 2, 'stifled': 2, 'creepers': 2, 'specks': 2, 'collie': 2, 'barking': 2, 'impassable': 2, 'full-grown': 2, 'Careful': 2, 'lashing': 2, 'winded': 2, 'lasso': 2, "lioness'": 2, 'crevice': 2, 'firecrackers': 2, 'rhinoceros': 2, 'clawed': 2, 'obedient': 2, 'interdenominational': 2, 'lame': 2, 'unreality': 2, 'disparity': 2, 'separateness': 2, 'trite': 2, 'comprehended': 2, 'koinonia': 2, 'Acts': 2, 'near-at-hand': 2, 'enthusiast': 2, "ma'am": 2, 'conceives': 2, 'chugging': 2, 'wrangled': 2, 'hay-shakers': 2, 'abounded': 2, 'begrudge': 2, 'scorned': 2, 'Daddy': 2, 'brag': 2, 'carousing': 2, 'essayed': 2, 'swan': 2, 'wring': 2, 'trifling': 2, 'Dugan': 2, 'agile': 2, 'speculators': 2, 'excursion': 2, 'chastity': 2, 'incapacitated': 2, 'germane': 2, 'resolves': 2, 'fluctuating': 2, 'Equity': 2, 'prolixity': 2, 'rancorous': 2, 'discourteous': 2, 'clamor': 2, 'chancery': 2, 'pilloried': 2, 'consolidate': 2, "Hough's": 2, 'empowered': 2, 'unheeded': 2, 'orally': 2, 'promulgated': 2, 'fluidity': 2, 'patent-sharing': 2, 'disputed': 2, "lawyer's": 2, 'Marmon': 2, 'propitious': 2, 'Sabina': 2, 'Continue': 2, 'bas-reliefs': 2, 'hemmed': 2, 'Pincian': 2, 'Marcellus': 2, 'Twenty-two': 2, 'Campitelli': 2, "Rome's": 2, 'terraced': 2, 'Caetani': 2, 'adjoins': 2, "dell'": 2, 'Capo': 2, 'Ferro': 2, 'Spada': 2, 'Titian': 2, 'Caravaggio': 2, '4:00': 2, 'Francesco': 2, "Borromini's": 2, 'connects': 2, 'Pompey': 2, 'stabbed': 2, 'Farnese': 2, '11:00': 2, 'Vittorio': 2, 'Emanuele': 2, 'Rinascimento': 2, 'aristocrats': 2, "Bernini's": 2, 'Ganges': 2, 'Agone': 2, 'Pantheon': 2, "Pantheon's": 2, 'Colonna': 2, 'Aurelius': 2, 'Doria': 2, '1:00': 2, 'astounded': 2, 'twos': 2, 'seep': 2, 'callousness': 2, 'keg': 2, 'Kant': 2, 'Hegel': 2, 'paralyzes': 2, 'Ricans': 2, 'emptier': 2, 'shrinks': 2, "Stevenson's": 2, 'rioters': 2, 'manipulated': 2, 'nineties': 2, 'Execution': 2, 'documentaries': 2, 'fashioning': 2, 'inept': 2, 'Physically': 2, "magician's": 2, 'Overnight': 2, "Porter's": 2, 'reel': 2, 'pursues': 2, 'whooping': 2, 'hide-out': 2, 'appended': 2, 'outlaws': 2, 'pursuer': 2, 'D.W.': 2, 'Bernhardt': 2, 'blight': 2, 'lower-status': 2, 'like-minded': 2, 'statuses': 2, 'intrusions': 2, 'stabilize': 2, 'counteracting': 2, 'stratification': 2, 'self-defeating': 2, 'contradicts': 2, 'activism': 2, 'dictating': 2, 'rearing': 2, 'perplexing': 2, 'squandered': 2, 'Protests': 2, '1721': 2, '1714': 2, 'Alabamas': 2, 'Regulations': 2, 'Conseil': 2, 'peltry': 2, 'heathen': 2, 'Tombigbee': 2, 'urgings': 2, "Perier's": 2, 'Frenchmen': 2, 'fortifications': 2, 'entrust': 2, 'Businessmen': 2, 'sails': 2, 'dispensed': 2, 'ungrateful': 2, 'cheered': 2, 'whim': 2, 'debauchery': 2, 'abasement': 2, 'minuet': 2, 'negate': 2, 'Acheson': 2, 'amiss': 2, 'rumbling': 2, 'crucifying': 2, 'shuttered': 2, 'martini': 2, 'purporting': 2, 'comma': 2, 'Babbitt': 2, 'unheard-of': 2, "Smilin'": 2, 'sobriquet': 2, 'fearlessly': 2, 'hoisted': 2, 'giddy': 2, 'Judas': 2, 'larks': 2, 'scowling': 2, 'Saudi': 2, 'brochure': 2, 'dusky': 2, 'massed': 2, 'Twenty-five': 2, 'incomprehensible': 2, 'stockroom': 2, 'Hosaka': 2, 'Kodama': 2, 'teased': 2, 'Okamoto': 2, '7:00': 2, 'eel': 2, 'lacquer': 2, 'Yoneda': 2, 'cupboards': 2, 'housekeeper': 2, 'prudence': 2, 'pre-Civil': 2, "Citizens'": 2, 'Councils': 2, 'Philco': 2, 'unqualified': 2, 'interpenetrates': 2, 'demoralizes': 2, 'Mennonite': 2, 'importation': 2, 'enslavement': 2, 'scornfully': 2, 'uncooperative': 2, 'anachronisms': 2, 'enmeshed': 2, "Time's": 2, 'Culture': 2, 'Accounts': 2, 'unpatriotic': 2, 'Tidewater': 2, 'arrogant': 2, 'Crown': 2, 'delude': 2, 'levelled': 2, 'Bentham': 2, 'externally': 2, 'anarchical': 2, 'Darwinism': 2, 'Positive': 2, 'immersion': 2, 'Reduced': 2, 'Jurists': 2, 'time-span': 2, 'legitimacy': 2, 'antiquity': 2, "Austin's": 2, 'thermonuclear': 2, 'prowl': 2, 'manning': 2, 'foxholes': 2, 'physicists': 2, "Pandora's": 2, 'sociologist': 2, 'Revere': 2, 'BMEWS': 2, 'Ballistic': 2, 'Missile': 2, 'Omaha': 2, 'tankers': 2, 'Multiple': 2, 'ramble': 2, 'preprepared': 2, 'Officers': 2, 'Norfolk': 2, 'thirty-nine': 2, 'forty-three': 2, 'anchors': 2, 'activate': 2, 'transmitting': 2, 'coworkers': 2, 'statuary': 2, 'Watching': 2, 'lope': 2, 'hummocks': 2, 'lordly': 2, 'tree-clumps': 2, 'pitiless': 2, 'seaports': 2, 'corroborees': 2, 'lubra': 2, 'wispy': 2, 'rodent': 2, 'ageless': 2, "One's": 2, 'darker': 2, 'blindfolded': 2, 'pidgin': 2, 'confounded': 2, 'spooky': 2, 'pavilions': 2, 'arcades': 2, 'samovar': 2, 'Shah': 2, 'Abbas': 2, 'maw': 2, 'puffing': 2, 'Hafiz': 2, 'caravans': 2, 'bays': 2, 'sluices': 2, 'Crowds': 2, 'hacking': 2, 'beggars': 2, 'hoot': 2, 'amusements': 2, 'Teddy': 2, 'Herrick': 2, 'octaves': 2, 'um': 2, 'piped': 2, 'stuffing': 2, 'alphabet': 2, 'Zemlinsky': 2, 'Schonberg': 2, 'repertoire': 2, 'synagogues': 2, 'Arturo': 2, "Verdi's": 2, 'Pittsburghers': 2, 'der': 2, 'Dimitri': 2, 'Mitropoulos': 2, 'ein': 2, 'Franz': 2, 'Hals': 2, 'Poussin': 2, 'Conan': 2, 'Stendhal': 2, 'unfailing': 2, 'judgement': 2, 'foolhardy': 2, 'indiscreet': 2, 'Commanding': 2, 'preside': 2, 'single-handedly': 2, 'individualists': 2, 'Ardent': 2, 'opinionated': 2, 'pens': 2, 'forty-two': 2, 'forgiving': 2, 'vindictive': 2, 'exiled': 2, 'fruition': 2, 'Jeffersonians': 2, 'strenuously': 2, 'Jacksonian': 2, 'interposition': 2, 'Advice': 2, 'serpent': 2, 'wiles': 2, 'suburbanite': 2, 'sowbelly': 2, 'phantom': 2, 'post-bellum': 2, 'forsaken': 2, 'chanting': 2, 'half-century': 2, 'snowballs': 2, 'Thorp': 2, 'Yankeefication': 2, 'Styron': 2, 'Terrace': 2, 'sixty-two': 2, 'urbanism': 2, 'dreaded': 2, 'speechlessness': 2, 'picturing': 2, 'rabid': 2, 'romanticize': 2, 'prolonging': 2, 'Westbrook': 2, 'fervently': 2, 'Yoknapatawpha': 2, 'hogs': 2, 'irrevocably': 2, 'creators': 2, 'self-sufficiency': 2, "Cunningham's": 2, 'metamorphosed': 2, 'projective': 2, 'Litz': 2, 'stipulates': 2, 'meditative': 2, 'constricting': 2, 'pervading': 2, 'lyricism': 2, 'jumps': 2, 'Unconcerned': 2, 'metamorphosis': 2, 'cheat': 2, 'expounded': 2, 'calibre': 2, '1787-89': 2, 'centralizing': 2, '1855': 2, 'timeliness': 2, 'alloy': 2, 'verbatim': 2, 'admits': 2, 'defiantly': 2, '1787': 2, 'Preambles': 2, 'ordain': 2, 'tranquility': 2, 'seceding': 2, 'Liberty-and-Union': 2, 'mars': 2, 'Sumter': 2, 'undoing': 2, "freedom's": 2, 'Hawkins': 2, 'applicability': 2, 'quell': 2, 'Lucretius': 2, 'comets': 2, 'dwindle': 2, 'Newtonian': 2, 'stubbornness': 2, 'voodoo': 2, 'acquires': 2, 'parental': 2, 'reviewers': 2, 'Clurman': 2, 'Sartre': 2, 'formalized': 2, 'accommodates': 2, 'Chartres': 2, 'disarray': 2, 'Hemingway': 2, 'Farewell': 2, 'overestimation': 2, 'Eros': 2, 'libido': 2, 'orgiastic': 2, 'legalized': 2, 'petting': 2, 'mana': 2, 'Dionysian': 2, 'mysteriously': 2, 'wholeness': 2, 'mysticism': 2, 'instinctual': 2, 'rootless': 2, 'fetish': 2, 'obsesses': 2, 'Muse': 2, 'wedlock': 2, 'bourgeois': 2, 'stifling': 2, 'craving': 2, 'orgies': 2, 'composes': 2, 'initiates': 2, 'irresolute': 2, 'malevolent': 2, 'Generation': 2, 'deviants': 2, 'captures': 2, 'dreamlike': 2, 'genre': 2, 'spiked': 2, 'honeysuckle': 2, 'bough': 2, 'gingham': 2, 'flutter': 2, 'smallness': 2, 'frost-bitten': 2, 'commandment': 2, 'peonies': 2, 'violets': 2, 'chins': 2, 'unintentionally': 2, 'palpable': 2, 'squeaked': 2, 'plodded': 2, "four-o'clock": 2, 'fifty-odd': 2, 'hitching': 2, 'ankle-deep': 2, 'shod': 2, 'hooves': 2, 'riddling': 2, 'Lizzy': 2, 'epiphany': 2, 'coquette': 2, "Jacoby's": 2, 'banal': 2, 'infidelity': 2, 'whore': 2, 'accumulates': 2, 'Churchyard': 2, 'physiognomy': 2, 'enigmatic': 2, 'impotent': 2, 'light-headed': 2, 'puppy': 2, 'capitulated': 2, 'blithe': 2, 'Durer': 2, 'Gladius': 2, 'Hieronymus': 2, 'envisions': 2, 'namesake': 2, 'formalism': 2, 'thoroughgoing': 2, 'acknowledges': 2, 'transcendent': 2, 'exerting': 2, 'preconceived': 2, 'imitates': 2, 'compels': 2, 'tabula': 2, 'rasa': 2, 'empiricism': 2, 'efficacious': 2, "Hume's": 2, 'Hume': 2, 'Booker': 2, 'infuriating': 2, 'irrevocable': 2, '1857': 2, 'unequally': 2, "X's": 2, 'prep': 2, 'stagger': 2, 'manipulations': 2, 'Platonist': 2, 'doctrinaire': 2, 'censures': 2, 'ironical': 2, "Williams's": 2, 'galaxy': 2, 'surmises': 2, 'Literature': 2, 'Wander-Years': 2, 'och': 2, 'Thousand': 2, 'sombre': 2, 'tortures': 2, 'commemorate': 2, 'Faustus': 2, 'Poltava': 2, "Napoleon's": 2, 'catastrophically': 2, 'Swedes': 2, 'adversity': 2, 'rallying': 2, 'inertia': 2, 'madman': 2, 'vault': 2, 'tombs': 2, 'Selma': 2, 'self-employed': 2, 'free-lance': 2, 'Balzac': 2, "Doyle's": 2, 'trances': 2, 'egotist': 2, 'stuffy': 2, 'Yard': 2, 'relentlessness': 2, 'insinuation': 2, 'Poirot': 2, 'Agatha': 2, 'Christie': 2, "Holmes'": 2, 'hardboiled': 2, "'30s": 2, 'Beaten': 2, 'elusive': 2, "Hammett's": 2, 'Falcon': 2, 'joins': 2, 'jeweled': 2, 'falcon': 2, 'Phillip': 2, 'exonerate': 2, 'Hammer': 2, 'pleases': 2, 'executioner': 2, 'enumerated': 2, 'inadequately': 2, 'exclamations': 2, 'complimentary': 2, 'oneness': 2, 'h': 2, 'relayed': 2, 'dweller': 2, 'waterfall': 2, 'theorists': 2, 'geochemistry': 2, 'generalists': 2, 'Andean': 2, 'Progressivism': 2, 'Humanity': 2, 'mythic': 2, 'dislocations': 2, 'fathered': 2, 'Democracy': 2, 'Voegelin': 2, 'exemplar': 2, 'utopians': 2, 'enforceable': 2, 'Lubell': 2, 'columnists': 2, 'ex-liberals': 2, 'Lippman': 2, 'incantation': 2, 'shibboleth': 2, 'Goals': 2, 'preface': 2, 'uncontrollable': 2, 'Properly': 2, 'steppes': 2, 'treasury': 2, 'anti-American': 2, 'pseudo-capitalism': 2, 'capitalistic': 2, 'Strikes': 2, 'disagreements': 2, 'abler': 2, 'clips': 2, 'Un-American': 2, 'Seemingly': 2, 'Merely': 2, 'Studying': 2, 'non-Jew': 2, 'prefaced': 2, 'deranged': 2, 'treasured': 2, 'Kyne': 2, 'coal-black': 2, 'biologists': 2, 'stepmothers': 2, 'Vol.': 2, 'stereotypes': 2, 'declarations': 2, "architect's": 2, 'resolving': 2, 'cleavage': 2, 'influenza': 2, 'inhibits': 2, 'Drifting': 2, 'recalcitrant': 2, 'exacts': 2, 'transforming': 2, 'inordinately': 2, 'unrecognizable': 2, 'endow': 2, 'unwisely': 2, 'disrupting': 2, 'ensues': 2, 'focuses': 2, 'wrenches': 2, 'esse': 2, 'substantive': 2, 'locus': 2, 'existentialist': 2, 'volition': 2, 'terminus': 2, 'conducive': 2, 'prima-facie': 2, 'unanalyzed': 2, 'coercive': 2, 'accretions': 2, 'misinterpreted': 2, 'syndrome': 2, 'tiredly': 2, 'Dostoevsky': 2, 'Quarterly': 2, 'descendant': 2, 'case-history': 2, 'Rocking': 2, 'Winner': 2, 'Lovers': 2, "Lawrence's": 2, 'forgetful': 2, 'discerned': 2, 'oracle': 2, 'Mann': 2, 'leave-taking': 2, 'Nacht': 2, 'Gregorius': 2, 'monastery': 2, 'gradations': 2, "Helion's": 2, 'abstractionists': 2, 'Leger': 2, 'Calder': 2, 'Pink': 2, 'evolving': 2, 'arid': 2, 'Kooning': 2, 'Sheridan': 2, 'gloomy': 2, 'sketchbook': 2, 'confiscated': 2, 'volley-ball': 2, 'Riding': 2, 'loathing': 2, 'adore': 2, 'Cowley': 2, 'Nathaniel': 2, "O'Donnell": 2, 'Flem': 2, 'hyperbolic': 2, 'moralist': 2, 'Hoffman': 2, 'intolerance': 2, 'unassisted': 2, 'idealization': 2, 'half-conscious': 2, 'portraying': 2, 'Glasgow': 2, 'low-class': 2, 'antecedents': 2, 'realist': 2, 'Elizabethans': 2, 'Baldwin': 2, 'Longstreet': 2, 'Bangs': 2, 'Hooper': 2, 'habitually': 2, 'humorists': 2, 'long-established': 2, "Huxley's": 2, 'agonizes': 2, 'contentions': 2, 'paperback': 2, 'plateau': 2, 'defensiveness': 2, 'Shocked': 2, 'Ships': 2, 'masts': 2, 'circularity': 2, 'four-element': 2, 'Empedocles': 2, 'frothy': 2, 'Hypotheses': 2, 'deferent': 2, 'bumping': 2, 'infinity': 2, 'conjectures': 2, 'orderings': 2, 'Aristotelian': 2, 'geocentric': 2, 'Margenau': 2, 'tersely': 2, "Euclid's": 2, 'hypotheses': 2, "Henrietta's": 2, 'clearness': 2, 'avenge': 2, "Sulzberger's": 2, 'Friedenwald': 2, 'follies': 2, 'Sophie': 2, "Szolds'": 2, 'tempers': 2, 'Meg': 2, 'rheumatic': 2, 'Comedy': 2, 'recited': 2, 'Germantown': 2, 'Adele': 2, 'rebellious': 2, 'silvery': 2, 'maddening': 2, 'Reporters': 2, 'avenging': 2, "Miriam's": 2, 'Pengally': 2, 'uglier': 2, 'boulevard': 2, 'racetrack': 2, 'jams': 2, 'Volstead': 2, 'weariness': 2, 'disrespect': 2, 'betide': 2, 'sortie': 2, 'vade': 2, 'mecum': 2, 'semblance': 2, 'cluck': 2, 'kin': 2, 'elegiac': 2, "Millay's": 2, 'quatrain': 2, 'pluck': 2, 'abnormal': 2, 'foolproof': 2, 'moored': 2, 'unbridled': 2, 'lean-to': 2, 'prettily': 2, 'qua': 2, 'entertainer': 2, 'shorthand': 2, 'bashful': 2, 'three-fold': 2, 'Guitar': 2, 'meditation': 2, 'Ira': 2, 'distastefully': 2, 'knowledgeable': 2, 'eats': 2, 'one-arm': 2, 'pangs': 2, 'Fame': 2, 'figment': 2, 'Phi': 2, 'Beta': 2, 'Harbert': 2, 'pronounce': 2, 'christened': 2, "Paula's": 2, 'Vogue': 2, 'compromised': 2, 'Teacher': 2, 'Growing': 2, 'supplementing': 2, 'scourge': 2, 'oxcart': 2, 'multi-year': 2, 'titanic': 2, 'relay': 2, 'Suggested': 2, 'wither': 2, 'downturn': 2, 'surging': 2, 'Begley': 2, 'wind-swept': 2, 'Seynes': 2, 'prejudged': 2, 'day-after-day': 2, 'settles': 2, 'respectfully': 2, 'thirteenth': 2, 'Robertson': 2, 'Hasseltine': 2, 'Congregationalist': 2, 'conceding': 2, 'seafarers': 2, 'butterfly': 2, "Ann's": 2, "pilot's": 2, 'Job': 2, 'wharves': 2, 'flocked': 2, 'intrigued': 2, 'Cautiously': 2, 'Gibault': 2, 'captors': 2, 'Phipps': 2, 'affront': 2, 'Burnet': 2, 'preliminaries': 2, 'Popish': 2, 'forgave': 2, 'ridiculed': 2, 'Sovereign': 2, 'purports': 2, "Swift's": 2, 'Pretender': 2, 'contemptuously': 2, 'craze': 2, 'Bing': 2, 'branched': 2, 'playmates': 2, 'lyricists': 2, 'absent-minded': 2, 'instructing': 2, 'Scared': 2, 'Harburg': 2, 'Lazybones': 2, 'Whiting': 2, 'Donaldson': 2, 'Marvelous': 2, 'colloquial': 2, "there'll": 2, 'Thoroughly': 2, 'bards': 2, 'dangled': 2, 'stowed': 2, 'hulking': 2, 'Pardon': 2, 'edit': 2, 'Carvalho': 2, 'Armistice': 2, 'Enrico': 2, 'McCay': 2, "Longfellow's": 2, 'nihilist': 2, 'whizzed': 2, 'goggle-eyed': 2, 'conceits': 2, 'unfinished': 2, 'shawls': 2, "Coolidge's": 2, "Coolidges'": 2, 'lengthened': 2, 'Calamity': 2, 'Blackberry': 2, "Mama's": 2, 'Conventional': 2, "Lueger's": 2, 'problem-solving': 2, 'self-styled': 2, 'perennially': 2, 'conformance': 2, 'nullified': 2, 'cognizant': 2, 'reaffirmation': 2, 'enlightenment': 2, 'interviewer': 2, 'clustering': 2, 'pseudo-thinking': 2, 'instructs': 2, "Reader's": 2, 'Digest': 2, 'idiosyncratic': 2, 'purging': 2, "Housman's": 2, 'common-sense': 2, 'enriched': 2, 'uttering': 2, 'reliving': 2, 'Solomon': 2, 'inferential': 2, 'wholes': 2, 'triviality': 2, 'Collingwood': 2, 'snobbish': 2, 'carvings': 2, 'similarities': 2, 'confine': 2, 'sensuous': 2, 'recur': 2, 'Thunder': 2, 'Understanding': 2, 'labelled': 2, '-ism': 2, "Henley's": 2, 'Reformation': 2, 'Montaigne': 2, "Coleridge's": 2, 'Wordsworth': 2, 'tragedians': 2, 'respite': 2, 'quiescent': 2, 'disowned': 2, 'balked': 2, 'sensationalism': 2, 'quoting': 2, 'Boss': 2, 'industriously': 2, 'Carmack': 2, 'Devery': 2, '[': 2, ']': 2, 'Koenigsberg': 2, "Chief's": 2, 'aspirant': 2, 'Manin': 2, 'appreciative': 2, "Bright's": 2, 'Crimean': 2, 'contemptible': 2, 'merges': 2, 'unconnected': 2, '1870': 2, 'reprinted': 2, 'kings': 2, 'excursions': 2, 'boroughs': 2, 'humanistic': 2, 'Regius': 2, 'Ramillies': 2, "Macaulay's": 2, 'eras': 2, 'etched': 2, 'overturning': 2, 'streetcars': 2, 'cordon': 2, 'titre': 2, 'imperiously': 2, 'Mais': 2, 'trench': 2, 'ashen': 2, 'petits': 2, 'trickling': 2, 'after-school': 2, '26th': 2, 'sluggishly': 2, 'entreated': 2, 'mistaking': 2, "Davis'": 2, 'Babel': 2, 'incongruities': 2, 'Citizen': 2, 'crumbling': 2, "Lovejoy's": 2, "Slocum's": 2, 'despondency': 2, 'Proposals': 2, 'armistice': 2, 'skirmishing': 2, '239': 2, '247': 2, 'pickets': 2, 'debilitated': 2, 'Covington': 2, 'Forrest': 2, 'Snake': 2, 'van': 2, 'fords': 2, 'Brownlow': 2, 'Brigade': 2, 'pursuers': 2, 'Rank': 2, 'unwarrantable': 2, "Katie's": 2, 'orphaned': 2, 'sonnets': 2, 'Than': 2, 'presences': 2, 'Narrow': 2, 'draughts': 2, 'despondent': 2, "Davidson's": 2, 'metrical': 2, 'inversion': 2, 'Kamieniec': 2, 'Nogay': 2, 'Tartary': 2, "Catherine's": 2, 'Czarina': 2, "Joseph's": 2, 'Oczakov': 2, 'Repnin': 2, 'blacksmith': 2, 'courtier': 2, 'vexed': 2, "colonel's": 2, 'exuded': 2, 'aromas': 2, 'fancied': 2, 'downcast': 2, 'gratuitously': 2, "Suvorov's": 2, 'smithereens': 2, 'adored': 2, 'shaven': 2, 'Bessarabia': 2, 'worsted': 2, 'levies': 2, 'insubordination': 2, 'stubs': 2, 'siesta': 2, 'Deppy': 2, 'benediction': 2, 'Nearby': 2, 'airily': 2, 'click': 2, 'Sakellariadis': 2, 'detoured': 2, 'Lumiere': 2, 'narration': 2, 're-created': 2, 'Athenian': 2, 'Philistines': 2, 'Asteria': 2, 'nine-thirty': 2, 'cabanas': 2, 'parasols': 2, 'overpopulation': 2, 'side-stepped': 2, 'rock-and-roll': 2, 'Attic': 2, 'encrusted': 2, 'chiseled': 2, 'assuaged': 2, 'nimbly': 2, 'Panyotis': 2, 'degradation': 2, 'extricate': 2, 'bellows': 2, 'destitute': 2, "Woodruff's": 2, "Pike's": 2, 'illusive': 2, 'harassing': 2, 'Buren': 2, 'culprit': 2, 'dueling': 2, 'canny': 2, 'windfall': 2, 'aired': 2, 'impaled': 2, 'bidder': 2, 'detestable': 2, 'blasphemies': 2, 'leavened': 2, '1592': 2, 'Hutchinson': 2, 'Coddington': 2, 'constrained': 2, 'reverted': 2, 'Aquidneck': 2, 'Pawtucket': 2, 'Pawcatuck': 2, 'Westerly': 2, 'benighted': 2, 'Miantonomi': 2, 'inland': 2, 'meditations': 2, 'Pomham': 2, 'Gortonists': 2, 'captives': 2, 'thinke': 2, 'paraded': 2, 'cooped': 2, "Fred's": 2, 'hemorrhaging': 2, 'prostate': 2, 'Asheville': 2, 'executors': 2, 'valuations': 2, 'McCrady': 2, "pastor's": 2, 'partakes': 2, 'repentance': 2, 'Respect': 2, 'gateway': 2, 'censors': 2, 'corrupted': 2, 'Tenth': 2, 'comedies': 2, 'Krutch': 2, 'purgation': 2, "Sidney's": 2, 'Abuse': 2, '1579': 2, '1577': 2, 'sorrows': 2, 'mirth': 2, 'lyking': 2, 'hartes': 2, 'diagnosing': 2, 'Fisk': 2, 'other-directed': 2, 'materialistic': 2, 'people-oriented': 2, 'informational': 2, 'couched': 2, 'overshadow': 2, 'transcendence': 2, 'reinforcement': 2, 'benchmarks': 2, 'sociability': 2, 'hedonistic': 2, 'present-time': 2, 'Cornwallis': 2, 'capturing': 2, 'tempting': 2, 'Marylanders': 2, 'praising': 2, 'Gates': 2, 'vehement': 2, 'culprits': 2, "'tis": 2, 'admonished': 2, 'Meantime': 2, 'Sanderson': 2, 'Excellency': 2, "Philip's": 2, 'Nogaret': 2, 'misstep': 2, 'reviving': 2, 'Tuscany': 2, 'Flanders': 2, 'insubordinate': 2, 'suzerain': 2, 'invalidate': 2, 'misinterpret': 2, "pope's": 2, 'archbishop': 2, 'duke': 2, 'St.-Pol': 2, 'Hotham': 2, 'visualized': 2, 'covetousness': 2, 'homage': 2, 'Grandson': 2, 'terse': 2, 'Vous': 2, 'Savoyards': 2, 'Pembroke': 2, 'irreverent': 2, 'Non': 2, 'sicker': 2, "Meltzer's": 2, 'apology': 2, 'butcher': 2, 'loose-jointed': 2, 'hulk': 2, 'Lullaby': 2, 'Gute': 2, 'ruh': 2, 'preceeding': 2, 'Haverfield': 2, 'Histories': 2, "Leeds'": 2, 'place-names': 2, 'Camden': 2, 'philology': 2, 'philological': 2, 'textual': 2, 'Plummer': 2, 'Howorth': 2, 'T.W.': 2, 'H.M.': 2, 'Chadwick': 2, 'Grande-Bretagne': 2, 'des': 2, 'Nennius': 2, 'R.H.': 2, "Kemble's": 2, 'ca.': 2, 'Finberg': 2, 'survivalists': 2, 'unchallenged': 2, 'Sussex': 2, 'intrusive': 2, 'mainstream': 2, 'volunteering': 2, 'briefed': 2, 'Provost': 2, 'Crowder': 2, 'corridors': 2, '258': 2, 'Daniels': 2, 'pandemic': 2, 'blitz': 2, 'Philosophical': 2, 'filles': 2, 'Laredo': 2, 'Funston': 2, 'red-light': 2, 'journeyed': 2, 'Clemenceau': 2, 'Burning': 2, 'Lessing': 2, 'Atreus': 2, 'Elsinore': 2, 'Mycenae': 2, 'Orestes': 2, 'hounds': 2, 'Racine': 2, 'Athalie': 2, 'Descartes': 2, 'personages': 2, 'sentinels': 2, 'repose': 2, 'tawdry': 2, 'Versailles': 2, 'centre': 2, 'spokes': 2, 'Tragedy': 2, 'Agamemnon': 2, 'Werther': 2, 'allegoric': 2, 'Orpheus': 2, 'Chekhov': 2, 'Alps': 2, "Faust's": 2, '1593': 2, "Quiney's": 2, '1613': 2, 'Broad': 2, 'Bacon': 2, 'Milcote': 2, 'bi': 2, 'Ed.': 2, 'meanes': 2, 'u': 2, 'heare': 2, 'ani': 2, '1598': 2, 'Fortescue': 2, 'Wm.': 2, 'howe': 2, 'tole': 2, 'corne': 2, 'MS': 2, 'maye': 2, 'drapers': 2, 'tooke': 2, 'whoe': 2, 'hedges': 2, 'Coke': 2, 'nott': 2, 'att': 2, 'hym': 2, '1601': 2, 'Aylesbury': 2, 'beinge': 2, 'townsmen': 2, 'Baileefe': 2, 'tyme': 2, 'druncke': 2, 'howse': 2, 'punnished': 2, 'substantiate': 2, 'contradicted': 2, 'monasteries': 2, 'historiography': 2, 'servile': 2, 'revolts': 2, 'rigidity': 2, 'appalled': 2, 'spurious': 2, 'omits': 2, 'deities': 2, 'Catherwood': 2, 'petrified': 2, 'unearthed': 2, "Stephens's": 2, 'Amazon': 2, 'rediscovery': 2, 'Sierra': 2, 'emerald': 2, 'quetzal': 2, 'prowling': 2, 'Kennard': 2, 'Burlingham': 2, 'remarried': 2, 'Dante': 2, 'frugality': 2, 'Antony': 2, 'embarked': 2, 'C.C.B.': 2, 'obituaries': 2, 'Methuselah': 2, 'lectured': 2, "Orwell's": 2, 'wordlessly': 2, 'telegraphed': 2, 'soothe': 2, 'Grosvenor': 2, 'Wylie': 2, 'Woodwards': 2, 'Casanova': 2, 'discreet': 2, 'solicitous': 2, 'Stidger': 2, 'Bury': 2, 'slang': 2, 'Sybil': 2, 'Thomson': 2, 'chatted': 2, 'Southampton': 2, 'senioritatis': 2, 'Peterhouse': 2, "Queens'": 2, 'deacon': 2, 'Manningham': 2, '1624': 2, 'Venn': 2, 'B.A.': 2, 'pensioner': 2, 'fourteenth': 2, 'divinity': 2, 'reedy': 2, 'imbibed': 2, 'Prolusion': 2, 'Domina': 2, 'specious': 2, 'meted': 2, 'epithet': 2, 'viciousness': 2, 'sadistic': 2, 'tormenting': 2, 'forbidding': 2, 'theatricals': 2, "Bradbury's": 2, 'enslave': 2, 'Messiah': 2, "Vonnegut's": 2, "Wyndham's": 2, 'Re-Birth': 2, 'Strength': 2, '101': 2, 'dystopia': 2, 'Kingsley': 2, 'priming': 2, 'rouge': 2, 'idealistic': 2, 'tombstone': 2, 'persona': 2, 'Laodicean': 2, 'well-deserved': 2, 'senile': 2, 'imitators': 2, 'pacifist': 2, 'counterbalance': 2, 'connoisseurs': 2, 'inadvertent': 2, 'Resistance': 2, 'dogged': 2, 'Awkwardly': 2, 'laboriously': 2, 'hovel': 2, 'Nietzsche': 2, 'Occident': 2, 'deepened': 2, 'dawning': 2, 'strangeness': 2, 'Citing': 2, 'xenophobia': 2, 'Benelux': 2, 'capped': 2, 'centuries-old': 2, 'overdue': 2, 'prescriptions': 2, 'pluralistic': 2, 'musically': 2, 'poetically': 2, 'Sextet': 2, 'sentinel': 2, 'myth-making': 2, 'pseudo-anthropological': 2, 'underdog': 2, 'Konitz': 2, 'naivete': 2, 'Anger': 2, 'filth': 2, 'asses': 2, 'pseudo-glamorous': 2, 'untruth': 2, 'Jewishness': 2, 'pogroms': 2, 'Bellow': 2, 'bugged': 2, 'Bartleby': 2, 'Scrivener': 2, 'tiptoeing': 2, 'Kenyon': 2, 'transoms': 2, 'cosmopolitanism': 2, 'Mailer': 2, 'dazzled': 2, 'bull-sessions': 2, 'perfumed': 2, 'bullshit': 2, 'toppling': 2, 'Gianicolo': 2, 'basements': 2, 'Pavese': 2, 'Sky': 2, 'Calabria': 2, '1849': 2, 'Fascists': 2, 'commemorated': 2, 'grubby': 2, 'beatings': 2, 'Practical': 2, "SBA's": 2, 'adaptable': 2, 'diversification': 2, 'Proposed': 2, 'authorizes': 2, 'budgetary': 2, 'Colo.': 2, 'Minn.': 2, 'Types': 2, 'repayment': 2, 'installments': 2, 'Cooperative': 2, 'OME': 2, 'regimes': 2, 'withhold': 2, 'freest': 2, 'Addabbo': 2, 'combatant': 2, 'Monagan': 2, 'Origin': 2, '$.027': 2, 'Vehicle': 2, "legislature's": 2, 'change-over': 2, 'Mileage': 2, 'reimbursements': 2, 'reimburseable': 2, 'reimbursement': 2, '11%': 2, 'cost-data': 2, 'upgrading': 2, 'assessor': 2, 'Eighteen': 2, 'Barrington': 2, 'Manufacturing': 2, 'Expansion': 2, "Division's": 2, 'Assistance': 2, 'availabilities': 2, 'Midwestern': 2, 'mailings': 2, 'conclave': 2, 'reprints': 2, 'exhaustive': 2, 'reorientation': 2, 'Montana': 2, 'disbursements': 2, 'facilitates': 2, 'Borrowing': 2, 'state-local': 2, 'systematized': 2, 'Kingstown': 2, 'eighty-fifth': 2, 'Resolution': 2, 'Pageants': 2, 'Reine': 2, 'U.S.C.': 2, 'aforesaid': 2, 'authorization': 2, 'effectuate': 2, 'donation': 2, '1967': 2, 'theretofore': 2, 'right-of-entry': 2, 'Payments': 2, '$4,500,000': 2, '$3,500,000': 2, 'Ophthalmic': 2, 'Oral': 2, 'Orthopedic': 2, 'biophysical': 2, 'ocular': 2, 'nucleotide': 2, 'casualty': 2, 'simulation': 2, 'Surgery': 2, 'Mobilization': 2, 'Nicaragua': 2, 'unabated': 2, 'refurbished': 2, 'Squibb': 2, 'Specimens': 2, 'Temporary': 2, 'triservice': 2, 'Technicians': 2, 'Estimated': 2, 'calorimeter': 2, 'fluoride': 2, 'thermodynamically': 2, 'fast-opening': 2, 'fast-closing': 2, 'diatomic': 2, 'CH': 2, 'SH': 2, 'microwave': 2, 'hydride': 2, 'helium-4': 2, 'Carbon': 2, '3.3': 2, 'Surface': 2, 'fulfills': 2, '0.001': 2, 'Measurement': 2, 'Standards': 2, 'dissemination': 2, 'bibliographies': 2, '39,000': 2, "attorney's": 2, 'misdemeanor': 2, 'executor': 2, 'assignee': 2, 'raiding': 2, "Central's": 2, 'two-system': 2, 'Detailed': 2, 'Lindsay': 2, 'Orvil': 2, 'Dryfoos': 2, 'Merz': 2, 'T-34': 2, 'republics': 2, 'blockading': 2, 'rulings': 2, 'short-of-war': 2, 'foodstuffs': 2, '78th': 2, 'Rehabilitation': 2, 'redistributed': 2, 'maximums': 2, '$23,000,000': 2, 'pivot': 2, 'Computing': 2, 'Allotments': 2, 'Concrete': 2, 'mortared': 2, 'Pre-shaped': 2, 'mounded': 2, 'hatchway': 2, 'CONELRAD': 2, 'low-level': 2, 'hot-shot': 2, 'belowground': 2, 'battery-powered': 2, 'Warm': 2, 'incipiency': 2, 'remanded': 2, 'exigencies': 2, '392': 2, 'amici': 2, 'curiae': 2, 'disenfranchisement': 2, 'inter': 2, 'comprehensively': 2, 'households': 2, '362': 2, 'objector': 2, "Justice's": 2, 'certiorari': 2, "petitioner's": 2, '407': 2, '346': 2, "Jehovah's": 2, 'Witnesses': 2, 'reclassified': 2, 'Pioneer': 2, 'concurred': 2, 'rebutted': 2, 'renders': 2, 'longhand': 2, "registrant's": 2, 'relevancy': 2, 'public-opinion': 2, 'readjustment': 2, 'afresh': 2, 'helpers': 2, 'Specifically': 2, 'Improve': 2, '400,000': 2, 'felling': 2, '350,000': 2, 'infestation': 2, 'rangelands': 2, '9.4': 2, 'dependents': 2, 'Expenditures': 2, 'outweigh': 2, 'violates': 2, 'obsolescent': 2, 'F-108': 2, 'curtailed': 2, "ICBM's": 2, "India's": 2, '$538': 2, 'disbursement': 2, 'resale': 2, 'transshipment': 2, 'Paragraph': 2, 'subsidiaries': 2, 'above-mentioned': 2, 'kc.': 2, '20-to-1': 2, 'allocations': 2, '1938-39': 2, 'clear-channel': 2, 'affidavits': 2, 'Refund': 2, 'Nonresident': 2, 'decedent': 2, 'computes': 2, 'Refunds': 2, 'royalties': 2, 'Sick': 2, "Lowell's": 2, 'trickle': 2, 'Thackeray': 2, 'Mathias': 2, 'legion': 2, 'gusto': 2, 'naught': 2, 'humanities': 2, 'metalworking': 2, 'bustle': 2, 'watchmaker': 2, 'plied': 2, 'cryptic': 2, 'apprenticeship': 2, 'tinkering': 2, 'caliper': 2, '1858': 2, 'Willcox': 2, 'Serial': 2, 'knee-type': 2, 're-sharpening': 2, 'gears': 2, 'gages': 2, 'Viall': 2, 'tenets': 2, 'Tool': 2, 'manufactures': 2, 'coning': 2, 'Budget': 2, 'textured': 2, 'apparel': 2, 'progressing': 2, 'Sans': 2, 'thermoelectric': 2, 'Leesona-Holt': 2, 'Rochdale': 2, 'Glee': 2, 'auditions': 2, 'Chaplain': 2, 'Worship': 2, 'Congregational-Baptist': 2, 'Boliou': 2, 'enameling': 2, 'contexts': 2, 'intramural': 2, '1.00': 2, 'Soccer': 2, 'Saddle': 2, 'Orchesis': 2, 'Dolphins': 2, 'Fete': 2, 'Catalog': 2, 'Manuscript': 2, 'KARL': 2, 'Co-operative': 2, '$1.9': 2, '5.6': 2, 'Auto': 2, '$1.8': 2, 'banking': 2, '188': 2, '7%': 2, 'VecTrol': 2, "VecTrol's": 2, 'Interference': 2, 'truest': 2, 'appropriateness': 2, 'affluent': 2, 'Supporting': 2, 'non-academic': 2, 'non-thermal': 2, '3-cm': 2, '1.25-cm': 2, 'lunation': 2, 'sinusoidal': 2, 'Pettit': 2, 'rocklike': 2, 'wave-length': 2, '3.03': 2, 'centimeter': 2, 'Coates': 2, 'half-intensity': 2, "moon's": 2, '8.6-mm': 2, 'Gaussian': 2, 'ablation': 2, 'Amp': 2, 'convection': 2, 'conduction': 2, 'Sheer': 2, 'co-workers': 2, 'ejected': 2, 'porosity': 2, 'pore': 2, '1/16': 2, 'pyrometer': 2, 'x': 2, 'enthalpy': 2, 'dotted': 2, '**ye': 2, 'cps': 2, 'adhesives': 2, 'molten': 2, 'molal': 2, 'thermodynamic': 2, 'thermodynamics': 2, 'Philippoff': 2, '45-degrees': 2, 'poises': 2, '**zq': 2, 'conformational': 2, 'asymmetric': 2, 'gauss': 2, 'dimethylglyoxime': 2, 'trigonal': 2, 'interlayer': 2, 'asymmetrically': 2, 'randomly': 2, 'ups': 2, 'impurity': 2, 'ferromagnetic': 2, 'centrifugation': 2, 'endothermic': 2, '337-degrees-C': 2, 'susceptibility': 2, 'Varian': 2, 'spectrometer': 2, 'distortions': 2, 'low-temperature': 2, 'surfactants': 2, 'tripolyphosphate': 2, 'alkaline': 2, 'Wet': 2, 'washings': 2, 'colloidal': 2, 'Greasy': 2, 'typified': 2, 'glycerol': 2, 'agglomerate': 2, 'greases': 2, 'hydrophilic': 2, 'hydrophobic': 2, 'two-fold': 2, 'congregate': 2, 'Freed': 2, 'Cleaned': 2, '65-degrees': 2, '85-degrees': 2, 'isotopic': 2, 'chips': 2, 'watt': 2, '220-degrees': 2, 'shatter': 2, 'gaseous': 2, 'irreproducibility': 2, 'Sets': 2, 'uranyl': 2, 'oxalate': 2, '14.7': 2, 'orbital': 2, 'semi-major': 2, 'micrometeoritic': 2, 'deep-sea': 2, '153': 2, '4.5': 2, '7/2': 2, 'detectors': 2, 'ejection': 2, 'densities': 2, 'zero-magnitude': 2, '2.512': 2, 'hand-to-hand': 2, 'respiration': 2, 'inoculation': 2, 'isopleths': 2, 'tularemia': 2, 'logistic': 2, 'debilitating': 2, 'epidemics': 2, 'contradictorily': 2, 'prerequisite': 2, 'Huge': 2, 'diethylaminoethyl': 2, 'DEAE': 2, 'agglutinins': 2, 'Serum': 2, 'sensitized': 2, '512': 2, 'bovine': 2, 'heterozygous': 2, '37-degrees-C': 2, 'anti-human': 2, 'antisera': 2, 'Chromatography': 2, '8.6': 2, 'Tris': 2, 'equilibrated': 2, 'cone-sphere': 2, '2-liter': 2, '4.1': 2, 'unstained': 2, 'Ultracentrifugation': 2, 'AB': 2, 'honeybee': 2, 'hibernate': 2, 'torpor': 2, 'Ribes': 2, 'sloe': 2, 'staminate': 2, 'catkin': 2, 'Bumblebees': 2, 'bumblebee': 2, 'nesting': 2, 'sip': 2, 'drones': 2, 'moths': 2, 'onslaughts': 2, 'baskets': 2, 'unobtrusively': 2, 'armata': 2, 'duller': 2, 'burrows': 2, 'nomias': 2, 'evaporation': 2, 'Klauber': 2, "Carpenter's": 2, 'garter': 2, 'gravid': 2, 'herpetologists': 2, 'noticeably': 2, 'graveyards': 2, 'Heuvelmans': 2, 'freaks': 2, 'amplification': 2, 'Brookfield': 2, 'Ditmars': 2, '9.8': 2, "anaconda's": 2, 'geologist': 2, 'lymph': 2, 'nodes': 2, 'incompletely': 2, 'lobules': 2, 'vasa': 2, 'vasorum': 2, 'physiologic': 2, 'segmental': 2, 'morphology': 2, "'13": 2, 'nutrient': 2, 'proximal': 2, 'Ghoreyeb': 2, 'Karsner': 2, 'nutritive': 2, 'lesion': 2, 'Verloop': 2, 'subgross': 2, 'tabulation': 2, 'imperfectly': 2, 'peripherally': 2, 'Shoulder': 2, 'Knee': 2, 'Foot': 2, 'osseous': 2, 'epiphyseal-diaphyseal': 2, 'arrayed': 2, 'Wolff': 2, 'homogenate': 2, 'Kirkwood': 2, 'Taurog': 2, 'Chaikoff': 2, 'peroxide': 2, 'mono-': 2, 'peptidases': 2, 'Alpers': 2, 'preferentially': 2, 'macromolecular': 2, 'de-iodinating': 2, 'Stanbury': 2, 'oxidised': 2, 'proteolysis': 2, 'binds': 2, 'Antithyroid': 2, 'counteracted': 2, 'goitrogens': 2, 'goitrogen': 2, 'hypertrophy': 2, 'bio-assay': 2, 'assaying': 2, 'necropsy': 2, 'steroids': 2, 'debility': 2, 'biopsy': 2, 'prednisone': 2, 'tapering': 2, 'edema': 2, 'congestive': 2, 'girdle': 2, 'dexamethasone': 2, 'urinary': 2, 'well-developed': 2, 'outflow': 2, 'infiltrated': 2, 'basophilic': 2, 'friable': 2, 'orifices': 2, 'hyperemic': 2, 'sinusoids': 2, 'hemosiderin': 2, 'arteriolosclerosis': 2, 'hyperemia': 2, 'green-brown': 2, 'colon': 2, 'foul-smelling': 2, 'submucosa': 2, 'fibrin': 2, 'interstitial': 2, 'glomerular': 2, 'arterioles': 2, 'pectoralis': 2, 'transversus': 2, 'vacuolization': 2, 'pyknotic': 2, 'cross-striations': 2, 'nucleoli': 2, 'myofibrillae': 2, 'clumps': 2, '80%': 2, 'Root': 2, 'smeared': 2, 'Schramm': 2, 'Rottger': 2, '37-degrees': 2, 'blotting': 2, 'Zeiss': 2, 'absorptions': 2, '0.85%': 2, 'layering': 2, 'milliliter': 2, 'bluish': 2, 'localization': 2, 'thick-walled': 2, 'nociceptive': 2, 'neocortical-hypothalamic': 2, 'cortico-hypothalamic': 2, 'cortico-fugal': 2, 'summate': 2, 'spikes': 2, 'electroshock': 2, 'EEG': 2, 'asynchrony': 2, 'somatic': 2, 'reflexly': 2, 'analeptic': 2, 'psychoactive': 2, 'synchrony': 2, 'neuropsychiatric': 2, 'correlating': 2, 'inhibitory': 2, 'pharmacological': 2, 'convincingly': 2, 'underlie': 2, 'feeding-pain': 2, 'autonomic-somatic': 2, '6.4': 2, 'decomposing': 2, 'scalar': 2, 'spanned': 2, 'decomposes': 2, 'primes': 2, 'direct-sum': 2, 'Corollary': 2, 'commutes': 2, 'algebra': 2, 'straight-haired': 2, 'solves': 2, 'Exactly': 2, 'Binomial': 2, 'not-ace': 2, 'Voting': 2, '0.6': 2, '0.16': 2, 'Bernoulli': 2, 'circumscribing': 2, 'multi-valued': 2, 'parametric': 2, 'double-valued': 2, 'b{t}': 2, "l'": 2, 'totality': 2, 'quadratic': 2, '**yp': 2, 'conic': 2, 'intersecting': 2, 'intractable': 2, 'underlining': 2, 'interrelationships': 2, 'Efforts': 2, 'tenancy': 2, 'mobilize': 2, 'pertinence': 2, 'beckoning': 2, 'equanimity': 2, 'vis-a-vis': 2, 'internalized': 2, 'transcendental': 2, 'dogmas': 2, 'spatially': 2, 'integrating': 2, 'insuperable': 2, 'befall': 2, 'bone-weary': 2, 'stressful': 2, 'dissipated': 2, 'transference': 2, 'pathogenic': 2, 'precipitating': 2, 'reactivated': 2, 'short-contact': 2, 'telescoped': 2, 'weddings': 2, 'subsystem': 2, 'Subgroups': 2, 'consanguinity': 2, 'hypothesized': 2, 'Systemic': 2, 'Socialization': 2, 'statistically': 2, 'exogamy': 2, 'deviance': 2, 'intergroup': 2, 'Indigenes': 2, 'Direction': 2, 'tabulations': 2, 'age-and-sex': 2, 'out-migrants': 2, 'compilations': 2, 'Belge': 2, 'Statistical': 2, 'successively': 2, 'stratified': 2, 'strata': 2, "semester's": 2, 'interpersonal': 2, 'contagious': 2, 'in-laws': 2, 'Mainly': 2, 'associating': 2, 'concretistic': 2, 'hesitancy': 2, 'Co': 2, 'nonreactors': 2, '24%': 2, 'arm-levitation': 2, 'Condition': 2, 'inhibiting': 2, 'stationary': 2, 'tenement': 2, 'Castaneda': 2, 'permeates': 2, 'sub-tests': 2, 'Computation': 2, 'surmised': 2, 'decrement': 2, 'memorizing': 2, 'panicked': 2, 'Observers': 2, 'Evaluation': 2, 'outstandingly': 2, 'criticizing': 2, 'laxness': 2, "manager's": 2, 'blackboard': 2, "supervisor's": 2, 'scolding': 2, 'annoy': 2, 'condescending': 2, 'condescension': 2, 'demeanor': 2, 'morrow': 2, 'paranoid': 2, 'stolidly': 2, 'shutting': 2, 'communicational': 2, 'determinants': 2, 'repetitious': 2, 'welter': 2, 'belching': 2, 'flatus': 2, 'belch': 2, 'philosophizing': 2, 'deplorable': 2, 'synthesized': 2, 'data-processing': 2, 'Y-region': 2, 'inspected': 2, 'i-th': 2, 'glorify': 2, 'predicator': 2, 'friendlier': 2, 'complements': 2, 'preposition': 2, 'semantically': 2, 'underlined': 2, "reader's": 2, 'alertness': 2, "sisters'": 2, 'stimulates': 2, 'italics': 2, "Mack's": 2, 'subordinator': 2, 'unambiguously': 2, 'gerundial': 2, 'Syllables': 2, '/l/': 2, 'AAb/': 2, 'rhyme': 2, 'Papers': 2, 'analysed': 2, 'simplistic': 2, 'Analyses': 2, 'pondering': 2, 'nonlinguistic': 2, 'disentangle': 2, 'phonetic': 2, 'phonemics': 2, 'Tonal': 2, 'confusing': 2, 'orthographies': 2, 'transcription': 2, 'Verbal': 2, 'Iraqw': 2, '3.46': 2, '2.75': 2, 'one-eighth': 2, "Swadesh's": 2, 'salmon': 2, 'adverbs': 2, '1.07': 2, 'concordant': 2, '2.0': 2, 'Mon-Khmer': 2, 'I-E': 2, 'Towards': 2, 'unpredictably': 2, 'Gleason': 2, 'asterisks': 2, 'lexical': 2, 'Uto-Aztecan': 2, 'cloudy': 2, 'swerve': 2, 'Prussia': 2, "Poland's": 2, 'Silesia': 2, 'evicted': 2, 'Teheran': 2, 'Neisse': 2, 'exterminate': 2, 'practised': 2, 'Byrnes': 2, 'anti-Soviet': 2, 'Liberated': 2, 'actualities': 2, 'reproach': 2, 'self-government': 2, 'identifications': 2, "Istiqlal's": 2, 'predominance': 2, 'self-interest': 2, 'scrutin': 2, 'maximize': 2, "L'Union": 2, 'Popular': 2, 'demarcation': 2, 'semi-skilled': 2, 'unenthusiastic': 2, 'topping': 2, 'sedate': 2, 'doggedly': 2, 'Mart': 2, 'echelon': 2, 'chartist': 2, 'vernacular': 2, 'diffused': 2, 'bearish': 2, 'played-out': 2, 'unimaginable': 2, 'Technique': 2, 'oversubscribed': 2, 'longer-term': 2, '1,083,000': 2, 'entry-limiting': 2, 'behaves': 2, 'cost-raising': 2, 'neutralization': 2, 'Wheaton': 2, 'self-will': 2, 'codification': 2, 'judiciary': 2, 'emanation': 2, 'amoral': 2, 'rationalization': 2, 'clog': 2, "Frankfurter's": 2, 'postponement': 2, 'Justices': 2, 'swoop': 2, 'lawmaking': 2, 'Erie': 2, 'FELA': 2, 'fooled': 2, 'federal-state': 2, 'Litigants': 2, 'litigant': 2, 'amortize': 2, '381(c)(6)': 2, '381(c)': 2, 'transferee': 2, 'complying': 2, 'reorganizations': 2, 'Holding': 2, '54-17': 2, 'inapplicable': 2, 'contingent-fee': 2, 'postmark': 2, 'endeavored': 2, 'consoled': 2, 'Perluss': 2, 'Normally': 2, 'fieldwork': 2, 'Yuba': 2, 'midair': 2, 'noncompliance': 2, 'corollary': 2, 'manipulating': 2, 'concretely': 2, 'Emotional': 2, 'maladjustments': 2, 'NAIRO': 2, 'Fairfax': 2, 'Foggy': 2, 'conjured': 2, 'hand-in-glove': 2, 'upper-middle-': 2, "teacher's": 2, 'upward-mobile': 2, 'vocational-advancement': 2, 'emphases': 2, 'Commissions': 2, 'upper-class': 2, 'Financing': 2, 'dwarfs': 2, 'total-cost': 2, 'apportionments': 2, 'parlance': 2, 'volumetric': 2, 'metering': 2, 'imputation': 2, 'Hempel': 2, "Heidegger's": 2, 'emergent': 2, 'sterility': 2, 'troubling': 2, 'excruciating': 2, 'untrue': 2, 'childishly': 2, 'subjectivist': 2, 'onlooker': 2, 'shrapnel': 2, 'occipital': 2, 'psychically': 2, 'memory-images': 2, 'third-dimensional': 2, 'portfolio-maker': 2, 'corroborate': 2, 'recount': 2, 'Dice': 2, 'epics': 2, 'broadens': 2, 'hesitantly': 2, 'ranches': 2, 'Beall': 2, 'trapper': 2, 'Bullets': 2, 'Noticing': 2, 'felled': 2, 'bloodhounds': 2, 'adobe': 2, "posse's": 2, 'overbearing': 2, 'Jose': 2, 'besiegers': 2, 'Receiving': 2, 'lifeless': 2, 'Goodwin': 2, 'jeweler': 2, 'Equinox': 2, 'telegrams': 2, 'editorially': 2, 'flimsy': 2, 'toppled': 2, 'Fowler': 2, 'Hapgood': 2, "Graves'": 2, 'Londonderry': 2, 'Windham': 2, 'Towsley': 2, 'Wilcox': 2, 'Hitchcock': 2, 'transformers': 2, 'phantasy': 2, 'overflow': 2, 'festivus': 2, 'lexicon': 2, 'academics': 2, 'dispossessed': 2, 'genus': 2, 'commonwealth': 2, 'falsify': 2, 'actuated': 2, 'outwardly': 2, 'remnant': 2, 'Sympathy': 2, 'insurrection': 2, 'deserving': 2, 'fanatics': 2, 'rebuke': 2, 'Woodbury': 2, 'endeavoring': 2, 'eye-undeceiving': 2, 'eked': 2, 'collages': 2, "Cooper's": 2, 'sculptural': 2, 'Planes': 2, 'imaging': 2, 'three-dimensionality': 2, 'verge': 2, 'opted': 2, 'representational': 2, 'plumped': 2, 'juxtaposed': 2, 'planar': 2, 'Synthetic': 2, 'skyscraper': 2, 'interchanges': 2, 'mitigates': 2, 'leapfrog': 2, 'central-city': 2, 'bonnet': 2, 'diagnosticians': 2, 'frescos': 2, 'canopy': 2, 'Filippo': 2, 'Painting': 2, 'intonaco': 2, 'titanium': 2, 'waterproof': 2, 'leaky': 2, 'shrug': 2, 'denunciations': 2, 'Gagarin': 2, 'pastures': 2, 'cherry': 2, 'depressingly': 2, 'cluttered': 2, 'survey-type': 2, 'prognosis': 2, 'recitative': 2, 'liturgical': 2, 'calmness': 2, 'rhythmically': 2, 'mild-mannered': 2, "Varlaam's": 2, 'eerie': 2, "Rangoni's": 2, 'Amonasro': 2, 'Grigori': 2, "Tsar's": 2, "guests'": 2, 'cudgels': 2, "Pimen's": 2, "Basil's": 2, 'hushed': 2, 'notebook': 2, 'intermittently': 2, 'Swinburne': 2, '1881': 2, 'viewless': 2, 'anonymity': 2, 'expiation': 2, 'Evil': 2, 'inanimate': 2, 'Apollinaire': 2, 'Mozart': 2, 'Emotionally': 2, 'confabulation': 2, 'Tate': 2, 'Eluard': 2, 'cubist': 2, 'expressionists': 2, 'mother-of-pearl': 2, 'drapery': 2, 'expressionism': 2, 'minstrel': 2, 'poetizing': 2, 'Magoun': 2, 'improvise': 2, 'nouns': 2, 'Gar-Dene': 2, 'Combellack': 2, 'redactor': 2, 'awry': 2, 'Priam': 2, 'matured': 2, 'Jaggers': 2, 'terrifies': 2, 'withered': 2, "Pumblechook's": 2, 'Wemmick': 2, 'Gargery': 2, "Dickens'": 2, 'pantry': 2, 'eluding': 2, 'Magwitch': 2, 'bogy': 2, 'signpost': 2, 'accusingly': 2, 'handcuffs': 2, 'reappearance': 2, 'claps': 2, 'tantrum': 2, 'scarred': 2, "Jaggers'": 2, 'fingernails': 2, 'Satis': 2, 'Compeyson': 2, 'flats': 2, 'finger-post': 2, 'pointer': 2, 'hypocritical': 2, 'grief-stricken': 2, 'hundredth': 2, 'tailor': 2, 'synchronizers': 2, '106': 2, 'Compiler': 2, 'LITORIGIN': 2, 'XRELEASE': 2, 'SRELEASE': 2, 'Declarative': 2, 'DSW': 2, 'RDW': 2, 'IOCS': 2, 'one-digit': 2, '94': 2, 'wastewater': 2, 'hp.': 2, 'Eckenfelder': 2, 'lagoons': 2, '4-day': 2, 'Pilot': 2, 'diam': 2, 'Examination': 2, 'influent': 2, 'Ice': 2, '270': 2, 'weir': 2, 'mg/l/hr': 2, 'runoff': 2, 'Routine': 2, 'determinations': 2, 'l.': 2, 'oceanography': 2, 'ASW': 2, 'delineating': 2, 'preponderance': 2, 'Attack': 2, 'oceanographic': 2, 'inshore': 2, 'ambushed': 2, 'PABA': 2, 'carbons': 2, 'esterases': 2, 'inactivation': 2, 'Erdos': 2, 'EWC': 2, 'macromolecules': 2, 'peptides': 2, 'differentiability': 2, 'pendulum': 2, 'time-temperature': 2, 'silica': 2, 'Libyan': 2, 'inclusions': 2, 'crater': 2, 'Sahara': 2, 'alcohols': 2, 'carbonyl': 2, 'ligands': 2, 'imperfections': 2, 'polymeric': 2, 'hindrances': 2, 'copolymers': 2, 'lattice': 2, 'ATP': 2, 'benzene': 2, 'initiator': 2, 'Geology': 2, 'hexagonal': 2, 'crystallographic': 2, 'mineralogical': 2, 'Petty': 2, 'J.D.H.': 2, 'indexes': 2, 'Coverage': 2, 'binders': 2, 'parasitic': 2, 'inactivate': 2, 'megawatt': 2, 'inherently': 2, 'appetizing': 2, 'acceptability': 2, 'sterilizing': 2, 'carbide': 2, 'compressive': 2, 'bluntness': 2, 'Carboloy': 2, 'frictional': 2, 'refrigerators': 2, 'frothing': 2, 'interlining': 2, 'end-use': 2, 'Sandwich': 2, 'insulating': 2, 'Readers': 2, 'Furniture': 2, 'hydroxyl-rich': 2, 'end-product': 2, 'polyesters': 2, 'semi-rigid': 2, 'urethanes': 2, 'catalysts': 2, 'latex': 2, 'glycol': 2, 'isocyanate': 2, 'Basically': 2, 'Thermal': 2, 'mixer': 2, 'cushions': 2, 'ironed': 2, '90-degrees-F': 2, 'liters': 2, '160-degrees-F': 2, 'Drying': 2, 'Distances': 2, 'wales': 2, 'fin': 2, '120-degrees': 2, 'rotates': 2, 'eight-inch': 2, 'washer': 2, 'r.p.m.': 2, 'presser': 2, 'tensioning': 2, 'Woven': 2, '43*0C.': 2, 'Refill': 2, 'High-gain': 2, 'photoelectronic': 2, 'Channel-type': 2, 'Image': 2, 'multipactor': 2, 'TSEM': 2, 'high-gain': 2, 'defocusing': 2, 'paraxial': 2, '14-1': 2, 'concentric': 2, 'field-flattening': 2, 'F.R.': 2, 'photocathodes': 2, 'S-11': 2, 'S-20': 2, 'P-11': 2, 'Eq.': 2, 'scatter': 2, 'Bellman': 2, 'accelerations': 2, 'preflight': 2, 'low-pass': 2, '7-3': 2, '7-4': 2, 'Platform': 2, 'perpendicular': 2, 'Gyrocompass': 2, 'north-south': 2, 'X-gyro': 2, 'banners': 2, 'tempt': 2, 'unsmiling': 2, 'stethoscope': 2, 'wagged': 2, 'glinted': 2, "Rachel's": 2, 'defying': 2, 'raped': 2, 'testicle': 2, 'unprotected': 2, 'mourners': 2, 'wraith-like': 2, 'Clumps': 2, 'searchlight': 2, 'Lying': 2, 'snugly': 2, 'mutely': 2, 'Brittany': 2, "C'est": 2, 'oui': 2, 'Christiansen': 2, 'Supplies': 2, 'Beside': 2, 'distrusted': 2, 'Sojourner': 2, 'obsequious': 2, 'snickered': 2, 'disrepair': 2, 'trash': 2, 'doorbell': 2, 'banisters': 2, 'congress': 2, 'pantomime': 2, 'clammy': 2, 'unhitched': 2, 'tousled': 2, 'soothed': 2, 'declaimed': 2, 'Wilkes': 2, 'Trenchard': 2, 'Guns': 2, 'celebrations': 2, 'leapt': 2, 'theatrically': 2, "Harris's": 2, 'Rathbone': 2, 'whinnied': 2, 'tugged': 2, 'ferocity': 2, 'wickedly': 2, 'gloated': 2, 'Houses': 2, "Po'": 2, 'Chavis': 2, 'Startled': 2, 'windowpanes': 2, 'rattled': 2, 'basking': 2, 'yawning': 2, 'consign': 2, "soldiers'": 2, 'roundhouse': 2, 'greening': 2, 'Laurel': 2, "Somebody's": 2, 'shuffled': 2, 'thin-lipped': 2, 'cleft': 2, 'Aggie': 2, 'Lightning': 2, 'crooked': 2, 'straggling': 2, 'jingled': 2, 'insolent': 2, 'haughty': 2, 'shit': 2, 'doin': 2, 'juke': 2, 'tryin': 2, 'haranguing': 2, 'Bastards': 2, 'takin': 2, 'oughta': 2, 'gnashing': 2, "sky's": 2, 'Lookit': 2, 'Yehhh': 2, 'jerk': 2, 'Quick': 2, 'Finnegan': 2, "Voltaire's": 2, 'depraved': 2, 'decry': 2, 'craved': 2, 'Afraid': 2, 'squirmed': 2, 'a-coming': 2, 'misjudged': 2, 'nauseated': 2, 'crazed': 2, 'waded': 2, 'Pitt': 2, 'reloaded': 2, 'slackened': 2, 'pasty': 2, 'rob': 2, 'outface': 2, 'braver': 2, 'Ameaux': 2, 'gaming-card': 2, 'Dancing': 2, 'Bordel': 2, 'chinless': 2, 'dishonor': 2, 'rudely': 2, 'ungodly': 2, 'Ablard': 2, 'Corne': 2, 'sunken': 2, 'adulterers': 2, 'pigeon': 2, 'insurmountable': 2, 'Sleep': 2, 'Nerien': 2, 'godless': 2, 'Tears': 2, "Eli's": 2, 'unleavened': 2, 'firelight': 2, 'premonition': 2, 'rabble': 2, 'blob': 2, 'stationery': 2, 'yellowing': 2, 'stoicism': 2, 'surmounted': 2, 'obscenities': 2, 'obscene': 2, 'Antietam': 2, 'emptiness': 2, 'turban': 2, 'twitching': 2, 'Slice': 2, 'queried': 2, 'darkly': 2, 'sizzled': 2, 'clubbed': 2, 'swirl': 2, 'veining': 2, 'Buckra': 2, 'tits': 2, 'slop': 2, 'ole': 2, 'skippers': 2, 'fer': 2, 'lob-scuse': 2, 'terry-cloth': 2, 'wobbly': 2, 'euphoria': 2, 'jabbed': 2, 'enervating': 2, "'nuff": 2, 'constricted': 2, 'gauged': 2, 'glassy': 2, 'wan': 2, 'uselessness': 2, 'herded': 2, 'wrapper': 2, 'monosyllables': 2, 'restlessly': 2, 'Funny': 2, 'teacart': 2, 'fling': 2, 'Sabine': 2, 'Cestre': 2, 'Alix': 2, 'drawing-room': 2, 'bookcase': 2, "Eugene's": 2, 'concierge': 2, 'clogged': 2, 'unclaimed': 2, 'sight-seeing': 2, 'myrrh': 2, 'aloes': 2, 'Arimathea': 2, 'Pieta': 2, 'ungainly': 2, 'foreheads': 2, 'Tiber': 2, 'sluiced': 2, 'tactile': 2, 'sinewy': 2, 'mid-fifties': 2, 'Jacopo': 2, 'Santo': 2, 'convulsively': 2, 'packs': 2, 'remembrance': 2, 'cronies': 2, 'Hush': 2, 'perplexed': 2, "Joel's": 2, "out'n": 2, 'crowed': 2, 'Manassas': 2, 'insulted': 2, 'scudding': 2, 'buckles': 2, 'hulks': 2, "Breed's": 2, 'seeped': 2, 'thickets': 2, 'violet': 2, 'knob': 2, 'swamps': 2, 'Uplands': 2, 'rostrum': 2, 'chills': 2, "Warsaw's": 2, "Andrei's": 2, 'goddamned': 2, 'Bathyrans': 2, "Death's-Head": 2, "Lublin's": 2, 'Auxiliaries': 2, 'Reinhard': 2, 'haggard': 2, 'son-of-a-bitch': 2, 'ginmill': 2, 'Ballestre': 2, 'jabbing': 2, 'coffeepot': 2, 'Honest': 2, "dog's": 2, 'bleary': 2, 'valet': 2, "O'Dwyer": 2, "O'Dwyers": 2, "Pat's": 2, 'portwatchers': 2, "Hino's": 2, 'unasked': 2, "Kayabashi's": 2, 'Fujimoto': 2, 'Mavis': 2, 'Konishi': 2, 'goose': 2, 'jaded': 2, 'Bishopsgate': 2, 'girlishly': 2, 'crudely': 2, 'milord': 2, 'Minerva': 2, 'owl': 2, 'overdone': 2, 'unhurriedly': 2, 'Demanded': 2, 'Thynne': 2, 'flaunted': 2, 'torches': 2, 'folding': 2, 'slits': 2, 'pouch': 2, 'rampart': 2, 'timbered': 2, 'reclaimed': 2, 'Hillman': 2, 'stocky': 2, 'postures': 2, 'strut': 2, 'mucus': 2, 'fetid': 2, 'hush': 2, 'chute': 2, 'stupidly': 2, 'beech': 2, 'boundless': 2, 'signified': 2, 'gout': 2, 'kit': 2, 'Blevins': 2, "Won't": 2, 'Sit': 2, 'coyness': 2, 'escritoire': 2, 'Um': 2, 'indefinable': 2, 'oblivion': 2, "Mark's": 2, "uncle's": 2, 'ascended': 2, 'waked': 2, 'pig-drunk': 2, 'unscrewed': 2, 'shove': 2, 'lionized': 2, 'cages': 2, 'jutting': 2, 'grunt': 2, 'cuffs': 2, 'funniest': 2, 'ferociously': 2, 'stump': 2, 'whirring': 2, 'Lucretia': 2, 'smoothing': 2, 'writhe': 2, 'brides': 2, 'reprieve': 2, 'loft': 2, 'parched': 2, 'Debora': 2, 'Homemakers': 2, "Albright's": 2, 'possum-hunting': 2, 'darn': 2, "Couldn't": 2, 'wattles': 2, 'lineage': 2, 'stroked': 2, 'gobbled': 2, 'ministrations': 2, 'nestling': 2, 'gingerly': 2, 'swerved': 2, 'remarking': 2, 'wails': 2, 'Sighing': 2, 'untie': 2, 'cherries': 2, 'gardening': 2, 'Halfway': 2, 'clotheshorse': 2, 'overshoes': 2, 'imitating': 2, 'tango': 2, 'jubilantly': 2, 'Jessie': 2, 'goodnight': 2, 'implored': 2, 'Astor': 2, 'double-breasted': 2, 'lapels': 2, 'noisemakers': 2, 'serenaded': 2, 'Scout': 2, 'interne': 2, 'gentleness': 2, 'Listening': 2, 'dad': 2, 'rumdum': 2, 'gangster': 2, 'unlucky': 2, 'Want': 2, 'paunch': 2, "Cate's": 2, 'Quebec': 2, 'napkin': 2, 'sullenly': 2, 'aleck': 2, 'coke': 2, 'yawn': 2, 'unblinkingly': 2, "Admassy's": 2, "Sanford's": 2, 'red-clay': 2, 'puddles': 2, 'drummed': 2, 'about-faced': 2, 'bordered': 2, 'Burch': 2, 'ruse': 2, 'nerve-shattering': 2, 'Admassy': 2, 'muddied': 2, 'thundered': 2, 'reverberated': 2, "must've": 2, 'Biscayne': 2, 'luscious': 2, "Painter's": 2, 'commending': 2, 'dismally': 2, 'punk': 2, 'sipped': 2, 'coupe': 2, "Shayne's": 2, 'paunchy': 2, 'steadied': 2, 'feint': 2, 'macabre': 2, 'hunched': 2, 'Ducking': 2, 'tripped': 2, 'wobbled': 2, 'snowed': 2, 'skeleton': 2, "florist's": 2, 'tracking': 2, 'wearying': 2, 'poodle': 2, 'pecked': 2, 'Carmody': 2, 'Wants': 2, 'distract': 2, 'Machines': 2, 'tomblike': 2, 'Lila': 2, 'contacting': 2, "hangin'": 2, 'crooks': 2, "Angelo's": 2, 'Prettyman': 2, 'Denny': 2, "everything's": 2, 'Domokous': 2, "Skyros'": 2, 'smokehouse': 2, 'credible': 2, "Emile's": 2, 'moccasins': 2, 'curtly': 2, 'dosed': 2, 'ruthlessness': 2, 'drizzling': 2, 'Reckon': 2, "Rev's": 2, 'gulp': 2, 'stinking': 2, 'Jacobs': 2, "Kitti's": 2, "Conrad's": 2, 'Quickly': 2, 'unpredictable': 2, 'grasping': 2, 'cleanly': 2, 'onlookers': 2, "Felix's": 2, 'receded': 2, 'necktie': 2, 'skylights': 2, 'Lissa': 2, 'Cradle': 2, 'Rocco': 2, 'hustled': 2, "Skolman's": 2, 'salvaging': 2, 'discordantly': 2, "money's": 2, 'scraggly': 2, 'Rossi': 2, 'limped': 2, 'sneaking': 2, 'spying': 2, 'Dronk': 2, "Holden's": 2, "Crosson's": 2, 'Deliberately': 2, 'yelp': 2, 'Crosson': 2, 'blatant': 2, 'cringed': 2, 'wilfully': 2, 'morosely': 2, "Ferguson's": 2, 'Good-bye': 2, 'Glad': 2, 'seeping': 2, 'MacReady': 2, 'busboy': 2, 'Precinct': 2, 'lodgings': 2, 'Shrugs': 2, 'centrifuge': 2, 'Forget': 2, 'dereliction': 2, 'Stilts': 2, 'too-large': 2, 'martinis': 2, 'pathologist': 2, 'nasal': 2, 'one-thirty': 2, 'haircut': 2, "Joan's": 2, 'prized': 2, "building's": 2, 'Impossible': 2, 'john': 2, 'swallows': 2, 'uncertainly': 2, 'vestibule': 2, 'fussing': 2, "Hoag's": 2, 'lurching': 2, 'fumed-oak': 2, 'Torrence': 2, 'Schaeffer': 2, 'seepage': 2, 'day-watch': 2, 'Rinker': 2, 'Vaughn': 2, 'eying': 2, 'Gunnar': 2, 'negligence': 2, 'negligent': 2, 'showers': 2, 'Gonzalez': 2, 'Prop.': 2, 'muse': 2, "Casey's": 2, "Burton's": 2, 'wastebasket': 2, 'sodden': 2, 'glint': 2, 'blackmailer': 2, 'sedan': 2, 'appreciatively': 2, 'chartroom': 2, 'padlock': 2, 'buckled': 2, 'wiggling': 2, 'aloneness': 2, 'Jolla': 2, 'Redondo': 2, 'brew': 2, 'Cigarette': 2, 'grimaced': 2, 'hissed': 2, 'lingered': 2, 'exhaled': 2, 'Ran': 2, 'Colored': 2, "Tim's": 2, "Harbor's": 2, 'yachting': 2, 'outriggers': 2, "Moore's": 2, 'redecorated': 2, 'Westmore': 2, 'alimony': 2, 'babbled': 2, 'stinging': 2, 'grazed': 2, 'lumpy': 2, 'fluttered': 2, 'grunting': 2, 'Wharf': 2, 'inwardness': 2, 'hex': 2, 'granite': 2, 'demoniac': 2, 'sneak': 2, 'glowering': 2, 'rumpled': 2, 'morose': 2, 'Sirs': 2, 'escorting': 2, 'mussels': 2, 'doubtfully': 2, 'Brakes': 2, "Haney's": 2, 'hangover': 2, 'surly': 2, 'sickening': 2, 'pallor': 2, 'moistened': 2, 'sulked': 2, 'feverishly': 2, 'crate': 2, 'yuh': 2, 'agin': 2, 'drunker': 2, "Charlie's": 2, 'Maxine': 2, "Seaton's": 2, 'Manny': 2, 'discorporate': 2, 'cusp': 2, 'Boone': 2, 'warily': 2, 'Mahmoud': 2, 'Ones': 2, 'Monitor': 2, 'jackass': 2, 'angelic': 2, 'halo': 2, 'sentient': 2, 'Thought': 2, 'blazed': 2, 'Haijac': 2, 'Bazaar': 2, 'Apocalyptic': 2, 'Sturch': 2, 'navel': 2, 'one-gee': 2, 'suspensor': 2, 'animation': 2, 'unfrozen': 2, "journey's": 2, 'deceleration': 2, 'gender': 2, 'elation': 2, 'Sack': 2, 'Nernst': 2, 'sleepily': 2, 'hugged': 2, 'Nitrogen': 2, 'lug': 2, 'coverall': 2, 'nudged': 2, 'beasts': 2, 'curl': 2, 'spaceship': 2, 'ringed': 2, 'insomnia': 2, 'mucking': 2, 'shipmate': 2, 'Worlds': 2, 'crooned': 2, 'cords': 2, 'digesting': 2, 'diaphragmic': 2, 'scouts': 2, 'Tanner': 2, "pilots'": 2, 'wisecracked': 2, 'screams': 2, 'bawled': 2, 'resembling': 2, 'geysers': 2, 'ditches': 2, 'nester': 2, "hell's": 2, 'idiot': 2, "stallion's": 2, 'Lived': 2, 'rump': 2, 'campfire': 2, 'watchful': 2, 'leavin': 2, 'rustled': 2, 'manes': 2, 'leaping': 2, 'unsteady': 2, 'dabbing': 2, 'Fortune': 2, "Dean's": 2, 'veer': 2, 'Durkin': 2, 'uproar': 2, 'booty': 2, 'hoods': 2, 'canister': 2, 'Guerrillas': 2, 'grub': 2, 'pillar': 2, "comin'": 2, 'Blackfeet': 2, "Oso's": 2, 'Rees': 2, 'lances': 2, 'spine-chilling': 2, 'circling': 2, 'shields': 2, 'saddles': 2, "fire's": 2, 'aback': 2, 'whiteface': 2, 'Carwood': 2, 'expressionless': 2, "Amelia's": 2, 'spineless': 2, 'echoing': 2, 'white-topped': 2, 'Haskell': 2, 'Mitch': 2, "Kruger's": 2, 'Dealing': 2, 'monitors': 2, 'Dangerous': 2, 'Culver': 2, 'great-grandfather': 2, 'omen': 2, 'steeper': 2, 'bruising': 2, 'sweetest': 2, 'expectantly': 2, "somethin'": 2, 'hunkered': 2, 'levis': 2, 'handsomer': 2, 'figger': 2, "y'know": 2, 'Mis-ter': 2, "deputy's": 2, 'numbing': 2, 'Dimly': 2, 'leaden': 2, 'Slash-B': 2, 'sourdough': 2, 'Ramirez': 2, "marshal's": 2, 'lockup': 2, 'Harper': 2, 'Cheyenne': 2, 'buckboard': 2, 'lawmen': 2, 'insinuations': 2, 'shoot-down': 2, "sportin'": 2, "Sportin'": 2, 'skulls': 2, "Powell's": 2, 'Keane': 2, 'Stacey': 2, 'trigger-happy': 2, 'pitchfork': 2, 'tines': 2, "takin'": 2, 'caked': 2, "Sally's": 2, 'heal': 2, 'beaver': 2, "Nate's": 2, 'Emigrant': 2, 'Jacksons': 2, 'fiddle': 2, 'Harrow': 2, 'exuberantly': 2, 'flexed': 2, 'Farmer': 2, 'brightened': 2, 'Conestoga': 2, 'thar': 2, "ye're": 2, 'Quit': 2, 'ragging': 2, 'tailgate': 2, 'onct': 2, "Clemens'": 2, 'ma': 2, 'dodged': 2, 'Nerves': 2, 'tipsy': 2, 'Forced': 2, 'somnolent': 2, 'half-filled': 2, 'half-drunk': 2, "Colcord's": 2, 'Crip': 2, 'disdainful': 2, 'puckered': 2, 'twinkling': 2, 'brushy': 2, 'Fleischman': 2, 'Ormoc': 2, 'Belton': 2, 'straps': 2, 'rumbled': 2, 'Tacloban': 2, 'cliffs': 2, 'Gracias': 2, 'rainbow': 2, 'ovals': 2, 'supplicating': 2, 'mah': 2, 'Corporal': 2, 'didn': 2, 'ejaculated': 2, 'smilingly': 2, 'onleh': 2, 'bawh': 2, 'thet': 2, 'Huhmun': 2, 'crannies': 2, 'Senor': 2, 'wadded': 2, "cab's": 2, 'Wanna': 2, 'amigo': 2, 'hollered': 2, 'Tee-wah': 2, 'bobbed': 2, 'hyphenated': 2, 'unoccupied': 2, 'teetotaler': 2, 'muffler': 2, 'Zing': 2, 'caller': 2, 'stills': 2, 'Bryn': 2, 'Mawr': 2, 'Underwater': 2, 'Oatnut': 2, 'Grits': 2, 'salacious': 2, 'plain-clothesmen': 2, "How'd": 2, 'PM': 2, 'Mardi': 2, 'Gras': 2, 'sexy': 2, 'unuttered': 2, 'outspread': 2, 'encircled': 2, 'smacked': 2, "Meredith's": 2, "Walter's": 2, 'tickled': 2, 'sneezed': 2, 'expertly': 2, 'waitress': 2, 'acknowledgement': 2, 'cashmere': 2, 'brassiere': 2, 'Eurydice': 2, 'scorched': 2, 'replenished': 2, 'pelting': 2, 'slopping': 2, 'sour': 2, 'Bonaventure': 2, 'Pauson': 2, 'revolting': 2, 'Melanesian': 2, 'blue-black': 2, 'maku': 2, "Frayne's": 2, 'crone': 2, 'bib': 2, 'Horsely': 2, 'sneaker': 2, 'nudge': 2, "Them's": 2, 'moaned': 2, 'kneeled': 2, 'Brahmaputra': 2, 'headwalls': 2, 'Assam': 2, 'Hump': 2, 'crates': 2, 'hating': 2, 'searing': 2, 'ferocious': 2, 'strutted': 2, 'puffy': 2, 'swig': 2, 'braving': 2, 'snorkle': 2, 'fatigues': 2, "Matsuo's": 2, 'wristwatch': 2, 'canteen': 2, 'Sake': 2, 'wrenched': 2, 'purify': 2, 'reeled': 2, 'henchmen': 2, 'Rust': 2, 'Doran': 2, 'rip-roaring': 2, 'Store': 2, 'dodging': 2, 'splintered': 2, 'outlaw': 2, 'lawman': 2, 'blissfully': 2, 'starched': 2, 'thrills': 2, "well's": 2, 'backwards': 2, 'flipping': 2, 'ginger': 2, 'Garvier': 2, 'calinda': 2, 'gourd': 2, 'beetling': 2, 'Bayou': 2, 'Aristide': 2, 'gloved': 2, "Delphine's": 2, 'endearments': 2, 'assorted': 2, "Brandon's": 2, 'Lalauries': 2, "Feathertop's": 2, 'motioning': 2, 'uh': 2, 'belligerence': 2, 'overhand': 2, 'Torino': 2, 'sweeter': 2, 'fig': 2, 'Sameness': 2, 'porches': 2, 'hedge': 2, 'fortresses': 2, 'lapping': 2, "goat's": 2, 'teats': 2, "Concetta's": 2, 'Shivering': 2, 'Abernathy': 2, 'ravenous': 2, 'undressed': 2, 'bedspread': 2, 'Fairbrothers': 2, "Fair's": 2, 'Whipsnade': 2, 'foal': 2, 'laments': 2, 'Tillie': 2, 'aversion': 2, 'veterinarian': 2, 'hon': 2, 'hop': 2, 'lonesome': 2, 'Hetty': 2, 'one-two-three': 2, 'Rummaging': 2, 'nettled': 2, "dryin'": 2, "Y're": 2, 'Titus': 2, 'grand-daughter': 2, 'Miyagi': 2, 'Sooner': 2, 'tinkling': 2, 'humiliated': 2, 'Subic': 2, 'Doolittle': 2, 'cockroaches': 2, 'Sierras': 2, 'Toodle': 2, 'Eskimos': 2, 'flowerpot': 2, 'blackjack': 2, 'den': 2, 'waned': 2, 'heavers': 2, 'topgallant': 2, 'shackled': 2, 'Adrien': 2, 'Deslonde': 2, 'Midshipman': 2, 'Tillotson': 2, 'midshipmen': 2, 'sobbed': 2, 'shackles': 2, 'ajar': 2, 'shrilled': 2, 'rapping': 2, 'incessantly': 2, 'slyly': 2, 'retrieve': 2, 'bright-eyed': 2, 'poling': 2, 'daddy': 2, "Monmouth's": 2, 'cigars': 2, 'Ida': 2, "Via's": 2, 'Thaxter': 2, 'closets': 2, 'lingerie': 2, 'Alberto': 2, 'Ferraro': 2, 'boxcars': 2, 'Signor': 2, "Carla's": 2, 'Dookiyoon': 2, 'Shades': 2, 'lodges': 2, 'worrisome': 2, 'TuHulHulZote': 2, 'quavering': 2, 'Sarpsis': 2, 'disheveled': 2, 'Bentley': 2, 'Pietro': 2, 'bumped': 2, 'tactful': 2, 'Websterville': 2, "Susan's": 2, 'Goose': 2, 'Christmastime': 2, 'teddy': 2, "Quint's": 2, 'Fearless': 2, 'Fortman': 2, 'Stuck-up': 2, 'Gord': 2, 'peppermints': 2, 'mackerel': 2, 'yodeling': 2, 'tonsil': 2, 'debs': 2, 'scatterbrained': 2, "Edythe's": 2, 'graham': 2, "Bobbie's": 2, 'Murkland': 2, 'Pack': 2, 'davenport': 2, "Gladdy's": 2, 'Michelson': 2, 'smear': 2, 'coverlet': 2, 'outta': 2, 'Champs': 2, 'Elysees': 2, 'Hun': 2, 'Jour': 2, 'Nuit': 2, 'Montmartre': 2, 'Sometime': 2, 'topcoat': 2, 'rotten': 2, 'Bon': 2, 'jour': 2, 'Louvre': 2, 'Colosseum': 2, 'Shoals': 2, 'azalea': 2, "Elec's": 2, "Emma's": 2, 'Dolan': 2, "Christians'": 2, 'Mmm': 2, 'petted': 2, 'mockery': 2, 'bake': 2, 'Bobbsey': 2, 'Larkspur': 2, 'ninety-six': 2, 'browny-haired': 2, 'moonlit': 2, "Deegan's": 2, "Phil's": 2, 'sweatshirt': 2, 'Ceecee': 2, "Fudo's": 2, 'stubble': 2, 'lath': 2, 'delicately': 2, 'Hear': 2, 'antisocial': 2, 'Crazy': 2, 'Colts': 2, "Willis'": 2, "Hamrick's": 2, 'gantlet': 2, 'digger': 2, 'Scandal': 2, 'Parvenu': 2, 'honeymooned': 2, 'knee-length': 2, 'zounds': 2, 'mistrusted': 2, 'pioneers': 2, 'Cantor': 2, 'Metronome': 2, 'stung': 2, 'availed': 2, "Poitrine's": 2, 'stardom': 2, "Letch's": 2, 'bookies': 2, 'Baby-dear': 2, 'Belletch': 2, 'starlet': 2, 'Momma': 2, 'polishing': 2, 'pegboards': 2, 'modifiers': 2, 'journalese': 2, 'gags': 2, 'gourmet': 2, 'double-entendre': 2, 'Anglo-American': 2, 'manic': 2, 'paraphrase': 2, 'Foreigners': 2, 'Angst': 2, 'rhinos': 2, 'strafe': 2, 'somersaults': 2, 'armadillo': 2, 'Arapacis': 2, 'symbolizing': 2, 'Wilhelmina': 2, 'slat': 2, 'SalFininistas': 2, 'Schlek': 2, 'Baslot': 2, 'Lagoon': 2, 'Fing': 2, 'Pulova': 2, 'Bravado': 2, "Quasimodo's": 2, 'curio': 2, 'term-end': 1, 'presentments': 1, 'September-October': 1, 'Durwood': 1, 'Pye': 1, 'Mayor-nominate': 1, 'Merger': 1, 're-set': 1, 'disable': 1, "ordinary's": 1, 'appraisers': 1, 'Wards': 1, 'juries': 1, 'unmeritorious': 1, 'Regarding': 1, 'extern': 1, "Commissioner's": 1, 'Bellwood': 1, 'Alpharetta': 1, 'Cheshire': 1, 'amicable': 1, '637': 1, 'expires': 1, 'Dorsey': 1, 'Tower': 1, 'Ledford': 1, 'Gainesville': 1, 'Schley': 1, '87-31': 1, '29-5': 1, 'Mac': 1, '1,119': 1, '402': 1, 'calmest': 1, 'Policeman': 1, 'Callan': 1, 'Tabb': 1, "Daniel's": 1, 'Legislatures': 1, 'erase': 1, 'depositors': 1, 'Gaynor': 1, 'Brady': 1, 'Harlingen': 1, 'Deaf': 1, 'Bexar': 1, 'Tarrant': 1, '$451,500': 1, '$157,460': 1, '$88,000': 1, 'TEA': 1, '182': 1, 'scholastics': 1, 'parimutuels': 1, "Berry's": 1, 'ex-gambler': 1, 'validated': 1, 'Navigation': 1, 'Crump': 1, 'Saba': 1, '17,000': 1, 'notarized': 1, 'Aikin': 1, '$12': 1, 'Formby': 1, 'Plainview': 1, "Formby's": 1, 'referendum': 1, 'Seminole': 1, 'Hollowell': 1, 'Opponents': 1, 'Statements': 1, "Cotten's": 1, 'Dumas': 1, 'Eligio': 1, 'Kika': 1, 'Garza': 1, 'junior-senior': 1, 'Fifty-three': 1, 'co-signers': 1, 'McLemore': 1, 'letterman': 1, 'Raymondville': 1, 'Principals': 1, 'Strickland': 1, '4.4': 1, 'Pirie': 1, 'Relatively': 1, 'breakups': 1, 'all-woman': 1, 'Fears': 1, 'free-for-all': 1, 'midmorning': 1, "Karns'": 1, 'pertained': 1, 'Contempt': 1, 'subpoenas': 1, 'subpenas': 1, 'wrongful': 1, 'miscount': 1, '33d': 1, '42d': 1, 'subpenaed': 1, '14.2': 1, '$4,800': 1, '6.5': 1, '3.25': 1, 'boosts': 1, 'Outlays': 1, 'paid-for': 1, 'hospital-care': 1, 'outpatient': 1, 'overcrowding': 1, 'prepayment': 1, 'dentistry': 1, 'Contributions': 1, '5.1': 1, 'stimulatory': 1, 'Asks': 1, 'aged-care': 1, 'ayes': 1, 'noes': 1, 'Customary': 1, 'Enforce': 1, 'franker': 1, 'colonialist': 1, 'Explosion': 1, 'northernmost': 1, 'Exploratory': 1, 'semipublic': 1, 'enunciate': 1, "NATO's": 1, 'Conflict': 1, 'rekindling': 1, "alliance's": 1, 'erupts': 1, 'confrontations': 1, 'Gallup': 1, 'understates': 1, 'blunders': 1, 'Thruston': 1, 'Brandeis': 1, 'Detente': 1, 'pleads': 1, 'detach': 1, 'detente': 1, 'Strenuous': 1, 'pricking': 1, 'combating': 1, 'Offenses': 1, 'Hackett': 1, 'appointing': 1, '$3,500': 1, 'Track': 1, 'Legislative': 1, "Nugent's": 1, 'special-interest': 1, 'regrouping': 1, 'toolmaker': 1, 'grooming': 1, 'pooling': 1, 'Screw': 1, 'Indicating': 1, 'Fortin': 1, 'justices': 1, 'spearhead': 1, 'insurgent': 1, 'Misunderstanding': 1, 'pretenses': 1, 'signers': 1, 'SanAntonio': 1, 'Abatuno': 1, 'R-Bergen': 1, 'Campaigning': 1, 'R-Warren': 1, 'lifeblood': 1, 'adminstration': 1, 'closeness': 1, "fall's": 1, 'Regrets': 1, 're-arguing': 1, 'Decries': 1, 'joblessness': 1, 'Republican-controlled': 1, 'Mack': 1, 'Sees': 1, 'R-Cape': 1, "Party's": 1, "Case's": 1, 'Woodland': 1, 'Weldon': 1, 'distasteful': 1, 'transcended': 1, 'Freeholder': 1, 'Salvatore': 1, 'forestry': 1, 'Boonton': 1, 'Puddingstone': 1, "Republicans'": 1, 'piracy': 1, 'infiltrating': 1, '1940s': 1, 'Calling': 1, "Meyner's": 1, 'alloted': 1, '125,000': 1, 'expire': 1, 'retirements': 1, 'Resentment': 1, 'welled': 1, 'Opposition': 1, 'Mayoral': 1, 'Sharkey': 1, 'Feis': 1, 'Corruption': 1, "O'Connor's": 1, 'Graft': 1, 'chicanery': 1, '$8,555': 1, 'Southern-Republican': 1, 'jockeying': 1, 'aid-to-education': 1, "panel's": 1, '$6,100,000,000': 1, 'forty-year': 1, 'down-payments': 1, 'moderate-income': 1, 'balking': 1, 'amending': 1, 'private-school': 1, 'clears': 1, '$40,000,000': 1, '$26,000,000': 1, 'contract-negotiation': 1, 'Boyce': 1, 'forswears': 1, 'proselytizing': 1, 'expansive': 1, '$1,000,000,000': 1, '400,000,000': 1, 'Formula': 1, 'Budgetary': 1, '30,000,000': 1, 'cut-off': 1, 'Souphanouvong': 1, 'half-brothers': 1, 'fourteen-nation': 1, 'Tactics': 1, 'Couve': 1, 'Murville': 1, "Canada's": 1, 'Moune': 1, "Phouma's": 1, "Princes'": 1, 'Laotians': 1, 'Times-Picayune': 1, 'Publishing': 1, 'Tims': 1, 'Fortier': 1, 'Soule': 1, 'Belleville': 1, 'Audrey': 1, 'Knecht': 1, 'Karol': 1, '4911': 1, 'bleacher-type': 1, 'oath-taking': 1, 'seven-stories': 1, 'suffragettes': 1, 'Seats': 1, 'presides': 1, 'Marines': 1, 'Samoa': 1, 'Zone': 1, 'builtin': 1, 'job-seekers': 1, 'eight-year': 1, '$22.50': 1, 'diem': 1, 'agitating': 1, 'redistricting': 1, 'Split': 1, 'independents': 1, 'titular': 1, 'reestablish': 1, 'loyalist': 1, 'Sens.': 1, 'Eastland': 1, 'Stennis': 1, 'Jimmie': 1, 'tardiness': 1, 'inconsistencies': 1, 'reconvenes': 1, 'so-far': 1, 'politicos': 1, 'ineffectual': 1, 'Passage': 1, 'consonance': 1, 'inflate': 1, 'raiser': 1, 'trims': 1, 'house-cleaning': 1, 'Frankford': 1, 'Elevated': 1, 'Estimates': 1, '$344,000': 1, 'Shortcuts': 1, 'Erection': 1, 'impossibly': 1, 'shortcuts': 1, "Controller's": 1, '$172,400': 1, 'vouchers': 1, 'certifying': 1, 'Managing': 1, 'Concern': 1, 'Consolidated': 1, '3646': 1, 'Crumlish': 1, 'Intervenes': 1, 'bonding': 1, 'Indemnity': 1, 'Casualty': 1, '102': 1, 'Belanger': 1, '$2400': 1, '$3100': 1, '$37,500': 1, 'Hooked': 1, '$172,000': 1, 'Testifies': 1, '$740,000': 1, '$2,330,000': 1, 'multi-family': 1, 'accomodations': 1, '$457,000': 1, 'Kaplan': 1, 'Councilwoman': 1, 'pedigreed': 1, 'Leary': 1, '$115,000': 1, '$43,000': 1, '$67,000': 1, 'S.P.C.A.': 1, 'catchers': 1, 'Backs': 1, 'indorsed': 1, 'Licenses': 1, 'Inspections': 1, 'Barnet': 1, 'Lieberman': 1, 'Gillis': 1, 'Petitions': 1, 'Norristown': 1, "Barnard's": 1, 'Dannehower': 1, 'Hess': 1, 'Victim': 1, 'Stansbery': 1, 'redevelopers': 1, '$300,000,000': 1, '1311': 1, '$12,192,865': 1, 'Dicks': 1, '61st': 1, '520-acre': 1, 'Constantinos': 1, 'Doxiadis': 1, 'vehicular': 1, 'walkways': 1, 'two-and-a-half-mile': 1, 'Grovers': 1, 'severly': 1, 'Battalion': 1, 'Ignition': 1, 'nitroglycerine': 1, "association's": 1, 'Kas.': 1, 'Ankara': 1, 'Cemal': 1, 'By-passing': 1, 'Adnan': 1, 'Cedvet': 1, 'Sunay': 1, 'Desmond': 1, 'Connall': 1, 'ritiuality': 1, 'Insuring': 1, 'Economically': 1, '1409': 1, 'Maplecrest': 1, 'Mears': 1, 'evacuate': 1, 'reiterating': 1, "Lowe's": 1, 'capitol': 1, 'Emerald': 1, 'Bryson': 1, 'Washington-Oregon': 1, '900-student': 1, '6-3-3': 1, '8-4': 1, '$581,000': 1, '$25-a-plate': 1, 'Ullman': 1, 'Nilsen': 1, 'Schrunk': 1, 'Polls': 1, 'Huffman': 1, 'Brod': 1, 'Njust': 1, 'Bubenik': 1, 'Stout': 1, 'Culbertson': 1, 'Steeves': 1, 'Piersee': 1, 'W.M.': 1, 'Heitschmidt': 1, 'Coliseum': 1, 'fundamentalism': 1, 'Diety': 1, 'substitutionary': 1, 'resurrection': 1, 'exaltation': 1, 'reelected': 1, 'nominating': 1, 'Surveys': 1, 'Talking': 1, 'Arranging': 1, '6-12': 1, 'Denials': 1, "Weinstein's": 1, 'conpired': 1, 'deferred': 1, 'Major-League': 1, '3-to-o': 1, 'submarine-ball': 1, 'hurler': 1, 'batters': 1, '3-to-3': 1, 'nab': 1, "Cipriani's": 1, 'Shortstop': 1, "Adair's": 1, 'powderpuff': 1, '767': 1, 'three-inning': 1, '6-foot-3-inch': 1, '158-pounder': 1, "Orioles'": 1, 'safeties': 1, 'Herzog': 1, 'fielded': 1, 'pinch-hitters': 1, '2-and-2': 1, 'Buddy': 1, '2-hour-and-27-minute': 1, "Snyder's": 1, 'errs': 1, "Throneberry's": 1, 'romped': 1, "Hyde's": 1, '415': 1, 'Singles': 1, 'slow-bouncing': 1, "Tuttle's": 1, '390-foot': 1, 'Grapefruit': 1, 'belated': 1, 'rookie-of-the-year': 1, '5-to-3': 1, '3-inch': 1, 'Seeks': 1, 'Cal.': 1, 'two-game': 1, 'Skinny': 1, "Flock's": 1, 'knuckleball': 1, 'Ryne': 1, '15-1': 1, "Yanks'": 1, 'Auburn': 1, 'Class-D': 1, 'York-Pennsylvania': 1, 'Twenty-one-year-old': 1, 'Pappas': 1, "Bombers'": 1, 'Ditmar': 1, 'Dimaggio': 1, 'Clipper': 1, 'Pitcher': 1, 'wintertime': 1, 'spring-training': 1, 'sacker': 1, 'third-inning': 1, 'left-centerfield': 1, "Robinson's": 1, 'Connie': 1, "Brooks's": 1, 'seven-hit': 1, 'hurlers': 1, 'MacPhail': 1, 'Iglehart': 1, 'Ex-Oriole': 1, 'Courtney': 1, 'shouldda': 1, 'Scrapiron': 1, 'Bowie': 1, '3-year-old': 1, '$4,500': 1, '$7.20': 1, 'Toying': 1, '3-5': 1, 'furlongs': 1, "Forbes's": 1, 'Paget': 1, "Hallowell's": 1, 'Milties': 1, 'Patty': 1, '$842,617': 1, 'well-prepared': 1, 'Verrone': 1, 'Culmone': 1, 'Rosy': 1, 'Fingered': 1, 'swift-striding': 1, 'Jamaican': 1, '600-yard': 1, "Purdue's": 1, '1.10.1': 1, 'clocking': 1, '1.09.3': 1, '1.10.8': 1, 'Mal': 1, 'Whitfield': 1, '1.10.4': 1, 'one-week-old': 1, 'Chardon': 1, '27-year-old': 1, '2.21.6': 1, 'tenths': 1, 'Shipley': 1, 'Wellsley': 1, 'A.A.U.': 1, '49ers': 1, 'Kubek': 1, '5-to-2': 1, '26-year-old': 1, '41-8': 1, 'lettered': 1, 'Darrell': 1, 'place-kicker': 1, '208-pound': 1, '1-inch': 1, 'Anson': 1, '3-0': 1, 'punted': 1, 'scholastically': 1, 'Practice': 1, 'Footnotes': 1, '469': 1, 'Tailback': 1, 'netted': 1, '273': 1, '56-yard': 1, 'Wingback': 1, "conference's": 1, 'Mustangs': 1, '9-7': 1, 'Richey': 1, 'Cudmore': 1, 'fumble': 1, 'Arshinkoff': 1, "Falcons'": 1, 'fourth-down': 1, 'Mustang': 1, "Gannon's": 1, 'Isaacson': 1, "Force's": 1, 'ligament': 1, 'injuring': 1, 'scrimmaged': 1, 'scrimmage': 1, 'Owls': 1, 'Huddle': 1, "Tech's": 1, 'sweat-suits': 1, 'Stafford': 1, "Raiders'": 1, '38-7': 1, 'Raesz': 1, "Owl's": 1, 'LSU': 1, 'Nichols': 1, 'Hargett': 1, 'Halfback': 1, 'Priddy': 1, 'slowly-mending': 1, "TCU's": 1, '19-12': 1, 'Broncos': 1, "Stram's": 1, 'reckonings': 1, 'quarterbacks': 1, 'ex-National': 1, '22-12': 1, 'Oilers': 1, 'mutter': 1, 'fullbacking': 1, 'Spikes': 1, 'linebackers': 1, 'Quarterback': 1, 'touchdowns': 1, 'Abner': 1, 'Haynes': 1, 'ball-carriers': 1, '145': 1, "Denver's": 1, 'Grayson': 1, 'quipping': 1, 'dent': 1, '545-yard': 1, '3-game': 1, '1,512': 1, '1,065': 1, 'SWC': 1, 'TCU': 1, '38-point': 1, '174': 1, 'per-game': 1, "Baylor's": 1, '187.5': 1, '34.7': 1, 'baseballs': 1, '5-3': 1, '205-pound': 1, '949': 1, "Nischwitz'": 1, "Grizzlies'": 1, "Bear's": 1, 'gruonded': 1, 'Alusik': 1, "Wert's": 1, 'putout': 1, 'leftfield': 1, "Shartzer's": 1, '3-hitter': 1, 'Pavletich': 1, "Gaines'": 1, 'Ruiz': 1, 'grounder': 1, 'Bingles': 1, 'bobbles': 1, "Tribe's": 1, 'refocusing': 1, 'Dobbs': 1, 'Patti': 1, 'Waggin': 1, 'Wyman': 1, 'Tsitouris': 1, 'Donnelly': 1, 'Muskegon': 1, 'Rip': 1, 'Randall': 1, 'Paul-Minneapolis': 1, 'Minoso': 1, '6-5': 1, '5777': 1, 'Lown': 1, 'Bertoia': 1, 'chopper': 1, 'Lenny': 1, '5-4': 1, 'Sievers': 1, 'Camilo': 1, 'Carreon': 1, "Landis'": 1, '380-foot': 1, '1-0': 1, 'Harmon': 1, 'Killebrew': 1, 'Allison': 1, '340-blast': 1, "Carreon's": 1, "Allison's": 1, 'run-scoring': 1, '2-baser': 1, 'Outfielder': 1, 'newsman': 1, 'walkout': 1, 'at-bats': 1, 'Nev.': 1, 'Zoe': 1, 'Olsen': 1, 'streamliner': 1, 'double-crosser': 1, 'Traveler': 1, 'retaliating': 1, 'record-tying': 1, '4-homer': 1, 'embossed': 1, "Spahn's": 1, 'hitless': 1, 'stimulant': 1, '2-score-year': 1, 'Wish': 1, 'lefthanders': 1, 'Hubbell': 1, 'Nehf': 1, 'gentlemanly': 1, 'beardown': 1, '18,792': 1, 'Spahnie': 1, 'Enos': 1, 'walloped': 1, 'Lowe': 1, 'Gil': 1, "Brooklyn's": 1, 'Ebbetts': 1, 'Delahanty': 1, 'Klein': 1, "Braves'": 1, 'Adcock': 1, 'Seerey': 1, 'Rocky': 1, 'Colavito': 1, 'boils': 1, 'anti': 1, 'pro-Yankee': 1, '30-30': 1, 'anemic': 1, 'Candlestick': 1, "Milwaukee's": 1, 'Denver-area': 1, 'Howsam': 1, 'CBS': 1, "Howsam's": 1, '5-game': 1, 'romp': 1, 'outclassed': 1, '13-5': 1, 'champs': 1, '15-hit': 1, 'routed': 1, 'loser': 1, 'Hector': 1, 'subbing': 1, '3-run': 1, '32,589': 1, 'Momentarily': 1, 'fizzled': 1, '11-5': 1, 'Bucky': 1, 'boy-manager': 1, "Brocklin's": 1, 'aerials': 1, 'lineman': 1, 'Jock': 1, 'Polytechnic': 1, 'rejoining': 1, 'auspiciously': 1, 'Dilworth': 1, 'cufflinks': 1, 'thirty-eighth': 1, "Writers'": 1, 'Journal-American': 1, 'Epstein': 1, 'Sid': 1, "chapter's": 1, '1,400': 1, 'lampoon': 1, 'skit': 1, '53-year-old': 1, 'Farley': 1, 'Blume': 1, "Rickey's": 1, 'Shipman': 1, 'Payson': 1, 'big-league': 1, "Shea's": 1, 'Nori': 1, "Collins'": 1, 'most-valuable-player': 1, 'Hamey': 1, 'money-winner': 1, 'Cup': 1, 'Deane': 1, 'Beman': 1, 'title-holder': 1, 'Tee': 1, 'Horton': 1, 'Golfers': 1, "Golf's": 1, 'Athlete': 1, 'diamond-studded': 1, 'Hickok': 1, 'duffer': 1, 'flubbed': 1, 'par-5': 1, 'paragon': 1, 'aggravates': 1, 'crusher': 1, 'boomed': 1, '280-yard': 1, 'pixies': 1, 'zombies': 1, '508-yard': 1, 'out-of-bounds': 1, 'over-corrected': 1, 'perturbed': 1, 'hackers': 1, 'Ainsley': 1, 'rock-strewn': 1, 'Stickler': 1, 'Nae': 1, 'brook': 1, 'playable': 1, 'Dey': 1, 'banjo': 1, 'fiercest': 1, '155-yarder': 1, 'burrowed': 1, 'golfing': 1, 'god-like': 1, "football's": 1, "players'": 1, 'fourteen-team': 1, 'home-and-home': 1, 'Rozelle': 1, "league's": 1, 'early-season': 1, "Pirates'": 1, 'outclass': 1, 'Vinegar': 1, 'Shantz': 1, '9-6': 1, '7-9': 1, "Broglio's": 1, 'won-lost': 1, 'earned-run': 1, "Redbirds'": 1, 'disheartening': 1, '11-7': 1, "Thursday's": 1, '13-8': 1, '1-3': 1, 'Vern': 1, "Wednesday's": 1, 'five-home': 1, 'Lindy': 1, "Bucs'": 1, 'Gino': 1, 'Cimoli': 1, 'Groat': 1, 'Hoak': 1, 'Skinner': 1, 'unhappiest': 1, 'plunkers': 1, 'Bucs': 1, '11-3': 1, 'fall-off': 1, '3-10': 1, '4-13': 1, '12-17': 1, '6-7': 1, '88': 1, '11-18': 1, 'Dodger': 1, '21-2': 1, 'nine-game': 1, "'51": 1, 'Tipoff': 1, '6-foot-10': 1, 'pepping': 1, 'halftime': 1, 'most-valuable': 1, 'Broeg': 1, 'Post-Dispatch': 1, 'all-round': 1, 'ball-hawking': 1, "U.'s": 1, "coach's": 1, 'Burnes': 1, 'Globe-Democrat': 1, 'Contribution': 1, 'Basketball': 1, 'lettermen': 1, '21-9': 1, 'Hambric': 1, 'Donnell': 1, 'Luechtefeld': 1, 'Latinovich': 1, "teams'": 1, 'Boehmer': 1, '4-for-5': 1, 'Ligget': 1, '3:30': 1, 'doubleheader': 1, 'bull-necked': 1, 'switch-hitter': 1, 'triple-crown': 1, "rbi's": 1, '127': 1, 'Rizzuto': 1, 'Joplin': 1, "Ol'": 1, 'homerun': 1, 'bunter': 1, 'base-runner': 1, 'Inheriting': 1, 'pun': 1, '162-game': 1, '10-team': 1, 'walloping': 1, 'Durocher': 1, 'grass-green': 1, 'Barrett': 1, 'Wendells': 1, 'Sarasota': 1, 'Kirkland': 1, 'Missoula': 1, 'Mont.': 1, 'Turandot': 1, 'Birgit': 1, 'Nilsson': 1, 'Housed': 1, 'Belafonte': 1, 'Sulcer': 1, 'Winnetka': 1, 'Parichy-Hamm': 1, "Bernadine's": 1, "Beadles'": 1, 'Beadles': 1, 'Kenilworth': 1, 'Rush': 1, 'Butlers': 1, 'Robertsons': 1, 'Porters': 1, "Stevenses'": 1, 'fete': 1, 'Lawn': 1, '5:30': 1, "Kramer's": 1, 'huzzahs': 1, 'Presbyterian-St.': 1, 'Tieken': 1, 'oriental': 1, 'Djakarta': 1, 'globe-girdling': 1, 'Manila': 1, 'Beirut': 1, "Geraghtys'": 1, 'Passavant': 1, 'Cotillion': 1, 'cotillion': 1, 'Harveys': 1, 'Racquet': 1, 'Abra': 1, "Prentice's": 1, 'Casino': 1, 'Burke-Rostagno': 1, "Burkes'": 1, 'Aldo': 1, 'Rostagno': 1, 'Guglielmo': 1, 'Rostagnos': 1, 'Kankakee': 1, "Hall's": 1, 'fiance': 1, 'translates': 1, 'Giacomo': 1, 'Profili': 1, 'Odell': 1, 'Holabird': 1, 'Boothby': 1, 'Actress': 1, 'Affaire': 1, 'Bal': 1, 'Masque': 1, 'Germania': 1, 'crabapple': 1, 'Columnist': 1, 'Winchell': 1, 'rat-a-tat-tatty': 1, 'rancho': 1, "W.'s": 1, 'Sunny': 1, 'Ainsworth': 1, 'Manville': 1, 'Arvey': 1, 'Playboy-Show-Biz': 1, 'pubs': 1, 'Comic': 1, 'Skylark': 1, 'sellout': 1, 'warbling': 1, "medico's": 1, 'inflamed': 1, 'Simonelli': 1, 'Universal-International': 1, "bulletin'd": 1, 'Rosemary': 1, 'Strafaci': 1, 'Mag': 1, 'Aiding': 1, 'Leukemia': 1, 'Stricken': 1, 'solicit': 1, "Danny's": 1, 'contribs': 1, '7599': 1, 'solicits': 1, 'Olivia': 1, 'Havilland': 1, 'Kanin': 1, 'Gift': 1, 'Gotham': 1, 'Gorgeous': 1, 'producer-hubby': 1, 'Melcher': 1, 'U-I': 1, 'Rackmil': 1, 'exhibitors': 1, 'screenings': 1, "Doris'": 1, 'Drum': 1, 'Whee': 1, 'Lovely': 1, 'Annamorena': 1, 'hubby': 1, "Lenobel's": 1, 'Wacker': 1, 'frau': 1, 'Jana': 1, 'ex-singer': 1, "Wackers'": 1, 'Emcee': 1, "Nixon's": 1, 'Bet': 1, "darlin'": 1, 'dazzler': 1, 'Genevieve': 1, 'Yards': 1, 'Jump': 1, 'Packs': 1, "ol'": 1, 'baseballight': 1, 'Bernie': 1, 'Kriss': 1, 'Sentry': 1, 'jotted': 1, 'Khrush': 1, 'contaminating': 1, 'Luthuli': 1, 'Hmpf': 1, 'frothier': 1, 'Weissmuller': 1, 'Snapped': 1, 'glib': 1, 'garrulous': 1, 'yodel': 1, "Veeck's": 1, 'medics': 1, 'Ticker': 1, "Fardulli's": 1, 'pronto': 1, 'Uhles': 1, 'Hackstaff': 1, 'Luette': 1, 'Sheila': 1, 'Mercy': 1, 'Kittredge': 1, 'w.': 1, 'McIntosh': 1, 'Buell': 1, 'Vroman': 1, 'Manzanola': 1, 'Brig.': 1, 'McDermott': 1, 'Cocktail': 1, 'Luise': 1, 'Emilio': 1, 'Bassi': 1, 'Bassis': 1, 'Betsy': 1, 'Neusteters': 1, 'Teter': 1, 'Pate': 1, 'Bernet': 1, 'Rollie': 1, 'Cris': 1, 'Dobbins': 1, 'Hicks': 1, 'Magarrell': 1, 'Willett': 1, 'Myron': 1, 'Neusteter': 1, 'Sudier': 1, 'Welborn': 1, 'Kira': 1, 'R.L.': 1, 'E.O.': 1, '1200': 1, 'Larimer': 1, "Marr's": 1, 'Skid': 1, 'Row': 1, 'relearns': 1, 'Denverite': 1, 'motel-keepers': 1, 'grandma': 1, '7-day': 1, '2809': 1, 'heather': 1, 'far-flung': 1, 'over-night': 1, 'motel-keeping': 1, 'advertises': 1, 'vented': 1, 'Innumerable': 1, 'Motorists': 1, 'accommodated': 1, 'fast-grossing': 1, 'Boxwood': 1, '24-inch': 1, '$8.50': 1, 'tab': 1, 'pressed-paper': 1, 'Oxnard': 1, 'Munger': 1, '7034': 1, 'Baines': 1, 'UCLA': 1, 'Theology': 1, 'Sandra': 1, 'Branum': 1, 'McRoberts': 1, 'Semmes': 1, 'Gamma': 1, 'Cater': 1, 'Parmer': 1, 'Tau': 1, 'Omega': 1, 'Sigma': 1, 'Grahamstown': 1, 'Pabor': 1, 'court-length': 1, 'appliques': 1, 'gardenias': 1, 'Dawson': 1, 'Hinsdale': 1, 'Reeder': 1, 'Cecil': 1, 'groomsmen': 1, 'McEachern': 1, 'Neumann': 1, '2705': 1, 'Fitzhugh': 1, 'Floresville': 1, 'Beam': 1, 'headdress': 1, 'Lewelleyn': 1, 'Lovelace': 1, 'Burgher': 1, 'Marcile': 1, 'Loving': 1, '8861': 1, 'gayety': 1, "Lanin's": 1, 'Louchheim': 1, 'globetrotter': 1, 'Scenic': 1, 'Hollander': 1, "Shop's": 1, "shop's": 1, '1213': 1, 'Bundle': 1, 'Bernhard': 1, 'Blumenthal': 1, 'fund-raisers': 1, 'Agencies': 1, '$840,000': 1, 'staffing': 1, 'Kapnek': 1, 'Newburger': 1, 'Loeb': 1, 'Lichtenstein': 1, 'Kaufnabb': 1, 'Weinberg': 1, 'Quell': 1, 'admittance': 1, 'P.m.': 1, 'pre-Fair': 1, 'Wilkinson': 1, 'Coles': 1, 'Lacy': 1, 'Moller': 1, 'Zeising': 1, 'Kilhour': 1, 'Cauffman': 1, 'Baringer': 1, 'Natalie': 1, 'Collett': 1, 'Models': 1, 'Meyle': 1, 'Harrity': 1, 'Kloman': 1, 'Wolcott': 1, 'Mrs': 1, 'Putt': 1, 'Lisle': 1, 'camping-out': 1, 'sub-zero': 1, 'Cotty': 1, 'Felske': 1, 'preview': 1, 'Noted': 1, 'Tyson': 1, 'Shahn': 1, 'Loen': 1, 'Avery': 1, 'Wissahickon': 1, 'fund-raiser': 1, 'Assisting': 1, 'Malmud': 1, 'Fernberger': 1, 'Cushman': 1, 'Berton': 1, 'Korman': 1, 'Zinman': 1, 'Kamens': 1, 'Langsdorf': 1, 'Liss': 1, 'Bregman': 1, 'Kershbaum': 1, 'Sabol': 1, 'Volney': 1, 'Ludwick': 1, 'Kimbolton': 1, 'Rockhall': 1, 'App': 1, 'Voorhees': 1, 'Coulson': 1, 'Fairless': 1, 'Glennon': 1, 'Brigantine': 1, 'Heinze': 1, 'Lehner': 1, 'Ingo': 1, 'Dussa': 1, 'Bietnar': 1, 'Haaek': 1, 'Brelin': 1, 'Hoaps': 1, 'Delray': 1, 'Clearwater': 1, 'Cmdr.': 1, 'USN.': 1, 'Walbridge': 1, 'DeForest': 1, 'Newtown': 1, 'Ashman': 1, 'Merner': 1, 'Nell': 1, 'McGehee': 1, 'Stella': 1, 'Hayward': 1, 'Tulane': 1, 'Epsilon': 1, 'Majesties': 1, 'Shrove': 1, 'Walkers': 1, "McConnell's": 1, 'Socola': 1, 'Waveland': 1, 'honoree': 1, 'Sweet': 1, 'Briar': 1, 'Achaeans': 1, 'Muncipal': 1, 'Misses': 1, 'Irwin': 1, 'Leatherman': 1, 'Robinsonville': 1, 'Helene': 1, 'ballgowns': 1, "maskers'": 1, 'tomato-red': 1, 'Fenwick': 1, 'Feringa': 1, "Achaeans'": 1, 'eggshell': 1, 'filmy': 1, 'decolletage': 1, 'tulle': 1, "Reily's": 1, 'olive-green': 1, 'sequins': 1, 'regrettable': 1, '3,325': 1, 'Sufficient': 1, 'furloughed': 1, 'thug': 1, 'Verstandig': 1, 'Aiken': 1, 'Darnell': 1, 'Severna': 1, 'Ellwood': 1, 'Cites': 1, "Jenkins's": 1, 'Zoning': 1, 'misunderstandings': 1, 'Bertorelli': 1, 'Piraro': 1, 'Conceding': 1, 'halting': 1, 'Admitting': 1, 'Recounting': 1, 'freezes': 1, '15-year-old': 1, 'Bay-front': 1, 'detention': 1, 'Malone': 1, 'Dresbach': 1, 'Hagner': 1, 'Michaelson': 1, 'remanding': 1, '1-1/2-story': 1, 'first-floor': 1, 'shootings': 1, 'Dresbachs': 1, 'Trooper': 1, 'Grzesiak': 1, "Dresbachs'": 1, 'Finan': 1, 'Sybert': 1, 'judgeship': 1, 'swearing-in': 1, 'countian': 1, '$77,389,000': 1, '$20,447,000': 1, '$47,101,000': 1, '$9,841,000': 1, '$634,517,000': 1, 'ten-month': 1, '$253,355,000': 1, '$278,877,000': 1, '$102,285,000': 1, 'apartment-building': 1, 'Trouble-free': 1, 'long-life': 1, 'Sixty-seven': 1, '165-unit': 1, 'Apartments': 1, 'three-story': 1, 'Heating': 1, 'gas-fired': 1, 'Johns-Manville': 1, 'still-building': 1, 'London-based': 1, 'soviet': 1, 'Bow': 1, 'whisking': 1, 'strongrooms': 1, 'Flashed': 1, 'shadowy': 1, 'bookseller': 1, 'Dunlop': 1, 'maiden': 1, 'bedridden': 1, 'Refuses': 1, 'K.J.P.': 1, 'Baraclough': 1, 'Klaus': 1, '1960s': 1, '$29,000': 1, 'Mervin': 1, 'Griffith-Jones': 1, 'paymaster': 1, 'Symonds': 1, 'blabbed': 1, 'propelling': 1, "Skipjack's": 1, 'teardrop': 1, 'Thru': 1, 'turbines': 1, 'Albacore': 1, 'Reputedly': 1, 'torpedoes': 1, "Gee's": 1, 'Interested': 1, 'ASDIC': 1, 'radiomen': 1, 'nabbed': 1, 'cigaret': 1, 'lighters': 1, "Lonsdale's": 1, "Krogers'": 1, 'enmity': 1, 'jealousies': 1, 'Connelly': 1, "clients'": 1, '$4,700': 1, '6934': 1, 'Mardis': 1, '5835': 1, 'bondsman': 1, 'Jessy': 1, 'Maroy': 1, 'Buaford': 1, '7026': 1, "physician's": 1, '$214': 1, 'Policemen': 1, 'skylarking': 1, 'Lang': 1, 'Bookwalter': 1, 'Carpentier': 1, 'Plee-Zing': 1, '2544': 1, '21-year-old': 1, 'court-appointed': 1, 'Stepson': 1, 'Lives': 1, 'Charges': 1, 'sentencing': 1, '4:05': 1, '13-1/2': 1, 'canvassed': 1, 'Olive': 1, 'Heideman': 1, 'hard-hit': 1, '34220': 1, 'Viceroy': 1, '31978': 1, 'Olivet': 1, 'caskets': 1, 'Lyle': 1, '31730': 1, 'fueled': 1, '2274': 1, 'ignited': 1, "Christine's": 1, 'Darlene': 1, 'Bernardine': 1, 'roofer': 1, 'split-level': 1, 'A135': 1, 'Neighbor': 1, '2269': 1, 'Serra': 1, "Kowalski's": 1, '22111': 1, '2731': 1, 'Pall': 1, 'Tareytown': 1, 'Homeowners': 1, 'door-to-door': 1, '553': 1, 'Fuhrmann': 1, '5155': 1, 'Y-Teen': 1, "Fuhrmann's": 1, "Furhmann's": 1, '3505o': 1, 'Expresses': 1, '9230': 1, 'Vernor': 1, 'Kercheval': 1, 'belatedly': 1, 'crosswalk': 1, 'Gets': 1, 'Commandeering': 1, '2433': 1, 'no-driving': 1, 'reconvened': 1, '14-power': 1, 'Tiao': 1, 'Sopsaisana': 1, 'worsens': 1, 'Thakhek': 1, 'southern-central': 1, 'decreeing': 1, 'ex-marine': 1, 'smuggling': 1, 'boatload': 1, 'Raymont': 1, 'Berrellez': 1, 'dragnet': 1, 'pseudynom': 1, 'Bucharest': 1, 'Armenian': 1, 'Revolutionary': 1, 'ARF': 1, '33-man': 1, 'Urged': 1, "trustees'": 1, 'Corporate': 1, 'jeopardizing': 1, '1688': 1, 'Knoll': 1, 'Cir.': 1, 'Hammons': 1, 'rain-slick': 1, 'Olvey': 1, '963': 1, 'Ponce': 1, '704': 1, 'SE': 1, 'first-run': 1, 'identically': 1, 'nonviolent': 1, 'Buckhead': 1, '357': 1, 'Venable': 1, 'Cafeteria': 1, 'Pittsboro': 1, 'Bessie': 1, 'Bloom': 1, '101b': 1, 'Oakland': 1, 'Hearn': 1, 'officiating': 1, 'Odom': 1, 'Fergeson': 1, 'Tenn.': 1, 'Stoll': 1, 'Wansley': 1, '24-year-old': 1, 'assaulting': 1, 'Patrolmen': 1, '1671': 1, 'Nakoma': 1, '511': 1, '11-month-old': 1, 'employments': 1, 'fast-spreading': 1, '132,000': 1, 'infested': 1, 'entomologist': 1, 'Low-flying': 1, 'granular-type': 1, 'heptachlor': 1, '37,000': 1, '65,000': 1, 'Bibb': 1, '37,679': 1, 'Bleckley': 1, 'Tift': 1, 'infest': 1, 'north-bound': 1, 'Expressways': 1, 'crashes': 1, '4-year-old': 1, 'Maynor': 1, 'Troopers': 1, 'Bursts': 1, 'tractor-trailer': 1, 'Bester': 1, 'Herrington': 1, 'GA': 1, '$58,918': 1, '$66,000': 1, '$7,082': 1, 'oks': 1, 'newly-appointed': 1, 'Ennis': 1, 'Keizer': 1, 'Administrator': 1, 'answerable': 1, 'vice-chairman': 1, 'Physicians': 1, 'Lavaughn': 1, 'getaway': 1, 'Woodyard': 1, "Bros.'": 1, '2825': 1, 'McNeil': 1, 'Hillsdale': 1, 'Secret': 1, '12-year-old': 1, '9329': 1, 'Kaiser': 1, 'bicycle-auto': 1, 'Gateway': 1, 'Shopping': 1, 'Forsyth': 1, 'Riverview': 1, 'Macwhyte': 1, 'Horstman': 1, 'Kiefferm': 1, 'Dalles': 1, 'decertify': 1, 'Retail': 1, 'NLRB': 1, '67': 1, '6124': 1, 'Silvers': 1, '20-piece': 1, 'AF': 1, 'Kader': 1, 'Elks': 1, '142': 1, 'Voiture': 1, "Musician's": 1, 'Nevah': 1, 'Sholom': 1, 'Congregation': 1, 'Tearle': 1, 'Dorenzo': 1, 'Birdie': 1, 'Gevurtz': 1, 'Holman': 1, 'Neveh': 1, 'Zebek': 1, '16-year-old': 1, 'top-ranking': 1, '4,500': 1, '11-year': 1, 'JA': 1, 'Scolatti': 1, 'first-place': 1, 'pocket-size': 1, '$2,170': 1, 'Participants': 1, 'g-p': 1, 'Advisors': 1, 'Breuer': 1, '5847': 1, 'Ct.': 1, 'Reifenrath': 1, 'Wegener': 1, 'Kolb': 1, 'Shelby': 1, "County's": 1, '36th': 1, 'FFA': 1, 'five-day': 1, 'fairgoers': 1, 'all-county': 1, 'Nuttall': 1, 'Reedville': 1, 'Finalists': 1, "county's": 1, 'Janet': 1, 'Lorlyn': 1, 'Traxel': 1, 'Swine': 1, 'Pumpkin': 1, 'Tualatin': 1, 'Batchelder': 1, 'Wacklin': 1, 'Haase': 1, 'Corneilus': 1, 'championships': 1, 'Cedar': 1, 'Jansen': 1, 'Verboort': 1, 'Jody': 1, 'Jaross': 1, 'Borland': 1, 'filbert': 1, 'Centredale': 1, '734': 1, 'collided': 1, 'DeSoto': 1, 'DiSimone': 1, 'Thieves': 1, '$3,675': 1, 'Kochanek': 1, 'intruders': 1, '$325': 1, 'Kochaneks': 1, 'Nunes': 1, 'Drawers': 1, 'stoppage': 1, 'Elm': 1, 'two-family': 1, '255': 1, 'Cochran': 1, "Pawtucket's": 1, 'incinerator': 1, 'Rotelli': 1, 'Incinerator': 1, '62-year-old': 1, 'Fatima': 1, 'Woonasquatucket': 1, 'fractured': 1, "Committee's": 1, 'Nolan': 1, 'Tougas': 1, 'Vermeersch': 1, 'Rosella': 1, 'Lovett': 1, '$55,000': 1, 'Atwells': 1, '$57,500': 1, '$52,500': 1, '8,293': 1, 'Hodosh': 1, "Santa's": 1, 'Journal-Bulletin': 1, "Journal-Bulletin's": 1, '823': 1, '$8,250': 1, 'nickels': 1, 'Hose': 1, 'Thornton': 1, 'Simmonsville': 1, '$4,177.37': 1, '646': 1, 'Uncas': 1, 'Mfg.': 1, 'Cavaliere': 1, 'Trichieri': 1, 'consul': 1, 'Newport-based': 1, 'destroyer': 1, 'trawler': 1, 'Greenock': 1, 'Hartselle': 1, "mob's": 1, 'Greyhound': 1, 'Hobart': 1, 'Grooms': 1, 'jury-tampering': 1, 'KKK': 1, '130-year': 1, '37-year-old': 1, 'McN.': 1, 'Newsom': 1, 'Prentice-Hall': 1, 'Asilomar': 1, 'Vast': 1, '8-year-old': 1, 'borer': 1, 'blueberries': 1, 'Reyes': 1, 'wetlands': 1, 'pesticides': 1, 'Fonta': 1, 'Sanctuary': 1, 'Livermore': 1, '645-acre': 1, 'tidelands': 1, 'Greenwood': 1, 'Olney': 1, 'Kentfield': 1, 'rocket-bomb': 1, 'underbelly': 1, 'quiet-spoken': 1, 'aeronautical': 1, "Lockheed's": 1, 'super-secret': 1, 'rocket-bombs': 1, "Fiedler's": 1, 'Squeezed': 1, 'pulse-jet': 1, 'ailerons': 1, 'skid': 1, 'fuselage': 1, 'streamer': 1, 'Pilots': 1, 'waterline': 1, 'gliders': 1, 'Massimo': 1, 'Celebration': 1, 'Scampini': 1, 'Arata': 1, 'Elected': 1, 'Elios': 1, 'Anderlini': 1, 'Attilio': 1, 'Beronio': 1, 'Bianco': 1, 'Frederic': 1, 'Campagnoli': 1, 'Cervetto': 1, 'Armond': 1, 'Duhagon': 1, 'Mana': 1, 'Moscone': 1, 'Calude': 1, 'Perasso': 1, 'Petrini': 1, 'Ratto': 1, 'Reilly': 1, 'Disarmament': 1, '3300': 1, 'gangland': 1, 'DiVarco': 1, 'Allegretti': 1, '$39,000': 1, 'stevedore': 1, 'Connection': 1, '543': 1, 'Liquor': 1, '3247': 1, 'Kedzie': 1, 'Dominic': 1, 'Senese': 1, 'teamster': 1, 'Accardo': 1, 'onetime': 1, '1215': 1, '$1,600': 1, "Leavitt's": 1, "warehouseman's": 1, "salesman's": 1, 'bottling': 1, "Glimco's": 1, "drivers'": 1, '1213-15': 1, 'micro-microcurie': 1, '1630': 1, 'embezzling': 1, 'Lien': 1, "Huff's": 1, 'Antone': 1, 'embezzlement': 1, "mechanic's": 1, 'liens': 1, '$109': 1, 'Blaber': 1, '1020': 1, 'cashed': 1, '$28,700,000': 1, 'Dallas-headquartered': 1, 'allotting': 1, 'over-the-counter': 1, 'Eppler': 1, 'underwriter': 1, '$17': 1, '$22': 1, '185,000': 1, '$11.50': 1, 'subscribe': 1, '64-cent': 1, 'run-ups': 1, 'second-echelon': 1, "Morton's": 1, "Chip-o's": 1, 'avid': 1, "Ginner's": 1, '52-year': 1, '$250,000': 1, 'gins': 1, '22-acre': 1, 'Dallas-based': 1, 'Prattville': 1, 'cotton-growing': 1, 'Southeastern': 1, '300-450': 1, 'Lummus': 1, 'Lint': 1, 'Cleaner': 1, 'Ginning': 1, 'heaters': 1, 'Hinckley': 1, 'extractors': 1, 'separators': 1, 'belting': 1, 'doldrums': 1, 'Registrations': 1, 'Totaling': 1, '3,399': 1, '2,963': 1, '4,441': 1, 'quarter-to-quarter': 1, '9,273': 1, '3-month': 1, '11,744': 1, '1,212,000': 1, 'April-June': 1, 'compacts': 1, 'lower-priced': 1, 'Distributive': 1, 'seniors': 1, 'Owens': 1, 'Isodine': 1, 'Pharmical': 1, 'Trigg': 1, 'Arrington': 1, 'Kaminsky': 1, 'Terral': 1, 'Adamson': 1, 'Tommie': 1, 'Paschall': 1, 'Crozier': 1, 'Paulah': 1, 'Kestner': 1, 'Hillcrest': 1, 'Shay': 1, 'Satterfield': 1, 'Cluck': 1, 'Deloris': 1, 'Carrel': 1, 'Carty': 1, 'McLauchlin': 1, 'Rylie': 1, 'Seagoville': 1, 'Wolverton': 1, 'Flanagan': 1, 'Samuels': 1, 'Carolyn': 1, 'Bert': 1, 'Caron': 1, 'Stallard': 1, 'Mortgage': 1, 'Palo': 1, 'Gaither': 1, 'cyclical': 1, 'Thesis': 1, 'neo-stagnationist': 1, '1958-60': 1, 'retrenching': 1, 'Sacrifices': 1, 'Analysts': 1, '675': 1, 'sidelines': 1, 'pivotal': 1, 'snapback': 1, 'Streeters': 1, 'whopping': 1, '7.19': 1, '687.87': 1, '1,253': 1, '695': 1, 'lows': 1, '3.28': 1, '3.98': 1, '1970s': 1, 'Howell': 1, 'Creations': 1, 'log-jam': 1, 'geometrically': 1, 'equalizers': 1, 'all-automatic': 1, 'Phelan': 1, '$120': 1, "Gulf's": 1, '2,700,877': 1, '923,076': 1, '4-7/8': 1, '4-1/2%': 1, '1991': 1, '$70': 1, '1971': 1, '1976': 1, '$80': 1, '1981': 1, '1.23': 1, '1.58': 1, 'Gains': 1, '2-3/4': 1, 'Teleprompter': 1, 'Foil': 1, 'Kawecki': 1, 'Write': 1, 'Television-Electronics': 1, 'irate': 1, '60-day': 1, 'shareholder': 1, 'Railroads': 1, "O's": 1, 'Tuohy': 1, 'cross-examination': 1, 'ICC': 1, 'O-B': 1, "hemisphere's": 1, "Tuesday's": 1, '90-day': 1, '2.325%': 1, '2.295%': 1, 'polled': 1, 'Increase': 1, "Center's": 1, 'Expect': 1, '1,257,700': 1, 'non-farm': 1, 'Starts': 1, 'Leaders': 1, 'Elburn': 1, 'Ehlers': 1, '13%': 1, 'drought-seared': 1, 'uptrend': 1, 'picker': 1, '$2,700': 1, 'Massey-Ferguson': 1, '2,418': 1, '869': 1, 'Staiger': 1, 'cutback': 1, '129%': 1, '1947-49': 1, '$1.4': 1, '$639': 1, '$39.5': 1, '$1.5': 1, '$12.7': 1, '242%': 1, '1910-14': 1, '237%': 1, 'mid-July': 1, 'mid-1960': 1, 'adjourning': 1, "ruling's": 1, 'prior-year': 1, 'clay-mining': 1, 'Charitable': 1, 'substantiation': 1, 'revenuers': 1, 'deductibility': 1, 'realty': 1, 'disallowed': 1, 'tax-freedom': 1, 'liquidations': 1, 'year-old': 1, '$1,800': 1, 'invoices': 1, 'kickbacks': 1, 'household-type': 1, 'Hiring': 1, 'tax-aided': 1, 'Possible': 1, 'upshots': 1, 'briefs': 1, 'divulging': 1, 'seasonally': 1, '$18.2': 1, 'pre-Easter': 1, '2.5%': 1, '$17.8': 1, 'titian-haired': 1, 'Ballroom': 1, 'Ferdinando': 1, 'Sarmi': 1, 'Rolnick': 1, 'Byer-Rolnick': 1, 'Hat': 1, 'Wragge': 1, 'casuals': 1, 'Vivier': 1, 'Dior': 1, 'Beneficiary': 1, 'Crippled': 1, 'Cerebral': 1, 'Palsy': 1, 'Fogelson': 1, 'Bel-Air': 1, 'Pecos': 1, 'chemise': 1, 'jersey': 1, 'long-bodied': 1, 'Ceil': 1, 'Balenciaga': 1, 'reminisces': 1, 'Scotch-Irish-Scandinavian': 1, 'Orkney': 1, 'Reared': 1, 'Grenoble': 1, 'Repertory': 1, 'Arrow': 1, 'Chips': 1, 'Prejudice': 1, 'Saga': 1, 'Miniver': 1, 'Honors': 1, 'Campobello': 1, 'Mame': 1, "Brassbound's": 1, 'Conversion': 1, 'Camille': 1, "Tussard's": 1, 'Waxworks': 1, 'Kiowa': 1, 'trout': 1, 'Afro-Cuban': 1, 'Tuberculosis': 1, 'oilman-rancher': 1, 'Gander': 1, 'coeds': 1, 'craven': 1, 'women-trodden': 1, '32,000': 1, 'moans': 1, 'McElvaney': 1, 'Dining': 1, "athlete's": 1, 'ruggedly': 1, 'pester': 1, 'Hockaday': 1, 'mastodons': 1, 'go-go-go': 1, "athletes'": 1, 'duress': 1, 'bans': 1, 'hotdogs': 1, 'broccoli': 1, 'cauliflower': 1, 'stoked': 1, 'Clement': 1, 'Atlee': 1, 'saffron': 1, '6-ounce': 1, 'Dip': 1, '2-inch': 1, '250-275': 1, 'saute': 1, 'Sprinkle': 1, 'slow-baked': 1, 'seedless': 1, 'Pontiac': 1, 'Contemporary': 1, 'straight-line': 1, 'livability': 1, 'avant': 1, 'garde': 1, 'boxy': 1, "'20's": 1, "'40's": 1, 'Sanger-Harris': 1, 'wormy': 1, 'chestnut': 1, 'pecan': 1, 'custom-design': 1, "Titche's": 1, 'Rounded': 1, 'insets': 1, 'inlaid': 1, 'Macassar': 1, 'high-legged': 1, 'easy-to-reach': 1, '60-inch': 1, 'canted': 1, 'headboard': 1, 'styling': 1, 'door-fronted': 1, 'Colorful': 1, 'Eastman': 1, 'Chromspun': 1, 'predominating': 1, 'Scotchgard': 1, "Drexel's": 1, 'spider-leg': 1, 'lustrous': 1, 'See-through': 1, 'shoji': 1, 'Dignity': 1, 'hand-screened': 1, 'bookcases': 1, 'Mellow': 1, 'bronzy-green-gold': 1, 'hand-crafted': 1, 'reiterate': 1, 'Vagabonds': 1, 'air-conditioned': 1, 'Invitations': 1, 'Ginghams': 1, 'Stetsons': 1, 'vests': 1, 'Decorating': 1, 'bluebonnets': 1, 'stagecoach': 1, 'sunbonnet': 1, 'Abell': 1, 'Messrs': 1, 'McElyee': 1, 'Fanning': 1, 'Darrow': 1, 'Mineral': 1, 'Kerrville': 1, 'Serving': 1, 'Schmalzried': 1, 'yearbook': 1, 'scrapbook': 1, 'caramel': 1, 'frosting': 1, 'Pillsbury': 1, 'Bake-Off': 1, '23-year-old': 1, 'bake-offs': 1, 'vanilla': 1, 'Wellsville': 1, 'Bake-off': 1, 'finalist': 1, 'Welton': 1, 'renderings': 1, 'three-building': 1, 'Cott': 1, 'Niven': 1, 'Bricker': 1, 'Lafe': 1, '75th': 1, 'Examiners': 1, 'Ilona': 1, 'Schmidl-Seeberg': 1, 'Kreisler': 1, '10-hour': 1, 'logistical': 1, 'finger-paint': 1, 'Hord': 1, 'Worrell': 1, 'Ghormley': 1, 'McFarland': 1, 'Joanne': 1, 'Curry': 1, 'Ellsworth': 1, 'Currys': 1, 'Hartley': 1, 'Valerie': 1, 'McAlister': 1, 'Duque': 1, 'Brownings': 1, 'Ludlow': 1, 'Huntington': 1, 'Huntingtons': 1, 'listings': 1, 'Haskins': 1, 'McAlester': 1, 'Pfau': 1, 'Pauleys': 1, 'Chantilly': 1, 'Moulton': 1, 'Moultons': 1, 'Beesemyers': 1, 'Esnards': 1, 'Hazard': 1, 'Wangemans': 1, 'Eng.': 1, 'Olerichs': 1, 'Aderholds': 1, 'Chapelles': 1, 'Berteros': 1, 'Egerton': 1, 'Crispin': 1, 'Armisteads': 1, 'Longinotti': 1, 'Carbones': 1, 'Geddes': 1, 'MacGregors': 1, 'Althaus': 1, 'Displayed': 1, "puppet's": 1, 'whims': 1, 'disharmony': 1, 'playtime': 1, 'merry-go-round': 1, 'home-owners': 1, 'cabinetmakers': 1, "junior's": 1, 'homemakers': 1, 'Housewives': 1, "Escape's": 1, 'Bonanza': 1, 'bonanza': 1, 'skits': 1, 'vocals': 1, 'instrumentals': 1, 'spotlights': 1, 'Ciciulla': 1, 'Grossman': 1, 'tuba': 1, 'crazy-wonderful': 1, 'Bartha': 1, 'Oceania': 1, 'Cumbancheros': 1, 'Flip': 1, 'Fireside': 1, 'Ranch': 1, 'Jolly': 1, 'accordion': 1, 'Freida': 1, 'Bahia': 1, 'Cabana': 1, 'calypso': 1, 'capers': 1, 'Leighton': 1, 'springing': 1, 'ringsiders': 1, 'Rum': 1, 'Hovarter': 1, 'Reno-Lake': 1, 'Rusty': 1, 'Marskmen': 1, 'Tune': 1, 'Toppers': 1, 'ex-schoolteacher': 1, 'repartee': 1, 'sidemen': 1, 'Kemm': 1, 'Wes': 1, 'Kelly': 1, 'keyboarding': 1, 'skips': 1, 'boogie': 1, 'bouncy': 1, 'Kissak': 1, 'bossman': 1, 'Spot': 1, 'chandeliers': 1, 'Chef': 1, 'Yokel': 1, 'Bandstand': 1, 'DeCicco': 1, 'Tic-Tac-Toe': 1, "Hubie's": 1, 'Lorain': 1, 'reopening': 1, 'Sunman': 1, 'cornering': 1, 'Vivacious': 1, 'debuts': 1, 'brunches': 1, 'buffets': 1, "Airline's": 1, 'Sunshine': 1, 'Bimini': 1, 'month-long': 1, 'Drinkhouse': 1, "Pal's": 1, 'Playboy': 1, 'chum': 1, 'Tex': 1, 'Pualani': 1, 'Randy': 1, 'Avon': 1, 'Searles': 1, 'Bandish': 1, 'Morgart': 1, 'Trap': 1, 'Moffett': 1, 'Rickshaw': 1, 'Fazio': 1, "O'Hare": 1, 'Michaels': 1, 'Placentia': 1, "D'Art": 1, 'Rimini': 1, 'Performers': 1, 'Milenoff': 1, 'Ximenez-Vargas': 1, 'Espagnol': 1, 'Bolet': 1, 'Gretchen': 1, '$2.50': 1, 'Whelan': 1, 'librarian-board': 1, 'Tallahassee': 1, 'Stranahan': 1, 'Pompano': 1, 'brainwashing': 1, 'schoolers': 1, 'Biblically': 1, 'Communisn': 1, 'enthralled': 1, 'Slack': 1, 'Braun': 1, 'Map': 1, 'Response': 1, 'MacWhorter': 1, '3181': 1, 'Ter.': 1, 'Dedication': 1, '10:50': 1, 'twice-a-year': 1, 'Shari': 1, 'two-year-old': 1, 'miffed': 1, 'prayer-time': 1, "Dade's": 1, 'Blanton': 1, 'Treadwell': 1, 'sexton': 1, 'Nazarene': 1, '10:45': 1, '9:40': 1, "Men's": 1, '6:15': 1, 'Altar': 1, 'Densmore': 1, "Stephen's": 1, 'Coconut': 1, 'Enrique': 1, "symphony's": 1, 'Sinfonica': 1, 'Siciliana': 1, 'Gala': 1, 'Orchestre': 1, 'Philharmonique': 1, 'Bordeau': 1, "Jorda's": 1, 'conductors': 1, 'violinists': 1, 'Yehudi': 1, 'Menuhin': 1, 'Ruggiero': 1, 'Ricci': 1, 'Fleisher': 1, 'Slenczynka': 1, 'Petipa-Tschaikowsky': 1, 'anytime': 1, 'stultifying': 1, 'boobify': 1, 'self-plagiarisms': 1, "Kirov's": 1, 'ova': 1, 'eva': 1, 'aya': 1, 'Omsk': 1, 'Pinsk': 1, 'Stalingr': 1, 'oops': 1, 'Oh-the-pain-of-it': 1, 'filial': 1, 'suavity': 1, 'lightness': 1, 'Sizova': 1, 'Bluebird': 1, 'Nijinsky': 1, 'Vladilen': 1, 'Semenov': 1, 'danseur': 1, 'Konstantin': 1, 'Shatilov': 1, 'Virsaladze': 1, 'pastel-like': 1, 'Evegeni': 1, 'Dubovskoi': 1, 'concertmaster': 1, 'Lumia': 1, 'Sustaining': 1, 'ten-concert': 1, '$16': 1, 'Participating': 1, 'erroneously': 1, 'Chronicle': 1, '1044': 1, 'busied': 1, '798': 1, '12th': 1, 'firehouses': 1, 'Stonestown': 1, 'mall': 1, '198': 1, '676': 1, "parent's": 1, 'Famed': 1, 'cellist': 1, 'Pablo': 1, 'Casals': 1, 'Munoz': 1, 'Spanish-born': 1, 'naughty': 1, 'naughtier': 1, 'watchers': 1, 'Ozzie': 1, 'Strip': 1, 'nymphomaniacs': 1, 'private-eye': 1, 'unknowns': 1, 'Lex': 1, 'Ekberg': 1, 'Herridge': 1, 'shocker': 1, 'dud': 1, 'detract': 1, "Chronicle's": 1, 'Paine': 1, 'Knickerbocker': 1, 'unlinked': 1, 'ventilates': 1, 'KQED': 1, 'Capello': 1, 'Musica': 1, 'Threshold': 1, 'Mandarin': 1, 'Cantonese': 1, 'Chiuchow': 1, 'enriching': 1, 'debonair': 1, 'wind-and-water': 1, 'Tires': 1, 'clobbers': 1, 'Crunch': 1, '$1.80': 1, 'finned': 1, 'tuck': 1, 'much-copied': 1, 'Decorators': 1, "Mansion's": 1, "1800's": 1, 'Rutherford': 1, 'Authenticated': 1, 'sidechairs': 1, "AID's": 1, 'refurbishing': 1, 'antiquarians': 1, 'mantlepiece': 1, 'McIntyre': 1, 'woodcarver': 1, "committee's": 1, 'Lenygon': 1, "Lenygon's": 1, 'Lehman': 1, 'McCluskey': 1, 'Jussel': 1, 'wellknown': 1, '75-minute': 1, '85-piece': 1, '325': 1, 'cardiac': 1, 'Mansion': 1, 'Spangled': 1, 'Displaying': 1, 'England-born': 1, 'sun-tanned': 1, 'Holbrook': 1, 'Rainier': 1, 'rapt': 1, 'Sousa': 1, 'Stripes': 1, 'Conductor': 1, '85-student': 1, 'self-portrait': 1, "Raphael's": 1, 'Alba': 1, 'Rheims': 1, 'Bales': 1, 'blue-uniformed': 1, 'Courbet': 1, 'Fra': 1, 'Angelico': 1, 'collonaded': 1, 'sphynxes': 1, '1733': 1, 'nw.': 1, 'bustling': 1, 'eulogized': 1, 'crypt': 1, 'biennial': 1, 'Jurisdiction': 1, 'Washington-Alexandria': 1, 'Hurt': 1, 'UGF': 1, 'bed-time': 1, 'preceeded': 1, 'rough-housing': 1, 'Blacks': 1, 'Givers': 1, 'Anticipated': 1, 'rangers': 1, 'full-dress': 1, 'U-2': 1, 'summitry': 1, 'Pre-inaugural': 1, 'Attitude': 1, 'sparing': 1, 'Llewellyn': 1, 'Novosibirsk': 1, 'Deadlock': 1, "Russians'": 1, 'unchecked': 1, 'tripartite': 1, 'impotency': 1, 'Firm': 1, '67-year-old': 1, 'Disapproval': 1, 'Mollusks': 1, 'flattering': 1, 'Viewing': 1, "bishops'": 1, "pastors'": 1, 'Diocesan': 1, 'arithmetical': 1, 'well-springs': 1, 'blunts': 1, 'family-community': 1, 'anomalies': 1, 'co-educational': 1, 'pre-academic': 1, 'intra-mural': 1, 'decision-making': 1, 'teacher-employee': 1, 'inapt': 1, 'acclimatized': 1, 'inhomogeneous': 1, 'oft-repeated': 1, 'clerical-lay': 1, 'Expressions': 1, 'invests': 1, 'Adequate': 1, 'Broadly': 1, "layman's": 1, 'dichotomy': 1, 'baneful': 1, 'Competent': 1, 'pre-set': 1, 'busy-work': 1, 'luncheon-table': 1, 'administers': 1, 'fallacious': 1, 'Anatole': 1, 'stoppages': 1, "employers'": 1, '$7,500,000': 1, "contractor's": 1, 'Hypocrisy': 1, 'price-setting': 1, 'multi-product': 1, 'self-restraint': 1, 'wide-open': 1, 'enforcers': 1, 'culpas': 1, 'scapegoats': 1, 'Thurman': 1, '215': 1, '228-229': 1, 'nolo': 1, 'contendere': 1, 'prosecutions': 1, '7A': 1, 'collective-bargaining': 1, 'unsupported': 1, 'eighteenth-': 1, 'Eighteenth-century': 1, "carpenters'": 1, 'ten-hour': 1, 'officious': 1, 'improper': 1, 'Norris-LaGuardia': 1, 'irrationality': 1, 'Danbury': 1, 'Hatters': 1, 'Loewe': 1, 'immunization': 1, 'emasculated': 1, 'three-front': 1, 'Afterward': 1, "Tennessee's": 1, 'undermining': 1, 'offensives': 1, 'Hours': 1, 'consulate': 1, 'breakoff': 1, 'Secretary-designate': 1, 'battalions': 1, "Pentagon's": 1, 'troopships': 1, "U.S.'s": 1, 'Okinawa': 1, 'Task': 1, '116': 1, 'cold-war': 1, 'Indo-China': 1, 'Ilyushin': 1, "Gore's": 1, 'coyly': 1, 'Deadly': 1, 'conservative-liberal': 1, '14-term': 1, 'Meyers': 1, 'Calmer': 1, 'Caucusing': 1, 'godliness': 1, 'gangling': 1, 'diehard': 1, 'anti-Negro': 1, '6-6': 1, 'far-out': 1, 'Democratic-sponsored': 1, 'Rayburn-Johnson': 1, "Colmer's": 1, 'ouster': 1, 'anti-Kennedy': 1, 'Reprisals': 1, 'prodigal': 1, 'Dixiecrats': 1, 'anti-Colmer': 1, 'Unconscionable': 1, 'Smith-Colmer': 1, 'Appropriations': 1, 'pork-barrel': 1, 'Vinson': 1, 'cloakrooms': 1, 'caucuses': 1, '260-member': 1, 'Mississippians': 1, 'whiplash': 1, 'costlier': 1, 'chairmanships': 1, 'unworkable': 1, "Arkansas'": 1, 'coolheaded': 1, "guide's": 1, 'legislation-delaying': 1, 'filibusters': 1, 'Leverett': 1, 'Saltonstall': 1, 'hard-to-get': 1, 'Dealer': 1, 'cloture': 1, 'Congresses': 1, 'Hopefully': 1, 'officiate': 1, 'Course': 1, '10th': 1, 'double-bogeyed': 1, '2-over-par': 1, '72-hole': 1, 'scorecard': 1, 'seven-iron': 1, 'strayed': 1, 'lodged': 1, 'last-round': 1, 'putted': 1, 'overshot': 1, '281': 1, 'second-place': 1, 'leathery': 1, 'topnotch': 1, 'one-over-par': 1, 'Baltimorean': 1, 'holed': 1, '206': 1, 'washed-out': 1, 'duels': 1, 'outplayed': 1, 'drizzly': 1, 'skiddy': 1, 'flag-stick': 1, '4-under-par': 1, 'Nicklaus': 1, 'Venturi': 1, 'supersensitive': 1, 'putter': 1, "Augusta's": 1, 'treacheries': 1, 'geriatric': 1, 'scoreboards': 1, 'twosome': 1, 'Hyndman': 1, 'tidal': 1, 'Kel': 1, 'Nagle': 1, 'parklike': 1, '25-foot': 1, '25-footer': 1, 'vocalization': 1, 'intervening': 1, 'well-played': 1, 'obliterated': 1, 'dogleg': 1, 'bunkered': 1, '220-yard': 1, 'par-3': 1, 'one-iron': 1, 'three-wood': 1, 'double-header': 1, '145-pound': 1, 'ambled': 1, 'grand-slam': 1, "teammate's": 1, 'pinch-hitter': 1, 'Pitchers': 1, 'knock-down': 1, 'incorrigible': 1, 'challenger': 1, 'Foxx': 1, 'Hack': 1, 'zeroed': 1, '162': 1, 'Roommates': 1, 'Valuable': 1, 'MVP': 1, '$251': 1, 'sleeps': 1, '25-minute': 1, 'roommates': 1, 'N.D.': 1, 'halfbacks': 1, '17-1/2-inch': 1, "teammates'": 1, "Berra's": 1, 'stunk': 1, 'Tulsa': 1, 'Kerby': 1, "Idols'": 1, 'idolize': 1, 'ex-Yankee': 1, '87-1/2': 1, 'railroading': 1, 'head-and-shoulders': 1, 'Hitting': 1, 'right-handed': 1, 'stances': 1, 'bunters': 1, '3.1': 1, 'Aparicio': 1, 'base-stealing': 1, 'Appropriately': 1, 'Convair': 1, 'Actor-Crooner': 1, 'Cinemactor': 1, 'Lawford': 1, 'Armory': 1, 'glutted': 1, 'Ella': 1, "armory's": 1, 'ringside': 1, 'Couturier': 1, 'commandant': 1, 'warless': 1, 'Leatherneck': 1, 'moldboard': 1, 'geeing': 1, 'hawing': 1, 'tilling': 1, 'noncommissioned': 1, 'Maurine': 1, 'Neuberger': 1, 'buss': 1, 'Statesman': 1, 'Ambassador-designate': 1, 'swum': 1, 'cerebrated': 1, 'august': 1, 'bobby-sox': 1, 'Dreamboat': 1, 'Cacophonist': 1, 'tutors': 1, "10-o'clock": 1, "High's": 1, 'toneless': 1, 'Decathlon': 1, 'Rafer': 1, 'gumption': 1, "A.A.U.'s": 1, 'cliffhanging': 1, 'crowns': 1, 'Tooling': 1, 'Driver': 1, 'self-crimination': 1, 'stirling': 1, 'eulogizers': 1, "U.S.S.R.'s": 1, 'Izvestia': 1, 'enterprisingly': 1, 'Red-prone': 1, 'Comedian': 1, 'self-exile': 1, 'spooned': 1, 'transatlantic': 1, 'jetliners': 1, 'connotes': 1, 'new-rich': 1, '343': 1, "Philadelphia's": 1, 'Barr': 1, 'Cezannes': 1, 'Braques': 1, 'Matisses': 1, 'Legers': 1, 'Giacometti': 1, 'burglarproof': 1, 'snubbing': 1, 'Rhine-Westphalia': 1, 'discriminate': 1, '175': 1, 'Valedictorian': 1, 'Morehouse': 1, "Detroit's": 1, 'roommate': 1, "Bootle's": 1, 'Catch': 1, "Harvard's": 1, "Caltech's": 1, 'genes': 1, 'nine-year': 1, 'tidying': 1, '21-year': 1, 'typhoon': 1, 'Idealist': 1, "Hutchins'": 1, '$139.3': 1, 'Caltech': 1, 'sixth-sense': 1, 'speech-making': 1, 'avidly': 1, 'Leopold': 1, '900,000': 1, "Leopold's": 1, 'Mohammedanism': 1, 'paganism': 1, 'animism': 1, 'steamily': 1, 'equatorial': 1, 'trampled': 1, 'disparities': 1, 'manganese': 1, 'cartels': 1, 'Gunther': 1, 'Societe': 1, 'colossus': 1, 'envisaged': 1, 'Copper': 1, 'dole': 1, 'chatte': 1, 'chien': 1, 'clamoring': 1, 'unsure': 1, 'Pas': 1, 'goutte': 1, 'pedagogue': 1, 'guiltless': 1, 'Balkanizing': 1, 'near-Balkanization': 1, 'Kivu': 1, 'Western-style': 1, 'bicameral': 1, 'Well-wishers': 1, 'frictions': 1, '25,000-man': 1, 'officered': 1, 'well-armed': 1, 'cannibalistic': 1, 'rioting': 1, 'raping': 1, 'paratroops': 1, 'mineral-rich': 1, 'Confusion': 1, 'abstaining': 1, 'Vague': 1, 'Mali': 1, '19,000': 1, 'Kalonji': 1, 'meddle': 1, '65%': 1, 'federalize': 1, 'Balkanize': 1, 'eject': 1, 'reconvention': 1, "McCloy's": 1, 'Tunis': 1, 'imbroglio': 1, 'Bahi': 1, 'Habib': 1, 'Bourguiba': 1, 'Uruguay': 1, 'Nationalist': 1, 'Cheng': 1, "Kai-shek's": 1, 'Mongolia': 1, 'Peking': 1, "Mongolia's": 1, 'emissaries': 1, 'Nepal': 1, 'good-will': 1, 'Ivory': 1, 'skyjacked': 1, 'four-jet': 1, 'stopovers': 1, 'night-coach': 1, '1:35': 1, 'Thirty-one': 1, '3:57': 1, '52-year-old': 1, 'mid-flight': 1, 'tri-motor': 1, 'Arequipa': 1, 'Cuban-American': 1, 'Electra': 1, 'Newsweek': 1, 'Stalling': 1, 'skyjackers': 1, 'recruiter': 1, 'Pfc.': 1, 'boxer': 1, '4:18': 1, 'fuels': 1, 'propeller-driven': 1, '50-year-old': 1, 'ex-convict': 1, 'Cody': 1, 'taxiing': 1, 'Ambulances': 1, '12:50': 1, 'stewardesses': 1, 'Toni': 1, 'Besset': 1, "Simmons'": 1, 'Frog-marched': 1, 'kidnapping': 1, 'peddle': 1, '36-year-old': 1, 'unaccustomed': 1, '225,000': 1, 'hold-back': 1, 'mutterers': 1, 'prudently': 1, '$46.7': 1, '$754': 1, '224-170': 1, '$5.2': 1, 'foreign-aid': 1, 'Mulligatawny': 1, 'poor-mouth': 1, 'lowliest': 1, 'smelts': 1, 'soft-shell': 1, 'Dubois': 1, 'cuisine': 1, '$10,000-per-year': 1, 'French-born': 1, 'maitre': 1, "d'hotel": 1, 'Holders': 1, 'Long-term': 1, 'Result': 1, 'payoff': 1, "Poor's": 1, 'bucked': 1, 'Tax-free': 1, 'more-than-ordinary': 1, 'investor': 1, '$16,000': 1, 'Swelling': 1, '12-month': 1, 'Blyth': 1, 'Indication': 1, '173': 1, '187-mile': 1, 'toll-rate': 1, 'Richmond-Petersburg': 1, 'Easier': 1, "motorists'": 1, 'Wichita': 1, 'Kans.': 1, 'Skyway': 1, 'defaulted': 1, 'typewriters': 1, 'cabled': 1, "Underwood's": 1, 'design-conscious': 1, 'sales-conscious': 1, 'advertising-conscious': 1, 'inflow': 1, 'textile-importing': 1, 'textile-exporting': 1, 'less-developed': 1, 'exporting': 1, 'high-wage': 1, 'Lancashire': 1, 'unrestrictedly': 1, 'Gradual': 1, 'transferring': 1, 'Import': 1, 'highest-paid': 1, "steelmakers'": 1, 'steelmaker': 1, '$2.80': 1, 'attactive': 1, 'unprofitable': 1, "librarian's": 1, 'well-stocked': 1, 'co-op': 1, 'Freeport': 1, 'Levittown': 1, 'Hewlett-Woodmere': 1, 'Nanook': 1, "Emperor's": 1, 'Nightingale': 1, 'Balloon': 1, 'Workshops': 1, 'well-planned': 1, 'book-review': 1, 'book-selection': 1, 'pre-school': 1, 'grassroots': 1, 'booklists': 1, 'Sum': 1, 'Librarians': 1, 'co-ops': 1, '25,000,000': 1, '50,000,000': 1, '1,509': 1, '16-22': 1, 'adjourns': 1, 'musts': 1, 'crisis-to-crisis': 1, 'penal': 1, 'banning': 1, 'windup': 1, 'inattentive': 1, 'Newspapermen': 1, 'cons': 1, 'Cities': 1, 'Coupling': 1, '$83,750': 1, 'five-member': 1, 'banding': 1, 'go-it-alone': 1, 'A-bombs': 1, 'deter': 1, 'deterrence': 1, 'gearing': 1, 'junks': 1, 'brinkmanship': 1, "DeKalb's": 1, 'digest': 1, 'Mennen': 1, 'Zanzibar': 1, 'imperialists': 1, 'Chin': 1, 'Soapy': 1, 'Confidence': 1, '$1,750,000': 1, 'Milledgeville': 1, '$1,250,000': 1, 'half-million': 1, 'Patients': 1, '$3.15': 1, 'behooves': 1, 'Assassination': 1, 'Rafael': 1, 'blood-thirsty': 1, 'even-handed': 1, 'Benefactor': 1, 'fiefdom': 1, 'abduction': 1, 'Galindez': 1, 'Romulo': 1, 'Marcos': 1, 'Perez': 1, 'Jimenez': 1, 'quashed': 1, "Benefactor's": 1, 'lobbies': 1, 'sycophantically': 1, 'Tardily': 1, 'right-wing': 1, 'rapprochement': 1, 'bete': 1, 'noire': 1, 'coalesces': 1, 'Communist-type': 1, 'High-speed': 1, 'Echo': 1, 'Brookmont': 1, 'alluring': 1, 'Darwin': 1, 'Stolzenbach': 1, 'acquiesced': 1, 'usurp': 1, 'semi-city': 1, 'airlift': 1, 'mitigate': 1, 'promulgating': 1, 'Berlin-West': 1, 'sound-truck': 1, 'Gerhard': 1, 'Eisler': 1, 'quadripartite': 1, 'acknowledging': 1, 'fusillades': 1, 'vopos': 1, 'hooliganism': 1, 'redressed': 1, 'Danzig': 1, 'bison': 1, 'throw-rug': 1, 'dusty-green': 1, 'grassland': 1, 'seamless': 1, 'sun-bleached': 1, 'indelibly': 1, 'live-oak': 1, 'Pottawatomie': 1, 'moth-eaten': 1, 'Wooded': 1, 'silo': 1, 'Whisky': 1, 'distiller': 1, 'anti-liquor': 1, 'major-market': 1, 'subverting': 1, 'NAB': 1, 'non-code': 1, 'pseudo-sophistication': 1, 'soft-drinks': 1, 'toothpaste': 1, 'enticing': 1, 'Oopsie-Cola': 1, 'gulling': 1, 'downing': 1, "Democrats'": 1, 'Registered': 1, "K's": 1, 'helicopter-borne': 1, 'Bangkok': 1, 'Thai': 1, 'callable': 1, 'unprovocative': 1, 'bog': 1, 'Casualties': 1, 'Minh': 1, 'combat-tested': 1, 'monsoon-shrouded': 1, 'road-shy': 1, "guerrilla-th'-wisp": 1, 'Braddock-against-the-Indians': 1, 'bypassed': 1, 'rightist': 1, 'ousted': 1, 'pro-neutralist': 1, 'guaranteed-neutral': 1, 'coup-proof': 1, 'well-ruled': 1, '64-13': 1, 'emulated': 1, 'Goodby': 1, 'rear-looking': 1, 'partisans': 1, 'unnumbered': 1, 'retraction': 1, 'sadder': 1, 'airmen': 1, 'bloodlust': 1, 'condoned': 1, 'dissident': 1, 'nationhood': 1, 'rapes': 1, 'mutinies': 1, 'outlawry': 1, 'subjugate': 1, 'wrong-headed': 1, 'demoralized': 1, 'garrisoned': 1, 'mandated': 1, 'Featherbed': 1, "hours'": 1, 'featherbedding': 1, 'discloses': 1, 'stabilized': 1, 'internationalists': 1, 'lads': 1, 'imperfection': 1, 'jumper': 1, 'wallop': 1, 'oafs': 1, 'pacifier': 1, 'Fools': 1, 'marimba': 1, 'demented': 1, 'mortification': 1, 'Che': 1, 'Guevara': 1, 'edified': 1, 'Montevideo': 1, 'purloined': 1, 'Caracas': 1, 'moralities': 1, '100-ton': 1, 'truckers': 1, "Congo's": 1, 'U.N.-chartered': 1, 'Ndola': 1, 'Rhodesia': 1, 'machinegun': 1, 'Katangan': 1, 'imperiled': 1, 'togetherness': 1, 'bogged': 1, 'dissenting': 1, '$15.5': 1, 'painstaking': 1, 'Unanimity': 1, '$8.5': 1, '689-page': 1, 'Colee': 1, 'Floridians': 1, "Adenauer's": 1, 'Bundestag': 1, "Brandt's": 1, 'Moon-faced': 1, 'ascend': 1, 'rebirth': 1, 'veers': 1, 'Konrad': 1, 'rock-like': 1, 'Bismarck': 1, 'joiners': 1, 'gulled': 1, 'unsupportable': 1, 'duped': 1, 'undeniably': 1, 'Islandia': 1, 'above-water': 1, 'open-meeting': 1, 'subverted': 1, 'rationalizations': 1, 'Outwardly': 1, 'wracked': 1, 'Vive': 1, "Balaguer's": 1, 'pro-Trujillo': 1, 'pro-Castro': 1, 'Reuther': 1, 'squabbling': 1, 'Teamsters': 1, 'craft-industrial': 1, 'Engaged': 1, "labor's": 1, 'Deterrent': 1, "Freeman's": 1, "Soviet's": 1, 'over-produce': 1, 'swindling': 1, 'revitalize': 1, 'Self-criticism': 1, 'Betting': 1, 'prognosticator': 1, "Cambodia's": 1, 'harboring': 1, 'marauders': 1, "communism's": 1, 'Sihanouk': 1, 'concedes': 1, "Sihanouk's": 1, 'prognostication': 1, 'pacemaker': 1, 'forecasters': 1, "January's": 1, 'Corroborating': 1, "Board's": 1, '8,100': 1, 'parceled': 1, 'battlefront': 1, 'shorelines': 1, 'Provincetown': 1, "sanctuary's": 1, 'egrets': 1, 'black-crowned': 1, 'corpsman': 1, '16-hour': 1, 'nil': 1, 'Missouri-Illinois': 1, 'slow-growing': 1, 'mid-continent': 1, 'Slackened': 1, 'retarding': 1, 'outstate': 1, "Dalton's": 1, 'nine-state': 1, 'dovetail': 1, 'Schwada': 1, 'city-owned': 1, 'Herrin-Murphysboro-West': 1, 'Frankfort': 1, 'Politics-ridden': 1, 'plant-location': 1, 'second-class': 1, "City's": 1, 'badges': 1, 'balks': 1, 'expunging': 1, 'sedition': 1, 'reforming': 1, 'cartoonists': 1, 'banishment': 1, 'donkey': 1, "tiger's": 1, 'Mariano': 1, 'interrogator': 1, 'anti-Castro': 1, "Faget's": 1, 'diligently': 1, 'sniping': 1, 'Nigeria': 1, 'ungracious': 1, 'dollarette': 1, 'Ex-Presidents': 1, 'off-the-cuff': 1, 'Q3': 1, '$50,400,000': 1, '$84,000,000': 1, '75,000-ton': 1, 'trans-Atlantic': 1, "Cunard's": 1, 'cruises': 1, 'Eagle': 1, 'Saigon': 1, 'interposed': 1, "Nam's": 1, 'Cong': 1, 'Ridgway': 1, 'Ngo': 1, 'Dinh': 1, 'Diem': 1, '$1,450,000,000': 1, 'succumb': 1, 'morass': 1, 'electing': 1, 'revolves': 1, 'nonpolitical': 1, 'budget-making': 1, 'reorganize': 1, 'Lawmaking': 1, 'franchises': 1, 'trusteeship': 1, 'budget-altering': 1, 'Overriding': 1, 'mayoral': 1, 'now-misplaced': 1, 'approving': 1, 'second-look': 1, 'injustices': 1, 'Enlargement': 1, 'throttled': 1, 'imbalances': 1, 'Armageddon': 1, 'Slums': 1, 'avert': 1, 'double-talk': 1, 'dead-end': 1, 'squeamish': 1, 'alarming': 1, 'newsletters': 1, 'typewritten': 1, 'beef-fat': 1, 'work-weary': 1, 'sprout': 1, 'hash': 1, 'Decatur': 1, 'metropolitian': 1, "3's": 1, "2's": 1, 'Lewellyn': 1, 'Lundeen': 1, 'booster': 1, 'employe': 1, 'thoughtlessly': 1, 'Dyke': 1, '14-15': 1, 'oft': 1, '21-22': 1, '23:34': 1, 'squeals': 1, 'Cokes': 1, 'giggling': 1, 'searchingly': 1, 'pre-nuptial': 1, 'fevered': 1, 'intoxicating': 1, 'signposts': 1, 'Bore': 1, 'no-o': 1, 'reassure': 1, 'mother-in-law': 1, 'Jokes': 1, 'mothers-in-law': 1, 'Sneed': 1, 'covet': 1, 'saintliness': 1, 'unmindful': 1, 'Loon': 1, 'Podgers': 1, 'cross-top': 1, 'obligingly': 1, 'vine-shaded': 1, 'unintelligible': 1, 'autumn-touched': 1, 'retraced': 1, 'jay': 1, 'winging': 1, 'straw-hat': 1, 'sunshield': 1, 'asters': 1, 'world-ignoring': 1, 'singleness': 1, 'road-crossing': 1, 'butterflies': 1, 'sun-browned': 1, 'auctioneer': 1, "lyin'": 1, 'freckled': 1, 'fringed-wrapped': 1, 'chirping': 1, 'robin': 1, 'biracial': 1, 'dynamited': 1, 'stair-step': 1, 'boycotted': 1, 'citywide': 1, 'Hotels': 1, 'nonracial': 1, 'nonsegregated': 1, 'depots': 1, 'accommodation': 1, 'Lanesmanship': 1, 'Played': 1, 'decelerate': 1, 'acquiesence': 1, 'threateningly': 1, 'charge-a-plate': 1, 'Robby': 1, "Robby's": 1, 'offensively': 1, 'Foiles': 1, 'nonchalant': 1, 'inborn': 1, 'straightens': 1, 'Single-color': 1, 'crayons': 1, 'multicolor': 1, 'one-color': 1, 'varitinted': 1, 'over-stitched': 1, 'sauterne': 1, 'twirled': 1, 'Jacobean': 1, 'Traditional': 1, 'Chippendale': 1, 'Chinese-inspired': 1, 'reappearing': 1, 'handicrafts': 1, 'clubrooms': 1, 'dissensions': 1, 'grassroots-fueled': 1, '200-odd': 1, 'officeholders': 1, 'broad-scale': 1, 'Blueprints': 1, '55,000': 1, 'Arrangements': 1, 'endorsing': 1, 'Fresno': 1, '26-28': 1, 'candidate-picking': 1, '39-year-old': 1, 'politico': 1, "Aircraft's": 1, 'hard-nosed': 1, 'Viewed': 1, 'Contrarily': 1, 'loose-knit': 1, 'reapportionment': 1, 'rock-ribbed': 1, '5-to-1': 1, 'lavishing': 1, 'bodes': 1, 'eye-to-eye': 1, 'Shunted': 1, 'incumbents': 1, 'ex-Gov.': 1, 'close-in': 1, 'shrewdest': 1, 'Committeeman': 1, '54th': 1, 'post-reapportionment': 1, "Pasadena's": 1, 'committeemen': 1, 'impute': 1, 'mouthpieces': 1, 'Quotations': 1, 'clamored': 1, 'sabre-rattling': 1, 'imperialist': 1, 'besetting': 1, 'revenge-seeking': 1, 'Novosti': 1, 'contaminate': 1, 'Britons': 1, 'chestnuts': 1, 'egged': 1, 'rattles': 1, 'Politburo': 1, 'Gazettes': 1, "Franklin's": 1, '90,000': 1, '16-page': 1, 'initialed': 1, 'miscellany': 1, 'Brice': 1, 'sashayed': 1, 'staircases': 1, 'Cyril': 1, 'Berniece': 1, 'Jarvis': 1, 'low-calorie': 1, 'grandmothers': 1, 'Dove': 1, "Sing's": 1, 'hoosegows': 1, '34-hour': 1, "lawyers'": 1, 'lifer': 1, 'escapees': 1, 'hoosegow': 1, 'Recognition': 1, 'sawed-off': 1, 'Bust': 1, '$2,300,000': 1, '$750,000': 1, '$590,000': 1, 'Apologies': 1, "Beebe's": 1, "Pullman's": 1, 'Elegant': 1, 'Pullmans': 1, 'deluxer': 1, 'R-5th': 1, 'Chung': 1, 'Hee': 1, "Frelinghuysen's": 1, '80th': 1, 'Seoul': 1, '1884': 1, 'Foote': 1, 'presided': 1, '285': 1, '312': 1, 'fourth-class': 1, 'Roswell': 1, 'N.M.': 1, 'R-6th': 1, "Dwyer's": 1, '350th': 1, 'inaccuracies': 1, '1881-85': 1, 'Undertaken': 1, 'chairmanship': 1, 'Weigle': 1, '1946-52': 1, 'Apocrypha': 1, '13-16': 1, 'cometh': 1, 'forbad': 1, 'comest': 1, 'Suffer': 1, 'becometh': 1, 'straightway': 1, 'lo': 1, 'Clearer': 1, 'paragraphing': 1, 'Beatitudes': 1, "their's": 1, 'recopied': 1, 'retranslated': 1, 'Discoveries': 1, 'restudy': 1, 'Dodd': 1, 'Sizzling': 1, 'perforations': 1, 'Softness': 1, 'legged': 1, 'semi-heights': 1, 'Stacked': 1, 'Coolest': 1, 'shantung-like': 1, 'citrus': 1, 'afoot': 1, 'pastels': 1, 'lilac': 1, 'Ille': 1, 'Contrast': 1, 'Spectators': 1, 'taffy': 1, 'braided': 1, 'Flats': 1, 'Underwriters': 1, 'sterilized': 1, 'crevices': 1, 'malposed': 1, 'anteriors': 1, 'enamel': 1, 'bedfast': 1, 'palsy': 1, 'awakens': 1, 'Steam': 1, 'Sewing': 1, 'neurological': 1, "sewer's": 1, 'overactive': 1, 'bookshelf': 1, "Edison's": 1, 'eye-strain': 1, 'phonetics': 1, 'histrionics': 1, 'turntable': 1, 'sages': 1, 'Jawaharlal': 1, "O'Casey": 1, 'Ben-Gurion': 1, 'Bertrand': 1, 'fillip': 1, 'Learn': 1, 'Productions': 1, 'less-traveled': 1, 'Spoken': 1, 'buffs': 1, 'two-disc': 1, 'Basler': 1, 'Ciardi': 1, 'Muir': 1, 'Peal': 1, 'Bodenheim': 1, 'unforseen': 1, 'Leggett': 1, 'banker-editor': 1, 'roughest': 1, 'parlayed': 1, 'dabbles': 1, 'suckers': 1, 'promoter': 1, 'Mommy': 1, 'frowningly': 1, 'clothe': 1, 'knick-knacks': 1, 'nos': 1, "Mommy's": 1, 'Explain': 1, 'Actions': 1, 'Substitute': 1, 'Homecoming': 1, 'grad': 1, 'homecomings': 1, 'Grad': 1, 'coed': 1, 'Undergraduates': 1, 'titter': 1, 'bridgework': 1, 'Bitterness': 1, 'unripe': 1, 'persimmons': 1, 'hails': 1, 'Middle-aged': 1, 'by-gone': 1, 'puffs': 1, 'kick-offs': 1, 'jolting': 1, 'tackles': 1, 'goal-line': 1, 'squirms': 1, 'recaptured': 1, "Mundt's": 1, 'Mundt': 1, 'mule-drawn': 1, 'Smokers': 1, 'downgrade': 1, 'Griffin-Byrd': 1, 'troup': 1, 'Pre-Legislative': 1, 'Brasstown': 1, 'Bald': 1, 'Folkston': 1, 'allegiances': 1, 'Hoped-for': 1, 'self-insurance': 1, 'unpartisan': 1, 'mince': 1, 'spenders': 1, "Griffin's": 1, "pauper's": 1, 'shuddery': 1, 'spectre': 1, 'mudslinging': 1, 'pre-legislative': 1, 'Attlee': 1, "Ike's": 1, 'recess': 1, 'Slogan': 1, 'Birch': 1, 'Paddle': 1, "'60": 1, 'Faces': 1, 'Problem': 1, 'zoned': 1, 'Bostitch': 1, 'fallacy': 1, 'foundering': 1, 'Olson': 1, 'metropolitanization': 1, 'Cowessett-East': 1, 'Greenwich-Potowomut': 1, 'Feelers': 1, 'Potowomut': 1, 'Cowessett': 1, 'update': 1, 'Tolls': 1, 'Fain': 1, 'DeWitt': 1, 'Mathewson': 1, 'Rozella': 1, 'Switzer': 1, 'Bless': 1, 'Rescue': 1, 'undivided': 1, 'non-service': 1, 'out-of-step': 1, "veteran's": 1, "veterans'": 1, 'tear-soaked': 1, 'unsurpassed': 1, 'Forand': 1, 'exhaustion': 1, 'Trohan': 1, 'Evansville': 1, 'unsheltered': 1, 'bettering': 1, 'Subsidies': 1, 'regimented': 1, 'freezers': 1, "cutters'": 1, 'fairest': 1, 'Holzman': 1, 'Madeira': 1, 'affix': 1, 'innuendo': 1, 'commendation': 1, 'archdiocese': 1, 'welcomes': 1, 'Candlelight': 1, '$550': 1, '$3.22': 1, '$580': 1, 'Ironic': 1, 'Dupont': 1, 'Editorial': 1, 'divest': 1, 'Copies': 1, 'avaliable': 1, 'Harmful': 1, 'Downers': 1, '103': 1, 'guzzle': 1, 'Overt': 1, 'Issuing': 1, 'Plus-one': 1, 'loaders': 1, "home's": 1, 'Supports': 1, 'Antoine': 1, 'cohorts': 1, 'startle': 1, 'levied': 1, 'Taxing': 1, 'Speedup': 1, 'uplift': 1, 'muggers': 1, 'taxicab': 1, 'Praises': 1, "architects'": 1, 'Newarker': 1, 'coal-like': 1, 'cypress-like': 1, 'overlying': 1, 'entombed': 1, 'microfossils': 1, 'Cretaceous': 1, 'dinosaurs': 1, 'interglacial': 1, 'Civilian': 1, '920': 1, 'Civilian-groups': 1, 'Pets': 1, 'molest': 1, 'liberalizing': 1, 'Sidewalk': 1, "tourists'": 1, 'Memorials': 1, 'Dissenting': 1, 'Proxmire': 1, 'allege': 1, 'nullity': 1, 'fall-outs': 1, 'seven-week': 1, 'Probable': 1, 'rearmed': 1, 'Smoldering': 1, 'nonpayment': 1, "amendment's": 1, 'Session': 1, 'Adherence': 1, 'Statute': 1, 'self-judging': 1, 'home-bound': 1, 'Flushing-Main': 1, 'tens': 1, 'Seventy-fourth': 1, 'IND': 1, 'BMT': 1, 'Thirty-ninth': 1, 'Fifty-ninth': 1, 'saver': 1, 'automate': 1, 'dialing': 1, 'person-to-person': 1, 'Government-blessed': 1, 'Fair-priced': 1, 'government-controlled': 1, 'Pilgrim': 1, 'Hazel': 1, 'donates': 1, '12-passenger': 1, 'Southfield': 1, '45-passenger': 1, '9-1/2': 1, "Miriani's": 1, 'Mayor-elect': 1, 'DPW': 1, 'litterbug': 1, 'littering': 1, 'Drunken': 1, 'weeded': 1, 'Educate': 1, 'Trumbull': 1, 'Rude': 1, 'impudence': 1, 'hard-sell': 1, 'Dunes': 1, 'hogging': 1, 'simpleton': 1, 'simplicitude': 1, 'demage': 1, 'Fortress': 1, 'Cheddi': 1, 'gooey': 1, 'Intelligent': 1, 'Belated': 1, 'thankless': 1, 'atone': 1, 'tardy': 1, 'Pakistani': 1, 'camel': 1, 'Bashir': 1, 'Ahmad': 1, 'insignificances': 1, 'P.S.': 1, 'ferries': 1, 'crossings': 1, 'Widen': 1, 'Replace': 1, 'Totalitarianism': 1, 'Feeding': 1, 'Prohibited': 1, 'tentacle': 1, 'octopus': 1, 'Starlings': 1, 'blackbirds': 1, 'to-the-death': 1, 'subversives': 1, 'Doe': 1, 'undetected': 1, 'chimes': 1, 'discontinue': 1, 'Abide': 1, 'stand-ups': 1, 'bemoan': 1, 'Ashamed': 1, 'soft-heartedness': 1, 'soft-headed': 1, 'Disputes': 1, 'B-52s': 1, '20-megaton': 1, 'hue': 1, 'counter-escalation': 1, '100-megaton': 1, '200-megaton': 1, 'neutron': 1, 'McCone': 1, 'lob': 1, 'miscarried': 1, 'sputnik': 1, 'statesmanlike': 1, 'paeans': 1, 'publicists': 1, 'Berliners': 1, 'migrating': 1, '2,200,000': 1, '12.8': 1, '1,900': 1, 'counterbalanced': 1, 'half-city': 1, 'Arnold-Foster': 1, "Employers'": 1, 'resilience': 1, 'reunite': 1, 'Tanks': 1, '367': 1, 'Haestier': 1, 'disinterred': 1, 'Tyburn': 1, 'Whitehall': 1, 'Macmillan': 1, 'seventy-eight': 1, 'morticians': 1, 'musing': 1, 'exhumations': 1, 'rehabilitations': 1, 'dispossession': 1, 'Mongi': 1, 'Boland': 1, 'waylaid': 1, 'in-fighting': 1, "secretaries'": 1, 'augurs': 1, 'unshakable': 1, 'Weltanschauung': 1, 'compromises': 1, 'troika': 1, 'pessimists': 1, 'staple': 1, 'mentalities': 1, 'Salsich': 1, 'Engh': 1, '372': 1, 'vigilantism': 1, 'paramilitary': 1, 'Foley': 1, 'commando-trained': 1, 'Heavily': 1, 'fast-moving': 1, "minute's": 1, 'Snook': 1, 'launcher': 1, 'bouffe': 1, 'idol-worship': 1, 'heathenish': 1, 'motor-car': 1, 'satiate': 1, 'blood-lust': 1, 'fatality': 1, 'meat-wagon': 1, 'Centralia': 1, 'grandstand': 1, "Rogues'": 1, 'processional': 1, 'symbolical': 1, 'grinds': 1, 'yon': 1, 'miniscule': 1, 'Home-keeping': 1, 'disreputable': 1, 'Socinianism': 1, 'tenacious': 1, 'Hardshell': 1, 'Tarheelia': 1, "Ruark's": 1, "gallivantin'": 1, 'hecatomb': 1, 'UK': 1, 'inveigh': 1, 'Shock': 1, 'above-ground': 1, 'Seaborg': 1, 'abstain': 1, "science's": 1, 'worst-marked': 1, 'tricky': 1, 'hedged': 1, 'Linus': 1, 'biologic': 1, 'plasm': 1, 'Long-lived': 1, 'carbon-14': 1, 'neonatal': 1, 'stillbirths': 1, 'radiation-produced': 1, "Pauling's": 1, 'agreed-on': 1, 'excusable': 1, "McCone's": 1, 'Lauritsen': 1, 'shies': 1, "AEC's": 1, "Commission's": 1, 'nastier': 1, 'bureaucrat': 1, 'halcyon': 1, 'footwork': 1, 'three-power': 1, 'moratorium': 1, 'Resuming': 1, "'50's": 1, 'unilaterally': 1, 'domestically': 1, 'cessation': 1, 'cogently': 1, 'sufficiency': 1, 'brutalized': 1, 'deceiving': 1, 'glossed': 1, 'ecumenicists': 1, 'Pontiff': 1, 'revivified': 1, 'Cicognani': 1, 'Augustin': 1, 'Secretariate': 1, 'omnipotence': 1, 'booby-trap': 1, 'Eisenhhower': 1, 'Anti-recession': 1, 'intransigents': 1, 'battle-cry': 1, 'thirty-fourth': 1, 'discussant': 1, 'Sessions': 1, 'Policy': 1, 'Trends': 1, 'Judgment': 1, 'Aristotelean-Thomistic': 1, 'reassert': 1, 'C.A.I.P.': 1, 'give-and-take': 1, 'hypnotized': 1, "septuagenarian's": 1, 'irredentism': 1, 'Kai-shek': 1, 'bloke': 1, "Duke's": 1, 'Duchess': 1, 'Taipei': 1, 'smarted': 1, 'translator': 1, 'crucially': 1, '60-1': 1, '6-1': 1, '450,000': 1, 'Morale': 1, 'Formosan': 1, 'extirpated': 1, 'admirals': 1, 'Leninism-Marxism': 1, 'Exegete': 1, 'indigent': 1, 'down-and-out': 1, 'semi-independent': 1, 'extirpating': 1, 'idiocies': 1, 'vouchsafes': 1, 'jocularly': 1, 'planeload': 1, 'indecisiveness': 1, 'strutting': 1, 'self-deceiving': 1, 'too-naked': 1, 'truth-revealing': 1, 'Hungary-Suez': 1, 'temporally': 1, 'Tshombe-Gizenga-Goa-Ghana': 1, 'Gigenza': 1, 'Moscow-allied': 1, 'FLN': 1, 'pro-Europe': 1, '$133': 1, 'Kwame': 1, 'supinely': 1, 'bleating': 1, "Nehru's": 1, 'five-hundred-year-old': 1, 'uni-directional': 1, 'Goa': 1, "Broadway's": 1, 'Agee': 1, 'Hersey': 1, 'Advise': 1, 'Consent': 1, 'mountainously': 1, 'Face': 1, 'Boulle': 1, "Williams'": 1, "Laurents'": 1, 'Shelagh': 1, 'Anouilh': 1, 'Hostage': 1, 'Brendan': 1, 'Behan': 1, 'Camelot': 1, 'Tenderloin': 1, 'Wildcat': 1, 'charmingly': 1, 'Irma': 1, 'Douce': 1, 'farces': 1, 'Yum-Yum': 1, "Critic's": 1, 'reconverting': 1, 'Lili': 1, 'Originals': 1, 'Diary': 1, 'Fledermaus': 1, 'Oklahoma!': 1, 'Critic': 1, 'Adaptations': 1, 'Off-Broadway': 1, 'Laudably': 1, "Hock's": 1, 'Borak': 1, 'playwrights': 1, 'Nightclubs': 1, 'inpost': 1, '52nd': 1, 'boites': 1, 'hand-painted': 1, 'Customers': 1, 'overeager': 1, 'shirt-sleeved': 1, '2/4': 1, '4/4': 1, 'violins': 1, 'oud': 1, 'lute': 1, 'darbuka': 1, 'treelike': 1, 'roemer': 1, 'def': 1, 'prim': 1, 'Continuum': 1, 'Variety': 1, 'glides': 1, 'migrates': 1, 'Shifte': 1, 'Telli': 1, 'Karshilama': 1, 'striptease': 1, 'bombardment': 1, "dancers'": 1, 'mid-shimmy': 1, 'Semra': 1, 'roadhouse': 1, 'black-bearded': 1, 'Murat': 1, 'Somay': 1, 'haflis': 1, 'Syrians': 1, 'Jemela': 1, 'Gerby': 1, 'waist-length': 1, 'patrician': 1, 'glimmering': 1, 'Adamo': 1, "Manhattan's": 1, 'Leila': 1, 'Malia': 1, 'Persianesque': 1, 'miniatures': 1, 'cascades': 1, 'Gloria': 1, 'Ziraldo': 1, 'circa': 1, 'handkerchiefs': 1, 'Oskar': 1, 'Kokoschka': 1, 'half-forgotten': 1, 'Egon': 1, "critics'": 1, 'Landau': 1, 'knobby-knuckled': 1, 'foreshortened': 1, 'boldest': 1, 'stationmaster': 1, 'drowsy': 1, 'Danubian': 1, 'Tulln': 1, 'schoolwork': 1, 'defecated': 1, 'impressionists': 1, 'mosaic-like': 1, 'Gustav': 1, 'Klimt': 1, 'erotica': 1, 'hand-me-down': 1, 'collars': 1, 'scrounging': 1, "Vienna's": 1, 'Drafted': 1, 'wangled': 1, 'billet': 1, 'moneymaking': 1, 'Melancholy': 1, 'morbid-minded': 1, 'self-portraits': 1, 'half-dressed': 1, 'tauntingly': 1, 'blueprint': 1, 'apotheosis': 1, 'consecration': 1, 'wage-earning': 1, 'thrives': 1, 'old-age': 1, 'skate': 1, 'obsessive': 1, 'Malenkov': 1, 'Kaganovich': 1, 'eighty-year-old': 1, 'Voroshilov': 1, 'non-stop': 1, 'Mikoyan': 1, 'whipping-boys': 1, "En-lai's": 1, 'epoch-making': 1, 'En-lai': 1, 'Marxist-Leninist': 1, 'dictatorial': 1, 'undemocratic': 1, 'abusive': 1, 'Chinese-Soviet': 1, 'Hoxa': 1, 'bombastic': 1, 'prophecies': 1, 'Russo-American': 1, 'Lobby': 1, 'Malinovsky': 1, 'exalting': 1, 'canceling': 1, 'peace-treaty': 1, 'liberating': 1, 'crusading': 1, 'infernally': 1, 'anti-Communists': 1, 'fog-enshrouded': 1, 'life-and-death': 1, 'Bolivar': 1, 'Norborne': 1, 'M-1': 1, 'Collinsville': 1, 'M-4': 1, 'Undismayed': 1, "Lauchli's": 1, '6:30': 1, 'deactivated': 1, 'creek-filled': 1, 'rapid-fire': 1, 'Kirk': 1, "teachers'": 1, "Yale's": 1, 'underpaid': 1, "sellers'": 1, 'overpaid': 1, 'shoddy': 1, 'Loss': 1, 'across-the-board': 1, "Burnham's": 1, 'amalgamated': 1, 'self-rule': 1, 'I.M.F.': 1, 'Worlders': 1, "Times'": 1, 'worn-out': 1, 'isolationism': 1, 'Mises': 1, 'Create': 1, 'debt-free': 1, 'Constitutional': 1, 'JNR': 1, 'ed.': 1, 'Peiping': 1, 'anticipating': 1, 'pegged': 1, 'Devens': 1, 'PFC': 1, 'draftee': 1, 'disruptions': 1, 'sidelight': 1, 'deferments': 1, 'brigades': 1, 'Mercenary': 1, 'confuses': 1, "1770's": 1, 'Escadrille': 1, "Chennault's": 1, 'Tigers': 1, 'Vidal': 1, "Textile's": 1, 'Pitney-Bowes': 1, 'Objects': 1, 'Suggest': 1, 'twenty-first-century': 1, 'stodgy': 1, "Postmaster's": 1, 'Jakarta': 1, 'Indonesian': 1, 'insurgents': 1, 'Dienbienphu': 1, 'Flier': 1, 'Loses': 1, 'Upholds': 1, "Pope's": 1, 'Sentence': 1, 'Celebes': 1, 'Moluccas': 1, 'Regency': 1, 'dust-settling': 1, 'Antoinette': 1, 'Bouvier': 1, 'light-hearted': 1, 'Conservative': 1, 'Truly': 1, 'bogey-symbol': 1, 'Monarque': 1, 'deification': 1, 'roi': 1, 'gouverne': 1, 'lui': 1, 'meme': 1, "Tower's": 1, "N.C.'s": 1, 'Schweitzers': 1, 'Dooleys': 1, 'Reprints': 1, 'Improper': 1, 'Bostonian': 1, "Lucas's": 1, "SR's": 1, 'Amory': 1, 'Messing': 1, 'Facts': 1, 'Markel': 1, 'liabilities': 1, 'Brinkley': 1, 're-runs': 1, 're-run': 1, "stations'": 1, "networks'": 1, 'Webb': 1, 'instructors': 1, 'refresher': 1, 'post-mortem': 1, 'Watson-Watt': 1, 'gist': 1, 'incautious': 1, 'prepublication': 1, 'perverted': 1, 'impressionistic': 1, 'Lindemanns': 1, 'Tizard': 1, 'dissembling': 1, 'aura': 1, 'demon-ridden': 1, 'surpass': 1, 'shredding': 1, 'flounders': 1, 'alchemy': 1, "Schumann's": 1, 'Manfred': 1, 'Byronic': 1, "Hindemith's": 1, 'joust': 1, 'transluscent': 1, 'astringent': 1, 'coarsened': 1, 'Wieland': 1, 'Wolfgang': 1, 'Sawallisch': 1, 'Sawalisch': 1, 'Knappertsbusch': 1, 'Meistersinger': 1, 'Rudolf': 1, 'Lotte': 1, 'Lehmann': 1, 'Bumbry': 1, 'Bolshoi': 1, 'Leningrad-Kirov': 1, 'Maryinsky': 1, 'booker': 1, 'balletomane': 1, 'Queried': 1, 'bookers': 1, 'bookings': 1, 'reopen': 1, 'Mondays': 1, "Cibula's": 1, '828': 1, 'Abstractions': 1, 'semi-abstractions': 1, 'McNear': 1, 'Leni': 1, 'Bauer-Ecsy': 1, 'Zeffirelli': 1, 'scribbled': 1, 'Lark': 1, 'stockbroker': 1, 'countryman': 1, 'boisterous': 1, 'chronicled': 1, "Bates'": 1, 'comedie': 1, 'humaine': 1, 'Pinkie': 1, 'atrociously': 1, 'junior-grade': 1, 'Splendor': 1, 'sorcery': 1, 'stained-glass': 1, 'unpremeditated': 1, 'patinas': 1, 'table-tennis': 1, 'mendacious': 1, 'manse': 1, 'capital-gains': 1, "fox's": 1, "Larkin's": 1, 'Oneupmanship': 1, 'Larkins': 1, 'restock': 1, 'poaches': 1, 'nourishment': 1, 'potting': 1, 'dines': 1, "Cervantes'": 1, 'Sixty-eighth': 1, 'Playhouses': 1, 'visualization': 1, 'tragi-comic': 1, 'abbreviated': 1, 'affectingly': 1, 'Nevsky': 1, 'Terrible': 1, 'addle-brained': 1, 'knight-errantry': 1, 'Cervantes': 1, 'deep-eyed': 1, 'crackpot': 1, 'Grigory': 1, 'Kozintsev': 1, 'Tolubeyev': 1, 'don': 1, 'buffoons': 1, 'facetiously': 1, "duke's": 1, 'thenceforth': 1, 'windmill': 1, 'wonderfulness': 1, 'costumed': 1, 'ten-minute': 1, 'Television': 1, 'Chicago-style': 1, 'NBC-TV': 1, 'slotted': 1, 'All-Star': 1, "Hampton's": 1, 'free-wheeling': 1, 'rudderless': 1, 'luminaries': 1, 'Cameras': 1, "soloists'": 1, 'faulted': 1, 'in-person': 1, 'Teagarden': 1, 'Krupa': 1, 'Cyr': 1, 'Lil': 1, 'Blossom': 1, 'Seeley': 1, "script's": 1, 'zoomed': 1, 'closeup': 1, "evening's": 1, 'Bix': 1, 'Beiderbecke': 1, 'trumpeter': 1, 'inquisitive': 1, 'not-quite-perfect': 1, "network's": 1, "Donizetti's": 1, 'salvos': 1, 'applause-happy': 1, 'operagoers': 1, 'sopranos': 1, 'Nervousness': 1, 'blemishes': 1, 'Technically': 1, 'spell-binding': 1, 'Silvio': 1, 'Varviso': 1, "singers'": 1, 'Edgardo': 1, 'Tenda': 1, 'Sonambula': 1, 'Ping-pong': 1, 'SP-44001': 1, 'Directionality': 1, 'monaural': 1, 'microphoning': 1, 'Drums': 1, 'xylophones': 1, 'castanets': 1, 'SP-44006': 1, "Keating's": 1, 'Kombo': 1, 'Moods': 1, 'SP-44005': 1, 'SP-44002': 1, 'Melody': 1, 'Pianos': 1, 'SP-44007': 1, 'gratifyingly': 1, 'masking': 1, 'paraphernalia': 1, "set's": 1, 'Murrow': 1, 'unauthentic': 1, 'storylines': 1, 'future-day': 1, 'Macaulay': 1, 'Hungarian-born': 1, 'Jenni': 1, 'acoustics': 1, 'misgauged': 1, "Jenni's": 1, 'overdriving': 1, "Mozart's": 1, '526': 1, "Brahm's": 1, 'eschews': 1, 'vibrato': 1, 'Violin': 1, "work's": 1, 'melodically': 1, 'capricious': 1, 'Ravel-like': 1, 'wornout': 1, 'Dohnanyi': 1, 'Hubay': 1, 'Paganini': 1, 'Sarasate': 1, 'Saint-Saens': 1, 'Greek-born': 1, 'virtuosity': 1, 'deep-sounding': 1, 'filagree': 1, 'Kabalevsky': 1, 'Preludes': 1, 'songful': 1, 'bravura': 1, "Xydis'": 1, "Mendelssohn's": 1, 'Serieuses': 1, "Haydn's": 1, "Chopin's": 1, 'abridged': 1, 'counter-moves': 1, 'ill-prepared': 1, 'outmaneuvered': 1, 'outfought': 1, 'outgeneraled': 1, 'Gurkhas': 1, 'Forgotten': 1, 'well-written': 1, 'praises': 1, 'self-critical': 1, 'Remaking': 1, 'noncombatant': 1, 'Brass': 1, 'airdrops': 1, 'airstrips': 1, 'Expected': 1, 'depresses': 1, '495': 1, 'mutilation': 1, 'uncomplainingly': 1, 'buckaroos': 1, 'loped': 1, 'corralling': 1, 'high-minded': 1, "choir's": 1, 'Geroge': 1, 'motets': 1, "Pergolesi's": 1, 'Stabat': 1, 'Mater': 1, 'Ceremonial': 1, 'Carols': 1, 'well-balanced': 1, 'untrained': 1, 'shrillness': 1, 'bleat': 1, 'prodigies': 1, 'Tempos': 1, 'Istvan': 1, 'Szelenyi': 1, 'stylish': 1, 'motet': 1, 'enchantingly': 1, 'Schockler': 1, 'Mazowsze': 1, 'three-week': 1, 'nonstop': 1, 'gleaned': 1, 'Mira': 1, 'Ziminska-Sygietynska': 1, 'flirtatious': 1, 'Krakowiak': 1, 'Witold': 1, 'Zapala': 1, "Moniuszko's": 1, 'Strasny': 1, "Dwor'": 1, 'polonaise': 1, 'Tatras': 1, 'on-stage': 1, "Kerr's": 1, 'arty': 1, 'hires': 1, 'sweetheart-secretary': 1, 'Heffernan': 1, 'head-in-the-clouds': 1, "Providence's": 1, 'Century-Fox': 1, 'Coletta': 1, 'angriest': 1, 'embittered': 1, 'scoundrel': 1, 'finger-tips': 1, 'talky': 1, 'Groom': 1, 'Lawless': 1, 'scratchy': 1, 'Hildy': 1, 'Weissman': 1, 'Hewett': 1, 'Conlow': 1, 'Matlowsky': 1, 'tantalizingly': 1, 'ambling': 1, "Berman's": 1, 'hamming': 1, "Charley's": 1, 'Ashmolean': 1, 'Marching': 1, 'sultry': 1, 'fantasia': 1, 'monologist': 1, 'Sparrow-size': 1, 'Melisande': 1, 'Congdon': 1, "Knill's": 1, "Tahse's": 1, 'Weidman': 1, 'Bock': 1, 'Harnick': 1, 'Gennaro': 1, 'Eckart': 1, 'Performed': 1, 'Bosley': 1, 'distraught': 1, 'Lipson': 1, "Shirley's": 1, 'Thea': 1, 'Zeme': 1, 'fugual': 1, 'Poker': 1, 'tuneful': 1, 'ward-heelers': 1, 'Tin': 1, 'penthouse': 1, "LaGuardia's": 1, 'multi-lingual': 1, 'folk-dance': 1, 'Tahse': 1, 'stager': 1, 'road-show': 1, 'obtrusiveness': 1, "Loew's": 1, 'MGM': 1, 'Pasternak': 1, 'Levin': 1, 'screenplay': 1, 'Yalies': 1, 'disqualify': 1, 'collegians': 1, 'vexes': 1, 'hilariously': 1, 'mermaid': 1, 'believable': 1, "Prentiss'": 1, 'unstilted': 1, 'Gorshin': 1, 'Mimieux': 1, 'despoilers': 1, 'fracases': 1, 'open-minded': 1, 'editorship': 1, 'Kronenberger': 1, 'elegantly': 1, 'unpatronizing': 1, 'magnanimity': 1, 'differing': 1, 'opprobrium': 1, "Santayana's": 1, 'imperturbable': 1, 'Glorious': 1, 'polemics': 1, 'polemic': 1, 'impersonally': 1, 'primitive-eclogue': 1, 'graffiti': 1, 'word-games': 1, 'insomniacs': 1, 'hospitalized': 1, "P's": 1, 'palindromes': 1, 'paraphrases': 1, 'parodies': 1, 'Tyranny': 1, 'Trivia': 1, 'hairshirt': 1, 'asceticism': 1, 'monographs': 1, 'Countrymen': 1, 'Lend': 1, 'Ear-Muffs': 1, 'Phrase': 1, 'Vocabularianism': 1, 'curative': 1, 'potions': 1, 'malapropism': 1, 'gobbledygook': 1, 'ballyhooey': 1, 'Kooks': 1, 'Crumble': 1, 'announcers': 1, 'homogenize': 1, 'Watchers': 1, 'semi-serious': 1, 'little-known': 1, 'gazer': 1, 'shadings': 1, 'epigrammatic': 1, 'glean': 1, 'nectareous': 1, 'bang-sashes': 1, 'surrealist': 1, 'Dali': 1, 'viscera': 1, 'protoplasmic': 1, 'puzzler': 1, 'shams': 1, 'self-deceptions': 1, 'Blimp': 1, 'TUC': 1, 'wield': 1, 'Jovian': 1, 'stupidities': 1, 'capably': 1, 'Hillary': 1, 'Tensing': 1, 'Matsu': 1, 'tyrannical': 1, 'caricaturist': 1, 'mortals': 1, 'captions': 1, 'lebensraum': 1, "Burman's": 1, 'despots': 1, 'Raccoon': 1, 'vegetarian': 1, 'extermination': 1, 'Remus': 1, 'Tsarism': 1, 'Scrupulous': 1, 'uncommonly': 1, 'sweepingly': 1, 'appeasing': 1, 'Alger': 1, 'Hiss': 1, 'policed': 1, 'unshakeable': 1, 'puerile': 1, 'instalments': 1, 'Tsar': 1, 'Plebian': 1, 'plebeian': 1, 'autocrats': 1, 'collaborator': 1, 'moustache': 1, 'truant': 1, 'tirades': 1, 'amorality': 1, 'Shrewd': 1, 'dissimulation': 1, 'Potsdam': 1, 'misplacements': 1, 'riddle': 1, 'Soviet-Western': 1, 'fist-fighting': 1, 'romancing': 1, "McEnroe's": 1, "Walsh's": 1, 'Roe': 1, 'bullying': 1, "Enright's": 1, 'mettlesome': 1, 'knockdown': 1, 'Mikeen': 1, 'soft-shoe': 1, 'improviser': 1, 'matchmaking': 1, 'Lund': 1, 'impersonates': 1, 'graced': 1, 'ex-prize': 1, 'Fagan': 1, 'unlamented': 1, 'biddies': 1, 'Carney': 1, 'Sibly': 1, 'Bowan': 1, 'Bosco': 1, 'roars': 1, 'Brigadoon': 1, 'catchy': 1, 'Sez': 1, 'Toast': 1, 'Bride': 1, 'Nordstrom': 1, 'Toomey': 1, 'lasses': 1, "Cole's": 1, 'kilts': 1, 'Rouben': 1, 'Ter-Arutunian': 1, 'scrim': 1, 'Cole': 1, 'theatergoers': 1, 'joyously': 1, 'heart-warming': 1, 'Marcel': 1, 'Marseilles': 1, 'Raimu': 1, 'askance': 1, 'English-dialogue': 1, 'Pagnol': 1, 'Franck': 1, 'Psyche': 1, 'sweet-sounding': 1, 'Fortunate': 1, 'over-emphasize': 1, 'Zadel': 1, "Skolovsky's": 1, 'tonally': 1, 'non-sentimental': 1, 'ultra-efficient': 1, 'non-romantic': 1, 'nuance': 1, "Lopatnikoff's": 1, 'Gioconda': 1, "singer's": 1, "fan's": 1, 'Ponchielli': 1, 'creaks': 1, 'pre-historic': 1, 'goodies': 1, 'Barnaba': 1, 'Anselmo': 1, 'Colzani': 1, 'legato': 1, 'Regina': 1, 'Cesare': 1, 'Mignon': 1, 'Cieca': 1, 'Enzo': 1, 'holdovers': 1, 'Fausto': 1, 'Cleva': 1, 'Melodious': 1, 'madrigaling': 1, 'Consort': 1, 'Madrigal': 1, 'Masterpieces': 1, '609': 1, 'BGS': 1, '5031': 1, 'basso': 1, 'continuo': 1, 'Cromwellian': 1, 'glees': 1, 'Latter-day': 1, 'Tomkins': 1, "Jannequin's": 1, 'tarantara': 1, 'rum-tum-tum': 1, 'boom-boom-boom': 1, 'Lassus': 1, 'Marenzio': 1, 'Gesualdo': 1, 'musicality': 1, 'look-see': 1, 'Texts': 1, 'Elegance': 1, 'dancelike': 1, 'nonmusical': 1, 'Editions': 1, 'boite': 1, 'Sonates': 1, 'Royaux': 1, 'LD056': 1, 'LD060': 1, 'gemlike': 1, 'nos.': 1, 'Sultane': 1, "L'Astree": 1, "L'Imperiale": 1, 'lesser-known': 1, 'Siecle': 1, '060': 1, 'Jean-Marie': 1, 'LeClair': 1, 'Beismortier': 1, 'Corrette': 1, 'Mondonville': 1, 'Steinkerque': 1, 'mid-century': 1, 'elegances': 1, 'Sextuor': 1, "L'orchestre": 1, 'Chambre': 1, 'Menet': 1, '046': 1, 'harpsichord': 1, 'Maitres': 1, 'Allemands': 1, '17e': 1, 'Siecles': 1, 'Pachelbel': 1, 'Buxtehude': 1, 'Rosenmueller': 1, 'Telemann': 1, 'Instrumental': 1, 'Sylvie': 1, 'Spycket': 1, '035': 1, 'Rococo': 1, 'Globe': 1, 'Sammartini': 1, 'Comenico': 1, 'Dragonetti': 1, 'Janitsch': 1, 'Anabel': 1, 'Brieff': 1, 'flutist': 1, 'oboist': 1, 'harpsichordist': 1, 'vacuous': 1, 'dissonances': 1, 'Boulez': 1, 'Ellie': 1, 'folksongs': 1, 'Meets': 1, 'Selections': 1, 'duets': 1, 'Dvorak': 1, 'Canteloube': 1, 'pleasingly': 1, 'Neglected': 1, 'one-act': 1, 'uneducated': 1, 'newlywed': 1, 'Boismassif': 1, 'librettists': 1, 'salon': 1, 'neo-classicism': 1, 'mawkish': 1, 'Saunders': 1, 'Benita': 1, 'Valente': 1, 'Parella': 1, 'Darius': 1, 'Milhaud': 1, 'Sailor': 1, 'Guignol': 1, "Milhaud's": 1, 'churns': 1, 'Sat': 1, '5,500': 1, 'way-out': 1, 'jazzmen': 1, 'Cares': 1, "Puttin'": 1, 'Ritz': 1, 'showmen': 1, "Lindsey's": 1, '30-piece': 1, 'short-skirted': 1, 'coiffure': 1, 'unbidden': 1, 'unsheathe': 1, 'mixers': 1, 'trundling': 1, 'over-arranged': 1, 'Shine': 1, 'shatteringly': 1, 'picayune': 1, 'Rockabye': 1, 'encores': 1, '6:35': 1, 'nigh': 1, 'peals': 1, 'aggregation': 1, 'Basie': 1, 'aggregations': 1, "Brookmeyer's": 1, "Django's": 1, 'Castle': 1, 'Carrots': 1, 'Mulligan': 1, 'Messengers': 1, 'Budieshein': 1, 'Warner': 1, 'unenviable': 1, 'late-comers': 1, 'accompanists': 1, 'Minns': 1, 'oldies': 1, 'Hard-Hearted': 1, 'Vamp': 1, 'frosted': 1, "Getz's": 1, 'Baubles': 1, 'Bangles': 1, 'Beads': 1, 'ballards': 1, 'Getz': 1, 'categorize': 1, 'scintillating': 1, 'restating': 1, 'improvising': 1, 'vibes': 1, "Shearing's": 1, 'bongo': 1, 'Mambo': 1, 'easy-going': 1, "Newport's": 1, 'Divided': 1, 'narrated': 1, 'Monterey': 1, "Hendricks'": 1, 'Tracing': 1, 'Surprise': 1, 'preacher-singer': 1, 'Gospel-singer': 1, "auctioneer's": 1, "field-hands'": 1, 'batterie': 1, 'Demonstrating': 1, 'Babatunde': 1, 'Olatunji': 1, 'konga': 1, 'Poindexter': 1, 'Witherspoon': 1, 'Trio': 1, 'Pianists': 1, 'Emil': 1, 'Rhythmic': 1, 'Chorale': 1, 'Shanties': 1, 'chanter': 1, 'chantier': 1, 'boat-yard': 1, 'Ettore': 1, 'Bastianini': 1, 'Hultberg': 1, 'executing': 1, 'modern-dance': 1, 'slavish': 1, 'phrasings': 1, 'spoof': 1, 'Tamiris-Daniel': 1, 'Choreographed': 1, "Nagrin's": 1, 'Indeterminate': 1, 'sprightly': 1, 'Toccata': 1, 'underplayed': 1, "rock'n'roll": 1, 'Tetrameron': 1, 'seven-concert': 1, '2,800': 1, 'Orchestral': 1, 'sonorities': 1, 'filigree': 1, 'Rondo': 1, 'accompanist': 1, 'Leonore': 1, 'responsively': 1, 'Oistrakh': 1, "Gershwins'": 1, 'Deemed': 1, 'Crush': 1, 'Treasure': 1, 'Gershwins': 1, "Rodgers'": 1, 'Bagley': 1, 'McWhinney': 1, 'Revisited': 1, '505': 1, "Loudon's": 1, 'Roxy': 1, 'Blush': 1, 'quintet': 1, 'Succeed': 1, 'Trying': 1, "Loesser's": 1, 'Vallee': 1, 'anthems': 1, 'yip': 1, 'lyriist': 1, 'sparkles': 1, 'Resourceful': 1, 'full-bodied': 1, 'Weede': 1, 'Mimi': 1, 'Benzell': 1, "Herman's": 1, 'Picon': 1, 'tunefulness': 1, 'WAO': 1, 'SWAO': 1, 'cruise': 1, 'cut-to-a-familiar-pattern': 1, 'Stritch': 1, 'huskiness': 1, 'Cranes': 1, 'Ballad': 1, 'Soldier': 1, 'block-buster': 1, 'Ended': 1, 'Artkino': 1, 'Cameo': 1, 'Gorky': 1, 'middle-sized': 1, 'compassionately': 1, 'smitten': 1, "conflict's": 1, 'Tenderly': 1, 'rivets': 1, 'Titanic': 1, 'discord': 1, 'dilettante': 1, 'Yakov': 1, "Segal's": 1, 'stirringly': 1, 'high-up': 1, 'cobblestone': 1, 'A5': 1, 'Raine': 1, 'long-vanished': 1, 'sea-village': 1, 'Skye': 1, 'single-lane': 1, 'stags': 1, 'Greylag': 1, 'swans': 1, 'porpoises': 1, 'beach-drift': 1, 'Tigris': 1, "cub's": 1, 'unsuspecting': 1, 'needle-sharp': 1, 'Systematically': 1, 'elan': 1, 'stranding': 1, 'seventy-foot': 1, 'orb': 1, 'imponderable': 1, 'fealty': 1, 'pickaxe': 1, 'Idal': 1, 'rollicking': 1, 'enchant': 1, 'reinterpreted': 1, 'well-received': 1, 'reinterpret': 1, 'humanize': 1, 'Fernand': 1, 'wife-to-be': 1, 'Wisely': 1, "benefactor's": 1, 'zealot': 1, 'buffoon': 1, 'lustful': 1, 'stares': 1, 'bespeak': 1, 'heavenward': 1, 'perfunctory': 1, 'slyness': 1, 'life-contracts': 1, 'Bourgeois': 1, 'Imaginary': 1, 'Invalid': 1, 'Tricks': 1, 'trickster': 1, "Hirsch's": 1, 'revelling': 1, 'Baptiste': 1, "RCA-Victor's": 1, 'Stephane': 1, 'Grappelly': 1, 'Grappely': 1, 'Honeysuckle': 1, 'Bricktop': 1, 'Menilmontant': 1, 'trombonist': 1, 'two-record': 1, 'clarinet': 1, 'Haywood': 1, 'Wellman': 1, 'Braud': 1, 'Careless': 1, 'Weary': 1, 'Original': 1, 'One-Step': 1, 'Parade': 1, 'Tootsie': 1, 'Ramble': 1, 'Bas': 1, 'Mood': 1, 'Indigo': 1, 'Bugle': 1, 'music-making': 1, 'faze': 1, 'mannered': 1, "Creston's": 1, "Schuman's": 1, 'Triptych': 1, 'Wallingford': 1, 'Rhythms': 1, '56A': 1, 'Creston': 1, 'Non-Dissonant': 1, 'Schuman': 1, 'Billings': 1, 'potboilers': 1, 'unstuffy': 1, 'Antonini': 1, 'insemination': 1, 'Adultery': 1, "film's": 1, 'low-budget': 1, 'censorial': 1, 'husky-voiced': 1, 'longsuffering': 1, 'sues': 1, 'adulterous': 1, 'glumly': 1, 'Chaffey': 1, 'Basil': 1, 'Diffring': 1, 'bystander': 1, 'protracted': 1, 'credibility': 1, 'miscellanies': 1, 'diehards': 1, "Gogol's": 1, 'folk-tale': 1, 'Bo': 1, 'Fenster': 1, 'Soloviev-Sedoi': 1, 'Oleg': 1, 'Alexei': 1, 'Zhitkov': 1, 'Lev': 1, 'Korneyev': 1, 'Bayaderka': 1, 'Petipa': 1, 'lovelorn': 1, 'ballerina': 1, 'Ludmilla': 1, 'Alexeyeva': 1, 'Korneyeva': 1, 'Komleva': 1, 'Vikulov': 1, 'unequal': 1, 'stunningly': 1, 'Sokolev': 1, 'Maiden': 1, 'Galina': 1, 'Kekisheva': 1, 'adagios': 1, 'acrobacy': 1, 'Osipenko': 1, 'Chernishev': 1, 'Kornevey': 1, 'cinq': 1, 'Gossiping': 1, 'Flames': 1, 'Xenia': 1, 'Ter-Stepanova': 1, 'Pavlovsky': 1, "Fokine's": 1, 'Cygne': 1, 'Vadim': 1, 'Kalentiev': 1, 'fretting': 1, 'quadrennial': 1, "candidates'": 1, 'in-groups': 1, 'humiliatingly': 1, 'warmed-over': 1, 'crisply': 1, 'mismanaged': 1, 'introspection': 1, 'seeker': 1, 'Landon': 1, 'Calm': 1, 'admires': 1, 'Pressures': 1, 'Nostalgia': 1, '70-year-old': 1, 'Lily': 1, 'rainbow-hued': 1, 'vocalism': 1, "Meyerbeer's": 1, 'besmirch': 1, 'Sharing': 1, "Bizet's": 1, 'outdistancing': 1, 'mushrooming': 1, '19,000,000': 1, '$20,000,000,000': 1, '3,400': 1, 'better-remembered': 1, 'Stations': 1, 'Futhermore': 1, 'WLIB': 1, "WWRL's": 1, 'predominately': 1, 'round-the-clock': 1, 'WWRL': 1, 'Keystone': 1, "System's": 1, 'rhythm-and-blues': 1, 'general-appeal': 1, 'McLendon': 1, 'McLendon-Ebony': 1, 'degrading': 1, 'hooting': 1, 'KSAN': 1, 'Presentation': 1, 'Staged': 1, 'Farr': 1, 'genres': 1, 'syndication': 1, "McSorley's": 1, 'breezy': 1, 'clotheslines': 1, 'Roof': 1, 'Bleeker': 1, 'multifigure': 1, 'vivified': 1, 'Ash-Can': 1, 'Koshare': 1, 'extrovert': 1, '151': 1, 'Supplementing': 1, 'revelatory': 1, 'forgeries': 1, "composer's": 1, 'fluently': 1, 'dynamically': 1, 'arpeggios': 1, 'quasi-recitative': 1, 'Adagio': 1, 'Bagatelles': 1, 'Volker': 1, 'Orchester': 1, 'podium': 1, 'subjectivity': 1, 'Choral': 1, 'raggedness': 1, 'obsequies': 1, "concerto's": 1, 'Richter-Haaser': 1, "burgomaster's": 1, 'intermission': 1, 'sweepings': 1, 'Chorus': 1, 'Gesangverein': 1, 'Rhenish': 1, 'compositional': 1, 'Rundfunk-Sinfonie-Orchester': 1, 'Rundfunkchor': 1, 'gold-filled': 1, 'Missa': 1, 'Solemnis': 1, 'Rival': 1, 'Cosmology': 1, 'Expands': 1, 'expansion-contraction': 1, 'steady-state': 1, 'zooming': 1, 'Protons': 1, 'Fleeting': 1, 'non-scientist': 1, 'hinders': 1, 'bolstering': 1, 'Highly': 1, 'Bryant': 1, 'boorish': 1, 'city-bred': 1, 'cloddishness': 1, 'aesthetics': 1, 'doltish': 1, 'serfs': 1, 'untidiness': 1, 'theatergoer': 1, 'appreciating': 1, 'declamatory': 1, 'brooked': 1, "hifalutin'": 1, 'Skating': 1, 'resourcefully': 1, 'sallies': 1, 'chuckles': 1, 'Dogberry': 1, 'Verges': 1, "masquers'": 1, "Leonato's": 1, 'Arragon': 1, 'insipid': 1, 'Claudio': 1, 'Leonato': 1, 'Friar': 1, 'loudspeaker': 1, 'Nostradamus': 1, 'trapdoors': 1, 'attractively': 1, 'garner': 1, 'dramatical': 1, 'misleads': 1, 'garishness': 1, 'Wustman': 1, '8,500': 1, 'Saturday-night': 1, 'Taras-Tchaikovsky': 1, 'Dollar-Britten': 1, 'Divertimento': 1, 'Dollar-De': 1, 'Banfield': 1, 'Tallchief': 1, 'Bruhn': 1, 'showpiece': 1, 'handsomely': 1, 'incisiveness': 1, 'combatants': 1, 'Sellers': 1, 'Langhorne': 1, 'Shep': 1, 'insinuating': 1, 'stepladders': 1, 'wondrously': 1, 'cat-like': 1, 'sinuousness': 1, 'super-charged': 1, 'formidably': 1, 'luxuriance': 1, 'Sacheverell': 1, 'multimillionaire': 1, 'indigestible': 1, 'overwritten': 1, 'astound': 1, 'contemplative': 1, 'fiesta': 1, 'Torpetius': 1, 'Tropez': 1, 'Bonne': 1, 'Auberge': 1, 'Bernini': 1, 'Tintoretto': 1, "spaniel's": 1, 'lacquered': 1, 'aptness': 1, 'pedimented': 1, 'colonnaded': 1, 'cedar-roofed': 1, 'grey-skied': 1, 'Palladian': 1, 'architectonic': 1, 'shallower': 1, 'listener-supported': 1, 'frequency-modulation': 1, 'aural': 1, 'Reavey': 1, 'guises': 1, 'discursiveness': 1, "listener's": 1, 'reinvigoration': 1, 'archaism': 1, 'bleeps': 1, 'bloops': 1, 'Titled': 1, 'Briefer': 1, 'melange': 1, 'Toch': 1, 'Karlheinz': 1, 'Stockhausen': 1, 'Yardumian': 1, 'Karl-Birger': 1, 'whetted': 1, 'all-too-brief': 1, 'maidens': 1, 'Yurochka': 1, 'hard-to-please': 1, 'come-uppance': 1, 'Polyanka': 1, 'Moldavian': 1, 'Zhok': 1, "Bul'ba": 1, 'Quadrille': 1, 'Kalmuk': 1, 'Tsvetkov': 1, 'Platter': 1, 'betrothal': 1, 'Shepherds': 1, 'Azerbaijan': 1, 'Spectacular': 1, 'Chile': 1, 'tints': 1, 'stabs': 1, 'dulls': 1, 'late-summer': 1, 'pilgrimages': 1, "Quebec's": 1, 'Laurentian': 1, "Ontario's": 1, 'Muskoka': 1, 'Haliburton': 1, 'cavalcades': 1, 'scarlet': 1, 'hardwoods': 1, 'birches': 1, 'Adirondacks': 1, '9N': 1, '23A': 1, 'Alleghenies': 1, 'Poconos': 1, 'Renovo': 1, 'Flaming': 1, 'Appalachians': 1, 'Shenandoah': 1, 'Smokies': 1, "Wisconsin's": 1, 'Vilas': 1, 'Colorama': 1, '29-Oct.': 1, 'Shawano': 1, 'Portage': 1, 'Marquette': 1, 'Arrowhead': 1, 'Ozarks': 1, "Illinois'": 1, 'panoramas': 1, 'Ouray': 1, '22-29': 1, 'Salida': 1, 'Steamboat': 1, 'Aspencade': 1, '25-30': 1, 'Ruidoso': 1, 'Alamogordo': 1, 'Cloudcroft': 1, 'Dak.': 1, 'corniest': 1, 'headlining': 1, 'Stooges': 1, 'Longwood': 1, 'Kennett': 1, 'Del.': 1, 'wilted': 1, 'greenhouses': 1, 'less-indomitable': 1, 'best-seller': 1, "storyteller's": 1, 'Franny': 1, 'Zooey': 1, '25-year-old': 1, 'Althea': 1, 'Urn': 1, 'Virgilia': 1, 'pitilessly': 1, 'Zara': 1, 'novelized': 1, 'Peden': 1, 'Subtitled': 1, "Farmwife's": 1, 'Almanac': 1, 'Hoosier': 1, 'Filipinos': 1, 'troupes': 1, "Leningrad's": 1, 'Bayanihan': 1, '60-city': 1, 'Festivals': 1, 'Sonoma': 1, '22-24': 1, 'cranberries': 1, 'Bandon': 1, 'buckwheat': 1, 'Kingwood': 1, '28-30': 1, 'Iberia': 1, '23-30': 1, 'Boron': 1, "Grant's": 1, 'archery': 1, 'Falmouth': 1, '300th': 1, 'anniversaries': 1, 'Mamaroneck': 1, 'Movies': 1, 'Noon': 1, 'splurge': 1, 'Alain': 1, 'Druid': 1, 'two-timed': 1, 'Scala': 1, 'Tullio': 1, 'Serafin': 1, "Peabody's": 1, 'polyunsaturated': 1, 'hawks': 1, 'neuritis': 1, 'neuralgia': 1, 'head-cold': 1, 'mungus': 1, 'pleasure-boat': 1, 'Waterways': 1, 'yachtsmen': 1, 'hungrier': 1, 'overland': 1, 'Midwesterners': 1, 'flotillas': 1, 'boatsmen': 1, 'indomitable': 1, 'buoys': 1, 'mapped': 1, 'scooting': 1, 'docks': 1, 'ramps': 1, 'Playa': 1, 'Ventura': 1, 'Oceanside': 1, 'sandbars': 1, 'small-boat': 1, 'Salton': 1, 'once-dry': 1, 'sinkhole': 1, '235': 1, 'racers': 1, '5-mile': 1, 'speedboat': 1, 'sailboat': 1, 'becalmed': 1, 'regattas': 1, 'Tiburon': 1, 'Hurricane': 1, 'Galveston-Port': 1, 'Aransas': 1, 'Isabel': 1, 'Sailing': 1, 'northers': 1, 'Jacinto': 1, 'tarpon': 1, 'Barataria': 1, 'Isle': 1, 'yachters': 1, 'Pascagoula': 1, 'Apalachicola': 1, 'stinkpotters': 1, 'McKellar': 1, 'Arkabutla': 1, '25-mile-square': 1, 'squalls': 1, 'year-long': 1, 'Marinas': 1, 'Creole': 1, 'tva': 1, 'twisty': 1, 'loops': 1, '48,500': 1, 'bruited': 1, 'Alfonso': 1, 'Miglia': 1, 'unformed': 1, 'Unhappily': 1, 'knife-edge': 1, 'regimen': 1, 'sanatorium': 1, 'precedes': 1, 'junior-philosophical': 1, 'ramblings': 1, 'explicitness': 1, 'reportage': 1, 'Hazards': 1, 'actuarially': 1, 'Race-drivers': 1, 'disclaimer': 1, 'case-hardened': 1, 'Vendome': 1, 'sneering': 1, 'Bentleys': 1, 'Rolls-Royces': 1, 'plainest': 1, 'death-wish': 1, "shan't": 1, 'Taruffi': 1, 'two-lane': 1, 'algebraic': 1, 'funneled': 1, 'Briton': 1, 'virtuosi': 1, 'ultra-fast': 1, 'road-circuit': 1, 'submariners': 1, 'machine-masters': 1, 'fatalists': 1, 'leaderless': 1, 'communize': 1, "Jones'": 1, 'pub': 1, 'disunited': 1, 'undedicated': 1, 'Alamein': 1, 'blunderings': 1, 'mincing': 1, 'uncourageous': 1, 'Labour': 1, 'wartorn': 1, 'nervousness': 1, 'Communist-inspired': 1, 'Summit': 1, 'envisages': 1, 'inefficiency': 1, 'stirrings': 1, "militarist's": 1, 'incapacity': 1, 'rambles': 1, 'jogs': 1, 'Mario': 1, 'non-public': 1, 'LM': 1, '2454': 1, '$4.98': 1, 'lurk': 1, 'theatergoing': 1, 'skindiving': 1, 'horse-playing': 1, '1,488': 1, 'weight-height': 1, 'imperceptible': 1, 'inconspicuously': 1, 'Refrigeration': 1, 'conspire': 1, 'Fads': 1, 'fusty': 1, 'panaceas': 1, 'prunes': 1, 'curds': 1, 'concocted': 1, 'cherry-flavored': 1, 'No-Cal': 1, '59-cents': 1, 'Ancel': 1, 'bestselling': 1, 'birch-paneled': 1, 'Hygiene': 1, 'grey-haired': 1, '$200,000-a-year': 1, 'Bantu': 1, 'skinfolds': 1, 'Finnish': 1, 'woodcutters': 1, 'mealie-meal': 1, 'Capetown': 1, 'coloreds': 1, 'Vitamins': 1, 'Readings': 1, 'electrocardiogram': 1, 'rejoices': 1, '2,300': 1, 'calorie-heavy': 1, 'Obesity': 1, 'scurvy': 1, 'pellagra': 1, 'weaned': 1, 'kwashiorkor': 1, 'growth-stunting': 1, "Harrison's": 1, "internist's": 1, 'intemperance': 1, 'Morals': 1, 'overburden': 1, 'exertion': 1, 'hampers': 1, 'Physiologically': 1, 'overeat': 1, 'water-balance': 1, 'narcotizes': 1, 'enhances': 1, 'encephalitis': 1, 'sedative': 1, 'eaters': 1, 'nibblers': 1, 'gobblers': 1, 'dismisses': 1, 'depressants': 1, 'amphetamines': 1, 'Benzedrine': 1, 'Dexedrine': 1, "Oats's": 1, 'Quota': 1, '900-calorie': 1, 'dieters': 1, 'yellowish': 1, 'chole': 1, 'sterios': 1, "brain's": 1, 'gallstones': 1, 'blockages': 1, 'Explains': 1, 'irritates': 1, "artery's": 1, 'infarct': 1, 'suffocated': 1, 'Fats': 1, 'coronaries': 1, 'synthesizes': 1, 'cholesterol-rich': 1, 'Scandinavia': 1, 'Haqvin': 1, 'Malmros': 1, 'Laurance': 1, 'Kinsell': 1, 'Ahrens': 1, 'mono-unsaturated': 1, 'Saturated': 1, 'Mono-unsaturated': 1, '265': 1, 'agreed-upon': 1, 'rejections': 1, 'understandings': 1, 'Demons': 1, 'peopled': 1, 'unmixed': 1, 'conceptualization': 1, 'apprehend': 1, 'Crucible': 1, 'engulfs': 1, 'dreadfully': 1, 'Proctor': 1, 'combatted': 1, "Lucifer's": 1, 'many-faced': 1, "Hale's": 1, '1692': 1, 'worthlessness': 1, 'redeemed': 1, 'abounding': 1, 'presentness': 1, 'cohesiveness': 1, 'Nazism': 1, 'cohere': 1, 'prospers': 1, 'givenness': 1, 'understanded': 1, 'expurgation': 1, 'Mythological': 1, 'responsibly': 1, 'nonmythological': 1, 'overestimates': 1, 'stumbling-block': 1, 'culture-Protestantism': 1, "Peale's": 1, 'pundits': 1, 'fulminate': 1, "Paul's": 1, 'castigation': 1, 'indigation': 1, 'fortiori': 1, 'Expressed': 1, 'corporis': 1, 'intellectus': 1, 'Bonhoeffer': 1, 'estrangement': 1, 'Schleiermacher': 1, 'Ritschl': 1, 'Herrmann': 1, 'Harnack': 1, 'Troeltsch': 1, 'Bushnell': 1, 'Clarke': 1, 'Rauschenbusch': 1, 'Macintosh': 1, 'Tillich': 1, 'neoliberal': 1, 'philosophically': 1, "theology's": 1, 'demythologizing': 1, 'invalidated': 1, 'self-consistent': 1, 'pseudo': 1, 'unconditioned': 1, 'hermeneutics': 1, 'unacceptable': 1, '18-25': 1, 'Protestant-dominated': 1, 'transcribe': 1, 'cleric': 1, 'Devonshire': 1, 'Cornwall': 1, 'anti-Catholic': 1, 'anti-Catholicism': 1, 'non-Catholics': 1, 'bonfires': 1, 'Tractarians': 1, 'disapprobation': 1, 'Apologia': 1, 'Oratory': 1, 'churchgoers': 1, 'evensong': 1, '9,748,000': 1, '2,887,671': 1, 'Redundant': 1, "Archbishops'": 1, '790': 1, 'demolition': 1, '764': 1, 'Nonconformists': 1, 'nonchurchgoing': 1, 'secularism': 1, 'Anglicanism': 1, 'ironies': 1, 'ascendancy': 1, 'centenary': 1, 'Benediction': 1, 'Intercede': 1, 'Shepherd': 1, "England's": 1, 'Martyrs': 1, 'hyperbolically': 1, 'imprecations': 1, 'Irishmen': 1, 'mid-19th': 1, '1854': 1, 'seminarians': 1, 'tutorials': 1, 'Cherwell': 1, 'Nonconformist': 1, 'mid-Victorian': 1, 'B.B.C.': 1, 'parson': 1, 'Heenan': 1, "B.B.C.'s": 1, 'Primate': 1, 'Leamington': 1, 'Slough': 1, 'aeon': 1, 'crucifixion': 1, 'recurrence': 1, 'Whence': 1, 'pre-existence': 1, 'Existence': 1, 'pre-existent': 1, 'overstepping': 1, 'self-conceited': 1, 'imprecise': 1, 'betrothed': 1, 'extenuate': 1, 'providential': 1, 'punitive': 1, 'interposing': 1, 'Tatian': 1, 'Cyprian': 1, "Irenaeus'": 1, 'Greek-speaking': 1, 'incorruptibility': 1, 'transience': 1, 'alters': 1, 'revisionist': 1, 'Stiles': 1, 'sanhedrin': 1, 'calumniated': 1, 'excoriate': 1, 'pernicious': 1, 'pulpits': 1, 'Lecture': 1, "Gannett's": 1, 'Calvinist': 1, 'lavished': 1, '1843': 1, 'Trinitarians': 1, 'heaves': 1, 'thanksgiving': 1, 'insurgence': 1, 'peccavi': 1, 'Happily': 1, 'unforgivable': 1, 'Bartol': 1, 'convulsions': 1, 'ostracized': 1, 'reviled': 1, 'stratagems': 1, 'Address': 1, 'apostates': 1, 'infidel': 1, 'resigning': 1, 'canker': 1, 'sarcasms': 1, 'self-deprecation': 1, 'incontestable': 1, 'narrow-minded': 1, 'iconoclasm': 1, 'repressions': 1, 'ultra-liberal': 1, 'poses': 1, 'theses': 1, 'rephrased': 1, 'intolerant': 1, 'Bostonians': 1, 'abound': 1, 'poignantly': 1, 'world-at-large': 1, 'twenty-eighth': 1, 'polities': 1, 'Hunkerish': 1, "Channing's": 1, 'infraction': 1, 'libertines': 1, 'cherubim': 1, 'seraphim': 1, 'archangels': 1, 'recollect': 1, 'Reproach': 1, 'mitre': 1, 'massacre': 1, 'copiously': 1, 'impersonalized': 1, 'consciences': 1, 'historicity': 1, 'majesterial': 1, 'herpetology': 1, 'mycology': 1, 'Testaments': 1, 'refute': 1, 'Doubts': 1, 'redactions': 1, 'interpolations': 1, 'Bible-loving': 1, 'Bible-emancipated': 1, 'inexpressibly': 1, 'Pragmatism': 1, 'Concordance': 1, 'Genesis': 1, 'treatise': 1, 'leadings': 1, 'tendered': 1, 'Prophet': 1, 'Isaiah': 1, 'innermost': 1, 'Resting': 1, 'Satellites': 1, 'sputniks': 1, "Canaveral's": 1, '$200,000,000': 1, 'fortune-tellers': 1, 'truth-packed': 1, 'hell-bound': 1, 'spirituality': 1, '70,000,000': 1, 'worshipping': 1, 'mouth-watering': 1, 'Accept': 1, 'diagnosable': 1, 'escapist': 1, 'Sad': 1, 'jittery': 1, 'lounges': 1, 'Pascal': 1, 'opiates': 1, 'confessionals': 1, 'encamp': 1, 'devoured': 1, 'infidels': 1, 'encamped': 1, 'walled': 1, 'followeth': 1, 'tribulation': 1, 'reconciles': 1, 'psalm': 1, 'desolations': 1, 'Tabit': 1, 'Ibn': 1, 'Korra': 1, '836-901': 1, 'Pythagoreans': 1, 'centrality': 1, 'longed-for': 1, 'Warring': 1, '221-207': 1, 'Shih': 1, 'Huang-ti': 1, 'hard-won': 1, 'reuniting': 1, '202': 1, 'semisecret': 1, 'imaginations': 1, 'numerological': 1, 'diagonals': 1, 'Wu': 1, 'Ti': 1, 'auspicious': 1, 'inscriptions': 1, 'Rulers': 1, 'Metals': 1, 'Tastes': 1, 'Odors': 1, 'Bodily': 1, 'Viscera': 1, 'numerology': 1, 'pervaded': 1, 'nonsensical': 1, 'compendium': 1, 'pre-Han': 1, 'Tsou': 1, 'Yen': 1, "T'ien": 1, 'Sky-god': 1, 'inactivity': 1, 'Sung-Shan': 1, "T'ai-Shan": 1, 'Shantung': 1, 'Hwa-Shan': 1, 'Shensi': 1, 'Heng-Shan': 1, 'Hopei': 1, 'Shansi': 1, 'Huo-Shan': 1, 'Anhwei': 1, 'Huai': 1, 'Kiang': 1, 'Chi': 1, 'insincere': 1, 'Assimilation': 1, 'Neglect': 1, 'unchristian': 1, 'leaflet': 1, 'devotional': 1, 'mid-week': 1, '78-79': 1, "Preparation-Inquirers'": 1, 'dramatization': 1, 'filmstrips': 1, 'audibly': 1, 'Urge': 1, 'Select': 1, 'true-false': 1, 'Assign': 1, 'Pledge': 1, 'Loyalty': 1, 'Sweazey': 1, 'never-to-be-forgotten': 1, 'Psychologically': 1, 'Outline': 1, 'Arrange': 1, 'Sponsors': 1, 'Introduce': 1, 'spectator-type': 1, '1,419,833': 1, '1,541,991': 1, '122,158': 1, '1,080,062': 1, '4,499,608': 1, '4,622,444': 1, '4,122,354': 1, '7,360,187': 1, '7,484,268': 1, '9,910,741': 1, 'unconcern': 1, 'Sincere': 1, 'Creative': 1, 'Massacres': 1, 'form-creating': 1, 'eventualities': 1, 'Approached': 1, 'particularistic': 1, 'minimally': 1, 'nation-states': 1, 'paralleling': 1, 'bigoted': 1, 'bigots': 1, 'redeeming': 1, 'aggravate': 1, 'Emerging': 1, 'Colonialism': 1, 'Nationalism': 1, 'Volksgeist': 1, 'trans-political': 1, 'cross-cultural': 1, 'Asians': 1, 'sectarian': 1, 'preponderantly': 1, '7,000,000': 1, 'lament': 1, "Adventists'": 1, 'measurably': 1, 'anti-Christian': 1, 'Hindus': 1, 'Theocracy': 1, 'disaffection': 1, 'Dudley': 1, 'Mohammad': 1, 'Ayub': 1, 'Khan': 1, 'Sinai': 1, 'infusion': 1, 'secularists': 1, 'Gustave': 1, 'sacral': 1, 'Rican': 1, 'fallible': 1, 'Volunteer': 1, 'Newbiggin': 1, "Newbiggin's": 1, 'Feeney': 1, 'prudential': 1, 'foreknown': 1, 'guiltiness': 1, 'prudentially': 1, 'trammel': 1, 'detest': 1, 'eventuality': 1, 'Quoting': 1, 'affirms': 1, 'irredeemably': 1, 'dehumanised': 1, 'doomsday': 1, 'justitia': 1, 'imprinted': 1, 'whereon': 1, 'atomisation': 1, 'rebellions': 1, 'foreshortening': 1, 're-evaluation': 1, 'ethicists': 1, 'self-images': 1, 'mediating': 1, "realtor's": 1, 'Judgments': 1, "buyers'": 1, "NAREB's": 1, 'Realtor': 1, 'stigma': 1, 'non-white': 1, 'agitators': 1, 'client-service': 1, 'pervasively': 1, 'racially': 1, 'obscures': 1, 'illumine': 1, 'residentially': 1, "Negroes'": 1, 'Relevant': 1, 'leverage': 1, 'evasion': 1, 'anti-discriminatory': 1, "Connecticut's": 1, 'lobbied': 1, 'anti-discrimination': 1, 'Kraemer': 1, 'covenants': 1, 'unenforcible': 1, 'reformism': 1, 'permissibility': 1, 'Yonkers': 1, 'all-inclusive': 1, 'Racial': 1, 'skillfulness': 1, 'Hydrogen': 1, 'trillion': 1, 'quadrillion': 1, 'blanketed': 1, 'quintillion': 1, 'sextillion': 1, 'septillion': 1, 'Wonderland': 1, 'stratosphere': 1, 'footballs': 1, 'pinhead': 1, 'electrodynamics': 1, 'supermachine': 1, 'mechanistic': 1, 'determinism': 1, 'agnostics': 1, 'Broglie': 1, 'ebbs': 1, 'antiphonal': 1, 'scallops': 1, "Martha's": 1, 'Vineyard': 1, 'mould': 1, 'transgressed': 1, 'cheating': 1, 'burgeoned': 1, 'desuetude': 1, 'programmes': 1, '1808-1895': 1, 'Evangelical': 1, '1859-1929': 1, 'thine': 1, 'undimmed': 1, 'Awakening': 1, 'fountain-head': 1, 'Trinitarian': 1, 'Congregationalism': 1, 'Adventists': 1, 'Missions': 1, 'endeavours': 1, 'Millennium': 1, 'Transcendentalists': 1, 'Evangelicalism': 1, 'Pietism': 1, '1693': 1, 'Yearly': 1, 'Methodism': 1, 'Lundy': 1, '1789-1839': 1, '1805-1879': 1, 'Nova': 1, 'Scotian': 1, 'Chiefly': 1, 'Incurably': 1, 'Whittier': 1, '1807-1892': 1, '1803-1895': 1, 'evangelists': 1, 'temperance': 1, 'Giddings': 1, 'underlay': 1, "Stowe's": 1, 'shunned': 1, '1811-1884': 1, 'Lyman': 1, 'philanthropies': 1, 'undergirding': 1, '1786-1865': 1, '1788-1873': 1, 'Individuals': 1, 'newfound': 1, 'lineages': 1, 'dualities': 1, 'demoted': 1, 'unleashing': 1, 'flouted': 1, 'Westerners': 1, 'deadweight': 1, 'constrictions': 1, 'thatched-roof': 1, 'Basing': 1, 'magicians': 1, 'digested': 1, 'morsels': 1, 'hells': 1, 'gorgeously': 1, 'appareled': 1, 'self-realized': 1, 'idolatry': 1, 'magic-practicing': 1, 'catered': 1, 'Nonmagical': 1, 'Propriety': 1, 'disproportionately': 1, 'dignify': 1, 'indisputably': 1, 'enjoinder': 1, 'exponents': 1, 'Zennist': 1, 'ratiocinating': 1, 'patriarch': 1, 'outhouse': 1, 'mysticisms': 1, 'transmittable': 1, 'Reality': 1, 'koan': 1, 'preoccupations': 1, 'kingdom-wide': 1, 'gobbles': 1, 'anchoritism': 1, 'pantheist': 1, 'anchorite': 1, 'self-seeking': 1, 'Anchorite': 1, 'Exponents': 1, 'credulous': 1, 'Baku': 1, 'Tai': 1, 'Arhats': 1, 'Arhat': 1, 'Mahayanist': 1, 'Kyo-zan': 1, 'salutation': 1, 'sceneries': 1, 'mayst': 1, 'Manjucri': 1, 'Shakya': 1, 'carryovers': 1, 'anti-authoritarian': 1, 'individuation': 1, 'indulgences': 1, 'Faithful': 1, 'Indulgence': 1, 'Bishops': 1, 'Edition': 1, 'Hebrews': 1, '10-12': 1, 'perishing': 1, 'unbelieving': 1, 'Evidences': 1, 'saviour': 1, 'Cf.': 1, 'regeneration': 1, 'persevere': 1, 'Philippians': 1, 'gladness': 1, 'majesty': 1, 'circumcision': 1, 'uncircumcision': 1, '8-10': 1, 'implantation': 1, 'impartation': 1, 'partaker': 1, 'Colossians': 1, 'hearest': 1, 'dost': 1, 'unction': 1, 'blood-bought': 1, 'implore': 1, 'forsake': 1, 'Behold': 1, 'sup': 1, '3:20': 1, 'revellings': 1, 'banquetings': 1, 'lusts': 1, 'brightens': 1, 'newsstand': 1, 'unstapled': 1, 'down-and-outers': 1, 'derelict': 1, 'overwhelm': 1, 'Teresa': 1, 'Durlach': 1, 'Visualize': 1, 'chaplains': 1, 'Bedridden': 1, 'Braille': 1, 'inducements': 1, 'Boal': 1, 'organizes': 1, 'Searching': 1, 'Kittler': 1, 'Varner': 1, 'idea-exchange': 1, 'Mullendore': 1, 'Starr': 1, 'Weiss': 1, 'prayer-requests': 1, 'selflessness': 1, 'brain-wracking': 1, 'hovers': 1, "Guideposts'": 1, 'Barbudos': 1, 'war-dirty': 1, 'Revolutionaries': 1, 'Prado': 1, 'exiles': 1, 'Machado': 1, 'rejoiced': 1, 'topple': 1, 'speculator': 1, 'Stores': 1, 'rotogravures': 1, 'sonny-boy': 1, 'stunt': 1, 'lookit': 1, 'whaddya': 1, 'admonishing': 1, 'bodybuilding': 1, 'professeur': 1, 'sterno-cleido': 1, 'mastoideus': 1, 'tibialis': 1, 'anticus': 1, 'prize-winning': 1, 'physique': 1, 'Gaetan': 1, "D'Amours": 1, 'Senesac': 1, 'Boissoneault': 1, 'Harve': 1, 'Muscular': 1, 'Yesiree': 1, "4'": 1, 'testimonials': 1, 'Quick-Wate': 1, 'Super-Protein': 1, 'wonder-working': 1, 'bodyweight': 1, 'Tanny': 1, 'now-famous': 1, 'wide-grip': 1, 'Straight-Arm': 1, 'widens': 1, 'ribcage': 1, 'collar-to-collar': 1, 'Reeves-type': 1, 'gladiator': 1, 'chest-back-shoulder': 1, 'five-minute': 1, 'dumbbells': 1, 'pectorals': 1, 'one-dumbbell': 1, 'Bent-Arm': 1, 'pin-point': 1, 'widegrip': 1, 'Bars': 1, 'Lateral': 1, 'Raise': 1, 'pectoral-ribcage': 1, 'stretcher': 1, 'w-i-d-e': 1, "Claude's": 1, 'chest-back-lat-shoulder': 1, 'pectoral-front': 1, 'deltoid': 1, 'steel-edged': 1, 'carved-out-of-solid': 1, 'mass-building': 1, 'muscle-shaping': 1, 'torso-defining': 1, 'Physique': 1, 'Rarer': 1, 'Herculean': 1, "judges'": 1, "sculptor's": 1, 'limbo': 1, 'reacquainted': 1, 'thigh-bone': 1, 'hipline': 1, 'Curling': 1, 'Extensor': 1, 'Used': 1, 'reps': 1, 'razor-sharp': 1, 'contraction-extension': 1, 'Squats': 1, "here's": 1, 'suitably-loaded': 1, 'breather': 1, 'One-Leg': 1, 'nutshell': 1, 'balance-wise': 1, 'Squat-style': 1, 'leg-split': 1, 'sizzling': 1, 'harrowed': 1, 'brown-black': 1, 'tilth': 1, 'lustily': 1, 'sowing': 1, 'Ants': 1, 'oftener': 1, 'overfeed': 1, "neighbors'": 1, 'feedings': 1, 'seedlings': 1, 'budded': 1, 'leggy': 1, 'tall-growing': 1, 'pegging': 1, 'pegged-down': 1, 'cut-down': 1, "Nature's": 1, 'grower': 1, 'meaty': 1, 'melon-like': 1, 'nut-like': 1, 'eatings': 1, 'excelsior': 1, '42-degrees-F.': 1, 'grovelike': 1, 'dyeing': 1, 'waxing': 1, 'gassing': 1, 'sprays': 1, 'Nutritious': 1, 'reducer': 1, 'Avocados': 1, 'thiamin': 1, 'riboflavin': 1, 'phosphorus': 1, "Veterans'": 1, 'fearsome': 1, 'swiftness': 1, 'appallingly': 1, 'city-trading': 1, "attacker's": 1, "missile's": 1, 'Placing': 1, 'ballistics': 1, 'instantaneously': 1, 'self-protection': 1, 'cataclysmic': 1, 'long-endurance': 1, 'rail-mobile': 1, 'railway-based': 1, 'multimegaton': 1, 'degrade': 1, 'Survivability': 1, 'Skybolt': 1, 'Eliminate': 1, 'bomb-proof': 1, 'hangars': 1, 'Build': 1, 'propulsions': 1, 'vertical-takeoff-and-landing': 1, 'powerplants': 1, '12-to-one': 1, '15-to-one': 1, 'semiautomatic': 1, '30-minute': 1, 'Pre-attack': 1, 'kiloton': 1, 'overpressure': 1, 'one-kiloton': 1, '1/20th': 1, 'side-looking': 1, 'taxi-ways': 1, 'classifiers': 1, 'quintets': 1, 'serenade': 1, 'divertimento': 1, 'contrabass': 1, "clown's": 1, 'marathon': 1, 'Recordings': 1, 'Schnabel-Pro': 1, 'COLH': 1, 'Artur': 1, 'Schubert-Beethoven-Mozart': 1, 'Aeschbacher': 1, 'pedagogical': 1, 'pianistic': 1, 'Schnabelian': 1, 'serious-minded': 1, 'strait-laced': 1, 'pianism': 1, 'superlatives': 1, "Arte's": 1, 'interpretative': 1, 'twenty-five-year-old': 1, 'Forellen': 1, 'splicing': 1, 'laendler': 1, 'Viennese': 1, 'gossamer': 1, 'finicky': 1, 'tempos': 1, 'Octet': 1, 'Johann': 1, 'Krumpp': 1, 'tottering': 1, 'hilarity': 1, 'Glazer-Fine': 1, 'Concert-Disc': 1, 'lucidity': 1, "Fleisher's": 1, "Aeschbacher's": 1, 'Hephzibah': 1, 'Menuhin-Amadeus': 1, 'Babin-Festival': 1, 'unimaginative': 1, 'Badura-Skoda-Vienna': 1, 'Konzerthaus': 1, 'Demus-Schubert': 1, 'Deutsche': 1, 'Grammophon': 1, 'warm-toned': 1, 'tensionless': 1, 'Helmut': 1, 'Roloff': 1, 'last-mentioned': 1, 'Telefunken': 1, 'bargain-priced': 1, '$2.98': 1, 'milestones': 1, 'verisimilitude': 1, 're-creation': 1, "Muck's": 1, 'tenfold': 1, 'disillusioning': 1, 'rehearing': 1, 'fractional': 1, "Command's": 1, 'Fidelity': 1, 'peaky': 1, 'scrapes': 1, 'acoustically': 1, 'reverberation': 1, 'sonority': 1, 'intrudes': 1, 'quasi-performer': 1, 'discounting': 1, 'undertow': 1, 'Presto': 1, 'assai': 1, 'scherzo': 1, 'Allegro': 1, "Feyer's": 1, 'four-sided': 1, 'horrid': 1, "Fistoulari's": 1, 'ultravehement': 1, 'sentimentality': 1, 'super-high': 1, 'penultimate': 1, 'abridgment': 1, 'razor-edged': 1, 'monophonic': 1, 'big-stage': 1, 'SD': 1, 'Chmn.': 1, "Juniors'": 1, 'qualifying': 1, '37th': 1, 'Challenge': 1, 'Handling': 1, 'Noranda': 1, 'home-bred': 1, 'flash-bulbs': 1, 'livid': 1, 'Thoroughbred': 1, 'Racing': 1, "Barcus'": 1, 'Steward': 1, 'public-address': 1, "Handlers'": 1, "Ass'ns'": 1, 'founder-originator': 1, 'Blanc': 1, 'Doberman': 1, 'Pinscher': 1, 'Hackmann': 1, 'Dachshund': 1, 'Marcmann': 1, 'Trapp': 1, 'Penna.': 1, 'Keeshond': 1, 'Breed': 1, '7287': 1, 'overage': 1, "Class'": 1, 'handlers': 1, 'Superintendents': 1, "Junior's": 1, 'A.K.C.': 1, 'superintendents': 1, 'Handlers': 1, 'Airedale': 1, 'Kerry': 1, 'donating': 1, 'breeds': 1, 'Topeka': 1, 'KCs': 1, 'Pointer': 1, 'Pointers': 1, 'Puppies': 1, 'housebroken': 1, 'obedience-trained': 1, 'veterinarians': 1, 'canine': 1, 'germs': 1, 'navigable': 1, 'awash': 1, '8,000,000': 1, 'expectedly': 1, 'coastline': 1, 'troughs': 1, 'Developed': 1, 'multi-purpose': 1, 'havens': 1, 'square-mile': 1, 'Corp': 1, 'dammed': 1, '1,000,000': 1, '1,800,000': 1, 'easy-to-operate': 1, 'inboards': 1, 'Boatmen': 1, 'anchorage': 1, 'waterside': 1, 'eight-foot': 1, 'pram': 1, 'houseboats': 1, 'laze': 1, 'dinghy': 1, 'once-a-month': 1, 'sportiest': 1, 'excel': 1, 'sizeable': 1, 'tiller': 1, 'non-dealer': 1, "purchaser's": 1, 'Outboard': 1, 'ungoverned': 1, 'Laws': 1, 'yacht': 1, 'Foreseeing': 1, 'Squadrons': 1, 'Auxiliary': 1, 'seamanship': 1, 'piloting': 1, 'governmentally': 1, 'Yachtel': 1, 'yachtsman': 1, 'Boatel': 1, 'yachtel': 1, 'yachtels': 1, 'boatels': 1, 'Boatyards': 1, 'municipally': 1, 'boatyards': 1, 'cams': 1, 'unlocking': 1, 'Interlocking': 1, 'insures': 1, 'Turnout': 1, '1-6': 1, 'track-signal': 1, 'Derails': 1, 'blacked-in': 1, 'low-speed': 1, 'railroader': 1, "Larson's": 1, 'Frame': 1, 'soldering': 1, 'Compress': 1, 'Tack-solder': 1, 'tack-solder': 1, 'center-punch': 1, 'counter-drill': 1, 'unsolder': 1, 'disassemble': 1, 'soldered': 1, 'Dress': 1, 'burrs': 1, '3-48': 1, 'Tappets': 1, "5/64''": 1, "21/64''": 1, 'Tend': 1, 'undersize': 1, 'crosswise': 1, 'Repeat': 1, 'Fitting': 1, 'snug-fitting': 1, "2-3/4''": 1, 'dog-pin': 1, 'Center-punch': 1, "7/16''": 1, "9/32''": 1, "5/16''": 1, 'carborundum': 1, 'mandrel': 1, 'Barrette': 1, 'marring': 1, 'Assemble': 1, "2''": 1, "3''": 1, 'scribing': 1, "3/64''": 1, 'lathe': 1, 'standardizing': 1, 'Math': 1, 'Equations': 1, '**b': 1, 'Addition': 1, '+': 1, 'Multiplication': 1, 'Charts': 1, 'handbooks': 1, 'Shortening': 1, 'Rodding': 1, 'Displacement': 1, '3.1416': 1, 'pi': 1, 'Multiplying': 1, '2.54': 1, '16.38': 1, '283': 1, 'Chevy': 1, '3-7/8': 1, 'decimals': 1, 'overfill': 1, 'beakers': 1, "gasket's": 1, 'thousandths': 1, 'Compute': 1, 'Gear': 1, 'MPH': 1, 'crankshaft': 1, 'Rear': 1, '4.00': 1, 'Liner': 1, 'Mainliner-Highland': 1, 'clocked': 1, 'Kroening': 1, 'Wis.': 1, 'railbirds': 1, 'Frost-Debby': 1, 'Adios-On': 1, '2:28-:36': 1, 'Galophone-Kimberly': 1, '2:26.2': 1, 'girth': 1, 'smoothest': 1, 'equalled': 1, 'upstanding': 1, 'Trackdown': 1, 'Torrid-Mighty': 1, '2:33.3': 1, 'emasculation': 1, 'Adios-Trustful': 1, 'line-driven': 1, 'twice-around': 1, 'Gamecock': 1, 'Heel-Terka': 1, 'best-tempered': 1, 'blistered': 1, 'Hustler': 1, 'Dream-Torkin': 1, 'rascal': 1, 'gaited': 1, 'Torrid-Breeze': 1, 'strong-made': 1, 'Strongheart': 1, 'Adios-Direct': 1, 'fair-looking': 1, 'Torrid-Adios': 1, 'best-gaited': 1, 'Blistered': 1, 'pacer': 1, 'Flyer': 1, 'Flyer-Castle': 1, 'Stakes': 1, '2:33.2': 1, 'fillies': 1, 'Justine': 1, 'Hanover-Justitia': 1, '2:32.4': 1, 'Hoopla': 1, 'Heel-Holiday': 1, 'hoppled': 1, '2:43.1--:38': 1, '2:37.3--:36.1': 1, 'full-sisters': 1, 'Cerise': 1, 'underpinning': 1, 'Taraday': 1, 'grand-looking': 1, 'Dailey': 1, 'Abbe-Direct': 1, '2:28-:33': 1, 'Majestic': 1, '2:30-:33.2': 1, 'equine': 1, 'Staley': 1, 'Dream-Sweetmite': 1, '2:34-:34': 1, 'Step': 1, 'Rhythm-Wily': 1, "Haughton's": 1, 'Bonnie': 1, 'Abbe-Scotch': 1, 'Hanover-Misty': 1, 'Pride-Venus': 1, 'Harlan-Hickory': 1, 'Tiny': 1, 'Buxton': 1, 'Heel-Beryl': 1, 'Hanover-Ceyway': 1, 'Rodney-Honor': 1, 'Candle': 1, 'Harlan-Marcia': 1, 'Hanover-Chalidale': 1, 'Rodney-Miss': 1, 'Checkit': 1, 'Hanover-Supermarket': 1, 'Charm': 1, 'Rodney-The': 1, 'Charmer': 1, 'Farvel-Topsy': 1, 'Herring': 1, 'Dream-Way': 1, '2:34.2': 1, 'Jacky': 1, 'Lorraine': 1, 'Time-Olivette': 1, 'Bordner': 1, 'Heel-Betty': 1, 'Mahone': 1, 'Hanover-Sally': 1, 'Whippet': 1, 'Invercalt': 1, 'Florican-Inverness': 1, 'Mite': 1, 'Boy-Lady': 1, 'Knightfall': 1, 'Dream-Next': 1, 'Florican-My': 1, 'Boy-Marquita': 1, 'Time-Mynah': 1, 'Iosola': 1, 'Kid-Isoletta': 1, 'equines': 1, ':35.3': 1, 'stalling': 1, '12-oz.': 1, 'bare-footed': 1, 'Delvin': 1, 'classiest': 1, 'Lorena': 1, 'Gallon': 1, 'Gallon-Loren': 1, 'Prudent': 1, 'Hanover-Precious': 1, '2:30.3-:35.3': 1, 'Premium': 1, 'Hanover-Pebble': 1, '2:30.3-35.3': 1, 'Lucky': 1, 'Dream-Lusty': 1, '2:31.3-:35.3': 1, "Caton's": 1, 'Butterwyn': 1, 'Victor-Butler': 1, 'Wyn': 1, '2:30-:36': 1, 'Riverboat': 1, 'Dalzell-Cousin': 1, 'Layton': 1, 'Hanover-Lucy': 1, 'Jordon': 1, 'Adios-Rena': 1, 'Hanover-Bertie': 1, 'Heel-Kaola': 1, 'Karet': 1, '2:31': 1, 'Armbro': 1, 'Comet': 1, 'Nibble': 1, 'Hanover-Mauri': 1, 'Flick': 1, "Nipe's": 1, "Engle's": 1, 'Galophone-Prissy': 1, '2:46': 1, 'rainless': 1, 'Cruise': 1, 'Work-outs': 1, 'Plain': 1, 'Blackstone': 1, 'Marilyn': 1, 'Chalidale': 1, 'Lass': 1, 'Dauntless': 1, 'Greentree': 1, 'Budlong': 1, '2:00.2': 1, 'Lottie': 1, '2:03': 1, 'Braden': 1, 'Glow': 1, '1:59.3': 1, '2:00.3': 1, '2:05.1': 1, 'Tanker': 1, '2:05.3': 1, '2:19': 1, '2:01.3': 1, '2:02': 1, 'Dundeen': 1, "Claudia's": 1, '2:06.3': 1, '2:02.2': 1, '2:06': 1, 'Mocking': 1, '2:12': 1, 'Urban': 1, 'trotter': 1, 'Orin': 1, '2:04': 1, '2:24': 1, '2:05': 1, '2:06.1': 1, '2:05.2': 1, '2:21': 1, 'lookout': 1, 'Christmas-season': 1, 'arms-making': 1, "Ruger's": 1, 'high-velocity': 1, 'quick-handling': 1, 'fast-firing': 1, 'grassed': 1, 'bagged': 1, 'reedbuck': 1, 'kob': 1, '20-gauge': 1, '20-inch-barrel': 1, 'six-inch': 1, 'upsetting': 1, 'unjacketed': 1, 'opening-day': 1, 'hop-skipped': 1, 'rhododendron': 1, 'thicket': 1, 'foreleg': 1, 'standard-weight': 1, '1,850': 1, "hunter's": 1, 'Wesson': 1, '40-grain': 1, '2,460': 1, 'flattest': 1, 'mid-range': 1, 'squirrel': 1, 'crow': 1, 'chambered': 1, 'adapter': 1, 'plinking': 1, 'scoped': 1, 'Hunting': 1, 'high-power': 1, 'better-than-average': 1, 'Barrel': 1, '$165': 1, 'Shotgun-type': 1, 'scopes': 1, "Colt's": 1, 'center-fire': 1, 'Sako': 1, 'Coltsman': 1, 'Sport-King': 1, 'Rim-Fire': 1, '11-shot': 1, 'hammerless': 1, 'Rifles': 1, 'trouble-free': 1, '989': 1, 'seven-': 1, '12-shot': 1, 'Mossberg': 1, 'rifle-shotgun': 1, 'unrifled': 1, 'rifled': 1, 'unscrew': 1, 'smoothbore': 1, 'shotshells': 1, 'clays': 1, 'fastens': 1, 'seven-shot': 1, 'repeater': 1, '340TR': 1, '320TR': 1, 'wing-shooting': 1, '35-foot': 1, 'pellets': 1, "725's": 1, '$310': 1, '742': 1, '$140': 1, 'deluxe': 1, '18-1/2-inch': 1, '760': 1, 'short-barrel': 1, '742C': 1, 'Featherweight': 1, 'Deluxe': 1, 'slide-lock': 1, "Beginners'": 1, "beginners'": 1, 'Ithaca': 1, 'drop-block': 1, 'full-sized': 1, '514C': 1, '12-1/2': 1, 'single-barrel': 1, '940Y': 1, '$35': 1, 'Shotguns': 1, 'Superposed': 1, '$350': 1, 'beavertail': 1, 'barrel-wide': 1, 'ventilated': 1, 'rib': 1, 'Pump': 1, 'Firearms': 1, 'Valmet': 1, 'Supermatic': 1, 'Flite-King': 1, "Mossberg's": 1, '$73.50': 1, 'Handguns': 1, 'handguns': 1, 'Livery': 1, 'prop.': 1, 'horsedom': 1, 'hell-for-leather': 1, 'trenchermen': 1, 'halts': 1, 'filets': 1, 'sturgeon': 1, 'sangaree': 1, 'ferns': 1, 'Franciscan': 1, 'roamed': 1, 'Orphic': 1, 'pastilles': 1, 'Malabar': 1, 'botanical': 1, 'adorned': 1, 'lithographs': 1, 'liniments': 1, "Ball's": 1, 'Boots': 1, "Hood's": 1, 'Sarsaparilla': 1, 'blacking': 1, 'platter': 1, 'fritters': 1, 'consummately': 1, 'Oyster': 1, 'Gastronomes': 1, 'absinthe': 1, 'Pernod': 1, 'parsley': 1, 'underbedding': 1, 'liqueur': 1, 'unadorned': 1, '$2,300': 1, 'replica': 1, 'whips': 1, 'French-polished': 1, 'axles': 1, 'gloss': 1, 'funerals': 1, 'Kedgeree': 1, 'Flake': 1, 'haddock': 1, 'buttery': 1, 'curry': 1, 'anchovy': 1, 'Grill': 1, 'Native': 1, 'Delawares': 1, 'Fry': 1, 'chives': 1, 'jigger': 1, 'fortnight': 1, 'Pierpont': 1, 'restaurateur': 1, 'Nob': 1, 'magnate': 1, 'galleries': 1, 'maelstrom': 1, 'rubicund': 1, 'slash-mouthed': 1, 'Winfield': 1, 'gardenia': 1, 'Wellington': 1, 'currant': 1, 'Epsom': 1, 'surtout': 1, 'cantered': 1, 'uplands': 1, 'inns': 1, 'indulging': 1, 'sky-tapping': 1, 'bakes': 1, 'shoulder-high': 1, 'fernery': 1, 'seersucker': 1, 'half-witted': 1, 'mackintosh': 1, 'disfavor': 1, 'copious': 1, 'verandas': 1, 'rockers': 1, 'sojourners': 1, 'Ambrose': 1, 'Bierce': 1, 'Acorns': 1, 'oaks': 1, 'sweepstakes': 1, 'oak-log': 1, 'teaspoonfuls': 1, 'Contribute': 1, 'gherkins': 1, 'simmered': 1, 'chutney': 1, 'kegful': 1, 'kegs': 1, 'Vineyards': 1, 'panthers': 1, 'venison': 1, 'gunflint': 1, 'Almaden': 1, 'Apple': 1, 'creeks': 1, 'brimful': 1, 'Dwellers': 1, 'thereabouts': 1, 'billets': 1, 'apricot': 1, 'clove': 1, 'Poach': 1, 'pastry-lined': 1, 'tablespoonfuls': 1, 'gild': 1, 'yolk': 1, 'sky-reaching': 1, 'smoke-filled': 1, 'art-filled': 1, 'drama-filled': 1, 'peerless': 1, 'verdant': 1, 'Wednesdays': 1, 'eye-filling': 1, 'townships': 1, 'whaling': 1, 'Sturbridge': 1, 'completely-restored': 1, 'Acadia': 1, 'rockbound': 1, 'Mts.': 1, 'whirlwind': 1, 'sightseeing': 1, 'skyline': 1, 'Photographing': 1, 'Northeastern': 1, 'modernistic': 1, 'tripods': 1, 'Rooms': 1, 'Flash': 1, 'lighthouses': 1, 'overexpose': 1, 'light-reflecting': 1, '1/50th': 1, 'encompasses': 1, 're-enactments': 1, 'Lookout': 1, 'Fredericksburg': 1, 'unequalled': 1, 'water-ski': 1, 'Silver': 1, 'glass-bottom': 1, 'Everglades': 1, 'palm-studded': 1, 'Parrot': 1, 'Williamsburg': 1, 'Jamestown': 1, 'Luray': 1, 'Caverns': 1, 'photofloodlights': 1, 'Alamo': 1, '127-mile': 1, 'gorges': 1, 'trademarks': 1, 'Picturing': 1, 'flourishing': 1, 'long-view': 1, 'scenics': 1, '600-mile': 1, 'Folk': 1, 'Linville': 1, 'Peak': 1, 'waterskiing': 1, 'Dells': 1, 'fern': 1, 'stopover': 1, 'farmlands': 1, 'Badlands': 1, 'image-provoking': 1, 'Deadwood': 1, 'Passion': 1, 'Rushmore': 1, "Twain's": 1, 'Hannibal': 1, 'Huck': 1, 'Finn': 1, 'vacationland': 1, 'Itasca': 1, 'Mementoes': 1, 'Earp': 1, 'boomtown': 1, "70's": 1, "80's": 1, 'Mackinack': 1, 'relives': 1, 'fill-in': 1, 'memo': 1, 'sightseers': 1, 'dioramas': 1, 'sometimes-necessary': 1, '27-30': 1, 'Elgin': 1, 'Tulip': 1, '12-14': 1, 'USGA': 1, '15-17': 1, 'vacationers': 1, 'fun-filled': 1, '19-23': 1, '20-22': 1, 'two-week': 1, '2,425': 1, 'Fantastic': 1, 'semiarid': 1, "Colorado's": 1, 'Byzantium': 1, 'Byzas': 1, 'Megarians': 1, '11,330': 1, 'Patriarch': 1, 'Tourist': 1, "American's": 1, 'Cumhuriyet': 1, 'Cadesi': 1, 'Taksim': 1, 'Dolmabahce': 1, 'Galata': 1, 'slenderer': 1, 'Eminonu': 1, 'Yeni': 1, 'Cami': 1, "Pandelli's": 1, 'Erected': 1, 'pagan': 1, 'Sophias': 1, '532': 1, 'grander': 1, "Solomon's": 1, 'Sinan': 1, 'buttresses': 1, 'mosaics': 1, 'Moslems': 1, 'Artemis': 1, 'minber': 1, 'Statues': 1, 'Obelisk': 1, 'Theodosius': 1, 'Thutmose': 1, 'Lateran': 1, '390': 1, 'Serpentine': 1, 'Delphi': 1, 'rivalled': 1, 'Colossus': 1, 'Magnificent': 1, 'Retracing': 1, 'cascade': 1, 'muezzin': 1, 'Burnt': 1, 'Gazinosu': 1, 'baklava': 1, 'red-tile': 1, 'Sunken': 1, 'pagoda': 1, 'Topkapi': 1, 'Sultans': 1, "Executioner's": 1, 'beheading': 1, 'arrowed': 1, 'floor-length': 1, 'jewelled': 1, 'divan-like': 1, 'thrones': 1, 'Portrait': 1, 'divans': 1, 'barbecued': 1, 'Sear': 1, 'juiciest': 1, 'puncturing': 1, 'sear': 1, 'allot': 1, 'roasts': 1, 'test-run': 1, 'non-freezing': 1, 'Limit': 1, 'marinade': 1, 'tongs': 1, 'drips': 1, 'platters': 1, 'dinnerware': 1, 'tablecloths': 1, 'Wall-Tex': 1, 'Oilcloth': 1, '79-cents': 1, 'Tougher': 1, 'wine-': 1, 'beer-cooling': 1, 'stews': 1, 'chowders': 1, 'shish': 1, 'kebob': 1, 'lobster': 1, 'terry': 1, 'Summertime': 1, 'Bernz-O-Matic': 1, 'all-purpose': 1, 'earthenware': 1, 'relishes': 1, 'home-for-the-night': 1, '25-cents': 1, 'basics': 1, 'cervelat': 1, 'mettwurst': 1, 'bratwurst': 1, 'bockwurst': 1, 'knackwurst': 1, 'pepperoni': 1, 'blutwurst': 1, 'Threaded': 1, 'skewer': 1, 'sausage-meat': 1, 'franks-in-buns': 1, 'broiled': 1, 'permeate': 1, 'Relishes': 1, 'pickle': 1, 'extras': 1, 'tangy': 1, 'chive': 1, 'browning': 1, 'marinating': 1, 'Broil': 1, 'Jiffy': 1, 'sayonara': 1, 'toasting': 1, 'dipping': 1, 'Canned': 1, 'Paprika': 1, 'Spear': 1, 'Sweet-sour': 1, 'Fold': 1, 'paprika': 1, 'Trim-your-own-franks': 1, 'back-yard': 1, 'toppings': 1, 'kraut': 1, 'Chili': 1, 'Savory': 1, 'Barbecued': 1, 'ketchup': 1, 'Prick': 1, 'servings': 1, 'Pretend': 1, 'criss-cross': 1, 'Roast': 1, '15-20': 1, 'Blend': 1, '2/3': 1, 'Knead': 1, 'floured': 1, 'Af-inch': 1, '3/4': 1, 'Serves': 1, 'Hamburger': 1, 'Dash': 1, 'Wooden': 1, 'Ceramic': 1, 'modeling': 1, 'Glazes': 1, 'well-wedged': 1, 'pliable': 1, 'moistening': 1, 'corrections': 1, 'wood-grained': 1, 'paintbrush': 1, 'pinholes': 1, 'Rectangular': 1, 'Glazed': 1, 'stoneware': 1, 'Decorated': 1, 'Tiles': 1, "Jacquelyn's": 1, 'Opaque': 1, 'cantaloupe': 1, 'Mold': 1, 'Unglazed': 1, 'Fill': 1, 'Bevel': 1, 'jars': 1, 'ware': 1, 'miter': 1, 'design-side': 1, 'Construct': 1, 'Recess': 1, 'Sugar': 1, 'bevel': 1, 'splice': 1, "3-1/2''": 1, 'spout': 1, 'Napkin': 1, 'leather-hard': 1, 'breakage': 1, 'greenware': 1, 'Fired': 1, 'Photograph': 1, 'Measuring': 1, 'markers': 1, 'sl': 1, 'Backstitching': 1, 'sewn': 1, 'Pin': 1, 'underarm': 1, 'Ease': 1, 'Backstitch': 1, 'Weaving': 1, 'Straight': 1, '8-1/2-foot': 1, 'Menfolk': 1, 'helmsman': 1, '11-inch': 1, 'headroom': 1, 'roomy': 1, '80-hp': 1, 'three-foot': 1, 'runabout': 1, 'five-foot': 1, 'bumpers': 1, 'six-gallon': 1, "800's": 1, "500's": 1, '25-gallon': 1, 'long-cruise': 1, 'mooring': 1, 'flathead': 1, 'Nail': 1, 'Bridgewater': 1, 'different-color': 1, 'notching': 1, 'gussets': 1, 'spliced': 1, 'three-inch': 1, 'One-inch': 1, 'Glue': 1, '1-1/2-inch': 1, 'beveling': 1, 'two-inch': 1, 'Fairing': 1, '30-inch': 1, 'Grips': 1, 'bevels': 1, 'five-ply': 1, '3/8-inch-thick': 1, 'Plank': 1, 'fastening': 1, 'Homemaster': 1, 'Routo-Jig': 1, 'bit-like': 1, 'saber': 1, 'pre-drilled': 1, 'fastenings': 1, '50-inch': 1, 'hardener': 1, 'harden': 1, 'sander': 1, 'centerline': 1, 'beaching': 1, '1605': 1, 'well-braced': 1, 'planed': 1, 'quarter-inch': 1, 'Firzite': 1, 'Bottoms': 1, 'bulkheads': 1, 'shatterproof': 1, 'Plexiglas': 1, 'removable': 1, 'hinged': 1, 'bulkhead': 1, 'Ensolite': 1, 'Lightweight': 1, 'non-absorbent': 1, 'dimensionally': 1, 'Egils': 1, 'Hermanovski': 1, 'panelized': 1, 'panelization': 1, 'trucked': 1, 'precut': 1, 'sanitary': 1, 'L-P': 1, 'wash-outs': 1, 'swampy': 1, 'AjA': 1, 'AjB': 1, 'partitions': 1, 'asbestos-cement': 1, 'double-strength': 1, 'mastic': 1, 'filler': 1, 'wastage': 1, 'rustproof': 1, '1/2-inch': 1, '5/8-inch': 1, 'rabbeting': 1, 'shank': 1, 'tilting': 1, 'swivels': 1, 'Set-up': 1, 'rubdown': 1, 'rusting': 1, 'Presses': 1, 'lubrication': 1, 'bolts': 1, 'pliers': 1, 'unwinding': 1, 'loosening': 1, 'counter-clockwise': 1, 'step-cone': 1, 'booklet': 1, 'overheating': 1, 'exact-size': 1, 'sided': 1, 'Fly': 1, 'nicked': 1, 'workpiece': 1, 'Merrimac': 1, 'Newbery': 1, 'Conveyance': 1, 'Carriages': 1, 'Teams': 1, 'Travellers': 1, 'Tide': 1, 'Subscribers': 1, 'incorporating': 1, 'Malden': 1, 'severally': 1, 'Names': 1, 'Manners': 1, 'recompense': 1, 'two-part': 1, 'New-England': 1, 'New-York': 1, 'vortex': 1, 'high-water': 1, 'Pascataqua': 1, 'house-building': 1, '1751': 1, 'Boxford': 1, 'apprenticed': 1, 'Spofford': 1, 'roofed': 1, 'abutments': 1, 'share-holders': 1, 'Ciceronian': 1, "Dexter's": 1, 'underbracing': 1, 'Patentees': 1, 'Patent': 1, 'superintend': 1, '570': 1, 'thirty-foot': 1, 'Sturdy': 1, 'Tygartis': 1, 'Lander': 1, 'impersonated': 1, 'break-neck': 1, "Talbott's": 1, "Kelley's": 1, 'Confederates': 1, "'60s": 1, 'pleas': 1, 'parcel': 1, 'vies': 1, 'Completed': 1, '1852': 1, 'Lemuel': 1, 'Staunton': 1, '139-foot': 1, 'strengtened': 1, 'walk-way': 1, 'momentoes': 1, 'Grumble': 1, 'Jones-Imboden': 1, 'combustibles': 1, 'Joshual': 1, 'raiders': 1, 'Buckhannon': 1, 'Imboden': 1, 'Centering': 1, 'Barbour': 1, 'hydrochemistry': 1, 'pump-priming': 1, 'mailed-fist-in-velvet-glove': 1, 'fine-feathered': 1, 'squashed': 1, 'suntan': 1, 'semi-inflated': 1, "let's-make-your-house-our-club": 1, 'out-of-sight': 1, 'out-of-mind': 1, 'sylvan': 1, 'grassy': 1, 'mowed': 1, 'climes': 1, 'unglamorous': 1, 'floe': 1, 'plastic-covered': 1, 'flora': 1, 'fauna': 1, 'wintering': 1, 'greensward': 1, 'Coping': 1, 'transoceanic': 1, 'mud-sweat-and-tears': 1, 'solaced': 1, 'dips': 1, 'home-comings': 1, 'delectation': 1, 'quadrupled': 1, 'lien': 1, 'pool-owners': 1, 'handymen': 1, 'Naive': 1, 'impulsive': 1, 'unsettling': 1, 'subnormal': 1, 'ringers': 1, 'invitees': 1, 'Potlatches': 1, 'chaperoned': 1, 'gaggle': 1, 'gabbling': 1, 'dunk': 1, 'Sanity': 1, 'solvency': 1, 'free-drink': 1, 'famille': 1, "swimmers'": 1, 'Life-preservers': 1, 'buckle-on': 1, 'kapok-filled': 1, 'inexpert': 1, 'polo': 1, 'non-skid': 1, 'coco': 1, 'grit-impregnated': 1, 'littlest': 1, 'lawsuits': 1, 'Soignee': 1, 'bi-monthly': 1, 'hydraulics': 1, 'algaecide': 1, 'dirt-catcher': 1, 'furbishing': 1, '6-': 1, 'scooping': 1, 'floodlight': 1, 'pool-care': 1, 'add-on': 1, '1800-square-foot': 1, 'worth-while': 1, 'overcooled': 1, '15-degree': 1, 'allergies': 1, 'asthma': 1, 'sinus': 1, 'reupholstering': 1, 'mildew': 1, 'shade-darkened': 1, 'long-lived': 1, 'per-year': 1, 'whole-house': 1, 'ductwork': 1, 'counterflow': 1, 'crawlspace': 1, "furnace's": 1, 'inaccessible': 1, 'mild-winter': 1, 'perimeter': 1, 'diffusers': 1, 'cooling-heating': 1, '7-room': 1, '$1500': 1, 'prefab': 1, 'dehumidified': 1, 'quits': 1, 'makeup': 1, "BTU's": 1, 'Coolers': 1, '1-ton': 1, '1-hp': 1, 'undersized': 1, 'Reducing': 1, 'Money-saving': 1, '1200-square-foot': 1, '$128': 1, 'trellises': 1, 'Shade': 1, 'obliquely': 1, 'heat-absorbing': 1, 'Restrict': 1, 'Insulate': 1, 'weatherstrip': 1, 'double-glaze': 1, '6-4-2': 1, 'extra-thick': 1, 'droves': 1, 'ventilator': 1, 'pre-planning': 1, 'topographic': 1, "assessor's": 1, 'Inspect': 1, 'Frontage': 1, 'polluted': 1, 'surf': 1, 'nourishes': 1, 'waterfalls': 1, 'stocking': 1, 'flyways': 1, 'Clams': 1, 'crust': 1, 'agates': 1, 'semi-precious': 1, 'archeological': 1, 'artifacts': 1, 'Areas': 1, 'Acreage': 1, 'Adjoining': 1, 'outcrops': 1, 'topsoil': 1, 'subsoil': 1, 'ballfields': 1, 'grading': 1, 'Plants': 1, 'clean-up': 1, 'landscaping': 1, 'Lack': 1, 'useable': 1, 'Improvements': 1, '70th': 1, 'Sovietskaya': 1, 'Muzyka': 1, 'mercurial': 1, 'pranks': 1, 'bonheur': 1, 'monde': 1, 'composer-pianist-conductor': 1, 'Traditionalists': 1, 'Neo-Classicists': 1, '18th-Century': 1, 'mais': 1, 'mon': 1, 'Dieu': 1, 'unreservedly': 1, 'opulent': 1, 'extravaganzas': 1, 'gavottes': 1, 'Twentieth-Century': 1, 'Composers': 1, 'Diaghileff': 1, 'Dadaism': 1, 'ultramodern': 1, 'sympathique': 1, 'enthusiasms': 1, 'motherland': 1, 'coagulating': 1, 'freedom-loving': 1, 'Capitalist': 1, 'truculent': 1, 'workman': 1, 'striven': 1, 'Credo': 1, "craftsman's": 1, 'forsakes': 1, 'adroit': 1, 'polytonal': 1, 'modulations': 1, 'adroitness': 1, 'evading': 1, 'experimentalism': 1, 'Traditionalist': 1, 'experimentations': 1, 'fellow-countryman': 1, 'fecundity': 1, 'fruitfulness': 1, 'refashion': 1, 'miscalculations': 1, "composers'": 1, 'inspirations': 1, 'Nationalistic': 1, 'Petruchka': 1, 'Sacre': 1, 'Printemps': 1, 'Noces': 1, 'predisposed': 1, "Stravinsky's": 1, 'terra': 1, 'firma': 1, 'postulates': 1, 'Supra-Expressionism': 1, 'Neo-Paganism': 1, 'Neo-Classicism': 1, 'Neo-Romanticism': 1, 'Neo-Jazz': 1, 'Neo-Ecclesiasticism': 1, 'Neo-Popularism': 1, 'Post-Serialism': 1, 'renunciations': 1, 'Meager': 1, 'maladroit': 1, 'reharmonization': 1, 'Anthem': 1, 'Star-Spangled': 1, 'idiomatic': 1, 'polka': 1, 'flitting': 1, 'fermentations': 1, 'practising': 1, 'Traditionalism': 1, 'Sell': 1, 'Cotman': 1, 'effortless': 1, 'engraver': 1, 'commends': 1, 'Nina': 1, 'Ryder': 1, 'imitative': 1, 'stylemark': 1, 'flicks': 1, 'rigger': 1, 'duplicable': 1, 'clicking': 1, 'imparts': 1, 'reorder': 1, 'accenting': 1, 'tilt-top': 1, 'unfixed': 1, 'heavy-weight': 1, 'hand-made': 1, '400-pound': 1, 'flaws': 1, 'nubbins': 1, 'absorbency': 1, 'hand-blower': 1, 'sables': 1, 'riggers': 1, 'Fitch': 1, 'alizarin': 1, 'sepia': 1, 'cerulean': 1, 'ultramarine': 1, "Hooker's": 1, "Davy's": 1, 'decorativeness': 1, 'foiled': 1, "Mason's": 1, 'universalize': 1, 'interpretor': 1, 'Pisces': 1, 'Pennell': 1, 'Blair': 1, 'Chautauqua': 1, 'Academicianship': 1, 'headstands': 1, 'handstands': 1, 'backbends': 1, 'flips': 1, 'volleyball': 1, 'gymnast': 1, 'sustains': 1, 'Eighty': 1, 'Well-stretched': 1, "wive's": 1, 'demonstrators': 1, 'headstand': 1, 'ballerinas': 1, 'chin-ups': 1, 'fours': 1, 'Push': 1, 'kick-up': 1, 'Bare': 1, 'Backbends': 1, 'backbend': 1, 'acrobatics': 1, 'supine': 1, 'handstand': 1, 'walkover': 1, 'Straighten': 1, 'Somersaults': 1, 'copying': 1, 'pelvis': 1, 'evenutally': 1, 'diathermy': 1, 'contusions': 1, 'bursitis': 1, 'Commonly': 1, 'closed-circuit': 1, 'paging': 1, 'timers': 1, 'bio-medical': 1, 'Ultraviolet': 1, 'disrupts': 1, 'Aterman': 1, 'biophysicist': 1, 'xenon': 1, "observer's": 1, 'quartz': 1, 'synchronism': 1, 'sequenced': 1, 'leakage': 1, 'commutator-like': 1, '20-cps': 1, 'circuitry': 1, 'field-sequential': 1, 'amplifiers': 1, 'tricolor': 1, 'Breathing': 1, 'electronically': 1, 'Lobar': 1, 'Respiratory': 1, 'Analyzer': 1, 'Monster': 1, '8-channel': 1, 'inhalation': 1, 'treadmill': 1, 'Heart-measuring': 1, 'pulsed': 1, 'Msec.': 1, 'radar-type': 1, 'time-delay': 1, 'body-tissue': 1, 'Doppler': 1, 'thermistor': 1, "heart's": 1, 'Outputs': 1, 'pulse-timing': 1, 'analogue': 1, 'multichannel': 1, 'Radio-transmitter': 1, 'transistor': 1, 'oscillator': 1, 'Farrar': 1, 'pressure-sensing': 1, '3000': 1, '400-kc.': 1, 'bursts': 1, 'Applications': 1, 'Bones': 1, 'retina': 1, 'glaucoma': 1, 'ultrasonically': 1, 'sonogram': 1, 'mc.': 1, 'Howry': 1, 'submerging': 1, 'Arteries': 1, 'blood-filled': 1, 'Rudkoebing': 1, 'Langeland': 1, 'south-central': 1, '1777': 1, 'Soeren': 1, 'Oldenburg': 1, "Oldenburg's": 1, '1479': 1, 'onward-driving': 1, 'Limits': 1, 'Prose': 1, '1799': 1, 'Ferment': 1, "Hans'": 1, 'ferment': 1, "Volta's": 1, 'Wanderjahr': 1, 'Fichte': 1, 'Tieck': 1, 'Woburn': 1, 'Gottingen': 1, 'galvanism': 1, 'Jena': 1, 'remodeled': 1, "Ritter's": 1, 'Institut': 1, '1745': 1, 'Leiden': 1, 'Kleist': 1, '1764': 1, 'electrophorus': 1, 'Wilcke': 1, 'condenser': 1, 'Volta': 1, '1806': 1, 'professorship': 1, 'ordinarius': 1, '1769-1842': 1, 'Eager': 1, 'thoroughness': 1, 'Recherches': 1, "l'identite": 1, 'chimiques': 1, 'electriques': 1, 'Magnetism': 1, 'Bruckmann': 1, 'Coulomb': 1, 'detonating': 1, 'Bornholm': 1, 'Lauritz': 1, 'electromagnetism': 1, "1700's": 1, 'Marum': 1, 'Leyden': 1, 'transversally': 1, 'watch-spring': 1, 'Romagnosi': 1, 'processors': 1, 'parentheses': 1, 'ruminants': 1, 'Oxytetracycline': 1, 'Terramycin': 1, 'Calves': 1, '100-200': 1, 'Beef': 1, 'Chlortetracycline': 1, 'anaplasmosis': 1, 'Dairy': 1, 'enterotoxemia': 1, 'vibrionic': 1, 'Diethylstilbestrol': 1, 'consumes': 1, 'DES': 1, '10-milligram': 1, 'Discontinue': 1, 'Hydroxazine': 1, 'Iodinated': 1, 'casein': 1, 'elevates': 1, 'Fed': 1, 'butterfat': 1, 'Bacterial': 1, 'fungal': 1, 'tags': 1, 'Apergillus': 1, 'orzae': 1, 'Niger': 1, 'Flavus': 1, 'beef-feeding': 1, 'Ronnel': 1, 'Effectively': 1, 'grubs': 1, 'Methyl': 1, 'polysiloxanes': 1, 'Phenothiazine': 1, 'Reduces': 1, 'hookworm': 1, 'nodular': 1, 'droppings': 1, 'single-dose': 1, 'Procaine': 1, 'penicillin': 1, 'Sodium': 1, 'Sulfaquinoxaline': 1, 'dysentery': 1, 'coccidiosis': 1, 'Stimulates': 1, 'Incorporated': 1, 'Prevents': 1, 'Promazine': 1, 'tranquilizer': 1, 'vaccinating': 1, 'weaning': 1, '1.25': 1, 'Additive': 1, 'Mechanized': 1, 'All-weather': 1, '20-25': 1, 'Companies': 1, 'upgraded': 1, 'wittingly': 1, 'follow-through': 1, 'convenient-type': 1, "consumer's": 1, 'warehousing': 1, "distributor's": 1, 'researching': 1, 'Display': 1, 'fast-growing': 1, 'higher-quality': 1, 'Salesmanship': 1, 'slants': 1, 'niceties': 1, 'Computers': 1, 'higher-priced': 1, 'lower-paid': 1, 'mos.': 1, 'sales-building': 1, 'obsoleting': 1, 'commercialization': 1, 'shelved': 1, 'Shortage': 1, 'top-notch': 1, 'Complexity': 1, 'Hip-pocket': 1, 'short-changing': 1, '5-': 1, '10-yr.': 1, 'Solutions': 1, 'militated': 1, "designer's": 1, 'A.I.D.': 1, 'Titles': 1, 'Furnishes': 1, 'fairy-land': 1, 'Fashions': 1, 'catalog': 1, 'anomalous': 1, 'Institutes': 1, 'Societies': 1, 'disservice': 1, 'Jack-of-all-trades': 1, 'confreres': 1, 'aquisition': 1, 'ring-around-a-rosy': 1, 'mitigation': 1, 'offences': 1, 'absenteeism': 1, 'turnover': 1, 'fancier': 1, 'free-buying': 1, 'profit-sharing': 1, 'employee-contributed': 1, 'company-paid': 1, 'wash-up': 1, '24-hour-day': 1, '7-day-week': 1, 'third-shift': 1, 'subcontracting': 1, 'custodial': 1, 'in-plant': 1, 'weed': 1, "employee's": 1, 'inter-plant': 1, 'intra-company': 1, 're-scheduled': 1, 'Paid': 1, 'unneeded': 1, 'non-productive': 1, 'make-work': 1, 'fee-per-case': 1, 'first-aid': 1, 'job-': 1, 'non-job-connected': 1, 'indiscriminantly': 1, 'revamping': 1, 'Unions': 1, 'Aim': 1, 'Encourage': 1, 'Hallmark': 1, 'Benefit': 1, 'Bafflers': 1, 'Dietetic': 1, 'facsimile': 1, 'blue-collar': 1, '$227.72': 1, 'deductable': 1, 'open-end': 1, 'dollar-and-cents': 1, "cousin's": 1, 'Vending': 1, 'dispensers': 1, 'good-size': 1, 'deadheads': 1, 'time-on-the-job': 1, 'contributory': 1, 'layoffs': 1, 'startups': 1, 'Require': 1, 'absentee': 1, 'Latest': 1, 'dishwater': 1, 'Vacations': 1, 'Studebaker': 1, 'loader': 1, 'slow-firing': 1, 'auto-loaders': 1, 'small-arms': 1, 'resource-use': 1, 'expendable': 1, 'reaped': 1, 'Unlimited': 1, 'game-management': 1, 'harvested': 1, 'Game': 1, 'Commission-controlled': 1, 'Ammunition': 1, "Manufacturers'": 1, "Sportsmen's": 1, 'kick-off': 1, 'Tackle': 1, 'OEP': 1, 'school-age': 1, 'Merchandising': 1, 'THC': 1, 'appreciations': 1, 'assists': 1, 'grass-roots': 1, 'Shooting': 1, 'man-hours': 1, 'Hunters': 1, 'Sammy': 1, 'Shooter': 1, 'Hatteras': 1, 'Campground': 1, 'seagulls': 1, 'bluefish': 1, "Carolina's": 1, 'parachutes': 1, 'windbreaks': 1, '70-mile-long': 1, 'Dealers': 1, 'Harassed': 1, 'AAA': 1, 'resorts': 1, 'tow': 1, 'logger': 1, 'mattresses': 1, 'astronomically': 1, 'management-trained': 1, 'incomes': 1, 'vice-presidents': 1, 'dual-road-up': 1, 'dual-channel': 1, 'company-wide': 1, 'Turbine': 1, 'Strang': 1, 'switchgear': 1, 'Switchgear': 1, 'Consultant': 1, 'Transfer': 1, 'Physicist': 1, 'ASME': 1, 'AIEE': 1, 'AIChE': 1, 'Engrg': 1, 'agitate': 1, 'dual-ladder': 1, 'technical-ladder': 1, 'top-heavy': 1, 'high-salaried': 1, 'Salaries': 1, 'inaugurating': 1, 'organization-position': 1, 'administratively': 1, 'three-bedroom': 1, '$14,000': 1, 'Timen': 1, '540-K': 1, 'Vice-president': 1, 'Berkman': 1, 'Kahler-Craft': 1, 'Distributors': 1, 'Newburgh': 1, 'Fueloil': 1, '278': 1, 'Schulz': 1, 'Slo-Flo': 1, 'time-consuming': 1, 'Buries': 1, 'two-to-three': 1, 'Paragon': 1, 'boiler-burner': 1, 'summer-winter': 1, 'hookups': 1, 'gallonage': 1, 'crescent': 1, 'stipulation': 1, 'X-Tru-Coat': 1, 'options': 1, 'sunning': 1, 'ditcher': 1, 'trenches': 1, 'Gargle': 1, 'gargle': 1, 'anti-freeze': 1, 'flushing': 1, 'softest': 1, 'freeze-out': 1, 'gaskets': 1, 'fittings': 1, 'Dowguard': 1, 'zooms': 1, 'thermostats': 1, 'thermos': 1, 'insulators': 1, 'Duplicate': 1, 'lay-up': 1, 'Discounts': 1, 'deductibles': 1, 'coinciding': 1, 'thermoforming': 1, 'preprinting': 1, 'reverse-surface': 1, 'escutcheons': 1, 'medallions': 1, 'light-transmitting': 1, 'trans-illumination': 1, 'Aggregate': 1, 'translucency': 1, 'Shipping': 1, '3-by-6-ft.': 1, '275-300': 1, 'mountings': 1, 'Vacuum-': 1, 'pressure-formed': 1, 'Pre-decoration': 1, 'Advances': 1, 'smaller-size': 1, 'mass-production': 1, 'formability': 1, '166': 1, 'Polychemicals': 1, 'methyl': 1, 'methacrylate': 1, 'Monocite': 1, 'Sheeting': 1, 'resists': 1, 'crazing': 1, 'Cellulose': 1, 'duplex': 1, 'Thermoforming': 1, 'two-color': 1, 'MPl': 1, 'rotationally': 1, 'plastisols': 1, 'fabricating': 1, 'advancements': 1, 'billboard': 1, 'Spare': 1, 'Panels': 1, 'flood-lighted': 1, '24-sheet': 1, 'back-lighted': 1, 'cutouts': 1, 'Comprised': 1, 'triangles': 1, 'revolve': 1, '25-ft.': 1, 'Changeable': 1, 'Poster': 1, 'snap-in': 1, 'Adaptaplex': 1, 'waffle-pattern': 1, 'thermoformed': 1, '24-in.': 1, '36-in.': 1, 'Stainless': 1, 'stainless': 1, 'injection-molded': 1, 'Snug-Grip': 1, 'Plasti-Bars': 1, 'Azusa': 1, '27-in.': 1, '0.080-in.': 1, 'Finished': 1, '0.025-in.': 1, 'Specialties': 1, 'large-area': 1, 'right-angled': 1, 'corrugations': 1, 'Joined': 1, 'two-dimensional': 1, '400-lb.': 1, 'non-bearing': 1, 'shim': 1, 'shimming': 1, 'Install': 1, 'erects': 1, 'homebuilders': 1, 'build-better-for-less': 1, 'earthmoving': 1, 'roadbuilding': 1, 'lessens': 1, 'driveways': 1, 'builder-dealer': 1, 'short-cutting': 1, 'teaming': 1, 'roofing': 1, 'mark-up': 1, 'teamwork': 1, 'single-handed': 1, 'new-house': 1, 'palletized': 1, 'hardboard': 1, 'wallboard': 1, 'asbestos': 1, 'materials-handling': 1, 'homebuilding': 1, '492': 1, '376': 1, 'carloading': 1, '15,500-lb.': 1, 'fork-lift': 1, 'wide-door': 1, '$.30/mbf': 1, '$1.65': 1, "48''": 1, "30''": 1, 'McCracken': 1, 'packets': 1, "7''": 1, '48,000': 1, 'bd/ft': 1, '120,000': 1, "50'": 1, 'loose-loaded': 1, "12'": 1, 'forklift': 1, '21%': 1, '$.07/cwt': 1, 'lb-plus': 1, 'carloads': 1, '$4/mbf': 1, '6-B': 1, 'floating-load': 1, '$.054/mbf': 1, 'water-proof': 1, '$.75': 1, '$2.30/mbf': 1, "NRLDA's": 1, 'truckdriver': 1, 'unloads': 1, 'Restudy': 1, 'handiest': 1, 'Berea': 1, 'NAHB': 1, '$81': 1, '$43.50': 1, '$7.50': 1, '$36': 1, 'easy-to-spot': 1, '100-brick': 1, 'corner-posts': 1, 'hand-level': 1, 'Lendrum': 1, 'three-men-and-a-helper': 1, '$.10-a-minute': 1, 'pound-foolish': 1, '$.65': 1, 'finisher': 1, 'wanting-to-be-alone': 1, 'piazzas': 1, 'plazas': 1, 'forums': 1, 'by-roads': 1, 'Troyes': 1, 'ambrosial': 1, 'Paix': 1, "D'Argent": 1, 'Brindisi': 1, 'story-book': 1, 'Moors': 1, 'gourmets': 1, 'too-simple-to-be-true': 1, 'diathesis': 1, 'Hertz': 1, 'Avis': 1, 'Auto-Europe': 1, 'Nationalcar': 1, 'budget-wise': 1, '$1.00': 1, '$2.00': 1, 'fee-per-day': 1, 'per-day': 1, '$.80': 1, '$.90': 1, 'intra-city': 1, 'money-saving': 1, 'Fiats': 1, 'Alfa': 1, 'Giulietta': 1, '$1.26': 1, '$1.10': 1, '$.105': 1, '$.86': 1, '$.30': 1, '$3.50': 1, '$.12': 1, 'Convertible': 1, 'Citroen': 1, 'CV': 1, 'Volkswagens': 1, 'Renaults': 1, 'Simca': 1, 'Beaulieu': 1, 'Leasing': 1, '5-passenger': 1, 'reputations': 1, "chauffeur's": 1, '$12.00': 1, '4-passenger': 1, 'Peugeot': 1, 'equalize': 1, 'drive-yourself': 1, '$10.00': 1, 'hinterlands': 1, 'Sweepstakes': 1, 'boy-meets-girl': 1, 'MacArthur-Helen': 1, 'comico-romantico': 1, 'linguist-anthropologist': 1, 'oversoftness': 1, 'Conclusions': 1, 'drawling': 1, 'tandem': 1, 'undaunted': 1, 'blubber': 1, 'spring-joints': 1, 'talker': 1, 'austerely': 1, 'Birdwhistell': 1, 'kinesics': 1, 'downtalking': 1, 'mom': 1, "mom's": 1, 'throaty': 1, 'seven-word': 1, 'playbacks': 1, 'Redstone': 1, "1940's": 1, 'acoustic': 1, 'Linguistic': 1, 'fade-in': 1, 'beefed': 1, 'chartings': 1, 'now-historic': 1, 'triad': 1, 'itemization': 1, 'catapults': 1, 'breathy': 1, 'sloppily': 1, 'paralinguistic': 1, 'non-scientific': 1, 'blunted': 1, 'monumentally': 1, 'unmeshed': 1, 'taped': 1, 'psychotherapists': 1, 'intuitively': 1, 'Sibling': 1, 'Pittenger': 1, 'Hockett': 1, 'Danehy': 1, 'Stammering': 1, 'neurasthenic': 1, 'soma': 1, 'Pursewarden': 1, "Durrell's": 1, 'sea-horses': 1, 'Nuovo': 1, 'stern-to': 1, 'Berth': 1, 'Delano': 1, 'warfront': 1, 'Influential': 1, 'categorically': 1, 'consenting': 1, 'stockpiling': 1, 'smokescreen': 1, 'incendiaries': 1, '701st': 1, 'Cargo': 1, 'Secrecy': 1, 'nitrogen-mustard': 1, 'Maddalena': 1, 'Bougie': 1, 'troopship': 1, 'alarmist': 1, 'Luftwaffe': 1, 'Peltz': 1, 'Blitz': 1, "Bari's": 1, 'R.A.F.': 1, 'squadrons': 1, 'handmaiden': 1, 'co-ordinate': 1, "bomber's": 1, 'Britisher': 1, 'grimness': 1, 'Foggia': 1, 'flammable': 1, 'supposing': 1, 'tarry': 1, '2/c': 1, 'gangplank': 1, 'Deck': 1, 'Cahill': 1, 'boggled': 1, 'Sorrentine': 1, "Musmanno's": 1, 'badly-needed': 1, "Sorrentine's": 1, 'blips': 1, 'Fermate': 1, 'crewmen': 1, "88's": 1, "crane's": 1, 'homing': 1, "MP's": 1, 'casks': 1, 'valiantly': 1, '20-mm': 1, 'Holds': 1, 'mortally': 1, 'strangest': 1, 'side-step': 1, 'grope': 1, 'pre-vision': 1, 'Maeterlinck': 1, 'mystified': 1, 'Rudyard': 1, 'unreleased': 1, 'Myself': 1, 'Kipling': 1, 'ponder': 1, 'mantic': 1, 'clairvoyance': 1, 'retrovision': 1, 'hodge-podge': 1, 'Skeptics': 1, 'psycho-physiology': 1, 'Theory': 1, 'Philosophies': 1, 'Ramsperger': 1, 'Hereby': 1, 'ever-existent': 1, 'past-fantasy': 1, 'coexistent': 1, 'intactible': 1, 'Consciousness': 1, 'photographically': 1, 'Kurigalzu': 1, '1300': 1, 'Bel': 1, "priest's": 1, 'Cassite': 1, 'ostensibly': 1, "Hilprecht's": 1, 'fadeout': 1, 'joblot': 1, "professor's": 1, 'Nippur': 1, "sleeper's": 1, 'withstands': 1, 'clinched': 1, 'handicaps': 1, 'Situated': 1, 'Improved': 1, 'quick-drying': 1, 'contouring': 1, 'reminiscing': 1, 'Organic': 1, 'Gardening': 1, 'Nutrition': 1, "Bromfield's": 1, 'conservationist': 1, "Plowman's": 1, 'shredder': 1, 'spreader': 1, 'mulching': 1, 'water-holding': 1, 'irrigate': 1, 'Sniffing': 1, 'crumbly': 1, 'long-keeping': 1, 'fungicides': 1, 'turnips': 1, 'rutabagas': 1, 'rotenone': 1, 'Bio-Dynamic': 1, 'Starter': 1, 'wholewheat': 1, 'Adults': 1, "Clark's": 1, 'deteriorate': 1, 'soy': 1, "Lillian's": 1, 'freshly-ground': 1, 'fresh-ground': 1, 'buckshot': 1, 'voraciously': 1, 'Body-building': 1, 'Salads': 1, 'Vegetables': 1, 'freezer': 1, 'Home-made': 1, 'Sprouted': 1, 'suey': 1, 'Hens': 1, 'Organ': 1, 'puddings': 1, 'sulphured': 1, 'Apples': 1, 'unsprayed': 1, 'Wheat-germ': 1, "brewer's": 1, 'spaghetti': 1, 'Raw': 1, 'wheat-germ': 1, 'Drinking': 1, 'insecticide': 1, 'conserves': 1, 'Wholesome': 1, 'munch': 1, 'Nourishing': 1, 'Rugged': 1, 'skating': 1, 'Healthier': 1, 'Buffeted': 1, 'Wires': 1, 'whined': 1, 'idled': 1, 'roadbed': 1, 'girders': 1, 'postmasters': 1, 'muck': 1, 'rights-of-way': 1, "flood's": 1, 'ferried': 1, 'undisrupted': 1, "Burlington's": 1, 'hastily-summoned': 1, 'wide-winged': 1, 'DeHaviland': 1, 'two-seaters': 1, 'flood-ravaged': 1, 'Anticipating': 1, 'Granite': 1, 'quarrymen': 1, '172nd': 1, 'Millstone': 1, 'hops': 1, 'hob': 1, 'recently-passed': 1, 'empowering': 1, 'flier': 1, 'barnstormer': 1, 'racked': 1, 'Piloting': 1, 'MF': 1, 'Winnipesaukee': 1, "Lindbergh's": 1, 'aviators': 1, 'Public-spirited': 1, '225/hp': 1, 'Whirlwind': 1, 'silver-painted': 1, '22-1/2': 1, 'On-to-Spokane': 1, 'wry-faced': 1, 'unsafe': 1, 'flat-topped': 1, 'uphill': 1, 'snow-covered': 1, 'Aide': 1, 'Sleight': 1, 'McKenna': 1, 'scouted': 1, 'passable': 1, 'Barre-Montpelier': 1, 'one-plane': 1, 'sub-freezing': 1, 'vagaries': 1, 'togs': 1, 'sheep-lined': 1, 'helmet': 1, 'goggles': 1, "airman's": 1, "Weren't": 1, 'Became': 1, 'frosty': 1, 'wind-velocity': 1, 'Ceilings': 1, 'Hartwell': 1, 'Caleb': 1, 'hangar': 1, 'Wishing': 1, 'sleet': 1, "Whirlwind's": 1, 'socked': 1, 'chandelle': 1, 'Ottauquechee': 1, 'Danville': 1, 'Approach': 1, 'shuttled': 1, 'barnyards': 1, 'near-misses': 1, 'miscalculated': 1, 'revved': 1, 'slipstream': 1, 'Tracks': 1, 'old-timers': 1, 'Compulsory': 1, 'penman': 1, 'stickler': 1, 'fogy': 1, 'out-moded': 1, 'I.B.M.': 1, 'invalids': 1, 'moan': 1, 'bewail': 1, 'unabridged': 1, 'Believe': 1, 'buttonholes': 1, 'crochet': 1, 'tat': 1, 'hooking': 1, 'braiding': 1, 'yearn': 1, 'calorie': 1, 'hands-off-all-sweets': 1, 'dejection': 1, 'plugging': 1, 'timetables': 1, "n'th": 1, 'Noah': 1, 'non-instinctive': 1, 'Jules': 1, 'Verne': 1, 'blitzes': 1, 'acrobats': 1, 'over-occupied': 1, 'Uniqueness': 1, 'procreativity': 1, 'honeymooners': 1, 'sex-manuals': 1, 'gynecologists': 1, 'newly-married': 1, 'Privacy': 1, 'Hymen': 1, 'exaggerations': 1, 'folk-lore': 1, 'hymens': 1, 'newly-weds': 1, 'Gynecologists': 1, 'incise': 1, 'outgrowth': 1, 'dilating': 1, 'involuntarily': 1, 'gynecological': 1, 'Folk-lore': 1, 'prolongation': 1, 'fore-play': 1, 'dilates': 1, 'urethra': 1, 'Locker-room': 1, 'prolongs': 1, 'Ruthlessness': 1, 'inflame': 1, 'wisest': 1, 'Nude': 1, 'Kinsey': 1, 'Differences': 1, 'nudist': 1, 'crusader': 1, 'semi-nude': 1, 'pornographic': 1, 'nudism': 1, 'unselfish': 1, 'aye': 1, 'meekest': 1, 'Release': 1, 'Sexual': 1, 'Tensions': 1, 'bestial': 1, 'wifely': 1, 'demeans': 1, 'saps': 1, 'robs': 1, 'masculinity': 1, 'embezzle': 1, 'Caught': 1, 'Thursday-night': 1, 'dollars-and-cents': 1, 'demandingly': 1, 'Hemmed': 1, 'career-bound': 1, 'topsy-turvy': 1, 'Psychotherapy': 1, 'henpecked': 1, 'Milquetoasts': 1, 'threshhold': 1, 'Theodor': 1, 'Reik': 1, 'roost': 1, 'bull-roaring': 1, 'Hilliard': 1, 'gynecologist': 1, "'90s": 1, 'shamefacedly': 1, 'flapper': 1, 'Virtually': 1, 'child-rearing': 1, 'money-handling': 1, 'tradesmen': 1, 'flurried': 1, 'extramarital': 1, 'passivity': 1, 'bed-hopped': 1, 'butting': 1, 'courted': 1, "couple's": 1, 'D.O.A.': 1, 'trollop': 1, 'ash-blonde': 1, 'oleomargarine': 1, 'Minot': 1, 'play-girl': 1, 'masterminding': 1, 'swank': 1, 'Clad': 1, 'Liebler': 1, 'arraigning': 1, 'tycoon': 1, 'sobbingly': 1, 'chaperone': 1, 'wide-eyed': 1, 'ex-fighter': 1, 'Warfield': 1, 'good-night': 1, 'croupier': 1, 'Smarter': 1, 'casino': 1, "Paris'": 1, 'beautifully-built': 1, 'high-tailed': 1, 'fiddling': 1, 'envious': 1, 'revels': 1, 'swanky': 1, 'Discreet': 1, "suite's": 1, 'lass': 1, 'auditioning': 1, 'servitors': 1, 'Semiramis': 1, 'Middle-Eastern': 1, 'Tewfik': 1, 'Badrawi': 1, 'Mohammed': 1, 'Gaafer': 1, 'unromantic': 1, "Attorney's": 1, 'comely': 1, 'Detention': 1, "Vesuvio's": 1, 'Newspapers': 1, 'co-operating': 1, 'Bolivia': 1, 'morphine': 1, '$5-8,000': 1, 'bracket': 1, 'snazzy': 1, 'chromium-plated': 1, 'Bakersfield': 1, 'presto': 1, 'applicator': 1, 'diseased': 1, "Shaefer's": 1, 'pseudo-scientific': 1, 'mumbo-jumbo': 1, 'cancer-ridden': 1, 'Inspection': 1, 'convicting': 1, 'misbranded': 1, 'fatten': 1, 'luring': 1, 'Rube': 1, 'faker': 1, 'anaprapath': 1, 'physiotherapist': 1, 'electrotherapist': 1, 'naturopath': 1, 'letterhead': 1, 'gallus-snapping': 1, 'hawker': 1, 'Ghadiali': 1, 'Abrams': 1, 'Frauds': 1, '$1020': 1, '$4200': 1, 'chiropractor': 1, 'radioclast': 1, 'diagnometer': 1, 'conned': 1, 'AMA': 1, '$610': 1, 'charlatans': 1, 'ACS': 1, 'Arthritis': 1, 'Rheumatism': 1, 'preying': 1, 'callously': 1, 'townsman': 1, 'hard-earned': 1, "chiropractor's": 1, 'Hepker': 1, 'Fraud': 1, 'arsenic': 1, 'barium': 1, 'Vrilium': 1, '$306': 1, 'drugless': 1, 'radionic': 1, 'knobs': 1, '10-day': 1, 'T.B.': 1, '$35,823': 1, 'ghoul': 1, 'reconditioning': 1, '$185': 1, 'Jannsen': 1, "FDA's": 1, 'Quacks': 1, 'sufferers': 1, 'Ten-year-old': 1, 'nicknamed': 1, 'Bunny': 1, 'specializes': 1, 'realigning': 1, 'co-operated': 1, 'whole-heartedly': 1, 'tooth-straightening': 1, 'jawbone': 1, 'malformations': 1, 'protrusion': 1, 'Crooked': 1, 'lowers': 1, 'eyeteeth': 1, 'protrude': 1, 'thumb-': 1, 'finger-sucking': 1, 'tongue-thrusting': 1, 'lip-sucking': 1, "youngster's": 1, 'thumb-sucking': 1, 'molar': 1, "Stewart's": 1, 'bad-fitting': 1, 'pyorrhea': 1, 'jammed-together': 1, 'prolong': 1, 'Badly': 1, 'lisping': 1, 'Orthodontic': 1, 'peridontal': 1, 'Abnormal': 1, "orthodontist's": 1, 'custom-make': 1, 'soreness': 1, 'well-cemented': 1, "Susie's": 1, 'molars': 1, 'healthier': 1, 'Aligning': 1, 'full-banded': 1, '$650': 1, '30-year': 1, "culture's": 1, 'vulcanized': 1, 'Plaster': 1, 'alginates': 1, 'gelatin-like': 1, 'nicknames': 1, 'prognoses': 1, 'preferring': 1, 'mediumship': 1, 'dissociated': 1, 'semi-conscious': 1, 'beyond-normal': 1, 'pre-conscious': 1, 'Karlis': 1, 'Osis': 1, 'telepathically': 1, 'paranormal': 1, 'typescript': 1, 'afield': 1, 'objectiveness': 1, 'parapsychology': 1, "foundation's": 1, "communicator's": 1, 'Correct': 1, 'Incorrect': 1, 'Doubtful': 1, 'totted': 1, 'Hits': 1, 'Significants': 1, 'chalked': 1, 'Mediumistic': 1, 'aches': 1, 'eidetic': 1, 'Impressions': 1, 'clairvoyant': 1, 'clairaudiently': 1, 'Shietz': 1, 'Farming': 1, 'Livestock': 1, 'routinely': 1, 'labor-saving': 1, 'Drought': 1, 'Sickness': 1, 'threshing': 1, 'off-farm': 1, 'Advantages': 1, 'Caring': 1, 'white-collar': 1, 'plantings': 1, 'disking': 1, 'small-scale': 1, 'secondhand': 1, 'binder': 1, 'Discussed': 1, 'all-weather': 1, 'Nearness': 1, 'mains': 1, 'Buying': 1, 'graybeards': 1, 'machine-gunned': 1, 'Auschwitz': 1, 'lunatic-fringe': 1, 'delicti': 1, "defendant's": 1, 'Servatius': 1, 'Interruptions': 1, 'rebuked': 1, 'anti-Communism': 1, 'repentant': 1, 'ex-Communist': 1, 'vanguard': 1, 'anti-semite': 1, "prosecution's": 1, 'Shout': 1, 'falsifying': 1, 'Jew-as-enemy': 1, 'virulent': 1, 'disobeying': 1, 'giddiness': 1, 'half-acceptance': 1, 'light-mindedness': 1, 'non-police': 1, 'Wansee': 1, 'Goering': 1, 'strangulation': 1, 'emigration': 1, 'promulgators': 1, 'exterminating': 1, 'accomplices': 1, 'Anti-Semite': 1, 'concentration-camp': 1, 'edifying': 1, 'skull-bashings': 1, 'gassings': 1, 'patriots': 1, 'terrorizing': 1, 'meanest': 1, 'pulverizing': 1, 'demoralization': 1, 'neighborliness': 1, 'opportunism': 1, 'megalomania': 1, 'Jew-haters': 1, 'Bulgaria': 1, 'compatriots': 1, 'Crimes': 1, "survivors'": 1, 'reinstated': 1, 'contraceptive': 1, 'orthopedic': 1, 'embroiled': 1, 'family-welfare': 1, 'erupting': 1, 'rumbles': 1, 'smolders': 1, 'nettlesome': 1, 'polemical': 1, 'recrimination': 1, 'sloganeering': 1, 'dispassionate': 1, "O'Gara": 1, 'roughshod': 1, 'jibes': 1, "Catholics'": 1, 'beget': 1, 'eugenic': 1, 'infertile': 1, 'Scriptural': 1, 'natural-law': 1, 'creedal': 1, 'inglorious': 1, 'tumultuous': 1, 'Denouncing': 1, 'steadfastly': 1, 'continence': 1, 'social-welfare': 1, 'three-masted': 1, "Katherine's": 1, 'second-hand': 1, '1608': 1, 'geographers': 1, 'forbade': 1, 'provisioned': 1, 'Baffin': 1, 'Labrador': 1, 'Waymouth': 1, 'qualms': 1, 'voyages': 1, 'Novaya': 1, 'Zemlya': 1, 'near-mutiny': 1, 'Mid-Atlantic': 1, 'seafaring': 1, 'Londoner': 1, 'Hendrik': 1, 'voyager': 1, 'unsuited': 1, "river's": 1, 'panders': 1, 'whores': 1, 'Gravesend': 1, 'skirted': 1, 'Lousie': 1, 'two-weeks': 1, 'protege': 1, 'Desolation': 1, 'Floating': 1, 'Fog': 1, 'Turbulent': 1, 'bergs': 1, 'Ungava': 1, 'quelling': 1, 'captains': 1, 'lopped': 1, 'Patiently': 1, 'wordy': 1, '450-mile-long': 1, 'headlands': 1, 'gateways': 1, 'starboard': 1, 'precipice': 1, 'Digges': 1, 'Wolstenholme': 1, 'deltas': 1, 'westwards': 1, 'blackest': 1, 'Feverishly': 1, 'land-locked': 1, 'angered': 1, 'Bennett': 1, 'Mathues': 1, 'homeward': 1, 'Bylot': 1, 'criss-crossing': 1, "crew's": 1, 'Butt': 1, 'Adame': 1, 'capstan': 1, 'Scot': 1, 'crofters': 1, "Comany's": 1, '116,000': 1, '1811': 1, 'Tippecanoe': 1, 'Winnipeg': 1, 'Meurons': 1, "traders'": 1, 'hoes': 1, 'dispersal': 1, 'metis': 1, 'barony': 1, '1816': 1, 'British-born': 1, 'Rolette': 1, 'Renville': 1, '1802': 1, 'withes': 1, 'thills': 1, 'Territories': 1, "tho'": 1, 'northerly': 1, 'Ab1,040': 1, 'Activity': 1, 'Lieutenant-Colonel': 1, 'Leavenworth': 1, 'outposts': 1, 'Labothe': 1, 'drovers': 1, 'Sieux': 1, '700-mile': 1, 'discontented': 1, 'half-starved': 1, 'Michilimackinac': 1, 'McDonnell': 1, 'Ab4,500': 1, 'British-American': 1, 'Halkett': 1, 'rafts': 1, '1823': 1, '1825-1826': 1, '443': 1, 'Vevay': 1, '157': 1, 'uninterruptedly': 1, 'Galtier': 1, 'Bottineau': 1, 'Plympton': 1, 'platted': 1, "Galtier's": 1, 'Selkirkers': 1, '2,417': 1, '4,369': 1, 'no-trading': 1, 'prohibiton': 1, 'forwarding': 1, 'pemmican': 1, '1841': 1, '49th': 1, 'lise': 1, 'ornraier': 1, 'poring': 1, 'rawhide': 1, 'stirups': 1, 'leaches': 1, 'missive': 1, 'maget': 1, 'one-horse': 1, 'geered': 1, 'Humor': 1, 'Halda': 1, 'Stillwell': 1, 'Wife': 1, 'maryed': 1, 'sofar': 1, 'enny': 1, 'forgitful': 1, 'corpulence': 1, 'gray-backs': 1, "o'er": 1, 'Thiot': 1, 'bowels': 1, 'sh-ts': 1, 'knott': 1, 'Shitts': 1, 'diorah': 1, 'poark': 1, 'sowered': 1, 'stomack': 1, 'Dyerear': 1, 'thease': 1, 'hubbub': 1, 'Scarcity': 1, 'cross-writing': 1, 'whizzing': 1, 'menial': 1, 'soldier-masters': 1, 'Unmarried': 1, 'sweethearts': 1, 'Owing': 1, 'printable': 1, 'boastfully': 1, 'belles': 1, 'thout': 1, "Pappy's": 1, 'wold': 1, 'recond': 1, 'eyd': 1, 'pungently': 1, 'runing': 1, 'wod': 1, 'mor': 1, 'yuse': 1, 'chouise': 1, 'nise': 1, 'feler': 1, 'thefin': 1, 'bich': 1, 'com': 1, 'theaf': 1, 'lop': 1, 'yeard': 1, 'pigen': 1, 'tode': 1, 'helion': 1, 'hel': 1, 'shute': 1, 'Initiation': 1, 'Went': 1, 'skouting': 1, 'secessionists': 1, 'brok': 1, 'holored': 1, 'suns': 1, 'biches': 1, 'Thay': 1, 'godamit': 1, 'Reub': 1, 'stuck-up': 1, 'Alabamian': 1, 'Floridian': 1, 'tote': 1, 'Fay': 1, 'Louisianan': 1, 'Pemberton': 1, 'puke': 1, 'Mauldin': 1, 'rascals': 1, 'slinging': 1, 'docters': 1, 'aconte': 1, 'filde': 1, 'do(c)ters': 1, 'offersey': 1, 'homefolk': 1, 'takeing': 1, 'shavings': 1, 'Alabamans': 1, 'recooned': 1, "you'uns": 1, 'wus': 1, "we'uns": 1, 'staid': 1, 'thievin': 1, 'skunks': 1, 'Booty': 1, 'rewrites': 1, 'superimposes': 1, 'world-oriented': 1, 'egocentric': 1, 'isolationistic': 1, "Anyone's": 1, 'Parson': 1, "Weems's": 1, 'Patrick': 1, 'Crockett': 1, 'recreate': 1, 'proverbs': 1, 'rhymes': 1, 'Enthusiastically': 1, 'subliterary': 1, 'semi-isolated': 1, 'Teutonic': 1, 'flag-wavers': 1, 'sentimentalists': 1, 'dramatists': 1, 'heritages': 1, 'acculturated': 1, 'Anthropologists': 1, 'dollar-sign': 1, 'Fundamentally': 1, 'progandist': 1, 'probings': 1, 'Dominated': 1, 'potpourri': 1, 'money-maker': 1, 'tamper': 1, "Benet's": 1, "Steinbeck's": 1, 'Wrath': 1, 'publically': 1, 'longs': 1, 'Benets': 1, 'Steinbecks': 1, 'Smoke': 1, 'inadvisable': 1, 'candour': 1, 'jovial': 1, 'florist': 1, 'bouquets': 1, 'quickness': 1, 'Landesco': 1, 'nerveless': 1, 'risking': 1, 'casebook': 1, 'roughneck': 1, 'plasterer': 1, "Side's": 1, 'acolyte': 1, 'honkytonks': 1, 'neighbourhood': 1, 'pressure-cooker': 1, 'police-dodging': 1, 'housebreaking': 1, 'Gimpy': 1, 'Scarface': 1, "McGovern's": 1, 'notoriously': 1, 'Herald-Examiner': 1, "paper's": 1, 'breaker': 1, 'highwayman': 1, 'Neanderthal': 1, 'Geary': 1, 'Asylum': 1, 'homicidal': 1, 'misted': 1, 'Dion': 1, 'Bridewell': 1, 'alderman': 1, 'nolle': 1, 'prossed': 1, 'bribes': 1, 'bootlegging': 1, 'holdups': 1, 'safe-cracking': 1, 'pistoleers': 1, 'knuckle-duster': 1, 'bullyboys': 1, 'question-and-answer': 1, "Who'll": 1, 'Forty-second': 1, 'Forty-third': 1, 'wooed': 1, 'conferring': 1, 'organised': 1, 'fraternisation': 1, 'ex-convicts': 1, 'heelers': 1, 'sold-out': 1, 'Detectives': 1, 'Dever': 1, 'dishonouring': 1, 'felons': 1, 'fixers': 1, 'recognised': 1, 'honoured': 1, '$2500': 1, 'stickpin': 1, 'pestering': 1, 'rubies': 1, 'blatancy': 1, 'Belshazzar': 1, 'fraternized': 1, '1928-29': 1, 'tributes': 1, 'marshalled': 1, 'bribers': 1, 'forging': 1, 'ballooning': 1, 'euphoric': 1, 'self-aggrandisement': 1, 'swaggering': 1, 'truculence': 1, 'vulpine': 1, 'enraged': 1, 'blandness': 1, 'bodyguard': 1, 'prize-fight': 1, 'referee': 1, 'Hirschey': 1, 'gambler-politician': 1, 'beer-running': 1, 'gowned': 1, 'tuxedoed': 1, 'nighters': 1, 'wounding': 1, 'ricocheted': 1, 'unhurt': 1, 'braggadocio': 1, 'beer-runners': 1, 'beer-runner': 1, 'Dionie': 1, 'Irishman': 1, 'double-crossing': 1, 'amity': 1, 'speak-easy': 1, 'Saltis-McErlane': 1, 'Druggan-Lake': 1, 'brash': 1, 'recklessness': 1, 'Sides': 1, "gang's": 1, 'marshalling': 1, 'freight-car': 1, 'Sibley': 1, 'brazenness': 1, '1750': 1, 'carted': 1, 'Krakatoa': 1, 'Sumatra': 1, 'inundations': 1, 'archaeologists': 1, 'Lisbon': 1, '1755': 1, '1596': 1, 'swamped': 1, '1869': 1, 'Ponoluu': 1, '320': 1, "Lagrange's": 1, 'bathers': 1, 'Reefs': 1, 'denuded': 1, 'Tugaru': 1, 'landslides': 1, 'lulled': 1, 'Oceanography': 1, "islands'": 1, 'steepest': 1, 'seaquake': 1, 'Pololu': 1, 'luminosity': 1, 'luminescent': 1, 'Noctiluca': 1, 'miliaris': 1, 'bottom-living': 1, 'diatoms': 1, 'Sagami': 1, 'Gratified': 1, 'tsunami-warning': 1, 'Geodetic': 1, 'pressure-measuring': 1, 'notifying': 1, 'Attu': 1, 'seismographs': 1, 'alerts': 1, 'wave-travel': 1, 'top-priority': 1, 'Kamchatka': 1, '17:07': 1, 'seismograph': 1, 'seismic': 1, "quake's": 1, '158': 1, 'longitude': 1, '23:30': 1, 'marooned': 1, '$800,000': 1, 'overemphasized': 1, 'Superstition': 1, '1,800': 1, 'Causes': 1, 'Catastrophe': 1, 'Leet': 1, 'Limerick': 1, 'Shannon': 1, 'valor': 1, 'banditos': 1, 'Pancho': 1, 'Cav': 1, 'Melbourne': 1, 'Wiry': 1, 'burr-headed': 1, 'splattered': 1, 'steed': 1, 'blind-folded': 1, 'soldiering': 1, 'non-com': 1, 'Maneuvers': 1, 'four-syllable': 1, 'shamrock': 1, 'Gouldings': 1, 'ould': 1, 'bugler': 1, "Custer's": 1, 'Margarito': 1, 'ROTC': 1, 'RA': 1, 'non-commissioned': 1, 'Luzon': 1, 'fodder': 1, 'overran': 1, "Cav's": 1, 'machine-gun': 1, 'Burst': 1, 'regrouped': 1, 'cavalrymen': 1, 'imbued': 1, 'diversionary': 1, 'withering': 1, 'Enemy': 1, 'Troops': 1, 'Reinforcements': 1, 'paddies': 1, 'pistol-whipped': 1, 'Brevet': 1, "regiment's": 1, 'Patton': 1, 'Mesa': 1, 'Lock': 1, 'supposes': 1, 'reckons': 1, 'imperfectability': 1, 'approachable': 1, 'doctrinally': 1, 'antithetical': 1, 'Proximate': 1, 'defer': 1, 'Sino-Soviet': 1, 'consisently': 1, 'U.S.-Soviet': 1, 'Jameson': 1, 'Campaigne': 1, 'Myth': 1, "Soviets'": 1, 'Overwhelming': 1, 'incurably': 1, 'Cominform': 1, 'Fearful': 1, 'skirmishes': 1, 'parliaments': 1, 'clandestine': 1, 'undercover': 1, 'neutralize': 1, 'auxiliaries': 1, 'troubie': 1, 'Cambodia': 1, "Sukarno's": 1, 'avowed': 1, 'pretensions': 1, 'Kassem': 1, 'adamantly': 1, 'Kikiyus': 1, 'Wilsonian': 1, 'Anti-Americanism': 1, 'unqualifiedly': 1, 'espousing': 1, 'counter-successes': 1, 'purposively': 1, 'Guatemalan': 1, '7:10': 1, 'unshaven': 1, 'mortars': 1, 'Gunfire': 1, '7:50': 1, 'din': 1, 'Sandalwood': 1, 'Holes': 1, 'thoroughfares': 1, 'rubble': 1, 'Mortars': 1, "ambassador's": 1, '9-11': 1, 'hit-and-run': 1, 'terrorists': 1, 'buffaloes': 1, 'Oregonians': 1, 'Patagonians': 1, 'phis': 1, 'pirogues': 1, 'majestically': 1, 'slender-waisted': 1, 'frangipani': 1, 'colonized': 1, '$1.60': 1, 'Attopeu': 1, 'Dung': 1, 'Muong': 1, 'rickety': 1, 'overloaded': 1, 'Garrett': 1, 'boun': 1, 'escorts': 1, 'spurned': 1, 'Highness': 1, 'Land-Rover': 1, 'Churchillian': 1, 'mien': 1, 'seven-inch': 1, 'Luger': 1, '105-degrees': 1, 'Keng': 1, 'Kok': 1, 'Silkworms': 1, 'cicadas': 1, 'notebooks': 1, 'spleen-crushing': 1, 'dispensary': 1, 'Viphakone': 1, 'Beaver': 1, 'doctorate': 1, 'USOM': 1, 'infirmary': 1, '2,500': 1, 'nation-building': 1, 'joked': 1, 'soldiery': 1, 'villager': 1, 'stumping': 1, 'Crossing': 1, '4,000-foot': 1, 'Briefly': 1, 'Bolovens': 1, 'Plateau': 1, 'Brotherhood': 1, 'Soukhouma': 1, 'Peaceful': 1, 'baci': 1, 'well-wishing': 1, '261': 1, 'split-bamboo': 1, 'villagers': 1, 'festering': 1, 'accords': 1, 'Maier': 1, 'Spinrad': 1, 'querulously': 1, "teen-agers'": 1, 'inhabiting': 1, 'Intermarriage': 1, 'fourteen-year-old': 1, 'inconveniently': 1, 'kosher': 1, 'nonobservant': 1, 'college-oriented': 1, '45.6': 1, 'exertions': 1, 'American-Jewish': 1, 'best-sellers': 1, 'non-college': 1, 'morale-enhancing': 1, 'contradistinction': 1, 'buttressed': 1, 'expansively': 1, 'self-enclosed': 1, 'ambiance': 1, 'Midwood': 1, 'self-congratulation': 1, 'inconsiderable': 1, 'cozy': 1, 'detribalize': 1, 'unimpeachably': 1, 'unavailing': 1, 'certitudes': 1, 'overprotective': 1, 'overprotection': 1, 'sorority': 1, 'co-ordinates': 1, 'sallying': 1, 'Westhampton': 1, 'junior-year-abroad': 1, 'acculturation': 1, 'Marjorie': 1, 'Morningstar': 1, 'nubile': 1, 'fraternities': 1, 'sororities': 1, 'marts': 1, 'watchings': 1, 'pinnings': 1, 'ringings': 1, 'scrupulously': 1, 'Erwin': 1, 'Fife': 1, 'foppish': 1, 'flamboyantly': 1, 'mascara': 1, 'hairdos': 1, 'galled': 1, 'cornstarch': 1, 'hastening': 1, 'menstruation': 1, 'tansy': 1, 'beefsteak': 1, 'Salted': 1, 'salves': 1, 'epsom': 1, 'Butter': 1, "Cow's": 1, 'arabic': 1, 'mucilage': 1, 'quickest': 1, 'cobwebs': 1, 'amputated': 1, 'chaw': 1, 'fractious': 1, 'Veronica': 1, 'Tetanus': 1, 'Rabies': 1, 'madstones': 1, 'hydrophobia': 1, 'cauterize': 1, 'nosebleed': 1, 'nostril': 1, 'Nosebleed': 1, 'nonpoisonous': 1, 'Felons': 1, 'felon': 1, 'Mud': 1, 'Chiggers': 1, 'Bathing': 1, 'Ant': 1, 'bluing': 1, 'mosquito': 1, 'handier': 1, 'soapy': 1, 'Bedbugs': 1, 'Bed': 1, 'slats': 1, 'alum': 1, 'Kerosene': 1, 'glutinous': 1, 'cross-eyed': 1, 'Shingles': 1, 'gentian': 1, 'erysipelas': 1, 'dram': 1, 'borax': 1, 'Itching': 1, 'bloodroot': 1, 'growths': 1, 'Frostbite': 1, 'eucalyptus': 1, 'chilblains': 1, 'Chilblains': 1, 'tincture': 1, 'capsicum': 1, 'Boils': 1, 'molasses': 1, 'veracious': 1, 'calluses': 1, 'drip': 1, 'Saliva': 1, 'wakening': 1, 'sulphur': 1, 'eave': 1, 'Sore': 1, 'arnica': 1, "calf's-foot": 1, "pioneer's": 1, 'Pains': 1, 'sprains': 1, 'plenipotentiary': 1, 'genii': 1, 'shippers': 1, 'tainted': 1, 'negociants': 1, 'sou': 1, 'cornered': 1, 'meal-to-meal': 1, 'palates': 1, 'beginner': 1, 'crus': 1, 'renown': 1, 'infra': 1, 'requisites': 1, 'recondite': 1, 'purveyor': 1, 'Visigoths': 1, 'exhaustible': 1, 'pocketbooks': 1, 'dries': 1, 'Burgundies': 1, 'corks': 1, 'Seasonal': 1, 'Prolonged': 1, 'furnaces': 1, 'banishing': 1, 'purists': 1, 'purism': 1, 'Dijon': 1, 'tulip-shaped': 1, 'warms': 1, 'effaces': 1, "wine's": 1, 'half-bottles': 1, 'Tregnums': 1, 'Jeroboams': 1, 'Methuselahs': 1, 'Imperiales': 1, 'Sauternes': 1, 'Barsacs': 1, 'Pouilly-Fuisse': 1, 'Chablis': 1, 'Over-chilling': 1, 'Saintsbury': 1, "d'Yquem": 1, 'Montrachet': 1, 'tannin': 1, 'puckering': 1, 'cradles': 1, 'frowns': 1, 'shortcut': 1, 'aerate': 1, 'Decanting': 1, 'aerates': 1, 'clarets': 1, 'muddy-tasting': 1, 'Alsatians': 1, 'overseer': 1, 'citing': 1, "Gorham's": 1, 'amicably': 1, 'accede': 1, 'Liberia': 1, 'fifty-two': 1, 'philantrophy': 1, 'twelve-year-old': 1, 'child-bearing': 1, '$7,000': 1, '$6,666.66': 1, 'manumitted': 1, 'waive': 1, 'Courier': 1, 'Ears': 1, 'mid-April': 1, 'Lydia': 1, 'Cassius': 1, 'annoyances': 1, 'abolitionist': 1, 'civility': 1, 'upriver': 1, 'antislavery': 1, 'freedom-conscious': 1, 'solicitousness': 1, 'levee': 1, 'chattels': 1, 'jubilation': 1, "Martin's": 1, 'Parish': 1, 'Excitement': 1, 'red-turbaned': 1, 'curtseyed': 1, 'fruitlessly': 1, 'Hopedale': 1, 'Canandaigua': 1, 'Ambassador-at-Large': 1, 'Gauguin': 1, 'Toulouse-Lautrec': 1, 'Degas': 1, 'Matisse': 1, 'Kuhn': 1, 'Kenzo': 1, 'Okada': 1, 'Albers': 1, 'Femmes': 1, 'dans': 1, 'Jardin': 1, 'pragmatism': 1, 'scholar-businessman': 1, 'Arbor': 1, 'Hitch': 1, 'co-author': 1, 'Stimson': 1, 'memoir': 1, "Artists'": 1, 'Labouisse': 1, 'Guthman': 1, 'Bartholf': 1, 'writer-turned-painter': 1, 'Time-Life': 1, 'semi-abstract': 1, 'co-ordinator': 1, 'paratroopers': 1, 'post-Inaugural': 1, 'cased': 1, 'deputized': 1, 'trouble-shooter': 1, 'officio': 1, 'first-families': 1, 'attainments': 1, "Frost's": 1, 'impresario': 1, 'tempest': 1, 'eight-and-a-half-foot': 1, 'sculpted': 1, 'Gutzon': 1, 'Spokesmen': 1, 'tradition-minded': 1, 'sculptors': 1, 'exiling': 1, 'decrying': 1, 'Hoping': 1, 'memorialized': 1, 'hustle': 1, 'Shevchenko': 1, "TR.'s": 1, 'tablets': 1, 'Stonehenge': 1, "Udall's": 1, 'hodgepodge': 1, 'hewed': 1, 'Resolute': 1, 'browsing': 1, 'Beaux-Arts': 1, 'pier-table': 1, 'gaucherie': 1, 'pencil-and-sepia': 1, 'Jean-Honore': 1, 'Fragonard': 1, 'Wildenstein': 1, "Madison's": 1, 'vermeil': 1, 'hollowware': 1, 'Biddle': 1, 'vexatious': 1, 'flanking': 1, 'monumentality': 1, 'unsuccessfully': 1, 'razing': 1, 'USO': 1, "Square's": 1, 'elms': 1, "Hanover's": 1, 'rakish': 1, 'sophisticate': 1, 'citybred': 1, 'unequaled': 1, 'wildest': 1, 'roaringest': 1, 'Prexy': 1, "tam-o'-shanter": 1, "Dickey's": 1, 'retriever': 1, 'informality': 1, 'Thaddeus': 1, 'Seymour': 1, 'beauteous': 1, 'damsel': 1, 'temptingly': 1, 'sang-froid': 1, 'Ledyard': 1, '1773': 1, 'unappreciated': 1, 'refresh': 1, 'skis': 1, 'Intercollegiate': 1, 'ski-joring': 1, 'Skiway': 1, "Holt's": 1, 'terrains': 1, 'Moosilauke': 1, 'Ravine': 1, 'hand-hewn': 1, 'Mountaineering': 1, 'climbs': 1, 'Bait': 1, "Woodman's": 1, 'competes': 1, 'sawing': 1, 'sawmill': 1, "tug-o'-war": 1, 'inviolability': 1, "Dan'l": 1, "Webster's": 1, '1769': 1, 'earl': 1, 'Tribes': 1, 'civilizing': 1, 'christianizing': 1, 'Pagans': 1, "Wheelock's": 1, 'trackless': 1, '1771': 1, 'retinue': 1, 'punchbowl': 1, 'underclassman': 1, 'harangued': 1, 'aboriginal': 1, 'three-hundred-foot': 1, 'commencements': 1, 'decorous': 1, 'sixty-nine': 1, 'Jewett': 1, "college's": 1, '1,107': 1, 'attesting': 1, 'C.C.N.Y.': 1, 'Bowdoin': 1, 'twenty-nine': 1, 'curriculums': 1, 'Tuck': 1, 'B.S.': 1, 'outscoring': 1, '694': 1, 'espouses': 1, 'brashness': 1, 'Emeritus': 1, 'stableman': 1, 'Vinnicum': 1, 'iota': 1, 'Standard-Times': 1, 'itinerant': 1, 'shady': 1, 'incriminating': 1, 'Questioned': 1, "Bridget's": 1, "Knowlton's": 1, 'tighter': 1, 'disbelieve': 1, 'Weybosset': 1, 'Sawyer': 1, 'bloodstains': 1, 'trial-book': 1, 'exonerated': 1, 'disbelieved': 1, "Lizzie's": 1, "Harrington's": 1, 'myopia': 1, 'retell': 1, 'Bethlehem': 1, 'Bordens': 1, 'withal': 1, 'Elmira': 1, 'schoolmate': 1, 'astronomer': 1, 'bright-looking': 1, 'black-eyed': 1, '1874': 1, 'Diman': 1, "Diman's": 1, 'onward': 1, 'zoology': 1, "Maitland's": 1, 'Croix': 1, 'Customs': 1, 'Guizot': 1, 'Lecky': 1, "Lucy's": 1, 'importunately': 1, '1,212': 1, 'glee-club': 1, 'organist': 1, 'Pension': 1, 'discernment': 1, 'exquisiteness': 1, 'well-modulated': 1, '1909-10': 1, 'brunt': 1, 'Buttrick': 1, 'Tapley': 1, 'Acting-President': 1, 'boilers': 1, 'Halls': 1, 'Copp': 1, 'Celia': 1, 'sorest': 1, "Sophia's": 1, 'half-sister': 1, 'pains-taking': 1, 'self-effacing': 1, 'radiating': 1, 'sheet-metal': 1, 'Formally': 1, 'trade-preparatory': 1, 'distributive': 1, 'Adult': 1, 'work-study': 1, 'out-of-school': 1, 'tamp': 1, 'inequality': 1, 'learners': 1, 'stenography': 1, 'majored': 1, 'typewriting': 1, 'Located': 1, 'redevelopment': 1, 'vandalism': 1, 'leguminous': 1, 'Soybeans': 1, 'tofu': 1, 'miso': 1, 'tempeh': 1, 'Soybean': 1, 'grits': 1, 'Peanuts': 1, 'Blanched': 1, 'seedcoats': 1, 'carbohydrate': 1, 'Argentina': 1, '1957-1958': 1, 'forages': 1, 'nonfood': 1, 'castor': 1, 'wood-oil': 1, 'perilla': 1, 'oiticica': 1, 'Oils': 1, 'beautifying': 1, 'resinlike': 1, 'semidrying': 1, 'plated': 1, 'Castor': 1, 'castorbeans': 1, 'hydraulically': 1, 'Almond': 1, 'perfumery': 1, 'fragrances': 1, 'adulterated': 1, 'plum': 1, 'Liquid': 1, 'Sizable': 1, 'mahua': 1, 'shea': 1, 'tubers': 1, 'Starch': 1, 'food-processing': 1, 'Gums': 1, 'quince': 1, 'fleawort': 1, 'carob': 1, 'guar': 1, 'Water-soluble': 1, 'thickeners': 1, 'stabilizers': 1, 'dispersing': 1, 'Guar': 1, 'thickens': 1, 'dressings': 1, 'stabilizes': 1, 'Quince': 1, 'wave-setting': 1, 'lotions': 1, 'laxative': 1, '117': 1, 'Locust': 1, 'slurries': 1, 'seedcoat': 1, 'cashews': 1, 'hazelnuts': 1, 'pecans': 1, 'Almonds': 1, 'pistachio': 1, 'Chestnuts': 1, 'Coconuts': 1, 'Exports': 1, 'spicy': 1, 'sudsing': 1, 'saponins': 1, 'varnish': 1, 'cumara': 1, 'perfumes': 1, 'tagua': 1, 'endosperm': 1, 'egg-sized': 1, 'turnery': 1, 'sago': 1, 'jobs-tears': 1, 'Asiatic': 1, 'Bead': 1, 'islanders': 1, 'stringing': 1, 'Handmade': 1, 'medicinal': 1, 'alkaloids': 1, 'castorbean': 1, 'colchicum': 1, 'nux': 1, 'vomica': 1, 'stramonium': 1, 'Flaxseed': 1, 'plasters': 1, 'Peanut': 1, 'diluents': 1, 'seed-bearing': 1, 'flavorings': 1, 'coriander': 1, 'Single-seeded': 1, 'carrot': 1, 'cumin': 1, 'dill': 1, 'angelica': 1, 'fenugreek': 1, 'cardamom': 1, 'pods': 1, 'toasted-nut': 1, 'halvah': 1, 'Beverages': 1, 'Per': 1, 'Cocoa': 1, 'cocoa': 1, 'cacao': 1, 'Arrack': 1, 'brewed': 1, 'Brewers': 1, 'malted': 1, 'Distillers': 1, 'malt': 1, 'Seed': 1, 'cottonseed': 1, 'oilseed': 1, 'brewing': 1, 'distilling': 1, '15.8': 1, "locatin'": 1, "seekin'": 1, "marchin'": 1, "'nough": 1, "'emselves": 1, 'blizzards': 1, 'die-up': 1, "Followin'": 1, "skinnin'": 1, "brandin'": 1, 'humped': 1, "showin'": 1, 'hailstorm': 1, 'pilgrims': 1, 'hot-blooded': 1, 'Hereford': 1, 'open-face': 1, 'hothouse': 1, 'Holstein': 1, 'cattaloe': 1, 'hybrid': 1, 'bovines': 1, "cowboy's": 1, 'knowed': 1, 'strippers': 1, "speakin'": 1, "confusin'": 1, 'Mixed': 1, 'steers': 1, 'turn-out': 1, "Shootin'": 1, "gettin'": 1, "crouchin'": 1, "a-stoopin'": 1, "ginnin'": 1, "chousin'": 1, 'hindquarters': 1, "standin'": 1, "referrin'": 1, "Shippin'": 1, 'grass-fed': 1, 'grassers': 1, "dustin'": 1, "chargin'": 1, "Injun's": 1, 'Injuns': 1, 'freighters': 1, "Listenin'": 1, 'bullwhackers': 1, 'Whoa': 1, 'Haw': 1, "callin'": 1, 'wohaws': 1, "Tailin'": 1, "overtakin'": 1, "seizin'": 1, "producin'": 1, "'bout": 1, 'heave': 1, "strainin'": 1, 'unmanageable': 1, 'longhorns': 1, "darin'": 1, "tailin's": 1, 'Bull': 1, "pop'lar": 1, "yellin'": 1, "cowhand'd": 1, "Seizin'": 1, "bustin'": 1, "Rammin'": 1, "peggin'": 1, 'splotches': 1, 'brindle': 1, 'brockle': 1, 'lobo': 1, 'yeller': 1, 'mealynose': 1, "lighter'n": 1, 'mealynosed': 1, 'Sabinas': 1, "colorin'": 1, 'Sonora': 1, 'yaks': 1, 'Yaqui': 1, 'buckskins': 1, 'speckles': 1, "appearin'": 1, 'zorrillas': 1, 'polecat': 1, 'Yeller': 1, 'yellerish': 1, "Countin'": 1, "driftin'": 1, "sellin'": 1, 'byword': 1, 'saloonkeeper': 1, 'Murrin': 1, "meetin'": 1, 'herd-owner': 1, "wearin'": 1, 'Cheer': 1, "prevailin'": 1, "buyin'": 1, "examinin'": 1, "seller's": 1, "considerin'": 1, "rep'tation": 1, "denyin'": 1, "redeemin'": 1, "becomin'": 1, "bustlin'": 1, "rustlin'": 1, "startin'": 1, 'cowhands': 1, 'mavericks': 1, 'zebra': 1, 'Comanche': 1, 'perpendicularly': 1, 'honeycombed': 1, 'lava': 1, 'Hyena': 1, 'Sounder': 1, 'Rim': 1, 'Rastus': 1, 'Rake': 1, 'fox-hounds': 1, 'Simba': 1, 'galloping': 1, 'cheering': 1, 'baying': 1, 'lava-rocks': 1, 'forefeet': 1, 'Intuition': 1, 'Nairobi': 1, 'lionesses': 1, 'bluffing': 1, 'nipped': 1, 'recoiled': 1, 'encircle': 1, 'treading': 1, 'undergrowth': 1, 'Fourth-of-July': 1, 'mauling': 1, 'poke': 1, 'cave-like': 1, "lions'": 1, 'rawboned': 1, 'warningly': 1, 'cheetah': 1, 'cowpony': 1, 'Baldy': 1, 'ropers': 1, 'Tossing': 1, "camera's": 1, 'roped': 1, 'sideshow': 1, 'oversight': 1, 'parishes': 1, 'grievous': 1, 'complacent': 1, 'polity': 1, 'Shintoism': 1, 'chumminess': 1, 'Epistles': 1, 'Bonhoffer': 1, 'agreeableness': 1, 'reconciliation': 1, 'congeniality': 1, 'foundation-stone': 1, 'shuts': 1, 'Divergent': 1, 'Bela': 1, 'Vasady': 1, 'bifocal': 1, 'ecumenists': 1, 'Jellyby': 1, 'Borrioboola-Gha': 1, 'Peepy': 1, 'ecumenist': 1, 'unspectacular': 1, 'introverted': 1, 'starkly': 1, 'sub-Christian': 1, 'stewardship': 1, 'Desiring': 1, 'Rancher': 1, 'buggies': 1, 'Fords': 1, 'scampering': 1, 'enraptured': 1, 'yelps': 1, 'suspenders': 1, 'umpire': 1, "G'ahn": 1, 'Coastal': 1, 'Jidge': 1, 'Two-Head': 1, 'eccentricities': 1, "Capone's": 1, "Sande's": 1, "Wales'": 1, 'sorriest': 1, 'Baseman': 1, 'Pegler': 1, 'armament': 1, 'irritant': 1, 'orate': 1, 'flagpoles': 1, 'exhilarated': 1, 'Yale-Army': 1, 'Goodwill': 1, 'Spalding': 1, 'Era': 1, 'toiled': 1, 'stingy': 1, 'Comiskey': 1, 'brewery': 1, 'Barrow': 1, 'Huggins': 1, '1923-27': 1, 'millionaires': 1, 'Huston': 1, 'Ruppert': 1, 'wrappers': 1, 'Fenway': 1, 'Waite': 1, 'Schang': 1, 'playboy': 1, 'mightiest': 1, 'Lazzeri': 1, 'Koenig': 1, 'Pipgras': 1, 'gray-thatched': 1, 'Combs': 1, 'Thevenow': 1, 'red-necked': 1, '-ing': 1, 'ineluctable': 1, 'modality': 1, 'martyrdom': 1, 'fifty-one': 1, 'tobacco-juice': 1, 'superimposing': 1, 'denominators': 1, 'effectual': 1, 'Hypothesizing': 1, 'epigenetic': 1, 'motherhood': 1, 'Erickson': 1, 'irreversibly': 1, 'SNP': 1, 'alter-parents': 1, 'role-experimentation': 1, 'peer-group': 1, 'indoctrinated': 1, 'nursery-': 1, 'shamed': 1, 'work-paralysis': 1, 'carreer': 1, 'role-experiment': 1, 'Childhood': 1, 'consderations': 1, 'Adolescents': 1, 'much-discussed': 1, 'polarize': 1, 'either-or': 1, "no-man's-land": 1, 'evinced': 1, 'mirrored': 1, 'Lohmans': 1, 'censured': 1, 'asocial': 1, 'flagrantly': 1, 'adduce': 1, 'viva': 1, 'voce': 1, 'elephantine': 1, 'uncalled': 1, 'Redding': 1, 'Inventors': 1, 'costive': 1, 'caricatured': 1, 'Bleak': 1, 'strictures': 1, 'infringements': 1, 'acidulous': 1, 'long-overdue': 1, 'litigants': 1, 'lineal': 1, 'rims': 1, 'cross-fertilization': 1, 'wouldbe': 1, 'unlicensed': 1, 'freebooters': 1, 'trafficked': 1, 'parts-suppliers': 1, 'Purely': 1, 'accessory': 1, 'beneficient': 1, 'sapping': 1, 'Nordyke': 1, 'flour-milling': 1, "mid-1890's": 1, 'Anxious': 1, 'industry-wide': 1, 'Wilfred': 1, 'Coffin': 1, 'Vandervoort': 1, 'royalty-free': 1, 'persuasions': 1, 'Aventine': 1, 'laurel': 1, 'Retrace': 1, 'Alessio': 1, 'Oleanders': 1, 'Prisca': 1, 'Viale': 1, 'Aventino': 1, 'palazzi': 1, 'by-passed': 1, 'Teatro': 1, 'Marcello': 1, 'Capitoline': 1, 'Portico': 1, 'Octavia': 1, 'Climb': 1, 'Tribuna': 1, 'Funari': 1, 'Fontana': 1, 'delle': 1, 'Tartarughe': 1, 'Tortoises': 1, 'dolphin': 1, 'Italo-American': 1, 'ivy-covered': 1, 'Falegnami': 1, 'Arenula': 1, 'Cairoli': 1, 'Ai': 1, 'Catinari': 1, 'Giubbonari': 1, 'Arco': 1, 'Pellegrini': 1, '1540': 1, 'Rubens': 1, 'tipping': 1, 'barrel-vaulted': 1, 'magnolia': 1, 'Vicolo': 1, 'Venti': 1, '1514': 1, '12:00': 1, 'Lurcat': 1, 'Campo': 1, 'Fiori': 1, 'Valle': 1, 'assassinated': 1, 'Tosca': 1, 'Canestrani': 1, 'russet-colored': 1, 'oblong': 1, "Domitian's": 1, 'open-air': 1, 'inundated': 1, 'Circus': 1, 'Maxentius': 1, 'grottoes': 1, 'Borromini': 1, 'Pace': 1, 'Sibyls': 1, 'cloisters': 1, 'Donato': 1, "Bramante's": 1, 'Corsia': 1, 'Agonale': 1, 'Madama': 1, 'Medici': 1, 'Giustiniani': 1, 'Rotonda': 1, 'best-preserved': 1, 'Agrippa': 1, 'Hadrian': 1, 'Isis': 1, 'twenty-nine-foot-wide': 1, 'Seminario': 1, 'Ignazio': 1, 'Sacrestia': 1, 'terra-cotta-colored': 1, 'Burro': 1, 'Bergamaschi': 1, '10:00': 1, 'Alemagna': 1, 'creams': 1, 'patisseries': 1, 'Rare': 1, 'shiftless': 1, "Harlem's": 1, 'insuperably': 1, 'unnerving': 1, 'civil-rights': 1, 'impenetrable': 1, 'Crow': 1, 'not-less-deadly': 1, 'tidy': 1, 'dispensing': 1, 'deplore': 1, 'madhouse': 1, 'Johannesburg': 1, 'Buchenwald': 1, 'Thirdly': 1, 'embarrassingly': 1, "Southerner's": 1, 'taboos': 1, 'carnality': 1, 'lynched': 1, 're-examines': 1, 'rioted': 1, 'riots': 1, 'Stalinist-corrupted': 1, 'provocateurs': 1, 'Stalinist': 1, 'revolutionists': 1, 'Motion-picture': 1, 'snips': 1, 'headsman': 1, 'Wizard': 1, 'Menlo': 1, 'one-minute': 1, 'travelogues': 1, 'Cinerama': 1, 'Plow': 1, 'Broke': 1, 'Narrative': 1, 'illusionary': 1, 'climaxes': 1, 'Linking': 1, 'endows': 1, '35-mm.-wide': 1, 'incalculable': 1, 'one-reel': 1, 'overpowers': 1, 'honky-tonk': 1, 'geniuses': 1, 'footage': 1, "telegrapher's": 1, 'unthinking': 1, 'Staggeringly': 1, 'stereophonic': 1, 'purveyors': 1, 'survives': 1, 'perishes': 1, 'higher-': 1, 'co-opting': 1, 'Co-optation': 1, '11.2': 1, 'insignificance': 1, '17.3': 1, 'fraternize': 1, 'suitability': 1, 'balances': 1, 'illumines': 1, 'cross-purposes': 1, 'insulate': 1, 'schism': 1, 'crystallize': 1, 'countervailing': 1, 'rearguard': 1, 'stabilities': 1, 'keynotes': 1, 'rubric': 1, 'illuminate': 1, 'imprisons': 1, 'penurious': 1, 'Traders': 1, 'intendants': 1, 'parsimonious': 1, 'insurrections': 1, 'Toulouse': 1, 'Dependent': 1, 'Kaskaskia': 1, 'director-general': 1, 'Concessionaires': 1, 'Engages': 1, 'storehouses': 1, 'superieure': 1, 'Louisiane': 1, 'disaffected': 1, '50,000': 1, 'Choctaw': 1, 'Laude': 1, 'Diron': 1, 'ire': 1, 'Cherokees': 1, '1720': 1, 'massacred': 1, 'Venturesome': 1, 'Factions': 1, 'enticements': 1, '1724': 1, 'Boisbriant': 1, '1727': 1, 'conciliate': 1, "Indians'": 1, '1730': 1, 'revolted': 1, 'pillaged': 1, '1731': 1, '20,000,000': 1, 'indemnity': 1, '1,450,000': 1, 'Thenceforth': 1, 'half-blood': 1, 'artisans': 1, 'coureurs': 1, 'bois': 1, 'Salmon': 1, 'intendant': 1, '1732': 1, 'probity': 1, 'entrusting': 1, "Treasury's": 1, 'restrains': 1, 'kaleidoscope': 1, "congressman's": 1, 'Tampering': 1, 'infuriate': 1, 'subdues': 1, 'gazes': 1, 'largesse': 1, 'do-gooders': 1, 'spoiling': 1, 'dyspeptic': 1, 'peccadilloes': 1, 'junketeering': 1, "Cicero's": 1, 'franc': 1, 'Notre-Dame': 1, 'unrelenting': 1, 'Diplomats': 1, 'groveling': 1, 'heartbreak': 1, 'penury': 1, 'Loy': 1, 'Undersecretary': 1, "Executive's": 1, 'paralyze': 1, "Dulles's": 1, 'thirsted': 1, 'McLeod': 1, 'Bohlen': 1, 'mauler': 1, 'crocodile': 1, 'Fretting': 1, 'eschewing': 1, 'bureaucrats': 1, "Acheson's": 1, 'trampling': 1, 'tumbrels': 1, 'treasonous': 1, 'outwit': 1, "mid-1950's": 1, 'penchant': 1, 'ninety-eight': 1, 'legations': 1, 'funeral-accessories': 1, 'Thirty-fourth': 1, 'cement-and-glass': 1, 'chauffeured': 1, 'caviar': 1, 'poseur': 1, 'crasher': 1, 'Lothario': 1, 'chanceries': 1, 'home-office': 1, 'anti-missile': 1, 'Mikhail': 1, 'Georgi': 1, 'Zaroubin': 1, "announcer's": 1, 'run-of-the-mine': 1, 'Fyodor': 1, 'Pavlovitch': 1, "embalmers'": 1, 'Speeches': 1, 'Rotarians': 1, "McCarthy's": 1, 'Toasting': 1, "senator's": 1, 'hard-bitten': 1, 'punditry': 1, "Arabs'": 1, 'Arabs': 1, 'Arabians': 1, 'Saud': 1, 'Arabia': 1, 'Arabian-American': 1, "Saud's": 1, "Hagerty's": 1, 'bromides': 1, 'Saudi-American': 1, 'Twenty-one': 1, 'elusiveness': 1, "Israel's": 1, 'anarchic': 1, "Nasser's": 1, 'relaying': 1, 'Golda': 1, 'Meir': 1, 'interned': 1, 'unbound': 1, 'Spiritual': 1, 'Geisha': 1, 'artful': 1, 'pampered': 1, 'Rockettes': 1, 'Morikawa': 1, 'middle-school': 1, "Yoshimoto's": 1, 'diety': 1, 'Gambling': 1, 'Nikko': 1, 'Nishimo': 1, 'prewar': 1, "Fumio's": 1, '9:00': 1, '6:00': 1, 'unagi': 1, 'ice-cold': 1, 'Fuji': 1, "Washizu's": 1, 'less-hurried': 1, 'Uno': 1, "Uno's": 1, 'American-trained': 1, 'artfulness': 1, 'alumnae': 1, 'municipally-sponsored': 1, 'widows': 1, 'Graduates': 1, "maid's": 1, "Masu's": 1, 'USIS': 1, 'indivisible': 1, 'indiscriminating': 1, 'decentralization': 1, 'self-defeat': 1, 'Philco-sponsored': 1, 'smooching': 1, 'doers': 1, 'devastate': 1, 'pre-conditions': 1, 'despoiled': 1, 'sit-in': 1, 'jiu-jitsu': 1, 're-establish': 1, 're-moralizing': 1, 're-establishing': 1, 'non-violently': 1, 'Mennonites': 1, 'Christ-like': 1, 'love-in-action': 1, 'amounting': 1, 'Billions': 1, 'diabolical': 1, '1307': 1, 'non-discrimination': 1, 'egghead': 1, 'left-of-center': 1, 'shibboleths': 1, 'womb-to-tomb': 1, "liberal's": 1, 'Waist-High': 1, 'roomful': 1, 'state-supported': 1, 'Yankee-hatred': 1, 'leavening': 1, 'Souths': 1, 'Belief': 1, 'Virginians': 1, 'tenaciously': 1, 'tidewater': 1, 'enclaves': 1, 'long-settled': 1, 'lowlands': 1, 'Anglophilia': 1, 'humbled': 1, 'Carolinas': 1, 'miscegenation': 1, 'veiling': 1, 'sharers': 1, 'pre-World-War-': 1, 'Britannic': 1, 'Wars': 1, 'racists': 1, 'reactionaries': 1, 'Northeners': 1, 'reaping': 1, 'egalitarianism': 1, 'gastronomy': 1, 'non-Western': 1, 'reexamination': 1, 'avaricious': 1, 'Pax': 1, 'Britannica': 1, 'articulation': 1, 'implanted': 1, 'night-watchman': 1, 'victorious': 1, 'Court-packing': 1, 'Ratified': 1, 'wallowing': 1, 'Hands-off': 1, "state's-responsibility": 1, 'redefined': 1, 'substantively': 1, 'non-Soviet': 1, 'validating': 1, 'supranationalism': 1, 'Reference': 1, 'feudalism': 1, 'epitomizes': 1, 'glorifies': 1, 'socal': 1, 'febrile': 1, 'worldwide': 1, 'fervors': 1, 'wreak': 1, 'subduing': 1, 'cornucopia': 1, 'quirks': 1, 'dissipating': 1, 'Complementing': 1, 'seminal': 1, 'indivisibility': 1, 'internal-external': 1, 'exemplifies': 1, 'High-level': 1, 'supplanted': 1, 'launch-control': 1, 'sidearms': 1, 'pistol-packing': 1, 'instrument-jammed': 1, 'cockpits': 1, 'compartments': 1, 'unceasing': 1, 'Readiness': 1, 'unleash': 1, 'Accidental': 1, 'scenarios': 1, 'hypothesize': 1, 'pre-emption': 1, 'inhabit': 1, 'forefingers': 1, 'darting': 1, 'arclike': 1, 'semicircular': 1, 'Unanimously': 1, 'Ikle': 1, 'meek-mannered': 1, 'Swiss-born': 1, 'RAND': 1, 'nonprofit': 1, 'accidental-war': 1, 'Warning': 1, 'Thule': 1, 'NORAD': 1, 'Offutt': 1, 'Telephones': 1, 'Teletypes': 1, 'Alternate': 1, 'last-ditch': 1, 'KC-135': 1, 'routings': 1, 'senders': 1, 'authenticate': 1, 'counterchallenge': 1, 'authentications': 1, 'clobber': 1, 'singlehandedly': 1, 'ingeniously': 1, 'gold-phone': 1, "SAC's": 1, 'controller': 1, 'colonels': 1, 'mans': 1, 'Movable': 1, 'floor-to-ceiling': 1, 'Beallsville': 1, 'ruffles': 1, "controller's": 1, 'dull-gray': 1, "Power's": 1, 'beige': 1, 'klaxon': 1, 'X-ray-proof': 1, 'authentication': 1, 'authenticator': 1, "B-52's": 1, 'fail-safe': 1, 'cryptographic': 1, 'six-man': 1, 'go-to-war': 1, 'sniffing': 1, 'pathos': 1, 'gulley': 1, 'runner': 1, 'capering': 1, 'cranelike': 1, 'discoverer': 1, 'puddle': 1, 'cruelest': 1, 'ravines': 1, 'scuttling': 1, 'moonlike': 1, 'saltbush': 1, 'bluebush': 1, 'malignancy': 1, 'Bean': 1, 'paddock': 1, 'ten-by-ten-mile': 1, 'grazer': 1, 'well-equipped': 1, 'peeping': 1, 'mummified': 1, 'twenty-mile': 1, 'unfulfilled': 1, 'falters': 1, 'misperceives': 1, 'weakens': 1, 'shunning': 1, 'gimbaled': 1, 'navigating': 1, 'flatland': 1, 'navigate': 1, 'chaps': 1, 'speedometer': 1, 'camped': 1, 'column-shaped': 1, 'dingo': 1, 'scabbed': 1, 'malnourished': 1, 'buggers': 1, 'sockets': 1, 'repellent': 1, 'rhythmical': 1, 'woven-root': 1, 'woomera': 1, 'spear-throwing': 1, 'boomerang': 1, 'burnished': 1, 'cosmetic': 1, 'tabac': 1, 'calligraphers': 1, 'metalsmiths': 1, "Abbas's": 1, 'nightingales': 1, 'canals': 1, 'promenades': 1, 'aromatick': 1, 'nisf-i-jahan': 1, 'Afghans': 1, 'Safavids': 1, 'encroached': 1, 'Chahar': 1, 'Bagh': 1, 'mile-long': 1, 'poplar': 1, 'Chehel': 1, 'Sotun': 1, 'zur': 1, 'khaneh': 1, 'chalk-white': 1, 'daises': 1, 'sojourner': 1, 'aesthetes': 1, 'lutihaw': 1, 'mustachioed': 1, 'teahouses': 1, 'slick-headed': 1, 'vintner': 1, 'ghazal': 1, 'pleasance': 1, '1657': 1, 'sun-baked': 1, 'arcaded': 1, 'facaded': 1, 'spandrels': 1, 'frescoed': 1, 'capacious': 1, 'apses': 1, 'understructure': 1, 'light-flared': 1, 'massing': 1, 'Bakhtiari': 1, 'khan': 1, 'rheum': 1, 'Kajar': 1, 'princes': 1, 'limousines': 1, 'hawkers': 1, 'prosceniums': 1, 'ghazals': 1, 'Saadi': 1, 'arak': 1, 'mullah': 1, 'fissured': 1, 'Fought': 1, 'Iraj': 1, 'sweet-tongued': 1, "lover's": 1, 'interred': 1, 'sepulchred': 1, 'arabesque': 1, 'Frist': 1, 'ist': 1, 'wiederum': 1, 'verstrichen': 1, 'sind': 1, 'sieben': 1, 'Jahr': 1, 'Dutchman': 1, 'directorship': 1, 'rescinded': 1, 'lightens': 1, 'stop-overs': 1, 'Muzak': 1, 'nolens': 1, 'volens': 1, 'five-and-a-half': 1, 'Czerny': 1, 'Etudes': 1, 'Municipal': 1, 'escapade': 1, 'Gymnasium': 1, 'conservatory': 1, 'Otto': 1, "Klemperer's": 1, 'von': 1, 'Korngold': 1, 'Manon': 1, 'Lescaut': 1, "Falla's": 1, 'Vida': 1, 'Breve': 1, "Berg's": 1, 'Wozzek': 1, 'Kleiber': 1, "Schonberg's": 1, 'heute': 1, 'auf': 1, 'morgen': 1, "Erdmann's": 1, 'sonata': 1, 'Cellist': 1, 'Emanuel': 1, 'Feuermann': 1, 'Bronislaw': 1, 'Hubermann': 1, 'founder-conductor': 1, "Toscanini's": 1, 'Falstaff': 1, 'Marmi': 1, 'Viareggio': 1, 'Boheme': 1, 'masterpieces': 1, 'Accademia': 1, 'Carlisle': 1, 'Curtin': 1, "Read's": 1, 'Burle': 1, 'Samba': 1, 'Concertante': 1, 'Jacob': 1, 'Lateiner': 1, 'Das': 1, 'Lied': 1, 'Erde': 1, 'Bruno': 1, 'Bernstein': 1, 'Ich': 1, 'habe': 1, 'Amt': 1, 'aber': 1, 'keine': 1, 'Meinung': 1, 'Collection': 1, 'Rembrandt': 1, 'Lorrain': 1, 'reminisced': 1, 'Heine': 1, 'Etruscan': 1, 'round-table': 1, 'Bayerische': 1, 'Rundfunk': 1, 'uninterested': 1, 'doubtingly': 1, 'forthrightly': 1, 'Incapable': 1, 'surmount': 1, 'Argonauts': 1, 'Heroic': 1, 'consequential': 1, 'Eldest': 1, 'transplanted': 1, "printer's": 1, 'philanthropist': 1, "colonists'": 1, 'moderating': 1, "colony's": 1, 'Retiring': 1, 'pre-Revolutionary': 1, 'precocity': 1, 'Federalist': 1, 'two-term': 1, 'acumen': 1, 'power-starved': 1, 'rotund': 1, 'obstinate': 1, 'phrasemaking': 1, 'controversialists': 1, 'vitriol': 1, 'Dickinson': 1, 'piddling': 1, 'castigated': 1, 'Conway': 1, 'gratify': 1, "Burr's": 1, 'actuarial': 1, 'mentor': 1, 'Gridley': 1, 'funding': 1, 'Talleyrand': 1, 'legality': 1, 'legislatures': 1, 'confiscating': 1, 'ex-Tory': 1, 'continentally': 1, 'super-imposed': 1, 'displacing': 1, 'Nineties': 1, 'polarizing': 1, 'nationalists': 1, 'Resolves': 1, 'Hamiltonians': 1, 'rechartering': 1, 'Hamiltonian': 1, 'atune': 1, 'Hamilton-oriented': 1, 'nullifiers': 1, 'Resolve': 1, 'perpetuated': 1, 'Pandora': 1, 'Nostalgic': 1, 'Erskine': 1, 'Georgians': 1, 'Dow-Jones': 1, 'cornbread': 1, 'juleps': 1, 'overexploited': 1, 'accolades': 1, 'eulogize': 1, 'white-suited': 1, 'big-daddy': 1, 'rankest': 1, 'wide-sweeping': 1, '47.1%': 1, 'avalanche': 1, 'Bankhead': 1, 'McGruder': 1, 'Buena': 1, 'Vista': 1, 'localisms': 1, '126,000': 1, 'city-dweller': 1, 'Capote': 1, 'reveling': 1, 'Gothicism': 1, 'hypnotically': 1, 'testings': 1, 'contenting': 1, 'white-dominated': 1, 'sit-ins': 1, 'self-assertion': 1, 'subservience': 1, 'amorphously': 1, 'socio-political': 1, 'woolly-headed': 1, 'mutters': 1, 'yassuhs': 1, "sho'": 1, 'nufs': 1, 'massuh': 1, 'Faulknerian': 1, 'Lucas': 1, 'Beauchamps': 1, 'Presenting': 1, 'glaringly': 1, 'non-representation': 1, "Wheeler's": 1, 'Peaceable': 1, 'wavers': 1, "Mitchell's": 1, 'Tara': 1, 'overexploitation': 1, 'romanticizing': 1, 'Twilight': 1, 'Regionalism': 1, 'miasmal': 1, 'minutely': 1, 'autopsied': 1, 'bemoans': 1, 'northerner': 1, 'bewilders': 1, 'befuddles': 1, 'razorback': 1, 'effluvium': 1, 'backwoods-and-sand-hill': 1, 'subhumanity': 1, 'Disneyland': 1, 'make-believe': 1, 'validly': 1, 'Dreiser': 1, 'Dos': 1, 'Passos': 1, 'assailants': 1, 'masterfully': 1, 'overpowering': 1, 'grapple': 1, 'cyclorama': 1, 'Rauschenberg': 1, 'neo-dadaist': 1, 'Summerspace': 1, 'Images': 1, 'Reflections': 1, 'diaphanous': 1, 'dance-theatre': 1, 'loosens': 1, 'finial': 1, 'depersonalized': 1, 'accouterments': 1, 'animized': 1, "Olson's": 1, 'disdains': 1, 'metre': 1, 'surrealism': 1, 'incongruous': 1, 'brushwork': 1, 'urgencies': 1, 'rotations': 1, 'invert': 1, 'oracles': 1, 'Avant-garde': 1, 'depiction': 1, 'Merle': 1, 'catapulting': 1, 'recklessly': 1, "Pollock's": 1, 'Midi': 1, 'front-back': 1, 'outpouring': 1, 'godlike': 1, 'kaleidescope': 1, 'motional': 1, 'Movements': 1, 'Merce': 1, 'slaps': 1, 'inviolable': 1, 'adheres': 1, 'Compromise': 1, 'bloodiest': 1, 'Atlantica': 1, 'upholders': 1, 'Know-nothings': 1, 'emigrating': 1, 'Dictionaries': 1, 'Articles': 1, '1781': 1, 'drafters': 1, 'coerced': 1, 'unalienable': 1, 'Preamble': 1, 'Defence': 1, 'Blessings': 1, 'Posterity': 1, 'preambles': 1, 'abhorred': 1, 'Message': 1, 'grimmer': 1, '214,938': 1, 'Commander-in-Chief': 1, '140,414': 1, 'disunion': 1, 'confederations': 1, '70,524': 1, 'coalesced': 1, 'entropy-increasing': 1, 'nucleic': 1, 'Lavoisier': 1, 'Archimedes': 1, 'standstill': 1, 'coexist': 1, 'Consitutional': 1, 'breakwaters': 1, 'Mortals': 1, 'discernable': 1, 'remembrances': 1, 'ritualized': 1, 'reiterates': 1, 'solstice': 1, 'periodicity': 1, 'terrestial': 1, 'instituting': 1, 'planetoid': 1, 'staved': 1, 'clench': 1, 'unwitting': 1, 'toto': 1, 'determing': 1, 'compulsions': 1, 'exhortations': 1, 'bio-': 1, 'imminence': 1, 'hallucinations': 1, 'unanswered': 1, 'nihilistic': 1, 'astute': 1, 'nihilism': 1, 'rough-hewn': 1, 'unsharpened': 1, 'Unruly': 1, 'self-acceptance': 1, "L'Arcade": 1, 'world-shattering': 1, 'Heidegger': 1, 'invades': 1, 'Plays': 1, 'Endgame': 1, "Krapp's": 1, 'never-predictable': 1, 'Malesherbes': 1, 'Royale': 1, 'unexplainable': 1, 'Didi': 1, 'Gogo': 1, "Hamm's": 1, 'Clov': 1, 'life-death': 1, 'inscrutability': 1, "Augustine's": 1, 'Jansenist': 1, 'Communion': 1, 'irksome': 1, 'orphans': 1, 'Lunch': 1, 'systematization': 1, 'not-strictly-practical': 1, 'Rises': 1, "Hemingway's": 1, 'Fantasia': 1, 'Unconscious': 1, 'vehemently': 1, 'hipster': 1, 'godhead': 1, 'Astarte': 1, 'Ishtar': 1, 'Yahwe': 1, 'Dionysus': 1, 'orgone': 1, 'Barbarians': 1, 'multivalent': 1, 'sexualized': 1, 'ungratified': 1, 'domesticity': 1, 'flappers': 1, 'necking': 1, 'glorification': 1, 'beatific': 1, 'flirt': 1, 'Righteous': 1, 'deathward': 1, 'predestined': 1, 'apocalypse': 1, 'explodes': 1, 'promptings': 1, 'unproductive': 1, 'non-conformists': 1, 'dialectical': 1, 'Monogamy': 1, 'abjectly': 1, 'abortions': 1, 'monogamous': 1, 'pyschiatrist': 1, 'disapproves': 1, 'unbearably': 1, 'Boredom': 1, 'reigns': 1, 'Tijuana': 1, 'disaffiliated': 1, 'Nymphomaniacs': 1, 'junkies': 1, 'lesbians': 1, 'derelicts': 1, 'outcasts': 1, 'shack-up': 1, 'leagued': 1, 'persecutory': 1, 'hirelings': 1, 'self-analysis': 1, 'all-night': 1, 'obsessions': 1, 'Loveways': 1, 'spares': 1, 'Mecca': 1, 'smalltime': 1, 'orgasms': 1, 'Carried': 1, "Ginsberg's": 1, 'Howl': 1, 'disoriented': 1, 'Apollonian': 1, 'derangement': 1, 'Ortega': 1, 'Gasset': 1, 'Alley': 1, 'hollyhocks': 1, 'hundred-leaf': 1, 'creeper': 1, 'corner-': 1, 'open-work': 1, 'cast-iron': 1, 'pinnacle': 1, 'squeak': 1, 'clang': 1, 'greenness': 1, 'grandfathers': 1, 'syringa': 1, 'sweet-shrub': 1, 'snowball': 1, 'rose-of-Sharon': 1, 'balm-of-Gilead': 1, 'clothesline': 1, 'apple-tree': 1, 'queerer': 1, 'queerest': 1, 'mill-wheel': 1, 'mill-pond': 1, 'remonstrate': 1, 'chrysanthemums': 1, 'dusty-slippered': 1, 'brown-edged': 1, 'hot-colored': 1, 'dining-room': 1, 'half-gourd': 1, 'great-grandmother': 1, 'oleanders': 1, 'wall-flowers': 1, 'heliotrope': 1, 'woodshed': 1, 'plantain': 1, 'lilies': 1, 'rose-tea': 1, 'poppies': 1, 'myrtle': 1, 'prodigally': 1, 'hollyhock': 1, 'pink-petticoated': 1, 'larkspur': 1, 'minutiae': 1, 'Pale': 1, 'snapdragons': 1, 'seed-pods': 1, 'balsams': 1, 'fire-crackers': 1, 'red-and-yellow': 1, 'columbines': 1, 'round-tipped': 1, 'morning-glory': 1, 'blown-up': 1, 'waggling': 1, 'Fuzzy': 1, 'caterpillars': 1, 'snails': 1, 'squashed-looking': 1, 'straw-colored': 1, 'stabled': 1, 'faery': 1, 'creamy': 1, 'pocketed': 1, 'exteriors': 1, 'passers-by': 1, 'unselfconsciousness': 1, 'vine-embowered': 1, 'gate-post': 1, "Beauty's": 1, 'Rapunzel': 1, 'crocketed': 1, 'solitudes': 1, 'misinterpretation': 1, 'poor-white-trash': 1, 'latched': 1, 'drowsed': 1, 'hay-wagon': 1, 'gutter': 1, 'hub': 1, "huckster's": 1, 'forearms': 1, 'Sleepily': 1, 'half-reluctant': 1, 'Rhu-beb-ni-ice': 1, 'rhu-beb': 1, 'sing-song': 1, 'bumble-bee': 1, 'heeded': 1, 'slant-wise': 1, "trees'": 1, 'four-thirty': 1, 'sunshiny': 1, 'edgewise': 1, 'carriage-step': 1, 'unpaved': 1, 'steeply': 1, 'bucolic': 1, 'hoofmarks': 1, 'backyard': 1, 'coaxing': 1, 'thwack': 1, 'cowhide': 1, 'obscurely': 1, 'Amra': 1, 'birdlike': 1, 'poseurs': 1, 'decently': 1, 'unredeemed': 1, 'transvestitism': 1, 'horrifyingly': 1, 'artifice': 1, 'hackwork': 1, 'abjection': 1, 'collapses': 1, 'constatation': 1, 'enciphered': 1, 'Tonio': 1, 'Aschenbach': 1, 'transgression': 1, 'singularity': 1, 'Cipolla': 1, 'Professionally': 1, 'masquerading': 1, 'punishable': 1, 'artist-nature': 1, 'expressionistic': 1, 'platitudinous': 1, 'footpath': 1, 'widower': 1, 'cadaver': 1, 'psychopomp': 1, 'wretchedness': 1, 'imprecates': 1, "Piepsam's": 1, 'cur': 1, 'fox-terrier': 1, 'religiousness': 1, 'dialectically': 1, 'wrestlings': 1, 'unreflective': 1, 'unproblematic': 1, 'germinal': 1, 'Naphta': 1, 'expressiveness': 1, 'unthematic': 1, 'Bruegel': 1, 'characterizing': 1, 'Savonarola': 1, 'art-shop': 1, 'Bluthenzweig': 1, "painter's": 1, 'vanities': 1, 'terram': 1, 'cito': 1, 'velociter': 1, 'powerfulness': 1, 'unreason': 1, 'disintegrative': 1, 'sub-human': 1, 'quasi-mechanistic': 1, 'non-artistic': 1, 'uncaused': 1, 'solipsism': 1, 'Presupposed': 1, 'stratify': 1, 'unimpassioned': 1, "Auerbach's": 1, 'Incarnation': 1, 'Artistic': 1, 'rarified': 1, 'designations': 1, 're-living': 1, 'imagining': 1, 'recovers': 1, 'relatedness': 1, 'inextricable': 1, 'literalism': 1, 'vividness': 1, 'connote': 1, 'conventionalized': 1, 'carven': 1, 'clamors': 1, 'presuppositions': 1, 'uninvolved': 1, 'environing': 1, 'presuppose': 1, 'causally': 1, 'abstractive': 1, 'unities': 1, 'presupposition': 1, 'presentational': 1, 'interconnectedness': 1, 'non-interference': 1, 'melioration': 1, 'statisticians': 1, 'Hattiesburg': 1, 'humanely': 1, 'counter-attack': 1, 'socialize': 1, 'instancy': 1, "Heaven's": 1, 'Pursuit': 1, 'Tacitus': 1, 'Solitudinem': 1, 'faciunt': 1, 'pacem': 1, 'appellant': 1, "Taney's": 1, 'Dred': 1, 'talismanic': 1, 'Disquisition': 1, 'Jeffersonian': 1, 'aloofness': 1, 'THIDIU': 1, 'Affect': 1, 'Us': 1, 'insouciance': 1, "Y's": 1, 'fugitives': 1, 'tokenish': 1, 'professes': 1, 'willy': 1, 'nilly': 1, 'segregating': 1, "Whittier's": 1, 'Notebooks': 1, 'Complicity': 1, "Crane's": 1, 'Dragons': 1, "bondsman's": 1, 'unrequited': 1, 'toil': 1, 'taint': 1, 'slave-owners': 1, 'paternalistic': 1, 'Transcendental': 1, 'abstractionism': 1, 'unrealism': 1, 'Pilate': 1, 'Autobiography': 1, 'reprobating': 1, 'enslaving': 1, 'complaisance': 1, 'desensitized': 1, '1889': 1, 'agitated': 1, 'perchance': 1, 'post-Civil': 1, 'forty-eight': 1, 'adorns': 1, 'segregate': 1, 'Verner': 1, 'recreates': 1, 'Vadstena': 1, 'Vattern': 1, 'Deciding': 1, 'Gerome': 1, 'swart': 1, "beggar's": 1, 'unceasingly': 1, 'Vallfart': 1, 'Vandringsar': 1, 'Childe': 1, 'Fredrik': 1, 'acclaims': 1, 'poet-painter': 1, 'bazaars': 1, 'care-free': 1, 'indolence': 1, 'hedonism': 1, 'Nameless': 1, 'Immortal': 1, 'Paestum': 1, 'Naxos': 1, 'dwells': 1, "daylight's": 1, 'men-folk': 1, 'desultory': 1, 'Alienus': 1, 'storied': 1, 'Sardanapalus': 1, 'Tiveden': 1, 're-assumed': 1, 'Strindberg': 1, 'mediocrity': 1, "Strindberg's": 1, 'Karolinerna': 1, '1897-8': 1, "Tolstoy's": 1, 'concise': 1, 'idolized': 1, 'Macedon': 1, 'aspired': 1, '1709': 1, 'degenerated': 1, 'losers': 1, 'cheerfulness': 1, 'petulance': 1, 'regains': 1, 'Fredrikshall': 1, "Hero's": 1, 'Excellent': 1, 'detain': 1, 'Chieftains': 1, 'Svenskarna': 1, 'deras': 1, 'Hovdingar': 1, 'Admirably': 1, 'Lagerlof': 1, 'Birgitta': 1, 'teems': 1, 'Gustaf': 1, 'Vasa': 1, 'conqueror': 1, 'Gustavus': 1, 'Adolphus': 1, 'unpromising': 1, 'self-reliance': 1, 'hindmost': 1, 'anarchist': 1, '1880-1900': 1, '1890s': 1, 'Driven': 1, 'disguises': 1, 'compensates': 1, 'enforces': 1, 'deepening': 1, 'cocaine': 1, 'stimulants': 1, 'semi-catatonic': 1, 'vioiln': 1, 'misogynist': 1, 'arch-opponent': 1, 'Linked': 1, 'alter-ego': 1, 'lurks': 1, 'whodunnit': 1, 'Hercule': 1, 'Whimsey': 1, 'Sayers': 1, 'descendents': 1, "'20s": 1, 'outcast': 1, "Stout's": 1, 'demi-monde': 1, 'thrillers': 1, 'Ambler': 1, 'adventurers': 1, 'Burger': 1, 'Cramer': 1, "Spillane's": 1, 'Rolls': 1, 'timepiece': 1, 'Networks': 1, 'intonations': 1, '1,225': 1, 'half-life': 1, 'third-': 1, 'fourth-hand': 1, 'distortable': 1, 'distresses': 1, 'monitored': 1, 'target-hunting': 1, 'projectiles': 1, 'Commands': 1, 'combinable': 1, 'indoctrinating': 1, '55,987': 1, 'bottlenecks': 1, 'Finns': 1, 'mineralogy': 1, 'crystallography': 1, 'montmorillonites': 1, 'generalist': 1, 'incipience': 1, 'millenarianism': 1, 'naturalism': 1, 'utopianism': 1, 'Follows': 1, 'scrapped': 1, 'reposed': 1, 'charisma': 1, 'Egalitarianism': 1, 'Popularism': 1, 'industrialism': 1, "Revolution's": 1, 'Depression': 1, 'Materialism': 1, 'face-lifting': 1, 'Gatsby': 1, "Locke's": 1, 'Commune': 1, 'Newcastle': 1, 'Heresy': 1, 'Rousseauan': 1, 'classless': 1, 'ussr': 1, 'liberal-led': 1, 'undeclared': 1, 'Containment': 1, 'G.O.P.': 1, 'assiduity': 1, 'clamorous': 1, 'nascent': 1, 'assailing': 1, 'gyrations': 1, 'self-redefinition': 1, 'preferment': 1, "magazine's": 1, 'evangelist': 1, 'forefathers': 1, 'secularist': 1, 'testaments': 1, "Murray's": 1, 'panoramic': 1, 'cancers': 1, 'determinable': 1, 'sedentary': 1, 'social-political-economical': 1, 'amplify': 1, 'Offensive': 1, 'Contacts': 1, 'counter-offensive': 1, 'cutting-edge': 1, 'Porgy': 1, 'overrode': 1, 'reading-rooms': 1, 'photo-montage': 1, 'entrepreneurs': 1, 'contrive': 1, 'milquetoast': 1, 'ballyhoo': 1, 'Businesses': 1, 'sham': 1, 'unluckily': 1, 'quasi-governmental': 1, 'Proprietorship': 1, 'Avoiding': 1, 'short-range': 1, 'profit-motivated': 1, 'legacies': 1, 'anti-democratic': 1, 'fellow-employees': 1, '$10,000,000': 1, 'pin-curl': 1, 'self-locking': 1, 'irrationally': 1, 'Burleson': 1, 'Dies': 1, 'traitorous': 1, 'Demagogues': 1, "James'": 1, 'repress': 1, 'salable': 1, 'Criminals': 1, 'inmate': 1, 'pilfering': 1, 'Einsteinian': 1, 'scour': 1, '1290': 1, '1655': 1, 'market-place': 1, 'Pecorone': 1, '1558': 1, 'Griston': 1, 'Shaking': 1, '216': 1, 'pound-of-flesh': 1, 'Scotchman': 1, 'Tikopia': 1, 'Shylockian': 1, 'crafty': 1, 'fiendish': 1, 'abhorrent': 1, 'Torquemada': 1, 'Inquisitor-General': 1, 'cold-blooded': 1, 'besmirching': 1, 'resifted': 1, 'Palomar': 1, 'Californians': 1, "Leopard's": 1, 'Spots': 1, 'unchangeable': 1, 'short-story': 1, 'overworked': 1, 'half-moons': 1, 'anthropologists': 1, 'sociologists': 1, 'consigned': 1, 'False': 1, 'surfeit': 1, 'steprelationship': 1, 'ogress': 1, 'stepchild': 1, 'Deutsch': 1, 'Psychology': 1, '434': 1, 'deprecatory': 1, 'scientifically-trained': 1, 'Salk': 1, 'anti-polio': 1, 'vaccine': 1, 'forensic': 1, 'barnsful': 1, 'super-Herculean': 1, 'winnow': 1, 'mud-beplastered': 1, 'Assuredly': 1, 'stimulations': 1, 'successorship': 1, 'Rutstein': 1, 'simile': 1, 'Bulge': 1, 'disquieting': 1, 'bespeaks': 1, 'argumentation': 1, 'betraying': 1, 'Aspects': 1, 'gambles': 1, 'Risk': 1, 'infrequently': 1, 'fortune-happy': 1, 'syndicates': 1, 'ascribes': 1, 'silencing': 1, 'electorate': 1, 'evades': 1, 'utterances': 1, 'evasions': 1, 'disconcert': 1, 'questioners': 1, 'fragmentarily': 1, 'revoked': 1, 'singularly': 1, 'immoralities': 1, 'inconsistency': 1, 'interacts': 1, 'recipes': 1, 'theoriticians': 1, 'phenomenological': 1, 'floats': 1, 'Relativism': 1, 'paradigmatic': 1, 'determinability': 1, 'self-perceived': 1, 'analyzable': 1, "Maritain's": 1, 'anchoring': 1, 'warranty': 1, 'inevitabilities': 1, 'Unanalyzed': 1, 'Weil': 1, 'Guardini': 1, 'placeless': 1, 'Riesman': 1, 'dislocation': 1, 'force-fear': 1, 'progressivism': 1, 'subsistent': 1, 'adventitious': 1, 'exhausts': 1, 'ideational': 1, 'ontologically': 1, 'psychological-intellectual': 1, 'organismic': 1, 'visualizes': 1, 'bolstered': 1, 'selectivity': 1, 'externalization': 1, 'Smerdyakov': 1, 'father-murder': 1, 'Psychoanalytic': 1, 'Complex': 1, 'unknowing': 1, 'renews': 1, 'absorbs': 1, 'renouncing': 1, 'Incest': 1, 'Oedipal': 1, 'singling': 1, 'conspires': 1, 'prophesies': 1, 'Morel': 1, 'repels': 1, "Ortega's": 1, 'borrows': 1, 'seduced': 1, 'marvels': 1, 'burlesques': 1, 'reassembled': 1, 'irresistibly': 1, "Ellison's": 1, 'Invisible': 1, 'gathering-in': 1, 'bevor': 1, 'sinkt': 1, 'eine': 1, 'lange': 1, 'vielleicht': 1, 'tiefes': 1, 'Vergessen': 1, 'Vom': 1, 'retold': 1, 'interpolated': 1, 'pageantry': 1, 'not-knowing': 1, 'Wiligis': 1, 'adrift': 1, "infant's": 1, 'cask': 1, "Sibylla's": 1, 'suitor': 1, 'equilibriums': 1, 'reproof': 1, 'non-objects': 1, "'thirties": 1, 'Exhibited': 1, 'three-dimentional': 1, 'coherence': 1, 'thirty-year': 1, 'Seurat': 1, 'Gris': 1, 'Schapiro': 1, "Cimabue's": 1, "Poussin's": 1, 'Raphaels': 1, 'Poussins': 1, 'cubists': 1, 'Abstractionists': 1, 'Bauhaus': 1, '1914-1918': 1, 'migrate': 1, 'Rooseveltian': 1, 'non-figurative': 1, 'Holty': 1, 'heaps': 1, 'three-panel': 1, 'Double-Figure': 1, 'Fallen': 1, 'non-objective': 1, 'Loire': 1, 'prams': 1, 'cattle-car': 1, "Woolworth's": 1, 'deloused': 1, 'much-thumbed': 1, 'university-educated': 1, 'slave-laborers': 1, "camp's": 1, 'contingents': 1, 'Marquet': 1, 'briefcase': 1, 'Finot': 1, 'Moineau': 1, 'Desprez': 1, 'Shedding': 1, 'Vichy': 1, 'fellow-men': 1, 'Arbeitskommando': 1, 'rediscovering': 1, 'convalescing': 1, 'reincarnated': 1, 'kiosk': 1, 'golden-crusted': 1, 'ceremoniously': 1, 'doffing': 1, 'pomp': 1, "O'Donnell's": 1, 'besets': 1, 'Sutpen': 1, 'disintegrating': 1, "barn-burner's": 1, 'commercialism': 1, 'crassness': 1, 'untraditional': 1, 'apologist': 1, 'unquestioningly': 1, 'regimentation': 1, 'Basso': 1, 'romancers': 1, 'symbolists': 1, 'stream-of-consciousness': 1, 'deviated': 1, 'Swallow-Barn': 1, 'Meriwether': 1, 'best-selling': 1, 'sentimentalize': 1, 'tangential': 1, 'dynasties': 1, '1728': 1, 'Lubberlanders': 1, 'morocco-bound': 1, 'Addison': 1, 'indelicate': 1, 'Gilmore': 1, 'robustness': 1, 'vivify': 1, 'Ransy': 1, 'Sniffle': 1, 'horse-trading': 1, 'eye-gouging': 1, 'unliterary': 1, 'Bee-Hunter': 1, 'Suggs': 1, 'sharpness': 1, 'Sut': 1, 'Lovingood': 1, 'unmalicious': 1, 'subtler': 1, 'Hardscrabble': 1, 'tall-tale': 1, 'contemplates': 1, 'Advancement': 1, 'supernormal': 1, 'Humanist': 1, 'unfoldment': 1, 'side-conclusions': 1, 'evolutionists': 1, 'confinements': 1, "Craig's": 1, 'lethargies': 1, 'decencies': 1, 'volcanos': 1, 'relieving': 1, 'pleasantness': 1, 'sacrosanct': 1, 'self-criticism': 1, 'defeatists': 1, 'scoundrels': 1, 'corroding': 1, 'Oceana': 1, 'genie': 1, 'bossed': 1, 'autocratic': 1, 'autocracies': 1, 'constitutions': 1, 'Draco': 1, 'Cepheus': 1, 'Cassiopeia': 1, 'circumpolar': 1, "constellation's": 1, 'gnomon': 1, 'hull-first': 1, 'discoid': 1, 'ancients': 1, 'elliptical': 1, 'oviform': 1, 'superlunary': 1, 'sublunary': 1, 'viz.': 1, 'imcomplete': 1, 'cosmical': 1, 'substratum': 1, 'material-formal': 1, 'quickened': 1, 'projectile': 1, 'rectlinearly': 1, 'rectilinear': 1, 'embodiments': 1, 'partake': 1, 'Bluntly': 1, 'computational': 1, 'Halma': 1, "Theon's": 1, 'headings': 1, 'weld': 1, 'a-la-Aristotle': 1, 'predicting-machines': 1, 'longitudes': 1, 'latitudes': 1, 'confounding': 1, 'recurrently': 1, 'nonsystematic': 1, 'textbooks': 1, 'epicyclically': 1, 'deferents': 1, '20th-century': 1, 'three-body': 1, 'simpliciter': 1, 'epicyclical': 1, 'retrogradations': 1, 'intricately': 1, 'heliocentric': 1, 'arithmetized': 1, 'non-systematic': 1, 'Calculations': 1, 'dynamical': 1, 'Analogously': 1, 'student-physicists': 1, 'systematically-simple': 1, 'Axioms': 1, 'permissible': 1, 'axioms': 1, 'epicycle': 1, 'abberations': 1, 'lower-level': 1, 'datum': 1, 'unachieved': 1, 'Solving': 1, '1543': 1, 'reverberations': 1, 'Copernicus-the-astronomer': 1, 'Geocentricism': 1, 'unphysical': 1, 'triplication': 1, 'centric': 1, 'reference-points': 1, "planet's": 1, 'Ptolemaists': 1, 'novo': 1, 'Cusa': 1, 'Oresme': 1, "Sara's": 1, 'epitaph': 1, 'Sulamite': 1, 'giver': 1, 'demander': 1, 'exacted': 1, 'exasperating': 1, 'unwomanly': 1, 'importunities': 1, 'overconfident': 1, 'overstraining': 1, 'Anglo-Jewish': 1, 'oratorio': 1, 'Maccabeus': 1, 'Hanukkah': 1, "'76": 1, "Darwin's": 1, 'mothered': 1, 'Assyriology': 1, 'round-faced': 1, 'punster': 1, 'dazzle': 1, 'patronize': 1, 'eclipsed': 1, 'chignon': 1, 'Racie': 1, 'temerity': 1, 'Rodeph': 1, 'Shalom': 1, "Rabbi's": 1, 'twenty-page': 1, 'Sulamith': 1, 'familiarly': 1, 'Corbin': 1, 'Lombard': 1, 'Louisa': 1, "Alcott's": 1, 'Marmee': 1, 'hoydenish': 1, 'confidante': 1, 'Fun': 1, 'Personages': 1, 'Schoolmarm': 1, 'Dummkopf': 1, 'Soiree': 1, 'Musicale': 1, "Guthrie's": 1, 'Pupils': 1, "Hector's": 1, 'Andromache': 1, 'movingly': 1, 'strumming': 1, 'Laurie': 1, 'lovering': 1, 'Lobl': 1, 'Montenegrin': 1, 'flouting': 1, 'intentioned': 1, 'afflictions': 1, 'Flocks': 1, 'writs': 1, 'heavy-faced': 1, 'misdemeanants': 1, 'parley': 1, 'Norris': 1, 'harrumphing': 1, 'Micawber': 1, "K'ang-si": 1, 'faultless': 1, 'tepees': 1, 'dauntless': 1, 'planetarium': 1, 'Koch': 1, 'derogatory': 1, 'Milanoff': 1, "judge's": 1, 'harrassment': 1, 'liars': 1, 'breakers': 1, 'repulsed': 1, 'incanted': 1, "pride's": 1, 'insinuated': 1, 'exacerbations': 1, 'self-consuming': 1, 'overblown': 1, 'diva': 1, 'Millay': 1, 'plucking': 1, 'determinant': 1, 'sweet-throated': 1, 'yea': 1, 'transcendant': 1, 'croak': 1, 'capercailzie': 1, 'immodest': 1, 'scandalizing': 1, 'obscenity': 1, 'fancies': 1, 'tea-leaf': 1, 'psyches': 1, 'autumnal': 1, 'ahem': 1, 'mumble': 1, 'awkwardness': 1, 'mollycoddle': 1, 'self-betrayal': 1, 'shames': 1, 'prestidigitator': 1, 'distracting': 1, 'unsavory': 1, 'buffetings': 1, 'Helpless': 1, 'impediment': 1, 'frailest': 1, 'incontrovertible': 1, 'bads': 1, 'weasel': 1, 'engulfing': 1, 'dissatisfactions': 1, 'Yours': 1, 'noli': 1, 'tangere': 1, 'trundle': 1, 'precept': 1, "Baptist's": 1, 'pouted': 1, 'unseemly': 1, 'confidences': 1, 'alleviating': 1, 'gossiped': 1, 'thesaurus': 1, 'hobo': 1, 'rummaged': 1, 'arrangers': 1, 'harmonization': 1, 'musicologists': 1, 'Songbag': 1, 'ditty': 1, 'Appalachian': 1, 'skyscrapers': 1, 'gusher': 1, 'Schopenhauer': 1, 'abbreviations': 1, 'humly': 1, 'w': 1, 'tt': 1, 'dextrous-fingered': 1, 'seventy-four': 1, 'Andres': 1, "Segovia's": 1, 'disciplining': 1, 'aspires': 1, "Schopenhauer's": 1, 'freshborn': 1, "Tribune's": 1, 'Preferably': 1, '1162': 1, 'introductions': 1, 'Kalamazoo': 1, 'celerity': 1, '$27.50': 1, 'query': 1, 'fames': 1, 'bauble': 1, 'fifty-three': 1, 'limelight': 1, "Peoples'": 1, 'seventy-fifth': 1, 'intrude': 1, 'Classicist': 1, 'grapevines': 1, "Paus'l": 1, 'endearment': 1, 'pussycat': 1, 'soubriquet': 1, 'baptismal': 1, 'Photographer': 1, 'millinery': 1, 'Ursuline': 1, 'Ontario': 1, 'Twain': 1, 'saddened': 1, 'Urbana': 1, 'Thorstein': 1, 'Veblen': 1, 'fluency': 1, 'German-language': 1, 'panjandrum': 1, 'Appleton': 1, 'Athearn': 1, 'Oshkosh': 1, 'softens': 1, 'guerilla': 1, 'S-D': 1, 'subversion': 1, 'repudiating': 1, 'enmities': 1, 'deficits': 1, 'Respecting': 1, 'South-Asian': 1, 'launchings': 1, 'deployment': 1, 'shoulder-to-shoulder': 1, 'alluded': 1, 'sinews': 1, 'amassing': 1, 'resurgent': 1, "Stavropoulos'": 1, 'Dragoslav': 1, 'Protitch': 1, 'Farmington': 1, 'overcoats': 1, 'eighty-one': 1, "Cordier's": 1, "Gross's": 1, '195-page': 1, 'Constantin': 1, 'Philippe': 1, 'up-and-coming': 1, 'clean-top': 1, 'manila': 1, 'folder': 1, 'derogate': 1, 'Disciplinary': 1, 'bushel': 1, 'willfully': 1, 'memos': 1, 'Supposing': 1, 'back-issue': 1, 'libelous': 1, 'slanderous': 1, 'querying': 1, 'blackmailed': 1, 'Gotterdammerung': 1, 'Mick': 1, 'Alsing': 1, 'Andersen': 1, "Delegates'": 1, 'Widener': 1, 'Enquirer': 1, 'Chesly': 1, 'Ches': 1, "Shann's": 1, 'immoderate': 1, 'Henrik': 1, 'Kauffmann': 1, "diplomat's": 1, 'thirty-sixth': 1, 'Pickering': 1, "Dodge's": 1, 'coops': 1, 'pigpens': 1, 'Skipping': 1, 'frolics': 1, 'off-color': 1, 'sailorly': 1, 'profane': 1, 'homesickness': 1, 'kindest': 1, 'searchings': 1, 'midstream': 1, 'Orissa': 1, 'leadsman': 1, 'Judsons': 1, 'Newells': 1, 'consternation': 1, 'Relieved': 1, 'Hooghli': 1, 'spice-laden': 1, 'Hoogli': 1, 'Hindoo': 1, 'haystacks': 1, 'romantick': 1, 'indolently': 1, 'pagodas': 1, "Caravan's": 1, '1690': 1, 'Charnock': 1, 'Palaces': 1, 'tall-masted': 1, 'strange-sounding': 1, 'Bengali': 1, "Harriet's": 1, 'much-craved': 1, "Symes's": 1, 'Astra': 1, 'commandeered': 1, 'Irrawaddy': 1, 'Cruel': 1, 'Burmans': 1, 'Unspeakable': 1, 'daunted': 1, 'Directors': 1, 'unseasonable': 1, 'sarcastically': 1, 'Ridpath': 1, 'Apostles': 1, 'Coffee-House': 1, 'Tatler': 1, 'Preface': 1, "Sarum's": 1, 'Toland': 1, 'Tindal': 1, 'Convocations': 1, 'Wharton': 1, 'expelling': 1, 'Arbitrary': 1, 'Jacobite': 1, 'Treasonable': 1, 'Insinuations': 1, 'Terrours': 1, 'Hints': 1, 'Innuendos': 1, 'Sentiments': 1, 'Enemies': 1, 'compleated': 1, 'touchy': 1, 'Dowager': 1, 'Electress': 1, 'summons': 1, "Queen's": 1, 'Bolingbroke': 1, 'Schutz': 1, "Oxford's": 1, 'Measures': 1, "asham'd": 1, 'So-called': 1, 'libel': 1, 'Destroyer': 1, 'Character': 1, 'maudlin': 1, 'affronting': 1, 'prerogative': 1, 'Converts': 1, 'gibe': 1, 'Presbyterianism': 1, "Harley's": 1, "Bolingbroke's": 1, 'impiety': 1, 'insinuates': 1, 'cynically': 1, 'By-word': 1, 'favorer': 1, 'Allay': 1, 'malleable': 1, 'Artificer': 1, 'Favour': 1, 'seditious': 1, "Button's": 1, 'coffee-house': 1, 'feud': 1, 'Style': 1, 'Level': 1, 'Infamous': 1, 'Libel': 1, 'Facetious': 1, 'Tripe': 1, 'Bath': 1, 'Venerable': 1, 'Nestor': 1, 'Ironside': 1, 'Cr--spe': 1, 'Customhouse': 1, 'bobby-soxer': 1, 'Bracken': 1, 'mouthed': 1, 'emigrated': 1, '1747': 1, "lyricist's": 1, 'Jasper': 1, 'Greens': 1, 'evidencing': 1, 'Woodberry': 1, 'jazzy': 1, 'Strut': 1, 'Stuff': 1, 'Gullah': 1, 'expressivness': 1, 'half-brother': 1, 'encumbrances': 1, '$300,000': 1, 'best-hearted': 1, 'one-act-play': 1, 'fourth-flight': 1, 'walk-up': 1, 'washbasin': 1, 'apocryphal': 1, 'aspiring': 1, 'imprint': 1, 'malfeasant': 1, 'Holloway': 1, 'Gershwin': 1, 'Entrance': 1, 'stellar': 1, 'Meehan': 1, 'Mercers': 1, 'misplacing': 1, 'Rhythm': 1, "Satan's": 1, "Li'l": 1, 'Lamb': 1, 'Hoagy': 1, 'Snowball': 1, 'relyriced': 1, 'song-writing': 1, 'Ziggy': 1, 'Heusen': 1, 'Woodin': 1, '1932-33': 1, 'Hooray': 1, 'Tenderfoot': 1, 'Castles': 1, 'Whirling': 1, 'Dervish': 1, 'Jeepers': 1, 'Creepers': 1, 'puckish': 1, 'quasi-folk': 1, 'absentia': 1, "Harburg's": 1, "Arlen's": 1, 'eight-bar': 1, "There'll": 1, 'jot': 1, "Comin'": 1, 'spirituals': 1, 'Negroid': 1, 'folk-music': 1, 'Spirituals': 1, 'hallelujahs': 1, 'cubbyhole': 1, 'chairing': 1, 'terror-stricken': 1, 'unrehearsed': 1, 'skimpy': 1, 'convalescence': 1, 'battle-shattered': 1, 'pals': 1, "Herford's": 1, 'gnome': 1, 'jakes': 1, 'rest-room': 1, 'artist-author': 1, 'Waterloo': 1, "Pliny's": 1, 'peed': 1, 'disarranged': 1, 'Reporter': 1, 'fatboy': 1, 'well-fleshed': 1, 'Hospice': 1, 'barbaric': 1, 'self-ordained': 1, 'unfrocking': 1, 'S.S.': 1, "Demon's": 1, 'say-so': 1, 'wrong-o': 1, 'Statue': 1, "Vic's": 1, 'Gentlemen': 1, 'dream-ridden': 1, 'Duponts': 1, 'parlors': 1, 'monkey-gland': 1, 'sleuthing': 1, 'ring-around-the-rosie': 1, 'crepe': 1, 'spirit-gum': 1, 'Friars': 1, 'auburn': 1, 'Maximilian': 1, 'muff': 1, 'horn-rim': 1, 'mirthless': 1, 'riddance': 1, 'bucket-shop': 1, 'Nat': 1, 'Ferber': 1, 'Helm': 1, 'eleventh-floor': 1, 'W.R.': 1, 'Damon': 1, "Runyon's": 1, 'foisted': 1, 'syndicated': 1, 'Menas': 1, 'neurologist': 1, 'affable': 1, "Gregory's": 1, 'condolences': 1, 'Backstairs': 1, 'coax': 1, 'Dresses': 1, 'Hounds': 1, 'immortalized': 1, 'Christy': 1, 'manikin': 1, 'rhinestones': 1, 'memento': 1, 'Timmy': 1, 'wakened': 1, 'snow-white': 1, 'leashes': 1, 'tidied': 1, 'tab-lifter': 1, 'Hardings': 1, 'Rumania': 1, 'proudest': 1, 'frazzled': 1, "Emmett's": 1, 'Coupal': 1, 'muggy': 1, 'receptions': 1, 'Impressive': 1, 'enumeration': 1, 'non-Jews': 1, 'suppliers': 1, 'clannish': 1, 'monopolists': 1, 'cutthroat': 1, 'Diversity': 1, 'self-correcting': 1, 'recheck': 1, 'usefully': 1, 'self-victimized': 1, 'uncritically': 1, 'Predispositions': 1, 'redo': 1, 'Comprehensive': 1, 'epilogue': 1, 'Jewish-Gentile': 1, 'commonwealths': 1, 'Gentiles': 1, 'restructured': 1, 'inharmonious': 1, 'cumulate': 1, 'overburdened': 1, 'intercrisis': 1, 'remolding': 1, 'Sigmund': 1, 'psychoanalyst': 1, 'self-observation': 1, 'communicators': 1, 'pseudo-feeling': 1, 'pseudo-willing': 1, 'Flugel': 1, 'Ranyard': 1, 'Buber': 1, 'psychotherapeutic': 1, 'pre-literate': 1, 'prurient': 1, 'Seldes': 1, 'cognate': 1, "Beardsley's": 1, 'beautify': 1, 'F.S.C.': 1, 'Northrop': 1, 'deflated': 1, 'ineffable': 1, "Richards'": 1, 'earth-bound': 1, 'Wimsatt': 1, 'Cleanth': 1, 'compounding': 1, 'reconciling': 1, 'tensional': 1, 'stratagem': 1, 'devious': 1, 'fireman': 1, 'mastering': 1, 'imaginatively': 1, "Spinley's": 1, 'undereducated': 1, 'subtlety': 1, 'researchable': 1, 'Sensibility': 1, 'Interpersonal': 1, 'Behavior': 1, 'Asch': 1, 'transcultural': 1, 'obverse': 1, 'shallowness': 1, 'anaesthesia': 1, 'music-hall': 1, 'picture-palace': 1, 'Chaucer': 1, 'Cimabue': 1, 'cavemen': 1, 'colour-prints': 1, 'stylistic': 1, 'interpenetrate': 1, 'immediacies': 1, 'perfectibility': 1, 'literatures': 1, "Burns's": 1, "Hopkins'": 1, 'thunder-purple': 1, 'sea-beach': 1, 'plumed': 1, 'unplumbed': 1, 'estranging': 1, 'atypical': 1, 'Invictus': 1, 'self-mastery': 1, 'thematic': 1, 'Regarded': 1, 're-thinking': 1, 'ipso': 1, 'secondly': 1, 'scripture': 1, 'familarity': 1, 'Plutarch': 1, 'dialogues': 1, 'plundering': 1, "Hegel's": 1, 'unfit': 1, 'caveat': 1, 'disclaimed': 1, 'forgery': 1, 'joyful': 1, 'Judiciary': 1, 'coal-railroad': 1, 'Shearn': 1, '$60,000': 1, 'netting': 1, '$20,000,000': 1, 'Hatred': 1, 'pariah': 1, 'Inherently': 1, 'party-line': 1, 'bulldoze': 1, 'blazon': 1, 'infamy': 1, 'Lessons': 1, 'graybeard': 1, 'detestation': 1, 'terriers': 1, 'demoralizing': 1, 'old-line': 1, 'Platoons': 1, 'Offers': 1, 'magnates': 1, 'spoils': 1, 'bandwagon': 1, 'bellwethers': 1, 'Watterson': 1, 'Courier-Journal': 1, 'splenetic': 1, 'pro-Hearst': 1, "buildin'": 1, "Indiana's": 1, 'unblushing': 1, 'multi-millionaire': 1, 'retainers': 1, 'kingpin': 1, 'Ihmsen': 1, 'spanning': 1, 'money-minded': 1, 'Floradora': 1, 'hansom': 1, 'consular': 1, 'Messina': 1, 'Emmanuel': 1, 'Statuto': 1, 'Radetzky': 1, 'Galantuomo': 1, 'overemphasis': 1, 'Peel': 1, 'Nineteenth-century': 1, 'damning': 1, 'shortsightedness': 1, 'Characteristically': 1, "Grey's": 1, 'Northumberland': 1, 'marionettes': 1, 'Liberal-Radical': 1, 'temperately': 1, 'pre-French': 1, 'medley': 1, 'schoolboys': 1, 'deteriorates': 1, 'militantly': 1, 'Tolerance': 1, 'Wycliffe': 1, '1702-14': 1, 'charitably': 1, 'hazes': 1, 'evocation': 1, 'skilfully': 1, 'copes': 1, 'Franco-German': 1, 'immodesty': 1, 'Alarmed': 1, "d'identite": 1, 'bien': 1, 'Alors': 1, 'uproariously': 1, 'Visa': 1, 'compatriot': 1, 'Bravo': 1, 'backpack': 1, 'guardhouse': 1, 'vigil': 1, 'thoughtfulness': 1, 'ludicrousness': 1, 'eventfully': 1, 'Nouvelle': 1, 'brigade': 1, 'Sighting': 1, 'stateless': 1, 'necessitating': 1, 'tar-soaked': 1, 'crackled': 1, 'France-Germany': 1, "Grimm's": 1, 'Heidelberg': 1, 'Baden-Baden': 1, 'Stuttgart': 1, 'fitful': 1, '27th': 1, 'rasping': 1, 'regain': 1, 'Shake': 1, 'Campaign': 1, 'adieu': 1, 'pre-assault': 1, "Cleburne's": 1, 'parapet': 1, 'infantrymen': 1, 'breastworks': 1, 'Fourteenth': 1, 'Thirty-eighth': 1, "Buell's": 1, 'galloped': 1, 'Peach': 1, "Ward's": 1, 'Jonesborough': 1, 'reconnaissanace': 1, 'Armies': 1, "Hardee's": 1, 're-examined': 1, 'unmurmuring': 1, 'wholeheartedly': 1, '10:05': 1, 'perseverance': 1, 'inexplicably': 1, 'thirty-mile': 1, '22,807': 1, '37,081': 1, 'periscopes': 1, 'sharpshooters': 1, 'treetops': 1, 'forerunners': 1, 'presaged': 1, 'anesthetics': 1, 'o': 1, '272': 1, 'lithograph': 1, 'locomotives': 1, 'precedent-based': 1, 'horseman': 1, 'footman': 1, 'horseflesh': 1, 'retreats': 1, 'railways': 1, "Garrard's": 1, 'McPherson': 1, 'Mounted': 1, "McPherson's": 1, "Polk's": 1, 'galls': 1, 'Merited': 1, 'Patmore': 1, "M.'s": 1, 'Lymington': 1, 'scrupulosity': 1, 'Pantasaph': 1, 'confessions': 1, 'Wilde': 1, 'recommence': 1, 'Bohemian': 1, 'misunderstand': 1, 'Brien': 1, 'Godfrey': 1, 'Rushall': 1, 'Staffordshire': 1, 'deepen': 1, 'undeserved': 1, 'mementos': 1, 'father-brother': 1, 'lodgment': 1, 'purposed': 1, 'favour': 1, 'to-morrow': 1, 'Wilfrid': 1, 'inundating': 1, 'Ad': 1, 'Amicam': 1, "Connolly's": 1, 'Petrarchan': 1, "writer's": 1, "Song's": 1, 'Date': 1, "song's": 1, 'nobler': 1, 'Lightly': 1, 'bravest-feathered': 1, 'Whose': 1, 'dearer': 1, 'self-dramatization': 1, 'misfortunes': 1, 'Highest': 1, "Dian's": 1, 'Lap': 1, 'Vessel': 1, 'overtook': 1, 'Danchin': 1, 'vagrant': 1, "Meynell's": 1, 'judicious': 1, 'carefulness': 1, 'unquestionable': 1, 'unmethodical': 1, 'Reviewing': 1, 'K.C.': 1, 'cloth-of-gold': 1, 'Housman': 1, 'intellectuality': 1, 'allurement': 1, 'Tempter': 1, 'trekked': 1, 'Thence': 1, 'Podolia': 1, 'Yedisan': 1, 'Bug': 1, 'Zhitzhakli': 1, '1774': 1, 'legions': 1, 'annex': 1, 'Crimea': 1, 'Crescent': 1, 'suzerainty': 1, "Sea's": 1, 'lackadaisical': 1, 'Giaour': 1, 'Caucasus': 1, 'Carpathians': 1, 'marshlands': 1, 'Taurida': 1, 'Ekaterinoslav': 1, 'irregulars': 1, "Islam's": 1, 'Chamberlain': 1, 'longish': 1, 'arching': 1, 'quizzical': 1, 'Mephistopheles': 1, 'Ribas': 1, 'conniver': 1, 'fawned': 1, 'daggerman': 1, 'Czar': 1, 'stiletto': 1, 'Ligne': 1, 'Pallavicini': 1, 'Madrid': 1, 'Milan': 1, 'Chevalier': 1, 'Litta': 1, 'Saxony': 1, 'Anhalt-Bernburg': 1, 'kindnesses': 1, 'sincerest': 1, 'Damas': 1, "Littlepage's": 1, 'artillerist': 1, 'Prevost': 1, 'Segur': 1, 'subaltern': 1, "Jones's": 1, "Nassau's": 1, "Stanislas'": 1, 'Glayre': 1, 'Pe': 1, 'aide-de-camp': 1, '200-man': 1, 'Sarti': 1, 'caress': 1, 'rose-pink': 1, 'tapis': 1, 'Filigreed': 1, 'Araby': 1, 'billiard': 1, 'beribboned': 1, 'cuirassiers': 1, 'tufts': 1, 'lewdly': 1, 'nieces': 1, 'Bauer': 1, 'haughtiness': 1, 'personified': 1, 'collared': 1, 'agleam': 1, 'sulkily': 1, 'besiege': 1, 'eclat': 1, 'Vasilievitch': 1, 'fifty-ninth': 1, 'worn-faced': 1, 'furrows': 1, 'briskness': 1, 'warred': 1, 'Woe': 1, 'interviewee': 1, "don't-know's": 1, 'Despising': 1, 'mew': 1, 'oddities': 1, 'peculiarity': 1, 'best-educated': 1, 'dabbled': 1, 'knots': 1, 'Stanislas': 1, 'geopolitical': 1, 'ex-bandits': 1, 'Zaporogian': 1, 'Dnieper': 1, 'Sienkiewicz': 1, 'Sword': 1, 'resettlement': 1, 'scimitar-wielding': 1, 'skirmishers': 1, 'disorderliness': 1, 'plunderers': 1, 'tassels': 1, 'boors': 1, 'shambling': 1, 'cogs': 1, 'queued': 1, 'greatcoated': 1, 'jackbooted': 1, 'Semple-Lisle': 1, 'smatterings': 1, 'Transparent': 1, 'uremia': 1, 'disapprovingly': 1, 'thumped': 1, 'Klinico': 1, 'Brownapopolus': 1, 'Despina': 1, 'Messinesi': 1, 'Ilka': 1, 'outs': 1, 'amphitheater': 1, 'Atlantes': 1, 'engravings': 1, 'schoolbooks': 1, 'quicken': 1, 'awe-inspiring': 1, '1687': 1, 'bombarding': 1, 'Athena': 1, 'caryatides': 1, 'Porch': 1, 'Maidens': 1, "Girls'": 1, 'Propylaea': 1, 'nugget': 1, 'Ghiberti': 1, 'baptistery': 1, 'fluted': 1, 'Evzone': 1, 'pompons': 1, 'forgo': 1, 'crassest': 1, 'imcomparable': 1, 'Sakellariadises': 1, 'tramway': 1, 'lasts': 1, 'busses': 1, 'Bedtime': 1, 'raspberry': 1, 'braying': 1, 'servicemen': 1, 'coves': 1, 'hurdles': 1, 'Poseidon': 1, 'Gaunt': 1, 'scaffoldings': 1, 'fluting': 1, 'sea-food': 1, 'Piraeus': 1, 'Tertre': 1, 'tidbit': 1, 'galling': 1, 'lolling': 1, 'Ouzo': 1, 'relishing': 1, 'discard': 1, 'scurrilous': 1, 'underhandedness': 1, 'victor': 1, 'unenvied': 1, 'ridiculing': 1, 'Casca': 1, 'belittling': 1, 'vilifying': 1, 'innuendoes': 1, 'sticky-fingered': 1, 'Outraged': 1, 'vindicate': 1, 'perfidious': 1, 'pseudonym': 1, 'Jas.': 1, 'Preoccupied': 1, 'infighting': 1, 'rift': 1, 'One-armed': 1, 'frugally': 1, 'disgraceful': 1, 'tolerating': 1, 'stanchest': 1, 'Helena': 1, 'alliances': 1, 'stanch': 1, 'Friedrich': 1, 'Gerstacker': 1, 'detractors': 1, 'dreariness': 1, 'soulful': 1, 'Debating': 1, 'biographer': 1, 'half-crazy': 1, 'arch-heretic': 1, 'miscreant': 1, 'pestilent': 1, 'seducer': 1, 'minter': 1, 'exorbitant': 1, 'corrupter': 1, 'disturber': 1, 'familistical': 1, 'Angell': 1, 'neighbours': 1, 'Adelos': 1, 'clothier': 1, 'libertie': 1, '1637': 1, 'Antinomians': 1, 'powers-that-be': 1, 'Aldridge': 1, 'Prence': 1, 'knoe': 1, 'deport': 1, 'deluding': 1, '1638': 1, 'unconquerable': 1, '1640': 1, 'ruckus': 1, 'Asses': 1, 'freeman': 1, 'saucy': 1, 'Jack-an-Apes': 1, 'colonists': 1, 'foully': 1, 'bewitching': 1, 'bemaddening': 1, 'Familism': 1, 'inhabitation': 1, 'uncivil': 1, 'framer': 1, 'tertian': 1, 'ague': 1, 'agitator': 1, 'Gaspee': 1, 'bedlam': 1, 'Soconoco': 1, 'laborious': 1, 'circuitous': 1, 'embattled': 1, "sachems'": 1, 'miscreants': 1, 'blockhouse': 1, 'befuddling': 1, 'obscurities': 1, 'Demetrius': 1, 'obediences': 1, 'starre': 1, 'Remphan': 1, 'Chion': 1, 'heresy': 1, "Cotton's": 1, 'languished': 1, 'Beloved': 1, 'tombstones': 1, "doctors'": 1, 'prorate': 1, 'educations': 1, 'Effie': 1, 'Carneigie': 1, 'invalidism': 1, 'Merciful': 1, 'exclaim': 1, 'playwriting': 1, 'Niggertown': 1, 'Mannerhouse': 1, 'condense': 1, 'parsimony': 1, 'Kidder': 1, 'out-of-door': 1, 'self-energizing': 1, 'energized': 1, 'overdoing': 1, "Pilgrim's": 1, 'rhyming': 1, 'sin-ned': 1, 'repugnant': 1, 'impelling': 1, "Carlyle's": 1, 'navels': 1, 'bethought': 1, 'wronged': 1, 'reparation': 1, 'Beardslee': 1, 'Deity': 1, 'steward': 1, 'supra-personal': 1, 'self-righteousness': 1, 'corollaries': 1, 'occidental': 1, 'unburdened': 1, 'inheres': 1, 'Lambarene': 1, "MacDonald's": 1, 'Borneo': 1, 'Segura': 1, 'Tomonggong': 1, 'Koh': 1, 'Jens': 1, "Bjerre's": 1, 'Cannibal': 1, 'Wailbri': 1, 'cannibals': 1, 'degraded': 1, 'Ballard': 1, 'transplanting': 1, 'vitiates': 1, 'Montreux': 1, 'misrepresentations': 1, 'pantomimic': 1, 'tyrants': 1, 'irresolvable': 1, 'Poets': 1, 'dualism': 1, 'tempts': 1, "Poetry's": 1, 'gainers': 1, 'interrelationship': 1, 'allay': 1, 'superego': 1, 'Ion': 1, 'Apologie': 1, 'Poetrie': 1, '1595': 1, 'puritanical': 1, "Gosson's": 1, 'Playes': 1, 'Confuted': 1, "Ringler's": 1, 'Aroused': 1, '1642': 1, 'decreed': 1, 'stage-plays': 1, 'forborne': 1, 'cheere': 1, 'beguile': 1, 'levity': 1, 'eies': 1, 'burne': 1, 'Values': 1, '2,758': 1, '1,571': 1, '944': 1, '4,585': 1, 'value-problems': 1, 'naively': 1, 'character-education': 1, 'impresses': 1, 'whimsical': 1, 'value-orientations': 1, 'success-oriented': 1, 'goal-values': 1, 'instrumental-reward': 1, "occupation's": 1, 'creativity-oriented': 1, 'resigns': 1, 'M.D.': 1, 'once-popular': 1, 'Conservatism': 1, 'traditionalistic': 1, 'libertarian': 1, 'upperclassmen': 1, 'homogenization': 1, 'Detached': 1, 'college-educated': 1, 'toleration': 1, 'orientations': 1, 'apathetic': 1, 'gyroscopes': 1, 'traditionalized': 1, 'robotism': 1, 'overestimated': 1, 'faceless': 1, 'not-so-lonely': 1, 'Avowed': 1, 'freethinkers': 1, 'wrestling': 1, 'profoundity': 1, 'invulnerability': 1, 'socially-oriented': 1, 'Kluckhohn': 1, '1935-1955': 1, 'puritan': 1, 'work-success': 1, 'future-time': 1, 'relativism': 1, "riflemen's": 1, 'desirous': 1, 'Nathanael': 1, 'skirmished': 1, 'Edge': 1, 'messed': 1, 'warmhearted': 1, 'complimenting': 1, 'restitution': 1, 'barefooted': 1, "Howe's": 1, 'hindering': 1, 'worsened': 1, 'braved': 1, 'Posey': 1, 'Pickman': 1, 'slanders': 1, 'propagated': 1, 'exalt': 1, 'Abstracts': 1, 'recuperating': 1, 'hast': 1, 'heartfelt': 1, 'wickets': 1, 'patrols': 1, 'Barren': 1, 'harass': 1, 'Oneida': 1, 'riflemen-rangers': 1, 'unremitting': 1, 'temporize': 1, 'Valois': 1, 'circumspection': 1, "Amadee's": 1, 'Agnes': 1, 'dauphin': 1, 'Vienne': 1, 'peacemaking': 1, 'thirteenth-century': 1, 'Dauphine': 1, 'cession': 1, 'forfeited': 1, 'vassal': 1, 'Patrimony': 1, 'English-Scottish-French': 1, 'involvements': 1, 'impartiality': 1, "Boniface's": 1, 'tactlessness': 1, 'Tact': 1, 'possessor': 1, 'Clericis': 1, 'Laicos': 1, 'Unam': 1, 'Sanctam': 1, 'wielder': 1, 'vice-regent': 1, 'incomprehension': 1, 'Flotte': 1, 'Powicke': 1, 'Narbonne': 1, 'astuteness': 1, 'nobles': 1, 'Tipperary': 1, "Flotte's": 1, 'Normandy': 1, "Frenchman's": 1, 'dites': 1, 'vrai': 1, 'Loyal': 1, 'single-minded': 1, 'outmatched': 1, 'Courtrai': 1, 'Flemings': 1, 'evermounting': 1, 'barons': 1, 'Habsburg': 1, 'Guillaume': 1, 'Lausanne': 1, 'arbitrated': 1, '1298': 1, "D'Arlay": 1, 'Chalon-sur-Saone': 1, 'Burgundian': 1, 'Gautier': 1, 'Montfaucon': 1, "Othon's": 1, 'Vaudois': 1, 'Vere': 1, 'Lusignan': 1, "Carnarvon's": 1, 'Piers': 1, 'Gaveston': 1, 'Pontissara': 1, 'jocund': 1, 'envoys': 1, 'overtaxed': 1, 'grumbling': 1, 'lex': 1, 'sana': 1, 'Quod': 1, 'regi': 1, 'lana': 1, 'shepherds': 1, 'dales': 1, 'Ghent': 1, 'woolworkers': 1, 'Lana': 1, 'Calimala': 1, 'Bernardo': 1, 'Rucellai': 1, 'jealously': 1, 'chatty': 1, 'Inferno': 1, 'fairs': 1, 'malediction': 1, 'tabernacles': 1, 'pyramids': 1, 'Bold': 1, 'Margaretville': 1, "Lew's": 1, 'Alperts': 1, 'sickroom': 1, 'trinket': 1, 'lawsuit': 1, 'Solemnly': 1, 'Kaddish': 1, "Flagler's": 1, 'boarder': 1, 'whyfores': 1, 'wherefores': 1, 'therefores': 1, 'Commentaries': 1, 'carcasses': 1, "Banks's": 1, 'busyness': 1, 'unstaring': 1, 'gawky': 1, 'undisclosed': 1, "Stream's": 1, "Mach't": 1, 'augen': 1, 'zu': 1, 'Schone': 1, 'Mullerin': 1, 'mutual-aid': 1, 'Reginald': 1, 'antiquarian': 1, 'Archaeology': 1, 'Place-names': 1, 'onwards': 1, 'debatable': 1, 'philologists': 1, 'J.H.': 1, "Round's": 1, 'Settlement': 1, 'W.H.': 1, 'Conquest': 1, 'Diplomatic': 1, 'Asser': 1, 'Charters': 1, 'Stubbs': 1, 'superstructure': 1, 'Lappenburg-Kemble': 1, 'Beck': 1, 'Conquete': 1, 'difficile': 1, "aujourd'hui": 1, "d'entretenir": 1, 'sur': 1, 'valeur': 1, 'recit': 1, 'traditionnel': 1, 'conquete': 1, 'Zachrisson': 1, 'gullibility': 1, 'Gildas': 1, 'Chronicles': 1, 'Oman': 1, 'untrustworthiness': 1, 'unreliability': 1, 'genealogies': 1, 'vineyard': 1, 'gradualist': 1, 'Victorians': 1, 'Germanized': 1, "Seebohm's": 1, 'Maitland': 1, 'Domesday': 1, 'Vinogradoff': 1, 'Largely': 1, 'invasion-theory': 1, 'H.L.': 1, "Zachrisson's": 1, 'Kelts': 1, 'H.P.R.': 1, 'Copley': 1, 'survivalist': 1, 'pre-Anglo-Saxon': 1, 'Stenton': 1, 'al.': 1, 'Jutish': 1, 'foray': 1, '514': 1, 'E.T.': 1, 'Anglo-Saxons': 1, 're-adopt': 1, 'complection': 1, 'phenonenon': 1, 'Notitia': 1, 'Theodosian': 1, '369': 1, 'Carausius': 1, 'construe': 1, 'Anglia': 1, 'Gaul': 1, 'fourth-century': 1, 'fifth-century': 1, 'disorganization': 1, 'enlistment': 1, 'pinning': 1, 'Enoch': 1, 'Ironpants': 1, 'draftees': 1, 'Greetings': 1, 'Champ': 1, 'conscript': 1, 'Dent': 1, 'Floor': 1, 'Kitchin': 1, 'Kahn': 1, "Kahn's": 1, '2,800,000': 1, 'gargantuan': 1, 'cantonment': 1, 'electric-sewer-water': 1, 'Ditch': 1, 'Josephus': 1, '42,000': 1, '1918-19': 1, 'malady': 1, 'influenza-pneumonia': 1, 'eight-week': 1, 'libertine': 1, 'manliness': 1, 'joie': 1, 'flocking': 1, 'do-gooder': 1, 'pre-penicillin': 1, 'verboten': 1, 'business-minded': 1, 'proclivities': 1, 'Pershing': 1, 'Fit': 1, 'Affirmatively': 1, 'baser': 1, 'YMCA': 1, 'Playground': 1, '1917-18': 1, 'co-ordinating': 1, 'antipodes': 1, 'best-known': 1, 'Farnum': 1, 'Pickford': 1, 'Janis': 1, 'Lauder': 1, 'khaki-bound': 1, 'songbook': 1, 'Fires': 1, 'Mademoiselle': 1, 'Armentieres': 1, 'contrarieties': 1, 'encloses': 1, 'overreaches': 1, 'intimations': 1, 'Antigone': 1, 'Juliet': 1, 'scion': 1, 'resounds': 1, "Apollo's": 1, 'realness': 1, 'Discours': 1, 'methode': 1, 'Principia': 1, 'undreamt': 1, "Horatio's": 1, 'transcend': 1, 'Furies': 1, 'Weird': 1, 'Sisters': 1, 'Sphinx': 1, 'thunderclaps': 1, 'Colonus': 1, 'kite': 1, 'Mortality': 1, 'battlements': 1, 'banishes': 1, 'wanderers': 1, 'visitations': 1, "Agamemnon's": 1, 'gaslights': 1, 'Purgatory': 1, 'hierarchies': 1, 'ascent': 1, 'Alcibiades': 1, 'Creon': 1, 'Medea': 1, 'polis': 1, 'Othello': 1, 'clashed': 1, 'Heretofore': 1, 'Feversham': 1, 'Nouvelle-Heloise': 1, 'presenter': 1, 'rationalistic': 1, 'Classic': 1, 'architectures': 1, 'supervened': 1, 'imaginings': 1, 'parables': 1, 'primal': 1, 'preordainment': 1, 'Oresteia': 1, 'Concepts': 1, 'catchwords': 1, 'seers': 1, 'chroniclers': 1, 'inheritors': 1, 'primitivism': 1, 'anti-Newtonian': 1, "Hugo's": 1, 'Magi': 1, 'unacknowledged': 1, 'rear-guard': 1, 'Sophoclean': 1, 'Ibsen': 1, "Goethe's": 1, 'Meister': 1, 'glows': 1, 'Torquato': 1, 'Tasso': 1, 'Elegies': 1, 'tempered': 1, 'Faustian': 1, 'wrest': 1, "Marlowe's": 1, "Menelaus'": 1, 'necromantic': 1, 'Sparta': 1, 'Gesamtkunstwerke': 1, 'recusant': 1, 'diocese': 1, 'Sawnders': 1, 'Hobday': 1, 'glover': 1, '1615': 1, 'Pebworth': 1, 'Packwood': 1, '1622': 1, '1594-1674': 1, 'Superlative': 1, 'Prodigall': 1, 'Youths': 1, '1628': 1, 'Lodowick': 1, '1589': 1, '1596/7': 1, '1597': 1, 'aldermen': 1, 'affied': 1, 'endeavour': 1, 'shillings': 1, 'recompence': 1, '1597/8': 1, 'theare': 1, 'Grev.': 1, 'Knightes': 1, 'subsedies': 1, 'wherewith': 1, 'feare': 1, 'doubte': 1, 'hable': 1, 'Gre.': 1, 'gonne': 1, 'Brestowe': 1, 'Lond.': 1, 'verie': 1, 'knoweth': 1, 'wil': 1, 'willinge': 1, 'Warwickshire': 1, 'Combe': 1, 'countriman': 1, 'Shak.': 1, 'wheare': 1, 'prai': 1, 'mai': 1, 'condicions': 1, 'Allso': 1, 'presente': 1, 'obtaine': 1, 'enlargd': 1, 'ij': 1, 'faires': 1, 'bestes': 1, 'sheepe': 1, 'valewe': 1, 'tithes': 1, 'landes': 1, 'himselfe': 1, '1590': 1, 'Burghley': 1, "Sturley's": 1, 'Ashley': 1, 'scrivener': 1, 'Gelly': 1, 'Merrick': 1, 'mercer': 1, 'bye': 1, 'warys': 1, 'selle': 1, 'presentlye': 1, 'profet': 1, 'Yff': 1, 'bargen': 1, 'Sha.': 1, 'Receave': 1, 'brynge': 1, 'knite': 1, 'stockynges': 1, 'ys': 1, 'gret': 1, 'byinge': 1, 'Aysshom': 1, 'thynke': 1, 'yff': 1, 'copybooks': 1, 'chartaceos': 1, 'libellos': 1, 'hattes': 1, 'boies': 1, 'yongst': 1, 'silke': 1, 'Isabell': 1, 'Bardall': 1, 'Cozen': 1, 'Bardell': 1, 'handicraftsman': 1, 'Walford': 1, 'deluged': 1, 'Unckle': 1, 'Quyne': 1, 'Watling': 1, 'Cats': 1, 'Canning': 1, 'Grevile': 1, 'Ceartaine': 1, 'beefore': 1, 'towardes': 1, 'synce': 1, 'dessier': 1, 'standeth': 1, 'paide': 1, 'Peeter': 1, 'Rowswell': 1, 'entreat': 1, 'delivre': 1, 'inclosed': 1, 'Comend': 1, 'Rychard': 1, 'Mytton': 1, 'ffreind': 1, "Stratford's": 1, 'myn': 1, 'resonable': 1, 'conscionable': 1, 'hir': 1, 'maiestie': 1, 'graunt': 1, 'twise': 1, '1598/9': 1, 'thither': 1, 'homewards': 1, 'Fanshawe': 1, '1599': 1, 'manye': 1, 'Guiftes': 1, 'myne': 1, 'owne': 1, 'Cowrtiers': 1, 'effectinge': 1, 'commons': 1, '1600/1': 1, 'Accompanied': 1, 'doorkeeper': 1, 'Leasure': 1, 'thees': 1, 'trobles': 1, 'pynte': 1, 'muskadell': 1, 'husbandry': 1, 'greate': 1, 'oathe': 1, 'thatt': 1, 'soe': 1, 'sackes': 1, 'anye': 1, 'behynde': 1, 'Wycombe': 1, 'Uxbridge': 1, 'Banbury': 1, 'bayly': 1, 'Edwardes': 1, 'hadd': 1, 'swearinge': 1, 'hytt': 1, 'shulde': 1, 'coste': 1, 'sayed': 1, 'ether': 1, 'Lorde': 1, 'countrey': 1, 'Ffortescue': 1, 'exchequer': 1, 'prevaile': 1, 'Bromley': 1, 'effecte': 1, 'wynne': 1, 'sworde': 1, 'Robin': 1, 'abaringe': 1, 'Edw': 1, 'Grevyles': 1, 'minaces': 1, 'Aldermen': 1, 'Burgesses': 1, 'Stratforde': 1, "Ryc'": 1, 'Quyney': 1, 'bayleefe': 1, 'braweling': 1, 'wher': 1, 'thei': 1, 'drewe': 1, 'dagers': 1, 'hoste': 1, 'faier': 1, 'abroade': 1, 'comminge': 1, 'hurley': 1, 'burley': 1, 'commawnded': 1, 'prevayle': 1, 'endevor': 1, 'sticle': 1, 'brawle': 1, 'heade': 1, 'grevouselye': 1, 'brooken': 1, 'nether': 1, 'hymselfe': 1, 'wolde': 1, 'shewe': 1, 'turne': 1, 'awaye': 1, 'enterteyned': 1, 'agayne': 1, 'Unconsciously': 1, 'inimical': 1, 'underrate': 1, 'preponderating': 1, 'Periclean': 1, 'admonishments': 1, 'soundness': 1, 'historicism': 1, 'credulousness': 1, 'proneness': 1, 'unprofessional': 1, 'Israelite': 1, 'reappraisals': 1, 'antifundamentalist': 1, 'smacks': 1, 'adjudging': 1, 'exposited': 1, 'Anglophobia': 1, 'Impartiality': 1, 'terming': 1, 'Ranke': 1, 'dullness': 1, 'chronicles': 1, 'Froissart': 1, 'theorizing': 1, 'fogged': 1, 'unproved': 1, 'typifying': 1, 'pontificates': 1, 'Shotwell': 1, 'Carolingian': 1, 'Wergeland': 1, 'antihistorical': 1, 'Clive': 1, 'Wasson': 1, 'priestly': 1, 'Elijah': 1, 'Decay': 1, 'monasticism': 1, 'religiosity': 1, 'Piranesi': 1, 'reconstructs': 1, 'dinosaur': 1, 'unmarked': 1, 'cholera': 1, 'Makers': 1, 'Finders': 1, 'resurrecting': 1, 'metier': 1, 'tropics': 1, 'sleepless': 1, 'sore-ridden': 1, 'Kofanes': 1, 'Huitotoes': 1, 'Inca': 1, 'Pizarro': 1, 'Tibetan-like': 1, 'Muzo': 1, 'naturalist': 1, 'Mayans': 1, 'Ecuador': 1, 'Galapagos': 1, 'turtles': 1, "Victor's": 1, 'morbid': 1, 'schoolchildren': 1, 'bragging': 1, 'Fuhrer': 1, 'Neilson': 1, 'Rand': 1, 'mediaevalist': 1, 'aeternitatis': 1, 'bluebook': 1, 'Propertius': 1, 'Coleridge': 1, 'Benedictine': 1, "Anselm's": 1, 'Priory': 1, "Great's": 1, 'Scholastica': 1, 'Dialogues': 1, 'slimly': 1, 'insatiable': 1, 'fellow-creatures': 1, 'Trotsky': 1, "Simonson's": 1, 'nonogenarian': 1, 'ninety-five': 1, 'Cavallinis': 1, 'eighties': 1, 'Epicurus': 1, 'Happiness': 1, 'Epicurean': 1, 'ninetieth': 1, 'Burghardt': 1, 'Bois': 1, 'eighty-nine': 1, 'intelligentsia': 1, 'Tuskegee': 1, 'coloured': 1, 'Ratcliffe': 1, "elephant's": 1, 'lark': 1, 'gazelle': 1, 'seventy-six': 1, 'humour': 1, 'Needy': 1, 'Knife-grinder': 1, 'G.B.S.': 1, 'eighty-five': 1, 'facile': 1, 'mediocrities': 1, 'Whiteleaf': 1, 'Boadicea': 1, '1984': 1, 'Orwellian': 1, '140,000': 1, 'sanitarium': 1, 'normalize': 1, 'euphemism': 1, 'unpacking': 1, 'bootlegger': 1, 'hangers-on': 1, 'barflies': 1, 'Dorens': 1, 'Rebecca': 1, 'Walpole': 1, 'Osbert': 1, 'Stallings': 1, 'Browne': 1, 'Seabrook': 1, 'Sanatorium': 1, 'outfitted': 1, 'chambermaids': 1, "Gracie's": 1, 'adores': 1, 'Ben-hadad': 1, 'unquiet': 1, 'loquacity': 1, 'impossibility': 1, 'vocally': 1, 'allegro': 1, 'editorialist': 1, 'ferret': 1, 'Stanhope': 1, 'Gracie': 1, 'Colefax': 1, 'Bechhofer': 1, 'apologize': 1, 'motoring': 1, 'Vachell': 1, 'gaucheries': 1, 'Masson': 1, '1:218': 1, 'fifty-nine': 1, 'incepted': 1, 'Caius': 1, 'Clare': 1, '1639-40': 1, 'B.D.': 1, '1639': 1, '1633': 1, 'Ravencroft': 1, '1631': 1, 'Boutflower': 1, 'Lovering': 1, 'Buckenham': 1, 'Buckman': 1, 'inceptor': 1, 'Chappell': 1, 'Lightfoot': 1, 'proctors': 1, 'comported': 1, 'vice-chancellor': 1, 'Recapitulation': 1, 'logic-rhetoric': 1, 'Galen': 1, 'devastatingly': 1, 'prayerfully': 1, 'extempore': 1, '1628/29': 1, 'Naturam': 1, 'Pati': 1, 'Senium': 1, 'Platonica': 1, 'domi': 1, 'forisque': 1, 'boastings': 1, 'pastimes': 1, 'uncommunicative': 1, 'nonliterary': 1, 'walker': 1, 'Cam': 1, 'roved': 1, 'Chesterton': 1, 'fens': 1, 'Ouse': 1, 'Gog': 1, 'Magog': 1, 'abstinence': 1, 'Graceful': 1, 'quibusdam': 1, 'audivi': 1, 'nuper': 1, 'persiflage': 1, 'allusiveness': 1, 'egregiously': 1, "Aubrey's": 1, '2:67': 1, 'Bodleian': 1, 'Aubr.': 1, 'autobiographic': 1, 'interlocutor': 1, 'archfool': 1, 'bantering': 1, 'pater': 1, 'Pater': 1, 'Liber': 1, 'annihilate': 1, 'rough-and-tumble': 1, 'ribald': 1, 'raillery': 1, 'reveled': 1, 'oratio': 1, 'scathing': 1, 'Diodati': 1, '23-36': 1, 'Lycidas': 1, '1626': 1, 'consorted': 1, 'Apology': 1, '3:300': 1, "enter'd": 1, '1644': 1, 'eschew': 1, 'Hartlib': 1, 'distantly': 1, "Bellamy's": 1, 'Backward': 1, "Clarke's": 1, 'Kurd': 1, "Lasswitz's": 1, 'Auf': 1, 'Zwei': 1, 'Planeten': 1, 'robot': 1, 'Mankind': 1, 'attains': 1, 'undreamed': 1, 'paperbacks': 1, 'extrapolations': 1, "Asimov's": 1, 'Caves': 1, 'super-city': 1, "Blish's": 1, 'Fahrenheit': 1, '451': 1, 'book-burning': 1, 'hearing-aid': 1, 'Canticle': 1, 'Leibowitz': 1, 'Midas': 1, 'Touch': 1, "Simak's": 1, 'How-2': 1, "Sheckley's": 1, 'Status': 1, 'Pedestrian': 1, 'Lottery': 1, "Karp's": 1, "Tucker's": 1, 'Loud': 1, "Vance's": 1, "Vidal's": 1, "Wolfe's": 1, 'Limbo': 1, 'Frederik': 1, 'Kurt': 1, "Drunkard's": 1, 'overpopulated': 1, 'uninteresting': 1, 'university-trained': 1, 'utopias': 1, "Gulliver's": 1, "Zamiatin's": 1, "Capek's": 1, 'Newts': 1, "Forster's": 1, 'Stops': 1, 'Hideous': 1, 'Sleeper': 1, 'Wakes': 1, "Williamson's": 1, 'Folded': 1, 'Gravity': 1, "Hoyle's": 1, 'extrapolate': 1, 'dehumanize': 1, 'Easily': 1, 'extrapolates': 1, 'one-sixteenth': 1, 'fifteen-sixteenths': 1, 'two-room': 1, 'stairwells': 1, 'soyaburgers': 1, 'befouled': 1, 'respirators': 1, 'soot': 1, 'Amis': 1, 'satirizes': 1, 'Kornbluth': 1, 'persuaders': 1, 'trauma': 1, 'cue-phrase': 1, 'copywriter': 1, 'redirecting': 1, 'manipulators': 1, 'humanists': 1, 'Stigmata': 1, 'deceives': 1, 'unfortunates': 1, 'Anthology': 1, 'Serenity': 1, 'exasperatingly': 1, 'caterpillar': 1, 'Heraclitus': 1, 'Pirandello': 1, 'Proust': 1, 'near-Communists': 1, 'centrist': 1, 'sociologically': 1, 'Spencerian': 1, 'succumbing': 1, 'weasel-worded': 1, 'encomiums': 1, 'prouder': 1, 'unblemished': 1, 'Steffens': 1, 'recanted': 1, 'palliative': 1, 'profoundest': 1, 'Apropos': 1, 'Cynical': 1, 'Blasphemous': 1, 'barbarous': 1, 'prescribes': 1, 'hangman': 1, 'Punishment': 1, 'wrongdoer': 1, 'Existentialism': 1, 'Lutte': 1, 'avec': 1, "l'Ange": 1, 'Gestapo': 1, 'Metamorphose': 1, 'Dieux': 1, 'rewritten': 1, 'bibliophiles': 1, 'unrecoverable': 1, 'smoldering': 1, 'Frohock': 1, 'Loyalist': 1, 'non-propagandistic': 1, 'anarchist-adventurers': 1, 'Perken': 1, 'Garine': 1, 'self-sacrificing': 1, 'Kyo': 1, 'Gisors': 1, 'Katow': 1, 'Alvear': 1, 'art-historian': 1, 'exaltations': 1, 'will-to-power': 1, 'illuminations': 1, 'triptych': 1, 'enclosing': 1, 'appanage': 1, 'Roman-camp': 1, 'mummies': 1, 'cave-men': 1, 're-vision': 1, 'alluding': 1, 'Adrianople': 1, 'Silk': 1, 'somnolence': 1, 'Trains': 1, 'cabs': 1, 'culte': 1, 'moi': 1, 'immensities': 1, 'Combined': 1, "Anthony's": 1, 'confederation': 1, 'functionalism': 1, '50-year': 1, 'proliferated': 1, 'consultative': 1, 'supranational': 1, 'tariff-free': 1, 'Euratom': 1, 'democracies': 1, 'Parties': 1, 'Parliamentarians': 1, 'evolves': 1, 'Conceived': 1, 'devising': 1, 'Grenville': 1, 'Sohn': 1, 'Lockian': 1, 'multi-state': 1, 'pluralism': 1, 'non-Communist': 1, 'goldfish': 1, 'pee-wee': 1, 'Evergreen': 1, 'Ferlenghetti': 1, 'Lippincott': 1, 'exploiters': 1, 'longtime': 1, 'name-dropper': 1, 'Mingus': 1, 'Downbeat': 1, 'CJS': 1, 'Communistic': 1, 'pacifistic': 1, 'power-hungry': 1, 'money-hungry': 1, 'redemptive': 1, 'preaches': 1, 'moneyed': 1, 'messengers': 1, 'grandiloquent': 1, 'travelogue-like': 1, 'Cloth': 1, 'Tempest': 1, 'Sleepers': 1, 'Awake': 1, 'poems-in-drawing-and-type': 1, 'Youngest': 1, 'Trickster': 1, 'non-literary': 1, 'Memoirs': 1, 'Pornographer': 1, 'Dragnet': 1, 'bebop': 1, 'Dizzy': 1, 'Lennie': 1, 'Rollins': 1, "Rexroth's": 1, 'Rainy': 1, 'Novak': 1, 'improvisation': 1, 'cultivates': 1, 'non-intellectual': 1, "Hangman's": 1, 'modulated': 1, 'Hurray': 1, 'a-crowing': 1, 'doleful': 1, 'mournful': 1, 'York-born': 1, 'OWI': 1, 'Paramount': 1, 'newsreel': 1, 'quibble': 1, 'typify': 1, "generation's": 1, 'sweated': 1, 'eclectically': 1, "Yorker's": 1, 'outlanders': 1, 'misinformation': 1, 'fulminating': 1, 'intellectual-literary': 1, 'unappeasably': 1, 'unique-ingrown-screwedup': 1, 'blushes': 1, 'ikey-kikey': 1, 'unappeasable': 1, 'Franco-Irishman': 1, "Jews'": 1, 'anthropological-religious': 1, 'Malamud': 1, 'Yaddo': 1, 'precociously': 1, 'staples': 1, "fiction-writer's": 1, 'diddling': 1, 'fiction-writing': 1, 'internationalized': 1, 'Exodus': 1, "staff's": 1, 'booboo': 1, 'arch-enemy': 1, 'what-will-T.': 1, 'Eliot-or-Martin': 1, 'Buber-think': 1, 'snob-clannish': 1, 'overcerebral': 1, 'Europeanish': 1, 'aristocratically': 1, 'synthesize': 1, 'Spenglerian': 1, 'inclusiveness': 1, 'Sewanee': 1, 'Anglo-Protestant': 1, 'Englishy': 1, 'social-register': 1, 'unnaturalness': 1, 'Qui': 1, "s'excuse": 1, "s'accuse": 1, 'castigates': 1, 'flatulence': 1, 'Sociological': 1, 'Germano-Slavic': 1, 'third-rate': 1, 'modish': 1, 'Wolfes': 1, 'Farrells': 1, 'Dreisers': 1, 'Frosts': 1, 'MacLeishes': 1, 'Screwed': 1, 'stewed': 1, 'tattooed': 1, 'Hergesheimer': 1, 'Woollcott': 1, 'Tarkington': 1, 'Willa': 1, 'Catheter': 1, 'sic': 1, 'Phelps': 1, 'smog': 1, 'politico-sociological': 1, 'York-mind': 1, 'Silone': 1, 'Chiaromonte': 1, 'Gide': 1, 'Fergusson': 1, 'Delmore': 1, 'Krims': 1, 'youngish': 1, 'half-educated': 1, 'critical-intellectual': 1, 'bedazzlement': 1, 'hick': 1, "Whitman's": 1, 'bedazzled': 1, 'half-digested': 1, 'anti-intellectualism': 1, 'winsome': 1, 'thruway': 1, 'touchstones': 1, 'humanly': 1, 'alludes': 1, 'realer': 1, 'portents': 1, 'defacing': 1, 'Lante': 1, 'plainclothes': 1, 'Quirinal': 1, 'mispronunciation': 1, "Mussolini's": 1, 'Dogumenti': 1, 'favore': 1, "Berto's": 1, 'Cristo': 1, "Bellow's": 1, 'Seize': 1, "Musil's": 1, 'Qualities': 1, 'Italo': 1, 'Svevo': 1, 'realismo': 1, 'cliques': 1, 'money-fed': 1, 'Shirt': 1, 'jackboots': 1, 'square-built': 1, 'Porta': 1, 'Pancrazio': 1, 'Pamphili': 1, 'sixteen-year-old': 1, 'gloriously': 1, 'bugeyed': 1, 'Object': 1, 'Krauts': 1, 'Bullshit': 1, 'disown': 1, 'anti-clericalism': 1, 'fine-featured': 1, 'Mussolini': 1, 'Gossip': 1, 'Piazzo': 1, "Bosis'": 1, 'Occupation': 1, 'Linz': 1, 'dimesize': 1, "Pickett's": 1, 'Miltonic': 1, 'Rottosei': 1, 'OBE': 1, 'cosponsors': 1, 'Counseling': 1, 'One-day': 1, 'semi-processed': 1, '8-b-2': 1, "registrants'": 1, 'Owners': 1, 'Developing': 1, 'Selling': 1, 'wholesalers': 1, '$350,000': 1, '5-1/2': 1, 'Pooling': 1, 'long-': 1, 'provdied': 1, 'Commodity': 1, 'Eligibility': 1, 'Assist': 1, '36-A': 1, 'Requirements': 1, 'Repayment': 1, '5-percent': 1, 'certifies': 1, 'foreseeing': 1, 'balance-of-payments': 1, 'longrun': 1, 'officialdom': 1, 'monolithic': 1, 'deem': 1, 'government-to-government': 1, 'slow-acting': 1, 'Dams': 1, 'Kaisers': 1, 'Hitlers': 1, 'Mussolinis': 1, 'Tojos': 1, 'Stalins': 1, 'McCormack': 1, 'tempore': 1, 'refrained': 1, 'workday': 1, 'fatherly': 1, 'unpleasantness': 1, 'succinct': 1, 'compress': 1, 'conciliator': 1, 'devotedly': 1, 'Bonham': 1, 'iron-clad': 1, 'Speakership': 1, '63d': 1, 'Electrification': 1, 'adorn': 1, 'Ship': 1, 'shoals': 1, 'confessor': 1, '389': 1, 'Meaningful': 1, 'Unsuccessful': 1, 'Forty-seven': 1, 'Twenty-six': 1, '13,200': 1, 'non-itemized': 1, '$.076': 1, '$.09': 1, 'well-administered': 1, 'Flat': 1, 'well-regulated': 1, 'Vehicles': 1, 'privately-owned': 1, 'problematical': 1, 'Gasoline': 1, 'headquarter': 1, 'organizationally': 1, 'newly-created': 1, 'cost-billing': 1, '1951-1956': 1, '35%': 1, 'reassign': 1, '44,000': 1, 'excels': 1, '7,500': 1, 'dispersement': 1, 'Bids': 1, 'Purchases': 1, 'cost-accounting': 1, 'Notwithstanding': 1, 'revaluation': 1, 'Situs': 1, 'domicile': 1, 'origination': 1, 'non-residents': 1, 'Intangible': 1, 'cancelled': 1, 'garaged': 1, 'Airpark': 1, 'rateable': 1, 'Assessment': 1, 'non-professional': 1, 'variance': 1, 'Expenditure': 1, 'tabulate': 1, 'Twenty-seven': 1, 'Assessors': 1, 'Slightly': 1, 'Harbors': 1, "assessors'": 1, 'Fifty-two': 1, '1,418,000': 1, '$11,900,000': 1, 'Collyer': 1, 'Wire': 1, 'Tube': 1, 'Controls': 1, 'Speidel': 1, 'Cornell-Dubilier': 1, 'Photek': 1, 'Textron': 1, 'Foundry': 1, 'relocation': 1, 'Bid': 1, 'follow-ups': 1, '10,517': 1, '4,427': 1, "Office's": 1, 'copyrights': 1, 'cooperates': 1, '954': 1, 'specifics': 1, 'industrialists': 1, 'location-minded': 1, 'Banker': 1, 'Investor': 1, 'intra-state': 1, '1680': 1, '6,768': 1, '164': 1, 'soliciting': 1, 'Waterbury': 1, 'Bridgeport': 1, 'Waltham': 1, '603': 1, '452': 1, 'offsetting': 1, 'Export': 1, '143': 1, 'Kepler': 1, '64-page': 1, 'Devoted': 1, 'Mailings': 1, 'Med-Chemical': 1, '1184': 1, '643': 1, 'in-state': 1, '541': 1, 'Turnkey': 1, 'Stated': 1, 'State-Local': 1, 'Metropolian': 1, 'Functionally': 1, 'origin/destination': 1, '701': 1, 'Audits': 1, '$450,000': 1, 'ensures': 1, 'expend': 1, 'augmenting': 1, 'inter-town': 1, 'Towns': 1, 'intergovernmental': 1, 'equalization': 1, 'Disadvantages': 1, 'disgruntled': 1, 'tax-paying': 1, "municipality's": 1, 'Adjusting': 1, 'Coventry': 1, 'collectible': 1, 'Glocester': 1, 'Simultaneous': 1, 'Varying': 1, 'treasuries': 1, 'Suitable': 1, 'commemorates': 1, '185th': 1, 'commemorating': 1, 'Homestead': 1, 'april': 1, 'rededicate': 1, 'Saabye': 1, 'observances': 1, '5th': 1, '1450': 1, '1550': 1, 'Medicis': 1, 'Comique': 1, '1581': 1, 'alternated': 1, 'Ballets': 1, 'intermissions': 1, 'skeptically': 1, 'dire': 1, '328': 1, '1952-1958': 1, 'mineralized': 1, 'bibliographical': 1, 'thereunder': 1, 'dispositions': 1, '$75,000,000': 1, 'twelve-year': 1, 'mine-safety': 1, 'assay': 1, '$4,000,000': 1, '431': 1, 'Cardiovasculatory': 1, 'Seminar': 1, 'Resident': 1, '139': 1, 'microwaves': 1, 'neuropathology': 1, 'carcinoma': 1, 'histochemical': 1, 'dysplasia': 1, 'microscopical': 1, 'microchemistry': 1, 'microcytochemistry': 1, 'diphosphopyridine': 1, 'synthesizine': 1, 'lymphoma': 1, 'leprae': 1, 'mycobacteria': 1, 'photomicrography': 1, '762': 1, '442': 1, 'Twenty-nine': 1, 'Visual': 1, 'operable': 1, 'Demonstrations': 1, "Instructor's": 1, 'kits': 1, 'manikins': 1, 'projector': 1, 'Soldiers': 1, 'Bandaging': 1, 'Splinting': 1, 'Handbook': 1, 'South-East': 1, 'Liaison': 1, 'Graphic': 1, 'Managua': 1, 'Subcommittee': 1, 'Reorganization': 1, 'Testicular': 1, 'military-medical': 1, 'Surgeons': 1, '37,470': 1, '54,320': 1, '642': 1, 'Forty-five': 1, '7,827': 1, '161': 1, '885': 1, '254': 1, 'Eighty-five': 1, 'Macropathology': 1, 'great-grandson': 1, 'short-time': 1, 'accessions': 1, 'microscopes': 1, 'surgical': 1, 'macropathological': 1, 'requesters': 1, 'Macropathological': 1, 'Techniques': 1, '795,586': 1, '$65,000': 1, '$70,000': 1, 'photo-offset': 1, 'varityping': 1, 'typesetting': 1, 'stapling': 1, '$4,000': 1, 'unexpended': 1, 'reinstitution': 1, 'Writes': 1, 'Replacing': 1, 'November-December': 1, 'bimonthly': 1, 'bibliography': 1, "Collector's": 1, 'Items': 1, 'Diagnosis': 1, 'Exhibits': 1, 'Epidemiological': 1, 'fluorine': 1, 'non-volatile': 1, 'substantiates': 1, 'beryllium': 1, 'exploding-wire': 1, 'calorimetric': 1, 'ohmic': 1, "Edgerton's": 1, 'blackening': 1, '60-80': 1, 'SiH': 1, "atom's": 1, '21-cm': 1, 'telescopes': 1, 'bandwidth': 1, 'foreknowledge': 1, 'low-frequency': 1, '1665.32': 1, '1667.36': 1, '0.10': 1, 'Preparations': 1, '144': 1, 'Acoustical': 1, 'thermometric': 1, 'impurity-doped': 1, 'thermally': 1, 'cycled': 1, 'resistances': 1, 'calibrations': 1, '4.21': 1, '2.16': 1, 'Vapor': 1, 'reproducibilities': 1, '15-': 1, '25-liter': 1, 'dewars': 1, 'hydrostatic': 1, 'Pressure': 1, 'pvt': 1, 'pressure-volume-temperature': 1, 'null-type': 1, 'unbalance': 1, 'displaces': 1, 'capacitance': 1, 'Spherical': 1, 'atm': 1, 'Transport': 1, '6-year': 1, 'Prandtl': 1, 'intermolecular': 1, 'logarithm': 1, 'registrants': 1, 'Wildhack': 1, 'Herzfeld': 1, 'Astin': 1, '2.1.6': 1, 'Transition': 1, 'Selected': 1, 'wall-stabilized': 1, 'high-current': 1, 'matrix': 1, 'd-c': 1, '1001': 1, 'apportion': 1, 'Written': 1, 'deducting': 1, 'unlawful': 1, 'therefor': 1, 'mandamus': 1, 'deferring': 1, 'provisons': 1, 'submissions': 1, 'States-Yugoslav': 1, 'disbursed': 1, '$17,000,000': 1, 'ratable': 1, 'Dooley': 1, 'discontinuance': 1, 'implemented': 1, 'commutation': 1, '47.6': 1, "Railroad's": 1, '185': 1, 'southbound': 1, 'on-again-off-again': 1, 'two-way': 1, "Dryfoos'": 1, 'heartiest': 1, 'S.S.R.': 1, 'Castro-held': 1, 'Russian-dominated': 1, 'Mig': 1, 'strafing': 1, 'Migs': 1, 'U.s.': 1, 'cockier': 1, 'Americas': 1, 'Weaken': 1, 're-export': 1, 'Shangri-La': 1, 'Land-based': 1, 'Shipments': 1, 'contraband': 1, '236': 1, '66th': 1, 'gainful': 1, 'rehabilitating': 1, 'remunerative': 1, '83rd': 1, 'homebound': 1, "program's": 1, '50-50': 1, 'traineeships': 1, 'vocationally': 1, '33-1/3%': 1, 'computations': 1, '5.4865771': 1, 'recouped': 1, '60%': 1, 'pre-1960': 1, 'mortaring': 1, 'inset': 1, 'Bricks': 1, 'Masonry': 1, 'Cement': 1, 'Aboveground': 1, 'aboveground': 1, 'overlaid': 1, 'waterproofing': 1, "Contractors'": 1, 'pre-cast': 1, 'Underground': 1, 'Arrangement': 1, 'right-angle': 1, 'scatters': 1, 'Vent': 1, '4-cell': 1, '150-milliampere': 1, 'flashlight-type': 1, 'Basement': 1, 'Bunks': 1, 'tornado': 1, 'decays': 1, 'Forty-nine': 1, 'Blowers': 1, 'Provision': 1, '10-gallon': 1, 'advisable': 1, 'climates': 1, 'Open-flame': 1, 'Shelter': 1, 'Competitors': 1, 'outstripping': 1, '606': 1, 'F.Supp.235': 1, 'proscribe': 1, 'monopolization': 1, '589': 1, 'pre-eminent': 1, 'endangered': 1, "customer's": 1, '607': 1, 'judgements': 1, '400-401': 1, '607-608': 1, 'pretrial': 1, 'deeming': 1, 'antitrust': 1, '63,000,000': 1, 'Securities': 1, 'Realty': 1, "trustee's": 1, 'Amici': 1, 'Curiae': 1, 'taxpaying': 1, '$2.09': 1, 'counterproposal': 1, 'alia': 1, 'depress': 1, 'disenfranchised': 1, 'quirk': 1, 'unnourished': 1, 'endanger': 1, 'confidentiality': 1, "Hawkins'": 1, '525': 1, 'husband-wife': 1, 'enthrones': 1, 'depose': 1, '12a': 1, '60-66': 1, '62-63': 1, '63-64': 1, '64-66': 1, 'Friedman': 1, 'Wilkey': 1, '604,622': 1, 'App.': 1, '462': 1, '269': 1, '613': 1, '899': 1, '4-d': 1, '1-o': 1, 'reclassification': 1, 'reopened': 1, 'Sicurella': 1, '385': 1, 'Servant': 1, '412': 1, 'Estep': 1, '327': 1, '412-413': 1, 'subpoena': 1, 'duces': 1, 'tecum': 1, 'Evensen': 1, 'thereon': 1, '6(j)': 1, 'intradepartmental': 1, 'objectors': 1, '5-6': 1, 'interdepartmental': 1, 'inadvertence': 1, 'affliction': 1, 'Dozens': 1, 'remedial': 1, 'departmental': 1, 'Chewing': 1, 'explores': 1, 'underlies': 1, 'policy-oriented': 1, 'merciful': 1, 'guidelines': 1, 'well-understood': 1, 'imperceptibly': 1, 'inflammation': 1, 'multilateral': 1, 'undigested': 1, 'deferment': 1, 'Pending': 1, 'semi-autonomous': 1, "ICA's": 1, 'ICA': 1, 'appropriates': 1, 'campuses': 1, 'Unfriendly': 1, 'immeasurably': 1, 'P.L.': 1, 'Wildlife': 1, '92.5': 1, '1972': 1, 'Revise': 1, 'big-game': 1, 'gamebird': 1, 'fishery': 1, '81,000': 1, 'impoundments': 1, 'Develop': 1, '56,000': 1, 'streamside': 1, 'life-supporting': 1, 'waterflows': 1, 'renewable': 1, 'Intensification': 1, 'Initiating': 1, 'mistletoe': 1, 'softwood': 1, 'Coordination': 1, 'Adoption': 1, 'Reduction': 1, 'snags': 1, 'lightning-occurrence': 1, '11,000': 1, 'firebreaks': 1, 'Rodent': 1, 'porcupines': 1, 'jurisdictions': 1, '24,400': 1, '162,400': 1, '106,500': 1, '542,250': 1, 'windstorm': 1, 'overgrazing': 1, 'acre-feet': 1, '635': 1, '379,900': 1, '105,000': 1, '10,500': 1, '26,500': 1, '1963-1972': 1, '79,400': 1, 'multiple-purpose': 1, 'stumpage': 1, '268,900': 1, 'patenting': 1, 'non-Federal': 1, 'unmanaged': 1, 'Strategy': 1, 'conventional-type': 1, 'missile-type': 1, 'contending': 1, 'year-end': 1, '2,489,000': 1, '870,000': 1, '817': 1, '619,000': 1, '175,000': 1, '91': 1, '825,000': 1, 'reexamine': 1, 'Appropriation': 1, '360,000': 1, '270,000': 1, '$12.1': 1, '$187': 1, 'Retired': 1, '$94': 1, '$56': 1, 'Traditionally': 1, '$10.3': 1, '$184': 1, '601': 1, '365': 1, 'long-line': 1, 'Government-owned': 1, 'Procurement': 1, '45%': 1, '$19.3': 1, 'obligational': 1, '$4,753': 1, '$1,390': 1, '$3,825': 1, '$581': 1, 'Buy': 1, 'reenact': 1, 'break-through': 1, 'reevaluation': 1, 'redirect': 1, 'overtaken': 1, 'Regulus': 1, 'aerodynamic': 1, 'ship-to-surface': 1, 'surfaced': 1, 'interceptor': 1, "mid-1960's": 1, 'Notable': 1, 'underscore': 1, 'far-ranging': 1, 'carrier-based': 1, 'solid-fueled': 1, 'mid-1963': 1, 'reliability': 1, 'air-frame': 1, 'B-52H': 1, 'turbofan': 1, 'B-58': 1, 'B-47': 1, "B-47's": 1, 'equipping': 1, 'air-to-surface': 1, '$1,276': 1, 'Patil': 1, 'Commodities': 1, '$63.8': 1, 'affiliates': 1, 'maturities': 1, 'sixty-day': 1, 'approves': 1, 'Uses': 1, 'reimbursed': 1, 'memoranda': 1, 'always-present': 1, 'undetectable': 1, 'sunspot': 1, 'case-to-case': 1, 'separations': 1, "B's": 1, 'radiate': 1, 'complicating': 1, 'limited-time': 1, '3.190': 1, 'fluctuations': 1, 'denominated': 1, 'signal-intensity': 1, 'Allocation': 1, 'predominant': 1, '0.1-mv./m.': 1, 'whereever': 1, '0.5-mv./m.': 1, '50-percent': 1, 'directionally': 1, 'antennas': 1, 'Daytime': 1, 'Skywave': 1, '1938-1939': 1, 'intereference': 1, 'Claim': 1, 'waived': 1, 'nonresident': 1, '1310': 1, '2688': 1, 'Unpaid': 1, 'Taxes': 1, 'Taxpayers': 1, 'remitted': 1, 'Payment': 1, 'uncertified': 1, 'elapses': 1, 'refunded': 1, 'Taxable': 1, 'Rents': 1, 'Employees': 1, 'reimburses': 1, 'beneficiary': 1, 'legatee': 1, 'devisee': 1, 'Deductible': 1, 'Minors': 1, 'Exemption': 1, '$720': 1, 'W-2': 1, "Trustees'": 1, 'selectors': 1, 'essayists': 1, 'gratis': 1, 'conveying': 1, 'biennium': 1, 'Fellow': 1, 'thrice': 1, 'Makepeace': 1, 'Kellum': 1, 'above-noted': 1, 'Pericles': 1, "Greece's": 1, 'Thermopylae': 1, "Keats's": 1, "Armada's": 1, 'logarithms': 1, '1665': 1, 'Olympian': 1, 'sayings': 1, 'explorations': 1, 'Forsan': 1, 'haec': 1, 'olim': 1, 'meminisse': 1, 'iuvabit': 1, 'theoreticians': 1, 'inductions': 1, "capitalists'": 1, 'enlighten': 1, '334': 1, '125th': 1, '1830': 1, 'Walcott': 1, 'lathes': 1, 'father-and-son': 1, '1833': 1, '1838': 1, 'gutted': 1, 'inclinations': 1, '1853': 1, 'vernier': 1, 'Curious': 1, 'hand-filed': 1, 'rattail': 1, 'Milling': 1, 'archtype': 1, 'Precision': 1, 'superceded': 1, 'antecedent': 1, 'machine-family': 1, 'Swartz': 1, "60's": 1, "Darling's": 1, 'Apprentice': 1, 'Commencing': 1, 'formed-tooth': 1, 'hobbing': 1, 'belt-driven': 1, 'semi-special': 1, 'metal-working': 1, 'bed-type': 1, 'gaging': 1, "machinists'": 1, 'micrometers': 1, 'Vernier': 1, 'calipers': 1, '$2,557,111': 1, '$3.11': 1, '821,220': 1, '$2,323,867': 1, '$2.82': 1, '25.1%': 1, '$24,926,615': 1, '$31,179,816': 1, 'Outlook': 1, 'chargeable': 1, 'Stretch': 1, 'ultra-high-speed': 1, 'blouses': 1, "producers'": 1, 'winders': 1, 'Large-package': 1, 'large-package': 1, "customers'": 1, 'knot-tying': 1, 'bobbins': 1, 'bobbin-to-cone': 1, 'high-cost': 1, 'Take-up': 1, 'thermoplastic': 1, 'filament': 1, 'spinneret': 1, 'extruder': 1, 'twister-coners': 1, 'polymer': 1, 'Diversification': 1, 'licensee': 1, 'PMR': 1, 'Compagnie': 1, 'Telegraphie': 1, 'CSF': 1, 'modules': 1, 'NAIR': 1, '430,000': 1, 'Darwen': 1, 'Layout': 1, 'transfered': 1, 'reimburse': 1, 'Interim': 1, '$1,961,000': 1, '$395,000': 1, '$2,461,000': 1, 'Inventories': 1, '$625,561': 1, '$8,313,514': 1, 'Employee': 1, '4%': 1, 'non-exempt': 1, 'salaried': 1, 'semi-private': 1, '171': 1, '$2,412,616': 1, 'synthetics': 1, 'Overtones': 1, 'Keynotes': 1, 'student-directed': 1, 'Judeo-Christian': 1, 'Y.M.C.A.': 1, 'Y.W.C.A.': 1, "Friends'": 1, 'Hillel': 1, 'co-ordinated': 1, 'Synod': 1, 'Bethel': 1, 'Moravian': 1, 'Pentecostal': 1, 'theater-going': 1, 'Dramatic': 1, '1960-1961': 1, 'Wedding': 1, 'Federico': 1, 'Lorca': 1, 'Pestle': 1, 'Misbegotten': 1, 'Menagerie': 1, 'printmaking': 1, 'lapidary': 1, 'extra-curricular': 1, 'Bottega': 1, 'Collegiate': 1, 'captaincy': 1, 'cheerleaders': 1, 'soccer': 1, 'beginners': 1, 'sportsmanship': 1, 'invitational': 1, 'three-night': 1, 'interclass': 1, 'badminton': 1, 'hockey': 1, 'Olaf': 1, 'arranges': 1, 'Reunion': 1, 'Treasurer': 1, 'Comments': 1, "College's": 1, 'Admissions': 1, 'Miscellany': 1, 'Carletonian': 1, 'low-power': 1, 'carrier-current': 1, 'Week-end': 1, 'Co-op': 1, 'downtrend': 1, 'burdensome': 1, '$9.2': 1, '$10.1': 1, 'Reflecting': 1, 'high-end': 1, '$1.7': 1, '5.8': 1, '6.2': 1, '15.4': 1, '16.7': 1, '10.4': 1, '6.3': 1, 'phonographs': 1, '15.0': 1, '15.5': 1, '$5.4': 1, '$4.9': 1, '1950-1953': 1, 'B70': 1, 'Nike-Zeus': 1, '$6': 1, 'Paced': 1, '$1.6': 1, 'data-handling': 1, 'Informed': 1, 'quadruple': 1, 'retrieval': 1, 'Replacement': 1, '$1.0': 1, '$0.9': 1, 'Demand': 1, 'transistors': 1, '$222': 1, '123': 1, '82': 1, '$380': 1, 'capacitors': 1, 'semi-conductors': 1, '$10.8': 1, 'full-year': 1, 'thyratron': 1, "Devey's": 1, "Sprague's": 1, 'Specialist': 1, 'Post-Graduate': 1, 'Modular': 1, 'Components': 1, 'English-born': 1, 'Vickers': 1, 'Scarborough': 1, 'electro-magnetic': 1, 'compatability': 1, 'accountable': 1, 'Letting': 1, 'university-wide': 1, 'action-oriented': 1, 'hesitance': 1, 'conversant': 1, 'deadlines': 1, 'rebuilds': 1, 'regenerates': 1, 'Deans': 1, 'appoints': 1, 'all-college': 1, 'Faculty': 1, 'Indirectly': 1, 'investigates': 1, 'unaggressive': 1, 'diversities': 1, 'multiversity': 1, 'institution-wide': 1, 'inspires': 1, "institution's": 1, 'Budgeting': 1, 'Joneses': 1, 'Declinations': 1, 'substitutions': 1, 'Garstung': 1, 'subsurface': 1, '600-degrees': 1, 'amplifying': 1, 'Dicke': 1, 'Beringer': 1, 'Nicholson': 1, 'interference-like': 1, 'Gallet': 1, 'Steady': 1, '3.75': 1, 'Ewen': 1, '10.2': 1, 'interferometers': 1, 'NRL': 1, 'altitude-azimuth-mounted': 1, 'Radhakrishnan': 1, '960-mc': 1, 'subtends': 1, 'radiates': 1, 'emitting': 1, '1-degree': 1, '10-degrees': 1, 'centimeter-': 1, 'decimeter-wave-length': 1, 'Sinton': 1, 'calibrating': 1, "6'.7": 1, 'maria': 1, 'Imbrium': 1, 'falloff': 1, '8-mm': 1, "2'": 1, 'Amenitskii': 1, 'Noskova': 1, 'Salomonovich': 1, 'constant-temperature': 1, 'high-resolution': 1, '10.3': 1, "9'": 1, 'subtended': 1, 'graphical': 1, 'directivity': 1, '0.85': 1, '10.3-cm': 1, '84-foot': 1, "18'.5": 1, 'transpirating': 1, 'Qualitative': 1, 'free-burning': 1, 'Maecker': 1, 'stagnation': 1, 'anodes': 1, 'Feedback': 1, 'Sintered': 1, 'thoriated': 1, 'axially': 1, 'Inflow': 1, 'coaxial': 1, 'NC': 1, 'pyrometers': 1, 'Pyrometer': 1, 'Temperatures': 1, 'water-cooled': 1, 'regulator': 1, 'rator': 1, 'resistive': 1, 'mV': 1, 'shunt': 1, 'millivoltmeter': 1, 'voltmeter': 1, 'Transpiration': 1, "0.5''": 1, 'halfways': 1, 'analogously': 1, 'viscometer': 1, 'shims': 1, 'force-rate': 1, "0.002''": 1, "1/16''": 1, 'high-positive': 1, 'silicone': 1, '12,500': 1, 'polybutene': 1, 'polybutenes': 1, '520': 1, 'suction': 1, "3.25''": 1, 'geometric': 1, 'disassembly': 1, 'magnitudes': 1, 'pastes': 1, 'inks': 1, 'shortness': 1, 'spinnability': 1, '**yr': 1, 'derivative': 1, 'thermostatics': 1, 'deformational': 1, 'infer': 1, 'asymptotically': 1, 'recoverable': 1, 'asymptotic': 1, '**yg': 1, 'Rumscheidt': 1, 'ellipsoid': 1, 'ab': 1, 'cyclohexanol': 1, 'phthalate': 1, '155': 1, 'Bartok': 1, 'cosec': 1, 'rubber-like': 1, 'compressing': 1, 'isothermal': 1, 'asymmetry': 1, 'hyperfine': 1, 'Curie-Weiss': 1, 'paramagnet': 1, 'dipoles': 1, 'motional-modified': 1, '2.26': 1, '2.44': 1, 'semiempirical': 1, 'Laue': 1, 'piezoelectricity': 1, 'octahedron': 1, 'OOH': 1, 'nonequivalent': 1, 'nonequivalence': 1, '2.55': 1, 'non-hydrogen-bonded': 1, '2.58': 1, 'geometrical': 1, 'randomization': 1, 'symmetrically': 1, 'chromic': 1, '325-degrees-C': 1, 'Subsequently': 1, 'magnetically': 1, '1M': 1, '170-degrees-C': 1, 'water-washed': 1, '110-degrees-C': 1, 'Differential': 1, '340-degrees-C': 1, '470-degrees-C': 1, 'Thermogravimetric': 1, '1.8%': 1, '10.8%': 1, '463-degrees-C': 1, '10.6%': 1, 'spectrometric': 1, '410-degrees-C': 1, 'oxides': 1, 'nitrates': 1, 'hydrous': 1, 'Emission': 1, 'Chromium': 1, '58.8%': 1, '61.2%': 1, 'adsorbs': 1, 'CuK**ya': 1, 'Magnetic': 1, 'Meisenheimer': 1, '3.10': 1, 'Benesi': 1, 'Snyder': 1, 'Electron': 1, '0.3M': 1, 'single-crystal': 1, 'NMR': 1, '12-inch': 1, 'electromagnet': 1, 'bridged-T': 1, 'rf': 1, 'signal-to-noise': 1, 'Background': 1, '470': 1, 'Berkeley': 1, 'Corrections': 1, '294-degrees-K': 1, 'Eades': 1, 'wt': 1, 'height-to-diameter': 1, 'hemispherical': 1, 'anhydrous': 1, 'alundum': 1, 'Polyphosphates': 1, 'synergism': 1, 'heavy-duty': 1, 'spray-dried': 1, 'high-sudsing': 1, 'alkylbenzenesulfonates': 1, 'tetrasodium': 1, 'pyrophosphate': 1, 'low-sudsing': 1, 'nonionic': 1, 'light-duty': 1, 'built-soap': 1, 'granules': 1, 'well-publicized': 1, 'builder/active': 1, 'Hard-surface': 1, 'dishwashers': 1, 'general-purpose': 1, 'trisodium': 1, 'orthophosphate': 1, 'phosphates': 1, 'Cleaning': 1, 'soft-': 1, 'coupon': 1, 'absorptive': 1, 'surface-analyzer': 1, 'metal-cleaning': 1, 'Exclusive': 1, 'high-': 1, 'low-foam': 1, 'tattle-tale': 1, 'Launder-Ometer': 1, 'Terg-O-Tometer': 1, 'reflectance': 1, 'Hydroxides': 1, 'orthophosphates': 1, 'borates': 1, 'carbonates': 1, 'silicates': 1, 'peptizing': 1, 'Dirt': 1, 'hydrocarbons': 1, 'esters': 1, 'long-chain': 1, 'Stains': 1, 'nonparticulate': 1, 'Miscellaneous': 1, 'evaporate': 1, "Waal's": 1, 'Greases': 1, 'solvating': 1, 'Physicochemical': 1, 'anions': 1, 'monomers': 1, 'dimers': 1, 'anionics': 1, 'assemblages': 1, 'Micelles': 1, 'imbibe': 1, 'technologically': 1, 'surfactant': 1, 'emulsified': 1, 'disengage': 1, 'contiguous': 1, 'polyelectrolytes': 1, '26-2': 1, '1678': 1, 'oleophobic': 1, 'sorption': 1, 'polyphosphate': 1, 'sorption-desorption': 1, '1746': 1, '1748': 1, 'flocculation': 1, 'synergistic': 1, 'built-detergent': 1, 'antiredeposition': 1, 'isomers': 1, 'bimolecular': 1, 'halogens': 1, 'tetrahalides': 1, 'carbon-halogen': 1, 'chlorides': 1, 'prechlorination': 1, 'scavenger': 1, 'reproducibility': 1, 'Matheson': 1, 'resublimed': 1, 'tagging': 1, 'sublimed': 1, 'Liter': 1, 'Mallinckrodt': 1, 'sulfur': 1, 'reagent': 1, 'Vigreux': 1, 'degassed': 1, 'Purified': 1, 'chlorine-carbon': 1, 'resealed': 1, 'side-arm': 1, 'distil': 1, 'pre-cooled': 1, 'liquid-glass': 1, 'gas-glass': 1, 'reproducibly': 1, 'positioned': 1, 'thermostated': 1, 'oil-bath': 1, 'AH6': 1, 'thermopile': 1, 'potentiometer': 1, 'Carrier': 1, 'titration': 1, 'aliquots': 1, 'solution-type': 1, 'Geiger': 1, 'emptying': 1, 'electrolysis': 1, 'eutectic': 1, '200-degrees': 1, '0.7': 1, 'actinometer': 1, 'phosgene': 1, 'proportionality': 1, '1000-m-diameter': 1, 'solar-corpuscular-radiation': 1, 'corpuscular': 1, 'solar-wind': 1, 'sputter': 1, 'diminution': 1, 'semi-minor': 1, 'Jager': 1, 'replenishment': 1, 'cometary': 1, 'spiraling': 1, 'Asteroidal': 1, '5.3': 1, 'corona': 1, 'Explorer': 1, 'Sputnik': 1, 'sensitive-area': 1, 'exposure-time': 1, 'Dubin': 1, 'Ninety': 1, 'contradictory': 1, 'Nazarova': 1, '22-day': 1, 'LaGow': 1, 'mass-distribution': 1, 'vaporization': 1, 'hypervelocity': 1, '10-M-diameter': 1, 'fluffy': 1, 'Zodiacal': 1, 'gegenschein': 1, 'solar-radiation': 1, 'next-to-last': 1, 'unshielded': 1, 'Jacchia': 1, '0.15': 1, 'Manning': 1, 'Eshleman': 1, 'Extrapolation': 1, 'thirtieth': 1, 'line-density': 1, 'cubed': 1, 'twenty-fifth': 1, "Whipple's": 1, 'solar-electromagnetic-': 1, 'corpuscular-radiation': 1, '5.4': 1, 'Indirect': 1, 'Pettersson': 1, 'spherules': 1, 'ablated': 1, 'dusts': 1, 'quick-kill': 1, 'areosol': 1, 'pathogenesis': 1, 'intensively': 1, 'assesment': 1, 'intranasal': 1, 'instillation': 1, 'anesthetized': 1, 'turbinates': 1, 'cilia': 1, 'trachea': 1, 'intratissue': 1, 'meterological': 1, '24-hour': 1, 'diffuses': 1, 'Depending': 1, 'Zinc': 1, 'sulfide': 1, 'fluoresces': 1, '34,000': 1, 'non-pathogenic': 1, 'var.': 1, 'niger': 1, 'globigii': 1, 'off-shore': 1, 'on-sure': 1, 'Spraying': 1, 'two-mile': 1, '5:00': 1, 'samplers': 1, '562': 1, 'four-fold': 1, 'Botulinal': 1, 'toxin': 1, 'thousand-fold': 1, 'os': 1, 'Agents': 1, 'brucellosis': 1, 'glanders': 1, 'coccidioidomycosis': 1, 'microorganism': 1, 'lethality': 1, 'mutational': 1, 'antibiotic': 1, 'Mutants': 1, 'host-specific': 1, 'causative': 1, 'Rickettsia': 1, 'prowazwki': 1, 'Lousiness': 1, 'disseminating': 1, 'ventilating': 1, 'precooked': 1, 'predigested': 1, 'ethanol': 1, 'celluloses': 1, 'Modifications': 1, 'Abelson': 1, 'carboxymethyl': 1, 'Speer': 1, 'Fahey': 1, 'preisolated': 1, '**yg-globulin': 1, 'serological': 1, 'anti-Rh': 1, '2048': 1, '1024': 1, 'Serological': 1, 'Anti-A': 1, 'macroscopically': 1, 'Homozygous': 1, 'conciseness': 1, 'incubated': 1, 'immunoelectrophoresis': 1, 'glycerolized': 1, '-20-degrees-C': 1, 'deglycerolized': 1, 'centrifuging': 1, 'volumetrically': 1, '0.005': 1, '0.039': 1, 'tris(hydroxymethyl)-aminometha': 1, 'supernatant': 1, 'EEAE-cellulose': 1, '0.78': 1, 'mEq': 1, 'N/g': 1, '6-degrees-C': 1, 'nine-chambered': 1, 'Varigrad': 1, 'Erlenmeyer': 1, 'round-bottom': 1, '0.50': 1, 'm**ym': 1, 'Beckman': 1, 'DU': 1, 'spectrophotometer': 1, 'pervaporation': 1, '5-degrees-C': 1, '2-degrees-C': 1, 'dilute': 1, 'barbital': 1, '0.075': 1, 'Whatman': 1, '3MM': 1, 'milliamperes/cell': 1, 'bromphenol': 1, 'densitometry': 1, 'Analytrol': 1, 'run/chamber': 1, '1-degree-C': 1, 'transversely': 1, 'pooled': 1, 'eluted': 1, 'eluates': 1, 'Fractions': 1, 'phosphate-buffered': 1, '7.2': 1, '0.154': 1, '59,780': 1, 'Pm': 1, '20-degrees-C': 1, '1.25%': 1, 'Sedimentation': 1, 'Schlieren': 1, 'Successive': 1, '1-ml': 1, 'hypodermic': 1, 'syringe': 1, '1a': 1, '2a': 1, 'agglutinating': 1, 'citrated': 1, '4-1': 1, 'eluate': 1, 'chromatogram': 1, 'sods': 1, 'unmated': 1, 'perished': 1, '50-degrees': 1, 'currants': 1, 'sanguineum': 1, 'stamens': 1, 'black-tipped': 1, 'nectaries': 1, 'hairier': 1, 'Plath': 1, 'hideout': 1, 'befits': 1, 'choosy': 1, 'woodpecker': 1, 'pollen-and-nectar': 1, 'waxen': 1, 'incubating': 1, 'papery': 1, 'pupates': 1, 'unfertilized': 1, 'scavenging': 1, 'beetles': 1, 'idlers': 1, 'hardworking': 1, 'cuckoo-bumblebee': 1, 'deceptively': 1, 'victimize': 1, 'idler': 1, 'parasite': 1, 'intruder': 1, 'mounds': 1, 'digs': 1, 'pupated': 1, 'larval': 1, 'Nomia': 1, 'melanderi': 1, "Agriculture's": 1, 'Yearbook': 1, 'Bohart': 1, 'prepupal': 1, 'Yakima': 1, 'Prosser': 1, 'inhospitable': 1, 'fine-grained': 1, 'Thamnophis': 1, 'Kopstein': 1, 'quadrupling': 1, 'paucity': 1, '10-foot': 1, 'rattlers': 1, 'Tropidoclonion': 1, 'red-bellied': 1, 'Storeria': 1, 'cottonmouth': 1, 'Ancistrodon': 1, 'Maximum': 1, 'Oversized': 1, 'pitfalls': 1, 'err': 1, 'leans': 1, 'second-level': 1, '18-1/2': 1, 'Discussions': 1, 'Definite': 1, '33-1/2': 1, 'Mole': 1, 'Urich': 1, 'Orinoco': 1, 'estuaries': 1, 'seventy-two': 1, '19-foot': 1, '3-foot': 1, 'Schweizer': 1, '19-1/2': 1, 'Quelch': 1, 'Afranio': 1, 'Amaral': 1, 'herpetologist': 1, 'Colombia': 1, 'Roberto': 1, 'Lamon': 1, 'petroleum': 1, '37-1/2': 1, 'Boa': 1, 'constrictors': 1, 'collated': 1, 'Laying': 1, 'Hatching': 1, 'Alphonse': 1, "Hoge's": 1, 'Kauffeld': 1, 'snout': 1, 'duct': 1, 'terminating': 1, 'Lung': 1, 'haphazardly': 1, 'septation': 1, 'lobule': 1, 'Air-drifts': 1, 'Distally': 1, 'anastomotic': 1, 'net-like': 1, 'arteriolar-pulmonary': 1, 'anastomosis': 1, 'bronchiolar': 1, 'inter-species': 1, 'airflow': 1, 'morphologic': 1, 'Lindskog': 1, "'31": 1, 'monkeys': 1, 'bronchiolitis': 1, 'lobular': 1, 'Anatomically': 1, 'Birnbaum': 1, "'54": 1, 'Cudkowicz': 1, 'pathologic': 1, 'Loosli': 1, "'38": 1, 'intrapulmonary': 1, "'25": 1, 'Theoretically': 1, 'Comroe': 1, 'alveolus': 1, 'occlusive': 1, 'degeneration': 1, 'Ruysch': 1, 'Marchand': 1, 'Gilroy': 1, 'Hayek': 1, "'53": 1, 'nonfunctional': 1, 'perfusion': 1, 'Brailsford': 1, 'Daly': 1, 'inoperable': 1, 'uninjectable': 1, "Verloop's": 1, 'Grindlay': 1, 'anatomic': 1, 'species-dependent': 1, 'histology': 1, 'interspecies': 1, 'anatomically': 1, 'Lobularity': 1, 'Arterial': 1, 'terminates': 1, 'ossify': 1, 'calcification': 1, 'Wrist': 1, "center's": 1, 'prepubescent': 1, 'Length': 1, 'monograph': 1, '25.3': 1, '-.50': 1, '-.10': 1, 'counter-balanced': 1, 'menarches': 1, 'digitalis': 1, 'glycosides': 1, 'Organification': 1, 'Fawcett': 1, 'Tong': 1, 'Serif': 1, 'Groot': 1, 'iodoprotein': 1, 'iodoamino': 1, 'thyronine': 1, 'Iodination': 1, 'non-enzymatic': 1, 'analogues': 1, 'Pitt-Rivers': 1, 'iodocompounds': 1, 'seq.': 1, 'Thyroglobulin': 1, 'iodination': 1, 'transplantable': 1, 'tumours': 1, 'congenital': 1, 'Secretion': 1, 'amino': 1, '3.7': 1, 'McQuillan': 1, 'Trikojus': 1, 'TSH-treated': 1, 'protease': 1, 'Petermann': 1, 'proteolytic': 1, 'microsomal': 1, 'de-iodinase': 1, 'triphosphopyridine': 1, 'de-iodinate': 1, 'iodotyrosines': 1, 're-incorporated': 1, 'de-iodination': 1, 'thyroxine-binding': 1, 'Ingbar': 1, 'Freinkel': 1, 'univalent': 1, 'anion': 1, 'thiocyanate-perchlorate-fluoro': 1, 'iodinate': 1, 'Astwood': 1, 'hypothyroidism': 1, 'iodide-concentrating': 1, 'antagonised': 1, 'L-5-vinyl-2-thio-oxazolidone': 1, 'rutabaga': 1, 'Brassica': 1, 'Wishart': 1, 'secreted': 1, 'Dietary': 1, 'hyperplasia': 1, 'Brownell': 1, 'Riggs': 1, 'Perinetti': 1, 'Itoiz': 1, 'Castillo': 1, '**ymg': 1, 'blood-flow': 1, 're-use': 1, 'de-iodinated': 1, 'iodothyronines': 1, 'thyrotrophin': 1, 'thyrotrophic': 1, 'follicular': 1, 'thyroidal': 1, 'tsh': 1, 'Niepce': 1, 're-activate': 1, 'atrophied': 1, 'thyroids': 1, 'hypophysectomised': 1, 'tadpoles': 1, 'Loeser': 1, 'trichloroacetic': 1, 'salt-fractionation': 1, 'Sonenberg': 1, 'Condliffe': 1, 'Carsten': 1, 'Wynston': 1, 'synthesised': 1, 'abnormally': 1, 'long-acting': 1, 'thyrotoxic': 1, 'Pharmacopoeia': 1, 'redefinition': 1, 're-emphasise': 1, 're-introduction': 1, 'u.': 1, 'Mussett': 1, 'equipotent': 1, 'steroid': 1, 'corticosteroids': 1, 'biopsies': 1, 'steroid-induced': 1, 'refractory': 1, '65-year-old': 1, 'Splenomegaly': 1, 'sternal': 1, 'foci': 1, 'myelofibrosis': 1, 'infarction': 1, 'cardiomegaly': 1, 'arteriosclerosis': 1, 'obliterans': 1, 'cholelithiasis': 1, '11.6': 1, 'Therapy': 1, 'digitalization': 1, 'anticoagulation': 1, 'chlorothiazide': 1, '10.6': 1, 'hemolytic': 1, '13.8': 1, 'caving': 1, 'musculature': 1, 'Prednisone': 1, '3.8': 1, 'mEq.': 1, 'liter': 1, '13.9': 1, 'quadriceps': 1, 'Triamcinolone': 1, 'Chlorothiazide': 1, '2-week': 1, 'neuromuscular': 1, 'hypoactive': 1, 'deep-tendon': 1, 'fasciculations': 1, 'Electromyography': 1, 'neuron': 1, 'Thyroid': 1, 'protein-bound': 1, '6.6': 1, '46%': 1, 'Schilling': 1, 'sarcolemmal': 1, 'shrunken': 1, 'glutamic': 1, 'oxaloacetic': 1, 'transaminase': 1, 'ml.': 1, 'min.': 1, 'polymyositis': 1, 'corticotropin': 1, 'ACTH': 1, 'Gel': 1, 'intramuscularly': 1, 'propylthiouracil': 1, 'anorexia': 1, 'hypoadrenocorticism': 1, 'osteoporosis': 1, 'D8': 1, 'norethandrolone': 1, 'thrombosed': 1, 'hemorrhoids': 1, 'demineralization': 1, 'distension': 1, 'Findings': 1, 'pterygia': 1, 'arcus': 1, 'senilis': 1, 'edentulous': 1, '510': 1, 'ventricles': 1, 'sclerotic': 1, 'diffusely': 1, 'atheromatous': 1, 'myocardium': 1, 'mitral': 1, 'hypertrophied': 1, 'fusiform': 1, 'clefts': 1, 'mononuclear': 1, 'intimal': 1, 'confluent': 1, 'yellow-brown': 1, 'renal': 1, 'celiac': 1, 'calcified': 1, 'iliac': 1, '950': 1, 'emphysematous': 1, 'blebs': 1, 'fibrocalcific': 1, 'nodules': 1, 'Macrophages': 1, '410': 1, 'endothelial': 1, 'nucleated': 1, 'granulocytic': 1, '2,090': 1, 'vacuolated': 1, 'gallbladder': 1, 'dark-green': 1, 'calculi': 1, 'intestines': 1, 'intestine': 1, 'sanguineous': 1, 'mesenteric': 1, 'cytolysis': 1, 'Gram-negative': 1, 'focally': 1, 'ileum': 1, 'edematous': 1, 'thrombi': 1, 'ulcerations': 1, 'Cultures': 1, 'Monilia': 1, 'albicans': 1, 'Pseudomonas': 1, 'pyocanea': 1, 'Aerobacter': 1, 'aerogenes': 1, 'Streptococcus': 1, 'anhemolyticus': 1, 'coarsely': 1, 'fluid-filled': 1, 'lymphocytes': 1, 'tubules': 1, 'hyaline': 1, 'admixed': 1, 'hyalinization': 1, 'afferent': 1, 'papillary': 1, 'adenomas': 1, 'sternum': 1, 'hypercellularity': 1, 'alternating': 1, 'hypocellularity': 1, 'erythroid': 1, 'myeloid': 1, 'megakaryocytic': 1, 'extremities': 1, 'abdominis': 1, 'brachii': 1, 'necrotic': 1, 'eosinophilic': 1, 'myofibrils': 1, 'protoplasm': 1, 'flocculated': 1, 'phagocytes': 1, 'Inflammatory': 1, 'chainlike': 1, 'closely-packed': 1, 'vesicular': 1, 'regenerating': 1, 'Trichrome': 1, 'Purification': 1, 'fluorescein-labeled': 1, 'Agrobacterium': 1, 'tumefaciens': 1, 'Townsend': 1, 'precipitate': 1, 'ammonium': 1, 'lyophilized': 1, 'Dineen': 1, 'Ade': 1, 'quick-frozen': 1, '**ym': 1, 'cryostat': 1, '-16-degrees': 1, '-20-degrees': 1, "Haupts'": 1, 'Johansen': 1, 'Staining': 1, '24-degrees': 1, 'layered': 1, 'undiluted': 1, 'Wolcyrz': 1, 'Fluorescence': 1, 'Osram': 1, 'HBO': 1, 'half-standard': 1, 'Corning': 1, 'eyepiece': 1, 'Wratten': 1, 'residual': 1, 'Schott': 1, 'Unstained': 1, 'Rinsing': 1, 'DEAE-cellulose-treated': 1, 'sweet-clover': 1, 'conjugating': 1, 'Nonspecific': 1, 'precipitin': 1, 'Whitcomb': 1, 'pith': 1, 'Littau': 1, 'fluorescein': 1, 'isocyanate-labeled': 1, 'Wound-tumor': 1, 'leafhopper': 1, 'transmissible': 1, 'Brakke': 1, 'phloem': 1, 'infect': 1, 'vertebrates': 1, 'cortically': 1, 'extinguished': 1, 'paleo-': 1, 'primates': 1, "Mirsky's": 1, 'MacLean': 1, 'limbic': 1, 'Hypothalamic': 1, 'neo-': 1, 'paleocortical': 1, 'Facilitatory': 1, 'barbiturate': 1, 'baroreceptor': 1, 'reserpine': 1, 'chlorpromazine': 1, 'maniclike': 1, 'therapies': 1, 'hypothalamically': 1, 'hypophyseal': 1, 'secretions': 1, 'hypo-': 1, 'remissions': 1, 'impairment': 1, 'noradrenalin': 1, 'sleep-wakefulness': 1, 'cardiovascular': 1, 'clinically': 1, 'elucidated': 1, 'parsympathetic': 1, 'elicits': 1, 'comas': 1, 'electroshocks': 1, 'metrazol': 1, 'desynchronizing': 1, 'disjointed': 1, 'psychosomatic': 1, 'abreaction': 1, "Wolpe's": 1, 'neuronal': 1, 'Pavlov': 1, 'reversibility': 1, 'salivary': 1, 'Wolpe': 1, 'Appropriate': 1, 'assertiveness': 1, 'tropho-': 1, 'ergotropic': 1, 'excretion': 1, 'catecholamines': 1, 'incompatibility': 1, 'Concluding': 1, 'psychopharmacological': 1, 'psychotic': 1, 'imbalance': 1, 'irreducible': 1, 'integers': 1, 'subspaces': 1, 'first-degree': 1, 'n-dimensional': 1, 'non-algebraically': 1, 'complex-valued': 1, 'expressible': 1, 'exponential': 1, 'zeros': 1, 'Marksmanship': 1, 'Inheritance': 1, 'wavy': 1, 'Aces': 1, 'non-success': 1, 'super-experiment': 1, 'five-round': 1, 'Mathematically': 1, 'nondriver': 1, 'Toss': 1, 'not-A': 1, "marksman's": 1, 'two-class': 1, 'wavy-haired': 1, 'hairless': 1, 'dazzles': 1, 'Strictly': 1, 'three-dice': 1, 'Experimentally': 1, '0.36': 1, '0.52': 1, '0.70': 1, 'n-trial': 1, 'baseline': 1, 'real-analytic': 1, 'Kakutani': 1, 'cube': 1, 'convex': 1, 'Yamabe': 1, 'Yujobo': 1, 'Cairns': 1, 'convexity': 1, 'endpoints': 1, 'abscissa': 1, 'lemmas': 1, 'Cartesian': 1, 'extrema': 1, 'analyticity': 1, 'two-valued': 1, 'no-valued': 1, '{0,T}': 1, 'PQ': 1, 's-values': 1, 'Af-values': 1, 'ordinates': 1, 'b-plane': 1, 'oblique': 1, 'g{t}-axis': 1, 'reguli': 1, 'intercepts': 1, "P'": 1, 'bilinear': 1, 'directrices': 1, 'Jonquieres': 1, 'Feelings': 1, 'recreated': 1, 'forward-moving': 1, 'Transitional': 1, 'erratically': 1, 'Isolated': 1, 'modernize': 1, 'advisor': 1, 'Actively': 1, 'decentralizing': 1, 'upper-level': 1, 'constraining': 1, 'Convinced': 1, 'treaty-making': 1, 'free-world': 1, 'marginally': 1, 'preliterate': 1, 'dominantly': 1, 'anomic': 1, 'enhancing': 1, 'self-pacification': 1, 'self-completion': 1, 'epitomize': 1, 'clarifies': 1, 'incitements': 1, 'sociality': 1, 'creativeness': 1, 'theistic': 1, 'widowhood': 1, 'anomie': 1, 'sinning': 1, 'humilation': 1, 'all-victorious': 1, 'Father-God': 1, 'value-system': 1, 're-enforces': 1, 'reaffirms': 1, 'atheistic': 1, 'universalistic': 1, 'non-church': 1, 'freewheelers': 1, 'religionists': 1, 'intermediary': 1, 'super-empirical': 1, 'sacrament': 1, 'law-breaking': 1, 'tampering': 1, 'interpretable': 1, 'totemic': 1, 'creeds': 1, 'socializes': 1, 'sanctified': 1, 'reasserting': 1, 'unites': 1, 'denominationally': 1, 'semi-public': 1, '2500': 1, 'interpeople': 1, 'stabilizing-conserving': 1, 'Yinger': 1, 'energizes': 1, 'Crusades': 1, 'embody': 1, 'Overwhelmed': 1, 'phobic-like': 1, 'full-blown': 1, 'Inability': 1, 'colicky': 1, 'remarrying': 1, 'traumatic': 1, 'agonized': 1, 'Abreaction': 1, 'perceiving': 1, 'motherly': 1, 'well-baby': 1, "twins'": 1, 'Follow-up': 1, 'out-reaching': 1, 'helpfulness': 1, 'information-seeking': 1, 'relationship-building': 1, 'maturational': 1, 'ego-adaptive': 1, 'maladaptive': 1, 'anticipatory': 1, 'preconscious': 1, 'family-oriented': 1, 'integrative': 1, 'crisis-oriented': 1, "Levinger's": 1, 'predictors': 1, 'parent-child': 1, 'Similarities': 1, "ego's": 1, 'Willingness': 1, 'chronically': 1, 'innovate': 1, 'typology': 1, 'caseworkers': 1, 'replete': 1, 'globally': 1, 'middle-range': 1, 'multipurpose': 1, 'abounds': 1, 'meaningfully': 1, 'Sentiment': 1, 'baptisms': 1, 'interacting': 1, 'Achieving': 1, 'endogamous': 1, 'Norms': 1, 'conjectured': 1, 'proscribed': 1, 'Status-roles': 1, 'status-roles': 1, 'non-authoritative': 1, 'Ranking': 1, 'interviewees': 1, 'exogamous': 1, 'Gemeinschaft': 1, 'social-role': 1, 'occupancies': 1, 'biologically': 1, 'immutable': 1, 'self-image': 1, 'Sanctions': 1, 'stringently': 1, 'consanguineously': 1, 'facilitating': 1, 'consanguineous': 1, 'Subsystems': 1, 'inter-relationships': 1, 'interconnected': 1, 'relational': 1, 'Roles': 1, 'Regulative': 1, 'affinities': 1, 'substructure': 1, 'regulative': 1, 'inbreeding': 1, 'Adaptation': 1, 'non-social': 1, 'Integration': 1, 'inter-relation': 1, 'Institutionalization': 1, 'facilitated': 1, 'Intense': 1, 'Urbanization': 1, 'over-simplification': 1, 'urban-fringe': 1, 'incurs': 1, 'heterogamous': 1, "group's": 1, 'ostracism': 1, 'Confused': 1, 'Culturally': 1, 'systemic': 1, 'chiefdoms': 1, 'Governor-General': 1, 'Affaires': 1, "Main-d'Oeuvre": 1, 'Gouvernement': 1, 'Tribal': 1, 'fiche': 1, 'circonscription': 1, 'sub-chiefdom': 1, 'territoire': 1, 'chiefdom': 1, 'puberty': 1, 'inoculations': 1, 'circonscriptions': 1, 'polygynous': 1, 'non-polygynous': 1, 'Averages': 1, 'domiciled': 1, 'Fonds': 1, "l'Assistance": 1, 'Medicale': 1, 'aux': 1, 'FOREAMI': 1, '638,560': 1, '840,503': 1, 'Kwango': 1, 'Rapport': 1, "l'activite": 1, 'Pendant': 1, 'annee': 1, 'Bruxelles': 1, "L'Institut": 1, 'Recherche': 1, 'Scientifique': 1, 'Afrique': 1, 'Centrale': 1, 'in-migrants': 1, 'Maquet': 1, "l'Universite": 1, 'Officielle': 1, 'sub-chiefs': 1, '1,100': 1, 'circumscriptions': 1, 'Statistics': 1, 'Demographie': 1, 'Romaniuk': 1, 'Statistique': 1, 'Neesen': 1, 'Walle': 1, 'enquetes': 1, 'demographiques': 1, 'calculable': 1, 'Uniform': 1, 'post-census': 1, 'expeditiously': 1, 'not-yet-married': 1, 'all-married': 1, 'rationalized': 1, 'sophomores': 1, 'Auditors': 1, 'electives': 1, 'auditing': 1, 'senior-graduate': 1, 'digress': 1, 'pre-marital': 1, 'encroach': 1, 're-evaluate': 1, 'Films': 1, 'Supplemental': 1, 'empathy': 1, 'survivor': 1, 'reproductive': 1, 'childless': 1, 'trimester': 1, 'examiantion': 1, 'structuring': 1, 'Responses': 1, 'Guilford': 1, 'Rorschach': 1, 'Inferiority': 1, 'Conditions': 1, 'shifters': 1, 'nonshifters': 1, '2.405': 1, 'two-tail': 1, '27%': 1, '49%': 1, "subject's": 1, 'behaviorally': 1, 'uninfluenced': 1, 'Autosuggestibility': 1, 'arm-rise': 1, "subjects'": 1, 'Hypothesis': 1, 'normals': 1, 'levitation': 1, 'Alcohol': 1, 'ingestion': 1, 'hypnosis': 1, 'voluntary-control': 1, 'involuntary-control': 1, 'Aniseikonic': 1, 'aniseikonic': 1, 'guardedness': 1, 'conventionality': 1, 'three-family': 1, 'upper-middle': 1, 'upper-lower': 1, 'Subjects': 1, 'underachievers': 1, 'over-achievers': 1, 'under-achievers': 1, 'Over-achievers': 1, 'Rating': 1, 'open-ended': 1, 'multiple-choice': 1, 'perfectionism': 1, 'orderliness': 1, 'punctuality': 1, 'interviewers': 1, 'perusing': 1, 'categorizing': 1, 'behaviors': 1, 'emotionality': 1, 'cleans': 1, 'Multiphastic': 1, 'Personality': 1, 'differentiating': 1, 'Reliability': 1, 'validation': 1, 'Relationship': 1, 'obsessive-compulsive': 1, 'Criterion': 1, 'Stanford': 1, 'Spelling': 1, 'Reasoning': 1, 'grade-equivalents': 1, 'median': 1, 'grade-equivalent': 1, 'Wechsler': 1, 'over-': 1, '4.8': 1, 'over-achievement': 1, '3.0': 1, '-.5': 1, 'sub-group': 1, 'whole-word': 1, 'systemization': 1, 'phonic': 1, 'accentuates': 1, 'anxiety-released': 1, 'memorization': 1, 'Sarason': 1, 'test-like': 1, 'replication': 1, 'subparts': 1, 'Impersonal': 1, 'possiblities': 1, 'Interviewing': 1, 'resignations': 1, 'hesitating': 1, 'clerking': 1, "receptionist's": 1, 'mousy': 1, 'aplomb': 1, 'supplanting': 1, 'comer': 1, 'antagonize': 1, 'Turnover': 1, 'Entirely': 1, 'supermarket': 1, 'curtness': 1, 'abruptness': 1, 'tailor-make': 1, 'condensing': 1, 'roleplayed': 1, 'graphed': 1, 'evaluative': 1, 'totalistic': 1, 'veridical': 1, 'Spontaneity': 1, "voice's": 1, 'parrot-like': 1, 'parroting': 1, 'timeworn': 1, 'axiom': 1, 'pseudo-emotion': 1, 'wracking': 1, 'demarcated': 1, 'home-city': 1, 'mother-introject': 1, 'scathingly': 1, 'condemnatory': 1, 'despises': 1, 'disconcertingly': 1, 'unmanageably': 1, 'introjected': 1, 'introjects': 1, 'passerby': 1, 'vocalize': 1, 'seclude': 1, 'manifesting': 1, 'steoreotyped': 1, 'personifying': 1, 'consoling': 1, 'succor': 1, 'ward-personnel': 1, 'arrogantly': 1, 'plunking': 1, 'Condensation': 1, 'simple-seeming': 1, 'spread-out': 1, 'well-grooved': 1, 'newly-emerging': 1, 'babel': 1, 'indistinct': 1, 'delineated': 1, 'largely-silent': 1, 'Dearie': 1, 'undifferentiated': 1, 'dedifferentiated': 1, 'mulling': 1, 'animal-like': 1, 'intimating': 1, 'Cameron': 1, 'McGhie': 1, 'prototypical': 1, 'symbolic-sounding': 1, 'mid-twentieth-century': 1, 'peeking': 1, 'concretistic-seeming': 1, 'particularistic-seeming': 1, 'Burnham': 1, 'expounding': 1, 'tangibly': 1, 'docked': 1, "dictionary's": 1, 'prefixes': 1, 'suffixes': 1, 'voume': 1, 'alphabetic': 1, 'random-storage': 1, 'compile': 1, 'sentence-structure': 1, 'equivalent-choice': 1, 'target-language': 1, 'Y-cells': 1, 'pre-determined': 1, 'Y-regions': 1, 'selection-rejection': 1, 'text-ordered': 1, 'information-cell': 1, 'outputting': 1, 'text-lookup': 1, 'form-dictionary': 1, 'paradigms': 1, 'Equivalents': 1, 'summarization': 1, 'long-known': 1, "Wesley's": 1, 'Boylston': 1, 'fy': 1, 'syllable': 1, 'syntactic': 1, 'Adverbial': 1, 'adjuncts': 1, 'Context': 1, 'accompanies': 1, 'italicized': 1, 'stored-up': 1, 'silliest': 1, 'Martinique': 1, 'Omission': 1, 'adverb': 1, 'noun': 1, 'Steiners': 1, 'syntactically': 1, 'Syllabification': 1, 'vocalic': 1, 'Doubt': 1, '/r/': 1, 're': 1, 'suffix': 1, 'ity': 1, 'monosyllable': 1, 'over-simple': 1, 'familar': 1, 'equip': 1, 'analytically': 1, 'Welmers': 1, 'divert': 1, 'uninitiate': 1, 'co-occurring': 1, 'articulations': 1, "Rowlands'": 1, 'intermeshed': 1, 'glottal': 1, 'accentual': 1, 'Ewe': 1, "Richardson's": 1, 'Sukuma': 1, 'phonemes': 1, 'morphemic': 1, 'Consonantal': 1, 'multidimensional': 1, 'Morphophonemic': 1, 'Phonemes': 1, 'Smaller': 1, 'grammatically': 1, 'broadest': 1, 'abstrusenesses': 1, 'typographic': 1, 'Linguists': 1, 'Vowel-Length': 1, 'Syllabicity': 1, 'examines': 1, 'syllabicity': 1, 'superficiality': 1, 'hesitates': 1, 'Vowel': 1, 'Carnochan': 1, 'restates': 1, 'prosodies': 1, 'briefer': 1, 'Whiteley': 1, 'Radical': 1, 'Description': 1, 'Item-Categories': 1, 'stopping-point': 1, 'diverging': 1, 'proto-Athabascan': 1, 'proto-Yokuts': 1, 'unambiguity': 1, 'informants': 1, 'Joaquin': 1, 'omit': 1, 'genera': 1, 'manzanita': 1, 'non-comparable': 1, 'interrogatives': 1, 'demonstratives': 1, 'proportionally': 1, '253': 1, '2.7': 1, '3.9': 1, '4.7': 1, '4.0': 1, '3.4': 1, '2.8': 1, '22%': 1, '3.5%': 1, 'consistence': 1, 'trans-lingually': 1, 'near-synonyms': 1, 'stomach-belly': 1, 'big-large': 1, 'long-far': 1, 'many-much': 1, 'die-dead': 1, 'say-speak': 1, 'eventuate': 1, 'Vocabulary': 1, 'Languages': 1, 'AL': 1, 'Accuracy': 1, 'IJAL': 1, '137': 1, 'unvarying': 1, 'M-K': 1, 'Ath.': 1, 'Yok.': 1, '86%': 1, '64%': 1, '57%': 1, 'diachronic': 1, 'classificatory': 1, 'weighting': 1, 'Two-Stem': 1, 'Meanings': 1, 'A/3': 1, 'unasterisked': 1, 'Stems': 1, 'retentiveness': 1, 'expectable': 1, 'snare': 1, 'linguistically': 1, 'labile': 1, 'definable': 1, 'cocopalm': 1, 'indubitable': 1, 'ramification': 1, 'coalescence': 1, 'kingdoms': 1, 'Hokan': 1, 'Penutian': 1, 'phyla': 1, 'diagrammed': 1, 'Salish': 1, 'evidential': 1, 'anciently': 1, 'glottochronology': 1, 'Lees': 1, 'predilections': 1, 'lexicostatistic': 1, 'unachievable': 1, 'operationally': 1, '5000-word': 1, 'alphabetized': 1, 'fiftieth': 1, 'Doubtless': 1, 'Nazi-minded': 1, 'Bolshevism': 1, 'Ukrainians': 1, 'digressions': 1, 'Dunn-Atherton': 1, 'Neisse-Oder': 1, 'Pomerania': 1, 'Pripet': 1, 'Marshes': 1, 'industrially': 1, 'agriculturally': 1, 'unplagued': 1, 'master-race': 1, 'Junkerdom': 1, 'Slavs': 1, 'enslaved': 1, 'onrushing': 1, 'feudalistic': 1, 'devoutly': 1, 'incompatibles': 1, 'sanitaire': 1, 'affirmations': 1, 'McNeill': 1, 'war-time': 1, 'imperil': 1, 'far-sighted': 1, 'capitalist-democratic': 1, 'Italics': 1, 'localized': 1, 're-declared': 1, 'Pogue': 1, 'fanfare': 1, 'procrastination': 1, 'regionally': 1, 'Elections': 1, 'Si': 1, 'Mubarak': 1, 'Bekkai': 1, 'Muhammad': 1, 'Liberties': 1, 'Parti': 1, 'Democratique': 1, "l'Independance": 1, 'Maroc': 1, 'Ifni': 1, 'mid-1958': 1, 'Mouvement': 1, 'Populaire': 1, 'post-independence': 1, 'let-down': 1, 'after-effects': 1, 'Abdallah': 1, 'labyrinth': 1, 'procrastinate': 1, 'repudiate': 1, 'uninominal': 1, 'liste': 1, 'Duverger': 1, 'unearth': 1, 'Rabat': 1, 'Interesting': 1, 'Istiqlal-sponsored': 1, 'Marocaine': 1, 'Commercants': 1, 'Industrialistes': 1, 'Artisans': 1, 'Populaires': 1, 'labor-based': 1, 'U.M.T.': 1, 'pro-U.N.F.P.': 1, 'Bani': 1, 'Mellal': 1, 'Centrally': 1, 'inescapably': 1, 'Voter': 1, 'Periodic': 1, 'disqualified': 1, 'Protectorate': 1, 'Unemployed': 1, 'retraining': 1, 'state-administered': 1, 'matching-fund': 1, '$297': 1, '$740': 1, 'Manpower': 1, 'Employers': 1, 'state-sponsored': 1, 'Relation': 1, 'pre-employment': 1, 'preemployment': 1, 'Elaborate': 1, 'enrollees': 1, 'Programs': 1, 'heighten': 1, 'aptitudes': 1, 'intial': 1, 'breakaway': 1, 'vaguest': 1, 'generalities': 1, 'durations': 1, 'advocates': 1, 'trend-following': 1, 'Correlations': 1, 'cut-and-dried': 1, 'ceaselessly': 1, 'shoe-string': 1, 'foretell': 1, 'olden': 1, "Street's": 1, "stock's": 1, 'cocao': 1, 'Merchandise': 1, 'lady-bugs': 1, 'green-bugs': 1, 'non-forthcoming': 1, 'broker': 1, 'marketwise': 1, 'Odd-lot': 1, 'graphs': 1, 'erudition': 1, 'accrues': 1, 'askew': 1, 'unflattering': 1, "campaign's": 1, 'flatteringly': 1, 'echelons': 1, 'fluctuates': 1, 'outfox': 1, 'Diametric': 1, 'squeamishness': 1, 'Magee': 1, 'chartists': 1, 'investing': 1, "Wheelan's": 1, 'committment': 1, 'forethought': 1, 'bullish': 1, 'over-subscribed': 1, 'hoaxes': 1, 'Nineteen-sixty': 1, 'record-high': 1, '7.6%': 1, '4-month': 1, 'downpayment': 1, 'liquidity': 1, 'accentuate': 1, '883,000': 1, '1,018,000': 1, 'Seventies': 1, '1,338,000': 1, '1,525,000': 1, '$26.5-billion': 1, '$44.3-billion': 1, '$75-billion': 1, 'Spurred': 1, 'dammed-up': 1, 'guaranty': 1, 'home-building': 1, 'Markets': 1, "Sixties'": 1, 'Wage-price': 1, 'expository': 1, 'Mathematical': 1, 'entry-limited': 1, 'non-wage': 1, 'entry-limit': 1, 'foreign-entry-limit': 1, 'wage-rates': 1, 'acceded': 1, 'Disagreement': 1, 'exacerbates': 1, 'productivity-share': 1, 'price-level': 1, 'wage-rate': 1, 'non-negative': 1, 'wage-setter': 1, 'disproving': 1, 'union-industry': 1, 'legislate': 1, 'opportunistic': 1, 'alignments': 1, 'Europeanized': 1, 'Napoleonic': 1, 'Europeanization': 1, 'law-governed': 1, 'misconstruction': 1, 'ineffectively': 1, 'conceptually': 1, 'unifications': 1, 'Hobbes': 1, 'jurisprudentially': 1, "Jellinek's": 1, 'auto-limitation': 1, 'Hidden': 1, 'industralization': 1, 'Codification': 1, "Hobbes'": 1, 'bourgeoisie': 1, 'abrogated': 1, 'Contract': 1, 'touchstone': 1, 'Anzilotti': 1, 'Pacta': 1, 'sunt': 1, 'Servanda': 1, 'reshaped': 1, 'nationalize': 1, 'Admiralty': 1, 'determinate': 1, 'nationalizing': 1, 'concurrently': 1, 'federal-right': 1, 'Substantive': 1, 'Process': 1, 'three-judge': 1, 'ineffectiveness': 1, 'enjoin': 1, 'Pullman': 1, 'offending': 1, 'Reluctant': 1, 'vacate': 1, 'Burford': 1, 'state-law': 1, 'adjudicate': 1, 'unmodified': 1, 'Ry.': 1, 'uneconomic': 1, 'deprivation': 1, 'injunctive': 1, 'sterilize': 1, 'federal-question': 1, 'suable': 1, 'suability': 1, 'decisional': 1, 'case-by-case': 1, 'judiciaries': 1, 'pronouncing': 1, 'parenthetically': 1, 'evade': 1, 'ex-Justice': 1, 'construing': 1, 'complainant': 1, 'pleader': 1, "plaintiff's": 1, 'Strict': 1, 'subsumed': 1, 'judge-made': 1, 'dissented': 1, 'particularity': 1, 'delimits': 1, 'Terminiello': 1, '381(c)(9)': 1, '381(c)(16)': 1, '381(c)(14)': 1, 'tax-avoidance': 1, 'voids': 1, 'dissolutions': 1, 'subrogation': 1, 'Exceptions': 1, 'transferors': 1, 'Canneries': 1, 'Novo': 1, 'Roomberg': 1, 'Kingan': 1, 'liquidating': 1, 'anti-assignment': 1, 'suing': 1, 'certificates': 1, 'Rul.': 1, 'Kimbell-Diamond': 1, 'meretricious': 1, '1231': 1, '381(c)(4)': 1, '1223': 1, 'grain-storage': 1, '60-month': 1, 'Attributes': 1, 'Brewery': 1, 'Learned': 1, 'Sansome': 1, 'cautions': 1, 'Reasons': 1, "respondent's": 1, 'classifying': 1, 'Characteristics': 1, 'pretest': 1, 'addressees': 1, 'questionaire': 1, 'postcards': 1, 'Twenty-eight': 1, 'Appendixes': 1, 'Compilation': 1, 'out-group': 1, 'Mailing': 1, 'Airmail': 1, 'postage-prepaid': 1, '4,900': 1, '3,450': 1, '1,450': 1, '1,343': 1, '26.8': 1, '5,014': 1, 'Fifty-seven': 1, '1,286': 1, 'coded': 1, 'key-punched': 1, '228': 1, '650': 1, 'ASPR': 1, '1-701': 1, 'Organizing': 1, "growers'": 1, 'trumped-up': 1, 'bona': 1, 'fide': 1, 'sucess': 1, 'Primarily': 1, 'Unemployment': 1, 'Migrant': 1, 'Infrequently': 1, '2051': 1, 'lock-outs': 1, 'empower': 1, '602.2': 1, 'Referrals': 1, 'subparagraph': 1, 'Assume': 1, 'prohibits': 1, 'Employer': 1, 'DiGiorgio': 1, 'Bowers': 1, 'Butte': 1, 'Legal': 1, 'juridical': 1, 'nullify': 1, 'sustaining': 1, 'nonagricultural': 1, 'strikebreakers': 1, 'Stendler': 1, 'one-year': 1, 'preschool': 1, 'Ridiculing': 1, 'jostle': 1, 'frown': 1, 'negativism': 1, 'harmoniously': 1, '1,524': 1, 'overaggressive': 1, 'glandular': 1, 'malfunctioning': 1, 'immaturity': 1, 'Unwholesome': 1, 'Cumulative': 1, 'folders': 1, 'Intergroup': 1, 'Harford': 1, 'Knoxville': 1, 'Pulaski': 1, 'recapitulation': 1, 'Dominion': 1, 'desegregation-from-court-order': 1, '74.1': 1, '76.7': 1, 'monolithically': 1, "Georgetown's": 1, 'conversion-by-renovation': 1, 'ousting': 1, 'sharpest': 1, 'Core': 1, 'Warrenton': 1, 'Rockville': 1, 'vex': 1, 'perplex': 1, 'Correlatively': 1, 'Pupil': 1, 'desegregate': 1, 'all-something-or-the-other': 1, 'infinitesimally': 1, 'Withholding': 1, 'AVC': 1, 'enlists': 1, 'Required': 1, 'municipality': 1, 'Supervisors': 1, 'legislated': 1, 'moot': 1, 'Seldom': 1, '172': 1, 'class-biased': 1, 'transmits': 1, "educator's": 1, 'Wattenberg': 1, 'taskmaster': 1, 'deprivations': 1, 'native-born': 1, 'unofficially': 1, 'constituencies': 1, 'expansionist': 1, 'government-supported': 1, 'Hollingshead': 1, "laymen's": 1, 'P.-T.A.': 1, 'policy-making': 1, 'espousal': 1, 'counterbalancing': 1, 'Maximizing': 1, 'school-leaving': 1, 'equalizing': 1, 'student-loan': 1, 'nondiscriminatory': 1, 'expositions': 1, 'incremental': 1, "economist's": 1, 'cost-finding': 1, 'ton-mile': 1, 'concededly': 1, 'less-than-carload': 1, 'Suffice': 1, 'utility-cost': 1, 'High-tension': 1, 'low-tension': 1, 'reapportioned': 1, 'electric-utility': 1, 'subtypes': 1, '$7,000,000': 1, '$30,000,000': 1, '6-2/3': 1, 'Three-part': 1, 'steam-generation': 1, 'subdivisions': 1, 'kilowatt-hours': 1, 'kilowatts': 1, 'kilowatt': 1, 'customer-cost': 1, 'earmarked': 1, 'low-voltage': 1, 'preconditions': 1, 'unexamined': 1, 'axiological': 1, 'mimetically': 1, 'Rapoport': 1, 'subatomic': 1, 'Brodbeck': 1, 'experientially': 1, 'sifting': 1, "Merton's": 1, 'Nagel': 1, '307': 1, 'teleology': 1, 'Functionalism': 1, 'tyrannize': 1, 'Bee': 1, 'flagellation': 1, 'Wetter': 1, 'Pt.': 1, '1957b': 1, 'Metaphysics': 1, 'nebular': 1, 'Laplace': 1, 'Systeme': 1, 'Monde': 1, "Riemann's": 1, 'space-time': 1, "Marcel's": 1, 'Homo': 1, 'Viator': 1, 'das': 1, 'Nichtige': 1, 'jeers': 1, 'anthropological': 1, 'borderlands': 1, 'slothful': 1, 'self-content': 1, 'vantage-points': 1, 'Oppenheim': 1, 'Bergson': 1, 'verity': 1, 'spruced': 1, 'Merleau-Ponty': 1, 'hypostatization': 1, 'philosophies': 1, 'mystification': 1, 'fetishize': 1, 'delphic': 1, 'McGlynn': 1, 'mechanist': 1, 'relativist': 1, 'Philosophic': 1, 'incompleteness': 1, 'goal-oriented': 1, 'teleological': 1, 'prescriptive': 1, 'methodology': 1, 'presumptions': 1, 'Simmel': 1, 'Dilthey': 1, 'pseudo-questions': 1, 'universals': 1, 'wave-particle': 1, 'reshapes': 1, 'Uncertainty': 1, 'precondition': 1, 'indefiniteness': 1, 'squeaky': 1, 'Fiddlesticks': 1, 'commoner': 1, 'whit': 1, 'passer-by': 1, 'repugnance': 1, 'groundless': 1, 'nonoccurrence': 1, 'subjectivists': 1, 'Siberian': 1, "Dostoevsky's": 1, 'repulsion': 1, 'needlessly': 1, 'miner': 1, 'cerebellum': 1, 'Psychical': 1, 'conjure': 1, 'memory-picture': 1, 'Spatial': 1, 'Spatiality': 1, 'psychically-blind': 1, 'third-dimensionality': 1, "authors'": 1, 'skin-perceptiveness': 1, 'passively': 1, 'abnormalities': 1, 'undamaged': 1, 'eyesight': 1, 'every-day': 1, 'performance-capacity': 1, 'long-familiar': 1, 'subfigures': 1, 'writing-like': 1, 'hasher': 1, 'hand-written': 1, 'memory-pictures': 1, 'figural': 1, 'surmise': 1, 'blot-appearance': 1, 'readapting': 1, 'blot-like': 1, 'kinesthetically': 1, 'tactually': 1, '6a': 1, '9b': 1, 'deducing': 1, 'Argos': 1, 'embryo': 1, 'Minoan-Mycenaean': 1, 'irruptions': 1, 'south-eastern': 1, 'excepting': 1, 'non-Greek': 1, 'Attica': 1, 'ascertainable': 1, 'Argive': 1, 'Boeotian': 1, 'survivals': 1, 'enduringly': 1, 'crystallized': 1, 'self-awareness': 1, 'turnings': 1, 'excavations': 1, "Homer's": 1, 'rosy-fingered': 1, 'Figurines': 1, 'presage': 1, 'premonitory': 1, 'Janus-faced': 1, 'basileis': 1, 'anthropomorphic': 1, 'archaized': 1, 'sunder': 1, 'eschewed': 1, 'Painters': 1, 'all-over': 1, 'Wavy': 1, 'feather-like': 1, 'rosettes': 1, 'Plates': 1, 'Syrian': 1, 'Cyclades': 1, 'exporters': 1, 'daybreak': 1, 'Julio': 1, "Cook's": 1, 'Pena': 1, 'Flor': 1, 'Archuleta': 1, 'horse-trail': 1, 'Suspecting': 1, 'Garnett': 1, 'Grabbing': 1, 'Dropping': 1, "trapper's": 1, 'two-inches': 1, "foreman's": 1, 'assassins': 1, 'Chaves': 1, 'possemen': 1, 'underrated': 1, 'Bonito': 1, 'Lavato': 1, "Chavez'": 1, 'ambuscade': 1, 'Colfax': 1, 'docketed': 1, 'Asher': 1, '3:00': 1, 'Celso': 1, 'posseman': 1, 'gun-shot': 1, 'Sewer': 1, 'Bonnet': 1, 'Connell': 1, 'Selectmen': 1, "Way's": 1, '$230,000': 1, "Manchester's": 1, 'telegraphy': 1, 'Wickham': 1, '1846': 1, 'Shares': 1, '1871': 1, '1878': 1, 'Holley': 1, 'Pettibone': 1, 'Operators': 1, 'Koop': 1, 'peremptory': 1, 'grocer': 1, 'Porterhouse': 1, 'serloin': 1, 'Cambridgeport': 1, "Saxton's": 1, "Hard's": 1, 'Ekwanok': 1, 'basked': 1, 'Simplex': 1, 'Ellamae': 1, 'Heckman': 1, 'Goyette': 1, 'Mercier': 1, "Manley's": 1, "agent's": 1, "Thayer's": 1, "Dufresne's": 1, 'Dufresne': 1, 'Bourn': 1, 'Eber': 1, "Carleton's": 1, 'switchboard': 1, "Woodcock's": 1, "Hemenway's": 1, 'Woodcock': 1, 'troubleshooter': 1, 'Briggs': 1, '$2,490': 1, "Colvin's": 1, "Houghton's": 1, 'gristmill': 1, 'Isham': 1, 'Ormsby': 1, 'Dellwood': 1, 'Creamery': 1, 'intending': 1, 'Hydro-Electric': 1, 'sub-station': 1, 'tie-in': 1, 'Nec': 1, 'salutaris': 1, 'quam': 1, 'sedulously': 1, 'solemnity': 1, 'brutalities': 1, 'imbecile': 1, 'Canon': 1, 'Ecclesiastical': 1, 'Medieval': 1, 'Papal': 1, "Erasmus's": 1, 'tenuously': 1, 'Niccolo': 1, 'Machiavelli': 1, 'inconceivable': 1, 'Humanism': 1, 'full-clad': 1, '1515': 1, 'canonist': 1, 'sharpen': 1, 'communistic': 1, 'anachronistically': 1, 'Janissaries': 1, 'excursus': 1, 'ruling-class': 1, 'lumpish': 1, 'optimo': 1, 'reipublicae': 1, 'statu': 1, 'indispensible': 1, 'successors-in-spirit': 1, 'novitiate': 1, 'athleticism': 1, 'Stoics': 1, 'theologian-philosophers': 1, 'patristic': 1, 'millenium': 1, 'severalty': 1, 'unalterable': 1, 'safeguards': 1, 'Stoic-patristic': 1, 'bottomless': 1, 'sieve': 1, 'ineptly': 1, 'elaborates': 1, "Divine's": 1, '1516': 1, 'infirm': 1, 'refectories': 1, 'Antiquity': 1, 'Abolitionists': 1, 'misrepresenting': 1, 'Editor': 1, 'calmer': 1, 'inciting': 1, 'butchered': 1, "newspapers'": 1, 'misnamed': 1, 'philantropists': 1, 'instigate': 1, 'Advertiser': 1, 'override': 1, 'Know-Nothing': 1, 'Lieutenant-Governor': 1, 'Elisha': 1, 'lieutenant-governor': 1, 'non-resistants': 1, 'anemated': 1, "Trafton's": 1, 'Quakeress': 1, "Post's": 1, 'Extraordinary': 1, 'tolled': 1, "Pratt's": 1, 'ex-mayor': 1, 'Garrisonian': 1, 'Free-Will': 1, "Woodbury's": 1, 'impropriety': 1, 'bereavements': 1, "facet-plane's": 1, 'contrivances': 1, 'graining': 1, 'marbleizing': 1, 'shuttling': 1, 'telescoping': 1, 'fusing': 1, 'pasting': 1, 'imitation-woodgrain': 1, 'imitation-caning': 1, 'corporeal': 1, 'extraneousness': 1, 'surface-declaring': 1, 'overshoots': 1, 'Literal': 1, 'boomerangs': 1, 'surfaceness': 1, 'Dish': 1, 'conventionally': 1, "trompe-l'oeil": 1, 'flatnesses': 1, 'charcoaled': 1, 'corporeality': 1, 'woodgraining': 1, 'eye-deceiving': 1, 'painted-in': 1, 'optically': 1, 'pictorially': 1, 'fictive': 1, 'Flatness': 1, 'Depicted': 1, 'reacts': 1, 'underpins': 1, 're-creates': 1, 'reemerged': 1, 'disembodied': 1, 'expropriated': 1, 'contour-obliterating': 1, '1911-1912': 1, 'hermetic': 1, 'coalesce': 1, 'atom-like': 1, 'chain-reaction': 1, 're-emerged': 1, 'papiers': 1, 'colles': 1, 'exhaustively': 1, 'legibility': 1, 'rapid-transit': 1, 'grade-constructed': 1, 'accesses': 1, 'ruinous': 1, 'Subways': 1, 'roadways': 1, 'slighter': 1, 'Akron': 1, "Chrysler's": 1, "Steel's": 1, 'long-haul': 1, 'grille-route': 1, 'walk-to': 1, 'Willow': 1, "Electric's": 1, 'Syracuse': 1, 'thruways': 1, 'by-pass': 1, "Land's": 1, 'Polaroid': 1, 'non-competitive': 1, 'cost-plus': 1, "outskirt's": 1, 'hotel-motel': 1, 'drugstores': 1, 'haberdasheries': 1, 'congregated': 1, 'converged': 1, 'retailer': 1, "hotelman's": 1, 'shopping-center': 1, 'recalculated': 1, 'profitability': 1, "rival's": 1, 'suburbanized': 1, 'Lazarus': 1, '46,000': 1, 'shopper': 1, 'gadgetry': 1, 'big-ticket': 1, 'accountants': 1, 'Tunnard': 1, 'suburbanites': 1, 'superhighways': 1, "Morgenthau's": 1, 'cheap-money': 1, 'householders': 1, 'high-interest': 1, 'aegis': 1, 'meticulous': 1, 'Correggio': 1, 'Constantino': 1, 'Bullfinch': 1, 'undecorated': 1, 'frescoing': 1, 'restorers': 1, 'Cartoons': 1, 'roughish': 1, 'Washed': 1, 'Cennino': 1, 'Cennini': 1, 'stiffer': 1, 'putty-like': 1, 'hydrated': 1, 'Lime': 1, 'reground': 1, 'bianco': 1, 'sangiovanni': 1, 'spotty': 1, 'tempera': 1, "Doerner's": 1, 'putty': 1, 'ambitiously': 1, 'coveting': 1, 'Whosever': 1, 'plastering': 1, 'pyramidal': 1, "Liberty's": 1, 'forty-niners': 1, "Costaggini's": 1, 'Brumidi-Costaggini': 1, 'oscillating': 1, 'sponges': 1, 'sponging': 1, 'Necessary': 1, 'retouching': 1, 'Landing': 1, 'Oglethorpe': 1, 'unsightly': 1, 'geo-political': 1, 'ascribe': 1, 'preoccupies': 1, 'anecdotal': 1, 'romantically': 1, 'pseudo-patriotism': 1, 'Difficult': 1, 'nerve-ends': 1, "poeple's": 1, 'turrets': 1, 'advantageously': 1, 'half-light': 1, 'dexterity': 1, 'cross-fertilized': 1, 'mutations': 1, 'propagate': 1, 'non-propagating': 1, 'illogical': 1, "Lenin's": 1, 'rejoinder': 1, 'motion-pattern': 1, 'shopworn': 1, 're-emergence': 1, 'Realism': 1, 'petulant': 1, 'admonition': 1, 'Impressionism': 1, 'resplendent': 1, 'exclusions': 1, 'trivia': 1, 'captious': 1, 'outworn': 1, 'critique': 1, 'normative': 1, 'Guttman-type': 1, 'feeling-state': 1, 'socio-structural': 1, 'Considered': 1, 'bureaucratization': 1, "Means's": 1, 'Hoffer': 1, 'workingmen': 1, 'unfelt': 1, 'conquering': 1, 'pseudo-happiness': 1, 'automaton': 1, 'iniquities': 1, 'work-satisfaction': 1, 'unknowingly': 1, 'marketability': 1, 'Diagnoses': 1, 'Glance': 1, 'Burckhardt': 1, 'Tolstoy': 1, 'Proudhon': 1, 'Thoreau': 1, 'Tawney': 1, 'Mayo': 1, 'Tannenbaum': 1, 'Mumford': 1, 'Heron': 1, 'Existentialists': 1, 'Godunov': 1, "Mussorgsky's": 1, 'Lully': 1, 'Purcell': 1, 'sensitively': 1, 'portraiture': 1, 'folklike': 1, "shepherd's": 1, 'unsophisticated': 1, 'ostinato': 1, 'Kazan': 1, 'wild-sounding': 1, 'forcefulness': 1, "1870's": 1, 'Musically': 1, 'blood-kinship': 1, 'Dappertutto': 1, "Offenbach's": 1, 'materialized': 1, 'concealing': 1, 'Curiously': 1, 'Aida': 1, 'sainthood': 1, 'heretics': 1, 'sinuously': 1, 'unattainable': 1, 'Indignantly': 1, 'denounces': 1, 'hell-fire': 1, 'exhorting': 1, 'duet': 1, 'Shuiski': 1, 'choral': 1, 'Coronation': 1, 'tonalities': 1, 'halfhearted': 1, 'acclamation': 1, 'dissenters': 1, 'boyars': 1, 'tenors': 1, 'basses': 1, "rulers'": 1, 'offstage': 1, 'churchly': 1, 'trembles': 1, 'begs': 1, 'mayhem': 1, 'Kromy': 1, 'sequel': 1, 'pizzicato': 1, 'staccatos': 1, 'Tsarevich': 1, 'monolith': 1, 'Domicilium': 1, 'Rise': 1, 'seventy-odd': 1, 'Noyes': 1, 'neglects': 1, 'predominates': 1, "1860's": 1, 'Laughing': 1, 'Stocks': 1, 'Vision': 1, 'Poesy': 1, 'pettinesses': 1, '302': 1, "'80's": 1, 'Tess': 1, 'seventies': 1, 'five-and-twenty': 1, 'pruned': 1, 'Shakespearian': 1, '1866': 1, '1867': 1, 'evoking': 1, 'stanza-form': 1, 'a-wing': 1, 'wrings': 1, 'God-curst': 1, 'Weathers': 1, 'Darkling': 1, 'Madding': 1, 'Crowd': 1, 'Yeats': 1, "speaker's": 1, 'elegy': 1, 'rearranged': 1, 'Collected': 1, 'pastness': 1, 'deadness': 1, 'epigraph': 1, 'charred': 1, 'uncomforted': 1, 'Critically': 1, 'Disaffiliation': 1, 'Epigraph': 1, 'disaffiliate': 1, 'Titans': 1, "Dante's": 1, 'saxophonist': 1, 'conflagration': 1, "Jimbo's": 1, 'spiraled': 1, 'rationality': 1, 'blood-stained': 1, 'silken': 1, "Horace's": 1, 'imperishable': 1, 'Augustan': 1, 'partook': 1, 'ovens': 1, 'innovators': 1, 'Reverdy': 1, 'overrated': 1, 'jitterbug': 1, 'aficionado': 1, 'Roach': 1, 'anomaly': 1, 'ornamentation': 1, 'pulsations': 1, 'strophe': 1, 'syntactical': 1, 'Rimbaud': 1, 'backwater': 1, 'embroideries': 1, 'Berlioz': 1, 'impassive': 1, 'talk-aboutiveness': 1, 'rendition': 1, 'embouchure': 1, 'Metrically': 1, 'enrage': 1, 'Ornament': 1, 'interstices': 1, 'confabulations': 1, 'Confabulation': 1, 'Uninhibited': 1, 'corn-belt': 1, 'metaphysicals': 1, 'extinct': 1, 'Apocalypse': 1, 'Treece': 1, 'Hendry': 1, 'ebb': 1, 'by-passes': 1, 'Baudelaire': 1, 'surrealists': 1, 'Breton': 1, 'Continuity': 1, 'exits': 1, 'neo-swing': 1, 'Surrealists': 1, 'self-deluded': 1, 'apostles': 1, 'all-consuming': 1, 'incidentals': 1, 'Rothko': 1, 'Clyfford': 1, 'Motherwell': 1, 'Willem': 1, 'De-Kooning': 1, 'shimmer': 1, 'McFee': 1, 'calligraphy': 1, 'painteresque': 1, 'Sesshu': 1, 'confabulated': 1, 'bijouterie': 1, 'Ashikaga': 1, 'wallpapers': 1, "Hrothgar's": 1, 'Finnsburg': 1, '1068': 1, '1159': 1, 'improvises': 1, "Beowulf's": 1, 'Geatish': 1, 'Sigemund': 1, '871': 1, '892': 1, "Alcinous'": 1, 'Ares': 1, 'Aphrodite': 1, '266-366': 1, 'Odysseus': 1, 'Ithacan': 1, 'wanderer': 1, '499-520': 1, 'Deor': 1, 'Widsith': 1, 'Demodocus': 1, 'Milman': 1, 'Parry': 1, "Parry's": 1, 'schemata': 1, 'skilful': 1, 'Assonance': 1, 'Malmesbury': 1, 'Hastings': 1, 'alliterative': 1, 'credibly': 1, 'incurring': 1, 'alliteration': 1, 'loosest': 1, 'kenning': 1, 'adverbial': 1, 'near-equivalents': 1, 'circumlocution': 1, 'Homerists': 1, 'fellow-craftsmen': 1, 'vaster': 1, 'plagiarism': 1, 'modus': 1, 'dicendi': 1, 'mot': 1, 'juste': 1, 'time-servers': 1, 'inappropriateness': 1, 'scops': 1, 'Time-servers': 1, 'periphrastic': 1, 'Nouns': 1, 'nonce': 1, 'Reliance': 1, 'no-one': 1, 'Heorot': 1, 'dry-dock': 1, 'foamy-necked': 1, 'floater': 1, 'Hrothgar': 1, 'EUMMELIHS': 1, 'Achilles': 1, 'Siegfried': 1, 'Nibelungenlied': 1, 'swiftest': 1, 'swift-footed': 1, 'Coriolanus': 1, 'agnomen': 1, 'Marcius': 1, 'referent': 1, 'biographers': 1, 'scribe': 1, 'vitiated': 1, 'runes': 1, 'amanuensis': 1, 'hysteron-proteron': 1, 'Eduard': 1, 'Schmidt': 1, '1804': 1, '2118': 1, '5612': 1, 'scop': 1, 're-used': 1, 'line-fragments': 1, 'extemporize': 1, 'deftness': 1, 'ASPIS': 1, 'SAKOS': 1, 'Zabel': 1, "novel's": 1, 'fruitfully': 1, "actor's": 1, 'individualizing': 1, 'dramatizing': 1, 'abstractedness': 1, 'fascinates': 1, "Havisham's": 1, "Pocket's": 1, 'social-climbing': 1, 'mannerisms': 1, 'leitmotif': 1, 'motivate': 1, 'policeman-murderer': 1, "Burke's": 1, 'Ottermole': 1, 'steals': 1, 'gothic': 1, 'mystery-story': 1, 'imbruing': 1, 'Hulks': 1, 'flees': 1, "Gargery's": 1, "convict's": 1, 'slouches': 1, 'objecting': 1, 'clenches': 1, 'rampage': 1, 'sluicehouse': 1, 'unclenched': 1, 'hesitatingly': 1, 'contriving': 1, 'brambles': 1, "Estella's": 1, 'knitting': 1, 'archenemy': 1, 'betrayer': 1, 'vicelike': 1, 'death-locked': 1, 'drowns': 1, 'acquisitiveness': 1, 'toadyism': 1, 'trousers-pockets': 1, "Dreiser's": 1, 'reproaches': 1, 'sullying': 1, 'coarseness': 1, 'appendages': 1, 'smithy': 1, 'artificiality': 1, 'commonness': 1, 'alienates': 1, 'handshake': 1, 'exclaims': 1, 'kneels': 1, 'signalizes': 1, 'patroness': 1, 'nostalgically': 1, 'designates': 1, 'reintroduces': 1, 'associatively': 1, 'magnetisms': 1, 'vulture-like': 1, 'feigned': 1, 'travesty': 1, 'self-aggrandizement': 1, 'effusive': 1, 'congratulation': 1, 'Pumblechook': 1, 'gloats': 1, 'canting': 1, 'ingratitoode': 1, 'sycophantic': 1, 'Trabb': 1, 'fawning': 1, 'confers': 1, 'over-hand': 1, 'operands': 1, 'left-justified': 1, 'header': 1, 'NOP': 1, 'Reservation': 1, 'XRESERVE': 1, 'SRESERVE': 1, 'sectionalized': 1, 'multi-phase': 1, 'Switches': 1, 'Switch': 1, 'Equate': 1, 'CODE,DTF': 1, 'Descriptive': 1, 'Entry': 1, '7074': 1, 'xxxx': 1, 'yyyy': 1, 'SETSW': 1, 'digit': 1, 'ESN': 1, 'BSN': 1, 'EDMOV': 1, 'subroutine': 1, 'subroutines': 1, 'formats': 1, 'diocs': 1, 'input/output': 1, 'anylabel': 1, 'effluents': 1, '4.77': 1, '1,230': 1, 'aerobic': 1, 'anaerobic': 1, '121,000': 1, 'fiberglas': 1, '314': 1, '18-month': 1, '3-hp.': 1, 'variable-speed': 1, 'Weekly': 1, 'composites': 1, '710': 1, 'mg/lBOD': 1, '76-per-cent': 1, 'slippage': 1, 'BOD/day': 1, 'BOD/day/1,000': 1, 'cu': 1, 'BOD/day/acre': 1, 'grindings': 1, 'metabolized': 1, 'MLSS': 1, '14.5': 1, '1.2': 1, 'resuspension': 1, 'microbial': 1, 'Removal': 1, 'sedimentation': 1, 'McKinney': 1, 'Gram': 1, 'flagellated': 1, 'predominated': 1, '40-degrees-F': 1, '32-degrees-F': 1, 'protozoan': 1, 'ciliates': 1, 'predomination': 1, 'Oxygen': 1, '1.0-mg.': 1, '10-degrees-C': 1, 'lb/day': 1, '9.3': 1, 'Oxidation': 1, 'nuisances': 1, '147,000': 1, 'gpd': 1, "BOD's": 1, 'overlaps': 1, 'amphibious': 1, 'Submarines': 1, 'reoriented': 1, 'Operational': 1, 'Necessity': 1, "Industry's": 1, 'fleets': 1, 'unwillingly': 1, 'Destruction': 1, 'Antisubmarine': 1, 'weaponry': 1, 'torpedo': 1, "plan's": 1, 'Conceivably': 1, 'Shipbuilding': 1, 'breakthroughs': 1, 'asw': 1, 'sub-surface': 1, 'vociferousness': 1, 'Environmental': 1, 'co-operates': 1, 'Gathering': 1, 'Approaching': 1, 'counter-efforts': 1, 'Effective': 1, 'Yucatan': 1, 'burglar': 1, 'alarms': 1, 'localize': 1, 'pinpointing': 1, "target's": 1, 'metabolites': 1, 'p-aminobenzoic': 1, 'cofactors': 1, 'hydroxylation': 1, 'aniline': 1, 'acid-fast': 1, 'biosynthesized': 1, 'ring-labeled': 1, 'carboxy-labeled': 1, 'Metabolite': 1, 'endogenous': 1, 'Vigorous': 1, 'aryl': 1, 'amines': 1, 'Fragment': 1, 'dioxalate': 1, 'cleaved': 1, 'amide': 1, 'K.G.': 1, 'Untch': 1, 'arylesterases': 1, 'lanthanum': 1, 'urea': 1, 'guanidine': 1, 'non-identity': 1, 'paraoxon': 1, 'hydrolyzed': 1, 'Investigations': 1, 'cholinesterase': 1, 'Boggs': 1, 'Electron-microscopical': 1, 'physical-chemical': 1, 'renaturation': 1, 'heat-denatured': 1, 'ribonucleic': 1, 'purifying': 1, 'earthworm': 1, 'vertebrate': 1, 'tropocollagen': 1, 'Maser': 1, 'peptide': 1, 'high-voltage': 1, 'assayed': 1, 'Instruments': 1, 'Jackman': 1, 'Reiss': 1, 'bradykinin': 1, 'spectrophotometric': 1, 'Renfrew': 1, 'Severs': 1, 'physiochemical': 1, 'globulins': 1, 'excelsin': 1, 'ultracentrifugally': 1, 'water-soluble': 1, 'Notarius': 1, 'non-newtonian': 1, 'second-order': 1, 'first-order': 1, 'Noll': 1, 'torsion': 1, '80-degrees-C': 1, 'isothermally': 1, 'decompose': 1, 'frequency-independent': 1, 'Boltzmann': 1, 'superposition': 1, 'Hershel': 1, 'Markovitz': 1, 'D.J.': 1, 'Plazek': 1, 'Haruo': 1, 'Nakayasu': 1, 'microanalysis': 1, 'igneous': 1, 'metamorphic': 1, 'sedimentary': 1, 'volatilization': 1, 'tektite': 1, 'Gallium': 1, 'Australites': 1, 'silicate': 1, 'silica-glass': 1, 'five-fold': 1, 'comet': 1, 'stony-meteorite': 1, 'Nickel-iron': 1, 'quenching': 1, 'Impact': 1, 'nickel-iron': 1, 'paleoexplosion': 1, 'Aouelloul': 1, 'Adrar': 1, 'Anania': 1, 'ligand': 1, 'osmium': 1, 'ruthenium': 1, 'iridium': 1, 'rhenium': 1, 'triphenylphosphine': 1, 'triphenylarsine': 1, 'triphenylstibine': 1, 'Lauri': 1, 'Vaska': 1, 'DiLuzio': 1, 'heretofore-accepted': 1, 'radiocarbon': 1, 'deuterated': 1, 'metal-hydrido': 1, 'reformulated': 1, 'hydrido': 1, 'phosphines': 1, 'arsines': 1, 'Hayter': 1, 'Particular': 1, 'halides': 1, 'phosphide': 1, 'arside': 1, 'five-coordinate': 1, 'binuclear': 1, 'phosphorus-bridged': 1, 'palladium': 1, 'chromium-substituted': 1, 'oxyhydroxides': 1, 'high-temperature': 1, 'spectrally': 1, 'semiquantitative': 1, 'Laswick': 1, 'Heatwole': 1, 'stress-temperature': 1, 'anisotropy': 1, 'compressibility': 1, 'elucidation': 1, 'conformations': 1, 'Volkenstein': 1, 'Lifson': 1, 'mean-square': 1, 'end-to-end': 1, 'polyisobutylene': 1, 'interspersed': 1, 'Limitations': 1, 'crystallite': 1, 'homopolymers': 1, 'Contraction': 1, 'Glycerinated': 1, 'mechanochemically': 1, 'Centigrade': 1, 'myosin': 1, 'Polymerization': 1, 'monodisperse': 1, 'polystyrene': 1, 'polymerizations': 1, 'deactivation': 1, 'butyl-lithium': 1, 'telomeric': 1, 'styryl-lithium': 1, 'predictability': 1, 'ethers': 1, 'classification-angle': 1, 'crystallographers': 1, 'Numerous': 1, 'Editors': 1, 'Spiller': 1, '2991': 1, 'tetragonal': 1, 'orthorhombic': 1, '3500': 1, 'monoclinic': 1, 'anorthic': 1, 'clothbound': 1, 'refractive': 1, 'Heffer': 1, '$16.80': 1, '$28.00': 1, '2-2': 1, 'Nowacki': 1, 'Berne': 1, 'Coeditors': 1, 'Leeds': 1, 'Ottawa': 1, 'handbook': 1, 'spacings': 1, 'Pergamon': 1, 'Cell': 1, 'mid-1948': 1, 'Strukturbericht': 1, 'precluded': 1, 'abbreviation': 1, 'determinative': 1, 'Memoir': 1, '2-3': 1, 'W.G.': 1, 'Wyckoff': 1, 'Internationale': 1, 'Tabellen': 1, 'Zur': 1, 'Bestimmung': 1, 'Kristallstrukturen': 1, 'loose-leaf': 1, 'Bibliography': 1, 'paginated': 1, 'insertions': 1, 'Inorganic': 1, 'Interscience': 1, '$148.50': 1, '2-4': 1, 'Penrose': 1, 'Palache': 1, 'Frondel': 1, 'interaxial': 1, 'appraised': 1, "'?'": 1, 'Recommendations': 1, 'Crystallography': 1, 'synonymy': 1, 'Mineralogies': 1, '$16.00': 1, 'Pepinsky': 1, 'five-volume': 1, 'abstractors': 1, "Institute's": 1, 'solid-state': 1, 'encyclopedic': 1, 'correlations': 1, 'Unpublished': 1, 'reinvestigation': 1, 'recalculation': 1, 'punched-card': 1, 'dehydration': 1, 'yeasts': 1, 'Microorganisms': 1, 'Clostridium': 1, 'botulinum': 1, 'Enzymatic': 1, 'Spoilage': 1, 'rancidity': 1, 'Sprouting': 1, 'Trichinella': 1, 'spiralis': 1, 'recontamination': 1, 'aseptic': 1, 'containment': 1, 'pasteurization': 1, 'accomplishes': 1, 'scalding': 1, 'Ionizing': 1, 'Deactivation': 1, 'heat-processing': 1, 'nonacid': 1, 'Mrads': 1, 'radiosterilized': 1, 'fat-soluble': 1, 'collimated': 1, 'unidirectional': 1, 'Selection': 1, 'throughput': 1, 'cobalt-60': 1, 'indium': 1, 'Graff': 1, 'impracticable': 1, 'palatable': 1, 'Commercial': 1, 'Meats': 1, 'off-flavors': 1, 'Quartermaster': 1, "beef's": 1, 'Off-flavor': 1, 'Moderate': 1, 'rads': 1, 'preradiation': 1, 'discolors': 1, 'Cooked': 1, 'substerilization': 1, 'dehydrated': 1, 'chalky': 1, 'sausage': 1, 'Specialty': 1, 'Competitive': 1, 'Radiosterilization': 1, 'Irradiation': 1, 'Poultry': 1, 'untreated': 1, 'Acceptable': 1, 'Acceptance': 1, 'antibiotics': 1, 'Seafood': 1, 'perishable': 1, 'transformer': 1, 'topcoats': 1, 'primers': 1, 'enlargements': 1, 'Blunt': 1, 'signifies': 1, 'grit': 1, 'mil.': 1, 'roundness': 1, 'blunter': 1, 'abrasion-resistant': 1, 'Softer': 1, 'k': 1, 'knife/coating': 1, 'Chipping': 1, 'cohesively': 1, 'pigmented': 1, 'photomicrograph': 1, 'fracture': 1, '9a': 1, '9e': 1, 'eqns.': 1, 'styrenes': 1, 'buoyancy': 1, 'polyether-type': 1, 'two-component': 1, 'fire-resistant': 1, 'self-extinguishing': 1, 'insulator': 1, 'Whirlpool': 1, '391': 1, 'laminating': 1, 'flotation-type': 1, "styrene's": 1, 'inserts': 1, 'foamed-core': 1, 'Extruded': 1, 'price-wise': 1, 'kraft': 1, '395': 1, 'extruding': 1, 'Foamed': 1, '100-million-lb.': 1, '115': 1, 'offing': 1, 'polyisocyanates': 1, 'tolylene': 1, 'diisocyanate': 1, 'Blowing': 1, 'polyisocyanate': 1, 'low-boiling': 1, 'fluorinated': 1, 'sandwich-type': 1, 'foamed-in-place': 1, 'polyethers': 1, 'branching': 1, 'rigids': 1, 'glycols': 1, 'spring-back': 1, 'two-step': 1, 'adipic': 1, 'triol': 1, 'anhydrously': 1, 'exothermic': 1, 'Graph': 1, "materials'": 1, "material's": 1, 'air-cell': 1, 'B.t.u./sq.': 1, 'material/hr./*0F./in.': 1, '0.24': 1, '0.28': 1, '0.12': 1, '394': 1, 'Flexural': 1, 'higher-density': 1, 'Tensile': 1, 'longitudinal': 1, 'Exceptional': 1, "foam's": 1, 'poured-in-place': 1, 'Slab': 1, 'solidifies': 1, 'receptacle': 1, 'slitters': 1, 'fabricate': 1, 'trapezoid': 1, 'convoluted': 1, 'slitter': 1, 'peels': 1, 'yd.': 1, 'Molding': 1, 'Satisfactory': 1, 'fabricated': 1, 'free-blown': 1, 'gel': 1, '32-degrees-C': 1, '160-ml.': 1, 'Washing': 1, 'nips': 1, '32*0C.': 1, 'readjusted': 1, 'soil-bearing': 1, 'soil-removal': 1, 'grease-removal': 1, 'reflectance-measuring': 1, 'Soxhlet': 1, 'launderings': 1, 'summarizes': 1, 'Numeral': 1, 'Presser': 1, 'Apparatus': 1, '110-degrees': 1, '140-degrees-F': 1, '38*0': 1, '60*0C.': 1, 'insertion': 1, '275-degrees-F': 1, '135*0C.': 1, 'Dryer': 1, '49*0': 1, '71*&0C.': 1, 'Screen': 1, '16-mesh': 1, 'Saran': 1, 'Velon': 1, 'drip-': 1, 'line-drying': 1, 'Extractor': 1, 'centrifugal': 1, 'extractor': 1, 'laundry-type': 1, 'Soap': 1, 'fed.': 1, 'Spec.': 1, '566': 1, 'Softener': 1, 'metaphosphate': 1, 'hexametaphosphate': 1, 'Detergent': 1, 'alkylarysulfonate': 1, 'Flatiron': 1, 'dead-weight': 1, 'flatiron': 1, 'Knit': 1, 'uncluttered': 1, 'friction-free': 1, 'creases': 1, 'Fabrics': 1, 'unlaundered': 1, 'laundered': 1, 'widthwise': 1, 'fine-point': 1, 'midpoint': 1, 'equidistantly': 1, 'Garments': 1, '105-degrees-F': 1, 'softener': 1, '43*0': 1, 'Inject': 1, 'refill': 1, '43*0C': 1, 'practicability': 1, 'radiography': 1, 'Transmission': 1, 'low-duty': 1, 'dynodes': 1, 'Cascaded': 1, 'solenoid': 1, 'double-': 1, 'multi-': 1, 'constructional': 1, 'Measured': 1, 'photoelectrons': 1, 'codetermines': 1, 'biconcave': 1, 'phosphor-screen': 1, 'planoconcave': 1, 'sensitivities': 1, 'subscripts': 1, 'amp': 1, 'volts': 1, 'lumen/watt': 1, 'normalized': 1, 'optics': 1, 'N.A.': 1, 'I.L.': 1, 'Settled': 1, 'phosphors': 1, '4.6': 1, 'refraction': 1, 'photosensitive': 1, 'SbCs-type': 1, 'fiber-photocathode': 1, '0.95': 1, 'core-jacket': 1, 'Explicit': 1, '1/4-inch': 1, '0.906': 1, 'circumscribed': 1, 'hexagon': 1, 'cladding': 1, 'mica': 1, 'Neglecting': 1, '0.25': 1, '0.043': 1, 'Gain': 1, 'Including': 1, 'demagnification': 1, 'second-stage': 1, 'emulsion': 1, 'N.L.': 1, 'H.W.': 1, 'Babcock': 1, 'minifying': 1, 'JEDEC': 1, '14-2': 1, 'blowup': 1, 'crossover': 1, 'Electrostatic': 1, 'pseudo-symmetric': 1, 'electronography': 1, 'line-pairs': 1, 'cathodophoretic': 1, 'photoluminescence': 1, 'Bremsstrahlung': 1, 'KV': 1, 'optimization': 1, 'optimizing': 1, 'unreasonably': 1, 'interpolation': 1, 'baseless': 1, 'crudest': 1, 'multistage': 1, 'annunciated': 1, '2.2': 1, 'maximized': 1, 'piecewise': 1, 'recursive': 1, 'algorithm': 1, '2.3': 1, 'stochastic': 1, 'probabilistic': 1, 'r': 1, 'elapse': 1, 'p(T)': 1, 'p(Q)': 1, 'gyro-platform-servo': 1, '**yj': 1, 'platform-controller': 1, 'output-axis': 1, 'polarities': 1, 'cutoff': 1, 'airframe': 1, 'non-linear': 1, 'off-level': 1, 'on-level': 1, 'biases': 1, 'minimizes': 1, 'navigators': 1, '7-5': 1, 'Autocollimator': 1, 'Z-gyro': 1, 'Z-axis': 1, 'pickoffs': 1, 'stator': 1, 'autonavigator': 1, 'Y-gyro': 1, 'three-axis': 1, 'unleveled': 1, 'Thirty-three': 1, 'lengthily': 1, 'stainless-steel': 1, 'baronial': 1, 'blueberry': 1, 'grizzled': 1, 'crested': 1, 'three-sectioned': 1, 'swollen-looking': 1, 'whitely': 1, 'overindulged': 1, 'querulous': 1, 'store-front': 1, 'Thirty-four': 1, 'rediscover': 1, 'draughty': 1, 'slim-waisted': 1, 'Husky': 1, 'veined': 1, "moth's": 1, 'unsmilingly': 1, 'fussily': 1, 'irritability': 1, 'Estherson': 1, 'annoys': 1, 'invariable': 1, 'glacier-like': 1, 'Gouge': 1, 'reigned': 1, 'womb': 1, "slope's": 1, 'concertina': 1, 'weirdly': 1, 'Closer': 1, 'lulls': 1, 'spill': 1, 'unlovely': 1, 'ROK': 1, 'thirty-caliber': 1, "ROK's": 1, 'Automatic': 1, '0600': 1, '2130': 1, 'Ours': 1, 'kinder': 1, 'betties': 1, 'Booby': 1, 'searchlights': 1, '2230': 1, 'overhang': 1, 'stealthily': 1, 'pant-legs': 1, 'enchained': 1, 'gnaw': 1, 'Looming': 1, 'malevolencies': 1, 'fear-filled': 1, 'furtively': 1, 'knoll': 1, "rifle's": 1, 'bandoleers': 1, 'overheat': 1, 'armpits': 1, "valley's": 1, 'grotesques': 1, 'Sensing': 1, 'near-strangers': 1, 'stone-gray': 1, 'handlebars': 1, 'shipyards': 1, 'Brest': 1, 'vouching': 1, 'handless': 1, 'merveilleux': 1, 'infirmity': 1, 'healthiest': 1, 'Solesmes': 1, 'abbey': 1, "Warren's": 1, 'whisky-on-the-rocks': 1, 'black-haired': 1, 'elfin': 1, 'Eloise': 1, 'Moonan': 1, 'shopkeepers': 1, 'hideaway': 1, 'sorting': 1, 'altruism': 1, 'Distinguished': 1, "There'd": 1, "Trig's": 1, 'concussion': 1, 'rank-and-file': 1, "sniper's": 1, 'Davao': 1, "'low": 1, 'nigras': 1, 'DSM': 1, 'combat-inflicted': 1, 'citations': 1, 'Poverty': 1, 'pharmacist': 1, 'deliciously': 1, 'vernal': 1, 'cripple': 1, 'Lorelei': 1, 'underhanded': 1, 'furtive': 1, 'well-bound': 1, 'cut-glass': 1, 'Wilkes-Barre': 1, 'bluster': 1, 'krautheads': 1, 'piss': 1, 'Literally': 1, 'Annisberg': 1, 'seventy-five': 1, 'Tallahoosa': 1, 'calamities': 1, 'loud-voiced': 1, 'orgy': 1, 'worshippers': 1, 're-enacting': 1, 'contortion': 1, 'death-like': 1, 're-enacted': 1, 'disgust': 1, 'man-to-man': 1, 'sympathized': 1, 'parsonage': 1, 'rat-holes': 1, 'Cat': 1, 'dissenter': 1, '$2,500': 1, 'Deacons': 1, 'pliant': 1, 'warren': 1, 'Dives': 1, 'cosily': 1, 'dumps': 1, 'privies': 1, 'business-like': 1, 'rut': 1, 'Tenements': 1, "chemist's": 1, 'Clubhouse': 1, 'gentry': 1, 'clomped': 1, 'synchronize': 1, 'lumbered': 1, 'gaiters': 1, 'clodhoppers': 1, 'Panting': 1, 'misfired': 1, 'Reversing': 1, 'exultantly': 1, 'nightmares': 1, 'nightdress': 1, 'wakes': 1, 'surfeited': 1, 'Debts': 1, 'Overreach': 1, 'Edwina': 1, 'boo': 1, 'sockdologizing': 1, 'mantrap': 1, 'soundproof': 1, 'Sic': 1, 'semper': 1, 'tyrannis': 1, 'billowed': 1, 'Octoroon': 1, 'maimed': 1, 'beehive': 1, 'Taft': 1, 'hoist': 1, 'Leale': 1, 'sneer': 1, 'nimbler': 1, 'Seizing': 1, 'bridle': 1, 'silky': 1, 'agilely': 1, 'iron-shod': 1, 'slavered': 1, 'chortling': 1, 'clamshell': 1, 'hooted': 1, 'Instantly': 1, 'nudging': 1, 'mangled': 1, 'trainman': 1, 'vibrated': 1, 'alligatored': 1, 'ivy': 1, 'green-scaled': 1, 'Broome': 1, 'Jervis': 1, 'foothills': 1, 'belfry': 1, 'hellfire': 1, 'tollgate': 1, 'Sunday-school': 1, 'tollhouse': 1, 'Afternoon': 1, 'Matamoras': 1, 'underbrush': 1, 'rove': 1, 'Cuddleback': 1, 'Idle': 1, 'sun-inflamed': 1, 'Paterson': 1, 'brass-bound': 1, 'wainscoted': 1, 'pews': 1, 'curtained': 1, 'coattails': 1, 'wreathed': 1, 'luminescence': 1, 'deathly': 1, 'indentations': 1, 'Townley': 1, 'Burt': 1, 'Hackettstown': 1, 'black-clad': 1, 'wrathful': 1, 'mountainsides': 1, 'twigged': 1, 'aghast': 1, 'Drenched': 1, 'brimmed': 1, "Someone'll": 1, 'mite-box': 1, 'slingshot': 1, 'crows': 1, "roofer's": 1, 'shooters': 1, 'chased': 1, 'Yankton': 1, 'overheated': 1, 'ice-chest': 1, 'shivery': 1, "Christophers'": 1, 'pinafores': 1, 'doghouse': 1, 'meandered': 1, 'boaters': 1, 'mustaches': 1, 'verandah': 1, 'Fiddles': 1, 'tinkled': 1, 'boardinghouses': 1, 'Krist': 1, 'Nigger': 1, 'haint': 1, 'shack': 1, 'lovin': 1, 'Jee-sus': 1, 'Yooee': 1, 'Sonuvabitch': 1, 'Kaboom': 1, 'thum': 1, 'redheader': 1, 'sayin': 1, 'wanta': 1, 'goddammit': 1, 'Normal': 1, 'croakin': 1, 'Keerist': 1, 'Prickly': 1, 'twinges': 1, 'squashing': 1, 'Boogie': 1, 'jiving': 1, 'POW': 1, 'Lousy': 1, 'Months': 1, 'Hired': 1, 'lackeys': 1, 'Warmongering': 1, 'Dirty': 1, 'bumpin': 1, "Somebody'll": 1, 'Stroked': 1, 'Sleepy-eyed': 1, 'soft-spoken': 1, 'goofed': 1, 'Reactionaries': 1, 'Wised': 1, 'Knows': 1, 'glob-flakes': 1, 'cavin': 1, 'Keeeerist': 1, 'waitin': 1, "Slater's": 1, 'stirrin': 1, 'testily': 1, 'willya': 1, 'stupidest': 1, '8-Balls': 1, 'croaked': 1, 'fucks': 1, 'nailing': 1, "Foster's": 1, 'Contradictions': 1, 'shrank': 1, 'caved': 1, 'prick': 1, 'nut-house': 1, 'dreamin': 1, "Coughlin's": 1, 'Christsake': 1, "'mon": 1, 'Automatically': 1, 'Goddammit': 1, 'breakin': 1, 'pricks': 1, 'Fuck': 1, 'perseveres': 1, 'bedraggled': 1, 'Souci': 1, 'Timon': 1, 'misanthrope': 1, 'subterfuges': 1, 'Gallant': 1, 'Muses': 1, 'String': 1, 'stoutly': 1, 'replying': 1, 'nothings': 1, 'Bah': 1, 'rehearse': 1, 'Armide': 1, 'Prosopopoeia': 1, 'Fabricius': 1, 'Fontainebleau': 1, 'austerity': 1, 'self-effacement': 1, "D'Aumont": 1, 'Soothsayer': 1, 'unperformed': 1, 'titillating': 1, 'perspiration': 1, 'Confessions': 1, 'Raynal': 1, 'Pompadour': 1, 'slovenliness': 1, 'obeys': 1, 'inane': 1, 'spurring': 1, 'storekeepers': 1, 'deplorably': 1, 'flint': 1, 'showy': 1, 'booted': 1, 'stirrup': 1, 'drummers': 1, 'pipers': 1, 'sobbing': 1, 'viselike': 1, 'low-lying': 1, 'mooed': 1, 'handfuls': 1, 'sympathizing': 1, 'Militia': 1, 'slow-moving': 1, 'brisker': 1, 'narrowness': 1, 'Mattathias': 1, 'pimples': 1, 'breeches': 1, 'Drunkenness': 1, 'reprobate': 1, 'Plunking': 1, 'Calmly': 1, 'brazen': 1, 'high-backed': 1, 'Poupin': 1, 'brazenly': 1, 'Philibert': 1, 'Berthelier': 1, 'throttling': 1, 'beadle': 1, 'evildoers': 1, 'Burial': 1, 'gibbet': 1, 'Abbot': 1, 'Eloi': 1, 'Mommor': 1, 'blue-draped': 1, 'Varnessa': 1, 'Noyon-la-Sainte': 1, 'lilt': 1, "Charles's": 1, 'raftered': 1, 'specters': 1, 'rooftops': 1, 'crunched': 1, 'parchment': 1, 'Quickening': 1, 'Clemence': 1, 'moon-splashed': 1, 'glittered': 1, 'Indigestion': 1, 'Cop': 1, 'Bucer': 1, 'Tillet': 1, 'Waldensian': 1, 'smashing': 1, 'Refugees': 1, 'Confession': 1, 'blasphemed': 1, 'Libertines': 1, 'meditated': 1, "Favre's": 1, 'reverie': 1, 'Faint': 1, 'Corault': 1, 'near-blind': 1, 'Gospelers': 1, 'Plot': 1, 'Anabaptists': 1, 'Benoit': 1, 'Arianism': 1, 'Arianists': 1, 'Sept': 1, 'unmasked': 1, 'Anabaptist': 1, 'Syndic': 1, 'Molard': 1, 'Gaspard': 1, 'Arianist': 1, 'Heretic': 1, 'dizzily': 1, 'Fists': 1, 'pummeled': 1, 'growling': 1, 'hardbake': 1, 'toffee': 1, 'bitters': 1, 'aimlessly': 1, 'pfennig': 1, 'expiating': 1, 'torpid': 1, 'befogged': 1, 'loblolly': 1, 'hutment': 1, 'chinked': 1, 'tenting': 1, 'cranky': 1, 'sopping': 1, 'lairs': 1, 'chaffing': 1, 'covertly': 1, 'bestubbled': 1, 'emit': 1, 'pale-blue': 1, 'trustfully': 1, 'Lemme': 1, 'untellable': 1, 'armful': 1, 'campmate': 1, 'rubberized': 1, 'hardtack-box': 1, 'slacking': 1, 'grayer': 1, 'swathed': 1, 'Moisture': 1, 'bhoy': 1, 'Scratching': 1, 'hasps': 1, 'Hawksworth': 1, 'Thee': 1, 'riven': 1, 'thickening': 1, 'yonder': 1, 'hutments': 1, 'nameless': 1, 'cornfield': 1, 'maniacal': 1, 'flail': 1, 'Blaustein': 1, 'Gonna': 1, "Gre't": 1, 'lak': 1, 'Fooled': 1, 'hoo-pig': 1, 'lobscouse': 1, 'Easthampton': 1, 'sea-blessed': 1, 'spume': 1, 'wrack': 1, 'flaunting': 1, "liar's": 1, 'swathings': 1, "deceit's": 1, "'nother": 1, "H'all": 1, 'Irvin': 1, 'Irv': 1, 'early-morning': 1, 'crudities': 1, 'southernisms': 1, "Sparling's": 1, 'Westwood': 1, 'overcurious': 1, 'unservile': 1, "today'll": 1, 'good-news': 1, 'deadened': 1, 'blinkers': 1, 'mug': 1, 'drugging': 1, 'groggy': 1, 'crank': 1, 'play-acting': 1, 'Sipping': 1, "Fritzie's": 1, 'Luisa': 1, 'Kidnaper': 1, 'spurns': 1, 'five-column': 1, 'Duane': 1, 'buncha': 1, 'Andruses': 1, 'Rheinholdt': 1, "Rheinholdt's": 1, 'munching': 1, 'Sparling': 1, 'DeGroot': 1, 'Ringel': 1, 'lunchroom': 1, 'suppers': 1, 'skirting': 1, 'resiny': 1, 'olives': 1, 'boatloads': 1, 'unrevealing': 1, 'brocaded': 1, 'Flanked': 1, 'matriarch': 1, 'quilted': 1, 'inquisitor': 1, 'nods': 1, 'romances': 1, 'fledglings': 1, 'McFeely': 1, 'Tudor-style': 1, 'shrub': 1, 'straight-backed': 1, 'rimless': 1, 'dried-out': 1, 'Hausman': 1, 'barging': 1, "Hausman's": 1, 'firecracker': 1, 'ki-yi-ing': 1, 'flamed': 1, 'teakettle': 1, 'petit': 1, 'dejeuner': 1, 'breakfast-table': 1, 'spoonful': 1, 'Stirring': 1, 'fauteuil': 1, 'rudeness': 1, 'marmalade': 1, 'black-market': 1, 'Berlitz': 1, 'ornately': 1, 'important-looking': 1, 'Bonenfant': 1, "Alix's": 1, 'Vienot': 1, 'upholstered': 1, 'russet': 1, 'Lancret': 1, 'daybed': 1, 'dark-brown': 1, 'velours': 1, "Beethoven's": 1, 'Da-da-da-dum': 1, 'astral': 1, 'Vouillemont': 1, 'Tours': 1, 'Cheap': 1, 'Looked': 1, 'aprons': 1, 'shoestrings': 1, 'unpicturesque': 1, 'open-collared': 1, 'coupons': 1, 'Blois': 1, 'Vermouth': 1, "Irelands'": 1, 'Eighties': 1, 'hot-water': 1, 'Damp': 1, 'Concorde': 1, "pounds'": 1, "Jesus's": 1, 'winding-clothes': 1, 'Descent': 1, 'Search': 1, "Dell'Arca": 1, 'Lamentation': 1, 'usurped': 1, 'Pontius': 1, "Pilate's": 1, 'halos': 1, 'resurrected': 1, 'remotest': 1, 'Visually': 1, 'sweet-faced': 1, 'Discovering': 1, 'life-size': 1, 'draper': 1, "Madonna's": 1, 'Hebraic': 1, 'Ripa': 1, '1492': 1, 'robed': 1, 'gabardine': 1, 'graven': 1, 'Carrara': 1, 'Dionigi': 1, 'Workmen': 1, "Sangallo's": 1, 'Sangallo': 1, 'trestle': 1, 'disrobe': 1, 'toweling': 1, 'bolting': 1, 'roughed': 1, 'thirty-three': 1, 'translucence': 1, 'scratchiness': 1, 'plastically': 1, 'Carving': 1, 'Jesuits': 1, 'Scrub': 1, 'unteach': 1, 'Grumbled': 1, 'campagna': 1, 'Po': 1, 'anvil': 1, 'chisels': 1, 'Lippi': 1, 'pigeons': 1, 'gush': 1, "Michelangelo's": 1, 'crooning': 1, 'steeled': 1, "nurse's": 1, 'drooped': 1, 'Fitzroy': 1, 'portended': 1, 'replanted': 1, 'Annie': 1, "Lattimer's": 1, 'Moccasin': 1, 'Rangers': 1, 'Stranger': 1, 'strapped': 1, 'Hearing': 1, 'raucously': 1, 'reprisals': 1, 'blackberry': 1, 'Beau': 1, 'restive': 1, 'bawling': 1, 'wares': 1, 'Wheeling': 1, 'Dangling': 1, 'trinkets': 1, 'Cheat': 1, 'Federals': 1, 'Winking': 1, "Breckenridge's": 1, 'Maj.': 1, 'grassfire': 1, 'garbled': 1, 'dey': 1, 'dere': 1, 'rejoice': 1, 'victoriously': 1, "Juanita's": 1, 'iced': 1, "Marsh's": 1, 'gentians': 1, 'enunciated': 1, 'manumission': 1, 'cove': 1, 'unsaid': 1, 'well-stuffed': 1, 'snuffer': 1, 'candlewick': 1, 'marvelously': 1, 'seahorse': 1, 'sugared': 1, 'silver-gray': 1, 'lace-drawn': 1, 'lummox': 1, 'upstate': 1, 'Rensselaerwyck': 1, 'trolls': 1, "sulky's": 1, 'pothole': 1, 'electrifying': 1, 'purling': 1, 'weirs': 1, 'moon-drenched': 1, 'blending': 1, 'bewhiskered': 1, 'croaking': 1, 'bleaching': 1, 'pig-infested': 1, 'non-Indian': 1, 'landowners': 1, 'hayfields': 1, 'Husbandry': 1, 'snake-rail': 1, 'fishers': 1, 'mooncursers': 1, 'smugglers': 1, 'eatable': 1, 'killable': 1, 'digestible': 1, 'Paulus': 1, 'Hook': 1, "Majesty's": 1, 'herding': 1, 'ketches': 1, 'Provincial': 1, 'glided': 1, 'sterns': 1, 'men-of-war': 1, 'gig': 1, 'dwellers': 1, 'chevaux': 1, 'frise': 1, 'Palisades': 1, 'gritty': 1, 'Wappinger': 1, 'Fishkill': 1, "Verplanck's": 1, 'salt-crusted': 1, 'Rockaways': 1, 'Waited': 1, 'lobster-backed': 1, 'Spuyten': 1, 'Duyvil': 1, "Kentuck'": 1, 'cutlass': 1, 'unshaved': 1, 'odyssey': 1, 'Pensive': 1, 'mosquito-plagued': 1, 'tepid': 1, 'stropping': 1, 'bedpost': 1, 'calumny': 1, 'intuitions': 1, 'stropped': 1, 'ledgers': 1, 'Manderscheid': 1, 'Unique': 1, 'Injury': 1, 'ingratitude': 1, 'Hancock': 1, "smugglers'": 1, 'tarred': 1, 'wretch': 1, "Schuyler's": 1, 'perfectability': 1, 'tenebrous': 1, 'Peg': 1, 'meditate': 1, 'retied': 1, 'wig': 1, 'colonials': 1, 'wide-cut': 1, 'patriarchal': 1, 'plenitude': 1, 'English-Dutch': 1, 'manors': 1, 'squires': 1, 'Burly': 1, 'leathered': 1, 'Peasants': 1, 'Bathyran': 1, 'Tolek': 1, 'Alterman': 1, 'irrigating': 1, 'unfertile': 1, 'Zionists': 1, 'Judea': 1, 'Zionism': 1, 'birthright': 1, 'Tel': 1, 'Aviv': 1, 'flirted': 1, 'Rak': 1, 'gnawed': 1, 'inched': 1, 'marshaling': 1, 'Deportees': 1, 'Rumanians': 1, 'Ana': 1, 'Odilo': 1, 'Gauleiter': 1, 'Himmler': 1, 'fountainhead': 1, 'interlacing': 1, 'lagers': 1, 'Madagascar': 1, 'Stories': 1, "Globocnik's": 1, 'Lipowa': 1, 'Sobibor': 1, 'Chelmno': 1, 'Poltawa': 1, 'Belzec': 1, 'Krzywy-Rog': 1, 'Budzyn': 1, 'Krasnik': 1, 'lashings': 1, 'crushers': 1, 'Einsatzkommandos': 1, 'knee-deep': 1, 'dope-ridden': 1, 'maniacs': 1, 'Majdan-Tartarski': 1, 'refilled': 1, 'deportees': 1, 'Umschlagplatz': 1, 'Litowski': 1, 'Krakow': 1, 'brownish': 1, 'vociferously': 1, 'grumbled': 1, 'zlotys': 1, 'dishonored': 1, "Grabski's": 1, 'Bystrzyca': 1, 'sweat-saturated': 1, 'moon-round': 1, 'Flies': 1, 'lentils': 1, 'barrack': 1, 'slurped': 1, 'one-thousand-zloty': 1, 'clumsily': 1, 'Hedda': 1, 'Gabler': 1, 'highschool': 1, 'dramatics': 1, "Nothing's": 1, "Thelma's": 1, 'pimplike': 1, 'Waking': 1, 'remorseful': 1, 'hangovers': 1, 'sickish': 1, 'hairtonic': 1, 'percolator': 1, 'olivefaced': 1, 'taffycolored': 1, 'Oval': 1, 'Xavier': 1, 'Exboyfriend': 1, 'exhusband': 1, 'nastiest': 1, 'fellowfeeling': 1, 'lowdown': 1, 'coffeecup': 1, 'shacked': 1, 'advisedly': 1, 'needled': 1, 'twotiming': 1, 'selfeffacing': 1, 'Connections': 1, 'screechy': 1, 'wheedled': 1, 'kale': 1, 'hocking': 1, 'pokerfaced': 1, 'beefy': 1, 'lecher': 1, 'clannishness': 1, 'Apparel': 1, "Xavier's": 1, 'christening': 1, 'layette': 1, 'muscled': 1, "Portwatchers'": 1, 'longshoremen': 1, 'towboats': 1, 'watchmen': 1, 'musclemen': 1, 'Redhook': 1, 'weatherbeaten': 1, 'extinguish': 1, 'bishopry': 1, 'indefatigable': 1, 'stiffness': 1, 'pachinko': 1, 'attentively': 1, 'point-blank': 1, 'guileless': 1, 'truthful': 1, 'indirection': 1, 'Chiba': 1, 'embellished': 1, 'imagnation': 1, 'Kayabashi-san': 1, 'Arigato': 1, 'gosaimasu': 1, 'Yamata': 1, 'sushi': 1, 'cuttings': 1, 'effortlessly': 1, 'tableau': 1, 'deceive': 1, 'Ito': 1, 'altercation': 1, 'attired': 1, 'serge': 1, 'dappled': 1, 'bait': 1, 'entanglement': 1, 'daunt': 1, 'forte-pianos': 1, "Scott's": 1, 'Rosabelle': 1, 'cooing': 1, 'doves': 1, 'jackdaws': 1, 'harpy': 1, 'Medmenham': 1, 'Hellfire': 1, 'regaled': 1, 'cassocked': 1, 'bloods': 1, 'firsthand': 1, 'Dodington': 1, 'monkish': 1, 'self-flagellation': 1, 'Naked': 1, 'chancel': 1, 'depravities': 1, 'amorist': 1, 'Dashwood': 1, 'Wicked': 1, 'abbot': 1, 'beadsman': 1, 'seventeen-year-old': 1, 'bluestocking': 1, 'Charming': 1, 'palpably': 1, 'Adonis': 1, 'owls': 1, 'Elba': 1, 'hostelries': 1, 'philosophized': 1, 'overpriced': 1, 'Bacchus': 1, 'Io': 1, 'nymph': 1, "owl's": 1, 'unfaithful': 1, 'catechize': 1, 'Brains': 1, 'poplin': 1, 'untied': 1, 'buttoned': 1, 'kindled': 1, 'Parisina': 1, 'sonorous': 1, 'scimitars': 1, 'Bonaparte': 1, 'detractor': 1, 'pardonable': 1, 'musings': 1, 'Southey': 1, 'reprovingly': 1, 'raptures': 1, 'Thynnes': 1, 'caliphs': 1, 'supercritical': 1, 'Siege': 1, 'Corinth': 1, 'Byronism': 1, 'low-water': 1, 'far-famed': 1, 'languishing': 1, 'smallish': 1, 'Milbankes': 1, 'Fetch': 1, 'thumbnail': 1, 'low-ceilinged': 1, 'drumlin': 1, 'urine': 1, 'slimed': 1, 'safe-conduct': 1, 'exorcise': 1, 'dank': 1, 'enervation': 1, 'skulk': 1, 'Prompted': 1, "soldier's": 1, "'scuse": 1, 'dented': 1, 'clean-shaven': 1, 'shambled': 1, 'cawing': 1, 'elbowing': 1, 'flounder': 1, 'unsteadily': 1, 'supercilious': 1, 'haughtily': 1, 'swamping': 1, 'incertain': 1, 'slow-scrambling': 1, 'gesticulated': 1, 'cadaverous': 1, 'clotted': 1, 'nighted': 1, 'fellas': 1, 'bein': 1, 'Secesh': 1, 'wheezed': 1, 'mewed': 1, 'bewilderedly': 1, 'flecked': 1, 'pine-knot': 1, 'grovel': 1, 'prie-dieu': 1, 'bade': 1, 'parcels': 1, 'chafe': 1, "Hillman's": 1, "schoolmaster's": 1, 'Gogol': 1, 'plaster-of-Paris': 1, 'birdbath': 1, 'gnomes': 1, 'mobcaps': 1, 'horse-chestnut': 1, 'Pasterns': 1, 'bulks': 1, 'physicalness': 1, 'Offer': 1, 'mosquitoes': 1, 'Grandmother': 1, 'Delancy': 1, 'trumps': 1, 'bewilderingly': 1, 'Grassy': 1, 'Brae': 1, 'locker-room': 1, 'fineness': 1, 'Leaves': 1, 'ammoniac': 1, 'acidity': 1, 'zenith': 1, 'Charity': 1, 'Balcolm': 1, 'Eyke': 1, 'Trempler': 1, 'Surcliffe': 1, "Mothers'": 1, 'Dimes': 1, 'Craven': 1, 'Gilkson': 1, 'Hewlitt': 1, 'birthcontrol': 1, 'Ryerson': 1, "Littleton's": 1, 'encyclopedias': 1, "Surcliffes'": 1, 'Scotch-and-soda': 1, "Blevins'": 1, "Flannagans'": 1, 'Infectious': 1, 'cozier': 1, 'Travelling': 1, 'riffle': 1, 'sighs': 1, "Everything's": 1, 'depressors': 1, 'window-washing': 1, 'harried': 1, 'starlight': 1, 'pari-mutuel': 1, 'scuff': 1, 'unashamedly': 1, 'shun': 1, 'notification': 1, 'lemons': 1, 'dainty-legged': 1, 'vellum': 1, 'authoritatively': 1, 'quaver': 1, 'thwarting': 1, 'broad-nibbed': 1, 'linen-covered': 1, 'speculatively': 1, 'paled': 1, 'uncousinly': 1, 'near-absence': 1, 'flick': 1, 'blowfish': 1, 'unself-conscious': 1, 'dourly': 1, 'impaling': 1, 'Procreation': 1, 'belligerently': 1, 'Packards': 1, 'populate': 1, 'mashing': 1, 'densest': 1, "table's": 1, 'quirking': 1, 'malignancies': 1, 'bassinet': 1, 'unreeling': 1, 'paling': 1, 'unendurable': 1, 'greenly': 1, 'tilled': 1, 'familiarness': 1, "Jessica's": 1, 'selfishness': 1, 'contrition': 1, 'categorized': 1, 'crotchety': 1, 'uh-uh': 1, 'briefest': 1, 'half-expressed': 1, 'fecund': 1, 'farmland': 1, 'clams': 1, 'fieldstone': 1, 'bride-gift': 1, 'cousin-wife': 1, 'clambering': 1, 'headland': 1, 'sloop': 1, 'mutuality': 1, 'cumulus': 1, 'dung': 1, 'fuzzed': 1, 'dandelion': 1, 'Pap-pap-pap-hey': 1, 'mother-naked': 1, 'cuff': 1, 'nightshirt': 1, "Pa'd": 1, 'shit-sick': 1, "What'd": 1, 'sassing': 1, "Pedersen's": 1, 'cleat': 1, 'pawing': 1, 'privy': 1, "that'd": 1, "Heat's": 1, 'Lift': 1, "throat's": 1, 'Shut': 1, 'disputable': 1, 'Rummel': 1, 'crafter': 1, 'believably': 1, 'half-past': 1, 'high-topped': 1, 'bower': 1, 'geneticist': 1, 'spidery': 1, 'cantilevers': 1, 'inventing': 1, 'gratings': 1, 'monochromes': 1, 'broken-backed': 1, 'Bicycle': 1, 'gear-sets': 1, 'Cycly': 1, 'skates': 1, 'moralistic': 1, 'broken-nosed': 1, "wrestler's": 1, 'caretaker': 1, 'disengagement': 1, 'mistook': 1, 'mackinaw': 1, "Cleota's": 1, 'Rumanian': 1, 'Defrost': 1, 'rutted': 1, 'startled-horse': 1, 'money-making': 1, 'gardened': 1, 'peasanthood': 1, 'breaths': 1, 'Toot-toot': 1, 'uncombable': 1, 'nicotine-choked': 1, 'protectively': 1, 'partings': 1, 'realest': 1, 'parakeets': 1, 'cha-chas': 1, 'harp': 1, 'perch': 1, 'soddenly': 1, 'unready': 1, 'Enjoy': 1, 'Weaning': 1, 'sisters-in-law': 1, 'unpack': 1, 'linoleum': 1, "Albrights'": 1, 'evaporative': 1, "Granny's": 1, 'fifty-pound': 1, 'clucking': 1, 'grayed': 1, 'unwrinkled': 1, 'Lura': 1, 'booming': 1, 'smothering': 1, 'Carrying': 1, 'swingy': 1, "Howard's": 1, 'Odessa': 1, 'lucked': 1, 'half-grown': 1, 'windbag': 1, 'drouth': 1, 'Bye': 1, 'caliche-topped': 1, 'well-rounded': 1, 'full-of-the-moon': 1, 'Farnworth': 1, 'oil-well': 1, 'smuggle': 1, 'unimposing': 1, 'specimentalia': 1, "hens'": 1, 'eared': 1, 'Flumenophobe': 1, 'scapulars': 1, 'squawk': 1, "rooster's": 1, 'alpha-beta-gammas': 1, 'Ecole': 1, 'Medecine': 1, 'egg-hatching': 1, 'sure-enough': 1, 'still-dark': 1, 'hallways': 1, 'turkeys': 1, 'quacked': 1, 'revery': 1, 'excellences': 1, 'hackles': 1, 'justness': 1, 'lappets': 1, 'fowl': 1, 'seven-thirty': 1, 'abed': 1, 'sequestration': 1, 'perceptible': 1, 'perturbation': 1, 'Bonjour': 1, 'messieurs': 1, 'vous': 1, 'etes': 1, 'matinals': 1, 'protuberance': 1, 'voulez': 1, 'vos': 1, 'dejeuners': 1, 'tout': 1, 'alors': 1, 'enquired': 1, 'stair-well': 1, "patronne's": 1, 'sforzando': 1, 'long-shanked': 1, 'Comment': 1, 'Ejaculated': 1, "hen's": 1, 'attentions': 1, 'emanations': 1, 'pricked': 1, 'feller': 1, 'beckon': 1, 'poultry-loving': 1, 'tip-toe': 1, "chambre's": 1, 'barnyard': 1, 'cackly': 1, 'sixty-eight': 1, 'showerhead': 1, 'highboard': 1, 'Chickens': 1, 'fellers': 1, 'Tanganika': 1, 'Vulturidae': 1, 'flops': 1, 'Jeannie': 1, 'chicks': 1, 'little-girl': 1, 'impudently': 1, 'Fuss': 1, "cat's": 1, 'undid': 1, 'cockeyed': 1, 'flounced': 1, 'thinness': 1, 'clothesbrush': 1, 'pigskin': 1, 'fleck': 1, 'shoelace': 1, 'corduroys': 1, 'pearl-gray': 1, 'unworn': 1, 'Good-by': 1, 'swiped': 1, 'hinge': 1, 'polishes': 1, 'citron': 1, 'jonquils': 1, 'periwinkles': 1, 'hyacinths': 1, 'dogwood': 1, 'snail': 1, 'breakables': 1, 'Frowning': 1, 'cockatoo': 1, 'Picture': 1, 'Lovie': 1, 'dresser': 1, 'spatter': 1, 'severing': 1, 'woeful': 1, 'intruded': 1, 'footbridge': 1, 'messhall': 1, 'unsloped': 1, 'studious': 1, 'grandparents': 1, 'epistolatory': 1, 'communiques': 1, 'bunkmate': 1, 'blooded': 1, 'irresolution': 1, 'unbounded': 1, 'reunion-Halloween': 1, 'mum': 1, 'bunkmates': 1, 'braids': 1, 'Halloween': 1, 'schoolgirlish': 1, 'fantasist': 1, 'flustered': 1, 'fleetest': 1, 'premonitions': 1, 'timidity': 1, 'half-understood': 1, 'Lovingly': 1, 'pompously': 1, 'corsage': 1, "Child's": 1, "Toffenetti's": 1, 'waffles': 1, 'herringbone': 1, 'camp-made': 1, 'Hatless': 1, 'travellers': 1, 'Heavy-coated': 1, 'severe-looking': 1, 'revellers': 1, 'marquees': 1, 'Cardboard': 1, 'hawked': 1, "horns'": 1, 'rasps': 1, 'bleats': 1, 'bugle': 1, 'gallants': 1, 'beach-head': 1, 'merrymaking': 1, 'curdling': 1, 'huggings': 1, 'kissings': 1, 'forays': 1, '7:25': 1, 'saw-horse': 1, 'haberdashery': 1, 'entranceway': 1, 'epaulets': 1, 'spic': 1, 'red-visored': 1, 'thirty-eight': 1, 'hallucinating': 1, 'remorse': 1, "Nurses'": 1, 'orphan': 1, 'jabberings': 1, 'grade-A': 1, 'unjustified': 1, 'Kupcinet': 1, 'Sun-Times': 1, 'Chicagoans': 1, 'Croydon': 1, 'N.Y.U.': 1, 'five-a-week': 1, 'counterman': 1, 'Schraffts': 1, 'Wycoff': 1, 'untimely': 1, 'tenspot': 1, 'motioned': 1, "Wycoff's": 1, 'shiningly': 1, 'once-over': 1, 'JYJ': 1, 'Forgot': 1, 'JYM': 1, 'inconspicuous': 1, 'magnifies': 1, 'disagreeable': 1, 'sublease': 1, 'transients': 1, 'Regulars': 1, 'snappy': 1, 'drawn-out': 1, 'high-class': 1, 'charcoal-broiled': 1, 'Peeping': 1, 'Ninety-nine': 1, 'transposition': 1, 'alias': 1, 'registrations': 1, 'soft-drink': 1, 'sidelong': 1, 'cracker-box': 1, 'bedded': 1, 'tightest-fitting': 1, 'sociable': 1, 'pout': 1, 'commences': 1, 'ten-fifty-five': 1, 'buzz-buzz-buzz': 1, 'Darn': 1, "Dowling's": 1, 'Diets': 1, 'provocatively': 1, 'wiggle': 1, 'That-a-way': 1, 'rash': 1, 'sideboard': 1, 'Rat-face': 1, 'zipped': 1, 'Corsi': 1, "Simon's": 1, 'musta': 1, 'Howda': 1, 'Kinda': 1, 'zombie': 1, 'Stupid': 1, 'zipper': 1, 'sompin': 1, 'coulda': 1, 'Steiner': 1, 'hiss': 1, "Why'n": 1, 'catchup': 1, 'dispenser': 1, 'soothingly': 1, "Guardino's": 1, 'scaring': 1, 'Impatiently': 1, 'sniggered': 1, 'wetly': 1, 'unopened': 1, 'door-frame': 1, 'deviate': 1, '387': 1, 'Heather': 1, 'filaments': 1, 'wheezing': 1, 'farmhouses': 1, 'quagmire': 1, 'mud-caked': 1, 'viscous': 1, 'toddlers': 1, 'disgraced': 1, "Marty's": 1, "Burch's": 1, 'water-filled': 1, 'equidistant': 1, 'Chancellorsville': 1, 'banshee': 1, 'pained': 1, 'hyped-up': 1, 'barbed-wire': 1, 'tormenters': 1, 'dogtrot': 1, 'stone-still': 1, 'lacerated': 1, 'pedals': 1, 'hurtled': 1, 'siren': 1, 'Estes': 1, 'brusquely': 1, 'cabdriver': 1, 'yellow-bellied': 1, 'redneck': 1, 'Jai': 1, 'Alai': 1, 'slopped': 1, 'half-melted': 1, 'ice-cubes': 1, "Perrin's": 1, 'Marsha': 1, 'Putas': 1, 'Buenas': 1, 'knife-men': 1, 'aforethought': 1, 'counterfeit': 1, 'bracelet': 1, 'confederates': 1, "Felice's": 1, 'divider': 1, 'neon-lighted': 1, 'palm-lined': 1, 'crane': 1, 'briefly-illumed': 1, 'dicks': 1, 'Petey': 1, 'twenty-dollar': 1, 'conspiratorial': 1, 'half-turned': 1, 'hatchet-faced': 1, 'gum-chewing': 1, "Harris'": 1, "Geely's": 1, 'recumbent': 1, 'good-humoredly': 1, 'wall-switch': 1, 'flatten': 1, 'wrenching': 1, 'scrambling': 1, 'knifelike': 1, 'invulnerable': 1, 'feebly': 1, 'mid-air': 1, 'bloodstained': 1, 'careened': 1, 'newel': 1, 'sudden-end': 1, 'lamming': 1, 'wastrel': 1, 'undulating': 1, 'safekeeping': 1, 'deceitful': 1, 'Liz': 1, 'Peabody': 1, 'Jeb': 1, 'garish': 1, 'white-stucco': 1, 'privet': 1, 'semitropical': 1, 'camellias': 1, 'improbably': 1, 'bright-green': 1, 'grooms': 1, "Calhoun's": 1, 'gallstone': 1, 'Tracking': 1, 'frizzled': 1, 'breaking-out': 1, 'allergy': 1, 'reportorial': 1, 'rolled-up': 1, 'latches': 1, 'grillework': 1, "Hirey's": 1, 'leather-bound': 1, 'mustiness': 1, 'thrumming': 1, 'stacks': 1, 'burrowing': 1, 'casters': 1, 'plod': 1, 'cropping': 1, 'basketball-playing': 1, 'L.S.U.': 1, 'two-line': 1, "McKinley's": 1, 'Iroquois': 1, 'Hall-Mills': 1, 'clanged': 1, 'stone-blind': 1, 'pungency': 1, "supervisors'": 1, 'Gaylor': 1, 'anagram': 1, 'unscramble': 1, "Gaylor's": 1, 'chimera-chasing': 1, 'reminiscences': 1, 'mesmerized': 1, 'Acourse': 1, "Denny's": 1, "Jackie's": 1, "worryin'": 1, 'distractedly': 1, 'regular-featured': 1, 'spaniel-like': 1, "anybody'd": 1, 'underling': 1, 'paternally': 1, 'Elite': 1, 'ground-glass': 1, 'ten-twelve': 1, 'Bouvardier': 1, 'superstitious': 1, 'Roslev': 1, "'way": 1, 'foreign-sounding': 1, 'Prettier': 1, 'smarter': 1, 'vaguely-imagined': 1, "Katharine's": 1, 'Mendoza': 1, 'Alison': 1, 'Bast': 1, 'daintily': 1, 'Abyssinians': 1, 'que': 1, 'sigue': 1, 'despues': 1, 'vet': 1, 'Carters': 1, "Maude's": 1, 'beau': 1, "Celie's": 1, 'hiked': 1, 'floes': 1, 'Stowe': 1, 'paterollers': 1, 'undrinkable': 1, 'Rilly': 1, 'unprocurable': 1, 'unpleasantly': 1, 'Added': 1, 'moire': 1, 'armoire': 1, 'doled': 1, 'Celie': 1, 'storeroom': 1, 'Commissary': 1, 'hams': 1, 'smoke-stained': 1, 'rafters': 1, 'brad': 1, 'satirically': 1, "cobbler's": 1, "Lolotte's": 1, 'schoolgirl': 1, 'confidant': 1, "Glendora's": 1, 'half-cocked': 1, 'telephone-booth': 1, 'massaging': 1, 'blustery': 1, 'unheeding': 1, 'picture-images': 1, 'enormity': 1, 'no-goal': 1, 'one-thousandth': 1, 'undisguised': 1, 'racking': 1, "Blanche's": 1, 'worksheet': 1, 'Dinner': 1, 'Acapulco': 1, 'serenely': 1, 'penciled': 1, 'Mallory': 1, 'pantomimed': 1, "Mallory's": 1, 'second-floor': 1, "M.E.'s": 1, 'on-the-spot': 1, 'comings': 1, 'goings': 1, 'householder': 1, 'Defining': 1, 'sobriety': 1, 'dame': 1, 'craggy': 1, 'unsuitably': 1, 'hatted': 1, 'unaccountable': 1, 'handiwork': 1, 'flute': 1, 'cavort': 1, 'big-chested': 1, 'big-shouldered': 1, 'heavy-armed': 1, 'dentures': 1, 'staggeringly': 1, 'whiff': 1, 'blokes': 1, 'Bully': 1, 'whorls': 1, 'Shh': 1, 'Obligingly': 1, 'Connor': 1, 'foursome': 1, 'fingerprinting': 1, 'skylight': 1, 'unerringly': 1, 'Expecting': 1, 'more-than-average': 1, 'wacky': 1, 'tarpaulin': 1, 'shrouded': 1, "workman's": 1, 'crutch': 1, 'Memory': 1, 'kidnapped': 1, 'cant': 1, 'comforted': 1, 'revising': 1, 'befitting': 1, 'cancelling': 1, "casino's": 1, 'nosing': 1, "hotel's": 1, 'prying': 1, 'hero-worshippers': 1, 'Backstage': 1, 'DuVol': 1, 'kidnapper': 1, "nightclub's": 1, 'Motion': 1, 'Kidnapper': 1, 'kidnappers': 1, "bastard's": 1, 'natch': 1, 'sippers': 1, 'call-backs': 1, 'lucks': 1, 'Eliminating': 1, 'upbeat': 1, 'gravestone': 1, 'backstage': 1, 'perspiring': 1, 'Ladies': 1, 'off-stage': 1, 'Bunch': 1, 'jerks': 1, 'mended': 1, 'Humpty': 1, 'Dumpty': 1, 'morgue': 1, "Dronk's": 1, 'limps': 1, "'stead": 1, 'half-aloud': 1, 'slimmer': 1, 'pleats': 1, "Arthur's": 1, "shark's": 1, 'No-o-o': 1, "Mae's": 1, 'prodding': 1, 'recreating': 1, 'molesting': 1, 'staginess': 1, 'uprooted': 1, 'jerkings': 1, 'snivelings': 1, 'dragons': 1, 'Abandon': 1, 'chomp': 1, 'Worn': 1, 'glass-like': 1, 'icicle': 1, 'airless': 1, 'Forties': 1, 'Paynes': 1, 'lunge': 1, 'fifty-four': 1, 'telescopic': 1, 'sniper': 1, 'bellhops': 1, 'Cases': 1, 'long-stemmed': 1, 'Traces': 1, 'ocelot': 1, 'collapsible': 1, 'Vitus': 1, 'dribbled': 1, 'Nod': 1, 'Ridgefield': 1, 'Norths': 1, "Jerry's": 1, 'Livingston': 1, 'Birdwood': 1, 'Uprising': 1, 'scuffle': 1, 'Intangibles': 1, 'hunches': 1, 'Ambushes': 1, 'punishes': 1, 'quarter-century-old': 1, 'Grudges': 1, 'Jeopardize': 1, 'large-enough': 1, 'Bitter': 1, 'unreasoning': 1, 'eliminations': 1, 'Opportunity': 1, 'corrode': 1, 'Lars': 1, 'playwright-director': 1, 'y': 1, "Pam's": 1, 'piteous': 1, 'chaise': 1, "Constable's": 1, 'uninvited': 1, 'adulation': 1, 'herring': 1, 'Coroner': 1, 'suffocation': 1, 'hemorrhages': 1, 'Scrapings': 1, 'cavities': 1, 'Trachea': 1, 'thrombosis': 1, "seven-o'clock": 1, "Medfield's": 1, 'Youngish': 1, 'Jaycee': 1, 'disliking': 1, "inspector's": 1, 'Fairly': 1, 'wills': 1, 'pompousness': 1, 'great-nieces': 1, 'Pecks': 1, 'faucet': 1, 'Ten-thousand-dollar': 1, 'two-bedroom': 1, 'Airy': 1, 'unremarkable': 1, 'Dunston': 1, 'stock-market': 1, 'wrought-iron': 1, "undersecretary's": 1, 'red-rimmed': 1, "Who'd": 1, 'encased': 1, 'placating': 1, 'recollected': 1, 'Bonfiglio': 1, 'half-crocked': 1, 'muddleheaded': 1, 'Troubled': 1, "Griffith's": 1, 'sari': 1, 'leaded': 1, 'drapes': 1, "minister's": 1, 'four-story': 1, 'legation': 1, 'copings': 1, 'bulked': 1, 'Guardia': 1, "legation's": 1, 'third-story': 1, "room's": 1, 'facades': 1, 'nakedly': 1, 'retch': 1, 'Arleigh': 1, 'buoyed': 1, 'Ingleside': 1, "janitor's": 1, "Policemen's": 1, 'thirty-seven': 1, 'untoward': 1, 'incursion': 1, 'Lieut': 1, 'combing': 1, 'pomaded': 1, 'thatches': 1, "Gun's": 1, 'washbowl': 1, 'Fight': 1, 'stiff-backed': 1, 'shinbone': 1, 'gut': 1, 'kneecap': 1, 'beady': 1, 'squadroom': 1, 'patrolmen': 1, 'single-spaced': 1, "Ingleside's": 1, 'drunk-and-disorderlies': 1, 'gold-wire': 1, 'absented': 1, 'sergeants': 1, 'Detail': 1, "Inspector's": 1, 'arrogate': 1, 'homicide': 1, 'frequented': 1, 'extralegal': 1, 'after-hours': 1, 'purportedly': 1, 'law-enforcement': 1, 'trapdoor': 1, 'nasaled': 1, 'balling': 1, 'Loren': 1, 'playback': 1, 'comportment': 1, 'mid-watch': 1, 'pencil-pusher': 1, 'ulcerated': 1, 'pro-tem': 1, 'Doughnuttery': 1, 'Urbano': 1, 'Quintana': 1, 'foot-high': 1, 'Se': 1, 'Habla': 1, 'Espanol': 1, 'bilingual': 1, 'salesgirl': 1, 'Jiffy-Couch-a-Bed': 1, 'mauve': 1, 'velour': 1, '$79.89': 1, 'nothing-down': 1, 'refinance': 1, 'double-crossed': 1, "Needham's": 1, "Betty's": 1, 'father-confessor': 1, 'striding': 1, 'grappled': 1, 'Ackerly': 1, 'vetoed': 1, 'unlacing': 1, 'Reverse': 1, 'RDF': 1, 'enviously': 1, 'taut-nerved': 1, 'Silently': 1, 'Hydraulic': 1, 'codfish': 1, 'Clasping': 1, 'loneliest': 1, "Elaine's": 1, 'stumble': 1, 'Trinidad': 1, 'snooping': 1, 'helicopter': 1, 'skids': 1, 'churned': 1, 'secluded': 1, 'eyeful': 1, 'crossways': 1, 'ground-swell': 1, 'deeps': 1, 'whoppers': 1, 'skindive': 1, 'Strolling': 1, 'butane': 1, 'hi-fi': 1, 'moulding': 1, 'washboard': 1, 'Kee-reist': 1, 'mannequin': 1, 'Hurts': 1, 'companionway': 1, 'telegraphing': 1, 'Springing': 1, 'whoosh': 1, 'atavistic': 1, 'flippers': 1, 'pinioned': 1, 'painlessly': 1, 'flailed': 1, 'lanced': 1, 'lazily': 1, 'snake-like': 1, 'spewing': 1, 'Desperately': 1, 'thrash': 1, 'Relentlessly': 1, 'inhaling': 1, 'steamer': 1, 'stiffs': 1, 'hick-self': 1, 'Took': 1, 'Proves': 1, 'sarcasm': 1, 'ribbing': 1, 'runt': 1, 'hotrod': 1, 'six-four': 1, 'corny': 1, 'gassy': 1, 'Comfortably': 1, 'Came': 1, 'hustling': 1, 'idiot-grin': 1, '9:47': 1, 'Swears': 1, "Abel's": 1, "Buck's": 1, 'Powerful': 1, 'Naw': 1, 'roadster': 1, 'heck': 1, 'grandfather-father-to-son': 1, 'Caddy': 1, 'prune': 1, 'shacks': 1, "'till": 1, 'Hiding': 1, 'chowder': 1, 'ocean-going': 1, 'yawl': 1, "Bob's": 1, 'fine-tooth': 1, 'vacuumed': 1, 'Interview': 1, 'Reenact': 1, 'smirked': 1, 'Cheerful': 1, "chief's": 1, 'flimsies': 1, 'spot-news': 1, 'Syndicate': 1, 'Kimball': 1, 'remarry': 1, 'Unoccupied': 1, 'Larger': 1, 'impertinent': 1, 'parrots': 1, 'St-story': 1, 'Syndicated': 1, 'Feature': 1, 'tremulously': 1, 'globes': 1, 'footfall': 1, 'Stairs': 1, 'snowflakes': 1, 'Hastily': 1, 'ashtrays': 1, 'N-no': 1, 'immovable': 1, 'metronome': 1, 'wide-awake': 1, 'noiseless': 1, 'droop': 1, 'feigning': 1, 'tensed': 1, 'bedsprings': 1, 'creak': 1, 'Abandoning': 1, 'squashy': 1, 'Rough': 1, 'rasped': 1, 'inarticulate': 1, 'Tartar': 1, 'one-way': 1, 'gullet': 1, "Day's": 1, 'highboy': 1, 'Places': 1, 'creeps': 1, 'veneer': 1, 'hall-mark': 1, 'Granther': 1, 'Stannard': 1, 'Dorcas': 1, 'bungled': 1, 'highland': 1, "moraine's": 1, 'spewings': 1, 'glacier': 1, 'cellars': 1, 'ledges': 1, 'sumac': 1, 'Lanesville': 1, "hour's": 1, 'Pigeon': 1, 'Cove': 1, 'picnickers': 1, 'Sea-road': 1, 'Scandinavians': 1, 'steam-baths': 1, 'as-it-were': 1, 'antiquities': 1, 'registrar': 1, 'water-line': 1, 'fingering': 1, 'glossy': 1, 'appraising': 1, 'curt': 1, 'untidy': 1, 'fine-boned': 1, 'ivory-inlay': 1, 'foulest': 1, 'noir': 1, 'Violent': 1, "granite's": 1, '1785': 1, '1786': 1, 'free-holders': 1, 'Salu': 1, 'bake-oven': 1, 'Cow': 1, 'lastly': 1, 'dower': 1, 'coxcombs': 1, 'buccolic': 1, "Red's": 1, 'inopportune': 1, 'unperceived': 1, 'Gloomy': 1, 'unkempt': 1, 'unravel': 1, 'gunning': 1, 'pheasant': 1, 'Rabbits': 1, 'dragger': 1, 'tear-filled': 1, 'howled': 1, 'blared': 1, 'safe-driving': 1, 'screwball': 1, 'crease': 1, "landlord's": 1, 'Customer': 1, 'weirdy': 1, 'limply': 1, 'lushes': 1, 'moodily': 1, 'table-top': 1, 'bloodshot': 1, 'bar-buddy': 1, 'offhand': 1, "level's": 1, "Pops's": 1, 'unrolled': 1, 'bindle': 1, 'Sure-sure': 1, 'sure-sure': 1, 'Git': 1, "th'": 1, 'amusedly': 1, 'Wearing': 1, 'Gloves': 1, 'blaring': 1, 'flicking': 1, 'watermelon': 1, 'kayo': 1, 'Dig': 1, 'thunk': 1, 'abstractly': 1, 'winos': 1, 'guttered': 1, 'triple-checked': 1, 'Winsett': 1, 'Cosmo': 1, 'clockwork': 1, 'unpadded': 1, 'dreamlessly': 1, "Maxine's": 1, 'Seaton': 1, 'show-down': 1, 'rummy': 1, 'stashed': 1, 'D-night': 1, "Self's": 1, 'threes-fulfilled': 1, 'Tabernacle': 1, 'growing-waiting': 1, 'Repeating': 1, 'jewel': 1, 'lotus': 1, 'nirvana': 1, 'uncurled': 1, 'clear-headed': 1, 'puppyish': 1, 'chipper': 1, 'Asleep': 1, 'Stinky': 1, 'night-sight': 1, 'picnicked': 1, 'Antares': 1, 'Taught': 1, 'nymphs': 1, 'quickening': 1, 'equator': 1, 'discorporated': 1, 'Technician': 1, 'breathlessly': 1, 'Kiss': 1, 'Greatness': 1, 'serviettes': 1, 'swami': 1, 'yoga': 1, 'pranha': 1, 'chelas': 1, 'matsyendra': 1, 'Rig-Veda': 1, 'guru': 1, 'purses': 1, "Grandmothers'": 1, 'price-cutting': 1, 'Fosterite': 1, 'Miracle': 1, 'spot-promoted': 1, 'with-but-after': 1, 'Huey': 1, "L'Unita": 1, 'Hoy': 1, "Short's": 1, "l'Osservatore": 1, 'Romano': 1, 'Fosterites': 1, 'Eternity': 1, 'Popes': 1, 'requisition': 1, 'gripes': 1, "Digby's": 1, 'clinches': 1, 'BCD': 1, 'AD': 1, 'CB': 1, 'rock-steady': 1, 'Absent-minded': 1, 'personae': 1, 'barometric': 1, '573': 1, 'scriptural': 1, 'impresser': 1, 'creche': 1, "R.'s": 1, 'Swiftly': 1, 'contrary-to-reality': 1, 'lightyears': 1, 'lamechians': 1, 'lamechian': 1, 'pardons': 1, 'Urielites': 1, 'Israelites': 1, 'megalopolises': 1, 'Malay': 1, 'Icelandic': 1, 'Swahili': 1, 'Icelandic-speaking': 1, 'Lingo': 1, 'Hawaiian-Americans': 1, 'resettling': 1, 'French-Canadians': 1, 'Preserve': 1, 'dry-eyed': 1, 'unrealistically': 1, 'cremated': 1, 'welling': 1, 'rend': 1, "Hal's": 1, 'loose-jowled': 1, 'lopsidedly': 1, '99.1': 1, 'photon-counting': 1, 'actuate': 1, 'unthaw': 1, 'half-year': 1, 'wrongly': 1, "Earthmen's": 1, 'Ozagenians': 1, 'inflecting': 1, 'animate': 1, 'infinitive': 1, "dabhumaksanigalu'ahai": 1, "ksu'u'peli'afo": 1, "mai'teipa": 1, 'tenses': 1, 'genders': 1, 'neuter': 1, 'conjunctions': 1, 'value-judgments': 1, "Hesperus'": 1, 'galactic': 1, 'First-Born': 1, 'Recovering': 1, 'Visiting': 1, 'ratify': 1, 'codified': 1, 'sanest': 1, 'unreassuringly': 1, 'hegemony': 1, 'pentagon': 1, 'hove': 1, 'spacesuits': 1, 'unfurled': 1, 'numenous': 1, "comet's-tail": 1, 'light-year': 1, 'Fuming': 1, "skiff's": 1, 'nebula': 1, 'frighteningly': 1, 'Holies': 1, 'excised': 1, 'reinstall': 1, "instant's": 1, 't-tau': 1, 'hefted': 1, 'ground-level': 1, 'facsiport': 1, 'Galaxy': 1, 'swath': 1, 'asteroid': 1, 'infuriation': 1, 'planetoids': 1, 'Yancy-6': 1, 'Antarctica': 1, 'Ringing': 1, 'interjected': 1, 'Sonic': 1, 'encephalographic': 1, 'unfathomable': 1, 'mis-reading': 1, 'dials': 1, 'ambidextrous': 1, 'airlock': 1, 'lapel': 1, 'warm-blooded': 1, 'mammal': 1, 'seismological': 1, 'wart-hog': 1, 'creepy': 1, 'Dissect': 1, "Ekstrohm's": 1, 'blastdown': 1, 'Yancey-6': 1, '138': 1, 'Insects': 1, 'couches': 1, 'birthed': 1, 'fitfully': 1, 'dispell': 1, 'gritty-eyed': 1, 'shipmates': 1, 'Insomnia': 1, 'shipboard': 1, 'no-back': 1, 'repercussions': 1, 'pontifical': 1, 'sleeplessly': 1, 'burnt-red': 1, 'beasties': 1, 'veldt': 1, 'ExPe': 1, 'patsy': 1, 'Suspicion': 1, 'crabbed': 1, 'transferral': 1, 'synapses': 1, 'partnered': 1, 'side-effects': 1, 'bide': 1, 'shell-psychology': 1, 'rogue': 1, 'deformities': 1, 'well-oriented': 1, 'Stall': 1, 'Power-Seek': 1, 'ceteras': 1, 'sub-conscious-level': 1, 'do-good': 1, 'inhumanities': 1, 'shelled': 1, 'overridden': 1, 'absentmindedly': 1, 'diaphragms': 1, 'dulcet': 1, 'gurgle': 1, 'cratered': 1, 'madam': 1, 'Vocal': 1, 'intra-stellar': 1, 'unshelled': 1, 'sheered': 1, 'twittered': 1, "Master's": 1, 'unmagnified': 1, 'contrite': 1, 'monitor': 1, 'Tristan': 1, 'Isolde': 1, 'Candide': 1, 'Nozze': 1, 'Figaro': 1, 'Presley': 1, 'Venusians': 1, 'Capellan': 1, 'chromatics': 1, 'sonic': 1, 'concerti': 1, 'Altairians': 1, 'schooled': 1, 'Balanced': 1, 'nondefeatist': 1, 'by-passing': 1, 'enunciation': 1, 'sinuses': 1, 'felicitous': 1, 'unpleased': 1, 'unharmonious': 1, 'Acquiring': 1, 'mezzo': 1, 'avocation': 1, 'indestructible': 1, 'extendibles': 1, 'delicate-beyond-description': 1, 'taps': 1, 'anesthetically': 1, 'ambulatory': 1, 'activating': 1, 'scanners': 1, 'self-pitying': 1, 'two-nosed': 1, 'spacesuit': 1, 'many-bodied': 1, 'pinkly': 1, 'thicken': 1, 'companionable': 1, 'agonies': 1, 'hand-covered': 1, 'friendlily': 1, 'Formerly': 1, 'benign': 1, 'half-transparent': 1, 'eye-machine': 1, 'obviousness': 1, 'dummies': 1, 'decorticated': 1, 'lovelies': 1, 'Earth-weeks': 1, 'Earth-week': 1, 'well-read': 1, 'dromozootic': 1, 'implant': 1, 'senselessly': 1, 'child-face': 1, 'dabbed': 1, 'toe-tips': 1, 'teratologies': 1, 'nicest': 1, 'burned-out': 1, 'ground-truck': 1, 'threshed': 1, 'perplexity': 1, 'eighty-four': 1, 'cow-man': 1, 'cow-people': 1, 'kindliness': 1, 'commingled': 1, "B'dikkat's": 1, 'fickle': 1, 'Renfro': 1, 'angling': 1, 'frowzy': 1, 'greedily': 1, 'half-acre': 1, "Buckhorn's": 1, 'woebegone': 1, 'dejectedly': 1, 'Rafter': 1, 'best-looking': 1, 'innocents': 1, 'doc': 1, 'scissors': 1, 'savvy': 1, 'Rittenhouse': 1, 'Splendide': 1, 'croaks': 1, "'pache": 1, 'anythin': 1, 'driftin': 1, 'cinches': 1, 'looped': 1, 'somethin': 1, 'huskily': 1, 'untenanted': 1, 'palely': 1, 'gullies': 1, 'windless': 1, "Pettigrew's": 1, "Lester's": 1, "Cabot's": 1, 'Silas': 1, 'Pettigrew': 1, 'Thirty-six': 1, 'pennants': 1, "mare's": 1, 'Enfield': 1, 'cap-and-ball': 1, 'tunic': 1, 'gagged': 1, 'blustered': 1, 'unutterably': 1, 'sop': 1, 'slouch': 1, 'parried': 1, 'backlash': 1, 'tethers': 1, "fat's": 1, "sentry's": 1, 'Feds': 1, 'panted': 1, 'Favor': 1, 'whack': 1, 'whoop': 1, "stealin'": 1, 'half-clad': 1, 'canisters': 1, 'pallet': 1, 'Shouldering': 1, 'Snatching': 1, 'Powder': 1, 'floundered': 1, 'whipsawed': 1, 'crossbars': 1, 'hovered': 1, 'thudding': 1, 'mudwagon': 1, 'Gawdamighty': 1, 'Drag': 1, 'Hustle': 1, 'gash': 1, 'hobble': 1, "cap'n": 1, 'Dirion': 1, 'unruffled': 1, "fightin'": 1, 'Matt': 1, "hankerin'": 1, "talkin'": 1, 'Missy': 1, 'Crows': 1, 'Surprisingly': 1, "rev'rend": 1, 'stitched': 1, 'Wildly': 1, 'Buckets': 1, 'Coyotes': 1, 'whinny': 1, 'unconcernedly': 1, 'quivered': 1, 'clout': 1, 'corded': 1, 'Kill': 1, 'reorganizing': 1, 'sweetish': 1, 'new-spilled': 1, 'acrid': 1, 'stench': 1, "Canadian's": 1, 'shrilling': 1, 'hurdled': 1, 'melon': 1, 'wheeling': 1, 'Hawkinses': 1, 'dangle': 1, 'cud': 1, 'dark-skinned': 1, 'half-darkness': 1, 'flinching': 1, "pony's": 1, 'Sanchez': 1, 'thong': 1, 'prettiness': 1, 'browbeaten': 1, 'coyote': 1, 'scrubbed': 1, 'broken-down': 1, 'livable': 1, "Carwood's": 1, 'graze': 1, 'red-tailed': 1, 'Kelseyville': 1, 'false-fronted': 1, 'sunbaked': 1, 'Baldness': 1, 'pate': 1, 'affectation': 1, 'gob': 1, 'baldness': 1, 'tabloids': 1, 'dog-eared': 1, 'rearranging': 1, 'urinals': 1, 'fronted': 1, "ships'": 1, 'funnels': 1, 'winches': 1, "longshoremen's": 1, 'personage': 1, 'footfalls': 1, "director's": 1, 'green-tinted': 1, 'tapdance': 1, 'Begging': 1, 'hankered': 1, 'wellbeing': 1, 'Tie': 1, 'sneered': 1, 'guard-room': 1, 'pinochle': 1, 'half-reached': 1, "Rankin's": 1, 'wicket': 1, 'ghosted': 1, 'shedding': 1, 'butternut': 1, 'ex-prison': 1, 'starve': 1, 'killers': 1, 'auditor': 1, "syndicate's": 1, 'tirelessly': 1, 'Easterners': 1, 'Grass': 1, 'haulage': 1, 'petered': 1, 'half-straightened': 1, "Ayres'": 1, 'rougher': 1, 'hostage': 1, 'Burlingame': 1, 'Bloomfield': 1, 'Ione': 1, 'dwarfed': 1, 'seventy-five-foot': 1, 'tertiary': 1, "dollars'": 1, 'tornadoes': 1, 'deafened': 1, 'eardrums': 1, 'foothill': 1, 'mucker': 1, 'lidless': 1, "lizard's": 1, 'machinelike': 1, 'hi-graders': 1, 'cleanups': 1, 'tintype': 1, 'Folsom': 1, 'Sprite': 1, 'partaking': 1, 'felony': 1, 'Munroe': 1, 'desecrated': 1, 'unnameable': 1, 'Atonement': 1, 'atonement': 1, 'renunciation': 1, 'chirped': 1, 'dewy-eyed': 1, 'Culvers': 1, 'reawaken': 1, 'unenunciated': 1, 'darkling': 1, 'prowled': 1, 'unmotivated': 1, 'thrive': 1, 'beneficence': 1, 'tranquillity': 1, 'dimly-outlined': 1, 'scoffing': 1, 'Bushes': 1, 'detours': 1, 'unguided': 1, 'eclipsing': 1, 'drawbridge': 1, "Pamela's": 1, 'numbingly': 1, 'maliciously': 1, 'spasms': 1, 'mouldering': 1, 'dreamt': 1, 'unwholesome': 1, 'blouse': 1, 'nipples': 1, 'incubus': 1, 'foreclosing': 1, 'snared': 1, 'writhed': 1, 'ever-tightening': 1, 'wisps': 1, 'Twigs': 1, 'DeMontez': 1, 'a-tall': 1, 'Beaming': 1, 'idiotically': 1, 'pooched': 1, 'Shu-tt': 1, 'up-pp': 1, 'agreeably': 1, 'brainy': 1, "pleasin'": 1, "checkin'": 1, 'Looks': 1, 'Print': 1, 'cipher': 1, 'Aah': 1, 'Lips': 1, 'mournfully': 1, 'handmade': 1, 'absorber': 1, 'Permian': 1, 'six-dollar': 1, 'twenty-five-dollar': 1, 'ommission': 1, 'teensy': 1, 'yearningly': 1, 'limitless': 1, 'God-forsaken': 1, 'fine-chiseled': 1, 'gosh': 1, 'boot-wearer': 1, 'half-mincing': 1, 'yokels': 1, 'clowning': 1, "walkin'": 1, "seein'": 1, 'howsomever': 1, "probl'y": 1, 'sixty-five-mile': 1, "c'n": 1, 'danged': 1, 'rattler': 1, 'Looky': 1, 'wildcatter': 1, 'anyways': 1, 'baited': 1, 'Vs.': 1, 'Lakewood': 1, "snail's": 1, 'left-front': 1, 'mudguard': 1, 'tunelessly': 1, 'fine-drawn': 1, 'coiling': 1, 'accosting': 1, "t'": 1, 'see-lective': 1, 'Figger': 1, 'reddened': 1, 'swindled': 1, 'uh-huh': 1, "An'": 1, "workin'": 1, 'well-nigh': 1, 'Oil-field': 1, 'rough-tough': 1, 'knuckled': 1, 'huh-uh': 1, 'storefront': 1, 'uppercut': 1, 'gut-flattening': 1, 'willful': 1, 'unpunished': 1, 'scot-free': 1, 'Fear-maddened': 1, 'hoots': 1, 'law-unto-itself': 1, 'Hondo': 1, 'bedground': 1, 'Amado': 1, 'offsaddled': 1, 'remuda': 1, "coosie's": 1, 'brown-paper': 1, 'listless': 1, 'Mateo': 1, 'readying': 1, "Brannon's": 1, 'cookfire': 1, 'nagged': 1, 'Maguires': 1, 'vaquero': 1, "grownups'": 1, 'rider-fashion': 1, 'Senora': 1, 'senora': 1, 'glum': 1, 'fifteen-mile': 1, 'slickers': 1, 'ducking': 1, 'cantles': 1, 'gunplay': 1, "Luis's": 1, 'hell-raising': 1, 'Lighted': 1, 'jewel-bright': 1, 'box-sized': 1, 'corduroy': 1, 'sluicing': 1, "lawman's": 1, "Hogan's": 1, "Macklin's": 1, 'badge-toter': 1, 'beaded': 1, 'Resignedly': 1, 'oversized': 1, 'padlocked': 1, 'scarecrowish': 1, 'dismounting': 1, 'garbed': 1, 'tough-looking': 1, 'oaken': 1, 'Ansley': 1, 'all-knowing': 1, 'puff': 1, "shootin'": 1, 'far-off': 1, "bushwhackin'": 1, 'ghostlike': 1, "Lewis'": 1, "Stockgrowers'": 1, 'Natrona': 1, "scout's": 1, 'ten-day': 1, "'fore": 1, 'Publicly': 1, 'blood-chilling': 1, 'beef-hungry': 1, 'raided': 1, 'soddies': 1, 'foreclosed': 1, 'hisself': 1, 'Haying': 1, 'Harnessing': 1, 'willow-lined': 1, "rifleman's": 1, "Exterminatin'": 1, 'bushwhacked': 1, 'rustlers': 1, 'straight-out': 1, 'rodeo': 1, "s'posin'": 1, 'scairt': 1, "dry-gulchin'": 1, 'sunburnt': 1, 'rustler-hunter': 1, 'Apache': 1, 'spread-eagled': 1, "wrappin'": 1, "lettin'": 1, "killin'": 1, 'half-heartedly': 1, 'fallow': 1, 'explosively': 1, "reputation's": 1, 'Coble': 1, 'Bosler': 1, 'roundups': 1, 'rodeos': 1, 'waging': 1, 'lawless': 1, 'guitar-strumming': 1, 'minstrels': 1, 'reentered': 1, 'Vastly': 1, 'inkling': 1, "Eagle's": 1, 'Nest': 1, 'haystack': 1, "Adams's": 1, 'unfastened': 1, 'crunch': 1, 'sway-backed': 1, 'dun': 1, "Crouch's": 1, 'snuffed': 1, 'squeal': 1, 'Gruller': 1, 'two-by-four': 1, "Arbuckle's": 1, 'gunbarrel': 1, 'Pistol-whipping': 1, 'claw': 1, "drawin'": 1, 'outdrew': 1, 'gunslinger': 1, 'sneaks': 1, 'mid-section': 1, 'Pain': 1, 'crowbait': 1, 'shirtfront': 1, "buckskin's": 1, 'halter': 1, "Where're": 1, 'worriedly': 1, "Woods's": 1, "Burnsides'": 1, 'bravest': 1, 'Hap': 1, 'Eben': 1, 'summing': 1, 'haggle': 1, "two-bits'": 1, "duds'd": 1, 'purposefully': 1, 'bullet-riddled': 1, 'purpling': 1, "you's": 1, 'choring': 1, 'Slipping': 1, 'trail-worn': 1, 'sags': 1, 'careworn': 1, 'Harrows': 1, 'simples': 1, 'dished': 1, 'victuals': 1, 'gab': 1, 'nosebag': 1, 'Hoe-Down': 1, 'Reels': 1, 'Hallelujah': 1, 'Golly': 1, 'Methodists': 1, 'coltish': 1, 'Dare-Base': 1, 'Farmer-in-the-Dell': 1, 'handhold': 1, 'wrestles': 1, "'cept": 1, 'outgrip': 1, 'Heigh-ho': 1, 'dairy-oh': 1, "Harmony's": 1, 'unshed': 1, 'unselfishly': 1, 'siphoned': 1, 'dreamless': 1, "souls'": 1, 'a-gracious': 1, 'Shucks': 1, 'nearsightedly': 1, "rubbin'": 1, 'ticklebrush': 1, 'a-raising': 1, 'week-old': 1, 'honest-to-Betsy': 1, 'Rheumatics': 1, 'notched-stick': 1, "leg's": 1, "sun'll": 1, 'fry': 1, 'signboard': 1, 'Raft': 1, 'turnoff': 1, 'John-Henry': 1, "Rod's": 1, "'tain't": 1, "more'n": 1, 'unhook': 1, 'precipice-walled': 1, 'gorge': 1, "oxen's": 1, 'busier': 1, 'broncs': 1, "Gyp'll": 1, "holdin'": 1, 'Ganado': 1, "Cobb's": 1, 'Separating': 1, 'Miners': 1, 'plummeting': 1, 'stilts': 1, 'ornate': 1, "bird's": 1, 'canyonside': 1, 'Heading': 1, 'batwings': 1, 'perfunctorily': 1, 'bowstring': 1, 'Fierce': 1, 'Muffling': 1, 'Hitching': 1, 'Climbing': 1, 'revelry': 1, 'sleek-headed': 1, 'barkeep': 1, 'Halting': 1, 'wide-shouldered': 1, 'alertly': 1, 'ell': 1, 'upraised': 1, 'jab': 1, 'reeling': 1, 'groan': 1, 'Kneeling': 1, 'Complying': 1, 'half-a-dozen': 1, 'sweatband': 1, 'wads': 1, 'cache': 1, 'golly': 1, 'cowpuncher': 1, 'Handing': 1, 'pants-legs': 1, 'Glowering': 1, 'Colcord': 1, 'tartly': 1, 'dismayed': 1, "Stober's": 1, 'Ax': 1, 'Nearing': 1, 'Hauling': 1, 'Clapping': 1, 'canter': 1, 'clap': 1, 'Setting': 1, 'besieging': 1, 'Cursing': 1, 'unmolested': 1, 'Dismounting': 1, 'remounting': 1, 'Swinging': 1, 'stirrup-guard': 1, 'shirtsleeve': 1, 'Jumping': 1, 'Sweeping': 1, 'Recklessly': 1, 'Squadron': 1, 'Cricket': 1, 'Mindanao': 1, 'Cagayan': 1, 'kamikaze': 1, 'five-hundred': 1, 'Banjo': 1, 'revetments': 1, 'check-out': 1, 'Seton': 1, 'carabao': 1, 'trade-mark': 1, 'prearranged': 1, 'taxied': 1, 'chocks': 1, 'Samar': 1, 'A-26': 1, 'punched': 1, 'hundred-and-eighty-degree': 1, 'claustrophobia': 1, 'Visibility': 1, 'earphones': 1, 'glide-bombed': 1, 'Mercifully': 1, "Todman's": 1, 'bogies': 1, 'Zeros': 1, 'Identification': 1, 'Zero': 1, 'tactically': 1, 'maneuverability': 1, 'firepower': 1, 'deviating': 1, 'airspeed': 1, 'Suns': 1, 'pinpoints': 1, 'break-away': 1, 'tight-turn': 1, 'RPM': 1, 'wingman': 1, 'closure': 1, 'half-gainer': 1, 'Blind': 1, "Jap's": 1, 'cowling': 1, 'Wingman': 1, 'rudder': 1, 'vertigo': 1, 'fenders': 1, 'smashed-out': 1, 'mustering': 1, 'chuffing': 1, 'scarcely-tapped': 1, 'gauche': 1, 'Autos': 1, 'White-shirted': 1, 'conservatively-cravated': 1, 'tootley-toot-tootled': 1, 'thumbing': 1, 'Mor-ee-air-teeeee': 1, 'counterpointing': 1, 'rapidly-diminishing': 1, "Herry's": 1, 'brushcut': 1, 'enviably': 1, 'delicately-textured': 1, 'tinted': 1, 'sagebrush': 1, 'yucca': 1, 'foregone': 1, 'sweltering': 1, 'listlessly': 1, 'thumbed': 1, 'Sahjunt': 1, 'Yoorick': 1, 'gunner': 1, 'Squeezing': 1, 'darkhaired': 1, 'drahve': 1, 'Onleh': 1, 'thiihng': 1, 'Ahm': 1, 'nawth': 1, "t'jawn": 1, 'husbun': 1, "y'all": 1, 'maht': 1, 'prefuh': 1, 'suhthuhn': 1, 'rewt': 1, 'alreadeh': 1, 'diffrunce': 1, "t'hi-im": 1, 'wonduh': 1, 'wahtahm': 1, 'ee-faket': 1, 'kittenish': 1, 'Howsabout': 1, 'Co-cola': 1, 'younguh': 1, 'bawhs': 1, "t'lah": 1, 'lahk': 1, 'befoh': 1, 'foh': 1, 'academeh': 1, 'wuh': 1, 'dack-rihs': 1, 'vuhranduh': 1, 'hev': 1, "p'lite": 1, 'cohnfidunt': 1, 'coahse': 1, "cain't": 1, 'Whah': 1, 'nawt': 1, 'coudn': 1, 'ansuh': 1, 'gay-ess': 1, 'fathuh': 1, 'uttuh': 1, 'wohd': 1, 'aftuh': 1, 'majuh': 1, "t'gethuh": 1, "f'ovuh": 1, 'behahn': 1, 'doan': 1, "thet's": 1, 'nahce': 1, "d'you": 1, 'Taos': 1, 'eventshahleh': 1, 'eventshah-leh': 1, 're-echo': 1, "Moriarty's": 1, 'dust-swirling': 1, 'shards': 1, 'unwired': 1, 'loosely-taped': 1, 'side-rack': 1, 'western-style': 1, 'flying-mount': 1, 'slivery': 1, "truck's": 1, 'glassless': 1, 'pearly': 1, 'anteater': 1, 'Bueno': 1, 'gesticulating': 1, 'sideboards': 1, 'hovering': 1, 'whitening': 1, 'geysering': 1, 'luckily': 1, 'Emptied': 1, 'Teeth': 1, 'jabs': 1, 'harmlessly': 1, 'Aye-yah-ah-ah': 1, 'splintery': 1, 'clod': 1, 'soft-looking': 1, 'pebble': 1, 'unwire': 1, 'cotter': 1, 'screech': 1, 'S-s-sahjunt': 1, 'self-proclaimed': 1, 'froth': 1, 'shrieking': 1, 'disturbingly': 1, 'Relax': 1, 'wobbling': 1, 'yelped': 1, 'seventeen-inch': 1, 'swimsuit': 1, 'peddled': 1, 'Veterinary': 1, 'repositories': 1, 'soapsuds': 1, 'cavorted': 1, 'longshot': 1, 'shrubbery': 1, 'upcoming': 1, 'documentary-type': 1, "sponsor's": 1, 'dandily': 1, 'worth-waiting-for': 1, 'Itch': 1, 'Mmmm': 1, 'itches': 1, 'doggone': 1, 'Softly': 1, 'Warmly': 1, 'hot-honey': 1, 'swarms': 1, 'Lights': 1, 'shrubbery-lined': 1, 'limp-looking': 1, 'dichondra': 1, 'filming': 1, 'gunk': 1, 'once-over-lightly': 1, 'Accident': 1, 'pool-equipment': 1, 'stymied': 1, 'everlastingly': 1, 'adventuring': 1, 'bodied': 1, 'suffuse': 1, 'circumspectly': 1, 'surreptitious': 1, 'appreciates': 1, 'fixations': 1, 'indisposition': 1, 'give-away': 1, 'cavernous': 1, 'humid': 1, 'opportune': 1, 'horsehair': 1, 'napped': 1, 'bear-like': 1, 'suspecting': 1, 'incredulously': 1, 'corkers': 1, 'Ponchartrain': 1, 'appraisingly': 1, 'jalopy': 1, 'two-timing': 1, 'Dactyls': 1, "Rhea's": 1, "Wilder's": 1, 'Squaresville': 1, 'palazzos': 1, 'Palasts': 1, 'Wilder': 1, 'dactyls': 1, 'Holderlin': 1, 'Sie': 1, 'lacheln': 1, 'Schwarzen': 1, 'Hexen': 1, 'beers': 1, 'meek': 1, 'conjugation': 1, 'gimme': 1, "Munich's": 1, 'Lerner': 1, 'fawn': 1, "Nicolas's": 1, "Harry's": 1, 'foundling': 1, 'tedium': 1, 'Chrissake': 1, "Grafin's": 1, 'erotically': 1, 'glamorize': 1, "Jane's": 1, 'badinage': 1, 'coolnesses': 1, 'veal': 1, 'cutlets': 1, 'compote': 1, 'triplet': 1, 'calfskin': 1, 'Opening': 1, 'schnapps': 1, 'thimble-sized': 1, 'tipple': 1, 'poppyseed': 1, 'Y.M.H.A.': 1, 'Bleaching': 1, 'wincing': 1, 'Kissing': 1, 'stolid': 1, 'Molten': 1, 'singed': 1, 'high-stepped': 1, 'goad': 1, 'Hoa-whup': 1, 'rivulets': 1, 'dust-thick': 1, 'balled': 1, 'sweat-soaked': 1, 'salt-edged': 1, 'unlashed': 1, 'cleansed': 1, 'baleful': 1, 'kerchief': 1, 'smolderingly': 1, 'pathless': 1, 'crudity': 1, 'semitrance': 1, 'sidewinder': 1, 'calloused': 1, 'sharecrop': 1, 'puzzlement': 1, 'sharp-limbed': 1, 'funnel': 1, 'Frozen': 1, 'marrowbones': 1, 'six-ton': 1, 'Walls': 1, 'hollows': 1, 'jetting': 1, 'thinned': 1, 'haggardly': 1, 'half-swamped': 1, 'renewing': 1, 'floodheads': 1, 'speared': 1, 'up-jutting': 1, "Ben's": 1, 'half-swimming': 1, 'sputtered': 1, 'match-width': 1, 'chunky': 1, 'messes': 1, 'jellies': 1, 'frizzling': 1, 'java': 1, 'furled': 1, 'tarpaulins': 1, 'spoilables': 1, 'tinder': 1, 'firebug': 1, 'Lascar': 1, 'lifeboats': 1, 'stoker': 1, 'tongued': 1, 'shark-infested': 1, 'Lifeboat': 1, 'davits': 1, 'Heave': 1, "boat's": 1, 'unstuck': 1, 'spavined': 1, 'black-and-orange': 1, 'inferno': 1, 'Bismark': 1, 'Archipelago': 1, 'Rennell': 1, 'Anthropology': 1, 'archipelago': 1, 'amazons': 1, 'all-female': 1, 'matriarchal': 1, 'guffaws': 1, 'exploiting': 1, 'amatory': 1, 'Lukuklu': 1, 'propitiate': 1, "bo'sun's": 1, 'quavered': 1, 'Tchalo': 1, 'comport': 1, 'bogeymen': 1, 'Aaa-ee': 1, 'Rabaul': 1, 'bronzed': 1, 'tongue-tied': 1, 'mustered': 1, 'ngandlu': 1, 'prow': 1, 'garland': 1, 'pandanus': 1, 'Ponkob': 1, 'Piwen': 1, 'coral': 1, 'maggoty': 1, 'septum': 1, 'topmost': 1, 'divining': 1, 'aku': 1, 'pokeneu': 1, 'queasiness': 1, 'Taui': 1, 'brokenly': 1, 'eromonga': 1, 'derisively': 1, 'kava': 1, 'drooping': 1, 'conversing': 1, 'Scobee-Frazier': 1, 'Expedition': 1, 'Manitoba': 1, 'inter-tribal': 1, 'rallied': 1, 'Pamasu': 1, 'feminist': 1, 'betel-stained': 1, "Karipo's": 1, 'squalid': 1, 'semi-circle': 1, 'squaw': 1, 'dislodged': 1, 'Nope': 1, 'checker': 1, 'far-away': 1, 'floppy': 1, 'shredded': 1, 'joyfully': 1, 'ex-truck': 1, 'outlandish': 1, 'Crumley': 1, 'towed': 1, 'Slender': 1, 'grimed': 1, 'diesel': 1, 'alleys': 1, 'blonde-haired': 1, 'courtliness': 1, 'levi-clad': 1, 'half-off': 1, 'laces': 1, 'eyelets': 1, 'blonde-headed': 1, 'Coca-Cola': 1, "Benson's": 1, 'blood-flecked': 1, 'light-headedness': 1, 'once-in-a-lifetime': 1, 'cheekbone': 1, 'gesturing': 1, 'ruddiness': 1, "patrolman's": 1, 'smoky': 1, 'horned': 1, 'Mough': 1, 'mough': 1, 'bungalow': 1, 'reciprocate': 1, 'harsher': 1, 'roach': 1, 'Ahmiri': 1, 'invader': 1, 'sulking': 1, 'tableland': 1, 'pinnacles': 1, 'glaciers': 1, 'rockstrewn': 1, 'sky-carving': 1, 'massifs': 1, 'Gurla': 1, 'Mandhata': 1, 'Kemchenjunga': 1, 'curling': 1, 'Khasi': 1, 'Sirinjani': 1, 'Madaripur': 1, 'mingles': 1, 'meld': 1, 'teeming': 1, 'untracked': 1, 'lords': 1, 'Wing': 1, 'Commanders': 1, 'swastika': 1, 'bombed': 1, 'retaliated': 1, 'unsurmountable': 1, 'frightfully': 1, 'WAC': 1, 'bull-like': 1, 'rapier': 1, 'bicep': 1, 'greying': 1, 'beauty-idiom': 1, 'twittering': 1, 'WACS': 1, 'eagles': 1, 'hand-holding': 1, 'harry': 1, 'turtlebacks': 1, 'farmer-type': 1, 'London-bred': 1, 'Shillong': 1, 'sladang': 1, 'leopards': 1, 'sambur': 1, 'elk': 1, 'loners': 1, 'babyhood': 1, 'keddah': 1, 'marvelled': 1, 'traversing': 1, 'cheetal': 1, 'woodland': 1, 'Peacocks': 1, 'preening': 1, 'boar': 1, 'fathoms': 1, 'triple-tank': 1, 'Temper': 1, 'irreparably': 1, 'tonic': 1, 'loused': 1, 'stonily': 1, 'muscle-bound': 1, 'bird-brain': 1, 'damnit': 1, 'Pressure-happy': 1, 'crewcut': 1, 'heavy-framed': 1, 'narcosis': 1, 'diver': 1, "Rob's": 1, 'natty': 1, 'flannels': 1, 'fifty-dollar': 1, 'impassively': 1, 'skipper': 1, 'compactly': 1, "Rommel's": 1, 'Afrika': 1, 'Aloud': 1, 'Shaffner': 1, 'guile': 1, 'necessaries': 1, 'byline': 1, "German's": 1, 'distributorship': 1, 'sloshed': 1, 'gulps': 1, 'altruistically': 1, 'big-business': 1, 'Folding': 1, 'decompression': 1, 'rubbery': 1, 'leafiest': 1, 'bred': 1, 'self-dictate': 1, 'Whichever': 1, 'urn': 1, 'loin': 1, 'Gloom': 1, 'phosphorescent': 1, 'sling': 1, 'steadiness': 1, 'wooooosh': 1, 'flame-throwers': 1, 'squirting': 1, 'billows': 1, 'Nagamo': 1, 'char': 1, 'unburned': 1, 'retching': 1, 'reeking': 1, 'Apprehensively': 1, 'leafy': 1, 'vine-crisscrossed': 1, 'deploying': 1, 'Cautious': 1, 'leafmold': 1, 'slings': 1, 'Humiliation': 1, 'whiplashes': 1, 'passiveness': 1, 'vied': 1, 'Reflex': 1, 'snakestrike': 1, 'collarbone': 1, 'Maintaining': 1, 'rummaging': 1, 'tinplated': 1, 'flintless': 1, 'squeaking': 1, 'propping': 1, 'freshened': 1, 'perspired': 1, 'giggle': 1, 'unwounded': 1, 'winehead': 1, 'uncap': 1, 'squealing': 1, 'Popping': 1, 'broil': 1, 'quivers': 1, 'smudged': 1, 'blood-specked': 1, 'Chairs': 1, 'beardless': 1, 'a-drinking': 1, 'gunfighter': 1, 'careening': 1, 'doused': 1, 'henchman': 1, 'brawl': 1, 'collosal': 1, 'critter': 1, 'Boot': 1, 'six-shooter': 1, 'gun-slinger': 1, 'liquor-crazed': 1, 'desperadoes': 1, 'law-abiding': 1, "Kaster's": 1, "barber's": 1, 'splinters': 1, 'hair-raising': 1, "smash-'em-down": 1, 'two-fisted': 1, 'gunfights': 1, 'gun-slinging': 1, 'badmen': 1, 'ham-like': 1, 'daylights': 1, 'hero-worship': 1, 'action-packed': 1, 'taming': 1, 'mobsters': 1, 'sideline': 1, "Doolin's": 1, 'Guthrie': 1, "Dunn's": 1, 'tiered': 1, 'muzzles': 1, 'backside': 1, "Jed's": 1, 'homestead': 1, 'Resisting': 1, 'flng': 1, 'death-trap': 1, 'unwaveringly': 1, 'warmup': 1, 'Leisurely': 1, 'fifty-year': 1, "Murphy's": 1, 'pimpled': 1, 'catlike': 1, 'blue-eyes': 1, 'buxom': 1, 'budding': 1, 'womanhood': 1, 'afire': 1, 'litle': 1, 'inasmuch': 1, 'OK.': 1, 'Lever': 1, 'Whaddya': 1, 'Dixie': 1, 'lapsing': 1, "how'd": 1, 'figgered': 1, "doin'": 1, 'Branchville': 1, 'ownself': 1, 'wonderingly': 1, 'low-heeled': 1, 'jingling': 1, 'five-and-dime': 1, 'straggled': 1, 'sixth-grade': 1, 'noontime': 1, "playin'": 1, 'well-house': 1, 'druther': 1, 'Goody': 1, 'goody': 1, "Allen's": 1, 'three-room': 1, 'tarpapered': 1, 'erasers': 1, 'paperwads': 1, 'face-to-wall': 1, 'stampeded': 1, 'docilely': 1, 'munched': 1, "mulatto's": 1, 'hypnotic': 1, 'Lithe': 1, 'well-molded': 1, 'hawk-faced': 1, 'No-Name': 1, 'incoherently': 1, 'gyration': 1, 'Haitian': 1, 'pace-setter': 1, 'horsewoman': 1, 'sadist': 1, 'perpetrator': 1, 'stomping': 1, 'allure': 1, "girls'": 1, 'liaisons': 1, 'boathouses': 1, 'avidity': 1, 'doubloon': 1, 'emanated': 1, 'missy': 1, 'propelled': 1, 'Lifting': 1, 'coiled': 1, 'luxuriosly-upholstered': 1, 'landau': 1, 'inductees': 1, 'Satisfied': 1, 'gambits': 1, 'liveried': 1, 'proprietory': 1, 'chamois': 1, "Louis'": 1, 'bleedings': 1, 'Leone': 1, 'well-brushed': 1, 'cowering': 1, 'pint-sized': 1, 'myopic': 1, 'blurry': 1, 'flee': 1, "Lalauries'": 1, 'drudgery': 1, 'trustingly': 1, 'Airless': 1, 'svelte': 1, 'wealthiest': 1, 'stringed': 1, 'waltz': 1, 'loincloth': 1, 'quaking': 1, "lad's": 1, 'welts': 1, 'Feebly': 1, 'Convulsively': 1, 'Berche': 1, 'crimsoning': 1, 'frilly': 1, 'waistcoat': 1, 'parquet': 1, 'sheeted': 1, 'daubed': 1, 'Ruffians': 1, "slave's": 1, "Dandy's": 1, 'adjudged': 1, 'soirees': 1, 'abated': 1, "Lalaurie's": 1, 'Dominique': 1, 'octoroon': 1, 'cameo-like': 1, 'slashes': 1, 'sibilant': 1, 'hacksaw': 1, 'Vivaldi': 1, 'clobbered': 1, 'Embarcadero': 1, 'sucker-rolling': 1, 'freight-jumper': 1, 'lonelier': 1, 'cannonball': 1, 'poshest': 1, "askin'": 1, 'conning': 1, 'freights': 1, 'hooch': 1, 'sacks': 1, 'tinning': 1, 'ocarina': 1, 'trilled': 1, 'tune-belly': 1, 'gratingly': 1, 'pfffted': 1, 'Hair': 1, 'morning-frightened': 1, "sparrow's": 1, 'swanlike': 1, 'Zingggg-O': 1, 'straight-armed': 1, 'Curly': 1, 'gnomelike': 1, "drummer's": 1, 'Ah-ah': 1, 'offal': 1, 'slatted': 1, 'kazoo': 1, 'tugging': 1, 'Oooo': 1, 'Outsville': 1, "freight's": 1, 'vibrating': 1, 'eloped': 1, 'pickins': 1, 'freight-bums': 1, 'savor': 1, 'leavings': 1, 'ex-jazz': 1, 'wolfishly': 1, 'chided': 1, 'scissoring': 1, "grabbin'": 1, 'doped': 1, 'Slug': 1, "rockin'": 1, 'Hmm': 1, 'diddle': 1, 'wallowed': 1, 'clanking': 1, 'Philly': 1, 'Joviality': 1, "Cargill's": 1, "Whyn't": 1, 'ex-musician': 1, 'refuse-littered': 1, 'many-times': 1, 'slightly-smoking': 1, 'brazier': 1, 'Fan': 1, "what're": 1, 'Charcoal': 1, 'Fella': 1, 'waggled': 1, "ever-lovin'": 1, 'wieners': 1, 'cellophane': 1, 'sizzle': 1, "Kroger's": 1, 'self-serve': 1, 'self-served': 1, "wieners'": 1, "Cappy's": 1, 'woulda': 1, "Ernie's": 1, 'bumming': 1, 'Pull': 1, 'lucy': 1, 'grizzly': 1, 'guzzled': 1, 'home-blend': 1, 'clincher': 1, 'girlie': 1, 'thwump': 1, "footballer's": 1, 'Aaawww': 1, 'switchblade': 1, 'snick': 1, 'fisted': 1, 'insanely': 1, 'repetitive': 1, 'fly-dotted': 1, 'cheesecloth': 1, 'Signore': 1, 'fur-piece': 1, 'satin-covered': 1, 'buttocks': 1, 'Henh': 1, 'Calloused': 1, 'tweezed': 1, 'Mauve-colored': 1, 'Puttana': 1, 'suppleness': 1, 'shooing': 1, 'sundials': 1, 'variegated': 1, 'Chieti': 1, 'ginkgo': 1, 'manure-scented': 1, 'rusted': 1, 'stable-garage': 1, 'reeked': 1, 'grating': 1, "Bartoli's": 1, 'second-story': 1, 'showroom': 1, 'alleyways': 1, 'tunneled': 1, 'courtyards': 1, 'white-columned': 1, 'eight-thirty': 1, 'pales': 1, 'harshness': 1, 'daydreaming': 1, 'wetness': 1, 'feasting': 1, 'sallow': 1, 'time-cast': 1, 'marbleized': 1, 'unfalteringly': 1, 'Soothing': 1, 'whiskered': 1, 'undulated': 1, 'squirted': 1, 'bagpipe': 1, 'delighting': 1, 'soutane': 1, 'ocher': 1, "Pompeii's": 1, 'Niobe': 1, 'neatest': 1, 'Concetta': 1, "Romeo's": 1, 'rotundity': 1, 'quench': 1, 'flaxen': 1, 'rages': 1, 'peaches': 1, 'Worry': 1, 'pored': 1, 'nuzzled': 1, "Best's": 1, 'Liliputian': 1, 'jotting': 1, 'playroom': 1, 'harshened': 1, 'bumptious': 1, 'open-handed': 1, 'Abernathys': 1, 'fireplaces': 1, 'stormbound': 1, 'shipwrecked': 1, 'anxieties': 1, 'swabbed': 1, 'bathrooms': 1, 'groaning': 1, 'wallow': 1, "Hope's": 1, 'Thrifty': 1, 'Unusual': 1, "Brace's": 1, 'Labans': 1, 'valiant': 1, 'log-house': 1, 'asunder': 1, 'Absolution': 1, 'pigeonhole': 1, 'deception': 1, 'lacerate': 1, 'pyre': 1, 'feathery': 1, 'gathers': 1, 'grandsons': 1, 'thimble': 1, 'easygoing': 1, 'Howdy': 1, 'P.GA': 1, "C'un": 1, 'plain-out': 1, 'carte': 1, 'blanche': 1, "Robards'": 1, 'mares': 1, 'geldings': 1, 'what-nots': 1, "Racin'": 1, 'oneasy': 1, "sor'l": 1, "musn't": 1, 'foals': 1, 'midwife': 1, "Jenny's": 1, 'quarts': 1, 'liniment': 1, 'bran': 1, 'mash': 1, 'charlotte': 1, 'russe': 1, 'jiffy': 1, "trippin'": 1, "ever'": 1, 'Rhyme': 1, 'Arcilla': 1, 'Flotilla': 1, 'Edmonia': 1, 'Jennifer': 1, 'Kezziah': 1, "this'll": 1, 'boy-name': 1, "Mare's": 1, 'Handsomest': 1, 'Rakestraw': 1, 'Spa': 1, 'snippy': 1, 'teething': 1, "Tillie's": 1, 'to-do': 1, 'dollies': 1, 'spa': 1, 'nigs': 1, "ever'body": 1, 'dang': 1, 'oystchers': 1, "bar'l": 1, "oystchers'll": 1, 'perk': 1, "Roy's": 1, 'Eph': 1, 'Showers': 1, 'purtiest': 1, 'absolution': 1, 'garnet': 1, "Hetty's": 1, 'Maneret': 1, 'Craddock': 1, 'wand': 1, 'teas': 1, 'fetes': 1, 'colloquy': 1, 'wildness': 1, 'rosebush': 1, 'thorns': 1, 'dewdrops': 1, 'nondescriptly': 1, 'femme': 1, "d'un": 1, 'unbelievably': 1, 'bun': 1, 'william': 1, 'bedstraw': 1, 'grasses': 1, 'gleefully': 1, 'prayerful': 1, 'forepaws': 1, 'slumbered': 1, 'frankest': 1, 'princess-in-a-carriage': 1, 'acknowledgments': 1, 'sap': 1, "Summer's": 1, "soon's": 1, 'soldierly': 1, "f'r": 1, 'womanly': 1, 'Rests': 1, 'pacifies': 1, 'Blackwells': 1, 'mariner': 1, 'fishing-boat': 1, "leavin'": 1, 'connivance': 1, "Cotter's": 1, 'big-boned': 1, 'drab-haired': 1, "gran'dad": 1, "Y'r": 1, "dam'": 1, 'porridge': 1, 'sops': 1, 'lowly': 1, 'piously': 1, "Blackwell's": 1, 'somewheres': 1, 'Delia': 1, 'mightily': 1, 'buffeted': 1, 'gabble': 1, 'clawing': 1, 'headstones': 1, 'Tredding': 1, 'sea-damp': 1, 'indecipherable': 1, 'rock-carved': 1, 'Prefecture': 1, 'Honshu': 1, 'Ainu': 1, 'Ainus': 1, 'Caucasian': 1, 'subsist': 1, 'Akita': 1, 'prefectures': 1, 'honey-in-the-sun': 1, 'tint': 1, 'willowy': 1, 'forebears': 1, 'Bremerton': 1, 'Lakes': 1, 'six-month': 1, "Fleet's": 1, 'fifty-fifty': 1, 'Harro': 1, 'girl-san': 1, 'catchee': 1, 'boy-furiendo': 1, 'likee': 1, 'nice-looking': 1, 'blush': 1, 'fly-boy': 1, "nurses'": 1, 'brunettes': 1, 'waitresses': 1, 'Yuki': 1, 'Kobayashi': 1, 'Bifutek-san': 1, 'Kohi': 1, 'Futotsu': 1, 'whitehaired': 1, "Tommy's": 1, 'Nurse': 1, 'after-duty': 1, 'put-upon': 1, 'indigestion': 1, 'bicarbonate': 1, 'Oyajima': 1, 'kimono': 1, 'kotowaza': 1, 'Tanin': 1, 'yori': 1, 'miuchi': 1, 'Relatives': 1, "Doolittle's": 1, 'Appleby': 1, 'indoctrination': 1, 'slaughtering': 1, 'Bustard': 1, 'McCafferty': 1, 'Gresham': 1, 'commissary': 1, 'gangway': 1, 'frog': 1, "Buzz's": 1, 'Wow': 1, 'Strippers': 1, 'scrumptious': 1, 'all-lesbian': 1, 'Willows': 1, 'Tough': 1, 'instigator': 1, 'Ahah': 1, 'semi-professionally': 1, 'sparkled': 1, 'Smug': 1, 'sappy': 1, 'sickly-tolerant': 1, 'canvassing': 1, 'Forebearing': 1, "strangers'": 1, 'hundred-and-fifty': 1, 'overexcited': 1, 'bibles': 1, 'waspishly': 1, 'heatedly': 1, 'bucking-up': 1, 'crestfallen': 1, 'indecisively': 1, 'Collector': 1, 'Truckee': 1, 'spangle': 1, 'mural': 1, 'Donner': 1, 'heavily-upholstered': 1, 'bested': 1, 'dried-up': 1, 'martingale': 1, 'hit-and-miss': 1, 'five-seventeen': 1, "roulette's": 1, 'Bar-H': 1, 'single-foot': 1, 'Washoe': 1, 'pinto': 1, 'jinx': 1, 'keno': 1, 'shill': 1, 'shills': 1, 'floorshow': 1, 'schoolgirls': 1, 'chuck-a-luck': 1, 'sun-tan': 1, 'Cal-Neva': 1, 'instigating': 1, 'stickman': 1, 'crossroading': 1, 'sun-suit': 1, 'propositioned': 1, 'Stake': 1, 'Gisele': 1, 'Sylphide': 1, 'cold-bloodedly': 1, 'Hostile': 1, "Captain's": 1, 'mutineer': 1, 'wild-eyed': 1, 'holystones': 1, 'souvenirs': 1, 'battle-ax': 1, 'well-organized': 1, 'questioningly': 1, 'weather-royal': 1, 'insolently': 1, 'brig': 1, 'villainous': 1, 'omniscient': 1, 'Implements': 1, 'eighteen-year-old': 1, "egotist's": 1, 'Stern-faced': 1, 'thick-skulled': 1, 'hazel': 1, "Cromwell's": 1, 'wardroom': 1, 'Torah': 1, 'Bits': 1, 'warmish': 1, 'pinkish-white': 1, 'long-sleeved': 1, 'pivoting': 1, 'discolored': 1, 'unclasping': 1, 'bare-armed': 1, 'Rapping': 1, 'upturned': 1, 'ringlets': 1, 'yellowed': 1, 'prayerbooks': 1, 'curls': 1, 'singsonged': 1, 'off-key': 1, 'clucked': 1, 'Shabbat': 1, 'prickly': 1, 'pruta': 1, 'Sabras': 1, 'kibbutzim': 1, 'Aliah': 1, 'Ready': 1, "Me'a": 1, "She'arim": 1, 'anyplace': 1, 'cobblestones': 1, 'numerals': 1, 'Mandate': 1, 'Forked': 1, 'Ethiopians': 1, 'unfrosted': 1, 'streetlight': 1, 'hopscotch': 1, 'pinging': 1, 'feelers': 1, 'overhearing': 1, 'Mattie': 1, 'Toonker': 1, 'Burkette': 1, 'yanking': 1, 'parachute': 1, 'Starkey': 1, 'tramp': 1, 'mild-voiced': 1, 'little-town': 1, 'big-town': 1, 'Houdini': 1, 'chump': 1, 'too-shiny': 1, 'dawns': 1, "Shafer's": 1, 'whitewashed': 1, 'Homes': 1, 'spellbound': 1, 'rehearsing': 1, 'bumps': 1, 'rippled': 1, "rat's": 1, 'Factory-to-You': 1, 'unventilated': 1, 'primping': 1, 'boxed-in': 1, 'whichever-the-hell': 1, 'six-thirty': 1, 'eight-by-ten': 1, "jeweler's": 1, 'Magpie': 1, 'fifteenth-century': 1, 'ferreted': 1, 'linden': 1, 'Rufus': 1, 'researches': 1, 'haircuts': 1, 'Fauntleroy': 1, 'nearsighted': 1, 'sleepwalker': 1, 'Prussian': 1, 'Attending': 1, "Askington's": 1, 'illustrator': 1, 'Viyella': 1, 'bolo': 1, 'jade': 1, "Brush-off's": 1, 'illustrators': 1, 'Velasquez': 1, 'Modigliani': 1, 'Miro': 1, 'Mantegna': 1, 'philharmonic': 1, 'photorealism': 1, 'five-hundred-dollar': 1, 'Hajime': 1, 'Iijima': 1, 'Osric': 1, 'retrospective': 1, "Cezanne's": 1, "Thoreau's": 1, 'hangouts': 1, 'goldsmith': 1, 'carver': 1, 'satirist': 1, 'tooth-paste': 1, 'fluff': 1, 'upshot': 1, "Pendleton's": 1, 'Brush-off': 1, 'mailman': 1, 'Stimulating': 1, 'half-murmured': 1, 'parboiled': 1, 'Thaxters': 1, 'movie-to-be': 1, 'grooved': 1, 'sun-warmed': 1, 'palisades': 1, 'unsee': 1, 'turnaround': 1, 'Engisch': 1, 'portfolio': 1, "Salter's": 1, 'Constance': 1, 'moontrack': 1, 'Sonny': 1, 'unquenched': 1, 'scapegoat': 1, 'rankles': 1, 'overplayed': 1, "Mathias'": 1, 'makeshifts': 1, 'pettiness': 1, 'cremate': 1, 'trestles': 1, 'hearse': 1, 'chapel-like': 1, 'eyelid': 1, 'convivial': 1, 'Umm': 1, 'uhhu': 1, 'Kleenex': 1, 'flatter': 1, 'Caneli': 1, 'dwelt': 1, 'thin-soled': 1, 'dark-gray': 1, 'fawn-colored': 1, 'tweedy': 1, 'dark-blue': 1, 'Parioli': 1, 'loafed': 1, 'Veneto': 1, 'Farneses': 1, 'drowsily': 1, 'Sistine': 1, 'wearied': 1, 'Ciao': 1, "'ello": 1, 'encouragingly': 1, 'Regretfully': 1, 'Nodding': 1, 'Devout': 1, 'flageolet': 1, 'unhesitant': 1, 'eyeballs': 1, 'Elsewhere': 1, 'imperious': 1, 'overloud': 1, 'Telling': 1, 'unsheathing': 1, 'curing': 1, "helsq'iyokom": 1, 'mingling': 1, 'bullhide': 1, 'flog': 1, 'double-married': 1, 'mumbling': 1, 'Lie': 1, 'gnarled': 1, 'talons': 1, 'delineaments': 1, 'tracings': 1, 'refracted': 1, 'unnnt': 1, 'Sssshoo': 1, "whip's": 1, 'unbent': 1, 'glorying': 1, 'mastiff': 1, 'ranted': 1, 'grandly': 1, 'attis': 1, 'skeletons': 1, 'paxam': 1, 'arrowheads': 1, 'Swan': 1, 'Necklace': 1, 'timidly': 1, 'chemistries': 1, 'fermenting': 1, 'Alokut': 1, 'frenziedly': 1, 'regalia': 1, 'leggings': 1, 'envenomed': 1, 'hilltops': 1, 'caper': 1, 'amulets': 1, 'bellicosity': 1, 'Appaloosas': 1, 'multicolored': 1, 'cacophony': 1, 'thousand-legged': 1, 'hemlocks': 1, 'birch': 1, 'short-cut': 1, 'frogs': 1, 'lower-cut': 1, 'coursing': 1, 'blood-soaked': 1, 'tidiness': 1, 'Poldowski': 1, 'effete': 1, 'shoelaces': 1, 'absurdly': 1, 'gauze': 1, 'detained': 1, 'freakish': 1, 'cavern': 1, 'blazer': 1, "Pietro's": 1, 'implausibly': 1, 'Ardmore': 1, 'Carrie': 1, 'purposeless': 1, 'Abruptly': 1, 'intoxicated': 1, 'pinch-hit': 1, 'bribe': 1, 'flyaway': 1, 'jollying': 1, 'Upstairs': 1, 'showering': 1, 'raindrops': 1, 'pattered': 1, 'prudent': 1, 'child-cloud': 1, 'forever-Cathy': 1, 'moon-washed': 1, 'muddling': 1, 'clattering': 1, 'shape-up': 1, 'outsized': 1, 'armload': 1, 'Scrooge-like': 1, "cousins'": 1, "Cathy's": 1, 'Lilliputian': 1, 'flower-scented': 1, 'chillier': 1, 'raffish': 1, 'vestments': 1, 'hangers': 1, 'panicky': 1, 'napping': 1, 'Subdued': 1, 'merriest': 1, 'voiceless': 1, 'Puzzled': 1, 'moth': 1, 'seekingly': 1, 'uncoiling': 1, 'to-and-fro': 1, "hall's": 1, 'purple-black': 1, "cowbirds'": 1, 'Cowbird': 1, "aunt's": 1, 'Unimpressed': 1, 'plopped': 1, 'disbelieving': 1, 'Esperanza': 1, 'show-offy': 1, 'lifeguards': 1, 'sherbet-colored': 1, 'Eats': 1, 'jiggling': 1, 'jaggedly': 1, 'dragon': 1, 'Canute': 1, 'vampires': 1, 'warty': 1, 'astronaut': 1, 'intrepid': 1, 'polio': 1, 'probly': 1, 'Fatso': 1, 'zip': 1, 'unlaced': 1, 'Goolick': 1, 'goooolick': 1, 'gull': 1, 'shouders': 1, "squatter's": 1, 'Kansas-Nebraska': 1, 'Britches': 1, "Victoria's": 1, 'mama': 1, 'wop': 1, 'wops': 1, 'jeans': 1, 'Dingy-looking': 1, "cane's": 1, "Someone's": 1, 'zoooop': 1, 'bannnnnng': 1, 'stooooomp': 1, 'licking': 1, 'wire-haired': 1, 'jag': 1, 'Squint': 1, 'undying': 1, 'pugh': 1, 'Pugh': 1, 'Camels': 1, 'Tripoli': 1, 'harelips': 1, 'tinkers': 1, 'gypsies': 1, 'Jerez': 1, 'Artfully': 1, 'IQ': 1, '141': 1, 'Mushr': 1, 'Ozon': 1, 'encyclopedia': 1, 'schnooks': 1, 'Chinaman': 1, 'Tooth-hurty': 1, 'Encouraged': 1, 'snuck': 1, 'gumming': 1, 'stumpy': 1, 'admiringly': 1, 'cod': 1, 'encylopedia': 1, 'je': 1, 'ne': 1, 'quok': 1, 'daydreamed': 1, 'beseech': 1, 'raisin': 1, "one-o'clock": 1, 'Kool-Aid': 1, 'gagging': 1, 'Sweating': 1, 'Oakmont': 1, 'miswritten': 1, 'heartless': 1, "Hadn't": 1, 'Allegheny': 1, 'crinkles': 1, 'Conneaut': 1, "lovers'": 1, 'spats': 1, 'Dillinger': 1, "Horne's": 1, 'less-dramatic': 1, 'Sewickley': 1, 'grindstone': 1, 'cutest': 1, 'fontanel': 1, 'nary': 1, 'dizziness': 1, 'Webber': 1, 'bosoms': 1, 'whimpering': 1, 'overgenerous': 1, 'apparency': 1, 'hairpin': 1, 'Mont': 1, "could've": 1, 'bone-deep': 1, 'Alloy': 1, 'MacIsaacs': 1, 'Carnegie-Illinois': 1, 'Stuart-family': 1, 'dragooned': 1, "John'll": 1, 'Furnaces': 1, 'meteoric': 1, 'baby-sitter': 1, "Thom's": 1, 'Wondering': 1, 'Tea': 1, "Francie's": 1, 'televison-record': 1, 'traipsing': 1, 'Thankful': 1, 'Worst': 1, 'fretted': 1, 'Straightened': 1, 'snobs': 1, 'Virus': 1, 'no-good': 1, 'alibis': 1, 'black-balled': 1, 'sewed': 1, 'punks': 1, 'nine-to-five': 1, 'five-days-a-week': 1, 'orphanage': 1, 'boarding-home': 1, 'fonder': 1, 'interns': 1, 'Ishii': 1, 'post-operative': 1, 'lulu': 1, 'alcoholism': 1, 'two-colored': 1, 'disquiet': 1, 'AA': 1, 'drawn-back': 1, 'bloodspots': 1, 'Papanicolaou': 1, 'hysterectomy': 1, 'intraepithelial': 1, 'situ': 1, 'badgering': 1, "Bancroft's": 1, 'curettage': 1, 'guinea': 1, 'half-smile': 1, 'heart-stopping': 1, 'mockingly': 1, 'anesthetic': 1, 'yielding-Mediterranian-woman-': 1, 'metal-tasting': 1, 'aqua-lung': 1, 'duds': 1, 'bellyfull': 1, 'Orly': 1, 'Rhine-Main': 1, 'mist-like': 1, 'pocketful': 1, 'Bugatti': 1, 'Farina': 1, 'coachwork': 1, 'chassis': 1, 'Swallow': 1, 'A40-AjK': 1, 'Mercedes': 1, 'Arc': 1, 'Triomphe': 1, "d'Eiffel": 1, 'yokel': 1, "Maxim's": 1, 'noblesse': 1, 'oblige': 1, 'Panther': 1, 'Pils': 1, 'Tuborg': 1, 'crocked': 1, 'Capricorn': 1, 'Elemental': 1, 'flop': 1, 'binge': 1, 'derriere': 1, 'crumble': 1, 'tiredness': 1, 'Remy': 1, 'drowsing': 1, 'Allons': 1, 'rime': 1, "J'ai": 1, 'faim': 1, 'scald': 1, 'Suzanne': 1, 'les': 1, 'putains': 1, 'cabaret': 1, 'sommelier': 1, 'magnum': 1, 'steely': 1, 'Jeroboam': 1, 'exhaustingly': 1, "shores'": 1, 'aqueducts': 1, 'Appian': 1, 'motorscooters': 1, 'fuchsia': 1, 'palest': 1, 'portly': 1, 'well-bred': 1, 'parapets': 1, 'Content': 1, "t's": 1, "l's": 1, 'next-door': 1, 'di': 1, 'Spagna': 1, 'sweetpeas': 1, 'refolded': 1, 'mammas': 1, 'uttermost': 1, 'footstool': 1, 'heroically': 1, 'enamelled': 1, 'hiccups': 1, 'unamused': 1, 'round-eyed': 1, 'Rosie': 1, 'Whittaker': 1, 'sneezing': 1, 'unnaturally': 1, 'cameos': 1, 'Carrozza': 1, 'vendor': 1, 'well-dressed': 1, 'hinting': 1, 'Dinsmore': 1, 'diapiace': 1, 'insomma': 1, 'stealer': 1, '4000-plus': 1, "nobody'd": 1, 'good-living': 1, "Lucille's": 1, 'trucker': 1, "folks'": 1, 'crackling': 1, 'smokes': 1, 'ticking': 1, 'swears': 1, 'noncommittally': 1, 'fierceness': 1, 'Astonishingly': 1, 'contentment': 1, "Idiot's": 1, 'upbringing': 1, "Johnnie's": 1, 'husband-stealer': 1, 'wondrous': 1, 'Faneuil': 1, 'pumpkin': 1, 'Schmalma': 1, 'ale': 1, "'most": 1, 'lubricated': 1, 'all-American-boy': 1, 'Astronaut': 1, 'two-burner': 1, 'lunatic': 1, 'bachelor-type': 1, 'eatables': 1, 'vitamin-and-iron': 1, 'scalded': 1, 'Woods': 1, 'odds-on': 1, 'black-and-yellow': 1, 'polka-dotted': 1, 'Three-day': 1, 'Pyhrric': 1, 'forbore': 1, 'honeymooning': 1, 'unalloyed': 1, 'leafed': 1, 'hoof-and-mouth': 1, 'long-hair': 1, 'squirt': 1, "Kissin'": 1, 'Kare': 1, 'swiping': 1, 'Ugh': 1, 'fast-frozen': 1, 'horse-blanket': 1, 'plaid': 1, 'splashy': 1, 'toilsome': 1, 'clattery': 1, 'mops': 1, "rain's": 1, 'scorcher': 1, "kind's": 1, 'Run-down': 1, 'iron-poor': 1, 'Frail': 1, 'varicolored': 1, 'floodlit': 1, "flower's": 1, 'M-m-m': 1, 'redheads': 1, 'browny': 1, 'blondes': 1, 'bikinis': 1, 'dune': 1, 'turtle-neck': 1, 'not-so-pale': 1, 'filched': 1, "goodness'": 1, "Vivian's": 1, 'pajama': 1, 'Correspondence': 1, 'whitens': 1, 'Broiled': 1, 'Puny': 1, 'Surviving': 1, 'Speedy': 1, 'Canoe': 1, "Anniston's": 1, "Riverside's": 1, 'redheaded': 1, 'punches': 1, 'sonny': 1, 'Mind': 1, "fielder's": 1, "catcher's": 1, 'hander': 1, 'hefty': 1, "batter's": 1, 'Haydon': 1, 'flat-footed': 1, 'Fights': 1, 'squelched': 1, 'helluva': 1, 'team-mate': 1, "Eddie's": 1, 'pro-ball': 1, 'Dazed': 1, "Baseball's": 1, 'ramming': 1, 'goddamit': 1, "Springfield's": 1, 'outfielders': 1, 'by-ways': 1, 'Lao-tse': 1, 'Mencius': 1, 'Suzuki': 1, 'tomes': 1, 'Krishnaists': 1, 'socio-archaeological': 1, 'Zend-Avesta': 1, 'Grinned': 1, 'bookish': 1, 'incarcerated': 1, 'dusted': 1, 'tea-drinking': 1, 'flippant': 1, 'pointless': 1, 'Soba': 1, 'udon': 1, 'Sushi': 1, 'Sashimi': 1, 'Witter': 1, 'Gompachi': 1, 'Komurasaki': 1, 'parkish': 1, 'Kanto': 1, 'bothersome': 1, 'ascetic': 1, 'spigots': 1, 'caged': 1, 'limpid': 1, 'fountain-falls': 1, 'hundred-yen': 1, 'snow-fence': 1, 'multi-colored': 1, 'jet-black': 1, 'fire-colored': 1, 'forepart': 1, 'fieldmice': 1, 'newly-plowed': 1, 'sun-burned': 1, 'paleness': 1, 'uncolored': 1, 'plowshares': 1, 'frenzied': 1, 'hunched-up': 1, 'frenetic': 1, 'savagery': 1, 'bubbly': 1, 'finely-spun': 1, 'effeminate': 1, 'eyelashes': 1, 'brushlike': 1, 'newly-scrubbed': 1, 'gray-looking': 1, 'beautifully-tapered': 1, 'vise': 1, 'splayed': 1, 'thickest': 1, 'ice-feeling': 1, 'tool-kit': 1, 'gleeful': 1, 'glee': 1, 'unglued': 1, 'alma': 1, 'mater': 1, 'snapper': 1, 'reunions': 1, 'old-grad-type': 1, "Pete's": 1, 'politicking': 1, 'Height': 1, "6'": 1, 'Weight': 1, 'enrolling': 1, 'ruining': 1, 'soul-searching': 1, 'unsealed': 1, 'gasser': 1, 'pre-packed': 1, 'messing': 1, 'unease': 1, 'Weakness': 1, 'surcease': 1, 'navy-blue': 1, 'shag': 1, "Partlow's": 1, 'straight-A': 1, 'book-lined': 1, 'Wrong': 1, "Dave's": 1, 'play-off': 1, 'Astronomy': 1, 'fishpond': 1, 'mollified': 1, 'ham-radio': 1, 'hemming': 1, 'well-worn': 1, 'mailbox': 1, 'patina': 1, 'vertebrae': 1, 'unyielding': 1, 'invigorating': 1, 'neatness': 1, 'incongruity': 1, 'Quietly': 1, 'glissade': 1, 'ellipsis': 1, 'Brainards': 1, 'fumed': 1, 'titters': 1, 'whisperings': 1, 'scabrous': 1, 'gossiping': 1, 'hoarseness': 1, 'Angrily': 1, "bedroom's": 1, 'scattering': 1, 'Bizarre': 1, 'Alternately': 1, 'defeatism': 1, 'Instantaneously': 1, 'panties': 1, 'unruly': 1, 'underclothes': 1, 'nylon': 1, 'Extending': 1, "nibs'": 1, "Hershey's": 1, 'Eddyman': 1, 'vicissitudes': 1, 'prospering': 1, 'competency': 1, 'calculators': 1, 'coffers': 1, 'medium-sized': 1, 'four-wheel-drive': 1, 'off-road': 1, 'over-large': 1, 'Cursed': 1, 'amalgamation': 1, "Herberet's": 1, "Allstates'": 1, 'sub-assembly': 1, 'ordnance': 1, 'complaisant': 1, 'compound-engine': 1, 'dampening': 1, 'fray': 1, 'patriarchy': 1, 'closeted': 1, "A-Z's": 1, 'coincidental': 1, 'out-dated': 1, 'small-car': 1, 'broach': 1, 'dealerships': 1, 'incredulity': 1, 'low-priced': 1, 'chromed': 1, 'too-expensive': 1, 'Allstates-Zenith': 1, 'Heads': 1, 'availing': 1, 'disquietude': 1, 'Spike-haired': 1, 'red-faced': 1, 'decked': 1, 'horn-rimmed': 1, 'Hinkle': 1, 'fancying': 1, 'Beard': 1, 'instigation': 1, 'Cal': 1, 'Ye': 1, 'Olde': 1, 'Gasse': 1, 'Avocado': 1, 'Capistrano': 1, 'By-the-Sea': 1, 'Drive-in': 1, 'tamale': 1, 'Glendale': 1, 'unhinged': 1, 'fainted': 1, 'lifelong': 1, 'mayorship': 1, 'shifty': 1, 'pooh-poohed': 1, 'Ridiculous': 1, 'cameramen': 1, 'matter-of-factness': 1, 'cortege': 1, 'Stopping': 1, 'shrub-covered': 1, 'quibs': 1, 'gibes': 1, "murderer's": 1, 'cahoots': 1, "Marshall's": 1, 'Romances': 1, 'Addict': 1, 'Downfall': 1, 'Idol': 1, 'overvaulting': 1, 'luckier': 1, 'unidentified': 1, 'prank': 1, 'Southland': 1, 'footwear': 1, 'commiserate': 1, 'snobbishly': 1, 'Czarship': 1, 'Angeles-Pasadena': 1, 'scions': 1, 'Budweisers': 1, 'Chalmers': 1, 'Heinzes': 1, 'pickles': 1, 'midsts': 1, 'Pickfair': 1, 'Doug': 1, 'hoi-polloi': 1, 'trump': 1, 'matrimonial': 1, 'chi-chi': 1, 'cosy': 1, 'chaperon': 1, 'hotbed': 1, 'ladle': 1, "cook's": 1, 'giblet': 1, 'asparagus': 1, 'sprig': 1, 'creamed': 1, "Beige's": 1, 'remoter': 1, "Jennie's": 1, "Miranda's": 1, 'screeches': 1, 'thuds': 1, 'gainer': 1, 'Resolving': 1, 'woolgather': 1, 'heiress': 1, 'dabbler': 1, 'suburbia': 1, "gourmet's": 1, 'nonconformist': 1, 'plaids': 1, 'SS.': 1, "Fran's": 1, 'Baccarat': 1, 'marinated': 1, "Koussevitzky's": 1, 'marshmallows': 1, 'ruefulness': 1, 'souffle': 1, 'red-blooded': 1, 'valueless': 1, 'astringency': 1, 'Gwen': 1, 'Cafritz': 1, "Francesca's": 1, 'Perle': 1, 'Mesta': 1, 'rivals': 1, 'unfunnily': 1, 'sarcastic': 1, 'ultra-modern': 1, 'housepaint': 1, 'hair-trigger': 1, 'country-squirehood': 1, 'too-hearty': 1, 'misty-eyed': 1, 'unadulterated': 1, 'Shops': 1, 'Pioneers': 1, 'homesteads': 1, 'gardeners': 1, 'parent-teacher': 1, '$85,000': 1, 'Daphne': 1, 'Maurier': 1, 'Reverently': 1, 'Becoming': 1, 'Bananas': 1, "devil's-food": 1, 'icing': 1, 'snoop': 1, 'coast-to-coast': 1, 'pre-empting': 1, 'Merry-go-round': 1, 'Bowes': 1, 'larder': 1, 'ransacking': 1, 'barbarian': 1, 'sacking': 1, 'despoiling': 1, 'Bolshevistic': 1, 'iniquitous': 1, "Morris'": 1, 'relict': 1, 'hard-come-by': 1, 'leftist': 1, 'tigress': 1, 'toadies': 1, 'sycophants': 1, 'Portia': 1, 'grata': 1, 'Belle': 1, 'Caligula': 1, 'Nineveh': 1, 'prohibitive': 1, 'usurious': 1, 'notoriety': 1, 'baroness': 1, 'traitor': 1, 'Traitor': 1, 'ere': 1, 'Minute': 1, 'Fascio-Communist': 1, 'NRA': 1, 'PWA': 1, 'WPA': 1, 'CCC': 1, 'imperilled': 1, 'distractions': 1, 'unflagging': 1, 'thespians': 1, 'co-star': 1, 'helpmate': 1, 'sulks': 1, 'storming': 1, 'dislocated': 1, 'monies': 1, 'gaming': 1, 'commonest': 1, 'ungallant': 1, 'slights': 1, 'Trianon': 1, 'collation': 1, 'overcooked': 1, 'Aquacutie': 1, 'Epiphany': 1, 'Errol': 1, "Flynn's": 1, 'Filmdom': 1, 'Astaires': 1, 'Colmans': 1, 'Rathbones': 1, 'Taylors': 1, 'Thalbergs': 1, 'Barrymores': 1, 'Crosbys': 1, 'screenland': 1, 'Sainted': 1, 'beatification': 1, 'dens': 1, 'deigned': 1, 'tasteless': 1, 'unfunny': 1, 'over-spent': 1, 'farmed': 1, 'Diet': 1, 'Worms': 1, 'Gauntley': 1, 'Marquess': 1, 'inherits': 1, 'moors': 1, 'unbeknownst': 1, 'shoestring': 1, 'unrepentant': 1, 'Bookies': 1, 'make-ready': 1, 'romping': 1, 'yelping': 1, 'fret': 1, 'perfectionists': 1, 'lizards': 1, 'dial': 1, "Bradley's": 1, 'Hardware': 1, "carpenter's": 1, 'babbiting': 1, 'doweling': 1, 'sandpaper': 1, 'Jinny': 1, 'two-by-fours': 1, 'assortment': 1, 'worktable': 1, 'handyman-carpenter': 1, 'Carpenters': 1, 'Smithtown': 1, "Crombie's": 1, 'Highfield': 1, "Blatz's": 1, 'shipshape': 1, "'ceptin'": 1, 'contraptions': 1, 'Doors': 1, 'Brinsley': 1, 'rhetoricians': 1, 'amphibology': 1, 'parisology': 1, 'ologies': 1, 'misinterpreters': 1, 'misunderstanders': 1, 'misdirectors': 1, 'baffle': 1, 'interweaving': 1, 'jest': 1, 'sours': 1, 'non-repetitious': 1, 'girl-friend': 1, 'misquoted': 1, 'stumped': 1, 'biter': 1, 'grammarians': 1, 'wooden-leg': 1, 'gagwriters': 1, 'gagline': 1, 'snapshots': 1, 'Classified': 1, 'chockfull': 1, 'misrelated': 1, 'Shapes': 1, 'bathtubs': 1, 'Couple': 1, 'headlinese': 1, 'schooldays': 1, "caterer's": 1, 'semi-ambiguous': 1, 'rumpus': 1, 'Strangely': 1, 'lumbar': 1, 'misconstructions': 1, 'anatomicals': 1, 'demurred': 1, 'Madam': 1, 'woolly-minded': 1, 'indefinity': 1, "clergyman's": 1, 'Dearly': 1, 'So-so': 1, 'maxim': 1, 'Indefinite': 1, 'double-meaning': 1, 'undertaker': 1, 'soulfully': 1, 'Replies': 1, 'equivocal': 1, 'it-wit': 1, 'It-wit': 1, 'misnomer': 1, 'fairy-tale': 1, 'Upson': 1, 'careerism': 1, "bee's": 1, 'Horror': 1, 'Comics': 1, 'Zeitgeist': 1, 'loon': 1, 'hare': 1, 'paraphrasing': 1, 'walrus': 1, 'dooms': 1, 'commoners': 1, 'Traits': 1, 'non-books': 1, 'non-writers': 1, 'non-publishers': 1, 'non-readers': 1, 'nonism': 1, 'sit-down': 1, 'noisier': 1, 'non-English': 1, 'Cryptic': 1, 'retrogressive': 1, 'Dilys': 1, 'beholds': 1, 'daffodils': 1, 'Galahad': 1, 'knightly': 1, 'Longfellow': 1, 'co-existence': 1, 'co-extinction': 1, 'theatres': 1, 're-explore': 1, 'antic': 1, 'drawing-rooms': 1, 'Anglo-Americans': 1, 'tragicomic': 1, 'brothel': 1, 'dustbin': 1, 'living-room': 1, 'Furiouser': 1, 'furiouser': 1, 'clinked': 1, 'Toujours': 1, 'gai': 1, "Marquis'": 1, 'Mehitabel': 1, 'non-institutionalized': 1, 'saner': 1, 'ba-a-a': 1, 'non-nonsense': 1, 'Rhinoceros': 1, 'Non-God': 1, 'anti-personality': 1, 'Wynn': 1, 'non-God': 1, 'restively': 1, 'fancy-free': 1, 'screw-loose': 1, 'frenzy-free': 1, 'tube-nosed': 1, 'disbelieves': 1, 'Eddies': 1, 'frog-eating': 1, 'Gott': 1, 'Angleterre': 1, 'Carthago': 1, 'delenda': 1, 'Deus': 1, 'Carthage': 1, 'ideologist': 1, 'paranoiac': 1, 'manic-depressive': 1, 'corrupts': 1, 'nooks': 1, 'non-poetry': 1, "policeman's": 1, 'tumbles': 1, 'unco-operative': 1, 'twirlingly': 1, 'warm-up': 1, 'cooked-over': 1, 'oatmeal': 1, 'gaspingly': 1, 'funnier': 1, 'Minks': 1, 'chorused': 1, "Arlene's": 1, 'bangish': 1, 'finger-held': 1, 'ladylike': 1, 'somersaulting': 1, 'pamper': 1, 'middles': 1, 'laughingly': 1, 'ceremonially': 1, 'horselike': 1, 'balkiness': 1, 'coconut-containing': 1, 'convulsed': 1, 'wheezes': 1, 'over-pretended': 1, 'perpetration': 1, 'rakishly': 1, 'rollickingly': 1, 'eye-beamings': 1, 'Pueri': 1, 'aquam': 1, 'silvas': 1, 'agricolas': 1, 'portant': 1, 'vignette': 1, 'pre-Punic': 1, 'fifty-third': 1, 'affianced': 1, 'cancels': 1, 'buckling': 1, 'scimitar': 1, 'stumbles': 1, "Opera's": 1, "Spumoni's": 1, 'Sevigli': 1, 'del': 1, 'Spegititgninino': 1, 'contralto': 1, 'Hattie': 1, 'Sforzt': 1, 'Prometheus': 1, 'Leather': 1, 'Conduit': 1, 'Hubba': 1, 'hubba': 1, 'Yalagaloo': 1, 'overture': 1, 'Ranavan': 1, 'atonally': 1, 'Grunnfeu': 1, 'Serbantian': 1, 'invocation': 1, 'Phineoppus': 1, 'Gorshek': 1, 'Lust': 1, 'vanishes': 1, 'Shuz': 1, 'sidesteps': 1, 'gooshey': 1, 'ad-lib': 1, 'Dharma': 1, 'Eurasian': 1, 'proto-senility': 1, 'visrhanik': 1, 'bantered': 1, 'bouanahsha': 1, 'salivate': 1, 'pratakku': 1, 'sweathruna': 1, 'tongue-twister': 1, 'nnuolapertar-it-vuh-karti-birifw-': 1, 'Bathar-on-Walli': 1, 'Province': 1, 'spouting': 1, "Pockmanster's": 1, 'Jungian': 1, 'Meinckian': 1, 'flashback': 1, 'middle-Gaelic': 1, 'derivations': 1, 'Reichstag': 1, 'expunge': 1, 'punishing': 1, 'shatters': 1, 'much-needed': 1, 'movie-goer': 1, 'Bini': 1, 'Ab63711-r': 1, 'Brest-Silevniov': 1, 'purgatory': 1, 'Neurenschatz': 1, 'Skolkau': 1, 'Rattzhenfuut': 1, 'Tschilwyk': 1, 'flautist': 1, 'Haumd': 1, "Haumd's": 1, 'F-major': 1, 'fingerings': 1, "flautist's": 1, 'heavy-handed': 1, 'inspirational': 1, 'non-dramas': 1, 'bittersweet': 1, 'theatregoer': 1, "Basho's": 1, 'frog-haiku': 1, 'Entwhistle': 1, 'amateurishness': 1, 'offbeat': 1, 'intruding': 1, 'lemon-meringue': 1, 'muffins': 1, 'Rilke': 1, 'unpretentious': 1, 'Aging': 1, 'enfant': 1, 'Francoisette': 1, 'scenario': 1, 'Lascivious': 1, 'Interlude': 1, 'trip-hammer': 1, 'pithy': 1, 'all-pervading': 1, 'hollowness': 1, 'Mlle': 1, 'Petite': 1, 'Chadroe': 1, 'engagingly': 1, 'Bambi': 1, "Fink's": 1, 'understated': 1, 'Quizzical': 1, 'Salamander': 1, 'salamander': 1, 'tragically': 1, "Parkinson's": 1, 'mah-jongg': 1, 'Hardwicke': 1, 'Nabisco': 1, 'bout-de-souffle': 1, 'leitmotiv': 1, 'Mudugno': 1, 'Volare': 1, 'opalescent': 1, 'fascinatingly': 1, 'Rosalie': 1, 'beat-up': 1, 'jeunes': 1, 'Cause': 1, 'pug-nosed': 1, 'Jean-Pierre': 1, 'Bogartian': 1, 'Tasti-Freeze': 1, 'New-Waver': 1, 'Fredrico': 1, "Rossilini's": 1, 'Sour': 1, 'Sponge': 1, 'crackles': 1, 'Soaring': 1, 'Margo': 1, 'Felicity': 1, 'Brighetti': 1, 'curvaceously': 1, 'drib-drool': 1, 'sophisticates': 1, 'Expressionism': 1, 'Vindication': 1, 'Guggenheim': 1, 'Kandinsky': 1, 'blossomed': 1, 'Kline': 1, 'inexpressible': 1, 'unpaintable': 1, 'non-time': 1, 'unwaivering': 1, 'Invasion': 1, 'non-color': 1, 'chiding': 1, 'jocose': 1, 'reliably': 1, 'argot': 1, 'hot-slough': 1, 'prowlers': 1, 'taunting': 1, 'etymological': 1, 'rifling': 1, 'whimper': 1, 'objets': 1, "d'art": 1, 'rectitude': 1, 'malign': 1, 'recapitulate': 1, 'Hostaria': 1, 'Orso': 1, 'jimmied': 1, 'Hastening': 1, 'khaki': 1, 'eludes': 1, 'Victrola': 1, 'tangos': 1, 'paso': 1, 'doble': 1, 'glommed': 1, 'snuffboxes': 1, 'jade-handled': 1, 'sandalwood': 1, 'Kodaks': 1, 'afghan': 1, 'lammed': 1, 'constables': 1, 'Javert': 1, 'gird': 1, 'effloresce': 1, 'frambesia': 1, 'clonic': 1, 'curtain-raiser': 1, 'Occidental': 1, 'delimit': 1, 'affronted': 1, 'heisted': 1, 'obsidian': 1, 'statuette': 1, 'earth-touching': 1, 'Dying': 1, 'teakwood': 1, 'Jehovah': 1, 'Allah': 1, "'fess": 1, 'maltreat': 1, 'Presence': 1, 'jokers': 1, 'Khmer': 1, 'Musee': 1, 'Guimet': 1, 'Salpetriere': 1, 'leprosy': 1, "Hell's": 1, 'chaulmoogra': 1, 'fantods': 1, 'imploring': 1, 'desecration': 1, 'Sudanese': 1, 'juju': 1, 'livers': 1, 'Khartoum': 1, 'provenance': 1, 'applejack': 1, 'Ganessa': 1, 'Siva': 1, 'Krishna': 1, 'Travancore': 1, 'subcontinent': 1, 'Kali': 1, 'worshiped': 1, 'Thuggee': 1, 'Nuf': 1, 'amulet': 1, 'housebreakers': 1, 'mem': 1, 'rajah': 1, 'Inscribed': 1, 'Balinese': 1, 'Tjokorda': 1, 'Agoeng': 1, 'Whosoever': 1, 'rooftree': 1, 'cocu': 1, 'fishmongers': 1, 'vandals': 1, 'forty-fifth': 1, 'pap': 1, 'gorging': 1, 'pinball': 1, 'Ubermenschen': 1, 'befell': 1, 'wisenheimer': 1, 'joss': 1, 'Bombay': 1, 'garlanded': 1, 'cartons': 1, 'yapping': 1, 'scarify': 1, 'areaways': 1, 'exasperate': 1, 'Evenings': 1, "Paglieri's": 1, 'Backyard': 1, 'donning': 1, 'Sole': 1, 'Mio': 1, 'arboreal': 1, 'chivying': 1, 'retaliate': 1, 'stubbed': 1, 'contentedly': 1, 'tallow': 1, 'crisscrossed': 1, 'Spector': 1, 'process-server': 1, 'Grimesby': 1, "Roylott's": 1, 'speckled': 1, 'incubi': 1, 'masterly': 1, 'beggary': 1, 'hubris': 1, 'plumbed': 1, 'bathos': 1, 'besmirched': 1, 'extremis': 1, 'pityingly': 1, 'horoscope': 1, 'sidle': 1, 'Bodhisattva': 1, 'hors': 1, 'yaws': 1, 'fluke': 1, 'bilharziasis': 1, 'Compassionately': 1, 'Perelman': 1, 'exhaling': 1, 'aviary': 1, 'olive-flushed': 1, 'coral-colored': 1, 'boucle': 1, 'stupefying': 1})
In [10]:
print("Number of types:", len(tokenCounter))
print("Number of tokens:", sum(tokenCounter.values()))
Number of types: 56057
Number of tokens: 1161192
In [11]:
from nltk.util import ngrams
In [12]:
tokenBigrams = defaultdict(Counter)
tokenNgrams = list(ngrams(tokens, 2))
for tok in tokenNgrams:
    tokenBigrams[tok[0]][tok[1]] += 1
tokenBigramCount = Counter(tokenNgrams)
print("Number of bigram types:", len(tokenBigramCount))
print("Number of bigrams:", sum(tokenBigramCount.values()))
#print(tokenBigramCount)
Number of bigram types: 455267
Number of bigrams: 1161191
In [13]:
print(tokenBigrams["the"]["hope"])
17

Count the number of n-grams that occur a certain number of times:

In [14]:
n = 1
countTokCounter = Counter(tokenCounter.values())
print("Number of n-grams with frequence", n, "is", countTokCounter[n])
print("Proportion:", countTokCounter[n]/len(tokens))
Number of n-grams with frequence 1 is 25559
Proportion: 0.022011002487099463
In [15]:
n = 1
countCounter = Counter(tokenBigramCount.values())
print("Number of n-grams with frequence", n, "is", countCounter[n])
print("Proportion:", countCounter[n]/sum(tokenBigramCount.values()))
Number of n-grams with frequence 1 is 340621
Proportion: 0.29333761629223787
In [16]:
totalTokens = len(tokens)
totalTypes  = len(tokenCounter)
w = "Prateek"
Cw = tokenCounter[w]
print((Cw + 1) / (totalTokens + totalTypes))
8.215246017864874e-07
In [17]:
smoothedTokenCounter = {}
for token in tokenCounter:
    Cw = tokenCounter[token]
    smoothedTokenCounter[token] = (Cw + 1) / (totalTokens + totalTypes)
print(smoothedTokenCounter)
{'The': 0.005963447084368112, 'Fulton': 1.4787442832156774e-05, 'County': 7.065111575363791e-05, 'Grand': 1.5608967433943262e-05, 'Jury': 4.107623008932437e-06, 'said': 0.0015970438258729315, 'Friday': 5.011300070897573e-05, 'an': 0.002910661664129525, 'investigation': 3.6147082478605446e-05, 'of': 0.029641429157058252, "Atlanta's": 4.107623008932437e-06, 'recent': 0.00013801613310012988, 'primary': 7.722331256792982e-05, 'election': 5.997129593041358e-05, 'produced': 7.475873876257036e-05, '``': 0.007260634430588975, 'no': 0.0014639568403835206, 'evidence': 0.00016594796956087045, "''": 0.007221201249703224, 'that': 0.008410768873090058, 'any': 0.0010696250315260067, 'irregularities': 7.393721416078387e-06, 'took': 0.00034996948036104364, 'place': 0.00043458651434505184, '.': 0.040539774524357794, 'jury': 5.2577574514335196e-05, 'further': 0.00016019729734836503, 'in': 0.016050126145102605, 'term-end': 1.6430492035729749e-06, 'presentments': 1.6430492035729749e-06, 'the': 0.051521093876437773, 'City': 0.0001109058212411758, 'Executive': 8.215246017864873e-06, 'Committee': 7.311568955899738e-05, ',': 0.04792363764521474, 'which': 0.002909018614925952, 'had': 0.004192240042916445, 'over-all': 2.9574885664313547e-05, 'charge': 9.940447681616497e-05, 'deserves': 1.3965918230370285e-05, 'praise': 1.4787442832156774e-05, 'and': 0.02293368078347158, 'thanks': 2.300268885002165e-05, 'Atlanta': 2.9574885664313547e-05, 'for': 0.007263920528996121, 'manner': 0.00010269057522331093, 'was': 0.008032867556268274, 'conducted': 4.60053777000433e-05, 'September-October': 1.6430492035729749e-06, 'term': 6.572196814291899e-05, 'been': 0.0020299872910144105, 'charged': 4.7648426903616267e-05, 'by': 0.004193061567518232, 'Superior': 1.3965918230370285e-05, 'Court': 9.11892307983001e-05, 'Judge': 3.286098407145949e-05, 'Durwood': 1.6430492035729749e-06, 'Pye': 1.6430492035729749e-06, 'to': 0.02114029257777168, 'investigate': 9.85829522143785e-06, 'reports': 6.49004435411325e-05, 'possible': 0.0003072502010681463, 'hard-fought': 2.4645738053594624e-06, 'won': 5.668519752326763e-05, 'Mayor-nominate': 1.6430492035729749e-06, 'Ivan': 4.107623008932437e-06, 'Allen': 1.7252016637516235e-05, 'Jr.': 6.243586973577305e-05, 'Only': 8.46170339840082e-05, 'a': 0.017976601336291916, 'relative': 3.6968607080391934e-05, 'handful': 1.1501344425010824e-05, 'such': 0.0009800788499312795, 'received': 0.00013473003469298392, 'considering': 3.286098407145949e-05, 'widespread': 2.546726265538111e-05, 'interest': 0.0002661739709788219, 'number': 0.0003844735136360761, 'voters': 1.5608967433943262e-05, 'size': 0.00011419191964832175, 'this': 0.0032589880952869953, 'city': 0.00021359639646448673, 'it': 0.005523931422412341, 'did': 0.0008174169787775549, 'find': 0.000325323742307449, 'many': 0.0007607317812542873, "Georgia's": 8.215246017864873e-06, 'registration': 1.97165904428757e-05, 'laws': 7.229416495721089e-05, 'are': 0.003560487624142636, 'outmoded': 4.107623008932437e-06, 'or': 0.0033838598347585417, 'inadequate': 2.7110311858954083e-05, 'often': 0.0002875336106252706, 'ambiguous': 1.889506584108921e-05, 'It': 0.0016742671384408613, 'recommended': 3.861165628396491e-05, 'legislators': 1.3965918230370285e-05, 'act': 0.00013801613310012988, 'have': 0.0031981952747547953, 'these': 0.001009653735595593, 'studied': 6.572196814291899e-05, 'revised': 1.232286902679731e-05, 'end': 0.00032943136531638146, 'modernizing': 4.107623008932437e-06, 'improving': 1.3965918230370285e-05, 'them': 0.001468064463392453, 'grand': 2.546726265538111e-05, 'commented': 1.5608967433943262e-05, 'on': 0.005254471353026373, 'other': 0.0013374420517084016, 'topics': 9.036770619651361e-06, 'among': 0.00025878024956274353, 'purchasing': 1.232286902679731e-05, 'departments': 2.1359639646448672e-05, 'well': 0.0006227156481541574, 'operated': 2.300268885002165e-05, 'follow': 7.475873876257036e-05, 'generally': 9.858295221437849e-05, 'accepted': 7.804483716971631e-05, 'practices': 4.1897754691110856e-05, 'inure': 2.4645738053594624e-06, 'best': 0.0002809614138109787, 'both': 0.0005290618435504978, 'governments': 4.2719279292897344e-05, 'Merger': 1.6430492035729749e-06, 'proposed': 6.818654194827845e-05, 'However': 0.00014048070690548934, 'believes': 3.6147082478605446e-05, 'two': 0.0010778402775438714, 'offices': 3.286098407145949e-05, 'should': 0.000711440305147098, 'be': 0.005212573598335262, 'combined': 3.286098407145949e-05, 'achieve': 4.2719279292897344e-05, 'greater': 0.0001495174775251407, 'efficiency': 4.025470548753788e-05, 'reduce': 5.175604991254871e-05, 'cost': 0.0001840215108001732, 'administration': 8.543855858579469e-05, 'Purchasing': 3.2860984071459497e-06, 'Department': 0.0001355515592947704, 'is': 0.008225104313086313, 'lacking': 2.218116424823516e-05, 'experienced': 4.436232849647032e-05, 'clerical': 8.215246017864873e-06, 'personnel': 5.997129593041358e-05, 'as': 0.005509965504181971, 'result': 0.00020045200283590292, 'policies': 5.504214831969465e-05, 'urged': 2.875336106252706e-05, 'take': 0.00047484121983258973, 'steps': 9.529685380723253e-05, 'remedy': 1.1501344425010824e-05, 'problem': 0.00025713720035917055, 'Implementation': 3.2860984071459497e-06, 'automobile': 3.6147082478605446e-05, 'title': 4.354080389468383e-05, 'law': 0.0002283838392966435, 'also': 0.0008215246017864874, 'outgoing': 7.393721416078387e-06, 'next': 0.0002982134304484949, 'Legislature': 2.300268885002165e-05, 'provide': 0.0001766277893840948, 'enabling': 1.1501344425010824e-05, 'funds': 7.475873876257036e-05, 're-set': 1.6430492035729749e-06, 'effective': 0.00010597667363045688, 'date': 8.46170339840082e-05, 'so': 0.0014425972007370718, 'orderly': 1.7252016637516235e-05, 'implementation': 4.929147610718925e-06, 'may': 0.0010622313101099283, 'effected': 1.0679819823224336e-05, 'swipe': 2.4645738053594624e-06, 'at': 0.004078048123268123, 'State': 0.00021688249487163266, 'Welfare': 6.5721968142918994e-06, "Department's": 1.3144393628583799e-05, 'handling': 3.1217934867886523e-05, 'federal': 9.283228000187308e-05, 'granted': 4.436232849647032e-05, 'child': 0.00017334169097694884, 'welfare': 3.861165628396491e-05, 'services': 0.00010597667363045688, 'foster': 4.929147610718925e-06, 'homes': 5.093452531076222e-05, 'This': 0.0009693990301080552, 'one': 0.0023610617055343647, 'major': 0.00018730760920731914, 'items': 5.9149771328627094e-05, 'general': 0.0002563156757573841, 'assistance': 7.065111575363791e-05, 'program': 0.0003072502010681463, 'but': 0.0024711460021737543, 'has': 0.0019930186839340184, 'seen': 0.000227562314694857, 'fit': 6.161434513398656e-05, 'distribute': 5.750672212505412e-06, 'through': 0.0007738761748828712, 'all': 0.002240297589071751, 'counties': 2.6288787257167598e-05, 'state': 0.00044773090797363565, 'with': 0.005761352032328636, 'exception': 3.368250867324598e-05, 'receives': 1.7252016637516235e-05, 'none': 7.640178796614333e-05, 'money': 0.00021359639646448673, 'jurors': 4.107623008932437e-06, 'they': 0.002278909245355716, 'realize': 5.750672212505412e-05, 'proportionate': 8.215246017864873e-06, 'distribution': 6.900806655006494e-05, 'might': 0.000551243007798733, 'disable': 1.6430492035729749e-06, 'our': 0.0009390026198419551, 'less': 0.0003507910049628301, 'populous': 4.929147610718925e-06, 'Nevertheless': 3.532555787681896e-05, 'we': 0.001621689563926526, 'feel': 0.00017827083858766777, 'future': 0.00017744931398588128, 'receive': 6.325739433755954e-05, 'some': 0.0011567066393153743, 'portion': 5.175604991254871e-05, 'available': 0.00019798742903054346, 'Failure': 4.107623008932437e-06, 'do': 0.0010351209982509741, 'will': 0.0018114617469392048, 'continue': 8.708160778936766e-05, 'disproportionate': 2.4645738053594624e-06, 'burden': 3.6968607080391934e-05, 'taxpayers': 1.7252016637516235e-05, "ordinary's": 1.6430492035729749e-06, 'court': 9.940447681616497e-05, 'under': 0.0005331694665594303, 'fire': 0.00014048070690548934, 'its': 0.001463135315781734, 'appointment': 2.218116424823516e-05, 'appraisers': 1.6430492035729749e-06, 'guardians': 4.107623008932437e-06, 'administrators': 4.929147610718925e-06, 'awarding': 3.2860984071459497e-06, 'fees': 2.300268885002165e-05, 'compensation': 1.4787442832156774e-05, 'Wards': 1.6430492035729749e-06, 'protected': 2.6288787257167598e-05, 'found': 0.00044115871115934374, 'incorporated': 1.0679819823224336e-05, 'into': 0.001464778364985307, 'operating': 6.736501734649196e-05, 'procedures': 5.093452531076222e-05, 'recommendations': 1.8073541239302723e-05, 'previous': 6.982959115185143e-05, 'juries': 1.6430492035729749e-06, 'Bar': 9.85829522143785e-06, 'Association': 7.14726403554244e-05, 'interim': 9.036770619651361e-06, 'citizens': 6.49004435411325e-05, 'committee': 6.654349274470547e-05, 'These': 0.00028424751221812464, 'actions': 5.586367292148114e-05, 'serve': 8.543855858579469e-05, 'protect': 2.875336106252706e-05, 'fact': 0.0003680430216003464, 'effect': 0.0001758062647823083, "court's": 2.4645738053594624e-06, 'wards': 2.4645738053594624e-06, 'from': 0.003456975524317539, 'undue': 1.1501344425010824e-05, 'costs': 0.00014212375610906232, 'appointed': 3.532555787681896e-05, 'elected': 2.7110311858954083e-05, 'servants': 1.889506584108921e-05, 'unmeritorious': 1.6430492035729749e-06, 'criticisms': 9.85829522143785e-06, 'Regarding': 1.6430492035729749e-06, 'new': 0.0008716376024954631, 'multi-million-dollar': 2.4645738053594624e-06, 'airport': 9.85829522143785e-06, 'when': 0.0014352034793209934, 'management': 7.311568955899738e-05, 'takes': 7.14726403554244e-05, 'Jan.': 1.7252016637516235e-05, '1': 0.0004337649897432653, 'eliminate': 2.1359639646448672e-05, 'political': 0.0002094887734555543, 'influences': 1.232286902679731e-05, 'not': 0.0036344248383034204, 'elaborate': 2.6288787257167598e-05, 'added': 0.00014130223150727583, 'there': 0.0015428232021550234, 'periodic': 7.393721416078387e-06, 'surveillance': 5.750672212505412e-06, 'pricing': 6.5721968142918994e-06, 'concessionaires': 5.750672212505412e-06, 'purpose': 0.00011994259186082716, 'keeping': 4.7648426903616267e-05, 'prices': 5.093452531076222e-05, 'reasonable': 5.3399099116121684e-05, 'Ask': 1.0679819823224336e-05, 'jail': 1.4787442832156774e-05, 'deputies': 1.1501344425010824e-05, 'On': 0.00028506903681991115, 'matters': 5.3399099116121684e-05, ':': 0.0014754581848085313, '(': 0.002001233929951883, ')': 0.0020267011926072644, 'Four': 2.875336106252706e-05, 'additional': 8.790313239115415e-05, 'employed': 4.107623008932437e-05, 'Jail': 4.107623008932437e-06, 'doctor': 7.229416495721089e-05, 'medical': 9.7761427612592e-05, 'intern': 2.4645738053594624e-06, 'extern': 1.6430492035729749e-06, 'night': 0.0003277883161128085, 'weekend': 2.300268885002165e-05, 'duty': 4.8469951505402755e-05, '2': 0.00036722149699855986, 'work': 0.0006210725989505845, 'officials': 4.6826902301829785e-05, 'pass': 7.14726403554244e-05, 'legislation': 3.6968607080391934e-05, 'permit': 6.243586973577305e-05, 'establishment': 4.354080389468383e-05, 'fair': 5.668519752326763e-05, 'equitable': 9.85829522143785e-06, 'pension': 1.0679819823224336e-05, 'plan': 0.000161840346551938, 'employes': 1.3144393628583799e-05, 'praised': 1.1501344425010824e-05, 'operation': 8.790313239115415e-05, 'Police': 1.8073541239302723e-05, 'Tax': 9.036770619651361e-06, "Commissioner's": 1.6430492035729749e-06, 'Office': 3.450403327503247e-05, 'Bellwood': 1.6430492035729749e-06, 'Alpharetta': 1.6430492035729749e-06, 'prison': 3.368250867324598e-05, 'farms': 1.3965918230370285e-05, 'Grady': 4.929147610718925e-06, 'Hospital': 2.9574885664313547e-05, 'Health': 1.4787442832156774e-05, 'Mayor': 2.546726265538111e-05, 'William': 0.00012158564106440014, 'B.': 6.325739433755954e-05, 'Hartsfield': 4.929147610718925e-06, 'filed': 2.793183646074057e-05, 'suit': 4.025470548753788e-05, 'divorce': 2.464573805359462e-05, 'his': 0.005312799599753214, 'wife': 0.00018730760920731914, 'Pearl': 5.750672212505412e-06, 'Williams': 2.7110311858954083e-05, 'His': 0.0004362295635486248, 'petition': 1.3144393628583799e-05, 'mental': 3.450403327503247e-05, 'cruelty': 1.1501344425010824e-05, 'couple': 0.00010022600141795146, 'married': 8.46170339840082e-05, 'Aug.': 2.1359639646448672e-05, '1913': 1.0679819823224336e-05, 'They': 0.0006966528623149413, 'son': 0.00011583496885189472, 'Berry': 5.750672212505412e-06, 'daughter': 5.8328246726840606e-05, 'Mrs.': 0.00043951566195577077, 'J.': 9.940447681616497e-05, 'M.': 5.175604991254871e-05, 'Cheshire': 1.6430492035729749e-06, 'Griffin': 4.107623008932437e-06, 'Attorneys': 3.2860984071459497e-06, 'mayor': 7.393721416078387e-06, 'amicable': 1.6430492035729749e-06, 'property': 0.00012651478867511907, 'settlement': 2.1359639646448672e-05, 'agreed': 6.736501734649196e-05, 'upon': 0.000391045710450368, 'listed': 3.532555787681896e-05, "mayor's": 4.929147610718925e-06, 'occupation': 1.97165904428757e-05, 'attorney': 2.218116424823516e-05, 'age': 0.00017744931398588128, '71': 9.036770619651361e-06, "wife's": 1.3144393628583799e-05, '74': 5.750672212505412e-06, 'birth': 5.2577574514335196e-05, 'Opelika': 2.4645738053594624e-06, 'Ala.': 6.5721968142918994e-06, 'lived': 9.365380460365957e-05, 'together': 0.00021441792106627322, 'man': 0.0009463963412580335, 'more': 0.0017506689264070046, 'than': 0.001469707512596026, 'year': 0.0005339909911612168, 'home': 0.00043294346514147886, '637': 1.6430492035729749e-06, 'E.': 7.14726403554244e-05, 'Pelham': 4.929147610718925e-06, 'Rd.': 3.2860984071459497e-06, 'Aj': 9.7761427612592e-05, 'Henry': 6.900806655006494e-05, 'L.': 4.518385309825681e-05, 'Bowden': 2.4645738053594624e-06, 'brief': 5.8328246726840606e-05, 'interlude': 4.107623008932437e-06, 'since': 0.0003746152184146383, '1937': 9.036770619651361e-06, 'career': 5.586367292148114e-05, 'goes': 7.393721416078387e-05, 'back': 0.0007812698962989495, 'council': 2.300268885002165e-05, '1923': 6.5721968142918994e-06, 'present': 0.0003047856272627868, 'office': 0.0001766277893840948, 'expires': 1.6430492035729749e-06, 'He': 0.002450607887129092, 'succeeded': 2.793183646074057e-05, 'who': 0.0018016034517177669, 'became': 0.0002020950520394759, 'candidate': 2.875336106252706e-05, 'Sept.': 2.875336106252706e-05, '13': 4.107623008932437e-05, 'after': 0.0006769362718720656, 'announced': 7.311568955899738e-05, 'he': 0.005394952059931863, 'would': 0.0022000428835842133, 'run': 0.0001700555925698029, 'reelection': 2.4645738053594624e-06, 'Georgia': 3.861165628396491e-05, 'Republicans': 2.464573805359462e-05, 'getting': 0.00013062241168405148, 'strong': 0.00016019729734836503, 'encouragement': 1.232286902679731e-05, 'enter': 6.49004435411325e-05, '1962': 2.9574885664313547e-05, "governor's": 8.215246017864873e-06, 'race': 8.297398478043522e-05, 'top': 0.00016430492035729747, 'official': 5.997129593041358e-05, 'Wednesday': 2.9574885664313547e-05, 'Robert': 6.900806655006494e-05, 'Snodgrass': 2.4645738053594624e-06, 'GOP': 1.1501344425010824e-05, 'chairman': 4.025470548753788e-05, 'meeting': 0.0001248717394715461, 'held': 0.00021359639646448673, 'Tuesday': 4.8469951505402755e-05, 'Blue': 3.861165628396491e-05, 'Ridge': 5.750672212505412e-06, 'brought': 0.0002086672488537678, 'enthusiastic': 2.0538115044662184e-05, 'responses': 2.300268885002165e-05, 'audience': 9.529685380723253e-05, 'Party': 1.8073541239302723e-05, 'Chairman': 1.6430492035729746e-05, 'James': 8.379550938222171e-05, 'W.': 6.900806655006494e-05, 'Dorsey': 1.6430492035729749e-06, 'enthusiasm': 2.3824213451808133e-05, 'picking': 1.232286902679731e-05, 'up': 0.0015403586283496639, 'rally': 9.036770619651361e-06, '8': 8.790313239115415e-05, 'Savannah': 8.215246017864873e-06, 'newly': 2.3824213451808133e-05, 'Texas': 5.750672212505412e-05, 'Sen.': 2.546726265538111e-05, 'John': 0.00029657038124492193, 'Tower': 1.6430492035729749e-06, 'featured': 7.393721416078387e-06, 'speaker': 2.0538115044662184e-05, 'In': 0.0014803873324192502, 'warned': 1.889506584108921e-05, 'entering': 2.0538115044662184e-05, 'governor': 3.779013168217842e-05, 'force': 0.00016512644495908396, 'petitions': 6.5721968142918994e-06, 'out': 0.0016915191550783775, 'voting': 2.3824213451808133e-05, 'precincts': 4.929147610718925e-06, 'obtain': 3.532555787681896e-05, 'signatures': 4.929147610718925e-06, 'registered': 1.889506584108921e-05, 'Despite': 3.203945946967301e-05, 'warning': 3.6147082478605446e-05, 'unanimous': 4.929147610718925e-06, 'vote': 6.243586973577305e-05, 'according': 9.20107554000866e-05, 'attended': 3.0396410266100035e-05, 'When': 0.00048141341664688163, 'crowd': 4.354080389468383e-05, 'asked': 0.00031464392248422467, 'whether': 0.00021277487186270025, 'wanted': 0.00018648608460553265, 'wait': 6.079282053220007e-05, 'make': 0.0006317524187738088, 'voted': 2.300268885002165e-05, '--': 0.0028202939579330113, 'were': 0.0026946006938596786, 'dissents': 2.4645738053594624e-06, 'largest': 4.436232849647032e-05, 'hurdle': 3.2860984071459497e-06, 'face': 0.0003047856272627868, 'says': 0.00016019729734836503, 'before': 0.0007796268470953765, 'making': 0.00020784572425198132, 'first': 0.0010211550800206038, 'alternative': 2.875336106252706e-05, 'courses': 4.8469951505402755e-05, 'must': 0.0008248107001936334, 'taken': 0.00023002688850021647, 'Five': 3.6968607080391934e-05, 'per': 0.0003047856272627868, 'cent': 0.00012815783787869205, 'each': 0.0006243586973577305, 'county': 5.8328246726840606e-05, 'sign': 7.558026336435684e-05, 'requesting': 7.393721416078387e-06, 'allowed': 7.14726403554244e-05, 'names': 7.311568955899738e-05, 'candidates': 3.203945946967301e-05, 'ballot': 1.0679819823224336e-05, 'hold': 0.00013390851009119744, 'unit': 7.804483716971631e-05, 'system': 0.000323680693103876, 'party': 0.00016101882195015152, 'opposes': 2.4645738053594624e-06, 'platform': 5.8328246726840606e-05, 'Sam': 6.572196814291899e-05, 'Caldwell': 3.2860984071459497e-06, 'Highway': 7.393721416078387e-06, 'public': 0.0003302528899181679, 'relations': 7.722331256792982e-05, 'director': 6.325739433755954e-05, 'resigned': 8.215246017864873e-06, 'Lt.': 7.393721416078387e-06, 'Gov.': 1.6430492035729746e-05, 'Garland': 7.393721416078387e-06, "Byrd's": 3.2860984071459497e-06, 'campaign': 6.654349274470547e-05, "Caldwell's": 2.4645738053594624e-06, 'resignation': 6.5721968142918994e-06, 'expected': 0.00015362510053407315, 'time': 0.001279113804981561, 'Rob': 1.4787442832156774e-05, 'Ledford': 1.6430492035729749e-06, 'Gainesville': 1.6430492035729749e-06, 'assistant': 1.97165904428757e-05, 'three': 0.000455124629389714, 'years': 0.0007755192240864441, 'gubernatorial': 6.5721968142918994e-06, 'starts': 2.546726265538111e-05, 'become': 0.00029574885664313547, 'coordinator': 4.929147610718925e-06, 'Byrd': 8.215246017864873e-06, 'wind': 5.093452531076222e-05, '1961': 0.0001109058212411758, 'session': 6.572196814291899e-05, 'Monday': 5.668519752326763e-05, 'head': 0.0003466833819538977, 'where': 0.0006991174361203008, 'highway': 2.7110311858954083e-05, 'bond': 3.6147082478605446e-05, 'approved': 3.1217934867886523e-05, 'shortly': 2.1359639646448672e-05, 'Before': 5.668519752326763e-05, 'adjournment': 4.107623008932437e-06, 'afternoon': 8.708160778936766e-05, 'Senate': 4.7648426903616267e-05, 'approve': 1.232286902679731e-05, 'study': 0.00019716590442875697, 'allotted': 9.036770619651361e-06, 'rural': 3.861165628396491e-05, 'urban': 3.450403327503247e-05, 'areas': 0.00019387980602161102, 'determine': 7.640178796614333e-05, 'what': 0.0011797093281653958, 'adjustments': 1.7252016637516235e-05, 'made': 0.0009225721278062253, 'Vandiver': 5.750672212505412e-06, 'traditional': 6.407891893934602e-05, 'visit': 9.036770619651362e-05, 'chambers': 7.393721416078387e-06, 'toward': 0.0003130008732806517, 'likely': 0.0001248717394715461, 'mention': 4.1897754691110856e-05, '$100': 1.0679819823224336e-05, 'million': 0.0001684125433662299, 'issue': 0.00011912106725904068, 'earlier': 0.00011829954265725419, 'priority': 1.5608967433943262e-05, 'item': 4.60053777000433e-05, 'Construction': 5.750672212505412e-06, 'bonds': 3.94331808857514e-05, 'Meanwhile': 1.889506584108921e-05, 'learned': 9.611837840901902e-05, 'very': 0.0006350385171809547, 'near': 0.0001569111989412191, 'being': 0.0005684950244362493, 'ready': 0.0001174780180554677, '$30': 2.4645738053594624e-06, 'worth': 7.558026336435684e-05, 'reconstruction': 7.393721416078387e-06, 'go': 0.0004978439086826113, 'courts': 3.779013168217842e-05, 'friendly': 5.093452531076222e-05, 'test': 9.365380460365957e-05, 'validity': 1.3144393628583799e-05, 'then': 0.000842884241432936, 'sales': 0.00010351209982509741, 'begin': 6.818654194827845e-05, 'contracts': 2.0538115044662184e-05, 'let': 0.0002415282329252273, 'repair': 1.7252016637516235e-05, 'most': 0.0008675299794865306, 'heavily': 4.929147610718924e-05, 'traveled': 1.889506584108921e-05, 'highways': 1.232286902679731e-05, 'A': 0.001080304851349231, 'source': 7.475873876257036e-05, '$3': 3.2860984071459497e-06, '$4': 4.929147610718925e-06, 'Rural': 7.393721416078387e-06, 'Roads': 4.107623008932437e-06, 'Authority': 9.036770619651361e-06, 'road': 0.00014705290371978125, 'construction': 7.393721416078387e-05, 'revolving': 5.750672212505412e-06, 'fund': 3.532555787681896e-05, 'department': 5.093452531076222e-05, 'apparently': 8.626008318758118e-05, 'intends': 5.750672212505412e-06, 'issued': 4.1897754691110856e-05, 'every': 0.000357363201777122, 'old': 0.0004674474984165113, 'ones': 9.447532920544604e-05, 'paid': 0.00011912106725904068, 'off': 0.0005216681221344195, 'tax': 0.0001577327235430056, 'authorities': 3.0396410266100035e-05, 'opened': 0.00010844124743581633, '1958': 7.558026336435684e-05, 'battle': 6.49004435411325e-05, 'against': 0.0005085237285058357, 'issuance': 6.5721968142918994e-06, '$50': 6.5721968142918994e-06, 'roads': 4.518385309825681e-05, 'Marvin': 8.215246017864873e-06, 'told': 0.0003384681359360328, 'Constitution': 3.203945946967301e-05, 'however': 0.00031464392248422467, 'consulted': 1.4787442832156774e-05, 'yet': 0.00023331298690736242, 'about': 0.0014516339713567233, 'plans': 8.872465699294064e-05, 'Schley': 1.6430492035729749e-06, 'Rep.': 1.1501344425010824e-05, 'D.': 5.4220623717908165e-05, 'offer': 6.572196814291899e-05, 'resolution': 5.175604991254871e-05, 'House': 0.0001577327235430056, 'rescind': 2.4645738053594624e-06, "body's": 3.2860984071459497e-06, 'action': 0.00023659908531450838, 'itself': 0.00025056500354487865, '$10': 6.5721968142918994e-06, 'day': 0.0005126313515147682, 'increase': 0.00016019729734836503, 'expense': 4.1897754691110856e-05, 'allowances': 2.1359639646448672e-05, 'Sunday': 8.379550938222171e-05, 'research': 0.0001100842966393893, 'done': 0.0002604232987663165, 'quickie': 2.4645738053594624e-06, 'can': 0.0014286312825067015, 'repealed': 3.2860984071459497e-06, 'outright': 8.215246017864873e-06, 'notice': 4.60053777000433e-05, 'given': 0.0003064286764663598, 'reconsideration': 4.107623008932437e-06, 'sought': 4.60053777000433e-05, 'While': 9.940447681616497e-05, 'emphasizing': 4.107623008932437e-06, 'technical': 9.529685380723253e-05, 'details': 4.7648426903616267e-05, 'fully': 6.654349274470547e-05, 'worked': 0.00010597667363045688, 'seek': 5.750672212505412e-05, 'set': 0.00033600356213067336, 'aside': 4.7648426903616267e-05, 'privilege': 1.5608967433943262e-05, '87-31': 1.6430492035729749e-06, 'similar': 0.00012076411646261365, 'passed': 0.000129800887082265, '29-5': 1.6430492035729749e-06, 'As': 0.0004501954817789951, 'word': 0.0002152394456680597, 'offered': 6.900806655006494e-05, 'pointed': 6.161434513398656e-05, 'last': 0.0005233111713379925, 'November': 6.161434513398656e-05, 'rejected': 2.793183646074057e-05, 'constitutional': 2.0538115044662184e-05, 'amendment': 1.4787442832156774e-05, 'allow': 5.8328246726840606e-05, 'pay': 0.00013965918230370285, 'raises': 1.3965918230370285e-05, 'sessions': 2.1359639646448672e-05, 'veteran': 2.300268885002165e-05, 'Jackson': 3.0396410266100035e-05, 'legislator': 6.5721968142918994e-06, 'ask': 9.611837840901902e-05, 'aid': 0.00010269057522331093, 'education': 0.00014458832991442178, 'something': 0.0003458618573521112, 'consistently': 1.6430492035729746e-05, 'opposed': 3.450403327503247e-05, 'past': 0.0002283838392966435, 'Mac': 1.6430492035729749e-06, 'Barber': 4.929147610718925e-06, 'Commerce': 3.368250867324598e-05, 'asking': 5.586367292148114e-05, 'endorse': 5.750672212505412e-06, 'increased': 0.00011665649345368121, 'support': 0.00014623137911799476, 'provided': 0.00010597667363045688, 'expended': 1.0679819823224336e-05, '13th': 5.750672212505412e-06, 'members': 0.00025713720035917055, 'congressional': 1.1501344425010824e-05, 'delegation': 9.85829522143785e-06, 'Washington': 0.0001700555925698029, 'like': 0.0010170474570116714, 'see': 0.0005988914347023494, 'But': 0.0011295963274564201, 'congressmen': 7.393721416078387e-06, 'specifically': 3.0396410266100035e-05, 'him': 0.002117068898803778, 'tossed': 2.6288787257167598e-05, 'hopper': 2.4645738053594624e-06, 'formally': 1.4787442832156774e-05, 'read': 0.00013801613310012988, 'event': 6.736501734649196e-05, 'Congress': 0.0001240502148697596, 'does': 0.0003663999723967734, 'Board': 5.750672212505412e-05, 'Education': 3.286098407145949e-05, 'directed': 5.504214831969465e-05, 'give': 0.00031217934867886523, 'teacher': 6.49004435411325e-05, 'Colquitt': 2.4645738053594624e-06, 'After': 0.0002029165766412624, 'long': 0.000586568565675552, 'hot': 9.7761427612592e-05, 'controversy': 2.218116424823516e-05, 'Miller': 1.889506584108921e-05, 'school': 0.00034339728354675173, 'superintendent': 1.1501344425010824e-05, 'policeman': 1.5608967433943262e-05, 'put': 0.0003491479557592571, 'coolest': 3.2860984071459497e-06, 'I': 0.004240709994421848, 'ever': 0.0002743892169966868, 'saw': 0.00028835513522705705, 'Harry': 2.875336106252706e-05, 'Davis': 2.300268885002165e-05, 'agriculture': 1.0679819823224336e-05, 'defeated': 1.3144393628583799e-05, 'Felix': 2.546726265538111e-05, 'Bush': 4.107623008932437e-06, 'principal': 7.311568955899738e-05, 'Democratic': 5.668519752326763e-05, '1,119': 1.6430492035729749e-06, 'votes': 1.7252016637516235e-05, "Saturday's": 3.2860984071459497e-06, 'got': 0.00038775961204322204, '402': 1.6430492035729749e-06, 'Ordinary': 4.929147610718925e-06, 'Carey': 4.929147610718925e-06, 'armed': 2.6288787257167598e-05, 'pistol': 2.300268885002165e-05, 'stood': 0.00017498474018052182, 'polls': 8.215246017864873e-06, 'insure': 2.0538115044662184e-05, 'order': 0.0002990349550502814, 'calmest': 1.6430492035729749e-06, 'Policeman': 1.6430492035729749e-06, 'Tom': 5.2577574514335196e-05, 'Being': 1.8073541239302723e-05, 'just': 0.0006177865005434386, 'church': 0.0001840215108001732, "didn't": 0.000323680693103876, 'smell': 2.875336106252706e-05, 'drop': 4.7648426903616267e-05, 'liquor': 3.532555787681896e-05, 'bit': 8.379550938222171e-05, 'trouble': 0.00010844124743581633, 'leading': 5.4220623717908165e-05, 'quiet': 6.161434513398656e-05, 'marked': 7.065111575363791e-05, 'anonymous': 1.4787442832156774e-05, 'midnight': 1.97165904428757e-05, 'phone': 4.354080389468383e-05, 'calls': 5.668519752326763e-05, 'veiled': 5.750672212505412e-06, 'threats': 1.232286902679731e-05, 'violence': 3.6147082478605446e-05, 'former': 0.00010597667363045688, 'George': 0.00010679819823224337, 'P.': 3.6147082478605446e-05, 'Callan': 1.6430492035729749e-06, 'shot': 9.036770619651362e-05, 'himself': 0.0004929147610718925, 'death': 0.00021770401947341915, 'March': 8.050941097507576e-05, '18': 4.60053777000433e-05, 'four': 0.0002686385447841814, 'days': 0.00031053629947529226, 'post': 5.093452531076222e-05, 'dispute': 2.875336106252706e-05, 'board': 0.00014048070690548934, 'During': 0.00010926277203760282, 'reportedly': 8.215246017864873e-06, 'telephone': 5.504214831969465e-05, 'too': 0.0006588627306327629, 'subjected': 2.0538115044662184e-05, 'soon': 0.00014540985451620827, 'scheduled': 3.203945946967301e-05, 'Many': 8.708160778936766e-05, 'local': 0.00022509774088949754, 'feared': 1.232286902679731e-05, 'carry': 7.311568955899738e-05, 'gun': 8.215246017864874e-05, 'promised': 3.779013168217842e-05, 'Sheriff': 4.929147610718925e-06, 'Tabb': 1.6430492035729749e-06, 'ordinary': 5.586367292148114e-05, 'good': 0.0006309308941720224, 'promise': 3.779013168217842e-05, 'Everything': 1.97165904428757e-05, 'went': 0.0004165129731057491, 'real': 0.00020702419965019483, 'smooth': 3.532555787681896e-05, 'sheriff': 1.3144393628583799e-05, 'There': 0.0006999389607220873, "wasn't": 0.00012158564106440014, 'Austin': 1.5608967433943262e-05, 'approval': 4.2719279292897344e-05, 'Price': 7.393721416078387e-06, "Daniel's": 1.6430492035729749e-06, 'abandoned': 2.1359639646448672e-05, 'seemed': 0.0002743892169966868, 'certain': 0.0002497434789430922, 'Thursday': 2.793183646074057e-05, 'despite': 5.504214831969465e-05, 'adamant': 4.929147610718925e-06, 'protests': 8.215246017864873e-06, 'bankers': 9.85829522143785e-06, 'Daniel': 1.232286902679731e-05, 'personally': 2.9574885664313547e-05, 'led': 0.00010761972283402986, 'fight': 8.050941097507576e-05, 'measure': 7.229416495721089e-05, 'watered': 6.5721968142918994e-06, 'down': 0.0007303353709881873, 'considerably': 3.6968607080391934e-05, 'rejection': 9.85829522143785e-06, 'Legislatures': 1.6430492035729749e-06, 'hearing': 6.243586973577305e-05, 'Revenue': 1.3965918230370285e-05, 'Taxation': 2.4645738053594624e-06, 'Under': 4.929147610718924e-05, 'rules': 6.325739433755954e-05, 'automatically': 2.9574885664313547e-05, 'subcommittee': 4.107623008932437e-06, 'week': 0.00021195334726091376, 'questions': 0.0001100842966393893, 'taunted': 2.4645738053594624e-06, 'appearing': 1.3965918230370285e-05, 'witnesses': 1.6430492035729746e-05, 'left': 0.00038775961204322204, 'little': 0.0006481829108095385, 'doubt': 9.365380460365957e-05, 'recommend': 2.1359639646448672e-05, 'passage': 4.025470548753788e-05, 'termed': 1.3144393628583799e-05, 'extremely': 4.1897754691110856e-05, 'conservative': 2.546726265538111e-05, 'estimate': 2.875336106252706e-05, 'produce': 6.818654194827845e-05, '17': 3.450403327503247e-05, 'dollars': 8.050941097507576e-05, 'help': 0.0002497434789430922, 'erase': 1.6430492035729749e-06, 'anticipated': 1.889506584108921e-05, 'deficit': 1.0679819823224336e-05, '63': 4.929147610718925e-06, 'current': 8.379550938222171e-05, 'fiscal': 9.611837840901902e-05, '31': 3.203945946967301e-05, 'merely': 0.0001100842966393893, 'means': 0.00023988518372165433, 'enforcing': 4.929147610718925e-06, 'escheat': 2.4645738053594624e-06, 'books': 7.640178796614333e-05, 'republic': 7.393721416078387e-06, 'permits': 2.300268885002165e-05, 'over': 0.0009915801943562903, 'bank': 4.518385309825681e-05, 'accounts': 3.0396410266100035e-05, 'stocks': 1.4787442832156774e-05, 'personal': 0.00015855424814479205, 'persons': 9.693990301080551e-05, 'missing': 2.793183646074057e-05, 'seven': 7.804483716971631e-05, 'bill': 6.49004435411325e-05, 'drafted': 4.107623008932437e-06, 'banks': 1.7252016637516235e-05, 'insurance': 3.450403327503247e-05, 'firms': 4.60053777000433e-05, 'pipeline': 4.107623008932437e-06, 'companies': 7.14726403554244e-05, 'corporations': 1.8073541239302723e-05, 'report': 0.00012651478867511907, 'treasurer': 1.1501344425010824e-05, 'cannot': 0.00021277487186270025, 'enforced': 1.7252016637516235e-05, 'now': 0.0008593147334686658, 'because': 0.0006670779766506277, 'almost': 0.0003343605129271004, 'impossible': 6.818654194827845e-05, 'locate': 1.232286902679731e-05, 'declared': 5.504214831969465e-05, 'Dewey': 3.2860984071459497e-06, 'Lawrence': 3.286098407145949e-05, 'Tyler': 2.4645738053594624e-06, 'lawyer': 3.6147082478605446e-05, 'representing': 2.3824213451808133e-05, 'Bankers': 4.107623008932437e-06, 'sounded': 2.9574885664313547e-05, 'opposition': 3.779013168217842e-05, 'keynote': 4.107623008932437e-06, 'violate': 6.5721968142918994e-06, 'their': 0.0021055675543787673, 'contractual': 6.5721968142918994e-06, 'obligations': 1.889506584108921e-05, 'depositors': 1.6430492035729749e-06, 'undermine': 7.393721416078387e-06, 'confidence': 4.60053777000433e-05, 'customers': 3.286098407145949e-05, 'If': 0.0006021775331094953, 'you': 0.002273158573143211, 'destroy': 4.025470548753788e-05, 'economy': 6.325739433755954e-05, 'You': 0.00042801431753075993, 'circulation': 1.3965918230370285e-05, 'millions': 4.107623008932437e-05, 'Charles': 7.968788637328927e-05, 'Hughes': 2.300268885002165e-05, 'Sherman': 2.464573805359462e-05, 'sponsor': 1.3144393628583799e-05, 'failure': 7.065111575363791e-05, 'enact': 6.5721968142918994e-06, 'amount': 0.00014212375610906232, 'gift': 2.7110311858954083e-05, "taxpayers'": 2.4645738053594624e-06, 'pockets': 1.4787442832156774e-05, 'contention': 8.215246017864873e-06, 'denied': 3.94331808857514e-05, 'several': 0.00027849684000561925, 'including': 0.00014048070690548934, 'Scott': 1.3965918230370285e-05, 'Hudson': 4.436232849647032e-05, 'Gaynor': 1.6430492035729749e-06, 'Jones': 5.997129593041358e-05, 'Houston': 2.1359639646448672e-05, 'Brady': 1.6430492035729749e-06, 'Harlingen': 1.6430492035729749e-06, 'Howard': 2.7110311858954083e-05, 'Cox': 4.929147610718925e-06, 'argued': 2.464573805359462e-05, 'probably': 0.0001947013306233975, 'unconstitutional': 2.4645738053594624e-06, 'impair': 4.107623008932437e-06, 'complained': 1.889506584108921e-05, 'enough': 0.0003507910049628301, 'introduced': 4.354080389468383e-05, 'only': 0.0013530510191423447, 'Senators': 4.929147610718925e-06, 'unanimously': 9.036770619651361e-06, 'Parkhouse': 4.929147610718925e-06, 'Dallas': 4.8469951505402755e-05, 'authorizing': 4.929147610718925e-06, 'schools': 0.0001569111989412191, 'deaf': 9.85829522143785e-06, 'designed': 8.790313239115415e-05, 'special': 0.00019223675681803804, 'schooling': 4.929147610718925e-06, 'students': 0.0001684125433662299, 'scholastic': 8.215246017864873e-06, 'reduced': 6.407891893934602e-05, 'debate': 2.3824213451808133e-05, 'authorize': 4.929147610718925e-06, 'Agency': 7.393721416078387e-06, 'establish': 4.8469951505402755e-05, 'county-wide': 2.4645738053594624e-06, '300,000': 5.750672212505412e-06, 'population': 0.00011254887044474877, 'require': 7.065111575363791e-05, 'children': 0.0002817829384127652, 'between': 0.0005890331394809115, '6': 9.447532920544604e-05, 'attend': 4.518385309825681e-05, 'permitting': 8.215246017864873e-06, 'older': 7.722331256792982e-05, 'residential': 3.450403327503247e-05, 'School': 6.325739433755954e-05, 'Deaf': 1.6430492035729749e-06, 'here': 0.0004994869578861844, 'Operating': 5.750672212505412e-06, 'budget': 4.7648426903616267e-05, 'five': 0.00019963047823411644, 'Harris': 2.3824213451808133e-05, 'Bexar': 1.6430492035729749e-06, 'Tarrant': 1.6430492035729749e-06, 'El': 1.7252016637516235e-05, 'Paso': 9.036770619651361e-06, '$451,500': 1.6430492035729749e-06, 'savings': 1.6430492035729746e-05, '$157,460': 1.6430492035729749e-06, 'yearly': 9.85829522143785e-06, "year's": 3.0396410266100035e-05, 'capital': 6.654349274470547e-05, 'outlay': 2.4645738053594624e-06, '$88,000': 1.6430492035729749e-06, 'absorbed': 2.0538115044662184e-05, 'TEA': 1.6430492035729749e-06, 'estimated': 5.4220623717908165e-05, '182': 1.6430492035729749e-06, 'scholastics': 1.6430492035729749e-06, 'saving': 1.8073541239302723e-05, 'coming': 0.00014048070690548934, 'live': 0.00014458832991442178, 'get': 0.0005914977132862709, 'hear': 0.0001248717394715461, 'horse': 9.11892307983001e-05, 'parimutuels': 1.6430492035729749e-06, 'Reps.': 2.4645738053594624e-06, 'V.': 1.232286902679731e-05, 'Red': 6.243586973577305e-05, 'Joe': 4.60053777000433e-05, 'Ratcliff': 3.2860984071459497e-06, 'still': 0.0006013560085077088, 'expects': 1.889506584108921e-05, 'tell': 0.0002020950520394759, 'folks': 1.5608967433943262e-05, 'why': 0.00019963047823411644, 'thinks': 1.97165904428757e-05, "Berry's": 1.6430492035729749e-06, "We're": 2.218116424823516e-05, "'": 0.00026124482336810297, 'pro': 1.232286902679731e-05, 'letters': 9.11892307983001e-05, 'con': 6.5721968142918994e-06, 'betting': 4.107623008932437e-06, 'believe': 0.00016430492035729747, 'if': 0.001205176590820777, 'people': 0.0006670779766506277, 'better': 0.00033107441451995444, 'informed': 4.6826902301829785e-05, 'question': 0.00020620267504840834, 'oppose': 1.3144393628583799e-05, "I'm": 0.0002218116424823516, 'willing': 5.750672212505412e-05, 'stake': 1.6430492035729746e-05, 'my': 0.0009546115872758983, 'ex-gambler': 1.6430492035729749e-06, 'San': 5.8328246726840606e-05, 'Antonio': 5.750672212505412e-06, 'advocacy': 3.2860984071459497e-06, 'ponies': 5.750672212505412e-06, 'heard': 0.00019798742903054346, 'option': 4.929147610718925e-06, 'proposal': 3.450403327503247e-05, 'favorable': 2.793183646074057e-05, 'although': 0.00016348339575551098, 'faces': 5.9149771328627094e-05, 'hard': 0.00016430492035729747, 'sledding': 2.4645738053594624e-06, 'later': 0.0002941058074395625, 'house': 0.00032943136531638146, 'finally': 0.00010844124743581633, 'sent': 0.00011829954265725419, 'extending': 2.3824213451808133e-05, 'authority': 6.900806655006494e-05, 'planning': 9.529685380723253e-05, 'cities': 8.790313239115415e-05, 'senate': 4.929147610718925e-06, 'quickly': 7.229416495721089e-05, 'whipped': 1.0679819823224336e-05, 'meager': 4.929147610718925e-06, 'fare': 6.5721968142918994e-06, 'bills': 3.779013168217842e-05, 'committees': 1.3144393628583799e-05, 'passing': 5.175604991254871e-05, 'calendar': 2.3824213451808133e-05, 'One': 0.0003450403327503247, 'validated': 1.6430492035729749e-06, 'acts': 3.1217934867886523e-05, 'districts': 3.0396410266100035e-05, 'Another': 9.20107554000866e-05, 'enlarged': 6.5721968142918994e-06, 'Beaumont': 3.2860984071459497e-06, 'Navigation': 1.6430492035729749e-06, 'District': 4.8469951505402755e-05, 'third': 0.00014130223150727583, 'amended': 1.232286902679731e-05, 'creation': 3.861165628396491e-05, 'Lamar': 3.2860984071459497e-06, 'previously': 4.60053777000433e-05, 'adopted': 3.779013168217842e-05, 'Without': 3.532555787681896e-05, 'dissent': 4.929147610718925e-06, 'senators': 4.929147610718925e-06, 'A.': 9.11892307983001e-05, 'R.': 5.093452531076222e-05, 'Schwartz': 5.750672212505412e-06, 'Galveston': 2.4645738053594624e-06, 'mentally': 1.3144393628583799e-05, 'retarded': 6.5721968142918994e-06, 'Gulf': 1.4787442832156774e-05, 'Coast': 2.300268885002165e-05, 'district': 6.407891893934602e-05, 'Money': 5.750672212505412e-06, 'meantime': 9.036770619651361e-06, 'accept': 5.9149771328627094e-05, 'gifts': 9.85829522143785e-06, 'donations': 2.4645738053594624e-06, 'site': 5.3399099116121684e-05, 'Two': 8.379550938222171e-05, 'revision': 7.393721416078387e-06, 'Louis': 6.079282053220007e-05, 'Crump': 1.6430492035729749e-06, 'Saba': 1.6430492035729749e-06, '17,000': 1.6430492035729749e-06, 'retailers': 4.929147610718925e-06, 'group': 0.0003138223978824382, 'miscellaneous': 8.215246017864873e-06, 'excise': 4.107623008932437e-06, 'taxes': 3.6968607080391934e-05, 'eliminating': 1.232286902679731e-05, 'requirement': 2.300268885002165e-05, 'return': 0.00014705290371978125, 'notarized': 1.6430492035729749e-06, 'Instead': 3.6968607080391934e-05, 'certificate': 6.5721968142918994e-06, 'correctness': 3.2860984071459497e-06, 'violation': 1.4787442832156774e-05, 'penalty': 1.232286902679731e-05, 'plus': 5.586367292148114e-05, '$1,000': 9.85829522143785e-06, 'fine': 0.00012322869026797312, 'series': 0.00010104752601973795, 'Research': 3.203945946967301e-05, 'League': 3.861165628396491e-05, 'Aikin': 1.6430492035729749e-06, 'Paris': 5.586367292148114e-05, 'relieve': 1.1501344425010824e-05, 'estate': 4.025470548753788e-05, 'brokers': 4.107623008932437e-06, 'own': 0.0006350385171809547, 'annual': 7.393721416078387e-05, 'licensing': 5.750672212505412e-06, 'fee': 1.3965918230370285e-05, '$12': 1.6430492035729749e-06, 'license': 3.0396410266100035e-05, 'Natural': 4.107623008932437e-06, 'gas': 7.804483716971631e-05, 'utility': 2.464573805359462e-05, 'right': 0.0004912717118683194, 'eminent': 8.215246017864873e-06, 'domain': 8.215246017864873e-06, 'Frank': 3.861165628396491e-05, 'Owen': 2.1359639646448672e-05, '3': 0.00023659908531450838, 'acquire': 2.300268885002165e-05, 'sites': 1.3965918230370285e-05, 'underground': 1.5608967433943262e-05, 'storage': 3.450403327503247e-05, 'reservoirs': 3.2860984071459497e-06, 'Marshall': 2.300268885002165e-05, 'Formby': 1.6430492035729749e-06, 'Plainview': 1.6430492035729749e-06, 'Commission': 6.325739433755954e-05, 'suggested': 8.543855858579469e-05, 'fill': 4.107623008932437e-05, 'vacancies': 2.4645738053594624e-06, 'need': 0.00028999818443063, 'costly': 1.3965918230370285e-05, 'elections': 4.1897754691110856e-05, "Formby's": 1.6430492035729749e-06, 'appointee': 2.4645738053594624e-06, 'selected': 6.079282053220007e-05, 'composed': 3.368250867324598e-05, 'lieutenant': 1.0679819823224336e-05, 'chief': 6.818654194827845e-05, 'justice': 6.243586973577305e-05, 'Supreme': 2.793183646074057e-05, 'representatives': 2.300268885002165e-05, 'decided': 0.00011665649345368121, 'taking': 0.00013473003469298392, 'poll': 8.215246017864873e-06, 'kind': 0.0002554941511555976, 'Texans': 8.215246017864873e-06, 'prefer': 2.300268885002165e-05, 'An': 0.00016348339575551098, 'adverse': 9.85829522143785e-06, '81': 3.2860984071459497e-06, '65': 1.1501344425010824e-05, 'kept': 0.00015362510053407315, 'Affairs': 1.889506584108921e-05, 'referendum': 1.6430492035729749e-06, 'April': 5.8328246726840606e-05, '4': 0.0001700555925698029, 'U.S.': 0.00013308698548941095, 'senator': 3.2860984071459497e-06, 'Wesley': 2.4645738053594624e-06, 'Roberts': 3.1217934867886523e-05, 'Seminole': 1.6430492035729749e-06, 'idea': 0.00015937577274657854, 'delay': 1.8073541239302723e-05, 'kill': 5.175604991254871e-05, 'West': 0.00015444662513585964, 'Texan': 4.929147610718925e-06, 'reported': 9.858295221437849e-05, 'gotten': 1.3965918230370285e-05, 'Bill': 5.4220623717908165e-05, 'Hollowell': 1.6430492035729749e-06, 'Feb.': 1.7252016637516235e-05, '22': 3.861165628396491e-05, 'final': 0.0001248717394715461, 'legislative': 3.286098407145949e-05, 'two-thirds': 1.0679819823224336e-05, 'majorities': 3.2860984071459497e-06, 'printed': 2.6288787257167598e-05, 'Opponents': 1.6430492035729749e-06, "couldn't": 0.0001429452807108488, 'information': 0.00021277487186270025, 'proposals': 2.300268885002165e-05, 'intelligent': 2.1359639646448672e-05, 'choice': 9.11892307983001e-05, 'All': 0.00022674079009307052, 'except': 0.00014130223150727583, 'absent': 2.3824213451808133e-05, 'Paradise': 6.5721968142918994e-06, 'lost': 0.0001429452807108488, 'alleged': 9.036770619651361e-06, 'water': 0.00035489862797176256, 'needs': 0.00012569326407333258, "Texas'": 3.2860984071459497e-06, 'big': 0.0002604232987663165, 'Cotten': 4.107623008932437e-06, 'Weatherford': 2.4645738053594624e-06, 'insisted': 3.6147082478605446e-05, 'development': 0.0002554941511555976, 'Representatives': 1.232286902679731e-05, 'effort': 0.00011994259186082716, 'Fort': 3.94331808857514e-05, 'Worth': 3.2860984071459497e-06, 'cover': 7.065111575363791e-05, 'places': 8.215246017864874e-05, 'Wise': 3.2860984071459497e-06, 'hamlet': 3.2860984071459497e-06, '250': 9.85829522143785e-06, 'shouting': 2.7110311858954083e-05, 'ended': 4.929147610718924e-05, '114': 4.107623008932437e-06, 'sending': 2.875336106252706e-05, 'sponsored': 2.546726265538111e-05, 'Most': 8.626008318758118e-05, '$5,000,000': 3.2860984071459497e-06, '$15,000,000': 2.4645738053594624e-06, 'maximum': 6.49004435411325e-05, 'loan': 3.450403327503247e-05, 'could': 0.0012988303954244366, 'project': 7.558026336435684e-05, 'construed': 5.750672212505412e-06, 'large': 0.000291641233634203, 'felt': 0.0002941058074395625, 'spent': 8.626008318758118e-05, 'providing': 4.6826902301829785e-05, 'Statements': 1.6430492035729749e-06, 'paying': 2.218116424823516e-05, 'benefit': 5.175604991254871e-05, 'pending': 1.1501344425010824e-05, 'sway': 4.929147610718925e-06, "Cotten's": 1.6430492035729749e-06, 'attack': 8.543855858579469e-05, "bill's": 2.4645738053594624e-06, 'defenders': 5.750672212505412e-06, 'mostly': 3.203945946967301e-05, 'small-town': 5.750672212505412e-06, 'Buchanan': 2.4645738053594624e-06, 'Dumas': 1.6430492035729749e-06, 'Eligio': 1.6430492035729749e-06, 'Kika': 1.6430492035729749e-06, 'De': 6.161434513398656e-05, 'La': 3.532555787681896e-05, 'Garza': 1.6430492035729749e-06, 'Mission': 1.3965918230370285e-05, 'F.': 4.929147610718924e-05, 'Collins': 5.750672212505412e-06, 'Newton': 5.750672212505412e-06, 'Chapman': 5.750672212505412e-06, 'Sulphur': 2.4645738053594624e-06, 'Springs': 1.1501344425010824e-05, 'poor': 7.640178796614333e-05, "boy's": 1.3965918230370285e-05, 'peanut': 4.929147610718925e-06, 'serving': 3.1217934867886523e-05, 'reducing': 2.546726265538111e-05, 'learning': 5.011300070897573e-05, 'educational': 5.4220623717908165e-05, 'methods': 0.00011419191964832175, 'C.': 7.722331256792982e-05, 'Grover': 4.107623008932437e-06, 'teaches': 9.85829522143785e-06, 'history': 0.0002209901178805651, '24': 4.025470548753788e-05, '12': 7.968788637328927e-05, 'semester': 9.036770619651361e-06, 'hours': 0.0001429452807108488, 'so-called': 2.6288787257167598e-05, 'teaching': 5.093452531076222e-05, 'required': 0.0001495174775251407, 'junior': 2.464573805359462e-05, 'senior': 2.6288787257167598e-05, 'high': 0.00037954436602535716, 'normal': 0.00011172734584296228, 'college': 0.00013473003469298392, '30': 9.283228000187308e-05, 'junior-senior': 1.6430492035729749e-06, 'teachers': 5.3399099116121684e-05, 'least': 0.00028260446301455166, 'credit': 4.60053777000433e-05, 'subject': 0.00013062241168405148, 'remainder': 1.6430492035729746e-05, '4-year': 2.4645738053594624e-06, 'subjects': 6.654349274470547e-05, 'person': 0.00014048070690548934, "master's": 5.750672212505412e-06, 'degree': 0.00010351209982509741, 'physics': 1.6430492035729746e-05, 'chemistry': 1.3965918230370285e-05, 'math': 3.2860984071459497e-06, 'English': 0.00016101882195015152, 'permitted': 4.7648426903616267e-05, 'teach': 3.450403327503247e-05, 'College': 8.626008318758118e-05, 'Fifty-three': 1.6430492035729749e-06, '150': 8.215246017864873e-06, 'immediately': 9.693990301080551e-05, 'joined': 4.60053777000433e-05, 'co-signers': 1.6430492035729749e-06, 'sp.': 2.4645738053594624e-06, 'regents': 2.4645738053594624e-06, 'Junior': 3.861165628396491e-05, 'named': 6.818654194827845e-05, 'Dr.': 0.00015855424814479205, 'Clarence': 7.393721416078387e-06, 'Clark': 2.9574885664313547e-05, 'Hays': 5.750672212505412e-06, 'Kan.': 3.2860984071459497e-06, "school's": 3.2860984071459497e-06, 'president': 0.00010351209982509741, 'succeed': 1.232286902679731e-05, 'McLemore': 1.6430492035729749e-06, 'retire': 8.215246017864873e-06, 'close': 0.00018977218301267858, 'holds': 3.450403327503247e-05, 'earned': 1.5608967433943262e-05, 'Doctor': 1.1501344425010824e-05, 'University': 0.00010269057522331093, 'Oklahoma': 1.1501344425010824e-05, 'Master': 9.85829522143785e-06, 'Science': 2.218116424823516e-05, '&': 0.00013473003469298392, 'Bachelor': 2.4645738053594624e-06, 'Southwestern': 2.4645738053594624e-06, 'Okla.': 3.2860984071459497e-06, 'addition': 0.00011665649345368121, 'Rhode': 8.708160778936766e-05, 'Island': 0.00011172734584296228, 'Massachusetts': 4.1897754691110856e-05, 'Institute': 3.779013168217842e-05, 'Technology': 7.393721416078387e-06, 'captain': 3.6968607080391934e-05, 'basketball': 7.393721416078387e-06, 'team': 6.736501734649196e-05, 'football': 2.546726265538111e-05, 'letterman': 1.6430492035729749e-06, 'served': 9.858295221437849e-05, 'athletic': 1.1501344425010824e-05, 'Raymondville': 1.6430492035729749e-06, 'High': 3.0396410266100035e-05, 'instructor': 7.393721416078387e-06, 'associate': 1.4787442832156774e-05, 'professor': 2.300268885002165e-05, 'border': 1.232286902679731e-05, 'patrolman': 5.750672212505412e-06, 'Signal': 6.5721968142918994e-06, 'Corps': 6.982959115185143e-05, 'Army': 6.161434513398656e-05, 'Denton': 4.107623008932437e-06, 'Principals': 1.6430492035729749e-06, 'Independent': 4.107623008932437e-06, 're-elected': 3.2860984071459497e-06, '1961-62': 2.4645738053594624e-06, 'recommendation': 2.0538115044662184e-05, 'Supt.': 2.4645738053594624e-06, 'Chester': 9.036770619651361e-06, 'O.': 2.464573805359462e-05, 'Strickland': 1.6430492035729749e-06, 'racial': 2.0538115044662184e-05, 'discrimination': 1.97165904428757e-05, 'employment': 3.6968607080391934e-05, 'called': 0.0003261452669092355, 'yesterday': 6.654349274470547e-05, 'blue': 8.050941097507576e-05, 'ribbon': 1.0679819823224336e-05, 'dependent': 3.286098407145949e-05, 'culminating': 2.4645738053594624e-06, 'ADC': 7.393721416078387e-06, 'Cook': 1.97165904428757e-05, 'New': 0.00047319817062901675, 'York': 0.00024892195434130567, 'consulting': 9.036770619651361e-06, 'firm': 8.954618159472713e-05, '10': 0.00012569326407333258, 'range': 0.00012733631327690556, 'soaring': 4.107623008932437e-06, 'case': 0.0002924627582359895, 'load': 3.779013168217842e-05, 'serious': 9.365380460365957e-05, 'causes': 4.7648426903616267e-05, 'family': 0.0002563156757573841, 'breakdown': 1.1501344425010824e-05, 'desertion': 2.4645738053594624e-06, 'dependency': 3.2860984071459497e-06, 'Must': 9.036770619651361e-06, 'solve': 1.7252016637516235e-05, 'monthly': 1.7252016637516235e-05, '100,000': 8.215246017864873e-06, 'recipients': 4.929147610718925e-06, '4.4': 1.6430492035729749e-06, 'Virgil': 2.4645738053594624e-06, 'Martin': 4.60053777000433e-05, 'Carson': 2.4645738053594624e-06, 'Pirie': 1.6430492035729749e-06, 'Co.': 4.025470548753788e-05, 'We': 0.0005586367292148114, 'problems': 0.00019798742903054346, 'forced': 6.572196814291899e-05, 'depend': 3.779013168217842e-05, 'subsistence': 9.036770619651361e-06, 'volume': 9.529685380723253e-05, 'cases': 0.00012158564106440014, 'decrease': 1.3144393628583799e-05, 'community': 0.0001766277893840948, 'able': 0.00017827083858766777, 'deal': 0.0001109058212411758, 'effectively': 3.0396410266100035e-05, 'Relatively': 1.6430492035729749e-06, 'limited': 8.46170339840082e-05, 'skills': 3.1217934867886523e-05, 'color': 0.00011337039504653526, 'underlying': 1.4787442832156774e-05, 'breakups': 1.6430492035729749e-06, 'Calls': 2.4645738053594624e-06, 'extension': 2.875336106252706e-05, 'Other': 6.243586973577305e-05, 'Extension': 2.4645738053594624e-06, 'living': 0.00015280357593228666, 'relatives': 1.8073541239302723e-05, 'parents': 6.736501734649196e-05, 'preserving': 6.5721968142918994e-06, 'unity': 5.504214831969465e-05, 'projects': 5.4220623717908165e-05, 'prevention': 2.1359639646448672e-05, 'illegitimacy': 4.107623008932437e-06, 'Several': 3.286098407145949e-05, 'defendants': 9.036770619651361e-06, 'Summerdale': 2.4645738053594624e-06, 'police': 0.0001109058212411758, 'burglary': 4.107623008932437e-06, 'trial': 9.7761427612592e-05, 'statements': 5.586367292148114e-05, 'indicating': 1.3144393628583799e-05, 'guilt': 2.793183646074057e-05, 'arrest': 1.6430492035729746e-05, 'Parsons': 4.929147610718925e-06, 'Criminal': 4.107623008932437e-06, 'disclosure': 2.4645738053594624e-06, 'Bellows': 5.750672212505412e-06, 'defense': 0.0001043336244268839, 'counsel': 1.232286902679731e-05, 'startled': 1.6430492035729746e-05, 'observers': 1.5608967433943262e-05, 'viewed': 2.0538115044662184e-05, 'prelude': 3.2860984071459497e-06, 'quarrel': 1.7252016637516235e-05, 'six': 0.000161840346551938, 'attorneys': 5.750672212505412e-06, 'eight': 7.722331256792982e-05, 'policemen': 1.232286902679731e-05, 'grant': 2.9574885664313547e-05, 'client': 1.3144393628583799e-05, 'Alan': 4.929147610718925e-06, 'Clements': 3.2860984071459497e-06, 'separate': 6.325739433755954e-05, 'request': 4.107623008932437e-05, 'while': 0.00046087530160221946, 'all-woman': 1.6430492035729749e-06, 'courtroom': 2.4645738053594624e-06, 'Fears': 1.6430492035729749e-06, 'prejudicial': 4.107623008932437e-06, 'aspects': 5.2577574514335196e-05, 'highly': 7.722331256792982e-05, 'Some': 0.00017416321557873533, 'strongly': 3.1217934867886523e-05, 'indicated': 8.954618159472713e-05, 'knew': 0.000325323742307449, 'receiving': 2.7110311858954083e-05, 'stolen': 1.5608967433943262e-05, 'involving': 2.793183646074057e-05, 'themselves': 0.00022263316708413808, 'others': 0.0002423497575270138, 'leaned': 3.203945946967301e-05, 'bench': 2.3824213451808133e-05, 'inquired': 1.3965918230370285e-05, 'mean': 0.00016430492035729747, 'admitting': 6.5721968142918994e-06, '?': 0.0038562364807857717, 'Yes': 7.393721416078387e-05, 'your': 0.0007139048789524576, 'honor': 5.175604991254871e-05, 'replied': 4.60053777000433e-05, 'What': 0.000389402661246795, 'amounts': 3.6968607080391934e-05, 'true': 0.00017909236318945426, 'free-for-all': 1.6430492035729749e-06, 'conflict': 4.2719279292897344e-05, 'July': 5.504214831969465e-05, 'President': 0.00021195334726091376, 'Kennedy': 0.00011583496885189472, 'today': 0.0002029165766412624, 'pushed': 4.436232849647032e-05, 'White': 9.20107554000866e-05, 'business': 0.0002990349550502814, 'devote': 1.3144393628583799e-05, 'attention': 0.00014623137911799476, 'working': 0.00012240716566618663, 'Berlin': 6.161434513398656e-05, 'crisis': 6.407891893934602e-05, 'address': 6.325739433755954e-05, 'deliver': 1.5608967433943262e-05, 'tomorrow': 4.929147610718924e-05, 'American': 0.0004682690230182978, 'nationwide': 4.929147610718925e-06, 'television': 4.107623008932437e-05, 'radio': 8.708160778936766e-05, 'much': 0.0007401936662096251, 'week-end': 4.929147610718925e-06, 'summer': 0.00010926277203760282, 'Cape': 1.4787442832156774e-05, 'Cod': 4.929147610718925e-06, 'writing': 9.20107554000866e-05, 'drafts': 3.2860984071459497e-06, 'portions': 9.85829522143785e-06, 'aids': 1.889506584108921e-05, 'whom': 0.00011829954265725419, 'talked': 4.8469951505402755e-05, 'Shortly': 8.215246017864873e-06, 'Chief': 3.1217934867886523e-05, 'returned': 9.529685380723253e-05, 'midmorning': 1.6430492035729749e-06, 'Hyannis': 2.4645738053594624e-06, 'Port': 7.393721416078387e-06, 'Mass.': 1.0679819823224336e-05, 'spokesman': 1.1501344425010824e-05, 'text': 4.518385309825681e-05, 'quite': 0.00022345469168592457, 'way': 0.0007336214693953332, 'completion': 3.0396410266100035e-05, 'Decisions': 2.4645738053594624e-06, 'Asked': 1.3965918230370285e-05, 'Pierre': 1.4787442832156774e-05, 'Salinger': 4.107623008932437e-06, 'press': 8.626008318758118e-05, 'secretary': 3.286098407145949e-05, 'say': 0.00040747620248609775, "it's": 0.0001174780180554677, 'thru': 1.3144393628583799e-05, 'advisers': 1.0679819823224336e-05, 'staff': 8.543855858579469e-05, 'doing': 0.00013473003469298392, 'involved': 0.00012158564106440014, 'composition': 2.1359639646448672e-05, 'wording': 4.107623008932437e-06, 'rather': 0.000291641233634203, 'minute': 4.518385309825681e-05, 'decisions': 4.354080389468383e-05, 'meet': 0.00012158564106440014, 'latest': 2.875336106252706e-05, 'precipitated': 8.215246017864873e-06, "Russia's": 1.232286902679731e-05, 'demands': 4.60053777000433e-05, 'Nov.': 1.8073541239302723e-05, 'dismissed': 1.232286902679731e-05, 'Acting': 8.215246017864873e-06, 'Karns': 6.5721968142918994e-06, 'prosecution': 8.215246017864873e-06, 'obtained': 9.529685380723253e-05, 'unfair': 1.1501344425010824e-05, 'fundamentally': 7.393721416078387e-06, 'illegal': 8.215246017864873e-06, 'matter': 0.0002522080527484516, 'even': 0.0008100232573614765, 'significance': 5.504214831969465e-05, 'innocence': 2.3824213451808133e-05, '50': 5.093452531076222e-05, 'legal': 5.9149771328627094e-05, 'rights': 5.750672212505412e-05, "Karns'": 1.6430492035729749e-06, 'ruling': 1.6430492035729746e-05, 'pertained': 1.6430492035729749e-06, 'ruled': 2.6288787257167598e-05, 'unable': 4.518385309825681e-05, 'Contempt': 1.6430492035729749e-06, 'proceedings': 1.5608967433943262e-05, 'originally': 1.8073541239302723e-05, '677': 2.4645738053594624e-06, '133': 4.107623008932437e-06, 'Morris': 1.8073541239302723e-05, 'Wexler': 5.750672212505412e-06, 'prosecutor': 2.4645738053594624e-06, 'Issue': 7.393721416078387e-06, 'subpoenas': 1.6430492035729749e-06, 'admitted': 3.6968607080391934e-05, 'hearings': 7.393721416078387e-06, 'subpenas': 1.6430492035729749e-06, '200': 3.203945946967301e-05, 'questioned': 2.3824213451808133e-05, 'individuals': 5.997129593041358e-05, 'building': 0.00012158564106440014, 'Mayer': 4.929147610718925e-06, 'Goldberg': 9.036770619651361e-06, 'judges': 1.5608967433943262e-05, '58th': 2.4645738053594624e-06, 'precinct': 5.750672212505412e-06, '23d': 4.929147610718925e-06, 'ward': 1.889506584108921e-05, 'procedure': 6.325739433755954e-05, 'constituted': 9.85829522143785e-06, 'intimidation': 4.929147610718925e-06, 'repeatedly': 1.5608967433943262e-05, 'coercion': 4.107623008932437e-06, 'used': 0.0005019515316915438, 'questioning': 1.8073541239302723e-05, 'wrongful': 1.6430492035729749e-06, 'privately': 9.036770619651361e-06, 'outside': 0.0001569111989412191, 'room': 0.00030149952885564086, 'misuse': 4.929147610718925e-06, 'processes': 4.7648426903616267e-05, 'Actually': 3.203945946967301e-05, 'abuse': 1.3965918230370285e-05, 'process': 0.00016101882195015152, 'contempt': 1.232286902679731e-05, 'altho': 2.4645738053594624e-06, 'vindication': 3.2860984071459497e-06, 'function': 9.365380460365957e-05, 'judge': 3.203945946967301e-05, 'East': 0.00011665649345368121, 'St.': 0.0001355515592947704, 'sitting': 7.640178796614333e-05, 'Faced': 4.107623008932437e-06, '35': 1.5608967433943262e-05, 'complementary': 4.107623008932437e-06, 'miscount': 1.6430492035729749e-06, 'another': 0.0004715551214254438, '33d': 1.6430492035729749e-06, '24th': 6.5721968142918994e-06, '42d': 1.6430492035729749e-06, '31st': 2.4645738053594624e-06, '21st': 3.2860984071459497e-06, '28th': 5.750672212505412e-06, '29th': 4.929147610718925e-06, '18th': 8.215246017864873e-06, '4th': 7.393721416078387e-06, '9th': 6.5721968142918994e-06, 'advisement': 2.4645738053594624e-06, 'Claims': 8.215246017864873e-06, 'precedent': 8.215246017864873e-06, 'reading': 0.00011419191964832175, 'statement': 0.00011665649345368121, 'discharging': 3.2860984071459497e-06, 'subpenaed': 1.6430492035729749e-06, 'dismiss': 4.929147610718925e-06, '9': 5.175604991254871e-05, 'mammoth': 4.107623008932437e-06, 'care': 0.00013226546088762446, 'whereby': 1.6430492035729746e-05, 'social': 0.000293284282837776, 'security': 6.161434513398656e-05, '70': 2.0538115044662184e-05, 'workers': 6.654349274470547e-05, 'raised': 8.379550938222171e-05, 'hospital': 6.243586973577305e-05, '14.2': 1.6430492035729749e-06, 'Americans': 7.722331256792982e-05, 'covered': 8.626008318758118e-05, 'railroad': 3.94331808857514e-05, 'retirement': 2.0538115044662184e-05, 'programs': 0.00011419191964832175, 'message': 5.2577574514335196e-05, 'tied': 2.875336106252706e-05, 'aged': 1.5608967433943262e-05, 'requests': 9.85829522143785e-06, 'grants': 1.7252016637516235e-05, 'finance': 2.300268885002165e-05, 'dental': 1.0679819823224336e-05, 'scholarships': 7.393721416078387e-06, 'build': 7.065111575363791e-05, '20': 7.640178796614333e-05, 'expand': 1.1501344425010824e-05, 'health': 7.311568955899738e-05, 'Capitol': 1.8073541239302723e-05, 'hill': 3.203945946967301e-05, 'Cost': 5.750672212505412e-06, '$37': 3.2860984071459497e-06, 'financed': 1.3965918230370285e-05, 'boosting': 3.2860984071459497e-06, 'payroll': 1.3965918230370285e-05, 'worker': 2.546726265538111e-05, 'employer': 1.232286902679731e-05, '$4,800': 1.6430492035729749e-06, 'alone': 0.0001577327235430056, 'boost': 1.3144393628583799e-05, 'base': 6.982959115185143e-05, '$5,000': 5.750672212505412e-06, '6.5': 1.6430492035729749e-06, '3.25': 1.6430492035729749e-06, 'Similar': 9.85829522143785e-06, 'boosts': 1.6430492035729749e-06, 'imposed': 1.6430492035729746e-05, 'those': 0.0006432537631988197, 'actually': 0.00010597667363045688, 'rise': 8.379550938222171e-05, '7.5': 4.107623008932437e-06, 'starting': 5.093452531076222e-05, '1963': 7.393721416078387e-06, 'levy': 6.5721968142918994e-06, 'already': 0.00021195334726091376, 'Outlays': 1.6430492035729749e-06, 'Officials': 5.750672212505412e-06, '1.5': 1.0679819823224336e-05, 'billion': 5.175604991254871e-05, 'benefits': 2.793183646074057e-05, 'Both': 7.229416495721089e-05, 'figures': 8.297398478043522e-05, 'higher': 0.0001248717394715461, 'parts': 9.036770619651362e-05, 'entail': 4.929147610718925e-06, '750': 4.107623008932437e-06, 'Nursing': 3.2860984071459497e-06, 'carries': 1.889506584108921e-05, 'systems': 0.00010351209982509741, 'Full': 4.929147610718925e-06, 'payment': 4.354080389468383e-05, 'stays': 4.929147610718925e-06, '90': 9.85829522143785e-06, 'illness': 1.7252016637516235e-05, 'patient': 7.14726403554244e-05, 'nine': 6.161434513398656e-05, 'nursing': 1.232286902679731e-05, '180': 7.393721416078387e-06, 'following': 0.0001692340679680164, 'discharge': 1.6430492035729746e-05, '300': 2.1359639646448672e-05, 'paid-for': 1.6430492035729749e-06, 'formula': 4.8469951505402755e-05, 'allowing': 2.6288787257167598e-05, 'use': 0.00046580444921293833, 'part': 0.0003828304644325031, 'hospital-care': 1.6430492035729749e-06, 'outpatient': 1.6430492035729749e-06, 'clinic': 3.2860984071459497e-06, 'diagnostic': 9.036770619651361e-06, 'service': 0.0002020950520394759, 'excess': 3.532555787681896e-05, '$20': 5.750672212505412e-06, 'Community': 1.4787442832156774e-05, 'visiting': 2.9574885664313547e-05, 'nurse': 1.3965918230370285e-05, '240': 2.4645738053594624e-06, 'noted': 7.393721416078387e-05, 'states': 0.00013062241168405148, 'needy': 4.929147610718925e-06, 'modest': 2.464573805359462e-05, 'wish': 9.036770619651362e-05, 'nevertheless': 2.6288787257167598e-05, 'staggered': 1.0679819823224336e-05, 'drain': 1.3144393628583799e-05, 'caused': 7.475873876257036e-05, 'extended': 4.60053777000433e-05, 'stay': 8.872465699294064e-05, 'cut': 0.00014869595292335422, 'absolutely': 2.300268885002165e-05, 'essential': 6.736501734649196e-05, 'sufficient': 5.175604991254871e-05, 'deductible': 4.107623008932437e-06, 'requirements': 6.818654194827845e-05, 'discourage': 8.215246017864873e-06, 'malingering': 2.4645738053594624e-06, 'unnecessary': 1.3965918230370285e-05, 'overcrowding': 1.6430492035729749e-06, 'hospitals': 1.5608967433943262e-05, 'socialized': 3.2860984071459497e-06, 'medicine': 2.1359639646448672e-05, 'prepayment': 1.6430492035729749e-06, 'absolute': 2.546726265538111e-05, 'freedom': 9.858295221437849e-05, 'guaranteed': 1.1501344425010824e-05, 'Every': 4.7648426903616267e-05, 'choose': 4.025470548753788e-05, "Wouldn't": 4.107623008932437e-06, 'doctors': 2.300268885002165e-05, 'Apart': 9.036770619651361e-06, "President's": 1.97165904428757e-05, 'ambitious': 1.3965918230370285e-05, 'enlarge': 6.5721968142918994e-06, "nation's": 2.7110311858954083e-05, '92': 3.2860984071459497e-06, '47': 8.215246017864873e-06, 'handle': 4.2719279292897344e-05, 'student': 9.036770619651362e-05, 'needed': 0.00015444662513585964, 'rising': 5.011300070897573e-05, 'Moreover': 5.586367292148114e-05, 'qualified': 2.0538115044662184e-05, 'young': 0.00029574885664313547, 'going': 0.00032285916850208955, 'dentistry': 1.6430492035729749e-06, "can't": 0.0001248717394715461, 'afford': 3.368250867324598e-05, 'Contributions': 1.6430492035729749e-06, 'scholarship': 2.875336106252706e-05, 'contributions': 2.3824213451808133e-05, 'equal': 7.311568955899738e-05, '$1,500': 4.107623008932437e-06, 'one-fourth': 5.750672212505412e-06, 'based': 9.611837840901902e-05, '$2,000': 5.750672212505412e-06, 'government': 0.00022427621628771105, '5.1': 1.6430492035729749e-06, '21': 3.94331808857514e-05, '1966': 4.107623008932437e-06, 'matching': 2.546726265538111e-05, 'totaling': 4.929147610718925e-06, '700': 5.750672212505412e-06, 'constructing': 6.5721968142918994e-06, 'enlarging': 3.2860984071459497e-06, 'capacity': 6.900806655006494e-05, 'existing': 5.011300070897573e-05, 'More': 7.065111575363791e-05, 'area': 0.00026288787257167594, 'doubling': 6.5721968142918994e-06, 'dollar': 3.6147082478605446e-05, 'initial': 5.504214831969465e-05, 'appropriation': 4.107623008932437e-06, 'stimulatory': 1.6430492035729749e-06, 'improve': 3.1217934867886523e-05, 'unspecified': 4.107623008932437e-06, 'sum': 3.6968607080391934e-05, 'experimental': 2.793183646074057e-05, 'field': 0.00020045200283590292, "children's": 1.8073541239302723e-05, 'bureau': 1.4787442832156774e-05, 'national': 0.00017498474018052182, 'institute': 4.929147610718925e-06, 'Asks': 1.6430492035729749e-06, 'vocational': 5.750672212505412e-05, 'rehabilitation': 1.7252016637516235e-05, 'how': 0.0005126313515147682, 'For': 0.0005331694665594303, 'facilities': 8.133093557686225e-05, 'propose': 1.1501344425010824e-05, 'increasing': 5.9149771328627094e-05, '540': 2.4645738053594624e-06, 'direct': 0.00010104752601973795, 'combine': 1.232286902679731e-05, 'indispensable': 1.3144393628583799e-05, 'elements': 8.543855858579469e-05, 'sound': 0.00016594796956087045, 'knowledge': 0.00011829954265725419, 'Reaction': 3.2860984071459497e-06, 'Congressional': 8.215246017864873e-06, 'reaction': 0.00010022600141795146, 'along': 0.0002817829384127652, 'lines': 0.00016019729734836503, 'Legislators': 4.107623008932437e-06, 'placing': 2.218116424823516e-05, 'aged-care': 1.6430492035729749e-06, 'criticized': 1.232286902679731e-05, 'Those': 5.668519752326763e-05, 'backed': 2.0538115044662184e-05, 'hailed': 6.5721968142918994e-06, 'Republican': 4.518385309825681e-05, 'Leader': 4.929147610718925e-06, 'Dirksen': 3.2860984071459497e-06, 'Ill.': 1.1501344425010824e-05, 'Halleck': 3.2860984071459497e-06, 'Ind.': 2.4645738053594624e-06, 'persuade': 1.4787442832156774e-05, 'change': 0.000195522855225184, 'compulsory': 5.750672212505412e-06, 'voluntary': 1.889506584108921e-05, 'enacted': 1.0679819823224336e-05, 'Speaker': 2.1359639646448672e-05, 'Rayburn': 3.286098407145949e-05, 'Tex.': 6.5721968142918994e-06, 'mighty': 2.300268885002165e-05, 'thing': 0.0002727461677931138, 'prediction': 9.036770619651361e-06, 'fate': 2.464573805359462e-05, 'hastily': 1.232286902679731e-05, 'pressure': 0.00015198205133050018, 'tonight': 2.875336106252706e-05, 'confirmed': 1.7252016637516235e-05, 'Weaver': 4.107623008932437e-06, 'housing': 4.1897754691110856e-05, '11': 5.175604991254871e-05, 'floor': 0.000129800887082265, 'record': 0.0001109058212411758, 'scattered': 2.300268885002165e-05, 'ayes': 1.6430492035729749e-06, 'noes': 1.6430492035729749e-06, 'Customary': 1.6430492035729749e-06, 'ignored': 2.464573805359462e-05, 'speed': 6.654349274470547e-05, 'Negro': 8.872465699294064e-05, 'leader': 5.750672212505412e-05, 'administrator': 1.232286902679731e-05, 'agency': 4.025470548753788e-05, 'Presidential': 1.97165904428757e-05, 'appointments': 5.750672212505412e-06, 'cabinet': 1.0679819823224336e-05, 'rank': 1.889506584108921e-05, 'immediate': 6.736501734649196e-05, 'rule': 5.668519752326763e-05, 'requiring': 1.3965918230370285e-05, 'hour': 0.00011994259186082716, 'Enforce': 1.6430492035729749e-06, 'demand': 8.379550938222171e-05, 'Wayne': 1.0679819823224336e-05, 'Morse': 2.464573805359462e-05, 'Ore.': 3.2860984071459497e-06, 'connection': 5.668519752326763e-05, "Eisenhower's": 9.85829522143785e-06, 'selections': 1.232286902679731e-05, '1953': 2.218116424823516e-05, "Kennedy's": 2.218116424823516e-05, 'Oslo': 4.929147610718925e-06, 'positive': 5.997129593041358e-05, 'element': 4.354080389468383e-05, 'emerge': 1.5608967433943262e-05, 'North': 0.00011912106725904068, 'Atlantic': 3.368250867324598e-05, 'Treaty': 6.5721968142918994e-06, 'Organization': 1.5608967433943262e-05, 'Foreign': 1.97165904428757e-05, 'Ministers': 3.2860984071459497e-06, 'freer': 4.929147610718925e-06, 'franker': 1.6430492035729749e-06, 'wider': 1.3144393628583799e-05, 'discussions': 2.6288787257167598e-05, 'animated': 4.929147610718925e-06, 'mutual': 1.8073541239302723e-05, 'understanding': 9.858295221437849e-05, 'meetings': 2.3824213451808133e-05, 'organization': 9.11892307983001e-05, 'nature': 0.00015362510053407315, 'proceed': 1.5608967433943262e-05, 'route': 2.793183646074057e-05, 'step': 0.00010761972283402986, 'without': 0.00044526633416827616, 'dramatic': 5.175604991254871e-05, 'changes': 0.0001043336244268839, 'ministers': 8.215246017864873e-06, 'met': 0.00010679819823224337, 'climate': 2.218116424823516e-05, 'candor': 2.4645738053594624e-06, 'genuine': 2.875336106252706e-05, 'attempt': 7.88663617715028e-05, "another's": 4.929147610718925e-06, 'atmosphere': 6.572196814291899e-05, 'particularly': 0.0001174780180554677, 'noticeable': 9.85829522143785e-06, 'concerned': 0.00011172734584296228, 'colonialist': 1.6430492035729749e-06, 'powers': 5.586367292148114e-05, 'never': 0.0005463138601880141, 'nightmare': 8.215246017864873e-06, 'clash': 4.929147610718925e-06, 'Africa': 3.779013168217842e-05, 'exacerbated': 2.4645738053594624e-06, 'difficulties': 3.861165628396491e-05, 'tragedies': 6.5721968142918994e-06, 'facing': 2.6288787257167598e-05, 'allies': 2.0538115044662184e-05, 'intellectually': 4.929147610718925e-06, 'emotionally': 9.85829522143785e-06, 'disapprove': 4.107623008932437e-06, 'circumstances': 6.818654194827845e-05, 'troubles': 1.889506584108921e-05, 'conspicuous': 5.750672212505412e-06, 'absence': 4.436232849647032e-05, 'Explosion': 1.6430492035729749e-06, 'avoided': 1.6430492035729746e-05, 'Portugal': 4.107623008932437e-06, 'few': 0.00047977036744330866, 'weeks': 0.00011501344425010824, 'ago': 0.0002029165766412624, 'rumored': 2.4645738053594624e-06, 'walk': 7.968788637328927e-05, 'NATO': 2.1359639646448672e-05, 'Council': 6.325739433755954e-05, 'critics': 2.218116424823516e-05, 'Angola': 3.2860984071459497e-06, 'policy': 0.0001823784615966002, 'prove': 4.436232849647032e-05, 'harsh': 1.0679819823224336e-05, 'relaxation': 6.5721968142918994e-06, 'tension': 4.6826902301829785e-05, 'remarkably': 1.5608967433943262e-05, 'courteous': 5.750672212505412e-06, 'explanation': 3.6147082478605446e-05, 'basic': 0.00013473003469298392, 'positions': 4.518385309825681e-05, 'unchanged': 8.215246017864873e-06, 'explosion': 1.3144393628583799e-05, 'bitter': 4.354080389468383e-05, 'surprises': 4.929147610718925e-06, 'UN': 9.85829522143785e-06, 'General': 0.00015444662513585964, 'Assembly': 2.464573805359462e-05, "members'": 2.4645738053594624e-06, 'ad': 9.036770619651361e-06, 'hoc': 3.2860984071459497e-06, 'discussed': 5.3399099116121684e-05, 'advance': 4.6826902301829785e-05, 'Canada': 2.875336106252706e-05, 'somewhat': 0.00010186905062152444, 'allied': 9.036770619651361e-06, 'cars': 9.036770619651362e-05, 'track': 3.1217934867886523e-05, 'behind': 0.0002012735274376894, 'locomotive': 2.4645738053594624e-06, 'Even': 0.00015280357593228666, 'Norway': 2.4645738053594624e-06, 'daily': 8.215246017864874e-05, 'manifestations': 8.215246017864873e-06, 'atomic': 3.203945946967301e-05, 'arms': 9.529685380723253e-05, 'heart': 0.00014048070690548934, 'northernmost': 1.6430492035729749e-06, 'alliance': 1.232286902679731e-05, 'closer': 5.011300070897573e-05, 'line': 0.00023249146230557594, 'negative': 4.436232849647032e-05, 'side': 0.0003047856272627868, 'balance': 7.475873876257036e-05, 'sheet': 3.779013168217842e-05, 'disappointment': 1.3144393628583799e-05, 'United': 0.00038118741522893013, 'States': 0.0003663999723967734, 'leadership': 7.393721416078387e-05, 'hoped': 4.025470548753788e-05, 'diplomat': 4.929147610718925e-06, 'described': 9.940447681616497e-05, 'tenor': 5.750672212505412e-06, 'Secretary': 0.00012569326407333258, 'Dean': 2.300268885002165e-05, "Rusk's": 3.2860984071459497e-06, 'speeches': 1.7252016637516235e-05, 'inconclusive': 3.2860984071459497e-06, 'hastened': 8.215246017864873e-06, 'add': 6.572196814291899e-05, 'always': 0.00036968607080391935, 'clear': 0.00018073541239302724, 'Mr.': 0.0006941882885095819, 'analysis': 8.543855858579469e-05, 'various': 0.00016101882195015152, 'global': 4.107623008932437e-06, 'danger': 5.668519752326763e-05, 'points': 0.00011829954265725419, 'setbacks': 3.2860984071459497e-06, 'firmly': 4.107623008932437e-05, 'fixed': 6.736501734649196e-05, 'Exploratory': 1.6430492035729749e-06, 'mood': 3.0396410266100035e-05, 'vagueness': 3.2860984071459497e-06, 'tactical': 7.393721416078387e-06, 'appreciation': 1.889506584108921e-05, 'semipublic': 1.6430492035729749e-06, 'affair': 2.793183646074057e-05, 'fewer': 2.793183646074057e-05, 'Soviet': 0.00010597667363045688, 'correspondents': 4.929147610718925e-06, 'accredited': 2.4645738053594624e-06, 'impression': 3.779013168217842e-05, 'during': 0.0003729721692110653, 'popularity': 1.4787442832156774e-05, 'came': 0.0005109883023111952, 'tentative': 1.3144393628583799e-05, 'exploratory': 3.2860984071459497e-06, 'frame': 6.079282053220007e-05, 'mind': 0.0002669954955806084, 'listen': 2.875336106252706e-05, 'learn': 6.900806655006494e-05, 'enunciate': 1.6430492035729749e-06, 'scale': 4.60053777000433e-05, 'detailed': 4.1897754691110856e-05, 'application': 5.3399099116121684e-05, 'individual': 0.00019223675681803804, 'spots': 2.6288787257167598e-05, 'speech': 5.093452531076222e-05, 'gave': 0.0002349560361109354, 'tremendous': 3.1217934867886523e-05, 'march': 2.0538115044662184e-05, 'events': 8.215246017864874e-05, 'inside': 0.00013390851009119744, 'preoccupied': 9.036770619651361e-06, 'months': 0.00015526814973764613, 'core': 3.532555787681896e-05, 'reiterated': 2.4645738053594624e-06, "States'": 4.107623008932437e-06, 'profound': 2.300268885002165e-05, 'attachment': 4.929147610718925e-06, 'cornerstone': 3.2860984071459497e-06, 'foreign': 0.00011172734584296228, 'nuclear': 9.11892307983001e-05, 'submarines': 1.6430492035729746e-05, 'eventually': 3.6147082478605446e-05, "NATO's": 1.6430492035729749e-06, 'disposal': 1.7252016637516235e-05, 'European': 5.093452531076222e-05, 'waters': 3.0396410266100035e-05, 'solemnly': 7.393721416078387e-06, 'repeated': 4.6826902301829785e-05, 'Union': 8.626008318758118e-05, 'stand': 0.00011994259186082716, 'setback': 3.2860984071459497e-06, 'affirmation': 4.107623008932437e-06, 'once': 0.0003409327097413923, 'again': 0.00043951566195577077, 'whole': 0.0002522080527484516, 'Conflict': 1.6430492035729749e-06, 'surveyed': 8.215246017864873e-06, "secretary's": 4.107623008932437e-06, 'greatest': 6.982959115185143e-05, 'achievement': 4.7648426903616267e-05, 'perhaps': 0.0001766277893840948, 'rekindling': 1.6430492035729749e-06, 'realization': 2.0538115044662184e-05, 'East-West': 4.107623008932437e-06, 'friction': 1.4787442832156774e-05, 'wherever': 2.0538115044662184e-05, 'around': 0.0004575892031950735, 'globe': 1.0679819823224336e-05, 'essence': 1.3144393628583799e-05, 'entirely': 7.475873876257036e-05, 'different': 0.0002522080527484516, 'societies': 3.368250867324598e-05, 'treated': 6.243586973577305e-05, 'regard': 7.393721416078387e-05, 'geographical': 1.3965918230370285e-05, 'distance': 8.954618159472713e-05, 'lack': 9.036770619651362e-05, 'apparent': 4.7648426903616267e-05, 'spring': 8.872465699294064e-05, 'impetus': 5.750672212505412e-06, 'main': 8.954618159472713e-05, 'directions': 2.1359639646448672e-05, 'deeper': 3.1217934867886523e-05, 'timely': 8.215246017864873e-06, 'consultation': 7.393721416078387e-06, 'within': 0.0002645309217752489, 'Economic': 2.0538115044662184e-05, 'Cooperation': 3.2860984071459497e-06, 'Development': 2.0538115044662184e-05, 'ratified': 3.2860984071459497e-06, 'method': 0.00011337039504653526, 'coordinating': 4.107623008932437e-06, 'underdeveloped': 9.036770619651361e-06, 'countries': 0.00012240716566618663, 'strengthening': 1.0679819823224336e-05, 'conventional': 4.107623008932437e-05, 'forces': 0.00012240716566618663, 'maintenance': 4.929147610718924e-05, 'deterrent': 6.5721968142918994e-06, 'threshold': 1.232286902679731e-05, "alliance's": 1.6430492035729749e-06, 'difficult': 0.00013226546088762446, 'come': 0.0004846995150540276, 'Each': 9.7761427612592e-05, 'ally': 8.215246017864873e-06, 'laid': 6.407891893934602e-05, 'completely': 9.11892307983001e-05, 'fulfilled': 9.85829522143785e-06, 'moves': 3.0396410266100035e-05, 'haltingly': 2.4645738053594624e-06, 'Geneva': 1.4787442832156774e-05, 'conference': 5.093452531076222e-05, 'Laos': 5.3399099116121684e-05, 'erupts': 1.6430492035729749e-06, 'optimism': 1.3144393628583799e-05, 'Communists': 3.286098407145949e-05, 'docile': 4.107623008932437e-06, 'table': 0.00012158564106440014, 'military': 0.000161840346551938, 'ground': 0.00015198205133050018, 'explain': 5.2577574514335196e-05, 'mainly': 2.464573805359462e-05, 'interested': 8.626008318758118e-05, 'setting': 4.929147610718924e-05, 'international': 9.693990301080551e-05, 'inspection': 1.7252016637516235e-05, 'prevent': 6.900806655006494e-05, 'Communist': 7.640178796614333e-05, 'attacks': 1.7252016637516235e-05, 'neighboring': 2.0538115044662184e-05, 'Thailand': 4.107623008932437e-06, 'South': 0.0001495174775251407, 'Viet': 1.3965918230370285e-05, 'Nam': 1.1501344425010824e-05, 'count': 3.6147082478605446e-05, 'neutral': 2.793183646074057e-05, 'attending': 1.889506584108921e-05, 'hopes': 4.107623008932437e-05, 'Lao': 1.4787442832156774e-05, 'Cabinet': 4.929147610718925e-06, 'dominated': 1.6430492035729746e-05, 'acceptable': 1.7252016637516235e-05, 'possibility': 7.229416495721089e-05, 'Policies': 2.4645738053594624e-06, 'modified': 1.1501344425010824e-05, 'inclination': 7.393721416078387e-06, 'de': 4.025470548753788e-05, 'facto': 6.5721968142918994e-06, 'cease-fire': 6.5721968142918994e-06, 'insist': 2.300268885002165e-05, 'verification': 4.107623008932437e-06, 'control': 0.00017252016637516235, 'commission': 2.300268885002165e-05, 'participating': 1.232286902679731e-05, 'modifications': 4.929147610718925e-06, 'compelled': 1.5608967433943262e-05, 'excuses': 2.4645738053594624e-06, 'chain': 4.025470548753788e-05, 'errors': 3.450403327503247e-05, 'Its': 6.49004435411325e-05, 'spokesmen': 1.0679819823224336e-05, 'reforms': 1.232286902679731e-05, 'economic': 0.00018073541239302724, 'critical': 4.60053777000433e-05, 'moving': 9.11892307983001e-05, 'confrontations': 1.6430492035729749e-06, 'showing': 5.093452531076222e-05, 'gain': 6.079282053220007e-05, 'free': 0.00020045200283590292, 'world': 0.0005627443522237439, 'arises': 1.232286902679731e-05, 'How': 0.00017416321557873533, 'dealing': 3.450403327503247e-05, 'aggression': 9.036770619651361e-06, 'Former': 3.2860984071459497e-06, 'Vice-President': 3.2860984071459497e-06, 'Richard': 5.9149771328627094e-05, 'Nixon': 2.1359639646448672e-05, 'Detroit': 1.8073541239302723e-05, 'firmer': 5.750672212505412e-06, 'tougher': 8.215246017864873e-06, 'feels': 3.779013168217842e-05, 'tendency': 4.107623008932437e-05, 'conciliatory': 2.4645738053594624e-06, 'restrained': 1.1501344425010824e-05, 'Gallup': 1.6430492035729749e-06, 'understates': 1.6430492035729749e-06, 'situation': 0.000161840346551938, 'hardly': 8.215246017864874e-05, 'restrain': 9.036770619651361e-06, 'raising': 2.875336106252706e-05, 'power': 0.0002686385447841814, 'amateurish': 3.2860984071459497e-06, 'monumental': 4.929147610718925e-06, 'blunders': 1.6430492035729749e-06, 'Cuba': 3.94331808857514e-05, 'correspondent': 1.0679819823224336e-05, 'constantly': 3.450403327503247e-05, 'score': 4.929147610718924e-05, 'reply': 3.1217934867886523e-05, 'country': 0.00025713720035917055, 'politics': 5.4220623717908165e-05, 'wisdom': 3.532555787681896e-05, 'Senator': 3.1217934867886523e-05, 'Thruston': 1.6430492035729749e-06, 'Morton': 1.3144393628583799e-05, 'R': 3.1217934867886523e-05, 'Kentucky': 1.232286902679731e-05, 'National': 0.00013473003469298392, 'responsible': 5.9149771328627094e-05, 'outcome': 2.218116424823516e-05, 'coalition': 1.3144393628583799e-05, 'susceptible': 5.750672212505412e-06, 'domination': 1.3144393628583799e-05, 'assailed': 4.107623008932437e-06, 'direction': 0.00010926277203760282, 'Harvard': 2.875336106252706e-05, 'Boston': 5.093452531076222e-05, 'Brandeis': 1.6430492035729749e-06, 'educators': 5.750672212505412e-06, 'Detente': 1.6430492035729749e-06, 'pleads': 1.6430492035729749e-06, 'invasion': 1.3144393628583799e-05, 'exile': 4.107623008932437e-06, 'groups': 0.00010351209982509741, 'recommends': 2.4645738053594624e-06, 'instead': 0.00010679819823224337, 'detach': 1.6430492035729749e-06, 'Castro': 2.7110311858954083e-05, 'regime': 1.97165904428757e-05, 'bloc': 9.036770619651361e-06, 'diplomatic': 2.300268885002165e-05, 'detente': 1.6430492035729749e-06, 'resumption': 8.215246017864873e-06, 'trade': 0.0001109058212411758, ';': 0.0045734274581453755, 'concentrate': 9.85829522143785e-06, 'constructive': 1.3144393628583799e-05, 'efforts': 0.00010351209982509741, 'Latin': 4.1897754691110856e-05, 'America': 0.00016019729734836503, 'conditions': 0.00014787442832156774, 'totalitarian': 5.750672212505412e-06, 'nationalism': 2.875336106252706e-05, 'feeds': 9.036770619651361e-06, 'intervention': 1.7252016637516235e-05, 'specific': 9.036770619651362e-05, 'provocation': 4.929147610718925e-06, 'clearly': 9.7761427612592e-05, 'shipped': 5.750672212505412e-06, 'tolerated': 5.750672212505412e-06, 'Until': 2.3824213451808133e-05, 'Cuban': 1.6430492035729746e-05, 'fiasco': 4.107623008932437e-06, 'victories': 6.5721968142918994e-06, 'observer': 1.1501344425010824e-05, 'blended': 4.107623008932437e-06, 'respected': 9.85829522143785e-06, 'opinions': 3.6968607080391934e-05, 'voiced': 4.929147610718925e-06, 'professors': 1.232286902679731e-05, 'Aid': 5.750672212505412e-06, 'revamped': 3.2860984071459497e-06, 'Very': 2.0538115044662184e-05, 'early': 0.0002743892169966868, 'Kremlin': 9.85829522143785e-06, 'channels': 1.97165904428757e-05, 'disclosed': 1.232286902679731e-05, 'react': 1.3144393628583799e-05, 'Eisenhower': 4.1897754691110856e-05, 'formative': 2.4645738053594624e-06, 'period': 0.00021688249487163266, 'Strenuous': 1.6430492035729749e-06, 'remove': 4.1897754691110856e-05, 'pin': 1.3144393628583799e-05, 'pricking': 1.6430492035729749e-06, 'ban': 6.5721968142918994e-06, 'negotiations': 1.7252016637516235e-05, 'reviewed': 1.1501344425010824e-05, 'changed': 7.88663617715028e-05, 'thus': 0.00012076411646261365, 'far': 0.0003368250867324598, 'response': 6.325739433755954e-05, 'emphasis': 4.8469951505402755e-05, 'encourage': 3.779013168217842e-05, 'reform': 2.218116424823516e-05, 'recipient': 6.5721968142918994e-06, 'nations': 9.693990301080551e-05, 'looked': 0.00030149952885564086, 'show': 0.00022345469168592457, 'determination': 3.286098407145949e-05, 'sailing': 1.6430492035729746e-05, 'naval': 1.7252016637516235e-05, 'fleet': 1.0679819823224336e-05, 'Southeast': 1.5608967433943262e-05, 'Asian': 9.036770619651361e-06, 'useless': 1.4787442832156774e-05, 'gesture': 2.7110311858954083e-05, 'Again': 3.6147082478605446e-05, 'freeze': 5.750672212505412e-06, 'aided': 9.85829522143785e-06, 'Pathet': 9.036770619651361e-06, 'faster': 1.5608967433943262e-05, 'rate': 0.00017252016637516235, 'And': 0.0007714116010775117, 'territory': 2.300268885002165e-05, 'exposed': 2.875336106252706e-05, 'huge': 4.436232849647032e-05, 'build-up': 4.107623008932437e-06, 'acclaimed': 4.107623008932437e-06, 'performing': 1.4787442832156774e-05, 'great': 0.0005003084824879708, 'Asia': 3.6968607080391934e-05, 'SEATO': 4.929147610718925e-06, 'steamed': 5.750672212505412e-06, 'prepared': 8.46170339840082e-05, 'contingency': 3.2860984071459497e-06, 'coping': 6.5721968142918994e-06, 'losses': 3.861165628396491e-05, 'want': 0.0002686385447841814, 'risk': 4.436232849647032e-05, 'all-out': 5.750672212505412e-06, 'war': 0.00025138652814666516, 'disagreed': 3.2860984071459497e-06, 'complication': 4.107623008932437e-06, 'concluded': 2.7110311858954083e-05, 'ill': 2.218116424823516e-05, 'suited': 1.889506584108921e-05, 'unlike': 2.793183646074057e-05, 'determined': 9.858295221437849e-05, 'neighbors': 3.368250867324598e-05, 'favor': 6.407891893934602e-05, 'neutralized': 4.929147610718925e-06, 'pro-Western': 1.0679819823224336e-05, 'helped': 5.504214831969465e-05, 'revolt': 7.393721416078387e-06, 'Souvanna': 5.750672212505412e-06, 'Phouma': 4.107623008932437e-06, 'neutralist': 7.393721416078387e-06, 'appear': 9.693990301080551e-05, 'spark': 9.036770619651361e-06, 'fighting': 5.2577574514335196e-05, 'spirit': 0.00013226546088762446, 'Royal': 1.889506584108921e-05, 'certainly': 9.693990301080551e-05, 'energy': 7.968788637328927e-05, 'displayed': 1.7252016637516235e-05, 'hilt': 3.2860984071459497e-06, 'ideas': 0.00011419191964832175, 'Prince': 2.6288787257167598e-05, 'trusting': 4.107623008932437e-06, 'gradually': 3.6147082478605446e-05, 'relinquish': 5.750672212505412e-06, 'factor': 5.9149771328627094e-05, 'Fulbright': 2.4645738053594624e-06, 'D': 4.1897754691110856e-05, 'Arkansas': 1.5608967433943262e-05, 'Relations': 8.215246017864873e-06, '25': 6.818654194827845e-05, 'erred': 3.2860984071459497e-06, 'half': 0.00021688249487163266, 'encouraging': 1.7252016637516235e-05, 'removal': 3.368250867324598e-05, 'extraordinary': 2.546726265538111e-05, 'check': 6.161434513398656e-05, 'rapid': 3.6147082478605446e-05, 'growth': 0.0001248717394715461, 'juvenile': 1.3144393628583799e-05, 'delinquency': 4.107623008932437e-06, 'deeply': 3.286098407145949e-05, 'vitality': 1.4787442832156774e-05, 'nation': 9.7761427612592e-05, 'important': 0.0003006780042538544, 'assertion': 6.5721968142918994e-06, 'executive': 3.861165628396491e-05, 'establishing': 2.218116424823516e-05, 'Juvenile': 3.2860984071459497e-06, 'Delinquency': 3.2860984071459497e-06, 'Crime': 3.2860984071459497e-06, 'supported': 4.518385309825681e-05, 'assisted': 6.5721968142918994e-06, 'Citizens': 7.393721416078387e-06, 'Advisory': 1.232286902679731e-05, 'recognized': 6.654349274470547e-05, 'asks': 1.4787442832156774e-05, 'cooperation': 3.0396410266100035e-05, 'enactment': 6.5721968142918994e-06, 'specified': 2.3824213451808133e-05, 'combating': 1.6430492035729749e-06, 'disturbing': 1.3965918230370285e-05, 'crime': 2.7110311858954083e-05, 'trend': 3.861165628396491e-05, 'Offenses': 1.6430492035729749e-06, 'multiply': 4.107623008932437e-06, 'Attorney': 3.286098407145949e-05, 'Labor': 2.546726265538111e-05, 'coordinate': 9.036770619651361e-06, 'assist': 2.1359639646448672e-05, 'communities': 3.450403327503247e-05, 'cope': 1.8073541239302723e-05, 'Simultaneously': 5.750672212505412e-06, 'David': 4.2719279292897344e-05, 'Hackett': 1.6430492035729749e-06, 'Youth': 8.215246017864873e-06, 'sense': 0.0002563156757573841, 'urgency': 1.0679819823224336e-05, 'stems': 2.7110311858954083e-05, 'arrests': 3.2860984071459497e-06, 'doubled': 9.85829522143785e-06, '1948': 1.8073541239302723e-05, 'offenders': 2.4645738053594624e-06, 'Among': 4.6826902301829785e-05, 'Federal': 0.0001109058212411758, 'Bureau': 2.218116424823516e-05, 'Investigation': 7.393721416078387e-06, '1959': 8.46170339840082e-05, 'larceny': 2.4645738053594624e-06, 'Providence': 6.407891893934602e-05, 'organize': 1.232286902679731e-05, 'civil': 3.779013168217842e-05, 'setup': 7.393721416078387e-06, 'appointing': 1.6430492035729749e-06, 'full-time': 2.0538115044662184e-05, 'Raymond': 1.4787442832156774e-05, 'H.': 5.9149771328627094e-05, 'Hawksley': 9.036770619651361e-06, 'CD': 7.393721416078387e-06, 'anyone': 0.00010597667363045688, 'else': 0.00014540985451620827, 'locally': 9.85829522143785e-06, 'outline': 9.85829522143785e-06, 'earliest': 1.889506584108921e-05, "state's": 1.6430492035729746e-05, 'part-time': 1.97165904428757e-05, 'Noting': 4.929147610718925e-06, 'handed': 3.203945946967301e-05, 'Defense': 3.450403327503247e-05, 'responsibility': 9.611837840901902e-05, 'salary': 3.450403327503247e-05, 'expressed': 6.161434513398656e-05, 'opinion': 7.804483716971631e-05, 'hire': 1.3144393628583799e-05, '$3,500': 1.6430492035729749e-06, 'basis': 0.00015198205133050018, 'defray': 2.4645738053594624e-06, 'believed': 6.407891893934602e-05, 'residents': 1.7252016637516235e-05, 'job': 0.0001947013306233975, 'men': 0.0006054636315166412, 'Fire': 1.4787442832156774e-05, 'Laughlin': 2.4645738053594624e-06, 'Along': 1.1501344425010824e-05, 'headquarters': 4.6826902301829785e-05, 'pertinent': 1.8073541239302723e-05, 'centralized': 8.215246017864873e-06, 'advantage': 6.079282053220007e-05, 'having': 0.00021277487186270025, 'eligible': 1.232286902679731e-05, 'apply': 4.6826902301829785e-05, 'financial': 6.736501734649196e-05, 'equipment': 0.0001355515592947704, 'Matching': 3.2860984071459497e-06, 'procurement': 1.7252016637516235e-05, 'radios': 6.5721968142918994e-06, 'sirens': 2.4645738053594624e-06, 'rescue': 1.232286902679731e-05, 'trucks': 1.889506584108921e-05, 'vehicle': 2.793183646074057e-05, 'Central': 4.929147610718924e-05, 'Station': 1.0679819823224336e-05, 'assign': 1.4787442832156774e-05, 'Riverside': 9.036770619651361e-06, 'section': 0.00010926277203760282, 'Rumford': 2.4645738053594624e-06, 'Speaking': 1.232286902679731e-05, 'status': 7.968788637328927e-05, 'bet': 1.6430492035729746e-05, 'hundred': 0.00014130223150727583, 'know': 0.0005586367292148114, 'enemy': 7.229416495721089e-05, 'Narragansett': 5.750672212505412e-06, 'Race': 3.2860984071459497e-06, 'Track': 1.6430492035729749e-06, 'grounds': 4.518385309825681e-05, 'assembly': 1.8073541239302723e-05, 'point': 0.0003088932502717193, 'drive-in': 4.107623008932437e-06, 'theater': 3.203945946967301e-05, 'Seekonk': 2.4645738053594624e-06, 'knowing': 4.025470548753788e-05, 'assemble': 7.393721416078387e-06, 'air': 0.00017991388779124075, 'Such': 9.20107554000866e-05, 'vital': 4.518385309825681e-05, 'frequently': 7.065111575363791e-05, 'regular': 6.572196814291899e-05, 'intervals': 2.1359639646448672e-05, 'fails': 1.232286902679731e-05, 'consider': 8.790313239115415e-05, 'call': 0.0001495174775251407, 'September': 4.6826902301829785e-05, 'developed': 0.00013965918230370285, 'things': 0.00029739190584670845, 'classes': 6.325739433755954e-05, 'drifts': 3.2860984071459497e-06, 'level': 0.00017498474018052182, 'examine': 2.793183646074057e-05, 'revisions': 8.215246017864873e-06, 'Governor': 3.203945946967301e-05, 'Notte': 1.7252016637516235e-05, 'name': 0.00024070670832344082, 'move': 0.00013883765770191637, 'form': 0.00028917665982884357, 'letter': 0.00011583496885189472, 'Miss': 0.00019141523221625155, 'Mary': 7.229416495721089e-05, 'Grant': 1.0679819823224336e-05, 'deputy': 9.036770619651361e-06, 'clerk': 2.875336106252706e-05, 'Falls': 8.215246017864873e-06, 'copy': 3.203945946967301e-05, 'released': 2.218116424823516e-05, 'responding': 5.750672212505412e-06, 'urges': 7.393721416078387e-06, 'complete': 0.00014787442832156774, 'eye': 9.858295221437849e-05, 'legislature': 1.0679819823224336e-05, 'Legislative': 1.6430492035729749e-06, 'perform': 2.464573805359462e-05, 'review': 3.861165628396491e-05, 'Atty.': 4.107623008932437e-06, 'Gen.': 1.97165904428757e-05, 'Joseph': 4.60053777000433e-05, 'Nugent': 4.929147610718925e-06, 'views': 4.2719279292897344e-05, 'appoint': 5.750672212505412e-06, "Nugent's": 1.6430492035729749e-06, 'expect': 8.872465699294064e-05, 'religious': 0.00013062241168405148, 'labor': 9.858295221437849e-05, 'special-interest': 1.6430492035729749e-06, 'affected': 3.0396410266100035e-05, 'wrote': 0.0001495174775251407, 'continuous': 3.450403327503247e-05, 'confronts': 4.929147610718925e-06, 'enforcement': 1.6430492035729746e-05, 'officers': 6.736501734649196e-05, 'regulating': 4.107623008932437e-06, 'advised': 2.793183646074057e-05, 'enforce': 7.393721416078387e-06, 'Should': 1.97165904428757e-05, 'shirking': 2.4645738053594624e-06, 'activity': 9.529685380723253e-05, 'across': 0.00022591926549128403, 'statutes': 6.5721968142918994e-06, 'Bay': 3.203945946967301e-05, 'dating': 4.107623008932437e-06, 'instances': 2.546726265538111e-05, 'colonial': 1.232286902679731e-05, 'times': 0.00021770401947341915, 'severely': 1.3965918230370285e-05, 'limit': 3.94331808857514e-05, 'types': 9.447532920544604e-05, 'merchandise': 5.750672212505412e-06, 'sold': 3.94331808857514e-05, 'Sabbath': 2.4645738053594624e-06, 'concern': 8.050941097507576e-05, 'especially': 0.00012897936248047853, 'foods': 3.532555787681896e-05, 'placed': 0.0001043336244268839, 'list': 0.00010761972283402986, 'neighborhood': 4.8469951505402755e-05, 'grocery': 6.5721968142918994e-06, 'variety': 6.982959115185143e-05, 'stores': 2.875336106252706e-05, 'chance': 0.00010679819823224337, 'compete': 1.97165904428757e-05, 'supermarkets': 3.2860984071459497e-06, "council's": 2.4645738053594624e-06, 'small': 0.00042637126832718695, 'shops': 1.3965918230370285e-05, 'retained': 1.889506584108921e-05, 'livelihood': 4.929147610718925e-06, 'thousands': 3.6968607080391934e-05, 'declares': 9.85829522143785e-06, 'licenses': 4.929147610718925e-06, 'revenue': 1.6430492035729746e-05, 'factory': 1.97165904428757e-05, 'outlets': 5.750672212505412e-06, 'operate': 4.025470548753788e-05, 'contended': 1.0679819823224336e-05, 'shopping': 2.218116424823516e-05, 'Liberals': 4.929147610718925e-06, 'conservatives': 4.107623008932437e-06, 'parties': 4.8469951505402755e-05, 'independent': 5.504214831969465e-05, 'Reama': 4.929147610718925e-06, 'nationally': 9.036770619651361e-06, 'known': 0.0002020950520394759, 'labor-management': 6.5721968142918994e-06, 'expert': 2.546726265538111e-05, 'Rotary': 4.929147610718925e-06, 'Club': 6.325739433755954e-05, 'luncheon': 1.97165904428757e-05, 'Sheraton-Biltmore': 3.2860984071459497e-06, 'Hotel': 3.6147082478605446e-05, 'type': 0.0001626618711537245, 'enterprise': 2.6288787257167598e-05, 'regrouping': 1.6430492035729749e-06, 'average': 0.00010515514902867039, 'voter': 3.2860984071459497e-06, 'pull': 4.1897754691110856e-05, 'lever': 1.1501344425010824e-05, 'confessing': 3.2860984071459497e-06, 'member': 0.0001100842966393893, 'Socialist': 1.3144393628583799e-05, '1910': 1.3965918230370285e-05, 'That': 0.0002941058074395625, 'machinist': 4.929147610718925e-06, 'toolmaker': 1.6430492035729749e-06, 'fellow': 5.175604991254871e-05, 'grooming': 1.6430492035729749e-06, 'me': 0.0009578976856830443, 'steered': 4.107623008932437e-06, 'utilities': 6.5721968142918994e-06, 'pooling': 1.6430492035729749e-06, 'resources': 5.997129593041358e-05, 'gaining': 1.1501344425010824e-05, 'victory': 4.518385309825681e-05, 'original': 8.46170339840082e-05, 'retired': 2.875336106252706e-05, 'vice': 2.218116424823516e-05, 'Screw': 1.6430492035729749e-06, '1955': 2.3824213451808133e-05, 'us': 0.000551243007798733, 'gross': 2.218116424823516e-05, 'product': 6.900806655006494e-05, 'neither': 8.872465699294064e-05, 'favors': 9.036770619651361e-06, 'wage': 4.6826902301829785e-05, 'increases': 5.750672212505412e-05, 'manufacturers': 3.368250867324598e-05, 'caught': 8.050941097507576e-05, 'profit': 2.3824213451808133e-05, 'squeeze': 9.85829522143785e-06, 'conditioned': 1.7252016637516235e-05, 'Indicating': 1.6430492035729749e-06, 'turned': 0.00026370939717346246, 'philosophy': 6.736501734649196e-05, 'dividing': 6.5721968142918994e-06, 'everything': 0.00013390851009119744, 'really': 0.0002201685932787786, 'engaged': 3.861165628396491e-05, 'industrial': 9.447532920544604e-05, 'counseling': 8.215246017864873e-06, 'bearing': 2.1359639646448672e-05, '1,700': 2.4645738053594624e-06, 'Johnston': 1.8073541239302723e-05, 'presented': 6.818654194827845e-05, 'town': 0.00016594796956087045, 'obtaining': 8.215246017864873e-06, 'charter': 1.8073541239302723e-05, 'Martinelli': 6.5721968142918994e-06, 'Group': 8.215246017864873e-06, 'transferred': 2.464573805359462e-05, 'hand': 0.00034421880814853825, 'suggestion': 2.875336106252706e-05, 'Fortin': 1.6430492035729749e-06, 'Sr.': 6.5721968142918994e-06, 'governs': 2.4645738053594624e-06, 'referred': 3.779013168217842e-05, 'canvassers': 2.4645738053594624e-06, 'happens': 3.368250867324598e-05, 'explained': 6.654349274470547e-05, 'assure': 3.1217934867886523e-05, 'scheduling': 2.4645738053594624e-06, '60': 3.861165628396491e-05, 'completes': 4.929147610718925e-06, 'difference': 0.00012240716566618663, 'arose': 1.5608967433943262e-05, 'Bourcier': 3.2860984071459497e-06, 'solicitor': 3.2860984071459497e-06, 'exact': 2.300268885002165e-05, 'handled': 2.218116424823516e-05, 'justices': 1.6430492035729749e-06, 'favoring': 4.107623008932437e-06, 'assured': 3.286098407145949e-05, 'correct': 4.2719279292897344e-05, 'strategy': 1.8073541239302723e-05, 'movement': 0.00010269057522331093, 'undoubtedly': 1.4787442832156774e-05, 'comes': 0.0001100842966393893, 'inspiring': 5.750672212505412e-06, 'think': 0.0003516125295646166, 'hope': 0.0001355515592947704, 'spearhead': 1.6430492035729749e-06, 'surprised': 4.6826902301829785e-05, 'running': 9.858295221437849e-05, 'non-partisan': 2.4645738053594624e-06, 'posts': 1.889506584108921e-05, 'Our': 9.11892307983001e-05, 'goal': 5.011300070897573e-05, 'awareness': 2.7110311858954083e-05, 'timetable': 4.107623008932437e-06, 'followed': 0.00014212375610906232, 'started': 0.00016019729734836503, "town's": 1.232286902679731e-05, 'insurgent': 1.6430492035729749e-06, 'speaking': 4.025470548753788e-05, 'model': 5.2577574514335196e-05, 'municipal': 2.300268885002165e-05, 'league': 1.97165904428757e-05, 'Increasing': 3.2860984071459497e-06, 'Misunderstanding': 1.6430492035729749e-06, 'meaning': 0.00010269057522331093, 'cited': 2.0538115044662184e-05, 'false': 2.3824213451808133e-05, 'pretenses': 1.6430492035729749e-06, 'signers': 1.6430492035729749e-06, 'affixed': 1.232286902679731e-05, 'consent': 1.3965918230370285e-05, 'provision': 3.861165628396491e-05, 'included': 7.804483716971631e-05, 'Sanitary': 3.2860984071459497e-06, 'sewer': 8.215246017864873e-06, 'Action': 4.107623008932437e-06, 'ordinance': 8.215246017864873e-06, 'motorists': 4.107623008932437e-06, 'plead': 4.929147610718925e-06, 'guilty': 2.464573805359462e-05, 'minor': 4.107623008932437e-05, 'traffic': 5.011300070897573e-05, 'offenses': 4.929147610718925e-06, 'fines': 2.4645738053594624e-06, 'station': 7.722331256792982e-05, "Monday's": 3.2860984071459497e-06, 'Town': 9.85829522143785e-06, 'SanAntonio': 1.6430492035729749e-06, 'Solicitor': 3.2860984071459497e-06, 'Michael': 9.85829522143785e-06, 'Abatuno': 1.6430492035729749e-06, 'draft': 1.3965918230370285e-05, 'At': 0.0003368250867324598, 'authorized': 3.1217934867886523e-05, 'adopt': 1.1501344425010824e-05, 'Nothing': 4.436232849647032e-05, 'Sixth': 5.750672212505412e-06, 'disposition': 1.1501344425010824e-05, 'Local': 1.3144393628583799e-05, 'hesitated': 1.8073541239302723e-05, 'prosecute': 2.4645738053594624e-06, 'heavy': 8.872465699294064e-05, 'simplest': 9.036770619651361e-06, 'offense': 7.393721416078387e-06, 'Plainfield': 3.2860984071459497e-06, 'Mitchell': 2.218116424823516e-05, 'Walter': 3.368250867324598e-05, 'R-Bergen': 1.6430492035729749e-06, 'value': 0.00016512644495908396, 'using': 0.00010926277203760282, 'remark': 2.6288787257167598e-05, 'Campaigning': 1.6430492035729749e-06, 'carcass': 6.5721968142918994e-06, 'Republicanism': 4.107623008932437e-06, 'Dumont': 9.036770619651361e-06, 'R-Warren': 1.6430492035729749e-06, 'spoke': 7.229416495721089e-05, '100': 6.407891893934602e-05, 'Park': 3.861165628396491e-05, 'controversial': 1.0679819823224336e-05, 'Westfield': 5.750672212505412e-06, 'Young': 2.218116424823516e-05, 'cocktail': 2.0538115044662184e-05, 'Scotch': 4.929147610718925e-06, 'Plains': 9.036770619651361e-06, 'Country': 1.0679819823224336e-05, 'greeted': 1.7252016637516235e-05, 'chorus': 1.4787442832156774e-05, 'boos': 2.4645738053594624e-06, '500': 1.3965918230370285e-05, 'women': 0.0001503390021269272, 'Trenton': 4.107623008932437e-06, 'forum': 6.5721968142918994e-06, 'Federation': 1.0679819823224336e-05, "Women's": 1.0679819823224336e-05, 'Clubs': 4.929147610718925e-06, 'intention': 3.0396410266100035e-05, 'stopped': 0.00010679819823224337, 'beating': 1.1501344425010824e-05, 'lifeblood': 1.6430492035729749e-06, 'congealed': 4.107623008932437e-06, 'Now': 0.0002218116424823516, "he's": 5.011300070897573e-05, 'gone': 0.0001569111989412191, 'sell': 3.368250867324598e-05, 'tattered': 4.929147610718925e-06, 'remains': 6.982959115185143e-05, 'love': 0.0001766277893840948, 'considered': 0.0001240502148697596, 'mediocre': 4.929147610718925e-06, 'nothing': 0.00029492733204134896, 'fall': 0.00011254887044474877, 'common': 0.00017169864177337587, 'decency': 9.036770619651361e-06, 'proud': 4.1897754691110856e-05, 'adminstration': 1.6430492035729749e-06, 'closeness': 1.6430492035729749e-06, "fall's": 1.6430492035729749e-06, 'dead': 0.0001371946084983434, 'Regrets': 1.6430492035729749e-06, 'regretted': 9.85829522143785e-06, 'wrong': 0.00010597667363045688, 'inject': 4.929147610718925e-06, 'waged': 6.5721968142918994e-06, 'issues': 5.504214831969465e-05, 're-arguing': 1.6430492035729749e-06, 'respond': 1.8073541239302723e-05, 'either': 0.00022509774088949754, 'applause': 1.232286902679731e-05, "Hughes'": 2.4645738053594624e-06, 'merit': 2.300268885002165e-05, 'open': 0.00025138652814666516, 'launched': 1.8073541239302723e-05, 'continuance': 5.750672212505412e-06, 'passenger': 1.232286902679731e-05, 'proper': 7.640178796614333e-05, 'uses': 4.8469951505402755e-05, 'surplus': 2.300268885002165e-05, 'Jersey': 2.0538115044662184e-05, 'attractive': 3.286098407145949e-05, 'industry': 0.00013308698548941095, 'Decries': 1.6430492035729749e-06, 'joblessness': 1.6430492035729749e-06, 'decried': 2.4645738053594624e-06, 'unemployment': 1.3144393628583799e-05, 'Meyner': 3.2860984071459497e-06, 'Republican-controlled': 1.6430492035729749e-06, 'share': 7.88663617715028e-05, 'blame': 2.875336106252706e-05, 'Mack': 1.6430492035729749e-06, 'Truck': 2.4645738053594624e-06, 'plant': 0.00010104752601973795, 'until': 0.00035654167717533554, 'am': 0.00018566456000374616, 'income': 8.050941097507576e-05, 'unhappy': 2.218116424823516e-05, 'minutes': 0.00015937577274657854, 'saved': 3.6147082478605446e-05, 'barbs': 2.4645738053594624e-06, 'centralization': 4.107623008932437e-06, 'looks': 6.407891893934602e-05, 'Administration': 4.8469951505402755e-05, 'transportation': 3.286098407145949e-05, 'crises': 1.8073541239302723e-05, 'saying': 9.365380460365957e-05, 'ways': 0.0001043336244268839, 'faced': 4.1897754691110856e-05, 'motor': 4.436232849647032e-05, 'vehicles': 4.354080389468383e-05, 'challenge': 2.9574885664313547e-05, 'stands': 5.4220623717908165e-05, 'Defends': 2.4645738053594624e-06, 'Ike': 4.107623008932437e-06, 'Earlier': 3.2860984071459497e-06, 'resent': 7.393721416078387e-06, 'reference': 5.504214831969465e-05, 'discredited': 3.2860984071459497e-06, "president's": 4.929147610718925e-06, 'insult': 6.5721968142918994e-06, 'twice': 5.504214831969465e-05, 'overwhelmingly': 6.5721968142918994e-06, 'symbol': 4.518385309825681e-05, 'peace-loving': 2.4645738053594624e-06, 'intentions': 1.889506584108921e-05, 'understand': 0.00011337039504653526, 'seeking': 3.532555787681896e-05, 'position': 0.00019634437982697048, 'life': 0.000556172155409452, 'demonstrate': 2.3824213451808133e-05, 'judgment': 4.8469951505402755e-05, 'bad': 0.00011501344425010824, 'taste': 4.7648426903616267e-05, 'vicious': 1.4787442832156774e-05, 'origin': 3.532555787681896e-05, 'desire': 6.572196814291899e-05, 'try': 0.00010597667363045688, 'condemning': 4.107623008932437e-06, 'stature': 1.3144393628583799e-05, 'rebound': 2.4645738053594624e-06, 'discredit': 2.4645738053594624e-06, 'Sees': 1.6430492035729749e-06, 'ahead': 8.790313239115415e-05, 'Sandman': 4.929147610718925e-06, 'R-Cape': 1.6430492035729749e-06, 'May': 9.11892307983001e-05, 'opponents': 1.0679819823224336e-05, 'nomination': 1.0679819823224336e-05, 'addressing': 8.215246017864873e-06, 'Military': 1.3965918230370285e-05, 'Newark': 7.393721416078387e-06, 'Essex': 1.0679819823224336e-05, 'leaders': 8.790313239115415e-05, 'managers': 2.0538115044662184e-05, 'gathering': 2.300268885002165e-05, 'indicate': 6.654349274470547e-05, 'chosen': 5.9149771328627094e-05, "Party's": 1.6430492035729749e-06, 'nominee': 3.2860984071459497e-06, 'majority': 4.7648426903616267e-05, 'announcement': 2.0538115044662184e-05, 'Clifford': 4.929147610718925e-06, 'Case': 6.5721968142918994e-06, 'spend': 4.436232849647032e-05, 'campaigning': 3.2860984071459497e-06, 'giveaway': 4.107623008932437e-06, 'desperate': 2.218116424823516e-05, 'prop': 4.107623008932437e-06, 'sagging': 4.107623008932437e-06, 'proven': 9.85829522143785e-06, 'answer': 0.00012322869026797312, "Jersey's": 2.4645738053594624e-06, 'witnessed': 1.1501344425010824e-05, 'image': 9.693990301080551e-05, 'failed': 6.161434513398656e-05, 'witnessing': 5.750672212505412e-06, 'transfer': 3.203945946967301e-05, 'glow': 1.3144393628583799e-05, "Case's": 1.6430492035729749e-06, 'candidacy': 5.750672212505412e-06, 'fail': 3.1217934867886523e-05, 'Harriet': 8.215246017864873e-06, 'Copeland': 2.4645738053594624e-06, 'Greenfield': 2.4645738053594624e-06, '330': 2.4645738053594624e-06, 'Woodland': 1.6430492035729749e-06, 'Ave.': 1.1501344425010824e-05, 'Women': 1.1501344425010824e-05, 'committeewoman': 2.4645738053594624e-06, 'Supervisor': 2.4645738053594624e-06, 'Weldon': 1.6430492035729749e-06, 'Sheets': 4.107623008932437e-06, 'paper': 0.00012651478867511907, 'ballots': 2.4645738053594624e-06, 'represents': 3.286098407145949e-05, 'necessary': 0.0001823784615966002, 'democracy': 1.889506584108921e-05, 'lip': 1.5608967433943262e-05, 'financing': 2.7110311858954083e-05, 'purchase': 3.6147082478605446e-05, 'machines': 4.354080389468383e-05, 'repay': 6.5721968142918994e-06, '10-year': 8.215246017864873e-06, 'exclusive': 2.300268885002165e-05, 'January': 4.436232849647032e-05, '1964': 3.2860984071459497e-06, 'Although': 0.00010186905062152444, 'mandatory': 5.750672212505412e-06, 'impinging': 4.929147610718925e-06, 'basically': 1.5608967433943262e-05, 'distasteful': 1.6430492035729749e-06, 'results': 0.00011665649345368121, 'transcended': 1.6430492035729749e-06, 'Sheeran': 3.2860984071459497e-06, 'Orange': 6.5721968142918994e-06, 'Edward': 3.779013168217842e-05, 'Roos': 2.4645738053594624e-06, 'safety': 3.779013168217842e-05, 'commissioner': 5.750672212505412e-06, 'FBI': 7.393721416078387e-06, "organization's": 3.2860984071459497e-06, 'Freeholder': 1.6430492035729749e-06, 'MacDonald': 2.4645738053594624e-06, 'vacancy': 4.107623008932437e-06, 'Neil': 3.2860984071459497e-06, 'Duffy': 2.4645738053594624e-06, 'Appeals': 5.750672212505412e-06, 'My': 0.000129800887082265, 'experience': 0.00022427621628771105, 'shown': 0.0001371946084983434, 'filled': 8.215246017864874e-05, 'preferably': 1.1501344425010824e-05, 'Jim': 3.0396410266100035e-05, 'fits': 1.1501344425010824e-05, 'description': 4.436232849647032e-05, 'Seidel': 2.4645738053594624e-06, 'warden': 4.107623008932437e-06, 'Conservation': 5.750672212505412e-06, '36': 9.036770619651361e-06, 'citation': 4.929147610718925e-06, 'Commissioner': 1.1501344425010824e-05, 'Salvatore': 1.6430492035729749e-06, 'Bontempo': 2.4645738053594624e-06, 'credits': 6.5721968142918994e-06, 'supervision': 1.6430492035729746e-05, 'reduction': 3.450403327503247e-05, 'forest': 3.368250867324598e-05, 'fires': 1.3965918230370285e-05, '1925': 8.215246017864873e-06, 'division': 5.504214831969465e-05, 'graduation': 9.85829522143785e-06, '1921': 7.393721416078387e-06, 'Michigan': 1.8073541239302723e-05, 'forestry': 1.6430492035729749e-06, 'private': 0.00015362510053407315, 'lumber': 2.546726265538111e-05, 'October': 4.2719279292897344e-05, '1944': 1.3144393628583799e-05, 'Forest': 2.218116424823516e-05, 'Section': 4.7648426903616267e-05, 'fire-fighting': 2.4645738053594624e-06, 'techniques': 8.133093557686225e-05, 'plowing': 9.85829522143785e-06, 'established': 8.954618159472713e-05, 'tractor': 1.889506584108921e-05, 'plows': 3.2860984071459497e-06, 'units': 7.229416495721089e-05, 'expanded': 1.7252016637516235e-05, 'modernized': 3.2860984071459497e-06, 'central': 8.790313239115415e-05, 'briefing': 2.4645738053594624e-06, 'wardens': 2.4645738053594624e-06, 'training': 0.00012076411646261365, 'credited': 1.0679819823224336e-05, 'co-operative': 4.929147610718925e-06, 'co-operation': 1.0679819823224336e-05, 'Cross': 9.85829522143785e-06, 'Boonton': 1.6430492035729749e-06, 'debut': 1.232286902679731e-05, 'bid': 1.8073541239302723e-05, 'pledge': 2.4645738053594624e-06, 'corner': 9.365380460365957e-05, 'nearly': 0.0001109058212411758, 'Puddingstone': 1.6430492035729749e-06, 'Inn': 4.107623008932437e-06, "you'll": 5.011300070897573e-05, "You're": 4.8469951505402755e-05, "you're": 7.722331256792982e-05, "we're": 2.9574885664313547e-05, 'glad': 3.0396410266100035e-05, 'Democrats': 3.368250867324598e-05, 'resolve': 1.0679819823224336e-05, 'expedient': 6.5721968142918994e-06, 'Attacks': 2.4645738053594624e-06, 'tripping': 2.4645738053594624e-06, 'feet': 0.00023331298690736242, 'popular': 7.968788637328927e-05, 'slogans': 4.929147610718925e-06, 'win': 4.60053777000433e-05, "we'll": 2.218116424823516e-05, 'liberal': 5.093452531076222e-05, 'planned': 5.997129593041358e-05, 'forward': 9.529685380723253e-05, 'looking': 0.00013390851009119744, 'honest': 3.779013168217842e-05, "We'll": 3.203945946967301e-05, 'talk': 0.0001248717394715461, 'mouth': 8.543855858579469e-05, 'truth': 0.00010269057522331093, 'elect': 7.393721416078387e-06, 'signs': 5.504214831969465e-05, "Republicans'": 1.6430492035729749e-06, 'feeble': 7.393721416078387e-06, 'shall': 0.0002094887734555543, 'full': 0.00018566456000374616, 'partner': 2.7110311858954083e-05, 'courageous': 4.107623008932437e-06, 'attraction': 1.3144393628583799e-05, 'stop': 9.11892307983001e-05, 'piracy': 1.6430492035729749e-06, 'Southern': 9.036770619651362e-05, 'keep': 0.00020373810124304888, 'bloodstream': 4.107623008932437e-06, 'clean': 5.3399099116121684e-05, 'To': 0.0003507910049628301, 'hoodlums': 3.2860984071459497e-06, 'infiltrating': 1.6430492035729749e-06, '1940s': 1.6430492035729749e-06, 'Calling': 1.6430492035729749e-06, 'lives': 6.654349274470547e-05, 'breathes': 2.4645738053594624e-06, 'representative': 3.368250867324598e-05, 'springboard': 2.4645738053594624e-06, "Meyner's": 1.6430492035729749e-06, 'Green': 1.889506584108921e-05, 'Acres': 2.4645738053594624e-06, 'tracts': 4.929147610718925e-06, 'land': 0.00016430492035729747, 'onrush': 4.107623008932437e-06, '$60': 5.750672212505412e-06, 'underwrite': 3.2860984071459497e-06, '$45': 4.107623008932437e-06, '$15': 4.929147610718925e-06, 'alloted': 1.6430492035729749e-06, 'municipalities': 8.215246017864873e-06, 'conquer': 4.107623008932437e-06, 'space': 0.00014130223150727583, 'conserve': 3.2860984071459497e-06, 'pointing': 2.218116424823516e-05, '125,000': 1.6430492035729749e-06, '1950': 1.8073541239302723e-05, 'rapidly': 5.4220623717908165e-05, 'changing': 3.368250867324598e-05, 'unless': 7.311568955899738e-05, 'preserve': 2.875336106252706e-05, 'green': 7.804483716971631e-05, 'comment': 3.450403327503247e-05, 'misconstrued': 2.4645738053594624e-06, 'sympathetic': 2.9574885664313547e-05, "I'll": 0.0001495174775251407, 'explicit': 1.97165904428757e-05, 'bring': 0.00012897936248047853, 'dynamic': 1.8073541239302723e-05, 'afraid': 4.60053777000433e-05, 'tangle': 7.393721416078387e-06, 'Fifteen': 7.393721416078387e-06, 'retiring': 6.5721968142918994e-06, 'voluntarily': 8.215246017864873e-06, 'honored': 2.0538115044662184e-05, 'colleagues': 1.97165904428757e-05, 'whose': 0.00020620267504840834, 'four-year': 3.2860984071459497e-06, 'terms': 0.00013226546088762446, 'expire': 1.6430492035729749e-06, 'carved': 1.232286902679731e-05, 'wooden': 4.107623008932437e-05, 'elephants': 9.036770619651361e-06, 'ivory': 1.3965918230370285e-05, 'tusks': 3.2860984071459497e-06, 'remember': 9.940447681616497e-05, 'retirements': 1.6430492035729749e-06, 'leaving': 6.654349274470547e-05, 'presentation': 2.7110311858954083e-05, 'Geraldine': 2.4645738053594624e-06, 'Thompson': 3.203945946967301e-05, 'Bank': 2.464573805359462e-05, 'stepping': 8.215246017864873e-06, 'She': 0.0007492304368292766, '1920s': 4.107623008932437e-06, 'adoption': 9.036770619651361e-06, "women's": 1.3144393628583799e-05, 'suffrage': 4.929147610718925e-06, 'Resentment': 1.6430492035729749e-06, 'welled': 1.6430492035729749e-06, 'Wagner': 1.8073541239302723e-05, 'Paul': 3.203945946967301e-05, 'Screvane': 3.2860984071459497e-06, 'Abraham': 5.750672212505412e-06, 'Beame': 3.2860984071459497e-06, 'mates': 9.036770619651361e-06, 'same': 0.0005586367292148114, 'anti-organization': 2.4645738053594624e-06, 'Liberal': 7.393721416078387e-06, "Mayor's": 4.107623008932437e-06, 'opportunity': 9.940447681616497e-05, 'internal': 3.94331808857514e-05, 'resentment': 1.4787442832156774e-05, 'regarded': 4.60053777000433e-05, 'bigger': 2.875336106252706e-05, 'Opposition': 1.6430492035729749e-06, 'trying': 0.00013390851009119744, 'induce': 8.215246017864873e-06, 'Controller': 7.393721416078387e-06, 'Arthur': 4.2719279292897344e-05, 'Levitt': 4.107623008932437e-06, 'Brooklyn': 2.464573805359462e-05, 'Mayoral': 1.6430492035729749e-06, '7': 7.804483716971631e-05, 'contend': 5.750672212505412e-06, 'file': 6.243586973577305e-05, 'Their': 8.872465699294064e-05, 'view': 0.0001511605267287137, 'last-minute': 2.4645738053594624e-06, 'proposing': 5.750672212505412e-06, 'ticket': 1.3965918230370285e-05, 'emphasize': 1.7252016637516235e-05, 'weakness': 3.779013168217842e-05, 'performance': 0.00010104752601973795, 'rival': 9.85829522143785e-06, 'slate': 4.929147610718925e-06, 'Representative': 6.5721968142918994e-06, 'Buckley': 6.5721968142918994e-06, 'Bronx': 8.215246017864873e-06, 'T.': 2.300268885002165e-05, 'Sharkey': 1.6430492035729749e-06, 'visits': 1.4787442832156774e-05, 'usual': 7.968788637328927e-05, 'touch': 7.14726403554244e-05, 'Carmine': 2.4645738053594624e-06, 'G.': 3.532555787681896e-05, 'Sapio': 3.2860984071459497e-06, 'Manhattan': 1.7252016637516235e-05, 'publicly': 2.218116424823516e-05, 'believing': 1.0679819823224336e-05, 'replaced': 3.532555787681896e-05, 'Last': 3.368250867324598e-05, 'visited': 3.450403327503247e-05, "leader's": 5.750672212505412e-06, 'discussion': 7.393721416078387e-05, 'Apparently': 1.8073541239302723e-05, 'key': 6.736501734649196e-05, 'acceptance': 4.025470548753788e-05, 'choices': 1.0679819823224336e-05, 'struggle': 5.175604991254871e-05, 'talks': 1.5608967433943262e-05, 'assent': 4.107623008932437e-06, 'dropping': 1.3144393628583799e-05, 'Gerosa': 2.4645738053594624e-06, 'seems': 0.00020784572425198132, 'assumed': 5.997129593041358e-05, 'pick': 4.354080389468383e-05, "Gerosa's": 2.4645738053594624e-06, 'successor': 1.3965918230370285e-05, 'declined': 1.4787442832156774e-05, 'interviews': 1.4787442832156774e-05, 'reporters': 2.7110311858954083e-05, 'confirm': 1.3965918230370285e-05, 'deny': 3.94331808857514e-05, 'Queens': 3.2860984071459497e-06, 'replace': 2.464573805359462e-05, 'Abe': 3.2860984071459497e-06, 'Stark': 3.2860984071459497e-06, 'incumbent': 2.4645738053594624e-06, 'Irish': 2.3824213451808133e-05, 'Counties': 4.107623008932437e-06, 'Feis': 1.6430492035729749e-06, 'Hunter': 1.0679819823224336e-05, 'Campus': 3.2860984071459497e-06, 'published': 7.065111575363791e-05, "yesterday's": 5.750672212505412e-06, 'Times': 3.0396410266100035e-05, 'announce': 1.5608967433943262e-05, 'definite': 3.0396410266100035e-05, 'June': 8.215246017864874e-05, '16': 4.518385309825681e-05, 'wave': 3.861165628396491e-05, 'corruption': 1.1501344425010824e-05, 'tangible': 1.6430492035729746e-05, 'feeling': 0.00013883765770191637, 'revulsion': 5.750672212505412e-06, 'taxi': 1.3965918230370285e-05, 'driver': 4.025470548753788e-05, 'visitor': 1.1501344425010824e-05, 'remarks': 4.025470548753788e-05, 'politicians': 1.6430492035729746e-05, "It's": 0.00013226546088762446, 'See': 3.6968607080391934e-05, 'scientist': 1.4787442832156774e-05, 'writes': 3.368250867324598e-05, 'alienated': 5.750672212505412e-06, 'influence': 0.00010926277203760282, 'corrupt': 7.393721416078387e-06, 'selfish': 7.393721416078387e-06, 'beyond': 0.000129800887082265, 'secret': 6.407891893934602e-05, 'conspiracy': 1.889506584108921e-05, 'object': 5.3399099116121684e-05, 'plunder': 2.4645738053594624e-06, 'Corruption': 1.6430492035729749e-06, 'widely': 4.354080389468383e-05, 'identified': 3.861165628396491e-05, 'locale': 3.2860984071459497e-06, 'Edwin': 9.85829522143785e-06, "O'Connor's": 1.6430492035729749e-06, 'novel': 4.929147610718924e-05, 'Hurrah': 3.2860984071459497e-06, 'reasons': 8.46170339840082e-05, 'spotlight': 5.750672212505412e-06, 'succession': 1.5608967433943262e-05, 'publicized': 5.750672212505412e-06, 'scandals': 6.5721968142918994e-06, 'aroused': 1.6430492035729746e-05, 'Graft': 1.6430492035729749e-06, 'works': 0.00010104752601973795, 'investigations': 1.8073541239302723e-05, 'attracted': 2.1359639646448672e-05, 'ethical': 2.464573805359462e-05, 'reader': 3.6147082478605446e-05, 'newspapers': 3.1217934867886523e-05, 'escape': 5.093452531076222e-05, 'petty': 5.750672212505412e-06, 'chicanery': 1.6430492035729749e-06, 'worse': 4.025470548753788e-05, 'norm': 6.5721968142918994e-06, 'Day': 5.3399099116121684e-05, 'episode': 1.0679819823224336e-05, 'Public': 3.1217934867886523e-05, 'Works': 7.393721416078387e-06, 'accused': 2.1359639646448672e-05, '$8,555': 1.6430492035729749e-06, 'beach': 2.793183646074057e-05, 'waterfront': 9.036770619651361e-06, 'sharply': 3.203945946967301e-05, 'contrasting': 9.85829522143785e-06, 'forecasts': 4.929147610718925e-06, 'Southern-Republican': 1.6430492035729749e-06, "Administration's": 3.2860984071459497e-06, 'jockeying': 1.6430492035729749e-06, 'aid-to-education': 1.6430492035729749e-06, 'Rules': 8.215246017864873e-06, 'uncertain': 1.889506584108921e-05, "panel's": 1.6430492035729749e-06, 'depends': 4.107623008932437e-05, 'Trimble': 3.2860984071459497e-06, 'Democrat': 1.1501344425010824e-05, 'siding': 4.929147610718925e-06, "Rayburn's": 7.393721416078387e-06, 'Leadership': 3.2860984071459497e-06, 'hopeful': 1.0679819823224336e-05, 'encounter': 2.3824213451808133e-05, 'sometime': 8.215246017864873e-06, '$6,100,000,000': 1.6430492035729749e-06, 'provides': 6.736501734649196e-05, 'forty-year': 1.6430492035729749e-06, 'mortgages': 4.929147610718925e-06, 'low': 0.00013226546088762446, 'down-payments': 1.6430492035729749e-06, 'moderate-income': 1.6430492035729749e-06, 'families': 5.3399099116121684e-05, 'slums': 6.5721968142918994e-06, 'colleges': 3.286098407145949e-05, 'dormitories': 4.107623008932437e-06, 'appears': 6.982959115185143e-05, 'temporarily': 1.7252016637516235e-05, 'stalled': 4.107623008932437e-06, 'Northern': 2.0538115044662184e-05, 'usually': 0.00015608967433943262, 'balking': 1.6430492035729749e-06, 'Delaney': 3.2860984071459497e-06, 'Thomas': 8.297398478043522e-05, "O'Neill": 3.2860984071459497e-06, 'Three': 4.7648426903616267e-05, 'quick': 5.504214831969465e-05, 'progress': 9.036770619651362e-05, 'amending': 1.6430492035729749e-06, 'Act': 9.611837840901902e-05, 'long-term': 2.6288787257167598e-05, 'loans': 2.464573805359462e-05, 'parochial': 1.0679819823224336e-05, 'private-school': 1.6430492035729749e-06, 'science': 8.708160778936766e-05, 'languages': 3.286098407145949e-05, 'mathematics': 1.5608967433943262e-05, 'public-school': 2.4645738053594624e-06, 'clears': 1.6430492035729749e-06, 'About': 4.107623008932437e-05, 'Peace': 5.4220623717908165e-05, 'assigned': 4.436232849647032e-05, 'agencies': 5.093452531076222e-05, 'carried': 0.00010269057522331093, 'corps': 2.218116424823516e-05, '$40,000,000': 1.6430492035729749e-06, 'submitted': 1.8073541239302723e-05, '$26,000,000': 1.6430492035729749e-06, 'universities': 2.546726265538111e-05, 'Twelve': 3.2860984071459497e-06, 'contract-negotiation': 1.6430492035729749e-06, 'stage': 0.0001429452807108488, 'Gordon': 9.036770619651361e-06, 'Boyce': 1.6430492035729749e-06, 'interview': 2.7110311858954083e-05, 'Six': 2.0538115044662184e-05, 'Middle': 2.218116424823516e-05, 'Question': 6.5721968142918994e-06, 'Interviews': 2.4645738053594624e-06, 'confusion': 3.6147082478605446e-05, 'goals': 3.203945946967301e-05, 'happen': 5.2577574514335196e-05, 'churchmen': 3.2860984071459497e-06, 'example': 0.00023659908531450838, 'month': 0.00010761972283402986, 'Ghana': 4.107623008932437e-06, 'missionary': 1.1501344425010824e-05, 'discovered': 6.079282053220007e-05, 'hotel': 6.900806655006494e-05, 'protested': 1.1501344425010824e-05, 'owner': 2.793183646074057e-05, 'Why': 0.00013390851009119744, 'worry': 4.518385309825681e-05, 'U.': 5.093452531076222e-05, 'S.': 9.693990301080551e-05, 'Government': 0.00012076411646261365, 'pays': 1.4787442832156774e-05, 'overseas': 1.889506584108921e-05, 'Missionary': 4.107623008932437e-06, 'explains': 1.6430492035729746e-05, "don't": 0.0003187515454931571, 'shrugged': 1.5608967433943262e-05, 'Same': 6.5721968142918994e-06, 'remarked': 2.7110311858954083e-05, 'classical': 2.3824213451808133e-05, 'church-state': 2.4645738053594624e-06, 'Can': 2.875336106252706e-05, 'separation': 1.4787442832156774e-05, 'Sargent': 4.929147610718925e-06, 'Shriver': 4.929147610718925e-06, 'No': 0.00029492733204134896, 'forswears': 1.6430492035729749e-06, 'proselytizing': 1.6430492035729749e-06, 'proposes': 6.5721968142918994e-06, 'Moscow': 3.94331808857514e-05, 'gay': 2.3824213451808133e-05, 'Sukarno': 4.107623008932437e-06, 'Indonesia': 8.215246017864873e-06, 'Premier': 2.0538115044662184e-05, 'Khrushchev': 5.668519752326763e-05, 'pulled': 6.079282053220007e-05, 'beaming': 4.929147610718925e-06, 'Look': 2.9574885664313547e-05, '!': 0.0013119747890530204, 'jesting': 2.4645738053594624e-06, 'expansive': 1.6430492035729749e-06, 'successful': 7.722331256792982e-05, 'banker': 4.107623008932437e-06, 'twenty': 6.079282053220007e-05, 'under-developed': 2.4645738053594624e-06, 'expanding': 2.3824213451808133e-05, 'uncommitted': 3.2860984071459497e-06, 'allocated': 4.929147610718925e-06, '$1,000,000,000': 1.6430492035729749e-06, 'Western': 8.543855858579469e-05, 'estimates': 1.97165904428757e-05, 'biggest': 1.889506584108921e-05, 'beginning': 0.00013144393628583797, '1954': 3.861165628396491e-05, '1960': 0.00014212375610906232, '6,000': 4.929147610718925e-06, 'technicians': 9.036770619651361e-06, 'Nations': 4.8469951505402755e-05, 'N.': 2.3824213451808133e-05, 'Y.': 6.5721968142918994e-06, 'experts': 2.9574885664313547e-05, "country's": 1.3144393628583799e-05, 'professional': 8.379550938222171e-05, 'amid': 1.0679819823224336e-05, 'intensified': 4.107623008932437e-06, 'role': 8.626008318758118e-05, 'puts': 1.7252016637516235e-05, 'premium': 9.85829522143785e-06, 'strength': 0.00011172734584296228, 'jobs': 5.2577574514335196e-05, 'India': 4.8469951505402755e-05, '400,000,000': 1.6430492035729749e-06, 'inhabitants': 1.1501344425010824e-05, 'filling': 2.875336106252706e-05, 'Secretariat': 4.929147610718925e-06, 'panel': 2.6288787257167598e-05, 'completed': 5.668519752326763e-05, 'eighteen': 1.3144393628583799e-05, 'Formula': 1.6430492035729749e-06, 'due': 0.00011501344425010824, 'Administrative': 4.107623008932437e-06, 'Budgetary': 1.6430492035729749e-06, 'Questions': 6.5721968142918994e-06, 'understood': 4.8469951505402755e-05, 'ninety-nine': 2.4645738053594624e-06, 'affairs': 5.175604991254871e-05, 'officer': 8.050941097507576e-05, 'economist': 5.750672212505412e-06, 'start': 0.00011583496885189472, '10,000,000': 2.4645738053594624e-06, '150,000,000': 2.4645738053594624e-06, 'fifteen': 4.025470548753788e-05, 'above': 0.00022674079009307052, '30,000,000': 1.6430492035729749e-06, 'cut-off': 1.6430492035729749e-06, 'forming': 1.8073541239302723e-05, 'unite': 9.036770619651361e-06, 'war-ridden': 2.4645738053594624e-06, 'kingdom': 1.4787442832156774e-05, 'decision': 9.858295221437849e-05, 'Zurich': 2.4645738053594624e-06, 'Boun': 4.107623008932437e-06, 'Oum': 2.4645738053594624e-06, 'royal': 2.218116424823516e-05, 'neutralists': 2.4645738053594624e-06, 'Souphanouvong': 1.6430492035729749e-06, 'pro-Communist': 4.929147610718925e-06, 'latter': 9.283228000187308e-05, 'half-brothers': 1.6430492035729749e-06, 'joint': 2.7110311858954083e-05, 'welcomed': 1.0679819823224336e-05, 'delegations': 2.4645738053594624e-06, 'nineteenth': 3.203945946967301e-05, 'plenary': 2.4645738053594624e-06, 'fourteen-nation': 1.6430492035729749e-06, 'agreement': 6.654349274470547e-05, 'Princes': 2.4645738053594624e-06, 'ease': 3.450403327503247e-05, 'task': 4.929147610718924e-05, 'diplomats': 4.929147610718925e-06, 'conceded': 9.85829522143785e-06, 'overly': 7.393721416078387e-06, 'optimistic': 1.3144393628583799e-05, 'Tactics': 1.6430492035729749e-06, 'Averell': 2.4645738053594624e-06, 'Harriman': 2.4645738053594624e-06, 'Malcolm': 3.2860984071459497e-06, 'Britain': 4.60053777000433e-05, 'Maurice': 6.5721968142918994e-06, 'Couve': 1.6430492035729749e-06, 'Murville': 1.6430492035729749e-06, "France's": 5.750672212505412e-06, 'Minister': 1.3144393628583799e-05, "Canada's": 1.6430492035729749e-06, 'External': 4.929147610718925e-06, 'meanwhile': 1.1501344425010824e-05, 'round': 5.8328246726840606e-05, 'consultations': 2.4645738053594624e-06, 'tactics': 1.6430492035729746e-05, 'pace': 3.532555787681896e-05, 'slowed': 1.4787442832156774e-05, 'Princess': 4.929147610718925e-06, 'Moune': 1.6430492035729749e-06, "Phouma's": 1.6430492035729749e-06, "Princes'": 1.6430492035729749e-06, 'two-hour': 4.107623008932437e-06, 'cordial': 5.750672212505412e-06, 'she': 0.0016019729734836504, 'Laotians': 1.6430492035729749e-06, 'six-point': 2.4645738053594624e-06, 'agenda': 4.929147610718925e-06, 'reached': 0.00013965918230370285, 'principles': 5.668519752326763e-05, 'guide': 3.0396410266100035e-05, 'factors': 8.46170339840082e-05, 'search': 5.4220623717908165e-05, 'Appointment': 2.4645738053594624e-06, 'Pfaff': 4.107623008932437e-06, '41': 9.85829522143785e-06, 'promotion': 2.0538115044662184e-05, 'manager': 6.654349274470547e-05, 'Times-Picayune': 1.6430492035729749e-06, 'Publishing': 1.6430492035729749e-06, 'Company': 5.997129593041358e-05, 'Saturday': 5.586367292148114e-05, 'Tims': 1.6430492035729749e-06, 'company': 0.00017991388779124075, 'succeeds': 7.393721416078387e-06, 'Burke': 6.5721968142918994e-06, '1946': 1.7252016637516235e-05, 'commercial': 5.011300070897573e-05, 'artist': 4.60053777000433e-05, 'advertising': 4.025470548753788e-05, 'native': 3.779013168217842e-05, 'Orleans': 3.368250867324598e-05, 'Elementary': 3.2860984071459497e-06, 'Fortier': 1.6430492035729749e-06, 'Soule': 1.6430492035729749e-06, 'From': 0.00013473003469298392, '1942': 9.85829522143785e-06, 'December': 5.175604991254871e-05, '1945': 1.5608967433943262e-05, 'Air': 3.286098407145949e-05, 'Field': 2.6288787257167598e-05, 'Belleville': 1.6430492035729749e-06, 'merchandising': 6.5721968142918994e-06, 'wholesale': 6.5721968142918994e-06, 'Audrey': 1.6430492035729749e-06, 'Knecht': 1.6430492035729749e-06, 'Karol': 1.6430492035729749e-06, 'reside': 2.4645738053594624e-06, '4911': 1.6430492035729749e-06, 'Miles': 4.107623008932437e-06, 'Thousands': 3.2860984071459497e-06, 'bleacher-type': 1.6430492035729749e-06, 'seats': 1.232286902679731e-05, 'erected': 1.4787442832156774e-05, 'Pennsylvania': 3.779013168217842e-05, 'Avenue': 3.286098407145949e-05, 'inaugural': 4.929147610718925e-06, 'parade': 2.0538115044662184e-05, 'Assuming': 4.107623008932437e-06, 'weather': 5.504214831969465e-05, 'halfway': 1.3965918230370285e-05, 'decent': 1.7252016637516235e-05, 'hundreds': 3.450403327503247e-05, 'mass': 7.393721416078387e-05, 'thoroughfare': 3.2860984071459497e-06, 'Dwight': 1.0679819823224336e-05, 'leave': 0.00016348339575551098, 'Hill': 2.875336106252706e-05, 'oath-taking': 1.6430492035729749e-06, 'ceremonies': 1.232286902679731e-05, 'ride': 3.779013168217842e-05, 'historic': 1.97165904428757e-05, 'ceremonial': 2.4645738053594624e-06, 'impressive': 4.025470548753788e-05, 'street': 0.00012076411646261365, 'Columbia': 1.5608967433943262e-05, 'standpoint': 1.1501344425010824e-05, 'viewpoint': 1.3965918230370285e-05, 'approach': 0.00010104752601973795, 'buildings': 6.325739433755954e-05, 'Within': 3.203945946967301e-05, 'avenue': 6.5721968142918994e-06, "government's": 5.750672212505412e-06, 'shrines': 4.107623008932437e-06, 'monuments': 7.393721416078387e-06, 'Of': 0.0002735676923949003, 'course': 0.00038200893983071665, '1600': 3.2860984071459497e-06, 'famous': 7.393721416078387e-05, 'easy': 0.00010022600141795146, 'begins': 4.60053777000433e-05, 'block': 5.504214831969465e-05, 'seven-stories': 1.6430492035729749e-06, 'Great': 4.7648426903616267e-05, 'chapters': 1.0679819823224336e-05, 'recorded': 3.6147082478605446e-05, '169': 2.4645738053594624e-06, 'thousand': 7.88663617715028e-05, 'watch': 6.325739433755954e-05, '5000': 4.107623008932437e-06, 'suffragettes': 1.6430492035729749e-06, '1920': 9.85829522143785e-06, 'presidential': 9.85829522143785e-06, 'Seats': 1.6430492035729749e-06, 'square': 9.20107554000866e-05, 'marching': 1.232286902679731e-05, 'soldiers': 4.60053777000433e-05, 'War': 0.00013144393628583797, 'Between': 1.232286902679731e-05, 'returning': 2.7110311858954083e-05, '1865': 5.750672212505412e-06, 'Archives': 2.4645738053594624e-06, 'valuable': 3.6968607080391934e-05, 'records': 7.065111575363791e-05, 'Also': 5.8328246726840606e-05, 'located': 5.2577574514335196e-05, 'Edgar': 2.4645738053594624e-06, 'Hoover': 7.393721416078387e-06, 'presides': 1.6430492035729749e-06, 'Street': 8.133093557686225e-05, 'car': 0.00022263316708413808, 'tracks': 9.85829522143785e-06, 'center': 0.00015444662513585964, 'powered': 2.4645738053594624e-06, 'spectators': 1.0679819823224336e-05, 'occupying': 6.5721968142918994e-06, 'vantage': 5.750672212505412e-06, 'bordering': 4.929147610718925e-06, 'Lafayette': 1.1501344425010824e-05, 'Square': 2.7110311858954083e-05, 'opposite': 6.49004435411325e-05, 'statues': 6.5721968142918994e-06, 'Andrew': 1.0679819823224336e-05, 'hero': 3.861165628396491e-05, 'Battle': 8.215246017864873e-06, 'Moving': 4.107623008932437e-06, 'viewing': 8.215246017864873e-06, '40': 3.368250867324598e-05, '16,000': 3.2860984071459497e-06, 'branches': 2.793183646074057e-05, 'Division': 3.450403327503247e-05, 'academies': 3.2860984071459497e-06, 'include': 9.20107554000866e-05, 'representations': 9.036770619651361e-06, 'respective': 1.6430492035729746e-05, 'Johnson': 2.875336106252706e-05, 'Then': 0.0002924627582359895, 'admission': 2.793183646074057e-05, 'union': 6.49004435411325e-05, 'headed': 4.929147610718924e-05, 'Marines': 1.6430492035729749e-06, 'Navy': 2.6288787257167598e-05, 'Force': 2.546726265538111e-05, 'Guard': 1.1501344425010824e-05, 'reserve': 2.218116424823516e-05, 'Puerto': 2.0538115044662184e-05, 'Rico': 1.8073541239302723e-05, 'Virgin': 2.218116424823516e-05, 'Islands': 1.5608967433943262e-05, 'Guam': 1.0679819823224336e-05, 'Samoa': 1.6430492035729749e-06, 'trust': 4.107623008932437e-05, 'territories': 7.393721416078387e-06, 'Canal': 3.2860984071459497e-06, 'Zone': 1.6430492035729749e-06, 'Miss.': 4.929147610718925e-06, 'governmental': 1.97165904428757e-05, 'developments': 3.450403327503247e-05, 'Mississippi': 3.286098407145949e-05, 'observing': 9.85829522143785e-06, 'scene': 8.46170339840082e-05, 'script': 9.85829522143785e-06, 'gazing': 5.750672212505412e-06, 'largely': 5.586367292148114e-05, 'unpredictability': 2.4645738053594624e-06, 'operates': 1.3144393628583799e-05, 'helm': 3.2860984071459497e-06, 'Ross': 9.85829522143785e-06, 'Barnett': 9.85829522143785e-06, 'surrounded': 1.6430492035729746e-05, 'keeps': 1.8073541239302723e-05, 'foes': 5.750672212505412e-06, 'guessing': 7.393721416078387e-06, 'friends': 0.0001240502148697596, 'Consequently': 9.85829522143785e-06, 'Could': 1.8073541239302723e-05, 'scramble': 2.4645738053594624e-06, 'predict': 7.393721416078387e-06, 'settle': 1.97165904428757e-05, 'iron': 3.1217934867886523e-05, 'rough': 3.368250867324598e-05, 'edges': 3.1217934867886523e-05, 'builtin': 1.6430492035729749e-06, 'headache': 4.929147610718925e-06, 'steady': 3.368250867324598e-05, 'stream': 4.2719279292897344e-05, 'job-seekers': 1.6430492035729749e-06, 'commitments': 1.3965918230370285e-05, 'eight-year': 1.6430492035729749e-06, 'quest': 1.3965918230370285e-05, 'decide': 3.203945946967301e-05, 'throw': 3.368250867324598e-05, 'Certainly': 2.218116424823516e-05, 'nobody': 3.861165628396491e-05, 'lawmakers': 4.107623008932437e-06, 'enjoy': 3.6147082478605446e-05, 're-enactment': 2.4645738053594624e-06, 'strange': 6.325739433755954e-05, 'honeymoon': 9.85829522143785e-06, "doesn't": 7.065111575363791e-05, 'decade': 3.861165628396491e-05, 'odds': 1.232286902679731e-05, 'Districts': 2.4645738053594624e-06, 'restless': 1.1501344425010824e-05, 'companionship': 4.107623008932437e-06, '$22.50': 1.6430492035729749e-06, 'diem': 1.6430492035729749e-06, 'agitating': 1.6430492035729749e-06, 'withstand': 3.2860984071459497e-06, 'sensitive': 4.929147610718924e-05, 'cutting': 5.175604991254871e-05, 'seat': 4.518385309825681e-05, 'With': 0.0002283838392966435, 'eyes': 0.00032203764390030304, 'focused': 1.0679819823224336e-05, 'Delta': 6.5721968142918994e-06, 'Congressman': 1.3144393628583799e-05, 'Smith': 4.518385309825681e-05, 'redistricting': 1.6430492035729749e-06, 'longstanding': 3.2860984071459497e-06, "Mississippi's": 3.2860984071459497e-06, 'crossroads': 1.0679819823224336e-05, 'Split': 1.6430492035729749e-06, 'badly': 2.793183646074057e-05, 'equally': 4.929147610718924e-05, 'divided': 4.518385309825681e-05, 'camps': 1.5608967433943262e-05, 'loyalists': 2.4645738053594624e-06, 'independents': 1.6430492035729749e-06, 'currently': 2.7110311858954083e-05, 'wreck': 7.393721416078387e-06, 'Future': 1.0679819823224336e-05, 'clouded': 5.750672212505412e-06, 'titular': 1.6430492035729749e-06, 'reestablish': 1.6430492035729749e-06, 'loyalist': 1.6430492035729749e-06, 'ranks': 1.7252016637516235e-05, 'bypass': 3.2860984071459497e-06, 'functionary': 2.4645738053594624e-06, 'patronage': 9.036770619651361e-06, 'normally': 2.875336106252706e-05, 'flow': 5.668519752326763e-05, 'solidarity': 1.1501344425010824e-05, 'picture': 0.00013308698548941095, 'US': 4.107623008932437e-06, 'Sens.': 1.6430492035729749e-06, 'Eastland': 1.6430492035729749e-06, 'Stennis': 1.6430492035729749e-06, 'remained': 8.790313239115415e-05, 'loyal': 1.4787442832156774e-05, 'Reports': 5.750672212505412e-06, 'probable': 2.0538115044662184e-05, 'stripped': 1.4787442832156774e-05, 'flows': 4.929147610718925e-06, 'Baton': 4.929147610718925e-06, 'Rouge': 4.929147610718925e-06, 'La.': 7.393721416078387e-06, 'Jimmie': 1.6430492035729749e-06, 'theme': 4.60053777000433e-05, 'peace': 0.0001100842966393893, 'harmony': 1.8073541239302723e-05, 'severe': 3.0396410266100035e-05, 'stresses': 1.6430492035729746e-05, 'segregation': 9.036770619651361e-06, 'troublesome': 6.5721968142918994e-06, 'vexing': 2.4645738053594624e-06, 'finances': 5.750672212505412e-06, 'transition': 2.6288787257167598e-05, 'hike': 4.107623008932437e-06, 'revenues': 2.218116424823516e-05, 'dedicated': 1.97165904428757e-05, 'tardiness': 1.6430492035729749e-06, 'dedication': 1.7252016637516235e-05, 'suspect': 2.546726265538111e-05, 'related': 8.133093557686225e-05, 'directly': 0.00011337039504653526, 'shortage': 1.3144393628583799e-05, 'cash': 2.793183646074057e-05, 'weary': 1.3965918230370285e-05, 'Indeed': 3.6147082478605446e-05, "administration's": 3.2860984071459497e-06, 'curious': 3.779013168217842e-05, 'contributing': 1.3144393628583799e-05, 'defeat': 2.3824213451808133e-05, '$28': 4.107623008932437e-06, 'grant-in-aid': 3.2860984071459497e-06, 'effectiveness': 2.7110311858954083e-05, 'clearing': 1.3965918230370285e-05, 'inconsistencies': 1.6430492035729749e-06, 'play': 0.0001626618711537245, 'determining': 2.793183646074057e-05, 'muster': 3.2860984071459497e-06, 'reconvenes': 1.6430492035729749e-06, 'normalcy': 4.107623008932437e-06, 'hands': 0.0002349560361109354, 'integration': 3.94331808857514e-05, 'terminate': 1.0679819823224336e-05, 'toss': 7.393721416078387e-06, 'towel': 5.750672212505412e-06, 'anyway': 3.1217934867886523e-05, 'frustrated': 9.036770619651361e-06, 'so-far': 1.6430492035729749e-06, 'losing': 2.3824213451808133e-05, 'token': 9.036770619651361e-06, 'sort': 0.00013308698548941095, 'politicos': 1.6430492035729749e-06, 'acknowledge': 1.0679819823224336e-05, 'convey': 1.1501344425010824e-05, 'notion': 3.368250867324598e-05, 'though': 0.0003088932502717193, 'ineffectual': 1.6430492035729749e-06, 'Underlying': 3.2860984071459497e-06, 'Passage': 1.6430492035729749e-06, 'continued': 0.0001100842966393893, 'extra': 4.1897754691110856e-05, 'unlikely': 1.8073541239302723e-05, 'conclusion': 4.929147610718924e-05, 'purposes': 7.475873876257036e-05, 'perfect': 4.60053777000433e-05, 'consonance': 1.6430492035729749e-06, 'acute': 1.1501344425010824e-05, 'interesting': 6.736501734649196e-05, 'dilemma': 2.1359639646448672e-05, 'Since': 0.0001429452807108488, 'constitution': 9.85829522143785e-06, 'forbids': 4.929147610718925e-06, 'introduction': 2.3824213451808133e-05, 'expenses': 3.94331808857514e-05, 'inflate': 1.6430492035729749e-06, 'Constant': 2.4645738053594624e-06, 'stab': 3.2860984071459497e-06, 'raiser': 1.6430492035729749e-06, 'prospect': 2.1359639646448672e-05, 'spending': 3.450403327503247e-05, 'unpleasant': 1.3144393628583799e-05, 'avoid': 4.6826902301829785e-05, 'alternatives': 1.4787442832156774e-05, 'blocked': 1.0679819823224336e-05, 'trim': 1.3965918230370285e-05, 'arouse': 4.929147610718925e-06, 'squeezed': 1.4787442832156774e-05, 'trims': 1.6430492035729749e-06, 'exert': 9.85829522143785e-06, 'receptive': 2.4645738053594624e-06, 'constant': 5.750672212505412e-05, 'confronting': 9.036770619651361e-06, 'tried': 0.00014048070690548934, 'economize': 3.2860984071459497e-06, 'Any': 3.6147082478605446e-05, 'revive': 7.393721416078387e-06, 'allegations': 4.929147610718925e-06, 'followers': 1.4787442832156774e-05, 'affiliations': 4.929147610718925e-06, 'imprudently': 2.4645738053594624e-06, 'house-cleaning': 1.6430492035729749e-06, 'depending': 2.6288787257167598e-05, 'combat': 2.300268885002165e-05, 'Alexander': 3.779013168217842e-05, 'Hemphill': 7.393721416078387e-06, 'bids': 4.929147610718925e-06, 'Frankford': 1.6430492035729749e-06, 'Elevated': 1.6430492035729749e-06, 'rigged': 3.2860984071459497e-06, 'contracting': 3.2860984071459497e-06, 'Estimates': 1.6430492035729749e-06, "city's": 1.7252016637516235e-05, 'loss': 7.065111575363791e-05, '$344,000': 1.6430492035729749e-06, 'ranged': 1.5608967433943262e-05, '$200,000': 2.4645738053594624e-06, 'Shortcuts': 1.6430492035729749e-06, 'unnoticed': 4.107623008932437e-06, 'Steel': 6.5721968142918994e-06, 'Erection': 1.6430492035729749e-06, 'contracted': 7.393721416078387e-06, 'impossibly': 1.6430492035729749e-06, 'legitimate': 1.3965918230370285e-05, 'competing': 1.3144393628583799e-05, 'contractors': 2.4645738053594624e-06, 'shortcuts': 1.6430492035729749e-06, "Controller's": 1.6430492035729749e-06, 'rigging': 2.4645738053594624e-06, 'disclosures': 4.107623008932437e-06, 'sued': 4.107623008932437e-06, '$172,400': 1.6430492035729749e-06, 'covering': 2.7110311858954083e-05, 'contract': 4.929147610718924e-05, 'Philadelphia': 4.1897754691110856e-05, 'Transportation': 4.107623008932437e-06, 'investigating': 7.393721416078387e-06, 'played': 8.543855858579469e-05, 'reviewing': 8.215246017864873e-06, 'signature': 5.750672212505412e-06, 'Harold': 2.7110311858954083e-05, 'Varani': 2.4645738053594624e-06, 'architecture': 9.85829522143785e-06, 'engineering': 3.286098407145949e-05, 'Property': 3.2860984071459497e-06, 'appeared': 0.00011172734584296228, 'vouchers': 1.6430492035729749e-06, 'certifying': 1.6430492035729749e-06, 'fired': 3.6147082478605446e-05, 'charges': 3.6968607080391934e-05, 'accepting': 1.8073541239302723e-05, 'contractor': 5.750672212505412e-06, 'Managing': 1.6430492035729749e-06, 'Director': 2.1359639646448672e-05, 'Donald': 1.7252016637516235e-05, 'cooperate': 9.85829522143785e-06, 'sharp': 5.8328246726840606e-05, 'disagreement': 9.036770619651361e-06, 'sue': 1.1501344425010824e-05, 'recovery': 2.300268885002165e-05, 'Berger': 1.3144393628583799e-05, 'morning': 0.00017169864177337587, 'PTC': 3.2860984071459497e-06, 'Concern': 1.6430492035729749e-06, 'bankrupt': 4.929147610718925e-06, 'Consolidated': 1.6430492035729749e-06, 'Industries': 7.393721416078387e-06, 'Inc.': 1.7252016637516235e-05, '3646': 1.6430492035729749e-06, '2d': 4.107623008932437e-06, 'reorganization': 2.218116424823516e-05, 'bankruptcy': 7.393721416078387e-06, 'directors': 1.5608967433943262e-05, 'draw': 4.436232849647032e-05, 'Business': 2.546726265538111e-05, 'Crumlish': 1.6430492035729749e-06, 'Intervenes': 1.6430492035729749e-06, 'Common': 1.3144393628583799e-05, 'Pleas': 2.4645738053594624e-06, 'bonding': 1.6430492035729749e-06, 'Travelers': 2.4645738053594624e-06, 'Indemnity': 1.6430492035729749e-06, 'Continental': 1.3144393628583799e-05, 'Casualty': 1.6430492035729749e-06, "Berger's": 4.929147610718925e-06, 'intervened': 4.107623008932437e-06, 'preliminary': 1.8073541239302723e-05, 'filing': 1.6430492035729746e-05, 'claim': 8.050941097507576e-05, 'violated': 4.107623008932437e-06, 'violations': 3.2860984071459497e-06, 'involve': 2.6288787257167598e-05, 'expansion': 3.779013168217842e-05, 'joints': 1.0679819823224336e-05, 'overhauling': 3.2860984071459497e-06, '102': 1.6430492035729749e-06, '75': 1.7252016637516235e-05, 'repaired': 9.85829522143785e-06, 'Wide': 2.4645738053594624e-06, 'repairs': 7.393721416078387e-06, '$500': 1.0679819823224336e-05, 'Belanger': 1.6430492035729749e-06, 'Sons': 9.85829522143785e-06, 'Cambridge': 1.3144393628583799e-05, '$600': 1.1501344425010824e-05, '$2400': 1.6430492035729749e-06, '$3100': 1.6430492035729749e-06, '$37,500': 1.6430492035729749e-06, "won't": 8.543855858579469e-05, "Can't": 1.5608967433943262e-05, 'headline': 4.107623008932437e-06, 'Hooked': 1.6430492035729749e-06, '$172,000': 1.6430492035729749e-06, 'Douglas': 1.97165904428757e-05, 'Pratt': 9.036770619651361e-06, 'transit': 1.232286902679731e-05, 'Certain': 9.036770619651361e-06, 'Samuel': 2.875336106252706e-05, 'Goodis': 4.107623008932437e-06, 'objected': 1.1501344425010824e-05, 'occupancy': 4.107623008932437e-06, 'rates': 8.297398478043522e-05, 'hotels': 1.6430492035729746e-05, '48': 9.036770619651361e-06, 'percent': 4.436232849647032e-05, 'objection': 1.5608967433943262e-05, "Council's": 4.107623008932437e-06, 'Finance': 4.107623008932437e-06, '1000': 9.85829522143785e-06, 'rooms': 4.518385309825681e-05, '$5000': 4.929147610718925e-06, 'Testifies': 1.6430492035729749e-06, 'testimony': 3.94331808857514e-05, 'wide': 0.00010186905062152444, 'raise': 4.2719279292897344e-05, '$740,000': 1.6430492035729749e-06, '$2,330,000': 1.6430492035729749e-06, 'rooming': 3.2860984071459497e-06, 'houses': 6.736501734649196e-05, 'multi-family': 1.6430492035729749e-06, 'dwellings': 6.5721968142918994e-06, '$5': 6.5721968142918994e-06, '$2': 7.393721416078387e-06, 'renewal': 7.393721416078387e-06, '$1': 1.232286902679731e-05, 'single': 0.00014212375610906232, 'account': 9.693990301080551e-05, '95': 5.750672212505412e-06, 'accomodations': 1.6430492035729749e-06, 'apartment': 6.572196814291899e-05, '$457,000': 1.6430492035729749e-06, 'Leonard': 9.036770619651361e-06, 'Kaplan': 1.6430492035729749e-06, 'Home': 1.8073541239302723e-05, 'Builders': 2.4645738053594624e-06, 'behalf': 1.8073541239302723e-05, 'association': 3.861165628396491e-05, 'dog': 5.8328246726840606e-05, 'drew': 5.2577574514335196e-05, 'Councilwoman': 1.6430492035729749e-06, 'Virginia': 6.243586973577305e-05, 'Knauer': 2.4645738053594624e-06, 'formerly': 2.300268885002165e-05, 'pedigreed': 1.6430492035729749e-06, 'dogs': 5.586367292148114e-05, 'males': 1.6430492035729746e-05, 'females': 1.4787442832156774e-05, 'flat': 5.504214831969465e-05, 'replies': 8.215246017864873e-06, 'owners': 2.875336106252706e-05, 'penalized': 3.2860984071459497e-06, 'animal': 5.668519752326763e-05, 'Deputy': 6.5721968142918994e-06, 'Leary': 1.6430492035729749e-06, 'spends': 7.393721416078387e-06, '$115,000': 1.6430492035729749e-06, 'annually': 1.232286902679731e-05, 'regulate': 2.4645738053594624e-06, 'collects': 4.929147610718925e-06, '$43,000': 1.6430492035729749e-06, '$67,000': 1.6430492035729749e-06, 'S.P.C.A.': 1.6430492035729749e-06, '$15,000': 3.2860984071459497e-06, 'catchers': 1.6430492035729749e-06, 'bites': 7.393721416078387e-06, 'Backs': 1.6430492035729749e-06, 'McConnell': 2.4645738053594624e-06, 'indorsed': 1.6430492035729749e-06, 'adequately': 1.3965918230370285e-05, 'compensated': 4.107623008932437e-06, 'schedule': 3.0396410266100035e-05, 'Licenses': 1.6430492035729749e-06, 'Inspections': 1.6430492035729749e-06, 'Barnet': 1.6430492035729749e-06, 'Lieberman': 1.6430492035729749e-06, 'Eugene': 2.1359639646448672e-05, 'Gillis': 1.6430492035729749e-06, 'Petitions': 1.6430492035729749e-06, 'Norristown': 1.6430492035729749e-06, 'Julian': 7.393721416078387e-06, 'Barnard': 4.929147610718925e-06, 'Montgomery': 1.3965918230370285e-05, 'Horace': 4.929147610718925e-06, 'Davenport': 2.4645738053594624e-06, 'widow': 1.97165904428757e-05, 'killed': 6.243586973577305e-05, "Barnard's": 1.6430492035729749e-06, 'hit-run': 2.4645738053594624e-06, 'Dannehower': 1.6430492035729749e-06, 'pleaded': 6.5721968142918994e-06, 'manslaughter': 4.107623008932437e-06, 'fined': 4.107623008932437e-06, 'Warren': 4.1897754691110856e-05, 'K.': 1.4787442832156774e-05, 'Hess': 1.6430492035729749e-06, "years'": 7.393721416078387e-06, 'probation': 6.5721968142918994e-06, 'drive': 7.722331256792982e-05, 'driving': 4.2719279292897344e-05, 'sentence': 2.793183646074057e-05, 'pronounced': 1.5608967433943262e-05, 'Victim': 1.6430492035729749e-06, 'accident': 2.7110311858954083e-05, 'Lee': 2.875336106252706e-05, 'Stansbery': 1.6430492035729749e-06, '39': 4.929147610718925e-06, 'reprimanded': 2.4645738053594624e-06, 'violating': 4.107623008932437e-06, 'Planning': 1.232286902679731e-05, 'agreements': 1.3144393628583799e-05, 'redevelopers': 1.6430492035729749e-06, 'Redevelopment': 4.107623008932437e-06, '$300,000,000': 1.6430492035729749e-06, 'Eastwick': 4.929147610718925e-06, 'Area': 4.929147610718925e-06, 'hazards': 8.215246017864873e-06, 'pedestrians': 2.4645738053594624e-06, 'Corp.': 9.85829522143785e-06, '1311': 1.6430492035729749e-06, 'acre': 9.036770619651361e-06, 'tract': 1.3144393628583799e-05, '$12,192,865': 1.6430492035729749e-06, 'bounded': 8.215246017864873e-06, 'Dicks': 1.6430492035729749e-06, '61st': 1.6430492035729749e-06, 'parks': 1.3144393628583799e-05, 'designated': 1.4787442832156774e-05, 'Stage': 2.4645738053594624e-06, 'Residential': 4.107623008932437e-06, "Authority's": 3.2860984071459497e-06, 'master': 5.093452531076222e-05, 'feature': 3.0396410266100035e-05, 'row': 2.875336106252706e-05, 'garden': 3.94331808857514e-05, 'apartments': 1.3965918230370285e-05, 'churches': 6.818654194827845e-05, 'clusters': 4.929147610718925e-06, 'corporation': 5.8328246726840606e-05, 'formed': 6.325739433755954e-05, 'Reynolds': 4.929147610718925e-06, 'Metal': 3.2860984071459497e-06, 'builder': 2.218116424823516e-05, 'second': 0.0002809614138109787, '520-acre': 1.6430492035729749e-06, 'west': 4.025470548753788e-05, 'builders': 2.1359639646448672e-05, 'developing': 4.2719279292897344e-05, 'Would': 3.1217934867886523e-05, 'bar': 5.9149771328627094e-05, 'Constantinos': 1.6430492035729749e-06, 'Doxiadis': 1.6430492035729749e-06, 'Reconstruction': 3.2860984071459497e-06, 'Greece': 1.3965918230370285e-05, 'planner': 2.4645738053594624e-06, 'sectors': 9.036770619651361e-06, 'barred': 7.393721416078387e-06, 'vehicular': 1.6430492035729749e-06, 'landscaped': 3.2860984071459497e-06, 'walkways': 1.6430492035729749e-06, 'esplanade': 3.2860984071459497e-06, 'entire': 0.00012322869026797312, 'two-and-a-half-mile': 1.6430492035729749e-06, 'length': 9.529685380723253e-05, 'eliminates': 4.107623008932437e-06, 'Grovers': 1.6430492035729749e-06, 'ran': 0.00010926277203760282, 'pedestrian': 4.929147610718925e-06, 'bridges': 1.889506584108921e-05, 'Kansas': 2.6288787257167598e-05, 'Mo.': 7.393721416078387e-06, 'UPI': 4.929147610718925e-06, 'International': 3.203945946967301e-05, 'Fighters': 2.4645738053594624e-06, 'severly': 1.6430492035729749e-06, 'injured': 1.7252016637516235e-05, 'bomb': 2.793183646074057e-05, 'tore': 1.3144393628583799e-05, 'apart': 3.94331808857514e-05, 'Battalion': 1.6430492035729749e-06, 'Stanton': 4.107623008932437e-06, 'Gladden': 3.2860984071459497e-06, '42': 1.3965918230370285e-05, 'figure': 0.0001371946084983434, 'representation': 1.5608967433943262e-05, 'fighters': 1.232286902679731e-05, 'teamsters': 6.5721968142918994e-06, 'suffered': 3.532555787681896e-05, 'multiple': 2.875336106252706e-05, 'fractures': 2.4645738053594624e-06, 'ankles': 6.5721968142918994e-06, 'Baptist': 1.4787442832156774e-05, 'Memorial': 1.6430492035729746e-05, 'Ignition': 1.6430492035729749e-06, 'sets': 5.011300070897573e-05, 'blast': 1.3144393628583799e-05, 'battalion': 2.4645738053594624e-06, 'driveway': 1.232286902679731e-05, "I'd": 8.626008318758118e-05, 'ignition': 4.107623008932437e-06, 'flash': 1.7252016637516235e-05, 'lying': 2.875336106252706e-05, "Gladden's": 2.4645738053594624e-06, 'sons': 1.5608967433943262e-05, 'younger': 3.368250867324598e-05, 'boy': 0.00019387980602161102, 'knocked': 2.6288787257167598e-05, 'bed': 0.0001043336244268839, 'wall': 0.00011501344425010824, 'Hood': 3.2860984071459497e-06, 'flies': 9.85829522143785e-06, 'hood': 4.107623008932437e-06, 'flying': 3.203945946967301e-05, 'roof': 4.8469951505402755e-05, 'front': 0.00017909236318945426, 'wheel': 4.518385309825681e-05, 'landed': 1.3144393628583799e-05, 'away': 0.0003729721692110653, 'laboratory': 2.1359639646448672e-05, 'explosive': 1.4787442832156774e-05, 'device': 4.60053777000433e-05, 'containing': 3.779013168217842e-05, 'TNT': 4.107623008932437e-06, 'nitroglycerine': 1.6430492035729749e-06, "car's": 6.5721968142918994e-06, 'starter': 2.4645738053594624e-06, 'target': 3.779013168217842e-05, 'threatening': 2.218116424823516e-05, 'torn': 2.1359639646448672e-05, 'dissension': 3.2860984071459497e-06, 'Led': 2.4645738053594624e-06, 'outspoken': 5.750672212505412e-06, 'critic': 2.0538115044662184e-05, "union's": 2.4645738053594624e-06, 'began': 0.00025713720035917055, 'organizing': 6.5721968142918994e-06, 'firemen': 4.929147610718925e-06, 'reward': 1.3144393628583799e-05, 'bombing': 4.929147610718925e-06, "association's": 1.6430492035729749e-06, 'Kas.': 1.6430492035729749e-06, 'guards': 1.6430492035729746e-05, 'Mining': 2.4645738053594624e-06, 'Shiflett': 2.4645738053594624e-06, 'secretary-treasurer': 2.4645738053594624e-06, 'active': 6.818654194827845e-05, 'Ankara': 1.6430492035729749e-06, 'Turkey': 5.750672212505412e-06, 'Oct.': 2.3824213451808133e-05, 'AP': 1.232286902679731e-05, 'Turkish': 1.0679819823224336e-05, 'bowed': 6.5721968142918994e-06, 'emergency': 2.793183646074057e-05, 'Cemal': 1.6430492035729749e-06, 'Gursel': 3.2860984071459497e-06, 'contested': 3.2860984071459497e-06, 'indecisive': 2.4645738053594624e-06, '15': 9.365380460365957e-05, 'bargaining': 1.5608967433943262e-05, 'threat': 3.368250867324598e-05, 'army': 4.8469951505402755e-05, 'coup': 4.107623008932437e-06, "d'etat": 2.4645738053594624e-06, 'By-passing': 1.6430492035729749e-06, 'junta': 3.2860984071459497e-06, 'overthrow': 4.929147610718925e-06, 'Adnan': 1.6430492035729749e-06, 'Menderes': 2.4645738053594624e-06, 'Cedvet': 1.6430492035729749e-06, 'Sunay': 1.6430492035729749e-06, 'deadline': 5.750672212505412e-06, 'join': 5.011300070897573e-05, 'threatened': 2.464573805359462e-05, 'protocol': 3.2860984071459497e-06, 'agreeing': 6.5721968142918994e-06, 'demanded': 3.368250867324598e-05, 'pledges': 3.2860984071459497e-06, 'pardoned': 2.4645738053594624e-06, 'satisfied': 2.9574885664313547e-05, 'stated': 6.982959115185143e-05, 'solution': 4.6826902301829785e-05, 'created': 6.736501734649196e-05, 'Vincent': 1.6430492035729746e-05, 'Ierulli': 3.2860984071459497e-06, 'temporary': 2.546726265538111e-05, 'Desmond': 1.6430492035729749e-06, 'Connall': 1.6430492035729749e-06, '29': 1.97165904428757e-05, 'practicing': 1.3144393628583799e-05, 'Portland': 2.0538115044662184e-05, 'graduate': 2.3824213451808133e-05, 'Northwestern': 4.107623008932437e-06, 'Law': 1.889506584108921e-05, 'father': 0.00013226546088762446, 'Helping': 2.4645738053594624e-06, 'structure': 7.558026336435684e-05, 'aiding': 5.750672212505412e-06, 'economically': 9.036770619651361e-06, 'World': 8.543855858579469e-05, 'Multnomah': 5.750672212505412e-06, '350': 7.393721416078387e-06, 'paths': 1.232286902679731e-05, 'identical': 2.6288787257167598e-05, 'congenial': 6.5721968142918994e-06, 'ours': 2.218116424823516e-05, 'adding': 1.889506584108921e-05, 'develop': 7.311568955899738e-05, 'society': 0.00015855424814479205, 'ritiuality': 1.6430492035729749e-06, 'loyalty': 1.8073541239302723e-05, 'Patience': 2.4645738053594624e-06, 'Insuring': 1.6430492035729749e-06, 'detriment': 2.4645738053594624e-06, 'Germany': 6.736501734649196e-05, 'rebel': 9.85829522143785e-06, 'patience': 1.7252016637516235e-05, 'century': 0.00015280357593228666, 'By': 0.00016759101876444342, 'doors': 2.9574885664313547e-05, 'gives': 9.447532920544604e-05, 'peoples': 3.0396410266100035e-05, 'compare': 2.218116424823516e-05, 'Individual': 5.750672212505412e-06, 'reason': 0.00019716590442875697, 'fear': 0.00010186905062152444, 'extraordinarily': 3.2860984071459497e-06, 'Economically': 1.6430492035729749e-06, 'helping': 3.532555787681896e-05, 'Private': 4.929147610718925e-06, 'absorb': 1.1501344425010824e-05, 'exported': 3.2860984071459497e-06, 'goods': 4.7648426903616267e-05, 'products': 7.88663617715028e-05, 'total': 0.00017252016637516235, 'towards': 5.175604991254871e-05, "Portland's": 2.4645738053594624e-06, 'advice': 4.1897754691110856e-05, 'coordination': 1.232286902679731e-05, 'plea': 8.215246017864873e-06, 'Ralph': 1.889506584108921e-05, 'Molvar': 3.2860984071459497e-06, '1409': 1.6430492035729749e-06, 'SW': 3.2860984071459497e-06, 'Maplecrest': 1.6430492035729749e-06, 'thought': 0.0004239066945218275, 'cooperating': 6.5721968142918994e-06, 'Mears': 1.6430492035729749e-06, 'strictly': 2.7110311858954083e-05, 'Melvin': 4.107623008932437e-06, 'Barnes': 8.215246017864873e-06, 'waiting': 8.626008318758118e-05, 'sure': 0.00019716590442875697, 'whatever': 7.229416495721089e-05, 'fruitful': 6.5721968142918994e-06, 'Los': 4.2719279292897344e-05, 'Angeles': 3.94331808857514e-05, 'send': 5.8328246726840606e-05, 'disaster': 2.218116424823516e-05, 'Nobody': 2.3824213451808133e-05, 'evacuate': 1.6430492035729749e-06, 'everybody': 5.011300070897573e-05, 'voice': 0.00018155693699481372, 'reiterating': 1.6430492035729749e-06, 'her': 0.0023709200007558024, 'please': 3.779013168217842e-05, 'faith': 8.543855858579469e-05, 'somebody': 3.779013168217842e-05, "wouldn't": 0.00010351209982509741, 'everyone': 6.079282053220007e-05, 'rush': 1.6430492035729746e-05, 'evacuation': 4.929147610718925e-06, 'lots': 3.286098407145949e-05, 'realistic': 2.875336106252706e-05, 'Jack': 7.640178796614333e-05, "Lowe's": 1.6430492035729749e-06, 'instructed': 1.3965918230370285e-05, 'Salem': 1.6430492035729746e-05, 'statewide': 1.1501344425010824e-05, 'mothers': 2.1359639646448672e-05, 'greeting': 4.929147610718925e-06, 'Mark': 2.7110311858954083e-05, 'Hatfield': 2.4645738053594624e-06, 'reception': 2.875336106252706e-05, 'capitol': 1.6430492035729749e-06, 'noon': 2.0538115044662184e-05, 'Emerald': 1.6430492035729749e-06, 'Empire': 1.1501344425010824e-05, 'Kiwanis': 2.4645738053594624e-06, 'speak': 8.872465699294064e-05, 'Willamette': 3.2860984071459497e-06, 'swearing': 3.2860984071459497e-06, 'Bryson': 1.6430492035729749e-06, 'Circuit': 4.929147610718925e-06, 'Washington-Oregon': 1.6430492035729749e-06, 'game': 0.00010104752601973795, 'Beaverton': 5.750672212505412e-06, 'No.': 4.436232849647032e-05, 'examined': 2.3824213451808133e-05, 'blueprints': 2.4645738053594624e-06, 'specifications': 5.750672212505412e-06, 'workshop': 1.5608967433943262e-05, '$3.5': 2.4645738053594624e-06, '900-student': 1.6430492035729749e-06, '6-3-3': 1.6430492035729749e-06, '8-4': 1.6430492035729749e-06, 'advisory': 9.036770619651361e-06, '$581,000': 1.6430492035729749e-06, 'elementary': 1.3965918230370285e-05, 'Masonic': 3.2860984071459497e-06, 'Temple': 1.3965918230370285e-05, '$25-a-plate': 1.6430492035729749e-06, 'dinner': 7.475873876257036e-05, 'honoring': 7.393721416078387e-06, 'organized': 4.6826902301829785e-05, 'p.m.': 4.436232849647032e-05, 'Roosevelt': 2.3824213451808133e-05, '4:30': 3.2860984071459497e-06, 'Blaine': 2.4645738053594624e-06, 'Whipple': 6.5721968142918994e-06, 'Oregon': 9.85829522143785e-06, 'speakers': 1.0679819823224336e-05, 'fund-raising': 4.929147610718925e-06, 'Edith': 4.107623008932437e-06, 'Al': 1.3144393628583799e-05, 'Ullman': 1.6430492035729749e-06, 'Norman': 1.3144393628583799e-05, 'Nilsen': 1.6430492035729749e-06, 'Terry': 5.750672212505412e-06, 'Schrunk': 1.6430492035729749e-06, 'Oak': 7.393721416078387e-06, 'Grove': 6.5721968142918994e-06, 'Lodge': 7.393721416078387e-06, 'Water': 1.232286902679731e-05, 'Dec.': 1.4787442832156774e-05, 'a.m.': 2.300268885002165e-05, 'Polls': 1.6430492035729749e-06, 'Incumbent': 2.4645738053594624e-06, 'Salter': 8.215246017864873e-06, 'seeks': 8.215246017864873e-06, 're-election': 2.4645738053594624e-06, 'Huffman': 1.6430492035729749e-06, 'five-year': 4.107623008932437e-06, 'Brod': 1.6430492035729749e-06, 'Barbara': 9.036770619651361e-06, 'Njust': 1.6430492035729749e-06, 'Bubenik': 1.6430492035729749e-06, 'vacated': 4.107623008932437e-06, 'Hugh': 7.393721416078387e-06, 'Stout': 1.6430492035729749e-06, 'Seeking': 2.4645738053594624e-06, 'two-year': 4.929147610718925e-06, 'Culbertson': 1.6430492035729749e-06, 'Steeves': 1.6430492035729749e-06, 'Piersee': 1.6430492035729749e-06, 'W.M.': 1.6430492035729749e-06, 'Sexton': 2.4645738053594624e-06, 'Theodore': 1.232286902679731e-05, 'Heitschmidt': 1.6430492035729749e-06, 'stronger': 3.1217934867886523e-05, 'beliefs': 1.97165904428757e-05, 'grasp': 1.4787442832156774e-05, 'delegates': 1.232286902679731e-05, 'Assemblies': 4.929147610718925e-06, 'God': 0.00024645738053594623, 'Coliseum': 1.6430492035729749e-06, 'strengthen': 1.3965918230370285e-05, "denomination's": 2.4645738053594624e-06, 'modern': 0.00014869595292335422, 'trends': 1.7252016637516235e-05, 'Bible': 4.929147610718924e-05, 'belief': 5.2577574514335196e-05, 'dependence': 1.0679819823224336e-05, 'Rev.': 1.889506584108921e-05, 'Zimmerman': 3.2860984071459497e-06, 'bulwark': 4.929147610718925e-06, 'fundamentalism': 1.6430492035729749e-06, 'compromise': 1.6430492035729746e-05, 'truths': 4.107623008932437e-06, 'editing': 4.929147610718925e-06, 'clarification': 4.929147610718925e-06, 'denomination': 7.393721416078387e-06, 'reads': 1.3965918230370285e-05, 'scriptures': 4.107623008932437e-06, 'Old': 7.722331256792982e-05, 'Testament': 1.97165904428757e-05, 'verbally': 4.929147610718925e-06, 'inspired': 2.1359639646448672e-05, 'revelation': 9.85829522143785e-06, 'infallible': 3.2860984071459497e-06, 'authoritative': 7.393721416078387e-06, 'conduct': 4.436232849647032e-05, 'emphasizes': 3.2860984071459497e-06, 'Diety': 1.6430492035729749e-06, 'Lord': 7.14726403554244e-05, 'Jesus': 5.2577574514335196e-05, 'Christ': 8.050941097507576e-05, 'sinless': 3.2860984071459497e-06, 'miracles': 7.393721416078387e-06, 'substitutionary': 1.6430492035729749e-06, 'cross': 3.6968607080391934e-05, 'bodily': 5.750672212505412e-06, 'resurrection': 1.6430492035729749e-06, 'exaltation': 1.6430492035729749e-06, 'Super': 2.4645738053594624e-06, 'reelected': 1.6430492035729749e-06, 'consecutive': 9.036770619651361e-06, 'Springfield': 3.2860984071459497e-06, 'Election': 4.929147610718925e-06, 'nominating': 1.6430492035729749e-06, 'forthcoming': 9.85829522143785e-06, 'Breakthrough': 2.4645738053594624e-06, 'opening': 6.818654194827845e-05, 'Brandt': 9.036770619651361e-06, 'missions': 1.3144393628583799e-05, 'stressed': 1.97165904428757e-05, 'Surveys': 1.6430492035729749e-06, 'contact': 4.7648426903616267e-05, 'Church': 0.00010351209982509741, 'loses': 1.232286902679731e-05, 'Talking': 1.6430492035729749e-06, 'upwards': 5.750672212505412e-06, '12,000': 3.2860984071459497e-06, 'babies': 1.0679819823224336e-05, 'born': 9.11892307983001e-05, 'immigrant': 4.107623008932437e-06, '1-1/2': 4.107623008932437e-06, '7,000': 2.4645738053594624e-06, '10,000': 1.232286902679731e-05, 'light': 0.00026370939717346246, '1,000': 9.85829522143785e-06, 'Illinois': 3.368250867324598e-05, '800': 1.1501344425010824e-05, 'England': 0.00012733631327690556, 'vision': 4.60053777000433e-05, '8,000': 6.5721968142918994e-06, 'accomplish': 2.0538115044662184e-05, 'necessitate': 4.929147610718925e-06, 'meets': 2.875336106252706e-05, "church's": 2.4645738053594624e-06, 'ability': 6.161434513398656e-05, 'capsule': 4.929147610718925e-06, 'includes': 3.779013168217842e-05, 'Encouraging': 3.2860984071459497e-06, 'Engaging': 2.4645738053594624e-06, 'mature': 2.6288787257167598e-05, 'pioneer': 1.5608967433943262e-05, 'strategic': 1.6430492035729746e-05, 'centers': 4.354080389468383e-05, 'Surrounding': 2.4645738053594624e-06, 'pastors': 5.750672212505412e-06, 'volunteers': 2.1359639646448672e-05, 'laymen': 5.750672212505412e-06, 'lending': 6.5721968142918994e-06, 'Arranging': 1.6430492035729749e-06, 'ministerial': 2.4645738053594624e-06, 'graduates': 1.3965918230370285e-05, '6-12': 1.6430492035729749e-06, 'apprentices': 3.2860984071459497e-06, 'well-established': 3.2860984071459497e-06, 'Dist.': 3.2860984071459497e-06, 'Powell': 1.3144393628583799e-05, 'motions': 1.4787442832156774e-05, 'fraud': 6.5721968142918994e-06, 'Denials': 1.6430492035729749e-06, 'dismissal': 6.5721968142918994e-06, 'mistrial': 2.4645738053594624e-06, 'acquittal': 2.4645738053594624e-06, 'striking': 3.286098407145949e-05, 'verdict': 1.3144393628583799e-05, 'denying': 9.036770619651361e-06, 'trials': 3.286098407145949e-05, 'upheld': 5.750672212505412e-06, 'conspirators': 4.107623008932437e-06, 'Schwab': 2.4645738053594624e-06, 'defendant': 5.750672212505412e-06, 'Philip': 1.8073541239302723e-05, 'Weinstein': 2.4645738053594624e-06, 'linking': 4.929147610718925e-06, 'Proof': 7.393721416078387e-06, 'proof': 2.7110311858954083e-05, "Weinstein's": 1.6430492035729749e-06, 'mails': 6.5721968142918994e-06, 'defraud': 2.4645738053594624e-06, 'Burbank': 2.4645738053594624e-06, 'conpired': 1.6430492035729749e-06, 'deferred': 1.6430492035729749e-06, 'Miami': 1.889506584108921e-05, 'Fla.': 9.036770619651361e-06, 'Orioles': 9.85829522143785e-06, 'distinction': 3.450403327503247e-05, 'winless': 2.4645738053594624e-06, 'Major-League': 1.6430492035729749e-06, 'clubs': 1.6430492035729746e-05, 'dropped': 8.379550938222171e-05, 'sixth': 1.7252016637516235e-05, 'straight': 9.365380460365957e-05, 'exhibition': 1.7252016637516235e-05, 'Athletics': 3.2860984071459497e-06, '5': 0.0001174780180554677, 'Indications': 2.4645738053594624e-06, 'late': 0.0001437668053126353, 'Birds': 9.85829522143785e-06, 'draught': 2.4645738053594624e-06, 'coasted': 3.2860984071459497e-06, '3-to-o': 1.6430492035729749e-06, 'Siebern': 3.2860984071459497e-06, 'hits': 1.8073541239302723e-05, 'homer': 8.215246017864873e-06, 'Over': 2.546726265538111e-05, 'frames': 2.218116424823516e-05, 'Fisher': 4.929147610718925e-06, 'righthander': 2.4645738053594624e-06, 'middle': 7.640178796614333e-05, 'Oriole': 4.929147610718925e-06, 'pennant': 8.215246017864873e-06, "A's": 5.750672212505412e-06, 'scoreless': 2.4645738053594624e-06, 'yielding': 8.215246017864873e-06, 'Dick': 1.5608967433943262e-05, 'Hyde': 4.107623008932437e-06, 'submarine-ball': 1.6430492035729749e-06, 'hurler': 1.6430492035729749e-06, 'entered': 8.133093557686225e-05, 'contest': 2.0538115044662184e-05, 'batters': 1.6430492035729749e-06, 'existed': 3.368250867324598e-05, '3-to-3': 1.6430492035729749e-06, 'deadlock': 8.215246017864873e-06, 'two-run': 2.4645738053594624e-06, 'Norm': 3.2860984071459497e-06, 'solo': 6.5721968142918994e-06, 'Tuttle': 4.107623008932437e-06, 'runs': 4.60053777000433e-05, 'eighth': 1.4787442832156774e-05, 'ninth': 1.3144393628583799e-05, 'fifth': 1.889506584108921e-05, 'throws': 5.750672212505412e-06, 'wild': 4.2719279292897344e-05, 'Marv': 3.2860984071459497e-06, 'Throneberry': 4.107623008932437e-06, 'stole': 9.036770619651361e-06, 'fanned': 4.107623008932437e-06, 'Catcher': 2.4645738053594624e-06, "House's": 2.4645738053594624e-06, 'nab': 1.6430492035729749e-06, 'dirt': 3.532555787681896e-05, 'Heywood': 4.929147610718925e-06, 'Sullivan': 7.393721416078387e-06, 'catcher': 1.3144393628583799e-05, 'singled': 9.036770619651361e-06, 'proved': 5.9149771328627094e-05, 'winning': 2.6288787257167598e-05, 'Rookie': 3.2860984071459497e-06, 'southpaw': 4.929147610718925e-06, 'Stepanovich': 2.4645738053594624e-06, 'relieved': 1.97165904428757e-05, 'tally': 4.107623008932437e-06, 'baseman': 3.2860984071459497e-06, 'Howser': 2.4645738053594624e-06, 'pitch': 1.7252016637516235e-05, "Cipriani's": 1.6430492035729749e-06, 'Shortstop': 1.6430492035729749e-06, 'Jerry': 1.3144393628583799e-05, "Adair's": 1.6430492035729749e-06, 'glove': 8.215246017864873e-06, 'performed': 2.875336106252706e-05, 'plate': 1.6430492035729746e-05, 'powderpuff': 1.6430492035729749e-06, 'fashion': 5.4220623717908165e-05, 'blows': 7.393721416078387e-06, 'offerings': 3.2860984071459497e-06, 'pitchers': 6.5721968142918994e-06, 'doubles': 5.750672212505412e-06, 'Brooks': 1.3965918230370285e-05, 'Robinson': 3.203945946967301e-05, 'pair': 4.1897754691110856e-05, 'Breeding': 4.929147610718925e-06, 'Hartman': 4.929147610718925e-06, 'Kunkel': 2.4645738053594624e-06, 'Bob': 3.368250867324598e-05, 'Ed': 1.1501344425010824e-05, 'Keegan': 3.2860984071459497e-06, 'mound': 7.393721416078387e-06, 'chores': 1.3965918230370285e-05, 'club': 5.750672212505412e-05, 'Palm': 4.929147610718925e-06, 'Beach': 2.3824213451808133e-05, '767': 1.6430492035729749e-06, 'Stadium': 1.6430492035729746e-05, 'fourth': 5.011300070897573e-05, 'purchased': 1.7252016637516235e-05, 'Milwaukee': 8.215246017864873e-06, 'Braves': 3.2860984071459497e-06, 'three-inning': 1.6430492035729749e-06, 'appearance': 4.7648426903616267e-05, 'merited': 4.107623008932437e-06, 'triumph': 1.889506584108921e-05, '6-foot-3-inch': 1.6430492035729749e-06, '158-pounder': 1.6430492035729749e-06, "Orioles'": 1.6430492035729749e-06, 'safeties': 1.6430492035729749e-06, 'escaping': 4.929147610718925e-06, 'double': 4.518385309825681e-05, 'fence': 2.546726265538111e-05, '375': 3.2860984071459497e-06, 'deep': 8.379550938222171e-05, 'Whitey': 5.750672212505412e-06, 'Herzog': 1.6430492035729749e-06, 'fielded': 1.6430492035729749e-06, 'possibly': 4.8469951505402755e-05, 'strongest': 1.7252016637516235e-05, 'balls': 1.4787442832156774e-05, 'pinch-hitters': 1.6430492035729749e-06, 'Pete': 1.97165904428757e-05, 'Ward': 3.2860984071459497e-06, 'failing': 1.232286902679731e-05, 'bunt': 3.2860984071459497e-06, 'popped': 5.750672212505412e-06, 'grass': 4.354080389468383e-05, 'short': 0.0001700555925698029, 'batting': 1.3144393628583799e-05, 'Adair': 2.4645738053594624e-06, 'fouling': 3.2860984071459497e-06, '2-and-2': 1.6430492035729749e-06, 'pitches': 5.750672212505412e-06, 'Buddy': 1.6430492035729749e-06, 'Barker': 7.393721416078387e-06, 'bounced': 1.3965918230370285e-05, 'Lumpe': 4.107623008932437e-06, '2-hour-and-27-minute': 1.6430492035729749e-06, 'inning': 1.0679819823224336e-05, 'moved': 0.0001495174775251407, 'Russ': 1.8073541239302723e-05, "Snyder's": 1.6430492035729749e-06, 'crossed': 3.532555787681896e-05, "Kunkel's": 2.4645738053594624e-06, 'Flock': 3.2860984071459497e-06, 'tallies': 2.4645738053594624e-06, 'Jackie': 4.107623008932437e-06, 'hole': 4.60053777000433e-05, 'errs': 1.6430492035729749e-06, 'Gentile': 8.215246017864873e-06, 'beat': 5.4220623717908165e-05, 'grabbed': 1.7252016637516235e-05, 'ball': 8.379550938222171e-05, 'threw': 3.861165628396491e-05, "Throneberry's": 1.6430492035729749e-06, 'error': 3.0396410266100035e-05, 'slammed': 1.3965918230370285e-05, 'runners': 4.929147610718925e-06, 'stretch': 2.1359639646448672e-05, 'blow': 2.793183646074057e-05, 'triple': 4.929147610718925e-06, 'Andy': 2.793183646074057e-05, 'rundown': 3.2860984071459497e-06, 'scoring': 4.929147610718925e-06, 'batter': 2.4645738053594624e-06, 'romped': 1.6430492035729749e-06, 'blasted': 4.107623008932437e-06, "Hyde's": 1.6430492035729749e-06, '415': 1.6430492035729749e-06, 'scoreboard': 4.107623008932437e-06, 'Singles': 1.6430492035729749e-06, 'slow-bouncing': 1.6430492035729749e-06, 'hit': 9.20107554000866e-05, 'rapped': 4.107623008932437e-06, 'fast': 6.49004435411325e-05, "Tuttle's": 1.6430492035729749e-06, '390-foot': 1.6430492035729749e-06, 'break': 7.14726403554244e-05, 'streak': 9.036770619651361e-06, 'champion': 1.6430492035729746e-05, 'Yankees': 2.3824213451808133e-05, 'flavor': 1.3965918230370285e-05, "Baltimore's": 2.4645738053594624e-06, 'Florida': 1.7252016637516235e-05, 'Grapefruit': 1.6430492035729749e-06, 'news': 7.475873876257036e-05, 'ripened': 2.4645738053594624e-06, 'Ron': 4.107623008932437e-06, 'Hansen': 9.036770619651361e-06, "Army's": 4.929147610718925e-06, 'belated': 1.6430492035729749e-06, 'slugged': 4.107623008932437e-06, 'homers': 3.2860984071459497e-06, 'drove': 5.175604991254871e-05, '86': 5.750672212505412e-06, 'freshman': 7.393721416078387e-06, "Birds'": 2.4645738053594624e-06, 'squad': 1.3965918230370285e-05, '49': 3.2860984071459497e-06, 'players': 2.218116424823516e-05, '22-year-old': 2.4645738053594624e-06, 'shortstop': 5.750672212505412e-06, 'rookie-of-the-year': 1.6430492035729749e-06, 'flew': 2.300268885002165e-05, 'Baltimore': 1.889506584108921e-05, 'signed': 3.1217934867886523e-05, 'spectator': 8.215246017864873e-06, "tonight's": 2.4645738053594624e-06, '5-to-3': 1.6430492035729749e-06, 'pounds': 3.6968607080391934e-05, 'lighter': 1.0679819823224336e-05, '6-foot': 2.4645738053594624e-06, '3-inch': 1.6430492035729749e-06, 'checked': 2.6288787257167598e-05, 'reporting': 1.4787442832156774e-05, 'weight': 7.475873876257036e-05, 'melt': 4.107623008932437e-06, 'breaks': 1.0679819823224336e-05, 'camp': 5.586367292148114e-05, 'hence': 2.464573805359462e-05, 'inducted': 3.2860984071459497e-06, 'Knox': 4.929147610718925e-06, 'Ky.': 2.4645738053594624e-06, "Hansen's": 2.4645738053594624e-06, 'physically': 1.5608967433943262e-05, 'carrying': 5.8328246726840606e-05, 'Seeks': 1.6430492035729749e-06, 'improved': 4.518385309825681e-05, 'fielding': 3.2860984071459497e-06, 'rangy': 2.4645738053594624e-06, 'Albany': 9.85829522143785e-06, 'Cal.': 1.6430492035729749e-06, 'surprise': 4.1897754691110856e-05, 'slugging': 3.2860984071459497e-06, 'sensation': 1.232286902679731e-05, 'defensive': 1.4787442832156774e-05, 'whiz': 2.4645738053594624e-06, 'hitters': 4.107623008932437e-06, 'engage': 1.232286902679731e-05, 'workout': 5.750672212505412e-06, 'prior': 3.368250867324598e-05, 'two-game': 1.6430492035729749e-06, 'Skinny': 1.6430492035729749e-06, 'Brown': 9.20107554000866e-05, 'Hoyt': 4.107623008932437e-06, 'Wilhelm': 4.107623008932437e-06, "Flock's": 1.6430492035729749e-06, 'knuckleball': 1.6430492035729749e-06, 'specialists': 1.6430492035729746e-05, 'slated': 3.2860984071459497e-06, 'champions': 9.036770619651361e-06, "tomorrow's": 3.2860984071459497e-06, 'P.M.': 8.215246017864873e-06, 'Duren': 2.4645738053594624e-06, 'Sheldon': 7.393721416078387e-06, 'Ryne': 1.6430492035729749e-06, 'Roland': 4.107623008932437e-06, 'rookie': 5.750672212505412e-06, 'posted': 9.85829522143785e-06, '15-1': 1.6430492035729749e-06, "Yanks'": 1.6430492035729749e-06, 'Auburn': 1.6430492035729749e-06, 'N.Y.': 1.1501344425010824e-05, 'farm': 9.283228000187308e-05, 'Class-D': 1.6430492035729749e-06, 'York-Pennsylvania': 1.6430492035729749e-06, 'Twenty-one-year-old': 1.6430492035729749e-06, 'Milt': 2.4645738053594624e-06, 'Pappas': 1.6430492035729749e-06, 'Walker': 1.3965918230370285e-05, "Bombers'": 1.6430492035729749e-06, 'Art': 2.1359639646448672e-05, 'Ditmar': 1.6430492035729749e-06, "Sunday's": 5.750672212505412e-06, 'Houk': 3.2860984071459497e-06, 'Casey': 1.97165904428757e-05, 'Stengel': 5.750672212505412e-06, 'Yankee': 1.5608967433943262e-05, 'Petersburg': 4.929147610718925e-06, 'Dimaggio': 1.6430492035729749e-06, 'crowds': 9.036770619651361e-06, 'games': 4.436232849647032e-05, 'famed': 4.107623008932437e-06, 'Clipper': 1.6430492035729749e-06, 'assisting': 5.750672212505412e-06, 'coach': 1.5608967433943262e-05, 'Squad': 2.4645738053594624e-06, 'Pitcher': 1.6430492035729749e-06, 'Steve': 3.2860984071459497e-06, 'completing': 9.036770619651361e-06, 'hitch': 4.107623008932437e-06, 'accelerated': 1.1501344425010824e-05, 'wintertime': 1.6430492035729749e-06, 'enlisted': 9.85829522143785e-06, 'bulky': 8.215246017864873e-06, 'spring-training': 1.6430492035729749e-06, 'contingent': 3.2860984071459497e-06, 'Manager': 7.393721416078387e-06, 'Richards': 9.036770619651361e-06, 'coaches': 4.929147610718925e-06, 'streamlined': 4.107623008932437e-06, 'workable': 8.215246017864873e-06, 'Take': 2.793183646074057e-05, 'Bird': 5.750672212505412e-06, 'sacker': 1.6430492035729749e-06, 'bat': 1.5608967433943262e-05, 'third-inning': 1.6430492035729749e-06, 'left-centerfield': 1.6430492035729749e-06, 'celebrate': 4.107623008932437e-06, 'Just': 0.00010022600141795146, "Robinson's": 1.6430492035729749e-06, 'pretty': 8.215246017864874e-05, 'Connie': 1.6430492035729749e-06, 'Unfortunately': 1.6430492035729746e-05, "Brooks's": 1.6430492035729749e-06, 'teammates': 2.4645738053594624e-06, 'festive': 2.4645738053594624e-06, 'expired': 4.929147610718925e-06, 'seven-hit': 1.6430492035729749e-06, 'pitching': 1.3965918230370285e-05, 'hurlers': 1.6430492035729749e-06, 'arrived': 5.175604991254871e-05, 'nightfall': 4.107623008932437e-06, 'MacPhail': 1.6430492035729749e-06, 'Iglehart': 1.6430492035729749e-06, 'Dunn': 5.750672212505412e-06, 'flight': 3.6147082478605446e-05, 'delayed': 2.1359639646448672e-05, 'boarding': 4.929147610718925e-06, 'ramp': 5.750672212505412e-06, 'inflicted': 4.107623008932437e-06, 'damage': 2.793183646074057e-05, 'wing': 1.4787442832156774e-05, 'plane': 9.283228000187308e-05, 'Ex-Oriole': 1.6430492035729749e-06, 'Clint': 4.107623008932437e-06, 'Courtney': 1.6430492035729749e-06, 'catching': 8.215246017864873e-06, "League's": 3.2860984071459497e-06, 'shouldda': 1.6430492035729749e-06, 'Tokyo': 1.5608967433943262e-05, 'Scrapiron': 1.6430492035729749e-06, "we'd": 1.889506584108921e-05, 'someplace': 5.750672212505412e-06, 'Bowie': 1.6430492035729749e-06, 'Md.': 4.929147610718925e-06, 'Gaining': 2.4645738053594624e-06, 'Small': 2.0538115044662184e-05, "Jr.'s": 2.4645738053594624e-06, 'Garden': 1.1501344425010824e-05, 'Fresh': 5.750672212505412e-06, '3-year-old': 1.6430492035729749e-06, 'filly': 8.215246017864873e-06, 'downed': 4.929147610718925e-06, 'promising': 2.0538115044662184e-05, 'colts': 5.750672212505412e-06, '$4,500': 1.6430492035729749e-06, "Patrick's": 3.2860984071459497e-06, 'Purse': 2.4645738053594624e-06, 'seventh': 1.232286902679731e-05, '$7.20': 1.6430492035729749e-06, 'Toying': 1.6430492035729749e-06, 'stages': 4.2719279292897344e-05, 'Jockey': 2.4645738053594624e-06, 'Grimm': 2.4645738053594624e-06, '1.24': 2.4645738053594624e-06, '3-5': 1.6430492035729749e-06, 'furlongs': 1.6430492035729749e-06, '8,280': 2.4645738053594624e-06, 'races': 1.8073541239302723e-05, "Forbes's": 1.6430492035729749e-06, 'Paget': 1.6430492035729749e-06, 'substantial': 5.504214831969465e-05, 'lead': 0.0001043336244268839, 'tired': 4.025470548753788e-05, 'nearing': 9.85829522143785e-06, 'wire': 3.450403327503247e-05, 'save': 5.011300070897573e-05, 'Glen': 4.929147610718925e-06, "Hallowell's": 1.6430492035729749e-06, 'Milties': 1.6430492035729749e-06, 'bright': 6.407891893934602e-05, 'sun': 8.46170339840082e-05, 'brisk': 6.5721968142918994e-06, 'condition': 7.393721416078387e-05, 'Patty': 1.6430492035729749e-06, 'celebrants': 2.4645738053594624e-06, '$842,617': 1.6430492035729749e-06, 'well-prepared': 1.6430492035729749e-06, 'Prior': 6.5721968142918994e-06, 'stewards': 2.4645738053594624e-06, 'apprentice': 1.232286902679731e-05, 'Verrone': 1.6430492035729749e-06, 'suspended': 2.546726265538111e-05, 'ten': 0.00012322869026797312, 'crowding': 4.929147610718925e-06, 'horses': 5.668519752326763e-05, 'crossing': 1.7252016637516235e-05, 'Culmone': 1.6430492035729749e-06, 'gets': 5.4220623717908165e-05, 'mating': 7.393721416078387e-06, 'Better': 1.0679819823224336e-05, 'Self': 4.929147610718925e-06, 'Rosy': 1.6430492035729749e-06, 'Fingered': 1.6430492035729749e-06, 'allowance': 1.3965918230370285e-05, '$10,000': 8.215246017864873e-06, 'claiming': 1.3965918230370285e-05, 'Cleveland': 1.4787442832156774e-05, 'Kerr': 4.929147610718925e-06, 'swift-striding': 1.6430492035729749e-06, 'Jamaican': 1.6430492035729749e-06, '600-yard': 1.6430492035729749e-06, 'Knights': 4.107623008932437e-06, 'Columbus': 1.232286902679731e-05, "Purdue's": 1.6430492035729749e-06, 'Dave': 2.6288787257167598e-05, 'Mills': 1.8073541239302723e-05, 'duel': 3.2860984071459497e-06, '1.10.1': 1.6430492035729749e-06, 'clocking': 1.6430492035729749e-06, '1.09.3': 1.6430492035729749e-06, 'wiped': 1.6430492035729746e-05, "Mills's": 2.4645738053594624e-06, 'Big': 3.6968607080391934e-05, 'quarter-mile': 2.4645738053594624e-06, 'king': 2.1359639646448672e-05, 'yards': 5.2577574514335196e-05, 'mark': 4.2719279292897344e-05, '1.10.8': 1.6430492035729749e-06, 'Mal': 1.6430492035729749e-06, 'Whitfield': 1.6430492035729749e-06, 'thirds': 4.107623008932437e-06, 'straightaway': 2.4645738053594624e-06, 'turn': 0.00018648608460553265, 'timed': 8.215246017864873e-06, '1.10.4': 1.6430492035729749e-06, 'twenty-first': 3.2860984071459497e-06, 'Games': 2.4645738053594624e-06, 'indoor': 4.107623008932437e-06, 'season': 8.708160778936766e-05, 'thrill': 4.929147610718925e-06, 'slender': 1.5608967433943262e-05, 'bespectacled': 2.4645738053594624e-06, 'woman': 0.00017909236318945426, 'broke': 5.9149771328627094e-05, 'one-week-old': 1.6430492035729749e-06, 'half-mile': 6.5721968142918994e-06, 'Grace': 7.393721416078387e-06, 'Butcher': 5.750672212505412e-06, 'nearby': 3.6147082478605446e-05, 'Chardon': 1.6430492035729749e-06, '27-year-old': 1.6430492035729749e-06, 'housewife': 4.107623008932437e-06, 'finished': 7.14726403554244e-05, '2.21.6': 1.6430492035729749e-06, 'snapped': 1.5608967433943262e-05, 'tenths': 1.6430492035729749e-06, 'Helen': 1.1501344425010824e-05, 'Shipley': 1.6430492035729749e-06, 'Wellsley': 1.6430492035729749e-06, 'A.A.U.': 1.6430492035729749e-06, 'Ohio': 3.203945946967301e-05, 'Francisco': 3.450403327503247e-05, 'Bobby': 1.8073541239302723e-05, 'Waters': 5.750672212505412e-06, 'Sylvania': 2.4645738053594624e-06, 'Ga.': 4.929147610718925e-06, 'relief': 5.504214831969465e-05, 'quarterback': 4.107623008932437e-06, '49ers': 1.6430492035729749e-06, 'Football': 5.750672212505412e-06, 'undergo': 7.393721416078387e-06, 'knee': 2.793183646074057e-05, 'Franklin': 2.546726265538111e-05, 'swelling': 9.036770619651361e-06, 'consult': 9.85829522143785e-06, 'physician': 1.3144393628583799e-05, 'Tony': 9.85829522143785e-06, 'Kubek': 1.6430492035729749e-06, 'eleventh': 4.107623008932437e-06, 'donated': 6.5721968142918994e-06, 'unearned': 2.4645738053594624e-06, '5-to-2': 1.6430492035729749e-06, 'Chicago': 8.133093557686225e-05, 'Sox': 1.1501344425010824e-05, 'halfback': 8.215246017864873e-06, "team's": 2.4645738053594624e-06, 'plays': 5.4220623717908165e-05, 'Eldon': 2.4645738053594624e-06, 'Moritz': 9.85829522143785e-06, 'Southwest': 1.0679819823224336e-05, 'Conference': 2.9574885664313547e-05, 'Time': 3.532555787681896e-05, '26-year-old': 1.6430492035729749e-06, 'clock': 1.7252016637516235e-05, 'kick': 1.3144393628583799e-05, 'nose': 5.011300070897573e-05, 'guard': 2.9574885664313547e-05, 'hip': 9.036770619651361e-06, 'pads': 4.929147610718925e-06, 'Longhorn': 2.4645738053594624e-06, 'favored': 1.5608967433943262e-05, 'Cotton': 8.215246017864873e-06, 'Bowl': 3.2860984071459497e-06, "That's": 8.050941097507576e-05, 'kicked': 1.5608967433943262e-05, '14': 4.6826902301829785e-05, 'tries': 1.1501344425010824e-05, 'string': 1.5608967433943262e-05, 'conversions': 5.750672212505412e-06, 'astray': 3.2860984071459497e-06, '41-8': 1.6430492035729749e-06, 'slaughter': 7.393721416078387e-06, 'roster': 2.4645738053594624e-06, 'lettered': 1.6430492035729749e-06, '1956': 2.3824213451808133e-05, 'Darrell': 1.6430492035729749e-06, 'place-kicker': 1.6430492035729749e-06, '208-pound': 1.6430492035729749e-06, '1-inch': 1.6430492035729749e-06, 'Stamford': 4.107623008932437e-06, 'place-kicking': 3.2860984071459497e-06, 'So': 0.00018977218301267858, 'bothered': 1.232286902679731e-05, 'muscle': 3.286098407145949e-05, 'thigh': 8.215246017864873e-06, 'kicking': 1.0679819823224336e-05, 'leg': 4.436232849647032e-05, 'barely': 2.6288787257167598e-05, 'playing': 8.379550938222171e-05, 'Anson': 1.6430492035729749e-06, '3-0': 1.6430492035729749e-06, '110': 6.5721968142918994e-06, '135': 3.2860984071459497e-06, '26': 2.7110311858954083e-05, 'miss': 1.8073541239302723e-05, 'playoff': 2.4645738053594624e-06, 'hampered': 3.2860984071459497e-06, 'injury': 2.218116424823516e-05, 'missed': 3.368250867324598e-05, 'ailing': 2.4645738053594624e-06, '77': 4.929147610718925e-06, 'statistical': 1.232286902679731e-05, 'net': 2.546726265538111e-05, 'punted': 1.6430492035729749e-06, '1957': 4.025470548753788e-05, 'scholastically': 1.6430492035729749e-06, 'ineligible': 3.2860984071459497e-06, 'Place': 3.532555787681896e-05, 'timing': 9.85829522143785e-06, 'Once': 7.065111575363791e-05, "there's": 4.436232849647032e-05, "I've": 0.00010351209982509741, 'boys': 0.00010926277203760282, 'seem': 0.0001889506584108921, 'Practice': 1.6430492035729749e-06, 'helps': 2.464573805359462e-05, 'golf': 2.300268885002165e-05, 'swing': 1.6430492035729746e-05, 'kicks': 3.2860984071459497e-06, 'practice': 7.722331256792982e-05, 'kinda': 4.107623008932437e-06, 'Footnotes': 1.6430492035729749e-06, 'Longhorns': 4.107623008932437e-06, 'scored': 1.3144393628583799e-05, 'yardage': 2.4645738053594624e-06, '447': 2.4645738053594624e-06, 'completions': 3.2860984071459497e-06, '56': 5.750672212505412e-06, 'attempts': 3.0396410266100035e-05, '469': 1.6430492035729749e-06, '37': 6.5721968142918994e-06, 'Tailback': 1.6430492035729749e-06, 'Saxton': 2.4645738053594624e-06, 'surpassed': 2.4645738053594624e-06, 'rushing': 9.036770619651361e-06, 'brilliant': 4.1897754691110856e-05, 'sophomore': 4.929147610718925e-06, 'netted': 1.6430492035729749e-06, '271': 2.4645738053594624e-06, '55': 8.215246017864873e-06, '273': 1.6430492035729749e-06, 'second-half': 2.4645738053594624e-06, 'kickoff': 2.4645738053594624e-06, 'gained': 3.286098407145949e-05, 'uncorked': 2.4645738053594624e-06, '56-yard': 1.6430492035729749e-06, 'touchdown': 5.750672212505412e-06, 'Wingback': 1.6430492035729749e-06, 'insists': 9.036770619651361e-06, "he'll": 1.3965918230370285e-05, "conference's": 1.6430492035729749e-06, 'prevailed': 6.5721968142918994e-06, 'SMU': 4.929147610718925e-06, 'coaching': 4.107623008932437e-06, "week's": 7.393721416078387e-06, 'Rice': 8.215246017864873e-06, 'Mustangs': 1.6430492035729749e-06, 'happy': 7.558026336435684e-05, 'Coach': 5.750672212505412e-06, 'Meek': 8.215246017864873e-06, '9-7': 1.6430492035729749e-06, 'Academy': 1.5608967433943262e-05, 'kids': 2.7110311858954083e-05, 'stayed': 6.243586973577305e-05, "we've": 1.1501344425010824e-05, 'Richey': 1.6430492035729749e-06, 'Assistant': 1.1501344425010824e-05, 'Cudmore': 1.6430492035729749e-06, 'particular': 0.00014705290371978125, 'gratification': 4.107623008932437e-06, 'performances': 2.793183646074057e-05, 'Happy': 6.5721968142918994e-06, 'Nelson': 1.3965918230370285e-05, 'Billy': 2.218116424823516e-05, 'Gannon': 4.107623008932437e-06, 'magnificent': 2.218116424823516e-05, 'interference': 3.6147082478605446e-05, 'stops': 6.5721968142918994e-06, 'fumble': 1.6430492035729749e-06, 'fullback': 2.4645738053594624e-06, 'Nick': 2.1359639646448672e-05, 'Arshinkoff': 1.6430492035729749e-06, 'loose': 4.436232849647032e-05, 'contributed': 3.286098407145949e-05, "Falcons'": 1.6430492035729749e-06, 'aerial': 7.393721416078387e-06, 'thrusts': 4.929147610718925e-06, 'fourth-down': 1.6430492035729749e-06, 'screen': 3.94331808857514e-05, 'Mustang': 1.6430492035729749e-06, 'incomplete': 1.1501344425010824e-05, "Gannon's": 1.6430492035729749e-06, 'spotted': 1.3965918230370285e-05, 'Isaacson': 1.6430492035729749e-06, 'crucified': 2.4645738053594624e-06, 'nailed': 9.85829522143785e-06, 'yard': 2.793183646074057e-05, "Force's": 1.6430492035729749e-06, "game's": 4.107623008932437e-06, 'McNaughton': 2.4645738053594624e-06, 'intercepted': 3.2860984071459497e-06, '44': 3.2860984071459497e-06, 'lay': 0.00011172734584296228, 'waited': 5.750672212505412e-05, 'Except': 9.036770619651361e-06, 'Mike': 7.558026336435684e-05, 'Kelsey': 5.750672212505412e-06, 'doubtful': 1.8073541239302723e-05, "He'll": 1.232286902679731e-05, 'blind': 3.861165628396491e-05, 'split': 2.464573805359462e-05, 'definitely': 1.8073541239302723e-05, 'ligament': 1.6430492035729749e-06, 'injuring': 1.6430492035729749e-06, 'opener': 5.750672212505412e-06, 'Maryland': 1.97165904428757e-05, "He's": 5.4220623717908165e-05, 'lot': 0.00010269057522331093, 'film': 7.804483716971631e-05, 'reserves': 4.929147610718925e-06, 'scrimmaged': 1.6430492035729749e-06, '45': 1.232286902679731e-05, 'scrimmage': 1.6430492035729749e-06, 'taper': 3.2860984071459497e-06, 'Owls': 1.6430492035729749e-06, 'Huddle': 1.6430492035729749e-06, 'hearsay': 2.4645738053594624e-06, 'Held': 4.929147610718925e-06, "Tech's": 1.6430492035729749e-06, 'sweat-suits': 1.6430492035729749e-06, 'drill': 2.0538115044662184e-05, 'Lubbock': 2.4645738053594624e-06, 'tackle': 8.215246017864873e-06, 'Stafford': 1.6430492035729749e-06, 'undergoing': 1.0679819823224336e-05, 'treatment': 0.00010104752601973795, "Raiders'": 1.6430492035729749e-06, '38-7': 1.6430492035729749e-06, 'M': 1.3965918230370285e-05, 'Because': 5.997129593041358e-05, 'Baylor': 2.4645738053594624e-06, 'rain': 5.504214831969465e-05, 'mud': 2.6288787257167598e-05, 'End': 8.215246017864873e-06, 'Gene': 8.215246017864873e-06, 'Raesz': 1.6430492035729749e-06, "Owl's": 1.6430492035729749e-06, 'LSU': 1.6430492035729749e-06, 'Nichols': 1.6430492035729749e-06, 'idleness': 3.2860984071459497e-06, 'ankle': 7.393721416078387e-06, 'Aggies': 2.4645738053594624e-06, 'Myers': 3.2860984071459497e-06, 'Hargett': 1.6430492035729749e-06, 'shaken': 9.85829522143785e-06, 'Tech': 7.393721416078387e-06, 'Trinity': 4.929147610718925e-06, 'Halfback': 1.6430492035729749e-06, 'Bud': 4.929147610718925e-06, 'Priddy': 1.6430492035729749e-06, 'slowly-mending': 1.6430492035729749e-06, 'sprained': 2.4645738053594624e-06, "TCU's": 1.6430492035729749e-06, '19-12': 1.6430492035729749e-06, 'Denver': 1.3965918230370285e-05, 'Broncos': 1.6430492035729749e-06, 'Buffalo': 7.393721416078387e-06, 'Hank': 1.4787442832156774e-05, "Stram's": 1.6430492035729749e-06, 'Bills': 2.4645738053594624e-06, 'pre-season': 2.4645738053594624e-06, 'reckonings': 1.6430492035729749e-06, 'Buster': 3.2860984071459497e-06, 'Ramsey': 9.036770619651361e-06, 'collectors': 6.5721968142918994e-06, 'quarterbacks': 1.6430492035729749e-06, 'productive': 2.1359639646448672e-05, 'ex-National': 1.6430492035729749e-06, 'Leaguers': 2.4645738053594624e-06, 'Rabb': 2.4645738053594624e-06, 'Louisiana': 2.546726265538111e-05, '22-12': 1.6430492035729749e-06, 'upset': 1.232286902679731e-05, 'Oilers': 1.6430492035729749e-06, 'defending': 1.1501344425010824e-05, 'luck': 3.779013168217842e-05, 'Exclaimed': 2.4645738053594624e-06, 'Stram': 4.107623008932437e-06, 'mutter': 1.6430492035729749e-06, 'splendid': 1.5608967433943262e-05, 'whip': 1.6430492035729746e-05, 'dangerous': 3.6968607080391934e-05, 'Broncs': 2.4645738053594624e-06, 'fullbacking': 1.6430492035729749e-06, 'star': 1.3965918230370285e-05, 'Spikes': 1.6430492035729749e-06, 'interior': 3.861165628396491e-05, 'linebackers': 1.6430492035729749e-06, 'exceptionally': 7.393721416078387e-06, 'movies': 2.546726265538111e-05, 'Quarterback': 1.6430492035729749e-06, 'Davidson': 3.2860984071459497e-06, 'throwing': 1.4787442832156774e-05, 'passes': 2.300268885002165e-05, 'bang': 6.5721968142918994e-06, 'touchdowns': 1.6430492035729749e-06, 'strikes': 1.5608967433943262e-05, 'tactic': 4.107623008932437e-06, 'controlling': 1.97165904428757e-05, 'giving': 7.722331256792982e-05, 'Abner': 1.6430492035729749e-06, 'Haynes': 1.6430492035729749e-06, 'flashy': 3.2860984071459497e-06, 'ball-carriers': 1.6430492035729749e-06, 'delivered': 3.1217934867886523e-05, '145': 1.6430492035729749e-06, 'comforting': 7.393721416078387e-06, "Denver's": 1.6430492035729749e-06, 'Carmichael': 2.4645738053594624e-06, 'jarred': 2.4645738053594624e-06, 'Grayson': 1.6430492035729749e-06, 'speedy': 4.929147610718925e-06, 'claimed': 2.9574885664313547e-05, 'resulted': 3.1217934867886523e-05, 'quipping': 1.6430492035729749e-06, 'book': 0.00014540985451620827, 'dent': 1.6430492035729749e-06, 'statistics': 1.8073541239302723e-05, '545-yard': 1.6430492035729749e-06, 'spree': 4.107623008932437e-06, '3-game': 1.6430492035729749e-06, '1,512': 1.6430492035729749e-06, '1,065': 1.6430492035729749e-06, 'SWC': 1.6430492035729749e-06, '280': 4.107623008932437e-06, '64': 3.2860984071459497e-06, 'tosses': 2.4645738053594624e-06, 'tough': 2.9574885664313547e-05, 'TCU': 1.6430492035729749e-06, '38-point': 1.6430492035729749e-06, 'bulge': 4.107623008932437e-06, 'loop': 1.3965918230370285e-05, 'Completing': 3.2860984071459497e-06, '174': 1.6430492035729749e-06, '361': 2.4645738053594624e-06, 'leads': 2.793183646074057e-05, 'per-game': 1.6430492035729749e-06, 'averages': 8.215246017864873e-06, '355': 2.4645738053594624e-06, '149': 2.4645738053594624e-06, "Baylor's": 1.6430492035729749e-06, '126': 3.2860984071459497e-06, 'idle': 1.0679819823224336e-05, '187.5': 1.6430492035729749e-06, '189': 2.4645738053594624e-06, '34.7': 1.6430492035729749e-06, 'Not': 0.00015444662513585964, 'unofficial': 4.929147610718925e-06, 'checks': 1.4787442832156774e-05, 'liveliness': 2.4645738053594624e-06, 'baseballs': 1.6430492035729749e-06, 'leagues': 7.393721416078387e-06, 'ordered': 5.750672212505412e-05, 'tests': 4.8469951505402755e-05, 'Nischwitz': 3.2860984071459497e-06, 'pinpoint': 4.929147610718925e-06, 'Bears': 8.215246017864873e-06, 'Indianapolis': 5.750672212505412e-06, '5-3': 1.6430492035729749e-06, 'husky': 2.4645738053594624e-06, '6-3': 3.2860984071459497e-06, '205-pound': 1.6430492035729749e-06, 'lefthander': 2.4645738053594624e-06, 'command': 4.8469951505402755e-05, 'on-the-scene': 2.4645738053594624e-06, '949': 1.6430492035729749e-06, 'countless': 1.232286902679731e-05, 'viewers': 3.2860984071459497e-06, "Nischwitz'": 1.6430492035729749e-06, "Grizzlies'": 1.6430492035729749e-06, 'Louisville': 5.750672212505412e-06, 'pack': 1.97165904428757e-05, 'walked': 0.00013144393628583797, 'Charley': 7.393721416078387e-06, 'Hinton': 3.2860984071459497e-06, '27': 2.218116424823516e-05, 'innings': 4.107623008932437e-06, 'unusual': 5.175604991254871e-05, 'characteristic': 5.668519752326763e-05, 'lagged': 2.4645738053594624e-06, 'McAuliffe': 4.107623008932437e-06, 'cracked': 1.4787442832156774e-05, 'Lefty': 2.4645738053594624e-06, 'Don': 1.889506584108921e-05, 'Rudolph': 3.2860984071459497e-06, "Bear's": 1.6430492035729749e-06, 'Paschal': 2.4645738053594624e-06, 'gruonded': 1.6430492035729749e-06, 'Jay': 1.232286902679731e-05, 'Cooke': 3.2860984071459497e-06, 'McDaniel': 2.4645738053594624e-06, 'Alusik': 1.6430492035729749e-06, 'Porter': 9.85829522143785e-06, 'bases': 1.97165904428757e-05, "Wert's": 1.6430492035729749e-06, 'smash': 4.107623008932437e-06, 'putout': 1.6430492035729749e-06, 'leftfield': 1.6430492035729749e-06, 'rightfield': 3.2860984071459497e-06, 'Phil': 5.4220623717908165e-05, "Shartzer's": 1.6430492035729749e-06, '3-hitter': 1.6430492035729749e-06, 'Indians': 2.7110311858954083e-05, 'bunched': 4.929147610718925e-06, 'Chuck': 5.750672212505412e-06, 'tripled': 4.107623008932437e-06, 'Cliff': 3.2860984071459497e-06, 'Dan': 2.300268885002165e-05, 'Pavletich': 1.6430492035729749e-06, "Gaines'": 1.6430492035729749e-06, 'infield': 6.5721968142918994e-06, 'roller': 3.2860984071459497e-06, 'accounted': 4.929147610718925e-06, "Alusik's": 2.4645738053594624e-06, 'outfield': 3.2860984071459497e-06, 'Wert': 2.4645738053594624e-06, 'Gaines': 2.4645738053594624e-06, 'hammered': 3.2860984071459497e-06, '45-degree': 3.2860984071459497e-06, 'clicked': 7.393721416078387e-06, '1:48': 2.4645738053594624e-06, 'Chico': 2.4645738053594624e-06, 'Ruiz': 1.6430492035729749e-06, 'spectacular': 1.8073541239302723e-05, 'grounder': 1.6430492035729749e-06, 'showed': 0.00011665649345368121, 'arm': 7.558026336435684e-05, 'Bingles': 1.6430492035729749e-06, 'bobbles': 1.6430492035729749e-06, "Tribe's": 1.6430492035729749e-06, "season's": 3.2860984071459497e-06, 'obvious': 7.640178796614333e-05, 'refocusing': 1.6430492035729749e-06, 'lights': 3.861165628396491e-05, 'flooded': 8.215246017864873e-06, 'dark': 0.00014048070690548934, 'Dobbs': 1.6430492035729749e-06, 'organ': 9.85829522143785e-06, 'exotic': 6.5721968142918994e-06, 'dancer': 2.6288787257167598e-05, 'Patti': 1.6430492035729749e-06, 'Waggin': 1.6430492035729749e-06, 'Wyman': 1.6430492035729749e-06, 'Tsitouris': 1.6430492035729749e-06, "o'clock": 3.286098407145949e-05, 'Donnelly': 1.6430492035729749e-06, 'Kenny': 2.4645738053594624e-06, 'Lane': 1.6430492035729746e-05, 'Muskegon': 1.6430492035729749e-06, 'Mich.': 4.107623008932437e-06, "world's": 2.7110311858954083e-05, 'ranked': 4.107623008932437e-06, 'lightweight': 4.107623008932437e-06, 'Rip': 1.6430492035729749e-06, 'Randall': 1.6430492035729749e-06, 'Paul-Minneapolis': 1.6430492035729749e-06, "Gardner's": 4.107623008932437e-06, 'eluded': 2.4645738053594624e-06, 'diving': 3.2860984071459497e-06, 'Minnie': 3.2860984071459497e-06, 'Minoso': 1.6430492035729749e-06, 'Lemon': 4.107623008932437e-06, 'Minnesota': 1.1501344425010824e-05, 'Twins': 4.929147610718925e-06, '6-5': 1.6430492035729749e-06, 'liner': 3.2860984071459497e-06, '5777': 1.6430492035729749e-06, 'fans': 1.8073541239302723e-05, 'batted': 2.4645738053594624e-06, 'Turk': 4.929147610718925e-06, 'Lown': 1.6430492035729749e-06, 'tagged': 5.750672212505412e-06, 'Ray': 1.3965918230370285e-05, 'Moore': 2.0538115044662184e-05, 'Reno': 6.5721968142918994e-06, 'Bertoia': 1.6430492035729749e-06, 'chopper': 1.6430492035729749e-06, 'Lenny': 1.6430492035729749e-06, "Green's": 2.4645738053594624e-06, '5-4': 1.6430492035729749e-06, 'pop': 4.929147610718925e-06, 'fly': 2.7110311858954083e-05, 'Roy': 3.1217934867886523e-05, 'Sievers': 1.6430492035729749e-06, 'Camilo': 1.6430492035729749e-06, 'Carreon': 1.6430492035729749e-06, 'sacrifice': 2.3824213451808133e-05, "Landis'": 1.6430492035729749e-06, '380-foot': 1.6430492035729749e-06, '1-0': 1.6430492035729749e-06, 'Harmon': 1.6430492035729749e-06, 'Killebrew': 1.6430492035729749e-06, 'bottom': 6.654349274470547e-05, 'walking': 4.1897754691110856e-05, 'Allison': 1.6430492035729749e-06, 'aboard': 2.1359639646448672e-05, "Smith's": 4.929147610718925e-06, '340-blast': 1.6430492035729749e-06, "Carreon's": 1.6430492035729749e-06, "Allison's": 1.6430492035729749e-06, 'run-scoring': 1.6430492035729749e-06, '2-baser': 1.6430492035729749e-06, 'solid': 5.8328246726840606e-05, 'Ogden': 3.2860984071459497e-06, 'Utah': 5.750672212505412e-06, 'Outfielder': 1.6430492035729749e-06, 'Jensen': 4.107623008932437e-06, 'baseball': 4.354080389468383e-05, 'newsman': 1.6430492035729749e-06, 'reflexes': 5.750672212505412e-06, '25th': 2.4645738053594624e-06, 'sudden': 3.203945946967301e-05, 'walkout': 1.6430492035729749e-06, '46': 8.215246017864873e-06, 'at-bats': 1.6430492035729749e-06, 'train': 6.407891893934602e-05, 'anybody': 3.286098407145949e-05, 'newsmen': 4.107623008932437e-06, 'trip': 6.736501734649196e-05, 'Nev.': 1.6430492035729749e-06, 'Olympic': 6.5721968142918994e-06, 'Diving': 2.4645738053594624e-06, 'Champion': 4.107623008932437e-06, 'Zoe': 1.6430492035729749e-06, 'Ann': 2.464573805359462e-05, 'Olsen': 1.6430492035729749e-06, 'awaited': 6.5721968142918994e-06, 'heading': 2.546726265538111e-05, 'speculating': 4.107623008932437e-06, 'hurting': 3.2860984071459497e-06, "Boston's": 2.4645738053594624e-06, 'chances': 2.0538115044662184e-05, 'Pacific': 2.6288787257167598e-05, 'Railroad': 9.85829522143785e-06, 'streamliner': 1.6430492035729749e-06, 'Sports': 4.107623008932437e-06, 'Writer': 2.4645738053594624e-06, 'Ensign': 4.107623008932437e-06, 'Ritchie': 4.107623008932437e-06, 'Standard': 1.4787442832156774e-05, 'Examiner': 7.393721416078387e-06, 'compartment': 9.85829522143785e-06, 'conductor': 2.0538115044662184e-05, "You'll": 2.546726265538111e-05, 'mad': 2.9574885664313547e-05, 'magazine': 2.7110311858954083e-05, 'cold': 0.00013308698548941095, 'warmed': 9.036770619651361e-06, 'Liston': 5.750672212505412e-06, 'double-crosser': 1.6430492035729749e-06, 'anything': 0.00021852554407520564, 'keyhole': 3.2860984071459497e-06, 'writer': 5.9149771328627094e-05, 'Traveler': 1.6430492035729749e-06, 'quoted': 2.218116424823516e-05, 'anymore': 4.929147610718925e-06, 'Suddenly': 1.97165904428757e-05, 'grip': 1.7252016637516235e-05, 'masses': 1.8073541239302723e-05, 'pops': 2.4645738053594624e-06, 'heroics': 2.4645738053594624e-06, 'tongues': 4.107623008932437e-06, 'wagging': 2.4645738053594624e-06, '40-year-old': 2.4645738053594624e-06, 'Spahn': 4.929147610718925e-06, 'no-hit': 2.4645738053594624e-06, 'masterpiece': 9.036770619651361e-06, 'Giants': 8.215246017864873e-06, "Giants'": 2.4645738053594624e-06, 'Willie': 9.85829522143785e-06, 'Mays': 1.1501344425010824e-05, 'retaliating': 1.6430492035729749e-06, 'record-tying': 1.6430492035729749e-06, '4-homer': 1.6430492035729749e-06, 'remarkable': 3.94331808857514e-05, 'feats': 3.2860984071459497e-06, 'embossed': 1.6430492035729749e-06, 'rightfully': 3.2860984071459497e-06, 'pastime': 4.107623008932437e-06, 'cherished': 1.3965918230370285e-05, 'achievements': 1.6430492035729746e-05, 'elderly': 1.1501344425010824e-05, "Spahn's": 1.6430492035729749e-06, 'hitless': 1.6430492035729749e-06, 'hearts': 1.8073541239302723e-05, 'stimulant': 1.6430492035729749e-06, 'guys': 1.7252016637516235e-05, '2-score-year': 1.6430492035729749e-06, 'milestone': 4.107623008932437e-06, 'rookies': 4.107623008932437e-06, 'sighed': 1.889506584108921e-05, 'Wish': 1.6430492035729749e-06, 'top-grade': 2.4645738053594624e-06, 'leaguer': 3.2860984071459497e-06, 'waved': 1.3965918230370285e-05, 'laurels': 2.4645738053594624e-06, 'surely': 3.286098407145949e-05, 'belonging': 1.1501344425010824e-05, 'all-time': 3.2860984071459497e-06, 'lefthanders': 1.6430492035729749e-06, 'Carl': 3.450403327503247e-05, 'Hubbell': 1.6430492035729749e-06, 'Herb': 4.929147610718925e-06, 'Pennock': 2.4645738053594624e-06, 'Nehf': 1.6430492035729749e-06, 'Vernon': 1.8073541239302723e-05, 'Gomez': 2.4645738053594624e-06, 'et': 2.546726265538111e-05, 'al': 8.215246017864873e-06, 'superior': 2.546726265538111e-05, 'pitcher': 1.7252016637516235e-05, 'gentlemanly': 1.6430492035729749e-06, "player's": 3.2860984071459497e-06, 'player': 1.5608967433943262e-05, 'beardown': 1.6430492035729749e-06, 'meaningless': 1.3144393628583799e-05, '1951': 1.7252016637516235e-05, '18,792': 1.6430492035729749e-06, 'Spahnie': 1.6430492035729749e-06, 'Enos': 1.6430492035729749e-06, 'Slaughter': 2.4645738053594624e-06, 'guy': 3.6147082478605446e-05, 'clubhouse': 4.107623008932437e-06, 'reaches': 2.1359639646448672e-05, 'sluggers': 2.4645738053594624e-06, 'walloped': 1.6430492035729749e-06, 'span': 1.3965918230370285e-05, 'Incidentally': 6.5721968142918994e-06, 'Lowe': 1.6430492035729749e-06, 'Gil': 1.6430492035729749e-06, 'Hodges': 1.232286902679731e-05, 'trick': 1.3144393628583799e-05, "Brooklyn's": 1.6430492035729749e-06, 'Ebbetts': 1.6430492035729749e-06, 'Delahanty': 1.6430492035729749e-06, 'Klein': 1.6430492035729749e-06, 'Phillies': 3.2860984071459497e-06, "Braves'": 1.6430492035729749e-06, 'Adcock': 1.6430492035729749e-06, 'Lou': 1.1501344425010824e-05, 'Gehrig': 4.929147610718925e-06, 'Pat': 2.7110311858954083e-05, 'Seerey': 1.6430492035729749e-06, 'Rocky': 1.6430492035729749e-06, 'Colavito': 1.6430492035729749e-06, "Willie's": 4.107623008932437e-06, 'revived': 5.750672212505412e-06, 'argument': 5.2577574514335196e-05, 'merits': 1.232286902679731e-05, 'Mickey': 2.464573805359462e-05, 'Mantle': 3.861165628396491e-05, 'boils': 1.6430492035729749e-06, 'fan': 1.4787442832156774e-05, 'anti': 1.6430492035729749e-06, 'pro-Yankee': 1.6430492035729749e-06, 'ace': 1.1501344425010824e-05, 'seasons': 1.4787442832156774e-05, '30-30': 1.6430492035729749e-06, 'lifetime': 9.036770619651361e-06, "Mickey's": 3.2860984071459497e-06, 'anemic': 1.6430492035729749e-06, 'windy': 2.4645738053594624e-06, 'Candlestick': 1.6430492035729749e-06, 'suddenly': 0.00010761972283402986, "Milwaukee's": 1.6430492035729749e-06, 'park': 4.025470548753788e-05, 'forever': 3.1217934867886523e-05, 'mystery': 3.0396410266100035e-05, 'hitting': 1.3965918230370285e-05, 'distressing': 6.5721968142918994e-06, 'slump': 7.393721416078387e-06, 'Denver-area': 1.6430492035729749e-06, 'TV': 3.286098407145949e-05, 'privileged': 9.036770619651361e-06, "Mays'": 2.4645738053594624e-06, 'arrangement': 2.793183646074057e-05, 'Howsam': 1.6430492035729749e-06, 'blacked': 3.2860984071459497e-06, 'blackout': 4.929147610718925e-06, 'televised': 4.107623008932437e-06, 'rulers': 7.393721416078387e-06, 'Living': 8.215246017864873e-06, 'Room': 1.5608967433943262e-05, 'Athletic': 4.929147610718925e-06, 'helpless': 1.7252016637516235e-05, 'CBS': 1.6430492035729749e-06, 'network': 2.546726265538111e-05, 'abide': 5.750672212505412e-06, 'NBC': 5.750672212505412e-06, 'afternoons': 1.1501344425010824e-05, 'arise': 2.3824213451808133e-05, 'irritable': 4.929147610718925e-06, 'harm': 2.1359639646448672e-05, 'purposely': 4.929147610718925e-06, 'dissatisfaction': 8.215246017864873e-06, "Howsam's": 1.6430492035729749e-06, 'video': 2.4645738053594624e-06, 'terminated': 4.107623008932437e-06, 'Cincinnati': 8.215246017864873e-06, 'powerful': 5.175604991254871e-05, '19th': 7.393721416078387e-06, '5-game': 1.6430492035729749e-06, 'romp': 1.6430492035729749e-06, 'outclassed': 1.6430492035729749e-06, 'crushing': 6.5721968142918994e-06, 'Reds': 2.4645738053594624e-06, 'humiliating': 4.107623008932437e-06, '13-5': 1.6430492035729749e-06, 'barrage': 4.929147610718925e-06, 'loosely': 1.0679819823224336e-05, 'finale': 5.750672212505412e-06, 'Yogi': 2.4645738053594624e-06, 'Berra': 2.4645738053594624e-06, 'injuries': 9.85829522143785e-06, 'champs': 1.6430492035729749e-06, 'mounted': 3.6968607080391934e-05, '15-hit': 1.6430492035729749e-06, 'Johnny': 2.546726265538111e-05, 'Blanchard': 2.4645738053594624e-06, "Mantle's": 5.750672212505412e-06, 'replacement': 1.7252016637516235e-05, '2-run': 2.4645738053594624e-06, 'routed': 1.6430492035729749e-06, 'loser': 1.6430492035729749e-06, 'Joey': 2.4645738053594624e-06, '5-run': 2.4645738053594624e-06, 'Hector': 1.6430492035729749e-06, 'Lopez': 2.4645738053594624e-06, 'subbing': 1.6430492035729749e-06, 'smashed': 1.3144393628583799e-05, '3-run': 1.6430492035729749e-06, 'Yanks': 4.107623008932437e-06, '32,589': 1.6430492035729749e-06, 'applaud': 4.929147610718925e-06, 'bleachers': 4.929147610718925e-06, '400': 1.5608967433943262e-05, 'Momentarily': 1.6430492035729749e-06, 'trailing': 6.5721968142918994e-06, 'fizzled': 1.6430492035729749e-06, 'Edwards': 3.2860984071459497e-06, 'fouled': 2.4645738053594624e-06, 'Wally': 2.1359639646448672e-05, 'Post': 2.0538115044662184e-05, 'slashed': 9.036770619651361e-06, 'Daley': 2.4645738053594624e-06, '11-5': 1.6430492035729749e-06, 'Series': 7.393721416078387e-06, 'Bucky': 1.6430492035729749e-06, 'boy-manager': 1.6430492035729749e-06, '1924': 8.215246017864873e-06, 'Eddie': 2.546726265538111e-05, 'Dyer': 3.2860984071459497e-06, 'Cardinals': 4.929147610718925e-06, 'accomplished': 3.6968607080391934e-05, 'feat': 5.750672212505412e-06, '23': 3.94331808857514e-05, 'Skorich': 9.036770619651361e-06, 'Eagles': 4.929147610718925e-06, 'elevated': 9.036770619651361e-06, 'three-year': 4.929147610718925e-06, '$20,000': 5.750672212505412e-06, '$25,000': 4.107623008932437e-06, 'Buck': 1.3144393628583799e-05, 'Shaw': 8.215246017864873e-06, 'retain': 9.85829522143785e-06, "Shaw's": 2.4645738053594624e-06, 'Charlie': 4.025470548753788e-05, 'Gauer': 2.4645738053594624e-06, 'ends': 5.586367292148114e-05, 'Choice': 3.2860984071459497e-06, 'selection': 3.203945946967301e-05, 'logical': 2.875336106252706e-05, 'Van': 2.546726265538111e-05, 'Brocklin': 2.4645738053594624e-06, 'permission': 2.300268885002165e-05, 'Vikings': 3.2860984071459497e-06, 'newest': 1.0679819823224336e-05, 'entry': 2.1359639646448672e-05, 'refused': 5.011300070897573e-05, 'reconsider': 4.107623008932437e-06, 'depended': 8.215246017864873e-06, "Brocklin's": 1.6430492035729749e-06, 'aerials': 1.6430492035729749e-06, 'advocate': 9.036770619651361e-06, 'balanced': 1.8073541239302723e-05, 'lineman': 1.6430492035729749e-06, 'Jock': 1.6430492035729749e-06, 'Sutherland': 5.750672212505412e-06, 'Pittsburgh': 2.1359639646448672e-05, 'Steelers': 2.4645738053594624e-06, 'quit': 1.1501344425010824e-05, 'Catholic': 6.982959115185143e-05, '1949': 1.7252016637516235e-05, 'Rensselaer': 2.4645738053594624e-06, 'Polytechnic': 1.6430492035729749e-06, 'Troy': 3.2860984071459497e-06, 'rejoining': 1.6430492035729749e-06, 'Packers': 2.4645738053594624e-06, 'auspiciously': 1.6430492035729749e-06, 'ceremony': 1.5608967433943262e-05, 'Richardson': 1.0679819823224336e-05, 'Dilworth': 1.6430492035729749e-06, 'championship': 7.393721416078387e-06, 'engrossed': 2.4645738053594624e-06, 'silver': 2.3824213451808133e-05, 'cufflinks': 1.6430492035729749e-06, 'shaped': 1.4787442832156774e-05, 'award': 3.286098407145949e-05, 'Shea': 8.215246017864873e-06, 'awards': 1.4787442832156774e-05, "night's": 1.1501344425010824e-05, 'thirty-eighth': 1.6430492035729749e-06, 'Chapter': 3.0396410266100035e-05, 'Baseball': 4.929147610718925e-06, "Writers'": 1.6430492035729749e-06, 'Waldorf-Astoria': 2.4645738053594624e-06, "Wagner's": 2.4645738053594624e-06, 'dais': 2.4645738053594624e-06, 'Graham': 1.1501344425010824e-05, 'Journal-American': 1.6430492035729749e-06, 'sports': 3.779013168217842e-05, 'columnist': 4.107623008932437e-06, 'Mazeroski': 3.2860984071459497e-06, 'Pirates': 7.393721416078387e-06, 'Ben': 1.8073541239302723e-05, 'Epstein': 1.6430492035729749e-06, 'Good': 3.286098407145949e-05, 'Guy': 7.393721416078387e-06, 'Award': 6.5721968142918994e-06, 'Babe': 7.393721416078387e-06, 'Ruth': 1.97165904428757e-05, 'outstanding': 2.9574885664313547e-05, 'meritorious': 2.4645738053594624e-06, 'Slocum': 3.2860984071459497e-06, 'Sid': 1.6430492035729749e-06, 'Mercer': 5.8328246726840606e-05, "chapter's": 1.6430492035729749e-06, 'Show': 1.4787442832156774e-05, 'follows': 6.325739433755954e-05, '1,400': 1.6430492035729749e-06, 'writers': 5.668519752326763e-05, 'lampoon': 1.6430492035729749e-06, 'personalities': 1.3144393628583799e-05, 'skit': 1.6430492035729749e-06, 'dance': 6.818654194827845e-05, 'song': 4.6826902301829785e-05, '53-year-old': 1.6430492035729749e-06, 'prominent': 3.368250867324598e-05, 'background': 5.504214831969465e-05, 'imminent': 3.2860984071459497e-06, 'Named': 2.4645738053594624e-06, 'Farley': 1.6430492035729749e-06, 'Bernard': 8.215246017864873e-06, 'Gimbel': 2.4645738053594624e-06, 'Blume': 1.6430492035729749e-06, 'relentlessly': 4.107623008932437e-06, 'departure': 1.4787442832156774e-05, 'Dodgers': 4.929147610718925e-06, 'California': 5.4220623717908165e-05, 'barriers': 1.4787442832156774e-05, 'disappointments': 2.4645738053594624e-06, 'convince': 4.107623008932437e-06, 'Branch': 4.929147610718925e-06, "Rickey's": 1.6430492035729749e-06, 'formation': 3.1217934867886523e-05, 'franchise': 4.929147610718925e-06, 'majors': 3.2860984071459497e-06, 'Flushing': 3.2860984071459497e-06, 'stadium': 5.750672212505412e-06, 'Shipman': 1.6430492035729749e-06, 'Payson': 1.6430492035729749e-06, 'big-league': 1.6430492035729749e-06, 'Meadow': 4.929147610718925e-06, 'lease': 9.036770619651361e-06, 'Ford': 2.0538115044662184e-05, 'Frick': 3.2860984071459497e-06, "Shea's": 1.6430492035729749e-06, 'prominently': 7.393721416078387e-06, 'Nori': 1.6430492035729749e-06, 'Sands': 3.2860984071459497e-06, 'Point': 1.7252016637516235e-05, 'I.': 1.3965918230370285e-05, 'Kathy': 4.107623008932437e-06, 'Patricia': 6.5721968142918994e-06, 'switching': 6.5721968142918994e-06, 'Georgetown': 3.2860984071459497e-06, 'Later': 3.368250867324598e-05, 'owned': 2.875336106252706e-05, 'Long': 3.286098407145949e-05, 'Ted': 6.5721968142918994e-06, "Collins'": 1.6430492035729749e-06, 'Roger': 1.3144393628583799e-05, 'Maris': 3.0396410266100035e-05, 'outfielder': 3.2860984071459497e-06, 'winner': 5.750672212505412e-06, 'most-valuable-player': 1.6430492035729749e-06, 'Hamey': 1.6430492035729749e-06, 'Arnold': 1.7252016637516235e-05, 'Palmer': 4.6826902301829785e-05, 'Snead': 2.4645738053594624e-06, 'Metropolitan': 1.0679819823224336e-05, 'Golf': 6.5721968142918994e-06, 'Writers': 4.929147610718925e-06, "golf's": 2.4645738053594624e-06, 'money-winner': 1.6430492035729749e-06, 'saluted': 3.2860984071459497e-06, 'Cup': 1.6430492035729749e-06, 'matches': 1.1501344425010824e-05, 'Dublin': 2.4645738053594624e-06, 'Deane': 1.6430492035729749e-06, 'Beman': 1.6430492035729749e-06, 'Amateur': 3.2860984071459497e-06, 'metropolitan': 1.889506584108921e-05, 'Gardner': 4.107623008932437e-06, 'amateur': 1.889506584108921e-05, 'title-holder': 1.6430492035729749e-06, "writers'": 3.2860984071459497e-06, 'Gold': 4.107623008932437e-06, 'Tee': 1.6430492035729749e-06, 'sponsorship': 4.929147610718925e-06, 'charity': 6.5721968142918994e-06, 'tournaments': 4.929147610718925e-06, 'Horton': 1.6430492035729749e-06, 'Professional': 4.107623008932437e-06, 'Golfers': 1.6430492035729749e-06, 'Hogan': 9.85829522143785e-06, 'Trophy': 5.750672212505412e-06, 'comeback': 2.4645738053594624e-06, 'Stuart': 1.3965918230370285e-05, 'Symington': 2.4645738053594624e-06, 'Missouri': 1.8073541239302723e-05, "Golf's": 1.6430492035729749e-06, 'golden': 2.1359639646448672e-05, 'blazing': 5.750672212505412e-06, 'twelve': 3.779013168217842e-05, 'Masters': 1.0679819823224336e-05, 'Open': 1.1501344425010824e-05, '$80,738': 2.4645738053594624e-06, 'prize': 1.5608967433943262e-05, 'heralded': 2.4645738053594624e-06, 'Sportsman': 2.4645738053594624e-06, 'Year': 8.215246017864873e-06, 'Illustrated': 3.2860984071459497e-06, 'Rochester': 2.4645738053594624e-06, 'Athlete': 1.6430492035729749e-06, 'diamond-studded': 1.6430492035729749e-06, 'Hickok': 1.6430492035729749e-06, 'Belt': 3.2860984071459497e-06, 'achieved': 5.175604991254871e-05, 'endeared': 3.2860984071459497e-06, 'duffer': 1.6430492035729749e-06, 'flubbed': 1.6430492035729749e-06, 'monstrous': 1.1501344425010824e-05, 'par-5': 1.6430492035729749e-06, 'human': 0.0002423497575270138, 'brooding': 1.1501344425010824e-05, 'incompetents': 2.4645738053594624e-06, 'meditating': 2.4645738053594624e-06, 'abandonment': 9.036770619651361e-06, 'sport': 1.4787442832156774e-05, 'frustrations': 4.107623008932437e-06, 'despair': 1.8073541239302723e-05, 'paragon': 1.6430492035729749e-06, 'perfection': 9.85829522143785e-06, 'commit': 1.3965918230370285e-05, 'sacrilege': 2.4645738053594624e-06, 'self-sacrifice': 2.4645738053594624e-06, 'nor': 0.00013144393628583797, 'yen': 2.4645738053594624e-06, 'downtrodden': 2.4645738053594624e-06, 'motivated': 8.215246017864873e-06, 'victimized': 2.4645738053594624e-06, 'athletics': 5.750672212505412e-06, 'respects': 1.889506584108921e-05, 'aggravates': 1.6430492035729749e-06, 'golfer': 3.2860984071459497e-06, 'shooting': 3.94331808857514e-05, 'below': 0.00010926277203760282, 'par': 1.1501344425010824e-05, 'delivering': 8.215246017864873e-06, 'crusher': 1.6430492035729749e-06, 'boomed': 1.6430492035729749e-06, '280-yard': 1.6430492035729749e-06, 'pixies': 1.6430492035729749e-06, 'zombies': 1.6430492035729749e-06, 'banshees': 2.4645738053594624e-06, 'wailed': 3.2860984071459497e-06, 'margin': 9.036770619651361e-06, 'narrow': 5.093452531076222e-05, 'fairway': 4.929147610718925e-06, '508-yard': 1.6430492035729749e-06, 'majestic': 8.215246017864873e-06, 'arc': 3.368250867324598e-05, 'out-of-bounds': 1.6430492035729749e-06, 'slice': 9.85829522143785e-06, 'sliced': 4.107623008932437e-06, 'bounds': 9.036770619651361e-06, 'hooked': 5.750672212505412e-06, 'over-corrected': 1.6430492035729749e-06, 'ruefully': 3.2860984071459497e-06, 'wayward': 3.2860984071459497e-06, 'shots': 2.464573805359462e-05, 'strokes': 1.0679819823224336e-05, 'wound': 2.3824213451808133e-05, 'dozen': 4.354080389468383e-05, 'nice': 5.750672212505412e-05, 'perturbed': 1.6430492035729749e-06, 'duffers': 2.4645738053594624e-06, 'easily': 8.790313239115415e-05, 'heartening': 4.107623008932437e-06, 'fell': 7.640178796614333e-05, 'evil': 5.8328246726840606e-05, 'heyday': 3.2860984071459497e-06, 'idol': 5.750672212505412e-06, 'hackers': 1.6430492035729749e-06, 'Ainsley': 1.6430492035729749e-06, '19': 2.7110311858954083e-05, 'secondary': 2.6288787257167598e-05, 'Chisholm': 3.2860984071459497e-06, 'drank': 1.6430492035729746e-05, 'lunch': 2.7110311858954083e-05, 'rock-strewn': 1.6430492035729749e-06, 'gully': 4.929147610718925e-06, 'Stickler': 1.6430492035729749e-06, 'excavation': 3.2860984071459497e-06, 'Thirteen': 2.4645738053594624e-06, 'Nae': 1.6430492035729749e-06, 'ye': 9.036770619651361e-06, "countin'": 4.107623008932437e-06, 'echoes': 7.393721416078387e-06, "Palmer's": 5.750672212505412e-06, 'honestly': 1.0679819823224336e-05, 'Nor': 3.0396410266100035e-05, 'loophole': 2.4645738053594624e-06, 'knows': 8.133093557686225e-05, 'code': 1.97165904428757e-05, 'thoroughly': 3.203945946967301e-05, 'handy': 1.1501344425010824e-05, 'brook': 1.6430492035729749e-06, 'flowed': 5.750672212505412e-06, 'floated': 6.5721968142918994e-06, 'downstream': 4.929147610718925e-06, 'picked': 6.49004435411325e-05, 'potato': 1.3144393628583799e-05, 'playable': 1.6430492035729749e-06, 'lie': 4.8469951505402755e-05, 'Dey': 1.6430492035729749e-06, 'naturally': 4.60053777000433e-05, 'alongside': 1.3144393628583799e-05, 'spot': 4.6826902301829785e-05, 'confessed': 6.5721968142918994e-06, 'grin': 1.1501344425010824e-05, 'happened': 0.00012076411646261365, 'nicer': 2.4645738053594624e-06, 'intensity': 4.6826902301829785e-05, 'inherent': 2.218116424823516e-05, 'humor': 3.861165628396491e-05, 'relieves': 2.4645738053594624e-06, 'strain': 2.6288787257167598e-05, 'nerves': 1.7252016637516235e-05, 'jangling': 2.4645738053594624e-06, 'banjo': 1.6430492035729749e-06, 'strings': 1.1501344425010824e-05, 'Yet': 0.00011254887044474877, 'fiercest': 1.6430492035729749e-06, 'competitors': 8.215246017864873e-06, 'bull': 1.1501344425010824e-05, 'head-on': 2.4645738053594624e-06, 'twelfth': 4.929147610718925e-06, '155-yarder': 1.6430492035729749e-06, "Arnold's": 2.4645738053594624e-06, 'tee': 4.107623008932437e-06, 'burrowed': 1.6430492035729749e-06, 'bunker': 3.2860984071459497e-06, 'guarding': 8.215246017864873e-06, 'embankment': 4.107623008932437e-06, 'soft': 5.093452531076222e-05, 'spongy': 2.4645738053594624e-06, 'rains': 4.929147610718925e-06, 'thereby': 2.875336106252706e-05, 'bringing': 3.203945946967301e-05, 'Ruling': 4.929147610718925e-06, 'lies': 3.6968607080391934e-05, 'provisional': 4.929147610718925e-06, 'embedded': 4.107623008932437e-06, 'golfing': 1.6430492035729749e-06, 'fathers': 9.036770619651361e-06, 'stroke': 1.6430492035729746e-05, 'tournament': 1.5608967433943262e-05, 'god-like': 1.6430492035729749e-06, 'creature': 1.3144393628583799e-05, 'supply': 8.050941097507576e-05, 'Minneapolis': 8.215246017864873e-06, 'fourteen': 2.3824213451808133e-05, 'Warwick': 1.8073541239302723e-05, "football's": 1.6430492035729749e-06, 'hall': 8.872465699294064e-05, 'fame': 1.3965918230370285e-05, "players'": 1.6430492035729749e-06, 'amendments': 4.107623008932437e-06, 'fourteen-team': 1.6430492035729749e-06, 'home-and-home': 1.6430492035729749e-06, 'teams': 1.8073541239302723e-05, 'lengthening': 3.2860984071459497e-06, 'thirteen': 8.215246017864873e-06, 'Rozelle': 1.6430492035729749e-06, 'Nine': 6.5721968142918994e-06, "league's": 1.6430492035729749e-06, 'therefore': 0.00012897936248047853, 'early-season': 1.6430492035729749e-06, 'dates': 2.546726265538111e-05, 'heed': 7.393721416078387e-06, 'Mauch': 2.4645738053594624e-06, 'misled': 3.2860984071459497e-06, "Pirates'": 1.6430492035729749e-06, 'slower': 8.215246017864873e-06, 'outclass': 1.6430492035729749e-06, 'Vinegar': 1.6430492035729749e-06, 'Bend': 4.929147610718925e-06, 'Mizell': 3.2860984071459497e-06, 'Shantz': 1.6430492035729749e-06, 'Tonight': 4.107623008932437e-06, 'breaking': 2.1359639646448672e-05, "baseball's": 3.2860984071459497e-06, '9-6': 1.6430492035729749e-06, 'Redbirds': 3.2860984071459497e-06, '7-9': 1.6430492035729749e-06, 'Change': 3.2860984071459497e-06, 'Solly': 2.4645738053594624e-06, 'Hemus': 4.929147610718925e-06, 'switch': 3.532555787681896e-05, 'Gibson': 7.393721416078387e-06, 'Ernie': 1.5608967433943262e-05, 'Broglio': 2.4645738053594624e-06, "Broglio's": 1.6430492035729749e-06, '4-0': 2.4645738053594624e-06, 'won-lost': 1.6430492035729749e-06, 'earned-run': 1.6430492035729749e-06, "Redbirds'": 1.6430492035729749e-06, 'disheartening': 1.6430492035729749e-06, '11-7': 1.6430492035729749e-06, 'collapse': 6.5721968142918994e-06, 'eager': 2.218116424823516e-05, 'assignment': 5.175604991254871e-05, "Thursday's": 1.6430492035729749e-06, 'Larry': 8.215246017864873e-06, 'Cubs': 2.4645738053594624e-06, 'Harvey': 1.5608967433943262e-05, 'Haddix': 2.4645738053594624e-06, 'flu': 7.393721416078387e-06, 'Cardinal': 6.5721968142918994e-06, 'Boyer': 2.4645738053594624e-06, 'Busch': 2.4645738053594624e-06, 'suffering': 3.6968607080391934e-05, 'stiff': 1.8073541239302723e-05, 'neck': 6.49004435411325e-05, '13-8': 1.6430492035729749e-06, '1-3': 1.6430492035729749e-06, 'Pirate': 2.4645738053594624e-06, 'Danny': 5.750672212505412e-06, 'Murtaugh': 3.2860984071459497e-06, "hadn't": 8.133093557686225e-05, 'Vern': 1.6430492035729749e-06, "Wednesday's": 1.6430492035729749e-06, 'Nieman': 3.2860984071459497e-06, 'lineup': 3.2860984071459497e-06, 'lengthy': 9.85829522143785e-06, 'Stan': 3.2860984071459497e-06, 'Musial': 3.2860984071459497e-06, 'anniversary': 1.4787442832156774e-05, 'five-home': 1.6430492035729749e-06, 'sore': 8.215246017864873e-06, 'Taussig': 2.4645738053594624e-06, 'Lindy': 1.6430492035729749e-06, 'groove': 2.4645738053594624e-06, 'Bucks': 2.4645738053594624e-06, "Bucs'": 1.6430492035729749e-06, 'bats': 5.750672212505412e-06, 'quieted': 3.2860984071459497e-06, 'recession': 6.5721968142918994e-06, 'imposing': 6.5721968142918994e-06, 'Smoky': 4.107623008932437e-06, 'Burgess': 2.4645738053594624e-06, 'Gino': 1.6430492035729749e-06, 'Cimoli': 1.6430492035729749e-06, 'Virdon': 2.4645738053594624e-06, 'Clemente': 3.2860984071459497e-06, 'Groat': 1.6430492035729749e-06, 'Hoak': 1.6430492035729749e-06, 'Skinner': 1.6430492035729749e-06, 'Hal': 2.3824213451808133e-05, 'dragging': 1.3144393628583799e-05, 'Perhaps': 7.722331256792982e-05, 'unhappiest': 1.6430492035729749e-06, 'sit': 5.4220623717908165e-05, 'Friend': 7.393721416078387e-06, 'beaten': 1.1501344425010824e-05, 'Man': 4.6826902301829785e-05, "isn't": 7.229416495721089e-05, 'blasting': 2.4645738053594624e-06, 'plunkers': 1.6430492035729749e-06, 'Bucs': 1.6430492035729749e-06, 'jumped': 2.9574885664313547e-05, '11-3': 1.6430492035729749e-06, '7-6': 2.4645738053594624e-06, 'ending': 2.6288787257167598e-05, 'two-season': 2.4645738053594624e-06, 'fall-off': 1.6430492035729749e-06, '3-10': 1.6430492035729749e-06, '4-13': 1.6430492035729749e-06, "'49": 2.4645738053594624e-06, 'so-so': 3.2860984071459497e-06, '5-5': 2.4645738053594624e-06, '12-17': 1.6430492035729749e-06, 'finishing': 8.215246017864873e-06, '96': 4.929147610718925e-06, "'52": 3.2860984071459497e-06, 'Cards': 3.2860984071459497e-06, '6-7': 1.6430492035729749e-06, '88': 1.6430492035729749e-06, 'triumphs': 3.2860984071459497e-06, "club's": 6.5721968142918994e-06, 'tumbled': 1.1501344425010824e-05, '11-18': 1.6430492035729749e-06, 'recovering': 3.2860984071459497e-06, 'runaway': 5.750672212505412e-06, "'55": 2.4645738053594624e-06, 'Dodger': 1.6430492035729749e-06, '21-2': 1.6430492035729749e-06, 'nine-game': 1.6430492035729749e-06, 'overcame': 3.2860984071459497e-06, 'worst': 2.793183646074057e-05, 'comparable': 3.286098407145949e-05, "York's": 6.5721968142918994e-06, "'51": 1.6430492035729749e-06, 'battling': 3.2860984071459497e-06, 'Billikens': 2.4645738053594624e-06, 'Speakers': 2.4645738053594624e-06, 'Tipoff': 1.6430492035729749e-06, 'dealt': 1.889506584108921e-05, 'lavish': 3.2860984071459497e-06, 'words': 0.0002218116424823516, 'Benington': 6.5721968142918994e-06, 'Mankowski': 3.2860984071459497e-06, 'Hartweger': 4.929147610718925e-06, 'Kieffer': 2.4645738053594624e-06, 'Bevo': 2.4645738053594624e-06, 'Nordmann': 4.107623008932437e-06, '6-foot-10': 1.6430492035729749e-06, 'conversation': 4.1897754691110856e-05, 'respect': 0.00010186905062152444, "other's": 8.215246017864873e-06, 'pepping': 1.6430492035729749e-06, 'supposed': 5.4220623717908165e-05, "We'd": 9.036770619651361e-06, 'halftime': 1.6430492035729749e-06, "Don't": 8.46170339840082e-05, "'em": 3.450403327503247e-05, 'trio': 7.393721416078387e-06, 'shared': 3.368250867324598e-05, 'most-valuable': 1.6430492035729749e-06, 'honors': 1.232286902679731e-05, 'Broeg': 1.6430492035729749e-06, 'editor': 6.325739433755954e-05, 'Post-Dispatch': 1.6430492035729749e-06, 'commended': 4.107623008932437e-06, 'clutch': 4.929147610718925e-06, 'all-round': 1.6430492035729749e-06, 'excellent': 5.586367292148114e-05, 'ball-hawking': 1.6430492035729749e-06, 'Bradley': 4.107623008932437e-06, "U.'s": 1.6430492035729749e-06, 'recalled': 2.218116424823516e-05, 'doubted': 8.215246017864873e-06, 'faults': 6.5721968142918994e-06, 'admired': 1.4787442832156774e-05, "Gordon's": 2.4645738053594624e-06, 'husband': 0.00010844124743581633, 'bowl': 1.7252016637516235e-05, 'thank': 1.8073541239302723e-05, "coach's": 1.6430492035729749e-06, 'talking': 8.215246017864874e-05, 'letting': 2.546726265538111e-05, 'Burnes': 1.6430492035729749e-06, 'Globe-Democrat': 1.6430492035729749e-06, 'congratulated': 3.2860984071459497e-06, 'shape': 6.900806655006494e-05, 'healed': 5.750672212505412e-06, "Louis's": 2.4645738053594624e-06, "Bill's": 3.2860984071459497e-06, 'inscription': 5.750672212505412e-06, 'Outstanding': 2.4645738053594624e-06, 'Contribution': 1.6430492035729749e-06, 'Billiken': 2.4645738053594624e-06, 'Basketball': 1.6430492035729749e-06, '1960-61': 2.4645738053594624e-06, 'lettermen': 1.6430492035729749e-06, 'compiled': 9.036770619651361e-06, '21-9': 1.6430492035729749e-06, 'runner-up': 2.4645738053594624e-06, 'Invitation': 2.4645738053594624e-06, 'Tournament': 2.4645738053594624e-06, 'Hambric': 1.6430492035729749e-06, 'Donnell': 1.6430492035729749e-06, 'Reid': 3.2860984071459497e-06, 'Luechtefeld': 1.6430492035729749e-06, 'Latinovich': 1.6430492035729749e-06, 'Notre': 5.750672212505412e-06, 'Dame': 5.750672212505412e-06, "teams'": 1.6430492035729749e-06, 'overcome': 2.218116424823516e-05, 'anywhere': 3.1217934867886523e-05, 'super': 5.750672212505412e-06, 'Scherer': 2.4645738053594624e-06, 'pitched': 7.393721416078387e-06, '5-1': 3.2860984071459497e-06, 'Crystal': 5.750672212505412e-06, 'defeats': 2.4645738053594624e-06, 'tie': 1.889506584108921e-05, 'trips': 2.464573805359462e-05, 'Len': 3.2860984071459497e-06, 'Boehmer': 1.6430492035729749e-06, '4-for-5': 1.6430492035729749e-06, 'Ligget': 1.6430492035729749e-06, 'busy': 4.8469951505402755e-05, 'Teachers': 4.929147610718925e-06, '3:30': 1.6430492035729749e-06, 'doubleheader': 1.6430492035729749e-06, 'Quincy': 4.107623008932437e-06, 'contented': 7.393721416078387e-06, 'cows': 1.1501344425010824e-05, 'milk': 3.6968607080391934e-05, "shouldn't": 1.889506584108921e-05, 'talents': 2.3824213451808133e-05, 'harder': 1.97165904428757e-05, 'successfully': 2.6288787257167598e-05, 'careers': 1.232286902679731e-05, 'frank': 1.889506584108921e-05, 'expectations': 1.3965918230370285e-05, "that's": 7.475873876257036e-05, 'meant': 8.297398478043522e-05, 'knock': 1.3144393628583799e-05, 'agree': 4.2719279292897344e-05, "they've": 7.393721416078387e-06, 'heights': 1.0679819823224336e-05, 'bull-necked': 1.6430492035729749e-06, 'blond': 9.85829522143785e-06, 'switch-hitter': 1.6430492035729749e-06, 'sensational': 5.750672212505412e-06, 'triple-crown': 1.6430492035729749e-06, '52': 4.107623008932437e-06, "rbi's": 1.6430492035729749e-06, '130': 4.929147610718925e-06, 'Like': 4.60053777000433e-05, "Yankees'": 2.4645738053594624e-06, 'slugger': 4.107623008932437e-06, 'terror': 1.97165904428757e-05, 'ultimate': 4.929147610718924e-05, 'belted': 2.4645738053594624e-06, '51': 4.107623008932437e-06, '127': 1.6430492035729749e-06, 'happier': 9.85829522143785e-06, 'behaving': 4.107623008932437e-06, "they're": 3.1217934867886523e-05, 'peaks': 7.393721416078387e-06, 'professionals': 9.036770619651361e-06, 'spelled': 5.750672212505412e-06, 'correctly': 1.1501344425010824e-05, 'fifteenth': 6.5721968142918994e-06, 'differently': 1.3965918230370285e-05, 'rare': 3.368250867324598e-05, 'possessing': 5.750672212505412e-06, 'enabled': 1.0679819823224336e-05, 'reserving': 4.107623008932437e-06, 'resented': 7.393721416078387e-06, "Stengel's": 2.4645738053594624e-06, 'push': 3.0396410266100035e-05, 'prod': 2.4645738053594624e-06, 'thrilling': 4.107623008932437e-06, 'possessive': 4.107623008932437e-06, 'inherited': 1.3965918230370285e-05, 'DiMaggio': 4.929147610718925e-06, 'Rizzuto': 1.6430492035729749e-06, 'Class': 3.6147082478605446e-05, 'C': 0.00010022600141795146, 'Joplin': 1.6430492035729749e-06, 'body': 0.0002218116424823516, 'beautiful': 0.00010104752601973795, "Ol'": 1.6430492035729749e-06, 'homerun': 1.6430492035729749e-06, 'hitter': 2.4645738053594624e-06, 'bunter': 1.6430492035729749e-06, 'base-runner': 1.6430492035729749e-06, 'preached': 7.393721416078387e-06, 'kid': 4.60053777000433e-05, 'bubble': 1.0679819823224336e-05, 'gum': 1.232286902679731e-05, 'sow': 3.2860984071459497e-06, 'oats': 6.5721968142918994e-06, 'Inheriting': 1.6430492035729749e-06, 'sights': 1.3144393628583799e-05, 'Broadway': 2.0538115044662184e-05, 'quietly': 4.025470548753788e-05, 'bestowed': 6.5721968142918994e-06, 'pun': 1.6430492035729749e-06, 'intended': 3.779013168217842e-05, 'mantle': 2.4645738053594624e-06, 'Major': 1.7252016637516235e-05, 'continues': 3.450403327503247e-05, '162-game': 1.6430492035729749e-06, 'spread': 6.572196814291899e-05, 'thin': 7.640178796614333e-05, '10-team': 1.6430492035729749e-06, 'inviting': 7.393721416078387e-06, "Angeles'": 3.2860984071459497e-06, 'Wrigley': 3.2860984071459497e-06, 'glamorous': 4.929147610718925e-06, "Ruth's": 7.393721416078387e-06, '1927': 1.6430492035729746e-05, 'Alvin': 5.750672212505412e-06, 'Commies': 2.4645738053594624e-06, 'wonderful': 4.436232849647032e-05, 'walloping': 1.6430492035729749e-06, 'Dark': 1.3144393628583799e-05, 'Next': 2.7110311858954083e-05, 'Leo': 6.5721968142918994e-06, 'Durocher': 1.6430492035729749e-06, 'taught': 4.107623008932437e-05, 'grass-green': 1.6430492035729749e-06, 'rushed': 2.300268885002165e-05, 'Polo': 3.2860984071459497e-06, 'Grounds': 4.107623008932437e-06, 'Romantic': 2.4645738053594624e-06, 'concerns': 3.6147082478605446e-05, 'Joan': 1.232286902679731e-05, 'Monroe': 1.0679819823224336e-05, 'Armour': 2.4645738053594624e-06, 'Wendell': 7.393721416078387e-06, 'Lake': 3.6147082478605446e-05, 'brother': 5.9149771328627094e-05, 'Hampton': 2.4645738053594624e-06, "bride's": 4.929147610718925e-06, 'marriage': 7.640178796614333e-05, "bridegroom's": 2.4645738053594624e-06, 'Barrett': 1.6430492035729749e-06, 'Wendells': 1.6430492035729749e-06, 'winter': 6.325739433755954e-05, 'holiday': 1.4787442832156774e-05, 'Sarasota': 1.6430492035729749e-06, 'occasion': 4.8469951505402755e-05, 'arrive': 2.0538115044662184e-05, 'Kirkland': 1.6430492035729749e-06, 'Christmas': 2.300268885002165e-05, 'holidays': 9.036770619651361e-06, 'Peter': 3.0396410266100035e-05, 'Westminster': 1.97165904428757e-05, 'measles': 2.4645738053594624e-06, 'sister': 2.875336106252706e-05, 'Missoula': 1.6430492035729749e-06, 'Mont.': 1.6430492035729749e-06, 'baby': 4.7648426903616267e-05, 'mother': 0.0001577327235430056, 'Camilla': 2.4645738053594624e-06, 'Alsop': 3.2860984071459497e-06, 'bride': 2.7110311858954083e-05, 'wedding': 2.6288787257167598e-05, 'Met': 3.2860984071459497e-06, 'bulletins': 4.107623008932437e-06, 'Sims': 3.2860984071459497e-06, 'Cancer': 5.750672212505412e-06, 'Foundation': 1.6430492035729746e-05, 'Opera': 1.7252016637516235e-05, 'Turandot': 1.6430492035729749e-06, 'Birgit': 1.6430492035729749e-06, 'Nilsson': 1.6430492035729749e-06, 'starred': 2.4645738053594624e-06, 'Housed': 1.6430492035729749e-06, 'McCormick': 7.393721416078387e-06, 'exciting': 2.464573805359462e-05, 'evening': 0.00010597667363045688, 'adds': 9.036770619651361e-06, "board's": 4.107623008932437e-06, 'Belafonte': 1.6430492035729749e-06, 'off-beat': 2.4645738053594624e-06, 'Sulcer': 1.6430492035729749e-06, 'Winnetka': 1.6430492035729749e-06, 'publicity': 2.1359639646448672e-05, 'Her': 0.0001248717394715461, 'recently': 9.036770619651362e-05, 'university': 7.475873876257036e-05, 'east': 3.532555787681896e-05, 'Parichy-Hamm': 1.6430492035729749e-06, 'Frederick': 1.6430492035729746e-05, 'Hamm': 6.5721968142918994e-06, 'Bruce': 4.107623008932437e-06, 'Parichy': 2.4645738053594624e-06, "Bernadine's": 1.6430492035729749e-06, 'Arms': 5.750672212505412e-06, 'Vero': 2.4645738053594624e-06, "Beadles'": 1.6430492035729749e-06, 'Beadles': 1.6430492035729749e-06, 'Stevens': 1.5608967433943262e-05, 'Kenilworth': 1.6430492035729749e-06, 'niece': 7.393721416078387e-06, 'uncles': 3.2860984071459497e-06, 'aunts': 4.107623008932437e-06, 'Rush': 1.6430492035729749e-06, 'Butlers': 1.6430492035729749e-06, 'Homer': 6.5721968142918994e-06, 'Robertsons': 1.6430492035729749e-06, 'Q.': 2.4645738053594624e-06, 'Porters': 1.6430492035729749e-06, 'bridal': 2.4645738053594624e-06, "Stevenses'": 1.6430492035729749e-06, 'Here': 0.00011829954265725419, 'Press': 1.97165904428757e-05, 'fete': 1.6430492035729749e-06, 'Lawn': 1.6430492035729749e-06, 'Tennis': 3.2860984071459497e-06, 'buffet': 5.750672212505412e-06, 'supper': 2.546726265538111e-05, '5:30': 1.6430492035729749e-06, 'bus': 2.875336106252706e-05, "Kramer's": 1.6430492035729749e-06, 'tennis': 1.0679819823224336e-05, 'loud': 1.6430492035729746e-05, 'huzzahs': 1.6430492035729749e-06, 'artistic': 2.7110311858954083e-05, 'success': 7.14726403554244e-05, 'Presbyterian-St.': 1.6430492035729749e-06, "Luke's": 2.4645738053594624e-06, 'Fashion': 4.107623008932437e-06, 'ringing': 8.215246017864873e-06, 'ears': 3.1217934867886523e-05, 'Tieken': 1.6430492035729749e-06, 'Geraghty': 4.107623008932437e-06, 'earn': 1.3965918230370285e-05, 'acclaim': 4.107623008932437e-06, 'entertainment': 2.464573805359462e-05, "summer's": 5.750672212505412e-06, 'Trade': 8.215246017864873e-06, 'Armed': 2.464573805359462e-05, 'embassies': 6.5721968142918994e-06, 'bushes': 8.215246017864873e-06, 'oriental': 1.6430492035729749e-06, 'talent': 3.368250867324598e-05, 'Industry': 9.036770619651361e-06, 'cultural': 4.107623008932437e-05, 'activities': 9.11892307983001e-05, 'instance': 6.818654194827845e-05, 'Djakarta': 1.6430492035729749e-06, 'dancers': 2.464573805359462e-05, 'whirling': 8.215246017864873e-06, 'dervishes': 3.2860984071459497e-06, 'Damascus': 3.2860984071459497e-06, 'obstacle': 9.036770619651361e-06, "Geraghty's": 3.2860984071459497e-06, 'globe-girdling': 1.6430492035729749e-06, 'smoothed': 6.5721968142918994e-06, 'Syria': 2.4645738053594624e-06, 'separated': 3.6147082478605446e-05, 'Egypt': 1.232286902679731e-05, 'Arab': 2.4645738053594624e-06, 'Republic': 2.9574885664313547e-05, 'visa': 4.107623008932437e-06, 'First': 9.858295221437849e-05, 'Honolulu': 5.750672212505412e-06, 'Japan': 3.203945946967301e-05, 'Hong': 9.85829522143785e-06, 'Kong': 9.85829522143785e-06, 'Manila': 1.6430492035729749e-06, 'Pakistan': 6.5721968142918994e-06, 'Beirut': 1.6430492035729749e-06, 'Rome': 5.8328246726840606e-05, 'London': 7.393721416078387e-05, 'look': 0.0002998564796520679, "Geraghtys'": 1.6430492035729749e-06, 'youngest': 1.0679819823224336e-05, 'Molly': 4.929147610718925e-06, 'bows': 3.2860984071459497e-06, 'Passavant': 1.6430492035729749e-06, 'Debutante': 2.4645738053594624e-06, 'Cotillion': 1.6430492035729749e-06, 'cotillion': 1.6430492035729749e-06, 'gown': 1.3965918230370285e-05, 'fitted': 1.7252016637516235e-05, 'invitations': 1.1501344425010824e-05, 'addressed': 1.6430492035729746e-05, "Molly's": 2.4645738053594624e-06, 'tea': 2.300268885002165e-05, 'Arts': 2.0538115044662184e-05, 'folk': 2.793183646074057e-05, 'festival': 1.0679819823224336e-05, 'singers': 1.1501344425010824e-05, "Chicago's": 9.036770619651361e-06, 'sing': 2.300268885002165e-05, 'songs': 4.7648426903616267e-05, 'Balkan': 2.4645738053594624e-06, 'Byron': 1.3965918230370285e-05, 'Harveys': 1.6430492035729749e-06, 'Racquet': 1.6430492035729749e-06, 'Abra': 1.6430492035729749e-06, "Prentice's": 1.6430492035729749e-06, 'Casino': 1.6430492035729749e-06, 'Burke-Rostagno': 1.6430492035729749e-06, "Burkes'": 1.6430492035729749e-06, 'Lambert': 2.4645738053594624e-06, 'Italian': 3.94331808857514e-05, 'studying': 3.203945946967301e-05, 'Florence': 4.929147610718925e-06, 'Aldo': 1.6430492035729749e-06, 'Rostagno': 1.6430492035729749e-06, 'Guglielmo': 1.6430492035729749e-06, 'Rostagnos': 1.6430492035729749e-06, 'Burkes': 2.4645738053594624e-06, 'Europe': 9.7761427612592e-05, 'Kankakee': 1.6430492035729749e-06, 'telling': 4.2719279292897344e-05, 'engagement': 1.889506584108921e-05, "Hall's": 1.6430492035729749e-06, 'girl': 0.00017416321557873533, 'fiance': 1.6430492035729749e-06, 'publishing': 1.1501344425010824e-05, 'translates': 1.6430492035729749e-06, 'farewell': 1.0679819823224336e-05, 'Sethness': 2.4645738053594624e-06, 'Consul': 2.4645738053594624e-06, 'Giacomo': 1.6430492035729749e-06, 'Profili': 1.6430492035729749e-06, 'canceled': 5.750672212505412e-06, 'surgery': 4.107623008932437e-06, 'Odell': 1.6430492035729749e-06, 'Clinton': 3.2860984071459497e-06, 'King': 5.2577574514335196e-05, 'Holabird': 1.6430492035729749e-06, 'Boothby': 1.6430492035729749e-06, 'Actress': 1.6430492035729749e-06, 'Maureen': 3.2860984071459497e-06, "O'Sullivan": 2.4645738053594624e-06, 'costumes': 1.5608967433943262e-05, 'Affaire': 1.6430492035729749e-06, 'Towne': 4.929147610718925e-06, 'Bal': 1.6430492035729749e-06, 'Masque': 1.6430492035729749e-06, 'Germania': 1.6430492035729749e-06, 'crabapple': 1.6430492035729749e-06, 'trees': 7.88663617715028e-05, 'streets': 4.7648426903616267e-05, 'Lyon': 3.2860984071459497e-06, 'Columnist': 1.6430492035729749e-06, 'Winchell': 1.6430492035729749e-06, 'rat-a-tat-tatty': 1.6430492035729749e-06, 'wheeled': 9.036770619651361e-06, 'trains': 1.3144393628583799e-05, 'en': 4.929147610718925e-06, 'Phoenix': 8.215246017864873e-06, 'Ariz.': 4.929147610718925e-06, 'rancho': 1.6430492035729749e-06, 'portable': 1.1501344425010824e-05, 'typewriter': 9.036770619651361e-06, "W.'s": 1.6430492035729749e-06, 'hinted': 6.5721968142918994e-06, "ain't": 3.532555787681896e-05, 'Pretty': 7.393721416078387e-06, 'Sunny': 1.6430492035729749e-06, 'Ainsworth': 1.6430492035729749e-06, 'ex-Mrs.': 2.4645738053594624e-06, 'Tommy': 1.5608967433943262e-05, 'Manville': 1.6430492035729749e-06, 'Arvey': 1.6430492035729749e-06, 'Playboy-Show-Biz': 1.6430492035729749e-06, 'promotional': 5.750672212505412e-06, "She's": 2.218116424823516e-05, 'fallout': 2.6288787257167598e-05, 'shelters': 2.1359639646448672e-05, 'beer': 2.7110311858954083e-05, 'stein': 2.4645738053594624e-06, 'pubs': 1.6430492035729749e-06, 'nights': 2.6288787257167598e-05, 'Everybody': 1.0679819823224336e-05, 'ethics': 1.1501344425010824e-05, 'morals': 5.750672212505412e-06, 'Comic': 1.6430492035729749e-06, 'Gary': 4.929147610718925e-06, 'Lucille': 1.1501344425010824e-05, 'Ball': 8.215246017864873e-06, 'scoop': 4.929147610718925e-06, 'Jane': 2.9574885664313547e-05, 'Russell': 1.0679819823224336e-05, 'singing': 3.6968607080391934e-05, 'appearances': 1.232286902679731e-05, "Russell's": 6.5721968142918994e-06, 'Skylark': 1.6430492035729749e-06, 'debuting': 2.4645738053594624e-06, 'Drury': 3.2860984071459497e-06, 'sellout': 1.6430492035729749e-06, 'cry': 4.025470548753788e-05, 'warbling': 1.6430492035729749e-06, 'pain': 7.229416495721089e-05, "medico's": 1.6430492035729749e-06, 'injection': 6.5721968142918994e-06, 'inflamed': 1.6430492035729749e-06, 'nerve': 1.0679819823224336e-05, 'Simonelli': 1.6430492035729749e-06, 'Universal-International': 1.6430492035729749e-06, 'studio': 2.3824213451808133e-05, 'exec': 2.4645738053594624e-06, 'makes': 0.00013801613310012988, 'column': 5.011300070897573e-05, "bulletin'd": 1.6430492035729749e-06, 'wed': 2.4645738053594624e-06, 'Rosemary': 1.6430492035729749e-06, 'Strafaci': 1.6430492035729749e-06, 'Mag': 1.6430492035729749e-06, 'Handsome': 3.2860984071459497e-06, 'bachelor': 4.107623008932437e-06, 'favorite': 3.450403327503247e-05, "Hollywood's": 4.107623008932437e-06, 'glamor': 4.107623008932437e-06, 'gals': 2.4645738053594624e-06, 'Simon': 4.107623008932437e-06, 'Aiding': 1.6430492035729749e-06, 'Leukemia': 1.6430492035729749e-06, 'Stricken': 1.6430492035729749e-06, 'Children': 1.1501344425010824e-05, 'low-down': 3.2860984071459497e-06, 'phonies': 2.4645738053594624e-06, 'phones': 6.5721968142918994e-06, 'solicit': 1.6430492035729749e-06, "Danny's": 1.6430492035729749e-06, 'Jude': 3.2860984071459497e-06, 'Memphis': 7.393721416078387e-06, 'staging': 3.2860984071459497e-06, 'entertain': 1.232286902679731e-05, 'underprivileged': 3.2860984071459497e-06, 'mail': 3.532555787681896e-05, 'contribs': 1.6430492035729749e-06, 'Box': 4.107623008932437e-06, '7599': 1.6430492035729749e-06, 'solicits': 1.6430492035729749e-06, 'dough': 1.1501344425010824e-05, 'Olivia': 1.6430492035729749e-06, 'Havilland': 1.6430492035729749e-06, 'Garson': 8.215246017864873e-06, 'Kanin': 1.6430492035729749e-06, 'Gift': 1.6430492035729749e-06, "She'll": 5.750672212505412e-06, 'Gotham': 1.6430492035729749e-06, 'Gorgeous': 1.6430492035729749e-06, 'Doris': 4.929147610718925e-06, 'producer-hubby': 1.6430492035729749e-06, 'Marty': 1.232286902679731e-05, 'Melcher': 1.6430492035729749e-06, 'tour': 3.450403327503247e-05, 'U-I': 1.6430492035729749e-06, 'Rackmil': 1.6430492035729749e-06, 'Carnegie': 7.393721416078387e-06, 'toast': 1.5608967433943262e-05, 'movie': 2.464573805359462e-05, 'exhibitors': 1.6430492035729749e-06, "It'll": 8.215246017864873e-06, 'screenings': 1.6430492035729749e-06, "Doris'": 1.6430492035729749e-06, 'Lover': 3.2860984071459497e-06, 'Come': 3.450403327503247e-05, 'Back': 1.3965918230370285e-05, 'Flower': 4.929147610718925e-06, 'Drum': 1.6430492035729749e-06, 'Song': 1.232286902679731e-05, 'Whee': 1.6430492035729749e-06, 'People': 3.0396410266100035e-05, 'Lovely': 1.6430492035729749e-06, 'Thrush': 2.4645738053594624e-06, 'Annamorena': 1.6430492035729749e-06, 'biz': 2.4645738053594624e-06, 'touches': 1.232286902679731e-05, 'hubby': 1.6430492035729749e-06, "Lenobel's": 1.6430492035729749e-06, 'fur': 9.85829522143785e-06, 'Typical': 2.4645738053594624e-06, 'mink': 4.929147610718925e-06, 'Freddie': 2.4645738053594624e-06, 'Wacker': 1.6430492035729749e-06, 'frau': 1.6430492035729749e-06, 'Jana': 1.6430492035729749e-06, 'Mason': 2.0538115044662184e-05, 'ex-singer': 1.6430492035729749e-06, "Wackers'": 1.6430492035729749e-06, 'Fur': 2.4645738053594624e-06, 'goodness': 1.3965918230370285e-05, 'sake': 3.286098407145949e-05, 'Emcee': 1.6430492035729749e-06, 'Herbert': 1.0679819823224336e-05, "Nixon's": 1.6430492035729749e-06, 'slogan': 5.750672212505412e-06, 'Knight': 9.85829522143785e-06, 'Fall': 9.85829522143785e-06, 'Give': 9.036770619651361e-06, 'generously': 7.393721416078387e-06, 'buy': 5.750672212505412e-05, 'candy': 1.232286902679731e-05, 'Brain': 3.2860984071459497e-06, 'worthiest': 2.4645738053594624e-06, 'charities': 4.107623008932437e-06, 'Best': 9.036770619651361e-06, 'Bet': 1.6430492035729749e-06, "darlin'": 1.6430492035729749e-06, 'dazzler': 1.6430492035729749e-06, 'Paree': 2.4645738053594624e-06, 'Genevieve': 1.6430492035729749e-06, 'Trager': 2.4645738053594624e-06, 'showman': 3.2860984071459497e-06, 'boss': 1.5608967433943262e-05, 'holders': 4.107623008932437e-06, 'Stock': 9.036770619651361e-06, 'Yards': 1.6430492035729749e-06, 'Jump': 1.6430492035729749e-06, 'Packs': 1.6430492035729749e-06, "Nobody's": 2.4645738053594624e-06, 'mentioned': 6.572196814291899e-05, "ol'": 1.6430492035729749e-06, 'Mets': 2.4645738053594624e-06, 'baseballight': 1.6430492035729749e-06, 'wear': 2.9574885664313547e-05, 'uniform': 4.1897754691110856e-05, 'Bernie': 1.6430492035729749e-06, 'Kriss': 1.6430492035729749e-06, 'bayonet': 5.750672212505412e-06, 'clashes': 2.4645738053594624e-06, "Berlin's": 4.107623008932437e-06, 'Brandenburg': 2.4645738053594624e-06, 'Gate': 4.107623008932437e-06, 'Sentry': 1.6430492035729749e-06, 'jotted': 1.6430492035729749e-06, 'dept.': 2.4645738053594624e-06, 'Khrush': 1.6430492035729749e-06, 'confident': 1.3965918230370285e-05, "They're": 2.3824213451808133e-05, 'contaminating': 1.6430492035729749e-06, "earth's": 9.85829522143785e-06, 'via': 1.4787442832156774e-05, 'megaton': 2.4645738053594624e-06, 'bombs': 2.9574885664313547e-05, 'peasants': 9.85829522143785e-06, 'Albert': 2.464573805359462e-05, 'Luthuli': 1.6430492035729749e-06, 'awarded': 1.4787442832156774e-05, 'Nobel': 6.5721968142918994e-06, 'African': 2.3824213451808133e-05, 'struggles': 3.2860984071459497e-06, 'collect': 1.3965918230370285e-05, 'Hmpf': 1.6430492035729749e-06, 'frothier': 1.6430492035729749e-06, 'Weissmuller': 1.6430492035729749e-06, 'Tarzan': 4.107623008932437e-06, 'telephoned': 1.3965918230370285e-05, 'muttered': 1.4787442832156774e-05, 'Me': 1.3965918230370285e-05, 'Snapped': 1.6430492035729749e-06, 'glib': 1.6430492035729749e-06, 'garrulous': 1.6430492035729749e-06, 'Everywhere': 6.5721968142918994e-06, 'sidled': 2.4645738053594624e-06, 'guttural': 3.2860984071459497e-06, 'frightening': 1.232286902679731e-05, 'yodel': 1.6430492035729749e-06, 'roles': 2.793183646074057e-05, 'Dolce': 4.929147610718925e-06, 'Vita': 4.929147610718925e-06, 'dynamite': 4.929147610718925e-06, 'flicker': 2.4645738053594624e-06, 'opens': 1.3965918230370285e-05, 'Loop': 4.929147610718925e-06, 'masterful': 2.4645738053594624e-06, "Veeck's": 1.6430492035729749e-06, 'dynamo': 2.4645738053594624e-06, 'medics': 1.6430492035729749e-06, 'rest': 0.00013226546088762446, 'swim': 9.85829522143785e-06, 'doings': 5.750672212505412e-06, 'Tribune': 1.1501344425010824e-05, 'tells': 2.875336106252706e-05, 'misses': 4.107623008932437e-06, 'Ticker': 1.6430492035729749e-06, 'Jean': 1.97165904428757e-05, "Fardulli's": 1.6430492035729749e-06, 'Angel': 8.215246017864873e-06, 'import': 1.3965918230370285e-05, 'crazy': 2.7110311858954083e-05, 'Twist': 2.4645738053594624e-06, "They'll": 1.4787442832156774e-05, 'lessons': 1.3965918230370285e-05, 'pronto': 1.6430492035729749e-06, 'cheer': 6.5721968142918994e-06, 'Francis': 1.8073541239302723e-05, 'Lorenz': 2.4645738053594624e-06, 'probate': 2.4645738053594624e-06, 'suggestions': 1.97165904428757e-05, 'deposit': 8.215246017864873e-06, 'boxes': 1.232286902679731e-05, 'dies': 9.85829522143785e-06, 'closed': 8.626008318758118e-05, 'Gods': 2.4645738053594624e-06, 'gala': 5.750672212505412e-06, 'Music': 1.889506584108921e-05, 'dancing': 3.450403327503247e-05, 'furnished': 1.97165904428757e-05, 'Uhles': 1.6430492035729749e-06, 'orchestra': 3.368250867324598e-05, 'Members': 1.1501344425010824e-05, 'guests': 4.7648426903616267e-05, 'suites': 4.107623008932437e-06, 'patio': 2.4645738053594624e-06, 'genial': 4.929147610718925e-06, 'Beginning': 4.929147610718925e-06, 'nightly': 3.2860984071459497e-06, 'Hackstaff': 1.6430492035729749e-06, 'Luette': 1.6430492035729749e-06, 'Bowman': 3.2860984071459497e-06, 'celebrates': 2.4645738053594624e-06, 'birthday': 1.5608967433943262e-05, 'Chase': 7.393721416078387e-06, 'Sheila': 1.6430492035729749e-06, 'Mercy': 1.6430492035729749e-06, 'Grandparents': 2.4645738053594624e-06, 'Mullenax': 2.4645738053594624e-06, 'Kittredge': 1.6430492035729749e-06, 'w.': 1.6430492035729749e-06, 'coast': 2.875336106252706e-05, 'McIntosh': 1.6430492035729749e-06, 'Buell': 1.6430492035729749e-06, 'Santa': 2.3824213451808133e-05, 'Calif.': 1.6430492035729746e-05, 'Vroman': 1.6430492035729749e-06, 'Manzanola': 1.6430492035729749e-06, 'Plaza': 2.4645738053594624e-06, 'Merrill': 2.4645738053594624e-06, 'Shoup': 4.107623008932437e-06, 'Colorado': 1.1501344425010824e-05, 'Palace': 1.97165904428757e-05, 'Brig.': 1.6430492035729749e-06, 'McDermott': 1.6430492035729749e-06, 'black': 0.00012897936248047853, "Officers'": 3.2860984071459497e-06, 'Cocktail': 1.6430492035729749e-06, 'Piero': 2.4645738053594624e-06, 'Luise': 1.6430492035729749e-06, 'Emilio': 1.6430492035729749e-06, 'Bassi': 1.6430492035729749e-06, 'Bassis': 1.6430492035729749e-06, 'stag': 7.393721416078387e-06, 'precede': 3.2860984071459497e-06, 'Cocktails': 2.4645738053594624e-06, 'dining': 2.300268885002165e-05, 'Betsy': 1.6430492035729749e-06, 'Parker': 5.2577574514335196e-05, 'Eastern': 1.8073541239302723e-05, 'Security': 1.4787442832156774e-05, 'Life': 3.286098407145949e-05, 'Bldg.': 3.2860984071459497e-06, 'Guests': 4.929147610718925e-06, 'juniors': 2.4645738053594624e-06, 'staged': 1.3144393628583799e-05, 'Neusteters': 1.6430492035729749e-06, 'preceded': 1.3144393628583799e-05, 'Teter': 1.6430492035729749e-06, 'Mead': 2.4645738053594624e-06, 'decorations': 7.393721416078387e-06, 'Stanley': 2.9574885664313547e-05, 'Wright': 3.861165628396491e-05, 'Pate': 1.6430492035729749e-06, 'Milton': 1.4787442832156774e-05, 'Bernet': 1.6430492035729749e-06, 'Rollie': 1.6430492035729749e-06, 'Bradford': 4.929147610718925e-06, 'Butler': 2.4645738053594624e-06, 'Carr': 2.4645738053594624e-06, 'Campbell': 4.107623008932437e-06, 'Carruthers': 4.929147610718925e-06, 'Cris': 1.6430492035729749e-06, 'Dobbins': 1.6430492035729749e-06, 'Glass': 3.2860984071459497e-06, 'Alfred': 4.354080389468383e-05, 'Hicks': 1.6430492035729749e-06, 'Magarrell': 1.6430492035729749e-06, 'Willett': 1.6430492035729749e-06, 'Myron': 1.6430492035729749e-06, 'Neusteter': 1.6430492035729749e-06, 'Sudier': 1.6430492035729749e-06, 'Welborn': 1.6430492035729749e-06, 'D.C.': 2.1359639646448672e-05, 'Kira': 1.6430492035729749e-06, 'R.L.': 1.6430492035729749e-06, 'Rickenbaugh': 2.4645738053594624e-06, 'E.O.': 1.6430492035729749e-06, 'Scarsdale': 2.4645738053594624e-06, 'cheery': 3.2860984071459497e-06, 'smile': 4.8469951505402755e-05, 'compassionate': 2.4645738053594624e-06, 'practical': 5.504214831969465e-05, 'down-to-earth': 4.929147610718925e-06, 'qualities': 3.6968607080391934e-05, 'Esther': 8.215246017864873e-06, 'Marr': 5.750672212505412e-06, 'asset': 4.929147610718925e-06, 'Salvation': 4.929147610718925e-06, 'Social': 2.0538115044662184e-05, 'Center': 3.1217934867886523e-05, '1200': 1.6430492035729749e-06, 'Larimer': 1.6430492035729749e-06, 'pert': 2.4645738053594624e-06, 'gray-haired': 3.2860984071459497e-06, 'civilian': 1.97165904428757e-05, 'covers': 2.7110311858954083e-05, 'tasks': 2.464573805359462e-05, 'Mom': 2.4645738053594624e-06, '80': 1.5608967433943262e-05, 'link': 1.3965918230370285e-05, 'bridge': 6.900806655006494e-05, 'gulf': 4.929147610718925e-06, 'alcoholics': 4.107623008932437e-06, 'parolees': 2.4645738053594624e-06, 'pressing': 1.889506584108921e-05, 'written': 0.00012651478867511907, 'Week': 1.5608967433943262e-05, 'plenty': 4.2719279292897344e-05, 'schedules': 9.036770619651361e-06, 'solved': 1.6430492035729746e-05, "Marr's": 1.6430492035729749e-06, 'welcome': 3.779013168217842e-05, 'mat': 4.929147610718925e-06, 'Skid': 1.6430492035729749e-06, 'Row': 1.6430492035729749e-06, 'decides': 1.0679819823224336e-05, 'wants': 5.8328246726840606e-05, 'sees': 2.9574885664313547e-05, 'cup': 3.6968607080391934e-05, 'steaming': 4.929147610718925e-06, 'coffee': 6.161434513398656e-05, 'awaiting': 6.5721968142918994e-06, 'chat': 4.929147610718925e-06, 'informally': 4.929147610718925e-06, 'presents': 2.793183646074057e-05, 'Usually': 1.4787442832156774e-05, 'withdrawn': 4.107623008932437e-06, 'relearns': 1.6430492035729749e-06, 'mingle': 2.4645738053594624e-06, 'Denverite': 1.6430492035729749e-06, 'bum': 6.5721968142918994e-06, 'tickets': 1.232286902679731e-05, 'beggar': 2.4645738053594624e-06, 'sporting': 6.5721968142918994e-06, 'concerts': 1.8073541239302723e-05, 'cookies': 5.750672212505412e-06, 'sweets': 2.4645738053594624e-06, 'sugar': 2.793183646074057e-05, 'watching': 6.161434513398656e-05, 'parole': 4.929147610718925e-06, 'readjust': 2.4645738053594624e-06, 'mid-June': 3.2860984071459497e-06, 'vacation': 3.94331808857514e-05, 'forth': 5.9149771328627094e-05, 'vast': 5.011300070897573e-05, 'lovely': 3.6147082478605446e-05, 'all-American': 2.4645738053594624e-06, 'safari': 2.4645738053594624e-06, 'motel-keepers': 1.6430492035729749e-06, 'bleak': 8.215246017864873e-06, 'Vacancy': 2.4645738053594624e-06, 'abroad': 4.2719279292897344e-05, 'suitcases': 4.929147610718925e-06, 'comic': 7.393721416078387e-06, 'magic': 3.1217934867886523e-05, 'Ah': 1.5608967433943262e-05, 'simple': 0.00012815783787869205, 'reared': 8.215246017864873e-06, 'grandma': 1.6430492035729749e-06, 'summertime': 3.2860984071459497e-06, 'onslaught': 4.107623008932437e-06, '7-day': 1.6430492035729749e-06, 'journey': 2.218116424823516e-05, '2809': 1.6430492035729749e-06, 'miles': 0.00013965918230370285, 'Tucson': 3.2860984071459497e-06, 'influx': 4.107623008932437e-06, 'testify': 7.393721416078387e-06, 'motels': 6.5721968142918994e-06, 'comfort': 3.6147082478605446e-05, 'stations': 6.982959115185143e-05, 'Scots': 7.393721416078387e-06, 'heather': 1.6430492035729749e-06, 'wagons': 1.4787442832156774e-05, 'roadside': 4.107623008932437e-06, 'restaurants': 1.0679819823224336e-05, 'souvenir': 2.4645738053594624e-06, 'snake': 3.532555787681896e-05, 'braced': 4.929147610718925e-06, 'boasting': 3.2860984071459497e-06, 'offers': 3.6968607080391934e-05, 'vacationing': 3.2860984071459497e-06, 'beauty': 5.586367292148114e-05, 'far-flung': 1.6430492035729749e-06, 'over-night': 1.6430492035729749e-06, 'accommodations': 7.393721416078387e-06, 'Maybe': 5.4220623717908165e-05, 'motel-keeping': 1.6430492035729749e-06, 'tastes': 8.215246017864873e-06, 'peculiarities': 4.107623008932437e-06, 'Shamrock': 2.4645738053594624e-06, 'Motel': 4.107623008932437e-06, 'advertises': 1.6430492035729749e-06, 'vented': 1.6430492035729749e-06, 'heat': 7.475873876257036e-05, 'carpeted': 3.2860984071459497e-06, 'storm': 2.218116424823516e-05, 'cellar': 2.218116424823516e-05, 'pools': 1.3144393628583799e-05, 'Innumerable': 1.6430492035729749e-06, 'boast': 7.393721416078387e-06, 'swimming': 3.1217934867886523e-05, 'hospitable': 4.107623008932437e-06, 'poised': 9.036770619651361e-06, 'brink': 3.2860984071459497e-06, 'adults': 1.889506584108921e-05, 'Motorists': 1.6430492035729749e-06, 'myself': 0.00010597667363045688, 'tourists': 1.0679819823224336e-05, 'accommodated': 1.6430492035729749e-06, 'village': 3.94331808857514e-05, 'marvel': 5.750672212505412e-06, 'luxury': 1.8073541239302723e-05, 'relatively': 6.982959115185143e-05, 'fast-grossing': 1.6430492035729749e-06, 'motel': 1.7252016637516235e-05, '$14': 3.2860984071459497e-06, 'Boxwood': 1.6430492035729749e-06, 'Winchester': 1.0679819823224336e-05, 'Va.': 6.5721968142918994e-06, 'accidentally': 5.750672212505412e-06, 'suite': 1.7252016637516235e-05, 'elegant': 1.1501344425010824e-05, 'wall-to-wall': 2.4645738053594624e-06, 'carpeting': 2.4645738053594624e-06, 'gold': 4.025470548753788e-05, 'white': 0.0002094887734555543, 'furniture': 3.1217934867886523e-05, 'pink': 3.861165628396491e-05, 'satin': 4.929147610718925e-06, 'brocade': 3.2860984071459497e-06, 'chairs': 1.889506584108921e-05, '24-inch': 1.6430492035729749e-06, 'tile': 1.3965918230370285e-05, 'bath': 2.1359639646448672e-05, 'towels': 9.85829522143785e-06, 'proprietor': 9.85829522143785e-06, '$8.50': 1.6430492035729749e-06, 'tab': 1.6430492035729749e-06, 'ants': 5.750672212505412e-06, 'pressed-paper': 1.6430492035729749e-06, 'Oxnard': 1.6430492035729749e-06, 'Judith': 4.107623008932437e-06, 'Ellen': 9.036770619651361e-06, 'Gay': 2.4645738053594624e-06, 'Munger': 1.6430492035729749e-06, 'Methodist': 1.1501344425010824e-05, 'Parents': 9.036770619651361e-06, 'Ferris': 2.4645738053594624e-06, '7034': 1.6430492035729749e-06, 'Coronado': 2.4645738053594624e-06, 'bridegroom': 3.2860984071459497e-06, 'Baines': 1.6430492035729749e-06, 'Monica': 2.4645738053594624e-06, 'UCLA': 1.6430492035729749e-06, 'Perkins': 2.4645738053594624e-06, 'Theology': 1.6430492035729749e-06, 'officiated': 3.2860984071459497e-06, 'Honor': 4.107623008932437e-06, 'attendants': 6.5721968142918994e-06, 'Sandra': 1.6430492035729749e-06, 'Branum': 1.6430492035729749e-06, 'McRoberts': 1.6430492035729749e-06, 'Sequoia': 2.4645738053594624e-06, 'Frances': 2.4645738053594624e-06, 'Baker': 2.875336106252706e-05, 'Elvis': 2.4645738053594624e-06, 'chapel': 8.215246017864873e-06, 'Presbyterian': 9.85829522143785e-06, 'Rhodes': 7.393721416078387e-06, 'Semmes': 1.6430492035729749e-06, 'Kappa': 4.929147610718925e-06, 'Gamma': 1.6430492035729749e-06, 'Mortar': 2.4645738053594624e-06, 'Alton': 2.4645738053594624e-06, 'Shreveport': 3.2860984071459497e-06, 'Cater': 1.6430492035729749e-06, 'Parmer': 1.6430492035729749e-06, 'Alpha': 5.750672212505412e-06, 'Tau': 1.6430492035729749e-06, 'Omega': 1.6430492035729749e-06, 'Sigma': 1.6430492035729749e-06, 'Pi': 2.4645738053594624e-06, 'Grahamstown': 1.6430492035729749e-06, 'Fellowship': 9.036770619651361e-06, 'Freeman': 9.036770619651361e-06, 'Pabor': 1.6430492035729749e-06, 'Hand': 1.1501344425010824e-05, 'music': 0.00016019729734836503, 'wore': 5.4220623717908165e-05, 'court-length': 1.6430492035729749e-06, 'organdy': 3.2860984071459497e-06, 'bateau': 2.4645738053594624e-06, 'neckline': 3.2860984071459497e-06, 'princesse': 2.4645738053594624e-06, 'skirt': 1.8073541239302723e-05, 'accented': 3.2860984071459497e-06, 'lace': 6.5721968142918994e-06, 'appliques': 1.6430492035729749e-06, 'veil': 7.393721416078387e-06, 'crown': 1.4787442832156774e-05, 'gardenias': 1.6430492035729749e-06, 'stephanotis': 2.4645738053594624e-06, 'Baird': 4.107623008932437e-06, 'maid': 2.300268885002165e-05, 'bridesmaids': 2.4645738053594624e-06, 'Dawson': 1.6430492035729749e-06, 'Hinsdale': 1.6430492035729749e-06, 'Reeder': 1.6430492035729749e-06, 'Cecil': 1.6430492035729749e-06, 'Hartford': 3.2860984071459497e-06, 'Conn.': 3.2860984071459497e-06, 'groomsmen': 1.6430492035729749e-06, 'Carter': 6.5721968142918994e-06, 'Conrad': 9.036770619651361e-06, 'McEachern': 1.6430492035729749e-06, 'Ken': 9.036770619651361e-06, 'Neumann': 1.6430492035729749e-06, 'seated': 1.8073541239302723e-05, 'Mayfair': 2.4645738053594624e-06, 'newlyweds': 2.4645738053594624e-06, 'Corpus': 2.4645738053594624e-06, 'Christi': 2.4645738053594624e-06, 'Shirley': 4.929147610718925e-06, 'Meredith': 1.5608967433943262e-05, 'Arlington': 4.107623008932437e-06, '2705': 1.6430492035729749e-06, 'Fitzhugh': 1.6430492035729749e-06, 'Hardy': 3.0396410266100035e-05, 'Floresville': 1.6430492035729749e-06, 'Chapel': 9.85829522143785e-06, 'Beam': 1.6430492035729749e-06, 'featuring': 4.107623008932437e-06, 'flared': 4.929147610718925e-06, 'jacket': 2.793183646074057e-05, 'pearl': 3.2860984071459497e-06, 'headdress': 1.6430492035729749e-06, 'orchids': 3.2860984071459497e-06, 'Glenda': 2.4645738053594624e-06, 'Kay': 1.8073541239302723e-05, "sister's": 2.4645738053594624e-06, 'Lewelleyn': 1.6430492035729749e-06, 'Angelo': 7.393721416078387e-06, 'Lovelace': 1.6430492035729749e-06, 'Cedric': 3.2860984071459497e-06, 'Burgher': 1.6430492035729749e-06, 'Christian': 0.00011912106725904068, 'Pampa': 2.4645738053594624e-06, 'Marcile': 1.6430492035729749e-06, 'Marie': 5.750672212505412e-06, 'Glison': 2.4645738053594624e-06, 'Earl': 9.85829522143785e-06, 'Loving': 1.6430492035729749e-06, '8861': 1.6430492035729749e-06, 'Gaston': 2.4645738053594624e-06, 'Ervin': 2.4645738053594624e-06, "Woman's": 4.929147610718925e-06, 'studies': 7.88663617715028e-05, 'Night': 1.1501344425010824e-05, 'gayety': 1.6430492035729749e-06, 'Thrift': 4.929147610718925e-06, 'Shop': 6.5721968142918994e-06, 'Philmont': 4.107623008932437e-06, 'reputation': 2.300268885002165e-05, 'fun': 3.6147082478605446e-05, 'promises': 1.7252016637516235e-05, 'tradition': 7.640178796614333e-05, 'Grinsfelder': 2.4645738053594624e-06, 'food': 0.0001109058212411758, 'colorful': 1.7252016637516235e-05, 'hospitality': 5.750672212505412e-06, 'exactly': 8.379550938222171e-05, "We've": 1.8073541239302723e-05, 'prospects': 2.0538115044662184e-05, 'hats': 1.232286902679731e-05, 'excitement': 2.6288787257167598e-05, 'Basin': 2.4645738053594624e-06, 'Beat': 3.2860984071459497e-06, 'festivities': 7.393721416078387e-06, 'jazz': 6.736501734649196e-05, 'combo': 4.107623008932437e-06, 'Lester': 1.1501344425010824e-05, "Lanin's": 1.6430492035729749e-06, 'Louchheim': 1.6430492035729749e-06, 'phase': 5.504214831969465e-05, 'globetrotter': 1.6430492035729749e-06, "R's": 4.107623008932437e-06, 'oysters': 7.393721416078387e-06, 'specialties': 4.107623008932437e-06, 'chef': 7.393721416078387e-06, 'Scenic': 1.6430492035729749e-06, 'effects': 8.954618159472713e-05, 'scenic': 7.393721416078387e-06, 'flowers': 4.436232849647032e-05, 'reproductions': 2.4645738053594624e-06, 'handsome': 3.1217934867886523e-05, 'grillwork': 2.4645738053594624e-06, 'typical': 5.2577574514335196e-05, 'Cohen': 3.2860984071459497e-06, 'Hollander': 1.6430492035729749e-06, 'display': 3.368250867324598e-05, 'Brothers': 3.2860984071459497e-06, "Shop's": 1.6430492035729749e-06, 'bundle': 1.6430492035729746e-05, 'clothing': 1.7252016637516235e-05, 'household': 2.7110311858954083e-05, 'bric-a-brac': 2.4645738053594624e-06, 'stock': 0.00011337039504653526, 'shelves': 7.393721416078387e-06, "shop's": 1.6430492035729749e-06, '1213': 1.6430492035729749e-06, 'Walnut': 7.393721416078387e-06, 'Bundle': 1.6430492035729749e-06, 'convenience': 1.4787442832156774e-05, 'throughout': 0.00010104752601973795, 'suburbs': 1.3965918230370285e-05, 'deposited': 9.036770619651361e-06, 'bundles': 6.5721968142918994e-06, 'dinners': 8.215246017864873e-06, 'Bernhard': 1.6430492035729749e-06, 'Blumenthal': 1.6430492035729749e-06, 'fund-raisers': 1.6430492035729749e-06, 'Jewish': 6.161434513398656e-05, 'Agencies': 1.6430492035729749e-06, 'competence': 1.5608967433943262e-05, 'contribution': 3.0396410266100035e-05, 'totals': 5.750672212505412e-06, '$840,000': 1.6430492035729749e-06, 'feminine': 9.036770619651361e-06, 'husbands': 1.232286902679731e-05, 'Glazer': 2.4645738053594624e-06, "men's": 1.5608967433943262e-05, 'staffing': 1.6430492035729749e-06, 'shop': 4.6826902301829785e-05, 'Kapnek': 1.6430492035729749e-06, 'Newburger': 1.6430492035729749e-06, 'hostesses': 3.2860984071459497e-06, 'Loeb': 1.6430492035729749e-06, 'arrangements': 3.1217934867886523e-05, 'Lichtenstein': 1.6430492035729749e-06, 'Rose': 1.3965918230370285e-05, 'secretarial': 4.107623008932437e-06, 'duties': 2.7110311858954083e-05, 'aides': 4.107623008932437e-06, 'Lewis': 4.7648426903616267e-05, 'Kaufnabb': 1.6430492035729749e-06, 'Weinberg': 1.6430492035729749e-06, 'Allan': 4.107623008932437e-06, 'Goodman': 2.4645738053594624e-06, 'controllers': 3.2860984071459497e-06, 'Stone': 9.85829522143785e-06, 'Quell': 1.6430492035729749e-06, 'admittance': 1.6430492035729749e-06, 'P.m.': 1.6430492035729749e-06, 'Besides': 3.450403327503247e-05, "David's": 4.107623008932437e-06, 'pre-Fair': 1.6430492035729749e-06, 'dessert': 6.5721968142918994e-06, 'Spurdle': 3.2860984071459497e-06, 'Moody': 3.2860984071459497e-06, 'Wilkinson': 1.6430492035729749e-06, 'Ethel': 3.2860984071459497e-06, 'Coles': 1.6430492035729749e-06, 'Lacy': 1.6430492035729749e-06, 'Chance': 2.4645738053594624e-06, 'Harcourt': 5.750672212505412e-06, 'Moller': 1.6430492035729749e-06, 'Zeising': 1.6430492035729749e-06, 'Kilhour': 1.6430492035729749e-06, 'Cauffman': 1.6430492035729749e-06, 'Baringer': 1.6430492035729749e-06, 'Clyde': 2.4645738053594624e-06, 'Newman': 9.036770619651361e-06, 'Natalie': 1.6430492035729749e-06, 'Collett': 1.6430492035729749e-06, 'Newbold': 2.4645738053594624e-06, 'commentator': 3.2860984071459497e-06, 'Models': 1.6430492035729749e-06, 'Meyle': 1.6430492035729749e-06, 'Hole': 3.2860984071459497e-06, 'Harrity': 1.6430492035729749e-06, 'Kloman': 1.6430492035729749e-06, 'Wolcott': 1.6430492035729749e-06, 'Wheeler': 4.107623008932437e-06, 'Boyd': 4.929147610718925e-06, 'Mrs': 1.6430492035729749e-06, 'Putt': 1.6430492035729749e-06, 'Col.': 6.5721968142918994e-06, 'Clifton': 3.2860984071459497e-06, 'Lisle': 1.6430492035729749e-06, 'Troop': 6.5721968142918994e-06, 'decades': 2.875336106252706e-05, 'honorary': 2.4645738053594624e-06, 'invites': 6.5721968142918994e-06, 'camping-out': 1.6430492035729749e-06, 'year-round': 4.107623008932437e-06, 'sub-zero': 1.6430492035729749e-06, 'temperatures': 2.1359639646448672e-05, 'Cotty': 1.6430492035729749e-06, 'Felske': 1.6430492035729749e-06, 'Smythe': 4.107623008932437e-06, 'posters': 4.107623008932437e-06, 'Meet': 2.4645738053594624e-06, 'Artist': 2.4645738053594624e-06, 'invitation': 1.5608967433943262e-05, 'Greater': 6.5721968142918994e-06, 'arrange': 8.215246017864873e-06, 'exhibit': 2.1359639646448672e-05, 'sale': 3.6968607080391934e-05, 'paintings': 2.875336106252706e-05, 'sculpture': 9.85829522143785e-06, 'preview': 1.6430492035729749e-06, 'sponsors': 8.215246017864873e-06, 'artists': 3.6147082478605446e-05, 'Proceeds': 2.4645738053594624e-06, 'levels': 5.750672212505412e-05, 'Noted': 1.6430492035729749e-06, 'Monte': 4.929147610718925e-06, 'Tyson': 1.6430492035729749e-06, 'Delaware': 2.300268885002165e-05, 'Valley': 2.1359639646448672e-05, 'Marc': 2.4645738053594624e-06, 'Shoettle': 2.4645738053594624e-06, 'Shahn': 1.6430492035729749e-06, 'Nicholas': 6.5721968142918994e-06, 'Marsicano': 3.2860984071459497e-06, 'Loen': 1.6430492035729749e-06, 'Avery': 1.6430492035729749e-06, 'portrait': 1.3965918230370285e-05, 'wins': 7.393721416078387e-06, 'door': 0.00025713720035917055, 'originated': 1.3144393628583799e-05, 'Wissahickon': 1.6430492035729749e-06, 'continuing': 4.7648426903616267e-05, 'fund-raiser': 1.6430492035729749e-06, 'Others': 2.464573805359462e-05, 'Jerome': 4.929147610718925e-06, 'Blum': 2.4645738053594624e-06, 'Meyer': 5.750672212505412e-06, 'Schultz': 2.4645738053594624e-06, 'co-chairmen': 2.4645738053594624e-06, 'Assisting': 1.6430492035729749e-06, 'chairmen': 8.215246017864873e-06, 'Malmud': 1.6430492035729749e-06, 'Fernberger': 1.6430492035729749e-06, 'Cushman': 1.6430492035729749e-06, 'Berton': 1.6430492035729749e-06, 'Korman': 1.6430492035729749e-06, 'Rosen': 2.4645738053594624e-06, 'Jacques': 7.393721416078387e-06, 'Zinman': 1.6430492035729749e-06, 'Evelyn': 4.107623008932437e-06, 'Kamens': 1.6430492035729749e-06, 'Langsdorf': 1.6430492035729749e-06, 'Liss': 1.6430492035729749e-06, 'Blumberg': 3.2860984071459497e-06, 'Oscar': 8.215246017864873e-06, 'Bregman': 1.6430492035729749e-06, 'Kershbaum': 1.6430492035729749e-06, 'Sabol': 1.6430492035729749e-06, 'Volney': 1.6430492035729749e-06, 'Ludwick': 1.6430492035729749e-06, 'Evans': 9.036770619651361e-06, 'Kimbolton': 1.6430492035729749e-06, 'Rockhall': 1.6430492035729749e-06, 'App': 1.6430492035729749e-06, 'Book': 1.8073541239302723e-05, 'Voorhees': 1.6430492035729749e-06, 'Anderson': 1.1501344425010824e-05, 'entertained': 9.85829522143785e-06, 'Coulson': 1.6430492035729749e-06, 'Fairless': 1.6430492035729749e-06, 'Hills': 1.1501344425010824e-05, 'son-in-law': 4.107623008932437e-06, 'Glennon': 1.6430492035729749e-06, 'Brigantine': 1.6430492035729749e-06, 'Janssen': 4.107623008932437e-06, 'Lynn': 4.929147610718925e-06, 'Marella': 2.4645738053594624e-06, 'Orcutt': 2.4645738053594624e-06, 'Drexel': 9.036770619651361e-06, 'Eileen': 2.218116424823516e-05, 'Heinze': 1.6430492035729749e-06, 'entertaining': 1.0679819823224336e-05, 'Lehner': 1.6430492035729749e-06, 'Vienna': 1.889506584108921e-05, 'Ingo': 1.6430492035729749e-06, 'Dussa': 1.6430492035729749e-06, 'Dusseldorf': 3.2860984071459497e-06, 'Bietnar': 1.6430492035729749e-06, 'Haaek': 1.6430492035729749e-06, 'Brelin': 1.6430492035729749e-06, 'Hoaps': 1.6430492035729749e-06, 'Delray': 1.6430492035729749e-06, 'Anne': 3.532555787681896e-05, 'Clearwater': 1.6430492035729749e-06, 'Cmdr.': 1.6430492035729749e-06, 'Taylor': 1.8073541239302723e-05, 'USN.': 1.6430492035729749e-06, 'Greenwich': 2.300268885002165e-05, 'Easter': 9.85829522143785e-06, "latter's": 9.036770619651361e-06, 'Walbridge': 1.6430492035729749e-06, 'DeForest': 1.6430492035729749e-06, 'Emmert': 2.4645738053594624e-06, 'Newtown': 1.6430492035729749e-06, 'Ashman': 1.6430492035729749e-06, 'Pa.': 8.215246017864873e-06, 'Merner': 1.6430492035729749e-06, 'Bermuda': 8.215246017864873e-06, 'Godwin': 4.107623008932437e-06, 'Vieth': 3.2860984071459497e-06, 'Susan': 3.1217934867886523e-05, 'Wall': 1.8073541239302723e-05, 'Nell': 1.6430492035729749e-06, 'celebrated': 1.232286902679731e-05, 'February': 3.779013168217842e-05, 'graduated': 1.1501344425010824e-05, 'Louise': 4.929147610718925e-06, 'McGehee': 1.6430492035729749e-06, 'Wellesley': 3.2860984071459497e-06, 'Stella': 1.6430492035729749e-06, 'Hayward': 1.6430492035729749e-06, 'Tulane': 1.6430492035729749e-06, 'Epsilon': 1.6430492035729749e-06, 'fraternity': 5.750672212505412e-06, 'Majesties': 1.6430492035729749e-06, 'Queen': 1.8073541239302723e-05, 'Carnival': 6.5721968142918994e-06, 'Comus': 2.4645738053594624e-06, 'jointly': 6.5721968142918994e-06, 'Shrove': 1.6430492035729749e-06, 'ballroom': 6.5721968142918994e-06, 'downtown': 3.286098407145949e-05, 'Rex': 4.929147610718925e-06, 'hosts': 4.929147610718925e-06, 'Walkers': 1.6430492035729749e-06, "McConnell's": 1.6430492035729749e-06, 'debutante': 3.2860984071459497e-06, 'Lady': 2.7110311858954083e-05, 'feted': 2.4645738053594624e-06, 'hostess': 7.393721416078387e-06, 'Socola': 1.6430492035729749e-06, 'Waveland': 1.6430492035729749e-06, 'Vieux': 2.4645738053594624e-06, 'Carre': 2.4645738053594624e-06, 'restaurant': 3.1217934867886523e-05, 'Richmond': 1.0679819823224336e-05, 'honoree': 1.6430492035729749e-06, 'Dane': 2.4645738053594624e-06, 'Katherine': 5.750672212505412e-06, 'Vickery': 3.2860984071459497e-06, 'attends': 5.750672212505412e-06, 'Sweet': 1.6430492035729749e-06, 'Briar': 1.6430492035729749e-06, 'rejoin': 2.4645738053594624e-06, 'pl.': 2.4645738053594624e-06, 'Achaeans': 1.6430492035729749e-06, 'masquerade': 2.4645738053594624e-06, 'Margaret': 9.036770619651361e-06, 'Pierson': 2.4645738053594624e-06, 'Muncipal': 1.6430492035729749e-06, 'Auditorium': 5.750672212505412e-06, 'ladies': 2.300268885002165e-05, 'Misses': 1.6430492035729749e-06, 'Clayton': 2.300268885002165e-05, 'Nairne': 2.4645738053594624e-06, 'Eleanor': 9.036770619651361e-06, 'Eustis': 3.2860984071459497e-06, 'Irwin': 1.6430492035729749e-06, 'Leatherman': 1.6430492035729749e-06, 'Robinsonville': 1.6430492035729749e-06, 'Helene': 1.6430492035729749e-06, 'Rowley': 2.4645738053594624e-06, 'ablaze': 3.2860984071459497e-06, 'array': 9.85829522143785e-06, 'chic': 6.5721968142918994e-06, 'ballgowns': 1.6430492035729749e-06, 'worn': 1.889506584108921e-05, "maskers'": 1.6430492035729749e-06, 'dances': 1.8073541239302723e-05, 'queen': 1.7252016637516235e-05, 'chose': 3.1217934867886523e-05, 'slim': 9.036770619651361e-06, 'panels': 3.779013168217842e-05, 'tomato-red': 1.6430492035729749e-06, 'Jordan': 4.107623008932437e-06, 'taffeta': 2.4645738053594624e-06, 'frock': 2.4645738053594624e-06, 'fringed': 4.929147610718925e-06, 'tiers': 3.2860984071459497e-06, 'crimson': 7.393721416078387e-06, 'silk': 9.85829522143785e-06, 'slippers': 6.5721968142918994e-06, 'maids': 1.0679819823224336e-05, 'greenish': 2.4645738053594624e-06, 'Fenwick': 1.6430492035729749e-06, 'ashes': 5.750672212505412e-06, 'roses': 6.5721968142918994e-06, 'slipper': 3.2860984071459497e-06, 'Feringa': 1.6430492035729749e-06, "Achaeans'": 1.6430492035729749e-06, 'eggshell': 1.6430492035729749e-06, 'filmy': 1.6430492035729749e-06, 'dress': 5.504214831969465e-05, 'decolletage': 1.6430492035729749e-06, 'trimmed': 4.107623008932437e-06, 'edging': 4.929147610718925e-06, 'tulle': 1.6430492035729749e-06, "Reily's": 1.6430492035729749e-06, 'olive-green': 1.6430492035729749e-06, 'embroidered': 4.929147610718925e-06, 'bodice': 2.4645738053594624e-06, 'threads': 6.5721968142918994e-06, 'sequins': 1.6430492035729749e-06, 'beads': 3.2860984071459497e-06, 'cuts': 2.546726265538111e-05, 'lay-offs': 4.929147610718925e-06, '12:01': 2.4645738053594624e-06, 'A.M.': 1.1501344425010824e-05, 'Simpson': 4.929147610718925e-06, "railroad's": 2.4645738053594624e-06, 'drastic': 9.85829522143785e-06, 'decline': 2.6288787257167598e-05, 'freight': 2.0538115044662184e-05, 'loading': 9.85829522143785e-06, 'principally': 9.036770619651361e-06, 'necessitated': 9.85829522143785e-06, 'regrettable': 1.6430492035729749e-06, 'affect': 2.875336106252706e-05, 'employees': 5.4220623717908165e-05, 'Salary': 2.4645738053594624e-06, 'supervisors': 4.107623008932437e-06, 'unions': 2.3824213451808133e-05, '3,325': 1.6430492035729749e-06, 'class': 0.0001355515592947704, 'Sufficient': 1.6430492035729749e-06, 'furlough': 2.4645738053594624e-06, 'wages': 3.532555787681896e-05, 'furloughed': 1.6430492035729749e-06, 'thug': 1.6430492035729749e-06, 'struck': 4.929147610718924e-05, 'cab': 1.0679819823224336e-05, 'robbing': 2.4645738053594624e-06, '$18': 2.4645738053594624e-06, 'Mount': 1.3965918230370285e-05, 'Streets': 3.2860984071459497e-06, 'victim': 2.218116424823516e-05, 'Wiley': 5.750672212505412e-06, '38': 9.85829522143785e-06, '900': 3.2860984071459497e-06, 'robbery': 5.750672212505412e-06, 'attempted': 2.793183646074057e-05, 'bandit': 3.2860984071459497e-06, 'assailant': 2.4645738053594624e-06, 'automatic': 3.286098407145949e-05, 'Verstandig': 1.6430492035729749e-06, 'store': 5.997129593041358e-05, '2100': 3.2860984071459497e-06, 'Aiken': 1.6430492035729749e-06, 'Negroes': 4.929147610718924e-05, 'assaulted': 5.750672212505412e-06, '$150': 5.750672212505412e-06, 'register': 1.6430492035729746e-05, 'choking': 6.5721968142918994e-06, 'burned': 3.368250867324598e-05, 'seriously': 3.861165628396491e-05, 'damaged': 6.5721968142918994e-06, 'one-room': 3.2860984071459497e-06, 'Arundel': 4.929147610718925e-06, 'Darnell': 1.6430492035729749e-06, 'Somerville': 2.4645738053594624e-06, 'arrival': 1.97165904428757e-05, 'Annapolis': 6.5721968142918994e-06, 'burns': 1.3144393628583799e-05, 'Boy': 6.5721968142918994e-06, 'second-degree': 2.4645738053594624e-06, 'occurred': 5.586367292148114e-05, 'mile': 3.532555787681896e-05, 'south': 4.929147610718924e-05, 'Severna': 1.6430492035729749e-06, 'recording': 2.464573805359462e-05, 'mechanically': 4.107623008932437e-06, 'Jenkins': 8.215246017864873e-06, 'Ellwood': 1.6430492035729749e-06, 'long-time': 4.107623008932437e-06, 'Cites': 1.6430492035729749e-06, 'discrepancies': 4.929147610718925e-06, 'contained': 5.011300070897573e-05, 'memory': 6.243586973577305e-05, "Jenkins's": 1.6430492035729749e-06, 'hate': 3.532555787681896e-05, 'write': 8.708160778936766e-05, 'machine': 8.133093557686225e-05, 'permanent': 3.368250867324598e-05, 'Pullen': 4.107623008932437e-06, 'Commissioners': 4.929147610718925e-06, 'Zoning': 1.6430492035729749e-06, 'bodies': 5.3399099116121684e-05, 'suits': 2.1359639646448672e-05, 'misunderstandings': 1.6430492035729749e-06, 'notes': 4.518385309825681e-05, 'boards': 3.6968607080391934e-05, 'Bertorelli': 1.6430492035729749e-06, 'ambulance': 5.750672212505412e-06, 'Doctors': 3.2860984071459497e-06, 'partially': 2.1359639646448672e-05, 'paralyzed': 2.4645738053594624e-06, 'parked': 2.793183646074057e-05, 'barber': 3.2860984071459497e-06, '229': 2.4645738053594624e-06, 'summoned': 9.036770619651361e-06, 'Piraro': 1.6430492035729749e-06, 'deficiencies': 9.036770619651361e-06, 'snow': 4.2719279292897344e-05, 'corrected': 8.215246017864873e-06, 'Councilman': 4.929147610718925e-06, 'Schaefer': 4.107623008932437e-06, 'Fifth': 1.3965918230370285e-05, 'salting': 2.4645738053594624e-06, 'crews': 2.4645738053594624e-06, 'dispatched': 4.929147610718925e-06, 'storms': 5.750672212505412e-06, 'longer': 0.00015937577274657854, 'Werner': 5.750672212505412e-06, 'Conceding': 1.6430492035729749e-06, 'north': 5.175604991254871e-05, 'improvements': 1.6430492035729746e-05, 'slowly': 8.954618159472713e-05, 'Equipment': 3.2860984071459497e-06, 'snowfall': 2.4645738053594624e-06, 'halting': 1.6430492035729749e-06, 'operations': 6.572196814291899e-05, 'Sent': 2.4645738053594624e-06, 'manual': 5.750672212505412e-06, 'laborers': 5.750672212505412e-06, 'Work': 6.5721968142918994e-06, 'resumed': 1.97165904428757e-05, 'parking': 2.6288787257167598e-05, 'banned': 2.4645738053594624e-06, 'tires': 9.85829522143785e-06, 'chains': 9.036770619651361e-06, 'Admitting': 1.6430492035729749e-06, 'overlooked': 6.5721968142918994e-06, 'merchants': 1.4787442832156774e-05, 'survive': 2.793183646074057e-05, 'Recounting': 1.6430492035729749e-06, 'observations': 3.0396410266100035e-05, 'clearance': 4.107623008932437e-06, 'inefficient': 6.5721968142918994e-06, 'supplies': 3.779013168217842e-05, 'poorly': 9.85829522143785e-06, 'trained': 4.518385309825681e-05, 'plow': 9.85829522143785e-06, 'blades': 1.0679819823224336e-05, 'layer': 1.0679819823224336e-05, 'freezes': 1.6430492035729749e-06, '15-year-old': 1.6430492035729749e-06, 'murdered': 8.215246017864873e-06, 'Chesapeake': 4.107623008932437e-06, 'Bay-front': 1.6430492035729749e-06, 'Spring': 1.7252016637516235e-05, 'detention': 1.6430492035729749e-06, 'victims': 1.6430492035729746e-05, 'Malone': 1.6430492035729749e-06, 'Dresbach': 1.6430492035729749e-06, 'rifle': 4.929147610718924e-05, 'Capt.': 4.929147610718925e-06, 'Elmer': 5.750672212505412e-06, 'Hagner': 1.6430492035729749e-06, 'detectives': 1.3965918230370285e-05, 'Benjamin': 1.0679819823224336e-05, 'Michaelson': 1.6430492035729749e-06, 'remanding': 1.6430492035729749e-06, 'jurist': 3.2860984071459497e-06, 'Younger': 4.107623008932437e-06, 'Soon': 1.97165904428757e-05, '1-1/2-story': 1.6430492035729749e-06, 'brick': 1.5608967433943262e-05, 'Manor': 2.4645738053594624e-06, 'bay': 1.6430492035729746e-05, "Dresbach's": 2.4645738053594624e-06, 'first-floor': 1.6430492035729749e-06, 'bedroom': 4.354080389468383e-05, 'kitchen': 7.475873876257036e-05, 'shootings': 1.6430492035729749e-06, 'driven': 3.6147082478605446e-05, "mother's": 2.875336106252706e-05, 'broadcast': 1.3965918230370285e-05, 'brothers': 3.203945946967301e-05, 'natural': 0.00012569326407333258, 'Dresbachs': 1.6430492035729749e-06, 'Trooper': 1.6430492035729749e-06, 'Grzesiak': 1.6430492035729749e-06, 'Route': 9.036770619651361e-06, "Dresbachs'": 1.6430492035729749e-06, 'Edgewater': 2.4645738053594624e-06, 'Tawes': 2.4645738053594624e-06, 'Lloyd': 9.036770619651361e-06, 'Simpkins': 6.5721968142918994e-06, 'administrative': 4.107623008932437e-05, "Maryland's": 2.4645738053594624e-06, 'Finan': 1.6430492035729749e-06, 'Ferdinand': 2.4645738053594624e-06, 'Sybert': 1.6430492035729749e-06, 'judgeship': 1.6430492035729749e-06, 'swearing-in': 1.6430492035729749e-06, 'Somerset': 3.2860984071459497e-06, 'resident': 1.0679819823224336e-05, 'countian': 1.6430492035729749e-06, 'Agriculture': 9.85829522143785e-06, '1947': 1.232286902679731e-05, "university's": 4.929147610718925e-06, 'Delegates': 2.4645738053594624e-06, 'outset': 1.1501344425010824e-05, 'guiding': 9.036770619651361e-06, 'spirits': 3.532555787681896e-05, 'totaled': 6.5721968142918994e-06, '$77,389,000': 1.6430492035729749e-06, 'compared': 5.668519752326763e-05, 'Dodge': 4.929147610718925e-06, 'Corporation': 1.7252016637516235e-05, 'Nonresidential': 2.4645738053594624e-06, '$20,447,000': 1.6430492035729749e-06, '28': 1.8073541239302723e-05, '$47,101,000': 1.6430492035729749e-06, '$9,841,000': 1.6430492035729749e-06, 'cumulative': 1.0679819823224336e-05, 'amounted': 4.929147610718925e-06, '$634,517,000': 1.6430492035729749e-06, 'corresponding': 3.203945946967301e-05, 'ten-month': 1.6430492035729749e-06, '$253,355,000': 1.6430492035729749e-06, '$278,877,000': 1.6430492035729749e-06, '$102,285,000': 1.6430492035729749e-06, '33': 6.5721968142918994e-06, 'consists': 3.6147082478605446e-05, 'shelter': 5.750672212505412e-05, 'market': 0.00011829954265725419, 'enjoyed': 4.7648426903616267e-05, 'availability': 1.8073541239302723e-05, 'mortgage': 1.3965918230370285e-05, 'prosperity': 1.0679819823224336e-05, 'consumer': 2.9574885664313547e-05, 'encouraged': 2.3824213451808133e-05, 'apartment-building': 1.6430492035729749e-06, 'vary': 2.875336106252706e-05, 'choosing': 9.85829522143785e-06, 'Pantas': 2.4645738053594624e-06, 'hardware': 9.036770619651361e-06, 'manufacturing': 1.889506584108921e-05, 'seekers': 3.2860984071459497e-06, 'maintaining': 2.300268885002165e-05, 'Convenience': 2.4645738053594624e-06, 'Trouble-free': 1.6430492035729749e-06, 'long-life': 1.6430492035729749e-06, 'quality': 9.283228000187308e-05, 'components': 4.518385309825681e-05, 'increasingly': 3.532555787681896e-05, 'predicted': 1.5608967433943262e-05, 'Sixty-seven': 1.6430492035729749e-06, '165-unit': 1.6430492035729749e-06, 'Harbor': 1.5608967433943262e-05, 'View': 3.2860984071459497e-06, 'Apartments': 1.6430492035729749e-06, 'Cherry': 4.107623008932437e-06, 'Ultimately': 4.107623008932437e-06, 'comprise': 9.85829522143785e-06, 'two-story': 7.393721416078387e-06, 'three-story': 1.6430492035729749e-06, 'structures': 2.3824213451808133e-05, 'Various': 5.750672212505412e-06, 'terrace': 6.5721968142918994e-06, 'entrance': 4.6826902301829785e-05, 'stairs': 3.861165628396491e-05, 'balconies': 2.4645738053594624e-06, 'masonry': 4.929147610718925e-06, 'Heating': 1.6430492035729749e-06, 'gas-fired': 1.6430492035729749e-06, 'warm': 5.4220623717908165e-05, 'Johns-Manville': 1.6430492035729749e-06, 'Vital': 2.4645738053594624e-06, 'secrets': 1.7252016637516235e-05, "Britain's": 5.750672212505412e-06, 'submarine': 2.218116424823516e-05, 'Dreadnought': 5.750672212505412e-06, 'implication': 9.036770619651361e-06, "navy's": 4.107623008932437e-06, 'still-building': 1.6430492035729749e-06, 'sub': 4.929147610718925e-06, 'London-based': 1.6430492035729749e-06, 'soviet': 1.6430492035729749e-06, 'spy': 8.215246017864873e-06, 'ring': 3.368250867324598e-05, 'agents': 3.203945946967301e-05, 'testified': 9.85829522143785e-06, 'built': 8.379550938222171e-05, 'designs': 2.1359639646448672e-05, 'supplied': 3.0396410266100035e-05, 'killer': 1.8073541239302723e-05, 'hunter': 5.750672212505412e-06, 'subs': 2.4645738053594624e-06, 'hull': 9.036770619651361e-06, 'patterned': 5.750672212505412e-06, 'Nautilus': 2.4645738053594624e-06, 'derived': 3.286098407145949e-05, 'reactor': 6.5721968142918994e-06, 'Skipjack': 4.107623008932437e-06, 'Bow': 1.6430492035729749e-06, 'British': 9.7761427612592e-05, 'Gee': 4.107623008932437e-06, 'devoted': 4.1897754691110856e-05, 'friend': 0.00010351209982509741, 'Houghton': 4.107623008932437e-06, 'divorced': 7.393721416078387e-06, 'whisking': 1.6430492035729749e-06, 'strongrooms': 1.6430492035729749e-06, 'Lonsdale': 3.2860984071459497e-06, 'presumed': 1.0679819823224336e-05, 'Russian': 6.654349274470547e-05, 'Canadian': 6.5721968142918994e-06, 'passport': 5.750672212505412e-06, 'arrested': 1.6430492035729746e-05, 'roll': 2.546726265538111e-05, 'candid': 3.2860984071459497e-06, 'camera': 2.875336106252706e-05, 'anti-submarine': 3.2860984071459497e-06, 'wrapping': 5.750672212505412e-06, 'Flashed': 1.6430492035729749e-06, 'shadowy': 1.6430492035729749e-06, 'Kroger': 2.4645738053594624e-06, 'bookseller': 1.6430492035729749e-06, 'Joyce': 1.8073541239302723e-05, 'Krogers': 3.2860984071459497e-06, 'Lola': 3.2860984071459497e-06, 'suburban': 2.464573805359462e-05, 'cottage': 1.6430492035729746e-05, 'transmitter': 4.107623008932437e-06, 'buried': 1.5608967433943262e-05, 'dots': 9.85829522143785e-06, 'marks': 2.3824213451808133e-05, 'dot': 1.1501344425010824e-05, 'magnification': 9.036770619651361e-06, 'drawing': 3.1217934867886523e-05, 'page': 5.093452531076222e-05, 'manuscript': 5.750672212505412e-06, 'innocent': 3.1217934867886523e-05, 'bail': 6.5721968142918994e-06, 'Dunlop': 1.6430492035729749e-06, 'sorely': 3.2860984071459497e-06, 'widowed': 4.929147610718925e-06, 'maiden': 1.6430492035729749e-06, 'aunt': 7.393721416078387e-06, 'bedridden': 1.6430492035729749e-06, 'uncle': 1.4787442832156774e-05, '76': 4.929147610718925e-06, 'Refuses': 1.6430492035729749e-06, 'magistrate': 3.2860984071459497e-06, 'K.J.P.': 1.6430492035729749e-06, 'Baraclough': 1.6430492035729749e-06, 'Bailey': 3.2860984071459497e-06, 'criminal': 1.7252016637516235e-05, 'Klaus': 1.6430492035729749e-06, 'Fuchs': 4.107623008932437e-06, 'naturalized': 3.2860984071459497e-06, 'German': 7.065111575363791e-05, 'Russia': 5.997129593041358e-05, '1950s': 3.2860984071459497e-06, 'sentenced': 7.393721416078387e-06, 'Fourteen': 3.2860984071459497e-06, 'altered': 1.889506584108921e-05, '1960s': 1.6430492035729749e-06, 'behavior': 7.88663617715028e-05, 'promptly': 2.1359639646448672e-05, 'communist': 4.929147610718925e-06, '$29,000': 1.6430492035729749e-06, 'currency': 6.5721968142918994e-06, 'Mervin': 1.6430492035729749e-06, 'Griffith-Jones': 1.6430492035729749e-06, "general's": 2.4645738053594624e-06, 'asserted': 1.3965918230370285e-05, 'paymaster': 1.6430492035729749e-06, 'selling': 2.546726265538111e-05, 'highest': 5.175604991254871e-05, 'undersea': 3.2860984071459497e-06, 'grimly': 9.85829522143785e-06, 'adviser': 5.750672212505412e-06, 'underwater': 1.1501344425010824e-05, 'warfare': 3.6147082478605446e-05, 'Symonds': 1.6430492035729749e-06, 'drawings': 1.8073541239302723e-05, 'ship': 6.818654194827845e-05, 'reproduced': 6.5721968142918994e-06, 'undeveloped': 4.107623008932437e-06, 'Vic': 4.107623008932437e-06, 'potential': 5.586367292148114e-05, 'cleared': 1.97165904428757e-05, 'watched': 6.736501734649196e-05, 'broken': 5.2577574514335196e-05, 'untold': 2.4645738053594624e-06, 'lawyers': 1.97165904428757e-05, 'clients': 9.036770619651361e-06, 'Almost': 2.218116424823516e-05, 'reveal': 2.546726265538111e-05, 'designing': 8.215246017864873e-06, 'nowhere': 2.0538115044662184e-05, 'sharing': 1.889506584108921e-05, 'blabbed': 1.6430492035729749e-06, 'propelling': 1.6430492035729749e-06, 'machinery': 5.011300070897573e-05, 'design': 9.036770619651362e-05, 'generation': 4.436232849647032e-05, 'advanced': 4.2719279292897344e-05, "Navy's": 7.393721416078387e-06, 'Much': 3.1217934867886523e-05, "Skipjack's": 1.6430492035729749e-06, 'August': 4.354080389468383e-05, 'teardrop': 1.6430492035729749e-06, 'potent': 8.215246017864873e-06, 'Polaris': 9.036770619651361e-06, 'missile': 3.861165628396491e-05, 'atom': 3.1217934867886523e-05, 'cooled': 1.4787442832156774e-05, 'reactors': 5.750672212505412e-06, 'branch': 2.3824213451808133e-05, 'Westinghouse': 3.2860984071459497e-06, 'Electric': 1.0679819823224336e-05, 'Thru': 1.6430492035729749e-06, 'steam': 1.3965918230370285e-05, 'turbines': 1.6430492035729749e-06, 'greatly': 5.175604991254871e-05, 'complexity': 1.1501344425010824e-05, 'propeller': 2.4645738053594624e-06, 'navy': 5.750672212505412e-06, 'Albacore': 1.6430492035729749e-06, 'fastest': 6.5721968142918994e-06, 'Reputedly': 1.6430492035729749e-06, 'outrun': 4.107623008932437e-06, 'destroyers': 3.2860984071459497e-06, 'reputedly': 3.2860984071459497e-06, '70,000': 4.107623008932437e-06, 'refueling': 2.4645738053594624e-06, 'hunter-killer': 4.929147610718925e-06, 'ships': 3.450403327503247e-05, 'gear': 2.1359639646448672e-05, 'torpedoes': 1.6430492035729749e-06, "Gee's": 1.6430492035729749e-06, 'purse': 1.0679819823224336e-05, 'Interested': 1.6430492035729749e-06, 'detector': 3.2860984071459497e-06, 'ASDIC': 1.6430492035729749e-06, 'detecting': 5.750672212505412e-06, 'Range': 3.2860984071459497e-06, 'detail': 5.9149771328627094e-05, 'Designs': 3.2860984071459497e-06, 'radiomen': 1.6430492035729749e-06, 'nabbed': 1.6430492035729749e-06, 'calling': 3.6968607080391934e-05, 'signals': 2.464573805359462e-05, 'wavelengths': 5.750672212505412e-06, 'codes': 1.4787442832156774e-05, 'hidden': 1.6430492035729746e-05, 'cigaret': 1.6430492035729749e-06, 'lighters': 1.6430492035729749e-06, "Lonsdale's": 1.6430492035729749e-06, "Krogers'": 1.6430492035729749e-06, 'fastened': 1.232286902679731e-05, 'lid': 1.6430492035729746e-05, 'Oddly': 3.2860984071459497e-06, 'indictment': 1.0679819823224336e-05, 'narcotics': 6.5721968142918994e-06, 'rumor': 4.107623008932437e-06, 'malice': 2.4645738053594624e-06, 'enmity': 1.6430492035729749e-06, 'Perry': 7.393721416078387e-06, 'Cooperman': 2.4645738053594624e-06, 'Teller': 4.107623008932437e-06, 'indictments': 2.4645738053594624e-06, 'narcotic': 2.4645738053594624e-06, 'Sokol': 4.107623008932437e-06, 'peddlers': 2.4645738053594624e-06, 'racket': 4.929147610718925e-06, 'posed': 6.5721968142918994e-06, 'addicts': 4.107623008932437e-06, 'sometimes': 0.00013390851009119744, 'rivalries': 3.2860984071459497e-06, 'aiming': 4.929147610718925e-06, 'criminals': 4.929147610718925e-06, 'jealousies': 1.6430492035729749e-06, 'grievances': 3.2860984071459497e-06, 'creditable': 4.107623008932437e-06, 'mentions': 6.5721968142918994e-06, 'compensations': 3.2860984071459497e-06, 'nominated': 7.393721416078387e-06, 'Tree': 3.2860984071459497e-06, 'medal': 3.2860984071459497e-06, 'comments': 2.464573805359462e-05, 'Connelly': 1.6430492035729749e-06, "clients'": 1.6430492035729749e-06, '$4,700': 1.6430492035729749e-06, 'heroin': 2.4645738053594624e-06, 'convicted': 1.232286902679731e-05, 'peddler': 4.929147610718925e-06, 'Otis': 3.2860984071459497e-06, 'Sears': 2.4645738053594624e-06, '6934': 1.6430492035729749e-06, 'Indiana': 1.1501344425010824e-05, 'Av.': 8.215246017864873e-06, '$800': 5.750672212505412e-06, 'witness': 2.3824213451808133e-05, 'Moses': 8.215246017864873e-06, 'Winston': 3.368250867324598e-05, 'Mardis': 1.6430492035729749e-06, '5835': 1.6430492035729749e-06, 'agent': 3.6968607080391934e-05, 'bondsman': 1.6430492035729749e-06, 'adjourned': 2.4645738053594624e-06, 'Jeremiah': 3.2860984071459497e-06, 'Hope': 1.1501344425010824e-05, 'Pullings': 2.4645738053594624e-06, 'Jessy': 1.6430492035729749e-06, 'Maroy': 1.6430492035729749e-06, 'indicted': 2.4645738053594624e-06, 'Buaford': 1.6430492035729749e-06, '7026': 1.6430492035729749e-06, 'Stewart': 5.750672212505412e-06, 'CTA': 6.5721968142918994e-06, 'robbed': 9.036770619651361e-06, 'youths': 9.036770619651361e-06, '51st': 2.4645738053594624e-06, 'Way': 1.3965918230370285e-05, "physician's": 1.6430492035729749e-06, 'eyebrow': 4.107623008932437e-06, 'bag': 3.532555787681896e-05, '$40': 3.2860984071459497e-06, '$214': 1.6430492035729749e-06, 'paycheck': 2.4645738053594624e-06, 'Policemen': 1.6430492035729749e-06, 'Morgan': 5.997129593041358e-05, 'Wabash': 4.107623008932437e-06, 'boarded': 4.929147610718925e-06, 'bound': 3.532555787681896e-05, 'express': 3.286098407145949e-05, 'Dunbar': 4.107623008932437e-06, 'Vocational': 7.393721416078387e-06, '30th': 4.929147610718925e-06, 'skylarking': 1.6430492035729749e-06, 'supervisor': 3.2860984071459497e-06, 'youth': 6.079282053220007e-05, 'accosted': 2.4645738053594624e-06, 'ensued': 4.929147610718925e-06, 'fled': 2.3824213451808133e-05, 'Blanche': 2.0538115044662184e-05, 'Dunkel': 2.4645738053594624e-06, 'reformatory': 2.4645738053594624e-06, 'murder': 5.997129593041358e-05, '1935': 9.036770619651361e-06, 'Lang': 1.6430492035729749e-06, 'appealed': 1.1501344425010824e-05, 'pardon': 5.750672212505412e-06, 'Bookwalter': 1.6430492035729749e-06, 'Carpentier': 1.6430492035729749e-06, 'Stratton': 3.2860984071459497e-06, 'commuted': 2.4645738053594624e-06, 'slaying': 3.2860984071459497e-06, 'lover': 1.3965918230370285e-05, '1934': 5.750672212505412e-06, 'relationship': 7.229416495721089e-05, 'wealthy': 1.0679819823224336e-05, 'Evanston': 6.5721968142918994e-06, 'forbidden': 1.3144393628583799e-05, 'chase': 9.036770619651361e-06, 'icy': 1.0679819823224336e-05, 'Wilmette': 4.107623008932437e-06, 'Stickney': 4.929147610718925e-06, '3211': 2.4645738053594624e-06, 'reckless': 8.215246017864873e-06, 'Corcoran': 2.4645738053594624e-06, 'salesman': 1.0679819823224336e-05, 'Plee-Zing': 1.6430492035729749e-06, '2544': 1.6430492035729749e-06, 'brokerage': 2.4645738053594624e-06, 'Patrolman': 5.750672212505412e-06, 'Simms': 1.4787442832156774e-05, 'pursuit': 1.3144393628583799e-05, 'speeding': 4.107623008932437e-06, 'Jenks': 5.750672212505412e-06, 'skidded': 2.4645738053594624e-06, 'sped': 8.215246017864873e-06, 'spun': 1.3965918230370285e-05, 'Prairie': 1.1501344425010824e-05, 'Johns': 5.750672212505412e-06, '21-year-old': 1.6430492035729749e-06, 'Pohl': 9.85829522143785e-06, 'bludgeon': 3.2860984071459497e-06, 'Anna': 6.5721968142918994e-06, 'Hengesbach': 8.215246017864873e-06, 'visible': 2.875336106252706e-05, 'emotion': 2.875336106252706e-05, 'cell': 5.3399099116121684e-05, 'court-appointed': 1.6430492035729749e-06, 'Stepson': 1.6430492035729749e-06, 'vindicated': 3.2860984071459497e-06, "woman's": 1.4787442832156774e-05, 'stepson': 2.4645738053594624e-06, '54': 3.2860984071459497e-06, 'reach': 8.708160778936766e-05, 'cloud': 2.1359639646448672e-05, 'neighbor': 1.1501344425010824e-05, 'pleased': 3.450403327503247e-05, 'suspicion': 2.218116424823516e-05, 'removed': 6.243586973577305e-05, 'Still': 4.2719279292897344e-05, "else's": 8.215246017864873e-06, 'misfortune': 9.036770619651361e-06, 'Lives': 1.6430492035729749e-06, 'rebuild': 4.929147610718925e-06, 'settled': 5.668519752326763e-05, 'grandfather': 1.0679819823224336e-05, 'Westphalia': 2.4645738053594624e-06, 'southwest': 4.107623008932437e-06, 'Ledge': 2.4645738053594624e-06, 'barn': 2.464573805359462e-05, 'release': 3.0396410266100035e-05, 'arson': 2.4645738053594624e-06, 'killing': 1.97165904428757e-05, 'confession': 1.3965918230370285e-05, 'retracted': 3.2860984071459497e-06, 'Charges': 1.6430492035729749e-06, 'Prosecutor': 5.750672212505412e-06, 'Fred': 2.300268885002165e-05, 'Cash': 3.2860984071459497e-06, 'sentencing': 1.6430492035729749e-06, 'motion': 4.518385309825681e-05, 'Locked': 2.4645738053594624e-06, '4:05': 1.6430492035729749e-06, '13-1/2': 1.6430492035729749e-06, 'deliberation': 2.4645738053594624e-06, 'locked': 2.3824213451808133e-05, 'overnight': 1.3965918230370285e-05, 'canvassed': 1.6430492035729749e-06, 'foreman': 4.107623008932437e-06, 'Olive': 1.6430492035729749e-06, 'Heideman': 1.6430492035729749e-06, 'Elsie': 4.107623008932437e-06, "Pohl's": 3.2860984071459497e-06, 'valid': 1.889506584108921e-05, 'definition': 2.875336106252706e-05, 'packed': 1.6430492035729746e-05, 'Sterling': 4.929147610718925e-06, 'Township': 4.107623008932437e-06, 'surviving': 1.1501344425010824e-05, 'died': 7.14726403554244e-05, 'aftermath': 4.107623008932437e-06, 'homeowners': 2.4645738053594624e-06, 'hard-hit': 1.6430492035729749e-06, 'Kowalski': 1.5608967433943262e-05, '34220': 1.6430492035729749e-06, 'Viceroy': 1.6430492035729749e-06, 'Holy': 2.7110311858954083e-05, 'bottled': 3.2860984071459497e-06, 'Pankowski': 2.4645738053594624e-06, 'adjoining': 1.0679819823224336e-05, 'suburb': 1.1501344425010824e-05, 'Services': 9.85829522143785e-06, 'Funeral': 6.5721968142918994e-06, 'Christine': 2.4645738053594624e-06, "Anne's": 4.107623008932437e-06, '31978': 1.6430492035729749e-06, 'Mound': 3.2860984071459497e-06, 'Mt.': 4.929147610718925e-06, 'Olivet': 1.6430492035729749e-06, 'Cemetery': 4.107623008932437e-06, 'rested': 1.4787442832156774e-05, 'caskets': 1.6430492035729749e-06, 'Lyle': 1.6430492035729749e-06, 'Elliott': 4.929147610718925e-06, '31730': 1.6430492035729749e-06, '61': 4.107623008932437e-06, 'fueled': 1.6430492035729749e-06, 'cook': 2.0538115044662184e-05, 'stove': 1.3144393628583799e-05, "grandmother's": 3.2860984071459497e-06, 'upstairs': 2.300268885002165e-05, '2274': 1.6430492035729749e-06, 'Eight': 9.85829522143785e-06, 'Mile': 5.750672212505412e-06, 'Road': 1.6430492035729746e-05, 'candle': 1.4787442832156774e-05, 'Cornell': 4.929147610718925e-06, 'fumes': 4.929147610718925e-06, 'ignited': 1.6430492035729749e-06, 'girls': 0.00011501344425010824, 'lacked': 1.6430492035729746e-05, 'electricity': 2.218116424823516e-05, "Christine's": 1.6430492035729749e-06, 'twin': 6.5721968142918994e-06, 'Darlene': 1.6430492035729749e-06, 'escaped': 1.5608967433943262e-05, 'Vicky': 3.2860984071459497e-06, 'Dennis': 3.2860984071459497e-06, 'Bernardine': 1.6430492035729749e-06, 'Mother': 2.1359639646448672e-05, 'roofer': 1.6430492035729749e-06, 'seldom': 2.793183646074057e-05, 'arrears': 5.750672212505412e-06, 'split-level': 1.6430492035729749e-06, 'tragedy': 3.94331808857514e-05, 'funeral': 2.218116424823516e-05, 'A135': 1.6430492035729749e-06, 'Neighbor': 1.6430492035729749e-06, 'Sidney': 8.215246017864873e-06, '2269': 1.6430492035729749e-06, 'Serra': 1.6430492035729749e-06, 'supplying': 1.1501344425010824e-05, 'meals': 2.218116424823516e-05, "Kowalski's": 1.6430492035729749e-06, 'sister-in-law': 2.4645738053594624e-06, '22111': 1.6430492035729749e-06, '2731': 1.6430492035729749e-06, 'Pall': 1.6430492035729749e-06, 'Mall': 2.4645738053594624e-06, '$135': 4.107623008932437e-06, 'collected': 3.6147082478605446e-05, '$400': 3.2860984071459497e-06, 'Tareytown': 1.6430492035729749e-06, 'Homeowners': 1.6430492035729749e-06, 'announcing': 6.5721968142918994e-06, 'door-to-door': 1.6430492035729749e-06, 'subdivision': 7.393721416078387e-06, 'Students': 8.215246017864873e-06, 'canvass': 3.2860984071459497e-06, '480': 2.4645738053594624e-06, 'northeast': 5.750672212505412e-06, 'Dequindre': 2.4645738053594624e-06, 'mailed': 1.3965918230370285e-05, '553': 1.6430492035729749e-06, 'Village': 2.1359639646448672e-05, '$25': 3.2860984071459497e-06, 'Fuhrmann': 1.6430492035729749e-06, '5155': 1.6430492035729749e-06, 'Principal': 4.107623008932437e-06, 'Pohly': 2.4645738053594624e-06, 'collection': 6.900806655006494e-05, 'revealed': 3.286098407145949e-05, 'Y-Teen': 1.6430492035729749e-06, 'surpluses': 4.107623008932437e-06, 'Funds': 4.929147610718925e-06, 'Student': 1.889506584108921e-05, 'proceeds': 1.232286902679731e-05, "Fuhrmann's": 1.6430492035729749e-06, '770': 2.4645738053594624e-06, "Furhmann's": 1.6430492035729749e-06, 'faculty': 6.079282053220007e-05, 'spontaneous': 1.4787442832156774e-05, 'fondness': 4.107623008932437e-06, 'sympathy': 2.875336106252706e-05, 'Line': 1.3965918230370285e-05, '3505o': 1.6430492035729749e-06, 'Expresses': 1.6430492035729749e-06, 'spoken': 3.0396410266100035e-05, 'properly': 4.436232849647032e-05, 'alert': 2.793183646074057e-05, '10-year-old': 4.107623008932437e-06, 'patrol': 1.7252016637516235e-05, 'conviction': 4.1897754691110856e-05, 'youthful': 1.0679819823224336e-05, 'motorist': 2.4645738053594624e-06, 'Kimmell': 4.107623008932437e-06, 'McClellan': 1.1501344425010824e-05, 'Sisk': 2.4645738053594624e-06, '9230': 1.6430492035729749e-06, 'Vernor': 1.6430492035729749e-06, 'grader': 2.4645738053594624e-06, 'Scripps': 2.4645738053594624e-06, 'Belvidere': 2.4645738053594624e-06, 'Kercheval': 1.6430492035729749e-06, 'belatedly': 1.6430492035729749e-06, 'crosswalk': 1.6430492035729749e-06, 'Gets': 1.6430492035729749e-06, 'safely': 1.1501344425010824e-05, 'approaching': 2.218116424823516e-05, 'narrowly': 5.750672212505412e-06, 'Commandeering': 1.6430492035729749e-06, 'pursued': 1.232286902679731e-05, 'fleeing': 9.036770619651361e-06, 'Returning': 3.2860984071459497e-06, 'Sarkees': 2.4645738053594624e-06, '2433': 1.6430492035729749e-06, 'Given': 4.929147610718925e-06, 'Traffic': 7.393721416078387e-06, 'Murphy': 6.5721968142918994e-06, 'no-driving': 1.6430492035729749e-06, 'Correction': 2.4645738053594624e-06, 'showdown': 4.107623008932437e-06, 'Help': 7.393721416078387e-06, 'Vientiane': 6.5721968142918994e-06, 'Laotian': 4.107623008932437e-06, 'offensive': 6.5721968142918994e-06, 'southeast': 9.036770619651361e-06, 'truce': 4.929147610718925e-06, 'reconvened': 1.6430492035729749e-06, 'Delhi': 4.929147610718925e-06, 'verify': 4.929147610718925e-06, '14-power': 1.6430492035729749e-06, 'Plea': 2.4645738053594624e-06, 'Tiao': 1.6430492035729749e-06, 'Sopsaisana': 1.6430492035729749e-06, 'thinking': 0.00011583496885189472, 'troops': 4.354080389468383e-05, 'worsens': 1.6430492035729749e-06, 'full-fledged': 2.4645738053594624e-06, 'note': 8.790313239115415e-05, 'Ambassador': 1.1501344425010824e-05, 'Winthrop': 3.2860984071459497e-06, 'Heavy': 3.2860984071459497e-06, 'minister': 3.861165628396491e-05, 'describing': 1.4787442832156774e-05, 'appeal': 4.8469951505402755e-05, '60,000': 3.2860984071459497e-06, 'Vietnamese': 5.750672212505412e-06, 'Thakhek': 1.6430492035729749e-06, 'southern-central': 1.6430492035729749e-06, 'confirmation': 6.5721968142918994e-06, 'massive': 2.793183646074057e-05, 'assaults': 4.107623008932437e-06, 'sources': 6.818654194827845e-05, 'claims': 5.4220623717908165e-05, 'exaggerated': 1.1501344425010824e-05, 'Havana': 1.3144393628583799e-05, 'Cubans': 4.929147610718925e-06, 'executed': 1.232286902679731e-05, 'firing': 2.0538115044662184e-05, 'squads': 2.4645738053594624e-06, 'tribunals': 4.107623008932437e-06, 'decreeing': 1.6430492035729749e-06, 'captured': 1.4787442832156774e-05, 'suspected': 1.8073541239302723e-05, 'collaborators': 4.107623008932437e-06, 'McNair': 3.2860984071459497e-06, 'executions': 3.2860984071459497e-06, 'dawn': 2.1359639646448672e-05, 'revolutionary': 1.7252016637516235e-05, 'tribunal': 4.929147610718925e-06, 'Pinar': 2.4645738053594624e-06, 'Del': 9.036770619651361e-06, 'Rio': 4.107623008932437e-06, 'plot': 3.0396410266100035e-05, 'Seattle': 6.5721968142918994e-06, 'ex-marine': 1.6430492035729749e-06, 'businessman': 8.215246017864873e-06, 'condemned': 1.6430492035729746e-05, 'smuggling': 1.6430492035729749e-06, 'rebels': 1.0679819823224336e-05, 'commander': 2.0538115044662184e-05, 'Legion': 4.929147610718925e-06, 'disbanded': 2.4645738053594624e-06, 'Fidel': 6.5721968142918994e-06, "Castro's": 4.929147610718925e-06, "Anderson's": 4.107623008932437e-06, 'seized': 2.0538115044662184e-05, 'boatload': 1.6430492035729749e-06, 'rifles': 1.889506584108921e-05, 'Report': 1.8073541239302723e-05, 'roundup': 3.2860984071459497e-06, 'Raymont': 1.6430492035729749e-06, 'Berrellez': 1.6430492035729749e-06, 'Associated': 4.107623008932437e-06, 'swept': 2.875336106252706e-05, 'dragnet': 1.6430492035729749e-06, 'auditorium': 7.393721416078387e-06, 'converted': 1.7252016637516235e-05, 'makeshift': 5.750672212505412e-06, 'jails': 3.2860984071459497e-06, 'Roman': 4.8469951505402755e-05, 'priests': 1.3965918230370285e-05, 'concentration': 3.94331808857514e-05, 'Siberia': 5.750672212505412e-06, 'prisoners': 1.6430492035729746e-05, 'Kegham': 2.4645738053594624e-06, 'pseudynom': 1.6430492035729749e-06, 'Bucharest': 1.6430492035729749e-06, 'Armenian': 1.6430492035729749e-06, 'Revolutionary': 1.6430492035729749e-06, 'ARF': 1.6430492035729749e-06, 'Today': 3.203945946967301e-05, 'Emory': 1.232286902679731e-05, "University's": 4.929147610718925e-06, 'Trustees': 9.85829522143785e-06, 'by-laws': 2.4645738053594624e-06, '33-man': 1.6430492035729749e-06, 'taxing': 7.393721416078387e-06, 'roadblock': 3.2860984071459497e-06, 'tax-exempt': 5.750672212505412e-06, 'institutions': 7.968788637328927e-05, 'segregated': 1.3144393628583799e-05, 'standards': 5.997129593041358e-05, 'institution': 3.203945946967301e-05, 'grade': 2.9574885664313547e-05, 'tax-exemption': 2.4645738053594624e-06, 'privileges': 9.036770619651361e-06, 'conforms': 4.929147610718925e-06, 'aforementioned': 2.4645738053594624e-06, 'statutory': 1.1501344425010824e-05, 'provisions': 3.286098407145949e-05, 'obstacles': 6.5721968142918994e-06, 'desegregation': 2.875336106252706e-05, 'intend': 1.3144393628583799e-05, 'exempt': 4.929147610718925e-06, 'taxation': 8.215246017864873e-06, 'criteria': 9.85829522143785e-06, 'endowments': 4.107623008932437e-06, 'colored': 2.464573805359462e-05, 'integrated': 9.85829522143785e-06, 'challenged': 8.215246017864873e-06, 'affiliated': 6.5721968142918994e-06, 'Urged': 1.6430492035729749e-06, 'newspaper': 5.175604991254871e-05, 'Wheel': 2.4645738053594624e-06, "trustees'": 1.6430492035729749e-06, 'commitment': 1.1501344425010824e-05, 'excellence': 1.3144393628583799e-05, 'Teaching': 5.750672212505412e-06, 'paramount': 7.393721416078387e-06, 'generous': 2.1359639646448672e-05, 'recognize': 5.175604991254871e-05, 'obligation': 1.3965918230370285e-05, 'promote': 2.7110311858954083e-05, 'creed': 5.750672212505412e-06, 'Insofar': 2.4645738053594624e-06, 'governing': 1.8073541239302723e-05, 'documents': 1.3965918230370285e-05, 'applications': 2.0538115044662184e-05, 'prospective': 1.8073541239302723e-05, 'irrespective': 3.2860984071459497e-06, 'Corporate': 1.6430492035729749e-06, 'existence': 8.790313239115415e-05, 'derives': 8.215246017864873e-06, 'corporate': 1.5608967433943262e-05, 'jeopardizing': 1.6430492035729749e-06, 'desiring': 4.107623008932437e-06, 'intellectual': 5.504214831969465e-05, 'moral': 0.00011501344425010824, 'fulfillment': 1.0679819823224336e-05, 'mission': 5.175604991254871e-05, 'riding': 3.6147082478605446e-05, 'slid': 2.0538115044662184e-05, 'pole': 1.1501344425010824e-05, 'Waddell': 1.3144393628583799e-05, 'NE': 4.929147610718925e-06, '1688': 1.6430492035729749e-06, 'Knoll': 1.6430492035729749e-06, 'Cir.': 1.6430492035729749e-06, 'Hammons': 1.6430492035729749e-06, 'evidently': 1.889506584108921e-05, 'rain-slick': 1.6430492035729749e-06, 'occupants': 8.215246017864873e-06, 'Willard': 4.107623008932437e-06, 'Olvey': 1.6430492035729749e-06, '963': 1.6430492035729749e-06, 'Ponce': 1.6430492035729749e-06, 'Leon': 4.929147610718925e-06, 'Coleman': 2.4645738053594624e-06, '704': 1.6430492035729749e-06, 'SE': 1.6430492035729749e-06, 'lacerations': 2.4645738053594624e-06, 'bruises': 5.750672212505412e-06, 'renewed': 1.4787442832156774e-05, 'picketing': 2.4645738053594624e-06, 'stand-ins': 3.2860984071459497e-06, 'first-run': 1.6430492035729749e-06, 'theaters': 9.85829522143785e-06, 'Appeal': 4.929147610718925e-06, 'Human': 4.929147610718925e-06, 'Rights': 7.393721416078387e-06, 'identically': 1.6430492035729749e-06, 'worded': 4.107623008932437e-06, 'Downtown': 2.4645738053594624e-06, 'art': 0.0001511605267287137, 'contacted': 4.107623008932437e-06, 'COAHR': 4.929147610718925e-06, 'Gather': 2.4645738053594624e-06, 'eve': 4.929147610718925e-06, 'operators': 1.3965918230370285e-05, 'likelihood': 9.036770619651361e-06, 'three-day': 2.4645738053594624e-06, 'sporadic': 6.5721968142918994e-06, 'negotiate': 9.036770619651361e-06, 'Black': 3.94331808857514e-05, "Friday's": 2.4645738053594624e-06, 'inability': 1.3965918230370285e-05, 'indifference': 1.4787442832156774e-05, 'integrate': 6.5721968142918994e-06, 'pledged': 4.929147610718925e-06, 'nonviolent': 1.6430492035729749e-06, 'extensive': 3.450403327503247e-05, 'presence': 6.243586973577305e-05, 'picket': 8.215246017864873e-06, 'profits': 1.8073541239302723e-05, 'uptown': 4.929147610718925e-06, 'Buckhead': 1.6430492035729749e-06, 'Killingsworth': 4.107623008932437e-06, '72': 9.036770619651361e-06, '357': 1.6430492035729749e-06, 'Venable': 1.6430492035729749e-06, 'Kililngsworth': 2.4645738053594624e-06, 'S': 1.889506584108921e-05, 'W': 4.107623008932437e-06, 'Cafeteria': 1.6430492035729749e-06, 'Pittsboro': 1.6430492035729749e-06, 'Survivors': 4.929147610718925e-06, 'sisters': 1.0679819823224336e-05, 'Bessie': 1.6430492035729749e-06, 'Bloom': 1.6430492035729749e-06, 'Gettysburg': 2.4645738053594624e-06, '68': 5.750672212505412e-06, 'Marietta': 2.4645738053594624e-06, 'NW': 4.107623008932437e-06, 'Apartment': 2.4645738053594624e-06, '101b': 1.6430492035729749e-06, 'painter': 1.8073541239302723e-05, 'Oakland': 1.6430492035729749e-06, "Blanchard's": 2.4645738053594624e-06, 'Hearn': 1.6430492035729749e-06, 'officiating': 1.6430492035729749e-06, 'Emma': 9.036770619651361e-06, 'Odom': 1.6430492035729749e-06, 'Fergeson': 1.6430492035729749e-06, 'Tenn.': 1.6430492035729749e-06, 'daughters': 1.232286902679731e-05, 'Stoll': 1.6430492035729749e-06, 'Nancy': 4.929147610718925e-06, 'Greenville': 3.2860984071459497e-06, 'S.C.': 2.4645738053594624e-06, 'Little': 3.6147082478605446e-05, 'Wansley': 1.6430492035729749e-06, 'Wallace': 5.750672212505412e-06, 'Wilmington': 5.750672212505412e-06, 'N.C.': 7.393721416078387e-06, '24-year-old': 1.6430492035729749e-06, 'rock': 4.518385309825681e-05, 'assaulting': 1.6430492035729749e-06, 'subdue': 2.4645738053594624e-06, 'Patrolmen': 1.6430492035729749e-06, 'Slate': 4.929147610718925e-06, 'Crawford': 3.2860984071459497e-06, 'Ronald': 4.929147610718925e-06, '1671': 1.6430492035729749e-06, 'Nakoma': 1.6430492035729749e-06, '511': 1.6430492035729749e-06, '11-month-old': 1.6430492035729749e-06, 'ripped': 5.750672212505412e-06, 'latch': 4.929147610718925e-06, 'scratching': 9.85829522143785e-06, 'melee': 3.2860984071459497e-06, 'scratches': 5.750672212505412e-06, 'violent': 2.7110311858954083e-05, 'attacked': 2.1359639646448672e-05, 'subdued': 6.5721968142918994e-06, 'uniforms': 1.232286902679731e-05, 'counts': 1.232286902679731e-05, 'assault': 1.3144393628583799e-05, 'battery': 1.3144393628583799e-05, 'resisting': 3.2860984071459497e-06, 'disturbance': 9.036770619651361e-06, 'cursing': 6.5721968142918994e-06, '5,000': 6.5721968142918994e-06, 'desk': 5.4220623717908165e-05, 'guest': 2.875336106252706e-05, 'Hall': 3.779013168217842e-05, 'disability': 4.929147610718925e-06, 'entries': 1.4787442832156774e-05, 'ranging': 2.546726265538111e-05, 'transfers': 9.85829522143785e-06, 'employments': 1.6430492035729749e-06, 'pensions': 6.5721968142918994e-06, 'wistfully': 4.107623008932437e-06, 'tribute': 2.0538115044662184e-05, 'intensifying': 2.4645738053594624e-06, 'ant': 4.929147610718925e-06, 'eradication': 3.2860984071459497e-06, 'fast-spreading': 1.6430492035729749e-06, 'pest': 4.107623008932437e-06, 'Troup': 2.4645738053594624e-06, 'Pierce': 5.750672212505412e-06, 'Bryan': 1.0679819823224336e-05, 'Bulloch': 2.4645738053594624e-06, 'treat': 1.97165904428757e-05, '132,000': 1.6430492035729749e-06, 'acres': 3.532555787681896e-05, 'infested': 1.6430492035729749e-06, 'Blasingame': 3.2860984071459497e-06, 'entomologist': 1.6430492035729749e-06, 'Low-flying': 1.6430492035729749e-06, 'planes': 2.0538115044662184e-05, 'granular-type': 1.6430492035729749e-06, 'chemical': 4.7648426903616267e-05, 'heptachlor': 1.6430492035729749e-06, '30,000': 4.929147610718925e-06, '37,000': 1.6430492035729749e-06, '65,000': 1.6430492035729749e-06, 'Bibb': 1.6430492035729749e-06, '37,679': 1.6430492035729749e-06, 'treating': 9.85829522143785e-06, '20,000': 4.929147610718925e-06, 'Macon': 4.107623008932437e-06, 'Bleckley': 1.6430492035729749e-06, 'Tift': 1.6430492035729749e-06, 'Turner': 5.750672212505412e-06, 'infest': 1.6430492035729749e-06, 'approximately': 5.3399099116121684e-05, 'attacking': 8.215246017864873e-06, 'crops': 1.5608967433943262e-05, 'wildlife': 1.5608967433943262e-05, 'livestock': 1.5608967433943262e-05, 'menace': 8.215246017864873e-06, 'humans': 8.215246017864873e-06, 'allergic': 2.4645738053594624e-06, 'venom': 2.4645738053594624e-06, 'north-bound': 1.6430492035729749e-06, 'Expressway': 7.393721416078387e-06, '14th': 4.107623008932437e-06, 'survey': 2.6288787257167598e-05, 'electric': 4.6826902301829785e-05, 'computers': 4.107623008932437e-06, 'cameras': 7.393721416078387e-06, 'engineers': 2.300268885002165e-05, 'congestion': 5.750672212505412e-06, 'suggest': 4.436232849647032e-05, 'intersection': 1.4787442832156774e-05, 'daylight': 1.3144393628583799e-05, 'Cain': 2.4645738053594624e-06, 'Piedmont': 2.4645738053594624e-06, 'junction': 4.107623008932437e-06, 'Northeast': 9.036770619651361e-06, 'Northwest': 1.3144393628583799e-05, 'Expressways': 1.6430492035729749e-06, 'crashes': 1.6430492035729749e-06, 'fiery': 6.5721968142918994e-06, 'crash': 1.7252016637516235e-05, 'Snellville': 2.4645738053594624e-06, 'Patrol': 4.929147610718925e-06, '4-year-old': 1.6430492035729749e-06, 'Claude': 9.85829522143785e-06, 'Maynor': 1.6430492035729749e-06, 'Calvary': 2.4645738053594624e-06, 'Troopers': 1.6430492035729749e-06, 'path': 3.6968607080391934e-05, '111': 4.929147610718925e-06, 'Bursts': 1.6430492035729749e-06, 'flames': 1.1501344425010824e-05, 'auto': 1.7252016637516235e-05, 'overturned': 2.4645738053594624e-06, 'skidding': 2.4645738053594624e-06, 'tractor-trailer': 1.6430492035729749e-06, 'burst': 2.7110311858954083e-05, 'Bester': 1.6430492035729749e-06, 'Hammett': 2.4645738053594624e-06, 'Rte.': 2.4645738053594624e-06, 'Lawrenceville': 2.4645738053594624e-06, 'Herrington': 1.6430492035729749e-06, 'flaming': 4.929147610718925e-06, 'unusually': 9.85829522143785e-06, "month's": 2.4645738053594624e-06, 'GA': 1.6430492035729749e-06, 'category': 1.97165904428757e-05, 'allotment': 3.286098407145949e-05, 'commissioners': 9.85829522143785e-06, '$58,918': 1.6430492035729749e-06, 'budgeted': 2.4645738053594624e-06, '$66,000': 1.6430492035729749e-06, '$7,082': 1.6430492035729749e-06, '$17,000': 3.2860984071459497e-06, 'slackening': 2.4645738053594624e-06, 'oks': 1.6430492035729749e-06, 'pact': 2.4645738053594624e-06, 'newly-appointed': 1.6430492035729749e-06, 'Webster': 4.929147610718925e-06, 'River': 7.311568955899738e-05, 'Ennis': 1.6430492035729749e-06, 'Keizer': 1.6430492035729749e-06, 'consultant': 9.85829522143785e-06, 'data': 0.00013308698548941095, 'processing': 2.875336106252706e-05, 'considerable': 7.804483716971631e-05, 'converting': 2.4645738053594624e-06, 'electronic': 5.4220623717908165e-05, 'magnetic': 2.0538115044662184e-05, 'tape': 2.6288787257167598e-05, 'renew': 4.107623008932437e-06, '$8': 2.4645738053594624e-06, 'adapting': 3.2860984071459497e-06, 'Administrator': 1.6430492035729749e-06, 'Juras': 2.4645738053594624e-06, "Field's": 2.4645738053594624e-06, 'unique': 4.7648426903616267e-05, 'handicapped': 9.036770619651361e-06, 'emphasized': 1.5608967433943262e-05, 'employ': 1.0679819823224336e-05, 'fulfill': 8.215246017864873e-06, 'handles': 8.215246017864873e-06, 'regrets': 2.4645738053594624e-06, 'literally': 2.218116424823516e-05, 'wheels': 1.8073541239302723e-05, 'directing': 6.5721968142918994e-06, 'answerable': 1.6430492035729749e-06, "man's": 9.529685380723253e-05, 'conversion': 1.7252016637516235e-05, 'familiarity': 1.1501344425010824e-05, 'Do': 8.626008318758118e-05, 'defend': 1.8073541239302723e-05, 'Peck': 3.2860984071459497e-06, 'moment': 0.0002029165766412624, 'arguments': 1.3144393628583799e-05, "commission's": 2.4645738053594624e-06, 'vice-chairman': 1.6430492035729749e-06, 'Patterson': 4.929147610718925e-06, 'Physicians': 1.6430492035729749e-06, 'Service': 5.8328246726840606e-05, 'crippling': 5.750672212505412e-06, 'weaknesses': 5.750672212505412e-06, 'communications': 2.1359639646448672e-05, 'F': 2.7110311858954083e-05, 'objective': 7.558026336435684e-05, 'create': 4.436232849647032e-05, 'robber': 2.4645738053594624e-06, 'Huntley': 4.929147610718925e-06, 'Lavaughn': 1.6430492035729749e-06, 'getaway': 1.6430492035729749e-06, 'Woodyard': 1.6430492035729749e-06, "Bros.'": 1.6430492035729749e-06, 'Grocery': 2.4645738053594624e-06, '2825': 1.6430492035729749e-06, 'Burnside': 6.5721968142918994e-06, 'McNeil': 1.6430492035729749e-06, 'Hillsdale': 1.6430492035729749e-06, 'holdup': 2.4645738053594624e-06, 'Secret': 1.6430492035729749e-06, 'Detective': 4.929147610718925e-06, 'Murray': 7.393721416078387e-06, 'Logan': 2.4645738053594624e-06, 'culminates': 4.929147610718925e-06, 'robberies': 3.2860984071459497e-06, 'papers': 4.107623008932437e-05, '12-year-old': 1.6430492035729749e-06, 'Elaine': 1.889506584108921e-05, '9329': 1.6430492035729749e-06, 'Schuyler': 3.2860984071459497e-06, 'Bess': 3.2860984071459497e-06, 'Kaiser': 1.6430492035729749e-06, 'bicycle-auto': 1.6430492035729749e-06, 'collision': 6.5721968142918994e-06, 'Gateway': 1.6430492035729749e-06, 'Shopping': 1.6430492035729749e-06, 'Forsyth': 1.6430492035729749e-06, 'Brett': 4.107623008932437e-06, '1926': 5.750672212505412e-06, '50th': 2.4645738053594624e-06, 'Riverview': 1.6430492035729749e-06, 'Abbey': 5.750672212505412e-06, '1886': 2.4645738053594624e-06, 'logging': 4.929147610718925e-06, '1928': 4.929147610718925e-06, 'Macwhyte': 1.6430492035729749e-06, 'Alice': 1.232286902679731e-05, 'Wash.': 4.107623008932437e-06, 'Horstman': 1.6430492035729749e-06, 'Lucy': 3.6968607080391934e-05, 'Beatrice': 6.5721968142918994e-06, 'Kiefferm': 1.6430492035729749e-06, 'grandchildren': 5.750672212505412e-06, 'Employes': 2.4645738053594624e-06, 'Dalles': 1.6430492035729749e-06, 'decertify': 1.6430492035729749e-06, '1565': 2.4645738053594624e-06, 'Retail': 1.6430492035729749e-06, 'Clerks': 2.4645738053594624e-06, 'AFL-CIO': 4.929147610718925e-06, 'collective': 2.7110311858954083e-05, 'NLRB': 1.6430492035729749e-06, 'potentially': 6.5721968142918994e-06, '67': 1.6430492035729749e-06, 'theatrical': 1.0679819823224336e-05, 'producer': 1.232286902679731e-05, 'band': 3.6968607080391934e-05, 'collapsed': 1.1501344425010824e-05, '6124': 1.6430492035729749e-06, 'Blvd.': 4.107623008932437e-06, 'functions': 3.861165628396491e-05, 'Fair': 9.036770619651361e-06, 'booked': 6.5721968142918994e-06, 'collaborated': 8.215246017864873e-06, 'entertainers': 3.2860984071459497e-06, 'Jimmy': 9.85829522143785e-06, 'Durante': 2.4645738053594624e-06, 'Silvers': 1.6430492035729749e-06, '20-piece': 1.6430492035729749e-06, 'profession': 3.1217934867886523e-05, 'Harmony': 1.0679819823224336e-05, 'lodge': 9.85829522143785e-06, 'AF': 1.6430492035729749e-06, 'AM': 8.215246017864873e-06, 'Scottish': 9.036770619651361e-06, 'Rite': 4.929147610718925e-06, 'Kader': 1.6430492035729749e-06, 'Shrine': 2.4645738053594624e-06, 'Order': 1.1501344425010824e-05, 'Elks': 1.6430492035729749e-06, '142': 1.6430492035729749e-06, 'Voiture': 1.6430492035729749e-06, "Musician's": 1.6430492035729749e-06, '99': 7.393721416078387e-06, 'Heights': 9.85829522143785e-06, 'Nevah': 1.6430492035729749e-06, 'Sholom': 1.6430492035729749e-06, 'Congregation': 1.6430492035729749e-06, 'Tearle': 1.6430492035729749e-06, 'Stein': 1.3965918230370285e-05, 'Dorenzo': 1.6430492035729749e-06, 'Birdie': 1.6430492035729749e-06, 'Gevurtz': 1.6430492035729749e-06, 'Aaron': 6.5721968142918994e-06, 'Cohn': 4.107623008932437e-06, 'Holman': 1.6430492035729749e-06, 'Son': 2.1359639646448672e-05, 'interment': 2.4645738053594624e-06, 'Neveh': 1.6430492035729749e-06, 'Zebek': 1.6430492035729749e-06, 'cemetery': 9.85829522143785e-06, 'omitted': 1.1501344425010824e-05, '16-year-old': 1.6430492035729749e-06, 'Achievement': 7.393721416078387e-06, 'judged': 1.3144393628583799e-05, 'competition': 4.6826902301829785e-05, 'Tim': 2.1359639646448672e-05, 'Larson': 4.929147610718925e-06, 'Wilson': 5.175604991254871e-05, 'Spice-Nice': 3.2860984071459497e-06, 'guided': 1.7252016637516235e-05, 'top-ranking': 1.6430492035729749e-06, '4,500': 1.6430492035729749e-06, '11-year': 1.6430492035729749e-06, 'JA': 1.6430492035729749e-06, 'Scolatti': 1.6430492035729749e-06, 'counseled': 3.2860984071459497e-06, 'Georgia-Pacific': 2.4645738053594624e-06, 'first-place': 1.6430492035729749e-06, 'regional': 3.1217934867886523e-05, 'pocket-size': 1.6430492035729749e-06, '$2,170': 1.6430492035729749e-06, 'barbecue': 1.1501344425010824e-05, 'spices': 3.2860984071459497e-06, 'stockholders': 2.218116424823516e-05, 'dividend': 5.750672212505412e-06, 'investment': 3.368250867324598e-05, 'Youngsters': 2.4645738053594624e-06, 'teenagers': 4.929147610718925e-06, 'guidance': 3.203945946967301e-05, 'youngsters': 1.3965918230370285e-05, 'full-scale': 2.4645738053594624e-06, 'businesses': 1.5608967433943262e-05, 'culmination': 4.107623008932437e-06, 'Participants': 1.6430492035729749e-06, 'adult': 2.0538115044662184e-05, 'advisors': 4.107623008932437e-06, 'drawn': 5.668519752326763e-05, 'Savings': 4.107623008932437e-06, 'Bond': 3.2860984071459497e-06, '$250': 4.107623008932437e-06, 'distributed': 2.300268885002165e-05, 'g-p': 1.6430492035729749e-06, 'Advisors': 1.6430492035729749e-06, 'Breuer': 1.6430492035729749e-06, 'Stephenson': 2.4645738053594624e-06, '5847': 1.6430492035729749e-06, 'Nevada': 5.750672212505412e-06, 'Ct.': 1.6430492035729749e-06, 'Kathleen': 2.4645738053594624e-06, 'Jefferson': 2.300268885002165e-05, 'Reifenrath': 1.6430492035729749e-06, 'Madison': 1.97165904428757e-05, 'Wegener': 1.6430492035729749e-06, 'Karen': 3.2860984071459497e-06, 'Kolb': 1.6430492035729749e-06, 'Shelby': 1.6430492035729749e-06, 'Carlson': 3.2860984071459497e-06, 'Hillsboro': 9.85829522143785e-06, "County's": 1.6430492035729749e-06, '36th': 1.6430492035729749e-06, '4-H': 4.107623008932437e-06, 'FFA': 1.6430492035729749e-06, '8:30': 4.107623008932437e-06, "day's": 1.232286902679731e-05, 'flower': 1.5608967433943262e-05, 'horsemanship': 3.2860984071459497e-06, 'clown': 3.2860984071459497e-06, 'shows': 7.804483716971631e-05, 'Attendance': 3.2860984071459497e-06, 'five-day': 1.6430492035729749e-06, 'skies': 8.215246017864873e-06, 'attract': 1.6430492035729746e-05, 'fairgoers': 1.6430492035729749e-06, 'Exhibition': 2.4645738053594624e-06, 'Wick': 2.4645738053594624e-06, 'Walters': 2.4645738053594624e-06, 'all-county': 1.6430492035729749e-06, 'quartet': 2.4645738053594624e-06, 'baton': 4.929147610718925e-06, 'twirler': 3.2860984071459497e-06, 'Sue': 4.929147610718925e-06, 'Nuttall': 1.6430492035729749e-06, 'Reedville': 1.6430492035729749e-06, 'Finalists': 1.6430492035729749e-06, "county's": 1.6430492035729749e-06, 'Results': 7.393721416078387e-06, 'Janet': 1.6430492035729749e-06, 'Jossy': 4.107623008932437e-06, 'sheep': 1.6430492035729746e-05, 'ribbons': 5.750672212505412e-06, 'Stephanie': 2.4645738053594624e-06, 'Zurcher': 2.4645738053594624e-06, 'Phyllis': 2.4645738053594624e-06, 'Carol': 2.4645738053594624e-06, 'Lorlyn': 1.6430492035729749e-06, 'exhibited': 8.215246017864873e-06, 'hog': 3.2860984071459497e-06, 'Traxel': 1.6430492035729749e-06, 'Hutchins': 4.107623008932437e-06, 'Banks': 1.4787442832156774e-05, 'Swine': 1.6430492035729749e-06, 'showmanship': 3.2860984071459497e-06, 'blues': 1.0679819823224336e-05, 'Pumpkin': 1.6430492035729749e-06, 'rabbit': 9.85829522143785e-06, 'poultry': 9.036770619651361e-06, 'judging': 9.036770619651361e-06, 'Nyberg': 2.4645738053594624e-06, 'Tualatin': 1.6430492035729749e-06, 'Batchelder': 1.6430492035729749e-06, 'Tigard': 2.4645738053594624e-06, 'eggs': 2.9574885664313547e-05, 'Wacklin': 1.6430492035729749e-06, 'Sherwood': 3.2860984071459497e-06, 'male': 3.1217934867886523e-05, 'female': 4.025470548753788e-05, 'bird': 2.1359639646448672e-05, 'Haase': 1.6430492035729749e-06, 'Corneilus': 1.6430492035729749e-06, 'entrant': 2.4645738053594624e-06, 'swine': 2.4645738053594624e-06, 'championships': 1.6430492035729749e-06, 'Strong': 7.393721416078387e-06, 'Cedar': 1.6430492035729749e-06, 'Mill': 2.4645738053594624e-06, 'cooked': 8.215246017864873e-06, 'Millie': 4.929147610718925e-06, 'Jansen': 1.6430492035729749e-06, 'Verboort': 1.6430492035729749e-06, 'Jody': 1.6430492035729749e-06, 'Jaross': 1.6430492035729749e-06, 'Borland': 1.6430492035729749e-06, 'economics': 1.1501344425010824e-05, 'demonstration': 2.1359639646448672e-05, 'filbert': 1.6430492035729749e-06, 'appeals': 1.1501344425010824e-05, 'assessors': 1.6430492035729746e-05, 'assessments': 5.750672212505412e-06, 'Centredale': 1.6430492035729749e-06, 'Grenier': 2.4645738053594624e-06, 'assessment': 1.889506584108921e-05, 'properties': 5.093452531076222e-05, 'quarterly': 4.929147610718925e-06, 'Pezza': 3.2860984071459497e-06, '69': 6.5721968142918994e-06, '734': 1.6430492035729749e-06, 'shoulder': 4.929147610718924e-05, 'pains': 1.232286902679731e-05, 'collided': 1.6430492035729749e-06, 'Giorgio': 3.2860984071459497e-06, 'DeSoto': 1.6430492035729749e-06, 'onto': 5.011300070897573e-05, 'slightly': 6.818654194827845e-05, 'DiSimone': 1.6430492035729749e-06, 'uninjured': 2.4645738053594624e-06, 'Thieves': 1.6430492035729749e-06, 'ransacked': 3.2860984071459497e-06, 'Cranston': 1.3965918230370285e-05, '$3,675': 1.6430492035729749e-06, 'furs': 4.929147610718925e-06, 'jewels': 3.2860984071459497e-06, 'coins': 8.215246017864873e-06, 'Stephen': 1.5608967433943262e-05, 'Kochanek': 1.6430492035729749e-06, 'theft': 9.036770619651361e-06, 'Drive': 1.0679819823224336e-05, 'intruders': 1.6430492035729749e-06, 'coat': 3.6147082478605446e-05, '$700': 4.107623008932437e-06, 'Persian': 9.036770619651361e-06, 'lamb': 5.750672212505412e-06, '$450': 3.2860984071459497e-06, 'wallet': 5.750672212505412e-06, 'French': 0.00011501344425010824, 'valued': 1.232286902679731e-05, 'rings': 5.750672212505412e-06, 'earrings': 3.2860984071459497e-06, 'diamond': 7.393721416078387e-06, '$900': 3.2860984071459497e-06, '$325': 1.6430492035729749e-06, '$75': 4.107623008932437e-06, '$65': 2.4645738053594624e-06, '$125': 3.2860984071459497e-06, '$85': 3.2860984071459497e-06, 'Kochaneks': 1.6430492035729749e-06, 'Nunes': 1.6430492035729749e-06, 'investigated': 1.5608967433943262e-05, 'thieves': 7.393721416078387e-06, 'Drawers': 1.6430492035729749e-06, 'cabinets': 4.929147610718925e-06, 'bedrooms': 4.107623008932437e-06, 'sewing': 8.215246017864873e-06, 'stoppage': 1.6430492035729749e-06, 'Eddy': 2.4645738053594624e-06, 'Elm': 1.6430492035729749e-06, 'dumping': 4.107623008932437e-06, 'raw': 3.532555787681896e-05, 'sewage': 2.464573805359462e-05, 'acid': 1.1501344425010824e-05, 'jewelry': 3.2860984071459497e-06, 'plants': 4.8469951505402755e-05, 'flowing': 1.4787442832156774e-05, 'tide': 9.036770619651361e-06, 'two-family': 1.6430492035729749e-06, '255': 1.6430492035729749e-06, 'Brook': 2.4645738053594624e-06, 'deed': 7.393721416078387e-06, 'Cochran': 1.6430492035729749e-06, 'bought': 4.6826902301829785e-05, 'rental': 1.1501344425010824e-05, "Pawtucket's": 1.6430492035729749e-06, 'garbage': 6.5721968142918994e-06, 'rubbish': 4.107623008932437e-06, 'picketed': 2.4645738053594624e-06, "firm's": 2.4645738053594624e-06, 'incinerator': 1.6430492035729749e-06, 'strike': 3.861165628396491e-05, 'Rotelli': 1.6430492035729749e-06, 'Incinerator': 1.6430492035729749e-06, "company's": 1.7252016637516235e-05, 'collections': 7.393721416078387e-06, 'hired': 2.0538115044662184e-05, 'Sydney': 4.929147610718925e-06, 'Workers': 5.750672212505412e-06, '62-year-old': 1.6430492035729749e-06, 'Smithfield': 3.2860984071459497e-06, 'Beverly': 1.232286902679731e-05, 'Circle': 2.4645738053594624e-06, 'satisfactory': 3.203945946967301e-05, 'Fatima': 1.6430492035729749e-06, 'Woonasquatucket': 1.6430492035729749e-06, 'fractured': 1.6430492035729749e-06, 'ribs': 9.85829522143785e-06, 'chest': 4.436232849647032e-05, "Stone's": 2.4645738053594624e-06, 'brushed': 1.7252016637516235e-05, 'Alva': 2.4645738053594624e-06, 'Vernava': 3.2860984071459497e-06, 'Maple': 3.2860984071459497e-06, 'tearing': 8.215246017864873e-06, 'rear': 4.1897754691110856e-05, 'bumper': 2.4645738053594624e-06, 'denting': 2.4645738053594624e-06, 'fender': 4.107623008932437e-06, 'impact': 5.504214831969465e-05, 'Fruit': 3.2860984071459497e-06, "Committee's": 1.6430492035729749e-06, 'audio-visual': 4.107623008932437e-06, 'Democratic-endorsed': 2.4645738053594624e-06, 'acted': 1.5608967433943262e-05, 'improperly': 2.4645738053594624e-06, 'Nolan': 1.6430492035729749e-06, '3rd': 4.929147610718925e-06, 'Walsh': 2.4645738053594624e-06, 'Tougas': 1.6430492035729749e-06, 'finding': 4.025470548753788e-05, "superintendent's": 2.4645738053594624e-06, 'suitable': 2.793183646074057e-05, 'Vermeersch': 1.6430492035729749e-06, 'Rosella': 1.6430492035729749e-06, 'Lovett': 1.6430492035729749e-06, '$55,000': 1.6430492035729749e-06, 'damages': 3.2860984071459497e-06, '83': 3.2860984071459497e-06, 'Atwells': 1.6430492035729749e-06, 'Interstate': 8.215246017864873e-06, 'valuation': 6.5721968142918994e-06, '$57,500': 1.6430492035729749e-06, "owners'": 2.4645738053594624e-06, '$52,500': 1.6430492035729749e-06, 'one-story': 4.929147610718925e-06, '8,293': 1.6430492035729749e-06, 'Saul': 2.4645738053594624e-06, 'Hodosh': 1.6430492035729749e-06, 'represented': 4.6826902301829785e-05, "Santa's": 1.6430492035729749e-06, 'lieutenants': 3.2860984071459497e-06, 'Journal-Bulletin': 1.6430492035729749e-06, 'Claus': 2.4645738053594624e-06, 'Fund': 1.7252016637516235e-05, 'Persons': 4.107623008932437e-06, 'convenient': 1.889506584108921e-05, "Journal-Bulletin's": 1.6430492035729749e-06, '823': 1.6430492035729749e-06, 'acknowledged': 1.0679819823224336e-05, "fund's": 3.2860984071459497e-06, 'quota': 3.2860984071459497e-06, '$8,250': 1.6430492035729749e-06, 'Scores': 2.4645738053594624e-06, 'remembered': 6.900806655006494e-05, 'contributors': 5.750672212505412e-06, 'pennies': 4.929147610718925e-06, 'nickels': 1.6430492035729749e-06, 'dimes': 2.4645738053594624e-06, 'quarters': 2.3824213451808133e-05, 'Parrillo': 3.2860984071459497e-06, 'Fletcher': 6.5721968142918994e-06, '11:30': 2.4645738053594624e-06, 'hunting': 2.793183646074057e-05, 'shotgun': 7.393721416078387e-06, 'discharged': 8.215246017864873e-06, 'heel': 8.215246017864873e-06, 'Hose': 1.6430492035729749e-06, 'Thornton': 1.6430492035729749e-06, 'companion': 1.6430492035729746e-05, 'Simmonsville': 1.6430492035729749e-06, '$4,177.37': 1.6430492035729749e-06, '$50,000': 2.4645738053594624e-06, 'Oliver': 6.5721968142918994e-06, 'alterations': 6.5721968142918994e-06, 'beds': 1.0679819823224336e-05, '646': 1.6430492035729749e-06, 'Sorrentino': 3.2860984071459497e-06, 'founder': 9.036770619651361e-06, 'Uncas': 1.6430492035729749e-06, 'Mfg.': 1.6430492035729749e-06, 'Cavaliere': 1.6430492035729749e-06, 'Merit': 2.4645738053594624e-06, 'Italy': 2.875336106252706e-05, 'decoration': 7.393721416078387e-06, 'Trichieri': 1.6430492035729749e-06, 'consul': 1.6430492035729749e-06, 'celebrating': 4.929147610718925e-06, 'bestowal': 4.107623008932437e-06, 'Aurora': 2.4645738053594624e-06, 'Newport-based': 1.6430492035729749e-06, 'destroyer': 1.6430492035729749e-06, 'escort': 8.215246017864873e-06, 'Kretchmer': 2.4645738053594624e-06, 'Newport': 2.300268885002165e-05, "months'": 4.929147610718925e-06, 'mercy': 1.6430492035729746e-05, 'afloat': 6.5721968142918994e-06, 'ashore': 5.750672212505412e-06, 'rescued': 5.750672212505412e-06, 'crew': 3.0396410266100035e-05, 'trawler': 1.6430492035729749e-06, 'drifting': 8.215246017864873e-06, 'raft': 3.2860984071459497e-06, 'sinking': 5.750672212505412e-06, 'stopping': 1.1501344425010824e-05, 'Greenock': 1.6430492035729749e-06, 'Scotland': 1.1501344425010824e-05, 'liberty': 3.368250867324598e-05, 'rendered': 2.3824213451808133e-05, "girl's": 9.036770619651361e-06, 'Birmingham': 1.1501344425010824e-05, 'perjury': 3.2860984071459497e-06, 'Freedom': 8.215246017864873e-06, 'Rider': 4.929147610718925e-06, 'burning': 3.94331808857514e-05, 'complaint': 1.232286902679731e-05, 'juror': 4.107623008932437e-06, 'Ku': 3.2860984071459497e-06, 'Klux': 3.2860984071459497e-06, 'Klan': 3.2860984071459497e-06, 'membership': 5.504214831969465e-05, '59': 3.2860984071459497e-06, 'farmer': 1.8073541239302723e-05, 'Hartselle': 1.6430492035729749e-06, 'Anniston': 1.4787442832156774e-05, 'interfering': 5.750672212505412e-06, 'interstate': 4.929147610718925e-06, 'growing': 8.790313239115415e-05, "mob's": 1.6430492035729749e-06, 'Greyhound': 1.6430492035729749e-06, 'Riders': 5.750672212505412e-06, 'freed': 9.036770619651361e-06, 'wrongdoing': 2.4645738053594624e-06, 'incident': 4.107623008932437e-05, 'Hobart': 1.6430492035729749e-06, 'Grooms': 1.6430492035729749e-06, 'jury-tampering': 1.6430492035729749e-06, 'expressing': 2.0538115044662184e-05, 'Neither': 2.875336106252706e-05, 'excused': 3.2860984071459497e-06, 'masked': 4.107623008932437e-06, 'lenient': 3.2860984071459497e-06, 'alternate': 9.036770619651361e-06, 'formal': 4.025470548753788e-05, 'incidents': 9.85829522143785e-06, 'connections': 1.232286902679731e-05, 'KKK': 1.6430492035729749e-06, 'imprisonment': 5.750672212505412e-06, '130-year': 1.6430492035729749e-06, 'NYU': 3.2860984071459497e-06, '37-year-old': 1.6430492035729749e-06, 'McN.': 1.6430492035729749e-06, 'Hester': 3.2860984071459497e-06, 'dean': 1.1501344425010824e-05, 'Graduate': 2.4645738053594624e-06, 'Sciences': 5.750672212505412e-06, 'Carroll': 1.4787442832156774e-05, 'Newsom': 1.6430492035729749e-06, 'Prentice-Hall': 1.6430492035729749e-06, 'Princeton': 6.5721968142918994e-06, 'N.J.': 2.4645738053594624e-06, 'associated': 4.7648426903616267e-05, 'Asilomar': 1.6430492035729749e-06, 'Vast': 1.6430492035729749e-06, 'spraying': 6.5721968142918994e-06, 'endangering': 3.2860984071459497e-06, 'Buchheister': 5.750672212505412e-06, 'Audubon': 4.929147610718925e-06, 'Society': 3.779013168217842e-05, 'handing': 4.929147610718925e-06, 'loaded': 1.889506584108921e-05, '8-year-old': 1.6430492035729749e-06, 'Convention': 5.750672212505412e-06, 'controls': 2.464573805359462e-05, 'borer': 1.6430492035729749e-06, 'plague': 5.750672212505412e-06, 'wrecked': 5.750672212505412e-06, 'cane': 1.0679819823224336e-05, 'crop': 1.7252016637516235e-05, 'conservation': 6.5721968142918994e-06, 'mistakes': 1.3965918230370285e-05, 'Wyoming': 8.215246017864873e-06, 'pride': 3.368250867324598e-05, 'scientific': 6.736501734649196e-05, 'experiments': 5.011300070897573e-05, 'farmers': 2.218116424823516e-05, 'forgetting': 6.5721968142918994e-06, 'birds': 3.861165628396491e-05, 'efficient': 2.7110311858954083e-05, 'enemies': 2.218116424823516e-05, 'insects': 1.889506584108921e-05, 'rodents': 3.2860984071459497e-06, 'rid': 1.6430492035729746e-05, 'occasionally': 2.7110311858954083e-05, 'peck': 2.4645738053594624e-06, 'grapes': 4.929147610718925e-06, 'blueberries': 1.6430492035729749e-06, 'urging': 9.036770619651361e-06, 'restrictions': 2.300268885002165e-05, 'Wilderness': 2.4645738053594624e-06, 'seashore': 3.2860984071459497e-06, 'Reyes': 1.6430492035729749e-06, 'preservation': 1.4787442832156774e-05, 'wetlands': 1.6430492035729749e-06, 'breed': 1.3965918230370285e-05, 'pesticides': 1.6430492035729749e-06, 'co-ordination': 2.4645738053594624e-06, 'pollution': 5.750672212505412e-06, 'ratification': 4.929147610718925e-06, 'convention': 1.889506584108921e-05, 'halt': 9.036770619651361e-06, 'sea': 6.654349274470547e-05, 'oil': 7.229416495721089e-05, 'Reed': 4.929147610718925e-06, 'Rogers': 8.215246017864873e-06, 'Da': 8.215246017864873e-06, 'Fonta': 1.6430492035729749e-06, 'Wild': 4.929147610718925e-06, 'Sanctuary': 1.6430492035729749e-06, 'Marin': 4.107623008932437e-06, 'officially': 1.5608967433943262e-05, 'Livermore': 1.6430492035729749e-06, '645-acre': 1.6430492035729749e-06, 'tidelands': 1.6430492035729749e-06, 'Greenwood': 1.6430492035729749e-06, 'Olney': 1.6430492035729749e-06, 'Kentfield': 1.6430492035729749e-06, 'inviolate': 3.2860984071459497e-06, 'sanctuary': 7.393721416078387e-06, 'animals': 4.2719279292897344e-05, 'Seventeen': 3.2860984071459497e-06, 'Willy': 4.107623008932437e-06, 'Fiedler': 8.215246017864873e-06, 'climbed': 3.6968607080391934e-05, 'cockpit': 1.3965918230370285e-05, 'installed': 2.9574885664313547e-05, 'V-1': 3.2860984071459497e-06, 'rocket-bomb': 1.6430492035729749e-06, 'attached': 2.1359639646448672e-05, 'underbelly': 1.6430492035729749e-06, 'Heinkel': 2.4645738053594624e-06, 'bomber': 7.393721416078387e-06, 'rolled': 4.025470548753788e-05, 'runway': 4.107623008932437e-06, 'earth': 9.611837840901902e-05, 'alive': 4.7648426903616267e-05, 'pulse': 8.215246017864873e-06, 'jet': 1.6430492035729746e-05, 'airstrip': 2.4645738053594624e-06, 'quiet-spoken': 1.6430492035729749e-06, 'middle-aged': 6.5721968142918994e-06, 'aeronautical': 1.6430492035729749e-06, 'engineer': 3.203945946967301e-05, "Lockheed's": 1.6430492035729749e-06, 'Missiles': 3.2860984071459497e-06, 'Space': 1.1501344425010824e-05, 'Sunnyvale': 3.2860984071459497e-06, 'sat': 0.00012322869026797312, 'pilots': 6.5721968142918994e-06, 'crashed': 1.0679819823224336e-05, "Hitler's": 6.5721968142918994e-06, 'super-secret': 1.6430492035729749e-06, 'Reichenberg': 2.4645738053594624e-06, 'unknown': 3.94331808857514e-05, 'Allies': 5.750672212505412e-06, 'rocket-bombs': 1.6430492035729749e-06, 'manned': 1.0679819823224336e-05, 'warhead': 2.4645738053594624e-06, 'Allied': 1.6430492035729746e-05, 'shipping': 1.5608967433943262e-05, 'stave': 2.4645738053594624e-06, "Fiedler's": 1.6430492035729749e-06, 'Squeezed': 1.6430492035729749e-06, 'cubic': 1.3144393628583799e-05, "rocket's": 2.4645738053594624e-06, 'mechanism': 2.3824213451808133e-05, 'altitude': 4.107623008932437e-06, 'signaled': 2.4645738053594624e-06, 'roaring': 8.215246017864873e-06, 'pulse-jet': 1.6430492035729749e-06, 'engine': 3.94331808857514e-05, 'streaked': 4.107623008932437e-06, 'beneath': 4.436232849647032e-05, 'pilot': 3.532555787681896e-05, 'rocket': 6.5721968142918994e-06, 'faint': 2.0538115044662184e-05, 'speck': 6.5721968142918994e-06, 'hurtling': 4.929147610718925e-06, 'sky': 4.6826902301829785e-05, 'incredible': 1.97165904428757e-05, '420': 3.2860984071459497e-06, 'm.p.h.': 5.750672212505412e-06, 'beautifully': 1.3965918230370285e-05, 'valve': 3.2860984071459497e-06, 'adjust': 1.3965918230370285e-05, 'fuel': 1.4787442832156774e-05, 'strip': 2.464573805359462e-05, 'Using': 1.1501344425010824e-05, 'steering': 8.215246017864873e-06, 'controlled': 3.286098407145949e-05, 'tail': 2.0538115044662184e-05, 'surfaces': 2.3824213451808133e-05, 'wings': 2.0538115044662184e-05, 'equipped': 3.0396410266100035e-05, 'ailerons': 1.6430492035729749e-06, 'skid': 1.6430492035729749e-06, 'bolted': 6.5721968142918994e-06, 'fuselage': 1.6430492035729749e-06, 'managed': 3.0396410266100035e-05, 'maneuver': 4.929147610718925e-06, 'landing': 2.1359639646448672e-05, 'banked': 4.107623008932437e-06, 'airfield': 4.929147610718925e-06, 'Moments': 2.4645738053594624e-06, 'skimmed': 4.929147610718925e-06, 'streamer': 1.6430492035729749e-06, 'dust': 5.668519752326763e-05, 'flights': 1.232286902679731e-05, 'missiles': 2.464573805359462e-05, 'Pilots': 1.6430492035729749e-06, 'steer': 8.215246017864873e-06, 'suicide': 1.4787442832156774e-05, 'dive': 1.97165904428757e-05, 'waterline': 1.6430492035729749e-06, 'crack': 1.8073541239302723e-05, 'halted': 1.0679819823224336e-05, 'Lockheed': 3.2860984071459497e-06, 'spare': 1.889506584108921e-05, 'gliders': 1.6430492035729749e-06, 'slow': 4.8469951505402755e-05, 'serene': 7.393721416078387e-06, 'challenging': 1.0679819823224336e-05, 'Di': 1.8073541239302723e-05, 'Massimo': 1.6430492035729749e-06, 'Celebration': 1.6430492035729749e-06, 'Scampini': 1.6430492035729749e-06, 'Arata': 1.6430492035729749e-06, 'Casassa': 2.4645738053594624e-06, 'Molinari': 2.4645738053594624e-06, 'Elected': 1.6430492035729749e-06, 'Elios': 1.6430492035729749e-06, 'Anderlini': 1.6430492035729749e-06, 'Attilio': 1.6430492035729749e-06, 'Beronio': 1.6430492035729749e-06, 'Bianco': 1.6430492035729749e-06, 'Frederic': 1.6430492035729749e-06, 'Campagnoli': 1.6430492035729749e-06, 'Cervetto': 1.6430492035729749e-06, 'Armond': 1.6430492035729749e-06, 'Martini': 4.107623008932437e-06, 'Duhagon': 1.6430492035729749e-06, 'Figone': 2.4645738053594624e-06, 'Mana': 1.6430492035729749e-06, 'Moscone': 1.6430492035729749e-06, 'Calude': 1.6430492035729749e-06, 'Perasso': 1.6430492035729749e-06, 'Petrini': 1.6430492035729749e-06, 'Ratto': 1.6430492035729749e-06, 'Reilly': 1.6430492035729749e-06, 'Schweitzer': 8.215246017864873e-06, 'world-famous': 3.2860984071459497e-06, 'theologian': 4.929147610718925e-06, 'endorsed': 4.107623008932437e-06, 'Disarmament': 1.6430492035729749e-06, 'Friends': 1.0679819823224336e-05, 'Quaker': 5.750672212505412e-06, 'Leading': 3.2860984071459497e-06, 'newer': 1.7252016637516235e-05, 'weapons': 5.093452531076222e-05, 'otherwise': 5.750672212505412e-05, 'dread': 8.215246017864873e-06, 'imply': 1.1501344425010824e-05, 'grisly': 2.4645738053594624e-06, 'abolish': 7.393721416078387e-06, 'Governments': 9.036770619651361e-06, 'obligated': 4.107623008932437e-06, 'aware': 6.982959115185143e-05, 'ghastly': 5.750672212505412e-06, 'stupidity': 7.393721416078387e-06, 'jolt': 4.107623008932437e-06, 'complacency': 4.107623008932437e-06, 'operator': 4.107623008932437e-05, "janitors'": 3.2860984071459497e-06, '3300': 1.6430492035729749e-06, 'Shore': 1.6430492035729746e-05, 'acquaintance': 8.215246017864873e-06, 'syndicate': 4.929147610718925e-06, 'Glimco': 4.107623008932437e-06, 'buddy': 1.0679819823224336e-05, 'gangland': 1.6430492035729749e-06, 'buddies': 4.929147610718925e-06, 'mob': 9.036770619651361e-06, 'racketeer': 2.4645738053594624e-06, 'gang': 1.889506584108921e-05, 'gambling': 1.3965918230370285e-05, 'chiefs': 3.2860984071459497e-06, 'Gus': 3.2860984071459497e-06, 'Slim': 9.036770619651361e-06, 'Alex': 2.546726265538111e-05, 'Caesar': 5.750672212505412e-06, 'DiVarco': 1.6430492035729749e-06, 'Monk': 3.2860984071459497e-06, 'Allegretti': 1.6430492035729749e-06, 'hoodlum': 3.2860984071459497e-06, 'Arger': 3.2860984071459497e-06, '$39,000': 1.6430492035729749e-06, "Stein's": 4.107623008932437e-06, 'janitor': 4.107623008932437e-06, 'Maintenance': 4.929147610718925e-06, 'stevedore': 1.6430492035729749e-06, 'pier': 3.2860984071459497e-06, 'Connection': 1.6430492035729749e-06, 'probing': 4.929147610718925e-06, 'prosecutors': 2.4645738053594624e-06, 'attempting': 1.97165904428757e-05, 'connect': 3.2860984071459497e-06, 'gangsters': 4.107623008932437e-06, 'tracing': 1.3965918230370285e-05, 'scrutiny': 1.232286902679731e-05, 'payments': 3.94331808857514e-05, '543': 1.6430492035729749e-06, 'janitors': 3.2860984071459497e-06, 'workmen': 5.750672212505412e-06, 'factories': 1.889506584108921e-05, 'Leavitt': 5.750672212505412e-06, 'Liquor': 1.6430492035729749e-06, '3247': 1.6430492035729749e-06, 'Kedzie': 1.6430492035729749e-06, 'Dominic': 1.6430492035729749e-06, 'Senese': 1.6430492035729749e-06, 'teamster': 1.6430492035729749e-06, 'cousin': 1.1501344425010824e-05, 'Accardo': 1.6430492035729749e-06, 'onetime': 1.6430492035729749e-06, 'Pesce': 2.4645738053594624e-06, 'deodorant': 2.4645738053594624e-06, 'Sanitation': 4.107623008932437e-06, 'Supply': 4.929147610718925e-06, '1215': 1.6430492035729749e-06, 'supervise': 4.929147610718925e-06, '$1,600': 1.6430492035729749e-06, '$12,500': 2.4645738053594624e-06, "Leavitt's": 1.6430492035729749e-06, "warehouseman's": 1.6430492035729749e-06, "salesman's": 1.6430492035729749e-06, 'bottling': 1.6430492035729749e-06, "workers'": 3.2860984071459497e-06, 'closely': 5.2577574514335196e-05, '$40,000': 2.4645738053594624e-06, 'repaid': 3.2860984071459497e-06, "Glimco's": 1.6430492035729749e-06, "drivers'": 1.6430492035729749e-06, '1213-15': 1.6430492035729749e-06, 'radiation': 7.558026336435684e-05, 'micro-microcurie': 1.6430492035729749e-06, 'meter': 5.750672212505412e-06, 'detonation': 3.2860984071459497e-06, 'radioactive': 9.036770619651361e-06, 'occur': 3.6147082478605446e-05, 'Curtis': 3.2860984071459497e-06, 'Huff': 9.036770619651361e-06, '1630': 1.6430492035729749e-06, 'suppressed': 4.107623008932437e-06, 'warrant': 1.7252016637516235e-05, 'charging': 7.393721416078387e-06, 'embezzling': 1.6430492035729749e-06, 'undetermined': 2.4645738053594624e-06, 'Loan': 4.929147610718925e-06, 'Dearborn': 2.4645738053594624e-06, 'Lien': 1.6430492035729749e-06, "Huff's": 1.6430492035729749e-06, 'Antone': 1.6430492035729749e-06, 'Gregorio': 4.107623008932437e-06, 'embezzlement': 1.6430492035729749e-06, 'satisfaction': 2.3824213451808133e-05, "mechanic's": 1.6430492035729749e-06, 'liens': 1.6430492035729749e-06, '$109': 1.6430492035729749e-06, 'lucrative': 3.2860984071459497e-06, 'Charge': 2.4645738053594624e-06, 'lists': 2.875336106252706e-05, 'Blaber': 1.6430492035729749e-06, '1020': 1.6430492035729749e-06, 'cashed': 1.6430492035729749e-06, 'card': 2.218116424823516e-05, 'Bonn': 5.750672212505412e-06, '$28,700,000': 1.6430492035729749e-06, 'Greek': 5.093452531076222e-05, 'Nazi': 1.1501344425010824e-05, 'persecution': 6.5721968142918994e-06, 'Probably': 2.1359639646448672e-05, 'hottest': 4.107623008932437e-06, 'Foods': 8.215246017864873e-06, 'shares': 3.779013168217842e-05, 'Dallas-headquartered': 1.6430492035729749e-06, 'allotting': 1.6430492035729749e-06, 'explaining': 1.1501344425010824e-05, 'Investors': 4.929147610718925e-06, 'counted': 1.4787442832156774e-05, 'lucky': 1.7252016637516235e-05, 'trading': 1.97165904428757e-05, 'underwriting': 2.4645738053594624e-06, 'price': 8.297398478043522e-05, '$12.50': 2.4645738053594624e-06, 'over-the-counter': 1.6430492035729749e-06, 'Eppler': 1.6430492035729749e-06, 'Guerin': 2.4645738053594624e-06, 'managing': 6.5721968142918994e-06, 'underwriter': 1.6430492035729749e-06, '$17': 1.6430492035729749e-06, '$22': 1.6430492035729749e-06, 'circulating': 4.929147610718925e-06, 'inquiries': 1.4787442832156774e-05, 'Letters': 4.929147610718925e-06, 'reams': 2.4645738053594624e-06, 'wanting': 1.3965918230370285e-05, '185,000': 1.6430492035729749e-06, 'reserved': 2.300268885002165e-05, '$11.50': 1.6430492035729749e-06, 'cable': 4.107623008932437e-06, 'Switzerland': 1.0679819823224336e-05, 'somehow': 4.7648426903616267e-05, 'offering': 2.3824213451808133e-05, 'subscribe': 1.6430492035729749e-06, 'Cable': 3.2860984071459497e-06, 'translated': 1.3965918230370285e-05, 'E.G.T.': 2.4645738053594624e-06, 'Swiss': 1.232286902679731e-05, 'underwriters': 3.2860984071459497e-06, 'qualify': 1.3144393628583799e-05, 'regularly': 1.889506584108921e-05, 'combination': 4.7648426903616267e-05, 'boiling': 8.215246017864873e-06, 'upward': 2.300268885002165e-05, 'kinds': 3.0396410266100035e-05, 'priced': 4.107623008932437e-06, 'roughly': 2.1359639646448672e-05, 'earnings': 1.6430492035729746e-05, 'yield': 2.9574885664313547e-05, '64-cent': 1.6430492035729749e-06, 'Second': 2.7110311858954083e-05, 'chip': 1.4787442832156774e-05, 'fancy': 1.3965918230370285e-05, 'investors': 9.85829522143785e-06, 'lately': 1.0679819823224336e-05, 'Frito': 2.4645738053594624e-06, 'Lay': 4.107623008932437e-06, 'run-ups': 1.6430492035729749e-06, 'price-earnings': 3.2860984071459497e-06, 'run-up': 2.4645738053594624e-06, 'resistant': 4.107623008932437e-06, 'acting': 4.354080389468383e-05, 'ratios': 1.5608967433943262e-05, 'merger': 1.7252016637516235e-05, "today's": 2.875336106252706e-05, 'depression': 1.97165904428757e-05, 'remain': 7.722331256792982e-05, 'executives': 6.5721968142918994e-06, 'abilities': 1.1501344425010824e-05, 'competitive': 2.546726265538111e-05, 'survival': 2.546726265538111e-05, 'fittest': 2.4645738053594624e-06, 'reaching': 3.286098407145949e-05, 'realizing': 1.0679819823224336e-05, 'second-echelon': 1.6430492035729749e-06, 'mergers': 4.929147610718925e-06, 'pound': 2.3824213451808133e-05, "Morton's": 1.6430492035729749e-06, 'corn': 2.6288787257167598e-05, "Chip-o's": 1.6430492035729749e-06, 'turns': 3.203945946967301e-05, 'avid': 1.6430492035729749e-06, 'buyers': 4.929147610718925e-06, 'world-wide': 1.0679819823224336e-05, 'cotton': 2.464573805359462e-05, 'gin': 1.4787442832156774e-05, 'maintain': 5.011300070897573e-05, 'manufacturer': 1.97165904428757e-05, 'coincidence': 9.85829522143785e-06, "Ginner's": 1.6430492035729749e-06, '46th': 2.4645738053594624e-06, '52-year': 1.6430492035729749e-06, 'ginning': 4.107623008932437e-06, 'weighs': 4.107623008932437e-06, 'tons': 2.3824213451808133e-05, 'proximity': 4.929147610718925e-06, '$250,000': 1.6430492035729749e-06, 'safe': 4.8469951505402755e-05, 'assumption': 3.203945946967301e-05, 'percentage': 3.861165628396491e-05, 'gins': 1.6430492035729749e-06, 'contain': 3.779013168217842e-05, '1896': 7.393721416078387e-06, "They've": 7.393721416078387e-06, 'occupied': 3.0396410266100035e-05, '22-acre': 1.6430492035729749e-06, "1900's": 2.4645738053594624e-06, 'grown': 3.6147082478605446e-05, 'driers': 3.2860984071459497e-06, 'cleaners': 7.393721416078387e-06, 'Dallas-based': 1.6430492035729749e-06, 'Gin': 5.750672212505412e-06, '1899': 3.2860984071459497e-06, 'smaller': 6.407891893934602e-05, '1834': 4.929147610718925e-06, 'Headquarters': 8.215246017864873e-06, 'Factories': 2.4645738053594624e-06, 'Prattville': 1.6430492035729749e-06, 'sells': 1.1501344425010824e-05, 'cotton-growing': 1.6430492035729749e-06, 'Hardwicke-Etter': 2.4645738053594624e-06, 'domestic': 5.011300070897573e-05, 'Southeastern': 1.6430492035729749e-06, 'Cen-Tennial': 2.4645738053594624e-06, 'export': 8.215246017864873e-06, '1900': 1.1501344425010824e-05, 'mill': 8.215246017864873e-06, '1930': 9.85829522143785e-06, 'Presently': 8.215246017864873e-06, 'employs': 8.215246017864873e-06, '300-450': 1.6430492035729749e-06, 'Lummus': 1.6430492035729749e-06, '1912': 1.3144393628583799e-05, 'Factory': 8.215246017864873e-06, 'Moss': 5.750672212505412e-06, 'Gordin': 3.2860984071459497e-06, 'Lint': 1.6430492035729749e-06, 'Cleaner': 1.6430492035729749e-06, 'Unit': 8.215246017864873e-06, 'System': 1.97165904428757e-05, 'Ginning': 1.6430492035729749e-06, 'cleaner': 7.393721416078387e-06, 'cleaning': 3.0396410266100035e-05, 'seed': 3.368250867324598e-05, 'heaters': 1.6430492035729749e-06, 'maker': 1.0679819823224336e-05, 'boil': 1.0679819823224336e-05, 'extraction': 4.929147610718925e-06, 'mechanical': 2.875336106252706e-05, 'harvesting': 3.2860984071459497e-06, 'drying': 2.300268885002165e-05, 'Hinckley': 1.6430492035729749e-06, 'overhead': 1.5608967433943262e-05, 'burr': 2.4645738053594624e-06, 'extractors': 1.6430492035729749e-06, 'separators': 1.6430492035729749e-06, 'piping': 4.929147610718925e-06, 'belt': 2.218116424823516e-05, 'saws': 3.2860984071459497e-06, 'Stacy': 9.036770619651361e-06, 'belting': 1.6430492035729749e-06, 'bearings': 5.750672212505412e-06, 'etc.': 4.8469951505402755e-05, 'sizable': 1.232286902679731e-05, 'segment': 9.036770619651361e-06, 'slight': 4.2719279292897344e-05, 'doldrums': 1.6430492035729749e-06, 'characterized': 1.8073541239302723e-05, 'Registrations': 1.6430492035729749e-06, '3,000': 8.215246017864873e-06, 'Totaling': 1.6430492035729749e-06, '3,399': 1.6430492035729749e-06, "February's": 2.4645738053594624e-06, '2,963': 1.6430492035729749e-06, '4,441': 1.6430492035729749e-06, 'quarter-to-quarter': 1.6430492035729749e-06, 'comparison': 4.025470548753788e-05, 'quarter': 2.6288787257167598e-05, '9,273': 1.6430492035729749e-06, '3-month': 1.6430492035729749e-06, '11,744': 1.6430492035729749e-06, 'year-to-year': 2.4645738053594624e-06, '1,212,000': 1.6430492035729749e-06, 'pickup': 1.232286902679731e-05, 'dealers': 2.464573805359462e-05, 'April-June': 1.6430492035729749e-06, 'prompt': 7.393721416078387e-06, 'makers': 1.5608967433943262e-05, 'production': 0.00011583496885189472, 'compacts': 1.6430492035729749e-06, 'grab': 1.0679819823224336e-05, 'larger': 0.00010104752601973795, 'lower-priced': 1.6430492035729749e-06, 'standard': 7.722331256792982e-05, 'models': 3.861165628396491e-05, 'Buick': 3.2860984071459497e-06, 'Chrysler': 3.2860984071459497e-06, 'Mercury': 3.2860984071459497e-06, 'gains': 1.5608967433943262e-05, 'Sales': 7.393721416078387e-06, 'Executives': 2.4645738053594624e-06, 'banquet': 5.750672212505412e-06, 'Sheraton-Dallas': 2.4645738053594624e-06, 'winds': 1.6430492035729746e-05, 'Distributive': 1.6430492035729749e-06, 'marketing': 3.368250867324598e-05, 'salesmanship': 4.929147610718925e-06, 'supplement': 1.5608967433943262e-05, 'classroom': 1.5608967433943262e-05, 'instruction': 2.218116424823516e-05, 'fields': 5.750672212505412e-05, 'seniors': 1.6430492035729749e-06, 'Gerald': 3.2860984071459497e-06, 'Owens': 1.6430492035729749e-06, 'Isodine': 1.6430492035729749e-06, 'Pharmical': 1.6430492035729749e-06, 'Trigg': 1.6430492035729749e-06, 'Arrington': 1.6430492035729749e-06, 'Kaminsky': 1.6430492035729749e-06, 'Adams': 3.532555787681896e-05, 'Janice': 5.750672212505412e-06, 'Whitney': 4.107623008932437e-06, 'Fil': 2.4645738053594624e-06, 'Terral': 1.6430492035729749e-06, 'Page': 4.929147610718925e-06, 'Adamson': 1.6430492035729749e-06, 'Tommie': 1.6430492035729749e-06, 'Paschall': 1.6430492035729749e-06, 'Crozier': 1.6430492035729749e-06, 'Tech.': 2.4645738053594624e-06, 'Paulah': 1.6430492035729749e-06, 'Kestner': 1.6430492035729749e-06, 'Hillcrest': 1.6430492035729749e-06, 'Hayes': 4.929147610718925e-06, 'Shay': 1.6430492035729749e-06, 'Satterfield': 1.6430492035729749e-06, 'Cluck': 1.6430492035729749e-06, 'Deloris': 1.6430492035729749e-06, 'Carrel': 1.6430492035729749e-06, 'Carty': 1.6430492035729749e-06, 'Edna': 3.2860984071459497e-06, 'Eaton': 2.4645738053594624e-06, 'Neal': 4.107623008932437e-06, 'McLauchlin': 1.6430492035729749e-06, 'Rylie': 1.6430492035729749e-06, 'Seagoville': 1.6430492035729749e-06, 'Wolverton': 1.6430492035729749e-06, 'Sharon': 3.2860984071459497e-06, 'Flanagan': 1.6430492035729749e-06, 'Samuels': 1.6430492035729749e-06, 'Hammond': 2.4645738053594624e-06, 'Ronnie': 4.929147610718925e-06, 'Carolyn': 1.6430492035729749e-06, 'Bert': 1.6430492035729749e-06, 'Sunset': 2.4645738053594624e-06, 'Potter': 4.107623008932437e-06, 'Woodrow': 4.107623008932437e-06, 'Housing': 8.215246017864873e-06, 'complex': 7.475873876257036e-05, 'sweeping': 1.0679819823224336e-05, 'fringe': 1.3965918230370285e-05, 'Caron': 1.6430492035729749e-06, 'Stallard': 1.6430492035729749e-06, 'vice-president': 9.036770619651361e-06, 'Mortgage': 1.6430492035729749e-06, 'gather': 1.5608967433943262e-05, 'momentum': 1.232286902679731e-05, 'lift': 1.889506584108921e-05, 'peak': 1.3144393628583799e-05, 'autumn': 1.889506584108921e-05, 'Beryl': 2.4645738053594624e-06, 'Sprinkel': 3.2860984071459497e-06, 'Trust': 3.2860984071459497e-06, 'closing': 2.3824213451808133e-05, 'Investment': 3.2860984071459497e-06, 'Assn.': 2.4645738053594624e-06, 'Draper': 3.2860984071459497e-06, 'Palo': 1.6430492035729749e-06, 'Alto': 2.4645738053594624e-06, 'venture': 1.6430492035729746e-05, 'Gaither': 1.6430492035729749e-06, 'gauntlet': 2.4645738053594624e-06, 'communism': 3.286098407145949e-05, 'bluntly': 6.5721968142918994e-06, 'appropriations': 7.393721416078387e-06, 'pan': 1.232286902679731e-05, 'conferees': 2.4645738053594624e-06, 'improvement': 3.1217934867886523e-05, 'cyclical': 1.6430492035729749e-06, 'pattern': 9.20107554000866e-05, 'abrupt': 1.5608967433943262e-05, 'Thesis': 1.6430492035729749e-06, 'refuted': 3.2860984071459497e-06, 'neo-stagnationist': 1.6430492035729749e-06, 'thesis': 8.215246017864873e-06, 'declaring': 9.036770619651361e-06, 'pessimism': 5.750672212505412e-06, 'questionable': 8.215246017864873e-06, 'Rather': 1.6430492035729746e-05, 'abortive': 3.2860984071459497e-06, '1959-60': 2.4645738053594624e-06, 'lesson': 2.464573805359462e-05, 'probability': 2.9574885664313547e-05, 'Danger': 2.4645738053594624e-06, 'cautioned': 5.750672212505412e-06, 'excessive': 2.546726265538111e-05, 'stimulation': 1.1501344425010824e-05, 'moderate': 1.8073541239302723e-05, 'inflation': 4.929147610718925e-06, 'Reserve': 9.85829522143785e-06, 'aggressively': 2.4645738053594624e-06, 'tighten': 3.2860984071459497e-06, 'monetary': 8.215246017864873e-06, 'phases': 2.0538115044662184e-05, 'upturn': 6.5721968142918994e-06, 'unsatisfactory': 7.393721416078387e-06, '1958-60': 1.6430492035729749e-06, 'inappropriate': 4.107623008932437e-06, 'retrenching': 1.6430492035729749e-06, 'resulting': 3.6147082478605446e-05, 'steel': 3.203945946967301e-05, 'Sacrifices': 1.6430492035729749e-06, 'dangers': 1.3965918230370285e-05, 'threaten': 9.85829522143785e-06, 'justify': 2.218116424823516e-05, 'heritage': 1.3144393628583799e-05, 'Clay': 1.3965918230370285e-05, 'presently': 2.218116424823516e-05, 'blackmail': 2.4645738053594624e-06, 'yourself': 5.586367292148114e-05, 'sooner': 1.3144393628583799e-05, 'liable': 5.750672212505412e-06, 'situations': 4.2719279292897344e-05, 'hemisphere': 9.036770619651361e-06, 'erasing': 2.4645738053594624e-06, 'Analysts': 1.6430492035729749e-06, 'continuation': 1.3144393628583799e-05, 'sank': 1.5608967433943262e-05, 'hoped-for': 2.4645738053594624e-06, '675': 1.6430492035729749e-06, 'Dow': 4.107623008932437e-06, 'standing': 7.968788637328927e-05, 'sidelines': 1.6430492035729749e-06, 'pivotal': 1.6430492035729749e-06, 'routine': 2.793183646074057e-05, 'snapback': 1.6430492035729749e-06, 'Streeters': 1.6430492035729749e-06, 'accompanied': 3.0396410266100035e-05, 'orders': 4.436232849647032e-05, 'durable': 1.0679819823224336e-05, 'Treasury': 3.203945946967301e-05, 'Dillon': 9.85829522143785e-06, 'whopping': 1.6430492035729749e-06, '8%': 2.4645738053594624e-06, 'paving': 2.4645738053594624e-06, 'lower': 9.7761427612592e-05, '7.19': 1.6430492035729749e-06, '687.87': 1.6430492035729749e-06, '1,253': 1.6430492035729749e-06, 'traded': 7.393721416078387e-06, '695': 1.6430492035729749e-06, '354': 2.4645738053594624e-06, 'highs': 2.4645738053594624e-06, 'lows': 1.6430492035729749e-06, 'Trading': 2.4645738053594624e-06, 'comparatively': 1.3144393628583799e-05, 'dull': 2.300268885002165e-05, 'Volume': 1.7252016637516235e-05, 'dipped': 3.2860984071459497e-06, '3.28': 1.6430492035729749e-06, '3.98': 1.6430492035729749e-06, 'envisioned': 4.107623008932437e-06, '1970s': 1.6430492035729749e-06, 'Peterson': 7.393721416078387e-06, 'Marketing': 3.2860984071459497e-06, 'Bell': 4.107623008932437e-06, 'Howell': 1.6430492035729749e-06, 'belong': 3.1217934867886523e-05, 'industrialist': 2.4645738053594624e-06, 'creative': 4.025470548753788e-05, 'unconventional': 3.2860984071459497e-06, 'Creations': 1.6430492035729749e-06, '1970': 3.2860984071459497e-06, '40%': 6.5721968142918994e-06, 'expenditures': 3.6147082478605446e-05, 'marketed': 3.2860984071459497e-06, 'log-jam': 1.6430492035729749e-06, 'obviously': 7.229416495721089e-05, 'geometrically': 1.6430492035729749e-06, 'technology': 2.9574885664313547e-05, 'tend': 3.532555787681896e-05, 'equalizers': 1.6430492035729749e-06, 'fairly': 4.7648426903616267e-05, 'short-term': 1.232286902679731e-05, 'dares': 3.2860984071459497e-06, 'Japanese': 4.436232849647032e-05, 'know-how': 4.107623008932437e-06, 'all-automatic': 1.6430492035729749e-06, 'Exchange': 9.85829522143785e-06, 'Phelan': 1.6430492035729749e-06, 'exchange': 4.929147610718924e-05, 'stockholder': 2.4645738053594624e-06, 'securities': 6.5721968142918994e-06, 'Oil': 7.393721416078387e-06, '$120': 1.6430492035729749e-06, 'debentures': 5.750672212505412e-06, 'Read': 6.5721968142918994e-06, "Gulf's": 1.6430492035729749e-06, 'holdings': 4.107623008932437e-06, '2,700,877': 1.6430492035729749e-06, 'surrender': 1.889506584108921e-05, 'convertible': 8.215246017864873e-06, '923,076': 1.6430492035729749e-06, 'Due': 3.2860984071459497e-06, '1986': 3.2860984071459497e-06, 'consisted': 2.0538115044662184e-05, '4-7/8': 1.6430492035729749e-06, '100%': 7.393721416078387e-06, '4-1/2%': 1.6430492035729749e-06, 'subordinated': 4.107623008932437e-06, '1991': 1.6430492035729749e-06, '$70': 1.6430492035729749e-06, '1971': 1.6430492035729749e-06, '1976': 1.6430492035729749e-06, '$80': 1.6430492035729749e-06, '1981': 1.6430492035729749e-06, '$90': 2.4645738053594624e-06, 'thereafter': 1.3965918230370285e-05, 'dwindled': 2.4645738053594624e-06, '1.23': 1.6430492035729749e-06, '1.58': 1.6430492035729749e-06, 'Gains': 1.6430492035729749e-06, '2-3/4': 1.6430492035729749e-06, 'Teleprompter': 1.6430492035729749e-06, 'Foil': 1.6430492035729749e-06, 'Fairchild': 2.4645738053594624e-06, 'Camera': 2.4645738053594624e-06, 'Kawecki': 1.6430492035729749e-06, 'Chemical': 3.2860984071459497e-06, '2-1/2': 3.2860984071459497e-06, 'Diversified': 3.2860984071459497e-06, 'Growth': 4.107623008932437e-06, 'Something': 2.546726265538111e-05, 'dividends': 7.393721416078387e-06, 'Answer': 3.2860984071459497e-06, 'Write': 1.6430492035729749e-06, 'custodian': 3.2860984071459497e-06, 'Fundamental': 3.2860984071459497e-06, 'Television-Electronics': 1.6430492035729749e-06, 'brain': 3.532555787681896e-05, 'programmed': 3.2860984071459497e-06, 'irate': 1.6430492035729749e-06, 'shareholders': 3.2860984071459497e-06, 'story': 0.00012240716566618663, '60-day': 1.6430492035729749e-06, 'complaining': 4.929147610718925e-06, 'squared': 4.929147610718925e-06, 'shareholder': 1.6430492035729749e-06, 'finds': 4.929147610718924e-05, 'mistake': 2.875336106252706e-05, 'Doyle': 4.107623008932437e-06, 'undertake': 1.1501344425010824e-05, 'selects': 4.929147610718925e-06, 'queries': 3.2860984071459497e-06, 'far-reaching': 4.107623008932437e-06, 'alter': 1.3144393628583799e-05, 'movements': 3.861165628396491e-05, 'satisfactorily': 9.85829522143785e-06, 'foreseeable': 4.107623008932437e-06, 'Perlman': 3.2860984071459497e-06, 'Railroads': 1.6430492035729749e-06, 'merge': 9.036770619651361e-06, 'Round': 4.929147610718925e-06, "O's": 1.6430492035729749e-06, 'B': 8.46170339840082e-05, 'weaken': 5.750672212505412e-06, 'Bad': 3.2860984071459497e-06, 'O': 2.1359639646448672e-05, 'consolidation': 8.215246017864873e-06, 'precarious': 7.393721416078387e-06, '1930s': 2.4645738053594624e-06, 'Tuohy': 1.6430492035729749e-06, 'cross-examination': 1.6430492035729749e-06, 'examiner': 5.750672212505412e-06, 'ICC': 1.6430492035729749e-06, 'rebuffed': 4.107623008932437e-06, 'railroads': 1.3144393628583799e-05, 'three-way': 2.4645738053594624e-06, 'O-B': 1.6430492035729749e-06, "hemisphere's": 1.6430492035729749e-06, 'borrowing': 5.750672212505412e-06, 'rose': 5.8328246726840606e-05, "Tuesday's": 1.6430492035729749e-06, 'weekly': 1.97165904428757e-05, '$1.1': 4.107623008932437e-06, '90-day': 1.6430492035729749e-06, '2.325%': 1.6430492035729749e-06, '2.295%': 1.6430492035729749e-06, 'Consumer': 3.2860984071459497e-06, 'outlook': 2.9574885664313547e-05, 'polled': 1.6430492035729749e-06, 'one-third': 1.232286902679731e-05, 'resistance': 3.861165628396491e-05, 'buying': 2.464573805359462e-05, 'renting': 4.929147610718925e-06, 'narrowed': 8.215246017864873e-06, 'saturation': 4.929147610718925e-06, 'Increase': 1.6430492035729749e-06, "Center's": 1.6430492035729749e-06, "builders'": 2.4645738053594624e-06, 'Expect': 1.6430492035729749e-06, 'presumably': 2.875336106252706e-05, 'jump': 1.97165904428757e-05, "1960's": 6.5721968142918994e-06, '1,257,700': 1.6430492035729749e-06, 'non-farm': 1.6430492035729749e-06, 'Starts': 1.6430492035729749e-06, 'discrepancy': 9.85829522143785e-06, 'Leaders': 1.6430492035729749e-06, 'invited': 2.218116424823516e-05, 'businessmen': 1.1501344425010824e-05, 'Elburn': 1.6430492035729749e-06, 'Farm': 1.0679819823224336e-05, 'dealer': 2.0538115044662184e-05, 'Houtz': 2.4645738053594624e-06, 'tilts': 2.4645738053594624e-06, 'battered': 8.215246017864873e-06, 'chair': 5.504214831969465e-05, 'pickers': 3.2860984071459497e-06, 'Ehlers': 1.6430492035729749e-06, 'competitor': 3.2860984071459497e-06, '50%': 1.5608967433943262e-05, '20%': 4.929147610718925e-06, 'Though': 5.4220623717908165e-05, 'experiencing': 6.5721968142918994e-06, 'climbing': 9.036770619651361e-06, 'Paradoxically': 3.2860984071459497e-06, 'slash': 3.2860984071459497e-06, 'output': 2.9574885664313547e-05, 'acreage': 9.036770619651361e-06, 'lowest': 1.1501344425010824e-05, 'fertilizer': 4.107623008932437e-06, 'yields': 6.5721968142918994e-06, 'Fields': 3.2860984071459497e-06, 'dense': 8.215246017864873e-06, 'efficiently': 7.393721416078387e-06, 'supports': 1.232286902679731e-05, 'pushing': 1.4787442832156774e-05, 'Seven': 1.6430492035729746e-05, 'averaging': 8.215246017864873e-06, '10%': 6.5721968142918994e-06, '13%': 1.6430492035729749e-06, 'retail': 1.6430492035729746e-05, '14%': 3.2860984071459497e-06, 'Keeler': 3.2860984071459497e-06, 'Harvester': 3.2860984071459497e-06, 'lag': 3.2860984071459497e-06, '5%': 5.750672212505412e-06, 'sections': 5.4220623717908165e-05, 'upswing': 2.4645738053594624e-06, 'drought-seared': 1.6430492035729749e-06, 'notable': 1.6430492035729746e-05, 'exceptions': 2.1359639646448672e-05, 'uptrend': 1.6430492035729749e-06, 'extends': 1.0679819823224336e-05, 'yardstick': 2.4645738053594624e-06, 'Farmers': 6.5721968142918994e-06, 'tractors': 6.5721968142918994e-06, 'implements': 4.107623008932437e-06, 'gasoline': 9.85829522143785e-06, 'appliances': 7.393721416078387e-06, 'chemicals': 4.107623008932437e-06, 'haggling': 3.2860984071459497e-06, "aren't": 2.6288787257167598e-05, 'conscious': 3.861165628396491e-05, 'Sioux': 7.393721416078387e-06, 'Iowa': 4.107623008932437e-06, 'picker': 1.6430492035729749e-06, '$2,700': 1.6430492035729749e-06, "Dealers'": 3.2860984071459497e-06, '25%': 5.750672212505412e-06, 'affects': 1.6430492035729746e-05, 'shipments': 1.3144393628583799e-05, 'Tractor': 2.4645738053594624e-06, 'Massey-Ferguson': 1.6430492035729749e-06, 'Ltd.': 4.929147610718925e-06, 'Toronto': 5.750672212505412e-06, '2,418': 1.6430492035729749e-06, '869': 1.6430492035729749e-06, 'Staiger': 1.6430492035729749e-06, 'inventories': 1.0679819823224336e-05, 'stepped-up': 3.2860984071459497e-06, 'shortages': 3.2860984071459497e-06, 'Merritt': 2.4645738053594624e-06, 'Motor': 3.2860984071459497e-06, 'demanding': 1.6430492035729746e-05, 'delivery': 1.4787442832156774e-05, 'trailed': 7.393721416078387e-06, 'year-earlier': 2.4645738053594624e-06, "Government's": 9.036770619651361e-06, 'feed': 9.693990301080551e-05, 'grain': 2.300268885002165e-05, 'cutback': 1.6430492035729749e-06, 'planted': 9.85829522143785e-06, 'Nearly': 6.5721968142918994e-06, 'chiefly': 1.8073541239302723e-05, 'Total': 2.4645738053594624e-06, 'forecast': 9.036770619651361e-06, '129%': 1.6430492035729749e-06, '1947-49': 1.6430492035729749e-06, "farmers'": 4.107623008932437e-06, 'economists': 4.929147610718925e-06, '$1.4': 1.6430492035729749e-06, 'subsidies': 2.4645738053594624e-06, 'incentive': 1.0679819823224336e-05, '$639': 1.6430492035729749e-06, 'receipts': 6.5721968142918994e-06, 'marketings': 3.2860984071459497e-06, '$39.5': 1.6430492035729749e-06, '$1.5': 1.6430492035729749e-06, 'Net': 4.107623008932437e-06, '$12.7': 1.6430492035729749e-06, 'index': 6.325739433755954e-05, 'mid-September': 3.2860984071459497e-06, '242%': 1.6430492035729749e-06, '1910-14': 1.6430492035729749e-06, '237%': 1.6430492035729749e-06, 'mid-July': 1.6430492035729749e-06, 'depletion': 5.750672212505412e-06, 'mid-1960': 1.6430492035729749e-06, 'pipe': 1.7252016637516235e-05, 'clay': 6.982959115185143e-05, 'mined': 3.2860984071459497e-06, 'figuring': 5.750672212505412e-06, 'taxable': 6.5721968142918994e-06, 'deducted': 4.107623008932437e-06, 'percentages': 5.750672212505412e-06, 'materials': 7.804483716971631e-05, 'producers': 1.232286902679731e-05, 'assets': 1.1501344425010824e-05, 'adjourning': 1.6430492035729749e-06, 'softened': 6.5721968142918994e-06, "ruling's": 1.6430492035729749e-06, 'prior-year': 1.6430492035729749e-06, 'returns': 2.6288787257167598e-05, 'clay-mining': 1.6430492035729749e-06, 'allows': 1.6430492035729746e-05, 'mineral': 9.85829522143785e-06, 'signing': 6.5721968142918994e-06, 'industries': 2.3824213451808133e-05, 'Charitable': 1.6430492035729749e-06, 'deductions': 9.85829522143785e-06, 'I.R.S.': 2.4645738053594624e-06, 'furnish': 2.464573805359462e-05, 'particulars': 4.929147610718925e-06, 'Requests': 3.2860984071459497e-06, 'substantiation': 1.6430492035729749e-06, 'suspects': 4.107623008932437e-06, 'donor': 4.929147610718925e-06, 'material': 0.0001437668053126353, 'revenuers': 1.6430492035729749e-06, 'deduction': 8.215246017864873e-06, 'deductibility': 1.6430492035729749e-06, 'realty': 1.6430492035729749e-06, 'owed': 1.3144393628583799e-05, 'disposed': 1.5608967433943262e-05, 'liquidation': 1.0679819823224336e-05, 'disallowed': 1.6430492035729749e-06, 'invoking': 4.107623008932437e-06, 'bars': 3.286098407145949e-05, 'incurred': 8.215246017864873e-06, 'tax-freedom': 1.6430492035729749e-06, 'stemmed': 3.2860984071459497e-06, 'liquidations': 1.6430492035729749e-06, 'Ninth': 4.929147610718925e-06, 'challenges': 4.107623008932437e-06, 'year-old': 1.6430492035729749e-06, 'creating': 2.464573805359462e-05, '$1,800': 1.6430492035729749e-06, 'termination': 7.393721416078387e-06, 'cadet': 2.4645738053594624e-06, 'taxed': 1.1501344425010824e-05, 'entirety': 6.5721968142918994e-06, 'taxpayer': 9.85829522143785e-06, 'pad': 7.393721416078387e-06, 'invoices': 1.6430492035729749e-06, "taxpayer's": 2.4645738053594624e-06, 'kickbacks': 1.6430492035729749e-06, 'commenting': 3.2860984071459497e-06, 'province': 1.232286902679731e-05, 'morality': 2.464573805359462e-05, 'transaction': 4.929147610718925e-06, 'kerosene': 4.929147610718925e-06, 'boats': 3.94331808857514e-05, 'railing': 3.2860984071459497e-06, 'vessel': 1.3144393628583799e-05, "manufacturers'": 2.4645738053594624e-06, 'household-type': 1.6430492035729749e-06, 'Hiring': 1.6430492035729749e-06, "one's": 5.2577574514335196e-05, 'tax-aided': 1.6430492035729749e-06, 'spouse': 3.2860984071459497e-06, 'entitled': 4.6826902301829785e-05, 'distributions': 9.036770619651361e-06, 'coverage': 1.97165904428757e-05, 'tax-free': 7.393721416078387e-06, 'frequent': 2.875336106252706e-05, 'pitfall': 3.2860984071459497e-06, 'warn': 9.85829522143785e-06, 'declare': 7.393721416078387e-06, 'discriminatory': 3.2860984071459497e-06, 'Possible': 1.6430492035729749e-06, 'upshots': 1.6430492035729749e-06, 'briefs': 1.6430492035729749e-06, 'Voters': 2.4645738053594624e-06, 'imposition': 4.929147610718925e-06, '2%': 8.215246017864873e-06, '1%': 2.4645738053594624e-06, 'supreme': 1.5608967433943262e-05, 'applied': 8.790313239115415e-05, 'wholly-owned': 2.4645738053594624e-06, 'subsidiary': 6.5721968142918994e-06, 'divulging': 1.6430492035729749e-06, 'identity': 4.60053777000433e-05, 'parent': 1.3144393628583799e-05, 'computed': 1.8073541239302723e-05, 'non-profit': 3.2860984071459497e-06, 'realized': 5.750672212505412e-05, 'entities': 9.85829522143785e-06, 'edged': 6.5721968142918994e-06, 'seasonally': 1.6430492035729749e-06, 'adjusted': 1.97165904428757e-05, '$18.2': 1.6430492035729749e-06, '$18.9': 2.4645738053594624e-06, 'chart': 1.4787442832156774e-05, 'seasonal': 6.5721968142918994e-06, 'adjustment': 2.7110311858954083e-05, 'pre-Easter': 1.6430492035729749e-06, 'inclined': 1.8073541239302723e-05, 'surge': 8.215246017864873e-06, 'Adjusted': 9.036770619651361e-06, 'steep': 1.1501344425010824e-05, '2.5%': 1.6430492035729749e-06, '$17.8': 1.6430492035729749e-06, 'Greer': 5.750672212505412e-06, 'tasteful': 2.4645738053594624e-06, 'sophisticated': 2.218116424823516e-05, 'Neiman-Marcus': 4.107623008932437e-06, 'titian-haired': 1.6430492035729749e-06, 'personification': 3.2860984071459497e-06, 'Exposition': 2.4645738053594624e-06, 'Ballroom': 1.6430492035729749e-06, 'Ferdinando': 1.6430492035729749e-06, 'Sarmi': 1.6430492035729749e-06, 'creator': 5.750672212505412e-06, 'fashions': 4.107623008932437e-06, 'Rolnick': 1.6430492035729749e-06, 'Byer-Rolnick': 1.6430492035729749e-06, 'Hat': 1.6430492035729749e-06, 'designer': 1.5608967433943262e-05, 'Wragge': 1.6430492035729749e-06, 'casuals': 1.6430492035729749e-06, 'Vivier': 1.6430492035729749e-06, 'Dior': 1.6430492035729749e-06, 'shoes': 3.6968607080391934e-05, 'France': 6.243586973577305e-05, 'toes': 1.6430492035729746e-05, 'lowered': 1.8073541239302723e-05, 'heels': 1.8073541239302723e-05, 'revolutionized': 3.2860984071459497e-06, 'shoe': 1.232286902679731e-05, 'ebony': 3.2860984071459497e-06, 'plaques': 4.107623008932437e-06, 'luncheons': 2.4645738053594624e-06, 'Marcus': 6.5721968142918994e-06, 'Beneficiary': 1.6430492035729749e-06, 'showings': 2.4645738053594624e-06, 'Crippled': 1.6430492035729749e-06, 'Cerebral': 1.6430492035729749e-06, 'Palsy': 1.6430492035729749e-06, 'Treatment': 4.929147610718925e-06, 'loves': 1.6430492035729746e-05, 'clothes': 7.229416495721089e-05, 'carefully': 6.982959115185143e-05, 'prefers': 4.929147610718925e-06, 'timeless': 2.4645738053594624e-06, 'Occasionally': 1.3965918230370285e-05, 'deserts': 4.929147610718925e-06, 'piece': 0.00010679819823224337, 'simply': 0.0001371946084983434, 'Fogelson': 1.6430492035729749e-06, 'commuting': 4.929147610718925e-06, 'Bel-Air': 1.6430492035729749e-06, 'ranch': 2.218116424823516e-05, 'Pecos': 1.6430492035729749e-06, 'Mexico': 1.6430492035729746e-05, 'Therefore': 4.107623008932437e-05, 'wardrobe': 7.393721416078387e-06, 'mobile': 2.1359639646448672e-05, "moment's": 4.929147610718925e-06, 'shake': 1.3965918230370285e-05, 'wrinkle': 2.4645738053594624e-06, 'creations': 3.2860984071459497e-06, 'designers': 7.393721416078387e-06, 'pictures': 5.175604991254871e-05, 'Norell': 2.4645738053594624e-06, 'likes': 1.6430492035729746e-05, 'classic': 2.9574885664313547e-05, 'chemise': 1.6430492035729749e-06, 'jersey': 1.6430492035729749e-06, 'Irene': 2.4645738053594624e-06, 'long-bodied': 1.6430492035729749e-06, 'silhouette': 4.107623008932437e-06, 'femininity': 2.4645738053594624e-06, 'charm': 2.1359639646448672e-05, 'Ceil': 1.6430492035729749e-06, 'Balenciaga': 1.6430492035729749e-06, 'struggling': 1.7252016637516235e-05, 'actress': 4.929147610718925e-06, 'reminisces': 1.6430492035729749e-06, 'drama': 3.6147082478605446e-05, 'simplicity': 1.3965918230370285e-05, 'appreciate': 2.218116424823516e-05, 'lively': 2.218116424823516e-05, 'glowing': 9.036770619651361e-06, 'pinks': 2.4645738053594624e-06, 'reds': 2.4645738053594624e-06, 'greens': 4.107623008932437e-06, 'Scotch-Irish-Scandinavian': 1.6430492035729749e-06, 'descent': 9.036770619651361e-06, 'Down': 6.5721968142918994e-06, 'Ireland': 1.1501344425010824e-05, "father's": 3.203945946967301e-05, 'Orkney': 1.6430492035729749e-06, 'Isles': 4.107623008932437e-06, 'Reared': 1.6430492035729749e-06, 'postgraduate': 3.2860984071459497e-06, 'Grenoble': 1.6430492035729749e-06, 'Repertory': 1.6430492035729749e-06, 'starring': 2.4645738053594624e-06, 'Golden': 1.4787442832156774e-05, 'Arrow': 1.6430492035729749e-06, 'Noel': 7.393721416078387e-06, 'Coward': 4.107623008932437e-06, 'Theater': 1.232286902679731e-05, 'motion-picture': 2.4645738053594624e-06, 'Goodbye': 2.4645738053594624e-06, 'Chips': 1.6430492035729749e-06, 'Random': 2.4645738053594624e-06, 'Harvest': 2.4645738053594624e-06, 'Madame': 1.3144393628583799e-05, 'Curie': 2.4645738053594624e-06, 'Pride': 2.4645738053594624e-06, 'Prejudice': 1.6430492035729749e-06, 'Forsythe': 5.750672212505412e-06, 'Saga': 1.6430492035729749e-06, 'Miniver': 1.6430492035729749e-06, '1943': 1.0679819823224336e-05, 'Honors': 1.6430492035729749e-06, 'portrayal': 6.5721968142918994e-06, 'Sunrise': 2.4645738053594624e-06, 'Campobello': 1.6430492035729749e-06, 'Auntie': 3.2860984071459497e-06, 'Mame': 1.6430492035729749e-06, 'Captain': 3.450403327503247e-05, "Brassbound's": 1.6430492035729749e-06, 'Conversion': 1.6430492035729749e-06, 'Camille': 1.6430492035729749e-06, "Tussard's": 1.6430492035729749e-06, 'Waxworks': 1.6430492035729749e-06, 'princess': 4.929147610718925e-06, 'Kiowa': 1.6430492035729749e-06, 'tribe': 4.107623008932437e-06, 'colonel': 9.85829522143785e-06, 'adept': 4.107623008932437e-06, 'skeet': 2.4645738053594624e-06, 'trout': 1.6430492035729749e-06, 'fishing': 2.464573805359462e-05, 'Afro-Cuban': 1.6430492035729749e-06, 'Oriental': 1.3144393628583799e-05, 'archaeology': 9.036770619651361e-06, 'serves': 3.0396410266100035e-05, 'Symphony': 1.97165904428757e-05, 'Orchestra': 1.7252016637516235e-05, 'trustees': 1.232286902679731e-05, 'Museum': 1.3965918230370285e-05, 'Fine': 1.0679819823224336e-05, 'Tuberculosis': 1.6430492035729749e-06, 'Associations': 3.2860984071459497e-06, 'oilman-rancher': 1.6430492035729749e-06, 'supporters': 7.393721416078387e-06, 'Boys': 9.85829522143785e-06, 'patrons': 8.215246017864873e-06, 'vivid': 2.1359639646448672e-05, 'opera': 2.300268885002165e-05, 'colony': 2.3824213451808133e-05, 'flourishes': 4.107623008932437e-06, 'Gander': 1.6430492035729749e-06, 'coeds': 1.6430492035729749e-06, 'ogled': 2.4645738053594624e-06, 'dutifully': 2.4645738053594624e-06, 'gravy': 4.107623008932437e-06, 'Are': 5.093452531076222e-05, 'Stay': 5.750672212505412e-06, "SMU's": 2.4645738053594624e-06, 'craven': 1.6430492035729749e-06, 'women-trodden': 1.6430492035729749e-06, 'apt': 1.3144393628583799e-05, 'wrangler': 3.2860984071459497e-06, 'buys': 9.85829522143785e-06, 'groceries': 2.4645738053594624e-06, '32,000': 1.6430492035729749e-06, 'Tell': 1.97165904428757e-05, 'moans': 1.6430492035729749e-06, 'dishes': 1.8073541239302723e-05, 'snacks': 3.2860984071459497e-06, 'cafeterias': 2.4645738053594624e-06, 'McElvaney': 1.6430492035729749e-06, 'Dining': 1.6430492035729749e-06, "athlete's": 1.6430492035729749e-06, 'tables': 3.203945946967301e-05, '195': 2.4645738053594624e-06, 'ruggedly': 1.6430492035729749e-06, 'pester': 1.6430492035729749e-06, 'Hockaday': 1.6430492035729749e-06, 'charming': 1.97165904428757e-05, 'spice': 4.107623008932437e-06, 'chow': 2.4645738053594624e-06, 'mastodons': 1.6430492035729749e-06, 'Mostly': 5.750672212505412e-06, 'meat': 3.779013168217842e-05, 'potatoes': 1.3144393628583799e-05, 'go-go-go': 1.6430492035729749e-06, 'fat': 4.7648426903616267e-05, 'hides': 4.929147610718925e-06, 'mayonnaise': 2.4645738053594624e-06, "athletes'": 1.6430492035729749e-06, 'stomachs': 3.2860984071459497e-06, 'jumpy': 2.4645738053594624e-06, 'physical': 0.00010844124743581633, 'duress': 1.6430492035729749e-06, 'bans': 1.6430492035729749e-06, 'flavored': 2.4645738053594624e-06, 'condiments': 2.4645738053594624e-06, 'plates': 1.889506584108921e-05, 'hamburger': 4.929147610718925e-06, 'hotdogs': 1.6430492035729749e-06, 'steak': 7.393721416078387e-06, 'maybe': 5.668519752326763e-05, 'pizza': 3.2860984071459497e-06, 'broccoli': 1.6430492035729749e-06, 'cauliflower': 1.6430492035729749e-06, 'stoked': 1.6430492035729749e-06, 'Truman': 1.1501344425010824e-05, 'Cabot': 2.4645738053594624e-06, 'Morocco': 4.929147610718925e-06, 'Clement': 1.6430492035729749e-06, 'Atlee': 1.6430492035729749e-06, 'shiny': 3.2860984071459497e-06, 'characters': 3.0396410266100035e-05, 'Tibetan': 3.2860984071459497e-06, 'monks': 9.036770619651361e-06, 'saffron': 1.6430492035729749e-06, 'robes': 4.107623008932437e-06, 'cafeteria': 1.232286902679731e-05, 'Chicken': 4.929147610718925e-06, 'Cadillac': 8.215246017864873e-06, 'Use': 2.1359639646448672e-05, '6-ounce': 1.6430492035729749e-06, 'chicken': 2.7110311858954083e-05, 'breast': 9.85829522143785e-06, 'Salt': 4.929147610718925e-06, 'pepper': 1.1501344425010824e-05, 'Dip': 1.6430492035729749e-06, 'melted': 8.215246017864873e-06, 'butter': 2.218116424823516e-05, 'flour': 7.393721416078387e-06, '2-inch': 1.6430492035729749e-06, 'baking': 4.107623008932437e-06, 'Bake': 9.036770619651361e-06, '250-275': 1.6430492035729749e-06, 'lightly': 2.546726265538111e-05, 'brown': 5.4220623717908165e-05, 'Add': 8.215246017864873e-06, 'cream': 1.7252016637516235e-05, 'seasoned': 4.929147610718925e-06, 'onion': 1.3144393628583799e-05, 'juice': 9.85829522143785e-06, 'breasts': 8.215246017864873e-06, 'one-half': 8.215246017864873e-06, 'saute': 1.6430492035729749e-06, 'mushrooms': 2.4645738053594624e-06, 'fresh': 6.325739433755954e-05, 'canned': 4.929147610718925e-06, 'Sprinkle': 1.6430492035729749e-06, 'Serve': 4.107623008932437e-06, 'slow-baked': 1.6430492035729749e-06, 'ham': 1.3144393628583799e-05, 'sprinkle': 5.750672212505412e-06, 'seedless': 1.6430492035729749e-06, 'Leave': 6.5721968142918994e-06, 'Pontiac': 1.6430492035729749e-06, 'Contemporary': 1.6430492035729749e-06, 'Danish': 7.393721416078387e-06, 'straight-line': 1.6430492035729749e-06, 'sculptured': 4.929147610718925e-06, 'facets': 8.215246017864873e-06, 'warmth': 2.3824213451808133e-05, 'dignity': 2.875336106252706e-05, 'utter': 1.1501344425010824e-05, 'livability': 1.6430492035729749e-06, 'avant': 1.6430492035729749e-06, 'garde': 1.6430492035729749e-06, 'indication': 1.6430492035729746e-05, 'contemporary': 5.2577574514335196e-05, 'boxy': 1.6430492035729749e-06, "'20's": 1.6430492035729749e-06, "'40's": 1.6430492035729749e-06, 'Heritage': 5.750672212505412e-06, 'correlated': 3.2860984071459497e-06, 'Sanger-Harris': 1.6430492035729749e-06, 'Studio': 3.2860984071459497e-06, 'woods': 2.0538115044662184e-05, 'assembled': 2.0538115044662184e-05, 'Called': 4.929147610718925e-06, 'Perennian': 2.4645738053594624e-06, 'lasting': 1.1501344425010824e-05, 'truly': 4.6826902301829785e-05, 'avoids': 3.2860984071459497e-06, 'monotony': 6.5721968142918994e-06, 'pieces': 7.640178796614333e-05, 'wormy': 1.6430492035729749e-06, 'chestnut': 1.6430492035729749e-06, 'pecan': 1.6430492035729749e-06, 'varieties': 7.393721416078387e-06, 'burl': 2.4645738053594624e-06, 'hand-woven': 2.4645738053594624e-06, 'Philippine': 3.2860984071459497e-06, 'ceramic': 7.393721416078387e-06, 'tiles': 4.929147610718925e-06, 'marble': 1.5608967433943262e-05, 'texture': 1.3144393628583799e-05, 'permanence': 2.4645738053594624e-06, 'tiled': 4.107623008932437e-06, 'floors': 1.0679819823224336e-05, 'paneled': 2.4645738053594624e-06, 'walls': 5.750672212505412e-05, 'windows': 4.436232849647032e-05, 'outdoors': 5.750672212505412e-06, 'custom-design': 1.6430492035729749e-06, 'Composite': 4.107623008932437e-06, "Titche's": 1.6430492035729749e-06, 'decorating': 3.2860984071459497e-06, 'variation': 2.7110311858954083e-05, 'Rounded': 1.6430492035729749e-06, 'decorative': 7.393721416078387e-06, 'insets': 1.6430492035729749e-06, 'softening': 5.750672212505412e-06, 'arches': 6.5721968142918994e-06, 'tops': 9.036770619651361e-06, 'inlaid': 1.6430492035729749e-06, 'Macassar': 1.6430492035729749e-06, 'acacia': 3.2860984071459497e-06, 'high-legged': 1.6430492035729749e-06, 'easy-to-reach': 1.6430492035729749e-06, 'snack': 5.750672212505412e-06, 'tucked': 5.750672212505412e-06, 'recessed': 2.4645738053594624e-06, 'arched': 9.85829522143785e-06, 'decorate': 2.4645738053594624e-06, '60-inch': 1.6430492035729749e-06, 'functional': 2.0538115044662184e-05, 'chests': 4.107623008932437e-06, 'dressers': 2.4645738053594624e-06, 'canted': 1.6430492035729749e-06, 'headboard': 1.6430492035729749e-06, 'heavier': 1.3144393628583799e-05, 'styling': 1.6430492035729749e-06, 'door-fronted': 1.6430492035729749e-06, 'poster': 3.2860984071459497e-06, 'mirror': 2.300268885002165e-05, 'Colorful': 1.6430492035729749e-06, 'Eastman': 1.6430492035729749e-06, 'Chromspun': 1.6430492035729749e-06, 'fabrics': 2.3824213451808133e-05, 'magenta': 2.4645738053594624e-06, 'tones': 1.3144393628583799e-05, 'predominating': 1.6430492035729749e-06, 'shades': 9.85829522143785e-06, 'Scotchgard': 1.6430492035729749e-06, 'finish': 3.1217934867886523e-05, 'resist': 1.889506584108921e-05, 'soil': 4.354080389468383e-05, 'wrinkles': 6.5721968142918994e-06, 'Design': 4.929147610718925e-06, 'rooted': 7.393721416078387e-06, 'forms': 0.00010515514902867039, 'wearing': 3.861165628396491e-05, 'label': 1.6430492035729746e-05, "Drexel's": 1.6430492035729749e-06, 'spider-leg': 1.6430492035729749e-06, 'pedestal': 4.929147610718925e-06, 'lustrous': 1.6430492035729749e-06, 'walnut': 3.2860984071459497e-06, 'See-through': 1.6430492035729749e-06, 'combines': 6.5721968142918994e-06, 'nostalgic': 4.929147610718925e-06, 'ladder': 1.6430492035729746e-05, 'shoji': 1.6430492035729749e-06, 'orange': 1.3965918230370285e-05, 'Dignity': 1.6430492035729749e-06, 'reflecting': 1.3965918230370285e-05, 'substance': 2.546726265538111e-05, 'maturity': 3.0396410266100035e-05, 'hand-screened': 1.6430492035729749e-06, 'wood': 4.2719279292897344e-05, 'tall': 4.436232849647032e-05, 'bookcases': 1.6430492035729749e-06, 'Mellow': 1.6430492035729749e-06, 'bronzy-green-gold': 1.6430492035729749e-06, 'gleam': 4.107623008932437e-06, 'copper': 1.0679819823224336e-05, 'hand-crafted': 1.6430492035729749e-06, 'accessories': 6.5721968142918994e-06, 'reiterate': 1.6430492035729749e-06, 'carpet': 1.1501344425010824e-05, 'wool': 9.036770619651361e-06, 'pile': 1.8073541239302723e-05, 'Vagabonds': 1.6430492035729749e-06, 'Saledo': 3.2860984071459497e-06, 'air-conditioned': 1.6430492035729749e-06, 'Stagecoach': 2.4645738053594624e-06, 'Invitations': 1.6430492035729749e-06, 'dignitaries': 3.2860984071459497e-06, 'Days': 6.5721968142918994e-06, 'Trail': 2.4645738053594624e-06, 'get-together': 2.4645738053594624e-06, 'pool': 9.036770619651362e-05, 'Ginghams': 1.6430492035729749e-06, 'calico': 2.4645738053594624e-06, 'western': 2.875336106252706e-05, 'attire': 5.750672212505412e-06, 'Stetsons': 1.6430492035729749e-06, 'vests': 1.6430492035729749e-06, 'Decorating': 1.6430492035729749e-06, 'yellow': 4.354080389468383e-05, 'bluebonnets': 1.6430492035729749e-06, 'stagecoach': 1.6430492035729749e-06, 'silhouettes': 4.929147610718925e-06, 'sunbonnet': 1.6430492035729749e-06, 'Abell': 1.6430492035729749e-06, 'Messrs': 1.6430492035729749e-06, 'Mmes': 3.2860984071459497e-06, 'McKee': 3.2860984071459497e-06, 'McElyee': 1.6430492035729749e-06, 'Fanning': 1.6430492035729749e-06, 'Roquemore': 2.4645738053594624e-06, 'Darrow': 1.6430492035729749e-06, 'travel': 4.60053777000433e-05, 'comprised': 6.5721968142918994e-06, 'fun-loving': 2.4645738053594624e-06, 'couples': 1.1501344425010824e-05, 'motto': 4.107623008932437e-06, 'Go': 1.8073541239302723e-05, 'Somewhere': 1.1501344425010824e-05, 'Anywhere': 2.4645738053594624e-06, 'climaxed': 2.4645738053594624e-06, 'chartered': 4.107623008932437e-06, 'Las': 4.929147610718925e-06, 'Vegas': 4.929147610718925e-06, 'Jamaica': 2.4645738053594624e-06, 'buses': 6.5721968142918994e-06, 'Mineral': 1.6430492035729749e-06, 'Wells': 6.5721968142918994e-06, 'Kerrville': 1.6430492035729749e-06, 'railway': 9.036770619651361e-06, 'vicinity': 5.750672212505412e-06, 'Serving': 1.6430492035729749e-06, 'Schmalzried': 1.6430492035729749e-06, 'yearbook': 1.6430492035729749e-06, 'scrapbook': 1.6430492035729749e-06, 'cookie': 3.2860984071459497e-06, 'caramel': 1.6430492035729749e-06, 'chocolate': 8.215246017864873e-06, 'frosting': 1.6430492035729749e-06, 'Pillsbury': 1.6430492035729749e-06, 'Bake-Off': 1.6430492035729749e-06, 'Reese': 3.2860984071459497e-06, '23-year-old': 1.6430492035729749e-06, 'Hilton': 3.2860984071459497e-06, 'bake-offs': 1.6430492035729749e-06, 'finals': 3.2860984071459497e-06, 'Clara': 3.2860984071459497e-06, 'Hawaiian': 5.750672212505412e-06, 'rich': 5.750672212505412e-05, 'yeast': 3.2860984071459497e-06, 'bread': 3.450403327503247e-05, 'coconut': 5.750672212505412e-06, 'vanilla': 1.6430492035729749e-06, 'glaze': 8.215246017864873e-06, 'Wellsville': 1.6430492035729749e-06, 'baked': 7.393721416078387e-06, 'Bake-off': 1.6430492035729749e-06, 'dreamed': 1.6430492035729746e-05, 'recipe': 7.393721416078387e-06, 'liked': 4.8469951505402755e-05, 'photographing': 2.4645738053594624e-06, 'finalist': 1.6430492035729749e-06, 'Bolker': 2.4645738053594624e-06, 'Chandler': 2.7110311858954083e-05, 'Building': 1.1501344425010824e-05, 'heads': 3.532555787681896e-05, 'arts': 3.532555787681896e-05, 'Welton': 1.6430492035729749e-06, 'Becket': 2.4645738053594624e-06, 'architect': 1.6430492035729746e-05, 'slides': 4.929147610718925e-06, 'renderings': 1.6430492035729749e-06, 'three-building': 1.6430492035729749e-06, 'Foliage': 4.107623008932437e-06, 'foliage': 7.393721416078387e-06, 'matched': 1.3965918230370285e-05, 'reservations': 8.215246017864873e-06, 'Messrs.': 3.2860984071459497e-06, 'Mmes.': 2.4645738053594624e-06, 'Cott': 1.6430492035729749e-06, 'Niven': 1.6430492035729749e-06, 'Bricker': 1.6430492035729749e-06, 'Stetson': 2.4645738053594624e-06, 'Drs.': 4.929147610718925e-06, 'Robbins': 5.750672212505412e-06, 'Lafe': 1.6430492035729749e-06, 'Ludwig': 3.2860984071459497e-06, 'Leroy': 2.4645738053594624e-06, 'Watson': 3.779013168217842e-05, 'Swim': 4.107623008932437e-06, '75th': 1.6430492035729749e-06, 'Wilshire': 2.4645738053594624e-06, 'originating': 3.2860984071459497e-06, 'Midwest': 9.85829522143785e-06, 'passengers': 1.8073541239302723e-05, 'practiced': 7.393721416078387e-06, '1917': 9.036770619651361e-06, 'Medical': 3.6968607080391934e-05, 'Examiners': 1.6430492035729749e-06, 'Giving': 3.2860984071459497e-06, 'violin': 9.036770619651361e-06, 'Ilona': 1.6430492035729749e-06, 'Schmidl-Seeberg': 1.6430492035729749e-06, 'tiny': 4.107623008932437e-05, 'Hungarian': 8.215246017864873e-06, 'Fritz': 2.4645738053594624e-06, 'Kreisler': 1.6430492035729749e-06, 'concert': 2.9574885664313547e-05, '10-hour': 1.6430492035729749e-06, 'linen': 5.750672212505412e-06, 'needles': 5.750672212505412e-06, 'yarn': 1.232286902679731e-05, 'Budapest': 7.393721416078387e-06, 'tapestries': 2.4645738053594624e-06, 'continents': 6.5721968142918994e-06, 'uprisings': 2.4645738053594624e-06, 'tapestry': 4.929147610718925e-06, "There's": 4.6826902301829785e-05, '90%': 4.107623008932437e-06, 'logistical': 1.6430492035729749e-06, 'rainy': 4.107623008932437e-06, 'raincoats': 2.4645738053594624e-06, 'finger-paint': 1.6430492035729749e-06, 'grammar': 4.107623008932437e-06, 'Getting': 5.750672212505412e-06, 'Generally': 1.1501344425010824e-05, 'Gloriana': 3.2860984071459497e-06, 'entails': 7.393721416078387e-06, 'Did': 4.1897754691110856e-05, 'grow': 5.2577574514335196e-05, 'hardship': 8.215246017864873e-06, 'pilgrimage': 5.750672212505412e-06, 'streetcar': 1.1501344425010824e-05, 'Sometimes': 4.929147610718924e-05, "weren't": 1.8073541239302723e-05, 'ocean': 2.7110311858954083e-05, 'dismal': 7.393721416078387e-06, 'herself': 0.00010351209982509741, "they'd": 2.0538115044662184e-05, 'rides': 9.036770619651361e-06, 'logic': 1.4787442832156774e-05, 'impeccable': 5.750672212505412e-06, 'fool': 3.1217934867886523e-05, 'capable': 5.3399099116121684e-05, 'legs': 5.586367292148114e-05, 'walks': 1.1501344425010824e-05, 'crackpots': 2.4645738053594624e-06, 'Advance': 3.2860984071459497e-06, 'notices': 8.215246017864873e-06, 'Register': 6.5721968142918994e-06, 'Published': 4.107623008932437e-06, 'Hord': 1.6430492035729749e-06, 'edition': 3.0396410266100035e-05, 'subtitled': 2.4645738053594624e-06, "morning's": 2.4645738053594624e-06, 'postman': 2.4645738053594624e-06, 'Publisher': 2.4645738053594624e-06, 'updated': 3.2860984071459497e-06, 'compact': 1.0679819823224336e-05, 'ever-changing': 4.929147610718925e-06, 'numbers': 0.00010022600141795146, 'addresses': 1.8073541239302723e-05, 'residences': 2.4645738053594624e-06, 'marriages': 2.300268885002165e-05, 'Stars': 4.107623008932437e-06, 'denote': 4.107623008932437e-06, 'Cooper': 1.0679819823224336e-05, 'Coopers': 3.2860984071459497e-06, 'Worrell': 1.6430492035729749e-06, 'Ghormley': 1.6430492035729749e-06, 'Pen': 2.4645738053594624e-06, 'Tudor': 4.107623008932437e-06, 'Carla': 1.3144393628583799e-05, 'Craig': 2.4645738053594624e-06, 'McFarland': 1.6430492035729749e-06, 'Joanne': 1.6430492035729749e-06, 'Curry': 1.6430492035729749e-06, 'Ellsworth': 1.6430492035729749e-06, 'Currys': 1.6430492035729749e-06, 'Hartley': 1.6430492035729749e-06, 'Gregg': 3.2860984071459497e-06, 'Valerie': 1.6430492035729749e-06, 'McAlister': 1.6430492035729749e-06, 'Duque': 1.6430492035729749e-06, 'Elizabeth': 1.3144393628583799e-05, 'Browning': 5.750672212505412e-06, 'Brownings': 1.6430492035729749e-06, 'Cynthia': 2.4645738053594624e-06, 'Ludlow': 1.6430492035729749e-06, 'Flowers': 4.107623008932437e-06, 'Todd': 2.4645738053594624e-06, 'Huntington': 1.6430492035729749e-06, 'Huntingtons': 1.6430492035729749e-06, 'Pasadena': 5.750672212505412e-06, 'listings': 1.6430492035729749e-06, 'Listed': 2.4645738053594624e-06, 'Haskins': 1.6430492035729749e-06, 'Judy': 7.393721416078387e-06, 'McAlester': 1.6430492035729749e-06, 'Pfau': 1.6430492035729749e-06, 'Changes': 4.929147610718925e-06, 'Pauleys': 1.6430492035729749e-06, 'Chantilly': 1.6430492035729749e-06, 'Arden': 3.2860984071459497e-06, 'Moulton': 1.6430492035729749e-06, 'Moultons': 1.6430492035729749e-06, 'Windsor': 2.4645738053594624e-06, 'Beesemyers': 1.6430492035729749e-06, 'Connecticut': 1.4787442832156774e-05, 'residing': 5.750672212505412e-06, 'Raoul': 2.4645738053594624e-06, 'Esnards': 1.6430492035729749e-06, 'exchanged': 6.5721968142918994e-06, 'residence': 2.464573805359462e-05, 'Hazard': 1.6430492035729749e-06, 'Laguna': 2.4645738053594624e-06, 'Wangemans': 1.6430492035729749e-06, 'Ransom': 2.4645738053594624e-06, 'Chases': 2.4645738053594624e-06, 'Oxford': 1.5608967433943262e-05, 'Eng.': 1.6430492035729749e-06, 'Olerichs': 1.6430492035729749e-06, 'Aderholds': 1.6430492035729749e-06, 'Henri': 1.3965918230370285e-05, 'Chapelles': 1.6430492035729749e-06, 'Berteros': 1.6430492035729749e-06, 'Egerton': 1.6430492035729749e-06, 'Crispin': 1.6430492035729749e-06, 'Armisteads': 1.6430492035729749e-06, 'Lockies': 2.4645738053594624e-06, 'Anthony': 1.3965918230370285e-05, 'Longinotti': 1.6430492035729749e-06, 'Newcomers': 3.2860984071459497e-06, 'Carbones': 1.6430492035729749e-06, 'Panama': 4.107623008932437e-06, 'Geddes': 1.6430492035729749e-06, 'MacGregors': 1.6430492035729749e-06, 'Althaus': 1.6430492035729749e-06, "Here's": 9.036770619651361e-06, "child's": 2.7110311858954083e-05, 'execute': 6.5721968142918994e-06, 'puppets': 4.929147610718925e-06, 'lamp': 1.5608967433943262e-05, 'puppet': 5.750672212505412e-06, 'flexible': 2.1359639646448672e-05, 'Displayed': 1.6430492035729749e-06, 'lamps': 5.750672212505412e-06, 'delight': 2.464573805359462e-05, 'accent': 8.215246017864873e-06, 'wired': 9.85829522143785e-06, 'Measure': 4.107623008932437e-06, 'height': 2.875336106252706e-05, 'socket': 3.2860984071459497e-06, 'inches': 7.14726403554244e-05, "puppet's": 1.6430492035729749e-06, 'Make': 2.218116424823516e-05, 'metal': 4.8469951505402755e-05, 'tube': 2.546726265538111e-05, 'inverted': 3.2860984071459497e-06, 'L': 9.85829522143785e-06, 'foot': 5.668519752326763e-05, 'hang': 2.0538115044662184e-05, 'Pulling': 3.2860984071459497e-06, 'manipulate': 5.750672212505412e-06, 'suspend': 3.2860984071459497e-06, 'fixture': 3.2860984071459497e-06, 'tying': 4.929147610718925e-06, 'desired': 4.1897754691110856e-05, 'resting': 1.5608967433943262e-05, 'accord': 8.215246017864873e-06, 'whims': 1.6430492035729749e-06, 'drum': 9.036770619651361e-06, 'shade': 2.300268885002165e-05, 'adequate': 5.4220623717908165e-05, 'sufficiently': 3.532555787681896e-05, 'disharmony': 1.6430492035729749e-06, 'playtime': 1.6430492035729749e-06, 'illustrated': 2.875336106252706e-05, 'reminiscent': 4.107623008932437e-06, 'circus': 5.750672212505412e-06, 'merry-go-round': 1.6430492035729749e-06, 'scalloped': 2.4645738053594624e-06, 'edge': 6.407891893934602e-05, 'appealing': 1.232286902679731e-05, "Today's": 6.5721968142918994e-06, "America's": 1.889506584108921e-05, 'home-owners': 1.6430492035729749e-06, 'decorators': 3.2860984071459497e-06, 'shrewd': 6.5721968142918994e-06, 'cabinetmakers': 1.6430492035729749e-06, 'Colonial': 6.5721968142918994e-06, 'era': 2.464573805359462e-05, 'appreciated': 9.85829522143785e-06, 'antiques': 3.2860984071459497e-06, 'lurked': 3.2860984071459497e-06, 'utilitarian': 3.2860984071459497e-06, "junior's": 1.6430492035729749e-06, 'tricked': 2.4645738053594624e-06, 'nondescript': 4.929147610718925e-06, 'supposedly': 1.0679819823224336e-05, 'knocks': 2.4645738053594624e-06, 'relegated': 5.750672212505412e-06, 'parlor': 1.5608967433943262e-05, 'homemakers': 1.6430492035729749e-06, 'decorator': 4.929147610718925e-06, 'Leland': 2.4645738053594624e-06, 'Alden': 2.4645738053594624e-06, 'Housewives': 1.6430492035729749e-06, 'craftsmen': 4.107623008932437e-06, 'innate': 4.107623008932437e-06, 'Solid': 6.5721968142918994e-06, 'Eighteenth': 4.107623008932437e-06, 'Century': 1.889506584108921e-05, "Escape's": 1.6430492035729749e-06, 'Bonanza': 1.6430492035729749e-06, 'bonanza': 1.6430492035729749e-06, 'versatile': 3.2860984071459497e-06, 'Kings': 4.929147610718925e-06, 'Plus': 4.929147610718925e-06, 'outfit': 1.3965918230370285e-05, 'specializing': 4.107623008932437e-06, 'skits': 1.6430492035729749e-06, 'vocals': 1.6430492035729749e-06, 'comedy': 3.1217934867886523e-05, 'instrumentals': 1.6430492035729749e-06, 'distinctly': 1.0679819823224336e-05, 'displaying': 4.929147610718925e-06, 'spotlights': 1.6430492035729749e-06, 'Ciciulla': 1.6430492035729749e-06, 'flanked': 4.107623008932437e-06, 'Grossman': 1.6430492035729749e-06, 'drums': 1.232286902679731e-05, 'guitar': 1.4787442832156774e-05, 'batch': 4.929147610718925e-06, 'instruments': 2.1359639646448672e-05, 'tuba': 1.6430492035729749e-06, 'tambourine': 2.4645738053594624e-06, 'augment': 2.4645738053594624e-06, 'imagination': 5.4220623717908165e-05, 'props': 5.750672212505412e-06, 'crazy-wonderful': 1.6430492035729749e-06, 'nonsense': 9.036770619651361e-06, 'classed': 2.4645738053594624e-06, 'pure': 4.518385309825681e-05, 'slapstick': 2.4645738053594624e-06, 'rated': 8.215246017864873e-06, 'nightclubs': 3.2860984071459497e-06, 'chalk': 3.2860984071459497e-06, "let's": 2.3824213451808133e-05, 'noise': 3.1217934867886523e-05, 'stick': 3.1217934867886523e-05, 'elsewhere': 3.6968607080391934e-05, 'Bartha': 1.6430492035729749e-06, 'Oceania': 1.6430492035729749e-06, 'Lounge': 3.2860984071459497e-06, 'Cumbancheros': 1.6430492035729749e-06, "O'Clock": 2.4645738053594624e-06, 'Flip': 1.6430492035729749e-06, 'Phillips': 9.85829522143785e-06, 'Fireside': 1.6430492035729749e-06, 'Steak': 2.4645738053594624e-06, 'Ranch': 1.6430492035729749e-06, 'LaSalle': 2.4645738053594624e-06, 'Jolly': 1.6430492035729749e-06, 'accordion': 1.6430492035729749e-06, 'refer': 2.300268885002165e-05, 'Freida': 1.6430492035729749e-06, 'Bahia': 1.6430492035729749e-06, 'Cabana': 1.6430492035729749e-06, 'Sir': 5.093452531076222e-05, 'Judson': 3.2860984071459497e-06, 'brings': 3.368250867324598e-05, 'calypso': 1.6430492035729749e-06, 'capers': 1.6430492035729749e-06, 'Leighton': 1.6430492035729749e-06, 'springing': 1.6430492035729749e-06, 'ringsiders': 1.6430492035729749e-06, 'Rum': 1.6430492035729749e-06, 'Galt': 2.4645738053594624e-06, 'Ocean': 2.4645738053594624e-06, 'Skip': 2.4645738053594624e-06, 'Hovarter': 1.6430492035729749e-06, 'Reno-Lake': 1.6430492035729749e-06, 'Tahoe': 4.107623008932437e-06, 'Rusty': 1.6430492035729749e-06, 'Marskmen': 1.6430492035729749e-06, 'Tune': 1.6430492035729749e-06, 'Toppers': 1.6430492035729749e-06, 'pulling': 1.889506584108921e-05, 'Fike': 2.4645738053594624e-06, 'ex-schoolteacher': 1.6430492035729749e-06, 'pursuing': 6.5721968142918994e-06, 'rhythm': 1.8073541239302723e-05, 'reminiscence': 2.4645738053594624e-06, 'repartee': 1.6430492035729749e-06, 'Winds': 2.4645738053594624e-06, 'sidemen': 1.6430492035729749e-06, 'smoother': 3.2860984071459497e-06, 'substantially': 3.0396410266100035e-05, 'format': 4.929147610718925e-06, 'Kemm': 1.6430492035729749e-06, 'piano': 2.546726265538111e-05, 'Wes': 1.6430492035729749e-06, 'bass': 1.3965918230370285e-05, 'trumpet': 6.5721968142918994e-06, 'Kelly': 1.6430492035729749e-06, 'keyboarding': 1.6430492035729749e-06, "Al's": 2.4645738053594624e-06, "Maestro's": 2.4645738053594624e-06, 'personality': 3.94331808857514e-05, 'rapport': 3.2860984071459497e-06, 'skips': 1.6430492035729749e-06, 'boogie': 1.6430492035729749e-06, 'accompanying': 1.4787442832156774e-05, 'bouncy': 1.6430492035729749e-06, 'frantic': 9.85829522143785e-06, 'appraisal': 7.393721416078387e-06, 'Cafe': 4.929147610718925e-06, 'ownership': 1.889506584108921e-05, 'Kissak': 1.6430492035729749e-06, 'bossman': 1.6430492035729749e-06, 'Spot': 1.6430492035729749e-06, 'retains': 8.215246017864873e-06, 'decor': 4.107623008932437e-06, 'crystal': 1.4787442832156774e-05, 'chandeliers': 1.6430492035729749e-06, 'undergone': 9.036770619651361e-06, 'remodeling': 2.4645738053594624e-06, 'Latter': 2.4645738053594624e-06, 'Chef': 1.6430492035729749e-06, 'Yokel': 1.6430492035729749e-06, 'specialize': 3.2860984071459497e-06, 'steaks': 4.107623008932437e-06, 'chops': 3.2860984071459497e-06, 'prime': 3.1217934867886523e-05, 'beef': 2.546726265538111e-05, "Tom's": 4.107623008932437e-06, 'dish': 1.3144393628583799e-05, 'stuffed': 4.929147610718925e-06, 'shrimp': 2.4645738053594624e-06, 'Bandstand': 1.6430492035729749e-06, 'features': 6.654349274470547e-05, 'DeCicco': 1.6430492035729749e-06, 'pianist': 1.232286902679731e-05, 'Tic-Tac-Toe': 1.6430492035729749e-06, 'Heilman': 2.4645738053594624e-06, "Hubie's": 1.6430492035729749e-06, 'Lorain': 1.6430492035729749e-06, 'preclude': 4.107623008932437e-06, 'reopening': 1.6430492035729749e-06, 'Restaurant': 4.107623008932437e-06, 'Sunman': 1.6430492035729749e-06, 'cornering': 1.6430492035729749e-06, 'Lauderdale': 5.750672212505412e-06, 'Vivacious': 1.6430492035729749e-06, 'redhead': 6.5721968142918994e-06, 'debuts': 1.6430492035729749e-06, "Governor's": 4.929147610718925e-06, 'brunches': 1.6430492035729749e-06, 'buffets': 1.6430492035729749e-06, 'Mackey': 3.2860984071459497e-06, "Airline's": 1.6430492035729749e-06, 'Sunshine': 1.6430492035729749e-06, 'Bimini': 1.6430492035729749e-06, 'plotting': 2.4645738053594624e-06, 'month-long': 1.6430492035729749e-06, 'Drinkhouse': 1.6430492035729749e-06, "Pal's": 1.6430492035729749e-06, 'reunion': 9.036770619651361e-06, 'Playboy': 1.6430492035729749e-06, "Club's": 2.4645738053594624e-06, 'Gould': 2.4645738053594624e-06, "hasn't": 1.7252016637516235e-05, 'chum': 1.6430492035729749e-06, 'wash': 2.793183646074057e-05, 'Mexican': 2.0538115044662184e-05, 'Tex': 1.6430492035729749e-06, 'Which': 1.8073541239302723e-05, 'understandable': 1.1501344425010824e-05, "you've": 3.6147082478605446e-05, 'sampled': 6.5721968142918994e-06, 'peppery': 3.2860984071459497e-06, 'Pualani': 1.6430492035729749e-06, 'Randy': 1.6430492035729749e-06, 'Avon': 1.6430492035729749e-06, 'Searles': 1.6430492035729749e-06, 'Papa': 3.368250867324598e-05, 'Gill': 2.4645738053594624e-06, 'Bandish': 1.6430492035729749e-06, 'Morgart': 1.6430492035729749e-06, 'Mouse': 2.4645738053594624e-06, 'Trap': 1.6430492035729749e-06, 'Moffett': 1.6430492035729749e-06, 'Rickshaw': 1.6430492035729749e-06, 'Bea': 2.4645738053594624e-06, 'Morley': 2.4645738053594624e-06, 'Fazio': 1.6430492035729749e-06, "O'Hare": 1.6430492035729749e-06, 'Michaels': 1.6430492035729749e-06, 'Escape': 4.107623008932437e-06, "John's": 1.8073541239302723e-05, 'Newfoundland': 3.2860984071459497e-06, 'distinguished': 3.450403327503247e-05, 'island': 2.7110311858954083e-05, 'Placentia': 1.6430492035729749e-06, 'Smallwood': 4.107623008932437e-06, 'productions': 5.750672212505412e-06, 'Le': 7.393721416078387e-06, 'Theatre': 9.036770619651361e-06, "D'Art": 1.6430492035729749e-06, 'Du': 5.586367292148114e-05, 'Ballet': 1.4787442832156774e-05, 'Carlo': 2.4645738053594624e-06, 'ballets': 3.2860984071459497e-06, 'Francesca': 7.393721416078387e-06, 'Rimini': 1.6430492035729749e-06, 'Performers': 1.6430492035729749e-06, 'symphony': 9.036770619651361e-06, 'Milenoff': 1.6430492035729749e-06, 'foundation': 1.6430492035729746e-05, 'Coral': 4.107623008932437e-06, 'Gables': 4.107623008932437e-06, 'Ximenez-Vargas': 1.6430492035729749e-06, 'Espagnol': 1.6430492035729749e-06, 'Jorge': 4.107623008932437e-06, 'Bolet': 1.6430492035729749e-06, 'Dancers': 2.4645738053594624e-06, 'Bali': 2.4645738053594624e-06, 'Hollywood': 1.97165904428757e-05, 'Library': 1.3144393628583799e-05, 'Workshop': 5.750672212505412e-06, 'Gretchen': 1.6430492035729749e-06, 'Schenk': 2.4645738053594624e-06, 'author': 3.532555787681896e-05, 'lecturer': 5.750672212505412e-06, 'library': 3.94331808857514e-05, '$2.50': 1.6430492035729749e-06, 'Anyone': 1.0679819823224336e-05, 'Whelan': 1.6430492035729749e-06, 'discuss': 2.3824213451808133e-05, 'librarian-board': 1.6430492035729749e-06, 'relationships': 3.203945946967301e-05, 'librarian': 4.929147610718925e-06, 'workshops': 4.929147610718925e-06, 'Tallahassee': 1.6430492035729749e-06, 'Jacksonville': 2.4645738053594624e-06, 'Orlando': 2.4645738053594624e-06, 'Plant': 3.2860984071459497e-06, 'assemblies': 5.750672212505412e-06, 'acquaint': 3.2860984071459497e-06, 'Aquinas': 2.4645738053594624e-06, 'Subsequent': 2.4645738053594624e-06, 'Stranahan': 1.6430492035729749e-06, 'Pompano': 1.6430492035729749e-06, 'Is': 8.133093557686225e-05, "Communism's": 2.4645738053594624e-06, 'doorstep': 3.2860984071459497e-06, 'Kern': 7.393721416078387e-06, 'Crusade': 4.107623008932437e-06, 'Communism': 2.6288787257167598e-05, 'brainwashing': 1.6430492035729749e-06, 'Anti-Communist': 2.4645738053594624e-06, 'convinced': 4.107623008932437e-05, 'ideological': 1.8073541239302723e-05, 'figured': 1.7252016637516235e-05, 'schoolers': 1.6430492035729749e-06, 'careful': 5.011300070897573e-05, 'antidote': 2.4645738053594624e-06, 'Biblically': 1.6430492035729749e-06, 'Christianity': 2.6288787257167598e-05, 'Communisn': 1.6430492035729749e-06, 'enthralled': 1.6430492035729749e-06, 'four-hour': 3.2860984071459497e-06, 'lecture': 1.3144393628583799e-05, 'Slack': 1.6430492035729749e-06, 'Jon': 2.4645738053594624e-06, 'Braun': 1.6430492035729749e-06, 'Map': 1.6430492035729749e-06, 'Operation': 6.5721968142918994e-06, 'Abolition': 3.2860984071459497e-06, 'Response': 1.6430492035729749e-06, 'city-wide': 2.4645738053594624e-06, 'Dade': 2.4645738053594624e-06, 'marking': 9.85829522143785e-06, 'Family': 1.7252016637516235e-05, 'MacWhorter': 1.6430492035729749e-06, '3181': 1.6430492035729749e-06, 'Ter.': 1.6430492035729749e-06, 'Dedication': 1.6430492035729749e-06, '10:50': 1.6430492035729749e-06, 'twice-a-year': 1.6430492035729749e-06, 'vows': 4.929147610718925e-06, 'strive': 6.5721968142918994e-06, 'fundamentals': 4.929147610718925e-06, 'uphold': 6.5721968142918994e-06, 'Lois': 2.4645738053594624e-06, 'Rae': 2.4645738053594624e-06, 'Pamela': 1.6430492035729746e-05, 'Shari': 1.6430492035729749e-06, 'grace': 2.7110311858954083e-05, 'bedtime': 3.2860984071459497e-06, 'prayers': 1.1501344425010824e-05, 'stories': 4.8469951505402755e-05, 'two-year-old': 1.6430492035729749e-06, 'miffed': 1.6430492035729749e-06, 'prayer-time': 1.6430492035729749e-06, "Dade's": 1.6430492035729749e-06, 'Blanton': 1.6430492035729749e-06, '7:30': 6.5721968142918994e-06, 'Lutheran': 3.2860984071459497e-06, 'Treadwell': 1.6430492035729749e-06, 'sexton': 1.6430492035729749e-06, 'worship': 2.875336106252706e-05, '7:45': 2.4645738053594624e-06, 'Nazarene': 1.6430492035729749e-06, '10:45': 1.6430492035729749e-06, 'Riviera': 2.4645738053594624e-06, 'pray': 1.0679819823224336e-05, 'participate': 1.889506584108921e-05, 'Henderson': 3.2860984071459497e-06, 'preach': 7.393721416078387e-06, 'Successful': 2.4645738053594624e-06, 'Marriage': 3.2860984071459497e-06, '9:40': 1.6430492035729749e-06, 'ordained': 4.107623008932437e-06, "Men's": 1.6430492035729749e-06, '6:15': 1.6430492035729749e-06, 'picnic': 1.3144393628583799e-05, 'preaching': 1.4787442832156774e-05, 'Altar': 1.6430492035729749e-06, 'Densmore': 1.6430492035729749e-06, 'headmaster': 3.2860984071459497e-06, "Stephen's": 1.6430492035729749e-06, 'Episcopal': 5.750672212505412e-06, 'Coconut': 1.6430492035729749e-06, 'becomes': 8.626008318758118e-05, 'Enrique': 1.6430492035729749e-06, 'Jorda': 2.4645738053594624e-06, 'musical': 6.654349274470547e-05, 'conducting': 1.1501344425010824e-05, 'engagements': 7.393721416078387e-06, "symphony's": 1.6430492035729749e-06, 'Anniversary': 4.107623008932437e-06, 'assignments': 1.5608967433943262e-05, 'Sinfonica': 1.6430492035729749e-06, 'Siciliana': 1.6430492035729749e-06, 'Palermo': 2.4645738053594624e-06, 'Radio': 1.3144393628583799e-05, 'Cologne': 8.215246017864873e-06, 'Gala': 1.6430492035729749e-06, 'Concert': 4.107623008932437e-06, 'five-month': 2.4645738053594624e-06, 'Orchestre': 1.6430492035729749e-06, 'Philharmonique': 1.6430492035729749e-06, 'Bordeau': 1.6430492035729749e-06, 'Cecilia': 3.2860984071459497e-06, "Jorda's": 1.6430492035729749e-06, 'box': 5.504214831969465e-05, 'Guest': 4.929147610718925e-06, 'performers': 1.0679819823224336e-05, 'conductors': 1.6430492035729749e-06, 'renowned': 2.4645738053594624e-06, 'violinists': 1.6430492035729749e-06, 'Yehudi': 1.6430492035729749e-06, 'Menuhin': 1.6430492035729749e-06, 'Isaac': 9.036770619651361e-06, 'Stern': 2.4645738053594624e-06, 'Ruggiero': 1.6430492035729749e-06, 'Ricci': 1.6430492035729749e-06, 'Abel': 1.7252016637516235e-05, 'pianists': 2.4645738053594624e-06, 'Fleisher': 1.6430492035729749e-06, 'Slenczynka': 1.6430492035729749e-06, 'Bishop': 1.1501344425010824e-05, 'Leningrad': 3.2860984071459497e-06, 'Kirov': 8.215246017864873e-06, 'finest': 1.3965918230370285e-05, 'ballet': 2.3824213451808133e-05, 'Petipa-Tschaikowsky': 1.6430492035729749e-06, 'Sleeping': 2.4645738053594624e-06, 'Beauty': 4.107623008932437e-06, 'incomparably': 3.2860984071459497e-06, 'pleasure': 5.011300070897573e-05, 'mine': 4.60053777000433e-05, 'anytime': 1.6430492035729749e-06, 'Imperial': 6.5721968142918994e-06, 'vulgar': 6.5721968142918994e-06, 'infantile': 2.4645738053594624e-06, 'reactionary': 1.3144393628583799e-05, 'aspect': 3.94331808857514e-05, 'persistent': 1.3965918230370285e-05, 'indicates': 3.368250867324598e-05, 'stultifying': 1.6430492035729749e-06, 'capitalist': 4.929147610718925e-06, 'boobify': 1.6430492035729749e-06, 'choreography': 3.2860984071459497e-06, 'undistinguished': 3.2860984071459497e-06, 'shapeless': 4.929147610718925e-06, 'assemblage': 3.2860984071459497e-06, 'self-plagiarisms': 1.6430492035729749e-06, 'totally': 1.889506584108921e-05, "Kirov's": 1.6430492035729749e-06, 'utterly': 2.300268885002165e-05, 'captivating': 2.4645738053594624e-06, 'Precise': 2.4645738053594624e-06, 'enchantment': 3.2860984071459497e-06, 'numerous': 3.861165628396491e-05, 'ova': 1.6430492035729749e-06, 'eva': 1.6430492035729749e-06, 'aya': 1.6430492035729749e-06, 'exclusively': 2.0538115044662184e-05, 'winners': 4.107623008932437e-06, 'contests': 7.393721416078387e-06, 'Omsk': 1.6430492035729749e-06, 'Pinsk': 1.6430492035729749e-06, 'Stalingr': 1.6430492035729749e-06, 'oops': 1.6430492035729749e-06, 'skip': 3.2860984071459497e-06, 'discover': 3.368250867324598e-05, 'crowning': 3.2860984071459497e-06, 'virtue': 2.546726265538111e-05, 'friendliness': 4.107623008932437e-06, 'frankness': 4.107623008932437e-06, 'peculiar': 2.3824213451808133e-05, 'Oh-the-pain-of-it': 1.6430492035729749e-06, 'impoverished': 3.2860984071459497e-06, 'Dukes': 2.4645738053594624e-06, 'filial': 1.6430492035729749e-06, 'piety': 4.107623008932437e-06, 'Goldwater': 3.2860984071459497e-06, 'Irina': 2.4645738053594624e-06, 'Kolpakova': 2.4645738053594624e-06, 'suavity': 1.6430492035729749e-06, 'lightness': 1.6430492035729749e-06, 'sparkle': 4.107623008932437e-06, 'refinement': 4.929147610718925e-06, 'incomparable': 4.107623008932437e-06, 'Hit': 3.2860984071459497e-06, 'Alla': 2.4645738053594624e-06, 'Sizova': 1.6430492035729749e-06, 'delightful': 2.218116424823516e-05, 'lady': 4.025470548753788e-05, 'Bluebird': 1.6430492035729749e-06, 'Yuri': 5.750672212505412e-06, 'Soloviev': 2.4645738053594624e-06, 'wonderfully': 9.85829522143785e-06, 'virile': 4.107623008932437e-06, 'acrobatic': 2.4645738053594624e-06, 'poetic': 2.6288787257167598e-05, 'Nijinsky': 1.6430492035729749e-06, 'Vladilen': 1.6430492035729749e-06, 'Semenov': 1.6430492035729749e-06, 'danseur': 1.6430492035729749e-06, 'noble': 1.97165904428757e-05, 'Konstantin': 1.6430492035729749e-06, 'Shatilov': 1.6430492035729749e-06, 'character': 9.693990301080551e-05, 'Inna': 3.2860984071459497e-06, 'Zubkovskaya': 2.4645738053594624e-06, 'Lilac': 3.2860984071459497e-06, 'Fairy': 2.4645738053594624e-06, 'cast': 3.779013168217842e-05, 'Virsaladze': 1.6430492035729749e-06, 'spacious': 8.215246017864873e-06, 'sumptuous': 4.107623008932437e-06, 'dreams': 2.218116424823516e-05, 'peasant': 6.5721968142918994e-06, 'courtly': 2.4645738053594624e-06, 'muted': 3.2860984071459497e-06, 'pastel-like': 1.6430492035729749e-06, 'style': 8.050941097507576e-05, 'harmonies': 6.5721968142918994e-06, 'scenery': 1.232286902679731e-05, 'Evegeni': 1.6430492035729749e-06, 'Dubovskoi': 1.6430492035729749e-06, 'soloists': 4.929147610718925e-06, 'solos': 3.2860984071459497e-06, 'concertmaster': 1.6430492035729749e-06, 'Lumia': 1.6430492035729749e-06, 'traveling': 1.3965918230370285e-05, 'Mail': 4.929147610718925e-06, 'auspices': 5.750672212505412e-06, 'Chamber': 1.3144393628583799e-05, 'Players': 3.2860984071459497e-06, 'Sustaining': 1.6430492035729749e-06, 'ten-concert': 1.6430492035729749e-06, '$16': 1.6430492035729749e-06, 'Participating': 1.6430492035729749e-06, '$9': 2.4645738053594624e-06, 'erroneously': 1.6430492035729749e-06, 'Chronicle': 1.6430492035729749e-06, '1044': 1.6430492035729749e-06, 'Chestnut': 4.107623008932437e-06, 'busied': 1.6430492035729749e-06, 'fixing': 9.85829522143785e-06, 'toys': 7.393721416078387e-06, '798': 1.6430492035729749e-06, 'sponsoring': 3.2860984071459497e-06, 'toy': 4.107623008932437e-06, '12th': 1.6430492035729749e-06, 'Franciscans': 2.4645738053594624e-06, 'discarded': 7.393721416078387e-06, 'off-duty': 3.2860984071459497e-06, 'Toys': 3.2860984071459497e-06, 'firehouses': 1.6430492035729749e-06, 'Stonestown': 1.6430492035729749e-06, 'mall': 1.6430492035729749e-06, '16th': 4.929147610718925e-06, 'warehouse': 4.107623008932437e-06, '198': 1.6430492035729749e-06, '676': 1.6430492035729749e-06, 'listing': 6.5721968142918994e-06, "parent's": 1.6430492035729749e-06, 'sex': 6.736501734649196e-05, 'ages': 3.1217934867886523e-05, 'Famed': 1.6430492035729749e-06, 'cellist': 1.6430492035729749e-06, 'Pablo': 1.6430492035729749e-06, 'Casals': 1.6430492035729749e-06, 'instrument': 3.6968607080391934e-05, 'charmed': 3.2860984071459497e-06, 'rehearsal': 4.107623008932437e-06, 'Luis': 8.215246017864873e-06, 'Munoz': 1.6430492035729749e-06, 'Spanish-born': 1.6430492035729749e-06, 'lend': 1.1501344425010824e-05, 'naughty': 1.6430492035729749e-06, 'stuff': 2.6288787257167598e-05, 'ought': 5.504214831969465e-05, 'immorality': 4.107623008932437e-06, 'billed': 3.2860984071459497e-06, 'towering': 9.85829522143785e-06, 'monument': 1.5608967433943262e-05, 'sins': 1.3965918230370285e-05, 'ancient': 5.2577574514335196e-05, 'three-hour': 3.2860984071459497e-06, 'Romans': 9.036770619651361e-06, 'harmless': 4.929147610718925e-06, 'Gray': 1.3965918230370285e-05, 'imagine': 4.436232849647032e-05, 'naughtier': 1.6430492035729749e-06, 'watchers': 1.6430492035729749e-06, 'bored': 1.232286902679731e-05, 'senseless': 5.750672212505412e-06, 'brutality': 1.1501344425010824e-05, 'sadism': 3.2860984071459497e-06, 'Adventures': 2.4645738053594624e-06, 'Ozzie': 1.6430492035729749e-06, 'decadence': 2.4645738053594624e-06, 'Strip': 1.6430492035729749e-06, 'nymphomaniacs': 1.6430492035729749e-06, 'private-eye': 1.6430492035729749e-06, 'actors': 1.3144393628583799e-05, 'unknowns': 1.6430492035729749e-06, 'Lex': 1.6430492035729749e-06, 'Anita': 2.4645738053594624e-06, 'Ekberg': 1.6430492035729749e-06, 'unfamiliar': 9.036770619651361e-06, 'Herridge': 1.6430492035729749e-06, 'seaside': 2.4645738053594624e-06, 'villa': 3.2860984071459497e-06, 'Producer': 2.4645738053594624e-06, 'Fellini': 2.4645738053594624e-06, 'silent': 4.107623008932437e-05, 'films': 2.546726265538111e-05, 'boasted': 5.750672212505412e-06, 'tease': 5.750672212505412e-06, 'slip': 1.6430492035729746e-05, 'drunk': 2.875336106252706e-05, 'knees': 3.203945946967301e-05, 'pillow': 7.393721416078387e-06, 'feathers': 1.232286902679731e-05, 'frigid': 4.929147610718925e-06, 'silly': 1.3144393628583799e-05, 'fairies': 2.4645738053594624e-06, 'Put': 1.1501344425010824e-05, 'spell': 1.6430492035729746e-05, 'four-letter': 2.4645738053594624e-06, 'begun': 4.2719279292897344e-05, 'pall': 3.2860984071459497e-06, 'swinging': 1.3144393628583799e-05, 'shocker': 1.6430492035729749e-06, 'dud': 1.6430492035729749e-06, 'detract': 1.6430492035729749e-06, "Chronicle's": 1.6430492035729749e-06, 'Paine': 1.6430492035729749e-06, 'Knickerbocker': 1.6430492035729749e-06, 'summed': 6.5721968142918994e-06, 'neatly': 1.6430492035729746e-05, 'enthralling': 3.2860984071459497e-06, 'heartbreaking': 2.4645738053594624e-06, 'unlinked': 1.6430492035729749e-06, 'glories': 4.107623008932437e-06, 'Monthly': 3.2860984071459497e-06, 'Weeks': 2.4645738053594624e-06, 'moderates': 4.107623008932437e-06, 'literature': 0.00010844124743581633, 'poets': 2.6288787257167598e-05, 'USSR': 3.2860984071459497e-06, 'Channel': 5.750672212505412e-06, '9:30': 2.4645738053594624e-06, 'Person': 4.107623008932437e-06, 'ventilates': 1.6430492035729749e-06, '10:30': 2.4645738053594624e-06, 'KQED': 1.6430492035729749e-06, 'Summer': 2.4645738053594624e-06, 'Festival': 1.3144393628583799e-05, 'Capello': 1.6430492035729749e-06, 'Musica': 1.6430492035729749e-06, 'exploring': 4.929147610718925e-06, 'titled': 9.85829522143785e-06, 'Threshold': 1.6430492035729749e-06, "Francisco's": 3.2860984071459497e-06, 'venerable': 4.107623008932437e-06, 'Mandarin': 1.6430492035729749e-06, 'Cantonese': 1.6430492035729749e-06, 'Chiuchow': 1.6430492035729749e-06, 'tip': 1.889506584108921e-05, 'language': 8.790313239115415e-05, 'briskly': 4.929147610718925e-06, 'austere': 4.929147610718925e-06, 'racy': 2.4645738053594624e-06, 'cap': 1.4787442832156774e-05, 'leather': 1.97165904428757e-05, 'expensive': 3.6968607080391934e-05, 'Where': 7.229416495721089e-05, 'fluid': 1.8073541239302723e-05, 'ha': 2.4645738053594624e-06, 'enriching': 1.6430492035729749e-06, 'Gas': 4.929147610718925e-06, 'debonair': 1.6430492035729749e-06, 'fins': 4.929147610718925e-06, 'wind-and-water': 1.6430492035729749e-06, 'oases': 2.4645738053594624e-06, 'gulped': 3.2860984071459497e-06, 'gallons': 5.750672212505412e-06, 'wiping': 5.750672212505412e-06, 'headlights': 7.393721416078387e-06, 'chrome': 4.107623008932437e-06, 'Tires': 1.6430492035729749e-06, 'OK': 4.929147610718925e-06, 'Check': 1.232286902679731e-05, 'sir': 2.875336106252706e-05, 'polished': 1.232286902679731e-05, 'windshield': 5.750672212505412e-06, 'loving': 1.232286902679731e-05, 'stuck': 1.97165904428757e-05, 'nozzle': 4.107623008932437e-06, 'tank': 1.0679819823224336e-05, 'gloomily': 3.2860984071459497e-06, 'smallest': 1.1501344425010824e-05, 'Get': 2.546726265538111e-05, 'mileage': 1.1501344425010824e-05, 'unhappily': 7.393721416078387e-06, 'clobbers': 1.6430492035729749e-06, 'Crunch': 1.6430492035729749e-06, 'die': 5.750672212505412e-05, '$1.80': 1.6430492035729749e-06, 'fair-weather': 2.4645738053594624e-06, 'yesteryear': 3.2860984071459497e-06, 'finned': 1.6430492035729749e-06, 'fore': 5.750672212505412e-06, 'aft': 4.929147610718925e-06, 'darling': 9.036770619651361e-06, 'doormen': 3.2860984071459497e-06, 'Dollar': 3.2860984071459497e-06, 'tipped': 4.107623008932437e-06, 'caps': 5.750672212505412e-06, 'politely': 9.036770619651361e-06, 'tuck': 1.6430492035729749e-06, 'Cadillacs': 2.4645738053594624e-06, 'doorman': 4.107623008932437e-06, 'calm': 2.875336106252706e-05, 'blood': 9.447532920544604e-05, 'much-copied': 1.6430492035729749e-06, 'craftsman': 2.4645738053594624e-06, 'Duncan': 4.107623008932437e-06, 'Phyfe': 4.107623008932437e-06, 'snubbed': 3.2860984071459497e-06, 'Presidents': 7.393721416078387e-06, 'furnishings': 8.215246017864873e-06, 'Decorators': 1.6430492035729749e-06, 'acquired': 2.218116424823516e-05, 'sofas': 3.2860984071459497e-06, "Mansion's": 1.6430492035729749e-06, "1800's": 1.6430492035729749e-06, 'heirs': 2.4645738053594624e-06, 'descendants': 4.107623008932437e-06, 'Rutherford': 1.6430492035729749e-06, 'Tranquility': 2.4645738053594624e-06, 'Andover': 3.2860984071459497e-06, 'Authenticated': 1.6430492035729749e-06, 'uncommon': 7.393721416078387e-06, 'acquisition': 1.4787442832156774e-05, 'consisting': 2.300268885002165e-05, 'sidechairs': 1.6430492035729749e-06, 'armchairs': 2.4645738053594624e-06, 'AID': 4.107623008932437e-06, 'undertaken': 1.4787442832156774e-05, 'redecoration': 2.4645738053594624e-06, 'Jacqueline': 4.107623008932437e-06, 'secure': 2.546726265538111e-05, "AID's": 1.6430492035729749e-06, 'miniature': 8.215246017864873e-06, 'museum': 1.3965918230370285e-05, 'Americana': 4.929147610718925e-06, 'refurbishing': 1.6430492035729749e-06, 'unveiled': 3.2860984071459497e-06, 'rarity': 2.4645738053594624e-06, 'antiquarians': 1.6430492035729749e-06, 'mantlepiece': 1.6430492035729749e-06, 'attributed': 1.5608967433943262e-05, 'McIntyre': 1.6430492035729749e-06, 'woodcarver': 1.6430492035729749e-06, 'competed': 2.4645738053594624e-06, '1792': 3.2860984071459497e-06, 'mantel': 3.2860984071459497e-06, 'demolished': 4.107623008932437e-06, 'fireplace': 5.750672212505412e-06, 'painted': 3.368250867324598e-05, 'match': 3.450403327503247e-05, 'paneling': 5.750672212505412e-06, "committee's": 1.6430492035729749e-06, 'Lenygon': 1.6430492035729749e-06, "Lenygon's": 1.6430492035729749e-06, 'associates': 1.1501344425010824e-05, 'Lehman': 1.6430492035729749e-06, 'McCluskey': 1.6430492035729749e-06, 'Jussel': 1.6430492035729749e-06, 'wellknown': 1.6430492035729749e-06, 'Regional': 4.929147610718925e-06, '75-minute': 1.6430492035729749e-06, "people's": 1.232286902679731e-05, 'lawn': 1.232286902679731e-05, '85-piece': 1.6430492035729749e-06, 'Transylvania': 2.4645738053594624e-06, 'Brevard': 4.929147610718925e-06, 'musicians': 3.286098407145949e-05, 'greet': 6.5721968142918994e-06, '325': 1.6430492035729749e-06, 'crippled': 4.929147610718925e-06, 'cardiac': 1.6430492035729749e-06, 'Concerts': 4.929147610718925e-06, 'delighted': 1.3965918230370285e-05, 'welcoming': 4.929147610718925e-06, 'approached': 3.6968607080391934e-05, 'bandstand': 4.107623008932437e-06, 'Mansion': 1.6430492035729749e-06, 'Star': 8.215246017864873e-06, 'Spangled': 1.6430492035729749e-06, 'Banner': 2.4645738053594624e-06, 'Hail': 4.929147610718925e-06, 'Marine': 1.3144393628583799e-05, 'Band': 8.215246017864873e-06, 'grateful': 2.1359639646448672e-05, 'mounting': 9.85829522143785e-06, 'shaking': 1.7252016637516235e-05, 'Pfohl': 3.2860984071459497e-06, 'white-clad': 3.2860984071459497e-06, 'dozens': 9.036770619651361e-06, 'stretching': 1.4787442832156774e-05, 'horizon': 2.300268885002165e-05, 'Displaying': 1.6430492035729749e-06, 'England-born': 1.6430492035729749e-06, 'chamber': 2.6288787257167598e-05, 'Vermont': 1.8073541239302723e-05, 'duplicated': 2.4645738053594624e-06, 'sun-tanned': 1.6430492035729749e-06, 'paused': 2.3824213451808133e-05, 'tent': 1.7252016637516235e-05, 'blonde': 1.7252016637516235e-05, 'Holbrook': 1.6430492035729749e-06, 'Rainier': 1.6430492035729749e-06, 'Handicapped': 3.2860984071459497e-06, 'nuns': 4.107623008932437e-06, 'Sharpe': 2.546726265538111e-05, 'tag': 4.929147610718925e-06, 'red': 0.00010104752601973795, 'lemonade': 3.2860984071459497e-06, 'teenage': 4.107623008932437e-06, 'music-loving': 2.4645738053594624e-06, 'gathered': 2.7110311858954083e-05, 'listening': 3.1217934867886523e-05, 'rapt': 1.6430492035729749e-06, 'liaison': 4.929147610718925e-06, 'Sousa': 1.6430492035729749e-06, 'Stripes': 1.6430492035729749e-06, 'Forever': 2.4645738053594624e-06, 'Conductor': 1.6430492035729749e-06, 'Letitia': 2.4645738053594624e-06, 'Baldrige': 4.107623008932437e-06, 'correspondence': 2.0538115044662184e-05, '85-student': 1.6430492035729749e-06, 'Carolina': 2.1359639646448672e-05, 'Gallery': 1.1501344425010824e-05, 'Bouton': 2.4645738053594624e-06, "Gallery's": 3.2860984071459497e-06, 'curator': 2.4645738053594624e-06, 'simultaneous': 7.393721416078387e-06, 'tours': 8.215246017864873e-06, '85': 9.036770619651361e-06, 'remaining': 3.450403327503247e-05, 'visitors': 2.875336106252706e-05, "Rembrandt's": 2.4645738053594624e-06, 'self-portrait': 1.6430492035729749e-06, 'sad': 2.875336106252706e-05, 'noticed': 4.1897754691110856e-05, "Raphael's": 1.6430492035729749e-06, 'Alba': 1.6430492035729749e-06, 'Madonna': 3.2860984071459497e-06, 'Monet': 3.2860984071459497e-06, 'painting': 4.7648426903616267e-05, 'Rheims': 1.6430492035729749e-06, 'Cathedral': 2.4645738053594624e-06, 'Gogh': 2.4645738053594624e-06, 'impressionist': 3.2860984071459497e-06, 'benches': 7.393721416078387e-06, 'downstairs': 1.0679819823224336e-05, 'lobby': 1.6430492035729746e-05, 'Bales': 1.6430492035729749e-06, 'Confederacy': 5.750672212505412e-06, 'gallery': 1.5608967433943262e-05, 'aide': 7.393721416078387e-06, 'sculptures': 6.5721968142918994e-06, 'blue-uniformed': 1.6430492035729749e-06, 'Renaissance': 1.232286902679731e-05, 'preferred': 2.218116424823516e-05, 'Boucher': 2.4645738053594624e-06, 'Courbet': 1.6430492035729749e-06, 'Fra': 1.6430492035729749e-06, 'Angelico': 1.6430492035729749e-06, 'impressed': 2.546726265538111e-05, 'rotunda': 3.2860984071459497e-06, 'fountain': 1.0679819823224336e-05, 'seemingly': 1.3144393628583799e-05, 'remote': 2.7110311858954083e-05, 'collonaded': 1.6430492035729749e-06, 'sphynxes': 1.6430492035729749e-06, 'perched': 4.107623008932437e-06, '1733': 1.6430492035729749e-06, 'nw.': 1.6430492035729749e-06, 'bustling': 1.6430492035729749e-06, 'Masons': 3.2860984071459497e-06, 'Pike': 3.203945946967301e-05, '1859': 9.036770619651361e-06, '1891': 4.107623008932437e-06, 'high-ceilinged': 2.4645738053594624e-06, 'eulogized': 1.6430492035729749e-06, 'historian': 2.546726265538111e-05, 'poet': 5.668519752326763e-05, 'journalist': 9.036770619651361e-06, 'soldier': 3.203945946967301e-05, 'musician': 1.97165904428757e-05, 'laying': 9.85829522143785e-06, 'wreath': 7.393721416078387e-06, 'crypt': 1.6430492035729749e-06, '1500': 2.4645738053594624e-06, 'biennial': 1.6430492035729749e-06, 'Ancient': 5.750672212505412e-06, 'Accepted': 2.4645738053594624e-06, 'Jurisdiction': 1.6430492035729749e-06, '5-day': 2.4645738053594624e-06, '2:30': 3.2860984071459497e-06, 'tomb': 9.85829522143785e-06, "Nation's": 4.929147610718925e-06, 'Washington-Alexandria': 1.6430492035729749e-06, 'Alexandria': 4.107623008932437e-06, 'monotonous': 7.393721416078387e-06, 'discouraged': 1.3144393628583799e-05, 'chatting': 2.4645738053594624e-06, 'Hurt': 1.6430492035729749e-06, 'ignoring': 4.107623008932437e-06, 'disgusted': 5.750672212505412e-06, 'miserable': 1.1501344425010824e-05, 'listened': 2.546726265538111e-05, 'poured': 2.464573805359462e-05, 'discussing': 1.3965918230370285e-05, 'UGF': 1.6430492035729749e-06, 'nearest': 2.0538115044662184e-05, 'separately': 1.1501344425010824e-05, 'antagonisms': 2.4645738053594624e-06, 'solving': 6.5721968142918994e-06, 'evenings': 1.232286902679731e-05, 'bed-time': 1.6430492035729749e-06, 'preceeded': 1.6430492035729749e-06, 'rough-housing': 1.6430492035729749e-06, 'outsiders': 7.393721416078387e-06, 'Blacks': 1.6430492035729749e-06, 'measured': 5.4220623717908165e-05, 'Givers': 1.6430492035729749e-06, 'Anticipated': 1.6430492035729749e-06, 'Skyline': 4.107623008932437e-06, 'materialize': 3.2860984071459497e-06, 'rangers': 1.6430492035729749e-06, 'leisurely': 4.107623008932437e-06, 'colors': 4.107623008932437e-05, 'haze': 6.5721968142918994e-06, 'crucial': 2.546726265538111e-05, 'attitude': 8.790313239115415e-05, 'exchanges': 4.929147610718925e-06, 'confrontation': 7.393721416078387e-06, 'inevitable': 2.793183646074057e-05, 'desirable': 3.0396410266100035e-05, 'realities': 1.3144393628583799e-05, 'decisive': 1.6430492035729746e-05, 'define': 1.7252016637516235e-05, 'implement': 4.107623008932437e-06, 'Nikita': 6.5721968142918994e-06, 'deterioration': 3.2860984071459497e-06, 'heightened': 5.750672212505412e-06, 'announcements': 5.750672212505412e-06, 'catastrophe': 9.036770619651361e-06, 'stakes': 4.107623008932437e-06, 'encounters': 7.393721416078387e-06, 'Churchill': 1.0679819823224336e-05, 'diplomacy': 1.4787442832156774e-05, 'summit': 9.85829522143785e-06, 'full-dress': 1.6430492035729749e-06, 'lull': 2.4645738053594624e-06, 'inroads': 3.2860984071459497e-06, 'informal': 1.5608967433943262e-05, 'Camp': 7.393721416078387e-06, 'misunderstanding': 9.036770619651361e-06, 'illusory': 2.4645738053594624e-06, 'denunciation': 4.107623008932437e-06, 'U-2': 1.6430492035729749e-06, 'tended': 2.0538115044662184e-05, 'propaganda': 2.3824213451808133e-05, 'one-sided': 2.4645738053594624e-06, 'concessions': 6.5721968142918994e-06, 'negotiation': 5.750672212505412e-06, 'aims': 1.3965918230370285e-05, 'summitry': 1.6430492035729749e-06, 'Pre-inaugural': 1.6430492035729749e-06, 'Thus': 0.0001371946084983434, 'intimated': 4.929147610718925e-06, 'inauguration': 3.2860984071459497e-06, 'confronted': 2.546726265538111e-05, 'delicate': 2.300268885002165e-05, 'shifting': 9.85829522143785e-06, 'smiles': 9.85829522143785e-06, 'toughness': 5.750672212505412e-06, 'debates': 5.750672212505412e-06, 'compel': 4.107623008932437e-06, 'awakening': 3.2860984071459497e-06, 'shift': 3.450403327503247e-05, 'weakened': 5.750672212505412e-06, 'illusion': 3.1217934867886523e-05, 'formulating': 4.107623008932437e-06, 'Above': 1.8073541239302723e-05, 'hat': 4.60053777000433e-05, "Khrushchev's": 1.232286902679731e-05, 'Attitude': 1.6430492035729749e-06, 'eventual': 9.85829522143785e-06, 'Ideally': 4.929147610718925e-06, 'concrete': 3.861165628396491e-05, 'adversary': 4.929147610718925e-06, 'probe': 5.750672212505412e-06, 'satisfy': 1.3965918230370285e-05, 'inflexible': 3.2860984071459497e-06, 'sparing': 1.6430492035729749e-06, 'tensions': 1.5608967433943262e-05, 'caution': 1.232286902679731e-05, 'willingness': 9.036770619651361e-06, 'reflected': 3.532555787681896e-05, 'Llewellyn': 1.6430492035729749e-06, 'dated': 1.6430492035729746e-05, 'Novosibirsk': 1.6430492035729749e-06, 'broad': 6.818654194827845e-05, 'briefly': 3.1217934867886523e-05, 'Developments': 3.2860984071459497e-06, 'intense': 3.286098407145949e-05, 'inner': 4.436232849647032e-05, 'councils': 4.107623008932437e-06, 'advisability': 4.107623008932437e-06, 'precisely': 3.861165628396491e-05, 'deteriorating': 2.4645738053594624e-06, 'alarmingly': 2.4645738053594624e-06, 'Deadlock': 1.6430492035729749e-06, "Russians'": 1.6430492035729749e-06, 'three-man': 3.2860984071459497e-06, 'directorate': 4.107623008932437e-06, 'veto': 9.036770619651361e-06, 'pressures': 3.1217934867886523e-05, 'Russians': 2.6288787257167598e-05, 'secretly': 5.750672212505412e-06, 'testing': 2.7110311858954083e-05, 'troubled': 2.546726265538111e-05, 'stalemate': 2.4645738053594624e-06, 'unchecked': 1.6430492035729749e-06, 'fatal': 1.6430492035729746e-05, 'disarmament': 9.036770619651361e-06, 'China': 5.2577574514335196e-05, 'urgent': 1.8073541239302723e-05, 'tripartite': 1.6430492035729749e-06, 'principle': 8.872465699294064e-05, 'organs': 1.232286902679731e-05, 'Control': 1.232286902679731e-05, 'insistence': 1.6430492035729746e-05, 'Initially': 5.750672212505412e-06, 'dampened': 3.2860984071459497e-06, 'lest': 1.4787442832156774e-05, 'episodes': 5.750672212505412e-06, 'dangerously': 3.2860984071459497e-06, 'erroneous': 4.107623008932437e-06, "West's": 3.2860984071459497e-06, 'blundered': 2.4645738053594624e-06, 'impotency': 1.6430492035729749e-06, 'penetration': 1.3144393628583799e-05, 'Beyond': 1.5608967433943262e-05, 'warnings': 8.215246017864873e-06, 'impunity': 3.2860984071459497e-06, 'strengthened': 5.750672212505412e-06, 'Vietnam': 3.2860984071459497e-06, 'overreach': 2.4645738053594624e-06, 'cocky': 3.2860984071459497e-06, 'aggressive': 1.4787442832156774e-05, 'grave': 2.793183646074057e-05, 'miscalculation': 2.4645738053594624e-06, 'Iran': 2.4645738053594624e-06, 'turning': 5.175604991254871e-05, 'midst': 1.6430492035729746e-05, 'deliberations': 6.5721968142918994e-06, 'Embassy': 7.393721416078387e-06, 'Firm': 1.6430492035729749e-06, 'negotiating': 7.393721416078387e-06, '67-year-old': 1.6430492035729749e-06, 'vigorous': 2.3824213451808133e-05, 'well-informed': 5.750672212505412e-06, '44-year-old': 3.2860984071459497e-06, 'demonstrated': 2.793183646074057e-05, 'reactions': 3.532555787681896e-05, 'disapproval': 1.232286902679731e-05, 'expectation': 9.85829522143785e-06, 'salutary': 4.929147610718925e-06, 'rely': 1.1501344425010824e-05, 'instincts': 4.107623008932437e-06, 'adversaries': 3.2860984071459497e-06, 'plain': 3.94331808857514e-05, 'pause': 1.8073541239302723e-05, 'equation': 2.793183646074057e-05, 'dragged': 1.3144393628583799e-05, 'reluctantly': 6.5721968142918994e-06, 'initiative': 2.7110311858954083e-05, 'conversations': 9.036770619651361e-06, 'disabuse': 2.4645738053594624e-06, 'notions': 1.4787442832156774e-05, 'disunity': 3.2860984071459497e-06, 'Finally': 5.011300070897573e-05, 'feelings': 5.011300070897573e-05, 'onus': 2.4645738053594624e-06, 'belongs': 1.889506584108921e-05, 'Disapproval': 1.6430492035729749e-06, 'interpret': 9.85829522143785e-06, 'panic': 1.889506584108921e-05, 'exploit': 8.215246017864873e-06, 'scope': 2.300268885002165e-05, 'biologist': 2.4645738053594624e-06, 'mechanisms': 1.5608967433943262e-05, 'adaptation': 8.215246017864873e-06, 'Mollusks': 1.6430492035729749e-06, 'shell': 1.3965918230370285e-05, 'evolutionary': 4.107623008932437e-06, 'scheme': 2.793183646074057e-05, 'cancel': 6.5721968142918994e-06, 'biology': 6.5721968142918994e-06, 'aptly': 4.107623008932437e-06, 'illustrate': 1.4787442832156774e-05, 'accomplishment': 6.5721968142918994e-06, 'brethren': 7.393721416078387e-06, 'cease': 1.3144393628583799e-05, 'wonder': 5.3399099116121684e-05, 'miracle': 1.3144393628583799e-05, 'centuries': 3.861165628396491e-05, 'minorities': 4.929147610718925e-06, 'ourselves': 5.504214831969465e-05, 'prone': 1.232286902679731e-05, 'zeal': 7.393721416078387e-06, 'generosity': 6.5721968142918994e-06, 'flattering': 1.6430492035729749e-06, 'Viewing': 1.6430492035729749e-06, 'retrospect': 3.2860984071459497e-06, 'indeed': 9.858295221437849e-05, 'unified': 9.85829522143785e-06, 'Official': 3.2860984071459497e-06, 'allocation': 1.3965918230370285e-05, 'diocesan': 4.107623008932437e-06, 'Catholics': 2.793183646074057e-05, 'responded': 1.7252016637516235e-05, "bishops'": 1.6430492035729749e-06, "pastors'": 1.6430492035729749e-06, 'Diocesan': 1.6430492035729749e-06, 'owe': 9.036770619651361e-06, 'resourcefulness': 2.4645738053594624e-06, 'sacrifices': 4.929147610718925e-06, 'esprit': 5.750672212505412e-06, 'protective': 1.232286902679731e-05, 'arithmetical': 1.6430492035729749e-06, 'detachment': 4.107623008932437e-06, 'achieves': 4.929147610718925e-06, 'orientation': 1.3965918230370285e-05, 'identification': 3.532555787681896e-05, 'founded': 1.5608967433943262e-05, 'supernatural': 1.4787442832156774e-05, 'nourished': 4.929147610718925e-06, 'well-springs': 1.6430492035729749e-06, 'devotion': 1.6430492035729746e-05, 'satisfying': 1.1501344425010824e-05, 'dimension': 1.3144393628583799e-05, 'uniquely': 9.036770619651361e-06, 'comradeship': 2.4645738053594624e-06, 'sparks': 4.929147610718925e-06, 'blunts': 1.6430492035729749e-06, 'Had': 2.6288787257167598e-05, 'goaded': 3.2860984071459497e-06, 'subsidized': 4.107623008932437e-06, 'parish': 9.036770619651361e-06, 'staffed': 3.2860984071459497e-06, 'produces': 1.6430492035729746e-05, 'family-community': 1.6430492035729749e-06, 'anomalies': 1.6430492035729749e-06, 'wasteful': 6.5721968142918994e-06, 'duplication': 7.393721416078387e-06, 'pitifully': 2.4645738053594624e-06, 'enrollments': 2.4645738053594624e-06, 'clustered': 4.107623008932437e-06, 'co-educational': 1.6430492035729749e-06, 'isolated': 2.875336106252706e-05, 'represent': 3.203945946967301e-05, 'riot': 6.5721968142918994e-06, 'collegiate': 3.2860984071459497e-06, 'temper': 9.85829522143785e-06, 'tone': 6.161434513398656e-05, 'resembled': 7.393721416078387e-06, 'resembles': 8.215246017864873e-06, 'pre-academic': 1.6430492035729749e-06, 'intra-mural': 1.6430492035729749e-06, 'qualifications': 1.3965918230370285e-05, 'specialized': 1.5608967433943262e-05, 'brand': 1.4787442832156774e-05, 'Commenting': 2.4645738053594624e-06, 'Professors': 2.4645738053594624e-06, 'participation': 3.286098407145949e-05, 'decision-making': 1.6430492035729749e-06, 'teacher-employee': 1.6430492035729749e-06, 'e.g.': 2.7110311858954083e-05, 'employee': 1.97165904428757e-05, 'inapt': 1.6430492035729749e-06, 'outsider': 3.2860984071459497e-06, 'hiring': 4.929147610718925e-06, 'acclimatized': 1.6430492035729749e-06, 'democratic': 3.450403327503247e-05, 'secular': 1.3965918230370285e-05, 'academic': 4.6826902301829785e-05, 'scholar': 9.85829522143785e-06, 'citizenship': 3.2860984071459497e-06, 'emerges': 8.215246017864873e-06, 'loath': 3.2860984071459497e-06, 'delegate': 7.393721416078387e-06, 'inhomogeneous': 1.6430492035729749e-06, 'mortal': 9.036770619651361e-06, 'varying': 3.450403327503247e-05, 'temperament': 6.5721968142918994e-06, 'interests': 6.900806655006494e-05, 'capabilities': 1.889506584108921e-05, 'select': 1.889506584108921e-05, 'owns': 1.1501344425010824e-05, 'oft-repeated': 1.6430492035729749e-06, 'phrase': 2.793183646074057e-05, 'attainment': 8.215246017864873e-06, 'pictured': 4.107623008932437e-06, 'paradox': 8.215246017864873e-06, 'framed': 1.232286902679731e-05, 'clerical-lay': 1.6430492035729749e-06, 'Outside': 1.7252016637516235e-05, 'partners': 1.3965918230370285e-05, 'grips': 7.393721416078387e-06, 'recruiting': 4.107623008932437e-06, 'caliber': 7.393721416078387e-06, 'Word': 1.1501344425010824e-05, 'spreads': 9.036770619651361e-06, 'tightly': 1.3144393628583799e-05, 'knit': 8.215246017864873e-06, 'conferences': 1.8073541239302723e-05, 'Expressions': 1.6430492035729749e-06, 'low-key': 2.4645738053594624e-06, 'confirming': 2.4645738053594624e-06, 'stereotype': 1.0679819823224336e-05, 'boycott': 7.393721416078387e-06, 'declines': 5.750672212505412e-06, 'gamble': 3.2860984071459497e-06, 'Civil': 3.861165628396491e-05, 'guarantee': 8.215246017864873e-06, 'tenure': 9.036770619651361e-06, 'significant': 6.982959115185143e-05, 'invests': 1.6430492035729749e-06, 'coveted': 4.107623008932437e-06, 'depreciation': 1.1501344425010824e-05, 'exaggerate': 7.393721416078387e-06, 'salaries': 6.5721968142918994e-06, 'Adequate': 1.6430492035729749e-06, 'substitute': 1.8073541239302723e-05, 'intangibles': 2.4645738053594624e-06, 'cause': 0.00010679819823224337, 'earning': 8.215246017864873e-06, 'Broadly': 1.6430492035729749e-06, 'intangible': 4.929147610718925e-06, 'Religious': 6.5721968142918994e-06, 'derive': 1.1501344425010824e-05, 'underestimate': 4.107623008932437e-06, "layman's": 1.6430492035729749e-06, 'reservoir': 9.036770619651361e-06, 'idealism': 3.2860984071459497e-06, 'stimulus': 1.3144393628583799e-05, 'communication': 5.3399099116121684e-05, 'actual': 7.968788637328927e-05, 'dichotomy': 1.6430492035729749e-06, 'in-group': 4.107623008932437e-06, 'baneful': 1.6430492035729749e-06, 'envision': 3.2860984071459497e-06, 'definitive': 4.929147610718925e-06, 'high-sounding': 2.4645738053594624e-06, 'titles': 1.3965918230370285e-05, 'faked': 2.4645738053594624e-06, 'Competent': 1.6430492035729749e-06, 'versed': 2.4645738053594624e-06, 'technique': 4.8469951505402755e-05, 'pre-set': 1.6430492035729749e-06, 'conclusions': 2.9574885664313547e-05, 'destroying': 1.4787442832156774e-05, "students'": 2.4645738053594624e-06, 'familiar': 5.997129593041358e-05, 'useful': 4.8469951505402755e-05, 'artificial': 1.4787442832156774e-05, 'busy-work': 1.6430492035729749e-06, 'ersatz': 2.4645738053594624e-06, 'structured': 1.232286902679731e-05, 'luncheon-table': 1.6430492035729749e-06, 'difficulty': 6.325739433755954e-05, 'campus': 2.546726265538111e-05, 'i.e.': 3.6147082478605446e-05, 'administers': 1.6430492035729749e-06, 'eating': 2.546726265538111e-05, 'Nebraska': 5.750672212505412e-06, 'anti-monopoly': 4.107623008932437e-06, 'fallacious': 1.6430492035729749e-06, 'argue': 2.464573805359462e-05, 'restricted': 1.3144393628583799e-05, 'restriction': 7.393721416078387e-06, 'Or': 7.311568955899738e-05, 'Anatole': 1.6430492035729749e-06, 'equality': 1.0679819823224336e-05, 'forbid': 4.107623008932437e-06, 'begging': 8.215246017864873e-06, 'sleeping': 3.1217934867886523e-05, 'generated': 9.85829522143785e-06, 'disrepute': 2.4645738053594624e-06, 'fallen': 2.793183646074057e-05, "McClellan's": 2.4645738053594624e-06, 'jurisdictional': 3.2860984071459497e-06, 'squabbles': 3.2860984071459497e-06, 'plagued': 4.929147610718925e-06, 'shocked': 1.4787442832156774e-05, 'stoppages': 1.6430492035729749e-06, 'allegedly': 4.107623008932437e-06, 'trivial': 9.85829522143785e-06, 'disputes': 6.5721968142918994e-06, 'sums': 1.4787442832156774e-05, 'equivalent': 3.861165628396491e-05, 'provoked': 6.5721968142918994e-06, 'indignation': 8.215246017864873e-06, 'footing': 3.2860984071459497e-06, "employers'": 1.6430492035729749e-06, 'undertakes': 3.2860984071459497e-06, 'Aircraft': 5.750672212505412e-06, 'Machinists': 2.4645738053594624e-06, 'attributable': 6.5721968142918994e-06, 'overtime': 3.2860984071459497e-06, 'defective': 6.5721968142918994e-06, '$7,500,000': 1.6430492035729749e-06, 'regulation': 7.393721416078387e-06, "contractor's": 1.6430492035729749e-06, 'unresponsive': 2.4645738053594624e-06, 'abuses': 6.5721968142918994e-06, 'electrical': 3.286098407145949e-05, 'evoked': 6.5721968142918994e-06, 'anti-trust': 2.218116424823516e-05, 'justified': 1.97165904428757e-05, 'rationale': 5.750672212505412e-06, 'inform': 6.5721968142918994e-06, 'undefined': 4.107623008932437e-06, 'Hypocrisy': 1.6430492035729749e-06, 'foolish': 1.3965918230370285e-05, 'Let': 7.558026336435684e-05, 'heavy-electrical-goods': 2.4645738053594624e-06, 'engaging': 5.750672212505412e-06, 'rig': 4.929147610718925e-06, 'allocate': 3.2860984071459497e-06, 'price-setting': 1.6430492035729749e-06, 'multi-product': 1.6430492035729749e-06, 'marginal': 2.218116424823516e-05, 'manufacture': 1.5608967433943262e-05, 'Accounting': 2.4645738053594624e-06, 'varied': 3.532555787681896e-05, 'Naturally': 1.3144393628583799e-05, 'enterprises': 1.232286902679731e-05, 'giants': 1.0679819823224336e-05, 'flex': 2.4645738053594624e-06, 'muscles': 2.6288787257167598e-05, 'survivors': 7.393721416078387e-06, 'Uncle': 3.368250867324598e-05, 'accuse': 9.036770619651361e-06, 'monopoly': 1.232286902679731e-05, 'self-restraint': 1.6430492035729749e-06, 'protection': 5.3399099116121684e-05, 'implicit': 1.1501344425010824e-05, 'wide-open': 1.6430492035729749e-06, 'decree': 3.2860984071459497e-06, 'fellows': 1.1501344425010824e-05, 'tool': 3.203945946967301e-05, 'theory': 0.00010597667363045688, 'govern': 6.5721968142918994e-06, 'enforcers': 1.6430492035729749e-06, 'managements': 2.4645738053594624e-06, 'facts': 7.14726403554244e-05, 'flood': 1.4787442832156774e-05, 'mea': 2.4645738053594624e-06, 'culpas': 1.6430492035729749e-06, 'scapegoats': 1.6430492035729749e-06, 'usefulness': 9.85829522143785e-06, 'Thurman': 1.6430492035729749e-06, 'Folklore': 4.929147610718925e-06, 'Capitalism': 3.2860984071459497e-06, '211': 2.4645738053594624e-06, 'unconsciously': 8.215246017864873e-06, 'organizations': 4.929147610718924e-05, 'ideology': 1.1501344425010824e-05, '214': 2.4645738053594624e-06, 'uncontrolled': 4.107623008932437e-06, 'dictatorship': 1.1501344425010824e-05, '215': 1.6430492035729749e-06, 'penalties': 4.107623008932437e-06, 'invoked': 5.750672212505412e-06, 'Pp.': 4.929147610718925e-06, '228-229': 1.6430492035729749e-06, 'empires': 4.107623008932437e-06, 'fantastic': 1.6430492035729746e-05, 'fundamental': 3.94331808857514e-05, "management's": 2.4645738053594624e-06, 'evaluating': 6.5721968142918994e-06, 'occasional': 2.7110311858954083e-05, 'irrational': 7.393721416078387e-06, 'nolo': 1.6430492035729749e-06, 'contendere': 1.6430492035729749e-06, 'nominal': 9.85829522143785e-06, 'untrammeled': 4.107623008932437e-06, 'sentences': 1.1501344425010824e-05, 'unprecedented': 9.85829522143785e-06, 'prosecutions': 1.6430492035729749e-06, 'ineptness': 2.4645738053594624e-06, 'fictitious': 2.4645738053594624e-06, 'impersonal': 1.1501344425010824e-05, 'devised': 1.3965918230370285e-05, 'pretends': 2.4645738053594624e-06, 'rational': 2.1359639646448672e-05, 'Quite': 9.036770619651361e-06, 'advocating': 5.750672212505412e-06, '1933': 8.215246017864873e-06, '7A': 1.6430492035729749e-06, 'Industrial': 2.464573805359462e-05, 'Recovery': 2.4645738053594624e-06, 'impolitic': 2.4645738053594624e-06, 'Taft-Hartley': 3.2860984071459497e-06, 'Landrum-Griffin': 2.4645738053594624e-06, 'collective-bargaining': 1.6430492035729749e-06, 'palmed': 2.4645738053594624e-06, 'organizers': 3.2860984071459497e-06, 'gigantic': 9.036770619651361e-06, 'tortured': 8.215246017864873e-06, 'reasoning': 1.3144393628583799e-05, 'ambition': 1.6430492035729746e-05, 'exercise': 4.8469951505402755e-05, 'squarely': 9.85829522143785e-06, 'commodities': 1.7252016637516235e-05, 'bags': 9.036770619651361e-06, 'wheat': 8.215246017864873e-06, 'unsupported': 1.6430492035729749e-06, 'agricultural': 2.9574885664313547e-05, 'subsidy': 3.2860984071459497e-06, 'reacting': 4.107623008932437e-06, 'antagonism': 8.215246017864873e-06, 'imposes': 4.107623008932437e-06, 'commodity': 5.750672212505412e-06, 'eighteenth-': 1.6430492035729749e-06, 'nineteenth-century': 1.3144393628583799e-05, '1776': 4.929147610718925e-06, 'Adam': 3.6968607080391934e-05, 'Wealth': 2.4645738053594624e-06, 'Parliament': 1.0679819823224336e-05, 'combining': 9.036770619651361e-06, 'Eighteenth-century': 1.6430492035729749e-06, 'customs': 1.4787442832156774e-05, 'outlawed': 4.107623008932437e-06, 'monopolies': 4.929147610718925e-06, 'conspiracies': 2.4645738053594624e-06, '1825': 2.4645738053594624e-06, "carpenters'": 1.6430492035729749e-06, 'ten-hour': 1.6430492035729749e-06, 'denounced': 6.5721968142918994e-06, 'employers': 1.3965918230370285e-05, 'combinations': 1.6430492035729746e-05, 'convert': 1.0679819823224336e-05, 'pious': 9.036770619651361e-06, 'hypocrisies': 2.4645738053594624e-06, 'vs.': 1.3144393628583799e-05, 'Justice': 3.286098407145949e-05, 'Savage': 2.4645738053594624e-06, 'officious': 1.6430492035729749e-06, 'improper': 1.6430492035729749e-06, 'mechanics': 1.6430492035729746e-05, 'regulated': 6.5721968142918994e-06, 'manufactured': 9.85829522143785e-06, 'article': 3.861165628396491e-05, 'exist': 4.929147610718924e-05, 'mechanic': 4.929147610718925e-06, 'Compare': 2.4645738053594624e-06, 'Daily': 1.97165904428757e-05, 'defends': 2.4645738053594624e-06, 'necessity': 3.286098407145949e-05, 'enacting': 4.107623008932437e-06, 'monopolistic': 2.4645738053594624e-06, 'measures': 4.025470548753788e-05, 'aimed': 2.0538115044662184e-05, 'Hoffa': 2.4645738053594624e-06, 'amend': 2.4645738053594624e-06, 'Norris-LaGuardia': 1.6430492035729749e-06, 'injunctions': 4.929147610718925e-06, 'extend': 2.464573805359462e-05, 'Aeronautics': 2.4645738053594624e-06, 'assuring': 9.036770619651361e-06, 'airlines': 2.4645738053594624e-06, 'deemed': 1.232286902679731e-05, 'exemption': 6.5721968142918994e-06, 'steamship': 3.2860984071459497e-06, 'irrationality': 1.6430492035729749e-06, 'guise': 5.750672212505412e-06, 'giant': 1.97165904428757e-05, 'Danbury': 1.6430492035729749e-06, 'Hatters': 1.6430492035729749e-06, 'Loewe': 1.6430492035729749e-06, 'consumers': 8.215246017864873e-06, '1914': 7.393721416078387e-06, 'stating': 1.3965918230370285e-05, 'immunization': 1.6430492035729749e-06, 'interpretation': 4.1897754691110856e-05, 'emasculated': 1.6430492035729749e-06, '1922': 7.393721416078387e-06, 'Mine': 4.107623008932437e-06, 'Coal': 4.107623008932437e-06, 'alleging': 3.2860984071459497e-06, 'interfered': 4.929147610718925e-06, 'commerce': 1.5608967433943262e-05, 'interrupt': 4.107623008932437e-06, 'indirect': 1.7252016637516235e-05, 'three-front': 1.6430492035729749e-06, 'closed-door': 2.4645738053594624e-06, 'Herter': 3.2860984071459497e-06, 'Afterward': 1.6430492035729749e-06, "Tennessee's": 1.6430492035729749e-06, 'Gore': 6.5721968142918994e-06, 'understatement': 4.107623008932437e-06, 'erupted': 6.5721968142918994e-06, 'fronts': 6.5721968142918994e-06, 'undermining': 1.6430492035729749e-06, 'Congo': 4.7648426903616267e-05, 'chaos': 1.4787442832156774e-05, 'offensives': 1.6430492035729749e-06, 'stirred': 1.3144393628583799e-05, 'Hours': 1.6430492035729749e-06, 'tanks': 1.4787442832156774e-05, 'artillery': 7.393721416078387e-06, 'Dictator': 3.2860984071459497e-06, 'blunt': 7.393721416078387e-06, 'embassy': 8.215246017864873e-06, 'consulate': 1.6430492035729749e-06, 'staffs': 7.393721416078387e-06, 'eleven': 3.203945946967301e-05, '87': 2.4645738053594624e-06, '120': 5.750672212505412e-06, 'foreign-policy': 2.4645738053594624e-06, 'self-respect': 4.107623008932437e-06, 'endure': 7.393721416078387e-06, 'Through': 2.546726265538111e-05, 'President-elect': 4.929147610718925e-06, 'breakoff': 1.6430492035729749e-06, 'Secretary-designate': 1.6430492035729749e-06, 'Rusk': 9.036770619651361e-06, 'huddle': 3.2860984071459497e-06, 'reacted': 1.0679819823224336e-05, 'battalions': 1.6430492035729749e-06, 'invaded': 5.750672212505412e-06, "Pentagon's": 1.6430492035729749e-06, 'precautionary': 2.4645738053594624e-06, 'readiness': 1.232286902679731e-05, 'Cutting': 4.107623008932437e-06, 'aircraft': 5.3399099116121684e-05, 'carriers': 9.85829522143785e-06, 'Lexington': 6.5721968142918994e-06, 'Bennington': 4.107623008932437e-06, 'Sea': 1.3144393628583799e-05, 'swarm': 3.2860984071459497e-06, 'troopships': 1.6430492035729749e-06, 'marines': 9.036770619651361e-06, "U.S.'s": 1.6430492035729749e-06, 'Okinawa': 1.6430492035729749e-06, 'Task': 1.6430492035729749e-06, '116': 1.6430492035729749e-06, 'southward': 7.393721416078387e-06, 'signal': 4.6826902301829785e-05, 'exaggeration': 4.929147610718925e-06, 'cautious': 8.215246017864873e-06, 'sorts': 1.0679819823224336e-05, 'cold-war': 1.6430492035729749e-06, 'Political': 4.107623008932437e-06, 'chaotic': 4.929147610718925e-06, 'mountainous': 5.750672212505412e-06, 'Indian': 4.354080389468383e-05, 'battleground': 2.4645738053594624e-06, 'Indo-China': 1.6430492035729749e-06, 'Chinese': 4.6826902301829785e-05, 'predictably': 2.4645738053594624e-06, 'Foster': 9.036770619651361e-06, 'Dulles': 8.215246017864873e-06, 'specimen': 2.0538115044662184e-05, 'appeasement': 3.2860984071459497e-06, 'becoming': 4.6826902301829785e-05, 'calamity': 2.4645738053594624e-06, 'mourn': 2.4645738053594624e-06, 'seize': 4.929147610718925e-06, 'northern': 1.97165904428757e-05, 'parading': 2.4645738053594624e-06, 'intrigue': 4.107623008932437e-06, 'drops': 1.5608967433943262e-05, 'Ilyushin': 1.6430492035729749e-06, 'transports': 4.929147610718925e-06, "Year's": 6.5721968142918994e-06, 'cool': 4.8469951505402755e-05, 'acknowledgment': 2.4645738053594624e-06, 'Considering': 7.393721416078387e-06, "war's": 3.2860984071459497e-06, 'terribly': 1.5608967433943262e-05, 'ominous': 1.0679819823224336e-05, "Gore's": 1.6430492035729749e-06, 'confront': 7.393721416078387e-06, 'Inauguration': 4.929147610718925e-06, 'turmoil': 1.0679819823224336e-05, '87th': 2.4645738053594624e-06, 'sluice': 2.4645738053594624e-06, 'gates': 1.1501344425010824e-05, 'coyly': 1.6430492035729749e-06, 'masquerades': 2.4645738053594624e-06, 'Study': 6.5721968142918994e-06, 'fought': 3.779013168217842e-05, 'unspoken': 3.2860984071459497e-06, 'menaced': 2.4645738053594624e-06, 'bottleneck': 2.4645738053594624e-06, 'counting': 1.0679819823224336e-05, 'noses': 5.750672212505412e-06, 'Deadly': 1.6430492035729749e-06, 'breaching': 2.4645738053594624e-06, 'liberals': 1.8073541239302723e-05, 'conservative-liberal': 1.6430492035729749e-06, 'namely': 2.793183646074057e-05, '14-term': 1.6430492035729749e-06, 'Meyers': 1.6430492035729749e-06, 'Colmer': 5.750672212505412e-06, 'Calmer': 1.6430492035729749e-06, 'Caucusing': 1.6430492035729749e-06, 'seniority': 2.4645738053594624e-06, 'godliness': 1.6430492035729749e-06, 'dour': 2.4645738053594624e-06, 'gangling': 1.6430492035729749e-06, 'choppy': 3.2860984071459497e-06, 'gait': 7.393721416078387e-06, 'swung': 4.025470548753788e-05, 'internationalist': 2.4645738053594624e-06, 'diehard': 1.6430492035729749e-06, 'initially': 1.0679819823224336e-05, 'suspicious': 1.1501344425010824e-05, 'constituents': 9.036770619651361e-06, 'segregationist': 3.2860984071459497e-06, 'anti-Negro': 1.6430492035729749e-06, '6-6': 1.6430492035729749e-06, 'far-out': 1.6430492035729749e-06, 'Democratic-sponsored': 1.6430492035729749e-06, 'Rayburn-Johnson': 1.6430492035729749e-06, 'embarrassing': 9.85829522143785e-06, 'Equal': 2.4645738053594624e-06, 'pretext': 3.2860984071459497e-06, "Colmer's": 1.6430492035729749e-06, 'ouster': 1.6430492035729749e-06, 'lukewarm': 4.929147610718925e-06, 'anti-Kennedy': 1.6430492035729749e-06, 'electors': 3.2860984071459497e-06, 'Reprisals': 1.6430492035729749e-06, 'unheard': 3.2860984071459497e-06, 'forgive': 1.7252016637516235e-05, 'prodigal': 1.6430492035729749e-06, 'Dixiecrats': 1.6430492035729749e-06, 'unscathed': 2.4645738053594624e-06, 'rebellion': 1.1501344425010824e-05, 'campaigned': 4.107623008932437e-06, 'anti-Colmer': 1.6430492035729749e-06, 'reprisal': 3.2860984071459497e-06, 'Said': 1.5608967433943262e-05, 'whites': 1.3965918230370285e-05, 'huddling': 3.2860984071459497e-06, 'tense': 1.3144393628583799e-05, 'Southerner': 7.393721416078387e-06, 'flatly': 6.5721968142918994e-06, 'Mister': 6.5721968142918994e-06, 'thereupon': 3.2860984071459497e-06, 'oust': 3.2860984071459497e-06, 'inferior': 6.5721968142918994e-06, 'News': 1.0679819823224336e-05, 'leaked': 4.929147610718925e-06, "Missouri's": 4.107623008932437e-06, 'Cannon': 3.2860984071459497e-06, 'purple': 9.85829522143785e-06, 'Unconscionable': 1.6430492035729749e-06, 'shouted': 3.368250867324598e-05, "Speaker's": 3.2860984071459497e-06, 'Smith-Colmer': 1.6430492035729749e-06, 'Appropriations': 1.6430492035729749e-06, 'dreadful': 9.036770619651361e-06, 'excluding': 1.3965918230370285e-05, 'pork-barrel': 1.6430492035729749e-06, 'Sitting': 4.107623008932437e-06, 'pork': 9.036770619651361e-06, 'barrel': 1.97165904428757e-05, 'Vinson': 1.6430492035729749e-06, 'Threat': 2.4645738053594624e-06, 'raged': 7.393721416078387e-06, 'cloakrooms': 1.6430492035729749e-06, 'caucuses': 1.6430492035729749e-06, 'lose': 4.8469951505402755e-05, 'numbered': 8.215246017864873e-06, '260-member': 1.6430492035729749e-06, 'caucus': 2.4645738053594624e-06, 'smelling': 4.929147610718925e-06, 'Committees': 3.2860984071459497e-06, 'purged': 2.4645738053594624e-06, 'Mississippians': 1.6430492035729749e-06, 'maverick': 3.2860984071459497e-06, 'arenas': 3.2860984071459497e-06, 'applying': 2.300268885002165e-05, 'whiplash': 1.6430492035729749e-06, 'loomed': 3.2860984071459497e-06, 'specter': 3.2860984071459497e-06, 'costlier': 1.6430492035729749e-06, 'Southerners': 2.218116424823516e-05, 'chairmanships': 1.6430492035729749e-06, 'truncated': 3.2860984071459497e-06, 'unworkable': 1.6430492035729749e-06, "Arkansas'": 1.6430492035729749e-06, 'Wilbur': 2.4645738053594624e-06, 'deliberately': 2.3824213451808133e-05, 'coolheaded': 1.6430492035729749e-06, 'face-saving': 4.107623008932437e-06, 'version': 3.94331808857514e-05, 'liberal-conservative': 3.2860984071459497e-06, 'contrast': 6.079282053220007e-05, 'guerrilla': 1.0679819823224336e-05, 'forma': 2.4645738053594624e-06, "guide's": 1.6430492035729749e-06, 'restrict': 9.036770619651361e-06, 'legislation-delaying': 1.6430492035729749e-06, 'filibusters': 1.6430492035729749e-06, 'wide-ranging': 3.2860984071459497e-06, 'bipartisan': 2.4645738053594624e-06, "Minnesota's": 2.4645738053594624e-06, 'Hubert': 3.2860984071459497e-06, 'Humphrey': 5.750672212505412e-06, "Massachusetts'": 3.2860984071459497e-06, 'Leverett': 1.6430492035729749e-06, 'Saltonstall': 1.6430492035729749e-06, 'phalanx': 4.929147610718925e-06, 'traditionally': 8.215246017864873e-06, 'filibuster': 3.2860984071459497e-06, "Mexico's": 3.2860984071459497e-06, "Senate's": 4.107623008932437e-06, 'notorious': 7.393721416078387e-06, 'Rule': 4.929147610718925e-06, 'three-fifths': 2.4645738053594624e-06, 'hard-to-get': 1.6430492035729749e-06, 'Dealer': 1.6430492035729749e-06, 'upped': 2.4645738053594624e-06, 'ante': 3.2860984071459497e-06, 'cloture': 1.6430492035729749e-06, 'mere': 3.94331808857514e-05, 'Privately': 3.2860984071459497e-06, 'modification': 4.107623008932437e-06, 'Congresses': 1.6430492035729749e-06, 'binding': 1.7252016637516235e-05, 'rounded': 1.232286902679731e-05, 'choke': 8.215246017864873e-06, 'Hopefully': 1.6430492035729749e-06, 'perennial': 5.750672212505412e-06, 'Vice': 1.3144393628583799e-05, 'virtually': 3.368250867324598e-05, 'convening': 2.4645738053594624e-06, 'presiding': 5.750672212505412e-06, 'painful': 2.1359639646448672e-05, 'chore': 6.5721968142918994e-06, 'officiate': 1.6430492035729749e-06, 'Electoral': 2.4645738053594624e-06, 'declaration': 7.393721416078387e-06, 'tight': 2.3824213451808133e-05, 'presidency': 3.2860984071459497e-06, 'staunchest': 3.2860984071459497e-06, 'Player': 2.793183646074057e-05, 'harrowing': 2.4645738053594624e-06, 'lap': 1.5608967433943262e-05, '72nd': 2.4645738053594624e-06, 'pros': 2.4645738053594624e-06, 'gaping': 2.4645738053594624e-06, 'disbelief': 5.750672212505412e-06, 'licked': 9.036770619651361e-06, 'bite': 9.036770619651361e-06, 'midway': 4.929147610718925e-06, 'holes': 3.203945946967301e-05, 'Augusta': 5.750672212505412e-06, 'Course': 1.6430492035729749e-06, 'teeth': 8.46170339840082e-05, '34': 1.8073541239302723e-05, 'washed': 2.875336106252706e-05, 'rainstorm': 2.4645738053594624e-06, "Player's": 4.107623008932437e-06, 'bogeyed': 2.4645738053594624e-06, '10th': 1.6430492035729749e-06, 'double-bogeyed': 1.6430492035729749e-06, '15th': 1.232286902679731e-05, 'putt': 5.750672212505412e-06, 'scrambled': 8.215246017864873e-06, 'mishap': 4.107623008932437e-06, '2-over-par': 1.6430492035729749e-06, '72-hole': 1.6430492035729749e-06, 'scorecard': 1.6430492035729749e-06, 'tears': 2.7110311858954083e-05, 'trophy': 2.4645738053594624e-06, 'seven-iron': 1.6430492035729749e-06, 'strayed': 1.6430492035729749e-06, 'lodged': 1.6430492035729749e-06, 'sand': 2.3824213451808133e-05, 'wedge': 4.107623008932437e-06, 'slope': 1.6430492035729746e-05, 'tower': 1.0679819823224336e-05, 'Afterwards': 4.107623008932437e-06, 'Coe': 4.929147610718925e-06, 'last-round': 1.6430492035729749e-06, 'hasty': 4.929147610718925e-06, 'agonizing': 3.2860984071459497e-06, 'graciously': 3.2860984071459497e-06, 'putted': 1.6430492035729749e-06, 'recover': 9.85829522143785e-06, 'composure': 4.107623008932437e-06, 'visibly': 5.750672212505412e-06, 'overshot': 1.6430492035729749e-06, 'putting': 4.2719279292897344e-05, 'beside': 6.325739433755954e-05, "Roberts'": 1.0679819823224336e-05, 'stared': 5.011300070897573e-05, 'amazement': 9.036770619651361e-06, '281': 1.6430492035729749e-06, 'rounds': 1.1501344425010824e-05, 'comfortable': 3.1217934867886523e-05, 'closest': 8.215246017864873e-06, 'second-place': 1.6430492035729749e-06, 'lean': 1.7252016637516235e-05, 'leathery': 1.6430492035729749e-06, 'topnotch': 1.6430492035729749e-06, 'jitters': 2.4645738053594624e-06, 'overtake': 3.2860984071459497e-06, 'disappointing': 6.5721968142918994e-06, 'one-over-par': 1.6430492035729749e-06, '73': 4.107623008932437e-06, 'intact': 1.232286902679731e-05, 'three-round': 2.4645738053594624e-06, '210': 2.4645738053594624e-06, '213': 2.4645738053594624e-06, 'deliberate': 1.3144393628583799e-05, 'Baltimorean': 1.6430492035729749e-06, 'Half': 1.0679819823224336e-05, 'holed': 1.6430492035729749e-06, '206': 1.6430492035729749e-06, 'erratic': 3.2860984071459497e-06, 'washed-out': 1.6430492035729749e-06, 'meteorological': 3.2860984071459497e-06, 'footnotes': 2.4645738053594624e-06, 'mano': 2.4645738053594624e-06, 'Unlike': 8.215246017864873e-06, 'spontaneously': 8.215246017864873e-06, 'sight': 6.900806655006494e-05, 'prestige': 2.300268885002165e-05, 'Pensacola': 4.107623008932437e-06, 'winnings': 3.2860984071459497e-06, 'somewhere': 3.94331808857514e-05, 'paired': 5.750672212505412e-06, 'threesome': 3.2860984071459497e-06, 'chapter': 3.1217934867886523e-05, 'duels': 1.6430492035729749e-06, 'whichever': 4.929147610718925e-06, 'undisputed': 2.4645738053594624e-06, 'awed': 4.929147610718925e-06, 'outplayed': 1.6430492035729749e-06, 'Thereafter': 4.107623008932437e-06, 'Instant': 2.4645738053594624e-06, 'rivalry': 5.750672212505412e-06, 'instantly': 1.5608967433943262e-05, 'drizzly': 1.6430492035729749e-06, 'skiddy': 1.6430492035729749e-06, 'moist': 9.85829522143785e-06, 'golfers': 3.2860984071459497e-06, 'boldly': 7.393721416078387e-06, 'flag-stick': 1.6430492035729749e-06, 'consequences': 2.9574885664313547e-05, '4-under-par': 1.6430492035729749e-06, 'Rosburg': 4.107623008932437e-06, 'enormous': 3.1217934867886523e-05, 'horde': 2.4645738053594624e-06, 'unquestionably': 8.215246017864873e-06, 'essentially': 3.6147082478605446e-05, 'Nicklaus': 1.6430492035729749e-06, 'Venturi': 1.6430492035729749e-06, 'shaky': 4.929147610718925e-06, 'accurate': 2.9574885664313547e-05, 'supersensitive': 1.6430492035729749e-06, 'putter': 1.6430492035729749e-06, "Augusta's": 1.6430492035729749e-06, 'treacheries': 1.6430492035729749e-06, 'geriatric': 1.6430492035729749e-06, 'cloudless': 2.4645738053594624e-06, 'gray': 5.3399099116121684e-05, 'ugly': 1.8073541239302723e-05, 'focus': 3.368250867324598e-05, 'destined': 8.215246017864873e-06, 'scoreboards': 1.6430492035729749e-06, 'twosome': 1.6430492035729749e-06, 'Hyndman': 1.6430492035729749e-06, 'conspicuously': 7.393721416078387e-06, 'contender': 2.4645738053594624e-06, 'birdie': 4.107623008932437e-06, 'pars': 3.2860984071459497e-06, 'tidal': 1.6430492035729749e-06, 'birdied': 4.107623008932437e-06, 'birdies': 2.4645738053594624e-06, 'bogey': 4.929147610718925e-06, 'Starting': 6.5721968142918994e-06, 'Kel': 1.6430492035729749e-06, 'Nagle': 1.6430492035729749e-06, '2nd': 3.2860984071459497e-06, 'roar': 1.1501344425010824e-05, 'parklike': 1.6430492035729749e-06, 'landscape': 1.7252016637516235e-05, 'answered': 5.586367292148114e-05, 'moments': 4.025470548753788e-05, 'lining': 2.4645738053594624e-06, '25-foot': 1.6430492035729749e-06, 'thunderous': 2.4645738053594624e-06, 'unmistakably': 4.929147610718925e-06, 'grimace': 3.2860984071459497e-06, 'proceeded': 2.1359639646448672e-05, 'sink': 1.97165904428757e-05, '25-footer': 1.6430492035729749e-06, 'vocalization': 1.6430492035729749e-06, 'rolling': 1.6430492035729746e-05, 'intervening': 1.6430492035729749e-06, 'fairways': 2.4645738053594624e-06, 'boldness': 3.2860984071459497e-06, 'gifted': 1.1501344425010824e-05, 'axiomatic': 3.2860984071459497e-06, 'dominate': 7.393721416078387e-06, 'vehemence': 3.2860984071459497e-06, 'mar': 2.4645738053594624e-06, 'well-played': 1.6430492035729749e-06, 'overpowered': 2.4645738053594624e-06, 'obliterated': 1.6430492035729749e-06, 'contemptuous': 5.750672212505412e-06, 'earnest': 1.5608967433943262e-05, 'aggressiveness': 4.929147610718925e-06, 'stepped': 3.368250867324598e-05, '6th': 5.750672212505412e-06, '8th': 3.2860984071459497e-06, 'downhill': 5.750672212505412e-06, 'dogleg': 1.6430492035729749e-06, 'measuring': 2.464573805359462e-05, 'pine': 1.232286902679731e-05, 'separating': 5.750672212505412e-06, 'Having': 1.8073541239302723e-05, '160': 4.929147610718925e-06, 'punching': 2.4645738053594624e-06, 'settling': 9.85829522143785e-06, 'four-wood': 2.4645738053594624e-06, 'hoping': 2.464573805359462e-05, 'bunkered': 1.6430492035729749e-06, "you'd": 2.3824213451808133e-05, 'forget': 4.354080389468383e-05, 'chipped': 4.107623008932437e-06, '220-yard': 1.6430492035729749e-06, 'par-3': 1.6430492035729749e-06, 'switched': 1.3965918230370285e-05, '180-degrees': 2.4645738053594624e-06, 'northwest': 9.036770619651361e-06, 'one-iron': 1.6430492035729749e-06, 'three-wood': 1.6430492035729749e-06, 'subsequent': 2.300268885002165e-05, 'bogeys': 2.4645738053594624e-06, 'drives': 5.750672212505412e-06, '450': 4.107623008932437e-06, 'sublime': 3.2860984071459497e-06, 'muscular': 1.3144393628583799e-05, 'teammate': 2.4645738053594624e-06, 'double-header': 1.6430492035729749e-06, 'awe': 4.929147610718925e-06, '145-pound': 1.6430492035729749e-06, 'Gregory': 4.107623008932437e-06, 'Pearson': 1.0679819823224336e-05, 'Angels': 1.232286902679731e-05, 'borders': 1.0679819823224336e-05, 'ridiculous': 1.5608967433943262e-05, 'amiable': 2.4645738053594624e-06, 'ambled': 1.6430492035729749e-06, 'grand-slam': 1.6430492035729749e-06, 'borrowed': 1.232286902679731e-05, "teammate's": 1.6430492035729749e-06, 'major-league': 4.107623008932437e-06, 'successive': 9.85829522143785e-06, 'pinch-hitter': 1.6430492035729749e-06, 'Pitchers': 1.6430492035729749e-06, 'grumble': 5.750672212505412e-06, 'shrinking': 3.2860984071459497e-06, 'zone': 9.036770619651361e-06, 'knock-down': 1.6430492035729749e-06, 'Experts': 3.2860984071459497e-06, 'thinning': 2.4645738053594624e-06, 'Whatever': 2.1359639646448672e-05, 'home-run': 2.4645738053594624e-06, 'peril': 7.393721416078387e-06, 'endurance': 1.3965918230370285e-05, 'doubly': 4.107623008932437e-06, 'jeopardy': 4.107623008932437e-06, 'incorrigible': 1.6430492035729749e-06, 'epicure': 2.4645738053594624e-06, 'athlete': 7.393721416078387e-06, 'Herman': 9.036770619651361e-06, 'thwarted': 4.107623008932437e-06, 'ultimately': 1.6430492035729746e-05, 'challenger': 1.6430492035729749e-06, 'amazing': 1.7252016637516235e-05, 'seventeen': 1.8073541239302723e-05, 'spurt': 2.4645738053594624e-06, 'Double': 2.4645738053594624e-06, 'Always': 8.215246017864873e-06, 'Foxx': 1.6430492035729749e-06, '58': 4.107623008932437e-06, '1932': 3.2860984071459497e-06, 'Greenberg': 2.4645738053594624e-06, '1938': 7.393721416078387e-06, 'Hack': 1.6430492035729749e-06, 'spurred': 4.929147610718925e-06, 'zeroed': 1.6430492035729749e-06, '108': 4.107623008932437e-06, '43': 4.929147610718925e-06, 'Extend': 2.4645738053594624e-06, "Maris's": 4.107623008932437e-06, 'paces': 6.5721968142918994e-06, '162': 1.6430492035729749e-06, 'mathematically': 4.107623008932437e-06, 'flourish': 4.929147610718925e-06, '154': 4.107623008932437e-06, 'ideal': 4.929147610718924e-05, 'easier': 4.1897754691110856e-05, 'Roommates': 1.6430492035729749e-06, 'understandably': 3.2860984071459497e-06, 'concede': 7.393721416078387e-06, 'primarily': 5.2577574514335196e-05, 'quote': 1.4787442832156774e-05, 'Valuable': 1.6430492035729749e-06, 'MVP': 1.6430492035729749e-06, 'enjoys': 9.036770619651361e-06, 'seeing': 6.161434513398656e-05, 'Cerv': 4.929147610718925e-06, 'Airport': 7.393721416078387e-06, '$251': 1.6430492035729749e-06, 'air-conditioning': 2.4645738053594624e-06, 'sleeps': 1.6430492035729749e-06, 'couch': 1.0679819823224336e-05, 'divide': 9.85829522143785e-06, 'cooking': 2.7110311858954083e-05, 'breakfast': 4.2719279292897344e-05, 'sandwich': 7.393721416078387e-06, 'Oldsmobile': 2.4645738053594624e-06, '25-minute': 1.6430492035729749e-06, 'roommates': 1.6430492035729749e-06, 'strikingly': 7.393721416078387e-06, 'backgrounds': 6.5721968142918994e-06, 'stars': 2.1359639646448672e-05, 'Fargo': 2.4645738053594624e-06, 'N.D.': 1.6430492035729749e-06, 'halfbacks': 1.6430492035729749e-06, 'minors': 4.107623008932437e-06, 'recalls': 1.0679819823224336e-05, 'wished': 4.60053777000433e-05, 'extent': 9.11892307983001e-05, 'alike': 1.7252016637516235e-05, 'hair': 0.00012158564106440014, 'weigh': 4.107623008932437e-06, 'incredibly': 6.5721968142918994e-06, '17-1/2-inch': 1.6430492035729749e-06, 'backs': 1.232286902679731e-05, 'overdeveloped': 3.2860984071459497e-06, 'shoulders': 4.2719279292897344e-05, 'purchases': 1.3144393628583799e-05, "Simpson's": 2.4645738053594624e-06, 'Light': 1.1501344425010824e-05, 'classified': 1.1501344425010824e-05, 'opus': 3.2860984071459497e-06, "Miller's": 5.750672212505412e-06, 'Tropic': 3.2860984071459497e-06, 'literary': 6.325739433755954e-05, 'broadened': 6.5721968142918994e-06, "teammates'": 1.6430492035729749e-06, 'minds': 4.6826902301829785e-05, 'passages': 1.7252016637516235e-05, 'aloud': 1.0679819823224336e-05, 'reporter': 1.6430492035729746e-05, 'surprising': 2.546726265538111e-05, 'trait': 3.2860984071459497e-06, 'ballplayer': 4.929147610718925e-06, 'pleasant': 2.9574885664313547e-05, 'photographers': 5.750672212505412e-06, 'cooperative': 1.5608967433943262e-05, 'locker': 8.215246017864873e-06, 'volunteered': 4.929147610718925e-06, 'anecdote': 8.215246017864873e-06, 'dark-haired': 2.4645738053594624e-06, '11-year-old': 2.4645738053594624e-06, "Berra's": 1.6430492035729749e-06, 'stunk': 1.6430492035729749e-06, 'candidly': 2.4645738053594624e-06, 'occasions': 1.889506584108921e-05, 'shuns': 2.4645738053594624e-06, 'dumb': 1.1501344425010824e-05, 'angry': 3.532555787681896e-05, 'Benched': 2.4645738053594624e-06, 'Tulsa': 1.6430492035729749e-06, 'Dutch': 1.3144393628583799e-05, 'Send': 4.107623008932437e-06, 'Reading': 3.2860984071459497e-06, 'Kerby': 1.6430492035729749e-06, 'Farrell': 5.750672212505412e-06, 'Play': 3.2860984071459497e-06, 'gentlemen': 1.7252016637516235e-05, "Idols'": 1.6430492035729749e-06, 'idols': 2.4645738053594624e-06, 'heroes': 1.4787442832156774e-05, 'sportswriter': 3.2860984071459497e-06, 'kidding': 6.5721968142918994e-06, 'idolize': 1.6430492035729749e-06, 'ex-Yankee': 1.6430492035729749e-06, 'aching': 5.750672212505412e-06, 'crushed': 9.036770619651361e-06, 'vowed': 4.929147610718925e-06, 'vow': 2.4645738053594624e-06, 'ties': 1.3144393628583799e-05, 'zinc': 8.215246017864873e-06, '87-1/2': 1.6430492035729749e-06, 'cents': 2.218116424823516e-05, 'railroading': 1.6430492035729749e-06, 'mining': 9.036770619651361e-06, 'head-and-shoulders': 1.6430492035729749e-06, 'Hitting': 1.6430492035729749e-06, 'left-handed': 3.2860984071459497e-06, 'right-handed': 1.6430492035729749e-06, 'possess': 1.4787442832156774e-05, 'stances': 1.6430492035729749e-06, 'dug': 1.3144393628583799e-05, 'fierce': 6.5721968142918994e-06, 'swings': 3.2860984071459497e-06, 'bunters': 1.6430492035729749e-06, 'nineteen': 1.0679819823224336e-05, '3.1': 1.6430492035729749e-06, 'seconds': 2.300268885002165e-05, '100-yard': 2.4645738053594624e-06, 'dash': 9.036770619651361e-06, 'Aparicio': 1.6430492035729749e-06, 'swift': 1.1501344425010824e-05, 'base-stealing': 1.6430492035729749e-06, 'daring': 1.0679819823224336e-05, 'fielders': 2.4645738053594624e-06, 'weapon': 3.532555787681896e-05, 'dullest': 2.4645738053594624e-06, 'inevitably': 2.9574885664313547e-05, 'weaker': 7.393721416078387e-06, 'Appropriately': 1.6430492035729749e-06, 'startling': 1.6430492035729746e-05, '1919': 5.750672212505412e-06, 'conspired': 3.2860984071459497e-06, 'grew': 5.3399099116121684e-05, 'disillusioned': 2.4645738053594624e-06, 'disinterested': 4.929147610718925e-06, 'Into': 8.215246017864873e-06, 'Convair': 1.6430492035729749e-06, 'Caroline': 2.4645738053594624e-06, 'winged': 3.2860984071459497e-06, 'Actor-Crooner': 1.6430492035729749e-06, 'Sinatra': 4.107623008932437e-06, 'pal': 2.4645738053594624e-06, 'Cinemactor': 1.6430492035729749e-06, 'Lawford': 1.6430492035729749e-06, 'brother-in-law': 4.929147610718925e-06, 'entourage': 4.107623008932437e-06, 'sweater': 1.232286902679731e-05, 'Frankie': 1.4787442832156774e-05, 'Eve': 1.232286902679731e-05, "capital's": 3.2860984071459497e-06, 'Armory': 1.6430492035729749e-06, 'glutted': 1.6430492035729749e-06, 'Ella': 1.6430492035729749e-06, 'Fitzgerald': 5.750672212505412e-06, 'Australia': 9.85829522143785e-06, 'cats': 1.4787442832156774e-05, 'ensconced': 2.4645738053594624e-06, "armory's": 1.6430492035729749e-06, 'ringside': 1.6430492035729749e-06, 'doubtless': 1.0679819823224336e-05, 'Inaugural': 3.2860984071459497e-06, 'Couturier': 1.6430492035729749e-06, 'Loper': 3.2860984071459497e-06, "ladies'": 6.5721968142918994e-06, 'ensembles': 3.2860984071459497e-06, 'spills': 2.4645738053594624e-06, 'stitch': 3.2860984071459497e-06, 'catapulted': 2.4645738053594624e-06, 'commandant': 1.6430492035729749e-06, 'warless': 1.6430492035729749e-06, 'Pentagon': 1.0679819823224336e-05, 'Leatherneck': 1.6430492035729749e-06, 'accumulation': 9.85829522143785e-06, 'vines': 7.393721416078387e-06, 'weeds': 4.929147610718925e-06, 'moldboard': 1.6430492035729749e-06, 'lifted': 3.6147082478605446e-05, 'hitched': 3.2860984071459497e-06, 'rein': 3.2860984071459497e-06, 'geeing': 1.6430492035729749e-06, 'hawing': 1.6430492035729749e-06, 'tilling': 1.6430492035729749e-06, 'deplored': 2.4645738053594624e-06, 'noncommissioned': 1.6430492035729749e-06, 'belonged': 1.4787442832156774e-05, 'someone': 6.49004435411325e-05, '1940': 1.3144393628583799e-05, 'socks': 6.5721968142918994e-06, 'window': 9.858295221437849e-05, 'Maurine': 1.6430492035729749e-06, 'Neuberger': 1.6430492035729749e-06, 'brotherly': 2.4645738053594624e-06, 'buss': 1.6430492035729749e-06, 'Elder': 5.750672212505412e-06, 'Statesman': 1.6430492035729749e-06, 'Adlai': 6.5721968142918994e-06, 'Stevenson': 1.3144393628583799e-05, 'Ambassador-designate': 1.6430492035729749e-06, 'U.N.': 4.354080389468383e-05, "Island's": 8.215246017864873e-06, 'Greene': 1.1501344425010824e-05, 'swum': 1.6430492035729749e-06, 'cerebrated': 1.6430492035729749e-06, 'hearty': 4.107623008932437e-06, '93': 3.2860984071459497e-06, 'august': 1.6430492035729749e-06, 'oldest': 1.232286902679731e-05, 'undergraduate': 9.85829522143785e-06, 'bobby-sox': 1.6430492035729749e-06, 'Dreamboat': 1.6430492035729749e-06, 'Cacophonist': 1.6430492035729749e-06, 'Fabian': 4.107623008932437e-06, 'Forte': 2.4645738053594624e-06, 'tutors': 1.6430492035729749e-06, "10-o'clock": 1.6430492035729749e-06, 'Lacking': 5.750672212505412e-06, 'classmates': 4.107623008932437e-06, "High's": 1.6430492035729749e-06, 'toneless': 1.6430492035729749e-06, 'lad': 5.750672212505412e-06, 'Decathlon': 1.6430492035729749e-06, 'Rafer': 1.6430492035729749e-06, 'gumption': 1.6430492035729749e-06, "A.A.U.'s": 1.6430492035729749e-06, 'sportsman': 3.2860984071459497e-06, 'tapped': 6.5721968142918994e-06, 'cliffhanging': 1.6430492035729749e-06, 'rallies': 3.2860984071459497e-06, 'crowns': 1.6430492035729749e-06, 'Tooling': 1.6430492035729749e-06, 'Zealand': 3.2860984071459497e-06, 'Prix': 2.4645738053594624e-06, 'balding': 2.4645738053594624e-06, 'Ace': 2.4645738053594624e-06, 'Driver': 1.6430492035729749e-06, 'Stirling': 2.4645738053594624e-06, 'smothered': 5.750672212505412e-06, 'exhaust': 6.5721968142918994e-06, 'self-crimination': 1.6430492035729749e-06, 'slob': 4.107623008932437e-06, 'gaudy': 6.5721968142918994e-06, 'racing': 1.8073541239302723e-05, 'ruddy': 3.2860984071459497e-06, 'lazy': 8.215246017864873e-06, 'frustrating': 3.2860984071459497e-06, 'Has': 1.0679819823224336e-05, 'stirling': 1.6430492035729749e-06, 'virtues': 1.3144393628583799e-05, 'eulogizers': 1.6430492035729749e-06, "U.S.S.R.'s": 1.6430492035729749e-06, 'Izvestia': 1.6430492035729749e-06, 'enterprisingly': 1.6430492035729749e-06, 'interviewed': 1.0679819823224336e-05, 'Red-prone': 1.6430492035729749e-06, 'Comedian': 1.6430492035729749e-06, 'Chaplin': 3.2860984071459497e-06, 'self-exile': 1.6430492035729749e-06, '1952': 2.6288787257167598e-05, 'confided': 7.393721416078387e-06, 'marveled': 2.4645738053594624e-06, 'grandiose': 3.2860984071459497e-06, 'experiment': 5.011300070897573e-05, 'spooned': 1.6430492035729749e-06, 'impressions': 2.0538115044662184e-05, 'glimpsed': 4.929147610718925e-06, 'captivated': 2.4645738053594624e-06, 'sly': 4.929147610718925e-06, 'transatlantic': 1.6430492035729749e-06, 'jetliners': 1.6430492035729749e-06, "Europe's": 3.2860984071459497e-06, 'enigma': 4.107623008932437e-06, 'vaguely': 1.4787442832156774e-05, 'connotes': 1.6430492035729749e-06, 'new-rich': 1.6430492035729749e-06, 'wealth': 1.7252016637516235e-05, 'eccentricity': 4.107623008932437e-06, 'ardor': 3.2860984071459497e-06, 'collecting': 1.1501344425010824e-05, 'headlines': 6.5721968142918994e-06, '343': 1.6430492035729749e-06, 'first-class': 5.750672212505412e-06, 'fabled': 4.107623008932437e-06, "Philadelphia's": 1.6430492035729749e-06, 'legend': 2.218116424823516e-05, 'fortune': 1.97165904428757e-05, 'dying': 2.793183646074057e-05, 'boom': 7.393721416078387e-06, 'bargain': 6.5721968142918994e-06, 'continent': 9.85829522143785e-06, 'Modern': 1.5608967433943262e-05, "Art's": 2.4645738053594624e-06, 'Barr': 1.6430492035729749e-06, 'barge': 6.5721968142918994e-06, 'lavishly': 4.107623008932437e-06, 'drivers': 2.0538115044662184e-05, 'bellboys': 2.4645738053594624e-06, 'Cezannes': 1.6430492035729749e-06, 'Braques': 1.6430492035729749e-06, 'Matisses': 1.6430492035729749e-06, 'Legers': 1.6430492035729749e-06, 'Picasso': 1.232286902679731e-05, 'Giacometti': 1.6430492035729749e-06, 'Klees': 2.4645738053594624e-06, 'hung': 5.4220623717908165e-05, 'burglarproof': 1.6430492035729749e-06, 'Throw': 2.4645738053594624e-06, 'trusted': 9.85829522143785e-06, 'housed': 9.85829522143785e-06, 'snubbing': 1.6430492035729749e-06, 'Basel': 2.4645738053594624e-06, 'Ernst': 4.929147610718925e-06, 'Beyeler': 2.4645738053594624e-06, 'arranged': 3.6968607080391934e-05, '$1,500,000': 2.4645738053594624e-06, 'Rhine-Westphalia': 1.6430492035729749e-06, 'prizes': 5.750672212505412e-06, 'scarcely': 2.0538115044662184e-05, 'glanced': 2.1359639646448672e-05, 'treasures': 5.750672212505412e-06, 'speculated': 2.4645738053594624e-06, 'revenge': 6.5721968142918994e-06, 'bare': 2.3824213451808133e-05, 'Break': 2.4645738053594624e-06, 'discriminate': 1.6430492035729749e-06, 'applicant': 7.393721416078387e-06, '175': 1.6430492035729749e-06, 'classrooms': 4.929147610718925e-06, 'Bootle': 2.4645738053594624e-06, 'admit': 3.1217934867886523e-05, 'kindergarten': 3.2860984071459497e-06, 'Alabama': 1.7252016637516235e-05, 'Hamilton': 1.4787442832156774e-05, 'Holmes': 3.1217934867886523e-05, 'Charlayne': 4.107623008932437e-06, 'Valedictorian': 1.6430492035729749e-06, 'pretexts': 2.4645738053594624e-06, 'skins': 6.5721968142918994e-06, 'Morehouse': 1.6430492035729749e-06, 'journalism': 9.85829522143785e-06, "Detroit's": 1.6430492035729749e-06, 'tentatively': 5.750672212505412e-06, 'investigators': 1.1501344425010824e-05, 'roommate': 1.6430492035729749e-06, 'lasted': 1.0679819823224336e-05, 'ritual': 2.1359639646448672e-05, 'prostitution': 9.036770619651361e-06, 'beatnik': 6.5721968142918994e-06, 'teahouse': 2.4645738053594624e-06, 'evasive': 4.929147610718925e-06, 'lied': 4.929147610718925e-06, 'desegregated': 5.750672212505412e-06, "Bootle's": 1.6430492035729749e-06, 'plaintiffs': 3.2860984071459497e-06, 'Surprised': 2.4645738053594624e-06, 'Catch': 1.6430492035729749e-06, 'Chancellor': 7.393721416078387e-06, 'Kimpton': 4.107623008932437e-06, 'hunt': 7.393721416078387e-06, 'gripped': 1.0679819823224336e-05, 'Midway': 3.2860984071459497e-06, 'Out': 3.286098407145949e-05, 'grads': 2.4645738053594624e-06, 'statesmen': 7.393721416078387e-06, 'Conant': 6.5721968142918994e-06, 'pondered': 4.107623008932437e-06, 'successors': 5.750672212505412e-06, "Harvard's": 1.6430492035729749e-06, 'McGeorge': 2.4645738053594624e-06, 'Bundy': 2.4645738053594624e-06, 'Trustee': 2.4645738053594624e-06, 'lure': 6.5721968142918994e-06, 'scholars': 2.1359639646448672e-05, 'happily': 1.6430492035729746e-05, "Caltech's": 1.6430492035729749e-06, 'Geneticist': 2.4645738053594624e-06, 'Beadle': 3.2860984071459497e-06, '57': 9.036770619651361e-06, 'Prize': 9.036770619651361e-06, 'physiology': 2.4645738053594624e-06, 'discovering': 5.750672212505412e-06, 'genes': 1.6430492035729749e-06, 'heredity': 3.2860984071459497e-06, 'Cover': 3.2860984071459497e-06, 'nine-year': 1.6430492035729749e-06, 'reign': 6.5721968142918994e-06, 'tidying': 1.6430492035729749e-06, '21-year': 1.6430492035729749e-06, 'typhoon': 1.6430492035729749e-06, 'Idealist': 1.6430492035729749e-06, 'Maynard': 2.4645738053594624e-06, "Hutchins'": 1.6430492035729749e-06, 'wildly': 2.0538115044662184e-05, 'enrollment': 5.750672212505412e-06, '2,100': 2.4645738053594624e-06, 'endowment': 2.4645738053594624e-06, '$139.3': 1.6430492035729749e-06, 'heady': 2.4645738053594624e-06, 'Caltech': 1.6430492035729749e-06, 'sixth-sense': 1.6430492035729749e-06, 'recruit': 9.036770619651361e-06, 'excite': 3.2860984071459497e-06, 'researchers': 4.107623008932437e-06, 'unexpected': 1.97165904428757e-05, 'speech-making': 1.6430492035729749e-06, 'avidly': 1.6430492035729749e-06, 'Journal': 3.0396410266100035e-05, '$300': 7.393721416078387e-06, 'philosopher': 1.3965918230370285e-05, 'consequently': 1.7252016637516235e-05, 'finger': 3.368250867324598e-05, 'Leopold': 1.6430492035729749e-06, 'Belgians': 1.8073541239302723e-05, '1885': 3.2860984071459497e-06, 'grabbing': 4.107623008932437e-06, '900,000': 1.6430492035729749e-06, 'wilderness': 8.215246017864873e-06, 'quarreling': 4.929147610718925e-06, 'tribes': 9.85829522143785e-06, 'historical': 5.668519752326763e-05, 'boundaries': 1.232286902679731e-05, 'geography': 4.929147610718925e-06, 'ethnic': 1.1501344425010824e-05, 'groupings': 8.215246017864873e-06, "Leopold's": 1.6430492035729749e-06, 'explorers': 3.2860984071459497e-06, 'gunmen': 4.107623008932437e-06, '13.5': 3.2860984071459497e-06, 'culture': 4.6826902301829785e-05, 'innumerable': 4.929147610718925e-06, 'dialects': 4.107623008932437e-06, 'religions': 1.5608967433943262e-05, 'Mohammedanism': 1.6430492035729749e-06, 'paganism': 1.6430492035729749e-06, 'ancestor': 6.5721968142918994e-06, 'animism': 1.6430492035729749e-06, 'ranges': 9.036770619651361e-06, 'steamily': 1.6430492035729749e-06, 'equatorial': 1.6430492035729749e-06, 'temperate': 2.4645738053594624e-06, 'patients': 2.9574885664313547e-05, 'trampled': 1.6430492035729749e-06, 'disparities': 1.6430492035729749e-06, 'Belgian': 1.232286902679731e-05, 'administered': 1.232286902679731e-05, '1908': 7.393721416078387e-06, 'touched': 3.532555787681896e-05, 'conscience': 3.1217934867886523e-05, 'commencing': 6.5721968142918994e-06, 'paternalism': 2.4645738053594624e-06, 'unmatched': 2.4645738053594624e-06, 'colonialism': 3.2860984071459497e-06, 'Ordinarily': 2.4645738053594624e-06, 'independence': 3.861165628396491e-05, 'Congolese': 1.0679819823224336e-05, 'imagines': 3.2860984071459497e-06, 'infant': 9.85829522143785e-06, 'tin': 9.85829522143785e-06, 'cobalt': 2.4645738053594624e-06, 'manganese': 1.6430492035729749e-06, 'uranium': 5.750672212505412e-06, 'palm': 1.4787442832156774e-05, 'Brussels': 3.2860984071459497e-06, 'beneficiaries': 3.2860984071459497e-06, 'cartels': 1.6430492035729749e-06, 'Inside': 1.0679819823224336e-05, 'Gunther': 1.6430492035729749e-06, 'describes': 1.889506584108921e-05, 'Societe': 1.6430492035729749e-06, 'Generale': 4.107623008932437e-06, 'colossus': 1.6430492035729749e-06, 'envisaged': 1.6430492035729749e-06, 'Anaconda': 2.4645738053594624e-06, 'Copper': 1.6430492035729749e-06, 'Mutual': 4.929147610718925e-06, 'Insurance': 4.929147610718925e-06, 'producing': 2.9574885664313547e-05, 'lumped': 2.4645738053594624e-06, 'ruthless': 6.5721968142918994e-06, 'exploited': 8.215246017864873e-06, 'compassion': 4.929147610718925e-06, 'instituted': 1.0679819823224336e-05, 'ration': 9.036770619651361e-06, 'obliged': 1.8073541239302723e-05, 'dole': 1.6430492035729749e-06, 'eat': 4.929147610718924e-05, 'hungry': 1.97165904428757e-05, '25,000': 6.5721968142918994e-06, 'puzzle': 9.036770619651361e-06, 'la': 9.036770619651361e-06, 'chatte': 1.6430492035729749e-06, 'le': 5.750672212505412e-06, 'chien': 1.6430492035729749e-06, 'carpenters': 2.4645738053594624e-06, 'indefinite': 6.5721968142918994e-06, 'fearing': 4.929147610718925e-06, 'elite': 1.0679819823224336e-05, 'unrest': 4.929147610718925e-06, 'manifestly': 4.929147610718925e-06, 'unprepared': 5.750672212505412e-06, 'oversimplification': 3.2860984071459497e-06, 'gale': 2.4645738053594624e-06, 'prepare': 2.9574885664313547e-05, 'colonies': 6.5721968142918994e-06, 'clamoring': 1.6430492035729749e-06, 'unsure': 1.6430492035729749e-06, 'Pas': 1.6430492035729749e-06, 'une': 2.4645738053594624e-06, 'goutte': 1.6430492035729749e-06, 'sang': 2.464573805359462e-05, 'detested': 3.2860984071459497e-06, 'pedagogue': 1.6430492035729749e-06, 'mess': 1.889506584108921e-05, 'motivations': 4.929147610718925e-06, 'guiltless': 1.6430492035729749e-06, 'Kasavubu': 4.929147610718925e-06, 'splitting': 3.2860984071459497e-06, 'Balkanizing': 1.6430492035729749e-06, 'Moise': 4.107623008932437e-06, 'Tshombe': 6.5721968142918994e-06, 'near-Balkanization': 1.6430492035729749e-06, 'federalism': 2.4645738053594624e-06, 'Third': 1.6430492035729746e-05, 'notably': 1.3965918230370285e-05, 'Patrice': 4.929147610718925e-06, 'Lumumba': 1.0679819823224336e-05, 'hurry': 2.7110311858954083e-05, 'fragmentation': 4.929147610718925e-06, 'provincial': 7.393721416078387e-06, 'provinces': 8.215246017864873e-06, 'Leopoldville': 3.2860984071459497e-06, 'Kasai': 2.4645738053594624e-06, 'Kivu': 1.6430492035729749e-06, 'Katanga': 1.8073541239302723e-05, 'Equator': 2.4645738053594624e-06, 'unfortunately': 1.232286902679731e-05, 'Western-style': 1.6430492035729749e-06, 'premier': 2.4645738053594624e-06, 'bicameral': 1.6430492035729749e-06, 'universal': 3.368250867324598e-05, 'Well-wishers': 1.6430492035729749e-06, 'assume': 5.175604991254871e-05, 'respectable': 1.8073541239302723e-05, 'frictions': 1.6430492035729749e-06, '25,000-man': 1.6430492035729749e-06, 'Publique': 2.4645738053594624e-06, 'officered': 1.6430492035729749e-06, 'Twenty-four': 3.2860984071459497e-06, 'tribesmen': 2.4645738053594624e-06, 'commenced': 6.5721968142918994e-06, 'well-armed': 1.6430492035729749e-06, 'savage': 1.7252016637516235e-05, 'cannibalistic': 1.6430492035729749e-06, 'mutiny': 3.2860984071459497e-06, 'rioting': 1.6430492035729749e-06, 'raping': 1.6430492035729749e-06, 'looting': 3.2860984071459497e-06, 'Terror': 2.4645738053594624e-06, 'engulfed': 4.929147610718925e-06, 'civilians': 2.4645738053594624e-06, 'paratroops': 1.6430492035729749e-06, 'mineral-rich': 1.6430492035729749e-06, 'seceded': 2.4645738053594624e-06, 'Confusion': 1.6430492035729749e-06, 'succeeding': 5.750672212505412e-06, 'blamed': 6.5721968142918994e-06, 'abstaining': 1.6430492035729749e-06, 'Vague': 1.6430492035729749e-06, 'withdrawal': 5.750672212505412e-06, 'Secretary-General': 2.4645738053594624e-06, 'Hammarskjold': 1.3965918230370285e-05, 'preferable': 5.750672212505412e-06, 'nonwhite': 3.2860984071459497e-06, 'Tunisia': 3.2860984071459497e-06, 'Guinea': 2.4645738053594624e-06, 'Mali': 1.6430492035729749e-06, '19,000': 1.6430492035729749e-06, 'Eire': 2.4645738053594624e-06, 'Sweden': 9.036770619651361e-06, 'reluctant': 1.232286902679731e-05, 'withdraw': 7.393721416078387e-06, 'obstructed': 4.107623008932437e-06, 'complicated': 2.546726265538111e-05, "U.N.'s": 4.107623008932437e-06, 'initiating': 3.2860984071459497e-06, 'wars': 2.1359639646448672e-05, 'secessionist': 2.4645738053594624e-06, 'Kalonji': 1.6430492035729749e-06, 'secede': 9.036770619651361e-06, 'meddle': 1.6430492035729749e-06, 'dispatching': 3.2860984071459497e-06, 'intervene': 2.4645738053594624e-06, 'openly': 2.875336106252706e-05, 'three-month': 4.107623008932437e-06, 'exasperated': 2.4645738053594624e-06, 'Mobutu': 2.4645738053594624e-06, 'flung': 1.232286902679731e-05, 'redoubled': 3.2860984071459497e-06, 'obstructionist': 2.4645738053594624e-06, 'departed': 8.215246017864873e-06, 'withdrawing': 4.107623008932437e-06, 'uniformed': 6.5721968142918994e-06, 'variously': 4.929147610718925e-06, 'mercenaries': 1.0679819823224336e-05, '65%': 1.6430492035729749e-06, 'directive': 2.4645738053594624e-06, 'interfere': 8.215246017864873e-06, 'unify': 2.4645738053594624e-06, 'federalize': 1.6430492035729749e-06, 'Balkanize': 1.6430492035729749e-06, 'smoldered': 2.4645738053594624e-06, 'flickered': 2.4645738053594624e-06, 'kidnaped': 3.2860984071459497e-06, 'appropriate': 5.586367292148114e-05, 'occurrence': 2.546726265538111e-05, 'resort': 1.0679819823224336e-05, 'eject': 1.6430492035729749e-06, "Lumumba's": 3.2860984071459497e-06, 'reconvention': 1.6430492035729749e-06, "McCloy's": 1.6430492035729749e-06, 'reliance': 5.750672212505412e-06, 'thorny': 2.4645738053594624e-06, 'Bizerte': 3.2860984071459497e-06, 'Tunis': 1.6430492035729749e-06, 'imbroglio': 1.6430492035729749e-06, 'quo': 9.85829522143785e-06, 'Mediterranean': 6.5721968142918994e-06, 'Tunisian': 3.2860984071459497e-06, 'Bahi': 1.6430492035729749e-06, 'Ladgham': 2.4645738053594624e-06, 'irreconcilable': 3.2860984071459497e-06, 'Habib': 1.6430492035729749e-06, 'Bourguiba': 1.6430492035729749e-06, 'picks': 4.107623008932437e-06, 'Uruguay': 1.6430492035729749e-06, 'Inter-American': 4.929147610718925e-06, 'Main': 9.85829522143785e-06, 'Alliance': 5.750672212505412e-06, 'Progress': 9.85829522143785e-06, 'Nationalist': 1.6430492035729749e-06, "China's": 3.2860984071459497e-06, 'dapper': 5.750672212505412e-06, 'diminutive': 3.2860984071459497e-06, 'Chen': 3.2860984071459497e-06, 'Cheng': 1.6430492035729749e-06, 'Chiang': 4.107623008932437e-06, "Kai-shek's": 1.6430492035729749e-06, 'emissary': 2.4645738053594624e-06, 'Outer': 4.107623008932437e-06, 'Mongolia': 1.6430492035729749e-06, 'woo': 3.2860984071459497e-06, 'Peking': 1.6430492035729749e-06, 'abstention': 4.929147610718925e-06, "Mongolia's": 1.6430492035729749e-06, 'conferred': 4.929147610718925e-06, 'emissaries': 1.6430492035729749e-06, 'Guatemala': 3.2860984071459497e-06, 'Nepal': 1.6430492035729749e-06, 'good-will': 1.6430492035729749e-06, 'Ivory': 1.6430492035729749e-06, 'skyjacked': 1.6430492035729749e-06, 'four-jet': 1.6430492035729749e-06, 'Boeing': 3.2860984071459497e-06, '707': 4.107623008932437e-06, 'stopovers': 1.6430492035729749e-06, 'Airlines': 3.2860984071459497e-06, 'night-coach': 1.6430492035729749e-06, 'Flight': 3.2860984071459497e-06, '1:35': 1.6430492035729749e-06, 'Thirty-one': 1.6430492035729749e-06, 'teen-age': 4.107623008932437e-06, '3:57': 1.6430492035729749e-06, 'stewardess': 2.4645738053594624e-06, 'aisle': 5.750672212505412e-06, 'bent': 2.875336106252706e-05, 'stomach': 3.1217934867886523e-05, 'sick': 4.107623008932437e-05, 'Salvador': 3.2860984071459497e-06, 'Desert': 4.107623008932437e-06, 'Carnegey': 2.4645738053594624e-06, 'Rickards': 4.107623008932437e-06, '52-year-old': 1.6430492035729749e-06, 'hijacked': 2.4645738053594624e-06, 'mid-flight': 1.6430492035729749e-06, 'Peruvian': 2.4645738053594624e-06, 'tri-motor': 1.6430492035729749e-06, 'Arequipa': 1.6430492035729749e-06, 'pirates': 4.107623008932437e-06, 'Cuban-American': 1.6430492035729749e-06, 'Electra': 1.6430492035729749e-06, 'Newsweek': 1.6430492035729749e-06, 'Stalling': 1.6430492035729749e-06, 'guns': 3.368250867324598e-05, 'elder': 8.215246017864873e-06, 'radioed': 2.4645738053594624e-06, 'skyjackers': 1.6430492035729749e-06, 'refuel': 2.4645738053594624e-06, 'McCauley': 2.4645738053594624e-06, 'Sacramento': 3.2860984071459497e-06, 'recruits': 7.393721416078387e-06, 'awoke': 8.215246017864873e-06, 'nap': 4.107623008932437e-06, 'nut': 1.3144393628583799e-05, 'recruiter': 1.6430492035729749e-06, 'volunteer': 7.393721416078387e-06, 'hostages': 3.2860984071459497e-06, 'Mullen': 2.4645738053594624e-06, 'Pfc.': 1.6430492035729749e-06, 'Augustine': 4.107623008932437e-06, 'Gilman': 3.2860984071459497e-06, 'boxer': 1.6430492035729749e-06, 'Immigration': 3.2860984071459497e-06, 'Border': 5.750672212505412e-06, '4:18': 1.6430492035729749e-06, "sheriff's": 4.929147610718925e-06, 'surged': 6.5721968142918994e-06, 'submachine': 3.2860984071459497e-06, 'ordinarily': 1.0679819823224336e-05, 'fuels': 1.6430492035729749e-06, 'consumed': 1.1501344425010824e-05, 'swap': 2.4645738053594624e-06, 'propeller-driven': 1.6430492035729749e-06, 'hijackers': 2.4645738053594624e-06, 'airplane': 9.85829522143785e-06, "Cuba's": 2.4645738053594624e-06, 'steal': 4.929147610718925e-06, 'embargo': 2.4645738053594624e-06, 'shadows': 1.7252016637516235e-05, 'Mountains': 8.215246017864873e-06, 'pry': 5.750672212505412e-06, 'baggage': 4.107623008932437e-06, 'luggage': 9.036770619651361e-06, 'subsequently': 9.036770619651361e-06, 'Bearden': 4.107623008932437e-06, '50-year-old': 1.6430492035729749e-06, 'ex-convict': 1.6430492035729749e-06, 'Coolidge': 2.218116424823516e-05, 'Cody': 1.6430492035729749e-06, 'high-school': 4.929147610718925e-06, 'Tension': 3.2860984071459497e-06, 'Beardens': 4.929147610718925e-06, 'slug': 8.215246017864873e-06, 'Officer': 4.107623008932437e-06, 'Simmons': 9.036770619651361e-06, 'ultimatum': 3.2860984071459497e-06, 'take-off': 4.107623008932437e-06, 'taxiing': 1.6430492035729749e-06, 'raced': 1.0679819823224336e-05, 'slugs': 4.107623008932437e-06, 'flattened': 5.750672212505412e-06, 'silenced': 4.929147610718925e-06, 'inboard': 3.2860984071459497e-06, 'engines': 1.4787442832156774e-05, 'Ambulances': 1.6430492035729749e-06, '12:50': 1.6430492035729749e-06, 'Crosby': 4.929147610718925e-06, 'eased': 7.393721416078387e-06, 'unarmed': 4.107623008932437e-06, 'distracted': 4.929147610718925e-06, 'stewardesses': 1.6430492035729749e-06, 'Toni': 1.6430492035729749e-06, 'Besset': 1.6430492035729749e-06, 'pocket': 3.532555787681896e-05, "Simmons'": 1.6430492035729749e-06, 'nodded': 4.2719279292897344e-05, 'Frog-marched': 1.6430492035729749e-06, '$100,000': 4.107623008932437e-06, 'kidnapping': 1.6430492035729749e-06, 'transporting': 3.2860984071459497e-06, 'peddle': 1.6430492035729749e-06, '36-year-old': 1.6430492035729749e-06, 'Taking': 1.0679819823224336e-05, 'precedence': 3.2860984071459497e-06, 'unaccustomed': 1.6430492035729749e-06, 'unanimity': 4.107623008932437e-06, '0': 1.889506584108921e-05, 'peacetime': 4.107623008932437e-06, '225,000': 1.6430492035729749e-06, 'requested': 1.0679819823224336e-05, '160,000': 2.4645738053594624e-06, 'hold-back': 1.6430492035729749e-06, 'mutterers': 1.6430492035729749e-06, 'labeled': 8.215246017864873e-06, 'prudently': 1.6430492035729749e-06, '$46.7': 1.6430492035729749e-06, 'tacked': 2.4645738053594624e-06, '$754': 1.6430492035729749e-06, 'B-52': 8.215246017864873e-06, 'long-range': 3.368250867324598e-05, 'bombers': 1.889506584108921e-05, 'Strategic': 4.107623008932437e-06, 'Command': 1.232286902679731e-05, '224-170': 1.6430492035729749e-06, '$5.2': 1.6430492035729749e-06, 'Debate': 4.107623008932437e-06, 'all-important': 4.929147610718925e-06, 'foreign-aid': 1.6430492035729749e-06, 'Food': 1.1501344425010824e-05, 'stew': 4.929147610718925e-06, 'Mulligatawny': 1.6430492035729749e-06, 'poor-mouth': 1.6430492035729749e-06, 'lowliest': 1.6430492035729749e-06, '1851': 4.107623008932437e-06, 'ceased': 1.0679819823224336e-05, 'enlivened': 2.4645738053594624e-06, 'Maine': 8.215246017864873e-06, 'Idaho': 3.2860984071459497e-06, 'menu': 4.929147610718925e-06, 'drab': 4.929147610718925e-06, 'smelts': 1.6430492035729749e-06, 'soft-shell': 1.6430492035729749e-06, 'crabs': 2.4645738053594624e-06, 'grapefruit': 2.4645738053594624e-06, 'bean': 4.107623008932437e-06, 'soup': 1.232286902679731e-05, 'Dubois': 1.6430492035729749e-06, 'citizenry': 3.2860984071459497e-06, 'ventured': 4.929147610718925e-06, 'haute': 2.4645738053594624e-06, 'cuisine': 1.6430492035729749e-06, '$10,000-per-year': 1.6430492035729749e-06, 'French-born': 1.6430492035729749e-06, 'maitre': 1.6430492035729749e-06, "d'hotel": 1.6430492035729749e-06, 'Holders': 1.6430492035729749e-06, 'toll-road': 7.393721416078387e-06, 'turnpikes': 9.036770619651361e-06, 'Long-term': 1.6430492035729749e-06, 'Higher': 8.215246017864873e-06, 'toll': 1.232286902679731e-05, 'Result': 1.6430492035729749e-06, 'payoff': 1.6430492035729749e-06, 'speculative': 7.393721416078387e-06, 'Things': 6.5721968142918994e-06, 'streams': 9.85829522143785e-06, 'speculations': 4.107623008932437e-06, 'investments': 5.750672212505412e-06, 'tending': 4.107623008932437e-06, "Poor's": 1.6430492035729749e-06, 'slipped': 2.7110311858954083e-05, 'bucked': 1.6430492035729749e-06, 'rises': 1.6430492035729746e-05, 'outnumber': 2.4645738053594624e-06, 'Tax-free': 1.6430492035729749e-06, 'more-than-ordinary': 1.6430492035729749e-06, 'risen': 9.036770619651361e-06, 'unmarried': 4.929147610718925e-06, 'investor': 1.6430492035729749e-06, '$16,000': 1.6430492035729749e-06, '$32,000': 2.4645738053594624e-06, 'Swelling': 1.6430492035729749e-06, '12-month': 1.6430492035729749e-06, 'happening': 2.3824213451808133e-05, 'Blyth': 1.6430492035729749e-06, 'lags': 3.2860984071459497e-06, 'Indication': 1.6430492035729749e-06, 'turnpike': 5.750672212505412e-06, 'Turnpike': 8.215246017864873e-06, 'slumped': 7.393721416078387e-06, "road's": 4.107623008932437e-06, '186': 2.4645738053594624e-06, '173': 1.6430492035729749e-06, 'preceding': 2.546726265538111e-05, 'Costs': 4.107623008932437e-06, '121': 3.2860984071459497e-06, 'Slow': 2.4645738053594624e-06, 'successes': 1.889506584108921e-05, '187-mile': 1.6430492035729749e-06, 'Toll': 2.4645738053594624e-06, 'Success': 6.5721968142918994e-06, "engineers'": 3.2860984071459497e-06, 'rosy': 6.5721968142918994e-06, 'toll-rate': 1.6430492035729749e-06, 'extensions': 4.929147610718925e-06, 'tolls': 2.4645738053594624e-06, 'Richmond-Petersburg': 1.6430492035729749e-06, 'Easier': 1.6430492035729749e-06, 'access': 2.0538115044662184e-05, "motorists'": 1.6430492035729749e-06, 'illustration': 1.3965918230370285e-05, '62': 2.4645738053594624e-06, 'Further': 2.0538115044662184e-05, 'Wichita': 1.6430492035729749e-06, 'Kans.': 1.6430492035729749e-06, 'deficiency': 9.85829522143785e-06, 'opportunities': 4.025470548753788e-05, 'Skyway': 1.6430492035729749e-06, 'planners': 1.1501344425010824e-05, 'default': 2.4645738053594624e-06, 'defaulted': 1.6430492035729749e-06, 'Already': 1.3965918230370285e-05, 'margins': 5.750672212505412e-06, 'attracting': 4.107623008932437e-06, 'break-even': 2.4645738053594624e-06, 'competitively': 2.4645738053594624e-06, 'Luther': 4.929147610718925e-06, 'toured': 2.4645738053594624e-06, "Italy's": 2.4645738053594624e-06, 'Fiat': 8.215246017864873e-06, 'Olivetti': 4.107623008932437e-06, 'typewriters': 1.6430492035729749e-06, 'calculating': 6.5721968142918994e-06, 'cabled': 1.6430492035729749e-06, 'Turin': 2.4645738053594624e-06, 'Follow': 6.5721968142918994e-06, 'Plan': 8.215246017864873e-06, 'enables': 8.215246017864873e-06, 'fraction': 1.7252016637516235e-05, 'skilled': 2.546726265538111e-05, 'earns': 2.4645738053594624e-06, 'infrequent': 4.107623008932437e-06, 'Underwood': 2.4645738053594624e-06, "Underwood's": 1.6430492035729749e-06, 'exports': 9.036770619651361e-06, 'layout': 4.929147610718925e-06, 'design-conscious': 1.6430492035729749e-06, 'sales-conscious': 1.6430492035729749e-06, 'advertising-conscious': 1.6430492035729749e-06, 'inflow': 1.6430492035729749e-06, 'vigor': 1.232286902679731e-05, 'textiles': 1.3144393628583799e-05, 'imports': 1.3144393628583799e-05, 'textile': 2.218116424823516e-05, 'Important': 4.107623008932437e-06, 'textile-importing': 1.6430492035729749e-06, 'textile-exporting': 1.6430492035729749e-06, 'noting': 1.0679819823224336e-05, 'industrialized': 8.215246017864873e-06, 'less-developed': 1.6430492035729749e-06, 'exporting': 1.6430492035729749e-06, 'Idea': 2.4645738053594624e-06, 'low-wage': 3.2860984071459497e-06, 'high-wage': 1.6430492035729749e-06, 'textile-producing': 2.4645738053594624e-06, 'curbing': 3.2860984071459497e-06, 'limiting': 9.85829522143785e-06, 'Lancashire': 1.6430492035729749e-06, 'Pact': 3.2860984071459497e-06, 'None': 1.3965918230370285e-05, 'capture': 1.4787442832156774e-05, 'loudly': 1.4787442832156774e-05, 'protest': 1.97165904428757e-05, 'Spanish': 3.0396410266100035e-05, 'Portuguese': 3.2860984071459497e-06, 'pour': 8.215246017864873e-06, 'unrestrictedly': 1.6430492035729749e-06, 'Pakistanis': 2.4645738053594624e-06, 'chafing': 2.4645738053594624e-06, 'bilateral': 2.4645738053594624e-06, 'quotas': 3.2860984071459497e-06, 'Gradual': 1.6430492035729749e-06, 'stabilization': 3.2860984071459497e-06, 'clue': 1.3144393628583799e-05, 'Note': 1.8073541239302723e-05, 'modernization': 1.1501344425010824e-05, 'shrinkage': 3.2860984071459497e-06, 'transferring': 1.6430492035729749e-06, 'feasible': 1.3144393628583799e-05, 'Special': 1.4787442832156774e-05, 'Import': 1.6430492035729749e-06, 'forcing': 1.1501344425010824e-05, 'shrink': 4.929147610718925e-06, "What's": 3.203945946967301e-05, 'handwriting': 4.929147610718925e-06, 'highest-paid': 1.6430492035729749e-06, 'coal': 2.3824213451808133e-05, 'miners': 4.107623008932437e-06, 'cheap': 1.97165904428757e-05, "steelmakers'": 1.6430492035729749e-06, 'mouths': 7.393721416078387e-06, 'Wales': 7.393721416078387e-06, 'steelmaker': 1.6430492035729749e-06, 'takings': 2.4645738053594624e-06, 'Welsh': 4.107623008932437e-06, 'markets': 2.546726265538111e-05, '$2.80': 1.6430492035729749e-06, 'ton': 1.1501344425010824e-05, 'cheaper': 9.85829522143785e-06, 'rail': 1.3965918230370285e-05, 'mines': 1.8073541239302723e-05, 'mechanization': 4.107623008932437e-06, 'seams': 8.215246017864873e-06, 'attactive': 1.6430492035729749e-06, 'nationalized': 2.4645738053594624e-06, 'twisting': 9.85829522143785e-06, 'Productivity': 2.4645738053594624e-06, 'Communist-led': 2.4645738053594624e-06, 'unprofitable': 1.6430492035729749e-06, 'borrower': 2.4645738053594624e-06, 'five-cent': 2.4645738053594624e-06, 'fiction': 3.861165628396491e-05, 'rentals': 2.4645738053594624e-06, 'apologetically': 5.750672212505412e-06, 'sorry': 3.779013168217842e-05, 'Behind': 1.232286902679731e-05, 'variations': 1.6430492035729746e-05, 'ever-present': 5.750672212505412e-06, 'libraries': 2.3824213451808133e-05, 'grist': 2.4645738053594624e-06, '15,000': 2.4645738053594624e-06, 'readers': 2.9574885664313547e-05, 'lovers': 7.393721416078387e-06, 'nonfiction': 4.107623008932437e-06, 'clientele': 3.2860984071459497e-06, 'diversified': 4.107623008932437e-06, 'budgets': 4.929147610718925e-06, 'hopelessly': 6.5721968142918994e-06, 'startlingly': 4.107623008932437e-06, 'exceed': 1.6430492035729746e-05, "librarian's": 1.6430492035729749e-06, 'richest': 4.929147610718925e-06, 'plight': 6.5721968142918994e-06, 'proportionately': 8.215246017864873e-06, 'Confronted': 2.4645738053594624e-06, 'limitations': 2.300268885002165e-05, 'bounty': 3.2860984071459497e-06, 'contrasts': 9.85829522143785e-06, 'density': 2.6288787257167598e-05, 'cross-section': 4.929147610718925e-06, 'extreme': 5.011300070897573e-05, 'upper': 5.504214831969465e-05, 'sparsely': 2.4645738053594624e-06, 'populated': 1.0679819823224336e-05, 'Nassau': 1.232286902679731e-05, 'high-density': 2.4645738053594624e-06, 'ample': 1.3965918230370285e-05, 'thriving': 4.107623008932437e-06, 'wary': 6.5721968142918994e-06, 'well-stocked': 1.6430492035729749e-06, 'cherish': 4.929147610718925e-06, 'joining': 1.3144393628583799e-05, 'radical': 2.464573805359462e-05, 'autonomy': 1.5608967433943262e-05, 'preserved': 1.6430492035729746e-05, 'maintains': 1.3965918230370285e-05, 'advantages': 2.300268885002165e-05, 'librarians': 4.929147610718925e-06, 'foresee': 3.2860984071459497e-06, 'distant': 3.1217934867886523e-05, 'co-op': 1.6430492035729749e-06, 'requires': 4.7648426903616267e-05, 'volumes': 3.450403327503247e-05, 'nucleus': 9.85829522143785e-06, 'develops': 9.85829522143785e-06, 'thirty': 4.6826902301829785e-05, 'fifty': 5.2577574514335196e-05, 'capita': 1.3965918230370285e-05, 'inclusive': 4.107623008932437e-06, 'recognizes': 9.036770619651361e-06, 'broaden': 7.393721416078387e-06, 'everyday': 1.0679819823224336e-05, 'Hempstead': 3.2860984071459497e-06, '1965': 4.929147610718925e-06, 'Basic': 7.393721416078387e-06, 'tools': 2.875336106252706e-05, 'backbone': 4.107623008932437e-06, 'specialization': 9.036770619651361e-06, 'microfilm': 2.4645738053594624e-06, 'founding': 9.85829522143785e-06, 'periodicals': 4.929147610718925e-06, 'interlibrary': 2.4645738053594624e-06, 'connected': 2.793183646074057e-05, 'teletype': 2.4645738053594624e-06, 'truck': 4.60053777000433e-05, 'canvas': 1.6430492035729746e-05, 'psychology': 1.1501344425010824e-05, 'religion': 8.379550938222171e-05, 'Freeport': 1.6430492035729749e-06, 'biography': 1.1501344425010824e-05, 'centered': 1.232286902679731e-05, 'Levittown': 1.6430492035729749e-06, 'Hewlett-Woodmere': 1.6430492035729749e-06, 'repository': 4.107623008932437e-06, 'wholly': 2.0538115044662184e-05, 'quarter-century': 2.4645738053594624e-06, 'comprehensive': 1.5608967433943262e-05, 'saves': 4.929147610718925e-06, 'bulk': 1.3965918230370285e-05, 'discounts': 4.107623008932437e-06, 'bookkeeping': 4.929147610718925e-06, 'billing': 4.107623008932437e-06, 'Books': 4.107623008932437e-06, 'resource': 8.215246017864873e-06, 'Schools': 4.929147610718925e-06, 'documentary': 4.107623008932437e-06, 'catalogue': 7.393721416078387e-06, 'classics': 8.215246017864873e-06, 'Nanook': 1.6430492035729749e-06, "Emperor's": 1.6430492035729749e-06, 'Nightingale': 1.6430492035729749e-06, 'Balloon': 1.6430492035729749e-06, 'Workshops': 1.6430492035729749e-06, "system's": 2.4645738053594624e-06, 'understands': 5.750672212505412e-06, 'responsibilities': 2.1359639646448672e-05, 'conducts': 4.107623008932437e-06, 'well-planned': 1.6430492035729749e-06, 'book-review': 1.6430492035729749e-06, 'book-selection': 1.6430492035729749e-06, 'Sample': 3.2860984071459497e-06, 'copies': 1.4787442832156774e-05, 'evaluate': 1.1501344425010824e-05, 'Story': 4.929147610718925e-06, 'pre-school': 1.6430492035729749e-06, 'grassroots': 1.6430492035729749e-06, 'prepares': 4.107623008932437e-06, 'displays': 1.8073541239302723e-05, 'booklists': 1.6430492035729749e-06, 'brochures': 2.4645738053594624e-06, 'publishes': 4.107623008932437e-06, 'Sum': 1.6430492035729749e-06, 'Substance': 3.2860984071459497e-06, 'newsletter': 4.107623008932437e-06, 'governed': 1.3144393628583799e-05, 'geographically': 5.750672212505412e-06, 'bear': 4.436232849647032e-05, 'Librarians': 1.6430492035729749e-06, 'borne': 7.393721416078387e-06, 'multiplying': 6.5721968142918994e-06, 'newcomers': 4.107623008932437e-06, 'maligned': 2.4645738053594624e-06, 'teen-agers': 1.0679819823224336e-05, 'co-ops': 1.6430492035729749e-06, 'citizen': 2.3824213451808133e-05, 'advances': 1.4787442832156774e-05, 'educated': 1.8073541239302723e-05, 'discriminating': 6.5721968142918994e-06, 'slave': 2.546726265538111e-05, 'spiritual': 5.2577574514335196e-05, 'restraint': 9.85829522143785e-06, 'falls': 1.97165904428757e-05, 'grows': 1.889506584108921e-05, 'translate': 1.3965918230370285e-05, 'inadequacy': 3.2860984071459497e-06, 'vigorously': 1.1501344425010824e-05, '25,000,000': 1.6430492035729749e-06, '50,000,000': 1.6430492035729749e-06, '124': 2.4645738053594624e-06, '1,509': 1.6430492035729749e-06, '66': 2.4645738053594624e-06, 'pupils': 2.0538115044662184e-05, 'render': 9.85829522143785e-06, 'vitally': 8.215246017864873e-06, '16-22': 1.6430492035729749e-06, 'richer': 4.929147610718925e-06, 'fuller': 4.929147610718925e-06, 'adjourns': 1.6430492035729749e-06, 'convened': 2.4645738053594624e-06, 'conjunction': 1.3965918230370285e-05, 'abandoning': 5.750672212505412e-06, 'budgeting': 5.750672212505412e-06, 'Long-range': 2.4645738053594624e-06, 'musts': 1.6430492035729749e-06, 'crisis-to-crisis': 1.6430492035729749e-06, 'insured': 5.750672212505412e-06, 'shuffle': 3.2860984071459497e-06, 'await': 8.215246017864873e-06, 'drag': 1.232286902679731e-05, 'limits': 3.368250867324598e-05, 'repeal': 6.5721968142918994e-06, 'penal': 1.6430492035729749e-06, 'banning': 1.6430492035729749e-06, 'fireworks': 4.929147610718925e-06, 'reappraisal': 2.4645738053594624e-06, 'Fortunately': 1.4787442832156774e-05, 'spared': 8.215246017864873e-06, 'spate': 2.4645738053594624e-06, 'resolutions': 5.750672212505412e-06, 'empire': 8.215246017864873e-06, 'congratulate': 4.107623008932437e-06, 'answers': 3.6968607080391934e-05, 'proudly': 8.215246017864873e-06, 'windup': 1.6430492035729749e-06, "Jefferson's": 4.929147610718925e-06, 'dictum': 4.107623008932437e-06, 'Keep': 1.4787442832156774e-05, 'inattentive': 1.6430492035729749e-06, 'governors': 5.750672212505412e-06, 'wolves': 4.107623008932437e-06, 'Newspapermen': 1.6430492035729749e-06, 'penetrating': 1.232286902679731e-05, 'cons': 1.6430492035729749e-06, 'wade': 2.4645738053594624e-06, 'regularity': 2.4645738053594624e-06, 'Coosa': 2.4645738053594624e-06, 'Cities': 1.6430492035729749e-06, 'peeled': 4.929147610718925e-06, 'Coupling': 1.6430492035729749e-06, '$83,750': 1.6430492035729749e-06, '$30,000': 3.2860984071459497e-06, 'five-member': 1.6430492035729749e-06, 'undertaking': 4.929147610718925e-06, 'abundant': 8.215246017864873e-06, 'banding': 1.6430492035729749e-06, 'area-wide': 2.4645738053594624e-06, 'go-it-alone': 1.6430492035729749e-06, 'strengthens': 4.929147610718925e-06, 'replacing': 7.393721416078387e-06, 'retaliation': 5.750672212505412e-06, 'removes': 4.929147610718925e-06, 'A-bombs': 1.6430492035729749e-06, 'deter': 1.6430492035729749e-06, 'hers': 1.3965918230370285e-05, 'delusion': 2.4645738053594624e-06, 'deterrence': 1.6430492035729749e-06, 'besides': 2.1359639646448672e-05, 'stance': 5.750672212505412e-06, 'guess': 4.354080389468383e-05, 'extremity': 4.107623008932437e-06, 'Soviets': 1.0679819823224336e-05, 'leeway': 2.4645738053594624e-06, 'low-grade': 2.4645738053594624e-06, 'brushfire': 2.4645738053594624e-06, 'aggressions': 3.2860984071459497e-06, 'gearing': 1.6430492035729749e-06, 'junks': 1.6430492035729749e-06, 'bluff': 7.393721416078387e-06, 'brinkmanship': 1.6430492035729749e-06, 'builds': 6.5721968142918994e-06, 'DeKalb': 5.750672212505412e-06, 'beam': 1.7252016637516235e-05, "DeKalb's": 1.6430492035729749e-06, 'minimum': 5.668519752326763e-05, 'beefed-up': 2.4645738053594624e-06, 'sanitation': 6.5721968142918994e-06, 'digest': 1.6430492035729749e-06, 'Emmerich': 2.4645738053594624e-06, 'demonstrating': 4.929147610718925e-06, 'Mennen': 1.6430492035729749e-06, 'Touring': 2.4645738053594624e-06, 'observed': 6.161434513398656e-05, 'Africans': 4.107623008932437e-06, 'Zanzibar': 1.6430492035729749e-06, 'imperialists': 1.6430492035729749e-06, 'Chin': 1.6430492035729749e-06, 'Soapy': 1.6430492035729749e-06, 'Power': 1.3965918230370285e-05, 'Confidence': 1.6430492035729749e-06, "Company's": 6.5721968142918994e-06, 'industrialization': 2.4645738053594624e-06, '$1,750,000': 1.6430492035729749e-06, 'Milledgeville': 1.6430492035729749e-06, '$1,250,000': 1.6430492035729749e-06, 'half-million': 1.6430492035729749e-06, 'Either': 9.85829522143785e-06, 'sounds': 4.354080389468383e-05, 'hunk': 2.4645738053594624e-06, 'abolished': 2.4645738053594624e-06, 'nurses': 4.107623008932437e-06, 'Patients': 1.6430492035729749e-06, 'deserve': 1.0679819823224336e-05, '$3.15': 1.6430492035729749e-06, 'intensive': 1.3144393628583799e-05, 'behooves': 1.6430492035729749e-06, 'helpful': 2.464573805359462e-05, 'Trujillo': 1.0679819823224336e-05, 'Assassination': 1.6430492035729749e-06, 'tyrant': 2.4645738053594624e-06, 'repulsive': 4.107623008932437e-06, 'Rafael': 1.6430492035729749e-06, 'blood-thirsty': 1.6430492035729749e-06, 'dictator': 4.107623008932437e-06, 'Dominican': 1.232286902679731e-05, 'deserved': 1.0679819823224336e-05, 'even-handed': 1.6430492035729749e-06, 'Benefactor': 1.6430492035729749e-06, 'Ciudad': 3.2860984071459497e-06, 'Caribbean': 6.5721968142918994e-06, 'fiefdom': 1.6430492035729749e-06, 'assassination': 3.2860984071459497e-06, 'scores': 1.1501344425010824e-05, 'deaths': 7.393721416078387e-06, 'abduction': 1.6430492035729749e-06, 'Maria': 9.85829522143785e-06, 'Galindez': 1.6430492035729749e-06, 'schemes': 5.750672212505412e-06, 'Romulo': 1.6430492035729749e-06, 'Betancourt': 2.4645738053594624e-06, 'Venezuela': 3.2860984071459497e-06, 'demise': 4.107623008932437e-06, 'Venezuelan': 2.4645738053594624e-06, 'Marcos': 1.6430492035729749e-06, 'Perez': 1.6430492035729749e-06, 'Jimenez': 1.6430492035729749e-06, 'uncovered': 6.5721968142918994e-06, 'quashed': 1.6430492035729749e-06, 'professedly': 3.2860984071459497e-06, 'benevolent': 2.4645738053594624e-06, 'tends': 2.875336106252706e-05, 'oppressive': 4.107623008932437e-06, 'Unquestionably': 2.4645738053594624e-06, 'silence': 3.94331808857514e-05, 'criticism': 3.203945946967301e-05, "Benefactor's": 1.6430492035729749e-06, 'vanity': 6.5721968142918994e-06, 'overflowing': 2.4645738053594624e-06, 'displeasure': 4.107623008932437e-06, 'maintained': 4.025470548753788e-05, 'amply': 4.107623008932437e-06, 'lobbies': 1.6430492035729749e-06, 'sycophantically': 1.6430492035729749e-06, 'chanted': 5.750672212505412e-06, 'friendship': 2.300268885002165e-05, 'altogether': 2.218116424823516e-05, 'Tardily': 1.6430492035729749e-06, 'tarnished': 3.2860984071459497e-06, 'repression': 5.750672212505412e-06, 'Thereupon': 2.4645738053594624e-06, 'tyranny': 9.036770619651361e-06, 'confines': 6.5721968142918994e-06, "Trujillo's": 2.4645738053594624e-06, 'right-wing': 1.6430492035729749e-06, 'censure': 3.2860984071459497e-06, 'mouthing': 2.4645738053594624e-06, 'tacit': 2.4645738053594624e-06, 'rapprochement': 1.6430492035729749e-06, 'bete': 1.6430492035729749e-06, 'noire': 1.6430492035729749e-06, 'illustrating': 4.107623008932437e-06, 'totalitarianism': 2.4645738053594624e-06, 'coalesces': 1.6430492035729749e-06, 'precious': 1.7252016637516235e-05, 'stability': 1.1501344425010824e-05, 'vacuum': 1.7252016637516235e-05, 'creates': 1.1501344425010824e-05, 'Communist-type': 1.6430492035729749e-06, 'authoritarianism': 2.4645738053594624e-06, 'twist': 1.3965918230370285e-05, 'breathe': 6.5721968142918994e-06, 'Start': 1.232286902679731e-05, 'High-speed': 1.6430492035729749e-06, 'Parkway': 3.2860984071459497e-06, 'Cabin': 2.4645738053594624e-06, 'Echo': 1.6430492035729749e-06, 'Brookmont': 1.6430492035729749e-06, 'constitute': 2.464573805359462e-05, 'alluring': 1.6430492035729749e-06, 'sample': 4.518385309825681e-05, 'Capital': 4.929147610718925e-06, 'presenting': 8.215246017864873e-06, 'NCTA': 3.2860984071459497e-06, 'Darwin': 1.6430492035729749e-06, 'Stolzenbach': 1.6430492035729749e-06, 'frankly': 9.85829522143785e-06, 'launching': 3.2860984071459497e-06, 'parkway': 3.2860984071459497e-06, 'inference': 6.5721968142918994e-06, 'barricades': 4.107623008932437e-06, 'acquiesce': 3.2860984071459497e-06, 'dismemberment': 2.4645738053594624e-06, 'acquiesced': 1.6430492035729749e-06, 'Ulbricht': 2.4645738053594624e-06, 'usurp': 1.6430492035729749e-06, 'semi-city': 1.6430492035729749e-06, 'wartime': 5.750672212505412e-06, 'comprising': 3.2860984071459497e-06, 'zones': 3.2860984071459497e-06, 'respectively': 2.6288787257167598e-05, 'blockade': 1.1501344425010824e-05, 'airlift': 1.6430492035729749e-06, 'mitigate': 1.6430492035729749e-06, 'sector': 1.1501344425010824e-05, 'promulgating': 1.6430492035729749e-06, 'illegally': 2.4645738053594624e-06, 'Berlin-West': 1.6430492035729749e-06, 'gratuitous': 3.2860984071459497e-06, 'Adenauer': 4.107623008932437e-06, 'provocative': 6.5721968142918994e-06, 'sound-truck': 1.6430492035729749e-06, 'taunts': 2.4645738053594624e-06, 'Gerhard': 1.6430492035729749e-06, 'Eisler': 1.6430492035729749e-06, 'isolating': 4.929147610718925e-06, 'quadripartite': 1.6430492035729749e-06, 'acknowledging': 1.6430492035729749e-06, 'recognizing': 5.750672212505412e-06, 'exists': 3.532555787681896e-05, 'fusillades': 1.6430492035729749e-06, 'stray': 1.0679819823224336e-05, 'vopos': 1.6430492035729749e-06, 'recovered': 8.215246017864873e-06, 'glass': 7.968788637328927e-05, 'hooliganism': 1.6430492035729749e-06, 'redressed': 1.6430492035729749e-06, 'Remembering': 3.2860984071459497e-06, 'step-by-step': 2.4645738053594624e-06, 'Danzig': 1.6430492035729749e-06, 'misgivings': 4.929147610718925e-06, 'salami': 6.5721968142918994e-06, 'dispatch': 7.393721416078387e-06, 'stiffening': 4.107623008932437e-06, 'indignities': 3.2860984071459497e-06, 'buffalo': 7.393721416078387e-06, 'bison': 1.6430492035729749e-06, 'grazing': 3.2860984071459497e-06, 'throw-rug': 1.6430492035729749e-06, 'dusty-green': 1.6430492035729749e-06, 'grassland': 1.6430492035729749e-06, 'seamless': 1.6430492035729749e-06, 'sun-bleached': 1.6430492035729749e-06, 'dome': 1.4787442832156774e-05, 'prairie': 7.393721416078387e-06, 'indelibly': 1.6430492035729749e-06, 'conquest': 7.393721416078387e-06, 'cinema': 3.2860984071459497e-06, 'live-oak': 1.6430492035729749e-06, 'canyons': 2.4645738053594624e-06, 'endless': 1.7252016637516235e-05, 'seas': 9.036770619651361e-06, 'symbolized': 9.85829522143785e-06, 'westward': 7.393721416078387e-06, 'valleys': 4.929147610718925e-06, 'Pottawatomie': 1.6430492035729749e-06, 'roam': 5.750672212505412e-06, 'moth-eaten': 1.6430492035729749e-06, 'zoo': 5.750672212505412e-06, 'specimens': 9.85829522143785e-06, 'Wooded': 1.6430492035729749e-06, 'folds': 3.2860984071459497e-06, 'Grasslands': 5.750672212505412e-06, 'unfenced': 2.4645738053594624e-06, 'unplowed': 2.4645738053594624e-06, 'unbroken': 6.5721968142918994e-06, 'silo': 1.6430492035729749e-06, 'settlers': 1.0679819823224336e-05, 'ecological': 2.4645738053594624e-06, 'clinch': 2.4645738053594624e-06, 'Whisky': 1.6430492035729749e-06, 'distiller': 1.6430492035729749e-06, 'customary': 1.1501344425010824e-05, 'prohibition': 8.215246017864873e-06, 'hard-liquor': 2.4645738053594624e-06, 'Broadcasters': 2.4645738053594624e-06, 'anti-liquor': 1.6430492035729749e-06, 'major-market': 1.6430492035729749e-06, 'Communications': 3.2860984071459497e-06, 'commercials': 9.036770619651361e-06, 'Past': 4.107623008932437e-06, 'Distilled': 2.4645738053594624e-06, 'Spirits': 2.4645738053594624e-06, 'barring': 3.2860984071459497e-06, 'ads': 9.036770619651361e-06, 'Simply': 4.929147610718925e-06, 'subverting': 1.6430492035729749e-06, 'NAB': 1.6430492035729749e-06, 'suffer': 2.7110311858954083e-05, 'unfairly': 2.4645738053594624e-06, 'non-code': 1.6430492035729749e-06, 'glamour': 4.929147610718925e-06, 'surrounding': 2.1359639646448672e-05, 'bourbon': 4.107623008932437e-06, 'whisky': 1.889506584108921e-05, 'fatuous': 2.4645738053594624e-06, 'pseudo-sophistication': 1.6430492035729749e-06, 'soft-drinks': 1.6430492035729749e-06, 'toothpaste': 1.6430492035729749e-06, 'enticing': 1.6430492035729749e-06, 'viewer': 4.107623008932437e-06, 'sipping': 6.5721968142918994e-06, 'Oopsie-Cola': 1.6430492035729749e-06, 'gulling': 1.6430492035729749e-06, 'downing': 1.6430492035729749e-06, "Democrats'": 1.6430492035729749e-06, 'Registered': 1.6430492035729749e-06, "party's": 7.393721416078387e-06, 'faction': 4.929147610718925e-06, 'lax': 3.2860984071459497e-06, 'awkward': 9.85829522143785e-06, 'livelier': 2.4645738053594624e-06, 'links': 6.5721968142918994e-06, 'ills': 8.215246017864873e-06, 'public-spirited': 2.4645738053594624e-06, 'shortcomings': 4.929147610718925e-06, 'mercilessly': 3.2860984071459497e-06, 'regulars': 4.929147610718925e-06, 'bosses': 4.929147610718925e-06, "K's": 1.6430492035729749e-06, 'softly': 2.546726265538111e-05, 'sticks': 1.889506584108921e-05, 'helicopter-borne': 1.6430492035729749e-06, 'Bangkok': 1.6430492035729749e-06, 'Australian': 8.215246017864873e-06, 'Thai': 1.6430492035729749e-06, 'dealings': 6.5721968142918994e-06, 'issuing': 3.2860984071459497e-06, 'callable': 1.6430492035729749e-06, 'bluffs': 4.107623008932437e-06, 'pawn': 2.4645738053594624e-06, 'unprovocative': 1.6430492035729749e-06, 'purely': 2.464573805359462e-05, 'tempted': 1.1501344425010824e-05, 'bog': 1.6430492035729749e-06, 'Casualties': 1.6430492035729749e-06, '2,000': 7.393721416078387e-06, 'Minh': 1.6430492035729749e-06, 'shore': 3.532555787681896e-05, 'combat-tested': 1.6430492035729749e-06, 'monsoon-shrouded': 1.6430492035729749e-06, 'road-shy': 1.6430492035729749e-06, "guerrilla-th'-wisp": 1.6430492035729749e-06, 'terrain': 7.393721416078387e-06, 'savored': 3.2860984071459497e-06, 'enjoyment': 1.8073541239302723e-05, 'Braddock-against-the-Indians': 1.6430492035729749e-06, 'aim': 3.0396410266100035e-05, 'ironic': 1.0679819823224336e-05, 'concept': 7.065111575363791e-05, 'bypassed': 1.6430492035729749e-06, 'unreasonable': 3.2860984071459497e-06, 'tacitly': 2.4645738053594624e-06, 'rightist': 1.6430492035729749e-06, 'ousted': 1.6430492035729749e-06, 'pro-neutralist': 1.6430492035729749e-06, 'patrolled': 2.4645738053594624e-06, 'guaranteed-neutral': 1.6430492035729749e-06, 'coup-proof': 1.6430492035729749e-06, 'well-ruled': 1.6430492035729749e-06, 'militant': 7.393721416078387e-06, 'minority': 1.7252016637516235e-05, 'seal': 1.4787442832156774e-05, 'awaits': 3.2860984071459497e-06, 'overwhelming': 1.6430492035729746e-05, '64-13': 1.6430492035729749e-06, 'emulated': 1.6430492035729749e-06, 'Twice': 7.393721416078387e-06, 'backing': 7.393721416078387e-06, 'ETV': 2.4645738053594624e-06, '$1,000,000': 2.4645738053594624e-06, 'departs': 2.4645738053594624e-06, 'Goodby': 1.6430492035729749e-06, 'sturdy': 1.3144393628583799e-05, 'habitat': 1.232286902679731e-05, 'flourished': 5.750672212505412e-06, 'forceful': 7.393721416078387e-06, 'classify': 5.750672212505412e-06, 'Deal': 8.215246017864873e-06, 'Frontier': 4.929147610718925e-06, 'rear-looking': 1.6430492035729749e-06, 'partisans': 1.6430492035729749e-06, 'persuasion': 8.215246017864873e-06, 'politician': 1.1501344425010824e-05, 'unnumbered': 1.6430492035729749e-06, 'loquacious': 2.4645738053594624e-06, 'retraction': 1.6430492035729749e-06, 'theirs': 1.6430492035729746e-05, 'flamboyant': 3.2860984071459497e-06, 'audiences': 1.3965918230370285e-05, 'growl': 4.107623008932437e-06, 'nod': 9.85829522143785e-06, 'dramas': 5.750672212505412e-06, 'chin': 2.0538115044662184e-05, 'gripping': 5.750672212505412e-06, 'chatter': 6.5721968142918994e-06, 'subside': 2.4645738053594624e-06, 'sensibly': 4.107623008932437e-06, 'oratorical': 2.4645738053594624e-06, 'persuading': 4.929147610718925e-06, 'educating': 3.2860984071459497e-06, 'patiently': 7.393721416078387e-06, 'generations': 1.97165904428757e-05, 'coincided': 5.750672212505412e-06, 'loved': 4.6826902301829785e-05, 'Sound': 3.2860984071459497e-06, 'Harding': 2.4645738053594624e-06, 'Calvin': 4.107623008932437e-06, 'FDR': 2.4645738053594624e-06, 'revolution': 3.6147082478605446e-05, 'fighter': 8.215246017864873e-06, 'recall': 3.286098407145949e-05, 'hopeless': 1.232286902679731e-05, 'partisan': 1.0679819823224336e-05, 'sadder': 1.6430492035729749e-06, 'presidents': 5.750672212505412e-06, 'campaigns': 1.4787442832156774e-05, 'un': 2.4645738053594624e-06, 'airmen': 1.6430492035729749e-06, 'banner': 5.750672212505412e-06, 'jungle': 1.5608967433943262e-05, 'bloodlust': 1.6430492035729749e-06, 'murderers': 4.929147610718925e-06, 'dismembered': 2.4645738053594624e-06, 'river': 6.407891893934602e-05, 'excuse': 2.0538115044662184e-05, 'mistaken': 1.4787442832156774e-05, 'Italians': 6.5721968142918994e-06, 'atrocities': 2.4645738053594624e-06, 'savages': 5.750672212505412e-06, 'condoned': 1.6430492035729749e-06, 'dissident': 1.6430492035729749e-06, 'Does': 3.368250867324598e-05, 'nationhood': 1.6430492035729749e-06, 'contrary': 3.861165628396491e-05, 'piled': 1.3965918230370285e-05, 'Mass': 8.215246017864873e-06, 'rapes': 1.6430492035729749e-06, 'troop': 8.215246017864873e-06, 'mutinies': 1.6430492035729749e-06, 'pillage': 3.2860984071459497e-06, 'adventures': 1.0679819823224336e-05, 'sanction': 9.85829522143785e-06, 'occurrences': 9.036770619651361e-06, 'outlawry': 1.6430492035729749e-06, 'anarchy': 6.5721968142918994e-06, 'demonstrably': 2.4645738053594624e-06, 'incapable': 9.036770619651361e-06, 'commanding': 8.215246017864873e-06, 'bury': 4.107623008932437e-06, 'wake': 1.97165904428757e-05, 'ruin': 1.232286902679731e-05, 'Right': 1.3965918230370285e-05, 'invade': 4.929147610718925e-06, 'subjugate': 1.6430492035729749e-06, 'fantastically': 2.4645738053594624e-06, 'wrong-headed': 1.6430492035729749e-06, 'weak': 2.7110311858954083e-05, 'demoralized': 1.6430492035729749e-06, 'garrisoned': 1.6430492035729749e-06, 'reasonably': 2.875336106252706e-05, 'mandated': 1.6430492035729749e-06, 'expediency': 2.4645738053594624e-06, 'mandate': 5.750672212505412e-06, 'inconsistent': 4.929147610718925e-06, 'realism': 1.97165904428757e-05, 'courage': 2.7110311858954083e-05, 'magnitude': 2.464573805359462e-05, 'urge': 1.7252016637516235e-05, 'Otherwise': 1.4787442832156774e-05, 'blindly': 7.393721416078387e-06, 'Featherbed': 1.6430492035729749e-06, 'reversal': 2.4645738053594624e-06, 'editorial': 3.450403327503247e-05, 'Telegraphers': 2.4645738053594624e-06, 'telegraphers': 3.2860984071459497e-06, 'secured': 9.85829522143785e-06, "hours'": 1.6430492035729749e-06, 'featherbedding': 1.6430492035729749e-06, 'misplaced': 6.5721968142918994e-06, 'compensating': 2.4645738053594624e-06, 'Additional': 1.232286902679731e-05, 'discloses': 1.6430492035729749e-06, 'stabilized': 1.6430492035729749e-06, 'attrition': 4.929147610718925e-06, 'necessarily': 4.2719279292897344e-05, 'applicable': 1.5608967433943262e-05, 'Meditations': 2.4645738053594624e-06, 'internationalists': 1.6430492035729749e-06, 'lads': 1.6430492035729749e-06, 'humidity': 7.393721416078387e-06, 'imperfection': 1.6430492035729749e-06, 'peaceful': 2.1359639646448672e-05, 'abiding': 4.929147610718925e-06, 'covenant': 3.2860984071459497e-06, 'jumper': 1.6430492035729749e-06, 'moon': 4.107623008932437e-05, 'wallop': 1.6430492035729749e-06, 'backward': 1.8073541239302723e-05, 'oafs': 1.6430492035729749e-06, 'surrendering': 4.107623008932437e-06, 'pacifier': 1.6430492035729749e-06, 'dimensions': 2.3824213451808133e-05, 'triggered': 6.5721968142918994e-06, 'experimentally': 6.5721968142918994e-06, 'propel': 4.107623008932437e-06, 'seminar': 3.2860984071459497e-06, 'drink': 6.572196814291899e-05, 'bellowing': 2.4645738053594624e-06, 'coexistence': 9.85829522143785e-06, 'Fools': 1.6430492035729749e-06, 'bayed': 3.2860984071459497e-06, 'humble': 1.5608967433943262e-05, 'marimba': 1.6430492035729749e-06, 'domes': 7.393721416078387e-06, 'spreading': 1.3965918230370285e-05, 'hijacking': 2.4645738053594624e-06, 'demented': 1.6430492035729749e-06, 'Algerian': 4.929147610718925e-06, 'craft': 1.8073541239302723e-05, 'unwelcome': 4.929147610718925e-06, 'mortification': 1.6430492035729749e-06, 'Colombian': 2.4645738053594624e-06, 'admirer': 3.2860984071459497e-06, 'Ten': 1.3144393628583799e-05, 'Shadow': 6.5721968142918994e-06, 'gunman': 3.2860984071459497e-06, 'Less': 9.85829522143785e-06, 'conventions': 8.215246017864873e-06, 'Che': 1.6430492035729749e-06, 'Guevara': 1.6430492035729749e-06, 'edified': 1.6430492035729749e-06, 'Montevideo': 1.6430492035729749e-06, 'purloined': 1.6430492035729749e-06, 'Caracas': 1.6430492035729749e-06, 'contents': 1.3965918230370285e-05, 'millennium': 3.2860984071459497e-06, 'moralities': 1.6430492035729749e-06, 'stealing': 5.750672212505412e-06, 'demurrer': 2.4645738053594624e-06, 'incompetence': 4.107623008932437e-06, 'protecting': 3.2860984071459497e-06, 'half-hearted': 3.2860984071459497e-06, 'symptomatic': 6.5721968142918994e-06, 'holding': 5.2577574514335196e-05, 'felonious': 2.4645738053594624e-06, 'Pass': 3.2860984071459497e-06, 'rations': 4.107623008932437e-06, 'minded': 3.2860984071459497e-06, 'customer': 2.218116424823516e-05, 'suspension': 1.0679819823224336e-05, '100-ton': 1.6430492035729749e-06, 'truckers': 1.6430492035729749e-06, 'maze': 5.750672212505412e-06, 'regulatory': 4.929147610718925e-06, 'shock': 2.546726265538111e-05, 'Dag': 6.5721968142918994e-06, "Hammarskjold's": 4.929147610718925e-06, 'shockwave': 2.4645738053594624e-06, 'tragic': 2.793183646074057e-05, 'hangs': 4.107623008932437e-06, 'precariously': 3.2860984071459497e-06, 'momentous': 7.393721416078387e-06, 'desperately': 1.8073541239302723e-05, "Congo's": 1.6430492035729749e-06, 'bloody': 7.393721416078387e-06, 'earnestly': 1.1501344425010824e-05, 'U.N.-chartered': 1.6430492035729749e-06, 'Ndola': 1.6430492035729749e-06, 'Rhodesia': 1.6430492035729749e-06, 'riddled': 2.4645738053594624e-06, 'machinegun': 1.6430492035729749e-06, 'bullets': 1.6430492035729746e-05, 'Whether': 2.3824213451808133e-05, 'overt': 9.036770619651361e-06, "Nations'": 3.2860984071459497e-06, 'uncompromising': 4.929147610718925e-06, 'courageously': 3.2860984071459497e-06, 'defended': 1.5608967433943262e-05, 'resolved': 1.4787442832156774e-05, 'conflicts': 8.215246017864873e-06, 'ignite': 2.4645738053594624e-06, 'solutions': 2.3824213451808133e-05, 'Katangan': 1.6430492035729749e-06, 'outbreaks': 3.2860984071459497e-06, 'imperiled': 1.6430492035729749e-06, 'calming': 2.4645738053594624e-06, 'mankind': 3.203945946967301e-05, 'Monument': 3.2860984071459497e-06, 'togetherness': 1.6430492035729749e-06, "Miami's": 3.2860984071459497e-06, 'hardest': 9.85829522143785e-06, 'Too': 2.793183646074057e-05, 'bogged': 1.6430492035729749e-06, 'bickering': 3.2860984071459497e-06, 'consensus': 6.5721968142918994e-06, 'dissenting': 1.6430492035729749e-06, 'approvingly': 2.4645738053594624e-06, 'Goodbody': 2.4645738053594624e-06, 'long-awaited': 3.2860984071459497e-06, 'indenture': 2.4645738053594624e-06, 'validate': 2.4645738053594624e-06, 'repayable': 2.4645738053594624e-06, '$15.5': 1.6430492035729749e-06, 'Graves': 3.2860984071459497e-06, 'Tract': 2.4645738053594624e-06, 'Metro': 3.2860984071459497e-06, '$500,000': 3.2860984071459497e-06, 'Interama': 4.107623008932437e-06, 'pinched': 6.5721968142918994e-06, 'painstaking': 1.6430492035729749e-06, 'Unanimity': 1.6430492035729749e-06, 'ventures': 4.107623008932437e-06, 'yielded': 1.0679819823224336e-05, '$8.5': 1.6430492035729749e-06, 'cooperated': 2.4645738053594624e-06, 'worthwhile': 7.393721416078387e-06, '689-page': 1.6430492035729749e-06, 'compilation': 9.036770619651361e-06, 'documented': 5.750672212505412e-06, "Florida's": 2.4645738053594624e-06, 'shortest': 3.2860984071459497e-06, 'paragraphs': 1.232286902679731e-05, 'Colee': 1.6430492035729749e-06, 'Floridians': 1.6430492035729749e-06, 'Singer': 2.4645738053594624e-06, 'complaints': 7.393721416078387e-06, 'progressed': 1.1501344425010824e-05, 'assess': 5.750672212505412e-06, 'spectrum': 1.232286902679731e-05, 'Problems': 6.5721968142918994e-06, 'arisen': 4.107623008932437e-06, 'unification': 8.215246017864873e-06, 'emerging': 1.232286902679731e-05, "Adenauer's": 1.6430492035729749e-06, 'Bundestag': 1.6430492035729749e-06, 'Inevitably': 3.2860984071459497e-06, 'aging': 3.2860984071459497e-06, 'chancellor': 5.750672212505412e-06, "Brandt's": 1.6430492035729749e-06, 'parliament': 4.107623008932437e-06, 'Free': 1.3965918230370285e-05, 'Moon-faced': 1.6430492035729749e-06, 'Erhart': 3.2860984071459497e-06, 'ascend': 1.6430492035729749e-06, 'wizard': 2.4645738053594624e-06, 'fashioned': 6.5721968142918994e-06, "Germany's": 2.4645738053594624e-06, 'astonishing': 7.393721416078387e-06, 'rebirth': 1.6430492035729749e-06, 'soul': 3.94331808857514e-05, 'Germans': 2.300268885002165e-05, 'captive': 4.929147610718925e-06, 'approaches': 2.1359639646448672e-05, 'veers': 1.6430492035729749e-06, 'firmness': 4.107623008932437e-06, 'flexibility': 1.3965918230370285e-05, 'Regardless': 5.750672212505412e-06, 'reaffirmed': 3.2860984071459497e-06, 'Konrad': 1.6430492035729749e-06, 'rock-like': 1.6430492035729749e-06, 'Bismarck': 1.6430492035729749e-06, 'draws': 1.232286902679731e-05, 'joiners': 1.6430492035729749e-06, 'endearing': 3.2860984071459497e-06, 'amusing': 1.232286902679731e-05, 'joiner': 3.2860984071459497e-06, 'spectacle': 1.5608967433943262e-05, 'sprouting': 4.929147610718925e-06, 'root': 2.3824213451808133e-05, 'anti-Communist': 5.750672212505412e-06, 'commendable': 4.929147610718925e-06, 'gulled': 1.6430492035729749e-06, 'According': 2.464573805359462e-05, 'Mosk': 3.2860984071459497e-06, 'assail': 3.2860984071459497e-06, 'blanket': 2.546726265538111e-05, 'accusations': 3.2860984071459497e-06, 'unsupportable': 1.6430492035729749e-06, 'un-American': 2.4645738053594624e-06, 'subversive': 2.4645738053594624e-06, 'disagrees': 2.4645738053594624e-06, 'politically': 9.85829522143785e-06, 'rewrite': 4.107623008932437e-06, 'blaming': 2.4645738053594624e-06, 'crude': 1.3144393628583799e-05, 'purport': 2.4645738053594624e-06, 'affinity': 4.929147610718925e-06, 'preference': 8.215246017864873e-06, 'would-be': 4.929147610718925e-06, 'duped': 1.6430492035729749e-06, 'extremists': 4.107623008932437e-06, 'capitalize': 4.107623008932437e-06, 'confusions': 4.107623008932437e-06, 'patriotic': 9.036770619651361e-06, 'apprehensions': 4.929147610718925e-06, 'Falling': 3.2860984071459497e-06, "Einstein's": 3.2860984071459497e-06, 'fleas': 2.4645738053594624e-06, 'undeniably': 1.6430492035729749e-06, 'tropical': 9.85829522143785e-06, 'Islandia': 1.6430492035729749e-06, 'offshore': 3.2860984071459497e-06, 'islands': 1.0679819823224336e-05, 'unlimited': 1.0679819823224336e-05, 'Key': 6.5721968142918994e-06, 'underneath': 6.5721968142918994e-06, 'devise': 7.393721416078387e-06, 'above-water': 1.6430492035729749e-06, 'hectic': 3.2860984071459497e-06, 'developers': 2.4645738053594624e-06, 'sands': 6.5721968142918994e-06, 'Closed': 2.4645738053594624e-06, "California's": 3.2860984071459497e-06, 'anti-secrecy': 2.4645738053594624e-06, 'dismaying': 3.2860984071459497e-06, 'hide': 1.889506584108921e-05, 'objections': 1.1501344425010824e-05, 'commissions': 8.215246017864873e-06, 'preamble': 3.2860984071459497e-06, 'open-meeting': 1.6430492035729749e-06, 'collectively': 4.107623008932437e-06, 'intent': 1.232286902679731e-05, 'sovereignty': 2.3824213451808133e-05, 'delegating': 2.4645738053594624e-06, 'guarantees': 7.393721416078387e-06, 'plug': 1.97165904428757e-05, 'loopholes': 2.4645738053594624e-06, 'continuously': 1.97165904428757e-05, 'subverted': 1.6430492035729749e-06, 'rationalizations': 1.6430492035729749e-06, 'submit': 1.5608967433943262e-05, 'speedily': 3.2860984071459497e-06, 'expeditious': 2.4645738053594624e-06, 'Balaguer': 2.4645738053594624e-06, 'restoration': 7.393721416078387e-06, 'Outwardly': 1.6430492035729749e-06, 'warships': 2.4645738053594624e-06, 'wracked': 1.6430492035729749e-06, 'Trujillos': 2.4645738053594624e-06, 'takeover': 2.4645738053594624e-06, 'responsive': 4.107623008932437e-06, 'unilateral': 3.2860984071459497e-06, 'lined': 1.3965918230370285e-05, 'Vive': 1.6430492035729749e-06, 'Juan': 6.5721968142918994e-06, 'Bosch': 2.4645738053594624e-06, "Balaguer's": 1.6430492035729749e-06, 'OAS': 3.2860984071459497e-06, 'eradicate': 2.4645738053594624e-06, 'pro-Trujillo': 1.6430492035729749e-06, 'pro-Castro': 1.6430492035729749e-06, 'Matter': 2.4645738053594624e-06, 'Craft': 2.4645738053594624e-06, 'secession': 2.4645738053594624e-06, 'breach': 5.750672212505412e-06, 'Organizations': 2.4645738053594624e-06, 'automation': 5.750672212505412e-06, 'Reuther': 1.6430492035729749e-06, 'squabbling': 1.6430492035729749e-06, 'disastrous': 1.3965918230370285e-05, 'Teamsters': 1.6430492035729749e-06, 'conjecture': 3.2860984071459497e-06, 'craft-industrial': 1.6430492035729749e-06, 'Engaged': 1.6430492035729749e-06, "labor's": 1.6430492035729749e-06, 'feuds': 2.4645738053594624e-06, 'bastion': 2.4645738053594624e-06, 'Deterrent': 1.6430492035729749e-06, "Freeman's": 1.6430492035729749e-06, "Soviet's": 1.6430492035729749e-06, "farmer's": 6.5721968142918994e-06, 'over-produce': 1.6430492035729749e-06, 'growers': 3.2860984071459497e-06, 'outsmarted': 2.4645738053594624e-06, 'shortening': 2.4645738053594624e-06, 'rows': 1.3965918230370285e-05, 'pouring': 8.215246017864873e-06, 'swindling': 1.6430492035729749e-06, 'predictable': 7.393721416078387e-06, 'clearer': 1.232286902679731e-05, 'revitalize': 1.6430492035729749e-06, 'layers': 9.036770619651361e-06, 'wedded': 4.107623008932437e-06, 'innovation': 6.5721968142918994e-06, 'fearful': 1.0679819823224336e-05, 'assistants': 9.85829522143785e-06, 'restore': 8.215246017864873e-06, 'subordinates': 8.215246017864873e-06, 'competent': 1.7252016637516235e-05, "Jackson's": 2.4645738053594624e-06, 'Self-criticism': 1.6430492035729749e-06, 'Betting': 1.6430492035729749e-06, 'forecasting': 8.215246017864873e-06, 'hazardous': 4.929147610718925e-06, 'specialist': 1.3144393628583799e-05, 'prognosticator': 1.6430492035729749e-06, 'cake': 1.1501344425010824e-05, 'fedora': 2.4645738053594624e-06, 'predicting': 5.750672212505412e-06, 'basing': 3.2860984071459497e-06, 'stride': 1.3965918230370285e-05, 'keel': 5.750672212505412e-06, 'hurricane': 6.5721968142918994e-06, "Cambodia's": 1.6430492035729749e-06, 'harboring': 1.6430492035729749e-06, 'marauders': 1.6430492035729749e-06, "communism's": 1.6430492035729749e-06, 'Sihanouk': 1.6430492035729749e-06, 'prince': 2.4645738053594624e-06, 'concedes': 1.6430492035729749e-06, 'posture': 1.1501344425010824e-05, "Sihanouk's": 1.6430492035729749e-06, 'prognostication': 1.6430492035729749e-06, 'convictions': 1.7252016637516235e-05, 'Bottom': 7.393721416078387e-06, 'sighted': 6.5721968142918994e-06, 'pacemaker': 1.6430492035729749e-06, "Washington's": 6.5721968142918994e-06, 'forecasters': 1.6430492035729749e-06, 'Recently': 1.232286902679731e-05, "Hodges'": 2.4645738053594624e-06, 'reluctance': 4.929147610718925e-06, 'pioneered': 3.2860984071459497e-06, 'sliding': 9.85829522143785e-06, "January's": 1.6430492035729749e-06, 'Corroborating': 1.6430492035729749e-06, "Board's": 1.6430492035729749e-06, 'interrupted': 1.5608967433943262e-05, 'Initial': 2.4645738053594624e-06, 'jobless': 2.4645738053594624e-06, '8,100': 1.6430492035729749e-06, 'Well': 0.00011583496885189472, 'Prosperity': 2.4645738053594624e-06, "builder's": 2.4645738053594624e-06, 'parceled': 1.6430492035729749e-06, 'shoreline': 5.750672212505412e-06, 'presses': 7.393721416078387e-06, 'spaces': 9.85829522143785e-06, 'herons': 2.4645738053594624e-06, 'battlefront': 1.6430492035729749e-06, 'Against': 8.215246017864873e-06, 'unimportant': 8.215246017864873e-06, 'Interior': 2.3824213451808133e-05, 'Udall': 5.750672212505412e-06, 'warns': 3.2860984071459497e-06, 'shorelines': 1.6430492035729749e-06, 'preserves': 9.85829522143785e-06, 'Provincetown': 1.6430492035729749e-06, 'Chatham': 3.2860984071459497e-06, 'recreation': 3.0396410266100035e-05, "sanctuary's": 1.6430492035729749e-06, 'formidable': 1.4787442832156774e-05, 'snowy': 4.107623008932437e-06, 'cattle': 7.475873876257036e-05, 'egrets': 1.6430492035729749e-06, 'black-crowned': 1.6430492035729749e-06, 'nest': 1.6430492035729746e-05, 'desirability': 2.4645738053594624e-06, 'dunes': 6.5721968142918994e-06, 'sentiment': 1.889506584108921e-05, 'conserving': 2.4645738053594624e-06, 'joyride': 2.4645738053594624e-06, 'applicants': 9.036770619651361e-06, 'corpsman': 1.6430492035729749e-06, 'Anybody': 3.2860984071459497e-06, 'expecting': 1.4787442832156774e-05, 'arduous': 4.107623008932437e-06, '16-hour': 1.6430492035729749e-06, 'diet': 1.7252016637516235e-05, 'nil': 1.6430492035729749e-06, "area's": 2.4645738053594624e-06, 'Joint': 6.5721968142918994e-06, 'confirms': 3.2860984071459497e-06, 'reinforces': 3.2860984071459497e-06, 'findings': 2.793183646074057e-05, 'Survey': 5.750672212505412e-06, 'Missouri-Illinois': 1.6430492035729749e-06, 'countryside': 6.5721968142918994e-06, 'sits': 5.750672212505412e-06, 'slow-growing': 1.6430492035729749e-06, 'stagnant': 4.929147610718925e-06, 'mid-continent': 1.6430492035729749e-06, 'region': 5.9149771328627094e-05, 'Slackened': 1.6430492035729749e-06, 'reflects': 1.97165904428757e-05, "region's": 3.2860984071459497e-06, 'confined': 1.3965918230370285e-05, 'retarding': 1.6430492035729749e-06, 'stimulating': 7.393721416078387e-06, 'outstate': 1.6430492035729749e-06, "Dalton's": 1.6430492035729749e-06, 'nine-state': 1.6430492035729749e-06, 'Ellis': 6.5721968142918994e-06, 'impartial': 7.393721416078387e-06, 'dovetail': 1.6430492035729749e-06, 'Schwada': 1.6430492035729749e-06, 'outlined': 5.750672212505412e-06, 'depressed': 9.85829522143785e-06, 'Carbondale': 2.4645738053594624e-06, 'city-owned': 1.6430492035729749e-06, 'accommodate': 1.232286902679731e-05, 'Herrin-Murphysboro-West': 1.6430492035729749e-06, 'Frankfort': 1.6430492035729749e-06, 'Politics-ridden': 1.6430492035729749e-06, 'Clair': 2.4645738053594624e-06, 'vacant': 9.85829522143785e-06, 'jurisdiction': 2.3824213451808133e-05, 'unstable': 7.393721416078387e-06, 'shy': 9.036770619651361e-06, 'Side': 9.85829522143785e-06, 'zoning': 4.929147610718925e-06, 'plant-location': 1.6430492035729749e-06, 'civic': 1.6430492035729746e-05, 'sides': 8.215246017864874e-05, 'acceleration': 1.4787442832156774e-05, 'second-class': 1.6430492035729749e-06, 'reformers': 2.4645738053594624e-06, 'confess': 9.85829522143785e-06, "City's": 1.6430492035729749e-06, 'primaries': 2.4645738053594624e-06, 'Tammany': 6.5721968142918994e-06, 'Granted': 3.2860984071459497e-06, 'tiger': 4.929147610718925e-06, 'badges': 1.6430492035729749e-06, 'shame': 1.8073541239302723e-05, 'sachems': 2.4645738053594624e-06, 'balks': 1.6430492035729749e-06, 'expunging': 1.6430492035729749e-06, 'sedition': 1.6430492035729749e-06, 'reforming': 1.6430492035729749e-06, 'cartoonists': 1.6430492035729749e-06, 'banishment': 1.6430492035729749e-06, 'donkey': 1.6430492035729749e-06, 'elephant': 6.5721968142918994e-06, "tiger's": 1.6430492035729749e-06, 'stripes': 4.107623008932437e-06, 'Faget': 4.929147610718925e-06, 'Batista': 6.5721968142918994e-06, 'Mariano': 1.6430492035729749e-06, 'preposterous': 4.929147610718925e-06, 'interrogator': 1.6430492035729749e-06, 'refugees': 5.750672212505412e-06, 'anti-Castro': 1.6430492035729749e-06, "Faget's": 1.6430492035729749e-06, 'outdated': 3.2860984071459497e-06, 'screening': 4.929147610718925e-06, 'Colonel': 2.218116424823516e-05, 'haven': 4.929147610718925e-06, "Batista's": 3.2860984071459497e-06, 'disturb': 9.036770619651361e-06, 'Responsibility': 2.4645738053594624e-06, 'rests': 1.4787442832156774e-05, 'Swing': 4.929147610718925e-06, 'prerogatives': 2.4645738053594624e-06, 'diligently': 1.6430492035729749e-06, 'searching': 1.889506584108921e-05, 'all-powerful': 2.4645738053594624e-06, 'immigration': 6.5721968142918994e-06, 'salvage': 4.929147610718925e-06, 'repeat': 2.1359639646448672e-05, 'aloof': 4.929147610718925e-06, 'strife': 5.750672212505412e-06, 'sniping': 1.6430492035729749e-06, 'postcard': 6.5721968142918994e-06, 'Nigeria': 1.6430492035729749e-06, 'ridicule': 4.929147610718925e-06, 'Nowhere': 5.750672212505412e-06, 'ungracious': 1.6430492035729749e-06, 'lent': 4.929147610718925e-06, 'Fellowships': 3.2860984071459497e-06, 'blithely': 3.2860984071459497e-06, 'dollarette': 1.6430492035729749e-06, 'compounded': 1.0679819823224336e-05, 'Ex-Presidents': 1.6430492035729749e-06, 'accountability': 4.107623008932437e-06, "Truman's": 3.2860984071459497e-06, 'off-the-cuff': 1.6430492035729749e-06, 'discourses': 2.4645738053594624e-06, 'vein': 2.1359639646448672e-05, 'Presidency': 7.393721416078387e-06, 'statesmanship': 2.4645738053594624e-06, '1936': 5.750672212505412e-06, 'Cunard': 4.929147610718925e-06, 'influenced': 1.3965918230370285e-05, 'prosaic': 2.4645738053594624e-06, 'Q3': 1.6430492035729749e-06, 'shipbuilding': 2.4645738053594624e-06, '$50,400,000': 1.6430492035729749e-06, '$84,000,000': 1.6430492035729749e-06, '75,000-ton': 1.6430492035729749e-06, 'trans-Atlantic': 1.6430492035729749e-06, 'Economy': 3.2860984071459497e-06, 'fares': 3.2860984071459497e-06, 'Competition': 6.5721968142918994e-06, "Cunard's": 1.6430492035729749e-06, 'consideration': 4.107623008932437e-05, '75,000': 3.2860984071459497e-06, 'cruises': 1.6430492035729749e-06, 'Eagle': 1.6430492035729749e-06, 'Airways': 2.4645738053594624e-06, 'dominance': 9.85829522143785e-06, 'Maxwell': 9.85829522143785e-06, "Taylor's": 2.4645738053594624e-06, 'Saigon': 1.6430492035729749e-06, 'bolster': 3.2860984071459497e-06, 'Far': 1.4787442832156774e-05, 'mobilization': 3.2860984071459497e-06, 'guerrillas': 1.3144393628583799e-05, 'Mekong': 3.2860984071459497e-06, 'interposed': 1.6430492035729749e-06, "Nam's": 1.6430492035729749e-06, 'rice': 2.0538115044662184e-05, 'destroyed': 3.286098407145949e-05, 'Cong': 1.6430492035729749e-06, 'stored': 3.0396410266100035e-05, 'harvest': 9.036770619651361e-06, 'floods': 5.750672212505412e-06, 'recede': 3.2860984071459497e-06, 'monsoon': 3.2860984071459497e-06, 'instructional': 3.2860984071459497e-06, 'Indochina': 2.4645738053594624e-06, 'Ridgway': 1.6430492035729749e-06, 'divisions': 1.3144393628583799e-05, 'Ngo': 1.6430492035729749e-06, 'Dinh': 1.6430492035729749e-06, 'Diem': 1.6430492035729749e-06, '$1,450,000,000': 1.6430492035729749e-06, 'Lyndon': 3.2860984071459497e-06, "Johnson's": 9.036770619651361e-06, 'level-headed': 2.4645738053594624e-06, 'succumb': 1.6430492035729749e-06, 'morass': 1.6430492035729749e-06, 'Dalton': 4.107623008932437e-06, 'controversies': 4.107623008932437e-06, 'axes': 6.5721968142918994e-06, 'grind': 2.4645738053594624e-06, 'gravest': 4.107623008932437e-06, 'electing': 1.6430492035729749e-06, 'fears': 3.861165628396491e-05, 'slippery': 4.929147610718925e-06, 'operational': 2.0538115044662184e-05, 'integrity': 9.036770619651361e-06, 'Charter': 1.0679819823224336e-05, 'instructions': 2.7110311858954083e-05, 'external': 3.203945946967301e-05, 'nonpartisan': 2.4645738053594624e-06, 'servant': 1.5608967433943262e-05, 'stipulate': 2.4645738053594624e-06, 'importance': 8.954618159472713e-05, 'revolves': 1.6430492035729749e-06, 'geographic': 4.107623008932437e-06, 'U.S.S.R.': 6.5721968142918994e-06, 'arguing': 9.036770619651361e-06, "General's": 4.107623008932437e-06, 'hobbled': 2.4645738053594624e-06, 'confused': 3.6147082478605446e-05, 'irrelevant': 1.232286902679731e-05, 'nonpolitical': 1.6430492035729749e-06, 'beings': 3.0396410266100035e-05, 'subservient': 3.2860984071459497e-06, 'man-made': 5.750672212505412e-06, 'inaction': 5.750672212505412e-06, 'Estimate': 4.929147610718925e-06, 'budget-making': 1.6430492035729749e-06, 'vest': 4.107623008932437e-06, 'reorganize': 1.6430492035729749e-06, 'Lawmaking': 1.6430492035729749e-06, 'partnership': 1.5608967433943262e-05, 'diminished': 9.036770619651361e-06, 'franchises': 1.6430492035729749e-06, 'leases': 3.2860984071459497e-06, 'leasing': 2.4645738053594624e-06, 'trusteeship': 1.6430492035729749e-06, 'budget-altering': 1.6430492035729749e-06, 'Overriding': 1.6430492035729749e-06, 'mayoral': 1.6430492035729749e-06, 'concurrence': 4.107623008932437e-06, 'watchdog': 3.2860984071459497e-06, 'investigative': 3.2860984071459497e-06, 'now-misplaced': 1.6430492035729749e-06, 'spite': 4.6826902301829785e-05, 'Borough': 2.4645738053594624e-06, 'retaining': 6.5721968142918994e-06, 'housekeeping': 4.929147610718925e-06, 'Highways': 2.4645738053594624e-06, 'sewers': 4.107623008932437e-06, 'approving': 1.6430492035729749e-06, 'appropriating': 2.4645738053594624e-06, 'document': 1.1501344425010824e-05, 'second-look': 1.6430492035729749e-06, 'safeguard': 4.929147610718925e-06, 'borough': 3.2860984071459497e-06, 'heretofore': 6.5721968142918994e-06, 'pocketbook': 3.2860984071459497e-06, 'beneficial': 9.85829522143785e-06, 'expediting': 2.4645738053594624e-06, 'injustices': 1.6430492035729749e-06, 'Enlargement': 1.6430492035729749e-06, 'selecting': 1.1501344425010824e-05, 'Inter-american': 2.4645738053594624e-06, 'blankets': 9.85829522143785e-06, 'Hemisphere': 4.107623008932437e-06, 'Horn': 1.4787442832156774e-05, 'reflection': 2.7110311858954083e-05, 'throttled': 1.6430492035729749e-06, 'publishers': 8.215246017864873e-06, 'editors': 1.4787442832156774e-05, 'downfall': 4.107623008932437e-06, 'imbalances': 1.6430492035729749e-06, 'freedoms': 3.2860984071459497e-06, 'ten-year': 3.2860984071459497e-06, 'contribute': 3.6147082478605446e-05, 'Meeting': 7.393721416078387e-06, 'Twenty-second': 3.2860984071459497e-06, 'admiration': 9.036770619651361e-06, 'rage': 1.3965918230370285e-05, 'bold': 1.7252016637516235e-05, 'Utopia': 1.8073541239302723e-05, '1980': 4.107623008932437e-06, 'clues': 9.036770619651361e-06, 'Armageddon': 1.6430492035729749e-06, 'evident': 4.6826902301829785e-05, 'contradiction': 1.1501344425010824e-05, 'humanity': 2.218116424823516e-05, 'speculation': 3.2860984071459497e-06, 'consolidating': 2.4645738053594624e-06, 'groundwork': 3.2860984071459497e-06, 'purge': 2.4645738053594624e-06, 'assurance': 1.6430492035729746e-05, 'tightest': 2.4645738053594624e-06, "Conant's": 3.2860984071459497e-06, 'unemotional': 2.4645738053594624e-06, 'reformer': 3.2860984071459497e-06, 'shattered': 1.1501344425010824e-05, 'Slums': 1.6430492035729749e-06, 'Suburbs': 2.4645738053594624e-06, 'avert': 1.6430492035729749e-06, 'concerning': 4.929147610718924e-05, 'permissive': 4.929147610718925e-06, 'psychological': 3.450403327503247e-05, 'recommending': 7.393721416078387e-06, 'double-talk': 1.6430492035729749e-06, 'labels': 3.2860984071459497e-06, 'dead-end': 1.6430492035729749e-06, 'villains': 4.107623008932437e-06, 'accuses': 2.4645738053594624e-06, 'squeamish': 1.6430492035729749e-06, 'regardless': 2.7110311858954083e-05, 'alarming': 1.6430492035729749e-06, 'implications': 1.889506584108921e-05, 'conscientious': 9.036770619651361e-06, 'selfless': 2.4645738053594624e-06, 'gratitude': 8.215246017864873e-06, 'straightforward': 7.393721416078387e-06, 'junk': 7.393721416078387e-06, 'fascinating': 1.7252016637516235e-05, 'stamps': 4.107623008932437e-06, 'accordance': 1.7252016637516235e-05, 'newsletters': 1.6430492035729749e-06, 'postmen': 2.4645738053594624e-06, 'loads': 9.036770619651361e-06, 'postal': 4.929147610718925e-06, 'creditors': 2.4645738053594624e-06, 'Letter': 4.929147610718925e-06, 'Occasional': 4.929147610718925e-06, 'typewritten': 1.6430492035729749e-06, 'trembling': 2.218116424823516e-05, 'cannery': 1.232286902679731e-05, 'calf': 7.393721416078387e-06, 'beef-fat': 1.6430492035729749e-06, 'work-weary': 1.6430492035729749e-06, 'seeds': 3.0396410266100035e-05, 'sprout': 1.6430492035729749e-06, 'bud': 4.107623008932437e-06, 'blossom': 5.750672212505412e-06, 'vegetables': 1.3144393628583799e-05, 'broth': 3.2860984071459497e-06, 'hash': 1.6430492035729749e-06, 'cans': 4.929147610718925e-06, 'rivers': 1.232286902679731e-05, 'shines': 4.107623008932437e-06, 'warmly': 6.5721968142918994e-06, 'Decatur': 1.6430492035729749e-06, 'metropolitian': 1.6430492035729749e-06, 'grey': 6.5721968142918994e-06, 'possum': 2.4645738053594624e-06, 'canning': 5.750672212505412e-06, "3's": 1.6430492035729749e-06, 'requisitioned': 2.4645738053594624e-06, '22,000': 2.4645738053594624e-06, "2's": 1.6430492035729749e-06, 'Reason': 2.4645738053594624e-06, '$3,000': 4.107623008932437e-06, 'Lewellyn': 1.6430492035729749e-06, 'Lundeen': 1.6430492035729749e-06, 'booster': 1.6430492035729749e-06, 'rationing': 3.2860984071459497e-06, '1941': 9.85829522143785e-06, 'dairy': 1.5608967433943262e-05, 'finishes': 2.4645738053594624e-06, 'echoed': 6.5721968142918994e-06, 'beans': 8.215246017864873e-06, 'tomatoes': 3.2860984071459497e-06, 'employe': 1.6430492035729749e-06, 'forgiveness': 1.1501344425010824e-05, 'thoughtlessly': 1.6430492035729749e-06, 'poise': 5.750672212505412e-06, 'grudge': 6.5721968142918994e-06, 'pastor': 1.4787442832156774e-05, 'altar': 4.107623008932437e-06, 'forgiven': 5.750672212505412e-06, 'Forgiveness': 2.4645738053594624e-06, 'Kingdom': 8.215246017864873e-06, 'harbor': 1.6430492035729746e-05, 'envy': 6.5721968142918994e-06, 'jealousy': 4.107623008932437e-06, 'grudges': 2.4645738053594624e-06, 'Dyke': 1.6430492035729749e-06, 'Forgive': 4.107623008932437e-06, "God's": 3.203945946967301e-05, 'trespasses': 3.2860984071459497e-06, 'heavenly': 5.750672212505412e-06, 'Father': 1.97165904428757e-05, 'Matthew': 4.107623008932437e-06, '14-15': 1.6430492035729749e-06, 'prayer': 2.0538115044662184e-05, 'disciples': 4.929147610718925e-06, 'debts': 9.85829522143785e-06, 'implies': 1.3965918230370285e-05, 'sin': 4.436232849647032e-05, 'oft': 1.6430492035729749e-06, 'Till': 3.2860984071459497e-06, 'saith': 4.107623008932437e-06, 'unto': 1.3965918230370285e-05, 'seventy': 4.107623008932437e-06, '21-22': 1.6430492035729749e-06, 'prayed': 1.0679819823224336e-05, 'Luke': 3.2860984071459497e-06, '23:34': 1.6430492035729749e-06, "she's": 1.889506584108921e-05, 'teen-ager': 2.4645738053594624e-06, 'sobering': 3.2860984071459497e-06, 'meaningful': 1.97165904428757e-05, 'shrill': 6.5721968142918994e-06, 'girlish': 4.929147610718925e-06, 'commotion': 5.750672212505412e-06, 'Garcia': 3.2860984071459497e-06, 'squeals': 1.6430492035729749e-06, 'subsided': 4.929147610718925e-06, 'sprawled': 9.85829522143785e-06, 'drinking': 3.94331808857514e-05, 'Cokes': 1.6430492035729749e-06, 'giggling': 1.6430492035729749e-06, 'toughest': 2.4645738053594624e-06, "Aren't": 4.929147610718925e-06, 'searchingly': 1.6430492035729749e-06, 'beg': 9.85829522143785e-06, 'pre-nuptial': 1.6430492035729749e-06, 'frighten': 9.85829522143785e-06, 'honesty': 9.036770619651361e-06, 'certainty': 1.8073541239302723e-05, 'fevered': 1.6430492035729749e-06, 'intoxicating': 1.6430492035729749e-06, 'breathless': 4.929147610718925e-06, 'signposts': 1.6430492035729749e-06, 'obscured': 6.5721968142918994e-06, 'bore': 1.97165904428757e-05, 'Bore': 1.6430492035729749e-06, 'Oh': 9.036770619651362e-05, 'no-o': 1.6430492035729749e-06, 'ruthlessly': 2.4645738053594624e-06, 'wonders': 7.393721416078387e-06, 'visualize': 2.4645738053594624e-06, 'stranded': 6.5721968142918994e-06, 'desert': 1.4787442832156774e-05, 'honey': 1.889506584108921e-05, 'silently': 1.3965918230370285e-05, 'periods': 3.94331808857514e-05, 'heaven': 1.97165904428757e-05, 'reassure': 1.6430492035729749e-06, 'endlessly': 6.5721968142918994e-06, 'enchanting': 8.215246017864873e-06, 'Be': 2.793183646074057e-05, 'mother-in-law': 1.6430492035729749e-06, 'Jokes': 1.6430492035729749e-06, 'cartoons': 4.929147610718925e-06, 'cynics': 3.2860984071459497e-06, 'mothers-in-law': 1.6430492035729749e-06, 'Sneed': 1.6430492035729749e-06, 'rector': 3.2860984071459497e-06, 'clergy': 1.0679819823224336e-05, 'pulpit': 4.107623008932437e-06, 'lonely': 2.1359639646448672e-05, 'Who': 5.011300070897573e-05, 'Imagine': 7.393721416078387e-06, 'parishioners': 3.2860984071459497e-06, 'blessed': 8.215246017864873e-06, 'unworthy': 4.929147610718925e-06, 'self': 2.875336106252706e-05, 'oh': 9.036770619651361e-06, 'believers': 4.929147610718925e-06, 'riches': 2.4645738053594624e-06, 'vainly': 2.4645738053594624e-06, 'covet': 1.6430492035729749e-06, 'Theirs': 2.4645738053594624e-06, 'sacrificial': 2.4645738053594624e-06, 'earthly': 5.750672212505412e-06, 'infinite': 1.4787442832156774e-05, 'readily': 3.6147082478605446e-05, 'congregations': 1.5608967433943262e-05, 'conform': 9.036770619651361e-06, 'conceptions': 8.215246017864873e-06, 'bruise': 3.2860984071459497e-06, 'satisfactions': 4.107623008932437e-06, 'bestow': 2.4645738053594624e-06, 'saintliness': 1.6430492035729749e-06, 'ostentatious': 2.4645738053594624e-06, 'attendance': 8.215246017864873e-06, 'bucks': 4.107623008932437e-06, 'stress': 8.872465699294064e-05, 'bears': 1.4787442832156774e-05, 'heir': 6.5721968142918994e-06, 'saints': 4.107623008932437e-06, 'sinners': 4.107623008932437e-06, 'unmindful': 1.6430492035729749e-06, 'ministered': 2.4645738053594624e-06, 'suffers': 4.929147610718925e-06, 'Podger': 1.8073541239302723e-05, 'Loon': 1.6430492035729749e-06, 'sadness': 5.750672212505412e-06, 'Podgers': 1.6430492035729749e-06, 'Pod': 3.2860984071459497e-06, 'bursting': 9.85829522143785e-06, 'porch': 3.532555787681896e-05, 'auction': 4.107623008932437e-06, 'old-fashioned': 6.5721968142918994e-06, 'woven': 6.5721968142918994e-06, 'cloth': 3.532555787681896e-05, 'hammock': 4.929147610718925e-06, 'cross-top': 1.6430492035729749e-06, 'hooks': 2.4645738053594624e-06, 'hanging': 2.1359639646448672e-05, 'obligingly': 1.6430492035729749e-06, 'slung': 2.4645738053594624e-06, 'vine-shaded': 1.6430492035729749e-06, 'breeze': 1.232286902679731e-05, 'rippling': 3.2860984071459497e-06, 'caressing': 4.929147610718925e-06, 'rhythmic': 9.036770619651361e-06, 'unintelligible': 1.6430492035729749e-06, 'drift': 1.5608967433943262e-05, 'voices': 3.203945946967301e-05, 'sweep': 1.3144393628583799e-05, 'pleasantly': 9.036770619651361e-06, "Podger's": 2.4645738053594624e-06, 'autumn-touched': 1.6430492035729749e-06, 'retraced': 1.6430492035729749e-06, 'jay': 1.6430492035729749e-06, 'feather': 5.750672212505412e-06, 'Walking': 4.107623008932437e-06, 'lake': 9.85829522143785e-06, 'winging': 1.6430492035729749e-06, 'harshly': 4.929147610718925e-06, 'shaft': 9.85829522143785e-06, 'drifted': 8.215246017864873e-06, 'straw-hat': 1.6430492035729749e-06, 'broad-brimmed': 3.2860984071459497e-06, 'sunshield': 1.6430492035729749e-06, 'Hardly': 6.5721968142918994e-06, 'floating': 9.85829522143785e-06, 'sunshine': 6.5721968142918994e-06, 'asters': 1.6430492035729749e-06, 'turtle': 7.393721416078387e-06, 'self-contained': 4.929147610718925e-06, 'world-ignoring': 1.6430492035729749e-06, 'relic': 5.750672212505412e-06, 'pre-history': 2.4645738053594624e-06, 'singleness': 1.6430492035729749e-06, 'hazard': 9.85829522143785e-06, 'signaling': 4.929147610718925e-06, 'consummated': 4.107623008932437e-06, 'road-crossing': 1.6430492035729749e-06, 'breath-taking': 3.2860984071459497e-06, 'suddenness': 2.4645738053594624e-06, 'withdrew': 8.215246017864873e-06, 'phenomenon': 2.9574885664313547e-05, 'darkness': 3.6147082478605446e-05, 'midday': 4.929147610718925e-06, 'butterflies': 1.6430492035729749e-06, 'sun-browned': 1.6430492035729749e-06, 'smiled': 5.9149771328627094e-05, 'auctioneer': 1.6430492035729749e-06, 'bidders': 3.2860984071459497e-06, "lyin'": 1.6430492035729749e-06, 'wrap': 4.929147610718925e-06, "o'": 1.3965918230370285e-05, 'thanked': 5.750672212505412e-06, 'gravely': 6.5721968142918994e-06, 'cocoon': 3.2860984071459497e-06, 'freckled': 1.6430492035729749e-06, 'fringed-wrapped': 1.6430492035729749e-06, 'Alacrity': 2.4645738053594624e-06, 'cat': 1.889506584108921e-05, 'rubbed': 1.5608967433943262e-05, 'hopped': 4.929147610718925e-06, 'chilly': 4.929147610718925e-06, 'purring': 3.2860984071459497e-06, 'rivaled': 2.4645738053594624e-06, 'chirping': 1.6430492035729749e-06, 'tree': 4.6826902301829785e-05, 'crickets': 2.4645738053594624e-06, 'hum': 4.929147610718925e-06, 'Pam': 7.393721416078387e-06, 'Dad': 1.1501344425010824e-05, 'lighted': 2.3824213451808133e-05, 'robin': 1.6430492035729749e-06, 'scary': 2.4645738053594624e-06, 'emerged': 2.218116424823516e-05, 'tucking': 2.4645738053594624e-06, 'Never': 2.793183646074057e-05, 'Desegregation': 5.750672212505412e-06, 'inevitability': 2.4645738053594624e-06, 'biracial': 1.6430492035729749e-06, 'peacefully': 4.929147610718925e-06, 'examples': 3.94331808857514e-05, 'Rock': 1.8073541239302723e-05, 'resorting': 3.2860984071459497e-06, 'Nashville': 6.5721968142918994e-06, 'progressive': 1.4787442832156774e-05, 'dynamited': 1.6430492035729749e-06, 'incidentally': 6.5721968142918994e-06, 'stair-step': 1.6430492035729749e-06, 'grades': 1.97165904428757e-05, 'tolerant': 8.215246017864873e-06, 'realizes': 3.2860984071459497e-06, 'rebuff': 4.107623008932437e-06, 'boycotted': 1.6430492035729749e-06, 'resume': 1.3965918230370285e-05, 'impatience': 9.036770619651361e-06, 'eloquent': 9.85829522143785e-06, 'patronizing': 2.4645738053594624e-06, 'counters': 7.393721416078387e-06, 'establishments': 7.393721416078387e-06, 'citywide': 1.6430492035729749e-06, 'Hotels': 1.6430492035729749e-06, 'nonracial': 1.6430492035729749e-06, 'nonsegregated': 1.6430492035729749e-06, 'bombings': 2.4645738053594624e-06, 'all-white': 4.929147610718925e-06, 'neighborhoods': 1.4787442832156774e-05, 'ashamed': 1.3144393628583799e-05, 'depots': 1.6430492035729749e-06, 'outbreak': 2.4645738053594624e-06, 'sprung': 7.393721416078387e-06, 'emboldened': 2.4645738053594624e-06, 'peaceable': 2.4645738053594624e-06, 'accommodation': 1.6430492035729749e-06, 'individually': 1.6430492035729746e-05, 'objects': 5.3399099116121684e-05, 'Lanesmanship': 1.6430492035729749e-06, 'Played': 1.6430492035729749e-06, 'freeways': 4.929147610718925e-06, 'cruising': 6.5721968142918994e-06, 'four-lane': 2.4645738053594624e-06, 'freeway': 4.929147610718925e-06, 'spies': 2.4645738053594624e-06, 'incipient': 4.107623008932437e-06, 'jam': 5.750672212505412e-06, 'lane': 9.85829522143785e-06, 'smoothly': 1.0679819823224336e-05, 'pokes': 3.2860984071459497e-06, 'adjacent': 1.0679819823224336e-05, 'resolutely': 2.4645738053594624e-06, 'invading': 3.2860984071459497e-06, 'ambivalent': 5.750672212505412e-06, 'lanes': 4.107623008932437e-06, 'alternately': 5.750672212505412e-06, 'accelerate': 4.929147610718925e-06, 'decelerate': 1.6430492035729749e-06, 'natives': 9.85829522143785e-06, 'unhesitatingly': 3.2860984071459497e-06, 'enlightened': 6.5721968142918994e-06, 'self-preservation': 2.4645738053594624e-06, 'soggy': 3.2860984071459497e-06, 'acquiesence': 1.6430492035729749e-06, 'manhood': 5.750672212505412e-06, 'pedal': 4.107623008932437e-06, 'Failing': 3.2860984071459497e-06, 'fist': 2.1359639646448672e-05, 'threateningly': 1.6430492035729749e-06, 'courtesy': 6.5721968142918994e-06, 'injustice': 1.3965918230370285e-05, 'charge-a-plate': 1.6430492035729749e-06, 'hallowed': 2.4645738053594624e-06, 'unequivocally': 4.929147610718925e-06, 'encountered': 2.546726265538111e-05, 'oncoming': 2.4645738053594624e-06, 'out-of-town': 5.750672212505412e-06, 'thinker': 5.750672212505412e-06, 'ridiculously': 2.4645738053594624e-06, 'versa': 5.750672212505412e-06, 'hell': 6.161434513398656e-05, "Richard's": 4.929147610718925e-06, 'grabs': 3.2860984071459497e-06, 'angle': 4.2719279292897344e-05, "You'd": 7.393721416078387e-06, 'Obviously': 2.300268885002165e-05, 'Robby': 1.6430492035729749e-06, 'conceivable': 9.85829522143785e-06, "Robby's": 1.6430492035729749e-06, 'exceptional': 1.5608967433943262e-05, 'duplicate': 4.929147610718925e-06, '98': 3.2860984071459497e-06, 'hunch': 6.5721968142918994e-06, 'notch': 5.750672212505412e-06, 'Triandos': 3.2860984071459497e-06, 'indications': 1.232286902679731e-05, 'thumb': 9.036770619651361e-06, 'jammed': 7.393721416078387e-06, 'bounce': 7.393721416078387e-06, 'offensively': 1.6430492035729749e-06, 'Foiles': 1.6430492035729749e-06, 'furiously': 1.0679819823224336e-05, 'cage': 8.215246017864873e-06, 'nonchalant': 1.6430492035729749e-06, 'platoons': 2.4645738053594624e-06, 'autistic': 1.1501344425010824e-05, 'fault': 1.889506584108921e-05, 'well-defined': 3.2860984071459497e-06, 'treats': 1.232286902679731e-05, 'autism': 2.4645738053594624e-06, 'defect': 3.2860984071459497e-06, 'deviation': 1.232286902679731e-05, 'inborn': 1.6430492035729749e-06, 'adapt': 4.929147610718925e-06, 'disturbed': 2.218116424823516e-05, 'experiences': 4.436232849647032e-05, 'layman': 3.2860984071459497e-06, 'disinterest': 3.2860984071459497e-06, "son's": 8.215246017864873e-06, 'fingers': 5.504214831969465e-05, 'psychiatrist': 4.107623008932437e-06, 'stiffens': 2.4645738053594624e-06, 'pushes': 3.2860984071459497e-06, 'straightens': 1.6430492035729749e-06, 'Physical': 6.5721968142918994e-06, 'uncomfortable': 1.232286902679731e-05, 'accustomed': 1.3144393628583799e-05, 'rituals': 4.107623008932437e-06, 'ingenuity': 4.929147610718925e-06, 'uncover': 4.107623008932437e-06, 'Dear': 6.5721968142918994e-06, 'diagnosis': 1.0679819823224336e-05, 'nursery': 1.1501344425010824e-05, 'reality': 6.49004435411325e-05, 'parenthood': 3.2860984071459497e-06, 'Single-color': 1.6430492035729749e-06, 'wagon': 4.354080389468383e-05, 'coloring': 6.5721968142918994e-06, 'nervous': 2.0538115044662184e-05, 'relaxed': 1.232286902679731e-05, 'outgrow': 4.107623008932437e-06, 'traits': 4.929147610718925e-06, 'enjoying': 1.4787442832156774e-05, 'immature': 6.5721968142918994e-06, 'crayons': 1.6430492035729749e-06, 'staying': 1.4787442832156774e-05, 'paint': 2.9574885664313547e-05, 'Seen': 3.2860984071459497e-06, 'circles': 2.7110311858954083e-05, 'embroidery': 4.107623008932437e-06, 'Possibly': 3.2860984071459497e-06, 'incoming': 4.929147610718925e-06, 'multicolor': 1.6430492035729749e-06, 'one-color': 1.6430492035729749e-06, 'varitinted': 1.6430492035729749e-06, 'rug': 1.1501344425010824e-05, 'versions': 8.215246017864873e-06, 'crewel': 2.4645738053594624e-06, 'over-stitched': 1.6430492035729749e-06, 'bronze': 9.85829522143785e-06, 'sauterne': 1.6430492035729749e-06, 'twirled': 1.6430492035729749e-06, 'stylized': 2.4645738053594624e-06, 'winding': 8.215246017864873e-06, 'floral': 3.2860984071459497e-06, 'suggests': 2.464573805359462e-05, 'patterns': 3.94331808857514e-05, 'extensively': 9.036770619651361e-06, 'upholstery': 3.2860984071459497e-06, 'Jacobean': 1.6430492035729749e-06, 'Traditional': 1.6430492035729749e-06, 'depicted': 6.5721968142918994e-06, 'salad': 8.215246017864873e-06, 'pineapple': 8.215246017864873e-06, 'naturalistic': 4.107623008932437e-06, 'fabulous': 5.750672212505412e-06, 'Chippendale': 1.6430492035729749e-06, 'fabric': 1.3144393628583799e-05, 'typically': 1.1501344425010824e-05, 'Chinese-inspired': 1.6430492035729749e-06, 'revered': 4.929147610718925e-06, 'limitation': 9.036770619651361e-06, 'conception': 2.7110311858954083e-05, 'Scandinavian': 2.4645738053594624e-06, 'reappearing': 1.6430492035729749e-06, 'handicrafts': 1.6430492035729749e-06, 'do-it-yourself': 4.929147610718925e-06, 'wraps': 2.4645738053594624e-06, 'assembling': 5.750672212505412e-06, 'clubrooms': 1.6430492035729749e-06, 'backyards': 3.2860984071459497e-06, 'darned': 4.107623008932437e-06, 'dissensions': 1.6430492035729749e-06, 'grassroots-fueled': 1.6430492035729749e-06, 'nominally': 3.2860984071459497e-06, '200-odd': 1.6430492035729749e-06, 'officeholders': 1.6430492035729749e-06, 'Plans': 5.750672212505412e-06, 'broad-scale': 1.6430492035729749e-06, 'enlist': 4.929147610718925e-06, 'top-drawer': 2.4645738053594624e-06, 'Blueprints': 1.6430492035729749e-06, "CDC's": 2.4645738053594624e-06, '55,000': 1.6430492035729749e-06, 'Arrangements': 1.6430492035729749e-06, 'pre-primary': 2.4645738053594624e-06, 'endorsing': 1.6430492035729749e-06, 'Fresno': 1.6430492035729749e-06, '26-28': 1.6430492035729749e-06, 'lesser': 1.6430492035729746e-05, 'candidate-picking': 1.6430492035729749e-06, 'CDC': 6.5721968142918994e-06, 'unorthodox': 5.750672212505412e-06, '39-year-old': 1.6430492035729749e-06, 'politico': 1.6430492035729749e-06, 'Carvey': 4.929147610718925e-06, "Aircraft's": 1.6430492035729749e-06, 'hard-nosed': 1.6430492035729749e-06, 'Viewed': 1.6430492035729749e-06, 'afar': 2.4645738053594624e-06, 'stalwart': 4.107623008932437e-06, 'pyramid': 2.4645738053594624e-06, 'thence': 4.929147610718925e-06, 'component': 2.1359639646448672e-05, 'consequence': 2.546726265538111e-05, 'hierarchy': 8.215246017864873e-06, 'participates': 6.5721968142918994e-06, 'Contrarily': 1.6430492035729749e-06, 'loose-knit': 1.6430492035729749e-06, 'reapportionment': 1.6430492035729749e-06, 'henceforth': 4.107623008932437e-06, 'Biggest': 2.4645738053594624e-06, 'organizational': 4.929147610718925e-06, 'rock-ribbed': 1.6430492035729749e-06, 'weakest': 3.2860984071459497e-06, '4-': 2.4645738053594624e-06, '5-to-1': 1.6430492035729749e-06, 'predicts': 3.2860984071459497e-06, 'tremendously': 9.036770619651361e-06, 'Hence': 2.464573805359462e-05, 'lavishing': 1.6430492035729749e-06, 'favorites': 9.036770619651361e-06, 'bodes': 1.6430492035729749e-06, 'heated': 1.3965918230370285e-05, 'staked': 2.4645738053594624e-06, 'hopefuls': 2.4645738053594624e-06, 'eye-to-eye': 1.6430492035729749e-06, 'Shunted': 1.6430492035729749e-06, 'rampant': 4.107623008932437e-06, 'subordinate': 5.750672212505412e-06, 'plainly': 1.5608967433943262e-05, 'incumbents': 1.6430492035729749e-06, 'considers': 1.3144393628583799e-05, "Brown's": 1.97165904428757e-05, 'foe': 7.393721416078387e-06, 'ex-Gov.': 1.6430492035729749e-06, 'aspirants': 2.4645738053594624e-06, 'close-in': 1.6430492035729749e-06, 'shrewdest': 1.6430492035729749e-06, 'strategists': 4.107623008932437e-06, 'Committeeman': 1.6430492035729749e-06, 'Ziffren': 2.4645738053594624e-06, 'Northland': 2.4645738053594624e-06, 'espoused': 2.4645738053594624e-06, 'Significantly': 3.2860984071459497e-06, 'audible': 4.107623008932437e-06, '54th': 1.6430492035729749e-06, 'post-reapportionment': 1.6430492035729749e-06, "Pasadena's": 1.6430492035729749e-06, 'graphically': 2.4645738053594624e-06, 'illustrates': 6.5721968142918994e-06, 'committeemen': 1.6430492035729749e-06, 'Communese': 4.929147610718925e-06, 'tongue': 2.9574885664313547e-05, 'deluge': 4.107623008932437e-06, 'compulsive': 9.036770619651361e-06, 'fascinated': 6.5721968142918994e-06, 'Freud': 8.215246017864873e-06, 'shapes': 2.3824213451808133e-05, 'sizes': 1.0679819823224336e-05, 'invariably': 2.6288787257167598e-05, 'impute': 1.6430492035729749e-06, 'motives': 1.7252016637516235e-05, 'crimes': 1.1501344425010824e-05, 'surprisingly': 1.4787442832156774e-05, 'excerpts': 4.929147610718925e-06, 'Iron': 5.750672212505412e-06, 'Curtain': 2.4645738053594624e-06, 'mouthpieces': 1.6430492035729749e-06, 'consistency': 1.5608967433943262e-05, 'Literary': 2.4645738053594624e-06, 'Gazette': 9.036770619651361e-06, 'interpreted': 2.0538115044662184e-05, 'treaty': 1.1501344425010824e-05, 'looming': 8.215246017864873e-06, 'capitalism': 9.85829522143785e-06, 'Evidently': 3.2860984071459497e-06, 'hysteria': 6.5721968142918994e-06, 'painstakingly': 2.4645738053594624e-06, 'artificially': 5.750672212505412e-06, 'TASS': 4.107623008932437e-06, 'datelined': 4.107623008932437e-06, 'enlargement': 3.2860984071459497e-06, 'munitions': 3.2860984071459497e-06, 'Quotations': 1.6430492035729749e-06, 'crush': 3.2860984071459497e-06, 'lawful': 2.4645738053594624e-06, 'postpone': 6.5721968142918994e-06, 'non-military': 3.2860984071459497e-06, 'clamored': 1.6430492035729749e-06, 'sabre-rattling': 1.6430492035729749e-06, 'exercises': 1.97165904428757e-05, 'futile': 5.750672212505412e-06, 'predecessors': 5.750672212505412e-06, 'imperialist': 1.6430492035729749e-06, 'invented': 1.1501344425010824e-05, 'armaments': 4.107623008932437e-06, 'besetting': 1.6430492035729749e-06, 'injecting': 4.929147610718925e-06, 'revival': 7.393721416078387e-06, 'prolonged': 1.3144393628583799e-05, 'listeners': 1.7252016637516235e-05, 'fanning': 4.107623008932437e-06, 'revenge-seeking': 1.6430492035729749e-06, 'Novosti': 1.6430492035729749e-06, 'apogee': 2.4645738053594624e-06, 'proverbial': 4.107623008932437e-06, 'contaminate': 1.6430492035729749e-06, 'Britons': 1.6430492035729749e-06, 'unwilling': 6.5721968142918994e-06, 'chestnuts': 1.6430492035729749e-06, 'Whenever': 1.1501344425010824e-05, 'succumbed': 4.929147610718925e-06, 'clique': 2.4645738053594624e-06, 'currents': 8.215246017864873e-06, 'sensible': 1.232286902679731e-05, 'dear': 3.94331808857514e-05, 'Sochi': 2.4645738053594624e-06, 'McCloy': 2.4645738053594624e-06, 'egged': 1.6430492035729749e-06, 'rattles': 1.6430492035729749e-06, 'rockets': 1.1501344425010824e-05, 'sabre': 2.4645738053594624e-06, 'cure': 2.3824213451808133e-05, 'Politburo': 1.6430492035729749e-06, 'consistent': 2.3824213451808133e-05, 'Warsaw': 9.036770619651361e-06, 'terrible': 3.6968607080391934e-05, '1821': 4.929147610718925e-06, 'suspensions': 2.4645738053594624e-06, 'publication': 4.107623008932437e-05, 'Evening': 4.929147610718925e-06, 'Gazettes': 1.6430492035729749e-06, 'Atkinson': 2.4645738053594624e-06, "Franklin's": 1.6430492035729749e-06, 'distinctive': 1.7252016637516235e-05, 'columns': 2.6288787257167598e-05, 'poetry': 6.818654194827845e-05, 'essays': 7.393721416078387e-06, '90,000': 1.6430492035729749e-06, 'weeklies': 3.2860984071459497e-06, 'fortunes': 5.750672212505412e-06, '1897': 3.2860984071459497e-06, 'Cyrus': 4.107623008932437e-06, '16-page': 1.6430492035729749e-06, 'unsigned': 3.2860984071459497e-06, 'initialed': 1.6430492035729749e-06, 'miscellany': 1.6430492035729749e-06, 'subscribers': 5.750672212505412e-06, 'Remember': 1.5608967433943262e-05, 'baron': 2.4645738053594624e-06, 'Nile': 3.2860984071459497e-06, 'Will': 3.450403327503247e-05, 'tooth': 1.5608967433943262e-05, 'Sure': 2.0538115044662184e-05, 'Fanny': 3.2860984071459497e-06, 'Brice': 1.6430492035729749e-06, 'remembering': 1.232286902679731e-05, 'Ziegfeld': 2.4645738053594624e-06, 'Girls': 3.2860984071459497e-06, 'bevy': 3.2860984071459497e-06, 'sashayed': 1.6430492035729749e-06, 'staircases': 1.6430492035729749e-06, 'Amsterdam': 3.2860984071459497e-06, 'Cyril': 1.6430492035729749e-06, 'Ring': 6.5721968142918994e-06, 'Berniece': 1.6430492035729749e-06, 'Jarvis': 1.6430492035729749e-06, 'low-calorie': 1.6430492035729749e-06, 'seafood': 2.4645738053594624e-06, 'grandmothers': 1.6430492035729749e-06, 'anxious': 2.3824213451808133e-05, 'dazzling': 8.215246017864873e-06, 'Billie': 3.2860984071459497e-06, 'Dove': 1.6430492035729749e-06, 'pasted': 5.750672212505412e-06, 'ceiling': 2.6288787257167598e-05, "brother's": 9.036770619651361e-06, 'Vera': 2.4645738053594624e-06, 'Forbes': 8.215246017864873e-06, 'glitter': 4.929147610718925e-06, 'rimmed': 2.4645738053594624e-06, 'glasses': 2.464573805359462e-05, 'Sing': 6.5721968142918994e-06, "Sing's": 1.6430492035729749e-06, 'prisoner': 6.5721968142918994e-06, 'hoosegows': 1.6430492035729749e-06, 'Inmates': 2.4645738053594624e-06, '34-hour': 1.6430492035729749e-06, "lawyers'": 1.6430492035729749e-06, 'Prison': 2.4645738053594624e-06, 'busily': 7.393721416078387e-06, 'convicts': 4.107623008932437e-06, 'confinement': 6.5721968142918994e-06, 'shorter': 1.4787442832156774e-05, 'Wider': 2.4645738053594624e-06, 'rubber': 1.1501344425010824e-05, 'locks': 6.5721968142918994e-06, 'inmates': 4.107623008932437e-06, 'arbitration': 2.4645738053594624e-06, 'lifer': 1.6430492035729749e-06, 'escapees': 1.6430492035729749e-06, 'Specific': 5.750672212505412e-06, 'broadening': 8.215246017864873e-06, 'hoosegow': 1.6430492035729749e-06, 'Recognition': 1.6430492035729749e-06, 'Prisoners': 2.4645738053594624e-06, 'sawed-off': 1.6430492035729749e-06, 'occupant': 4.107623008932437e-06, 'lock': 1.97165904428757e-05, 'doorknob': 3.2860984071459497e-06, "prisoners'": 3.2860984071459497e-06, 'paved': 4.929147610718925e-06, 'catering': 3.2860984071459497e-06, 'loyalties': 3.2860984071459497e-06, 'IBM': 6.5721968142918994e-06, 'funny': 3.286098407145949e-05, 'Aristotle': 1.8073541239302723e-05, 'Contemplating': 2.4645738053594624e-06, 'Bust': 1.6430492035729749e-06, '$2,300,000': 1.6430492035729749e-06, 'contemplating': 4.107623008932437e-06, 'bust': 5.750672212505412e-06, '$750,000': 1.6430492035729749e-06, '$590,000': 1.6430492035729749e-06, 'Apologies': 1.6430492035729749e-06, 'Wagon': 3.2860984071459497e-06, 'Train': 4.929147610718925e-06, 'Lucius': 2.4645738053594624e-06, "Beebe's": 1.6430492035729749e-06, "Pullman's": 1.6430492035729749e-06, 'Elegant': 1.6430492035729749e-06, 'Car': 4.107623008932437e-06, 'fills': 4.929147610718925e-06, 'nostalgia': 6.5721968142918994e-06, 'recalling': 6.5721968142918994e-06, 'Pullmans': 1.6430492035729749e-06, 'woodwork': 4.929147610718925e-06, 'craftsmanship': 4.929147610718925e-06, 'carpets': 4.107623008932437e-06, 'Beebe': 4.107623008932437e-06, 'plumbing': 8.215246017864873e-06, 'cow': 2.3824213451808133e-05, 'deluxer': 1.6430492035729749e-06, 'Frelinghuysen': 4.107623008932437e-06, 'R-5th': 1.6430492035729749e-06, 'Korean': 9.85829522143785e-06, 'Chung': 1.6430492035729749e-06, 'Hee': 1.6430492035729749e-06, 'Korea': 1.0679819823224336e-05, 'grandson': 3.2860984071459497e-06, 'instrumental': 9.036770619651361e-06, "Frelinghuysen's": 1.6430492035729749e-06, '80th': 1.6430492035729749e-06, 'Seoul': 1.6430492035729749e-06, '1883': 5.750672212505412e-06, '1884': 1.6430492035729749e-06, 'Foote': 1.6430492035729749e-06, 'congressman': 5.750672212505412e-06, 'trace': 1.97165904428757e-05, 'archives': 2.4645738053594624e-06, 'presided': 1.6430492035729749e-06, 'breakfasts': 2.4645738053594624e-06, '285': 1.6430492035729749e-06, '312': 1.6430492035729749e-06, 'messages': 1.3965918230370285e-05, 'congratulations': 4.929147610718925e-06, 'congratulatory': 2.4645738053594624e-06, 'youngster': 7.393721416078387e-06, 'fourth-class': 1.6430492035729749e-06, 'hello': 4.107623008932437e-06, 'academy': 5.750672212505412e-06, 'managerial': 9.036770619651361e-06, 'Roswell': 1.6430492035729749e-06, 'N.M.': 1.6430492035729749e-06, 'cohesion': 5.750672212505412e-06, 'Kind': 3.2860984071459497e-06, 'Dwyer': 3.2860984071459497e-06, 'R-6th': 1.6430492035729749e-06, "Dwyer's": 1.6430492035729749e-06, 'autograph': 3.2860984071459497e-06, '350th': 1.6430492035729749e-06, 'simultaneously': 2.7110311858954083e-05, 'translation': 1.3965918230370285e-05, 'Scriptures': 6.5721968142918994e-06, '1611': 3.2860984071459497e-06, 'Version': 5.750672212505412e-06, 'translations': 3.2860984071459497e-06, 'Biblical': 1.3144393628583799e-05, 'attested': 4.107623008932437e-06, 'inaccuracies': 1.6430492035729749e-06, 'manuscripts': 4.107623008932437e-06, '1881-85': 1.6430492035729749e-06, 'Revised': 2.4645738053594624e-06, '1901': 4.107623008932437e-06, 'Undertaken': 1.6430492035729749e-06, '32': 1.1501344425010824e-05, 'chairmanship': 1.6430492035729749e-06, 'Weigle': 1.6430492035729749e-06, 'Yale': 1.1501344425010824e-05, 'Divinity': 4.929147610718925e-06, '1946-52': 1.6430492035729749e-06, 'Apocrypha': 1.6430492035729749e-06, 'depth': 4.436232849647032e-05, 'repetition': 1.1501344425010824e-05, 'readings': 1.3965918230370285e-05, 'perusal': 2.4645738053594624e-06, 'clarity': 2.3824213451808133e-05, 'archaic': 4.929147610718925e-06, 'phrases': 1.5608967433943262e-05, 'verses': 8.215246017864873e-06, '13-16': 1.6430492035729749e-06, 'baptism': 4.107623008932437e-06, 'cometh': 1.6430492035729749e-06, 'Galilee': 2.4645738053594624e-06, 'baptized': 1.0679819823224336e-05, 'forbad': 1.6430492035729749e-06, 'thee': 1.3965918230370285e-05, 'comest': 1.6430492035729749e-06, 'thou': 7.393721416078387e-06, 'answering': 1.232286902679731e-05, 'Suffer': 1.6430492035729749e-06, 'becometh': 1.6430492035729749e-06, 'righteousness': 5.750672212505412e-06, 'straightway': 1.6430492035729749e-06, 'lo': 1.6430492035729749e-06, 'heavens': 8.215246017864873e-06, 'Spirit': 1.889506584108921e-05, 'descending': 9.036770619651361e-06, 'dove': 3.2860984071459497e-06, 'lighting': 1.6430492035729746e-05, 'Clearer': 1.6430492035729749e-06, 'teachings': 5.750672212505412e-06, 'dissuade': 3.2860984071459497e-06, 'alight': 3.2860984071459497e-06, 'paragraphing': 1.6430492035729749e-06, 'spelling': 3.2860984071459497e-06, 'punctuation': 2.4645738053594624e-06, 'Beatitudes': 1.6430492035729749e-06, 'blessings': 2.4645738053594624e-06, 'uttered': 4.929147610718925e-06, 'Sermon': 2.4645738053594624e-06, 'blessing': 9.036770619651361e-06, 'Blessed': 4.107623008932437e-06, "their's": 1.6430492035729749e-06, 'blest': 3.2860984071459497e-06, 'Heaven': 1.7252016637516235e-05, 'cadence': 2.4645738053594624e-06, 'novice': 3.2860984071459497e-06, 'Revelation': 3.2860984071459497e-06, 'angel': 8.215246017864873e-06, 'bishop': 4.929147610718925e-06, 'attain': 1.7252016637516235e-05, 'comprehension': 6.5721968142918994e-06, 'Originally': 2.4645738053594624e-06, 'copied': 3.2860984071459497e-06, 'recopied': 1.6430492035729749e-06, 'retranslated': 1.6430492035729749e-06, 'Discoveries': 1.6430492035729749e-06, 'Hebrew': 9.036770619651361e-06, 'writings': 1.3144393628583799e-05, 'restudy': 1.6430492035729749e-06, 'usable': 7.393721416078387e-06, 'rapidity': 4.107623008932437e-06, 'Congregational': 6.5721968142918994e-06, 'Churches': 1.232286902679731e-05, 'Prof.': 4.107623008932437e-06, 'Dodd': 1.6430492035729749e-06, 'Sizzling': 1.6430492035729749e-06, 'pavements': 2.4645738053594624e-06, 'invest': 3.2860984071459497e-06, 'airy': 5.750672212505412e-06, 'leathers': 2.4645738053594624e-06, 'styles': 1.5608967433943262e-05, 'perforations': 1.6430492035729749e-06, 'weightlessness': 2.4645738053594624e-06, 'unlined': 3.2860984071459497e-06, 'Softness': 1.6430492035729749e-06, 'textures': 5.750672212505412e-06, 'Styles': 2.4645738053594624e-06, 'gamut': 4.107623008932437e-06, 'tapered': 6.5721968142918994e-06, 'elongated': 4.929147610718925e-06, 'toe': 8.215246017864873e-06, 'Heels': 2.4645738053594624e-06, 'legged': 1.6430492035729749e-06, 'Wine': 4.929147610718925e-06, 'semi-heights': 1.6430492035729749e-06, 'Stacked': 1.6430492035729749e-06, 'dressy': 2.4645738053594624e-06, 'tailored': 8.215246017864873e-06, 'barest': 3.2860984071459497e-06, 'pumps': 4.929147610718925e-06, 'Coolest': 1.6430492035729749e-06, 'pastel': 3.2860984071459497e-06, 'hues': 2.4645738053594624e-06, 'tintable': 2.4645738053594624e-06, 'blend': 7.393721416078387e-06, 'oval': 6.5721968142918994e-06, 'throats': 5.750672212505412e-06, 'shantung-like': 1.6430492035729749e-06, 'overlook': 4.107623008932437e-06, 'straws': 3.2860984071459497e-06, 'crisp': 7.393721416078387e-06, 'basket': 1.4787442832156774e-05, 'weaves': 2.4645738053594624e-06, 'lacey': 2.4645738053594624e-06, 'lustre': 2.4645738053594624e-06, 'casual': 1.889506584108921e-05, 'cork': 8.215246017864873e-06, 'sandals': 4.929147610718925e-06, 'foam': 3.1217934867886523e-05, 'padded': 4.929147610718925e-06, 'cushioning': 4.107623008932437e-06, 'citrus': 1.6430492035729749e-06, 'afoot': 1.6430492035729749e-06, 'lemon': 1.232286902679731e-05, 'pastels': 1.6430492035729749e-06, 'lilac': 1.6430492035729749e-06, 'brighter': 7.393721416078387e-06, 'nautical': 2.4645738053594624e-06, 'Ille': 1.6430492035729749e-06, 'Contrast': 1.6430492035729749e-06, 'Spectators': 1.6430492035729749e-06, 'dip': 4.929147610718925e-06, 'taffy': 1.6430492035729749e-06, 'tan': 6.5721968142918994e-06, 'Designed': 2.4645738053594624e-06, 'straw': 1.3144393628583799e-05, 'weave': 4.107623008932437e-06, 'luster': 2.4645738053594624e-06, 'braided': 1.6430492035729749e-06, 'collar': 1.4787442832156774e-05, 'bow': 1.232286902679731e-05, 'highlight': 2.4645738053594624e-06, 'throat': 3.368250867324598e-05, 'Flats': 1.6430492035729749e-06, 'toothbrush': 5.750672212505412e-06, 'Broxodent': 2.4645738053594624e-06, 'razor': 1.3144393628583799e-05, 'bathroom': 1.5608967433943262e-05, 'brush': 3.450403327503247e-05, 'surface': 0.00016348339575551098, 'Underwriters': 1.6430492035729749e-06, 'Laboratories': 4.107623008932437e-06, 'plugged': 3.2860984071459497e-06, 'brake': 2.4645738053594624e-06, 'buttons': 9.036770619651361e-06, 'brushes': 6.5721968142918994e-06, 'cleaned': 1.232286902679731e-05, 'sterilized': 1.6430492035729749e-06, 'detachable': 2.4645738053594624e-06, 'shaving': 5.750672212505412e-06, 'vertical': 1.3965918230370285e-05, 'dentists': 4.107623008932437e-06, 'crevices': 1.6430492035729749e-06, 'malposed': 1.6430492035729749e-06, 'anteriors': 1.6430492035729749e-06, 'bristles': 4.107623008932437e-06, 'massage': 2.4645738053594624e-06, 'gums': 3.2860984071459497e-06, 'scratch': 8.215246017864873e-06, 'enamel': 1.6430492035729749e-06, 'brushing': 6.5721968142918994e-06, 'experimented': 5.750672212505412e-06, 'gadget': 4.107623008932437e-06, 'crowned': 6.5721968142918994e-06, 'bedfast': 1.6430492035729749e-06, 'chronic': 9.85829522143785e-06, 'disease': 4.436232849647032e-05, 'disorders': 6.5721968142918994e-06, 'cerebral': 6.5721968142918994e-06, 'palsy': 1.6430492035729749e-06, 'dystrophy': 2.4645738053594624e-06, 'enjoyable': 2.4645738053594624e-06, 'paste': 9.036770619651361e-06, 'shimmy': 2.4645738053594624e-06, 'apparatus': 2.3824213451808133e-05, 'experimentation': 1.1501344425010824e-05, 'Turn': 6.5721968142918994e-06, 'numbness': 2.4645738053594624e-06, 'awakens': 1.6430492035729749e-06, 'tumor': 1.1501344425010824e-05, 'Reply': 4.929147610718925e-06, 'symptom': 4.929147610718925e-06, 'tendons': 2.4645738053594624e-06, 'bones': 1.6430492035729746e-05, 'Steam': 1.6430492035729749e-06, 'baths': 4.929147610718925e-06, 'pores': 3.2860984071459497e-06, 'sweat': 1.7252016637516235e-05, 'glands': 5.750672212505412e-06, 'shower': 1.3144393628583799e-05, 'Sewing': 1.6430492035729749e-06, 'numb': 4.107623008932437e-06, 'possibilities': 3.532555787681896e-05, 'neurological': 1.6430492035729749e-06, 'manifestation': 5.750672212505412e-06, 'sclerosis': 2.4645738053594624e-06, "sewer's": 1.6430492035729749e-06, 'cramp': 2.4645738053594624e-06, 'Brace': 4.107623008932437e-06, 'sciatica': 4.107623008932437e-06, 'brace': 9.036770619651361e-06, 'Cholesterol': 2.4645738053594624e-06, 'thyroid': 3.1217934867886523e-05, 'cholesterol': 1.6430492035729746e-05, 'gland': 8.215246017864873e-06, 'overactive': 1.6430492035729749e-06, 'sluggish': 2.4645738053594624e-06, 'gap': 9.85829522143785e-06, 'bookshelf': 1.6430492035729749e-06, 'discs': 6.5721968142918994e-06, 'sung': 1.5608967433943262e-05, "Edison's": 1.6430492035729749e-06, 'Edison': 3.2860984071459497e-06, 'guessed': 1.3144393628583799e-05, 'Sophocles': 3.2860984071459497e-06, 'stereo': 1.0679819823224336e-05, "buyer's": 2.4645738053594624e-06, 'eclectic': 3.2860984071459497e-06, 'slightest': 1.1501344425010824e-05, 'esoteric': 4.107623008932437e-06, 'eye-strain': 1.6430492035729749e-06, 'phonetics': 1.6430492035729749e-06, 'histrionics': 1.6430492035729749e-06, 'adapted': 1.1501344425010824e-05, 'turntable': 1.6430492035729749e-06, 'sheer': 1.1501344425010824e-05, 'Decca': 3.2860984071459497e-06, 'modestly': 3.2860984071459497e-06, 'Wisdom': 2.4645738053594624e-06, 'Volumes': 3.2860984071459497e-06, 'wise': 2.793183646074057e-05, 'sages': 1.6430492035729749e-06, 'Sandburg': 1.889506584108921e-05, 'statesman': 9.85829522143785e-06, 'Jawaharlal': 1.6430492035729749e-06, 'Nehru': 4.929147610718925e-06, 'sculptor': 5.750672212505412e-06, 'Lipchitz': 2.4645738053594624e-06, 'playwright': 3.2860984071459497e-06, 'Sean': 2.4645738053594624e-06, "O'Casey": 1.6430492035729749e-06, 'Ben-Gurion': 1.6430492035729749e-06, 'Bertrand': 1.6430492035729749e-06, 'Downs': 2.4645738053594624e-06, 'interviewing': 5.750672212505412e-06, 'fillip': 1.6430492035729749e-06, 'narrower': 6.5721968142918994e-06, 'albums': 2.4645738053594624e-06, 'Dover': 4.107623008932437e-06, 'Publications': 8.215246017864873e-06, 'Listen': 1.4787442832156774e-05, 'Learn': 1.6430492035729749e-06, 'Productions': 1.6430492035729749e-06, 'Previous': 2.4645738053594624e-06, 'presentations': 5.750672212505412e-06, "tourist's": 2.4645738053594624e-06, 'less-traveled': 1.6430492035729749e-06, 'inexpensive': 5.750672212505412e-06, 'recordings': 9.036770619651361e-06, 'vocabularies': 2.4645738053594624e-06, 'Thanks': 9.036770619651361e-06, 'Spoken': 1.6430492035729749e-06, 'Records': 5.750672212505412e-06, 'buffs': 1.6430492035729749e-06, "Lincoln's": 4.929147610718925e-06, 'memorable': 9.85829522143785e-06, 'two-disc': 1.6430492035729749e-06, 'Lincoln': 3.94331808857514e-05, 'Basler': 1.6430492035729749e-06, 'bonus': 2.4645738053594624e-06, "Sandburg's": 3.2860984071459497e-06, 'releases': 7.393721416078387e-06, 'Recording': 2.4645738053594624e-06, 'Laboratory': 1.3144393628583799e-05, 'Newest': 3.2860984071459497e-06, 'Ciardi': 1.6430492035729749e-06, 'Hillyer': 2.4645738053594624e-06, 'Wheelock': 3.2860984071459497e-06, 'Benet': 2.4645738053594624e-06, 'Muir': 1.6430492035729749e-06, 'Peal': 1.6430492035729749e-06, 'Bodenheim': 1.6430492035729749e-06, 'impart': 4.107623008932437e-06, 'RCA': 5.750672212505412e-06, 'Victor': 1.889506584108921e-05, 'guides': 8.215246017864873e-06, 'fortify': 2.4645738053594624e-06, 'unforseen': 1.6430492035729749e-06, 'upsets': 3.2860984071459497e-06, 'Leggett': 1.6430492035729749e-06, 'banker-editor': 1.6430492035729749e-06, 'Arizona': 8.215246017864873e-06, 'depressing': 4.929147610718925e-06, 'feverish': 4.107623008932437e-06, 'fifties': 6.5721968142918994e-06, 'roughest': 1.6430492035729749e-06, 'quiz': 2.4645738053594624e-06, 'inferiority': 4.107623008932437e-06, 'complexes': 5.750672212505412e-06, 'brains': 1.4787442832156774e-05, 'frauds': 4.107623008932437e-06, 'irreparable': 2.4645738053594624e-06, 'ego': 1.1501344425010824e-05, 'financially': 7.393721416078387e-06, 'parlayed': 1.6430492035729749e-06, '$2,000,000': 2.4645738053594624e-06, 'dabbles': 1.6430492035729749e-06, 'wondering': 1.7252016637516235e-05, 'breathed': 8.215246017864873e-06, 'freely': 1.889506584108921e-05, 'magician': 4.107623008932437e-06, 'seller': 5.750672212505412e-06, 'suckers': 1.6430492035729749e-06, 'Westerner': 2.4645738053594624e-06, 'marksmanship': 3.2860984071459497e-06, "bull's-eye": 9.036770619651361e-06, 'promoter': 1.6430492035729749e-06, '2-year-old': 4.929147610718925e-06, 'verbal': 1.6430492035729746e-05, 'senses': 1.3144393628583799e-05, 'explanations': 1.3144393628583799e-05, 'unmoved': 3.2860984071459497e-06, 'clings': 3.2860984071459497e-06, 'ballast': 2.4645738053594624e-06, 'motivates': 3.2860984071459497e-06, 'Mommy': 1.6430492035729749e-06, 'frowningly': 1.6430492035729749e-06, 'angrily': 5.750672212505412e-06, 'sweet': 5.668519752326763e-05, 'considerate': 4.107623008932437e-06, 'helper': 5.750672212505412e-06, 'misbehavior': 3.2860984071459497e-06, 'desires': 2.0538115044662184e-05, 'reassurance': 7.393721416078387e-06, 'clothe': 1.6430492035729749e-06, 'non-existent': 2.4645738053594624e-06, 'temptations': 5.750672212505412e-06, 'knick-knacks': 1.6430492035729749e-06, 'nos': 1.6430492035729749e-06, 'substitutes': 4.929147610718925e-06, "Mommy's": 1.6430492035729749e-06, 'magazines': 2.1359639646448672e-05, "Daddy's": 2.4645738053594624e-06, 'refrigerator': 1.97165904428757e-05, 'playmate': 2.4645738053594624e-06, 'snatches': 3.2860984071459497e-06, 'Explain': 1.6430492035729749e-06, 'Actions': 1.6430492035729749e-06, 'louder': 1.0679819823224336e-05, 'Remove': 7.393721416078387e-06, 'Substitute': 1.6430492035729749e-06, "Mother's": 2.4645738053594624e-06, 'melancholy': 7.393721416078387e-06, 'Homecoming': 1.6430492035729749e-06, 'grad': 1.6430492035729749e-06, 'scenes': 2.464573805359462e-05, 'opponent': 1.3144393628583799e-05, 'homecoming': 3.2860984071459497e-06, 'thrown': 3.368250867324598e-05, "emperor's": 2.4645738053594624e-06, 'lions': 4.107623008932437e-06, 'uncertainties': 4.929147610718925e-06, 'lion': 1.232286902679731e-05, 'ruined': 1.3965918230370285e-05, 'precaution': 7.393721416078387e-06, 'homecomings': 1.6430492035729749e-06, 'cruel': 1.232286902679731e-05, 'perpetually': 3.2860984071459497e-06, 'ebullient': 3.2860984071459497e-06, 'continually': 2.1359639646448672e-05, 'Grad': 1.6430492035729749e-06, 'wanders': 2.4645738053594624e-06, 'strolled': 4.107623008932437e-06, 'coed': 1.6430492035729749e-06, 'ache': 4.107623008932437e-06, 'perfume': 9.036770619651361e-06, 'lilting': 3.2860984071459497e-06, 'laughter': 1.889506584108921e-05, 'aroma': 3.2860984071459497e-06, 'leaves': 4.025470548753788e-05, 'wine': 5.586367292148114e-05, 'woodsmoke': 3.2860984071459497e-06, 'Undergraduates': 1.6430492035729749e-06, 'undergraduates': 7.393721416078387e-06, 'oblivious': 2.4645738053594624e-06, 'fleeting': 5.750672212505412e-06, 'glances': 4.929147610718925e-06, 'tethered': 3.2860984071459497e-06, 'goat': 5.750672212505412e-06, 'titter': 1.6430492035729749e-06, 'dream': 5.011300070897573e-05, 'bridgework': 1.6430492035729749e-06, 'bifocals': 2.4645738053594624e-06, 'blur': 3.2860984071459497e-06, 'unaccountably': 2.4645738053594624e-06, 'strolling': 3.2860984071459497e-06, 'Bitterness': 1.6430492035729749e-06, 'unripe': 1.6430492035729749e-06, 'persimmons': 1.6430492035729749e-06, 'hails': 1.6430492035729749e-06, 'wry': 4.929147610718925e-06, 'wit': 1.7252016637516235e-05, 'slap': 2.4645738053594624e-06, 'embrace': 1.1501344425010824e-05, 'exhausted': 1.3144393628583799e-05, 'Middle-aged': 1.6430492035729749e-06, 'middle-age': 2.4645738053594624e-06, 'hairs': 1.0679819823224336e-05, 'eyeglasses': 3.2860984071459497e-06, 'fading': 4.929147610718925e-06, 'by-gone': 1.6430492035729749e-06, 'wears': 5.750672212505412e-06, 'puffs': 1.6430492035729749e-06, 'Enough': 4.107623008932437e-06, 'akin': 9.036770619651361e-06, 'churning': 3.2860984071459497e-06, 'straining': 6.5721968142918994e-06, 'rasp': 2.4645738053594624e-06, 'pants': 8.215246017864873e-06, 'wet': 4.2719279292897344e-05, 'woolen': 4.107623008932437e-06, 'sleeves': 7.393721416078387e-06, 'remembers': 1.1501344425010824e-05, 'panting': 7.393721416078387e-06, 'breath': 4.1897754691110856e-05, 'kick-offs': 1.6430492035729749e-06, 'jolting': 1.6430492035729749e-06, 'tackles': 1.6430492035729749e-06, 'breakthrough': 4.107623008932437e-06, 'agony': 8.215246017864873e-06, 'goal-line': 1.6430492035729749e-06, 'squirms': 1.6430492035729749e-06, 'recaptured': 1.6430492035729749e-06, 'wisely': 6.5721968142918994e-06, 'analyzed': 1.232286902679731e-05, 'populations': 7.393721416078387e-06, 'Poland': 2.793183646074057e-05, 'Polish': 9.85829522143785e-06, 'seeming': 1.0679819823224336e-05, 'distressed': 4.107623008932437e-06, 'towns': 4.107623008932437e-05, 'misery': 1.3144393628583799e-05, "Mundt's": 1.6430492035729749e-06, 'distortion': 6.5721968142918994e-06, 'erect': 1.1501344425010824e-05, 'barrier': 8.215246017864873e-06, 'Errors': 3.2860984071459497e-06, 'Mundt': 1.6430492035729749e-06, 'Bridges': 4.107623008932437e-06, 'repeating': 7.393721416078387e-06, 'anticipate': 9.85829522143785e-06, 'distress': 1.3144393628583799e-05, 'devoid': 5.750672212505412e-06, 'mule-drawn': 1.6430492035729749e-06, 'carts': 4.929147610718925e-06, 'Smokers': 1.6430492035729749e-06, 'makings': 4.107623008932437e-06, 'sack': 5.750672212505412e-06, 'tobacco': 1.232286902679731e-05, 'downgrade': 1.6430492035729749e-06, 'underscored': 3.2860984071459497e-06, 'articulate': 7.393721416078387e-06, 'unemployed': 4.107623008932437e-06, 'transact': 3.2860984071459497e-06, 'Griffin-Byrd': 1.6430492035729749e-06, 'troup': 1.6430492035729749e-06, 'circuit': 1.5608967433943262e-05, 'Pre-Legislative': 1.6430492035729749e-06, 'Forum': 3.2860984071459497e-06, 'oriented': 9.85829522143785e-06, 'Brasstown': 1.6430492035729749e-06, 'Bald': 1.6430492035729749e-06, 'Folkston': 1.6430492035729749e-06, 'allegiances': 1.6430492035729749e-06, 'Hoped-for': 1.6430492035729749e-06, 'self-insurance': 1.6430492035729749e-06, 'unpartisan': 1.6430492035729749e-06, 'Operations': 4.929147610718925e-06, 'causing': 1.5608967433943262e-05, 'aggravated': 3.2860984071459497e-06, 'bravado': 4.929147610718925e-06, 'mince': 1.6430492035729749e-06, 'Politics': 4.107623008932437e-06, 'accelerating': 5.750672212505412e-06, 'Say': 8.215246017864873e-06, 'thief': 7.393721416078387e-06, 'adage': 3.2860984071459497e-06, 'spenders': 1.6430492035729749e-06, "Griffin's": 1.6430492035729749e-06, "pauper's": 1.6430492035729749e-06, 'oaths': 3.2860984071459497e-06, 'glance': 3.286098407145949e-05, 'debating': 3.2860984071459497e-06, 'shuddery': 1.6430492035729749e-06, 'visions': 6.5721968142918994e-06, 'spectre': 1.6430492035729749e-06, 'ooze': 2.4645738053594624e-06, 'mudslinging': 1.6430492035729749e-06, 'pre-legislative': 1.6430492035729749e-06, 'Prime': 7.393721416078387e-06, 'Attlee': 1.6430492035729749e-06, "Ike's": 1.6430492035729749e-06, 'fair-sized': 2.4645738053594624e-06, 'Congressmen': 2.4645738053594624e-06, 'recess': 1.6430492035729749e-06, 'admire': 9.036770619651361e-06, 'Slogan': 1.6430492035729749e-06, 'Birch': 1.6430492035729749e-06, 'Paddle': 1.6430492035729749e-06, 'canoe': 5.750672212505412e-06, "'60": 1.6430492035729749e-06, 'praying': 3.2860984071459497e-06, 'Faces': 1.6430492035729749e-06, 'Problem': 1.6430492035729749e-06, 'Your': 4.60053777000433e-05, 'grossly': 4.107623008932437e-06, 'oversimplified': 4.107623008932437e-06, 'endorsement': 2.4645738053594624e-06, 'zoned': 1.6430492035729749e-06, 'classification': 1.8073541239302723e-05, 'petitioner': 1.6430492035729746e-05, 'locations': 1.5608967433943262e-05, 'migrants': 2.4645738053594624e-06, 'well-to-do': 2.4645738053594624e-06, 'medium': 3.779013168217842e-05, 'Bostitch': 1.6430492035729749e-06, 'granting': 7.393721416078387e-06, 'exemptions': 2.4645738053594624e-06, 'compatible': 1.3965918230370285e-05, 'Preston': 2.4645738053594624e-06, 'Hampshire': 9.85829522143785e-06, 'Governors': 2.4645738053594624e-06, 'fallacy': 1.6430492035729749e-06, 'solely': 1.7252016637516235e-05, "community's": 3.2860984071459497e-06, 'se': 7.393721416078387e-06, 'savior': 2.4645738053594624e-06, 'foundering': 1.6430492035729749e-06, 'absorbing': 3.2860984071459497e-06, 'Olson': 1.6430492035729749e-06, 'alarm': 1.3965918230370285e-05, 'utilizing': 7.393721416078387e-06, 'additions': 8.215246017864873e-06, 'foresight': 4.929147610718925e-06, 'compounds': 1.3965918230370285e-05, 'editorials': 9.036770619651361e-06, 'metropolitanization': 1.6430492035729749e-06, 'inception': 5.750672212505412e-06, 'utilizes': 4.107623008932437e-06, 'transmission': 1.3144393628583799e-05, 'ensuring': 2.4645738053594624e-06, 'Cowessett-East': 1.6430492035729749e-06, 'Greenwich-Potowomut': 1.6430492035729749e-06, 'Kent': 1.232286902679731e-05, 'facility': 9.85829522143785e-06, 'Feelers': 1.6430492035729749e-06, 'suggesting': 1.1501344425010824e-05, 'Potowomut': 1.6430492035729749e-06, 'Cowessett': 1.6430492035729749e-06, 'relation': 5.175604991254871e-05, 'ignore': 1.6430492035729746e-05, 'waste': 2.9574885664313547e-05, 'migrant': 2.4645738053594624e-06, 'developer': 4.929147610718925e-06, 'update': 1.6430492035729749e-06, 'concepts': 2.218116424823516e-05, 'destiny': 1.889506584108921e-05, 'eternal': 2.218116424823516e-05, 'Gabrielle': 3.2860984071459497e-06, 'Whom': 3.2860984071459497e-06, 'Tolls': 1.6430492035729749e-06, 'Irving': 4.107623008932437e-06, 'Fain': 1.6430492035729749e-06, 'Beth': 4.929147610718925e-06, 'DeWitt': 1.6430492035729749e-06, 'Clemens': 2.4645738053594624e-06, 'Mathewson': 1.6430492035729749e-06, 'Miranda': 3.2860984071459497e-06, 'Knife': 3.2860984071459497e-06, 'Rozella': 1.6430492035729749e-06, 'Switzer': 1.6430492035729749e-06, 'Christians': 1.4787442832156774e-05, 'Jews': 4.518385309825681e-05, 'divine': 2.546726265538111e-05, 'Bless': 1.6430492035729749e-06, 'brotherhood': 4.929147610718925e-06, 'Pleasant': 3.2860984071459497e-06, 'Bulletin': 1.0679819823224336e-05, 'snowstorm': 3.2860984071459497e-06, 'Rescue': 1.6430492035729749e-06, 'desperation': 6.5721968142918994e-06, 'Words': 4.929147610718925e-06, 'undivided': 1.6430492035729749e-06, 'immensely': 8.215246017864873e-06, 'commend': 6.5721968142918994e-06, 'veterans': 9.85829522143785e-06, 'non-service-connected': 4.107623008932437e-06, 'disabilities': 2.4645738053594624e-06, 'Veterans': 4.929147610718925e-06, 'service-connected': 3.2860984071459497e-06, 'disabled': 9.036770619651361e-06, 'manifest': 8.215246017864873e-06, 'VA': 9.036770619651361e-06, 'non-service': 1.6430492035729749e-06, 'ensuing': 4.107623008932437e-06, 'drastically': 9.036770619651361e-06, 'curtail': 4.107623008932437e-06, 'coldly': 7.393721416078387e-06, 'impractical': 4.929147610718925e-06, 'out-of-step': 1.6430492035729749e-06, 'wishes': 2.0538115044662184e-05, "veteran's": 1.6430492035729749e-06, 'Secondly': 4.107623008932437e-06, 'observe': 2.1359639646448672e-05, 'hospitalization': 4.107623008932437e-06, "veterans'": 1.6430492035729749e-06, 'grinding': 7.393721416078387e-06, 'tear-soaked': 1.6430492035729749e-06, 'A.M.A.': 4.107623008932437e-06, 'abolition': 6.5721968142918994e-06, 'unsurpassed': 1.6430492035729749e-06, 'fosters': 3.2860984071459497e-06, 'Forand': 1.6430492035729749e-06, 'initiate': 4.929147610718925e-06, 'lousy': 9.85829522143785e-06, 'frustration': 9.85829522143785e-06, 'exasperation': 4.929147610718925e-06, 'exhaustion': 1.6430492035729749e-06, 'sympathetically': 4.929147610718925e-06, 'Trohan': 1.6430492035729749e-06, 'Barry': 3.2860984071459497e-06, 'vitriolic': 2.4645738053594624e-06, 'morale': 1.3965918230370285e-05, 'Evansville': 1.6430492035729749e-06, 'McNamara': 3.2860984071459497e-06, 'costing': 5.750672212505412e-06, 'Top': 4.929147610718925e-06, 'scientists': 2.546726265538111e-05, 'suffocating': 4.929147610718925e-06, 'persist': 5.750672212505412e-06, 'sheltered': 4.107623008932437e-06, 'unsheltered': 1.6430492035729749e-06, 'diameter': 3.779013168217842e-05, 'civilization': 3.1217934867886523e-05, 'Short': 5.750672212505412e-06, 'shorts': 2.464573805359462e-05, 'Upon': 1.7252016637516235e-05, 'uppermost': 3.2860984071459497e-06, 'bettering': 1.6430492035729749e-06, 'dressed': 3.0396410266100035e-05, 'Masaryk': 4.107623008932437e-06, 'Jan': 4.107623008932437e-06, 'misleading': 9.036770619651361e-06, 'destruction': 3.1217934867886523e-05, 'Subsidies': 1.6430492035729749e-06, 'Voice': 5.750672212505412e-06, 'Rising': 2.4645738053594624e-06, 'riders': 5.750672212505412e-06, 'subsidize': 4.107623008932437e-06, "husband's": 1.4787442832156774e-05, 'week-ends': 2.4645738053594624e-06, 'Sundays': 8.215246017864873e-06, 'packaging': 6.5721968142918994e-06, 'freezing': 1.3144393628583799e-05, 'outlying': 2.4645738053594624e-06, 'cutters': 5.750672212505412e-06, 'regimented': 1.6430492035729749e-06, 'packaged': 5.750672212505412e-06, 'freezers': 1.6430492035729749e-06, 'wives': 1.3965918230370285e-05, 'greedy': 4.929147610718925e-06, "cutters'": 1.6430492035729749e-06, 'fairest': 1.6430492035729749e-06, 'Holzman': 1.6430492035729749e-06, 'regret': 8.215246017864873e-06, 'Bertha': 4.929147610718925e-06, 'Madeira': 1.6430492035729749e-06, 'incorrect': 4.107623008932437e-06, 'clarified': 7.393721416078387e-06, 'instruct': 3.2860984071459497e-06, 'flag': 1.3965918230370285e-05, 'Judges': 2.4645738053594624e-06, 'polling': 3.2860984071459497e-06, 'proprietors': 4.929147610718925e-06, 'affix': 1.6430492035729749e-06, 'premises': 7.393721416078387e-06, 'advise': 7.393721416078387e-06, 'innuendo': 1.6430492035729749e-06, 'criticize': 4.107623008932437e-06, 'commendation': 1.6430492035729749e-06, 'archdiocese': 1.6430492035729749e-06, 'DePaul': 2.4645738053594624e-06, 'promoting': 1.1501344425010824e-05, 'welcomes': 1.6430492035729749e-06, 'Candlelight': 1.6430492035729749e-06, 'Liberace': 2.4645738053594624e-06, 'Please': 1.4787442832156774e-05, 'articles': 2.546726265538111e-05, 'Engineering': 6.5721968142918994e-06, '$550': 1.6430492035729749e-06, 'unskilled': 3.2860984071459497e-06, 'laborer': 5.750672212505412e-06, '$3.22': 1.6430492035729749e-06, '$580': 1.6430492035729749e-06, 'Ironic': 1.6430492035729749e-06, 'Dupont': 1.6430492035729749e-06, 'Editorial': 1.6430492035729749e-06, 'regarding': 3.286098407145949e-05, 'DuPont': 4.107623008932437e-06, 'inaccurate': 4.929147610718925e-06, 'unwarranted': 4.107623008932437e-06, 'divest': 1.6430492035729749e-06, 'Motors': 3.6147082478605446e-05, '1.1': 3.2860984071459497e-06, '192': 2.4645738053594624e-06, 'Ways': 2.4645738053594624e-06, 'Means': 1.6430492035729746e-05, 'Copies': 1.6430492035729749e-06, 'avaliable': 1.6430492035729749e-06, 'judgments': 2.218116424823516e-05, 'considerations': 2.6288787257167598e-05, 'proportion': 2.464573805359462e-05, 'omitting': 5.750672212505412e-06, 'distorted': 9.85829522143785e-06, 'inaccuracy': 2.4645738053594624e-06, 'Congresswoman': 2.4645738053594624e-06, 'concur': 4.107623008932437e-06, 'heartily': 8.215246017864873e-06, 'futility': 6.5721968142918994e-06, 'bless': 7.393721416078387e-06, 'disagree': 6.5721968142918994e-06, 'agrees': 9.85829522143785e-06, 'Harmful': 1.6430492035729749e-06, 'drinks': 1.889506584108921e-05, 'Downers': 1.6430492035729749e-06, '103': 1.6430492035729749e-06, 'guzzle': 1.6430492035729749e-06, 'Toward': 5.750672212505412e-06, 'socialism': 1.4787442832156774e-05, 'Overt': 1.6430492035729749e-06, 'covert': 2.4645738053594624e-06, 'regulations': 2.300268885002165e-05, 'leased': 2.4645738053594624e-06, 'Issuing': 1.6430492035729749e-06, 'regions': 2.9574885664313547e-05, 'well-being': 8.215246017864873e-06, 'reek': 2.4645738053594624e-06, 'affiliation': 4.107623008932437e-06, 'intelligence': 3.6968607080391934e-05, 'Plus-one': 1.6430492035729749e-06, 'loaders': 1.6430492035729749e-06, "home's": 1.6430492035729749e-06, 'plus-one': 2.4645738053594624e-06, 'stranger': 3.286098407145949e-05, 'inquire': 5.750672212505412e-06, 'outer': 2.300268885002165e-05, 'Supports': 1.6430492035729749e-06, 'Declaration': 1.3965918230370285e-05, 'Independence': 2.0538115044662184e-05, 'entity': 9.036770619651361e-06, 'God-given': 3.2860984071459497e-06, 'self-determination': 6.5721968142918994e-06, 'applies': 1.6430492035729746e-05, 'yoke': 3.2860984071459497e-06, 'Antoine': 1.6430492035729749e-06, 'Gizenga': 2.4645738053594624e-06, 'cohorts': 1.6430492035729749e-06, 'denounce': 4.929147610718925e-06, 'oppressors': 2.4645738053594624e-06, 'refuse': 1.3965918230370285e-05, 'Katangans': 2.4645738053594624e-06, 'Permit': 2.4645738053594624e-06, 'burdens': 6.5721968142918994e-06, 'startle': 1.6430492035729749e-06, 'consist': 1.4787442832156774e-05, 'freeholders': 3.2860984071459497e-06, 'certify': 4.929147610718925e-06, 'certified': 6.5721968142918994e-06, 'assessed': 8.215246017864873e-06, 'levied': 1.6430492035729749e-06, 'moneys': 2.4645738053594624e-06, 'appropriated': 9.85829522143785e-06, 'impose': 8.215246017864873e-06, 'Taxing': 1.6430492035729749e-06, 'Speedup': 1.6430492035729749e-06, 'slum': 7.393721416078387e-06, 'trades': 8.215246017864873e-06, 'terrific': 4.929147610718925e-06, 'uplift': 1.6430492035729749e-06, 'muggers': 1.6430492035729749e-06, 'comedian': 4.107623008932437e-06, 'taxicab': 1.6430492035729749e-06, 'Praises': 1.6430492035729749e-06, 'Changing': 4.107623008932437e-06, "architects'": 1.6430492035729749e-06, 'Newarker': 1.6430492035729749e-06, 'actively': 9.85829522143785e-06, 'hasten': 3.2860984071459497e-06, 'booths': 3.2860984071459497e-06, 'biscuit': 2.4645738053594624e-06, 'refreshing': 5.750672212505412e-06, 'Deep': 7.393721416078387e-06, 'Peep': 2.4645738053594624e-06, 'fossilized': 3.2860984071459497e-06, 'cypress': 4.929147610718925e-06, 'swamp': 4.929147610718925e-06, 'Twenty': 6.5721968142918994e-06, 'constructed': 3.1217934867886523e-05, 'coal-like': 1.6430492035729749e-06, 'cypress-like': 1.6430492035729749e-06, 'stumps': 4.929147610718925e-06, 'overlying': 1.6430492035729749e-06, 'sediments': 4.107623008932437e-06, 'entombed': 1.6430492035729749e-06, 'pollen': 9.85829522143785e-06, 'grains': 1.7252016637516235e-05, 'spores': 3.2860984071459497e-06, 'microfossils': 1.6430492035729749e-06, 'Lower': 4.929147610718925e-06, 'Cretaceous': 1.6430492035729749e-06, 'dinosaurs': 1.6430492035729749e-06, 'flowering': 5.750672212505412e-06, 'Mayflower': 4.107623008932437e-06, '17th': 9.036770619651361e-06, 'interglacial': 1.6430492035729749e-06, 'Working': 3.2860984071459497e-06, 'Legislation': 2.4645738053594624e-06, 'sincere': 1.232286902679731e-05, "Let's": 3.450403327503247e-05, 'mistrust': 4.107623008932437e-06, 'disapproved': 4.107623008932437e-06, 'empty': 5.3399099116121684e-05, 'boat': 5.750672212505412e-05, 'shipwreck': 2.4645738053594624e-06, 'desolation': 4.107623008932437e-06, 'post-attack': 4.929147610718925e-06, 'awful': 1.4787442832156774e-05, 'Lastly': 2.4645738053594624e-06, 'Civilian': 1.6430492035729749e-06, '920': 1.6430492035729749e-06, 'Civilian-groups': 1.6430492035729749e-06, 'manmade': 2.4645738053594624e-06, 'preparedness': 2.4645738053594624e-06, 'Pets': 1.6430492035729749e-06, 'burglars': 2.4645738053594624e-06, "someone's": 4.107623008932437e-06, 'hardy': 5.750672212505412e-06, 'afforded': 9.85829522143785e-06, 'leash': 3.2860984071459497e-06, 'roaming': 3.2860984071459497e-06, 'snatch': 4.107623008932437e-06, 'molest': 1.6430492035729749e-06, 'landlords': 2.4645738053594624e-06, 'liberalizing': 1.6430492035729749e-06, 'prohibiting': 4.107623008932437e-06, 'Sidewalk': 1.6430492035729749e-06, 'cafes': 4.929147610718925e-06, 'terraces': 6.5721968142918994e-06, 'sidewalk': 1.7252016637516235e-05, 'cafe': 1.3144393628583799e-05, 'sacred': 2.875336106252706e-05, "tourists'": 1.6430492035729749e-06, 'Memorials': 1.6430492035729749e-06, 'contemplate': 6.5721968142918994e-06, 'fountains': 4.107623008932437e-06, 'gardens': 1.6430492035729746e-05, 'outdoor': 1.97165904428757e-05, 'relax': 1.5608967433943262e-05, 'converse': 4.929147610718925e-06, 'leisure': 9.85829522143785e-06, 'Dissenting': 1.6430492035729749e-06, 'Proxmire': 1.6430492035729749e-06, 'allege': 1.6430492035729749e-06, 'Thirties': 3.2860984071459497e-06, 'resurgence': 3.2860984071459497e-06, 'militarism': 3.2860984071459497e-06, 'murderous': 4.107623008932437e-06, 'nullity': 1.6430492035729749e-06, 'Recent': 1.0679819823224336e-05, 'well-known': 1.4787442832156774e-05, 'destructive': 2.1359639646448672e-05, 'deadly': 1.5608967433943262e-05, 'fall-outs': 1.6430492035729749e-06, 'seven-week': 1.6430492035729749e-06, 'ducks': 4.107623008932437e-06, 'folly': 5.750672212505412e-06, 'recognition': 3.6147082478605446e-05, 'lands': 1.97165904428757e-05, 'devastated': 3.2860984071459497e-06, 'Probable': 1.6430492035729749e-06, 'stalking': 2.4645738053594624e-06, 'united': 1.6430492035729746e-05, 'disarmed': 3.2860984071459497e-06, 'advantageous': 4.929147610718925e-06, 'lessen': 4.929147610718925e-06, 'likewise': 1.1501344425010824e-05, 'rearmed': 1.6430492035729749e-06, 'Austria': 4.107623008932437e-06, 'Survival': 2.4645738053594624e-06, 'neutrality': 3.2860984071459497e-06, 'immunity': 6.5721968142918994e-06, 'terrorized': 3.2860984071459497e-06, 'Smoldering': 1.6430492035729749e-06, 'refusing': 9.036770619651361e-06, 'prescribed': 1.232286902679731e-05, 'expulsion': 4.107623008932437e-06, 'Article': 1.889506584108921e-05, 'apportioned': 7.393721416078387e-06, 'Member': 4.107623008932437e-06, 'equals': 7.393721416078387e-06, 'exceeds': 9.036770619651361e-06, 'Emergency': 5.750672212505412e-06, 'buffer': 1.3965918230370285e-05, 'Israel': 1.3144393628583799e-05, 'nonpayment': 1.6430492035729749e-06, 'expelled': 4.929147610718925e-06, 'Connally': 7.393721416078387e-06, "amendment's": 1.6430492035729749e-06, 'Session': 1.6430492035729749e-06, 'Eighty-seventh': 2.4645738053594624e-06, 'consciousness': 2.464573805359462e-05, 'undone': 4.107623008932437e-06, 'reservation': 6.5721968142918994e-06, 'Adherence': 1.6430492035729749e-06, 'Statute': 1.6430492035729749e-06, 'prevents': 8.215246017864873e-06, 'solidly': 9.036770619651361e-06, 'perilous': 7.393721416078387e-06, 'affirmative': 4.107623008932437e-06, 'expose': 7.393721416078387e-06, 'self-judging': 1.6430492035729749e-06, 'enable': 1.97165904428757e-05, 'utilize': 9.036770619651361e-06, 'subway': 6.5721968142918994e-06, 'home-bound': 1.6430492035729749e-06, 'Flushing-Main': 1.6430492035729749e-06, 'departing': 9.036770619651361e-06, 'Woodside': 3.2860984071459497e-06, 'strained': 9.85829522143785e-06, 'tens': 1.6430492035729749e-06, 'Seventy-fourth': 1.6430492035729749e-06, 'IND': 1.6430492035729749e-06, 'Transit': 2.4645738053594624e-06, 'BMT': 1.6430492035729749e-06, 'Thirty-ninth': 1.6430492035729749e-06, 'Fifty-ninth': 1.6430492035729749e-06, 'saver': 1.6430492035729749e-06, 'Phone': 2.4645738053594624e-06, 'automate': 1.6430492035729749e-06, 'dialing': 1.6430492035729749e-06, 'servicing': 4.107623008932437e-06, 'person-to-person': 1.6430492035729749e-06, 'long-distance': 2.4645738053594624e-06, 'Government-blessed': 1.6430492035729749e-06, 'Fair-priced': 1.6430492035729749e-06, 'government-controlled': 1.6430492035729749e-06, 'Pilgrim': 1.6430492035729749e-06, 'Hazel': 1.6430492035729749e-06, 'donates': 1.6430492035729749e-06, 'donate': 3.2860984071459497e-06, 'arithmetic': 4.929147610718925e-06, 'crafts': 3.2860984071459497e-06, 'brass': 1.5608967433943262e-05, '12-passenger': 1.6430492035729749e-06, 'Southfield': 1.6430492035729749e-06, '45-passenger': 1.6430492035729749e-06, 'heater': 1.232286902679731e-05, '9-1/2': 1.6430492035729749e-06, 'Woodward': 3.2860984071459497e-06, 'Visitors': 2.4645738053594624e-06, 'Jobs': 2.4645738053594624e-06, 'Cavanagh': 2.4645738053594624e-06, "Miriani's": 1.6430492035729749e-06, 'Mayor-elect': 1.6430492035729749e-06, 'DPW': 1.6430492035729749e-06, 'Negligence': 2.4645738053594624e-06, 'alley': 6.5721968142918994e-06, 'patrolling': 3.2860984071459497e-06, 'litterbug': 1.6430492035729749e-06, 'ordinances': 3.2860984071459497e-06, 'littering': 1.6430492035729749e-06, 'Drunken': 1.6430492035729749e-06, 'weeded': 1.6430492035729749e-06, 'Educate': 1.6430492035729749e-06, 'Trumbull': 1.6430492035729749e-06, 'versus': 8.215246017864873e-06, 'hymns': 5.750672212505412e-06, 'inspiration': 8.215246017864873e-06, 'Prayer': 4.107623008932437e-06, 'Minutes': 3.2860984071459497e-06, 'complimented': 2.4645738053594624e-06, 'arranging': 1.3144393628583799e-05, 'wholesome': 9.036770619651361e-06, 'Rude': 1.6430492035729749e-06, 'Thank': 1.3144393628583799e-05, 'Sokolsky': 2.4645738053594624e-06, 'apathy': 3.2860984071459497e-06, 'impudence': 1.6430492035729749e-06, 'polite': 6.5721968142918994e-06, 'gentility': 3.2860984071459497e-06, 'hard-sell': 1.6430492035729749e-06, 'Dunes': 1.6430492035729749e-06, 'Hart': 1.1501344425010824e-05, 'brave': 1.7252016637516235e-05, 'Ghost': 2.4645738053594624e-06, 'Inquirer': 1.1501344425010824e-05, 'Inspector': 7.393721416078387e-06, 'Trimmer': 2.4645738053594624e-06, 'horrible': 1.3144393628583799e-05, 'automobiles': 2.0538115044662184e-05, 'ghost': 8.215246017864873e-06, 'Schuylkill': 6.5721968142918994e-06, 'Hough': 5.750672212505412e-06, 'waits': 2.4645738053594624e-06, 'hogging': 1.6430492035729749e-06, 'simpleton': 1.6430492035729749e-06, 'simplicitude': 1.6430492035729749e-06, 'dropouts': 3.2860984071459497e-06, 'wrongs': 5.750672212505412e-06, 'suppose': 5.750672212505412e-05, 'referring': 1.3965918230370285e-05, 'harmful': 3.2860984071459497e-06, 'arsenal': 3.2860984071459497e-06, 'inflict': 4.107623008932437e-06, 'demage': 1.6430492035729749e-06, 'tremble': 9.036770619651361e-06, 'Everyone': 1.8073541239302723e-05, "Luther's": 2.4645738053594624e-06, 'Hymn': 2.4645738053594624e-06, 'Mighty': 2.4645738053594624e-06, 'Fortress': 1.6430492035729749e-06, 'Especially': 5.750672212505412e-06, 'verse': 2.3824213451808133e-05, 'everlasting': 7.393721416078387e-06, 'sixteen': 1.5608967433943262e-05, 'Hiroshima': 9.85829522143785e-06, 'Nagasaki': 2.4645738053594624e-06, 'Jagan': 2.4645738053594624e-06, 'Cheddi': 1.6430492035729749e-06, 'Guiana': 2.4645738053594624e-06, 'home-grown': 2.4645738053594624e-06, 'gooey': 1.6430492035729749e-06, 'proves': 1.3144393628583799e-05, 'rocks': 1.97165904428757e-05, 'remind': 1.3144393628583799e-05, 'Intelligent': 1.6430492035729749e-06, 'exploding': 6.5721968142918994e-06, 'Belated': 1.6430492035729749e-06, 'posthumous': 2.4645738053594624e-06, 'expression': 6.572196814291899e-05, 'thankless': 1.6430492035729749e-06, 'dictates': 8.215246017864873e-06, 'intimidated': 3.2860984071459497e-06, 'coffin': 5.750672212505412e-06, 'atone': 1.6430492035729749e-06, 'withheld': 7.393721416078387e-06, 'greatness': 9.036770619651361e-06, 'tardy': 1.6430492035729749e-06, 'Pakistani': 1.6430492035729749e-06, 'camel': 1.6430492035729749e-06, 'Bashir': 1.6430492035729749e-06, 'Ahmad': 1.6430492035729749e-06, 'insignificances': 1.6430492035729749e-06, 'P.S.': 1.6430492035729749e-06, "Ahmad's": 2.4645738053594624e-06, 'expressway': 2.4645738053594624e-06, 'destination': 8.215246017864873e-06, 'tunnels': 3.2860984071459497e-06, 'ferries': 1.6430492035729749e-06, 'crossings': 1.6430492035729749e-06, 'focal': 7.393721416078387e-06, 'Widen': 1.6430492035729749e-06, 'widen': 4.107623008932437e-06, 'minimize': 1.3965918230370285e-05, 'curves': 1.6430492035729746e-05, 'drainage': 1.1501344425010824e-05, 'Paint': 2.4645738053594624e-06, 'install': 6.5721968142918994e-06, 'directional': 7.393721416078387e-06, 'capability': 1.232286902679731e-05, 'statue': 1.3965918230370285e-05, 'Replace': 1.6430492035729749e-06, 'dictators': 4.107623008932437e-06, 'reminded': 2.464573805359462e-05, 'Fairmount': 2.4645738053594624e-06, 'Totalitarianism': 1.6430492035729749e-06, 'Feeding': 1.6430492035729749e-06, 'Prohibited': 1.6430492035729749e-06, 'tentacle': 1.6430492035729749e-06, 'octopus': 1.6430492035729749e-06, 'lash': 5.750672212505412e-06, 'dislikes': 4.107623008932437e-06, 'annoyance': 8.215246017864873e-06, 'sentiments': 6.5721968142918994e-06, 'hatred': 1.6430492035729746e-05, 'Starlings': 1.6430492035729749e-06, 'blackbirds': 1.6430492035729749e-06, 'scared': 1.6430492035729746e-05, 'canon': 4.107623008932437e-06, 'feeding': 2.1359639646448672e-05, 'to-the-death': 1.6430492035729749e-06, 'stamp': 7.393721416078387e-06, 'gangs': 5.750672212505412e-06, 'delinquents': 3.2860984071459497e-06, 'thugs': 2.4645738053594624e-06, 'rapists': 2.4645738053594624e-06, 'subversives': 1.6430492035729749e-06, 'Doe': 1.6430492035729749e-06, 'undetected': 1.6430492035729749e-06, 'creatures': 1.7252016637516235e-05, 'motive': 1.6430492035729746e-05, 'inflicting': 3.2860984071459497e-06, 'torture': 3.2860984071459497e-06, 'occurs': 2.300268885002165e-05, 'chimes': 1.6430492035729749e-06, 'discontinue': 1.6430492035729749e-06, 'melody': 1.7252016637516235e-05, 'joy': 3.368250867324598e-05, 'hymn': 6.5721968142918994e-06, 'Abide': 1.6430492035729749e-06, 'push-ups': 2.4645738053594624e-06, 'stand-ups': 1.6430492035729749e-06, 'bemoan': 1.6430492035729749e-06, 'softness': 4.107623008932437e-06, 'calisthenics': 4.107623008932437e-06, 'anatomy': 8.215246017864873e-06, 'Ashamed': 1.6430492035729749e-06, 'addicted': 3.2860984071459497e-06, 'soft-heartedness': 1.6430492035729749e-06, 'soft-headed': 1.6430492035729749e-06, 'ideals': 1.3965918230370285e-05, 'Nation': 1.8073541239302723e-05, 'push-up': 4.107623008932437e-06, 'Disputes': 1.6430492035729749e-06, 'Stans': 2.4645738053594624e-06, 'scandal': 5.750672212505412e-06, 'fairness': 5.750672212505412e-06, 'premise': 6.5721968142918994e-06, 'sweetheart': 8.215246017864873e-06, 'corrupting': 3.2860984071459497e-06, 'unscrupulous': 4.929147610718925e-06, 'augmented': 8.215246017864873e-06, 'corruptible': 4.929147610718925e-06, 'Escalation': 2.4645738053594624e-06, 'targets': 1.889506584108921e-05, 'moreover': 1.8073541239302723e-05, 'predictions': 3.2860984071459497e-06, 'soothsayers': 2.4645738053594624e-06, 'escalation': 4.929147610718925e-06, 'exploded': 7.393721416078387e-06, 'megatons': 9.036770619651361e-06, 'B-52s': 1.6430492035729749e-06, '20-megaton': 1.6430492035729749e-06, 'apiece': 2.4645738053594624e-06, '30-': 2.4645738053594624e-06, '50-megaton': 4.107623008932437e-06, 'hue': 1.6430492035729749e-06, 'counter-escalation': 1.6430492035729749e-06, 'threatens': 4.929147610718925e-06, '100-megaton': 1.6430492035729749e-06, 'embark': 4.929147610718925e-06, '200-megaton': 1.6430492035729749e-06, 'hydrogen': 3.203945946967301e-05, 'neutron': 1.6430492035729749e-06, 'infinitum': 2.4645738053594624e-06, 'accurately': 2.0538115044662184e-05, 'contestants': 4.929147610718925e-06, 'proving': 4.929147610718925e-06, 'Morrison': 4.107623008932437e-06, 'Sun': 9.036770619651361e-06, 'discontinuity': 4.107623008932437e-06, 'Professor': 2.546726265538111e-05, 'urbanized': 4.107623008932437e-06, 'vulnerable': 1.232286902679731e-05, 'risky': 3.2860984071459497e-06, 'Rockefeller': 1.0679819823224336e-05, 'Strauss': 3.2860984071459497e-06, 'McCone': 1.6430492035729749e-06, 'Atomic': 7.393721416078387e-06, 'Energy': 4.107623008932437e-06, 'exacerbation': 3.2860984071459497e-06, 'faithful': 9.85829522143785e-06, 'Capable': 2.4645738053594624e-06, 'thrust': 1.889506584108921e-05, 'lob': 1.6430492035729749e-06, 'intercontinental': 4.929147610718925e-06, 'inspire': 3.2860984071459497e-06, 'miscarried': 1.6430492035729749e-06, 'anger': 3.861165628396491e-05, 'sphere': 1.889506584108921e-05, 'animosity': 3.2860984071459497e-06, 'compulsively': 3.2860984071459497e-06, 'footsteps': 7.393721416078387e-06, 'strives': 3.2860984071459497e-06, 'emulate': 3.2860984071459497e-06, 'sputnik': 1.6430492035729749e-06, 'chagrin': 4.107623008932437e-06, 'satellites': 5.750672212505412e-06, 'orbit': 1.3965918230370285e-05, 'perfectly': 2.6288787257167598e-05, 'imitate': 4.929147610718925e-06, 'statesmanlike': 1.6430492035729749e-06, 'paeans': 1.6430492035729749e-06, 'publicists': 1.6430492035729749e-06, 'vocal': 1.1501344425010824e-05, 'Berliners': 1.6430492035729749e-06, 'migrating': 1.6430492035729749e-06, 'unfavorable': 4.929147610718925e-06, '2,200,000': 1.6430492035729749e-06, 'sixty-five': 6.5721968142918994e-06, '12.8': 1.6430492035729749e-06, 'Crossman': 2.4645738053594624e-06, 'M.P.': 2.4645738053594624e-06, 'Manchester': 3.6968607080391934e-05, 'Guardian': 5.750672212505412e-06, 'departures': 6.5721968142918994e-06, '1,900': 1.6430492035729749e-06, 'Whole': 3.2860984071459497e-06, 'partly': 3.861165628396491e-05, 'counterbalanced': 1.6430492035729749e-06, 'arrivals': 3.2860984071459497e-06, 'distinct': 3.532555787681896e-05, 'gallant': 4.107623008932437e-06, 'half-city': 1.6430492035729749e-06, 'Observer': 3.2860984071459497e-06, 'Arnold-Foster': 1.6430492035729749e-06, "Employers'": 1.6430492035729749e-06, 'front-line': 2.4645738053594624e-06, 'resilience': 1.6430492035729749e-06, 'reunite': 1.6430492035729749e-06, 'boundary': 1.1501344425010824e-05, 'blocks': 3.1217934867886523e-05, 'avail': 4.107623008932437e-06, 'Tanks': 1.6430492035729749e-06, 'Lippmann': 3.2860984071459497e-06, 'sober': 1.3965918230370285e-05, 'commentators': 2.4645738053594624e-06, 'p.': 1.3144393628583799e-05, '367': 1.6430492035729749e-06, 'graveyard': 6.5721968142918994e-06, 'intransigence': 2.4645738053594624e-06, "Stalin's": 4.929147610718925e-06, 'mausoleum': 2.4645738053594624e-06, 'Lenin': 5.750672212505412e-06, 'mild': 1.232286902679731e-05, 'chastisement': 2.4645738053594624e-06, 'Haestier': 1.6430492035729749e-06, 'Dead': 7.393721416078387e-06, 'Men': 2.300268885002165e-05, 'Tales': 2.4645738053594624e-06, 'Revolution': 2.300268885002165e-05, 'Restoration': 3.2860984071459497e-06, 'Cromwell': 1.8073541239302723e-05, 'disinterred': 1.6430492035729749e-06, 'hanged': 6.5721968142918994e-06, 'Tyburn': 1.6430492035729749e-06, 'gallows': 2.4645738053594624e-06, 'punishments': 2.4645738053594624e-06, 'Stalin': 1.3144393628583799e-05, 'Whitehall': 1.6430492035729749e-06, 'crowded': 2.7110311858954083e-05, 'deplores': 3.2860984071459497e-06, 'Karl': 6.5721968142918994e-06, 'Marx': 7.393721416078387e-06, 'Macmillan': 1.6430492035729749e-06, 'seventy-eight': 1.6430492035729749e-06, 'morticians': 1.6430492035729749e-06, 'presentable': 2.4645738053594624e-06, 'musing': 1.6430492035729749e-06, 'instability': 4.107623008932437e-06, 'exhumations': 1.6430492035729749e-06, 'rehabilitations': 1.6430492035729749e-06, 'Suppose': 2.3824213451808133e-05, 'rake': 9.036770619651361e-06, 'misdeeds': 4.929147610718925e-06, 'predecessor': 4.929147610718925e-06, 'applauding': 2.4645738053594624e-06, 'dispossession': 1.6430492035729749e-06, 'U': 9.85829522143785e-06, 'Thant': 4.929147610718925e-06, 'Burma': 1.4787442832156774e-05, 'influential': 1.1501344425010824e-05, 'Mongi': 1.6430492035729749e-06, 'Boland': 1.6430492035729749e-06, 'waylaid': 1.6430492035729749e-06, 'in-fighting': 1.6430492035729749e-06, "secretaries'": 1.6430492035729749e-06, 'gentleman': 2.1359639646448672e-05, 'qualification': 7.393721416078387e-06, 'augurs': 1.6430492035729749e-06, 'Buddhist': 4.107623008932437e-06, 'sanctity': 3.2860984071459497e-06, 'dogma': 4.107623008932437e-06, 'unshakable': 1.6430492035729749e-06, 'Weltanschauung': 1.6430492035729749e-06, 'compromises': 1.6430492035729749e-06, 'troika': 1.6430492035729749e-06, 'dormant': 4.929147610718925e-06, 'neutralism': 4.929147610718925e-06, 'precedents': 3.2860984071459497e-06, 'structurally': 2.4645738053594624e-06, 'pessimists': 1.6430492035729749e-06, 'plunged': 1.3144393628583799e-05, 'hills': 3.1217934867886523e-05, 'sole': 1.4787442832156774e-05, 'staple': 1.6430492035729749e-06, 'mentalities': 1.6430492035729749e-06, 'crave': 2.4645738053594624e-06, 'Salsich': 1.6430492035729749e-06, 'Engh': 1.6430492035729749e-06, '372': 1.6430492035729749e-06, 'connotations': 3.2860984071459497e-06, 'vague': 2.0538115044662184e-05, 'vigilantism': 1.6430492035729749e-06, 'Chevrolet': 4.107623008932437e-06, 'paramilitary': 1.6430492035729749e-06, 'Telephone': 9.036770619651361e-06, 'Foley': 1.6430492035729749e-06, 'invaders': 4.929147610718925e-06, 'commando-trained': 1.6430492035729749e-06, 'Heavily': 1.6430492035729749e-06, 'mobilized': 4.107623008932437e-06, 'fast-moving': 1.6430492035729749e-06, "minute's": 1.6430492035729749e-06, 'Snook': 1.6430492035729749e-06, 'commando': 2.4645738053594624e-06, 'fetching': 3.2860984071459497e-06, 'launcher': 1.6430492035729749e-06, 'dump': 4.107623008932437e-06, 'carbines': 2.4645738053594624e-06, 'pistols': 4.107623008932437e-06, 'bouffe': 1.6430492035729749e-06, 'mount': 9.036770619651361e-06, 'frenzy': 5.750672212505412e-06, 'committed': 2.3824213451808133e-05, 'doctrine': 3.203945946967301e-05, 'imagined': 2.300268885002165e-05, 'naive': 1.5608967433943262e-05, 'traitors': 4.107623008932437e-06, 'gods': 1.0679819823224336e-05, 'resemble': 7.393721416078387e-06, 'Moloch': 3.2860984071459497e-06, 'idol-worship': 1.6430492035729749e-06, 'accompaniment': 7.393721416078387e-06, 'heathenish': 1.6430492035729749e-06, 'cult': 9.85829522143785e-06, 'motor-car': 1.6430492035729749e-06, 'exceeding': 5.750672212505412e-06, 'butchery': 4.929147610718925e-06, '40,000': 8.215246017864873e-06, 'satiate': 1.6430492035729749e-06, 'blood-lust': 1.6430492035729749e-06, 'accorded': 4.107623008932437e-06, 'slaughtered': 3.2860984071459497e-06, 'holocaust': 4.929147610718925e-06, 'civilized': 9.85829522143785e-06, 'usage': 1.232286902679731e-05, 'fanatical': 2.4645738053594624e-06, 'Swift': 1.7252016637516235e-05, 'fatality': 1.6430492035729749e-06, 'publicizing': 2.4645738053594624e-06, 'media': 1.1501344425010824e-05, 'bigotry': 2.4645738053594624e-06, 'vengeance': 9.036770619651361e-06, 'meat-wagon': 1.6430492035729749e-06, 'twenty-five': 1.97165904428757e-05, 'thousandth': 3.2860984071459497e-06, 'corpse': 6.5721968142918994e-06, 'execution': 1.1501344425010824e-05, 'Centralia': 1.6430492035729749e-06, 'census': 7.393721416078387e-06, 'grandstand': 1.6430492035729749e-06, 'awnings': 2.4645738053594624e-06, 'midsummer': 3.2860984071459497e-06, 'ambassadors': 5.750672212505412e-06, "Rogues'": 1.6430492035729749e-06, 'processional': 1.6430492035729749e-06, 'Land': 1.6430492035729746e-05, 'trap': 1.6430492035729746e-05, 'symbolical': 1.6430492035729749e-06, 'reminder': 7.393721416078387e-06, 'inalienable': 2.4645738053594624e-06, 'grinds': 1.6430492035729749e-06, 'Hanging': 3.2860984071459497e-06, 'salubrious': 2.4645738053594624e-06, 'ancillary': 2.4645738053594624e-06, 'proceeding': 8.215246017864873e-06, 'hither': 2.4645738053594624e-06, 'yon': 1.6430492035729749e-06, 'cardinal': 7.393721416078387e-06, 'stasis': 3.2860984071459497e-06, 'True': 1.232286902679731e-05, 'adherents': 4.929147610718925e-06, 'miniscule': 1.6430492035729749e-06, 'sect': 2.4645738053594624e-06, 'credo': 6.5721968142918994e-06, 'Home-keeping': 1.6430492035729749e-06, 'happiest': 3.2860984071459497e-06, 'disreputable': 1.6430492035729749e-06, 'Socinianism': 1.6430492035729749e-06, 'Nonetheless': 3.2860984071459497e-06, 'stubborn': 1.0679819823224336e-05, 'tenacious': 1.6430492035729749e-06, 'Hardshell': 1.6430492035729749e-06, 'Baptists': 4.107623008932437e-06, 'embodied': 6.5721968142918994e-06, 'wont': 2.4645738053594624e-06, 'ornament': 3.2860984071459497e-06, 'Tarheelia': 1.6430492035729749e-06, "Ruark's": 1.6430492035729749e-06, 'persuaded': 1.8073541239302723e-05, 'curse': 9.85829522143785e-06, "gallivantin'": 1.6430492035729749e-06, 'hecatomb': 1.6430492035729749e-06, 'ardent': 9.036770619651361e-06, 'Somehow': 1.3144393628583799e-05, 'induced': 1.1501344425010824e-05, 'sanity': 3.2860984071459497e-06, 'recourse': 5.750672212505412e-06, 'custom': 9.85829522143785e-06, 'whenever': 2.546726265538111e-05, 'annum': 3.2860984071459497e-06, 'clouds': 2.875336106252706e-05, 'invisibly': 2.4645738053594624e-06, 'UK': 1.6430492035729749e-06, 'blasts': 4.107623008932437e-06, 'descends': 2.4645738053594624e-06, 'radioactivity': 3.2860984071459497e-06, 'dose': 9.85829522143785e-06, 'virus': 1.0679819823224336e-05, 'discomfort': 6.5721968142918994e-06, 'inveigh': 1.6430492035729749e-06, 'poisoning': 3.2860984071459497e-06, 'pose': 9.85829522143785e-06, 'cynical': 7.393721416078387e-06, 'irresponsible': 8.215246017864873e-06, 'Shock': 1.6430492035729749e-06, 'dismay': 4.929147610718925e-06, 'foreboding': 4.107623008932437e-06, 'holier-than-thou': 2.4645738053594624e-06, 'sermon': 9.036770619651361e-06, 'detonated': 3.2860984071459497e-06, 'devices': 3.1217934867886523e-05, 'above-ground': 1.6430492035729749e-06, 'Glenn': 5.750672212505412e-06, 'Seaborg': 1.6430492035729749e-06, 'abstain': 1.6430492035729749e-06, 'balloons': 3.2860984071459497e-06, 'imperative': 9.036770619651361e-06, 'biological': 1.3144393628583799e-05, 'genetic': 4.929147610718925e-06, "science's": 1.6430492035729749e-06, 'worst-marked': 1.6430492035729749e-06, 'tricky': 1.6430492035729749e-06, 'depths': 1.6430492035729746e-05, 'intake': 6.5721968142918994e-06, 'substances': 1.4787442832156774e-05, 'PHS': 2.4645738053594624e-06, 'particles': 3.532555787681896e-05, 'hedged': 1.6430492035729749e-06, 'bets': 3.2860984071459497e-06, 'conclude': 1.3965918230370285e-05, 'indeterminate': 3.2860984071459497e-06, 'Linus': 1.6430492035729749e-06, 'Pauling': 6.5721968142918994e-06, 'Magazine': 6.5721968142918994e-06, 'biologic': 1.6430492035729749e-06, 'germ': 3.2860984071459497e-06, 'plasm': 1.6430492035729749e-06, 'defects': 1.1501344425010824e-05, 'Long-lived': 1.6430492035729749e-06, 'carbon-14': 1.6430492035729749e-06, 'fusion': 1.1501344425010824e-05, 'embryonic': 2.4645738053594624e-06, 'neonatal': 1.6430492035729749e-06, 'childhood': 4.107623008932437e-05, 'stillbirths': 1.6430492035729749e-06, '200,000': 4.107623008932437e-06, 'radiation-produced': 1.6430492035729749e-06, 'diseases': 1.3965918230370285e-05, 'leukemia': 2.4645738053594624e-06, 'concentrating': 6.5721968142918994e-06, "Pauling's": 1.6430492035729749e-06, 'insufficient': 6.5721968142918994e-06, 'agreed-on': 1.6430492035729749e-06, 'generalizations': 6.5721968142918994e-06, 'researcher': 3.2860984071459497e-06, 'inhibited': 4.929147610718925e-06, 'excusable': 1.6430492035729749e-06, 'downgraded': 3.2860984071459497e-06, "McCone's": 1.6430492035729749e-06, 'Lauritsen': 1.6430492035729749e-06, 'shies': 1.6430492035729749e-06, 'exposure': 1.97165904428757e-05, "AEC's": 1.6430492035729749e-06, 'doses': 1.1501344425010824e-05, 'herein': 3.2860984071459497e-06, 'AEC': 2.4645738053594624e-06, 'bind': 4.107623008932437e-06, 'resuming': 3.2860984071459497e-06, 'atmospheric': 8.215246017864873e-06, "Commission's": 1.6430492035729749e-06, 'fission': 4.929147610718925e-06, 'nastier': 1.6430492035729749e-06, 'mid': 3.2860984071459497e-06, 'prevailing': 1.4787442832156774e-05, 'bureaucrat': 1.6430492035729749e-06, 'halcyon': 1.6430492035729749e-06, 'haul': 4.929147610718925e-06, 'broom': 2.4645738053594624e-06, 'sidewalks': 4.929147610718925e-06, 'indignant': 9.036770619651361e-06, 'footwork': 1.6430492035729749e-06, 'computation': 4.929147610718925e-06, 'three-power': 1.6430492035729749e-06, 'moratorium': 1.6430492035729749e-06, 'Resuming': 1.6430492035729749e-06, 'inescapable': 7.393721416078387e-06, 'Cold': 9.036770619651361e-06, 'historically': 9.85829522143785e-06, 'dilemmas': 2.4645738053594624e-06, "'50's": 1.6430492035729749e-06, 'unilaterally': 1.6430492035729749e-06, 'viable': 4.929147610718925e-06, 'unpopular': 5.750672212505412e-06, 'domestically': 1.6430492035729749e-06, 'contaminated': 3.2860984071459497e-06, 'presupposes': 2.4645738053594624e-06, 'demonstrates': 5.750672212505412e-06, 'wishful': 8.215246017864873e-06, 'sane': 4.929147610718925e-06, 'contamination': 4.107623008932437e-06, 'Leaving': 7.393721416078387e-06, 'cessation': 1.6430492035729749e-06, 'cogently': 1.6430492035729749e-06, 'sufficiency': 1.6430492035729749e-06, 'confidently': 2.4645738053594624e-06, 'leap': 1.232286902679731e-05, 'militarily': 3.2860984071459497e-06, 'unwittingly': 4.929147610718925e-06, 'brutalized': 1.6430492035729749e-06, 'superiority': 1.232286902679731e-05, 'quantity': 2.793183646074057e-05, 'Unless': 1.1501344425010824e-05, 'deceiving': 1.6430492035729749e-06, 'justifiable': 4.107623008932437e-06, 'radically': 1.1501344425010824e-05, 'evaded': 2.4645738053594624e-06, 'glossed': 1.6430492035729749e-06, 'refusal': 1.3144393628583799e-05, 'Ecumenical': 2.4645738053594624e-06, 'Holiness': 2.4645738053594624e-06, 'Pope': 2.9574885664313547e-05, 'yearning': 6.5721968142918994e-06, 'Protestant': 4.2719279292897344e-05, 'ecumenicists': 1.6430492035729749e-06, 'Christendom': 3.2860984071459497e-06, 'perspective': 2.218116424823516e-05, 'purification': 3.2860984071459497e-06, 'ecumenical': 2.300268885002165e-05, 'Pontiff': 1.6430492035729749e-06, 'revivified': 1.6430492035729749e-06, 'Catholicism': 7.393721416078387e-06, 'Equally': 3.2860984071459497e-06, 'Unity': 4.929147610718925e-06, 'designation': 4.107623008932437e-06, 'theologians': 8.215246017864873e-06, 'reverses': 2.4645738053594624e-06, "Church's": 5.750672212505412e-06, 'Vatican': 4.107623008932437e-06, 'Cicognani': 1.6430492035729749e-06, 'Archbishop': 5.750672212505412e-06, 'Canterbury': 4.107623008932437e-06, 'Augustin': 1.6430492035729749e-06, 'Secretariate': 1.6430492035729749e-06, 'pervades': 2.4645738053594624e-06, 'Orthodox': 7.393721416078387e-06, 'discouragement': 3.2860984071459497e-06, 'temptation': 1.0679819823224336e-05, 'abandon': 1.3965918230370285e-05, 'omnipotence': 1.6430492035729749e-06, 'irresistible': 7.393721416078387e-06, 'efficacy': 8.215246017864873e-06, 'Divine': 4.107623008932437e-06, '6.9': 2.4645738053594624e-06, 'apologetic': 3.2860984071459497e-06, 'unbalanced': 3.2860984071459497e-06, 'sympathize': 6.5721968142918994e-06, 'Furthermore': 3.0396410266100035e-05, 'reassuring': 6.5721968142918994e-06, 'booby-trap': 1.6430492035729749e-06, 'extravagant': 4.929147610718925e-06, 'projections': 9.036770619651361e-06, 'expenditure': 9.036770619651361e-06, 'penny-wise': 2.4645738053594624e-06, 'Eisenhhower': 1.6430492035729749e-06, 'similarly': 1.7252016637516235e-05, 'neglected': 1.4787442832156774e-05, 'Anti-recession': 1.6430492035729749e-06, 'persists': 6.5721968142918994e-06, 'mollify': 2.4645738053594624e-06, 'intransigents': 1.6430492035729749e-06, 'apologies': 3.2860984071459497e-06, 'tightening': 4.107623008932437e-06, 'economizing': 2.4645738053594624e-06, 'battle-cry': 1.6430492035729749e-06, 'Ethics': 5.750672212505412e-06, 'dialogue': 1.0679819823224336e-05, 'thirty-fourth': 1.6430492035729749e-06, 'Protestants': 1.232286902679731e-05, 'discussant': 1.6430492035729749e-06, 'Sessions': 1.6430492035729749e-06, 'Policy': 1.6430492035729749e-06, 'Trends': 1.6430492035729749e-06, 'Moral': 3.2860984071459497e-06, 'Principle': 2.4645738053594624e-06, 'Judgment': 1.6430492035729749e-06, 'non-Catholic': 5.750672212505412e-06, 'plentiful': 6.5721968142918994e-06, "O'Brien": 2.4645738053594624e-06, 'Aristotelean-Thomistic': 1.6430492035729749e-06, 'thorough': 1.8073541239302723e-05, 'going-over': 2.4645738053594624e-06, 'participants': 5.750672212505412e-06, 'reassert': 1.6430492035729749e-06, 'Lebanese': 2.4645738053594624e-06, 'Moslem': 3.2860984071459497e-06, 'Islamic': 3.2860984071459497e-06, 'C.A.I.P.': 1.6430492035729749e-06, 'unmistakable': 6.5721968142918994e-06, 'functioning': 1.0679819823224336e-05, 'generality': 3.2860984071459497e-06, 'philosophical': 2.0538115044662184e-05, 'differences': 6.49004435411325e-05, 'undeniable': 4.929147610718925e-06, 'insights': 1.3965918230370285e-05, 'ethically': 2.4645738053594624e-06, 'spirited': 7.393721416078387e-06, 'give-and-take': 1.6430492035729749e-06, 'tiniest': 3.2860984071459497e-06, 'pervasive': 4.107623008932437e-06, 'perceive': 1.1501344425010824e-05, 'Formosa': 4.929147610718925e-06, 'self-delusion': 2.4645738053594624e-06, 'hypocrisy': 5.750672212505412e-06, 'thoughts': 4.2719279292897344e-05, 'hypnotized': 1.6430492035729749e-06, "septuagenarian's": 1.6430492035729749e-06, 'dreamy': 4.107623008932437e-06, 'irredentism': 1.6430492035729749e-06, 'pointedly': 3.2860984071459497e-06, 'Kai-shek': 1.6430492035729749e-06, 'practically': 3.94331808857514e-05, 'subjectively': 5.750672212505412e-06, 're-enter': 4.929147610718925e-06, 'Mainland': 4.929147610718925e-06, 'bloke': 1.6430492035729749e-06, 'asinine': 2.4645738053594624e-06, "Duke's": 1.6430492035729749e-06, "Browning's": 2.4645738053594624e-06, 'Duchess': 1.6430492035729749e-06, 'interpreter': 7.393721416078387e-06, 'Taipei': 1.6430492035729749e-06, 'smarted': 1.6430492035729749e-06, 'itinerary': 3.2860984071459497e-06, 'coolly': 4.929147610718925e-06, 'translator': 1.6430492035729749e-06, 'everywhere': 3.368250867324598e-05, 'redundant': 3.2860984071459497e-06, 'Taiwan': 6.5721968142918994e-06, 'relevant': 1.889506584108921e-05, 'sixty': 1.5608967433943262e-05, 'crucially': 1.6430492035729749e-06, 'liberation': 4.929147610718925e-06, 'liberate': 4.107623008932437e-06, 'Relative': 2.4645738053594624e-06, 'manpower': 1.1501344425010824e-05, '60-1': 1.6430492035729749e-06, '6-1': 1.6430492035729749e-06, '450,000': 1.6430492035729749e-06, 'contemplated': 4.929147610718925e-06, 'Skill': 2.4645738053594624e-06, 'Training': 9.036770619651361e-06, 'Morale': 1.6430492035729749e-06, 'Formosan': 1.6430492035729749e-06, 'conscripted': 2.4645738053594624e-06, 'passion': 2.300268885002165e-05, 'overtly': 3.2860984071459497e-06, 'perforce': 2.4645738053594624e-06, 'Mao': 6.5721968142918994e-06, 'sympathies': 7.393721416078387e-06, 'cultivated': 9.036770619651361e-06, 'extirpated': 1.6430492035729749e-06, 'depersonalization': 2.4645738053594624e-06, 'starvation': 6.5721968142918994e-06, 'discontent': 7.393721416078387e-06, 'generals': 9.036770619651361e-06, 'admirals': 1.6430492035729749e-06, 'fed': 3.368250867324598e-05, 'despot': 2.4645738053594624e-06, 'cousins': 8.215246017864873e-06, 'nephews': 4.929147610718925e-06, 'privations': 2.4645738053594624e-06, 'Leninism-Marxism': 1.6430492035729749e-06, 'Exegete': 1.6430492035729749e-06, 'purity': 1.0679819823224336e-05, 'galvanizing': 3.2860984071459497e-06, 'instant': 3.0396410266100035e-05, 'defy': 6.5721968142918994e-06, 'catalytic': 2.4645738053594624e-06, 'commune': 3.2860984071459497e-06, 'ensure': 7.393721416078387e-06, 'poverty': 1.6430492035729746e-05, 'residue': 7.393721416078387e-06, 'indigent': 1.6430492035729749e-06, 'down-and-out': 1.6430492035729749e-06, 'clan': 2.4645738053594624e-06, 'granary': 2.4645738053594624e-06, 'undertook': 6.5721968142918994e-06, 'scarcity': 2.4645738053594624e-06, 'engendered': 8.215246017864873e-06, 'calamitous': 2.4645738053594624e-06, 'Tibet': 6.5721968142918994e-06, 'semi-independent': 1.6430492035729749e-06, 'hostile': 1.5608967433943262e-05, 'extirpating': 1.6430492035729749e-06, 'bleed': 2.4645738053594624e-06, 'Algeria': 2.4645738053594624e-06, 'bleeding': 1.3965918230370285e-05, 'heightening': 2.4645738053594624e-06, 'snap': 1.0679819823224336e-05, 'foremost': 1.0679819823224336e-05, 'inhuman': 6.5721968142918994e-06, 'idiocies': 1.6430492035729749e-06, 'arrives': 6.5721968142918994e-06, 'vouchsafes': 1.6430492035729749e-06, 'gladly': 4.107623008932437e-06, 'jocularly': 1.6430492035729749e-06, 'invite': 8.215246017864873e-06, 'planeload': 1.6430492035729749e-06, 'Quemoy': 2.4645738053594624e-06, 'odd': 3.6968607080391934e-05, 'scars': 9.036770619651361e-06, 'indecisiveness': 1.6430492035729749e-06, 'crystallization': 3.2860984071459497e-06, 'flux': 2.546726265538111e-05, 'frontiers': 4.929147610718925e-06, 'buildup': 2.4645738053594624e-06, 'concealed': 7.393721416078387e-06, 'strutting': 1.6430492035729749e-06, 'gestures': 6.5721968142918994e-06, 'self-deceiving': 1.6430492035729749e-06, 'rags': 6.5721968142918994e-06, 'hurriedly': 2.4645738053594624e-06, 'too-naked': 1.6430492035729749e-06, 'truth-revealing': 1.6430492035729749e-06, 'fog': 2.0538115044662184e-05, 'tap': 1.3965918230370285e-05, 'emergencies': 6.5721968142918994e-06, 'bone': 2.793183646074057e-05, 'jelly': 3.2860984071459497e-06, 'spine': 5.750672212505412e-06, 'shockingly': 3.2860984071459497e-06, 'blacks': 2.4645738053594624e-06, 'counter': 2.6288787257167598e-05, 'Hungary-Suez': 1.6430492035729749e-06, 'reappears': 3.2860984071459497e-06, 'exposes': 2.4645738053594624e-06, 'cycles': 6.5721968142918994e-06, 'cartoon': 3.2860984071459497e-06, 'temporally': 1.6430492035729749e-06, 'linked': 1.3144393628583799e-05, 'Tshombe-Gizenga-Goa-Ghana': 1.6430492035729749e-06, 'Left': 8.215246017864873e-06, 'Gigenza': 1.6430492035729749e-06, "Moscow's": 4.107623008932437e-06, 'rape': 4.929147610718925e-06, 'strategically': 2.4645738053594624e-06, 'insane': 1.1501344425010824e-05, 'removing': 7.393721416078387e-06, 'equilibrium': 1.1501344425010824e-05, 'Suez': 2.4645738053594624e-06, 'Castros': 2.4645738053594624e-06, 'apartheid': 3.2860984071459497e-06, 'introduce': 9.036770619651361e-06, 'anti-French': 3.2860984071459497e-06, 'Moscow-allied': 1.6430492035729749e-06, 'FLN': 1.6430492035729749e-06, 'pro-Europe': 1.6430492035729749e-06, '$133': 1.6430492035729749e-06, 'Kwame': 1.6430492035729749e-06, 'Nkrumah': 2.4645738053594624e-06, 'materiel': 2.4645738053594624e-06, 'kills': 7.393721416078387e-06, 'supinely': 1.6430492035729749e-06, 'bleating': 1.6430492035729749e-06, "Nehru's": 1.6430492035729749e-06, 'five-hundred-year-old': 1.6430492035729749e-06, 'uni-directional': 1.6430492035729749e-06, 'paralysis': 5.750672212505412e-06, 'constitutes': 9.85829522143785e-06, 'Suez-Hungary': 2.4645738053594624e-06, 'puzzles': 4.107623008932437e-06, 'Goa': 1.6430492035729749e-06, 'Tito': 2.4645738053594624e-06, 'intelligible': 9.85829522143785e-06, 'unoriginals': 2.4645738053594624e-06, 'dramatist': 2.4645738053594624e-06, 'Nowadays': 2.4645738053594624e-06, 'scan': 4.929147610718925e-06, 'bestseller': 2.4645738053594624e-06, "Broadway's": 1.6430492035729749e-06, 'premieres': 4.107623008932437e-06, 'adaptations': 5.750672212505412e-06, 'owes': 4.929147610718925e-06, 'Agee': 1.6430492035729749e-06, 'Death': 1.1501344425010824e-05, 'awkwardly': 3.2860984071459497e-06, 'Hersey': 1.6430492035729749e-06, 'Advise': 1.6430492035729749e-06, 'Consent': 1.6430492035729749e-06, 'shallow': 1.232286902679731e-05, 'mountainously': 1.6430492035729749e-06, 'Face': 1.6430492035729749e-06, 'Hero': 5.750672212505412e-06, 'Boulle': 1.6430492035729749e-06, 'Tennessee': 1.97165904428757e-05, "Williams'": 1.6430492035729749e-06, 'Period': 2.4645738053594624e-06, 'Adjustment': 3.2860984071459497e-06, "Laurents'": 1.6430492035729749e-06, 'clever': 1.3144393628583799e-05, 'Clearly': 9.036770619651361e-06, 'imported': 7.393721416078387e-06, 'originals': 2.4645738053594624e-06, 'Taste': 2.4645738053594624e-06, 'Honey': 3.2860984071459497e-06, 'Shelagh': 1.6430492035729749e-06, 'Anouilh': 1.6430492035729749e-06, 'Hostage': 1.6430492035729749e-06, "Ireland's": 2.4645738053594624e-06, 'Brendan': 1.6430492035729749e-06, 'Behan': 1.6430492035729749e-06, 'musicals': 3.2860984071459497e-06, 'Camelot': 1.6430492035729749e-06, "White's": 4.107623008932437e-06, 'novels': 1.889506584108921e-05, 'Tenderloin': 1.6430492035729749e-06, 'Re': 2.4645738053594624e-06, 'Mi': 3.2860984071459497e-06, 'Wildcat': 1.6430492035729749e-06, 'Unsinkable': 4.107623008932437e-06, 'jaunty': 2.4645738053594624e-06, 'charmingly': 1.6430492035729749e-06, 'Irma': 1.6430492035729749e-06, 'Douce': 1.6430492035729749e-06, 'technically': 7.393721416078387e-06, 'dreary': 5.750672212505412e-06, 'farces': 1.6430492035729749e-06, 'Yum-Yum': 1.6430492035729749e-06, "Critic's": 1.6430492035729749e-06, 'Conquering': 2.4645738053594624e-06, 'reconverting': 1.6430492035729749e-06, 'Lili': 1.6430492035729749e-06, 'Dry': 2.4645738053594624e-06, 'Originals': 1.6430492035729749e-06, 'Diary': 1.6430492035729749e-06, 'Die': 4.107623008932437e-06, 'Fledermaus': 1.6430492035729749e-06, 'Merry': 2.4645738053594624e-06, 'Widow': 3.2860984071459497e-06, 'Oklahoma!': 1.6430492035729749e-06, 'Critic': 1.6430492035729749e-06, 'Adaptations': 1.6430492035729749e-06, 'Shakespeare': 2.546726265538111e-05, 'Moliere': 3.2860984071459497e-06, 'adapters': 2.4645738053594624e-06, 'masters': 1.0679819823224336e-05, 'dry': 5.504214831969465e-05, 'prevalence': 4.107623008932437e-06, 'tested': 3.1217934867886523e-05, 'Off-Broadway': 1.6430492035729749e-06, 'Laudably': 1.6430492035729749e-06, "Hock's": 1.6430492035729749e-06, 'stunning': 5.750672212505412e-06, 'Borak': 1.6430492035729749e-06, 'playwrights': 1.6430492035729749e-06, 'Nightclubs': 1.6430492035729749e-06, 'Cooch': 2.4645738053594624e-06, 'Terpers': 2.4645738053594624e-06, 'Casbah': 3.2860984071459497e-06, 'commonplace': 1.3144393628583799e-05, 'Yorkers': 2.4645738053594624e-06, 'Eighth': 5.750672212505412e-06, 'Arabian': 2.4645738053594624e-06, 'Nights': 2.4645738053594624e-06, 'Grecian': 4.107623008932437e-06, 'Egyptian': 4.929147610718925e-06, 'Gardens': 1.1501344425010824e-05, 'inpost': 1.6430492035729749e-06, 'belly': 1.97165904428757e-05, 'burgeoning': 4.107623008932437e-06, '52nd': 1.6430492035729749e-06, 'burlesque': 2.4645738053594624e-06, 'curiously': 9.036770619651361e-06, 'familial': 4.107623008932437e-06, 'saloons': 7.393721416078387e-06, 'epidermis': 2.4645738053594624e-06, 'boites': 1.6430492035729749e-06, 'papier-mache': 2.4645738053594624e-06, 'hand-painted': 1.6430492035729749e-06, 'Ionic': 4.107623008932437e-06, 'Customers': 1.6430492035729749e-06, 'graces': 4.107623008932437e-06, 'maniac': 4.107623008932437e-06, 'overeager': 1.6430492035729749e-06, 'sailor': 4.107623008932437e-06, 'absorption': 1.0679819823224336e-05, 'shirt-sleeved': 1.6430492035729749e-06, 'orchestras': 4.107623008932437e-06, '2/4': 1.6430492035729749e-06, '4/4': 1.6430492035729749e-06, 'guitars': 3.2860984071459497e-06, 'violins': 1.6430492035729749e-06, 'alien': 1.3965918230370285e-05, 'Sesame': 3.2860984071459497e-06, 'oud': 1.6430492035729749e-06, 'lute': 1.6430492035729749e-06, 'darbuka': 1.6430492035729749e-06, 'treelike': 1.6430492035729749e-06, 'roemer': 1.6430492035729749e-06, 'def': 1.6430492035729749e-06, 'low-pitched': 2.4645738053594624e-06, 'prim': 1.6430492035729749e-06, 'dresses': 8.215246017864873e-06, 'shifts': 1.4787442832156774e-05, 'reappear': 2.4645738053594624e-06, 'harem': 2.4645738053594624e-06, 'Continuum': 1.6430492035729749e-06, 'superbly': 8.215246017864873e-06, 'ancestry': 7.393721416078387e-06, 'progeny': 2.4645738053594624e-06, 'continuum': 5.750672212505412e-06, 'Variety': 1.6430492035729749e-06, 'cosmic': 1.5608967433943262e-05, 'glides': 1.6430492035729749e-06, 'sideways': 3.2860984071459497e-06, 'motionless': 6.5721968142918994e-06, 'migrates': 1.6430492035729749e-06, 'breathing': 1.7252016637516235e-05, 'sends': 4.107623008932437e-06, 'ripples': 4.929147610718925e-06, 'fingertips': 2.4645738053594624e-06, 'speeds': 1.232286902679731e-05, 'Shifte': 1.6430492035729749e-06, 'Telli': 1.6430492035729749e-06, 'ecstatic': 4.107623008932437e-06, 'Karshilama': 1.6430492035729749e-06, 'greetings': 4.929147610718925e-06, 'improvisations': 2.4645738053594624e-06, 'bends': 2.4645738053594624e-06, 'crawls': 2.4645738053594624e-06, 'striptease': 1.6430492035729749e-06, 'crass': 2.4645738053594624e-06, 'provokes': 4.107623008932437e-06, 'bombardment': 1.6430492035729749e-06, 'prohibit': 2.4645738053594624e-06, 'cosmopolitan': 2.4645738053594624e-06, 'slipping': 5.750672212505412e-06, 'tips': 1.1501344425010824e-05, "dancers'": 1.6430492035729749e-06, '$200': 6.5721968142918994e-06, 'proffered': 3.2860984071459497e-06, 'bolt': 9.036770619651361e-06, 'mid-shimmy': 1.6430492035729749e-06, 'melting': 1.889506584108921e-05, 'pot': 2.3824213451808133e-05, 'Semra': 1.6430492035729749e-06, 'roadhouse': 1.6430492035729749e-06, 'Bristol': 3.2860984071459497e-06, 'voluble': 2.4645738053594624e-06, 'black-bearded': 1.6430492035729749e-06, 'Murat': 1.6430492035729749e-06, 'Somay': 1.6430492035729749e-06, 'Sol': 3.2860984071459497e-06, 'Hurok': 4.107623008932437e-06, 'abdomen': 5.750672212505412e-06, 'haflis': 1.6430492035729749e-06, 'Syrians': 1.6430492035729749e-06, 'veils': 3.2860984071459497e-06, 'origins': 6.5721968142918994e-06, 'bubbled': 2.4645738053594624e-06, 'intriguingly': 2.4645738053594624e-06, 'Jemela': 1.6430492035729749e-06, 'surname': 3.2860984071459497e-06, 'Gerby': 1.6430492035729749e-06, 'Textile': 2.4645738053594624e-06, 'picnics': 3.2860984071459497e-06, 'Serene': 2.4645738053594624e-06, 'Daughter': 2.4645738053594624e-06, 'gypsy': 4.107623008932437e-06, 'waist-length': 1.6430492035729749e-06, 'adolescent': 1.0679819823224336e-05, 'patrician': 1.6430492035729749e-06, 'lithe': 3.2860984071459497e-06, 'glimmering': 1.6430492035729749e-06, 'Marlene': 2.4645738053594624e-06, 'Adamo': 1.6430492035729749e-06, 'Brazilian': 4.107623008932437e-06, 'divorcee': 2.4645738053594624e-06, 'Arabic': 4.929147610718925e-06, "Manhattan's": 1.6430492035729749e-06, 'Leila': 1.6430492035729749e-06, 'Malia': 1.6430492035729749e-06, 'Persianesque': 1.6430492035729749e-06, 'miniatures': 1.6430492035729749e-06, 'cascades': 1.6430492035729749e-06, 'Gloria': 1.6430492035729749e-06, 'Ziraldo': 1.6430492035729749e-06, 'circa': 1.6430492035729749e-06, 'seamen': 2.4645738053594624e-06, 'turtleneck': 2.4645738053594624e-06, 'sweaters': 4.107623008932437e-06, 'handkerchiefs': 1.6430492035729749e-06, 'sailors': 7.393721416078387e-06, 'button-down': 2.4645738053594624e-06, 'tormented': 3.2860984071459497e-06, 'painters': 1.0679819823224336e-05, '20th': 1.0679819823224336e-05, 'Oskar': 1.6430492035729749e-06, 'Kokoschka': 1.6430492035729749e-06, 'unawareness': 3.2860984071459497e-06, 'half-forgotten': 1.6430492035729749e-06, 'Austrian': 4.107623008932437e-06, 'expressionist': 2.4645738053594624e-06, 'Egon': 1.6430492035729749e-06, 'Schiele': 4.107623008932437e-06, "critics'": 1.6430492035729749e-06, "Schiele's": 3.2860984071459497e-06, 'Speed': 3.2860984071459497e-06, 'Landau': 1.6430492035729749e-06, 'angular': 1.3965918230370285e-05, 'knobby-knuckled': 1.6430492035729749e-06, 'painfully': 1.232286902679731e-05, 'stretched': 2.875336106252706e-05, 'grotesquely': 4.107623008932437e-06, 'foreshortened': 1.6430492035729749e-06, 'murky': 4.929147610718925e-06, 'landscapes': 4.929147610718925e-06, 'cityscapes': 2.4645738053594624e-06, 'swallowed': 1.0679819823224336e-05, 'gloom': 1.1501344425010824e-05, 'boldest': 1.6430492035729749e-06, 'fascination': 5.750672212505412e-06, 'devil': 1.7252016637516235e-05, 'stationmaster': 1.6430492035729749e-06, 'drowsy': 1.6430492035729749e-06, 'Danubian': 1.6430492035729749e-06, 'Tulln': 1.6430492035729749e-06, 'emotional': 5.504214831969465e-05, 'schoolwork': 1.6430492035729749e-06, 'Cried': 4.107623008932437e-06, 'tantrums': 2.4645738053594624e-06, 'defecated': 1.6430492035729749e-06, 'impressionists': 1.6430492035729749e-06, 'mosaic-like': 1.6430492035729749e-06, 'Gustav': 1.6430492035729749e-06, 'Klimt': 1.6430492035729749e-06, 'Gradually': 7.393721416078387e-06, 'evolved': 7.393721416078387e-06, 'somber': 3.2860984071459497e-06, 'inhibitions': 3.2860984071459497e-06, 'roundly': 2.4645738053594624e-06, 'disgusting': 4.107623008932437e-06, 'erotica': 1.6430492035729749e-06, 'jailed': 2.4645738053594624e-06, 'spittle': 2.4645738053594624e-06, 'hand-me-down': 1.6430492035729749e-06, 'homemade': 2.4645738053594624e-06, 'collars': 1.6430492035729749e-06, 'scrounging': 1.6430492035729749e-06, 'cigarette': 1.97165904428757e-05, 'butts': 4.929147610718925e-06, "Vienna's": 1.6430492035729749e-06, 'gutters': 2.4645738053594624e-06, 'Drafted': 1.6430492035729749e-06, 'rebelliously': 3.2860984071459497e-06, 'discipline': 2.300268885002165e-05, 'wangled': 1.6430492035729749e-06, 'billet': 1.6430492035729749e-06, 'moneymaking': 1.6430492035729749e-06, 'Melancholy': 1.6430492035729749e-06, 'obsession': 4.929147610718925e-06, 'unabashed': 3.2860984071459497e-06, 'sexuality': 4.107623008932437e-06, 'unrelieved': 4.107623008932437e-06, 'morbid-minded': 1.6430492035729749e-06, 'obsessed': 4.929147610718925e-06, 'lust': 4.107623008932437e-06, 'portraits': 6.5721968142918994e-06, 'ugliness': 6.5721968142918994e-06, 'nudes': 2.4645738053594624e-06, 'self-portraits': 1.6430492035729749e-06, 'stringy': 3.2860984071459497e-06, 'contorted': 3.2860984071459497e-06, 'strangely': 6.5721968142918994e-06, 'pathetic': 7.393721416078387e-06, 'naked': 2.6288787257167598e-05, 'half-dressed': 1.6430492035729749e-06, 'muffled': 9.85829522143785e-06, 'primly': 2.4645738053594624e-06, 'tauntingly': 1.6430492035729749e-06, 'Twentieth': 6.5721968142918994e-06, 'Draft': 7.393721416078387e-06, 'Program': 1.8073541239302723e-05, 'blueprint': 1.6430492035729749e-06, 'uninitiated': 2.4645738053594624e-06, 'apotheosis': 1.6430492035729749e-06, 'solemn': 1.0679819823224336e-05, 'consecration': 1.6430492035729749e-06, 'anti-party': 4.929147610718925e-06, 'theoretical': 1.5608967433943262e-05, 'journals': 4.929147610718925e-06, 'world-shaking': 2.4645738053594624e-06, 'Marxist': 3.2860984071459497e-06, 'twelve-hour': 2.4645738053594624e-06, 'rehash': 2.4645738053594624e-06, 'interminable': 4.107623008932437e-06, 'formulas': 1.889506584108921e-05, 'proletariat': 3.2860984071459497e-06, "People's": 4.929147610718925e-06, 'democratization': 2.4645738053594624e-06, 'rotation': 9.85829522143785e-06, 'bureaucracy': 6.5721968142918994e-06, 'obscure': 1.4787442832156774e-05, 'Was': 3.203945946967301e-05, 'kolkhoz': 2.4645738053594624e-06, 'uniformly': 5.750672212505412e-06, 'wage-earning': 1.6430492035729749e-06, 'kolkhozes': 2.4645738053594624e-06, 'progressively': 5.750672212505412e-06, 'thrives': 1.6430492035729749e-06, 'profitable': 1.232286902679731e-05, 'plots': 7.393721416078387e-06, 'uncertainty': 1.3965918230370285e-05, 'admissions': 2.4645738053594624e-06, 'sickness': 4.929147610718925e-06, 'old-age': 1.6430492035729749e-06, 'prides': 2.4645738053594624e-06, 'skate': 1.6430492035729749e-06, 'doubts': 1.3144393628583799e-05, 'Lands': 2.4645738053594624e-06, 'obsessive': 1.6430492035729749e-06, 'harping': 3.2860984071459497e-06, 'Molotov': 6.5721968142918994e-06, 'Malenkov': 1.6430492035729749e-06, 'Kaganovich': 1.6430492035729749e-06, 'eighty-year-old': 1.6430492035729749e-06, 'Marshal': 1.8073541239302723e-05, 'Voroshilov': 1.6430492035729749e-06, 'rents': 3.2860984071459497e-06, 'doctrinal': 3.2860984071459497e-06, 'quarrels': 4.107623008932437e-06, 'non-stop': 1.6430492035729749e-06, 'liquidated': 4.929147610718925e-06, 'Mikoyan': 1.6430492035729749e-06, 'rejects': 9.85829522143785e-06, 'denial': 1.5608967433943262e-05, 'averting': 3.2860984071459497e-06, 'coincide': 1.0679819823224336e-05, 'variant': 4.107623008932437e-06, 'whipping-boys': 1.6430492035729749e-06, 'Soviet-Chinese': 2.4645738053594624e-06, 'deteriorated': 4.107623008932437e-06, 'Chou': 2.4645738053594624e-06, "En-lai's": 1.6430492035729749e-06, 'shifted': 1.5608967433943262e-05, 'epoch-making': 1.6430492035729749e-06, 'twenty-year': 2.4645738053594624e-06, 'En-lai': 1.6430492035729749e-06, 'Albania': 3.2860984071459497e-06, 'Marxist-Leninist': 1.6430492035729749e-06, 'dictatorial': 1.6430492035729749e-06, 'undemocratic': 1.6430492035729749e-06, 'Albanian': 2.4645738053594624e-06, 'abusive': 1.6430492035729749e-06, 'liar': 3.2860984071459497e-06, 'bully': 3.2860984071459497e-06, 'Albanians': 2.4645738053594624e-06, 'restored': 1.232286902679731e-05, 'Chinese-Soviet': 1.6430492035729749e-06, 'Enver': 4.107623008932437e-06, 'Hoxa': 1.6430492035729749e-06, 'malaise': 8.215246017864873e-06, 'symptoms': 1.232286902679731e-05, 'bombastic': 1.6430492035729749e-06, 'prophecies': 1.6430492035729749e-06, 'decay': 1.1501344425010824e-05, 'genuinely': 9.036770619651361e-06, 'Russo-American': 1.6430492035729749e-06, 'Lobby': 1.6430492035729749e-06, 'suspicions': 6.5721968142918994e-06, 'shameful': 2.4645738053594624e-06, 'indicative': 5.750672212505412e-06, 'Malinovsky': 1.6430492035729749e-06, 'blowing': 1.5608967433943262e-05, 'exalting': 1.6430492035729749e-06, 'preventive': 1.3144393628583799e-05, 'appease': 2.4645738053594624e-06, 'canceling': 1.6430492035729749e-06, 'peace-treaty': 1.6430492035729749e-06, 'Koreans': 4.929147610718925e-06, 'liberating': 1.6430492035729749e-06, 'southern': 2.3824213451808133e-05, 'crusading': 1.6430492035729749e-06, 'infernally': 1.6430492035729749e-06, 'misty': 4.107623008932437e-06, 'anti-Communists': 1.6430492035729749e-06, 'Minutemen': 4.929147610718925e-06, 'maneuvers': 6.5721968142918994e-06, 'foggy': 3.2860984071459497e-06, 'Eleven': 2.4645738053594624e-06, 'tramped': 2.4645738053594624e-06, 'damp': 1.3144393628583799e-05, 'fog-enshrouded': 1.6430492035729749e-06, 'tale': 1.8073541239302723e-05, 'life-and-death': 1.6430492035729749e-06, 'supremacy': 4.929147610718925e-06, 'Bolivar': 1.6430492035729749e-06, 'DePugh': 3.2860984071459497e-06, 'Norborne': 1.6430492035729749e-06, 'camouflage': 3.2860984071459497e-06, 'garb': 3.2860984071459497e-06, 'helmets': 2.4645738053594624e-06, 'unloaded': 4.929147610718925e-06, 'M-1': 1.6430492035729749e-06, 'Shiloh': 2.4645738053594624e-06, 'sheriffs': 3.2860984071459497e-06, 'Lauchli': 4.107623008932437e-06, 'Collinsville': 1.6430492035729749e-06, 'operative': 5.750672212505412e-06, 'M-4': 1.6430492035729749e-06, 'Undismayed': 1.6430492035729749e-06, 'contretemps': 2.4645738053594624e-06, "Lauchli's": 1.6430492035729749e-06, '6:30': 1.6430492035729749e-06, 'mm.': 9.036770619651361e-06, 'mortar': 8.215246017864873e-06, 'recoilless': 2.4645738053594624e-06, 'dummy': 3.2860984071459497e-06, 'shells': 1.232286902679731e-05, 'deactivated': 1.6430492035729749e-06, 'tortuous': 3.2860984071459497e-06, 'jeep': 3.2860984071459497e-06, 'trails': 1.3965918230370285e-05, 'ridge': 1.0679819823224336e-05, 'creek-filled': 1.6430492035729749e-06, 'concealment': 2.4645738053594624e-06, 'outpost': 3.2860984071459497e-06, 'atop': 5.750672212505412e-06, 'smoke': 3.368250867324598e-05, 'grenades': 5.750672212505412e-06, 'skirmish': 4.107623008932437e-06, 'camouflaged': 2.4645738053594624e-06, 'encampment': 3.2860984071459497e-06, 'rapid-fire': 1.6430492035729749e-06, 'participated': 1.1501344425010824e-05, 'casualties': 2.4645738053594624e-06, 'catch': 3.532555787681896e-05, 'Tenure': 2.4645738053594624e-06, 'criterion': 9.036770619651361e-06, 'Kirk': 1.6430492035729749e-06, "teachers'": 1.6430492035729749e-06, "Yale's": 1.6430492035729749e-06, 'underpaid': 1.6430492035729749e-06, 'dearth': 3.2860984071459497e-06, "sellers'": 1.6430492035729749e-06, 'second-rate': 4.929147610718925e-06, 'rub': 5.750672212505412e-06, 'overpaid': 1.6430492035729749e-06, 'shoddy': 1.6430492035729749e-06, 'chooses': 7.393721416078387e-06, 'Loss': 1.6430492035729749e-06, 'across-the-board': 1.6430492035729749e-06, 'tariff': 4.929147610718925e-06, 'proposition': 1.3965918230370285e-05, 'sacrificing': 2.4645738053594624e-06, 'selective': 1.3965918230370285e-05, 'reciprocal': 7.393721416078387e-06, 'Europeans': 4.929147610718925e-06, "Burnham's": 1.6430492035729749e-06, 'Market': 1.0679819823224336e-05, 'amalgamated': 1.6430492035729749e-06, 'ramifications': 3.2860984071459497e-06, 'convincing': 9.85829522143785e-06, 'self-rule': 1.6430492035729749e-06, 'O.E.C.D.': 4.929147610718925e-06, 'I.M.F.': 1.6430492035729749e-06, 'Worlders': 1.6430492035729749e-06, "Times'": 1.6430492035729749e-06, 'Eric': 3.2860984071459497e-06, 'Join': 4.929147610718925e-06, 'nationalisms': 2.4645738053594624e-06, 'age-old': 4.929147610718925e-06, 'worn-out': 1.6430492035729749e-06, 'Referring': 2.4645738053594624e-06, 'values': 0.00015280357593228666, 'grouping': 4.107623008932437e-06, 'Frankly': 2.4645738053594624e-06, 'cleverly': 4.107623008932437e-06, 'Consider': 1.8073541239302723e-05, 'wounds': 7.393721416078387e-06, 'isolationism': 1.6430492035729749e-06, 'incorporation': 3.2860984071459497e-06, 'libertarians': 2.4645738053594624e-06, 'Hazlitt': 2.4645738053594624e-06, 'Von': 7.393721416078387e-06, 'Mises': 1.6430492035729749e-06, 'Create': 1.6430492035729749e-06, 'debt-free': 1.6430492035729749e-06, 'monstrosity': 3.2860984071459497e-06, 'Constitutional': 1.6430492035729749e-06, 'Amendments': 3.2860984071459497e-06, 'conservatism': 8.215246017864873e-06, 'many-sided': 3.2860984071459497e-06, 'JNR': 1.6430492035729749e-06, 'pages': 2.6288787257167598e-05, 'ed.': 1.6430492035729749e-06, 'Mental': 2.4645738053594624e-06, 'telepathy': 3.2860984071459497e-06, 'Peiping': 1.6430492035729749e-06, 'anticipating': 1.6430492035729749e-06, 'pegged': 1.6430492035729749e-06, 'honorably': 3.2860984071459497e-06, 'Active': 5.750672212505412e-06, 'Duty': 3.2860984071459497e-06, 'Devens': 1.6430492035729749e-06, 'Sp': 2.4645738053594624e-06, 'PFC': 1.6430492035729749e-06, 'induction': 5.750672212505412e-06, 'draftee': 1.6430492035729749e-06, 'Philosophy': 4.929147610718925e-06, "Michael's": 2.4645738053594624e-06, 'twenty-two': 5.750672212505412e-06, 'enviable': 4.107623008932437e-06, 'equitably': 2.4645738053594624e-06, 'disruptions': 1.6430492035729749e-06, 'woefully': 2.4645738053594624e-06, 'Taken': 2.4645738053594624e-06, 'sidelight': 1.6430492035729749e-06, 'deferments': 1.6430492035729749e-06, 'disrupted': 4.929147610718925e-06, 'compelling': 7.393721416078387e-06, 'brigades': 1.6430492035729749e-06, 'idly': 5.750672212505412e-06, 'corners': 1.5608967433943262e-05, 'taverns': 4.107623008932437e-06, 'Mercenary': 1.6430492035729749e-06, 'broadcasts': 6.5721968142918994e-06, 'confuses': 1.6430492035729749e-06, 'Hessian': 2.4645738053594624e-06, 'willy-nilly': 4.107623008932437e-06, "1770's": 1.6430492035729749e-06, 'Hessians': 3.2860984071459497e-06, 'foreigners': 9.85829522143785e-06, 'Steuben': 2.4645738053594624e-06, 'Escadrille': 1.6430492035729749e-06, "Chennault's": 1.6430492035729749e-06, 'Flying': 4.929147610718925e-06, 'Tigers': 1.6430492035729749e-06, 'Vidal': 1.6430492035729749e-06, "what's": 1.3144393628583799e-05, 'Cherokee': 2.4645738053594624e-06, "Textile's": 1.6430492035729749e-06, 'Pitney-Bowes': 1.6430492035729749e-06, 'Objects': 1.6430492035729749e-06, 'eighteenth-century': 4.107623008932437e-06, 'Suggest': 1.6430492035729749e-06, 'twenty-first-century': 1.6430492035729749e-06, 'substituting': 4.107623008932437e-06, 'stodgy': 1.6430492035729749e-06, "Postmaster's": 1.6430492035729749e-06, 'envelope': 1.8073541239302723e-05, 'faded': 1.5608967433943262e-05, 'impending': 4.107623008932437e-06, 'Jakarta': 1.6430492035729749e-06, 'flown': 4.107623008932437e-06, 'Indonesian': 1.6430492035729749e-06, 'insurgents': 1.6430492035729749e-06, 'supporting': 2.1359639646448672e-05, 'Facing': 3.2860984071459497e-06, 'Dienbienphu': 1.6430492035729749e-06, 'Flier': 1.6430492035729749e-06, 'Loses': 1.6430492035729749e-06, 'Upholds': 1.6430492035729749e-06, "Pope's": 1.6430492035729749e-06, 'Sentence': 1.6430492035729749e-06, 'Celebes': 1.6430492035729749e-06, 'Moluccas': 1.6430492035729749e-06, 'clemency': 2.4645738053594624e-06, 'analogy': 1.1501344425010824e-05, 'Capet': 2.4645738053594624e-06, 'Regency': 1.6430492035729749e-06, 'dust-settling': 1.6430492035729749e-06, 'virtuous': 5.750672212505412e-06, 'incompetent': 2.4645738053594624e-06, 'Antoinette': 1.6430492035729749e-06, 'Bouvier': 1.6430492035729749e-06, 'light-hearted': 1.6430492035729749e-06, 'Conservative': 1.6430492035729749e-06, 'Truly': 1.6430492035729749e-06, 'bogey-symbol': 1.6430492035729749e-06, 'Monarque': 1.6430492035729749e-06, 'accretion': 3.2860984071459497e-06, 'deification': 1.6430492035729749e-06, 'roi': 1.6430492035729749e-06, 'gouverne': 1.6430492035729749e-06, 'lui': 1.6430492035729749e-06, 'meme': 1.6430492035729749e-06, 'defeating': 3.2860984071459497e-06, "Tower's": 1.6430492035729749e-06, 'Liberalism': 2.4645738053594624e-06, 'Confrontation': 7.393721416078387e-06, 'SR': 4.929147610718925e-06, 'Mar.': 3.2860984071459497e-06, 'bothers': 3.2860984071459497e-06, 'intimately': 5.750672212505412e-06, 'sufferer': 4.107623008932437e-06, 'preacher': 9.85829522143785e-06, 'Personally': 4.929147610718925e-06, 'Congratulations': 2.4645738053594624e-06, 'delving': 2.4645738053594624e-06, "N.C.'s": 1.6430492035729749e-06, 'Khrushchevs': 2.4645738053594624e-06, 'Schweitzers': 1.6430492035729749e-06, 'Dooleys': 1.6430492035729749e-06, "Editor's": 2.4645738053594624e-06, 'Reprints': 1.6430492035729749e-06, 'communicate': 1.1501344425010824e-05, 'Improper': 1.6430492035729749e-06, 'Bostonian': 1.6430492035729749e-06, "Lucas's": 1.6430492035729749e-06, "SR's": 1.6430492035729749e-06, 'Amory': 1.6430492035729749e-06, 'fundamentalist': 4.107623008932437e-06, 'dogmatism': 4.107623008932437e-06, 'Messing': 1.6430492035729749e-06, 'Facts': 1.6430492035729749e-06, 'Markel': 1.6430492035729749e-06, 'Interpretation': 4.107623008932437e-06, 'invaluable': 4.929147610718925e-06, 'doctored': 4.107623008932437e-06, 'sophistication': 7.393721416078387e-06, 'journalists': 2.4645738053594624e-06, 'liabilities': 1.6430492035729749e-06, 'Wisconsin': 1.6430492035729746e-05, 'powerless': 3.2860984071459497e-06, 'front-page': 2.4645738053594624e-06, 'McCarthy': 6.5721968142918994e-06, 'communicating': 6.5721968142918994e-06, 'boxed': 2.4645738053594624e-06, 'experimenting': 6.5721968142918994e-06, 'print': 1.4787442832156774e-05, 'possession': 1.8073541239302723e-05, 'publish': 3.2860984071459497e-06, 'transcript': 4.107623008932437e-06, 'differential': 1.3144393628583799e-05, 'networks': 1.3144393628583799e-05, 'Up': 1.3965918230370285e-05, 'grudgingly': 5.750672212505412e-06, 'half-hour': 7.393721416078387e-06, 'tapes': 4.107623008932437e-06, 'edited': 6.5721968142918994e-06, 'glibly': 4.107623008932437e-06, 'summarized': 8.215246017864873e-06, 'Brinkley': 1.6430492035729749e-06, 'fifteen-minute': 3.2860984071459497e-06, 'summary': 1.232286902679731e-05, 'transcripts': 2.4645738053594624e-06, 'comparing': 8.215246017864873e-06, 're-runs': 1.6430492035729749e-06, 'censored': 2.4645738053594624e-06, 'ABC': 2.4645738053594624e-06, 'paragraph': 9.036770619651361e-06, 'abused': 4.929147610718925e-06, 're-run': 1.6430492035729749e-06, "stations'": 1.6430492035729749e-06, "networks'": 1.6430492035729749e-06, 'Webb': 1.6430492035729749e-06, "Young's": 3.2860984071459497e-06, 'Need': 7.393721416078387e-06, 'Propaganda': 2.4645738053594624e-06, 'estimation': 4.107623008932437e-06, 'rounding': 4.929147610718925e-06, 'disintegrate': 2.4645738053594624e-06, "Lloyd's": 3.2860984071459497e-06, 'Neck': 3.2860984071459497e-06, 'instructors': 1.6430492035729749e-06, 'curriculum': 1.3965918230370285e-05, 'rust': 7.393721416078387e-06, 'practitioners': 5.750672212505412e-06, 'refresher': 1.6430492035729749e-06, 'Alas': 4.107623008932437e-06, 'flattered': 6.5721968142918994e-06, 'Tobin': 2.4645738053594624e-06, 'Supplement': 2.4645738053594624e-06, 'Snow': 7.393721416078387e-06, 'commits': 2.4645738053594624e-06, 'autobiographical': 3.2860984071459497e-06, 'submits': 3.2860984071459497e-06, 'publisher': 6.5721968142918994e-06, 'post-mortem': 1.6430492035729749e-06, 'formality': 2.4645738053594624e-06, 'Watson-Watt': 1.6430492035729749e-06, 'analyze': 9.036770619651361e-06, 'commentaries': 2.4645738053594624e-06, 'Godkin': 4.107623008932437e-06, 'lectures': 1.1501344425010824e-05, 'gist': 1.6430492035729749e-06, "Snow's": 3.2860984071459497e-06, 'incautious': 1.6430492035729749e-06, "Watson-Watt's": 2.4645738053594624e-06, 'rebuttal': 2.4645738053594624e-06, 'Lectures': 2.4645738053594624e-06, 'excerpt': 5.750672212505412e-06, "book's": 3.2860984071459497e-06, 'milder': 3.2860984071459497e-06, 'prepublication': 1.6430492035729749e-06, 'marred': 4.107623008932437e-06, 'Lindemann': 3.2860984071459497e-06, "Charles'": 6.5721968142918994e-06, 'falsehoods': 2.4645738053594624e-06, 'unclear': 2.4645738053594624e-06, 'incoherent': 4.107623008932437e-06, 'absurdity': 7.393721416078387e-06, 'historians': 1.4787442832156774e-05, 'perverted': 1.6430492035729749e-06, 'Nonsense': 3.2860984071459497e-06, 'impressionistic': 1.6430492035729749e-06, 'Lindemanns': 1.6430492035729749e-06, 'radar': 1.97165904428757e-05, 'Tizard': 1.6430492035729749e-06, 'dissembling': 1.6430492035729749e-06, 'discounted': 2.4645738053594624e-06, 'unfortunate': 1.889506584108921e-05, 'casts': 5.750672212505412e-06, 'unjustifiable': 2.4645738053594624e-06, 'aura': 1.6430492035729749e-06, 'falsehood': 2.4645738053594624e-06, 'Nathan': 4.929147610718925e-06, 'Milstein': 4.107623008932437e-06, 'recitals': 3.2860984071459497e-06, 'Brahms': 6.5721968142918994e-06, 'Concerto': 4.929147610718925e-06, 'slashing': 4.929147610718925e-06, 'demon-ridden': 1.6430492035729749e-06, 'cadenza': 3.2860984071459497e-06, 'pale': 4.7648426903616267e-05, 'violinist': 4.107623008932437e-06, 'unlocks': 2.4645738053594624e-06, 'incandescent': 3.2860984071459497e-06, 'noblest': 4.929147610718925e-06, "orchestra's": 2.4645738053594624e-06, 'soloist': 8.215246017864873e-06, 'surpass': 1.6430492035729749e-06, 'superb': 1.232286902679731e-05, 'Hendl': 3.2860984071459497e-06, 'shredding': 1.6430492035729749e-06, 'glittering': 5.750672212505412e-06, 'spitting': 4.929147610718925e-06, 'flounders': 1.6430492035729749e-06, 'lets': 4.929147610718925e-06, 'sprawl': 3.2860984071459497e-06, 'mysterious': 2.218116424823516e-05, 'marvelous': 8.215246017864873e-06, 'alchemy': 1.6430492035729749e-06, 'romantic': 2.546726265538111e-05, "Schumann's": 1.6430492035729749e-06, 'Overture': 4.107623008932437e-06, 'Manfred': 1.6430492035729749e-06, 'orchestral': 3.2860984071459497e-06, 'Byronic': 1.6430492035729749e-06, "Hindemith's": 1.6430492035729749e-06, 'joust': 1.6430492035729749e-06, 'Weber': 2.4645738053594624e-06, 'tunes': 6.5721968142918994e-06, 'transluscent': 1.6430492035729749e-06, 'buoyant': 2.4645738053594624e-06, 'rhythms': 9.85829522143785e-06, 'astringent': 1.6430492035729749e-06, 'coarsened': 1.6430492035729749e-06, 'lacks': 5.750672212505412e-06, 'Bayreuth': 4.107623008932437e-06, 'Tannhaeuser': 2.4645738053594624e-06, 'Wieland': 1.6430492035729749e-06, 'operas': 2.4645738053594624e-06, 'Wolfgang': 1.6430492035729749e-06, 'Sawallisch': 1.6430492035729749e-06, 'Sawalisch': 1.6430492035729749e-06, 'Parsifal': 2.4645738053594624e-06, 'Hans': 3.6968607080391934e-05, 'Knappertsbusch': 1.6430492035729749e-06, 'Meistersinger': 1.6430492035729749e-06, 'Rudolf': 1.6430492035729749e-06, 'Kempe': 2.4645738053594624e-06, 'Lotte': 1.6430492035729749e-06, 'Lehmann': 1.6430492035729749e-06, 'soprano': 5.750672212505412e-06, 'Bumbry': 1.6430492035729749e-06, 'Venus': 9.85829522143785e-06, 'booking': 5.750672212505412e-06, 'absurdities': 2.4645738053594624e-06, 'Bolshoi': 1.6430492035729749e-06, 'Leningrad-Kirov': 1.6430492035729749e-06, 'cradle': 4.929147610718925e-06, 'Maryinsky': 1.6430492035729749e-06, 'howl': 3.2860984071459497e-06, 'booker': 1.6430492035729749e-06, 'weep': 1.0679819823224336e-05, 'repertory': 4.107623008932437e-06, 'Dietrich': 4.929147610718925e-06, 'notified': 4.107623008932437e-06, 'Shorter': 2.4645738053594624e-06, 'balletomane': 1.6430492035729749e-06, 'juicy': 5.750672212505412e-06, 'budge': 3.2860984071459497e-06, 'Civic': 4.107623008932437e-06, 'Lena': 3.2860984071459497e-06, 'Horne': 2.4645738053594624e-06, 'Queried': 1.6430492035729749e-06, 'impasse': 2.4645738053594624e-06, 'minus': 7.393721416078387e-06, 'bookers': 1.6430492035729749e-06, 'cancellation': 2.4645738053594624e-06, 'bookings': 1.6430492035729749e-06, 'reopen': 1.6430492035729749e-06, 'Paintings': 2.4645738053594624e-06, 'Meadows': 2.4645738053594624e-06, 'Mondays': 1.6430492035729749e-06, "Cibula's": 1.6430492035729749e-06, '828': 1.6430492035729749e-06, 'Abstractions': 1.6430492035729749e-06, 'semi-abstractions': 1.6430492035729749e-06, 'Everett': 3.2860984071459497e-06, 'McNear': 1.6430492035729749e-06, 'operatic': 4.929147610718925e-06, 'cushion': 7.393721416078387e-06, 'Leni': 1.6430492035729749e-06, 'Bauer-Ecsy': 1.6430492035729749e-06, 'Lucia': 7.393721416078387e-06, 'Lammermoor': 2.4645738053594624e-06, 'Giovanni': 3.2860984071459497e-06, 'Franco': 2.4645738053594624e-06, 'Zeffirelli': 1.6430492035729749e-06, 'H': 1.8073541239302723e-05, 'Bates': 5.750672212505412e-06, 'scribbled': 1.6430492035729749e-06, 'farce': 3.2860984071459497e-06, 'Hark': 3.2860984071459497e-06, 'Lark': 1.6430492035729749e-06, 'lurking': 3.2860984071459497e-06, 'shenanigans': 3.2860984071459497e-06, 'rugged': 1.5608967433943262e-05, 'eccentrics': 2.4645738053594624e-06, 'Anyway': 8.215246017864873e-06, 'devastating': 4.929147610718925e-06, 'collisions': 2.4645738053594624e-06, 'imperial': 5.750672212505412e-06, 'stockbroker': 1.6430492035729749e-06, 'Jerebohm': 2.4645738053594624e-06, 'wily': 2.4645738053594624e-06, 'countryman': 1.6430492035729749e-06, 'Larkin': 9.036770619651361e-06, 'blandly': 2.4645738053594624e-06, 'boisterous': 1.6430492035729749e-06, 'chronicled': 1.6430492035729749e-06, "Bates'": 1.6430492035729749e-06, 'comedie': 1.6430492035729749e-06, 'humaine': 1.6430492035729749e-06, 'Pinkie': 1.6430492035729749e-06, 'affluence': 4.107623008932437e-06, 'stirs': 3.2860984071459497e-06, 'longing': 9.036770619651361e-06, 'atrociously': 1.6430492035729749e-06, 'rustic': 3.2860984071459497e-06, 'simplicities': 2.4645738053594624e-06, 'junior-grade': 1.6430492035729749e-06, 'castle': 5.750672212505412e-06, 'manor': 3.2860984071459497e-06, 'pageant': 2.4645738053594624e-06, 'bearded': 9.036770619651361e-06, 'courtiers': 4.107623008932437e-06, 'pheasants': 2.4645738053594624e-06, 'shoot': 2.300268885002165e-05, 'Splendor': 1.6430492035729749e-06, 'sorcery': 1.6430492035729749e-06, 'horror': 1.3965918230370285e-05, 'wasteland': 3.2860984071459497e-06, 'impress': 4.107623008932437e-06, 'Eliot': 4.107623008932437e-06, 'conjures': 2.4645738053594624e-06, 'herds': 5.750672212505412e-06, 'deer': 7.393721416078387e-06, 'embodies': 3.2860984071459497e-06, 'splendor': 5.750672212505412e-06, 'stained-glass': 1.6430492035729749e-06, 'unpremeditated': 1.6430492035729749e-06, 'patinas': 1.6430492035729749e-06, 'planks': 4.929147610718925e-06, 'dungeon': 2.4645738053594624e-06, 'kitchens': 4.929147610718925e-06, 'spaciousness': 3.2860984071459497e-06, 'butlers': 2.4645738053594624e-06, 'cooks': 7.393721416078387e-06, 'table-tennis': 1.6430492035729749e-06, 'mendacious': 1.6430492035729749e-06, 'Jerebohms': 3.2860984071459497e-06, 'manse': 1.6430492035729749e-06, 'immense': 1.232286902679731e-05, 'glorious': 1.3144393628583799e-05, 'Rolls-Royce': 3.2860984071459497e-06, 'vegetable': 9.036770619651361e-06, 'patch': 1.1501344425010824e-05, 'flyer': 3.2860984071459497e-06, 'capital-gains': 1.6430492035729749e-06, 'saddled': 4.107623008932437e-06, "fox's": 1.6430492035729749e-06, "Larkin's": 1.6430492035729749e-06, 'Piccadilly': 2.4645738053594624e-06, 'havoc': 3.2860984071459497e-06, 'Oneupmanship': 1.6430492035729749e-06, 'Larkins': 1.6430492035729749e-06, 'restock': 1.6430492035729749e-06, 'tangled': 4.929147610718925e-06, 'poaches': 1.6430492035729749e-06, 'nourishment': 1.6430492035729749e-06, 'callers': 3.2860984071459497e-06, 'brigadier': 4.929147610718925e-06, "Kipling's": 3.2860984071459497e-06, 'tales': 1.6430492035729746e-05, 'potting': 1.6430492035729749e-06, 'deck': 1.889506584108921e-05, 'quart': 3.2860984071459497e-06, 'sustenance': 3.2860984071459497e-06, 'dines': 1.6430492035729749e-06, 'relish': 7.393721416078387e-06, 'Miguel': 2.4645738053594624e-06, "Cervantes'": 1.6430492035729749e-06, 'Quixote': 4.107623008932437e-06, 'Fifty-fifth': 2.4645738053594624e-06, 'Sixty-eighth': 1.6430492035729749e-06, 'Playhouses': 1.6430492035729749e-06, 'visualization': 1.6430492035729749e-06, 'illustrious': 3.2860984071459497e-06, 'escapades': 2.4645738053594624e-06, 'tragi-comic': 1.6430492035729749e-06, 'knight-errant': 2.4645738053594624e-06, 'squire': 2.4645738053594624e-06, 'Sancho': 3.2860984071459497e-06, 'Panza': 3.2860984071459497e-06, 'seventeenth-century': 2.4645738053594624e-06, 'Spain': 6.5721968142918994e-06, 'abbreviated': 1.6430492035729749e-06, 'rendering': 9.85829522143785e-06, 'satire': 8.215246017864873e-06, 'chivalry': 2.4645738053594624e-06, 'affectingly': 1.6430492035729749e-06, 'exposition': 4.107623008932437e-06, 'Nikolai': 2.4645738053594624e-06, 'Cherkasov': 3.2860984071459497e-06, 'actor': 2.0538115044662184e-05, 'heroic': 1.7252016637516235e-05, 'Nevsky': 1.6430492035729749e-06, 'Terrible': 1.6430492035729749e-06, 'performs': 4.107623008932437e-06, 'lanky': 2.4645738053594624e-06, 'nobility': 4.107623008932437e-06, 'poignant': 5.750672212505412e-06, 'addle-brained': 1.6430492035729749e-06, 'self-appointed': 3.2860984071459497e-06, 'armor': 4.107623008932437e-06, 'museums': 9.036770619651361e-06, 'chivalrous': 2.4645738053594624e-06, 'knight-errantry': 1.6430492035729749e-06, 'joke': 1.889506584108921e-05, 'Cervantes': 1.6430492035729749e-06, 'gaunt': 4.929147610718925e-06, 'gracious': 8.215246017864873e-06, 'soberly': 4.107623008932437e-06, 'sincerely': 6.5721968142918994e-06, 'hypocrites': 2.4645738053594624e-06, 'rogues': 2.4645738053594624e-06, 'caricature': 2.4645738053594624e-06, 'deep-eyed': 1.6430492035729749e-06, 'bony': 6.5721968142918994e-06, 'crackpot': 1.6430492035729749e-06, 'affection': 1.5608967433943262e-05, 'Directed': 2.4645738053594624e-06, 'Grigory': 1.6430492035729749e-06, 'Kozintsev': 1.6430492035729749e-06, 'tempo': 4.107623008932437e-06, 'studiously': 2.4645738053594624e-06, 'shining': 1.8073541239302723e-05, 'brightly': 5.750672212505412e-06, 'impious': 2.4645738053594624e-06, 'complexities': 4.107623008932437e-06, 'abetted': 4.107623008932437e-06, 'appropriately': 4.107623008932437e-06, 'stilted': 2.4645738053594624e-06, 'excellently': 4.929147610718925e-06, 'dubbed': 4.107623008932437e-06, 'richness': 4.929147610718925e-06, 'roughness': 3.2860984071459497e-06, 'subtleties': 4.107623008932437e-06, 'helpfully': 4.107623008932437e-06, 'conveyed': 8.215246017864873e-06, 'artistry': 3.2860984071459497e-06, 'Splendid': 2.4645738053594624e-06, 'Tolubeyev': 1.6430492035729749e-06, 'comedians': 2.4645738053594624e-06, 'grotesque': 8.215246017864873e-06, 'broader': 1.6430492035729746e-05, 'comically': 2.4645738053594624e-06, 'don': 1.6430492035729749e-06, 'oftentimes': 2.4645738053594624e-06, 'buffoons': 1.6430492035729749e-06, 'concludes': 4.107623008932437e-06, 'facetiously': 1.6430492035729749e-06, 'wearisome': 2.4645738053594624e-06, "duke's": 1.6430492035729749e-06, 'poignancy': 2.4645738053594624e-06, 'thenceforth': 1.6430492035729749e-06, 'windmill': 1.6430492035729749e-06, 'deathbed': 2.4645738053594624e-06, 'wonderfulness': 1.6430492035729749e-06, 'finely': 4.107623008932437e-06, 'costumed': 1.6430492035729749e-06, 'magnificently': 6.5721968142918994e-06, 'photographed': 4.107623008932437e-06, 'ten-minute': 1.6430492035729749e-06, 'haunts': 2.4645738053594624e-06, 'Television': 1.6430492035729749e-06, 'uneasy': 1.889506584108921e-05, 'Chicago-style': 1.6430492035729749e-06, 'trimmings': 4.107623008932437e-06, 'portentous': 2.4645738053594624e-06, 'hypothesis': 1.4787442832156774e-05, 'Jazz': 1.5608967433943262e-05, 'NBC-TV': 1.6430492035729749e-06, 'Projects': 3.2860984071459497e-06, 'slotted': 1.6430492035729749e-06, 'Pont': 2.9574885664313547e-05, 'pleasing': 9.036770619651361e-06, 'Timex': 2.4645738053594624e-06, 'All-Star': 1.6430492035729749e-06, 'Lionel': 2.4645738053594624e-06, "Hampton's": 1.6430492035729749e-06, 'free-wheeling': 1.6430492035729749e-06, 'Dixieland': 3.2860984071459497e-06, 'interaction': 1.4787442832156774e-05, 'hearer': 2.4645738053594624e-06, "Crosby's": 2.4645738053594624e-06, 'rudderless': 1.6430492035729749e-06, 'luminaries': 1.6430492035729749e-06, 'Cameras': 1.6430492035729749e-06, "soloists'": 1.6430492035729749e-06, 'closeups': 2.4645738053594624e-06, 'considerately': 2.4645738053594624e-06, 'ensemble': 8.215246017864873e-06, 'faulted': 1.6430492035729749e-06, 'in-person': 1.6430492035729749e-06, 'Teagarden': 1.6430492035729749e-06, 'Krupa': 1.6430492035729749e-06, 'Pee': 2.4645738053594624e-06, 'Wee': 2.4645738053594624e-06, 'Cyr': 1.6430492035729749e-06, 'Lil': 1.6430492035729749e-06, 'Armstrong': 5.750672212505412e-06, 'Blossom': 1.6430492035729749e-06, 'Seeley': 1.6430492035729749e-06, 'buff': 4.929147610718925e-06, 'Garry': 1.0679819823224336e-05, 'host': 3.0396410266100035e-05, "script's": 1.6430492035729749e-06, 'Samples': 2.4645738053594624e-06, 'zoomed': 1.6430492035729749e-06, 'closeup': 1.6430492035729749e-06, 'poles': 7.393721416078387e-06, 'reinforced': 6.5721968142918994e-06, 'teens': 4.929147610718925e-06, "1920's": 7.393721416078387e-06, 'memorabilia': 2.4645738053594624e-06, 'interruption': 7.393721416078387e-06, 'auxiliary': 5.750672212505412e-06, "evening's": 1.6430492035729749e-06, 'samples': 2.300268885002165e-05, 'clip': 5.750672212505412e-06, 'Bix': 1.6430492035729749e-06, 'Beiderbecke': 1.6430492035729749e-06, 'trumpeter': 1.6430492035729749e-06, 'wink': 6.5721968142918994e-06, 'blotted': 3.2860984071459497e-06, 'glimpse': 1.3965918230370285e-05, 'Similarly': 1.3965918230370285e-05, 'photographs': 1.3965918230370285e-05, 'inquisitive': 1.6430492035729749e-06, 'newcomer': 6.5721968142918994e-06, 'bygone': 2.4645738053594624e-06, 'showcase': 3.2860984071459497e-06, 'not-quite-perfect': 1.6430492035729749e-06, "network's": 1.6430492035729749e-06, "Donizetti's": 1.6430492035729749e-06, 'salvos': 1.6430492035729749e-06, 'cheers': 4.107623008932437e-06, 'ovation': 2.4645738053594624e-06, 'curtain': 9.85829522143785e-06, 'Mad': 4.107623008932437e-06, 'Scene': 4.107623008932437e-06, 'composer': 2.6288787257167598e-05, 'disconcerting': 4.107623008932437e-06, 'waxed': 4.107623008932437e-06, 'applause-happy': 1.6430492035729749e-06, 'operagoers': 1.6430492035729749e-06, 'musicianship': 3.2860984071459497e-06, 'stylization': 2.4645738053594624e-06, 'trill': 3.2860984071459497e-06, 'topped': 6.5721968142918994e-06, 'sextet': 2.4645738053594624e-06, 'brilliantly': 8.215246017864873e-06, 'ecstasy': 5.750672212505412e-06, 'unfolding': 4.929147610718925e-06, 'coloratura': 2.4645738053594624e-06, 'immersed': 4.107623008932437e-06, 'outburst': 2.4645738053594624e-06, 'mastery': 9.036770619651361e-06, 'sopranos': 1.6430492035729749e-06, 'disciplined': 9.85829522143785e-06, 'Nervousness': 1.6430492035729749e-06, 'blemishes': 1.6430492035729749e-06, 'fullness': 4.107623008932437e-06, 'Technically': 1.6430492035729749e-06, 'aurally': 2.4645738053594624e-06, 'spell-binding': 1.6430492035729749e-06, 'dramatically': 9.036770619651361e-06, 'Silvio': 1.6430492035729749e-06, 'Varviso': 1.6430492035729749e-06, 'injected': 2.4645738053594624e-06, "singers'": 1.6430492035729749e-06, 'Tucker': 4.929147610718925e-06, 'Edgardo': 1.6430492035729749e-06, 'bel': 3.2860984071459497e-06, 'canto': 3.2860984071459497e-06, 'serviceable': 4.107623008932437e-06, 'Covent': 2.4645738053594624e-06, 'Bellini': 3.2860984071459497e-06, 'Tenda': 1.6430492035729749e-06, 'Sonambula': 1.6430492035729749e-06, 'Ping-pong': 1.6430492035729749e-06, 'Phase': 5.750672212505412e-06, 'Review': 9.036770619651361e-06, 'SP-44001': 1.6430492035729749e-06, 'bands': 9.85829522143785e-06, 'Complete': 3.2860984071459497e-06, 'interruptions': 2.4645738053594624e-06, 'sundry': 4.929147610718925e-06, 'disc': 5.750672212505412e-06, "London's": 3.2860984071459497e-06, 'jackets': 5.750672212505412e-06, 'Directionality': 1.6430492035729749e-06, 'mix': 1.1501344425010824e-05, 'farther': 2.546726265538111e-05, 'placement': 1.1501344425010824e-05, 'nearer': 1.232286902679731e-05, 'monaural': 1.6430492035729749e-06, 'microphoning': 1.6430492035729749e-06, 'mixed': 3.0396410266100035e-05, 'percussion': 2.4645738053594624e-06, 'percussive': 4.929147610718925e-06, 'Drums': 1.6430492035729749e-06, 'xylophones': 1.6430492035729749e-06, 'castanets': 1.6430492035729749e-06, 'volley': 5.750672212505412e-06, 'Percussive': 2.4645738053594624e-06, 'Twenties': 4.107623008932437e-06, 'SP-44006': 1.6430492035729749e-06, 'memories': 1.3144393628583799e-05, "Keating's": 1.6430492035729749e-06, 'Kombo': 1.6430492035729749e-06, 'tingling': 5.750672212505412e-06, 'Moods': 1.6430492035729749e-06, 'SP-44005': 1.6430492035729749e-06, 'Percussion': 2.4645738053594624e-06, 'SP-44002': 1.6430492035729749e-06, 'frequencies': 2.6288787257167598e-05, 'brassy': 2.4645738053594624e-06, 'Melody': 1.6430492035729749e-06, 'Pianos': 1.6430492035729749e-06, 'SP-44007': 1.6430492035729749e-06, 'gratifyingly': 1.6430492035729749e-06, 'resultant': 1.0679819823224336e-05, 'masking': 1.6430492035729749e-06, 'potentialities': 7.393721416078387e-06, 'manage': 1.7252016637516235e-05, 'authentic': 1.7252016637516235e-05, 'Strange': 7.393721416078387e-06, 'authenticity': 7.393721416078387e-06, 'imprimatur': 2.4645738053594624e-06, 'impeccably': 2.4645738053594624e-06, 'unimpeachable': 2.4645738053594624e-06, 'studios': 2.4645738053594624e-06, 'cadre': 3.2860984071459497e-06, 'sketches': 1.6430492035729746e-05, 'interiors': 4.107623008932437e-06, 'architectural': 7.393721416078387e-06, 'paraphernalia': 1.6430492035729749e-06, 'complied': 5.750672212505412e-06, 'alas': 5.750672212505412e-06, "set's": 1.6430492035729749e-06, 'storyline': 2.4645738053594624e-06, 'unrealistic': 3.2860984071459497e-06, 'Naomi': 2.4645738053594624e-06, 'Boaz': 2.4645738053594624e-06, 'meticulously': 5.750672212505412e-06, 'adherence': 7.393721416078387e-06, 'involves': 3.450403327503247e-05, 'intrigues': 3.2860984071459497e-06, 'twists': 5.750672212505412e-06, 'traced': 1.0679819823224336e-05, 'Gospels': 4.107623008932437e-06, 'Murrow': 1.6430492035729749e-06, 'Information': 9.85829522143785e-06, 'unauthentic': 1.6430492035729749e-06, 'storylines': 1.6430492035729749e-06, 'future-day': 1.6430492035729749e-06, 'Gibbon': 2.4645738053594624e-06, 'Macaulay': 1.6430492035729749e-06, 'recounting': 2.4645738053594624e-06, 'saga': 5.750672212505412e-06, 'ignorant': 1.0679819823224336e-05, 'Francois': 2.4645738053594624e-06, "D'Albert": 4.107623008932437e-06, 'Hungarian-born': 1.6430492035729749e-06, 'Conservatory': 2.4645738053594624e-06, 'Jenni': 1.6430492035729749e-06, 'acoustics': 1.6430492035729749e-06, 'misgauged': 1.6430492035729749e-06, "Jenni's": 1.6430492035729749e-06, 'vying': 3.2860984071459497e-06, 'overdriving': 1.6430492035729749e-06, 'overriding': 2.4645738053594624e-06, 'drawback': 2.4645738053594624e-06, "Mozart's": 1.6430492035729749e-06, 'Sonata': 7.393721416078387e-06, '526': 1.6430492035729749e-06, 'clattered': 4.929147610718925e-06, 'noisily': 4.107623008932437e-06, "Brahm's": 1.6430492035729749e-06, "artists'": 4.929147610718925e-06, 'large-scale': 6.5721968142918994e-06, 'eschews': 1.6430492035729749e-06, 'vibrato': 1.6430492035729749e-06, 'Brahmsian': 2.4645738053594624e-06, 'directness': 4.107623008932437e-06, 'Violin': 1.6430492035729749e-06, 'Piano': 7.393721416078387e-06, 'Bella': 2.4645738053594624e-06, 'Fleming': 2.4645738053594624e-06, 'refers': 1.5608967433943262e-05, 'nickname': 9.036770619651361e-06, 'Film': 2.4645738053594624e-06, "work's": 1.6430492035729749e-06, 'melodically': 1.6430492035729749e-06, 'sentimental': 1.3144393628583799e-05, 'capricious': 1.6430492035729749e-06, 'Ravel-like': 1.6430492035729749e-06, 'wornout': 1.6430492035729749e-06, 'idiom': 6.5721968142918994e-06, 'conjugal': 3.2860984071459497e-06, 'felicity': 3.2860984071459497e-06, 'smack': 4.107623008932437e-06, 'Dohnanyi': 1.6430492035729749e-06, 'Hubay': 1.6430492035729749e-06, 'Paganini': 1.6430492035729749e-06, 'virtuoso': 3.2860984071459497e-06, 'sleeve': 9.85829522143785e-06, 'lyric': 1.0679819823224336e-05, 'Sarasate': 1.6430492035729749e-06, 'Saint-Saens': 1.6430492035729749e-06, 'Xydis': 4.929147610718925e-06, 'Philharmonic': 8.215246017864873e-06, 'Lewisohn': 4.107623008932437e-06, 'Greek-born': 1.6430492035729749e-06, "pianist's": 4.107623008932437e-06, 'recital': 5.750672212505412e-06, 'keyboard': 4.107623008932437e-06, 'commands': 1.232286902679731e-05, 'virtuosity': 1.6430492035729749e-06, 'composers': 1.0679819823224336e-05, 'Rachmaninoff': 2.4645738053594624e-06, 'Prelude': 2.4645738053594624e-06, 'Op.': 7.393721416078387e-06, 'deep-sounding': 1.6430492035729749e-06, 'filagree': 1.6430492035729749e-06, 'treble': 2.4645738053594624e-06, 'Kabalevsky': 1.6430492035729749e-06, 'Preludes': 1.6430492035729749e-06, 'songful': 1.6430492035729749e-06, 'Prokofieff': 2.793183646074057e-05, 'Seventh': 1.4787442832156774e-05, 'romanticism': 2.4645738053594624e-06, 'bravura': 1.6430492035729749e-06, "Xydis'": 1.6430492035729749e-06, "Mendelssohn's": 1.6430492035729749e-06, 'Variations': 4.107623008932437e-06, 'Serieuses': 1.6430492035729749e-06, 'nicely': 8.215246017864873e-06, "Haydn's": 1.6430492035729749e-06, 'E': 3.1217934867886523e-05, 'unfailingly': 2.4645738053594624e-06, "Chopin's": 1.6430492035729749e-06, 'lapse': 5.750672212505412e-06, 'deepest': 1.1501344425010824e-05, 'poorest': 3.2860984071459497e-06, 'Defeat': 3.2860984071459497e-06, 'Victory': 6.5721968142918994e-06, 'Viscount': 3.2860984071459497e-06, 'weighted': 4.107623008932437e-06, 'technicalities': 2.4645738053594624e-06, 'abridged': 1.6430492035729749e-06, 'counter-moves': 1.6430492035729749e-06, 'retreat': 1.232286902679731e-05, 'ill-prepared': 1.6430492035729749e-06, 'ill-equipped': 2.4645738053594624e-06, 'outmaneuvered': 1.6430492035729749e-06, 'outfought': 1.6430492035729749e-06, 'outgeneraled': 1.6430492035729749e-06, 'Gurkhas': 1.6430492035729749e-06, 'bitterly': 1.3965918230370285e-05, 'battles': 6.5721968142918994e-06, 'jungles': 4.107623008932437e-06, 'Forgotten': 1.6430492035729749e-06, 'priorities': 4.929147610718925e-06, 'Parts': 4.107623008932437e-06, 'Burmese': 4.107623008932437e-06, 'well-written': 1.6430492035729749e-06, 'anecdotes': 4.107623008932437e-06, 'praises': 1.6430492035729749e-06, 'tireless': 4.107623008932437e-06, 'self-critical': 1.6430492035729749e-06, 'Remaking': 1.6430492035729749e-06, 'narrative': 1.97165904428757e-05, 'unending': 3.2860984071459497e-06, 'myriad': 6.5721968142918994e-06, 'remnants': 2.4645738053594624e-06, 'enlightening': 3.2860984071459497e-06, 'accordingly': 1.0679819823224336e-05, 'noncombatant': 1.6430492035729749e-06, 'Brass': 1.6430492035729749e-06, 'hygiene': 2.4645738053594624e-06, 'scanty': 4.107623008932437e-06, 'logistics': 4.107623008932437e-06, 'transport': 1.4787442832156774e-05, 'airdrops': 1.6430492035729749e-06, 'airstrips': 1.6430492035729749e-06, 'barges': 3.2860984071459497e-06, 'Expected': 1.6430492035729749e-06, 'bolder': 2.4645738053594624e-06, 'depresses': 1.6430492035729749e-06, 'commanders': 4.929147610718925e-06, 'marched': 8.215246017864873e-06, 'till': 3.861165628396491e-05, '495': 1.6430492035729749e-06, 'Brooding': 2.4645738053594624e-06, 'careless': 6.5721968142918994e-06, 'encumbered': 2.4645738053594624e-06, 'humanitarian': 3.2860984071459497e-06, 'mutilation': 1.6430492035729749e-06, 'uncomplainingly': 1.6430492035729749e-06, 'bunch': 1.3965918230370285e-05, 'buckaroos': 1.6430492035729749e-06, 'Choir': 4.107623008932437e-06, 'loped': 1.6430492035729749e-06, 'corralling': 1.6430492035729749e-06, 'high-minded': 1.6430492035729749e-06, "choir's": 1.6430492035729749e-06, 'Geroge': 1.6430492035729749e-06, 'Bragg': 2.4645738053594624e-06, 'twenty-six': 4.107623008932437e-06, 'Baroque': 3.2860984071459497e-06, 'madrigals': 3.2860984071459497e-06, 'motets': 1.6430492035729749e-06, "Pergolesi's": 1.6430492035729749e-06, 'Stabat': 1.6430492035729749e-06, 'Mater': 1.6430492035729749e-06, 'Britten': 2.4645738053594624e-06, 'Ceremonial': 1.6430492035729749e-06, 'Carols': 1.6430492035729749e-06, 'well-balanced': 1.6430492035729749e-06, 'untrained': 1.6430492035729749e-06, 'unsettled': 4.107623008932437e-06, 'shrillness': 1.6430492035729749e-06, 'earsplitting': 2.4645738053594624e-06, 'waver': 3.2860984071459497e-06, 'bleat': 1.6430492035729749e-06, 'prodigies': 1.6430492035729749e-06, 'Lines': 4.107623008932437e-06, 'Tempos': 1.6430492035729749e-06, 'accompaniments': 3.2860984071459497e-06, 'Istvan': 1.6430492035729749e-06, 'Szelenyi': 1.6430492035729749e-06, 'stylish': 1.6430492035729749e-06, 'Dixon': 3.2860984071459497e-06, 'motet': 1.6430492035729749e-06, 'enchantingly': 1.6430492035729749e-06, 'Schockler': 1.6430492035729749e-06, 'stomped': 2.4645738053594624e-06, 'cowboy': 1.3965918230370285e-05, 'costume': 9.036770619651361e-06, 'Mazowsze': 1.6430492035729749e-06, 'three-week': 1.6430492035729749e-06, 'ingratiating': 4.107623008932437e-06, 'high-spirited': 3.2860984071459497e-06, 'communicative': 5.750672212505412e-06, 'vivacious': 2.4645738053594624e-06, 'nonstop': 1.6430492035729749e-06, 'admirable': 9.036770619651361e-06, 'continuity': 2.0538115044662184e-05, 'pauses': 2.4645738053594624e-06, 'gleaned': 1.6430492035729749e-06, 'Mira': 1.6430492035729749e-06, 'Ziminska-Sygietynska': 1.6430492035729749e-06, 'selectively': 2.4645738053594624e-06, 'choreographed': 4.107623008932437e-06, 'professionally': 4.107623008932437e-06, 'intimate': 1.8073541239302723e-05, 'exuberant': 6.5721968142918994e-06, 'flirtatious': 1.6430492035729749e-06, 'identifiable': 4.929147610718925e-06, 'Krakowiak': 1.6430492035729749e-06, 'closes': 5.750672212505412e-06, 'mazurka': 2.4645738053594624e-06, 'Witold': 1.6430492035729749e-06, 'Zapala': 1.6430492035729749e-06, "Moniuszko's": 1.6430492035729749e-06, 'Strasny': 1.6430492035729749e-06, "Dwor'": 1.6430492035729749e-06, 'polonaise': 1.6430492035729749e-06, 'Tatras': 1.6430492035729749e-06, 'on-stage': 1.6430492035729749e-06, 'Theatre-by-the-Sea': 2.4645738053594624e-06, 'Matunuck': 3.2860984071459497e-06, 'Hearts': 2.4645738053594624e-06, 'Brooke': 2.4645738053594624e-06, 'settings': 8.215246017864873e-06, "Kerr's": 1.6430492035729749e-06, 'witty': 9.036770619651361e-06, 'daisies': 3.2860984071459497e-06, 'stamped': 6.5721968142918994e-06, 'cartoonist': 3.2860984071459497e-06, 'arty': 1.6430492035729749e-06, 'specialty': 3.2860984071459497e-06, 'adopts': 2.4645738053594624e-06, 'fledgling': 3.2860984071459497e-06, 'hires': 1.6430492035729749e-06, "hero's": 2.4645738053594624e-06, 'sweetheart-secretary': 1.6430492035729749e-06, 'Heffernan': 1.6430492035729749e-06, 'edgy': 2.4645738053594624e-06, 'head-in-the-clouds': 1.6430492035729749e-06, 'flawless': 2.4645738053594624e-06, 'Hedison': 2.4645738053594624e-06, "Providence's": 1.6430492035729749e-06, 'Century-Fox': 1.6430492035729749e-06, 'dizzy': 4.107623008932437e-06, 'Coletta': 1.6430492035729749e-06, 'Playhouse': 4.107623008932437e-06, 'Epitaph': 3.2860984071459497e-06, 'Osborne': 2.4645738053594624e-06, 'Creighton': 3.2860984071459497e-06, 'angriest': 1.6430492035729749e-06, 'chap': 2.4645738053594624e-06, 'embittered': 1.6430492035729749e-06, 'scoundrel': 1.6430492035729749e-06, 'finger-tips': 1.6430492035729749e-06, 'cliches': 4.929147610718925e-06, 'eroded': 4.107623008932437e-06, 'irritations': 3.2860984071459497e-06, 'souls': 1.889506584108921e-05, 'enters': 1.1501344425010824e-05, 'unsuccessful': 7.393721416078387e-06, 'lingers': 2.4645738053594624e-06, 'overcomes': 6.5721968142918994e-06, 'awfully': 9.036770619651361e-06, 'talky': 1.6430492035729749e-06, 'forgotten': 3.1217934867886523e-05, 'Groom': 1.6430492035729749e-06, 'blaze': 6.5721968142918994e-06, 'impassioned': 7.393721416078387e-06, 'proficient': 4.929147610718925e-06, 'Laura': 1.7252016637516235e-05, 'intensely': 9.036770619651361e-06, 'vibrant': 5.750672212505412e-06, 'shriek': 4.929147610718925e-06, 'explode': 5.750672212505412e-06, 'Lawless': 1.6430492035729749e-06, 'belligerent': 4.929147610718925e-06, 'spider': 2.4645738053594624e-06, 'scratchy': 1.6430492035729749e-06, 'Hildy': 1.6430492035729749e-06, 'Weissman': 1.6430492035729749e-06, 'projection': 8.215246017864873e-06, 'Musical': 4.929147610718925e-06, "Where's": 5.750672212505412e-06, 'lyrics': 1.3144393628583799e-05, 'Loesser': 3.2860984071459497e-06, 'Christopher': 4.929147610718925e-06, 'Hewett': 1.6430492035729749e-06, 'Conlow': 1.6430492035729749e-06, 'Matlowsky': 1.6430492035729749e-06, 'Amy': 1.3144393628583799e-05, 'Shelley': 1.0679819823224336e-05, 'Berman': 5.750672212505412e-06, 'Love': 1.4787442832156774e-05, 'tantalizingly': 1.6430492035729749e-06, 'rousing': 7.393721416078387e-06, 'sifted': 3.2860984071459497e-06, 'ambling': 1.6430492035729749e-06, 'chords': 5.750672212505412e-06, 'whispering': 4.929147610718925e-06, "Berman's": 1.6430492035729749e-06, 'outdo': 3.2860984071459497e-06, 'Bolger': 2.4645738053594624e-06, 'hamming': 1.6430492035729749e-06, "Charley's": 1.6430492035729749e-06, 'Aunt': 1.232286902679731e-05, 'evocations': 2.4645738053594624e-06, 'voluminous': 3.2860984071459497e-06, 'gowns': 2.4645738053594624e-06, 'Girl': 8.215246017864873e-06, 'Ashmolean': 1.6430492035729749e-06, 'Marching': 1.6430492035729749e-06, "Students'": 2.4645738053594624e-06, 'sultry': 1.6430492035729749e-06, 'fantasia': 1.6430492035729749e-06, 'monologist': 1.6430492035729749e-06, 'Sparrow-size': 1.6430492035729749e-06, 'sparkling': 4.929147610718925e-06, 'cheerful': 8.215246017864873e-06, 'suitably': 3.2860984071459497e-06, 'perky': 2.4645738053594624e-06, 'Melisande': 1.6430492035729749e-06, 'Congdon': 1.6430492035729749e-06, 'positively': 8.215246017864873e-06, 'Ought': 2.4645738053594624e-06, "Knill's": 1.6430492035729749e-06, "Tahse's": 1.6430492035729749e-06, 'Fiorello': 4.107623008932437e-06, 'Weidman': 1.6430492035729749e-06, 'Abbott': 2.4645738053594624e-06, 'Bock': 1.6430492035729749e-06, 'Harnick': 1.6430492035729749e-06, 'Gennaro': 1.6430492035729749e-06, 'Eckart': 1.6430492035729749e-06, 'Pulitzer': 3.2860984071459497e-06, 'chorines': 2.4645738053594624e-06, 'evoke': 5.750672212505412e-06, 'lance': 3.2860984071459497e-06, 'Performed': 1.6430492035729749e-06, 'principals': 3.2860984071459497e-06, 'resemblance': 1.1501344425010824e-05, 'LaGuardia': 3.2860984071459497e-06, 'Bosley': 1.6430492035729749e-06, 'amazed': 9.85829522143785e-06, 'Rudy': 4.107623008932437e-06, 'distraught': 1.6430492035729749e-06, 'chieftain': 4.107623008932437e-06, 'Lipson': 1.6430492035729749e-06, "Shirley's": 1.6430492035729749e-06, 'sincerity': 1.1501344425010824e-05, 'hurrying': 4.107623008932437e-06, 'Charlotte': 1.0679819823224336e-05, 'Jen': 6.5721968142918994e-06, 'Thea': 1.6430492035729749e-06, 'Zeme': 1.6430492035729749e-06, 'Dora': 2.4645738053594624e-06, 'verve': 4.107623008932437e-06, 'Floyd': 2.4645738053594624e-06, 'cop': 1.232286902679731e-05, 'promoted': 1.0679819823224336e-05, 'novelties': 6.5721968142918994e-06, 'fugual': 1.6430492035729749e-06, 'Poker': 1.6430492035729749e-06, 'splendidly': 4.107623008932437e-06, 'tuneful': 1.6430492035729749e-06, 'ward-heelers': 1.6430492035729749e-06, 'Tin': 1.6430492035729749e-06, "Floyd's": 2.4645738053594624e-06, 'penthouse': 1.6430492035729749e-06, 'frolic': 2.4645738053594624e-06, 'hackneyed': 2.4645738053594624e-06, 'routines': 3.2860984071459497e-06, 'choreographic': 3.2860984071459497e-06, "era's": 2.4645738053594624e-06, "LaGuardia's": 1.6430492035729749e-06, 'multi-lingual': 1.6430492035729749e-06, 'folk-dance': 1.6430492035729749e-06, 'Tahse': 1.6430492035729749e-06, 'stager': 1.6430492035729749e-06, 'touring': 4.929147610718925e-06, 'road-show': 1.6430492035729749e-06, 'obtrusiveness': 1.6430492035729749e-06, 'wondered': 4.8469951505402755e-05, 'distraction': 3.2860984071459497e-06, 'hereabouts': 2.4645738053594624e-06, "Loew's": 1.6430492035729749e-06, 'MGM': 1.6430492035729749e-06, 'Pasternak': 1.6430492035729749e-06, 'Levin': 1.6430492035729749e-06, 'screenplay': 1.6430492035729749e-06, 'sterling': 2.4645738053594624e-06, 'upright': 1.232286902679731e-05, 'Yalies': 1.6430492035729749e-06, 'virtual': 4.929147610718925e-06, 'disqualify': 1.6430492035729749e-06, 'objectivity': 2.4645738053594624e-06, 'collegians': 1.6430492035729749e-06, 'commonly': 2.3824213451808133e-05, 'vexes': 1.6430492035729749e-06, 'healthily': 2.4645738053594624e-06, 'profess': 4.929147610718925e-06, 'whipping': 6.5721968142918994e-06, 'hilariously': 1.6430492035729749e-06, 'impromptu': 3.2860984071459497e-06, 'plunge': 4.929147610718925e-06, 'nightclub': 2.4645738053594624e-06, 'mermaid': 1.6430492035729749e-06, 'Dolores': 1.7252016637516235e-05, 'believable': 1.6430492035729749e-06, 'Paula': 1.6430492035729746e-05, "Prentiss'": 1.6430492035729749e-06, 'unstilted': 1.6430492035729749e-06, 'Hutton': 2.4645738053594624e-06, 'Gorshin': 1.6430492035729749e-06, 'Yvette': 2.4645738053594624e-06, 'Mimieux': 1.6430492035729749e-06, 'despoilers': 1.6430492035729749e-06, 'fracases': 1.6430492035729749e-06, 'biting': 5.750672212505412e-06, 'springtime': 4.107623008932437e-06, 'Silence': 4.929147610718925e-06, 'detective': 3.94331808857514e-05, 'open-minded': 1.6430492035729749e-06, 'sensibility': 6.5721968142918994e-06, 'quicksilver': 2.4645738053594624e-06, 'gallantry': 3.2860984071459497e-06, 'editorship': 1.6430492035729749e-06, 'Kronenberger': 1.6430492035729749e-06, 'Hardwick': 3.2860984071459497e-06, 'admirably': 4.929147610718925e-06, "James's": 2.4645738053594624e-06, 'genius': 1.97165904428757e-05, 'felicities': 2.4645738053594624e-06, "Henry's": 2.4645738053594624e-06, 'subtly': 5.750672212505412e-06, 'elegantly': 1.6430492035729749e-06, 'intricate': 9.036770619651361e-06, 'castles': 3.2860984071459497e-06, 'trenchant': 4.107623008932437e-06, 'forthright': 5.750672212505412e-06, 'grown-up': 4.107623008932437e-06, 'penned': 4.107623008932437e-06, 'unpatronizing': 1.6430492035729749e-06, 'philosophic': 9.036770619651361e-06, 'magnanimity': 1.6430492035729749e-06, "Whitehead's": 2.4645738053594624e-06, 'adorable': 3.2860984071459497e-06, 'speaks': 1.5608967433943262e-05, 'aridity': 2.4645738053594624e-06, 'passionate': 1.0679819823224336e-05, 'differing': 1.6430492035729749e-06, 'opprobrium': 1.6430492035729749e-06, 'well-meaning': 3.2860984071459497e-06, 'simpler': 1.5608967433943262e-05, 'colleague': 8.215246017864873e-06, 'Josiah': 2.4645738053594624e-06, 'Royce': 3.2860984071459497e-06, 'differed': 1.1501344425010824e-05, 'Different': 5.750672212505412e-06, 'yours': 2.0538115044662184e-05, 'importantly': 7.393721416078387e-06, 'Santayana': 3.2860984071459497e-06, "Santayana's": 1.6430492035729749e-06, 'reject': 9.036770619651361e-06, 'Platonism': 4.107623008932437e-06, 'squealed': 2.4645738053594624e-06, 'imperturbable': 1.6430492035729749e-06, 'Writing': 5.750672212505412e-06, 'Glorious': 1.6430492035729749e-06, 'fronting': 3.2860984071459497e-06, 'universe': 5.2577574514335196e-05, 'diverse': 1.1501344425010824e-05, 'belaboring': 2.4645738053594624e-06, 'jocular': 4.107623008932437e-06, 'seriousness': 7.393721416078387e-06, 'hint': 8.215246017864873e-06, 'prophet': 4.107623008932437e-06, 'polemics': 1.6430492035729749e-06, 'recriminations': 3.2860984071459497e-06, 'polemic': 1.6430492035729749e-06, 'singly': 5.750672212505412e-06, 'impersonally': 1.6430492035729749e-06, 'truer': 2.4645738053594624e-06, 'displace': 3.2860984071459497e-06, 'Thurber': 5.750672212505412e-06, 'numbering': 6.5721968142918994e-06, 'schoolboy': 3.2860984071459497e-06, 'primitive-eclogue': 1.6430492035729749e-06, 'graffiti': 1.6430492035729749e-06, 'scratched': 6.5721968142918994e-06, 'cave': 8.215246017864873e-06, 'Yorker': 6.5721968142918994e-06, 'comprises': 3.2860984071459497e-06, 'unstrung': 2.4645738053594624e-06, 'necklace': 2.4645738053594624e-06, 'thread': 1.1501344425010824e-05, 'cunningly': 3.2860984071459497e-06, 'inserted': 1.3965918230370285e-05, 'unifying': 4.107623008932437e-06, 'sadly': 1.0679819823224336e-05, 'word-games': 1.6430492035729749e-06, 'insomniacs': 1.6430492035729749e-06, 'hospitalized': 1.6430492035729749e-06, "P's": 1.6430492035729749e-06, 'palindromes': 1.6430492035729749e-06, 'paraphrases': 1.6430492035729749e-06, 'parodies': 1.6430492035729749e-06, 'Tyranny': 1.6430492035729749e-06, 'Trivia': 1.6430492035729749e-06, 'arbitrary': 1.8073541239302723e-05, 'alphabetical': 4.107623008932437e-06, 'associations': 2.300268885002165e-05, 'slumber': 3.2860984071459497e-06, 'vistas': 3.2860984071459497e-06, 'hairshirt': 1.6430492035729749e-06, 'asceticism': 1.6430492035729749e-06, 'scholarly': 7.393721416078387e-06, 'monographs': 1.6430492035729749e-06, 'Countrymen': 1.6430492035729749e-06, 'Lend': 1.6430492035729749e-06, 'Ear-Muffs': 1.6430492035729749e-06, 'Phrase': 1.6430492035729749e-06, 'Drifts': 3.2860984071459497e-06, 'Dream': 4.107623008932437e-06, 'Vocabularianism': 1.6430492035729749e-06, "Thurber's": 2.4645738053594624e-06, 'curative': 1.6430492035729749e-06, 'potions': 1.6430492035729749e-06, 'metaphor': 4.929147610718925e-06, 'malapropism': 1.6430492035729749e-06, 'gobbledygook': 1.6430492035729749e-06, 'paean': 2.4645738053594624e-06, 'Herald': 9.85829522143785e-06, 'exaggerating': 4.107623008932437e-06, 'ballyhooey': 1.6430492035729749e-06, 'Kooks': 1.6430492035729749e-06, 'Crumble': 1.6430492035729749e-06, 'amusingly': 2.4645738053594624e-06, 'sneaky': 2.4645738053594624e-06, 'announcers': 1.6430492035729749e-06, 'homogenize': 1.6430492035729749e-06, 'radio-TV': 3.2860984071459497e-06, 'Watchers': 1.6430492035729749e-06, 'veritable': 4.107623008932437e-06, 'waking': 9.036770619651361e-06, 'semi-serious': 1.6430492035729749e-06, 'Wings': 3.2860984071459497e-06, 'noteworthy': 6.5721968142918994e-06, 'keenly': 3.2860984071459497e-06, 'little-known': 1.6430492035729749e-06, 'Wister': 2.4645738053594624e-06, 'Virginian': 4.107623008932437e-06, 'gazer': 1.6430492035729749e-06, 'superimposed': 5.750672212505412e-06, 'shadings': 1.6430492035729749e-06, 'mildly': 6.5721968142918994e-06, 'epigrammatic': 1.6430492035729749e-06, 'utterance': 4.929147610718925e-06, 'quotation': 4.107623008932437e-06, 'glean': 1.6430492035729749e-06, 'nectareous': 1.6430492035729749e-06, 'essences': 2.4645738053594624e-06, 'bang-sashes': 1.6430492035729749e-06, 'banged': 4.107623008932437e-06, 'sash': 3.2860984071459497e-06, 'leaped': 1.7252016637516235e-05, 'sleep': 5.2577574514335196e-05, 'reassuringly': 2.4645738053594624e-06, 'indebted': 9.036770619651361e-06, 'artistically': 4.929147610718925e-06, 'surrealist': 1.6430492035729749e-06, 'Dali': 1.6430492035729749e-06, 'conceived': 2.218116424823516e-05, 'viscera': 1.6430492035729749e-06, 'protoplasmic': 1.6430492035729749e-06, 'pen-and-ink': 2.4645738053594624e-06, 'unimpaired': 2.4645738053594624e-06, 'unaffected': 3.2860984071459497e-06, 'humanness': 2.4645738053594624e-06, 'concluding': 6.5721968142918994e-06, 'Low': 1.1501344425010824e-05, 'puzzler': 1.6430492035729749e-06, 'exposing': 4.107623008932437e-06, 'shams': 1.6430492035729749e-06, 'self-deceptions': 1.6430492035729749e-06, 'Blimp': 1.6430492035729749e-06, 'TUC': 1.6430492035729749e-06, 'acquainted': 1.0679819823224336e-05, 'robe': 5.750672212505412e-06, 'thirties': 4.107623008932437e-06, 'Nazis': 1.0679819823224336e-05, 'lightning': 1.0679819823224336e-05, 'corrosion': 4.107623008932437e-06, 'wield': 1.6430492035729749e-06, 'Hitler': 7.393721416078387e-06, 'piecemeal': 2.4645738053594624e-06, 'crusade': 4.107623008932437e-06, 'nightmarish': 2.4645738053594624e-06, 'self-confident': 3.2860984071459497e-06, 'Jovian': 1.6430492035729749e-06, 'stupidities': 1.6430492035729749e-06, 'outrage': 4.107623008932437e-06, 'Confucius': 2.4645738053594624e-06, 'lunchtime': 2.4645738053594624e-06, 'rarely': 3.286098407145949e-05, 'capably': 1.6430492035729749e-06, 'sardonic': 2.4645738053594624e-06, 'wrath': 7.393721416078387e-06, 'Eden': 8.215246017864873e-06, 'relented': 3.2860984071459497e-06, "Churchill's": 2.4645738053594624e-06, 'Hillary': 1.6430492035729749e-06, 'Tensing': 1.6430492035729749e-06, 'Everest': 2.4645738053594624e-06, 'Matsu': 1.6430492035729749e-06, 'accolade': 2.4645738053594624e-06, 'foibles': 3.2860984071459497e-06, 'insubstantial': 2.4645738053594624e-06, 'puny': 4.929147610718925e-06, 'tyrannical': 1.6430492035729749e-06, 'caricaturist': 1.6430492035729749e-06, 'mortals': 1.6430492035729749e-06, 'vices': 4.929147610718925e-06, 'moderately': 5.750672212505412e-06, 'captions': 1.6430492035729749e-06, 'tart': 6.5721968142918994e-06, 'epigrams': 2.4645738053594624e-06, 'fox': 8.215246017864873e-06, 'slicker': 3.2860984071459497e-06, 'lebensraum': 1.6430492035729749e-06, 'Catfish': 2.4645738053594624e-06, 'allegory': 3.2860984071459497e-06, "Burman's": 1.6430492035729749e-06, 'wharf': 2.4645738053594624e-06, 'rat': 5.750672212505412e-06, 'despots': 1.6430492035729749e-06, 'gullible': 2.4645738053594624e-06, 'Doc': 1.6430492035729746e-05, 'Raccoon': 1.6430492035729749e-06, 'vegetarian': 1.6430492035729749e-06, 'eagle': 4.107623008932437e-06, 'posing': 3.2860984071459497e-06, 'fifty-cent': 2.4645738053594624e-06, 'populace': 4.107623008932437e-06, 'rats': 3.2860984071459497e-06, 'aggrieved': 3.2860984071459497e-06, 'extermination': 1.6430492035729749e-06, 'bullies': 2.4645738053594624e-06, 'territorial': 1.0679819823224336e-05, 'fable': 2.4645738053594624e-06, 'Burman': 2.4645738053594624e-06, 'decadent': 2.4645738053594624e-06, 'themes': 7.393721416078387e-06, 'laureate': 2.4645738053594624e-06, 'fables': 2.4645738053594624e-06, 'dialect': 9.036770619651361e-06, 'Joel': 1.0679819823224336e-05, 'Remus': 1.6430492035729749e-06, "Kennan's": 3.2860984071459497e-06, 'Tsarism': 1.6430492035729749e-06, 'Scrupulous': 1.6430492035729749e-06, 'characterization': 7.393721416078387e-06, 'reliable': 1.889506584108921e-05, 'readable': 2.4645738053594624e-06, 'possesses': 7.393721416078387e-06, 'uncommonly': 1.6430492035729749e-06, 'topical': 4.107623008932437e-06, 'Kennan': 6.5721968142918994e-06, 'appraisals': 2.4645738053594624e-06, 'revolutions': 6.5721968142918994e-06, 'pessimistic': 5.750672212505412e-06, 'mitigating': 2.4645738053594624e-06, 'circumstance': 1.0679819823224336e-05, 'sweepingly': 1.6430492035729749e-06, 'disloyal': 2.4645738053594624e-06, 'appeasing': 1.6430492035729749e-06, 'persisted': 9.036770619651361e-06, 'Yalta': 1.232286902679731e-05, 'Alger': 1.6430492035729749e-06, 'Hiss': 1.6430492035729749e-06, 'Dexter': 3.2860984071459497e-06, 'implicated': 2.4645738053594624e-06, 'F.B.I.': 2.4645738053594624e-06, 'architects': 7.393721416078387e-06, 'Morgenthau': 2.4645738053594624e-06, 'policed': 1.6430492035729749e-06, 'continental': 4.107623008932437e-06, 'possessed': 1.889506584108921e-05, 'inexperience': 3.2860984071459497e-06, 'childish': 9.85829522143785e-06, 'unconditional': 4.107623008932437e-06, 'settlements': 4.107623008932437e-06, 'treason': 5.750672212505412e-06, 'dashed': 7.393721416078387e-06, 'unshakeable': 1.6430492035729749e-06, 'achieving': 1.232286902679731e-05, 'objectives': 3.286098407145949e-05, "enemy's": 7.393721416078387e-06, 'disadvantages': 7.393721416078387e-06, 'complications': 4.929147610718925e-06, 'Recognizing': 4.107623008932437e-06, 'negotiated': 6.5721968142918994e-06, 'shocking': 4.107623008932437e-06, 'anti-Nazi': 2.4645738053594624e-06, 'eliminated': 1.889506584108921e-05, 'eastern': 9.85829522143785e-06, 'vain': 9.036770619651361e-06, 'bitterness': 1.4787442832156774e-05, 'inexcusable': 2.4645738053594624e-06, 'ignorance': 1.232286902679731e-05, 'purges': 3.2860984071459497e-06, 'Baltic': 3.2860984071459497e-06, "Roosevelt's": 4.929147610718925e-06, 'puerile': 1.6430492035729749e-06, 'persuasive': 4.107623008932437e-06, 'F.D.R.': 3.2860984071459497e-06, 'preconceptions': 2.4645738053594624e-06, 'wistful': 2.4645738053594624e-06, 'sketch': 1.3965918230370285e-05, 'glancing': 7.393721416078387e-06, 'instalments': 1.6430492035729749e-06, 'Tsar': 1.6430492035729749e-06, 'Provisional': 2.4645738053594624e-06, 'seizure': 5.750672212505412e-06, 'Bolsheviks': 2.4645738053594624e-06, 'warped': 3.2860984071459497e-06, 'justly': 4.929147610718925e-06, 'precise': 2.6288787257167598e-05, 'debunking': 2.4645738053594624e-06, 'Plebian': 1.6430492035729749e-06, 'exemplify': 2.4645738053594624e-06, "author's": 6.5721968142918994e-06, 'characterizations': 2.4645738053594624e-06, 'plebeian': 1.6430492035729749e-06, 'autocrats': 1.6430492035729749e-06, 'criminality': 4.107623008932437e-06, 'pity': 1.0679819823224336e-05, 'collaborator': 1.6430492035729749e-06, 'subjugation': 3.2860984071459497e-06, 'oppression': 5.750672212505412e-06, 'moustache': 1.6430492035729749e-06, 'truant': 1.6430492035729749e-06, 'forehead': 1.3965918230370285e-05, 'tirades': 1.6430492035729749e-06, 'sulky': 4.107623008932437e-06, 'silences': 3.2860984071459497e-06, 'orations': 2.4645738053594624e-06, 'stare': 1.232286902679731e-05, 'prejudices': 4.107623008932437e-06, 'cynicism': 4.107623008932437e-06, 'amorality': 1.6430492035729749e-06, 'Shrewd': 1.6430492035729749e-06, 'endowed': 6.5721968142918994e-06, 'dissimulation': 1.6430492035729749e-06, 'cards': 2.793183646074057e-05, 'resolute': 3.2860984071459497e-06, 'rouse': 2.4645738053594624e-06, 'fever': 1.6430492035729746e-05, 'jagged': 4.929147610718925e-06, 'Potsdam': 1.6430492035729749e-06, 'misplacements': 1.6430492035729749e-06, 'baffling': 4.107623008932437e-06, 'riddle': 1.6430492035729749e-06, 'authorship': 3.2860984071459497e-06, 'ambassador': 8.215246017864873e-06, 'Yugoslavia': 4.929147610718925e-06, 'portray': 5.750672212505412e-06, 'prescribe': 4.929147610718925e-06, 'Soviet-Western': 1.6430492035729749e-06, 'first-rate': 4.107623008932437e-06, 'narrator': 9.85829522143785e-06, 'lightened': 4.107623008932437e-06, 'flashes': 8.215246017864873e-06, 'Donnybrook': 4.107623008932437e-06, 'fist-fighting': 1.6430492035729749e-06, 'romancing': 1.6430492035729749e-06, "McEnroe's": 1.6430492035729749e-06, "Walsh's": 1.6430492035729749e-06, 'Quiet': 2.4645738053594624e-06, 'superlative': 2.4645738053594624e-06, 'Enright': 3.2860984071459497e-06, 'Innesfree': 2.4645738053594624e-06, 'Roe': 1.6430492035729749e-06, 'Danaher': 2.4645738053594624e-06, 'bullying': 1.6430492035729749e-06, 'fists': 1.1501344425010824e-05, "Enright's": 1.6430492035729749e-06, 'courting': 3.2860984071459497e-06, 'mettlesome': 1.6430492035729749e-06, 'impeded': 4.929147610718925e-06, 'marries': 3.2860984071459497e-06, 'knockdown': 1.6430492035729749e-06, 'scraps': 3.2860984071459497e-06, 'matchmaker': 2.4645738053594624e-06, 'Mikeen': 1.6430492035729749e-06, 'Flynn': 2.4645738053594624e-06, 'Foy': 2.4645738053594624e-06, 'talented': 6.5721968142918994e-06, 'soft-shoe': 1.6430492035729749e-06, 'improviser': 1.6430492035729749e-06, 'limbs': 4.929147610718925e-06, 'torso': 6.5721968142918994e-06, 'matchmaking': 1.6430492035729749e-06, 'incidental': 4.929147610718925e-06, 'ear': 2.464573805359462e-05, 'matrimony': 3.2860984071459497e-06, 'Lund': 1.6430492035729749e-06, 'impersonates': 1.6430492035729749e-06, 'graced': 1.6430492035729749e-06, 'ex-prize': 1.6430492035729749e-06, 'Fagan': 1.6430492035729749e-06, 'sings': 9.036770619651361e-06, 'mettle': 2.4645738053594624e-06, 'exhibits': 1.3144393628583799e-05, 'dross': 4.107623008932437e-06, 'unlamented': 1.6430492035729749e-06, 'biddies': 1.6430492035729749e-06, 'Carney': 1.6430492035729749e-06, 'Sibly': 1.6430492035729749e-06, 'Bowan': 1.6430492035729749e-06, 'shelf': 1.0679819823224336e-05, 'malevolence': 2.4645738053594624e-06, 'Bosco': 1.6430492035729749e-06, 'roars': 1.6430492035729749e-06, 'sneers': 2.4645738053594624e-06, 'intimidate': 2.4645738053594624e-06, 'Brigadoon': 1.6430492035729749e-06, 'ballads': 6.5721968142918994e-06, 'linger': 6.5721968142918994e-06, 'catchy': 1.6430492035729749e-06, 'Sez': 1.6430492035729749e-06, 'Toast': 1.6430492035729749e-06, 'Bride': 1.6430492035729749e-06, 'Nordstrom': 1.6430492035729749e-06, 'Toomey': 1.6430492035729749e-06, 'touching': 1.3144393628583799e-05, 'authentically': 2.4645738053594624e-06, 'limber': 2.4645738053594624e-06, 'lasses': 1.6430492035729749e-06, 'whirl': 3.2860984071459497e-06, 'glide': 2.4645738053594624e-06, 'quickstep': 2.4645738053594624e-06, "Cole's": 1.6430492035729749e-06, 'kilts': 1.6430492035729749e-06, 'Rouben': 1.6430492035729749e-06, 'Ter-Arutunian': 1.6430492035729749e-06, 'scrim': 1.6430492035729749e-06, 'Cole': 1.6430492035729749e-06, 'theatergoers': 1.6430492035729749e-06, 'permanently': 1.1501344425010824e-05, 'lovable': 2.4645738053594624e-06, 'joyously': 1.6430492035729749e-06, 'Joshua': 4.107623008932437e-06, 'heart-warming': 1.6430492035729749e-06, 'Marcel': 1.6430492035729749e-06, "Pagnol's": 2.4645738053594624e-06, 'Marseilles': 1.6430492035729749e-06, 'Raimu': 1.6430492035729749e-06, 'askance': 1.6430492035729749e-06, 'English-dialogue': 1.6430492035729749e-06, 'Pagnol': 1.6430492035729749e-06, 'partial': 9.85829522143785e-06, 'digging': 6.5721968142918994e-06, "afternoon's": 3.2860984071459497e-06, 'forego': 3.2860984071459497e-06, 'pleasures': 5.750672212505412e-06, 'Paray': 2.4645738053594624e-06, 'stint': 5.750672212505412e-06, 'collaboration': 1.0679819823224336e-05, 'Beethoven': 1.0679819823224336e-05, 'lucid': 4.107623008932437e-06, 'sounding': 3.2860984071459497e-06, 'ponderous': 3.2860984071459497e-06, 'sprinted': 2.4645738053594624e-06, 'evenly': 4.107623008932437e-06, 'Franck': 1.6430492035729749e-06, 'symphonic': 6.5721968142918994e-06, 'poem': 4.025470548753788e-05, 'Psyche': 1.6430492035729749e-06, 'lush': 4.929147610718925e-06, 'sweet-sounding': 1.6430492035729749e-06, 'Fortunate': 1.6430492035729749e-06, 'chromatic': 8.215246017864873e-06, 'cloying': 3.2860984071459497e-06, 'resisted': 8.215246017864873e-06, 'over-emphasize': 1.6430492035729749e-06, 'melodic': 4.929147610718925e-06, 'whine': 4.107623008932437e-06, 'hysterical': 9.036770619651361e-06, 'accuracy': 2.9574885664313547e-05, 'Zadel': 1.6430492035729749e-06, 'Skolovsky': 4.107623008932437e-06, "Skolovsky's": 1.6430492035729749e-06, 'concerto': 5.750672212505412e-06, 'tonally': 1.6430492035729749e-06, 'non-sentimental': 1.6430492035729749e-06, 'ultra-efficient': 1.6430492035729749e-06, 'technician': 4.929147610718925e-06, 'boot': 1.0679819823224336e-05, 'colorless': 3.2860984071459497e-06, 'attributes': 9.85829522143785e-06, 'non-romantic': 1.6430492035729749e-06, 'tonal': 6.5721968142918994e-06, 'nuance': 1.6430492035729749e-06, "Lopatnikoff's": 1.6430492035729749e-06, 'salute': 3.2860984071459497e-06, 'workmanlike': 2.4645738053594624e-06, 'methodical': 4.107623008932437e-06, 'featureless': 2.4645738053594624e-06, 'Gioconda': 1.6430492035729749e-06, "singer's": 1.6430492035729749e-06, "fan's": 1.6430492035729749e-06, 'Ponchielli': 1.6430492035729749e-06, 'creaks': 1.6430492035729749e-06, 'decaying': 4.107623008932437e-06, 'pre-historic': 1.6430492035729749e-06, 'sloppy': 3.2860984071459497e-06, 'goodies': 1.6430492035729749e-06, 'Barnaba': 1.6430492035729749e-06, 'wicked': 7.393721416078387e-06, 'deeds': 7.393721416078387e-06, 'Anselmo': 1.6430492035729749e-06, 'Colzani': 1.6430492035729749e-06, 'villain': 3.2860984071459497e-06, 'legato': 1.6430492035729749e-06, 'smoothness': 4.929147610718925e-06, 'oily': 9.036770619651361e-06, 'Regina': 1.6430492035729749e-06, 'Resnik': 2.4645738053594624e-06, 'Cesare': 1.6430492035729749e-06, 'Siepi': 2.4645738053594624e-06, 'Alvise': 2.4645738053594624e-06, 'consummate': 3.2860984071459497e-06, 'Part': 2.9574885664313547e-05, 'Mignon': 1.6430492035729749e-06, 'Cieca': 1.6430492035729749e-06, 'Enzo': 1.6430492035729749e-06, 'holdovers': 1.6430492035729749e-06, 'Fausto': 1.6430492035729749e-06, 'Cleva': 1.6430492035729749e-06, 'pit': 1.232286902679731e-05, 'Melodious': 1.6430492035729749e-06, 'madrigaling': 1.6430492035729749e-06, 'Deller': 2.4645738053594624e-06, 'Consort': 1.6430492035729749e-06, 'Vanguard': 2.4645738053594624e-06, 'album': 5.750672212505412e-06, 'Madrigal': 1.6430492035729749e-06, 'Masterpieces': 1.6430492035729749e-06, 'BG': 2.4645738053594624e-06, '609': 1.6430492035729749e-06, 'BGS': 1.6430492035729749e-06, '5031': 1.6430492035729749e-06, 'madrigal': 4.107623008932437e-06, 'chansons': 2.4645738053594624e-06, 'impulses': 1.0679819823224336e-05, 'sixteenth': 9.036770619651361e-06, 'baroque': 7.393721416078387e-06, 'basso': 1.6430492035729749e-06, 'continuo': 1.6430492035729749e-06, 'sonatas': 3.2860984071459497e-06, 'Elizabethan': 6.5721968142918994e-06, 'traditions': 1.8073541239302723e-05, 'Cromwellian': 1.6430492035729749e-06, 'interregnum': 2.4645738053594624e-06, 'choruses': 2.4645738053594624e-06, 'catches': 2.4645738053594624e-06, 'glees': 1.6430492035729749e-06, 'obliterate': 2.4645738053594624e-06, 'traces': 7.393721416078387e-06, 'Early': 2.793183646074057e-05, 'Latter-day': 1.6430492035729749e-06, 'revivals': 4.929147610718925e-06, 'troupe': 3.2860984071459497e-06, 'countrymen': 4.929147610718925e-06, 'Tomkins': 1.6430492035729749e-06, "Jannequin's": 1.6430492035729749e-06, 'equivalents': 6.5721968142918994e-06, 'tarantara': 1.6430492035729749e-06, 'rum-tum-tum': 1.6430492035729749e-06, 'boom-boom-boom': 1.6430492035729749e-06, 'picturesque': 8.215246017864873e-06, 'Jannequin': 2.4645738053594624e-06, 'Lassus': 1.6430492035729749e-06, 'sensual': 5.750672212505412e-06, 'expressions': 1.232286902679731e-05, 'Marenzio': 1.6430492035729749e-06, 'Monteverdi': 2.4645738053594624e-06, 'Gesualdo': 1.6430492035729749e-06, 'superficial': 6.5721968142918994e-06, 'musicality': 1.6430492035729749e-06, 'infectious': 1.3965918230370285e-05, 'look-see': 1.6430492035729749e-06, 'chronologically': 2.4645738053594624e-06, 'Texts': 1.6430492035729749e-06, 'Elegance': 1.6430492035729749e-06, 'elegance': 8.215246017864873e-06, 'characteristics': 4.2719279292897344e-05, 'abstract': 2.546726265538111e-05, 'dancelike': 1.6430492035729749e-06, 'Couperin': 4.929147610718925e-06, 'Rameau': 2.4645738053594624e-06, 'nonmusical': 1.6430492035729749e-06, 'keen': 9.85829522143785e-06, 'BAM': 4.107623008932437e-06, 'Editions': 1.6430492035729749e-06, 'boite': 1.6430492035729749e-06, 'Musique': 2.4645738053594624e-06, 'out-of-the-way': 2.4645738053594624e-06, 'occupies': 4.107623008932437e-06, 'Sonates': 1.6430492035729749e-06, 'Royaux': 1.6430492035729749e-06, 'occupy': 1.3965918230370285e-05, 'disks': 4.107623008932437e-06, 'LD056': 1.6430492035729749e-06, 'LD060': 1.6430492035729749e-06, 'workmanship': 5.750672212505412e-06, 'gemlike': 1.6430492035729749e-06, 'nos.': 1.6430492035729749e-06, 'concertos': 4.929147610718925e-06, 'Francaise': 3.2860984071459497e-06, 'Sultane': 1.6430492035729749e-06, "L'Astree": 1.6430492035729749e-06, "L'Imperiale": 1.6430492035729749e-06, 'elaborately': 5.750672212505412e-06, 'lesser-known': 1.6430492035729749e-06, 'contemporaries': 5.750672212505412e-06, 'disk': 2.1359639646448672e-05, '18e': 2.4645738053594624e-06, 'Siecle': 1.6430492035729749e-06, 'LD': 3.2860984071459497e-06, '060': 1.6430492035729749e-06, 'Jean-Marie': 1.6430492035729749e-06, 'LeClair': 1.6430492035729749e-06, 'Bodin': 2.4645738053594624e-06, 'Beismortier': 1.6430492035729749e-06, 'Corrette': 1.6430492035729749e-06, 'Mondonville': 1.6430492035729749e-06, 'rococo': 4.929147610718925e-06, 'Steinkerque': 1.6430492035729749e-06, 'brevity': 3.2860984071459497e-06, 'refined': 5.750672212505412e-06, 'shakes': 4.929147610718925e-06, 'Corelli': 2.4645738053594624e-06, 'mid-century': 1.6430492035729749e-06, 'elegances': 1.6430492035729749e-06, 'fashionable': 1.0679819823224336e-05, 'instrumentalists': 3.2860984071459497e-06, "Rameau's": 4.107623008932437e-06, 'En': 2.4645738053594624e-06, 'Sextuor': 1.6430492035729749e-06, "L'orchestre": 1.6430492035729749e-06, 'Chambre': 1.6430492035729749e-06, 'Menet': 1.6430492035729749e-06, '046': 1.6430492035729749e-06, 'harpsichord': 1.6430492035729749e-06, 'inexplicable': 5.750672212505412e-06, 'evocative': 2.4645738053594624e-06, 'Maitres': 1.6430492035729749e-06, 'Allemands': 1.6430492035729749e-06, 'Des': 5.750672212505412e-06, '17e': 1.6430492035729749e-06, 'Siecles': 1.6430492035729749e-06, 'contains': 3.203945946967301e-05, 'Pachelbel': 1.6430492035729749e-06, 'Buxtehude': 1.6430492035729749e-06, 'Rosenmueller': 1.6430492035729749e-06, 'Telemann': 1.6430492035729749e-06, 'Ensemble': 2.4645738053594624e-06, 'Instrumental': 1.6430492035729749e-06, 'Sylvie': 1.6430492035729749e-06, 'Spycket': 1.6430492035729749e-06, '035': 1.6430492035729749e-06, 'Rococo': 1.6430492035729749e-06, 'Recital': 2.4645738053594624e-06, 'Globe': 1.6430492035729749e-06, 'Bach': 4.107623008932437e-06, 'Anton': 2.4645738053594624e-06, 'Haydn': 2.4645738053594624e-06, 'Giuseppe': 3.2860984071459497e-06, 'Sammartini': 1.6430492035729749e-06, 'Comenico': 1.6430492035729749e-06, 'Dragonetti': 1.6430492035729749e-06, 'Janitsch': 1.6430492035729749e-06, 'Anabel': 1.6430492035729749e-06, 'Brieff': 1.6430492035729749e-06, 'flutist': 1.6430492035729749e-06, 'Josef': 2.4645738053594624e-06, 'oboist': 1.6430492035729749e-06, 'harpsichordist': 1.6430492035729749e-06, 'vacuous': 1.6430492035729749e-06, 'twentieth-century': 8.215246017864873e-06, 'dissonances': 1.6430492035729749e-06, 'Boulez': 1.6430492035729749e-06, 'light-weight': 3.2860984071459497e-06, 'tiresome': 3.2860984071459497e-06, 'variable': 3.0396410266100035e-05, 'Ellie': 1.6430492035729749e-06, 'Fuller': 3.2860984071459497e-06, 'baritone': 4.929147610718925e-06, 'folksongs': 1.6430492035729749e-06, 'Meets': 1.6430492035729749e-06, 'Selections': 1.6430492035729749e-06, 'duets': 1.6430492035729749e-06, 'Songs': 2.4645738053594624e-06, 'Mendelssohn': 2.4645738053594624e-06, 'Dvorak': 1.6430492035729749e-06, 'Canteloube': 1.6430492035729749e-06, 'Copland': 2.4645738053594624e-06, 'pleasingly': 1.6430492035729749e-06, 'Neglected': 1.6430492035729749e-06, 'essentials': 2.4645738053594624e-06, "Chabrier's": 2.4645738053594624e-06, 'one-act': 1.6430492035729749e-06, 'operetta': 5.750672212505412e-06, 'fragile': 9.036770619651361e-06, 'uneducated': 1.6430492035729749e-06, 'newlywed': 1.6430492035729749e-06, 'Gontran': 2.4645738053594624e-06, 'Boismassif': 1.6430492035729749e-06, 'eighteenth': 1.5608967433943262e-05, 'Chabrier': 2.4645738053594624e-06, 'librettists': 1.6430492035729749e-06, 'chuckle': 4.929147610718925e-06, 'rationalist': 3.2860984071459497e-06, 'salon': 1.6430492035729749e-06, 'neo-classicism': 1.6430492035729749e-06, 'cleverness': 3.2860984071459497e-06, 'bawdy': 3.2860984071459497e-06, 'mawkish': 1.6430492035729749e-06, 'tread': 4.929147610718925e-06, 'extremes': 8.215246017864873e-06, 'Arlene': 2.218116424823516e-05, 'Saunders': 1.6430492035729749e-06, 'inexperienced': 6.5721968142918994e-06, 'Benita': 1.6430492035729749e-06, 'Valente': 1.6430492035729749e-06, 'Parella': 1.6430492035729749e-06, 'tutor': 4.107623008932437e-06, 'tutoring': 2.4645738053594624e-06, 'Darius': 1.6430492035729749e-06, 'Milhaud': 1.6430492035729749e-06, 'Poor': 1.8073541239302723e-05, 'Sailor': 1.6430492035729749e-06, 'libretto': 2.4645738053594624e-06, 'Cocteau': 2.4645738053594624e-06, 'Guignol': 1.6430492035729749e-06, 'unrecognized': 2.4645738053594624e-06, "Milhaud's": 1.6430492035729749e-06, 'churns': 1.6430492035729749e-06, 'ditties': 3.2860984071459497e-06, 'lumbering': 2.4645738053594624e-06, 'satiric': 4.107623008932437e-06, 'orchestration': 3.2860984071459497e-06, 'Sat': 1.6430492035729749e-06, 'thinner': 5.750672212505412e-06, '5,500': 1.6430492035729749e-06, 'observation': 2.300268885002165e-05, 'chubby': 2.4645738053594624e-06, 'plump': 4.107623008932437e-06, 'cares': 7.393721416078387e-06, 'attentive': 4.929147610718925e-06, 'applauded': 4.107623008932437e-06, 'chord': 6.5721968142918994e-06, 'way-out': 1.6430492035729749e-06, 'compositions': 9.036770619651361e-06, 'jazzmen': 1.6430492035729749e-06, 'Smiling': 4.107623008932437e-06, 'Born': 3.2860984071459497e-06, 'Wander': 2.4645738053594624e-06, 'Alone': 4.107623008932437e-06, 'Together': 6.5721968142918994e-06, 'Cares': 1.6430492035729749e-06, "Puttin'": 1.6430492035729749e-06, 'Ritz': 1.6430492035729749e-06, 'Been': 2.4645738053594624e-06, 'Going': 6.5721968142918994e-06, 'Got': 9.85829522143785e-06, 'Away': 3.2860984071459497e-06, 'Rainbow': 2.4645738053594624e-06, 'showmen': 1.6430492035729749e-06, 'evidences': 4.107623008932437e-06, 'pique': 2.4645738053594624e-06, 'underway': 3.2860984071459497e-06, 'Mort': 2.4645738053594624e-06, "Lindsey's": 1.6430492035729749e-06, '30-piece': 1.6430492035729749e-06, 'wedged': 2.4645738053594624e-06, 'short-skirted': 1.6430492035729749e-06, 'flapped': 4.107623008932437e-06, 'bouffant': 2.4645738053594624e-06, 'coiffure': 1.6430492035729749e-06, 'fortunately': 3.2860984071459497e-06, 'combed': 4.107623008932437e-06, 'encroaching': 2.4645738053594624e-06, 'photographer': 4.107623008932437e-06, 'dared': 1.232286902679731e-05, 'throne': 3.2860984071459497e-06, 'unbidden': 1.6430492035729749e-06, 'unsheathe': 1.6430492035729749e-06, 'lenses': 4.929147610718925e-06, 'mixers': 1.6430492035729749e-06, 'overheard': 5.750672212505412e-06, 'rescuing': 2.4645738053594624e-06, 'wind-blown': 2.4645738053594624e-06, 'sheets': 2.218116424823516e-05, 'trundling': 1.6430492035729749e-06, 'microphones': 4.107623008932437e-06, 'horribly': 2.4645738053594624e-06, 'over-arranged': 1.6430492035729749e-06, 'Rain': 4.107623008932437e-06, 'Shine': 1.6430492035729749e-06, 'shatteringly': 1.6430492035729749e-06, 'Beautiful': 4.929147610718925e-06, 'Weather': 3.2860984071459497e-06, 'picayune': 1.6430492035729749e-06, 'striving': 4.107623008932437e-06, 'haunches': 4.929147610718925e-06, 'cried': 2.218116424823516e-05, 'rewarded': 3.2860984071459497e-06, 'Rockabye': 1.6430492035729749e-06, 'Baby': 4.929147610718925e-06, 'crying': 1.3144393628583799e-05, 'encores': 1.6430492035729749e-06, 'throng': 3.2860984071459497e-06, '6:35': 1.6430492035729749e-06, 'nigh': 1.6430492035729749e-06, 'deprived': 7.393721416078387e-06, 'symbolic': 2.9574885664313547e-05, 'peals': 1.6430492035729749e-06, 'thunder': 1.0679819823224336e-05, "Mulligan's": 4.107623008932437e-06, 'aggregation': 1.6430492035729749e-06, 'Count': 5.750672212505412e-06, 'Basie': 1.6430492035729749e-06, 'infected': 4.107623008932437e-06, 'aggregations': 1.6430492035729749e-06, 'delicacy': 4.929147610718925e-06, 'sax': 5.750672212505412e-06, 'ballad': 6.5721968142918994e-06, "Brookmeyer's": 1.6430492035729749e-06, "Django's": 1.6430492035729749e-06, 'Castle': 1.6430492035729749e-06, 'subtle': 2.1359639646448672e-05, 'Weep': 2.4645738053594624e-06, 'Carrots': 1.6430492035729749e-06, 'Mulligan': 1.6430492035729749e-06, 'Blakey': 3.2860984071459497e-06, 'Messengers': 1.6430492035729749e-06, 'generate': 6.5721968142918994e-06, 'glimpses': 4.107623008932437e-06, 'Sarah': 2.218116424823516e-05, 'Vaughan': 3.2860984071459497e-06, 'timid': 4.929147610718925e-06, 'mellowed': 2.4645738053594624e-06, 'vocalists': 2.4645738053594624e-06, 'Budieshein': 1.6430492035729749e-06, 'Warner': 1.6430492035729749e-06, 'Stack': 2.4645738053594624e-06, 'Putting': 3.2860984071459497e-06, 'wasted': 1.3965918230370285e-05, 'unenviable': 1.6430492035729749e-06, 'late-comers': 1.6430492035729749e-06, 'accompanists': 1.6430492035729749e-06, 'Minns': 1.6430492035729749e-06, 'evolution': 1.0679819823224336e-05, 'Julie': 9.036770619651361e-06, 'vocalist': 2.4645738053594624e-06, 'oldies': 1.6430492035729749e-06, 'Hard-Hearted': 1.6430492035729749e-06, 'Hannah': 2.4645738053594624e-06, 'Vamp': 1.6430492035729749e-06, 'frosted': 1.6430492035729749e-06, "Getz's": 1.6430492035729749e-06, 'Baubles': 1.6430492035729749e-06, 'Bangles': 1.6430492035729749e-06, 'Beads': 1.6430492035729749e-06, 'ballards': 1.6430492035729749e-06, 'Getz': 1.6430492035729749e-06, 'categorize': 1.6430492035729749e-06, 'scintillating': 1.6430492035729749e-06, 'restating': 1.6430492035729749e-06, 'improvising': 1.6430492035729749e-06, 'sticking': 7.393721416078387e-06, 'Shearing': 3.2860984071459497e-06, 'vibes': 1.6430492035729749e-06, "Shearing's": 1.6430492035729749e-06, 'bongo': 1.6430492035729749e-06, 'drummer': 2.4645738053594624e-06, 'Mambo': 1.6430492035729749e-06, 'easy-going': 1.6430492035729749e-06, "Newport's": 1.6430492035729749e-06, 'relaxing': 4.929147610718925e-06, 'sunny': 1.0679819823224336e-05, 'Divided': 1.6430492035729749e-06, 'Evolution': 2.4645738053594624e-06, 'Blues': 9.036770619651361e-06, 'narrated': 1.6430492035729749e-06, 'Hendricks': 2.4645738053594624e-06, 'Monterey': 1.6430492035729749e-06, 'hour-long': 2.4645738053594624e-06, 'Ferguson': 6.5721968142918994e-06, "Hendricks'": 1.6430492035729749e-06, 'Tracing': 1.6430492035729749e-06, 'roots': 1.8073541239302723e-05, 'slaves': 3.6968607080391934e-05, 'Indies': 8.215246017864873e-06, 'Surprise': 1.6430492035729749e-06, 'primitive': 3.203945946967301e-05, 'preacher-singer': 1.6430492035729749e-06, 'Gospel-singer': 1.6430492035729749e-06, "auctioneer's": 1.6430492035729749e-06, "field-hands'": 1.6430492035729749e-06, 'lullaby': 3.2860984071459497e-06, 'drumming': 4.107623008932437e-06, 'batterie': 1.6430492035729749e-06, 'Demonstrating': 1.6430492035729749e-06, 'Babatunde': 1.6430492035729749e-06, 'Olatunji': 1.6430492035729749e-06, 'konga': 1.6430492035729749e-06, 'resounding': 2.4645738053594624e-06, 'slapping': 5.750672212505412e-06, 'sensations': 9.036770619651361e-06, 'Pony': 3.2860984071459497e-06, 'Poindexter': 1.6430492035729749e-06, 'alto': 2.4645738053594624e-06, 'Witherspoon': 1.6430492035729749e-06, 'singer': 7.393721416078387e-06, 'Isaacs': 2.4645738053594624e-06, 'Trio': 1.6430492035729749e-06, 'Pianists': 1.6430492035729749e-06, "Schubert's": 4.107623008932437e-06, 'Sonatas': 3.2860984071459497e-06, 'Emil': 1.6430492035729749e-06, 'Gilels': 2.4645738053594624e-06, '53': 4.929147610718925e-06, 'Rhythmic': 1.6430492035729749e-06, 'expansiveness': 3.2860984071459497e-06, 'projected': 1.232286902679731e-05, 'Chorale': 1.6430492035729749e-06, 'Shanties': 1.6430492035729749e-06, 'ensue': 2.4645738053594624e-06, 'chantey': 2.4645738053594624e-06, 'chanter': 1.6430492035729749e-06, 'shanty': 3.2860984071459497e-06, 'cabin': 1.8073541239302723e-05, 'French-Canadian': 2.4645738053594624e-06, 'chantier': 1.6430492035729749e-06, 'meanings': 1.8073541239302723e-05, 'boat-yard': 1.6430492035729749e-06, 'agreeable': 7.393721416078387e-06, 'Ettore': 1.6430492035729749e-06, 'Bastianini': 1.6430492035729749e-06, 'premiere': 4.929147610718925e-06, 'Alwin': 2.4645738053594624e-06, 'Nikolais': 4.107623008932437e-06, 'Hultberg': 1.6430492035729749e-06, 'visage': 2.4645738053594624e-06, 'beckons': 3.2860984071459497e-06, "lion's": 2.4645738053594624e-06, 'conceiving': 2.4645738053594624e-06, 'executing': 1.6430492035729749e-06, 'arresting': 4.929147610718925e-06, 'instructive': 3.2860984071459497e-06, 'catalogues': 3.2860984071459497e-06, 'modern-dance': 1.6430492035729749e-06, 'realm': 1.6430492035729746e-05, 'transposed': 4.929147610718925e-06, 'organic': 3.1217934867886523e-05, 'consciously': 1.0679819823224336e-05, 'mindful': 4.929147610718925e-06, 'esthetics': 3.2860984071459497e-06, 'slavish': 1.6430492035729749e-06, 'accents': 4.929147610718925e-06, 'phrasings': 1.6430492035729749e-06, 'contours': 1.3144393628583799e-05, 'deals': 1.3144393628583799e-05, 'satirical': 3.2860984071459497e-06, 'spoof': 1.6430492035729749e-06, 'mores': 6.5721968142918994e-06, 'Journey': 2.4645738053594624e-06, 'Tamiris-Daniel': 1.6430492035729749e-06, 'Nagrin': 4.929147610718925e-06, 'Dance': 7.393721416078387e-06, 'Choreographed': 1.6430492035729749e-06, "Tamiris'": 2.4645738053594624e-06, "Nagrin's": 1.6430492035729749e-06, 'Indeterminate': 1.6430492035729749e-06, 'Figure': 3.6147082478605446e-05, 'sprightly': 1.6430492035729749e-06, 'imaginative': 1.1501344425010824e-05, 'diversions': 4.107623008932437e-06, 'Toccata': 1.6430492035729749e-06, 'refreshingly': 2.4645738053594624e-06, 'underplayed': 1.6430492035729749e-06, "rock'n'roll": 1.6430492035729749e-06, 'idiosyncrasies': 3.2860984071459497e-06, "anybody's": 2.4645738053594624e-06, 'laugh': 2.3824213451808133e-05, 'diverting': 3.2860984071459497e-06, 'bother': 1.889506584108921e-05, 'menacing': 4.107623008932437e-06, 'Tetrameron': 1.6430492035729749e-06, 'Marion': 3.2860984071459497e-06, 'Cliburn': 3.2860984071459497e-06, 'seven-concert': 1.6430492035729749e-06, 'cycle': 2.0538115044662184e-05, 'Toobin': 2.4645738053594624e-06, '2,800': 1.6430492035729749e-06, 'slack': 7.393721416078387e-06, 'subscription': 4.107623008932437e-06, 'Orchestral': 1.6430492035729749e-06, 'Westchester': 4.107623008932437e-06, 'triumphant': 4.929147610718925e-06, 'Tchaikovsky': 2.4645738053594624e-06, 'Emperor': 1.0679819823224336e-05, 'sonorities': 1.6430492035729749e-06, 'introspective': 2.4645738053594624e-06, 'filigree': 1.6430492035729749e-06, 'laced': 2.4645738053594624e-06, 'Rondo': 1.6430492035729749e-06, 'Chopin': 2.4645738053594624e-06, 'Nocturne': 3.2860984071459497e-06, 'Wallenstein': 2.4645738053594624e-06, 'accompanist': 1.6430492035729749e-06, 'Leonore': 1.6430492035729749e-06, 'Fourth': 1.232286902679731e-05, 'responsively': 1.6430492035729749e-06, 'lyrical': 6.5721968142918994e-06, 'hallmarks': 2.4645738053594624e-06, 'Igor': 3.2860984071459497e-06, 'Oistrakh': 1.6430492035729749e-06, 'casually': 1.1501344425010824e-05, 'Nineteen': 5.750672212505412e-06, "Gershwins'": 1.6430492035729749e-06, 'Deemed': 1.6430492035729749e-06, 'static': 1.1501344425010824e-05, 'Strike': 4.107623008932437e-06, '1929': 6.5721968142918994e-06, 'Crush': 1.6430492035729749e-06, 'retrieved': 9.036770619651361e-06, 'Treasure': 1.6430492035729749e-06, 'Gershwins': 1.6430492035729749e-06, 'Rodgers': 5.750672212505412e-06, "Rodgers'": 1.6430492035729749e-06, 'melodies': 9.036770619651361e-06, 'obscurity': 4.929147610718925e-06, 'Bagley': 1.6430492035729749e-06, 'McWhinney': 1.6430492035729749e-06, 'disappeared': 2.9574885664313547e-05, 'delightfully': 4.107623008932437e-06, 'Revisited': 1.6430492035729749e-06, 'Spruce': 3.2860984071459497e-06, '505': 1.6430492035729749e-06, 'gems': 2.4645738053594624e-06, 'impudent': 3.2860984071459497e-06, 'Garrick': 2.4645738053594624e-06, 'Gaieties': 4.107623008932437e-06, 'Dorothy': 3.2860984071459497e-06, "Loudon's": 1.6430492035729749e-06, 'raucous': 6.5721968142918994e-06, 'attractions': 8.215246017864873e-06, 'Roxy': 1.6430492035729749e-06, 'Married': 3.2860984071459497e-06, 'incisive': 4.107623008932437e-06, 'delivers': 5.750672212505412e-06, 'Blush': 1.6430492035729749e-06, 'Altogether': 4.107623008932437e-06, 'quintet': 1.6430492035729749e-06, 'Turning': 1.1501344425010824e-05, 'Succeed': 1.6430492035729749e-06, 'Really': 7.393721416078387e-06, 'Trying': 1.6430492035729749e-06, 'LOC': 2.4645738053594624e-06, '1066': 2.4645738053594624e-06, 'LSO': 2.4645738053594624e-06, 'inventive': 3.2860984071459497e-06, 'elicited': 5.750672212505412e-06, 'plaintive': 2.4645738053594624e-06, 'earnestness': 3.2860984071459497e-06, "Loesser's": 1.6430492035729749e-06, 'Vallee': 1.6430492035729749e-06, 'parody': 4.107623008932437e-06, 'anthems': 1.6430492035729749e-06, 'whisked': 2.4645738053594624e-06, 'expressive': 6.5721968142918994e-06, 'yip': 1.6430492035729749e-06, 'lyricist': 2.4645738053594624e-06, 'lyriist': 1.6430492035729749e-06, 'Milk': 4.929147610718925e-06, '1065': 2.4645738053594624e-06, 'melodious': 3.2860984071459497e-06, 'sparkles': 1.6430492035729749e-06, 'Resourceful': 1.6430492035729749e-06, 'full-bodied': 1.6430492035729749e-06, 'resourceful': 2.4645738053594624e-06, 'Weede': 1.6430492035729749e-06, 'Mimi': 1.6430492035729749e-06, 'Benzell': 1.6430492035729749e-06, 'Rall': 4.929147610718925e-06, "Herman's": 1.6430492035729749e-06, 'Picon': 1.6430492035729749e-06, 'tunefulness': 1.6430492035729749e-06, 'idioms': 3.2860984071459497e-06, 'content': 4.354080389468383e-05, 'Sail': 2.4645738053594624e-06, 'WAO': 1.6430492035729749e-06, '1643': 3.2860984071459497e-06, 'SWAO': 1.6430492035729749e-06, 'cruise': 1.6430492035729749e-06, "Coward's": 3.2860984071459497e-06, 'cut-to-a-familiar-pattern': 1.6430492035729749e-06, 'Stritch': 1.6430492035729749e-06, 'persuasively': 3.2860984071459497e-06, 'huskiness': 1.6430492035729749e-06, 'belts': 7.393721416078387e-06, 'Live': 2.4645738053594624e-06, 'Cranes': 1.6430492035729749e-06, 'Ballad': 1.6430492035729749e-06, 'Soldier': 1.6430492035729749e-06, 'block-buster': 1.6430492035729749e-06, 'Ended': 1.6430492035729749e-06, 'Artkino': 1.6430492035729749e-06, 'Cameo': 1.6430492035729749e-06, 'Gorky': 1.6430492035729749e-06, 'middle-sized': 1.6430492035729749e-06, 'pictorial': 4.929147610718925e-06, 'Told': 2.4645738053594624e-06, 'conquerors': 2.4645738053594624e-06, 'compassionately': 1.6430492035729749e-06, 'peers': 7.393721416078387e-06, 'smitten': 1.6430492035729749e-06, "conflict's": 1.6430492035729749e-06, 'hinges': 4.107623008932437e-06, 'romance': 1.1501344425010824e-05, 'Tenderly': 1.6430492035729749e-06, 'tediously': 2.4645738053594624e-06, 'rivets': 1.6430492035729749e-06, 'hurt': 3.0396410266100035e-05, 'Titanic': 1.6430492035729749e-06, 'marital': 9.036770619651361e-06, 'discord': 1.6430492035729749e-06, 'dilettante': 1.6430492035729749e-06, 'Yakov': 1.6430492035729749e-06, "Segal's": 1.6430492035729749e-06, 'stirringly': 1.6430492035729749e-06, 'crouching': 3.2860984071459497e-06, 'high-up': 1.6430492035729749e-06, 'straggle': 2.4645738053594624e-06, 'cathedral': 5.750672212505412e-06, 'dotting': 2.4645738053594624e-06, 'cobblestone': 1.6430492035729749e-06, 'Bright': 9.036770619651361e-06, 'Gavin': 1.3965918230370285e-05, 'Dutton': 2.4645738053594624e-06, 'A5': 1.6430492035729749e-06, 'haunting': 7.393721416078387e-06, 'chronicle': 4.107623008932437e-06, 'otter': 4.929147610718925e-06, 'Highlands': 5.750672212505412e-06, 'Raine': 1.6430492035729749e-06, 'mystic': 3.2860984071459497e-06, 'conveys': 4.107623008932437e-06, 'Camusfearna': 4.107623008932437e-06, 'long-vanished': 1.6430492035729749e-06, 'sea-village': 1.6430492035729749e-06, 'isle': 4.107623008932437e-06, 'Skye': 1.6430492035729749e-06, 'fjords': 2.4645738053594624e-06, 'single-lane': 1.6430492035729749e-06, 'stags': 1.6430492035729749e-06, 'Greylag': 1.6430492035729749e-06, 'geese': 3.2860984071459497e-06, 'swans': 1.6430492035729749e-06, 'dolphins': 2.4645738053594624e-06, 'porpoises': 1.6430492035729749e-06, 'recounts': 3.2860984071459497e-06, 'furnishing': 4.107623008932437e-06, 'beach-drift': 1.6430492035729749e-06, 'Mijbil': 3.2860984071459497e-06, 'travelled': 4.107623008932437e-06, "Maxwell's": 2.4645738053594624e-06, 'species': 3.1217934867886523e-05, 'Tigris': 1.6430492035729749e-06, 'marshes': 4.107623008932437e-06, 'compliment': 3.2860984071459497e-06, 'catalogued': 4.107623008932437e-06, 'frightened': 2.218116424823516e-05, "cub's": 1.6430492035729749e-06, 'Iraq': 3.2860984071459497e-06, 'curled': 1.1501344425010824e-05, 'basin': 4.929147610718925e-06, 'affectionate': 5.750672212505412e-06, 'Mij': 3.2860984071459497e-06, 'habits': 1.8073541239302723e-05, 'nip': 3.2860984071459497e-06, 'lobes': 4.929147610718925e-06, 'unsuspecting': 1.6430492035729749e-06, 'needle-sharp': 1.6430492035729749e-06, 'Systematically': 1.6430492035729749e-06, 'ransack': 2.4645738053594624e-06, 'drawers': 4.107623008932437e-06, 'marbles': 3.2860984071459497e-06, 'invent': 6.5721968142918994e-06, 'curiosity': 1.97165904428757e-05, 'elan': 1.6430492035729749e-06, 'explored': 9.85829522143785e-06, 'inch': 3.286098407145949e-05, 'glen': 2.4645738053594624e-06, 'burn': 1.3144393628583799e-05, 'stranding': 1.6430492035729749e-06, 'ledge': 4.107623008932437e-06, 'seventy-foot': 1.6430492035729749e-06, 'cliff': 7.393721416078387e-06, 'idyll': 2.4645738053594624e-06, 'discovery': 2.793183646074057e-05, 'charted': 5.750672212505412e-06, 'self-discovery': 2.4645738053594624e-06, 'solitude': 2.4645738053594624e-06, 'loneliness': 5.750672212505412e-06, 'exhilarating': 2.4645738053594624e-06, 'sharpening': 3.2860984071459497e-06, 'interdependence': 5.750672212505412e-06, 'implicitly': 3.2860984071459497e-06, "Mijbil's": 2.4645738053594624e-06, 'orb': 1.6430492035729749e-06, 'revolved': 4.107623008932437e-06, 'imponderable': 1.6430492035729749e-06, 'behaved': 1.1501344425010824e-05, 'mixture': 2.546726265538111e-05, 'irritation': 6.5721968142918994e-06, 'fealty': 1.6430492035729749e-06, 'pickaxe': 1.6430492035729749e-06, 'manages': 4.107623008932437e-06, 'Idal': 1.6430492035729749e-06, 'rollicking': 1.6430492035729749e-06, 'traveller': 3.2860984071459497e-06, 'zoologist': 2.4645738053594624e-06, 'recorder': 6.5721968142918994e-06, 'reviewer': 2.4645738053594624e-06, 'widened': 4.929147610718925e-06, 'enchant': 1.6430492035729749e-06, 'Comedie': 1.1501344425010824e-05, 'contradict': 4.107623008932437e-06, 'repeats': 4.107623008932437e-06, 'reinterpreted': 1.6430492035729749e-06, 'well-received': 1.6430492035729749e-06, 'reminds': 7.393721416078387e-06, 'insensitive': 3.2860984071459497e-06, 'dare': 1.8073541239302723e-05, 'interpreting': 2.4645738053594624e-06, 'attracts': 3.2860984071459497e-06, 'experimenters': 4.107623008932437e-06, "Moliere's": 4.929147610718925e-06, 'reinterpret': 1.6430492035729749e-06, "Comedie's": 2.4645738053594624e-06, 'grief': 9.036770619651361e-06, "Racine's": 2.4645738053594624e-06, 'Phedre': 5.750672212505412e-06, 'Wives': 4.929147610718925e-06, 'thrusting': 7.393721416078387e-06, "play's": 3.2860984071459497e-06, 'excessively': 3.2860984071459497e-06, 'stately': 4.107623008932437e-06, 'ludicrous': 3.2860984071459497e-06, 'Jouvet': 4.107623008932437e-06, 'humanize': 1.6430492035729749e-06, 'clowns': 2.4645738053594624e-06, 'Fernand': 1.6430492035729749e-06, 'Ledoux': 4.107623008932437e-06, 'dissimilar': 3.2860984071459497e-06, 'Arnolphe': 4.929147610718925e-06, 'wife-to-be': 1.6430492035729749e-06, 'Pity': 2.4645738053594624e-06, 'Accordingly': 1.6430492035729746e-05, 'Wisely': 1.6430492035729749e-06, 'Tartuffe': 4.107623008932437e-06, 'hypocrite': 2.4645738053594624e-06, "benefactor's": 1.6430492035729749e-06, 'zealot': 1.6430492035729749e-06, 'buffoon': 1.6430492035729749e-06, 'Seigner': 4.929147610718925e-06, 'deluded': 3.2860984071459497e-06, 'benefactor': 3.2860984071459497e-06, 'observes': 7.393721416078387e-06, 'coarse': 9.036770619651361e-06, 'lustful': 1.6430492035729749e-06, 'stares': 1.6430492035729749e-06, 'bespeak': 1.6430492035729749e-06, 'sensuality': 4.929147610718925e-06, 'heavenward': 1.6430492035729749e-06, 'perfunctory': 1.6430492035729749e-06, 'reflect': 2.1359639646448672e-05, 'impersonation': 2.4645738053594624e-06, 'laughs': 4.107623008932437e-06, 'transformation': 1.7252016637516235e-05, 'good-natured': 4.107623008932437e-06, 'stupid': 1.97165904428757e-05, 'embodiment': 9.036770619651361e-06, 'meanness': 3.2860984071459497e-06, 'slyness': 1.6430492035729749e-06, 'rebut': 5.750672212505412e-06, 'life-contracts': 1.6430492035729749e-06, 'busiest': 2.4645738053594624e-06, 'Bourgeois': 1.6430492035729749e-06, 'Gentleman': 3.2860984071459497e-06, 'Imaginary': 1.6430492035729749e-06, 'Invalid': 1.6430492035729749e-06, 'Tricks': 1.6430492035729749e-06, 'Scapin': 4.107623008932437e-06, 'Hirsch': 2.4645738053594624e-06, 'trickster': 1.6430492035729749e-06, 'courtship': 2.4645738053594624e-06, "Hirsch's": 1.6430492035729749e-06, 'healthy': 2.793183646074057e-05, 'energetic': 9.85829522143785e-06, 'revelling': 1.6430492035729749e-06, 'agility': 3.2860984071459497e-06, 'toughs': 3.2860984071459497e-06, 'no-nonsense': 2.4645738053594624e-06, "nobody's": 2.4645738053594624e-06, 'Django': 4.107623008932437e-06, 'Reinhardt': 2.4645738053594624e-06, 'ill-fated': 2.4645738053594624e-06, 'conclusively': 6.5721968142918994e-06, 'guitarist': 2.4645738053594624e-06, 'Flea': 2.4645738053594624e-06, 'Baptiste': 1.6430492035729749e-06, 'Belgium': 2.4645738053594624e-06, 'asleep': 2.464573805359462e-05, "haven't": 2.9574885664313547e-05, "RCA-Victor's": 1.6430492035729749e-06, 'Djangology': 2.4645738053594624e-06, 'Stephane': 1.6430492035729749e-06, 'Grappelly': 1.6430492035729749e-06, 'Quintet': 2.4645738053594624e-06, 'Hot': 1.0679819823224336e-05, 'Grappely': 1.6430492035729749e-06, 'Minor': 8.215246017864873e-06, 'Honeysuckle': 1.6430492035729749e-06, 'Bricktop': 1.6430492035729749e-06, 'Artillery': 3.2860984071459497e-06, "You've": 2.0538115044662184e-05, 'Gone': 4.929147610718925e-06, 'Saw': 2.4645738053594624e-06, 'Menilmontant': 1.6430492035729749e-06, 'Kid': 5.750672212505412e-06, 'Ory': 3.2860984071459497e-06, 'trombonist': 1.6430492035729749e-06, 'anchor': 1.3144393628583799e-05, 'horn': 1.232286902679731e-05, 'blown': 8.215246017864873e-06, 'two-record': 1.6430492035729749e-06, 'Alcorn': 2.4645738053594624e-06, 'clarinet': 1.6430492035729749e-06, 'Haywood': 1.6430492035729749e-06, 'Wellman': 1.6430492035729749e-06, 'Braud': 1.6430492035729749e-06, 'Rag': 3.2860984071459497e-06, 'Careless': 1.6430492035729749e-06, 'Weary': 1.6430492035729749e-06, 'Original': 1.6430492035729749e-06, 'One-Step': 1.6430492035729749e-06, 'Bourbon': 4.107623008932437e-06, 'Parade': 1.6430492035729749e-06, 'Toot': 3.2860984071459497e-06, 'Tootsie': 1.6430492035729749e-06, "Didn't": 7.393721416078387e-06, 'Ramble': 1.6430492035729749e-06, 'Beale': 2.4645738053594624e-06, 'Eh': 4.929147610718925e-06, 'Bas': 1.6430492035729749e-06, 'Mood': 1.6430492035729749e-06, 'Indigo': 1.6430492035729749e-06, 'Bugle': 1.6430492035729749e-06, 'Call': 6.5721968142918994e-06, 'old-time': 4.107623008932437e-06, 'Mischa': 2.4645738053594624e-06, 'Elman': 4.929147610718925e-06, 'music-making': 1.6430492035729749e-06, 'faze': 1.6430492035729749e-06, 'truthfully': 4.929147610718925e-06, 'syrupy': 2.4645738053594624e-06, 'mannered': 1.6430492035729749e-06, "Creston's": 1.6430492035729749e-06, "Schuman's": 1.6430492035729749e-06, 'Triptych': 1.6430492035729749e-06, 'Wallingford': 1.6430492035729749e-06, 'Riegger': 2.4645738053594624e-06, 'Rhythms': 1.6430492035729749e-06, 'Romanza': 2.4645738053594624e-06, 'Strings': 3.2860984071459497e-06, '56A': 1.6430492035729749e-06, 'Creston': 1.6430492035729749e-06, 'potboiler': 2.4645738053594624e-06, 'hesitation': 6.5721968142918994e-06, 'Non-Dissonant': 1.6430492035729749e-06, 'Schuman': 1.6430492035729749e-06, 'Billings': 1.6430492035729749e-06, 'tune': 8.215246017864873e-06, 'woodwind': 2.4645738053594624e-06, 'potboilers': 1.6430492035729749e-06, 'unstuffy': 1.6430492035729749e-06, 'out-of-doors': 4.929147610718925e-06, 'up-to-date': 3.2860984071459497e-06, 'Alfredo': 3.2860984071459497e-06, 'Antonini': 1.6430492035729749e-06, 'undergoes': 2.4645738053594624e-06, 'insemination': 1.6430492035729749e-06, 'heroine': 4.929147610718925e-06, 'Adultery': 1.6430492035729749e-06, 'Apollo': 4.929147610718925e-06, "film's": 1.6430492035729749e-06, 'superfluous': 3.2860984071459497e-06, 'artless': 2.4645738053594624e-06, 'low-budget': 1.6430492035729749e-06, 'censorial': 1.6430492035729749e-06, 'husky-voiced': 1.6430492035729749e-06, 'longsuffering': 1.6430492035729749e-06, 'misguided': 2.4645738053594624e-06, 'neurotic': 9.036770619651361e-06, 'sterile': 8.215246017864873e-06, 'jealous': 4.107623008932437e-06, 'argues': 9.036770619651361e-06, 'sues': 1.6430492035729749e-06, 'labeling': 4.107623008932437e-06, 'adulterous': 1.6430492035729749e-06, 'glumly': 1.6430492035729749e-06, 'lurid': 3.2860984071459497e-06, 'Chaffey': 1.6430492035729749e-06, 'Basil': 1.6430492035729749e-06, 'unsympathetic': 3.2860984071459497e-06, 'Diffring': 1.6430492035729749e-06, 'bystander': 1.6430492035729749e-06, 'protracted': 1.6430492035729749e-06, 'credibility': 1.6430492035729749e-06, 'unresolved': 2.4645738053594624e-06, 'miscellanies': 1.6430492035729749e-06, 'forty-five': 5.750672212505412e-06, 'Alexandre': 2.4645738053594624e-06, 'Livshitz': 2.4645738053594624e-06, 'Taras': 3.2860984071459497e-06, 'Bulba': 2.4645738053594624e-06, 'diehards': 1.6430492035729749e-06, "Gogol's": 1.6430492035729749e-06, 'Ukrainian': 3.2860984071459497e-06, 'folk-tale': 1.6430492035729749e-06, 'Bo': 1.6430492035729749e-06, 'Fenster': 1.6430492035729749e-06, 'Soloviev-Sedoi': 1.6430492035729749e-06, 'danced': 9.036770619651361e-06, 'thirty-five': 9.036770619651361e-06, 'lusty': 3.2860984071459497e-06, 'gregarious': 4.107623008932437e-06, 'cavorting': 2.4645738053594624e-06, 'tricks': 6.5721968142918994e-06, 'madmen': 3.2860984071459497e-06, 'Oleg': 1.6430492035729749e-06, 'Sokolov': 2.4645738053594624e-06, 'Alexei': 1.6430492035729749e-06, 'Zhitkov': 1.6430492035729749e-06, 'Lev': 1.6430492035729749e-06, 'Korneyev': 1.6430492035729749e-06, 'Petipa-Minkus': 2.4645738053594624e-06, 'Bayaderka': 1.6430492035729749e-06, 'Petipa': 1.6430492035729749e-06, 'lovelorn': 1.6430492035729749e-06, 'searches': 3.2860984071459497e-06, "love's": 2.4645738053594624e-06, 'twenty-eight': 4.107623008932437e-06, 'fitting': 1.3965918230370285e-05, 'adagio': 2.4645738053594624e-06, 'loveliness': 4.107623008932437e-06, 'ballerina': 1.6430492035729749e-06, 'Olga': 5.750672212505412e-06, 'Moiseyeva': 2.4645738053594624e-06, 'Ludmilla': 1.6430492035729749e-06, 'Alexeyeva': 1.6430492035729749e-06, 'Korneyeva': 1.6430492035729749e-06, 'Komleva': 1.6430492035729749e-06, 'exquisite': 3.2860984071459497e-06, 'accomplishments': 9.036770619651361e-06, 'Sergei': 2.4645738053594624e-06, 'Vikulov': 1.6430492035729749e-06, 'lone': 7.393721416078387e-06, 'unequal': 1.6430492035729749e-06, 'Nutcracker': 3.2860984071459497e-06, 'stunningly': 1.6430492035729749e-06, 'Sokolev': 1.6430492035729749e-06, 'Maiden': 1.6430492035729749e-06, 'Galina': 1.6430492035729749e-06, 'Kekisheva': 1.6430492035729749e-06, 'adagios': 1.6430492035729749e-06, 'esthetic': 3.2860984071459497e-06, 'acrobacy': 1.6430492035729749e-06, 'Osipenko': 1.6430492035729749e-06, 'Chernishev': 1.6430492035729749e-06, 'Kornevey': 1.6430492035729749e-06, 'pas': 4.929147610718925e-06, 'cinq': 1.6430492035729749e-06, 'Gossiping': 1.6430492035729749e-06, 'stirring': 1.3144393628583799e-05, 'Flames': 1.6430492035729749e-06, 'deux': 4.107623008932437e-06, 'Xenia': 1.6430492035729749e-06, 'Ter-Stepanova': 1.6430492035729749e-06, 'Pavlovsky': 1.6430492035729749e-06, "Fokine's": 1.6430492035729749e-06, 'Cygne': 1.6430492035729749e-06, 'Vadim': 1.6430492035729749e-06, 'Kalentiev': 1.6430492035729749e-06, 'fretting': 1.6430492035729749e-06, 'frolicking': 2.4645738053594624e-06, 'yearned': 3.2860984071459497e-06, 'quadrennial': 1.6430492035729749e-06, "candidates'": 1.6430492035729749e-06, 'in-groups': 1.6430492035729749e-06, 'quantities': 9.85829522143785e-06, 'day-to-day': 3.2860984071459497e-06, 'humiliatingly': 1.6430492035729749e-06, 'Making': 3.2860984071459497e-06, 'astonishingly': 4.929147610718925e-06, 'warmed-over': 1.6430492035729749e-06, 'eyewitness': 2.4645738053594624e-06, 'novelist': 1.3144393628583799e-05, 'zest': 4.929147610718925e-06, 'sensitivity': 2.3824213451808133e-05, 'crisply': 1.6430492035729749e-06, 'prose': 1.1501344425010824e-05, 'engrossing': 4.107623008932437e-06, 'close-up': 2.4645738053594624e-06, 'switches': 2.1359639646448672e-05, 'chronological': 6.5721968142918994e-06, 'zealous': 4.107623008932437e-06, 'cites': 8.215246017864873e-06, "horse's": 4.929147610718925e-06, 'insiders': 2.4645738053594624e-06, 'distrust': 5.750672212505412e-06, 'Rarely': 2.4645738053594624e-06, 'mismanaged': 1.6430492035729749e-06, 'skillful': 8.215246017864873e-06, 'top-level': 3.2860984071459497e-06, 'indecision': 4.929147610718925e-06, 'broody': 2.4645738053594624e-06, 'moody': 2.4645738053594624e-06, 'stretches': 8.215246017864873e-06, 'introspection': 1.6430492035729749e-06, 'trusts': 6.5721968142918994e-06, 'solitary': 1.232286902679731e-05, 'seeker': 1.6430492035729749e-06, 'eagerness': 3.2860984071459497e-06, 'identify': 2.218116424823516e-05, 'Landon': 1.6430492035729749e-06, 'mastered': 4.929147610718925e-06, 'Calm': 1.6430492035729749e-06, 'dignified': 6.5721968142918994e-06, 'Efficiency': 2.4645738053594624e-06, 'neglect': 9.85829522143785e-06, 'cultivate': 3.2860984071459497e-06, 'admires': 1.6430492035729749e-06, 'profoundly': 7.393721416078387e-06, 'Pressures': 1.6430492035729749e-06, 'portrayed': 5.750672212505412e-06, 'Throughout': 1.6430492035729746e-05, 'fatigue': 9.85829522143785e-06, "Who's": 9.036770619651361e-06, 'platforms': 4.929147610718925e-06, 'Nostalgia': 1.6430492035729749e-06, '70-year-old': 1.6430492035729749e-06, 'Lily': 1.6430492035729749e-06, 'Pons': 4.107623008932437e-06, 'celebrities': 3.2860984071459497e-06, 'rewards': 4.107623008932437e-06, 'gorgeous': 5.750672212505412e-06, 'rainbow-hued': 1.6430492035729749e-06, 'chide': 2.4645738053594624e-06, 'keys': 1.3965918230370285e-05, 'stylist': 3.2860984071459497e-06, 'vocalism': 1.6430492035729749e-06, 'breathtaking': 3.2860984071459497e-06, "Meyerbeer's": 1.6430492035729749e-06, 'beloved': 1.4787442832156774e-05, 'besmirch': 1.6430492035729749e-06, 'marches': 4.107623008932437e-06, 'inexorably': 3.2860984071459497e-06, 'Sharing': 1.6430492035729749e-06, 'Verreau': 2.4645738053594624e-06, 'shakily': 2.4645738053594624e-06, 'whiteness': 2.4645738053594624e-06, 'vanished': 1.3144393628583799e-05, "Bizet's": 1.6430492035729749e-06, 'Carmen': 2.4645738053594624e-06, 'intelligently': 3.2860984071459497e-06, 'outdistancing': 1.6430492035729749e-06, 'strides': 6.5721968142918994e-06, 'listener': 9.036770619651361e-06, 'mushrooming': 1.6430492035729749e-06, 'FM': 2.4645738053594624e-06, 'broadcasting': 5.750672212505412e-06, '19,000,000': 1.6430492035729749e-06, '$20,000,000,000': 1.6430492035729749e-06, 'advertised': 8.215246017864873e-06, 'Negro-appeal': 5.750672212505412e-06, 'advertisers': 3.2860984071459497e-06, 'salesmen': 1.6430492035729746e-05, '600': 7.393721416078387e-06, '3,400': 1.6430492035729749e-06, 'programing': 1.1501344425010824e-05, 'Sponsor': 6.5721968142918994e-06, 'better-remembered': 1.6430492035729749e-06, 'Advertisers': 2.4645738053594624e-06, 'attitudes': 4.025470548753788e-05, 'Stations': 1.6430492035729749e-06, 'upgrade': 3.2860984071459497e-06, 'Futhermore': 1.6430492035729749e-06, 'spur': 1.1501344425010824e-05, '30-odd': 2.4645738053594624e-06, 'southeastern': 4.107623008932437e-06, 'WLIB': 1.6430492035729749e-06, 'boasts': 2.4645738053594624e-06, "WWRL's": 1.6430492035729749e-06, 'predominately': 1.6430492035729749e-06, "station's": 4.107623008932437e-06, 'round-the-clock': 1.6430492035729749e-06, 'WWRL': 1.6430492035729749e-06, 'deceit': 2.4645738053594624e-06, 'half-dozen': 3.2860984071459497e-06, 'Keystone': 1.6430492035729749e-06, 'Broadcasting': 3.2860984071459497e-06, "System's": 1.6430492035729749e-06, '360': 4.107623008932437e-06, 'jockey': 3.2860984071459497e-06, 'rhythm-and-blues': 1.6430492035729749e-06, 'gospel': 8.215246017864873e-06, 'general-appeal': 1.6430492035729749e-06, 'Advertising': 2.4645738053594624e-06, 'quotes': 4.107623008932437e-06, 'McLendon': 1.6430492035729749e-06, 'McLendon-Ebony': 1.6430492035729749e-06, 'degrading': 1.6430492035729749e-06, 'hooting': 1.6430492035729749e-06, 'hollering': 3.2860984071459497e-06, 'sociological': 9.036770619651361e-06, 'eloquently': 2.4645738053594624e-06, 'KSAN': 1.6430492035729749e-06, 'ambitions': 1.3144393628583799e-05, 'assimilation': 6.5721968142918994e-06, 'Presentation': 1.6430492035729749e-06, 'Sloan': 1.3144393628583799e-05, 'Staged': 1.6430492035729749e-06, "artist's": 6.5721968142918994e-06, 'Farr': 1.6430492035729749e-06, "Sloan's": 4.929147610718925e-06, 'chronology': 4.929147610718925e-06, 'Few': 1.5608967433943262e-05, 'prints': 9.036770619651361e-06, 'illustrations': 8.215246017864873e-06, 'manners': 1.232286902679731e-05, 'pigments': 3.2860984071459497e-06, 'superseded': 4.929147610718925e-06, 'palette': 4.929147610718925e-06, 'solidity': 4.107623008932437e-06, 'hatching': 4.929147610718925e-06, 'genres': 1.6430492035729749e-06, 'supplements': 7.393721416078387e-06, 'syndication': 1.6430492035729749e-06, "McSorley's": 1.6430492035729749e-06, 'Saloon': 2.4645738053594624e-06, 'breezy': 1.6430492035729749e-06, 'clotheslines': 1.6430492035729749e-06, 'roofs': 4.929147610718925e-06, 'rooftop': 2.4645738053594624e-06, 'canvases': 7.393721416078387e-06, 'Wind': 2.4645738053594624e-06, 'Roof': 1.6430492035729749e-06, 'bracing': 3.2860984071459497e-06, 'flapping': 4.107623008932437e-06, 'vista': 2.4645738053594624e-06, 'Gloucester': 6.5721968142918994e-06, '1915': 4.929147610718925e-06, 'Significant': 2.4645738053594624e-06, 'Bleeker': 1.6430492035729749e-06, 'multifigure': 1.6430492035729749e-06, 'Traveling': 3.2860984071459497e-06, 'vivified': 1.6430492035729749e-06, 'ash': 7.393721416078387e-06, 'foraging': 3.2860984071459497e-06, 'Ash-Can': 1.6430492035729749e-06, 'sojourn': 4.929147610718925e-06, 'Koshare': 1.6430492035729749e-06, 'Dust': 2.4645738053594624e-06, 'extrovert': 1.6430492035729749e-06, '151': 1.6430492035729749e-06, 'Supplementing': 1.6430492035729749e-06, 'diaries': 2.4645738053594624e-06, 'revelatory': 1.6430492035729749e-06, 'forgeries': 1.6430492035729749e-06, 'interpretations': 1.0679819823224336e-05, "composer's": 1.6430492035729749e-06, 'Riefling': 3.2860984071459497e-06, '23rd': 3.2860984071459497e-06, 'penetrated': 7.393721416078387e-06, 'fussy': 3.2860984071459497e-06, 'presumptuous': 4.107623008932437e-06, 'fluently': 1.6430492035729749e-06, 'logically': 9.036770619651361e-06, 'abundance': 1.1501344425010824e-05, 'dynamically': 1.6430492035729749e-06, 'arpeggios': 1.6430492035729749e-06, 'quasi-recitative': 1.6430492035729749e-06, 'inwardly': 3.2860984071459497e-06, 'kindly': 7.393721416078387e-06, 'insight': 1.889506584108921e-05, 'disarming': 3.2860984071459497e-06, 'Adagio': 1.6430492035729749e-06, 'Bagatelles': 1.6430492035729749e-06, 'Herr': 9.036770619651361e-06, 'unobtrusive': 3.2860984071459497e-06, 'Volker': 1.6430492035729749e-06, 'Wangenheim': 2.4645738053594624e-06, "Bonn's": 3.2860984071459497e-06, 'Stadtisches': 2.4645738053594624e-06, 'Orchester': 1.6430492035729749e-06, 'flair': 7.393721416078387e-06, 'podium': 1.6430492035729749e-06, 'shuddering': 3.2860984071459497e-06, 'subjectivity': 1.6430492035729749e-06, 'Choral': 1.6430492035729749e-06, 'Fantasy': 2.4645738053594624e-06, 'head-tossing': 2.4645738053594624e-06, "conductor's": 2.4645738053594624e-06, 'preoccupation': 8.215246017864873e-06, 'raggedness': 1.6430492035729749e-06, 'obsequies': 1.6430492035729749e-06, "concerto's": 1.6430492035729749e-06, 'Richter-Haaser': 1.6430492035729749e-06, 'compensatory': 3.2860984071459497e-06, 'plasticity': 4.107623008932437e-06, "burgomaster's": 1.6430492035729749e-06, 'intermission': 1.6430492035729749e-06, 'sweepings': 1.6430492035729749e-06, 'Chorus': 1.6430492035729749e-06, 'Gesangverein': 1.6430492035729749e-06, 'Rhenish': 1.6430492035729749e-06, 'compositional': 1.6430492035729749e-06, 'categories': 2.0538115044662184e-05, 'Rundfunk-Sinfonie-Orchester': 1.6430492035729749e-06, 'Rundfunkchor': 1.6430492035729749e-06, 'gold-filled': 1.6430492035729749e-06, 'Missa': 1.6430492035729749e-06, 'Solemnis': 1.6430492035729749e-06, 'tray': 1.5608967433943262e-05, 'tortoise': 3.2860984071459497e-06, 'inexact': 2.4645738053594624e-06, 'cosmologists': 2.4645738053594624e-06, 'mysteries': 6.5721968142918994e-06, 'astronomy': 1.97165904428757e-05, 'extrapolated': 4.107623008932437e-06, 'phenomena': 2.218116424823516e-05, 'cosmology': 2.4645738053594624e-06, 'theories': 1.5608967433943262e-05, 'moderator': 4.107623008932437e-06, 'Bondi': 3.2860984071459497e-06, "King's": 9.036770619651361e-06, 'Bonnor': 4.107623008932437e-06, 'Lyttleton': 4.929147610718925e-06, 'Whitrow': 2.4645738053594624e-06, 'functioned': 3.2860984071459497e-06, 'Rival': 1.6430492035729749e-06, 'Theories': 2.4645738053594624e-06, 'Cosmology': 1.6430492035729749e-06, 'relativistic': 3.2860984071459497e-06, 'relativity': 3.2860984071459497e-06, 'calculated': 2.9574885664313547e-05, 'galaxies': 6.5721968142918994e-06, 'receding': 4.929147610718925e-06, 'thinly': 3.2860984071459497e-06, 'Expands': 1.6430492035729749e-06, 'expands': 2.4645738053594624e-06, 'reverse': 1.4787442832156774e-05, 'contraction': 9.85829522143785e-06, 'billions': 5.750672212505412e-06, 'whistling': 4.929147610718925e-06, 'expansion-contraction': 1.6430492035729749e-06, 'steady-state': 1.6430492035729749e-06, 'zooming': 1.6430492035729749e-06, 'gaps': 2.4645738053594624e-06, 'contends': 4.929147610718925e-06, 'protons': 2.4645738053594624e-06, 'electrons': 9.85829522143785e-06, 'Protons': 1.6430492035729749e-06, 'electron': 2.3824213451808133e-05, 'proton': 3.2860984071459497e-06, 'immeasurable': 2.4645738053594624e-06, 'charge-excess': 3.2860984071459497e-06, 'atoms': 3.368250867324598e-05, 'gravitation': 3.2860984071459497e-06, 'Fleeting': 1.6430492035729749e-06, 'charts': 7.393721416078387e-06, 'non-scientist': 1.6430492035729749e-06, 'jargon': 4.107623008932437e-06, 'hopefully': 6.5721968142918994e-06, 'satellite': 7.393721416078387e-06, 'optical': 1.6430492035729746e-05, 'ultra-violet': 4.107623008932437e-06, 'rays': 6.5721968142918994e-06, 'hinders': 1.6430492035729749e-06, 'telescope': 4.107623008932437e-06, 'unclouded': 2.4645738053594624e-06, 'gases': 6.5721968142918994e-06, 'bolstering': 1.6430492035729749e-06, 'solace': 5.750672212505412e-06, 'long-sought': 2.4645738053594624e-06, 'peer': 7.393721416078387e-06, 'rationally': 3.2860984071459497e-06, 'defensible': 3.2860984071459497e-06, 'cosmos': 3.2860984071459497e-06, 'Roots': 5.750672212505412e-06, 'brand-new': 2.4645738053594624e-06, 'Highly': 1.6430492035729749e-06, 'trappings': 3.2860984071459497e-06, 'Beatie': 4.107623008932437e-06, 'Bryant': 1.6430492035729749e-06, 'jilted': 2.4645738053594624e-06, 'proclaims': 4.107623008932437e-06, 'emancipation': 7.393721416078387e-06, 'boorish': 1.6430492035729749e-06, 'happenings': 4.929147610718925e-06, "Wesker's": 2.4645738053594624e-06, 'earthy': 9.036770619651361e-06, 'city-bred': 1.6430492035729749e-06, 'intellectuals': 1.0679819823224336e-05, 'clods': 4.107623008932437e-06, 'cloddishness': 1.6430492035729749e-06, 'antagonistic': 4.107623008932437e-06, 'illuminating': 4.929147610718925e-06, 'aesthetics': 1.6430492035729749e-06, 'Wesker': 2.4645738053594624e-06, 'Seeming': 2.4645738053594624e-06, 'dwell': 7.393721416078387e-06, 'doltish': 1.6430492035729749e-06, 'twilight': 3.2860984071459497e-06, 'serfs': 1.6430492035729749e-06, 'dedicates': 2.4645738053594624e-06, 'untidiness': 1.6430492035729749e-06, 'theatergoer': 1.6430492035729749e-06, 'gilded': 2.4645738053594624e-06, 'palace': 1.3144393628583799e-05, 'heap': 1.232286902679731e-05, 'messy': 3.2860984071459497e-06, 'washing': 3.6147082478605446e-05, 'redundancy': 4.107623008932437e-06, 'appreciating': 1.6430492035729749e-06, 'sustained': 1.3144393628583799e-05, 'declamatory': 1.6430492035729749e-06, "Squire's": 2.4645738053594624e-06, 'brooked': 1.6430492035729749e-06, "hifalutin'": 1.6430492035729749e-06, 'Ado': 4.107623008932437e-06, 'theatre': 1.6430492035729746e-05, 'Wollman': 4.107623008932437e-06, 'Skating': 1.6430492035729749e-06, 'Rink': 2.4645738053594624e-06, 'Belvedere': 2.4645738053594624e-06, 'bravely': 4.107623008932437e-06, 'Papp': 2.4645738053594624e-06, 'resourcefully': 1.6430492035729749e-06, 'mingled': 7.393721416078387e-06, "Shakespeare's": 9.85829522143785e-06, 'enclosure': 6.5721968142918994e-06, 'overflowed': 2.4645738053594624e-06, 'lawns': 4.929147610718925e-06, 'barbed': 9.85829522143785e-06, 'sallies': 1.6430492035729749e-06, 'Benedick': 3.2860984071459497e-06, 'inured': 2.4645738053594624e-06, 'chuckles': 1.6430492035729749e-06, 'simple-minded': 2.4645738053594624e-06, 'Dogberry': 1.6430492035729749e-06, 'Verges': 1.6430492035729749e-06, 'responds': 6.5721968142918994e-06, 'jokes': 7.393721416078387e-06, 'vivacity': 2.4645738053594624e-06, "masquers'": 1.6430492035729749e-06, "Leonato's": 1.6430492035729749e-06, 'motif': 7.393721416078387e-06, 'Arragon': 1.6430492035729749e-06, 'insipid': 1.6430492035729749e-06, 'Claudio': 1.6430492035729749e-06, 'umbrellas': 3.2860984071459497e-06, 'depart': 6.5721968142918994e-06, 'grieving': 3.2860984071459497e-06, 'Leonato': 1.6430492035729749e-06, 'Friar': 1.6430492035729749e-06, 'loudspeaker': 1.6430492035729749e-06, 'fortified': 6.5721968142918994e-06, 'huddled': 9.036770619651361e-06, 'raining': 6.5721968142918994e-06, 'Nan': 2.4645738053594624e-06, 'Nostradamus': 1.6430492035729749e-06, 'foreseen': 7.393721416078387e-06, 'wept': 8.215246017864873e-06, 'Replied': 2.4645738053594624e-06, 'Yea': 2.4645738053594624e-06, 'weeping': 7.393721416078387e-06, 'downpour': 3.2860984071459497e-06, 'Parks': 4.929147610718925e-06, 'preparing': 1.889506584108921e-05, 'devoting': 9.036770619651361e-06, "department's": 2.4645738053594624e-06, 'balcony': 4.929147610718925e-06, 'trapdoors': 1.6430492035729749e-06, 'attractively': 1.6430492035729749e-06, 'lighthearted': 2.4645738053594624e-06, 'garner': 1.6430492035729749e-06, 'Elisabeth': 3.2860984071459497e-06, 'Schwarzkopf': 5.750672212505412e-06, 'regal': 2.4645738053594624e-06, 'lieder': 2.4645738053594624e-06, 'Schubert': 2.4645738053594624e-06, 'Wolf': 2.4645738053594624e-06, 'dramatical': 1.6430492035729749e-06, 'precision': 3.779013168217842e-05, 'creeping': 7.393721416078387e-06, 'mannerism': 2.4645738053594624e-06, 'purest': 3.2860984071459497e-06, 'misleads': 1.6430492035729749e-06, 'Clever': 2.4645738053594624e-06, 'coy': 4.107623008932437e-06, 'melodramatic': 4.107623008932437e-06, 'gasp': 3.2860984071459497e-06, 'sigh': 9.85829522143785e-06, 'highlights': 3.2860984071459497e-06, 'garishness': 1.6430492035729749e-06, 'Wustman': 1.6430492035729749e-06, 'frills': 3.2860984071459497e-06, 'enthusiasts': 3.2860984071459497e-06, '8,500': 1.6430492035729749e-06, 'situated': 1.5608967433943262e-05, 'additionally': 2.4645738053594624e-06, 'Saturday-night': 1.6430492035729749e-06, 'Ailey': 2.4645738053594624e-06, 'Lavallade': 2.4645738053594624e-06, "Ailey's": 2.4645738053594624e-06, 'Taras-Tchaikovsky': 1.6430492035729749e-06, 'Dollar-Britten': 1.6430492035729749e-06, 'Divertimento': 1.6430492035729749e-06, 'Dollar-De': 1.6430492035729749e-06, 'Banfield': 1.6430492035729749e-06, 'Duel': 2.4645738053594624e-06, 'Tallchief': 1.6430492035729749e-06, 'Erik': 2.4645738053594624e-06, 'Bruhn': 1.6430492035729749e-06, 'showpiece': 1.6430492035729749e-06, 'prowess': 2.4645738053594624e-06, 'handsomely': 1.6430492035729749e-06, 'incisiveness': 1.6430492035729749e-06, 'combatants': 1.6430492035729749e-06, 'Brother': 2.4645738053594624e-06, 'Sellers': 1.6430492035729749e-06, 'Langhorne': 1.6430492035729749e-06, 'Shep': 1.6430492035729749e-06, 'Shepard': 2.4645738053594624e-06, 'volatile': 4.929147610718925e-06, 'insinuating': 1.6430492035729749e-06, 'stepladders': 1.6430492035729749e-06, 'wondrously': 1.6430492035729749e-06, 'seductive': 2.4645738053594624e-06, 'cat-like': 1.6430492035729749e-06, 'sinuousness': 1.6430492035729749e-06, 'leaps': 4.107623008932437e-06, 'lifts': 2.4645738053594624e-06, 'gentle': 2.300268885002165e-05, 'super-charged': 1.6430492035729749e-06, 'armchair': 4.107623008932437e-06, 'traveler': 6.5721968142918994e-06, 'illusions': 6.5721968142918994e-06, 'Skies': 3.2860984071459497e-06, 'Studies': 7.393721416078387e-06, 'Sansom': 1.0679819823224336e-05, 'formidably': 1.6430492035729749e-06, 'addiction': 3.2860984071459497e-06, 'luxuriance': 1.6430492035729749e-06, 'inherit': 4.107623008932437e-06, 'Sacheverell': 1.6430492035729749e-06, 'Sitwell': 3.2860984071459497e-06, 'worthy': 2.1359639646448672e-05, 'pastry': 4.107623008932437e-06, 'multimillionaire': 1.6430492035729749e-06, 'indigestible': 1.6430492035729749e-06, 'thick': 5.586367292148114e-05, 'slices': 2.4645738053594624e-06, 'overwritten': 1.6430492035729749e-06, 'labors': 2.4645738053594624e-06, 'extract': 5.750672212505412e-06, 'refinements': 4.929147610718925e-06, 'astound': 1.6430492035729749e-06, 'gracefully': 7.393721416078387e-06, 'metaphorical': 2.4645738053594624e-06, 'references': 1.1501344425010824e-05, 'contemplative': 1.6430492035729749e-06, 'connoisseur': 4.107623008932437e-06, 'sniff': 2.4645738053594624e-06, 'reproduce': 6.5721968142918994e-06, 'smells': 8.215246017864873e-06, 'ignores': 4.929147610718925e-06, 'guidebook': 2.4645738053594624e-06, 'visual': 3.286098407145949e-05, 'savory': 3.2860984071459497e-06, 'Norwegian': 2.4645738053594624e-06, 'astonishment': 4.929147610718925e-06, 'Beneath': 4.107623008932437e-06, 'transmit': 3.2860984071459497e-06, 'fiesta': 1.6430492035729749e-06, 'Torpetius': 1.6430492035729749e-06, 'Tropez': 1.6430492035729749e-06, 'hotter': 6.5721968142918994e-06, 'Englishman': 1.3144393628583799e-05, 'summers': 9.036770619651361e-06, 'delights': 3.2860984071459497e-06, 'Bonne': 1.6430492035729749e-06, 'Auberge': 1.6430492035729749e-06, 'seacoast': 3.2860984071459497e-06, 'Nice': 6.5721968142918994e-06, 'Bernini': 1.6430492035729749e-06, 'Tintoretto': 1.6430492035729749e-06, 'coin': 9.036770619651361e-06, 'neat': 1.8073541239302723e-05, 'spattered': 2.4645738053594624e-06, 'invigoration': 2.4645738053594624e-06, 'tulips': 2.4645738053594624e-06, 'petals': 4.107623008932437e-06, 'shaggy': 2.4645738053594624e-06, "spaniel's": 1.6430492035729749e-06, 'lacquered': 1.6430492035729749e-06, 'Byzantine': 4.929147610718925e-06, 'self-consciousness': 4.929147610718925e-06, 'aptness': 1.6430492035729749e-06, 'expresses': 7.393721416078387e-06, 'mansions': 4.107623008932437e-06, 'Andrea': 4.107623008932437e-06, 'Palladio': 3.2860984071459497e-06, 'environs': 4.107623008932437e-06, 'Vicenza': 2.4645738053594624e-06, 'pedimented': 1.6430492035729749e-06, 'pillared': 2.4645738053594624e-06, 'shed': 9.85829522143785e-06, 'colonnaded': 1.6430492035729749e-06, 'cedar-roofed': 1.6430492035729749e-06, 'mansion': 6.5721968142918994e-06, 'traceable': 3.2860984071459497e-06, 'stone': 3.94331808857514e-05, 'grey-skied': 1.6430492035729749e-06, 'stucco': 4.107623008932437e-06, 'Palladian': 1.6430492035729749e-06, 'rocking': 9.85829522143785e-06, 'friezes': 3.2860984071459497e-06, 'architectonic': 1.6430492035729749e-06, 'shallower': 1.6430492035729749e-06, 'mint': 6.5721968142918994e-06, 'julep': 2.4645738053594624e-06, 'framing': 9.036770619651361e-06, 'velvet': 4.107623008932437e-06, 'lips': 5.668519752326763e-05, 'trifle': 8.215246017864873e-06, 'lamentations': 2.4645738053594624e-06, 'WBAI': 3.2860984071459497e-06, 'listener-supported': 1.6430492035729749e-06, 'outlet': 8.215246017864873e-06, 'frequency-modulation': 1.6430492035729749e-06, 'aural': 1.6430492035729749e-06, 'void': 9.036770619651361e-06, 'Yesterday': 3.2860984071459497e-06, 'Poised': 2.4645738053594624e-06, 'Violence': 3.2860984071459497e-06, 'Reavey': 1.6430492035729749e-06, 'Corporations': 4.107623008932437e-06, "Reavey's": 2.4645738053594624e-06, 'off-Broadway': 2.4645738053594624e-06, 'avant-garde': 4.929147610718925e-06, 'explore': 1.0679819823224336e-05, "society's": 3.2860984071459497e-06, 'guises': 1.6430492035729749e-06, 'aspiration': 3.2860984071459497e-06, 'relentless': 4.929147610718925e-06, 'discursiveness': 1.6430492035729749e-06, "listener's": 1.6430492035729749e-06, 'stamina': 2.4645738053594624e-06, 'wilt': 3.2860984071459497e-06, 'fulfilling': 3.2860984071459497e-06, 'multitudinous': 2.4645738053594624e-06, "mankind's": 4.107623008932437e-06, 'conceivably': 8.215246017864873e-06, 'reinvigoration': 1.6430492035729749e-06, 'archaism': 1.6430492035729749e-06, 'Stravinsky': 7.393721416078387e-06, 'bleeps': 1.6430492035729749e-06, 'bloops': 1.6430492035729749e-06, 'Titled': 1.6430492035729749e-06, 'enterprising': 4.929147610718925e-06, 'introducing': 8.215246017864873e-06, 'salient': 4.107623008932437e-06, 'programed': 2.4645738053594624e-06, 'Briefer': 1.6430492035729749e-06, 'melange': 1.6430492035729749e-06, 'Toch': 1.6430492035729749e-06, 'Karlheinz': 1.6430492035729749e-06, 'Stockhausen': 1.6430492035729749e-06, 'Yardumian': 1.6430492035729749e-06, 'Swedish': 6.5721968142918994e-06, 'Karl-Birger': 1.6430492035729749e-06, 'Blomdahl': 2.4645738053594624e-06, 'Saturdays': 2.4645738053594624e-06, 'appetite': 9.85829522143785e-06, 'whetted': 1.6430492035729749e-06, 'all-too-brief': 1.6430492035729749e-06, 'analytical': 4.107623008932437e-06, 'Moiseyev': 2.4645738053594624e-06, "everybody's": 4.107623008932437e-06, 'Suite': 6.5721968142918994e-06, 'Dances': 2.4645738053594624e-06, 'maidens': 1.6430492035729749e-06, 'steadily': 1.889506584108921e-05, 'Yurochka': 1.6430492035729749e-06, 'hard-to-please': 1.6430492035729749e-06, 'come-uppance': 1.6430492035729749e-06, 'Polyanka': 1.6430492035729749e-06, 'Moldavian': 1.6430492035729749e-06, 'Zhok': 1.6430492035729749e-06, 'planting': 4.929147610718925e-06, "Bul'ba": 1.6430492035729749e-06, 'hilarious': 2.4645738053594624e-06, 'Quadrille': 1.6430492035729749e-06, 'Kalmuk': 1.6430492035729749e-06, 'juggling': 2.4645738053594624e-06, 'Tsvetkov': 1.6430492035729749e-06, 'Platter': 1.6430492035729749e-06, 'betrothal': 1.6430492035729749e-06, 'celebration': 1.232286902679731e-05, 'Shepherds': 1.6430492035729749e-06, 'Azerbaijan': 1.6430492035729749e-06, 'hopping': 4.107623008932437e-06, "'n'": 2.4645738053594624e-06, 'Roll': 4.107623008932437e-06, 'Canadians': 2.4645738053594624e-06, 'fortunate': 1.8073541239302723e-05, 'Spectacular': 1.6430492035729749e-06, 'Chile': 1.6430492035729749e-06, 'Tasmania': 2.4645738053594624e-06, 'tints': 1.6430492035729749e-06, 'keyed': 3.2860984071459497e-06, 'stabs': 1.6430492035729749e-06, 'vermilion': 3.2860984071459497e-06, 'flame': 1.4787442832156774e-05, 'Frost': 3.2860984071459497e-06, 'dulls': 1.6430492035729749e-06, 'late-summer': 1.6430492035729749e-06, 'pilgrimages': 1.6430492035729749e-06, 'Below': 1.1501344425010824e-05, 'Nature': 4.929147610718925e-06, 'Late': 4.929147610718925e-06, "Quebec's": 1.6430492035729749e-06, 'Laurentian': 1.6430492035729749e-06, 'Maritime': 4.107623008932437e-06, 'quieter': 4.107623008932437e-06, "Ontario's": 1.6430492035729749e-06, 'Muskoka': 1.6430492035729749e-06, 'Haliburton': 1.6430492035729749e-06, '125': 3.2860984071459497e-06, 'cavalcades': 1.6430492035729749e-06, 'Rockies': 3.2860984071459497e-06, 'groves': 4.107623008932437e-06, 'aspen': 2.4645738053594624e-06, 'glinting': 4.929147610718925e-06, "Vermont's": 2.4645738053594624e-06, 'maples': 3.2860984071459497e-06, 'scarlet': 1.6430492035729749e-06, 'hardwoods': 1.6430492035729749e-06, 'birches': 1.6430492035729749e-06, 'softer': 4.107623008932437e-06, 'forests': 8.215246017864873e-06, 'Berkshires': 2.4645738053594624e-06, 'Adirondacks': 1.6430492035729749e-06, 'brightest': 4.107623008932437e-06, 'routes': 5.750672212505412e-06, '9N': 1.6430492035729749e-06, 'Saratoga': 4.107623008932437e-06, 'Placid': 2.4645738053594624e-06, 'Farther': 2.4645738053594624e-06, 'Catskills': 2.4645738053594624e-06, 'mid-October': 2.4645738053594624e-06, '23A': 1.6430492035729749e-06, 'Alleghenies': 1.6430492035729749e-06, 'Poconos': 1.6430492035729749e-06, 'Renovo': 1.6430492035729749e-06, 'Flaming': 1.6430492035729749e-06, 'varies': 9.85829522143785e-06, 'staccato': 4.929147610718925e-06, 'Gap': 5.750672212505412e-06, 'Appalachians': 1.6430492035729749e-06, "Virginia's": 3.2860984071459497e-06, 'Shenandoah': 1.6430492035729749e-06, 'Smokies': 1.6430492035729749e-06, "Wisconsin's": 1.6430492035729749e-06, 'Vilas': 1.6430492035729749e-06, 'Colorama': 1.6430492035729749e-06, '29-Oct.': 1.6430492035729749e-06, 'Shawano': 1.6430492035729749e-06, '78': 2.4645738053594624e-06, 'Portage': 1.6430492035729749e-06, 'Chien': 7.393721416078387e-06, 'Mackinac': 2.4645738053594624e-06, 'Straits': 3.2860984071459497e-06, 'Marquette': 1.6430492035729749e-06, 'Mountain': 5.750672212505412e-06, 'Upper': 5.750672212505412e-06, 'Peninsula': 4.107623008932437e-06, 'Arrowhead': 1.6430492035729749e-06, 'patches': 9.036770619651361e-06, 'Ozarks': 1.6430492035729749e-06, "Illinois'": 1.6430492035729749e-06, 'Shawnee': 2.4645738053594624e-06, 'Hiawatha': 2.4645738053594624e-06, 'Aspencades': 2.4645738053594624e-06, 'panoramas': 1.6430492035729749e-06, 'Ouray': 1.6430492035729749e-06, 'Color': 3.2860984071459497e-06, '22-29': 1.6430492035729749e-06, 'Rye': 2.4645738053594624e-06, 'Salida': 1.6430492035729749e-06, 'Steamboat': 1.6430492035729749e-06, 'week-long': 3.2860984071459497e-06, 'Aspencade': 1.6430492035729749e-06, '25-30': 1.6430492035729749e-06, 'Ruidoso': 1.6430492035729749e-06, 'Alamogordo': 1.6430492035729749e-06, 'Cloudcroft': 1.6430492035729749e-06, 'Corn': 3.2860984071459497e-06, 'Dak.': 1.6430492035729749e-06, 'corniest': 1.6430492035729749e-06, 'carnival': 2.4645738053594624e-06, 'headlining': 1.6430492035729749e-06, 'Stooges': 1.6430492035729749e-06, 'Hunt': 2.4645738053594624e-06, '1892': 4.107623008932437e-06, 'Dakota': 5.750672212505412e-06, 'Territorial': 2.4645738053594624e-06, 'Centennial': 3.2860984071459497e-06, 'expedition': 1.232286902679731e-05, 'steamboat': 2.4645738053594624e-06, '1876': 4.107623008932437e-06, 'schoolhouse': 9.85829522143785e-06, 'Longwood': 1.6430492035729749e-06, 'Kennett': 1.6430492035729749e-06, 'Del.': 1.6430492035729749e-06, 'nozzles': 3.2860984071459497e-06, 'jets': 4.107623008932437e-06, 'peacock': 2.4645738053594624e-06, 'wilted': 1.6430492035729749e-06, 'indoors': 4.929147610718925e-06, 'greenhouses': 1.6430492035729749e-06, '3-1/2': 3.2860984071459497e-06, 'McCullers': 2.4645738053594624e-06, 'less-indomitable': 1.6430492035729749e-06, 'gem': 4.107623008932437e-06, 'best-seller': 1.6430492035729749e-06, "poet's": 7.393721416078387e-06, 'instinct': 1.232286902679731e-05, "storyteller's": 1.6430492035729749e-06, 'skill': 3.368250867324598e-05, 'reaffirm': 2.4645738053594624e-06, 'Franny': 1.6430492035729749e-06, 'Zooey': 1.6430492035729749e-06, 'conceals': 2.4645738053594624e-06, 'fictional': 1.1501344425010824e-05, 'hurts': 3.2860984071459497e-06, 'eagerly': 1.1501344425010824e-05, '25-year-old': 1.6430492035729749e-06, 'Head': 3.2860984071459497e-06, 'Monsieur': 1.0679819823224336e-05, 'Althea': 1.6430492035729749e-06, 'Urn': 1.6430492035729749e-06, 'deft': 2.4645738053594624e-06, 'possessions': 9.85829522143785e-06, 'weighty': 4.107623008932437e-06, 'Virgilia': 1.6430492035729749e-06, 'pitilessly': 1.6430492035729749e-06, 'autobiography': 4.107623008932437e-06, 'commentary': 4.929147610718925e-06, 'repressive': 2.4645738053594624e-06, 'upper-middle-class': 4.929147610718925e-06, 'retelling': 2.4645738053594624e-06, 'Zara': 1.6430492035729749e-06, 'anguished': 2.4645738053594624e-06, 'Crane': 4.107623008932437e-06, 'novelized': 1.6430492035729749e-06, 'Rachel': 3.532555787681896e-05, 'Peden': 1.6430492035729749e-06, 'Subtitled': 1.6430492035729749e-06, "Farmwife's": 1.6430492035729749e-06, 'Almanac': 1.6430492035729749e-06, 'humorous': 1.3965918230370285e-05, 'Hoosier': 1.6430492035729749e-06, 'Filipinos': 1.6430492035729749e-06, 'troupes': 1.6430492035729749e-06, "Leningrad's": 1.6430492035729749e-06, 'Bayanihan': 1.6430492035729749e-06, 'depict': 3.2860984071459497e-06, 'Filipino': 2.4645738053594624e-06, '60-city': 1.6430492035729749e-06, 'one-night': 2.4645738053594624e-06, 'Festivals': 1.6430492035729749e-06, 'harvests': 2.4645738053594624e-06, 'festivals': 2.4645738053594624e-06, 'Sonoma': 1.6430492035729749e-06, '22-24': 1.6430492035729749e-06, 'cranberries': 1.6430492035729749e-06, 'Bandon': 1.6430492035729749e-06, 'buckwheat': 1.6430492035729749e-06, 'Kingwood': 1.6430492035729749e-06, '28-30': 1.6430492035729749e-06, 'Iberia': 1.6430492035729749e-06, '23-30': 1.6430492035729749e-06, 'mule': 4.107623008932437e-06, 'Benson': 1.4787442832156774e-05, 'Boron': 1.6430492035729749e-06, 'Maid': 4.107623008932437e-06, 'Mist': 3.2860984071459497e-06, 'Niagara': 2.4645738053594624e-06, "Grant's": 1.6430492035729749e-06, 'Galena': 2.4645738053594624e-06, 'archery': 1.6430492035729749e-06, 'Falmouth': 1.6430492035729749e-06, '300th': 1.6430492035729749e-06, 'anniversaries': 1.6430492035729749e-06, 'Staten': 4.929147610718925e-06, 'Mamaroneck': 1.6430492035729749e-06, 'parades': 3.2860984071459497e-06, 'pageants': 3.2860984071459497e-06, 'Movies': 1.6430492035729749e-06, 'Purple': 2.4645738053594624e-06, 'Noon': 1.6430492035729749e-06, 'splurge': 1.6430492035729749e-06, 'horrors': 4.107623008932437e-06, 'Alain': 1.6430492035729749e-06, 'Delon': 2.4645738053594624e-06, 'foot-loose': 2.4645738053594624e-06, 'Norma': 2.4645738053594624e-06, 'Callas': 2.4645738053594624e-06, 'devotees': 3.2860984071459497e-06, 'cart': 4.929147610718925e-06, 'Druid': 1.6430492035729749e-06, 'two-timed': 1.6430492035729749e-06, 'tender': 9.85829522143785e-06, 'venomous': 2.4645738053594624e-06, 'pitiful': 4.107623008932437e-06, 'Scala': 1.6430492035729749e-06, 'Maestro': 4.107623008932437e-06, 'Tullio': 1.6430492035729749e-06, 'Serafin': 1.6430492035729749e-06, "Peabody's": 1.6430492035729749e-06, 'polyunsaturated': 1.6430492035729749e-06, 'dissolving': 3.2860984071459497e-06, 'tasting': 3.2860984071459497e-06, 'pills': 7.393721416078387e-06, 'hawks': 1.6430492035729749e-06, 'cure-all': 4.107623008932437e-06, 'neuritis': 1.6430492035729749e-06, 'neuralgia': 1.6430492035729749e-06, 'head-cold': 1.6430492035729749e-06, 'beriberi': 2.4645738053594624e-06, 'overweight': 4.929147610718925e-06, 'fungus': 2.4645738053594624e-06, 'mungus': 1.6430492035729749e-06, 'pleasure-boat': 1.6430492035729749e-06, 'loveliest': 3.2860984071459497e-06, 'balmy': 2.4645738053594624e-06, 'Waterways': 1.6430492035729749e-06, 'capes': 4.107623008932437e-06, 'yachtsmen': 1.6430492035729749e-06, 'steadier': 3.2860984071459497e-06, 'cooler': 1.0679819823224336e-05, 'fish': 2.6288787257167598e-05, 'hungrier': 1.6430492035729749e-06, 'turbulence': 3.2860984071459497e-06, 'logs': 7.393721416078387e-06, 'overland': 1.6430492035729749e-06, '1.8': 3.2860984071459497e-06, 'trailers': 1.0679819823224336e-05, 'Midwesterners': 1.6430492035729749e-06, 'weekends': 6.5721968142918994e-06, 'flotillas': 1.6430492035729749e-06, 'boatsmen': 1.6430492035729749e-06, 'shores': 8.215246017864873e-06, 'indomitable': 1.6430492035729749e-06, 'buoys': 1.6430492035729749e-06, 'frostbite': 2.4645738053594624e-06, 'mapped': 1.6430492035729749e-06, 'Boating': 2.4645738053594624e-06, 'Pleasure': 2.4645738053594624e-06, 'boating': 1.8073541239302723e-05, 'scooting': 1.6430492035729749e-06, 'breezes': 2.4645738053594624e-06, 'harbors': 2.4645738053594624e-06, 'marinas': 5.750672212505412e-06, 'docks': 1.6430492035729749e-06, 'ramps': 1.6430492035729749e-06, 'Playa': 1.6430492035729749e-06, 'Rey': 2.4645738053594624e-06, 'Ventura': 1.6430492035729749e-06, 'Dana': 3.2860984071459497e-06, 'Oceanside': 1.6430492035729749e-06, 'Inland': 2.4645738053594624e-06, 'outboard': 5.750672212505412e-06, 'buzz': 4.929147610718925e-06, 'sandbars': 1.6430492035729749e-06, 'small-boat': 1.6430492035729749e-06, 'playground': 3.2860984071459497e-06, 'Salton': 1.6430492035729749e-06, 'once-dry': 1.6430492035729749e-06, 'sinkhole': 1.6430492035729749e-06, 'salty': 4.107623008932437e-06, '235': 1.6430492035729749e-06, 'racers': 1.6430492035729749e-06, 'shingles': 4.107623008932437e-06, '5-mile': 1.6430492035729749e-06, 'laps': 2.4645738053594624e-06, '500-mile': 2.4645738053594624e-06, 'speedboat': 1.6430492035729749e-06, 'gusty': 2.4645738053594624e-06, 'undependable': 2.4645738053594624e-06, 'sailboat': 1.6430492035729749e-06, 'becalmed': 1.6430492035729749e-06, 'regattas': 1.6430492035729749e-06, 'Corinthian': 4.929147610718925e-06, 'Yacht': 3.2860984071459497e-06, 'Tiburon': 1.6430492035729749e-06, 'launches': 3.2860984071459497e-06, 'Hurricane': 1.6430492035729749e-06, '70%': 3.2860984071459497e-06, 'Galveston-Port': 1.6430492035729749e-06, 'Aransas': 1.6430492035729749e-06, 'Isabel': 1.6430492035729749e-06, 'Sailing': 1.6430492035729749e-06, 'northers': 1.6430492035729749e-06, 'cruisers': 2.4645738053594624e-06, 'poking': 4.929147610718925e-06, 'Jacinto': 1.6430492035729749e-06, 'Brazos': 2.4645738053594624e-06, 'tarpon': 1.6430492035729749e-06, 'eastward': 4.107623008932437e-06, 'pirate': 2.4645738053594624e-06, 'Barataria': 1.6430492035729749e-06, 'Off': 4.929147610718925e-06, 'Isle': 1.6430492035729749e-06, 'yachters': 1.6430492035729749e-06, 'rigs': 4.107623008932437e-06, 'waterway': 2.4645738053594624e-06, 'Pascagoula': 1.6430492035729749e-06, 'Apalachicola': 1.6430492035729749e-06, 'stinkpotters': 1.6430492035729749e-06, 'McKellar': 1.6430492035729749e-06, 'Arkabutla': 1.6430492035729749e-06, '25-mile-square': 1.6430492035729749e-06, 'Pontchartrain': 2.4645738053594624e-06, 'squalls': 1.6430492035729749e-06, 'year-long': 1.6430492035729749e-06, 'Marinas': 1.6430492035729749e-06, 'plush': 3.2860984071459497e-06, 'Creole': 1.6430492035729749e-06, 'tva': 1.6430492035729749e-06, 'lakes': 6.5721968142918994e-06, 'twisty': 1.6430492035729749e-06, 'loops': 1.6430492035729749e-06, 'dam': 4.107623008932437e-06, '48,500': 1.6430492035729749e-06, 'bruited': 1.6430492035729749e-06, 'Erich': 4.107623008932437e-06, "Remarque's": 5.750672212505412e-06, 'Marquis': 4.107623008932437e-06, 'Alfonso': 1.6430492035729749e-06, 'Portago': 4.929147610718925e-06, 'nobleman': 2.4645738053594624e-06, 'Mille': 2.4645738053594624e-06, 'Miglia': 1.6430492035729749e-06, 'Clerfayt': 6.5721968142918994e-06, 'Favorites': 2.4645738053594624e-06, 'race-driver': 3.2860984071459497e-06, 'whereas': 2.6288787257167598e-05, 'unformed': 1.6430492035729749e-06, 'aimless': 4.929147610718925e-06, 'purposeful': 3.2860984071459497e-06, 'grounded': 5.750672212505412e-06, 'Unhappily': 1.6430492035729749e-06, 'knife-edge': 1.6430492035729749e-06, 'tuberculosis': 4.929147610718925e-06, 'strict': 9.036770619651361e-06, 'regimen': 1.6430492035729749e-06, 'sanatorium': 1.6430492035729749e-06, 'precedes': 1.6430492035729749e-06, 'Lillian': 4.929147610718925e-06, 'denouement': 2.4645738053594624e-06, 'Remarque': 3.2860984071459497e-06, 'junior-philosophical': 1.6430492035729749e-06, 'discourse': 6.5721968142918994e-06, 'demure': 3.2860984071459497e-06, 'love-making': 4.107623008932437e-06, 'modicum': 2.4645738053594624e-06, 'ramblings': 1.6430492035729749e-06, 'explicitness': 1.6430492035729749e-06, 'reportage': 1.6430492035729749e-06, 'Hazards': 1.6430492035729749e-06, 'limb': 4.929147610718925e-06, 'existent': 4.929147610718925e-06, 'actuarially': 1.6430492035729749e-06, 'insignificant': 4.929147610718925e-06, 'Race-drivers': 1.6430492035729749e-06, 'microcosm': 3.2860984071459497e-06, 'disclaimer': 1.6430492035729749e-06, 'liberties': 6.5721968142918994e-06, 'formalities': 2.4645738053594624e-06, 'case-hardened': 1.6430492035729749e-06, 'Vendome': 1.6430492035729749e-06, 'sneering': 1.6430492035729749e-06, 'Bentleys': 1.6430492035729749e-06, 'Rolls-Royces': 1.6430492035729749e-06, 'plainest': 1.6430492035729749e-06, 'passive': 9.85829522143785e-06, 'Freudian': 3.2860984071459497e-06, 'death-wish': 1.6430492035729749e-06, 'cliche': 5.750672212505412e-06, 'race-drivers': 3.2860984071459497e-06, 'differ': 1.5608967433943262e-05, "shan't": 1.6430492035729749e-06, '105': 2.4645738053594624e-06, 'transported': 4.929147610718925e-06, 'mystical': 4.929147610718925e-06, 'beast': 6.5721968142918994e-06, 'Taruffi': 1.6430492035729749e-06, 'adhesion': 2.4645738053594624e-06, 'two-lane': 1.6430492035729749e-06, '165': 2.4645738053594624e-06, 'algebraic': 1.6430492035729749e-06, 'formulae': 4.929147610718925e-06, 'volcano': 2.4645738053594624e-06, 'cone': 1.1501344425010824e-05, 'funneled': 1.6430492035729749e-06, 'Briton': 1.6430492035729749e-06, 'virtuosi': 1.6430492035729749e-06, 'ultra-fast': 1.6430492035729749e-06, 'road-circuit': 1.6430492035729749e-06, 'terminology': 5.750672212505412e-06, 'submariners': 1.6430492035729749e-06, 'machine-masters': 1.6430492035729749e-06, 'mystics': 3.2860984071459497e-06, 'fatalists': 1.6430492035729749e-06, 'leaderless': 1.6430492035729749e-06, 'ably': 2.4645738053594624e-06, 'invincible': 2.4645738053594624e-06, 'communize': 1.6430492035729749e-06, "Montgomery's": 2.4645738053594624e-06, "Jones'": 1.6430492035729749e-06, 'pub': 1.6430492035729749e-06, 'disunited': 1.6430492035729749e-06, 'undedicated': 1.6430492035729749e-06, 'Alamein': 1.6430492035729749e-06, 'blunderings': 1.6430492035729749e-06, 'mincing': 1.6430492035729749e-06, 'faulty': 7.393721416078387e-06, 'uncourageous': 1.6430492035729749e-06, 'Labour': 1.6430492035729749e-06, 'inward': 8.215246017864873e-06, 'wartorn': 1.6430492035729749e-06, 'poverty-stricken': 2.4645738053594624e-06, 'fumbling': 4.107623008932437e-06, 'stumbling': 7.393721416078387e-06, 'nervousness': 1.6430492035729749e-06, 'Monty': 2.4645738053594624e-06, 'relied': 7.393721416078387e-06, 'reunited': 2.4645738053594624e-06, 'Communist-inspired': 1.6430492035729749e-06, 'Summit': 1.6430492035729749e-06, 'tear': 9.85829522143785e-06, 'Gaulle': 4.107623008932437e-06, 'tenacity': 4.929147610718925e-06, 'restoring': 5.750672212505412e-06, 'Whoever': 7.393721416078387e-06, 'treacherous': 5.750672212505412e-06, 'envisages': 1.6430492035729749e-06, 'inefficiency': 1.6430492035729749e-06, 'morally': 6.5721968142918994e-06, 'surround': 4.929147610718925e-06, 'Napoleon': 6.5721968142918994e-06, 'stirrings': 1.6430492035729749e-06, "militarist's": 1.6430492035729749e-06, 'militarist': 2.4645738053594624e-06, 'incapacity': 1.6430492035729749e-06, 'rambles': 1.6430492035729749e-06, 'jogs': 1.6430492035729749e-06, 'preventing': 9.036770619651361e-06, 'frontier': 2.1359639646448672e-05, 'Mario': 1.6430492035729749e-06, 'Lanza': 2.4645738053594624e-06, 'non-public': 1.6430492035729749e-06, 'studded': 4.107623008932437e-06, 'originate': 5.750672212505412e-06, 'loudest': 4.107623008932437e-06, 'LM': 1.6430492035729749e-06, '2454': 1.6430492035729749e-06, '$4.98': 1.6430492035729749e-06, 'carping': 3.2860984071459497e-06, 'lurk': 1.6430492035729749e-06, 'theatergoing': 1.6430492035729749e-06, 'skindiving': 1.6430492035729749e-06, 'horse-playing': 1.6430492035729749e-06, 'vigilant': 2.4645738053594624e-06, 'averaged': 1.1501344425010824e-05, 'consumption': 1.5608967433943262e-05, '1,488': 1.6430492035729749e-06, 'lbs.': 5.750672212505412e-06, 'gluttons': 3.2860984071459497e-06, 'hen': 1.8073541239302723e-05, 'weight-height': 1.6430492035729749e-06, 'clucks': 2.4645738053594624e-06, 'imperceptible': 1.6430492035729749e-06, 'degrees': 1.97165904428757e-05, 'one-tenth': 4.929147610718925e-06, 'dispose': 4.929147610718925e-06, 'inconspicuously': 1.6430492035729749e-06, 'one-fifth': 4.107623008932437e-06, 'calories': 6.5721968142918994e-06, 'consume': 2.4645738053594624e-06, 'Refrigeration': 1.6430492035729749e-06, 'automated': 2.4645738053594624e-06, 'conspire': 1.6430492035729749e-06, 'banish': 4.107623008932437e-06, 'spoilage': 6.5721968142918994e-06, 'Fads': 1.6430492035729749e-06, 'fusty': 1.6430492035729749e-06, 'panaceas': 1.6430492035729749e-06, 'spinach': 2.4645738053594624e-06, 'prunes': 1.6430492035729749e-06, 'curds': 1.6430492035729749e-06, 'concentrates': 6.5721968142918994e-06, 'capsules': 3.2860984071459497e-06, 'vitamins': 8.215246017864873e-06, 'tonics': 2.4645738053594624e-06, 'high-protein': 2.4645738053594624e-06, 'concocted': 1.6430492035729749e-06, 'dried': 2.218116424823516e-05, 'powdered': 6.5721968142918994e-06, 'cherry-flavored': 1.6430492035729749e-06, 'No-Cal': 1.6430492035729749e-06, '59-cents': 1.6430492035729749e-06, '8-oz.': 2.4645738053594624e-06, 'Physiologist': 2.4645738053594624e-06, 'Ancel': 1.6430492035729749e-06, 'Keys': 1.5608967433943262e-05, 'inventor': 6.5721968142918994e-06, 'K': 8.215246017864873e-06, 'bestselling': 1.6430492035729749e-06, 'Eat': 2.4645738053594624e-06, 'birch-paneled': 1.6430492035729749e-06, 'Physiological': 2.4645738053594624e-06, 'Hygiene': 1.6430492035729749e-06, 'rumble': 2.4645738053594624e-06, 'blocky': 2.4645738053594624e-06, 'grey-haired': 1.6430492035729749e-06, 'directs': 4.929147610718925e-06, '$200,000-a-year': 1.6430492035729749e-06, 'spans': 4.929147610718925e-06, 'Pursuing': 2.4645738053594624e-06, 'logged': 2.4645738053594624e-06, '500,000': 3.2860984071459497e-06, 'indescribable': 4.107623008932437e-06, 'digestive': 3.2860984071459497e-06, 'physiological': 1.7252016637516235e-05, 'Bantu': 1.6430492035729749e-06, 'contadini': 2.4645738053594624e-06, 'skinfolds': 1.6430492035729749e-06, 'fleshy': 2.4645738053594624e-06, 'Neapolitan': 2.4645738053594624e-06, 'metabolism': 2.4645738053594624e-06, 'Finnish': 1.6430492035729749e-06, 'woodcutters': 1.6430492035729749e-06, 'mealie-meal': 1.6430492035729749e-06, 'eaten': 1.0679819823224336e-05, 'Capetown': 1.6430492035729749e-06, 'coloreds': 1.6430492035729749e-06, 'fats': 1.5608967433943262e-05, "Keys's": 3.2860984071459497e-06, 'Vitamins': 1.6430492035729749e-06, "mothers'": 3.2860984071459497e-06, 'Readings': 1.6430492035729749e-06, 'milligrams': 1.8073541239302723e-05, 'electrocardiogram': 1.6430492035729749e-06, 'rejoices': 1.6430492035729749e-06, 'worries': 1.7252016637516235e-05, '2,300': 1.6430492035729749e-06, 'cancer': 1.6430492035729746e-05, 'diabetes': 4.107623008932437e-06, 'artery': 3.861165628396491e-05, 'ice': 3.6147082478605446e-05, 'calorie-heavy': 1.6430492035729749e-06, 'saturated': 5.750672212505412e-06, 'insidious': 2.4645738053594624e-06, 'arteries': 1.3144393628583799e-05, 'coronary': 6.5721968142918994e-06, 'Obesity': 1.6430492035729749e-06, 'malnutrition': 4.107623008932437e-06, 'scarce': 5.750672212505412e-06, '1,600': 2.4645738053594624e-06, 'sustain': 1.232286902679731e-05, 'scurvy': 1.6430492035729749e-06, 'sprue': 2.4645738053594624e-06, 'pellagra': 1.6430492035729749e-06, 'weaned': 1.6430492035729749e-06, 'kwashiorkor': 1.6430492035729749e-06, 'growth-stunting': 1.6430492035729749e-06, 'protein': 1.8073541239302723e-05, 'reddish': 3.2860984071459497e-06, 'bloated': 3.2860984071459497e-06, 'prey': 6.5721968142918994e-06, 'parasites': 4.107623008932437e-06, 'lingering': 4.929147610718925e-06, 'well-fed': 3.2860984071459497e-06, "Harrison's": 1.6430492035729749e-06, 'Principles': 3.2860984071459497e-06, 'Internal': 1.3144393628583799e-05, 'Medicine': 4.929147610718925e-06, "internist's": 1.6430492035729749e-06, 'caloric': 3.2860984071459497e-06, 'obesity': 4.107623008932437e-06, 'Puritan': 4.107623008932437e-06, 'flagrant': 3.2860984071459497e-06, 'intemperance': 1.6430492035729749e-06, 'Says': 5.750672212505412e-06, 'immoral': 4.929147610718925e-06, 'Morals': 1.6430492035729749e-06, 'Jolliffe': 4.107623008932437e-06, 'overburden': 1.6430492035729749e-06, 'premiums': 2.4645738053594624e-06, 'exertion': 1.6430492035729749e-06, 'hampers': 1.6430492035729749e-06, 'restricts': 2.4645738053594624e-06, 'Physiologically': 1.6430492035729749e-06, 'overeat': 1.6430492035729749e-06, 'appestat': 4.929147610718925e-06, 'adjusts': 2.4645738053594624e-06, 'hypothalamus': 1.6430492035729746e-05, 'temperature': 0.00010761972283402986, 'water-balance': 1.6430492035729749e-06, 'alcohol': 1.0679819823224336e-05, 'narcotizes': 1.6430492035729749e-06, 'enhances': 1.6430492035729749e-06, 'oz.': 2.4645738053594624e-06, 'drinker': 3.2860984071459497e-06, 'encephalitis': 1.6430492035729749e-06, 'pituitary': 9.85829522143785e-06, 'satiety': 2.4645738053594624e-06, 'overeating': 2.4645738053594624e-06, 'compulsion': 7.393721416078387e-06, 'fostered': 6.5721968142918994e-06, 'insecurity': 4.929147610718925e-06, 'nagging': 8.215246017864873e-06, 'delicacies': 2.4645738053594624e-06, 'punishment': 1.7252016637516235e-05, 'sedative': 1.6430492035729749e-06, 'fishes': 2.4645738053594624e-06, 'cupboard': 2.4645738053594624e-06, 'hauls': 2.4645738053594624e-06, 'boredom': 9.036770619651361e-06, 'subconscious': 4.107623008932437e-06, 'eaters': 1.6430492035729749e-06, 'nibblers': 1.6430492035729749e-06, 'gobblers': 1.6430492035729749e-06, 'downright': 7.393721416078387e-06, 'dismisses': 1.6430492035729749e-06, 'depressants': 1.6430492035729749e-06, 'amphetamines': 1.6430492035729749e-06, 'Benzedrine': 1.6430492035729749e-06, 'Dexedrine': 1.6430492035729749e-06, 'crutches': 5.750672212505412e-06, 'Metrecal': 3.2860984071459497e-06, "Oats's": 1.6430492035729749e-06, 'Quota': 1.6430492035729749e-06, '900-calorie': 1.6430492035729749e-06, 'dieters': 1.6430492035729749e-06, 'minerals': 9.85829522143785e-06, 'distaste': 7.393721416078387e-06, 'fatalities': 2.4645738053594624e-06, 'accidents': 7.393721416078387e-06, 'yellowish': 1.6430492035729749e-06, 'waxy': 2.4645738053594624e-06, 'chemically': 4.929147610718925e-06, 'crystalline': 4.929147610718925e-06, 'Scientists': 5.750672212505412e-06, 'chole': 1.6430492035729749e-06, 'bile': 3.2860984071459497e-06, 'sterios': 1.6430492035729749e-06, 'cells': 6.736501734649196e-05, "brain's": 1.6430492035729749e-06, 'ingredient': 5.750672212505412e-06, 'gallstones': 1.6430492035729749e-06, 'adrenal': 2.4645738053594624e-06, 'hormones': 2.4645738053594624e-06, 'circulatory': 2.4645738053594624e-06, 'liver': 1.3965918230370285e-05, 'fatty': 6.5721968142918994e-06, 'molecules': 8.215246017864873e-06, 'soluble': 3.2860984071459497e-06, 'insoluble': 1.0679819823224336e-05, 'arterial': 5.750672212505412e-06, 'blockages': 1.6430492035729749e-06, 'culminate': 2.4645738053594624e-06, 'Explains': 1.6430492035729749e-06, 'intima': 3.2860984071459497e-06, 'proteins': 1.232286902679731e-05, 'piles': 2.4645738053594624e-06, 'narrows': 3.2860984071459497e-06, 'irritates': 1.6430492035729749e-06, 'calcium': 7.393721416078387e-06, 'deposits': 5.750672212505412e-06, 'slowing': 5.750672212505412e-06, 'Eventually': 8.215246017864873e-06, 'clot': 3.2860984071459497e-06, 'seals': 4.107623008932437e-06, "artery's": 1.6430492035729749e-06, 'infarct': 1.6430492035729749e-06, 'suffocated': 1.6430492035729749e-06, 'fatally': 4.107623008932437e-06, 'Fats': 1.6430492035729749e-06, 'coronaries': 1.6430492035729749e-06, 'synthesizes': 1.6430492035729749e-06, 'cholesterol-rich': 1.6430492035729749e-06, 'materially': 4.929147610718925e-06, 'Netherlands': 3.2860984071459497e-06, 'Scandinavia': 1.6430492035729749e-06, "Sweden's": 3.2860984071459497e-06, 'Haqvin': 1.6430492035729749e-06, 'Malmros': 1.6430492035729749e-06, 'Laurance': 1.6430492035729749e-06, 'Kinsell': 1.6430492035729749e-06, 'oxidation': 1.889506584108921e-05, 'stumbled': 1.8073541239302723e-05, 'Ahrens': 1.6430492035729749e-06, 'mono-unsaturated': 1.6430492035729749e-06, 'poly-unsaturated': 2.4645738053594624e-06, 'molecule': 5.750672212505412e-06, 'Saturated': 1.6430492035729749e-06, 'hydrogens': 3.2860984071459497e-06, 'Mono-unsaturated': 1.6430492035729749e-06, '265': 1.6430492035729749e-06, 'exerts': 3.2860984071459497e-06, 'context': 2.875336106252706e-05, 'agreed-upon': 1.6430492035729749e-06, 'transitional': 4.107623008932437e-06, 'user': 4.107623008932437e-06, 'rejections': 1.6430492035729749e-06, 'understandings': 1.6430492035729749e-06, 'correspond': 6.5721968142918994e-06, 'Demons': 1.6430492035729749e-06, 'angels': 9.036770619651361e-06, 'experiential': 4.107623008932437e-06, 'gradual': 1.3144393628583799e-05, 'emptied': 6.5721968142918994e-06, 'objectification': 2.4645738053594624e-06, 'superstition': 6.5721968142918994e-06, 'peopled': 1.6430492035729749e-06, 'misconceptions': 2.4645738053594624e-06, 'extraneous': 3.2860984071459497e-06, 'dispelled': 7.393721416078387e-06, 'undesirable': 9.036770619651361e-06, 'superstitions': 2.4645738053594624e-06, 'rightly': 4.107623008932437e-06, 'unmixed': 1.6430492035729749e-06, 'conceptualization': 1.6430492035729749e-06, 'excesses': 3.2860984071459497e-06, 'vividly': 8.215246017864873e-06, 'inquiring': 4.929147610718925e-06, 'framework': 9.85829522143785e-06, 'apprehend': 1.6430492035729749e-06, 'Crucible': 1.6430492035729749e-06, 'witch': 4.929147610718925e-06, 'Aside': 9.036770619651361e-06, 'quaint': 1.0679819823224336e-05, 'witches': 7.393721416078387e-06, 'devils': 2.4645738053594624e-06, 'characterize': 5.750672212505412e-06, 'Abigail': 2.4645738053594624e-06, 'Reverend': 1.8073541239302723e-05, 'Parris': 2.4645738053594624e-06, 'demon': 4.107623008932437e-06, 'unfolds': 4.107623008932437e-06, 'ominously': 3.2860984071459497e-06, 'engulfs': 1.6430492035729749e-06, 'saint': 9.036770619651361e-06, 'sinner': 4.107623008932437e-06, 'epidemic': 9.85829522143785e-06, 'dreadfully': 1.6430492035729749e-06, 'virulence': 3.2860984071459497e-06, 'unavoidably': 3.2860984071459497e-06, 'trail': 2.464573805359462e-05, 'disintegration': 4.929147610718925e-06, 'evokes': 4.929147610718925e-06, 'designate': 4.929147610718925e-06, 'Proctor': 1.6430492035729749e-06, 'Lucifer': 3.2860984071459497e-06, 'filthy': 6.5721968142918994e-06, 'irony': 1.0679819823224336e-05, 'combatted': 1.6430492035729749e-06, 'prevented': 2.300268885002165e-05, 'blindness': 1.0679819823224336e-05, 'mid-twentieth': 3.2860984071459497e-06, 'elemental': 9.036770619651361e-06, 'underworld': 5.750672212505412e-06, "Lucifer's": 1.6430492035729749e-06, 'many-faced': 1.6430492035729749e-06, "Hale's": 1.6430492035729749e-06, 'ken': 2.4645738053594624e-06, '1692': 1.6430492035729749e-06, 'beard': 2.1359639646448672e-05, "Devil's": 2.4645738053594624e-06, 'horns': 7.393721416078387e-06, 'diametrically': 2.4645738053594624e-06, 'absolutes': 3.2860984071459497e-06, 'sciences': 2.464573805359462e-05, 'grasped': 9.85829522143785e-06, 'inculcation': 2.4645738053594624e-06, 'worthlessness': 1.6430492035729749e-06, 'redeemed': 1.6430492035729749e-06, 'Devil': 4.929147610718925e-06, 'potency': 5.750672212505412e-06, 'accounting': 9.036770619651361e-06, 'wickedness': 3.2860984071459497e-06, 'integral': 1.1501344425010824e-05, 'abounding': 1.6430492035729749e-06, 'numinous': 2.4645738053594624e-06, 'presentness': 1.6430492035729749e-06, 'universally': 5.750672212505412e-06, 'cohesiveness': 1.6430492035729749e-06, 'Think': 5.750672212505412e-06, 'Surely': 7.393721416078387e-06, 'Nazism': 1.6430492035729749e-06, 'apprehension': 9.85829522143785e-06, 'cohere': 1.6430492035729749e-06, 'prospers': 1.6430492035729749e-06, 'separable': 2.4645738053594624e-06, 'givenness': 1.6430492035729749e-06, 'understanded': 1.6430492035729749e-06, 'theological': 2.0538115044662184e-05, 'mythological': 1.0679819823224336e-05, 'theology': 1.5608967433943262e-05, 'absurd': 1.4787442832156774e-05, 'demythologization': 5.750672212505412e-06, 'expurgation': 1.6430492035729749e-06, 'misrepresents': 2.4645738053594624e-06, "Bultmann's": 6.5721968142918994e-06, 'mythology': 3.2860984071459497e-06, 'conceptuality': 2.4645738053594624e-06, 'kerygma': 3.2860984071459497e-06, 'mode': 1.8073541239302723e-05, 'Mythological': 1.6430492035729749e-06, 'responsibly': 1.6430492035729749e-06, 'symbols': 3.0396410266100035e-05, 'ciphers': 2.4645738053594624e-06, 'nonmythological': 1.6430492035729749e-06, 'existential': 8.215246017864873e-06, 'Bultmann': 4.107623008932437e-06, 'overestimates': 1.6430492035729749e-06, 'stumbling-block': 1.6430492035729749e-06, 'myth': 2.875336106252706e-05, 'unconvincing': 2.4645738053594624e-06, 'adhered': 4.929147610718925e-06, 'pronouncements': 2.4645738053594624e-06, 'admittedly': 3.2860984071459497e-06, 'secularized': 3.2860984071459497e-06, 'estranged': 3.2860984071459497e-06, 'communicated': 3.2860984071459497e-06, 'technological': 1.5608967433943262e-05, 'profundity': 3.2860984071459497e-06, 'mythologies': 2.4645738053594624e-06, 'evidenced': 1.0679819823224336e-05, 'culture-Protestantism': 1.6430492035729749e-06, 'unavoidable': 6.5721968142918994e-06, 'demythologize': 2.4645738053594624e-06, 'infatuation': 4.107623008932437e-06, "Peale's": 1.6430492035729749e-06, 'demythologized': 2.4645738053594624e-06, 'pundits': 1.6430492035729749e-06, 'latent': 8.215246017864873e-06, 'cultured': 4.107623008932437e-06, 'fulminate': 1.6430492035729749e-06, 'flock': 6.5721968142918994e-06, "Paul's": 1.6430492035729749e-06, 'castigation': 1.6430492035729749e-06, 'Corinthians': 3.2860984071459497e-06, 'smug': 5.750672212505412e-06, 'indigation': 1.6430492035729749e-06, 'assuming': 1.1501344425010824e-05, 'implied': 1.4787442832156774e-05, 'foolishness': 2.4645738053594624e-06, 'alienate': 2.4645738053594624e-06, 'Greeks': 4.929147610718925e-06, 'accomplishing': 3.2860984071459497e-06, 'Scripture': 3.2860984071459497e-06, 'fortiori': 1.6430492035729749e-06, 'providence': 3.2860984071459497e-06, 'depriving': 3.2860984071459497e-06, 'restatement': 4.107623008932437e-06, 'yes': 4.60053777000433e-05, 'Expressed': 1.6430492035729749e-06, 'follower': 3.2860984071459497e-06, 'self-destruction': 3.2860984071459497e-06, 'sacrificium': 2.4645738053594624e-06, 'corporis': 1.6430492035729749e-06, 'intellectus': 1.6430492035729749e-06, 'unpaid': 7.393721416078387e-06, 'Bonhoeffer': 1.6430492035729749e-06, 'unambiguous': 3.2860984071459497e-06, 'estrangement': 1.6430492035729749e-06, 'maturation': 3.2860984071459497e-06, 'richly': 4.929147610718925e-06, 'despise': 6.5721968142918994e-06, 'irreversible': 2.4645738053594624e-06, 'distinctively': 2.4645738053594624e-06, 'aligned': 5.750672212505412e-06, 'Schleiermacher': 1.6430492035729749e-06, 'Ritschl': 1.6430492035729749e-06, 'Herrmann': 1.6430492035729749e-06, 'Harnack': 1.6430492035729749e-06, 'Troeltsch': 1.6430492035729749e-06, 'Barth': 4.929147610718925e-06, 'Bushnell': 1.6430492035729749e-06, 'Clarke': 1.6430492035729749e-06, 'Rauschenbusch': 1.6430492035729749e-06, 'Macintosh': 1.6430492035729749e-06, 'Niebuhr': 2.4645738053594624e-06, 'Tillich': 1.6430492035729749e-06, 'self-consciously': 3.2860984071459497e-06, 'neoliberal': 1.6430492035729749e-06, 'philosophically': 1.6430492035729749e-06, 'Whitehead': 6.5721968142918994e-06, 'apostolic': 4.107623008932437e-06, 'modernity': 5.750672212505412e-06, 'enduring': 9.036770619651361e-06, "theology's": 1.6430492035729749e-06, 'formulations': 9.85829522143785e-06, 'formulate': 8.215246017864873e-06, 'liberalism': 1.1501344425010824e-05, 'affirming': 2.4645738053594624e-06, 'demythologizing': 1.6430492035729749e-06, 'unconditionally': 2.4645738053594624e-06, 'untenable': 2.4645738053594624e-06, 'Whereas': 9.036770619651361e-06, 'indefensible': 2.4645738053594624e-06, 'invalidated': 1.6430492035729749e-06, 'Continent': 5.750672212505412e-06, 'Buri': 3.2860984071459497e-06, 'exclude': 6.5721968142918994e-06, 'P': 3.94331808857514e-05, 'indifferent': 9.85829522143785e-06, 'excluded': 7.393721416078387e-06, 'self-consistent': 1.6430492035729749e-06, 'mutually': 1.1501344425010824e-05, 'pseudo': 1.6430492035729749e-06, 'analogous': 7.393721416078387e-06, 'tenable': 4.107623008932437e-06, 'qualifies': 2.4645738053594624e-06, 'unconditioned': 1.6430492035729749e-06, 'accepts': 5.750672212505412e-06, 'biblical': 3.2860984071459497e-06, 'hermeneutics': 1.6430492035729749e-06, 'frees': 2.4645738053594624e-06, 'Promotion': 2.4645738053594624e-06, 'Representing': 2.4645738053594624e-06, 'unauthorized': 2.4645738053594624e-06, 'Anglican': 9.85829522143785e-06, 'communion': 9.036770619651361e-06, 'unacceptable': 1.6430492035729749e-06, 'fruit': 2.7110311858954083e-05, '1864': 3.2860984071459497e-06, 'popularly': 6.5721968142918994e-06, 'Octave': 2.4645738053594624e-06, '18-25': 1.6430492035729749e-06, 'enthusiastically': 4.107623008932437e-06, '1861': 7.393721416078387e-06, 'engender': 2.4645738053594624e-06, 'Universe': 7.393721416078387e-06, 'unpublished': 2.4645738053594624e-06, '19th-century': 2.4645738053594624e-06, 'Protestant-dominated': 1.6430492035729749e-06, 'arriving': 1.0679819823224336e-05, 'present-day': 1.4787442832156774e-05, 'transcribe': 1.6430492035729749e-06, 'Englishmen': 7.393721416078387e-06, 'implying': 6.5721968142918994e-06, 'cleric': 1.6430492035729749e-06, 'utmost': 6.5721968142918994e-06, 'Devonshire': 1.6430492035729749e-06, 'Cornwall': 1.6430492035729749e-06, 'anti-Catholic': 1.6430492035729749e-06, 'longest': 5.750672212505412e-06, 'anti-Catholicism': 1.6430492035729749e-06, 'Fawkes': 4.107623008932437e-06, 'non-Catholics': 1.6430492035729749e-06, 'bonfires': 1.6430492035729749e-06, 'bonfire': 3.2860984071459497e-06, 'Tractarians': 1.6430492035729749e-06, "1840's": 2.4645738053594624e-06, "1850's": 2.4645738053594624e-06, '800,000': 3.2860984071459497e-06, '1850': 3.2860984071459497e-06, 'disapprobation': 1.6430492035729749e-06, 'disloyalty': 2.4645738053594624e-06, 'Apologia': 1.6430492035729749e-06, 'keenest': 2.4645738053594624e-06, 'churchgoing': 3.2860984071459497e-06, 'Oratory': 1.6430492035729749e-06, 'mornings': 9.036770619651361e-06, 'churchgoers': 1.6430492035729749e-06, 'medieval': 1.4787442832156774e-05, 'cathedrals': 3.2860984071459497e-06, 'priest': 1.3965918230370285e-05, 'recounted': 2.4645738053594624e-06, 'evensong': 1.6430492035729749e-06, 'congregation': 3.861165628396491e-05, 'falling': 2.546726265538111e-05, '9,748,000': 1.6430492035729749e-06, '2,887,671': 1.6430492035729749e-06, 'rolls': 9.036770619651361e-06, 'tenth': 4.929147610718925e-06, 'Fate': 4.107623008932437e-06, 'Redundant': 1.6430492035729749e-06, "Archbishops'": 1.6430492035729749e-06, '790': 1.6430492035729749e-06, '260': 4.929147610718925e-06, 'demolition': 1.6430492035729749e-06, '764': 1.6430492035729749e-06, 'chapels': 2.4645738053594624e-06, 'warehouses': 4.107623008932437e-06, 'Anglicans': 2.4645738053594624e-06, 'Nonconformists': 1.6430492035729749e-06, 'lapsed': 3.2860984071459497e-06, 'nonchurchgoing': 1.6430492035729749e-06, 'decreasing': 5.750672212505412e-06, 'clergyman': 9.036770619651361e-06, 'secularism': 1.6430492035729749e-06, 'Protestantism': 9.85829522143785e-06, 'Anglicanism': 1.6430492035729749e-06, 'someday': 7.393721416078387e-06, 'breakwater': 2.4645738053594624e-06, 'ironies': 1.6430492035729749e-06, 'ascendancy': 1.6430492035729749e-06, 'centenary': 1.6430492035729749e-06, 'mapping': 6.5721968142918994e-06, 'nationalistic': 3.2860984071459497e-06, 'reciting': 2.4645738053594624e-06, 'reclaim': 2.4645738053594624e-06, 'Benediction': 1.6430492035729749e-06, 'recite': 2.4645738053594624e-06, 'thy': 6.5721968142918994e-06, 'dowry': 2.4645738053594624e-06, 'Intercede': 1.6430492035729749e-06, 'fold': 5.750672212505412e-06, 'Shepherd': 1.6430492035729749e-06, 'vicar': 4.107623008932437e-06, 'Faith': 7.393721416078387e-06, 'Fathers': 8.215246017864873e-06, "England's": 1.6430492035729749e-06, 'endured': 9.85829522143785e-06, "Mary's": 9.036770619651361e-06, 'Shall': 1.232286902679731e-05, 'venerated': 2.4645738053594624e-06, 'Forty': 4.107623008932437e-06, 'Martyrs': 1.6430492035729749e-06, 'canonized': 2.4645738053594624e-06, 'un-English': 2.4645738053594624e-06, 'hyperbolically': 1.6430492035729749e-06, 'imprecations': 1.6430492035729749e-06, 'laity': 3.2860984071459497e-06, 'embarrassment': 7.393721416078387e-06, 'Irishmen': 1.6430492035729749e-06, 'mid-19th': 1.6430492035729749e-06, 'Universities': 2.4645738053594624e-06, '1854': 1.6430492035729749e-06, 'ecclesiastical': 7.393721416078387e-06, 'seminarians': 1.6430492035729749e-06, 'tutorials': 1.6430492035729749e-06, 'Cherwell': 1.6430492035729749e-06, 'respectful': 4.107623008932437e-06, 'depicting': 5.750672212505412e-06, 'clergymen': 5.750672212505412e-06, 'Nonconformist': 1.6430492035729749e-06, 'superficially': 3.2860984071459497e-06, 'mid-Victorian': 1.6430492035729749e-06, 'B.B.C.': 1.6430492035729749e-06, 'parson': 1.6430492035729749e-06, 'Liverpool': 2.4645738053594624e-06, 'Heenan': 1.6430492035729749e-06, 'Sacrifice': 2.4645738053594624e-06, "B.B.C.'s": 1.6430492035729749e-06, 'Bells': 2.4645738053594624e-06, 'Primate': 1.6430492035729749e-06, 'converts': 4.107623008932437e-06, 'immigrants': 9.036770619651361e-06, 'Leamington': 1.6430492035729749e-06, 'nun': 2.4645738053594624e-06, 'periodical': 4.107623008932437e-06, 'Lords': 2.4645738053594624e-06, 'votive': 2.4645738053594624e-06, 'Slough': 1.6430492035729749e-06, 'symbolize': 8.215246017864873e-06, 'uniqueness': 4.107623008932437e-06, 'circle': 4.8469951505402755e-05, 'universality': 3.2860984071459497e-06, 'formulated': 9.85829522143785e-06, 'Irenaeus': 1.232286902679731e-05, 'Savior': 4.107623008932437e-06, 'aeon': 1.6430492035729749e-06, 'swoops': 2.4645738053594624e-06, 'identifies': 5.750672212505412e-06, 'crucifixion': 1.6430492035729749e-06, 'spiral': 7.393721416078387e-06, 'recurrence': 1.6430492035729749e-06, 'primeval': 4.929147610718925e-06, 'Origen': 3.2860984071459497e-06, 'interprets': 3.2860984071459497e-06, 'portrays': 4.929147610718925e-06, 'Whence': 1.6430492035729749e-06, 'virgin': 8.215246017864873e-06, 'rained': 4.107623008932437e-06, 'pre-existence': 1.6430492035729749e-06, 'Existence': 1.6430492035729749e-06, 'willed': 5.750672212505412e-06, 'pre-existent': 1.6430492035729749e-06, 'eternity': 4.929147610718925e-06, 'Historical': 3.2860984071459497e-06, 'similitude': 5.750672212505412e-06, 'carnal': 2.4645738053594624e-06, 'imperfect': 4.107623008932437e-06, 'oyster': 4.929147610718925e-06, 'immortality': 1.6430492035729746e-05, 'immortal': 5.750672212505412e-06, 'mortality': 7.393721416078387e-06, 'grandeur': 5.750672212505412e-06, 'lord': 6.5721968142918994e-06, 'dominion': 6.5721968142918994e-06, 'Creator': 7.393721416078387e-06, 'overstepping': 1.6430492035729749e-06, 'self-conceited': 1.6430492035729749e-06, 'arrogance': 3.2860984071459497e-06, 'whence': 2.4645738053594624e-06, 'justification': 1.3965918230370285e-05, 'systematizing': 2.4645738053594624e-06, 'random': 3.0396410266100035e-05, 'imprecise': 1.6430492035729749e-06, "devil's": 3.2860984071459497e-06, 'disobedience': 6.5721968142918994e-06, 'beguiled': 2.4645738053594624e-06, 'obedience': 8.215246017864873e-06, 'disobedient': 2.4645738053594624e-06, 'obey': 7.393721416078387e-06, 'betrothed': 1.6430492035729749e-06, 'salvation': 2.300268885002165e-05, 'potentiality': 3.2860984071459497e-06, 'extenuate': 1.6430492035729749e-06, 'carelessness': 2.4645738053594624e-06, 'prompts': 2.4645738053594624e-06, 'parallels': 2.4645738053594624e-06, 'parallelism': 3.2860984071459497e-06, 'woe': 4.107623008932437e-06, 'downward': 1.3965918230370285e-05, 'nadir': 2.4645738053594624e-06, 'Wherefore': 3.2860984071459497e-06, 'forfeit': 3.2860984071459497e-06, 'disobeyed': 4.107623008932437e-06, 'parallel': 3.368250867324598e-05, 'preparation': 3.779013168217842e-05, 'ate': 1.3965918230370285e-05, "Man's": 9.036770619651361e-06, 'conformed': 3.2860984071459497e-06, 'providential': 1.6430492035729749e-06, 'punitive': 1.6430492035729749e-06, 'envied': 4.929147610718925e-06, 'assert': 1.6430492035729746e-05, 'pitied': 2.4645738053594624e-06, 'irremediable': 2.4645738053594624e-06, 'interposing': 1.6430492035729749e-06, 'dissolution': 3.2860984071459497e-06, 'flesh': 4.354080389468383e-05, 'ceasing': 2.4645738053594624e-06, 'Tatian': 1.6430492035729749e-06, 'Cyprian': 1.6430492035729749e-06, "Irenaeus'": 1.6430492035729749e-06, 'Greek-speaking': 1.6430492035729749e-06, 'incorruptibility': 1.6430492035729749e-06, 'deliverance': 2.4645738053594624e-06, 'transience': 1.6430492035729749e-06, 'symbolizes': 3.2860984071459497e-06, 'describe': 3.450403327503247e-05, "Adam's": 2.4645738053594624e-06, 'naturalness': 2.4645738053594624e-06, 'temporal': 4.929147610718925e-06, 'sting': 4.929147610718925e-06, 'divinely': 3.2860984071459497e-06, 'alters': 1.6430492035729749e-06, 'revisionist': 1.6430492035729749e-06, 'Unitarian': 7.393721416078387e-06, 'Ezra': 2.4645738053594624e-06, 'Stiles': 1.6430492035729749e-06, 'Gannett': 3.2860984071459497e-06, 'honorable': 8.215246017864873e-06, 'sanhedrin': 1.6430492035729749e-06, '1845': 4.929147610718925e-06, 'insisting': 5.750672212505412e-06, 'persecuted': 3.2860984071459497e-06, 'calumniated': 1.6430492035729749e-06, 'judiciously': 2.4645738053594624e-06, 'legitimately': 2.4645738053594624e-06, 'diffusing': 3.2860984071459497e-06, 'excoriate': 1.6430492035729749e-06, 'pernicious': 1.6430492035729749e-06, 'pulpits': 1.6430492035729749e-06, 'poison': 9.036770619651361e-06, 'Lecture': 1.6430492035729749e-06, 'suppress': 5.750672212505412e-06, "Gannett's": 1.6430492035729749e-06, 'propriety': 5.750672212505412e-06, 'Calvinist': 1.6430492035729749e-06, 'Orthodoxy': 3.2860984071459497e-06, 'inquiry': 1.4787442832156774e-05, 'proclaiming': 4.107623008932437e-06, 'Unitarianism': 2.4645738053594624e-06, 'insults': 3.2860984071459497e-06, 'lavished': 1.6430492035729749e-06, 'betray': 4.107623008932437e-06, '1843': 1.6430492035729749e-06, 'Frothingham': 2.4645738053594624e-06, 'Trinitarians': 1.6430492035729749e-06, 'Unitarians': 2.4645738053594624e-06, 'conclusive': 9.85829522143785e-06, 'assurances': 3.2860984071459497e-06, 'heaves': 1.6430492035729749e-06, 'thanksgiving': 1.6430492035729749e-06, 'expel': 2.4645738053594624e-06, 'blot': 5.750672212505412e-06, 'escutcheon': 2.4645738053594624e-06, 'indelible': 4.929147610718925e-06, "Parker's": 2.4645738053594624e-06, 'insurgence': 1.6430492035729749e-06, 'peccavi': 1.6430492035729749e-06, 'Happily': 1.6430492035729749e-06, 'posterity': 4.929147610718925e-06, 'unforgivable': 1.6430492035729749e-06, 'attest': 2.4645738053594624e-06, 'Bartol': 1.6430492035729749e-06, 'whereupon': 5.750672212505412e-06, 'convulsions': 1.6430492035729749e-06, 'burly': 2.4645738053594624e-06, 'warming': 8.215246017864873e-06, 'excommunicated': 4.107623008932437e-06, 'ostracized': 1.6430492035729749e-06, 'reviled': 1.6430492035729749e-06, 'stratagems': 1.6430492035729749e-06, 'liberality': 3.2860984071459497e-06, 'abject': 3.2860984071459497e-06, 'penance': 4.929147610718925e-06, 'Waldo': 2.4645738053594624e-06, "Emerson's": 2.4645738053594624e-06, 'Address': 1.6430492035729749e-06, 'naming': 4.107623008932437e-06, 'apostates': 1.6430492035729749e-06, 'offspring': 6.5721968142918994e-06, 'loins': 2.4645738053594624e-06, 'shabbily': 2.4645738053594624e-06, 'realms': 2.4645738053594624e-06, 'infidel': 1.6430492035729749e-06, 'contagion': 2.4645738053594624e-06, 'histories': 8.215246017864873e-06, 'Emerson': 7.393721416078387e-06, 'shoving': 5.750672212505412e-06, 'lick': 3.2860984071459497e-06, 'veneration': 3.2860984071459497e-06, 'resigning': 1.6430492035729749e-06, 'afterwards': 9.036770619651361e-06, 'canker': 1.6430492035729749e-06, 'accusing': 7.393721416078387e-06, 'cherishing': 2.4645738053594624e-06, 'sarcasms': 1.6430492035729749e-06, 'bits': 9.85829522143785e-06, 'self-deprecation': 1.6430492035729749e-06, 'incontestable': 1.6430492035729749e-06, 'narrow-minded': 1.6430492035729749e-06, 'iconoclasm': 1.6430492035729749e-06, 'repressions': 1.6430492035729749e-06, 'brittle': 3.2860984071459497e-06, 'foundations': 1.232286902679731e-05, 'Garrison': 3.2860984071459497e-06, 'Sumner': 2.4645738053594624e-06, 'bravery': 4.107623008932437e-06, 'mobs': 4.107623008932437e-06, 'slavery': 2.6288787257167598e-05, 'respecting': 4.107623008932437e-06, 'passions': 1.0679819823224336e-05, 'abolitionists': 3.2860984071459497e-06, 'clear-cut': 5.750672212505412e-06, 'ultra-liberal': 1.6430492035729749e-06, 'proclaimed': 8.215246017864873e-06, 'poses': 1.6430492035729749e-06, 'theses': 1.6430492035729749e-06, 'commonplaces': 2.4645738053594624e-06, 'interrogation': 2.4645738053594624e-06, 'phrased': 3.2860984071459497e-06, 'rephrased': 1.6430492035729749e-06, 'intolerant': 1.6430492035729749e-06, 'exquisitely': 3.2860984071459497e-06, 'canons': 5.750672212505412e-06, 'Channing': 4.929147610718925e-06, 'Bostonians': 1.6430492035729749e-06, 'orthodox': 9.85829522143785e-06, 'abound': 1.6430492035729749e-06, 'individuality': 4.107623008932437e-06, 'inspections': 2.4645738053594624e-06, 'Opinion': 2.4645738053594624e-06, 'rod': 4.929147610718925e-06, 'poignantly': 1.6430492035729749e-06, 'hurried': 1.97165904428757e-05, 'hyperbole': 2.4645738053594624e-06, 'sermons': 2.4645738053594624e-06, 'world-at-large': 1.6430492035729749e-06, 'disguised': 9.85829522143785e-06, 'twenty-eighth': 1.6430492035729749e-06, 'polities': 1.6430492035729749e-06, 'descended': 7.393721416078387e-06, 'founders': 2.4645738053594624e-06, 'Hunkerish': 1.6430492035729749e-06, 'evaporated': 2.4645738053594624e-06, 'genteel': 4.107623008932437e-06, 'decorum': 2.4645738053594624e-06, 'prophesied': 4.107623008932437e-06, "Channing's": 1.6430492035729749e-06, 'prophecy': 4.929147610718925e-06, 'infraction': 1.6430492035729749e-06, 'libertines': 1.6430492035729749e-06, 'institutionalized': 3.2860984071459497e-06, 'defined': 3.286098407145949e-05, 'reminding': 4.929147610718925e-06, 'arraigned': 2.4645738053594624e-06, 'cherubim': 1.6430492035729749e-06, 'seraphim': 1.6430492035729749e-06, 'archangels': 1.6430492035729749e-06, 'merchant': 9.85829522143785e-06, 'holy': 1.4787442832156774e-05, 'Almighty': 4.929147610718925e-06, 'recollect': 1.6430492035729749e-06, 'emotions': 3.6147082478605446e-05, 'tides': 4.107623008932437e-06, 'astonished': 5.750672212505412e-06, 'compressed': 8.215246017864873e-06, 'snarled': 7.393721416078387e-06, 'Talk': 3.2860984071459497e-06, 'Reproach': 1.6430492035729749e-06, 'bishops': 4.929147610718925e-06, 'bosom': 7.393721416078387e-06, 'mitre': 1.6430492035729749e-06, 'pope': 4.929147610718925e-06, 'capitalists': 2.4645738053594624e-06, 'preachers': 2.4645738053594624e-06, 'malaria': 3.2860984071459497e-06, 'deceived': 4.929147610718925e-06, 'suffused': 4.929147610718925e-06, 'remorseless': 2.4645738053594624e-06, 'massacre': 1.6430492035729749e-06, 'shut': 3.779013168217842e-05, 'copiously': 1.6430492035729749e-06, 'impersonalized': 1.6430492035729749e-06, 'consciences': 1.6430492035729749e-06, 'endeavor': 4.929147610718925e-06, 'strenuous': 9.036770619651361e-06, '1848': 3.2860984071459497e-06, 'literal': 1.232286902679731e-05, 'factual': 6.5721968142918994e-06, 'historicity': 1.6430492035729749e-06, 'professing': 2.4645738053594624e-06, 'anew': 5.750672212505412e-06, 'transformed': 2.1359639646448672e-05, 'A.D.': 9.036770619651361e-06, 'alarmed': 6.5721968142918994e-06, 'comprehend': 4.929147610718925e-06, 'audacity': 3.2860984071459497e-06, 'majesterial': 1.6430492035729749e-06, 'Andrews': 2.4645738053594624e-06, 'Norton': 8.215246017864873e-06, 'dominating': 2.4645738053594624e-06, 'Truth': 2.4645738053594624e-06, 'shadow': 2.464573805359462e-05, 'geology': 3.2860984071459497e-06, 'herpetology': 1.6430492035729749e-06, 'mycology': 1.6430492035729749e-06, 'Testaments': 1.6430492035729749e-06, 'Criticism': 2.4645738053594624e-06, 'refute': 1.6430492035729749e-06, 'Doubts': 1.6430492035729749e-06, 'inculcated': 2.4645738053594624e-06, 'floundering': 2.4645738053594624e-06, 'redactions': 1.6430492035729749e-06, 'interpolations': 1.6430492035729749e-06, 'chasm': 2.4645738053594624e-06, 'reverent': 3.2860984071459497e-06, 'Bible-loving': 1.6430492035729749e-06, 'doubting': 3.2860984071459497e-06, 'Bible-emancipated': 1.6430492035729749e-06, 'shivering': 8.215246017864873e-06, 'modernists': 2.4645738053594624e-06, 'overreached': 2.4645738053594624e-06, 'Gospel': 4.107623008932437e-06, 'assuredly': 3.2860984071459497e-06, 'inexpressibly': 1.6430492035729749e-06, 'admiring': 4.107623008932437e-06, 'Pragmatism': 1.6430492035729749e-06, 'Test': 5.750672212505412e-06, 'Concordance': 1.6430492035729749e-06, 'Genesis': 1.6430492035729749e-06, 'textbook': 4.107623008932437e-06, 'treatise': 1.6430492035729749e-06, "Christ's": 1.7252016637516235e-05, 'begotten': 4.929147610718925e-06, 'Saviour': 7.393721416078387e-06, 'spiritually': 6.5721968142918994e-06, 'appetites': 3.2860984071459497e-06, 'affections': 4.107623008932437e-06, 'likeness': 3.2860984071459497e-06, 'fruits': 1.232286902679731e-05, 'avenues': 4.929147610718925e-06, 'glory': 1.5608967433943262e-05, 'dearest': 2.4645738053594624e-06, 'reveals': 1.8073541239302723e-05, 'precepts': 3.2860984071459497e-06, 'leadings': 1.6430492035729749e-06, 'dismissing': 3.2860984071459497e-06, 'Him': 3.6147082478605446e-05, 'discern': 4.107623008932437e-06, 'vested': 3.2860984071459497e-06, "Lord's": 1.0679819823224336e-05, 'bedside': 4.929147610718925e-06, 'beheld': 3.2860984071459497e-06, 'radiant': 7.393721416078387e-06, 'giveth': 2.4645738053594624e-06, 'tendered': 1.6430492035729749e-06, 'ministry': 6.5721968142918994e-06, 'ministering': 3.2860984071459497e-06, 'Looking': 9.85829522143785e-06, 'Prophet': 1.6430492035729749e-06, 'Isaiah': 1.6430492035729749e-06, 'Thou': 5.750672212505412e-06, 'trusteth': 2.4645738053594624e-06, 'innermost': 1.6430492035729749e-06, 'joys': 6.5721968142918994e-06, 'whosoever': 2.4645738053594624e-06, 'believeth': 2.4645738053594624e-06, 'perish': 2.4645738053594624e-06, 'Resting': 1.6430492035729749e-06, 'sweetly': 5.750672212505412e-06, "Jesus'": 2.4645738053594624e-06, 'flooding': 2.4645738053594624e-06, 'Satellites': 1.6430492035729749e-06, 'sputniks': 1.6430492035729749e-06, 'necks': 2.4645738053594624e-06, "Canaveral's": 1.6430492035729749e-06, 'suicides': 2.4645738053594624e-06, '$200,000,000': 1.6430492035729749e-06, '80,000': 2.4645738053594624e-06, 'fortune-tellers': 1.6430492035729749e-06, 'truth-packed': 1.6430492035729749e-06, 'defenses': 1.0679819823224336e-05, 'hell-bound': 1.6430492035729749e-06, 'spirituality': 1.6430492035729749e-06, '70,000,000': 1.6430492035729749e-06, 'worshipping': 1.6430492035729749e-06, 'bliss': 4.107623008932437e-06, 'hunger': 1.4787442832156774e-05, 'drowning': 4.107623008932437e-06, "they'll": 1.3144393628583799e-05, 'mouth-watering': 1.6430492035729749e-06, 'gnawing': 4.107623008932437e-06, 'Himself': 4.107623008932437e-06, 'longings': 2.4645738053594624e-06, 'Psalm': 3.2860984071459497e-06, 'Accept': 1.6430492035729749e-06, 'Fear': 4.107623008932437e-06, 'confessional': 2.4645738053594624e-06, 'ailments': 5.750672212505412e-06, 'diagnosable': 1.6430492035729749e-06, 'warts': 4.929147610718925e-06, 'worried': 2.9574885664313547e-05, '30%': 4.929147610718925e-06, '12%': 3.2860984071459497e-06, 'imaginary': 1.3965918230370285e-05, 'unfounded': 2.4645738053594624e-06, 'tellers': 2.4645738053594624e-06, 'escapist': 1.6430492035729749e-06, 'aspirin': 3.2860984071459497e-06, 'tranquilizers': 4.107623008932437e-06, 'amusement': 6.5721968142918994e-06, 'Sad': 1.6430492035729749e-06, 'jittery': 1.6430492035729749e-06, 'Watch': 4.929147610718925e-06, 'lounges': 1.6430492035729749e-06, 'advertise': 3.2860984071459497e-06, 'frivolity': 2.4645738053594624e-06, 'dubious': 6.5721968142918994e-06, 'Pascal': 1.6430492035729749e-06, 'mania': 4.929147610718925e-06, 'diversion': 6.5721968142918994e-06, 'opiates': 1.6430492035729749e-06, 'mounts': 7.393721416078387e-06, 'confessionals': 1.6430492035729749e-06, "Isn't": 9.036770619651361e-06, 'Munich': 5.750672212505412e-06, 'odor': 1.232286902679731e-05, 'promotes': 4.107623008932437e-06, 'psalmist': 4.929147610718925e-06, 'perpetual': 7.393721416078387e-06, 'encamp': 1.6430492035729749e-06, 'predicament': 3.2860984071459497e-06, 'devour': 2.4645738053594624e-06, 'devoured': 1.6430492035729749e-06, 'curtains': 7.393721416078387e-06, 'systematically': 8.215246017864873e-06, 'warlike': 4.929147610718925e-06, 'infidels': 1.6430492035729749e-06, 'encamped': 1.6430492035729749e-06, 'wailing': 4.929147610718925e-06, 'pleading': 1.0679819823224336e-05, 'belongings': 4.107623008932437e-06, 'walled': 1.6430492035729749e-06, 'Practically': 5.750672212505412e-06, 'vent': 8.215246017864873e-06, 'pounding': 5.750672212505412e-06, 'loudspeakers': 2.4645738053594624e-06, 'profanity': 4.107623008932437e-06, 'Notice': 4.107623008932437e-06, 'threefold': 4.107623008932437e-06, 'followeth': 1.6430492035729749e-06, 'gate': 2.793183646074057e-05, 'conquered': 3.2860984071459497e-06, 'apostle': 2.4645738053594624e-06, 'tribulation': 1.6430492035729749e-06, 'famine': 3.2860984071459497e-06, 'nakedness': 3.2860984071459497e-06, 'sword': 5.750672212505412e-06, 'reconciles': 1.6430492035729749e-06, 'sinned': 5.750672212505412e-06, 'debt': 1.1501344425010824e-05, 'stronghold': 3.2860984071459497e-06, 'psalm': 1.6430492035729749e-06, 'refuge': 6.5721968142918994e-06, 'mountains': 2.875336106252706e-05, 'behold': 3.2860984071459497e-06, 'desolations': 1.6430492035729749e-06, 'hath': 3.2860984071459497e-06, 'Tabit': 1.6430492035729749e-06, 'Ibn': 1.6430492035729749e-06, 'Korra': 1.6430492035729749e-06, '836-901': 1.6430492035729749e-06, 'Babylonians': 2.4645738053594624e-06, 'and/or': 1.4787442832156774e-05, 'Pythagoreans': 1.6430492035729749e-06, 'Classical': 4.929147610718925e-06, 'Lo': 1.8073541239302723e-05, 'Shu': 1.8073541239302723e-05, 'centrality': 1.6430492035729749e-06, 'ruler': 3.2860984071459497e-06, 'longed-for': 1.6430492035729749e-06, 'Warring': 1.6430492035729749e-06, "Ch'in": 2.4645738053594624e-06, 'dynasty': 4.929147610718925e-06, '221-207': 1.6430492035729749e-06, 'B.C.': 1.7252016637516235e-05, 'despotism': 4.929147610718925e-06, 'Shih': 1.6430492035729749e-06, 'Huang-ti': 1.6430492035729749e-06, 'hard-won': 1.6430492035729749e-06, 'divergent': 4.929147610718925e-06, 'divination': 3.2860984071459497e-06, 'survived': 1.232286902679731e-05, 'symbolism': 7.393721416078387e-06, 'Han': 8.215246017864873e-06, 'reuniting': 1.6430492035729749e-06, '202': 1.6430492035729749e-06, '220': 2.4645738053594624e-06, 'sprang': 1.1501344425010824e-05, 'wei': 2.4645738053594624e-06, 'numerical': 1.6430492035729746e-05, 'diagrams': 7.393721416078387e-06, 'Confucian': 3.2860984071459497e-06, 'culminated': 2.4645738053594624e-06, 'proscription': 3.2860984071459497e-06, '605': 2.4645738053594624e-06, 'semisecret': 1.6430492035729749e-06, 'anyhow': 1.3965918230370285e-05, 'cults': 4.107623008932437e-06, 'fullest': 4.929147610718925e-06, 'mathematical': 1.97165904428757e-05, 'imaginations': 1.6430492035729749e-06, 'cosmological': 2.4645738053594624e-06, 'hints': 8.215246017864873e-06, 'diagram': 9.036770619651361e-06, 'numerological': 1.6430492035729749e-06, 'arbitrarily': 4.929147610718925e-06, 'functionally': 3.2860984071459497e-06, 'symbolically': 4.929147610718925e-06, 'multiplies': 2.4645738053594624e-06, 'diagonals': 1.6430492035729749e-06, 'activated': 4.929147610718925e-06, 'overshadowed': 2.4645738053594624e-06, 'opposing': 1.1501344425010824e-05, 'pairs': 1.232286902679731e-05, 'equating': 3.2860984071459497e-06, 'Yang': 1.0679819823224336e-05, 'Yin': 7.393721416078387e-06, 'leveled': 1.1501344425010824e-05, 'erased': 2.4645738053594624e-06, 'harmonious': 4.929147610718925e-06, 'axis': 2.875336106252706e-05, 'Centrality': 3.2860984071459497e-06, 'tendencies': 4.929147610718925e-06, 'reverence': 4.929147610718925e-06, 'stimulated': 6.5721968142918994e-06, 'Wu': 1.6430492035729749e-06, 'Ti': 1.6430492035729749e-06, 'dynastic': 3.2860984071459497e-06, 'Directions': 4.929147610718925e-06, 'auspicious': 1.6430492035729749e-06, 'inscriptions': 1.6430492035729749e-06, 'mirrors': 4.107623008932437e-06, 'emperor': 6.5721968142918994e-06, 'Five-Elements': 2.4645738053594624e-06, 'Rulers': 1.6430492035729749e-06, 'Sacred': 4.107623008932437e-06, 'Metals': 1.6430492035729749e-06, 'Colors': 3.2860984071459497e-06, 'Tastes': 1.6430492035729749e-06, 'Odors': 1.6430492035729749e-06, 'Notes': 3.2860984071459497e-06, 'Bodily': 1.6430492035729749e-06, 'Functions': 2.4645738053594624e-06, 'Viscera': 1.6430492035729749e-06, 'ascribed': 4.929147610718925e-06, 'Elements': 4.107623008932437e-06, 'postulate': 3.2860984071459497e-06, 'Near': 7.393721416078387e-06, 'initiated': 1.0679819823224336e-05, 'exerted': 1.1501344425010824e-05, 'fives': 2.4645738053594624e-06, 'workings': 5.750672212505412e-06, 'numerology': 1.6430492035729749e-06, 'pervaded': 1.6430492035729749e-06, 'Scholars': 2.4645738053594624e-06, 'nonsensical': 1.6430492035729749e-06, 'stifle': 2.4645738053594624e-06, 'interrelation': 4.107623008932437e-06, 'philosophers': 8.215246017864873e-06, 'compendium': 1.6430492035729749e-06, 'pre-Han': 1.6430492035729749e-06, 'conversely': 4.107623008932437e-06, 'Yin-Yang': 2.4645738053594624e-06, 'Tsou': 1.6430492035729749e-06, 'Yen': 1.6430492035729749e-06, "T'ien": 1.6430492035729749e-06, 'Sky-god': 1.6430492035729749e-06, 'Tao': 4.107623008932437e-06, 'Universal': 4.929147610718925e-06, 'inactivity': 1.6430492035729749e-06, 'Moon': 9.85829522143785e-06, 'axial': 2.4645738053594624e-06, 'Provinces': 3.2860984071459497e-06, 'equated': 4.929147610718925e-06, 'sinuous': 2.4645738053594624e-06, 'Sung-Shan': 1.6430492035729749e-06, 'Honan': 2.4645738053594624e-06, "T'ai-Shan": 1.6430492035729749e-06, 'Shantung': 1.6430492035729749e-06, 'Hwa-Shan': 1.6430492035729749e-06, 'Shensi': 1.6430492035729749e-06, 'Heng-Shan': 1.6430492035729749e-06, 'Hopei': 1.6430492035729749e-06, 'mountain': 2.300268885002165e-05, 'Shansi': 1.6430492035729749e-06, 'Huo-Shan': 1.6430492035729749e-06, 'Anhwei': 1.6430492035729749e-06, 'Huai': 1.6430492035729749e-06, 'Kiang': 1.6430492035729749e-06, 'Chi': 1.6430492035729749e-06, 'Yellow': 3.2860984071459497e-06, 'upside': 7.393721416078387e-06, 'correspondingly': 2.4645738053594624e-06, 'maps': 1.1501344425010824e-05, 'insincere': 1.6430492035729749e-06, 'wayside': 2.4645738053594624e-06, 'evangelism': 5.750672212505412e-06, 'Visitation': 2.4645738053594624e-06, 'Evangelism': 3.2860984071459497e-06, 'fellowship': 2.218116424823516e-05, 'List': 3.2860984071459497e-06, 'Membership': 6.5721968142918994e-06, 'Preparation': 8.215246017864873e-06, 'Assimilation': 1.6430492035729749e-06, 'Neglect': 1.6430492035729749e-06, 'unchristian': 1.6430492035729749e-06, 'pastoral': 5.750672212505412e-06, 'outlining': 2.4645738053594624e-06, 'postponed': 8.215246017864873e-06, 'leaflet': 1.6430492035729749e-06, 'enclosed': 9.85829522143785e-06, 'devotions': 2.4645738053594624e-06, 'devotional': 1.6430492035729749e-06, 'discipleship': 2.4645738053594624e-06, 'mid-week': 1.6430492035729749e-06, 'refreshment': 2.4645738053594624e-06, 'History': 1.5608967433943262e-05, 'Duties': 2.4645738053594624e-06, 'Following': 1.3965918230370285e-05, 'topic': 8.215246017864873e-06, 'packet': 3.2860984071459497e-06, 'Reception': 4.107623008932437e-06, 'solicited': 2.4645738053594624e-06, 'finder': 2.4645738053594624e-06, 'pp.': 4.107623008932437e-06, '78-79': 1.6430492035729749e-06, 'refreshments': 2.4645738053594624e-06, "Preparation-Inquirers'": 1.6430492035729749e-06, 'dramatization': 1.6430492035729749e-06, 'Supper': 6.5721968142918994e-06, 'filmstrips': 1.6430492035729749e-06, 'denominational': 8.215246017864873e-06, 'enrich': 4.929147610718925e-06, 'Have': 4.1897754691110856e-05, 'hesitate': 9.036770619651361e-06, 'audibly': 1.6430492035729749e-06, 'Urge': 1.6430492035729749e-06, 'Select': 1.6430492035729749e-06, 'Conduct': 2.4645738053594624e-06, 'examinations': 7.393721416078387e-06, 'true-false': 1.6430492035729749e-06, 'Assign': 1.6430492035729749e-06, 'catechism': 2.4645738053594624e-06, 'memorized': 3.2860984071459497e-06, 'Invite': 2.4645738053594624e-06, 'Pledge': 1.6430492035729749e-06, 'Loyalty': 1.6430492035729749e-06, 'preparatory': 6.5721968142918994e-06, 'Sweazey': 1.6430492035729749e-06, 'painless': 3.2860984071459497e-06, 'denominations': 1.3144393628583799e-05, 'introductory': 3.2860984071459497e-06, 'face-to-face': 3.2860984071459497e-06, 'crescendo': 2.4645738053594624e-06, 'never-to-be-forgotten': 1.6430492035729749e-06, 'Psychologically': 1.6430492035729749e-06, 'climax': 1.232286902679731e-05, 'Provide': 2.4645738053594624e-06, 'Outline': 1.6430492035729749e-06, 'Arrange': 1.6430492035729749e-06, 'Sponsors': 1.6430492035729749e-06, 'Introduce': 1.6430492035729749e-06, 'Lead': 3.2860984071459497e-06, 'bulletin': 5.750672212505412e-06, 'spectator-type': 1.6430492035729749e-06, 'participant': 4.107623008932437e-06, 'unconcerned': 5.750672212505412e-06, 'inactive': 6.5721968142918994e-06, 'appalling': 8.215246017864873e-06, '1,419,833': 1.6430492035729749e-06, '1,541,991': 1.6430492035729749e-06, '122,158': 1.6430492035729749e-06, '1,080,062': 1.6430492035729749e-06, '4,499,608': 1.6430492035729749e-06, '4,622,444': 1.6430492035729749e-06, '4,122,354': 1.6430492035729749e-06, '7,360,187': 1.6430492035729749e-06, '7,484,268': 1.6430492035729749e-06, '9,910,741': 1.6430492035729749e-06, 'unconcern': 1.6430492035729749e-06, 'alerted': 3.2860984071459497e-06, 'cultivation': 4.107623008932437e-06, 'justifiably': 4.929147610718925e-06, 'Welcome': 4.929147610718925e-06, 'Sincere': 1.6430492035729749e-06, 'Inspiring': 2.4645738053594624e-06, 'recreational': 7.393721416078387e-06, 'Opportunities': 3.2860984071459497e-06, 'Creative': 1.6430492035729749e-06, 'Guidance': 2.4645738053594624e-06, 'Care': 2.4645738053594624e-06, 'confuse': 4.929147610718925e-06, 'uniformity': 9.85829522143785e-06, 'paradigm': 5.750672212505412e-06, 'splinter': 4.107623008932437e-06, 'map': 1.0679819823224336e-05, 'Massacres': 1.6430492035729749e-06, 'partition': 5.750672212505412e-06, 'grim': 1.232286902679731e-05, 'hostility': 5.750672212505412e-06, 'forcibly': 3.2860984071459497e-06, 'Institutions': 2.4645738053594624e-06, 'differentiation': 7.393721416078387e-06, 'exclusion': 6.5721968142918994e-06, 'amorphous': 5.750672212505412e-06, 'defines': 4.929147610718925e-06, 'dispense': 4.107623008932437e-06, 'form-creating': 1.6430492035729749e-06, 'eventualities': 1.6430492035729749e-06, 'intrinsically': 4.107623008932437e-06, 'instrumentally': 3.2860984071459497e-06, 'Interfaith': 2.4645738053594624e-06, 'Approached': 1.6430492035729749e-06, 'creatively': 3.2860984071459497e-06, 'relating': 1.7252016637516235e-05, 'finite': 9.85829522143785e-06, 'particularistic': 1.6430492035729749e-06, 'thwart': 3.2860984071459497e-06, 'minimally': 1.6430492035729749e-06, 'interfaith': 4.929147610718925e-06, 'nation-states': 1.6430492035729749e-06, 'affecting': 4.929147610718925e-06, 'juncture': 4.107623008932437e-06, 'occasioned': 4.929147610718925e-06, 'pathological': 8.215246017864873e-06, 'proportions': 1.5608967433943262e-05, 'paralleling': 1.6430492035729749e-06, 'authoritarian': 4.929147610718925e-06, 'bigoted': 1.6430492035729749e-06, 'bigots': 1.6430492035729749e-06, 'separates': 3.2860984071459497e-06, 'inadequacies': 2.4645738053594624e-06, 'compensate': 3.2860984071459497e-06, 'redeeming': 1.6430492035729749e-06, 'whatsoever': 5.750672212505412e-06, 'nurture': 4.107623008932437e-06, 'aggravate': 1.6430492035729749e-06, 'Afro-Asian': 4.107623008932437e-06, 'prominence': 4.929147610718925e-06, 'twentieth': 1.1501344425010824e-05, 'Emerging': 1.6430492035729749e-06, 'aflame': 3.2860984071459497e-06, 'non-Christians': 2.4645738053594624e-06, 'Colonialism': 1.6430492035729749e-06, 'repudiation': 4.107623008932437e-06, 'Nationalism': 1.6430492035729749e-06, 'indigenous': 3.2860984071459497e-06, 'Volksgeist': 1.6430492035729749e-06, 'incarnate': 2.4645738053594624e-06, 'trans-political': 1.6430492035729749e-06, 'justifications': 3.2860984071459497e-06, 'cross-cultural': 1.6430492035729749e-06, 'Asians': 1.6430492035729749e-06, 'mainland': 5.750672212505412e-06, 'Ceylon': 4.929147610718925e-06, 'Buddhists': 2.4645738053594624e-06, 'Buddhism': 8.215246017864873e-06, 'sectarian': 1.6430492035729749e-06, 'preponderantly': 1.6430492035729749e-06, 'rejoicing': 4.107623008932437e-06, '7,000,000': 1.6430492035729749e-06, 'lament': 1.6430492035729749e-06, 'missionaries': 9.036770619651361e-06, 'Hindu': 3.2860984071459497e-06, 'tolerance': 7.393721416078387e-06, 'epitomized': 3.2860984071459497e-06, 'Jerusalem': 6.5721968142918994e-06, 'Cairo': 4.929147610718925e-06, "Adventists'": 1.6430492035729749e-06, 'interval': 1.5608967433943262e-05, 'sects': 2.4645738053594624e-06, 'cultures': 9.85829522143785e-06, 'measurably': 1.6430492035729749e-06, 'anti-Christian': 1.6430492035729749e-06, 'Ironically': 3.2860984071459497e-06, 'pre-war': 5.750672212505412e-06, 'Hindus': 1.6430492035729749e-06, 'Muslims': 2.4645738053594624e-06, 'Theocracy': 1.6430492035729749e-06, 'reconsidered': 4.107623008932437e-06, 'disaffection': 1.6430492035729749e-06, 'thereof': 1.3965918230370285e-05, 'jurists': 2.4645738053594624e-06, 'Dudley': 1.6430492035729749e-06, 'expressly': 3.2860984071459497e-06, 'Muslim': 3.2860984071459497e-06, 'Islam': 3.2860984071459497e-06, 'succinctly': 2.4645738053594624e-06, 'Mohammad': 1.6430492035729749e-06, 'Ayub': 1.6430492035729749e-06, 'Khan': 1.6430492035729749e-06, 'determinedly': 2.4645738053594624e-06, 'Comparable': 2.4645738053594624e-06, 'intentionally': 4.107623008932437e-06, 'Sinai': 1.6430492035729749e-06, 'infusion': 1.6430492035729749e-06, 'multitudes': 2.4645738053594624e-06, 'penniless': 3.2860984071459497e-06, 'secularists': 1.6430492035729749e-06, 'Gustave': 1.6430492035729749e-06, "Weigel's": 2.4645738053594624e-06, 'delineation': 3.2860984071459497e-06, 'sacral': 1.6430492035729749e-06, 'Rican': 1.6430492035729749e-06, 'fallible': 1.6430492035729749e-06, 'Volunteer': 1.6430492035729749e-06, 'Movement': 4.107623008932437e-06, 'watches': 4.107623008932437e-06, 'prevalent': 4.929147610718925e-06, 'Hinduism': 2.4645738053594624e-06, 'Leslie': 2.4645738053594624e-06, 'Newbiggin': 1.6430492035729749e-06, 'dominant': 5.175604991254871e-05, 'absoluteness': 2.4645738053594624e-06, 'finality': 4.107623008932437e-06, "Newbiggin's": 1.6430492035729749e-06, 'Feeney': 1.6430492035729749e-06, 'mentioning': 7.393721416078387e-06, 'prudential': 1.6430492035729749e-06, 'calculation': 1.0679819823224336e-05, 'balancing': 4.107623008932437e-06, 'unintended': 2.4645738053594624e-06, 'indirectly': 1.3965918230370285e-05, 'repelled': 4.929147610718925e-06, 'probabilities': 1.7252016637516235e-05, 'risks': 4.929147610718925e-06, 'efficaciously': 2.4645738053594624e-06, 'foreknown': 1.6430492035729749e-06, 'guiltiness': 1.6430492035729749e-06, 'imputed': 4.929147610718925e-06, 'analyzing': 7.393721416078387e-06, 'worlds': 4.929147610718925e-06, 'prohibited': 6.5721968142918994e-06, 'Presumably': 5.750672212505412e-06, 'prudentially': 1.6430492035729749e-06, 'weighed': 1.3965918230370285e-05, 'objectively': 3.2860984071459497e-06, 'problematic': 3.2860984071459497e-06, 'outweighed': 4.107623008932437e-06, 'analyzes': 2.4645738053594624e-06, 'trammel': 1.6430492035729749e-06, 'contingencies': 4.929147610718925e-06, 'unforeseen': 2.4645738053594624e-06, 'pacifism': 3.2860984071459497e-06, 'deriving': 4.107623008932437e-06, "anyone's": 4.929147610718925e-06, 'non-political': 2.4645738053594624e-06, 'distinctions': 1.3144393628583799e-05, 'Toynbee': 8.215246017864873e-06, 'accidental': 7.393721416078387e-06, 'indefinitely': 5.750672212505412e-06, 'devastation': 2.4645738053594624e-06, 'comparative': 1.4787442832156774e-05, 'realistically': 7.393721416078387e-06, 'detest': 1.6430492035729749e-06, 'anguish': 7.393721416078387e-06, 'improbable': 2.4645738053594624e-06, 'prevail': 6.5721968142918994e-06, 'deduced': 5.750672212505412e-06, 'eventuality': 1.6430492035729749e-06, 'proximate': 2.4645738053594624e-06, 'distinguishing': 5.750672212505412e-06, 'annihilation': 5.750672212505412e-06, 'precautions': 6.5721968142918994e-06, 'Quoting': 1.6430492035729749e-06, 'capitulation': 2.4645738053594624e-06, 'Compared': 3.2860984071459497e-06, 'incur': 4.929147610718925e-06, 'evils': 8.215246017864873e-06, 'affirms': 1.6430492035729749e-06, 'anticipations': 3.2860984071459497e-06, 'Orwell': 2.4645738053594624e-06, 'Eighty-Four': 3.2860984071459497e-06, 'irredeemably': 1.6430492035729749e-06, 'frightful': 5.750672212505412e-06, 'dehumanised': 1.6430492035729749e-06, 'doomsday': 1.6430492035729749e-06, 'affirm': 1.0679819823224336e-05, 'irredeemable': 2.4645738053594624e-06, 'justitia': 1.6430492035729749e-06, 'imprinted': 1.6430492035729749e-06, 'pax-ordo': 3.2860984071459497e-06, 'clothed': 4.929147610718925e-06, 'Heavenly': 3.2860984071459497e-06, 'repel': 7.393721416078387e-06, 'misshapen': 2.4645738053594624e-06, 'whereon': 1.6430492035729749e-06, 'uselessly': 3.2860984071459497e-06, 'atomisation': 1.6430492035729749e-06, 'amass': 2.4645738053594624e-06, 'brutally': 2.4645738053594624e-06, 'rebellions': 1.6430492035729749e-06, 'regaining': 3.2860984071459497e-06, 'preconditioned': 2.4645738053594624e-06, 'attaining': 5.750672212505412e-06, 'proviso': 3.2860984071459497e-06, 'planet': 1.8073541239302723e-05, 'habitable': 2.4645738053594624e-06, 'fright': 2.4645738053594624e-06, 'unrelated': 6.5721968142918994e-06, 'endures': 2.4645738053594624e-06, 'thoughtful': 9.85829522143785e-06, 'foreshortening': 1.6430492035729749e-06, 'immanent': 3.2860984071459497e-06, 'endurable': 2.4645738053594624e-06, 'aspirations': 1.0679819823224336e-05, 'one-sixth': 2.4645738053594624e-06, 'self-evident': 4.929147610718925e-06, 're-evaluation': 1.6430492035729749e-06, 'assumptions': 1.97165904428757e-05, 'Real': 6.5721968142918994e-06, 'Estate': 3.2860984071459497e-06, 'Boards': 3.2860984071459497e-06, 'NAREB': 2.4645738053594624e-06, 'realtor': 4.107623008932437e-06, 'conceive': 1.232286902679731e-05, 'Wesleyan': 3.2860984071459497e-06, 'realtors': 1.232286902679731e-05, 'colloquium': 2.4645738053594624e-06, 'psychologists': 9.85829522143785e-06, 'ethicists': 1.6430492035729749e-06, 'forthrightness': 2.4645738053594624e-06, 'clarify': 1.1501344425010824e-05, 'ambivalence': 4.929147610718925e-06, 'self-images': 1.6430492035729749e-06, 'oneself': 4.929147610718925e-06, 'buyer': 2.4645738053594624e-06, 'mediating': 1.6430492035729749e-06, "realtor's": 1.6430492035729749e-06, 'Judgments': 1.6430492035729749e-06, "buyers'": 1.6430492035729749e-06, 'professionalism': 2.4645738053594624e-06, 'restrictive': 6.5721968142918994e-06, "NAREB's": 1.6430492035729749e-06, 'Code': 1.3965918230370285e-05, 'Realtor': 1.6430492035729749e-06, 'nationality': 3.2860984071459497e-06, 'detrimental': 4.107623008932437e-06, 'stricken': 4.929147610718925e-06, 'avoidance': 7.393721416078387e-06, 'stigma': 1.6430492035729749e-06, 'attach': 1.232286902679731e-05, 'non-white': 1.6430492035729749e-06, 'agitators': 1.6430492035729749e-06, 'responsiveness': 4.107623008932437e-06, 'socially': 1.3144393628583799e-05, 'insistent': 7.393721416078387e-06, 'client-service': 1.6430492035729749e-06, 'respectability': 4.929147610718925e-06, 'Realtors': 4.929147610718925e-06, 'alumni': 4.107623008932437e-06, 'communal': 4.107623008932437e-06, 'exercised': 1.5608967433943262e-05, 'involvement': 1.1501344425010824e-05, 'pervasively': 1.6430492035729749e-06, 'fragmented': 4.107623008932437e-06, 'minimized': 4.929147610718925e-06, 'racially': 1.6430492035729749e-06, 'prejudiced': 4.107623008932437e-06, 'obscures': 1.6430492035729749e-06, 'clauses': 4.107623008932437e-06, 'illumine': 1.6430492035729749e-06, 'residentially': 1.6430492035729749e-06, "Negroes'": 1.6430492035729749e-06, 'well-kept': 4.107623008932437e-06, 'privacy': 9.85829522143785e-06, 'Data': 1.0679819823224336e-05, 'Often': 1.7252016637516235e-05, 'declining': 8.215246017864873e-06, 'anticipates': 2.4645738053594624e-06, 'Relevant': 1.6430492035729749e-06, 'Discussion': 4.929147610718925e-06, 'securing': 6.5721968142918994e-06, 'agitation': 5.750672212505412e-06, 'leverage': 1.6430492035729749e-06, 'evasion': 1.6430492035729749e-06, 'undermined': 2.4645738053594624e-06, 'anti-discriminatory': 1.6430492035729749e-06, "Connecticut's": 1.6430492035729749e-06, 'equity': 4.929147610718925e-06, 'lobbied': 1.6430492035729749e-06, 'anti-discrimination': 1.6430492035729749e-06, 'wanton': 3.2860984071459497e-06, 'omission': 2.4645738053594624e-06, 'Judicial': 2.4645738053594624e-06, 'v.': 1.4787442832156774e-05, 'Kraemer': 1.6430492035729749e-06, 'covenants': 1.6430492035729749e-06, 'unenforcible': 1.6430492035729749e-06, 'repudiated': 3.2860984071459497e-06, 'compliance': 5.750672212505412e-06, 'reformism': 1.6430492035729749e-06, 'permissibility': 1.6430492035729749e-06, 'ethicist': 2.4645738053594624e-06, 'presumes': 3.2860984071459497e-06, 'embraces': 4.107623008932437e-06, 'Yonkers': 1.6430492035729749e-06, 'infinitely': 3.2860984071459497e-06, 'all-inclusive': 1.6430492035729749e-06, 'Racial': 1.6430492035729749e-06, 'professions': 4.929147610718925e-06, 'attaches': 2.4645738053594624e-06, 'skillfulness': 1.6430492035729749e-06, "client's": 6.5721968142918994e-06, 'pressed': 2.464573805359462e-05, 'professed': 4.929147610718925e-06, 'bearer': 4.107623008932437e-06, 'shaping': 7.393721416078387e-06, 'Religion': 1.5608967433943262e-05, 'chunk': 2.4645738053594624e-06, 'metallic': 8.215246017864873e-06, 'Hydrogen': 1.6430492035729749e-06, 'Af': 0.0008182385033793415, 'rent': 1.8073541239302723e-05, 'octillion': 3.2860984071459497e-06, 'peas': 2.0538115044662184e-05, 'attic': 1.232286902679731e-05, 'trillion': 1.6430492035729749e-06, 'quadrillion': 1.6430492035729749e-06, 'blizzard': 6.5721968142918994e-06, 'snowing': 4.107623008932437e-06, 'snows': 6.5721968142918994e-06, 'blanketed': 1.6430492035729749e-06, 'quintillion': 1.6430492035729749e-06, 'raging': 2.4645738053594624e-06, 'sextillion': 1.6430492035729749e-06, 'oceans': 3.2860984071459497e-06, 'planets': 1.889506584108921e-05, 'septillion': 1.6430492035729749e-06, 'farthest': 3.2860984071459497e-06, 'Milky': 2.4645738053594624e-06, '250,000': 4.107623008932437e-06, 'swallow': 8.215246017864873e-06, 'Wonderland': 1.6430492035729749e-06, 'pill': 1.3144393628583799e-05, 'stratosphere': 1.6430492035729749e-06, 'swell': 6.5721968142918994e-06, 'balloon': 8.215246017864873e-06, 'magnified': 5.750672212505412e-06, 'forty': 2.7110311858954083e-05, 'luminous': 1.0679819823224336e-05, 'footballs': 1.6430492035729749e-06, 'ellipses': 2.4645738053594624e-06, 'oxygen': 3.6147082478605446e-05, 'pinhead': 1.6430492035729749e-06, 'negatively': 2.4645738053594624e-06, 'orbits': 8.215246017864873e-06, 'sponge': 5.750672212505412e-06, 'Someone': 1.3965918230370285e-05, 'immaterial': 2.4645738053594624e-06, 'spheres': 4.107623008932437e-06, 'discouraging': 4.929147610718925e-06, 'obeyed': 6.5721968142918994e-06, 'electrodynamics': 1.6430492035729749e-06, 'supermachine': 1.6430492035729749e-06, 'mechanistic': 1.6430492035729749e-06, 'determinism': 1.6430492035729749e-06, 'predetermined': 3.2860984071459497e-06, 'agnostics': 1.6430492035729749e-06, 'atheists': 3.2860984071459497e-06, 'Broglie': 1.6430492035729749e-06, 'physicist': 4.107623008932437e-06, 'waves': 4.2719279292897344e-05, 'orbiting': 3.2860984071459497e-06, 'pond': 1.97165904428757e-05, 'symmetrical': 2.4645738053594624e-06, 'counterpoint': 4.929147610718925e-06, 'ebbs': 1.6430492035729749e-06, 'antiphonal': 1.6430492035729749e-06, 'Nantucket': 4.107623008932437e-06, 'thirty-one': 2.4645738053594624e-06, 'scallops': 1.6430492035729749e-06, 'daytime': 1.5608967433943262e-05, "Martha's": 1.6430492035729749e-06, 'Vineyard': 1.6430492035729749e-06, 'modify': 5.750672212505412e-06, 'mould': 1.6430492035729749e-06, 'allegiance': 4.107623008932437e-06, 'unobtainable': 3.2860984071459497e-06, 'connexion': 2.4645738053594624e-06, 'approximation': 6.5721968142918994e-06, 'generalize': 4.929147610718925e-06, 'conformity': 1.3965918230370285e-05, 'lessened': 8.215246017864873e-06, 'transgressed': 1.6430492035729749e-06, 'subscribed': 3.2860984071459497e-06, 'cognizance': 2.4645738053594624e-06, 'drunkenness': 3.2860984071459497e-06, 'malicious': 2.4645738053594624e-06, 'gossip': 1.0679819823224336e-05, 'cheating': 1.6430492035729749e-06, 'sexual': 4.8469951505402755e-05, 'offender': 2.4645738053594624e-06, 'burgeoned': 1.6430492035729749e-06, 'desuetude': 1.6430492035729749e-06, 'lowering': 4.929147610718925e-06, 'dependable': 7.393721416078387e-06, 'programmes': 1.6430492035729749e-06, 'labour': 3.2860984071459497e-06, '1808-1895': 1.6430492035729749e-06, 'Theological': 3.2860984071459497e-06, 'Seminary': 7.393721416078387e-06, 'Evangelical': 1.6430492035729749e-06, '1859-1929': 1.6430492035729749e-06, 'granddaughter': 2.4645738053594624e-06, '1893': 3.2860984071459497e-06, 'pilgrim': 3.2860984071459497e-06, 'stern': 1.8073541239302723e-05, 'mend': 2.4645738053594624e-06, 'flaw': 3.2860984071459497e-06, 'patriot': 6.5721968142918994e-06, 'thine': 1.6430492035729749e-06, 'alabaster': 3.2860984071459497e-06, 'undimmed': 1.6430492035729749e-06, 'strains': 7.393721416078387e-06, 'Awakening': 1.6430492035729749e-06, 'revivalism': 2.4645738053594624e-06, 'fountain-head': 1.6430492035729749e-06, 'Transcendentalism': 2.4645738053594624e-06, 'Walt': 4.929147610718925e-06, 'Whitman': 2.4645738053594624e-06, 'Melville': 3.2860984071459497e-06, 'Hawthorne': 5.750672212505412e-06, 'Reform': 4.107623008932437e-06, 'arising': 9.85829522143785e-06, 'initiation': 5.750672212505412e-06, 'parentage': 2.4645738053594624e-06, 'Trinitarian': 1.6430492035729749e-06, 'Congregationalism': 1.6430492035729749e-06, 'Quakers': 4.107623008932437e-06, 'warranted': 3.2860984071459497e-06, 'Saints': 2.4645738053594624e-06, 'Adventists': 1.6430492035729749e-06, 'Missions': 1.6430492035729749e-06, 'Hopkinsian': 2.4645738053594624e-06, 'benevolence': 4.107623008932437e-06, 'endeavours': 1.6430492035729749e-06, 'Millennium': 1.6430492035729749e-06, 'paralleled': 4.107623008932437e-06, 'Transcendentalists': 1.6430492035729749e-06, 'kindred': 3.2860984071459497e-06, 'Evangelicalism': 1.6430492035729749e-06, 'Pietism': 1.6430492035729749e-06, 'anti-slavery': 1.0679819823224336e-05, 'alleviation': 2.4645738053594624e-06, 'Inner': 2.4645738053594624e-06, 'disclose': 8.215246017864873e-06, 'ephemeral': 4.107623008932437e-06, '1815': 5.750672212505412e-06, '1693': 1.6430492035729749e-06, 'Yearly': 1.6430492035729749e-06, 'emancipate': 2.4645738053594624e-06, 'comply': 4.929147610718925e-06, 'Hopkins': 6.5721968142918994e-06, 'Methodism': 1.6430492035729749e-06, '1789': 3.2860984071459497e-06, 'Lundy': 1.6430492035729749e-06, '1789-1839': 1.6430492035729749e-06, '1805-1879': 1.6430492035729749e-06, 'Nova': 1.6430492035729749e-06, 'Scotian': 1.6430492035729749e-06, 'Chiefly': 1.6430492035729749e-06, 'incessant': 4.107623008932437e-06, 'Incurably': 1.6430492035729749e-06, 'dogmatic': 4.107623008932437e-06, 'fearless': 4.929147610718925e-06, 'devout': 3.2860984071459497e-06, 'Greenleaf': 2.4645738053594624e-06, 'Whittier': 1.6430492035729749e-06, '1807-1892': 1.6430492035729749e-06, 'cowardly': 3.2860984071459497e-06, 'compromising': 4.107623008932437e-06, 'emphatically': 3.2860984071459497e-06, 'impulse': 1.7252016637516235e-05, 'Finney': 3.2860984071459497e-06, 'Weld': 3.2860984071459497e-06, '1803-1895': 1.6430492035729749e-06, "Finney's": 2.4645738053594624e-06, 'evangelists': 1.6430492035729749e-06, 'temperance': 1.6430492035729749e-06, 'enrolled': 8.215246017864873e-06, 'Oberlin': 2.4645738053594624e-06, 'Giddings': 1.6430492035729749e-06, 'underlay': 1.6430492035729749e-06, 'Beecher': 2.4645738053594624e-06, "Stowe's": 1.6430492035729749e-06, 'shunned': 1.6430492035729749e-06, '1811-1884': 1.6430492035729749e-06, 'Lyman': 1.6430492035729749e-06, 'insufficiently': 3.2860984071459497e-06, 'freedmen': 3.2860984071459497e-06, 'philanthropies': 1.6430492035729749e-06, 'undergirding': 1.6430492035729749e-06, 'Tappan': 2.4645738053594624e-06, '1786-1865': 1.6430492035729749e-06, '1788-1873': 1.6430492035729749e-06, 'Individuals': 1.6430492035729749e-06, 'transmuted': 4.107623008932437e-06, 'awesome': 4.107623008932437e-06, 'worshipped': 2.4645738053594624e-06, 'worldly': 8.215246017864873e-06, 'newfound': 1.6430492035729749e-06, 'lineages': 1.6430492035729749e-06, 'otherworldly': 2.4645738053594624e-06, 'puissant': 2.4645738053594624e-06, 'ancestors': 5.750672212505412e-06, 'eminence': 4.107623008932437e-06, 'interdependent': 7.393721416078387e-06, 'Proper': 3.2860984071459497e-06, 'observance': 5.750672212505412e-06, 'generating': 6.5721968142918994e-06, 'supremely': 4.107623008932437e-06, 'insuring': 4.929147610718925e-06, 'manifested': 5.750672212505412e-06, 'dualities': 1.6430492035729749e-06, 'swaying': 3.2860984071459497e-06, 'alternation': 2.4645738053594624e-06, 'demoted': 1.6430492035729749e-06, 'outrages': 3.2860984071459497e-06, 'rigid': 2.0538115044662184e-05, 'offend': 4.107623008932437e-06, 'provoke': 3.2860984071459497e-06, 'unleashing': 1.6430492035729749e-06, 'countrywide': 2.4645738053594624e-06, 'disasters': 4.107623008932437e-06, 'temple': 1.889506584108921e-05, 'obeying': 3.2860984071459497e-06, 'flouted': 1.6430492035729749e-06, 'Westerners': 1.6430492035729749e-06, 'comprehending': 3.2860984071459497e-06, 'deadweight': 1.6430492035729749e-06, 'constraint': 2.4645738053594624e-06, 'constrictions': 1.6430492035729749e-06, 'thatched-roof': 1.6430492035729749e-06, 'adultery': 2.4645738053594624e-06, 'Basing': 1.6430492035729749e-06, 'empirical': 1.97165904428757e-05, 'burial': 9.036770619651361e-06, 'urns': 2.4645738053594624e-06, 'magical': 1.0679819823224336e-05, 'Taoism': 4.107623008932437e-06, 'Taoists': 2.4645738053594624e-06, 'Quietist': 2.4645738053594624e-06, 'unchanging': 2.4645738053594624e-06, 'manipulation': 6.5721968142918994e-06, 'magicians': 1.6430492035729749e-06, 'Mahayana': 9.85829522143785e-06, 'underwent': 2.4645738053594624e-06, 'package': 1.7252016637516235e-05, 'digested': 1.6430492035729749e-06, 'Zen': 2.218116424823516e-05, 'morsels': 1.6430492035729749e-06, 'pantheon': 3.2860984071459497e-06, 'hells': 1.6430492035729749e-06, 'gorgeously': 1.6430492035729749e-06, 'appareled': 1.6430492035729749e-06, 'wielded': 3.2860984071459497e-06, 'self-realized': 1.6430492035729749e-06, 'superhuman': 2.4645738053594624e-06, 'idolatry': 1.6430492035729749e-06, 'monastic': 6.5721968142918994e-06, 'magic-practicing': 1.6430492035729749e-06, 'bonzes': 2.4645738053594624e-06, 'catered': 1.6430492035729749e-06, 'Nonmagical': 1.6430492035729749e-06, 'Confucianism': 3.2860984071459497e-06, 'ethos': 4.107623008932437e-06, 'Propriety': 1.6430492035729749e-06, 'synonymous': 4.107623008932437e-06, 'Promoters': 2.4645738053594624e-06, 'practicality': 2.4645738053594624e-06, 'redeem': 2.4645738053594624e-06, 'Proponents': 2.4645738053594624e-06, 'disproportionately': 1.6430492035729749e-06, 'dignify': 1.6430492035729749e-06, 'indisputably': 1.6430492035729749e-06, 'Taoist': 3.2860984071459497e-06, 'metaphysic': 3.2860984071459497e-06, 'metaphysical': 1.3965918230370285e-05, 'Quietism': 2.4645738053594624e-06, "Ch'an": 2.4645738053594624e-06, 'doctrines': 4.929147610718925e-06, 'enjoinder': 1.6430492035729749e-06, 'perturbations': 2.4645738053594624e-06, 'stillness': 8.215246017864873e-06, 'Infinite': 2.4645738053594624e-06, 'antipathy': 4.107623008932437e-06, 'outward': 9.036770619651361e-06, 'exponents': 1.6430492035729749e-06, 'Zennist': 1.6430492035729749e-06, 'perceived': 1.0679819823224336e-05, 'perception': 2.300268885002165e-05, 'indwelling': 2.4645738053594624e-06, 'ratiocinating': 1.6430492035729749e-06, 'cognitive': 2.4645738053594624e-06, 'irreverence': 2.4645738053594624e-06, 'texts': 3.2860984071459497e-06, 'patriarch': 1.6430492035729749e-06, 'outhouse': 1.6430492035729749e-06, 'self-reliant': 3.2860984071459497e-06, 'mysticisms': 1.6430492035729749e-06, 'Eternal': 3.2860984071459497e-06, 'transmittable': 1.6430492035729749e-06, 'Reality': 1.6430492035729749e-06, 'handicap': 5.750672212505412e-06, 'riddles': 2.4645738053594624e-06, "mind's": 5.750672212505412e-06, 'koan': 1.6430492035729749e-06, 'preoccupations': 1.6430492035729749e-06, 'kingdom-wide': 1.6430492035729749e-06, 'ordering': 1.1501344425010824e-05, 'haste': 8.215246017864873e-06, 'gobbles': 1.6430492035729749e-06, 'drug': 1.5608967433943262e-05, 'anchoritism': 1.6430492035729749e-06, 'theoretically': 4.107623008932437e-06, 'pantheist': 1.6430492035729749e-06, 'recluse': 2.4645738053594624e-06, 'anchorite': 1.6430492035729749e-06, 'strove': 4.107623008932437e-06, 'magically': 3.2860984071459497e-06, 'distilled': 7.393721416078387e-06, 'self-seeking': 1.6430492035729749e-06, 'contemplation': 5.750672212505412e-06, 'attained': 7.393721416078387e-06, 'seclusion': 3.2860984071459497e-06, 'Anchorite': 1.6430492035729749e-06, 'Exponents': 1.6430492035729749e-06, 'supernaturalism': 4.107623008932437e-06, 'credulous': 1.6430492035729749e-06, 'credulity': 3.2860984071459497e-06, 'Hwang': 4.107623008932437e-06, 'Pah': 4.107623008932437e-06, 'Baku': 1.6430492035729749e-06, 'Tien': 2.4645738053594624e-06, 'Tai': 1.6430492035729749e-06, 'inhabited': 5.750672212505412e-06, 'Arhats': 1.6430492035729749e-06, 'monk': 1.1501344425010824e-05, 'emitted': 3.2860984071459497e-06, 'torrent': 4.107623008932437e-06, 'beckoned': 6.5721968142918994e-06, 'Arhat': 1.6430492035729749e-06, 'Mahayanist': 1.6430492035729749e-06, 'Shan': 3.2860984071459497e-06, 'Kyo-zan': 1.6430492035729749e-06, 'salutation': 1.6430492035729749e-06, 'sceneries': 1.6430492035729749e-06, 'mayst': 1.6430492035729749e-06, 'exclaimed': 1.0679819823224336e-05, 'Buddha': 7.393721416078387e-06, 'Manjucri': 1.6430492035729749e-06, 'unexpectedly': 9.85829522143785e-06, 'Shakya': 1.6430492035729749e-06, 'carryovers': 1.6430492035729749e-06, 'appeased': 2.4645738053594624e-06, 'mealtime': 2.4645738053594624e-06, 'Zendo': 2.4645738053594624e-06, 'anti-authoritarian': 1.6430492035729749e-06, 'pragmatic': 4.107623008932437e-06, 'self-confidence': 4.107623008932437e-06, 'individuation': 1.6430492035729749e-06, 'reconcile': 4.107623008932437e-06, 'demons': 5.750672212505412e-06, 'therewith': 3.2860984071459497e-06, '1898': 4.107623008932437e-06, 'indulgences': 1.6430492035729749e-06, 'indulgence': 4.107623008932437e-06, 'Faithful': 1.6430492035729749e-06, 'Plenary': 2.4645738053594624e-06, 'Indulgence': 1.6430492035729749e-06, 'Pius': 2.4645738053594624e-06, '1778': 2.4645738053594624e-06, 'excited': 1.97165904428757e-05, 'disseminated': 5.750672212505412e-06, 'Bishops': 1.6430492035729749e-06, 'amongst': 4.107623008932437e-06, 'Edition': 1.6430492035729749e-06, 'god': 1.4787442832156774e-05, 'Hebrews': 1.6430492035729749e-06, '10-12': 1.6430492035729749e-06, 'Ephesians': 4.929147610718925e-06, 'perishing': 1.6430492035729749e-06, 'Satan': 3.2860984071459497e-06, 'blinded': 4.107623008932437e-06, 'unbelieving': 1.6430492035729749e-06, 'reborn': 3.2860984071459497e-06, 'incorruptible': 2.4645738053594624e-06, 'Amen': 1.232286902679731e-05, 'amen': 4.929147610718925e-06, 'Evidences': 1.6430492035729749e-06, 'saviour': 1.6430492035729749e-06, 'habit': 1.97165904428757e-05, 'Cf.': 1.6430492035729749e-06, 'regeneration': 1.6430492035729749e-06, 'believer': 4.107623008932437e-06, 'righteous': 4.107623008932437e-06, 'abides': 2.4645738053594624e-06, 'persevere': 1.6430492035729749e-06, 'Philippians': 1.6430492035729749e-06, 'blemish': 2.4645738053594624e-06, 'gladness': 1.6430492035729749e-06, 'majesty': 1.6430492035729749e-06, 'Nicodemus': 3.2860984071459497e-06, '5-7': 2.4645738053594624e-06, 'circumcision': 1.6430492035729749e-06, 'uncircumcision': 1.6430492035729749e-06, 'Galatians': 2.4645738053594624e-06, 'yourselves': 7.393721416078387e-06, '8-10': 1.6430492035729749e-06, 'implantation': 1.6430492035729749e-06, 'impartation': 1.6430492035729749e-06, 'partaker': 1.6430492035729749e-06, 'Colossians': 1.6430492035729749e-06, 'dwelling': 1.1501344425010824e-05, 'miraculous': 4.107623008932437e-06, 'hearest': 1.6430492035729749e-06, 'dost': 1.6430492035729749e-06, 'instantaneous': 4.929147610718925e-06, 'hears': 6.5721968142918994e-06, 'worshipful': 2.4645738053594624e-06, 'zealously': 3.2860984071459497e-06, 'sacraments': 2.4645738053594624e-06, 'unction': 1.6430492035729749e-06, 'repent': 3.2860984071459497e-06, 'cursed': 9.036770619651361e-06, 'spit': 9.85829522143785e-06, 'mock': 7.393721416078387e-06, 'flogged': 2.4645738053594624e-06, 'blood-bought': 1.6430492035729749e-06, "soul's": 3.2860984071459497e-06, 'curses': 3.2860984071459497e-06, 'implore': 1.6430492035729749e-06, 'forsake': 1.6430492035729749e-06, 'Behold': 1.6430492035729749e-06, 'sup': 1.6430492035729749e-06, '3:20': 1.6430492035729749e-06, 'revellings': 1.6430492035729749e-06, 'banquetings': 1.6430492035729749e-06, 'lusts': 1.6430492035729749e-06, 'Guideposts': 7.393721416078387e-06, 'sorrow': 8.215246017864873e-06, 'brightens': 1.6430492035729749e-06, 'circulate': 2.4645738053594624e-06, 'astounding': 4.929147610718925e-06, 'newsstand': 1.6430492035729749e-06, 'channel': 9.036770619651361e-06, 'bend': 1.6430492035729746e-05, 'blade': 1.1501344425010824e-05, 'whisper': 1.0679819823224336e-05, 'materialism': 5.750672212505412e-06, 'post-war': 7.393721416078387e-06, 'Thornburg': 7.393721416078387e-06, 'Peale': 3.2860984071459497e-06, 'mailing': 6.5721968142918994e-06, 'unstapled': 1.6430492035729749e-06, 'leaflets': 3.2860984071459497e-06, 'ingredients': 8.215246017864873e-06, 'philanthropic': 4.107623008932437e-06, 'down-and-outers': 1.6430492035729749e-06, 'LeSourd': 3.2860984071459497e-06, 'derelict': 1.6430492035729749e-06, 'overwhelm': 1.6430492035729749e-06, 'Teresa': 1.6430492035729749e-06, 'Durlach': 1.6430492035729749e-06, 'dim': 1.6430492035729746e-05, 'Visualize': 1.6430492035729749e-06, 'Hundreds': 3.2860984071459497e-06, 'chaplains': 1.6430492035729749e-06, 'Forces': 2.300268885002165e-05, 'Bedridden': 1.6430492035729749e-06, 'Braille': 1.6430492035729749e-06, 'inducements': 1.6430492035729749e-06, 'Boal': 1.6430492035729749e-06, 'organizes': 1.6430492035729749e-06, 'Granville': 2.4645738053594624e-06, 'Rector': 2.546726265538111e-05, 'Searching': 1.6430492035729749e-06, 'roving': 2.4645738053594624e-06, 'Kittler': 1.6430492035729749e-06, 'Sherrill': 2.4645738053594624e-06, 'Alaska': 1.889506584108921e-05, 'Varner': 1.6430492035729749e-06, 'idea-exchange': 1.6430492035729749e-06, 'Around': 5.750672212505412e-06, 'Jew': 2.218116424823516e-05, 'contributes': 9.036770619651361e-06, 'Catherine': 4.107623008932437e-06, 'Mullendore': 1.6430492035729749e-06, 'distances': 1.4787442832156774e-05, 'Starr': 1.6430492035729749e-06, 'milks': 2.4645738053594624e-06, 'Weiss': 1.6430492035729749e-06, 'prayer-requests': 1.6430492035729749e-06, 'selflessness': 1.6430492035729749e-06, 'braces': 4.107623008932437e-06, 'deadliest': 2.4645738053594624e-06, 'shield': 7.393721416078387e-06, 'sanctimonious': 2.4645738053594624e-06, 'Serious': 3.2860984071459497e-06, 'Sharp': 2.4645738053594624e-06, 'brain-wracking': 1.6430492035729749e-06, 'hovers': 1.6430492035729749e-06, "Guideposts'": 1.6430492035729749e-06, 'brightness': 1.5608967433943262e-05, 'hated': 2.3824213451808133e-05, 'Rumors': 2.4645738053594624e-06, 'Barbudos': 1.6430492035729749e-06, 'war-dirty': 1.6430492035729749e-06, 'Revolutionaries': 1.6430492035729749e-06, 'waving': 1.1501344425010824e-05, 'Prado': 1.6430492035729749e-06, 'smiling': 2.7110311858954083e-05, 'Diario': 2.4645738053594624e-06, 'Marina': 6.5721968142918994e-06, 'stoned': 2.4645738053594624e-06, 'exiles': 1.6430492035729749e-06, 'Machado': 1.6430492035729749e-06, 'rejoiced': 1.6430492035729749e-06, 'topple': 1.6430492035729749e-06, 'throes': 2.4645738053594624e-06, 'paredon': 2.4645738053594624e-06, 'coupling': 7.393721416078387e-06, 'proclamation': 9.85829522143785e-06, 'invalid': 5.750672212505412e-06, 'landlord': 1.0679819823224336e-05, 'millionaire': 2.4645738053594624e-06, 'speculator': 1.6430492035729749e-06, 'Stores': 1.6430492035729749e-06, 'Courts': 4.929147610718925e-06, 'Paredon': 2.4645738053594624e-06, 'rotogravures': 1.6430492035729749e-06, 'gleaming': 5.750672212505412e-06, 'thump': 3.2860984071459497e-06, 'whir': 3.2860984071459497e-06, 'ready-made': 4.929147610718925e-06, 'crucifix': 3.2860984071459497e-06, 'bodybuilder': 5.750672212505412e-06, 'sonny-boy': 1.6430492035729749e-06, 'barbell': 4.929147610718925e-06, 'stunt': 1.6430492035729749e-06, 'schoolmates': 2.4645738053594624e-06, 'Hey': 9.85829522143785e-06, 'lookit': 1.6430492035729749e-06, 'whaddya': 1.6430492035729749e-06, 'gonna': 1.3965918230370285e-05, "guy's": 3.2860984071459497e-06, 'gotta': 4.929147610718925e-06, 'unkind': 3.2860984071459497e-06, 'Courcy': 3.2860984071459497e-06, 'admonishing': 1.6430492035729749e-06, 'weights': 9.85829522143785e-06, 'Montreal': 4.107623008932437e-06, 'bodybuilding': 1.6430492035729749e-06, 'entrusted': 2.4645738053594624e-06, 'professeur': 1.6430492035729749e-06, 'sterno-cleido': 1.6430492035729749e-06, 'mastoideus': 1.6430492035729749e-06, 'tibialis': 1.6430492035729749e-06, 'anticus': 1.6430492035729749e-06, 'Weider': 5.750672212505412e-06, 'Undoubtedly': 6.5721968142918994e-06, 'prize-winning': 1.6430492035729749e-06, 'pupil': 1.6430492035729746e-05, 'physique': 1.6430492035729749e-06, 'Gaetan': 1.6430492035729749e-06, "D'Amours": 1.6430492035729749e-06, 'Jean-Paul': 2.4645738053594624e-06, 'Senesac': 1.6430492035729749e-06, 'Boissoneault': 1.6430492035729749e-06, 'Harve': 1.6430492035729749e-06, 'Muscular': 1.6430492035729749e-06, 'Yesiree': 1.6430492035729749e-06, "4'": 1.6430492035729749e-06, "10''": 3.2860984071459497e-06, 'Muscle': 3.2860984071459497e-06, 'Builder': 3.2860984071459497e-06, 'Seeing': 1.0679819823224336e-05, 'testimonials': 1.6430492035729749e-06, 'Quick-Wate': 1.6430492035729749e-06, 'Super-Protein': 1.6430492035729749e-06, 'wonder-working': 1.6430492035729749e-06, "Henri's": 2.4645738053594624e-06, 'bodyweight': 1.6430492035729749e-06, 'exercising': 5.750672212505412e-06, 'skiing': 6.5721968142918994e-06, 'skinny': 7.393721416078387e-06, 'shapely': 2.4645738053594624e-06, 'dissatisfied': 5.750672212505412e-06, 'gym': 2.4645738053594624e-06, 'Tanny': 1.6430492035729749e-06, 'now-famous': 1.6430492035729749e-06, 'Push-Pull': 8.215246017864873e-06, 'Super-Set': 7.393721416078387e-06, 'wide-grip': 1.6430492035729749e-06, 'Straight-Arm': 1.6430492035729749e-06, 'Pullover': 2.4645738053594624e-06, 'widens': 1.6430492035729749e-06, 'ribcage': 1.6430492035729749e-06, 'collar-to-collar': 1.6430492035729749e-06, 'Bench': 6.5721968142918994e-06, 'Reeves-type': 1.6430492035729749e-06, 'gladiator': 1.6430492035729749e-06, 'pecs': 3.2860984071459497e-06, 'lats': 2.4645738053594624e-06, 'frontal': 3.2860984071459497e-06, 'deltoids': 2.4645738053594624e-06, 'Set': 5.750672212505412e-06, 'chest-back-shoulder': 1.6430492035729749e-06, 'pumped-up': 2.4645738053594624e-06, 'Super-Sets': 3.2860984071459497e-06, 'five-minute': 1.6430492035729749e-06, 'dumbbells': 1.6430492035729749e-06, 'elbows': 6.5721968142918994e-06, 'pectorals': 1.6430492035729749e-06, 'width': 1.232286902679731e-05, 'dumbbell': 2.4645738053594624e-06, 'classically': 2.4645738053594624e-06, 'one-dumbbell': 1.6430492035729749e-06, 'Bent-Arm': 1.6430492035729749e-06, 'serratus': 2.4645738053594624e-06, 'pin-point': 1.6430492035729749e-06, 'affords': 4.929147610718925e-06, 'widegrip': 1.6430492035729749e-06, 'Pushup': 2.4645738053594624e-06, 'Bars': 1.6430492035729749e-06, 'Lateral': 1.6430492035729749e-06, 'Raise': 1.6430492035729749e-06, 'pectoral-ribcage': 1.6430492035729749e-06, 'stretcher': 1.6430492035729749e-06, 'w-i-d-e': 1.6430492035729749e-06, "Claude's": 1.6430492035729749e-06, 'chest-back-lat-shoulder': 1.6430492035729749e-06, 'pectoral-front': 1.6430492035729749e-06, 'deltoid': 1.6430492035729749e-06, 'Incline': 2.4645738053594624e-06, 'incline': 2.4645738053594624e-06, 'flare': 3.2860984071459497e-06, 'steel-edged': 1.6430492035729749e-06, 'carved-out-of-solid': 1.6430492035729749e-06, 'mass-building': 1.6430492035729749e-06, 'muscle-shaping': 1.6430492035729749e-06, 'torso-defining': 1.6430492035729749e-06, 'Physique': 1.6430492035729749e-06, 'Rarer': 1.6430492035729749e-06, 'Herculean': 1.6430492035729749e-06, "judges'": 1.6430492035729749e-06, 'symmetry': 6.5721968142918994e-06, 'hallmark': 2.4645738053594624e-06, 'high-set': 2.4645738053594624e-06, 'high-rep': 2.4645738053594624e-06, 'workouts': 3.2860984071459497e-06, "sculptor's": 1.6430492035729749e-06, 'chisel': 4.107623008932437e-06, 'definition-specialization': 2.4645738053594624e-06, 'bodybuilders': 2.4645738053594624e-06, 'spectacularly': 2.4645738053594624e-06, 'limbo': 1.6430492035729749e-06, 'discovers': 3.2860984071459497e-06, 'reacquainted': 1.6430492035729749e-06, 'Leg': 4.929147610718925e-06, 'Lunge': 3.2860984071459497e-06, 'thigh-bone': 1.6430492035729749e-06, 'lengths': 1.97165904428757e-05, 'thighs': 6.5721968142918994e-06, 'hipline': 1.6430492035729749e-06, 'unforgettable': 3.2860984071459497e-06, 'facet': 2.4645738053594624e-06, 'Definition': 4.107623008932437e-06, 'lifters': 4.107623008932437e-06, 'Squatting': 3.2860984071459497e-06, 'Curling': 1.6430492035729749e-06, 'Extensor': 1.6430492035729749e-06, 'Used': 1.6430492035729749e-06, 'reps': 1.6430492035729749e-06, 'razor-sharp': 1.6430492035729749e-06, 'cables': 2.4645738053594624e-06, 'writhing': 5.750672212505412e-06, 'skin': 3.94331808857514e-05, 'contraction-extension': 1.6430492035729749e-06, 'improves': 8.215246017864873e-06, 'Squats': 1.6430492035729749e-06, 'concentrated': 2.546726265538111e-05, 'Stands': 3.2860984071459497e-06, "here's": 1.6430492035729749e-06, 'Clean': 4.929147610718925e-06, 'suitably-loaded': 1.6430492035729749e-06, 'straightening': 4.107623008932437e-06, 'breather': 1.6430492035729749e-06, 'One-Leg': 1.6430492035729749e-06, 'nutshell': 1.6430492035729749e-06, 'balance-wise': 1.6430492035729749e-06, 'wobble': 3.2860984071459497e-06, 'Squat-style': 1.6430492035729749e-06, 'leg-split': 1.6430492035729749e-06, 'enormously': 8.215246017864873e-06, 'pansies': 8.215246017864873e-06, 'sizzling': 1.6430492035729749e-06, 'Pansies': 4.107623008932437e-06, 'velvety': 3.2860984071459497e-06, 'glaring': 6.5721968142918994e-06, 'gardener': 4.107623008932437e-06, 'beauties': 4.929147610718925e-06, 'puzzled': 1.5608967433943262e-05, 'riotous': 2.4645738053594624e-06, 'blooming': 9.036770619651361e-06, 'pansy': 5.750672212505412e-06, 'unimproved': 2.4645738053594624e-06, 'harrowed': 1.6430492035729749e-06, 'compost': 7.393721416078387e-06, 'brown-black': 1.6430492035729749e-06, 'fingered': 2.4645738053594624e-06, 'adequacy': 3.2860984071459497e-06, 'tilth': 1.6430492035729749e-06, 'germinate': 2.4645738053594624e-06, 'lustily': 1.6430492035729749e-06, 'seedbed': 2.4645738053594624e-06, 'coddled': 2.4645738053594624e-06, 'coldest': 4.107623008932437e-06, 'ventilation': 3.2860984071459497e-06, 'rooting': 2.4645738053594624e-06, 'dig': 8.215246017864873e-06, 'spray': 1.3965918230370285e-05, 'sowing': 1.6430492035729749e-06, 'protects': 4.107623008932437e-06, 'Ants': 1.6430492035729749e-06, 'sprinkling': 6.5721968142918994e-06, 'porous': 1.0679819823224336e-05, 'mulch': 5.750672212505412e-06, 'sawdust': 3.2860984071459497e-06, 'hay': 1.4787442832156774e-05, 'thrifty': 2.4645738053594624e-06, 'transplant': 2.4645738053594624e-06, 'oftener': 1.6430492035729749e-06, 'bloom': 9.85829522143785e-06, 'pulverized': 2.4645738053594624e-06, 'phosphate': 6.5721968142918994e-06, 'meal': 2.546726265538111e-05, 'encourages': 4.929147610718925e-06, 'overfeed': 1.6430492035729749e-06, 'spade': 4.107623008932437e-06, 'decayed': 4.107623008932437e-06, 'manure': 5.750672212505412e-06, "neighbors'": 1.6430492035729749e-06, 'feedings': 1.6430492035729749e-06, 'diluted': 5.750672212505412e-06, 'dissolved': 1.3144393628583799e-05, 'seedlings': 1.6430492035729749e-06, 'frost': 3.2860984071459497e-06, 'moisture': 8.215246017864873e-06, 'heaving': 4.107623008932437e-06, 'thawing': 2.4645738053594624e-06, 'thaw': 5.750672212505412e-06, 'bloomed': 5.750672212505412e-06, 'unheated': 2.4645738053594624e-06, 'greenhouse': 2.4645738053594624e-06, 'zero': 1.97165904428757e-05, 'budded': 1.6430492035729749e-06, '4-inch': 3.2860984071459497e-06, 'strawberries': 2.4645738053594624e-06, 'Try': 1.0679819823224336e-05, 'leggy': 1.6430492035729749e-06, 'tall-growing': 1.6430492035729749e-06, 'blossoms': 6.5721968142918994e-06, 'pegging': 1.6430492035729749e-06, 'bobby': 2.4645738053594624e-06, 'Pick': 3.2860984071459497e-06, 'pegged-down': 1.6430492035729749e-06, 'tug': 3.2860984071459497e-06, 'assures': 5.750672212505412e-06, 'shear': 3.368250867324598e-05, 'stub': 3.2860984071459497e-06, 'leaf': 1.0679819823224336e-05, 'cut-down': 1.6430492035729749e-06, 'behave': 1.1501344425010824e-05, "Nature's": 1.6430492035729749e-06, 'reputable': 6.5721968142918994e-06, 'grower': 1.6430492035729749e-06, 'sickly': 2.4645738053594624e-06, 'cared': 1.3144393628583799e-05, 'prolific': 2.4645738053594624e-06, 'buds': 4.929147610718925e-06, 'Treat': 3.2860984071459497e-06, 'solicitude': 3.2860984071459497e-06, 'tomato': 4.107623008932437e-06, 'healthful': 3.2860984071459497e-06, 'avocado': 8.215246017864873e-06, 'avocados': 4.929147610718925e-06, 'tasted': 9.036770619651361e-06, 'pear': 5.750672212505412e-06, 'meaty': 1.6430492035729749e-06, 'melon-like': 1.6430492035729749e-06, 'pulp': 4.929147610718925e-06, 'ripe': 9.036770619651361e-06, 'Bartlett': 3.2860984071459497e-06, 'bland': 3.2860984071459497e-06, 'nut-like': 1.6430492035729749e-06, 'eatings': 1.6430492035729749e-06, 'anticipation': 1.7252016637516235e-05, 'refrigerated': 4.929147610718925e-06, 'packing': 1.3144393628583799e-05, 'graded': 2.4645738053594624e-06, 'excelsior': 1.6430492035729749e-06, '42-degrees-F.': 1.6430492035729749e-06, 'lapses': 4.107623008932437e-06, 'cooling': 3.368250867324598e-05, 'delays': 3.2860984071459497e-06, 'grovelike': 1.6430492035729749e-06, "grocer's": 2.4645738053594624e-06, 'dyeing': 1.6430492035729749e-06, 'waxing': 1.6430492035729749e-06, 'gassing': 1.6430492035729749e-06, 'ripening': 3.2860984071459497e-06, 'egg': 1.0679819823224336e-05, "plant's": 2.4645738053594624e-06, 'sprays': 1.6430492035729749e-06, 'Nutritious': 1.6430492035729749e-06, 'reducer': 1.6430492035729749e-06, 'versatility': 4.107623008932437e-06, 'poisons': 2.4645738053594624e-06, 'nutritional': 3.2860984071459497e-06, 'Avocados': 1.6430492035729749e-06, 'nutrients': 4.929147610718925e-06, 'unsaturated': 2.4645738053594624e-06, 'acids': 6.5721968142918994e-06, 'appreciable': 4.929147610718925e-06, 'vitamin': 4.929147610718925e-06, 'thiamin': 1.6430492035729749e-06, 'riboflavin': 1.6430492035729749e-06, 'Calcium': 3.2860984071459497e-06, 'phosphorus': 1.6430492035729749e-06, 'significantly': 1.232286902679731e-05, 'refrigeration': 1.0679819823224336e-05, "Veterans'": 1.6430492035729749e-06, 'diets': 2.4645738053594624e-06, '1/2': 1.3965918230370285e-05, 'dietary': 4.929147610718925e-06, 'pulsating': 3.2860984071459497e-06, 'vibration': 4.929147610718925e-06, 'clutches': 3.2860984071459497e-06, 'Nuclear': 4.929147610718925e-06, 'fearsome': 1.6430492035729749e-06, 'ballistic': 1.3144393628583799e-05, 'stealth': 4.929147610718925e-06, 'merciless': 3.2860984071459497e-06, 'swiftness': 1.6430492035729749e-06, 'terrifying': 6.5721968142918994e-06, 'bewitched': 2.4645738053594624e-06, 'attacker': 5.750672212505412e-06, "opponent's": 2.4645738053594624e-06, 'defenseless': 3.2860984071459497e-06, "victim's": 4.107623008932437e-06, 'ideally': 4.929147610718925e-06, 'vulnerability': 6.5721968142918994e-06, 'appallingly': 1.6430492035729749e-06, 'city-trading': 1.6430492035729749e-06, 'ICBMs': 2.4645738053594624e-06, "attacker's": 1.6430492035729749e-06, 'committing': 4.929147610718925e-06, "missile's": 1.6430492035729749e-06, 'trajectory': 2.4645738053594624e-06, 'location': 5.011300070897573e-05, 'Placing': 1.6430492035729749e-06, 'vessels': 1.0679819823224336e-05, 'detect': 9.036770619651361e-06, 'compute': 5.750672212505412e-06, 'ballistics': 1.6430492035729749e-06, 'instantaneously': 1.6430492035729749e-06, 'ICBM': 3.2860984071459497e-06, 'self-protection': 1.6430492035729749e-06, 'mobility': 7.393721416078387e-06, 'perfected': 4.929147610718925e-06, 'exceedingly': 7.393721416078387e-06, 'imprecisely': 3.2860984071459497e-06, 'spacecraft': 3.2860984071459497e-06, 'cataclysmic': 1.6430492035729749e-06, 'cinders': 2.4645738053594624e-06, 'long-endurance': 1.6430492035729749e-06, 'rail-mobile': 1.6430492035729749e-06, 'B-70': 5.750672212505412e-06, 'railway-based': 1.6430492035729749e-06, 'multimegaton': 1.6430492035729749e-06, 'employing': 9.036770619651361e-06, 'degrade': 1.6430492035729749e-06, 'hardened': 1.0679819823224336e-05, 'Survivability': 1.6430492035729749e-06, 'Minuteman': 3.2860984071459497e-06, 'Atlas': 1.0679819823224336e-05, 'Titan': 6.5721968142918994e-06, 'airborne': 6.5721968142918994e-06, 'Skybolt': 1.6430492035729749e-06, 'duration': 9.85829522143785e-06, 'airfields': 5.750672212505412e-06, 'doomed': 9.036770619651361e-06, 'one-shot': 7.393721416078387e-06, 'Eliminate': 1.6430492035729749e-06, 'bomb-proof': 1.6430492035729749e-06, 'hangars': 1.6430492035729749e-06, 'Build': 1.6430492035729749e-06, '3,000-foot': 2.4645738053594624e-06, 'runways': 4.107623008932437e-06, 'disperse': 2.4645738053594624e-06, 'propulsions': 1.6430492035729749e-06, 'thrust-to-weight': 3.2860984071459497e-06, 'ratio': 3.0396410266100035e-05, 'vertical-takeoff-and-landing': 1.6430492035729749e-06, 'VTOL': 2.4645738053594624e-06, 'Large': 6.5721968142918994e-06, 'obsolete': 4.929147610718925e-06, 'propulsion': 5.750672212505412e-06, 'powerplants': 1.6430492035729749e-06, 'takeoff': 2.4645738053594624e-06, '12-to-one': 1.6430492035729749e-06, 'supersonic': 4.107623008932437e-06, '15-to-one': 1.6430492035729749e-06, 'weighing': 8.215246017864873e-06, 'vertically': 2.4645738053594624e-06, 'SAC': 7.393721416078387e-06, 'dispersion': 3.2860984071459497e-06, 'reconnaissance': 8.215246017864873e-06, 'disarm': 2.4645738053594624e-06, 'SAMOS': 3.2860984071459497e-06, 'semiautomatic': 1.6430492035729749e-06, '30-minute': 1.6430492035729749e-06, 'Pre-attack': 1.6430492035729749e-06, 'favorably': 1.232286902679731e-05, 'priceless': 4.929147610718925e-06, 'infrared': 1.0679819823224336e-05, 'photography': 6.5721968142918994e-06, 'kiloton': 1.6430492035729749e-06, 'psi': 2.4645738053594624e-06, 'overpressure': 1.6430492035729749e-06, 'one-kiloton': 1.6430492035729749e-06, '1/20th': 1.6430492035729749e-06, 'side-looking': 1.6430492035729749e-06, 'taxi-ways': 1.6430492035729749e-06, 'Trout': 3.2860984071459497e-06, 'classifiers': 1.6430492035729749e-06, 'quintets': 1.6430492035729749e-06, 'serenade': 1.6430492035729749e-06, 'divertimento': 1.6430492035729749e-06, 'dual': 8.215246017864873e-06, 'renditions': 3.2860984071459497e-06, 'contrabass': 1.6430492035729749e-06, 'discreetly': 2.4645738053594624e-06, "clown's": 1.6430492035729749e-06, 'china': 5.750672212505412e-06, 'marathon': 1.6430492035729749e-06, "Angel's": 3.2860984071459497e-06, 'reissue': 2.4645738053594624e-06, 'Recordings': 1.6430492035729749e-06, 'Schnabel-Pro': 1.6430492035729749e-06, 'Arte': 4.107623008932437e-06, 'editions': 8.215246017864873e-06, 'COLH': 1.6430492035729749e-06, 'Artur': 1.6430492035729749e-06, 'Schnabel': 5.750672212505412e-06, 'Schubert-Beethoven-Mozart': 1.6430492035729749e-06, 'performer': 6.5721968142918994e-06, 'Curzon': 4.929147610718925e-06, 'Adrian': 4.107623008932437e-06, 'Aeschbacher': 1.6430492035729749e-06, 'Babin': 2.4645738053594624e-06, 'sheds': 4.107623008932437e-06, 'pedagogical': 1.6430492035729749e-06, 'pianistic': 1.6430492035729749e-06, 'Schnabelian': 1.6430492035729749e-06, 'differs': 9.036770619651361e-06, "Schnabel's": 5.750672212505412e-06, "student's": 3.2860984071459497e-06, 'structural': 1.889506584108921e-05, 'vibrancy': 2.4645738053594624e-06, 'impetuous': 3.2860984071459497e-06, 'serious-minded': 1.6430492035729749e-06, 'strait-laced': 1.6430492035729749e-06, 'pianism': 1.6430492035729749e-06, 'markings': 2.4645738053594624e-06, 'superlatives': 1.6430492035729749e-06, 'Pro': 2.4645738053594624e-06, "Arte's": 1.6430492035729749e-06, 'collaborate': 2.4645738053594624e-06, 'Quartet': 6.5721968142918994e-06, 'interpretative': 1.6430492035729749e-06, 'indulgent': 2.4645738053594624e-06, 'twenty-five-year-old': 1.6430492035729749e-06, 'Forellen': 1.6430492035729749e-06, 'splicing': 1.6430492035729749e-06, "Curzon's": 3.2860984071459497e-06, 'cite': 6.5721968142918994e-06, 'delicious': 4.107623008932437e-06, 'laendler': 1.6430492035729749e-06, 'Viennese': 1.6430492035729749e-06, 'gossamer': 1.6430492035729749e-06, 'shading': 4.107623008932437e-06, 'finicky': 1.6430492035729749e-06, 'tempos': 1.6430492035729749e-06, 'Octet': 1.6430492035729749e-06, 'expertise': 3.2860984071459497e-06, 'compliments': 4.107623008932437e-06, 'Johann': 1.6430492035729749e-06, 'Krumpp': 1.6430492035729749e-06, 'scrawny': 4.107623008932437e-06, 'tottering': 1.6430492035729749e-06, 'hilarity': 1.6430492035729749e-06, 'Glazer-Fine': 1.6430492035729749e-06, 'Concert-Disc': 1.6430492035729749e-06, 'lucidity': 1.6430492035729749e-06, "Fleisher's": 1.6430492035729749e-06, "Aeschbacher's": 1.6430492035729749e-06, 'locating': 9.85829522143785e-06, 'Hephzibah': 1.6430492035729749e-06, 'Menuhin-Amadeus': 1.6430492035729749e-06, 'Babin-Festival': 1.6430492035729749e-06, 'unimaginative': 1.6430492035729749e-06, 'Badura-Skoda-Vienna': 1.6430492035729749e-06, 'Konzerthaus': 1.6430492035729749e-06, 'Demus-Schubert': 1.6430492035729749e-06, 'Deutsche': 1.6430492035729749e-06, 'Grammophon': 1.6430492035729749e-06, 'warm-toned': 1.6430492035729749e-06, 'tensionless': 1.6430492035729749e-06, 'Helmut': 1.6430492035729749e-06, 'Roloff': 1.6430492035729749e-06, 'last-mentioned': 1.6430492035729749e-06, 'Telefunken': 1.6430492035729749e-06, 'bargain-priced': 1.6430492035729749e-06, '$2.98': 1.6430492035729749e-06, 'magnificence': 2.4645738053594624e-06, "everyone's": 4.107623008932437e-06, 'purported': 4.107623008932437e-06, 'indistinguishable': 3.2860984071459497e-06, 'Thing': 2.4645738053594624e-06, 'milestones': 1.6430492035729749e-06, 'verisimilitude': 1.6430492035729749e-06, 're-creation': 1.6430492035729749e-06, 'Caruso': 2.4645738053594624e-06, "Muck's": 1.6430492035729749e-06, 'Toscanini': 2.4645738053594624e-06, 'fidelity': 6.5721968142918994e-06, 'multiplied': 6.5721968142918994e-06, 'tenfold': 1.6430492035729749e-06, 'disillusioning': 1.6430492035729749e-06, 'innovations': 4.107623008932437e-06, 'rehearing': 1.6430492035729749e-06, 'spotting': 2.4645738053594624e-06, 'environments': 4.107623008932437e-06, 'alteration': 6.5721968142918994e-06, 'quantitatively': 4.107623008932437e-06, 'fractional': 1.6430492035729749e-06, 'imitation': 1.97165904428757e-05, "Command's": 1.6430492035729749e-06, 'Scheherazade': 2.4645738053594624e-06, 'Fidelity': 1.6430492035729749e-06, 'easiest': 6.5721968142918994e-06, 'reproduces': 3.2860984071459497e-06, 'Steinberg': 1.3144393628583799e-05, 'minimal': 2.300268885002165e-05, 'obtrudes': 2.4645738053594624e-06, 'frequency': 1.889506584108921e-05, 'peaky': 1.6430492035729749e-06, 'aesthetic': 2.218116424823516e-05, 'scrapes': 1.6430492035729749e-06, 'clicks': 2.4645738053594624e-06, 'noises': 5.750672212505412e-06, 'acoustically': 1.6430492035729749e-06, 'reverberation': 1.6430492035729749e-06, 'sonority': 1.6430492035729749e-06, 'intrudes': 1.6430492035729749e-06, 'quasi-performer': 1.6430492035729749e-06, 'timbre': 2.4645738053594624e-06, 'resonance': 1.232286902679731e-05, 'discounting': 1.6430492035729749e-06, 'faithfully': 4.929147610718925e-06, 'undertow': 1.6430492035729749e-06, 'pacing': 6.5721968142918994e-06, 'Presto': 1.6430492035729749e-06, 'Ma': 1.4787442832156774e-05, 'non': 7.393721416078387e-06, 'assai': 1.6430492035729749e-06, 'scherzo': 1.6430492035729749e-06, 'Allegro': 1.6430492035729749e-06, 'Spirito': 3.2860984071459497e-06, 'Giselle': 4.107623008932437e-06, "Feyer's": 1.6430492035729749e-06, 'four-sided': 1.6430492035729749e-06, 'LP': 2.4645738053594624e-06, 'horrid': 1.6430492035729749e-06, 'charms': 2.4645738053594624e-06, 'vanish': 4.929147610718925e-06, "Fistoulari's": 1.6430492035729749e-06, 'ultravehement': 1.6430492035729749e-06, 'brute': 5.750672212505412e-06, 'suave': 2.4645738053594624e-06, 'sentimentality': 1.6430492035729749e-06, 'brilliance': 4.107623008932437e-06, 'super-high': 1.6430492035729749e-06, 'penultimate': 1.6430492035729749e-06, "Wolff's": 2.4645738053594624e-06, 'abridgment': 1.6430492035729749e-06, 'razor-edged': 1.6430492035729749e-06, 'monophonic': 1.6430492035729749e-06, 'big-stage': 1.6430492035729749e-06, 'tolerable': 3.2860984071459497e-06, 'SD': 1.6430492035729749e-06, 'KC': 4.107623008932437e-06, 'Dog': 4.929147610718925e-06, 'Finals': 6.5721968142918994e-06, 'Forty-six': 2.4645738053594624e-06, 'Juniors': 2.464573805359462e-05, 'Chmn.': 1.6430492035729749e-06, "Juniors'": 1.6430492035729749e-06, 'qualifying': 1.6430492035729749e-06, '37th': 1.6430492035729749e-06, 'Betsey': 2.4645738053594624e-06, 'Challenge': 1.6430492035729749e-06, "Children's": 2.4645738053594624e-06, 'Handling': 1.6430492035729749e-06, 'Ch.': 4.107623008932437e-06, 'Cadet': 2.4645738053594624e-06, 'Noranda': 1.6430492035729749e-06, 'home-bred': 1.6430492035729749e-06, 'ceases': 3.2860984071459497e-06, 'Dogs': 3.2860984071459497e-06, 'sensing': 6.5721968142918994e-06, 'flash-bulbs': 1.6430492035729749e-06, 'livid': 1.6430492035729749e-06, 'Aids': 4.929147610718925e-06, 'Barcus': 4.107623008932437e-06, "Ass'n": 2.4645738053594624e-06, 'Journalism': 2.4645738053594624e-06, 'Thoroughbred': 1.6430492035729749e-06, 'Racing': 1.6430492035729749e-06, 'Scholarship': 2.4645738053594624e-06, 'Showmanship': 7.393721416078387e-06, "Barcus'": 1.6430492035729749e-06, 'Kennel': 3.2860984071459497e-06, '4:45': 2.4645738053594624e-06, 'Steward': 1.6430492035729749e-06, 'Hone': 2.4645738053594624e-06, 'Handler': 5.750672212505412e-06, 'announcer': 2.4645738053594624e-06, 'public-address': 1.6430492035729749e-06, 'sportsmen': 5.750672212505412e-06, 'campaigners': 2.4645738053594624e-06, 'Betty': 3.2860984071459497e-06, 'Ham': 4.107623008932437e-06, 'Holyoke': 2.4645738053594624e-06, 'Setter': 2.4645738053594624e-06, "Handlers'": 1.6430492035729749e-06, "Ass'ns'": 1.6430492035729749e-06, 'Brumby': 2.4645738053594624e-06, 'founder-originator': 1.6430492035729749e-06, 'Classes': 8.215246017864873e-06, 'Afghan': 2.4645738053594624e-06, 'Blanc': 1.6430492035729749e-06, 'Doberman': 1.6430492035729749e-06, 'Pinscher': 1.6430492035729749e-06, 'Hackmann': 1.6430492035729749e-06, 'Dachshund': 1.6430492035729749e-06, 'Marcmann': 1.6430492035729749e-06, 'Trapp': 1.6430492035729749e-06, 'Penna.': 1.6430492035729749e-06, 'Keeshond': 1.6430492035729749e-06, 'Breed': 1.6430492035729749e-06, 'Entries': 2.4645738053594624e-06, '7287': 1.6430492035729749e-06, 'Percy': 2.4645738053594624e-06, 'Judging': 4.929147610718925e-06, 'Contest': 2.4645738053594624e-06, 'intermediates': 3.2860984071459497e-06, 'overage': 1.6430492035729749e-06, 'Intermediates': 2.4645738053594624e-06, 'Intermediate': 2.4645738053594624e-06, "Class'": 1.6430492035729749e-06, 'handlers': 1.6430492035729749e-06, 'Superintendents': 1.6430492035729749e-06, 'licensed': 5.750672212505412e-06, "Junior's": 1.6430492035729749e-06, 'A.K.C.': 1.6430492035729749e-06, 'superintendents': 1.6430492035729749e-06, 'Handlers': 1.6430492035729749e-06, 'Airedale': 1.6430492035729749e-06, 'Terrier': 2.4645738053594624e-06, 'Kerry': 1.6430492035729749e-06, 'donating': 1.6430492035729749e-06, 'trophies': 2.4645738053594624e-06, 'breeds': 1.6430492035729749e-06, 'Topeka': 1.6430492035729749e-06, 'KCs': 1.6430492035729749e-06, 'Grande': 2.4645738053594624e-06, 'Pointer': 1.6430492035729749e-06, 'Pointers': 1.6430492035729749e-06, 'Danes': 4.107623008932437e-06, 'kitten': 4.929147610718925e-06, 'proprieter': 2.4645738053594624e-06, 'pets': 4.929147610718925e-06, 'Puppies': 1.6430492035729749e-06, 'Comes': 4.107623008932437e-06, 'housebroken': 1.6430492035729749e-06, 'obedience-trained': 1.6430492035729749e-06, 'veterinarians': 1.6430492035729749e-06, 'wipe': 9.036770619651361e-06, 'canine': 1.6430492035729749e-06, 'examination': 2.300268885002165e-05, 'germs': 1.6430492035729749e-06, 'navigable': 1.6430492035729749e-06, 'fishermen': 6.5721968142918994e-06, 'awash': 1.6430492035729749e-06, '8,000,000': 1.6430492035729749e-06, '40,000,000': 2.4645738053594624e-06, 'Boats': 4.107623008932437e-06, 'heaviest': 2.4645738053594624e-06, 'concentrations': 8.215246017864873e-06, 'coasts': 5.750672212505412e-06, 'upsurge': 3.2860984071459497e-06, 'markedly': 4.107623008932437e-06, 'expectedly': 1.6430492035729749e-06, 'coastline': 1.6430492035729749e-06, 'wells': 4.107623008932437e-06, 'watering': 4.107623008932437e-06, 'troughs': 1.6430492035729749e-06, 'Developed': 1.6430492035729749e-06, 'multi-purpose': 1.6430492035729749e-06, 'havens': 1.6430492035729749e-06, 'square-mile': 1.6430492035729749e-06, 'Texoma': 2.4645738053594624e-06, 'Corp': 1.6430492035729749e-06, 'Engineers': 5.750672212505412e-06, 'dammed': 1.6430492035729749e-06, 'thirty-two': 3.2860984071459497e-06, '1,000,000': 1.6430492035729749e-06, 'Providing': 3.2860984071459497e-06, 'ninety': 9.85829522143785e-06, '1,800,000': 1.6430492035729749e-06, 'easy-to-operate': 1.6430492035729749e-06, 'sleek': 2.4645738053594624e-06, 'inboards': 1.6430492035729749e-06, 'outboards': 2.4645738053594624e-06, 'sailboats': 3.2860984071459497e-06, 'smartly': 4.107623008932437e-06, 'Boatmen': 1.6430492035729749e-06, "year-'round": 4.107623008932437e-06, 'anchorage': 1.6430492035729749e-06, 'tedious': 5.750672212505412e-06, 'trailer': 9.85829522143785e-06, 'Arriving': 3.2860984071459497e-06, 'waterside': 1.6430492035729749e-06, 'hauled': 8.215246017864873e-06, 'horizons': 5.750672212505412e-06, 'eight-foot': 1.6430492035729749e-06, 'pram': 1.6430492035729749e-06, 'Boat': 3.2860984071459497e-06, 'canoes': 2.4645738053594624e-06, 'camping': 1.3965918230370285e-05, 'houseboats': 1.6430492035729749e-06, 'accommodating': 2.4645738053594624e-06, 'sail': 9.036770619651361e-06, 'laze': 1.6430492035729749e-06, 'dinghy': 1.6430492035729749e-06, 'plywood': 8.215246017864873e-06, 'plastic': 2.3824213451808133e-05, 'toilets': 4.107623008932437e-06, 'galleys': 4.107623008932437e-06, 'bunks': 1.3965918230370285e-05, 'Designers': 5.750672212505412e-06, 'purchasers': 4.107623008932437e-06, 'once-a-month': 1.6430492035729749e-06, 'sportiest': 1.6430492035729749e-06, 'boatman': 3.2860984071459497e-06, 'encompass': 4.107623008932437e-06, 'motors': 6.5721968142918994e-06, 'excel': 1.6430492035729749e-06, 'phenomenal': 2.4645738053594624e-06, 'horsepower': 4.929147610718925e-06, 'wherein': 4.929147610718925e-06, 'owning': 3.2860984071459497e-06, 'sizeable': 1.6430492035729749e-06, 'tiller': 1.6430492035729749e-06, 'non-dealer': 1.6430492035729749e-06, 'launch': 9.036770619651361e-06, 'Terms': 3.2860984071459497e-06, "purchaser's": 1.6430492035729749e-06, 'rating': 8.215246017864873e-06, 'Outboard': 1.6430492035729749e-06, 'unduly': 5.750672212505412e-06, 'terrified': 6.5721968142918994e-06, 'infancy': 9.85829522143785e-06, 'burdened': 4.107623008932437e-06, 'aloft': 3.2860984071459497e-06, "water's": 4.929147610718925e-06, 'ungoverned': 1.6430492035729749e-06, 'carefree': 8.215246017864873e-06, 'Laws': 1.6430492035729749e-06, 'waterways': 2.4645738053594624e-06, 'Fees': 2.4645738053594624e-06, 'marine': 3.368250867324598e-05, 'yacht': 1.6430492035729749e-06, 'Ignorance': 2.4645738053594624e-06, "industry's": 1.232286902679731e-05, 'Foreseeing': 1.6430492035729749e-06, 'coordinated': 1.232286902679731e-05, 'Safety': 2.4645738053594624e-06, 'reorganized': 4.107623008932437e-06, 'Engine': 3.2860984071459497e-06, 'Manufacturers': 6.5721968142918994e-06, 'NAEBM': 2.4645738053594624e-06, 'booklets': 2.4645738053594624e-06, 'Squadrons': 1.6430492035729749e-06, 'Auxiliary': 1.6430492035729749e-06, 'seamanship': 1.6430492035729749e-06, 'piloting': 1.6430492035729749e-06, 'governmentally': 1.6430492035729749e-06, 'dine': 2.4645738053594624e-06, 'ever-increasing': 2.4645738053594624e-06, 'sparked': 3.2860984071459497e-06, 'marina': 3.2860984071459497e-06, 'coined': 3.2860984071459497e-06, 'Currently': 2.4645738053594624e-06, 'commercially': 9.85829522143785e-06, 'dock': 7.393721416078387e-06, 'Yachtel': 1.6430492035729749e-06, 'yachtsman': 1.6430492035729749e-06, 'Boatel': 1.6430492035729749e-06, 'yachtel': 1.6430492035729749e-06, 'pertain': 2.4645738053594624e-06, 'cater': 3.2860984071459497e-06, 'nomenclature': 6.5721968142918994e-06, 'yachtels': 1.6430492035729749e-06, 'boatels': 1.6430492035729749e-06, 'Boatyards': 1.6430492035729749e-06, '4,000': 3.2860984071459497e-06, 'municipally': 1.6430492035729749e-06, 'boatyards': 1.6430492035729749e-06, 'interlocking': 7.393721416078387e-06, 'interact': 2.4645738053594624e-06, 'tappets': 1.0679819823224336e-05, 'tappet': 1.3144393628583799e-05, 'lengthwise': 4.107623008932437e-06, 'Close': 4.107623008932437e-06, 'locking': 2.6288787257167598e-05, 'angles': 9.85829522143785e-06, 'notches': 5.750672212505412e-06, 'sloping': 6.5721968142918994e-06, 'cams': 1.6430492035729749e-06, 'slide': 1.7252016637516235e-05, 'unlocking': 1.6430492035729749e-06, 'pulls': 8.215246017864873e-06, 'levers': 5.750672212505412e-06, 'Interlocking': 1.6430492035729749e-06, 'turnout': 2.4645738053594624e-06, 'turnouts': 2.4645738053594624e-06, 'insures': 1.6430492035729749e-06, 'flange': 2.4645738053594624e-06, 'snag': 3.2860984071459497e-06, 'Turnout': 1.6430492035729749e-06, 'Figs.': 9.036770619651361e-06, '1-6': 1.6430492035729749e-06, 'connecting': 5.750672212505412e-06, 'wedge-shaped': 2.4645738053594624e-06, 'track-signal': 1.6430492035729749e-06, 'Derails': 1.6430492035729749e-06, 'rails': 8.215246017864873e-06, 'blacked-in': 1.6430492035729749e-06, 'low-speed': 1.6430492035729749e-06, 'prototype': 3.2860984071459497e-06, 'railroader': 1.6430492035729749e-06, "Larson's": 1.6430492035729749e-06, 'Fig.': 4.7648426903616267e-05, 'photos': 4.107623008932437e-06, 'Frame': 1.6430492035729749e-06, "1/8''": 6.5721968142918994e-06, "1/4''": 7.393721416078387e-06, "1/2''": 7.393721416078387e-06, 'widths': 4.929147610718925e-06, 'sanding': 2.4645738053594624e-06, 'right-hand': 5.750672212505412e-06, 'soldering': 1.6430492035729749e-06, "12''": 4.929147610718925e-06, "1''": 3.2860984071459497e-06, "5-3/4''": 2.4645738053594624e-06, 'sq.': 4.107623008932437e-06, 'spacing': 5.750672212505412e-06, 'left-hand': 4.929147610718925e-06, 'Compress': 1.6430492035729749e-06, 'Solder': 2.4645738053594624e-06, 'Cap': 9.036770619651361e-06, 'Tack-solder': 1.6430492035729749e-06, 'drilled': 4.929147610718925e-06, 'spacers': 4.929147610718925e-06, 'horizontally': 3.2860984071459497e-06, 'Position': 3.2860984071459497e-06, 'intermediate': 1.6430492035729746e-05, 'tack-solder': 1.6430492035729749e-06, 'center-punch': 1.6430492035729749e-06, 'screws': 9.036770619651361e-06, 'Placement': 2.4645738053594624e-06, 'Drill': 8.215246017864873e-06, 'counter-drill': 1.6430492035729749e-06, 'Tap': 2.4645738053594624e-06, '2-56': 7.393721416078387e-06, 'unsolder': 1.6430492035729749e-06, 'disassemble': 1.6430492035729749e-06, "3-3/4''": 2.4645738053594624e-06, 'soldered': 1.6430492035729749e-06, 'Dress': 1.6430492035729749e-06, 'solder': 2.4645738053594624e-06, 'drilling': 9.036770619651361e-06, 'burrs': 1.6430492035729749e-06, '3-48': 1.6430492035729749e-06, 'contacts': 2.0538115044662184e-05, 'reassemble': 3.2860984071459497e-06, 'roundhead': 3.2860984071459497e-06, 'nuts': 1.8073541239302723e-05, 'align': 2.4645738053594624e-06, 'twisted': 1.6430492035729746e-05, 'spacer': 2.4645738053594624e-06, 'insert': 1.1501344425010824e-05, 'screw': 1.7252016637516235e-05, 'Number': 4.929147610718925e-06, 'slots': 4.929147610718925e-06, 'Cut': 1.0679819823224336e-05, 'Locate': 2.4645738053594624e-06, 'flush': 9.85829522143785e-06, 'Tappets': 1.6430492035729749e-06, 'Draw-file': 2.4645738053594624e-06, 'slot': 5.750672212505412e-06, 'chamfer': 2.4645738053594624e-06, "1-1/4''": 2.4645738053594624e-06, 'underside': 4.929147610718925e-06, 'Scribe': 3.2860984071459497e-06, "5/64''": 1.6430492035729749e-06, "21/64''": 1.6430492035729749e-06, 'Tend': 1.6430492035729749e-06, 'undersize': 1.6430492035729749e-06, 'crosswise': 1.6430492035729749e-06, 'Repeat': 1.6430492035729749e-06, 'lifting': 6.5721968142918994e-06, 'Fitting': 1.6430492035729749e-06, 'progresses': 5.750672212505412e-06, 'accessible': 4.929147610718925e-06, 'snug-fitting': 1.6430492035729749e-06, 'snug': 2.4645738053594624e-06, "2-3/4''": 1.6430492035729749e-06, 'dog-pin': 1.6430492035729749e-06, 'Center-punch': 1.6430492035729749e-06, "7/16''": 1.6430492035729749e-06, 'dia.': 4.107623008932437e-06, 'rotating': 9.85829522143785e-06, "9/32''": 1.6430492035729749e-06, "5/16''": 1.6430492035729749e-06, 'File': 5.750672212505412e-06, 'V-shaped': 4.107623008932437e-06, 'hack': 2.4645738053594624e-06, 'carborundum': 1.6430492035729749e-06, 'mandrel': 1.6430492035729749e-06, 'Barrette': 1.6430492035729749e-06, 'triangular': 4.929147610718925e-06, 'marring': 1.6430492035729749e-06, 'Endeavor': 2.4645738053594624e-06, 'Assemble': 1.6430492035729749e-06, 'mated': 4.107623008932437e-06, "2''": 1.6430492035729749e-06, "3''": 1.6430492035729749e-06, 'scribing': 1.6430492035729749e-06, "3/64''": 1.6430492035729749e-06, 'files': 1.1501344425010824e-05, 'lathe': 1.6430492035729749e-06, "'round": 4.929147610718925e-06, 'standardizing': 1.6430492035729749e-06, 'Math': 1.6430492035729749e-06, 'rodding': 3.2860984071459497e-06, 'rotate': 2.4645738053594624e-06, 'rodder': 3.2860984071459497e-06, 'mathematician': 2.4645738053594624e-06, 'remotely': 4.107623008932437e-06, 'Equations': 1.6430492035729749e-06, 'equations': 8.215246017864873e-06, 'multiplication': 4.929147610718925e-06, 'subtraction': 5.750672212505412e-06, '**b': 1.6430492035729749e-06, 'Numbers': 4.107623008932437e-06, 'subtracted': 4.107623008932437e-06, 'Addition': 1.6430492035729749e-06, '+': 1.6430492035729749e-06, 'Multiplication': 1.6430492035729749e-06, 'fractions': 1.6430492035729746e-05, 'decimal': 3.2860984071459497e-06, 'Charts': 1.6430492035729749e-06, 'handbooks': 1.6430492035729749e-06, 'simplified': 8.215246017864873e-06, 'Shortening': 1.6430492035729749e-06, 'constants': 8.215246017864873e-06, 'Rodding': 1.6430492035729749e-06, 'pave': 2.4645738053594624e-06, 'blanks': 3.2860984071459497e-06, 'displacement': 1.889506584108921e-05, 'Displacement': 1.6430492035729749e-06, 'boring': 4.929147610718925e-06, 'stroking': 2.4645738053594624e-06, 'Factors': 4.107623008932437e-06, "engine's": 2.4645738053594624e-06, 'cylinders': 6.5721968142918994e-06, 'piston': 6.5721968142918994e-06, 'one-quarter': 2.4645738053594624e-06, '3.1416': 1.6430492035729749e-06, 'pi': 1.6430492035729749e-06, 'computing': 8.215246017864873e-06, 'cylinder': 1.3965918230370285e-05, 'cross-sectional': 4.107623008932437e-06, 'Multiplying': 1.6430492035729749e-06, 'Dimensions': 2.4645738053594624e-06, 'centimeters': 7.393721416078387e-06, 'cc.': 4.107623008932437e-06, '2.54': 1.6430492035729749e-06, '16.38': 1.6430492035729749e-06, '283': 1.6430492035729749e-06, 'Chevy': 1.6430492035729749e-06, '3-7/8': 1.6430492035729749e-06, 'decimals': 1.6430492035729749e-06, 'Compression': 2.4645738053594624e-06, "cylinder's": 2.4645738053594624e-06, 'compression': 5.750672212505412e-06, 'combustion': 1.0679819823224336e-05, 'Cylinder': 2.4645738053594624e-06, 'liquid': 3.94331808857514e-05, 'valves': 4.107623008932437e-06, 'gasket': 4.107623008932437e-06, 'beaker': 2.4645738053594624e-06, 'overfill': 1.6430492035729749e-06, 'liquids': 5.750672212505412e-06, 'subtracting': 3.2860984071459497e-06, 'beakers': 1.6430492035729749e-06, "gasket's": 1.6430492035729749e-06, 'thickness': 3.6968607080391934e-05, 'thousandths': 1.6430492035729749e-06, 'calculate': 4.107623008932437e-06, 'Compute': 1.6430492035729749e-06, 'micrometer': 2.4645738053594624e-06, 'Applying': 2.4645738053594624e-06, 'pistons': 3.2860984071459497e-06, 'domed': 2.4645738053594624e-06, 'irregularly': 4.929147610718925e-06, 'irregularity': 4.107623008932437e-06, 'displaced': 2.4645738053594624e-06, 'Gear': 1.6430492035729749e-06, 'axle': 4.929147610718925e-06, 'tire': 1.7252016637516235e-05, 'simplify': 8.215246017864873e-06, 'substituted': 1.3144393628583799e-05, 'MPH': 1.6430492035729749e-06, 'crankshaft': 1.6430492035729749e-06, 'Rear': 1.6430492035729749e-06, 'Tire': 2.4645738053594624e-06, 'radius': 8.215246017864873e-06, 'inflated': 3.2860984071459497e-06, 'measurement': 2.7110311858954083e-05, '168': 3.2860984071459497e-06, 'rpm': 5.750672212505412e-06, '4.00': 1.6430492035729749e-06, 'Raceway': 2.4645738053594624e-06, 'Liner': 1.6430492035729749e-06, 'Mainliner-Highland': 1.6430492035729749e-06, 'stable': 2.546726265538111e-05, 'clocked': 1.6430492035729749e-06, '2:25': 2.4645738053594624e-06, 'Kroening': 1.6430492035729749e-06, 'Wis.': 1.6430492035729749e-06, 'railbirds': 1.6430492035729749e-06, 'Debonnie': 3.2860984071459497e-06, 'Dale': 4.929147610718925e-06, 'Frost-Debby': 1.6430492035729749e-06, 'Hanover': 5.504214831969465e-05, 'Prompt': 3.2860984071459497e-06, 'Adios-On': 1.6430492035729749e-06, '2:28-:36': 1.6430492035729749e-06, 'Kimberly': 2.4645738053594624e-06, 'Gal': 2.4645738053594624e-06, 'Galophone-Kimberly': 1.6430492035729749e-06, '2:26.2': 1.6430492035729749e-06, 'Laguerre': 3.2860984071459497e-06, 'Tar': 9.036770619651361e-06, 'Heel-Lotus': 2.4645738053594624e-06, 'Monel': 3.2860984071459497e-06, 'Heel-Miracle': 2.4645738053594624e-06, '2:34': 4.107623008932437e-06, 'conformation': 3.2860984071459497e-06, 'girth': 1.6430492035729749e-06, 'smoothest': 1.6430492035729749e-06, 'colt': 1.1501344425010824e-05, '2-year-olds': 3.2860984071459497e-06, 'work-out': 2.4645738053594624e-06, 'brood': 8.215246017864873e-06, 'mare': 1.0679819823224336e-05, 'Stardel': 2.4645738053594624e-06, "Star's": 3.2860984071459497e-06, 'Pride-Starlette': 2.4645738053594624e-06, 'Fury': 4.929147610718925e-06, 'Hoot': 6.5721968142918994e-06, 'Mon-Fay': 2.4645738053594624e-06, 'Caper': 4.929147610718925e-06, 'Mon-Columbia': 2.4645738053594624e-06, 'Mon-Goddess': 2.4645738053594624e-06, 'equalled': 1.6430492035729749e-06, '2:35': 8.215246017864873e-06, 'upstanding': 1.6430492035729749e-06, 'trot': 1.0679819823224336e-05, 'Trackdown': 1.6430492035729749e-06, 'Torrid-Mighty': 1.6430492035729749e-06, '2:33.3': 1.6430492035729749e-06, 'emasculation': 1.6430492035729749e-06, 'thrived': 4.929147610718925e-06, 'Thor': 8.215246017864873e-06, 'Adios-Trustful': 1.6430492035729749e-06, 'harness': 9.036770619651361e-06, 'line-driven': 1.6430492035729749e-06, 'hopples': 4.107623008932437e-06, 'worms': 4.107623008932437e-06, 'paced': 9.036770619651361e-06, 'twice-around': 1.6430492035729749e-06, '2:32.2': 2.4645738053594624e-06, 'Gamecock': 1.6430492035729749e-06, 'Heel-Terka': 1.6430492035729749e-06, 'best-tempered': 1.6430492035729749e-06, 'harnessed': 2.4645738053594624e-06, 'crupper': 2.4645738053594624e-06, 'blistered': 1.6430492035729749e-06, 'curbs': 3.2860984071459497e-06, 'Hustler': 1.6430492035729749e-06, 'Dream-Torkin': 1.6430492035729749e-06, 'playful': 3.2860984071459497e-06, 'rascal': 1.6430492035729749e-06, 'gaited': 1.6430492035729749e-06, 'Torrid': 2.4645738053594624e-06, 'Freight': 4.107623008932437e-06, 'Torrid-Breeze': 1.6430492035729749e-06, 'strong-made': 1.6430492035729749e-06, '2:33': 3.2860984071459497e-06, 'Strongheart': 1.6430492035729749e-06, 'Adios-Direct': 1.6430492035729749e-06, 'fair-looking': 1.6430492035729749e-06, 'sorrel': 2.4645738053594624e-06, 'Adios': 5.750672212505412e-06, 'Torrid-Adios': 1.6430492035729749e-06, 'masculine': 6.5721968142918994e-06, 'best-gaited': 1.6430492035729749e-06, 'pacers': 3.2860984071459497e-06, 'Blistered': 1.6430492035729749e-06, 'pacer': 1.6430492035729749e-06, 'Flyer': 1.6430492035729749e-06, 'Frisco': 3.2860984071459497e-06, 'Flyer-Castle': 1.6430492035729749e-06, 'Stakes': 1.6430492035729749e-06, '2:33.2': 1.6430492035729749e-06, 'fillies': 1.6430492035729749e-06, 'Justine': 1.6430492035729749e-06, 'Sampson': 2.4645738053594624e-06, 'Hanover-Justitia': 1.6430492035729749e-06, '2:32.4': 1.6430492035729749e-06, 'Dream-Miss': 2.4645738053594624e-06, 'Hoopla': 1.6430492035729749e-06, 'Heel-Holiday': 1.6430492035729749e-06, 'hoppled': 1.6430492035729749e-06, '2:43.1--:38': 1.6430492035729749e-06, '2:37.3--:36.1': 1.6430492035729749e-06, '2:36': 1.0679819823224336e-05, 'full-sisters': 1.6430492035729749e-06, 'Valentine': 2.4645738053594624e-06, 'Cerise': 1.6430492035729749e-06, 'underpinning': 1.6430492035729749e-06, 'Taraday': 1.6430492035729749e-06, 'grand-looking': 1.6430492035729749e-06, 'Dailey': 1.6430492035729749e-06, 'Abbe-Direct': 1.6430492035729749e-06, 'Grattan': 2.4645738053594624e-06, 'fine-looking': 4.929147610718925e-06, '2:28-:33': 1.6430492035729749e-06, 'Majestic': 1.6430492035729749e-06, '2:30-:33.2': 1.6430492035729749e-06, 'equine': 1.6430492035729749e-06, 'Staley': 1.6430492035729749e-06, 'Dream-Sweetmite': 1.6430492035729749e-06, '2:34-:34': 1.6430492035729749e-06, 'Step': 1.6430492035729749e-06, 'Direct': 6.5721968142918994e-06, 'Rhythm-Wily': 1.6430492035729749e-06, '2:32': 2.4645738053594624e-06, "Haughton's": 1.6430492035729749e-06, '2:40': 2.4645738053594624e-06, 'Bonnie': 1.6430492035729749e-06, 'Abbe-Scotch': 1.6430492035729749e-06, 'Hickory': 4.107623008932437e-06, 'Ash': 3.2860984071459497e-06, 'Hanover-Misty': 1.6430492035729749e-06, 'trotted': 6.5721968142918994e-06, 'Pride-Venus': 1.6430492035729749e-06, 'Spark': 2.4645738053594624e-06, 'Harlan-Hickory': 1.6430492035729749e-06, 'Tiny': 1.6430492035729749e-06, '2:37': 6.5721968142918994e-06, 'Buxton': 1.6430492035729749e-06, 'Heel-Beryl': 1.6430492035729749e-06, "Faber's": 2.4645738053594624e-06, 'Faber': 4.929147610718925e-06, 'Hanover-Ceyway': 1.6430492035729749e-06, 'Rodney': 3.2860984071459497e-06, 'Rodney-Honor': 1.6430492035729749e-06, 'last-named': 2.4645738053594624e-06, 'Brief': 3.2860984071459497e-06, 'Candle': 1.6430492035729749e-06, 'Harlan-Marcia': 1.6430492035729749e-06, 'Hanover-Chalidale': 1.6430492035729749e-06, 'Martha': 4.929147610718925e-06, 'Rodney-Miss': 1.6430492035729749e-06, 'Checkit': 1.6430492035729749e-06, 'Hanover-Supermarket': 1.6430492035729749e-06, 'Charm': 1.6430492035729749e-06, 'Rodney-The': 1.6430492035729749e-06, 'Charmer': 1.6430492035729749e-06, 'Farvel-Topsy': 1.6430492035729749e-06, 'Herring': 1.6430492035729749e-06, 'Custom': 3.2860984071459497e-06, 'Dream-Way': 1.6430492035729749e-06, '2:34.2': 1.6430492035729749e-06, 'Jacky': 1.6430492035729749e-06, 'Dares': 2.4645738053594624e-06, 'Gene-Princess': 2.4645738053594624e-06, 'Lorraine': 1.6430492035729749e-06, 'Time-Olivette': 1.6430492035729749e-06, 'Bordner': 1.6430492035729749e-06, 'Heel-Betty': 1.6430492035729749e-06, 'Mahone': 1.6430492035729749e-06, 'Hanover-Sally': 1.6430492035729749e-06, 'Whippet': 1.6430492035729749e-06, 'Invercalt': 1.6430492035729749e-06, 'Florican-Inverness': 1.6430492035729749e-06, 'Mite': 1.6430492035729749e-06, 'Worthy': 3.2860984071459497e-06, 'Boy-Lady': 1.6430492035729749e-06, 'Knightfall': 1.6430492035729749e-06, 'Grapes': 2.4645738053594624e-06, 'Dream-Next': 1.6430492035729749e-06, 'Trader': 2.4645738053594624e-06, 'Jet': 9.036770619651361e-06, 'Florican-My': 1.6430492035729749e-06, 'Precious': 8.215246017864873e-06, 'Rich': 4.929147610718925e-06, 'Boy-Marquita': 1.6430492035729749e-06, 'Time-Mynah': 1.6430492035729749e-06, 'Iosola': 1.6430492035729749e-06, 'Kid-Isoletta': 1.6430492035729749e-06, 'equines': 1.6430492035729749e-06, ':35.3': 1.6430492035729749e-06, 'stalling': 1.6430492035729749e-06, 'three-quarters': 4.107623008932437e-06, '12-oz.': 1.6430492035729749e-06, 'bare-footed': 1.6430492035729749e-06, 'Delvin': 1.6430492035729749e-06, 'baffled': 4.929147610718925e-06, 'rocked': 7.393721416078387e-06, 'skipped': 7.393721416078387e-06, 'classiest': 1.6430492035729749e-06, '2:30-:34.3': 2.4645738053594624e-06, 'Lorena': 1.6430492035729749e-06, 'Gallon': 1.6430492035729749e-06, 'Gallon-Loren': 1.6430492035729749e-06, 'Prudent': 1.6430492035729749e-06, 'Hanover-Precious': 1.6430492035729749e-06, '2:30.3-:35.3': 1.6430492035729749e-06, 'Premium': 1.6430492035729749e-06, 'Hanover-Pebble': 1.6430492035729749e-06, '2:30.3-35.3': 1.6430492035729749e-06, '2:30.3-:36.1': 2.4645738053594624e-06, '2:30.3-:36': 3.2860984071459497e-06, 'Lucky': 1.6430492035729749e-06, 'Dream-Lusty': 1.6430492035729749e-06, '2:31.3-:35.3': 1.6430492035729749e-06, "Caton's": 1.6430492035729749e-06, 'Butterwyn': 1.6430492035729749e-06, 'Victor-Butler': 1.6430492035729749e-06, 'Wyn': 1.6430492035729749e-06, '2:30-:36': 1.6430492035729749e-06, 'Riverboat': 1.6430492035729749e-06, 'Dalzell-Cousin': 1.6430492035729749e-06, '2:38': 2.4645738053594624e-06, 'Layton': 1.6430492035729749e-06, 'Hanover-Lucy': 1.6430492035729749e-06, 'straightened': 1.5608967433943262e-05, 'Jordon': 1.6430492035729749e-06, 'Scarlet': 2.4645738053594624e-06, 'Adios-Rena': 1.6430492035729749e-06, 'Hanover-Bertie': 1.6430492035729749e-06, 'Cathy': 1.7252016637516235e-05, 'Heel-Kaola': 1.6430492035729749e-06, 'Karet': 1.6430492035729749e-06, '2:31': 1.6430492035729749e-06, 'Armbro': 1.6430492035729749e-06, 'Comet': 1.6430492035729749e-06, 'Nibble': 1.6430492035729749e-06, 'Hanover-Mauri': 1.6430492035729749e-06, 'Flick': 1.6430492035729749e-06, "Nipe's": 1.6430492035729749e-06, "Engle's": 1.6430492035729749e-06, 'Galophone-Prissy': 1.6430492035729749e-06, '2:46': 1.6430492035729749e-06, 'Mar': 2.4645738053594624e-06, 'rainless': 1.6430492035729749e-06, 'rainfall': 3.2860984071459497e-06, 'Cruise': 1.6430492035729749e-06, 'Work-outs': 1.6430492035729749e-06, 'Plain': 1.6430492035729749e-06, 'Demon': 4.929147610718925e-06, 'Coffee': 4.107623008932437e-06, 'p': 2.464573805359462e-05, 'Blackstone': 1.6430492035729749e-06, 'Duke': 8.215246017864873e-06, 'Lullwater': 2.4645738053594624e-06, 'Marilyn': 1.6430492035729749e-06, 'Chalidale': 1.6430492035729749e-06, '2:20': 2.4645738053594624e-06, 'Tiger': 2.4645738053594624e-06, '2:26': 2.4645738053594624e-06, 'Lass': 1.6430492035729749e-06, '2:22': 2.4645738053594624e-06, 'Dauntless': 1.6430492035729749e-06, 'Greentree': 1.6430492035729749e-06, 'Budlong': 1.6430492035729749e-06, '2:00.2': 1.6430492035729749e-06, 'Lottie': 1.6430492035729749e-06, '2:04.2': 2.4645738053594624e-06, '2:03': 1.6430492035729749e-06, 'Braden': 1.6430492035729749e-06, '2:01.1': 3.2860984071459497e-06, 'Glow': 1.6430492035729749e-06, '2:02.3': 2.4645738053594624e-06, 'Abbe': 3.2860984071459497e-06, '1:59.3': 1.6430492035729749e-06, 'Creed': 2.4645738053594624e-06, '2:00.3': 1.6430492035729749e-06, 'Hi': 5.750672212505412e-06, '2:05.1': 1.6430492035729749e-06, 'Tanker': 1.6430492035729749e-06, '2:05.3': 1.6430492035729749e-06, '2:19': 1.6430492035729749e-06, 'Stormy': 4.107623008932437e-06, '2:01.3': 1.6430492035729749e-06, '2:02': 1.6430492035729749e-06, 'Dundeen': 1.6430492035729749e-06, "Claudia's": 1.6430492035729749e-06, '2:06.3': 1.6430492035729749e-06, '2:02.2': 1.6430492035729749e-06, '2:06': 1.6430492035729749e-06, 'Mocking': 1.6430492035729749e-06, '2:12': 1.6430492035729749e-06, 'Urban': 1.6430492035729749e-06, 'trotter': 1.6430492035729749e-06, 'Orin': 1.6430492035729749e-06, '2:04': 1.6430492035729749e-06, '2:24': 1.6430492035729749e-06, '2:05': 1.6430492035729749e-06, '2:06.1': 1.6430492035729749e-06, 'Tan': 2.4645738053594624e-06, '2:05.2': 1.6430492035729749e-06, '2:21': 1.6430492035729749e-06, 'lookout': 1.6430492035729749e-06, 'shooter': 3.2860984071459497e-06, 'Christmas-season': 1.6430492035729749e-06, 'rack': 8.215246017864873e-06, 'handgun': 3.2860984071459497e-06, 'strictest': 2.4645738053594624e-06, 'Deerstalker': 5.750672212505412e-06, 'arms-making': 1.6430492035729749e-06, "Ruger's": 1.6430492035729749e-06, '$110': 2.4645738053594624e-06, 'high-velocity': 1.6430492035729749e-06, 'quick-handling': 1.6430492035729749e-06, 'fast-firing': 1.6430492035729749e-06, 'timber': 1.6430492035729746e-05, 'velocity': 2.218116424823516e-05, 'whitetail': 2.4645738053594624e-06, 'Ruger': 4.107623008932437e-06, 'Magnum': 9.036770619651361e-06, 'cartridge': 5.750672212505412e-06, 'antelope': 6.5721968142918994e-06, 'grassed': 1.6430492035729749e-06, 'carbine': 5.750672212505412e-06, 'bagged': 1.6430492035729749e-06, 'reedbuck': 1.6430492035729749e-06, 'kob': 1.6430492035729749e-06, 'wart': 9.85829522143785e-06, 'deadliness': 2.4645738053594624e-06, 'Marlin': 2.4645738053594624e-06, 'over/under': 3.2860984071459497e-06, 'defunct': 3.2860984071459497e-06, 'Model': 1.232286902679731e-05, '20-gauge': 1.6430492035729749e-06, 'barrels': 7.393721416078387e-06, '20-inch-barrel': 1.6430492035729749e-06, "Marlin's": 2.4645738053594624e-06, 'six-inch': 1.6430492035729749e-06, 'upsetting': 1.6430492035729749e-06, 'unjacketed': 1.6430492035729749e-06, 'revolver': 1.232286902679731e-05, 'bullet': 2.218116424823516e-05, 'jacketed': 3.2860984071459497e-06, 'opening-day': 1.6430492035729749e-06, 'buck': 4.929147610718925e-06, 'hop-skipped': 1.6430492035729749e-06, 'rhododendron': 1.6430492035729749e-06, 'thicket': 1.6430492035729749e-06, 'foreleg': 1.6430492035729749e-06, '240-grain': 2.4645738053594624e-06, 'sapling': 2.4645738053594624e-06, 'standard-weight': 1.6430492035729749e-06, 'compares': 5.750672212505412e-06, 'scales': 4.929147610718925e-06, '6-1/2': 2.4645738053594624e-06, 'trigger': 1.0679819823224336e-05, 'muzzle': 9.036770619651361e-06, '1,850': 1.6430492035729749e-06, 'fps': 2.4645738053594624e-06, "hunter's": 1.6430492035729749e-06, 'varmint': 2.4645738053594624e-06, 'Remington': 4.929147610718925e-06, 'Wesson': 1.6430492035729749e-06, 'top-quality': 2.4645738053594624e-06, '40-grain': 1.6430492035729749e-06, '2,460': 1.6430492035729749e-06, 'flattest': 1.6430492035729749e-06, 'mid-range': 1.6430492035729749e-06, 'edible': 4.929147610718925e-06, 'squirrel': 1.6430492035729749e-06, 'crow': 1.6430492035729749e-06, 'flurry': 4.107623008932437e-06, 'intriguing': 3.2860984071459497e-06, 'chambered': 1.6430492035729749e-06, 'rim-fires': 3.2860984071459497e-06, 'adapter': 1.6430492035729749e-06, 'small-game': 2.4645738053594624e-06, 'plinking': 1.6430492035729749e-06, 'rim-fire': 2.4645738053594624e-06, 'scoped': 1.6430492035729749e-06, 'chuck': 7.393721416078387e-06, 'Hunting': 1.6430492035729749e-06, "'61": 4.107623008932437e-06, 'calibers': 3.2860984071459497e-06, 'brands': 4.107623008932437e-06, 'bolt-action': 3.2860984071459497e-06, 'high-power': 1.6430492035729749e-06, 'FN': 2.4645738053594624e-06, 'better-than-average': 1.6430492035729749e-06, 'Barrel': 1.6430492035729749e-06, 'bores': 2.4645738053594624e-06, '$165': 1.6430492035729749e-06, 'Magnums': 4.929147610718925e-06, '$170': 2.4645738053594624e-06, 'Shotgun-type': 1.6430492035729749e-06, 'recoil': 4.929147610718925e-06, 'scopes': 1.6430492035729749e-06, "Colt's": 1.6430492035729749e-06, 'center-fire': 1.6430492035729749e-06, 'Sako': 1.6430492035729749e-06, 'Coltsman': 1.6430492035729749e-06, 'Previously': 3.2860984071459497e-06, 'cartridges': 4.929147610718925e-06, 'Sport-King': 1.6430492035729749e-06, 'well-made': 3.2860984071459497e-06, 'Rim-Fire': 1.6430492035729749e-06, "1961's": 2.4645738053594624e-06, 'Kodiak': 3.2860984071459497e-06, 'autoloader': 3.2860984071459497e-06, '11-shot': 1.6430492035729749e-06, 'hammerless': 1.6430492035729749e-06, 'tubular': 4.107623008932437e-06, 'Rifles': 1.6430492035729749e-06, 'trouble-free': 1.6430492035729749e-06, '989': 1.6430492035729749e-06, 'seven-': 1.6430492035729749e-06, '12-shot': 1.6430492035729749e-06, 'Mossberg': 1.6430492035729749e-06, 'Targo': 3.2860984071459497e-06, 'rifle-shotgun': 1.6430492035729749e-06, 'unrifled': 1.6430492035729749e-06, 'rifled': 1.6430492035729749e-06, 'unscrew': 1.6430492035729749e-06, 'smoothbore': 1.6430492035729749e-06, 'shotshells': 1.6430492035729749e-06, 'clays': 1.6430492035729749e-06, 'fastens': 1.6430492035729749e-06, 'seven-shot': 1.6430492035729749e-06, 'repeater': 1.6430492035729749e-06, '340TR': 1.6430492035729749e-06, 'single-shot': 4.929147610718925e-06, '320TR': 1.6430492035729749e-06, 'wing-shooting': 1.6430492035729749e-06, '35-foot': 1.6430492035729749e-06, 'pellets': 1.6430492035729749e-06, "725's": 1.6430492035729749e-06, '$310': 1.6430492035729749e-06, 'brakes': 4.929147610718925e-06, 'shortened': 6.5721968142918994e-06, '742': 1.6430492035729749e-06, '$140': 1.6430492035729749e-06, 'deluxe': 1.6430492035729749e-06, '18-1/2-inch': 1.6430492035729749e-06, '760': 1.6430492035729749e-06, 'pump': 9.036770619651361e-06, 'short-barrel': 1.6430492035729749e-06, 'saddle': 1.97165904428757e-05, 'scabbard': 4.929147610718925e-06, '742C': 1.6430492035729749e-06, 'Featherweight': 1.6430492035729749e-06, 'Deluxe': 1.6430492035729749e-06, 'top-tang': 2.4645738053594624e-06, 'slide-lock': 1.6430492035729749e-06, 'lever-action': 3.2860984071459497e-06, "Beginners'": 1.6430492035729749e-06, "beginners'": 1.6430492035729749e-06, 'Ithaca': 1.6430492035729749e-06, 'drop-block': 1.6430492035729749e-06, 'full-sized': 1.6430492035729749e-06, '122': 2.4645738053594624e-06, 'cocked': 5.750672212505412e-06, '514C': 1.6430492035729749e-06, '21-inch': 2.4645738053594624e-06, '12-1/2-inch': 2.4645738053594624e-06, '12-1/2': 1.6430492035729749e-06, "beginner's": 2.4645738053594624e-06, 'single-barrel': 1.6430492035729749e-06, '940Y': 1.6430492035729749e-06, '$35': 1.6430492035729749e-06, 'tang': 4.107623008932437e-06, 'gauge': 1.0679819823224336e-05, 'pump-action': 2.4645738053594624e-06, "kid's": 1.0679819823224336e-05, 'hunters': 4.929147610718925e-06, 'scattergun': 2.4645738053594624e-06, 'Shotguns': 1.6430492035729749e-06, 'Superposed': 1.6430492035729749e-06, '$350': 1.6430492035729749e-06, 'beavertail': 1.6430492035729749e-06, 'barrel-wide': 1.6430492035729749e-06, 'ventilated': 1.6430492035729749e-06, 'rib': 1.6430492035729749e-06, 'sighting': 2.4645738053594624e-06, 'Colt': 4.929147610718925e-06, 'Pump': 1.6430492035729749e-06, 'Firearms': 1.6430492035729749e-06, 'Finland': 2.4645738053594624e-06, 'Valmet': 1.6430492035729749e-06, '12-gauge': 3.2860984071459497e-06, 'Supermatic': 1.6430492035729749e-06, 'optional': 4.107623008932437e-06, 'Flite-King': 1.6430492035729749e-06, "Mossberg's": 1.6430492035729749e-06, '$73.50': 1.6430492035729749e-06, 'Handguns': 1.6430492035729749e-06, 'coupled': 1.232286902679731e-05, 'handguns': 1.6430492035729749e-06, 'Livery': 1.6430492035729749e-06, 'prop.': 1.6430492035729749e-06, 'Coaching': 2.4645738053594624e-06, '1905': 5.750672212505412e-06, 'creaking': 4.929147610718925e-06, 'prospered': 2.4645738053594624e-06, 'horsedom': 1.6430492035729749e-06, 'tallyho': 6.5721968142918994e-06, 'Cruz': 7.393721416078387e-06, 'upland': 2.4645738053594624e-06, 'redwood': 2.4645738053594624e-06, 'orchards': 4.929147610718925e-06, 'hell-for-leather': 1.6430492035729749e-06, 'lantern': 1.1501344425010824e-05, 'trenchermen': 1.6430492035729749e-06, 'complain': 9.85829522143785e-06, 'Breakfast': 2.4645738053594624e-06, 'Boulder': 3.2860984071459497e-06, 'Creek': 5.750672212505412e-06, 'Gazing': 2.4645738053594624e-06, 'tiring': 4.107623008932437e-06, 'halts': 1.6430492035729749e-06, 'contrived': 3.2860984071459497e-06, 'hostler': 2.4645738053594624e-06, 'rode': 3.368250867324598e-05, 'hamper': 4.929147610718925e-06, 'filets': 1.6430492035729749e-06, 'smoked': 8.215246017864873e-06, 'sturgeon': 1.6430492035729749e-06, 'sandwiches': 4.107623008932437e-06, 'pickled': 3.2860984071459497e-06, 'rum': 2.4645738053594624e-06, 'sangaree': 1.6430492035729749e-06, 'botanists': 2.4645738053594624e-06, 'bulbs': 3.2860984071459497e-06, 'ferns': 1.6430492035729749e-06, 'resin': 8.215246017864873e-06, 'fir': 2.4645738053594624e-06, 'westerly': 3.2860984071459497e-06, 'Franciscan': 1.6430492035729749e-06, 'roamed': 1.6430492035729749e-06, 'incense': 2.4645738053594624e-06, 'fragrance': 5.750672212505412e-06, 'Orphic': 1.6430492035729749e-06, 'pastilles': 1.6430492035729749e-06, 'Malabar': 1.6430492035729749e-06, 'botanical': 1.6430492035729749e-06, 'breakfasted': 2.4645738053594624e-06, "Vernon's": 3.2860984071459497e-06, 'adjoined': 2.4645738053594624e-06, 'adorned': 1.6430492035729749e-06, 'lithographs': 1.6430492035729749e-06, 'polish': 7.393721416078387e-06, 'liniments': 1.6430492035729749e-06, "Ball's": 1.6430492035729749e-06, 'Rubber': 2.4645738053594624e-06, 'Boots': 1.6430492035729749e-06, 'Whiskey': 2.4645738053594624e-06, "Hood's": 1.6430492035729749e-06, 'Sarsaparilla': 1.6430492035729749e-06, 'patent': 2.875336106252706e-05, 'medicines': 4.929147610718925e-06, 'blacking': 1.6430492035729749e-06, 'chewing': 1.0679819823224336e-05, 'hissing': 4.107623008932437e-06, 'porter': 5.750672212505412e-06, "Manning's": 4.107623008932437e-06, 'Fish': 4.107623008932437e-06, 'draped': 8.215246017864873e-06, 'napkins': 2.4645738053594624e-06, 'platter': 1.6430492035729749e-06, 'salt': 3.450403327503247e-05, 'roast': 8.215246017864873e-06, 'fritters': 1.6430492035729749e-06, 'consummately': 1.6430492035729749e-06, 'fond': 1.1501344425010824e-05, 'Oyster': 1.6430492035729749e-06, 'standby': 3.2860984071459497e-06, 'coachmen': 2.4645738053594624e-06, "1890's": 3.2860984071459497e-06, 'Kirkpatrick': 2.4645738053594624e-06, "Antoine's": 3.2860984071459497e-06, 'Gastronomes': 1.6430492035729749e-06, "Palace's": 2.4645738053594624e-06, 'splash': 3.2860984071459497e-06, 'absinthe': 1.6430492035729749e-06, 'Pernod': 1.6430492035729749e-06, 'parsley': 1.6430492035729749e-06, 'underbedding': 1.6430492035729749e-06, 'liqueur': 1.6430492035729749e-06, 'unadorned': 1.6430492035729749e-06, 'herbs': 3.2860984071459497e-06, 'seasoning': 2.4645738053594624e-06, 'inspect': 9.85829522143785e-06, '$2,300': 1.6430492035729749e-06, 'replica': 1.6430492035729749e-06, 'Belmont': 2.4645738053594624e-06, 'matchless': 2.4645738053594624e-06, 'whips': 1.6430492035729749e-06, 'shave': 5.750672212505412e-06, 'French-polished': 1.6430492035729749e-06, 'axles': 1.6430492035729749e-06, 'greased': 2.4645738053594624e-06, 'roulette': 4.107623008932437e-06, 'groomed': 4.107623008932437e-06, 'gloss': 1.6430492035729749e-06, 'jaw': 1.3965918230370285e-05, 'funerals': 1.6430492035729749e-06, 'kedgeree': 3.2860984071459497e-06, 'Kedgeree': 1.6430492035729749e-06, 'Flake': 1.6430492035729749e-06, 'cupful': 3.2860984071459497e-06, 'boiled': 9.036770619651361e-06, 'haddock': 1.6430492035729749e-06, 'minced': 5.750672212505412e-06, 'hard-boiled': 2.4645738053594624e-06, 'buttery': 1.6430492035729749e-06, 'sauce': 1.7252016637516235e-05, 'cayenne': 2.4645738053594624e-06, 'pinch': 5.750672212505412e-06, 'curry': 1.6430492035729749e-06, 'tablespoonful': 3.2860984071459497e-06, 'fried': 5.750672212505412e-06, 'anchovy': 1.6430492035729749e-06, 'Heat': 6.5721968142918994e-06, 'omelet': 3.2860984071459497e-06, 'Ernest': 9.036770619651361e-06, 'Arbogast': 3.2860984071459497e-06, "Ladies'": 2.4645738053594624e-06, 'Grill': 1.6430492035729749e-06, 'Native': 1.6430492035729749e-06, 'piquant': 2.4645738053594624e-06, 'coppery': 2.4645738053594624e-06, 'Delawares': 1.6430492035729749e-06, 'Fry': 1.6430492035729749e-06, 'celery': 4.107623008932437e-06, 'teaspoonful': 2.4645738053594624e-06, 'chives': 1.6430492035729749e-06, 'nutmeg': 4.107623008932437e-06, 'jigger': 1.6430492035729749e-06, 'Sherry': 4.107623008932437e-06, 'fortnight': 1.6430492035729749e-06, 'Pierpont': 1.6430492035729749e-06, 'restaurateur': 1.6430492035729749e-06, 'Nob': 1.6430492035729749e-06, 'magnate': 1.6430492035729749e-06, 'swarmed': 3.2860984071459497e-06, 'amused': 8.215246017864873e-06, 'Moorish': 2.4645738053594624e-06, 'galleries': 1.6430492035729749e-06, 'maelstrom': 1.6430492035729749e-06, 'primacy': 4.929147610718925e-06, 'rubicund': 1.6430492035729749e-06, 'slash-mouthed': 1.6430492035729749e-06, 'Winfield': 1.6430492035729749e-06, 'gardenia': 1.6430492035729749e-06, 'maroon': 3.2860984071459497e-06, 'Wellington': 1.6430492035729749e-06, 'boots': 1.6430492035729746e-05, 'glistened': 4.107623008932437e-06, 'currant': 1.6430492035729749e-06, 'Promptly': 3.2860984071459497e-06, 'clatter': 2.4645738053594624e-06, 'reins': 8.215246017864873e-06, 'button': 9.036770619651361e-06, 'Epsom': 1.6430492035729749e-06, 'surtout': 1.6430492035729749e-06, 'curve': 3.779013168217842e-05, 'cantered': 1.6430492035729749e-06, 'peninsula': 4.929147610718925e-06, 'uplands': 1.6430492035729749e-06, 'inns': 1.6430492035729749e-06, 'tilt': 4.929147610718925e-06, 'lounged': 3.2860984071459497e-06, 'dashboard': 2.4645738053594624e-06, 'indulging': 1.6430492035729749e-06, 'cigar': 9.036770619651361e-06, 'clump': 4.107623008932437e-06, 'fork': 1.232286902679731e-05, 'sky-tapping': 1.6430492035729749e-06, 'redwoods': 2.4645738053594624e-06, 'furrowed': 2.4645738053594624e-06, 'ripple': 4.929147610718925e-06, 'bakes': 1.6430492035729749e-06, 'valley': 4.025470548753788e-05, 'splashes': 2.4645738053594624e-06, 'shoulder-high': 1.6430492035729749e-06, 'fernery': 1.6430492035729749e-06, 'seersucker': 1.6430492035729749e-06, 'half-witted': 1.6430492035729749e-06, 'mackintosh': 1.6430492035729749e-06, 'disfavor': 1.6430492035729749e-06, 'ink': 6.5721968142918994e-06, 'denouncing': 3.2860984071459497e-06, 'copious': 1.6430492035729749e-06, 'stables': 3.2860984071459497e-06, 'bins': 2.4645738053594624e-06, "Wright's": 8.215246017864873e-06, 'verandas': 1.6430492035729749e-06, 'strewn': 5.750672212505412e-06, 'rockers': 1.6430492035729749e-06, 'sojourners': 1.6430492035729749e-06, 'haunt': 4.107623008932437e-06, 'Ambrose': 1.6430492035729749e-06, 'Bierce': 1.6430492035729749e-06, 'Acorns': 1.6430492035729749e-06, 'oaks': 1.6430492035729749e-06, 'pigs': 5.750672212505412e-06, 'sweepstakes': 1.6430492035729749e-06, 'cured': 6.5721968142918994e-06, 'oak-log': 1.6430492035729749e-06, 'esteemed': 3.2860984071459497e-06, 'roasted': 4.929147610718925e-06, 'saucepan': 3.2860984071459497e-06, 'teaspoonfuls': 1.6430492035729749e-06, 'mustard': 1.5608967433943262e-05, 'mashed': 3.2860984071459497e-06, 'garlic': 4.107623008932437e-06, 'cloves': 2.4645738053594624e-06, 'Contribute': 1.6430492035729749e-06, 'gherkins': 1.6430492035729749e-06, 'lime': 1.0679819823224336e-05, 'simmered': 1.6430492035729749e-06, 'tablespoons': 6.5721968142918994e-06, 'Worcestershire': 3.2860984071459497e-06, 'catsup': 3.2860984071459497e-06, 'chutney': 1.6430492035729749e-06, 'walnuts': 4.929147610718925e-06, 'pint': 1.1501344425010824e-05, 'simmer': 3.2860984071459497e-06, 'kegful': 1.6430492035729749e-06, 'kegs': 1.6430492035729749e-06, 'Vineyards': 1.6430492035729749e-06, 'nuisance': 4.929147610718925e-06, 'six-foot': 2.4645738053594624e-06, 'fences': 1.3965918230370285e-05, 'panthers': 1.6430492035729749e-06, 'venison': 1.6430492035729749e-06, 'pies': 4.929147610718925e-06, 'dryness': 2.4645738053594624e-06, 'gunflint': 1.6430492035729749e-06, 'Almaden': 1.6430492035729749e-06, 'vineyards': 4.107623008932437e-06, 'Apple': 1.6430492035729749e-06, 'creeks': 1.6430492035729749e-06, 'brimful': 1.6430492035729749e-06, 'apples': 4.929147610718925e-06, 'wintry': 2.4645738053594624e-06, 'crackle': 2.4645738053594624e-06, 'Dwellers': 1.6430492035729749e-06, 'thereabouts': 1.6430492035729749e-06, 'apple': 7.393721416078387e-06, 'bakery': 2.4645738053594624e-06, 'oven': 6.5721968142918994e-06, 'billets': 1.6430492035729749e-06, 'pie': 1.232286902679731e-05, 'waning': 2.4645738053594624e-06, 'baker': 2.4645738053594624e-06, 'ledger': 6.5721968142918994e-06, 'peel': 2.4645738053594624e-06, 'apricot': 1.6430492035729749e-06, 'clove': 1.6430492035729749e-06, 'gently': 2.6288787257167598e-05, 'Poach': 1.6430492035729749e-06, 'syrup': 4.107623008932437e-06, 'pastry-lined': 1.6430492035729749e-06, 'tablespoonfuls': 1.6430492035729749e-06, 'gild': 1.6430492035729749e-06, 'yolk': 1.6430492035729749e-06, 'sky-reaching': 1.6430492035729749e-06, 'smoke-filled': 1.6430492035729749e-06, 'art-filled': 1.6430492035729749e-06, 'drama-filled': 1.6430492035729749e-06, 'unbelievable': 4.107623008932437e-06, 'Hawaii': 1.3965918230370285e-05, 'U.S.A.': 4.107623008932437e-06, 'photographic': 9.85829522143785e-06, 'photogenic': 2.4645738053594624e-06, 'birthplace': 5.750672212505412e-06, 'battlefields': 2.4645738053594624e-06, 'villages': 1.0679819823224336e-05, 'peerless': 1.6430492035729749e-06, 'metropolis': 7.393721416078387e-06, 'verdant': 1.6430492035729749e-06, 'two-day': 4.107623008932437e-06, 'Naval': 1.1501344425010824e-05, 'Wednesdays': 1.6430492035729749e-06, 'eye-filling': 1.6430492035729749e-06, 'Lancaster': 2.4645738053594624e-06, 'Forge': 5.750672212505412e-06, 'beaches': 1.232286902679731e-05, 'townships': 1.6430492035729749e-06, 'whaling': 1.6430492035729749e-06, 'port': 1.1501344425010824e-05, 'Sturbridge': 1.6430492035729749e-06, 'completely-restored': 1.6430492035729749e-06, 'Acadia': 1.6430492035729749e-06, 'rockbound': 1.6430492035729749e-06, 'Return': 2.4645738053594624e-06, 'Champlain': 3.2860984071459497e-06, 'Ethan': 4.107623008932437e-06, 'Adirondack': 2.4645738053594624e-06, 'Mts.': 1.6430492035729749e-06, 'Winooski': 4.107623008932437e-06, 'whirlwind': 1.6430492035729749e-06, 'sightseeing': 1.6430492035729749e-06, 'skyline': 1.6430492035729749e-06, 'ferry': 2.4645738053594624e-06, 'Photographing': 1.6430492035729749e-06, 'Northeastern': 1.6430492035729749e-06, 'locales': 4.107623008932437e-06, 'modernistic': 1.6430492035729749e-06, 'weekday': 2.4645738053594624e-06, 'Pictures': 5.750672212505412e-06, 'tripods': 1.6430492035729749e-06, 'Photos': 3.2860984071459497e-06, 'Rooms': 1.6430492035729749e-06, 'Flash': 1.6430492035729749e-06, 'lighthouses': 1.6430492035729749e-06, 'overexpose': 1.6430492035729749e-06, 'light-reflecting': 1.6430492035729749e-06, '1/50th': 1.6430492035729749e-06, 'sunlight': 1.4787442832156774e-05, 'encompasses': 1.6430492035729749e-06, 'expanse': 4.929147610718925e-06, 'spectacles': 3.2860984071459497e-06, 'tourist': 1.3144393628583799e-05, 'memorial': 4.107623008932437e-06, 're-enactments': 1.6430492035729749e-06, 'Lookout': 1.6430492035729749e-06, 'Vicksburg': 3.2860984071459497e-06, 'Fredericksburg': 1.6430492035729749e-06, 'unequalled': 1.6430492035729749e-06, 'Cypress': 2.4645738053594624e-06, 'water-ski': 1.6430492035729749e-06, 'Silver': 1.6430492035729749e-06, 'glass-bottom': 1.6430492035729749e-06, 'Everglades': 1.6430492035729749e-06, 'photograph': 1.4787442832156774e-05, 'surroundings': 7.393721416078387e-06, 'palm-studded': 1.6430492035729749e-06, 'Seaquarium': 2.4645738053594624e-06, 'Parrot': 1.6430492035729749e-06, 'Jungle': 2.4645738053594624e-06, 'wrought': 3.2860984071459497e-06, 'Quarter': 3.2860984071459497e-06, 'Williamsburg': 1.6430492035729749e-06, 'Jamestown': 1.6430492035729749e-06, 'Yorktown': 2.4645738053594624e-06, 'adventure': 1.232286902679731e-05, 'Luray': 1.6430492035729749e-06, 'Caverns': 1.6430492035729749e-06, 'lit': 1.4787442832156774e-05, 'photofloodlights': 1.6430492035729749e-06, 'Alamo': 1.6430492035729749e-06, '127-mile': 1.6430492035729749e-06, 'gorges': 1.6430492035729749e-06, 'Gatlinburg': 2.4645738053594624e-06, 'Chattanooga': 3.2860984071459497e-06, 'trademarks': 1.6430492035729749e-06, 'Charleston': 2.4645738053594624e-06, 'Natchez': 2.4645738053594624e-06, 'Charlottesville': 3.2860984071459497e-06, 'Monticello': 3.2860984071459497e-06, 'Picturing': 1.6430492035729749e-06, 'photo': 4.929147610718925e-06, 'profusion': 2.4645738053594624e-06, 'flourishing': 1.6430492035729749e-06, 'wooded': 4.107623008932437e-06, 'Exposure': 2.4645738053594624e-06, 'uneven': 5.750672212505412e-06, 'shafts': 2.4645738053594624e-06, 'filtering': 5.750672212505412e-06, 'predominantly': 6.5721968142918994e-06, 'long-view': 1.6430492035729749e-06, 'scenics': 1.6430492035729749e-06, 'ante-bellum': 3.2860984071459497e-06, 'tripod': 3.2860984071459497e-06, 'synchronized': 2.4645738053594624e-06, '600-mile': 1.6430492035729749e-06, 'Folk': 1.6430492035729749e-06, 'Singing': 3.2860984071459497e-06, 'Linville': 1.6430492035729749e-06, 'Peak': 1.6430492035729749e-06, 'waterskiing': 1.6430492035729749e-06, 'midwestern': 4.107623008932437e-06, 'stroll': 4.107623008932437e-06, 'unfold': 2.4645738053594624e-06, 'Dells': 1.6430492035729749e-06, 'overgrown': 4.107623008932437e-06, 'fern': 1.6430492035729749e-06, 'stopover': 1.6430492035729749e-06, 'farmlands': 1.6430492035729749e-06, 'Badlands': 1.6430492035729749e-06, 'image-provoking': 1.6430492035729749e-06, 'Deadwood': 1.6430492035729749e-06, 'Passion': 1.6430492035729749e-06, 'Rushmore': 1.6430492035729749e-06, "Twain's": 1.6430492035729749e-06, 'Hannibal': 1.6430492035729749e-06, 'landmarks': 6.5721968142918994e-06, 'Huck': 1.6430492035729749e-06, 'Finn': 1.6430492035729749e-06, 'hatched': 2.4645738053594624e-06, 'boyish': 4.107623008932437e-06, 'mischief': 4.929147610718925e-06, 'vacationland': 1.6430492035729749e-06, 'Itasca': 1.6430492035729749e-06, 'Mementoes': 1.6430492035729749e-06, 'Wyatt': 3.2860984071459497e-06, 'Earp': 1.6430492035729749e-06, 'cowboys': 4.107623008932437e-06, 'Abilene': 2.4645738053594624e-06, 'ex-President': 2.4645738053594624e-06, 'boomtown': 1.6430492035729749e-06, "70's": 1.6430492035729749e-06, "80's": 1.6430492035729749e-06, 'Mackinack': 1.6430492035729749e-06, 'relives': 1.6430492035729749e-06, 'carriages': 4.929147610718925e-06, 'autos': 3.2860984071459497e-06, 'forts': 4.107623008932437e-06, 'travelogue': 2.4645738053594624e-06, 'sunset': 1.0679819823224336e-05, 'fill-in': 1.6430492035729749e-06, 'memo': 1.6430492035729749e-06, 'sightseers': 1.6430492035729749e-06, 'dioramas': 1.6430492035729749e-06, 'sometimes-necessary': 1.6430492035729749e-06, 'exposures': 2.4645738053594624e-06, 'world-renowned': 3.2860984071459497e-06, '27-30': 1.6430492035729749e-06, 'Elgin': 1.6430492035729749e-06, 'Tulip': 1.6430492035729749e-06, 'Holland': 7.393721416078387e-06, '12-14': 1.6430492035729749e-06, 'USGA': 1.6430492035729749e-06, '15-17': 1.6430492035729749e-06, 'vacationers': 1.6430492035729749e-06, 'fun-filled': 1.6430492035729749e-06, 'Fishing': 3.2860984071459497e-06, 'Derby': 3.2860984071459497e-06, '19-23': 1.6430492035729749e-06, '20-22': 1.6430492035729749e-06, 'two-week': 1.6430492035729749e-06, 'Yosemite': 3.2860984071459497e-06, '2,425': 1.6430492035729749e-06, 'Zion': 5.750672212505412e-06, 'Bryce': 2.4645738053594624e-06, 'Canyon': 5.750672212505412e-06, 'Fantastic': 1.6430492035729749e-06, 'fanciful': 2.4645738053594624e-06, 'formations': 6.5721968142918994e-06, 'loom': 5.750672212505412e-06, 'semiarid': 1.6430492035729749e-06, "Colorado's": 1.6430492035729749e-06, 'landmark': 3.2860984071459497e-06, 'highpoint': 2.4645738053594624e-06, 'Built': 2.4645738053594624e-06, 'Istanbul': 4.929147610718925e-06, 'haphazard': 2.4645738053594624e-06, 'disappearing': 4.929147610718925e-06, 'boulevards': 2.4645738053594624e-06, 'graceful': 8.215246017864873e-06, 'spires': 3.2860984071459497e-06, 'mosques': 2.4645738053594624e-06, 'panorama': 4.107623008932437e-06, 'Bosphorus': 4.929147610718925e-06, 'Founded': 2.4645738053594624e-06, 'Byzantium': 1.6430492035729749e-06, 'Byzas': 1.6430492035729749e-06, 'Megarians': 1.6430492035729749e-06, '11,330': 1.6430492035729749e-06, 'Constantinople': 3.2860984071459497e-06, 'Constantine': 7.393721416078387e-06, '1453': 2.4645738053594624e-06, 'vestige': 2.4645738053594624e-06, 'Turks': 4.929147610718925e-06, 'Patriarch': 1.6430492035729749e-06, 'Ottoman': 3.2860984071459497e-06, 'Marmara': 3.2860984071459497e-06, 'Easy': 3.2860984071459497e-06, 'Pan': 2.4645738053594624e-06, 'Tourist': 1.6430492035729749e-06, "American's": 1.6430492035729749e-06, 'Cumhuriyet': 1.6430492035729749e-06, 'Cadesi': 1.6430492035729749e-06, 'Taksim': 1.6430492035729749e-06, 'hubs': 2.4645738053594624e-06, 'Directly': 4.107623008932437e-06, 'T': 5.997129593041358e-05, 'Dolmabahce': 1.6430492035729749e-06, 'liners': 2.4645738053594624e-06, 'Galata': 1.6430492035729749e-06, 'Bridge': 1.3144393628583799e-05, 'empties': 3.2860984071459497e-06, 'Across': 7.393721416078387e-06, 'Sophia': 6.5721968142918994e-06, 'minarets': 4.107623008932437e-06, 'slenderer': 1.6430492035729749e-06, 'Mosque': 7.393721416078387e-06, 'Eminonu': 1.6430492035729749e-06, 'Yeni': 1.6430492035729749e-06, 'Cami': 1.6430492035729749e-06, 'Seventeenth': 2.4645738053594624e-06, 'Passing': 3.2860984071459497e-06, 'bazaar': 4.929147610718925e-06, "Pandelli's": 1.6430492035729749e-06, 'Erected': 1.6430492035729749e-06, 'pagan': 1.6430492035729749e-06, 'temples': 4.107623008932437e-06, 'Sophias': 1.6430492035729749e-06, 'Justinian': 4.107623008932437e-06, '532': 1.6430492035729749e-06, 'grander': 1.6430492035729749e-06, "Solomon's": 1.6430492035729749e-06, 'Emperors': 2.4645738053594624e-06, 'mosque': 2.4645738053594624e-06, 'stubby': 3.2860984071459497e-06, 'Sixteenth': 2.4645738053594624e-06, 'Sinan': 1.6430492035729749e-06, 'Michelangelo': 1.7252016637516235e-05, 'buttresses': 1.6430492035729749e-06, 'mosaics': 1.6430492035729749e-06, 'plastered': 4.929147610718925e-06, 'Moslems': 1.6430492035729749e-06, 'Artemis': 1.6430492035729749e-06, 'Ephesus': 2.4645738053594624e-06, 'Heliopolis': 2.4645738053594624e-06, 'minber': 1.6430492035729749e-06, 'emperors': 2.4645738053594624e-06, 'sultans': 3.2860984071459497e-06, 'Hippodrome': 4.929147610718925e-06, '196': 2.4645738053594624e-06, 'chariot': 3.2860984071459497e-06, 'Statues': 1.6430492035729749e-06, 'Crusaders': 2.4645738053594624e-06, "Kaiser's": 3.2860984071459497e-06, 'Fountain': 5.750672212505412e-06, 'octagonal': 3.2860984071459497e-06, '1895': 5.750672212505412e-06, 'Sultan': 3.2860984071459497e-06, 'Ahmet': 3.2860984071459497e-06, 'Obelisk': 1.6430492035729749e-06, 'Theodosius': 1.6430492035729749e-06, 'Thutmose': 1.6430492035729749e-06, 'Lateran': 1.6430492035729749e-06, '390': 1.6430492035729749e-06, 'obelisk': 4.929147610718925e-06, 'Serpentine': 1.6430492035729749e-06, 'Column': 9.85829522143785e-06, 'entwined': 2.4645738053594624e-06, 'serpents': 3.2860984071459497e-06, 'Delphi': 1.6430492035729749e-06, 'rivalled': 1.6430492035729749e-06, 'Colossus': 1.6430492035729749e-06, 'Magnificent': 1.6430492035729749e-06, 'Retracing': 1.6430492035729749e-06, 'courtyard': 7.393721416078387e-06, 'cascade': 1.6430492035729749e-06, 'rectangular': 4.107623008932437e-06, 'muezzin': 1.6430492035729749e-06, 'chant': 2.4645738053594624e-06, 'Burnt': 1.6430492035729749e-06, 'Bayezit': 2.4645738053594624e-06, 'Gazinosu': 1.6430492035729749e-06, 'overlooking': 2.4645738053594624e-06, 'arcade': 3.2860984071459497e-06, 'baklava': 1.6430492035729749e-06, 'flaky': 2.4645738053594624e-06, 'red-tile': 1.6430492035729749e-06, 'Sunken': 1.6430492035729749e-06, 'cistern': 2.4645738053594624e-06, 'pillars': 4.929147610718925e-06, 'pagoda': 1.6430492035729749e-06, 'lettering': 4.107623008932437e-06, 'Topkapi': 1.6430492035729749e-06, 'Sultans': 1.6430492035729749e-06, "Executioner's": 1.6430492035729749e-06, 'beheading': 1.6430492035729749e-06, 'towers': 4.929147610718925e-06, 'prisons': 3.2860984071459497e-06, 'arrowed': 1.6430492035729749e-06, 'veered': 3.2860984071459497e-06, 'chimneys': 3.2860984071459497e-06, 'porcelain': 2.4645738053594624e-06, 'utensils': 3.2860984071459497e-06, 'floor-length': 1.6430492035729749e-06, 'portico': 2.4645738053594624e-06, 'Throne': 2.4645738053594624e-06, 'illuminated': 1.232286902679731e-05, 'cups': 1.232286902679731e-05, 'diamonds': 6.5721968142918994e-06, 'jewelled': 1.6430492035729749e-06, 'swords': 4.107623008932437e-06, 'divan-like': 1.6430492035729749e-06, 'thrones': 1.6430492035729749e-06, 'cross-legged': 2.4645738053594624e-06, 'emeralds': 5.750672212505412e-06, 'pearls': 2.4645738053594624e-06, 'Portrait': 1.6430492035729749e-06, 'divans': 1.6430492035729749e-06, 'squares': 1.1501344425010824e-05, 'coals': 7.393721416078387e-06, 'grease': 8.215246017864873e-06, 'foil': 1.6430492035729746e-05, 'basting': 2.4645738053594624e-06, 'sauces': 4.929147610718925e-06, 'detergent': 2.0538115044662184e-05, 'rinse': 5.750672212505412e-06, 'barbecued': 1.6430492035729749e-06, 'heating': 1.97165904428757e-05, 'shorten': 4.107623008932437e-06, 'aluminum': 1.5608967433943262e-05, 'Sear': 1.6430492035729749e-06, 'juiciest': 1.6430492035729749e-06, 'puncturing': 1.6430492035729749e-06, 'meats': 9.85829522143785e-06, 'halves': 2.4645738053594624e-06, 'grill': 9.85829522143785e-06, 'sear': 1.6430492035729749e-06, 'allot': 1.6430492035729749e-06, 'roasts': 1.6430492035729749e-06, 'thermometer': 9.036770619651361e-06, 'diagonally': 4.107623008932437e-06, 'test-run': 1.6430492035729749e-06, 'non-freezing': 1.6430492035729749e-06, 'Limit': 1.6430492035729749e-06, 'desserts': 2.4645738053594624e-06, 'marinade': 1.6430492035729749e-06, 'hibachi': 4.929147610718925e-06, 'tongs': 1.6430492035729749e-06, 'forks': 2.4645738053594624e-06, 'drips': 1.6430492035729749e-06, 'flares': 5.750672212505412e-06, 'Melamine': 2.4645738053594624e-06, 'bowls': 3.2860984071459497e-06, 'saucers': 2.4645738053594624e-06, 'platters': 1.6430492035729749e-06, 'Made': 3.2860984071459497e-06, 'unbreakable': 4.929147610718925e-06, 'dinnerware': 1.6430492035729749e-06, 'tablecloths': 1.6430492035729749e-06, 'Wall-Tex': 1.6430492035729749e-06, 'oilcloth': 2.4645738053594624e-06, 'barbecues': 3.2860984071459497e-06, 'Oilcloth': 1.6430492035729749e-06, '79-cents': 1.6430492035729749e-06, 'Tougher': 1.6430492035729749e-06, 'wine-': 1.6430492035729749e-06, 'beer-cooling': 1.6430492035729749e-06, 'coolers': 3.2860984071459497e-06, 'hamburgers': 4.107623008932437e-06, 'frozen': 2.218116424823516e-05, 'stews': 1.6430492035729749e-06, 'chowders': 1.6430492035729749e-06, 'A-1': 2.4645738053594624e-06, 'shish': 1.6430492035729749e-06, 'kebob': 1.6430492035729749e-06, 'lobster': 1.6430492035729749e-06, 'terry': 1.6430492035729749e-06, 'mopping': 3.2860984071459497e-06, 'Summertime': 1.6430492035729749e-06, 'Bernz-O-Matic': 1.6430492035729749e-06, 'all-purpose': 1.6430492035729749e-06, 'mugs': 2.4645738053594624e-06, 'earthenware': 1.6430492035729749e-06, 'chilled': 6.5721968142918994e-06, 'dressing': 1.889506584108921e-05, 'Decide': 2.4645738053594624e-06, 'bureaus': 2.4645738053594624e-06, 'buns': 7.393721416078387e-06, 'relishes': 1.6430492035729749e-06, '75%': 4.107623008932437e-06, 'skillet': 2.4645738053594624e-06, 'knives': 6.5721968142918994e-06, 'home-for-the-night': 1.6430492035729749e-06, '25-cents': 1.6430492035729749e-06, 'Simple': 4.929147610718925e-06, 'franks': 7.393721416078387e-06, 'sausages': 4.929147610718925e-06, 'basics': 1.6430492035729749e-06, 'cervelat': 1.6430492035729749e-06, 'mettwurst': 1.6430492035729749e-06, 'bratwurst': 1.6430492035729749e-06, 'bockwurst': 1.6430492035729749e-06, 'knackwurst': 1.6430492035729749e-06, 'Bologna': 2.4645738053594624e-06, 'pepperoni': 1.6430492035729749e-06, 'blutwurst': 1.6430492035729749e-06, 'Threaded': 1.6430492035729749e-06, 'skewer': 1.6430492035729749e-06, 'mushroom': 2.4645738053594624e-06, 'spiced': 3.2860984071459497e-06, 'feast': 3.2860984071459497e-06, 'frankfurter': 7.393721416078387e-06, 'Feuchtwanger': 2.4645738053594624e-06, 'grilled': 2.4645738053594624e-06, 'gloves': 5.750672212505412e-06, 'Discovery': 1.0679819823224336e-05, 'sausage-meat': 1.6430492035729749e-06, 'sized': 4.107623008932437e-06, 'Years': 6.5721968142918994e-06, 'franks-in-buns': 1.6430492035729749e-06, 'skinless': 4.107623008932437e-06, 'toasted': 2.4645738053594624e-06, 'sedately': 2.4645738053594624e-06, 'charcoal': 1.1501344425010824e-05, 'broiled': 1.6430492035729749e-06, 'Score': 6.5721968142918994e-06, 'juices': 2.4645738053594624e-06, 'permeate': 1.6430492035729749e-06, 'Relishes': 1.6430492035729749e-06, 'Bring': 2.4645738053594624e-06, 'pickle': 1.6430492035729749e-06, 'extras': 1.6430492035729749e-06, 'tangy': 1.6430492035729749e-06, 'chive': 1.6430492035729749e-06, 'cheese': 8.215246017864873e-06, 'horse-radish': 2.4645738053594624e-06, 'browning': 1.6430492035729749e-06, 'marinating': 1.6430492035729749e-06, 'Broil': 1.6430492035729749e-06, 'Contrary': 5.750672212505412e-06, 'styled': 3.2860984071459497e-06, 'fix': 1.232286902679731e-05, "neighbor's": 3.2860984071459497e-06, 'popping': 4.929147610718925e-06, 'Jiffy': 1.6430492035729749e-06, 'chili': 4.929147610718925e-06, '1/3': 2.4645738053594624e-06, 'tablespoon': 5.750672212505412e-06, 'teaspoons': 3.2860984071459497e-06, 'Combine': 3.2860984071459497e-06, 'Makes': 4.929147610718925e-06, 'sayonara': 1.6430492035729749e-06, 'goodbye': 4.107623008932437e-06, 'toasting': 1.6430492035729749e-06, 'burners': 2.4645738053594624e-06, 'dipping': 1.6430492035729749e-06, 'tasty': 2.4645738053594624e-06, 'Canned': 1.6430492035729749e-06, 'frankfurters': 6.5721968142918994e-06, 'sweet-sour': 2.4645738053594624e-06, 'chopped': 3.2860984071459497e-06, '1/4': 8.215246017864873e-06, 'vinegar': 7.393721416078387e-06, 'chunks': 4.929147610718925e-06, 'Mustard': 2.4645738053594624e-06, 'Paprika': 1.6430492035729749e-06, 'Spear': 1.6430492035729749e-06, 'spear': 5.750672212505412e-06, 'Sweet-sour': 1.6430492035729749e-06, 'broiler': 2.4645738053594624e-06, 'tidbits': 2.4645738053594624e-06, 'Simmer': 2.4645738053594624e-06, 'Fold': 1.6430492035729749e-06, 'paprika': 1.6430492035729749e-06, 'Trim-your-own-franks': 1.6430492035729749e-06, 'back-yard': 1.6430492035729749e-06, 'toppings': 1.6430492035729749e-06, 'carne': 3.2860984071459497e-06, 'Coney': 3.2860984071459497e-06, 'sauerkraut': 4.107623008932437e-06, 'kraut': 1.6430492035729749e-06, 'Chili': 1.6430492035729749e-06, 'chop': 3.2860984071459497e-06, 'onions': 4.107623008932437e-06, 'moisten': 2.4645738053594624e-06, 'Savory': 1.6430492035729749e-06, 'caraway': 2.4645738053594624e-06, 'Barbecued': 1.6430492035729749e-06, 'ketchup': 1.6430492035729749e-06, 'teaspoon': 4.107623008932437e-06, 'Prick': 1.6430492035729749e-06, 'servings': 1.6430492035729749e-06, 'Pretend': 1.6430492035729749e-06, 'criss-cross': 1.6430492035729749e-06, 'gashes': 2.4645738053594624e-06, 'Stick': 2.4645738053594624e-06, 'drained': 6.5721968142918994e-06, 'rectangle': 4.107623008932437e-06, 'Roast': 1.6430492035729749e-06, '15-20': 1.6430492035729749e-06, 'Frankfurter': 8.215246017864873e-06, 'Blend': 1.6430492035729749e-06, '2/3': 1.6430492035729749e-06, 'Knead': 1.6430492035729749e-06, 'floured': 1.6430492035729749e-06, 'Af-inch': 1.6430492035729749e-06, 'Spread': 4.107623008932437e-06, 'strips': 1.232286902679731e-05, '3/4': 1.6430492035729749e-06, 'pinching': 2.4645738053594624e-06, 'Brush': 3.2860984071459497e-06, 'Serves': 1.6430492035729749e-06, 'Hamburger': 1.6430492035729749e-06, 'patties': 2.4645738053594624e-06, 'grated': 2.4645738053594624e-06, 'Dash': 1.6430492035729749e-06, 'pottery': 1.3965918230370285e-05, 'Instructions': 3.2860984071459497e-06, 'glazing': 2.4645738053594624e-06, 'Wooden': 1.6430492035729749e-06, 'molds': 6.5721968142918994e-06, 'Materials': 3.2860984071459497e-06, 'Ceramic': 1.6430492035729749e-06, 'modeling': 1.6430492035729749e-06, 'Stoneware': 2.4645738053594624e-06, 'Glazes': 1.6430492035729749e-06, 'one-stroke': 2.4645738053594624e-06, 'stains': 8.215246017864873e-06, 'cones': 2.4645738053594624e-06, 'well-wedged': 1.6430492035729749e-06, 'bubbles': 1.232286902679731e-05, 'pliable': 1.6430492035729749e-06, 'cracking': 1.3144393628583799e-05, 'wax': 1.232286902679731e-05, 'Pressing': 3.2860984071459497e-06, 'mold': 3.6968607080391934e-05, 'cavity': 1.0679819823224336e-05, 'knife': 6.079282053220007e-05, 'glazes': 2.4645738053594624e-06, 'Trim': 4.107623008932437e-06, 'moistening': 1.6430492035729749e-06, 'Allow': 2.4645738053594624e-06, 'antique': 1.0679819823224336e-05, 'dampness': 2.4645738053594624e-06, 'cupped': 4.107623008932437e-06, 'Slight': 2.4645738053594624e-06, 'tapping': 5.750672212505412e-06, 'plaster': 1.889506584108921e-05, 'bending': 6.5721968142918994e-06, 'warping': 4.107623008932437e-06, 'corrections': 1.6430492035729749e-06, 'wood-grained': 1.6430492035729749e-06, 'paintbrush': 1.6430492035729749e-06, 'grooves': 3.2860984071459497e-06, 'pinholes': 1.6430492035729749e-06, 'craters': 4.929147610718925e-06, 'Rectangular': 1.6430492035729749e-06, 'roughened': 2.4645738053594624e-06, 'bisque': 2.4645738053594624e-06, 'Glazed': 1.6430492035729749e-06, 'coats': 9.036770619651361e-06, 'Creek-Turn': 4.929147610718925e-06, 'stoneware': 1.6430492035729749e-06, 'Decorated': 1.6430492035729749e-06, 'unfired': 2.4645738053594624e-06, 'yellow-green': 3.2860984071459497e-06, 'blue-green': 3.2860984071459497e-06, 'Tiles': 1.6430492035729749e-06, '05': 3.2860984071459497e-06, 'plaque': 2.4645738053594624e-06, 'Bisque': 4.107623008932437e-06, 'Stained': 2.4645738053594624e-06, "Jacquelyn's": 1.6430492035729749e-06, 'stain': 5.750672212505412e-06, "manufacturer's": 4.107623008932437e-06, 'Opaque': 1.6430492035729749e-06, 'cantaloupe': 1.6430492035729749e-06, 'transparent': 1.0679819823224336e-05, 'Paperweight': 2.4645738053594624e-06, 'Mold': 1.6430492035729749e-06, 'undercut': 2.4645738053594624e-06, 'spaced': 7.393721416078387e-06, 'pencil': 2.875336106252706e-05, 'eraser': 2.4645738053594624e-06, 'personalized': 3.2860984071459497e-06, 'Unglazed': 1.6430492035729749e-06, 'Jars': 2.4645738053594624e-06, 'lids': 4.929147610718925e-06, 'Fill': 1.6430492035729749e-06, 'jar': 1.3965918230370285e-05, 'Measurements': 5.750672212505412e-06, 'circumference': 3.2860984071459497e-06, 'Pattern': 2.4645738053594624e-06, 'circular': 1.4787442832156774e-05, "3/16''": 2.4645738053594624e-06, 'Bevel': 1.6430492035729749e-06, 'overlap': 4.107623008932437e-06, 'overlapped': 3.2860984071459497e-06, 'reinforcing': 2.4645738053594624e-06, 'coil': 5.750672212505412e-06, '08': 2.4645738053594624e-06, 'jars': 1.6430492035729749e-06, 'toner': 3.2860984071459497e-06, 'ware': 1.6430492035729749e-06, 'Glaze': 2.4645738053594624e-06, 'matt': 2.4645738053594624e-06, 'sponged': 2.4645738053594624e-06, 'turquoise': 3.2860984071459497e-06, '06-05': 2.4645738053594624e-06, 'rim': 4.107623008932437e-06, 'beveled': 3.2860984071459497e-06, 'miter': 1.6430492035729749e-06, 'design-side': 1.6430492035729749e-06, 'shaker': 2.4645738053594624e-06, 'Construct': 1.6430492035729749e-06, 'coils': 2.4645738053594624e-06, 'reinforce': 9.036770619651361e-06, 'Recess': 1.6430492035729749e-06, 'stopper': 2.4645738053594624e-06, 'Sugar': 1.6430492035729749e-06, 'creamer': 4.107623008932437e-06, 'bevel': 1.6430492035729749e-06, 'overlapping': 3.2860984071459497e-06, 'splice': 1.6430492035729749e-06, 'Form': 1.6430492035729746e-05, 'seam': 8.215246017864873e-06, 'Handle': 2.4645738053594624e-06, "3-1/2''": 1.6430492035729749e-06, 'dowel': 2.4645738053594624e-06, 'container': 9.036770619651361e-06, 'spout': 1.6430492035729749e-06, 'dampen': 2.4645738053594624e-06, 'spoon': 5.750672212505412e-06, 'Vases': 2.4645738053594624e-06, 'shakers': 3.2860984071459497e-06, 'candles': 4.929147610718925e-06, 'wick': 2.4645738053594624e-06, 'Napkin': 1.6430492035729749e-06, 'holder': 2.300268885002165e-05, 'leather-hard': 1.6430492035729749e-06, 'cardboard': 4.107623008932437e-06, 'breakage': 1.6430492035729749e-06, 'greenware': 1.6430492035729749e-06, 'glazed': 4.107623008932437e-06, 'bottle': 6.325739433755954e-05, 'Fired': 1.6430492035729749e-06, 'strand': 6.5721968142918994e-06, 'Photograph': 1.6430492035729749e-06, 'purled': 2.4645738053594624e-06, 'Measuring': 1.6430492035729749e-06, 'armhole': 3.2860984071459497e-06, 'stitches': 4.107623008932437e-06, 'markers': 1.6430492035729749e-06, 'sl': 1.6430492035729749e-06, 'marker': 4.929147610718925e-06, 'needle': 1.3144393628583799e-05, 'Backstitching': 1.6430492035729749e-06, 'sew': 5.750672212505412e-06, 'backstitch': 3.2860984071459497e-06, 'sewn': 1.6430492035729749e-06, 'curved': 6.5721968142918994e-06, 'slanted': 3.2860984071459497e-06, 'Pin': 1.6430492035729749e-06, 'Thread': 2.4645738053594624e-06, 'Run': 5.750672212505412e-06, 'underarm': 1.6430492035729749e-06, 'Ease': 1.6430492035729749e-06, 'Backstitch': 1.6430492035729749e-06, 'Weaving': 1.6430492035729749e-06, 'Straight': 1.6430492035729749e-06, 'sock': 4.107623008932437e-06, 'Hold': 6.5721968142918994e-06, 'Hotei': 4.929147610718925e-06, '8-1/2-foot': 1.6430492035729749e-06, 'Menfolk': 1.6430492035729749e-06, 'helmsman': 1.6430492035729749e-06, 'amuse': 3.2860984071459497e-06, '5-foot': 2.4645738053594624e-06, '11-inch': 1.6430492035729749e-06, 'headroom': 1.6430492035729749e-06, 'galley': 4.107623008932437e-06, 'toilet': 1.1501344425010824e-05, 'roomy': 1.6430492035729749e-06, 'Merc': 2.4645738053594624e-06, '80-hp': 1.6430492035729749e-06, 'mph': 2.4645738053594624e-06, 'three-foot': 1.6430492035729749e-06, 'runabout': 1.6430492035729749e-06, 'cruiser': 4.107623008932437e-06, 'five-foot': 1.6430492035729749e-06, 'skiis': 2.4645738053594624e-06, 'bin': 8.215246017864873e-06, 'bumpers': 1.6430492035729749e-06, 'six-gallon': 1.6430492035729749e-06, "800's": 1.6430492035729749e-06, "500's": 1.6430492035729749e-06, '25-gallon': 1.6430492035729749e-06, 'long-cruise': 1.6430492035729749e-06, 'Needless': 5.750672212505412e-06, 'Fiberglas': 4.107623008932437e-06, 'Gator': 2.4645738053594624e-06, '565': 2.4645738053594624e-06, 'mooring': 1.6430492035729749e-06, 'hauling': 3.2860984071459497e-06, 'one-inch': 4.929147610718925e-06, 'mahogany': 7.393721416078387e-06, '13/16-inch': 2.4645738053594624e-06, 'battens': 1.3144393628583799e-05, 'flathead': 1.6430492035729749e-06, 'silicon': 2.4645738053594624e-06, 'Stronghold': 3.2860984071459497e-06, 'nails': 1.232286902679731e-05, 'Nail': 1.6430492035729749e-06, 'Packing': 2.4645738053594624e-06, 'Bridgewater': 1.6430492035729749e-06, 'Weldwood': 2.4645738053594624e-06, 'resorcinol': 3.2860984071459497e-06, 'glue': 6.5721968142918994e-06, 'transom': 1.4787442832156774e-05, 'Draw': 3.2860984071459497e-06, 'different-color': 1.6430492035729749e-06, 'lapped': 2.4645738053594624e-06, 'glued': 1.6430492035729746e-05, 'notching': 1.6430492035729749e-06, 'keelson': 9.036770619651361e-06, 'chines': 4.929147610718925e-06, 'half-inch': 3.2860984071459497e-06, 'butted': 3.2860984071459497e-06, '3/8-inch': 2.4645738053594624e-06, 'gussets': 1.6430492035729749e-06, 'notched': 2.4645738053594624e-06, 'bilge': 2.4645738053594624e-06, 'planking': 7.393721416078387e-06, 'jig': 7.393721416078387e-06, 'misalignment': 2.4645738053594624e-06, 'three-inch-wide': 3.2860984071459497e-06, 'screwed': 1.1501344425010824e-05, 'resin-saturated': 2.4645738053594624e-06, 'laminated': 2.4645738053594624e-06, 'stem': 2.546726265538111e-05, 'spliced': 1.6430492035729749e-06, 'three-inch': 1.6430492035729749e-06, 'One-inch': 1.6430492035729749e-06, 'rip': 4.929147610718925e-06, 'butt': 9.85829522143785e-06, 'clamps': 5.750672212505412e-06, 'fairing': 2.4645738053594624e-06, 'Glue': 1.6430492035729749e-06, '1-1/2-inch': 1.6430492035729749e-06, 'beveling': 1.6430492035729749e-06, 'two-inch': 1.6430492035729749e-06, 'Fairing': 1.6430492035729749e-06, 'planer': 3.2860984071459497e-06, 'clamped': 7.393721416078387e-06, '30-inch': 1.6430492035729749e-06, 'Grips': 1.6430492035729749e-06, 'bevels': 1.6430492035729749e-06, 'five-ply': 1.6430492035729749e-06, '3/8-inch-thick': 1.6430492035729749e-06, '42-inch': 2.4645738053594624e-06, 'Plank': 1.6430492035729749e-06, 'batten': 3.2860984071459497e-06, 'fastening': 1.6430492035729749e-06, 'Homemaster': 1.6430492035729749e-06, 'Routo-Jig': 1.6430492035729749e-06, 'bit-like': 1.6430492035729749e-06, 'saber': 1.6430492035729749e-06, 'trimming': 2.4645738053594624e-06, 'pre-drilled': 1.6430492035729749e-06, 'fastenings': 1.6430492035729749e-06, 'rough-sanded': 2.4645738053594624e-06, '50-inch': 1.6430492035729749e-06, 'pigment': 8.215246017864873e-06, 'mixing': 9.036770619651361e-06, 'hardener': 1.6430492035729749e-06, 'harden': 1.6430492035729749e-06, 'sander': 1.6430492035729749e-06, 'centerline': 1.6430492035729749e-06, 'beaching': 1.6430492035729749e-06, 'Plastic': 4.107623008932437e-06, '1605': 1.6430492035729749e-06, 'Linden': 5.750672212505412e-06, 'well-braced': 1.6430492035729749e-06, 'installing': 4.929147610718925e-06, 'fasten': 4.107623008932437e-06, 'flaring': 3.2860984071459497e-06, 'planed': 1.6430492035729749e-06, 'decking': 2.4645738053594624e-06, 'quarter-inch': 1.6430492035729749e-06, 'flooring': 6.5721968142918994e-06, 'exterior': 7.393721416078387e-06, 'Firzite': 1.6430492035729749e-06, 'Bottoms': 1.6430492035729749e-06, 'floorboards': 4.107623008932437e-06, 'bulkheads': 1.6430492035729749e-06, 'shatterproof': 1.6430492035729749e-06, 'Plexiglas': 1.6430492035729749e-06, 'removable': 1.6430492035729749e-06, 'bunk': 1.5608967433943262e-05, 'hinged': 1.6430492035729749e-06, 'drains': 4.929147610718925e-06, 'five-gallon': 2.4645738053594624e-06, 'bulkhead': 1.6430492035729749e-06, 'padding': 3.2860984071459497e-06, 'Ensolite': 1.6430492035729749e-06, 'Type': 3.2860984071459497e-06, 'Lightweight': 1.6430492035729749e-06, 'non-absorbent': 1.6430492035729749e-06, 'dimensionally': 1.6430492035729749e-06, 'bonded': 2.4645738053594624e-06, 'cement': 9.036770619651361e-06, 'Available': 4.929147610718925e-06, 'Egils': 1.6430492035729749e-06, 'Hermanovski': 1.6430492035729749e-06, 'panelized': 1.6430492035729749e-06, 'cottages': 5.750672212505412e-06, 'handyman': 2.4645738053594624e-06, 'modular': 3.2860984071459497e-06, 'panelization': 1.6430492035729749e-06, 'scaled': 2.4645738053594624e-06, 'measurements': 4.025470548753788e-05, 'timbers': 4.929147610718925e-06, 'ingenious': 9.036770619651361e-06, 'trucked': 1.6430492035729749e-06, 'precut': 1.6430492035729749e-06, 'specify': 9.85829522143785e-06, 'sanitary': 1.6430492035729749e-06, 'L-P': 1.6430492035729749e-06, 'inspector': 4.929147610718925e-06, 'accessibility': 2.4645738053594624e-06, 'wash-outs': 1.6430492035729749e-06, 'swampy': 1.6430492035729749e-06, 'intermittent': 3.2860984071459497e-06, 'springs': 7.393721416078387e-06, 'informative': 2.4645738053594624e-06, 'rocky': 8.215246017864873e-06, 'AjA': 1.6430492035729749e-06, 'expandable': 5.750672212505412e-06, 'AjB': 1.6430492035729749e-06, 'carport': 2.4645738053594624e-06, 'Bear': 4.107623008932437e-06, 'partitions': 1.6430492035729749e-06, 'fixtures': 3.2860984071459497e-06, 'wiring': 2.4645738053594624e-06, 'mesh': 4.107623008932437e-06, 'coated': 4.107623008932437e-06, 'particle': 1.8073541239302723e-05, 'asbestos-cement': 1.6430492035729749e-06, 'obtainable': 9.85829522143785e-06, 'weatherproof': 3.2860984071459497e-06, 'louvers': 2.4645738053594624e-06, '1/8-inch': 2.4645738053594624e-06, 'double-strength': 1.6430492035729749e-06, 'mastic': 1.6430492035729749e-06, 'compound': 9.85829522143785e-06, 'filler': 1.6430492035729749e-06, 'gable': 2.4645738053594624e-06, 'wastage': 1.6430492035729749e-06, 'rustproof': 1.6430492035729749e-06, '1/2-inch': 1.6430492035729749e-06, '5/8-inch': 1.6430492035729749e-06, 'thicknesses': 3.2860984071459497e-06, 'ripping': 3.2860984071459497e-06, 'milling': 1.4787442832156774e-05, 'rabbeting': 1.6430492035729749e-06, 'woodworking': 2.4645738053594624e-06, 'multitude': 3.2860984071459497e-06, 'attachments': 4.107623008932437e-06, 'spindle': 7.393721416078387e-06, 'threaded': 3.2860984071459497e-06, 'quill': 8.215246017864873e-06, 'movable': 1.5608967433943262e-05, 'tilted': 1.0679819823224336e-05, 'shank': 1.6430492035729749e-06, 'radial': 4.929147610718925e-06, 'tilting': 1.6430492035729749e-06, 'horizontal': 8.215246017864873e-06, 'swivels': 1.6430492035729749e-06, 'Set-up': 1.6430492035729749e-06, 'securely': 4.929147610718925e-06, 'rubdown': 1.6430492035729749e-06, 'oiled': 3.2860984071459497e-06, 'rusting': 1.6430492035729749e-06, 'Presses': 1.6430492035729749e-06, 'sealed': 1.1501344425010824e-05, 'lubrication': 1.6430492035729749e-06, 'dusting': 5.750672212505412e-06, 'rag': 6.5721968142918994e-06, 'bolts': 1.6430492035729749e-06, 'pulleys': 2.4645738053594624e-06, 'pliers': 1.6430492035729749e-06, 'unwinding': 1.6430492035729749e-06, 'loosening': 1.6430492035729749e-06, 'clockwise': 3.2860984071459497e-06, 'counter-clockwise': 1.6430492035729749e-06, 'Feeds': 2.4645738053594624e-06, 'adjusting': 9.036770619651361e-06, 'step-cone': 1.6430492035729749e-06, 'booklet': 1.6430492035729749e-06, 'Feed': 4.929147610718925e-06, 'overheating': 1.6430492035729749e-06, 'interchangeable': 3.2860984071459497e-06, 'drills': 4.107623008932437e-06, 'spurs': 3.2860984071459497e-06, 'sever': 3.2860984071459497e-06, 'fibers': 1.97165904428757e-05, 'adjustable': 2.4645738053594624e-06, 'cutter': 4.107623008932437e-06, 'exact-size': 1.6430492035729749e-06, 'reversing': 4.929147610718925e-06, 'sided': 1.6430492035729749e-06, 'slowest': 2.4645738053594624e-06, 'Fly': 1.6430492035729749e-06, 'nicked': 1.6430492035729749e-06, 'workpiece': 1.6430492035729749e-06, 'scrap': 7.393721416078387e-06, 'dimensional': 9.85829522143785e-06, 'wander': 5.750672212505412e-06, 'hardness': 2.4645738053594624e-06, 'clamping': 3.2860984071459497e-06, 'Merrimac': 1.6430492035729749e-06, 'sequence': 2.9574885664313547e-05, 'erection': 4.107623008932437e-06, 'Newbury': 4.107623008932437e-06, 'Newburyport': 4.929147610718925e-06, 'Salisbury': 4.929147610718925e-06, '1791': 3.2860984071459497e-06, 'petitioned': 4.107623008932437e-06, 'Merrimack': 4.107623008932437e-06, "Hon'ble": 2.4645738053594624e-06, 'Jonathan': 4.929147610718925e-06, 'Esquire': 3.2860984071459497e-06, 'Newbery': 1.6430492035729749e-06, 'Deer': 4.929147610718925e-06, 'affording': 2.4645738053594624e-06, 'Conveyance': 1.6430492035729749e-06, 'Carriages': 1.6430492035729749e-06, 'Teams': 1.6430492035729749e-06, 'Travellers': 1.6430492035729749e-06, 'Tide': 1.6430492035729749e-06, 'Subscribers': 1.6430492035729749e-06, 'Commonwealth': 4.929147610718925e-06, 'incorporating': 1.6430492035729749e-06, 'Body': 6.5721968142918994e-06, 'politic': 4.107623008932437e-06, 'Liberty': 5.750672212505412e-06, 'Malden': 1.6430492035729749e-06, 'severally': 1.6430492035729749e-06, 'Names': 1.6430492035729749e-06, 'Manners': 1.6430492035729749e-06, 'subscribing': 2.4645738053594624e-06, 'Timothy': 9.85829522143785e-06, 'patented': 3.2860984071459497e-06, 'arch': 9.036770619651361e-06, 'supervised': 4.107623008932437e-06, 'Coombs': 8.215246017864873e-06, 'recompense': 1.6430492035729749e-06, 'two-part': 1.6430492035729749e-06, 'Travels': 2.4645738053594624e-06, 'New-England': 1.6430492035729749e-06, 'New-York': 1.6430492035729749e-06, 'Haven': 5.750672212505412e-06, 'vortex': 1.6430492035729749e-06, 'high-water': 1.6430492035729749e-06, 'Pascataqua': 1.6430492035729749e-06, 'breadth': 6.5721968142918994e-06, 'thirty-four': 5.750672212505412e-06, 'house-building': 1.6430492035729749e-06, 'invention': 1.7252016637516235e-05, '1751': 1.6430492035729749e-06, 'Boxford': 1.6430492035729749e-06, 'apprenticed': 1.6430492035729749e-06, 'Spofford': 1.6430492035729749e-06, 'Portsmouth': 4.107623008932437e-06, 'Haverhill': 2.4645738053594624e-06, 'roofed': 1.6430492035729749e-06, '1810': 4.929147610718925e-06, 'engraving': 2.4645738053594624e-06, '1793': 4.929147610718925e-06, 'herewith': 2.4645738053594624e-06, '6000': 2.4645738053594624e-06, 'abutments': 1.6430492035729749e-06, '113': 3.2860984071459497e-06, 'piers': 4.929147610718925e-06, 'tavern': 2.4645738053594624e-06, 'eccentric': 9.85829522143785e-06, 'share-holders': 1.6430492035729749e-06, 'oration': 3.2860984071459497e-06, 'Ciceronian': 1.6430492035729749e-06, 'cheek': 1.7252016637516235e-05, "Dexter's": 1.6430492035729749e-06, '1882': 3.2860984071459497e-06, 'underbracing': 1.6430492035729749e-06, 'navigation': 4.929147610718925e-06, 'Templeman': 2.4645738053594624e-06, 'Finley': 2.4645738053594624e-06, 'Fayette': 4.107623008932437e-06, 'advertisement': 2.4645738053594624e-06, 'hereby': 6.5721968142918994e-06, 'Patentees': 1.6430492035729749e-06, 'Chain': 2.4645738053594624e-06, 'relates': 7.393721416078387e-06, 'Patent': 1.6430492035729749e-06, 'superintend': 1.6430492035729749e-06, 'Approved': 3.2860984071459497e-06, '1827': 2.4645738053594624e-06, 'oxen': 9.036770619651361e-06, 'drowned': 5.750672212505412e-06, 'rebuilt': 4.107623008932437e-06, '570': 1.6430492035729749e-06, 'thirty-foot': 1.6430492035729749e-06, 'roadway': 4.929147610718925e-06, '1868': 4.929147610718925e-06, 'Sturdy': 1.6430492035729749e-06, 'Tygartis': 1.6430492035729749e-06, 'Philippi': 4.929147610718925e-06, 'Lander': 1.6430492035729749e-06, 'impersonated': 1.6430492035729749e-06, 'break-neck': 1.6430492035729749e-06, 'declivity': 2.4645738053594624e-06, "Talbott's": 1.6430492035729749e-06, "Kelley's": 1.6430492035729749e-06, 'Infantry': 3.2860984071459497e-06, 'swarming': 3.2860984071459497e-06, 'retreating': 4.929147610718925e-06, 'Confederates': 1.6430492035729749e-06, "'60s": 1.6430492035729749e-06, 'armies': 1.232286902679731e-05, 'pleas': 1.6430492035729749e-06, 'Fairmont': 2.4645738053594624e-06, 'buggy': 5.750672212505412e-06, 'parcel': 1.6430492035729749e-06, 'publications': 1.232286902679731e-05, 'vies': 1.6430492035729749e-06, 'Harpers': 3.2860984071459497e-06, 'Ferry': 8.215246017864873e-06, 'Completed': 1.6430492035729749e-06, '1852': 1.6430492035729749e-06, 'Lemuel': 1.6430492035729749e-06, 'Chenoweth': 3.2860984071459497e-06, 'Eli': 2.4645738053594624e-06, 'Parkersburg': 4.107623008932437e-06, 'Staunton': 1.6430492035729749e-06, '139-foot': 1.6430492035729749e-06, 'strengtened': 1.6430492035729749e-06, 'walk-way': 1.6430492035729749e-06, 'railhead': 2.4645738053594624e-06, 'Grafton': 4.929147610718925e-06, 'inclement': 2.4645738053594624e-06, 'momentoes': 1.6430492035729749e-06, 'carving': 4.929147610718925e-06, 'tokens': 2.4645738053594624e-06, 'beams': 1.1501344425010824e-05, 'Brigadier': 2.4645738053594624e-06, 'Grumble': 1.6430492035729749e-06, 'Jones-Imboden': 1.6430492035729749e-06, 'raid': 9.036770619651361e-06, '1863': 3.2860984071459497e-06, 'burnings': 2.4645738053594624e-06, 'piling': 5.750672212505412e-06, 'combustibles': 1.6430492035729749e-06, 'Joshual': 1.6430492035729749e-06, 'Corder': 2.4645738053594624e-06, 'reasoned': 4.107623008932437e-06, 'Confederate': 1.232286902679731e-05, 'torch': 2.4645738053594624e-06, 'raiders': 1.6430492035729749e-06, 'Buckhannon': 1.6430492035729749e-06, 'Imboden': 1.6430492035729749e-06, 'Centering': 1.6430492035729749e-06, 'Barbour': 1.6430492035729749e-06, 'centennial': 3.2860984071459497e-06, 'rigorous': 6.5721968142918994e-06, 'unrewarding': 2.4645738053594624e-06, 'hydrochemistry': 1.6430492035729749e-06, 'pump-priming': 1.6430492035729749e-06, 'grounding': 2.4645738053594624e-06, 'mailed-fist-in-velvet-glove': 1.6430492035729749e-06, 'fine-feathered': 1.6430492035729749e-06, 'diluting': 3.2860984071459497e-06, 'cling': 5.750672212505412e-06, 'viewpoints': 3.2860984071459497e-06, 'dreaming': 9.85829522143785e-06, 'shimmering': 3.2860984071459497e-06, 'squashed': 1.6430492035729749e-06, 'tubes': 2.0538115044662184e-05, 'suntan': 1.6430492035729749e-06, 'semi-inflated': 1.6430492035729749e-06, 'annoying': 5.750672212505412e-06, "let's-make-your-house-our-club": 1.6430492035729749e-06, 'out-of-sight': 1.6430492035729749e-06, 'out-of-mind': 1.6430492035729749e-06, 'trek': 2.4645738053594624e-06, 'sylvan': 1.6430492035729749e-06, 'grassy': 1.6430492035729749e-06, 'mowed': 1.6430492035729749e-06, 'colder': 4.929147610718925e-06, 'climes': 1.6430492035729749e-06, 'unglamorous': 1.6430492035729749e-06, 'floe': 1.6430492035729749e-06, 'plastic-covered': 1.6430492035729749e-06, 'flora': 1.6430492035729749e-06, 'fauna': 1.6430492035729749e-06, 'wintering': 1.6430492035729749e-06, 'dictated': 4.929147610718925e-06, 'restful': 3.2860984071459497e-06, 'greensward': 1.6430492035729749e-06, 'pavement': 9.85829522143785e-06, 'pertaining': 4.929147610718925e-06, 'Coping': 1.6430492035729749e-06, 'transoceanic': 1.6430492035729749e-06, 'mud-sweat-and-tears': 1.6430492035729749e-06, 'solaced': 1.6430492035729749e-06, 'dips': 1.6430492035729749e-06, 'home-comings': 1.6430492035729749e-06, 'delectation': 1.6430492035729749e-06, 'pool-side': 2.4645738053594624e-06, 'gatherings': 6.5721968142918994e-06, 'fantasies': 4.107623008932437e-06, 'quadrupled': 1.6430492035729749e-06, 'lien': 1.6430492035729749e-06, 'sharks': 3.2860984071459497e-06, 'pool-owners': 1.6430492035729749e-06, 'handymen': 1.6430492035729749e-06, 'trunks': 4.929147610718925e-06, 'Naive': 1.6430492035729749e-06, 'impulsive': 1.6430492035729749e-06, 'unsettling': 1.6430492035729749e-06, 'etiquette': 3.2860984071459497e-06, 'ratings': 8.215246017864873e-06, 'subnormal': 1.6430492035729749e-06, 'collusion': 3.2860984071459497e-06, 'lashes': 2.4645738053594624e-06, 'coerce': 2.4645738053594624e-06, 'telephoning': 3.2860984071459497e-06, 'beforehand': 2.4645738053594624e-06, 'ringers': 1.6430492035729749e-06, 'invitees': 1.6430492035729749e-06, 'Potlatches': 1.6430492035729749e-06, 'splashing': 3.2860984071459497e-06, 'chaperoned': 1.6430492035729749e-06, 'gaggle': 1.6430492035729749e-06, 'gabbling': 1.6430492035729749e-06, 'lingo': 2.4645738053594624e-06, 'protesting': 6.5721968142918994e-06, 'dunk': 1.6430492035729749e-06, 'Sanity': 1.6430492035729749e-06, 'solvency': 1.6430492035729749e-06, 'inadvertently': 2.4645738053594624e-06, 'free-drink': 1.6430492035729749e-06, 'brutal': 6.5721968142918994e-06, 'swimmers': 2.4645738053594624e-06, 'alfresco': 2.4645738053594624e-06, 'famille': 1.6430492035729749e-06, 'usher': 2.4645738053594624e-06, 'undressing': 3.2860984071459497e-06, "swimmers'": 1.6430492035729749e-06, 'dripping': 6.5721968142918994e-06, 'bathing': 1.232286902679731e-05, 'conveniences': 2.4645738053594624e-06, 'Life-preservers': 1.6430492035729749e-06, 'buckle-on': 1.6430492035729749e-06, 'kapok-filled': 1.6430492035729749e-06, 'Preserving': 3.2860984071459497e-06, 'localities': 4.107623008932437e-06, 'fenced': 3.2860984071459497e-06, 'horseplay': 2.4645738053594624e-06, 'inexpert': 1.6430492035729749e-06, 'polo': 1.6430492035729749e-06, 'non-skid': 1.6430492035729749e-06, 'coco': 1.6430492035729749e-06, 'matting': 2.4645738053594624e-06, 'chlorine': 2.793183646074057e-05, 'rots': 3.2860984071459497e-06, 'grit-impregnated': 1.6430492035729749e-06, 'paints': 9.036770619651361e-06, 'divers': 3.2860984071459497e-06, 'enjoined': 4.929147610718925e-06, 'littlest': 1.6430492035729749e-06, 'bottles': 1.3144393628583799e-05, 'plunges': 2.4645738053594624e-06, 'lawsuits': 1.6430492035729749e-06, 'Soignee': 1.6430492035729749e-06, "pool's": 5.750672212505412e-06, 'pristine': 2.4645738053594624e-06, 'pH': 7.393721416078387e-06, 'vacuuming': 2.4645738053594624e-06, 'bi-monthly': 1.6430492035729749e-06, 'hydraulics': 1.6430492035729749e-06, 'algaecide': 1.6430492035729749e-06, 'dirt-catcher': 1.6430492035729749e-06, 'filter': 8.215246017864873e-06, 'pins': 5.750672212505412e-06, 'scrubbing': 3.2860984071459497e-06, 'furbishing': 1.6430492035729749e-06, 'grate': 3.2860984071459497e-06, '6-': 1.6430492035729749e-06, '8-inch': 2.4645738053594624e-06, 'debris': 7.393721416078387e-06, '6-inch': 2.4645738053594624e-06, 'pumping': 7.393721416078387e-06, 'scooping': 1.6430492035729749e-06, 'dramatizes': 2.4645738053594624e-06, 'insect': 1.0679819823224336e-05, 'floodlight': 1.6430492035729749e-06, 'pipes': 6.5721968142918994e-06, 'pool-care': 1.6430492035729749e-06, 'latitude': 4.929147610718925e-06, 'conditioning': 1.232286902679731e-05, 'FHA': 3.2860984071459497e-06, 'inclusion': 3.2860984071459497e-06, 'prefabricated': 2.4645738053594624e-06, 'glass-fiber': 2.4645738053594624e-06, 'ducts': 5.750672212505412e-06, 'add-on': 1.6430492035729749e-06, '1800-square-foot': 1.6430492035729749e-06, 'installation': 1.0679819823224336e-05, 'upkeep': 5.750672212505412e-06, 'concurs': 3.2860984071459497e-06, 'offset': 8.215246017864873e-06, 'worth-while': 1.6430492035729749e-06, 'overcooled': 1.6430492035729749e-06, 'thermal': 2.6288787257167598e-05, '15-degree': 1.6430492035729749e-06, 'harmed': 2.4645738053594624e-06, 'colds': 2.4645738053594624e-06, 'filtered': 5.750672212505412e-06, 'allergies': 1.6430492035729749e-06, 'asthma': 1.6430492035729749e-06, 'sinus': 1.6430492035729749e-06, 'godsend': 2.4645738053594624e-06, 'Heart': 3.2860984071459497e-06, 'Housekeeping': 2.4645738053594624e-06, 'reupholstering': 1.6430492035729749e-06, 'redecorating': 3.2860984071459497e-06, 'repainting': 2.4645738053594624e-06, 'Clothes': 2.4645738053594624e-06, 'mildew': 1.6430492035729749e-06, 'fatigued': 3.2860984071459497e-06, 'naps': 2.4645738053594624e-06, 'shade-darkened': 1.6430492035729749e-06, 'awake': 1.6430492035729746e-05, 'refreshed': 4.929147610718925e-06, 'screens': 9.036770619651361e-06, 'long-lived': 1.6430492035729749e-06, 'conditioner': 1.1501344425010824e-05, 'per-year': 1.6430492035729749e-06, 'economical': 1.889506584108921e-05, 'whole-house': 1.6430492035729749e-06, 'ductwork': 1.6430492035729749e-06, 'filters': 4.107623008932437e-06, 'furnace': 9.85829522143785e-06, 'blower': 4.107623008932437e-06, 'conditioners': 4.929147610718925e-06, 'counterflow': 1.6430492035729749e-06, 'basement': 2.546726265538111e-05, 'crawlspace': 1.6430492035729749e-06, 'closet': 1.3965918230370285e-05, "furnace's": 1.6430492035729749e-06, 'garage': 1.8073541239302723e-05, 'insulation': 9.036770619651361e-06, 'inaccessible': 1.6430492035729749e-06, 'mild-winter': 1.6430492035729749e-06, 'perimeter': 1.6430492035729749e-06, 'diffusers': 1.6430492035729749e-06, 'circulated': 4.107623008932437e-06, 'radiators': 2.4645738053594624e-06, 'cooling-heating': 1.6430492035729749e-06, 'thermostat': 5.750672212505412e-06, '7-room': 1.6430492035729749e-06, '$1500': 1.6430492035729749e-06, 'Separate': 3.2860984071459497e-06, 'knotty': 2.4645738053594624e-06, 'oversize': 2.4645738053594624e-06, 'prefab': 1.6430492035729749e-06, 'dehumidified': 1.6430492035729749e-06, 'rambling': 2.4645738053594624e-06, 'releasing': 2.4645738053594624e-06, 'extracted': 8.215246017864873e-06, 'winters': 2.4645738053594624e-06, 'negligible': 9.036770619651361e-06, 'quits': 1.6430492035729749e-06, 'makeup': 1.6430492035729749e-06, 'Families': 4.107623008932437e-06, 'thrower': 2.4645738053594624e-06, 'Cooling': 2.4645738053594624e-06, 'BTU': 5.750672212505412e-06, "BTU's": 1.6430492035729749e-06, 'Coolers': 1.6430492035729749e-06, '1-ton': 1.6430492035729749e-06, 'compressor': 2.4645738053594624e-06, '1-hp': 1.6430492035729749e-06, 'safest': 4.107623008932437e-06, 'undersized': 1.6430492035729749e-06, 'Reducing': 1.6430492035729749e-06, 'Money-saving': 1.6430492035729749e-06, 'Attention': 2.4645738053594624e-06, 'pare': 2.4645738053594624e-06, 'well-designed': 2.4645738053594624e-06, '1200-square-foot': 1.6430492035729749e-06, 'comfortably': 9.85829522143785e-06, '$128': 1.6430492035729749e-06, '$11': 2.4645738053594624e-06, 'penetrate': 6.5721968142918994e-06, 'overhangs': 2.4645738053594624e-06, 'trellises': 1.6430492035729749e-06, 'Shade': 1.6430492035729749e-06, 'Drawn': 2.4645738053594624e-06, 'blinds': 3.2860984071459497e-06, 'draperies': 4.107623008932437e-06, 'obliquely': 1.6430492035729749e-06, 'heat-absorbing': 1.6430492035729749e-06, 'insulated': 4.107623008932437e-06, 'condensation': 5.750672212505412e-06, 'Restrict': 1.6430492035729749e-06, 'Insulate': 1.6430492035729749e-06, 'weatherstrip': 1.6430492035729749e-06, 'double-glaze': 1.6430492035729749e-06, '6-4-2': 1.6430492035729749e-06, 'extra-thick': 1.6430492035729749e-06, 'light-colored': 2.4645738053594624e-06, 'droves': 1.6430492035729749e-06, 'ventilator': 1.6430492035729749e-06, 'drier': 3.2860984071459497e-06, 'Keeping': 3.2860984071459497e-06, 'pretending': 1.0679819823224336e-05, 'Avoid': 2.4645738053594624e-06, 'pre-planning': 1.6430492035729749e-06, 'Begin': 2.4645738053594624e-06, 'topographic': 1.6430492035729749e-06, 'orienting': 3.2860984071459497e-06, 'Geological': 5.750672212505412e-06, "assessor's": 1.6430492035729749e-06, 'ownerships': 3.2860984071459497e-06, 'Inspect': 1.6430492035729749e-06, 'etcetera': 8.215246017864873e-06, 'investigator': 4.107623008932437e-06, 'desolate': 5.750672212505412e-06, 'potentials': 4.107623008932437e-06, 'Quality': 2.4645738053594624e-06, 'Frontage': 1.6430492035729749e-06, 'vastly': 8.215246017864873e-06, 'frontage': 5.750672212505412e-06, 'polluted': 1.6430492035729749e-06, 'overall': 1.0679819823224336e-05, 'overlooks': 4.107623008932437e-06, 'surf': 1.6430492035729749e-06, 'shrubs': 4.107623008932437e-06, 'cools': 2.4645738053594624e-06, 'nourishes': 1.6430492035729749e-06, 'watershed': 3.2860984071459497e-06, 'unrestricted': 3.2860984071459497e-06, 'waterfalls': 1.6430492035729749e-06, 'stocking': 1.6430492035729749e-06, 'Animals': 6.5721968142918994e-06, 'flyways': 1.6430492035729749e-06, 'migratory': 3.2860984071459497e-06, 'Clams': 1.6430492035729749e-06, 'coastal': 3.2860984071459497e-06, 'crust': 1.6430492035729749e-06, 'geological': 2.4645738053594624e-06, 'agates': 1.6430492035729749e-06, 'semi-precious': 1.6430492035729749e-06, 'stones': 1.0679819823224336e-05, 'archeological': 1.6430492035729749e-06, 'caves': 4.929147610718925e-06, 'artifacts': 1.6430492035729749e-06, 'Areas': 1.6430492035729749e-06, 'encroachment': 4.929147610718925e-06, 'Acreage': 1.6430492035729749e-06, 'Shape': 2.4645738053594624e-06, "fisherman's": 2.4645738053594624e-06, 'Adjoining': 1.6430492035729749e-06, 'Topography': 3.2860984071459497e-06, 'elevation': 3.2860984071459497e-06, 'slopes': 6.5721968142918994e-06, 'outcrops': 1.6430492035729749e-06, 'topsoil': 1.6430492035729749e-06, 'subsoil': 1.6430492035729749e-06, 'ballfields': 1.6430492035729749e-06, 'Determine': 1.3144393628583799e-05, 'topography': 3.2860984071459497e-06, 'grading': 1.6430492035729749e-06, 'irrigation': 3.2860984071459497e-06, 'Plants': 1.6430492035729749e-06, 'checking': 4.929147610718925e-06, 'clean-up': 1.6430492035729749e-06, 'landscaping': 1.6430492035729749e-06, 'Lack': 1.6430492035729749e-06, 'useable': 1.6430492035729749e-06, 'Improvements': 1.6430492035729749e-06, 'Serge': 4.107623008932437e-06, '70th': 1.6430492035729749e-06, 'Sovietskaya': 1.6430492035729749e-06, 'Muzyka': 1.6430492035729749e-06, 'personifies': 3.2860984071459497e-06, 'Republics': 4.107623008932437e-06, 'mercurial': 1.6430492035729749e-06, 'pranks': 1.6430492035729749e-06, 'bonheur': 1.6430492035729749e-06, 'social-economic': 3.2860984071459497e-06, 'monde': 1.6430492035729749e-06, 'post-World': 3.2860984071459497e-06, "Prokofieff's": 5.750672212505412e-06, 'composer-pianist-conductor': 1.6430492035729749e-06, 'well-trained': 2.4645738053594624e-06, 'twenties': 5.750672212505412e-06, 'Traditionalists': 1.6430492035729749e-06, 'modernism': 2.4645738053594624e-06, 'Neo-Classicists': 1.6430492035729749e-06, 'tongue-in-cheek': 2.4645738053594624e-06, '18th-Century': 1.6430492035729749e-06, 'ascending': 4.107623008932437e-06, 'Koussevitzky': 3.2860984071459497e-06, 'skeptical': 6.5721968142918994e-06, 'skeptics': 2.4645738053594624e-06, 'Bloch': 2.4645738053594624e-06, 'foyer': 3.2860984071459497e-06, 'high-pitched': 6.5721968142918994e-06, 'mais': 1.6430492035729749e-06, 'mon': 1.6430492035729749e-06, 'Dieu': 1.6430492035729749e-06, 'life-long': 2.4645738053594624e-06, 'unreservedly': 1.6430492035729749e-06, 'broadcastings': 2.4645738053594624e-06, 'Oranges': 3.2860984071459497e-06, 'opulent': 1.6430492035729749e-06, 'extravaganzas': 1.6430492035729749e-06, 'symphonies': 3.2860984071459497e-06, 'gavottes': 1.6430492035729749e-06, 'Twentieth-Century': 1.6430492035729749e-06, 'Composers': 1.6430492035729749e-06, 'aristocracy': 4.107623008932437e-06, 'migrated': 2.4645738053594624e-06, 'Diaghileff': 1.6430492035729749e-06, 'laissez-faire': 4.929147610718925e-06, 'Dadaism': 1.6430492035729749e-06, 'ultramodern': 1.6430492035729749e-06, 'sympathique': 1.6430492035729749e-06, 'enthusiasms': 1.6430492035729749e-06, 'motherland': 1.6430492035729749e-06, 'salons': 3.2860984071459497e-06, 'mistress': 4.929147610718925e-06, 'gaiety': 7.393721416078387e-06, 'new-found': 3.2860984071459497e-06, 'coagulating': 1.6430492035729749e-06, 'crystallizing': 2.4645738053594624e-06, 'conscription': 2.4645738053594624e-06, 'Fascism': 3.2860984071459497e-06, 'outraged': 5.750672212505412e-06, 'freedom-loving': 1.6430492035729749e-06, 'Capitalist': 1.6430492035729749e-06, 'Fascist': 2.4645738053594624e-06, 'cringing': 3.2860984071459497e-06, 'submission': 4.107623008932437e-06, 'beset': 6.5721968142918994e-06, 'treaties': 4.107623008932437e-06, 'disciplines': 4.107623008932437e-06, 'truculent': 1.6430492035729749e-06, 'workman': 1.6430492035729749e-06, 'Socialism': 3.2860984071459497e-06, 'epoch': 5.750672212505412e-06, 'fluent': 4.929147610718925e-06, 'environment': 3.6147082478605446e-05, 'striven': 1.6430492035729749e-06, 'compose': 5.750672212505412e-06, 'defection': 2.4645738053594624e-06, 'traditionalism': 2.4645738053594624e-06, 'Credo': 1.6430492035729749e-06, 'torrents': 2.4645738053594624e-06, 'tenderness': 4.107623008932437e-06, 'profile': 5.750672212505412e-06, "craftsman's": 1.6430492035729749e-06, 'forsakes': 1.6430492035729749e-06, 'instrumentation': 4.107623008932437e-06, 'Slavic': 2.4645738053594624e-06, 'adroit': 1.6430492035729749e-06, 'polytonal': 1.6430492035729749e-06, 'harmonic': 2.4645738053594624e-06, 'modulations': 1.6430492035729749e-06, 'orchestrations': 2.4645738053594624e-06, 'adroitness': 1.6430492035729749e-06, 'evading': 1.6430492035729749e-06, 'heaviness': 2.4645738053594624e-06, 'florid': 2.4645738053594624e-06, 'novelty': 4.929147610718925e-06, 'experimentalism': 1.6430492035729749e-06, 'Traditionalist': 1.6430492035729749e-06, 'dialectics': 2.4645738053594624e-06, 'experimentations': 1.6430492035729749e-06, 'fellow-countryman': 1.6430492035729749e-06, 'fecundity': 1.6430492035729749e-06, 'fruitfulness': 1.6430492035729749e-06, 'forged': 3.2860984071459497e-06, 'refashion': 1.6430492035729749e-06, 'disparate': 4.107623008932437e-06, 'compass': 1.1501344425010824e-05, 'swayed': 8.215246017864873e-06, 'miscalculations': 1.6430492035729749e-06, 'blunder': 2.4645738053594624e-06, 'presuming': 2.4645738053594624e-06, 'transform': 6.5721968142918994e-06, "composers'": 1.6430492035729749e-06, 'inspirations': 1.6430492035729749e-06, 'homogeneity': 4.929147610718925e-06, 'Nationalistic': 1.6430492035729749e-06, 'Petruchka': 1.6430492035729749e-06, 'Sacre': 1.6430492035729749e-06, 'Printemps': 1.6430492035729749e-06, 'Les': 2.4645738053594624e-06, 'Noces': 1.6430492035729749e-06, 'recapture': 3.2860984071459497e-06, 'predisposed': 1.6430492035729749e-06, "Stravinsky's": 1.6430492035729749e-06, 'admirers': 2.4645738053594624e-06, 'terra': 1.6430492035729749e-06, 'firma': 1.6430492035729749e-06, 'postulates': 1.6430492035729749e-06, 'Supra-Expressionism': 1.6430492035729749e-06, 'Neo-Paganism': 1.6430492035729749e-06, 'Neo-Classicism': 1.6430492035729749e-06, 'Neo-Romanticism': 1.6430492035729749e-06, 'Neo-Jazz': 1.6430492035729749e-06, 'Neo-Ecclesiasticism': 1.6430492035729749e-06, 'Neo-Popularism': 1.6430492035729749e-06, 'Post-Serialism': 1.6430492035729749e-06, 'patchwork': 2.4645738053594624e-06, 'proclamations': 3.2860984071459497e-06, 'renunciations': 1.6430492035729749e-06, 'Meager': 1.6430492035729749e-06, 'shabby': 4.929147610718925e-06, 'by-products': 2.4645738053594624e-06, 'protagonist': 2.4645738053594624e-06, 'maladroit': 1.6430492035729749e-06, 'reharmonization': 1.6430492035729749e-06, 'Anthem': 1.6430492035729749e-06, 'Star-Spangled': 1.6430492035729749e-06, 'idiomatic': 1.6430492035729749e-06, 'polka': 1.6430492035729749e-06, 'eighty': 9.036770619651361e-06, 'flitting': 1.6430492035729749e-06, 'unfolded': 4.107623008932437e-06, 'swiftly': 1.232286902679731e-05, 'circumspect': 3.2860984071459497e-06, '20th-Century': 2.4645738053594624e-06, 'wove': 3.2860984071459497e-06, 'folklore': 1.97165904428757e-05, 'fairy': 2.4645738053594624e-06, 'fermentations': 1.6430492035729749e-06, 'moods': 6.5721968142918994e-06, 'practising': 1.6430492035729749e-06, 'rigors': 4.107623008932437e-06, 'Traditionalism': 1.6430492035729749e-06, 'Musicians': 2.4645738053594624e-06, 'kinship': 3.2860984071459497e-06, 'watercolorists': 2.4645738053594624e-06, 'Sell': 1.6430492035729749e-06, 'Cotman': 1.6430492035729749e-06, 'effortless': 1.6430492035729749e-06, 'distillation': 3.2860984071459497e-06, 'extracting': 4.107623008932437e-06, 'engraver': 1.6430492035729749e-06, 'expeditions': 5.750672212505412e-06, 'imparted': 4.107623008932437e-06, 'backdrop': 2.4645738053594624e-06, 'commends': 1.6430492035729749e-06, 'discerning': 2.4645738053594624e-06, 'engraved': 4.107623008932437e-06, 'Nina': 1.6430492035729749e-06, 'Batavia': 3.2860984071459497e-06, 'Max': 1.0679819823224336e-05, 'independently': 1.0679819823224336e-05, 'Chauncey': 2.4645738053594624e-06, 'Ryder': 1.6430492035729749e-06, 'watercolor': 8.215246017864873e-06, 'imitative': 1.6430492035729749e-06, 'recognizable': 6.5721968142918994e-06, 'washes': 4.929147610718925e-06, 'stylemark': 1.6430492035729749e-06, 'flicks': 1.6430492035729749e-06, 'rigger': 1.6430492035729749e-06, 'duplicable': 1.6430492035729749e-06, 'lightest': 2.4645738053594624e-06, 'darkest': 2.4645738053594624e-06, 'watercolors': 3.2860984071459497e-06, 'composing': 3.2860984071459497e-06, 'finer': 2.4645738053594624e-06, 'clicking': 1.6430492035729749e-06, 'imparts': 1.6430492035729749e-06, 'spontaneity': 5.750672212505412e-06, 'crispness': 2.4645738053594624e-06, 'reorder': 1.6430492035729749e-06, 'linear': 1.8073541239302723e-05, 'freehand': 3.2860984071459497e-06, 'thoughtfully': 1.232286902679731e-05, 'accenting': 1.6430492035729749e-06, 'Trial': 1.3965918230370285e-05, 'easel': 4.929147610718925e-06, 'umbrella': 7.393721416078387e-06, 'tilt-top': 1.6430492035729749e-06, 'unfixed': 1.6430492035729749e-06, 'heavy-weight': 1.6430492035729749e-06, 'hand-made': 1.6430492035729749e-06, '400-pound': 1.6430492035729749e-06, 'inspecting': 2.4645738053594624e-06, 'flaws': 1.6430492035729749e-06, 'nubbins': 1.6430492035729749e-06, 'cleansing': 4.107623008932437e-06, 'tissue': 3.450403327503247e-05, 'mop': 3.2860984071459497e-06, 'soften': 4.107623008932437e-06, 'absorbency': 1.6430492035729749e-06, 'watercolorist': 2.4645738053594624e-06, 'hand-blower': 1.6430492035729749e-06, 'sable': 2.4645738053594624e-06, 'bristle': 3.2860984071459497e-06, 'sables': 1.6430492035729749e-06, 'riggers': 1.6430492035729749e-06, 'Fitch': 1.6430492035729749e-06, 'shaved': 8.215246017864873e-06, 'alizarin': 1.6430492035729749e-06, 'sienna': 2.4645738053594624e-06, 'umber': 4.107623008932437e-06, 'burnt': 4.929147610718925e-06, 'sepia': 1.6430492035729749e-06, 'cerulean': 1.6430492035729749e-06, 'ultramarine': 1.6430492035729749e-06, 'Winsor': 2.4645738053594624e-06, "Hooker's": 1.6430492035729749e-06, 'cadmium': 2.4645738053594624e-06, 'ochre': 2.4645738053594624e-06, "Payne's": 3.2860984071459497e-06, "Davy's": 1.6430492035729749e-06, 'decorativeness': 1.6430492035729749e-06, 'connotation': 4.929147610718925e-06, 'elaboration': 2.4645738053594624e-06, 'synthesis': 1.3965918230370285e-05, 'inventory': 1.7252016637516235e-05, 'foreground': 2.4645738053594624e-06, 'silhouetted': 3.2860984071459497e-06, 'foiled': 1.6430492035729749e-06, 'progression': 2.4645738053594624e-06, "Mason's": 1.6430492035729749e-06, 'half-closed': 3.2860984071459497e-06, 'universalize': 1.6430492035729749e-06, 'niche': 3.2860984071459497e-06, 'vicarious': 2.4645738053594624e-06, 'interpretor': 1.6430492035729749e-06, 'Gilbert': 3.2860984071459497e-06, 'zodiacal': 2.4645738053594624e-06, 'Pisces': 1.6430492035729749e-06, 'natal': 2.4645738053594624e-06, 'medals': 4.107623008932437e-06, 'Ranger': 2.4645738053594624e-06, 'Pennell': 1.6430492035729749e-06, 'Medal': 4.107623008932437e-06, 'Watercolor': 3.2860984071459497e-06, 'Blair': 1.6430492035729749e-06, 'Purchase': 4.107623008932437e-06, 'Chautauqua': 1.6430492035729749e-06, 'Rockport': 2.4645738053594624e-06, 'Associate': 4.107623008932437e-06, '1931': 7.393721416078387e-06, 'Academicianship': 1.6430492035729749e-06, 'memberships': 2.4645738053594624e-06, 'Artists': 1.0679819823224336e-05, 'gymnasts': 4.107623008932437e-06, 'tar': 2.4645738053594624e-06, 'Olympics': 2.4645738053594624e-06, 'athletes': 4.929147610718925e-06, 'gymnastics': 9.85829522143785e-06, 'tumbling': 3.2860984071459497e-06, 'somersault': 2.4645738053594624e-06, 'stunts': 2.4645738053594624e-06, 'headstands': 1.6430492035729749e-06, 'handstands': 1.6430492035729749e-06, 'cartwheels': 2.4645738053594624e-06, 'backbends': 1.6430492035729749e-06, 'flips': 1.6430492035729749e-06, 'gyms': 2.4645738053594624e-06, 'mats': 2.4645738053594624e-06, 'volleyball': 1.6430492035729749e-06, 'gymnast': 1.6430492035729749e-06, 'persistence': 8.215246017864873e-06, 'gymnastic': 4.107623008932437e-06, 'newborn': 5.750672212505412e-06, 'infants': 3.2860984071459497e-06, 'fitness': 7.393721416078387e-06, 'anxiety': 3.286098407145949e-05, 'clumsy': 5.750672212505412e-06, 'sustains': 1.6430492035729749e-06, 'Eighty': 1.6430492035729749e-06, 'Well-stretched': 1.6430492035729749e-06, "wive's": 1.6430492035729749e-06, 'bulging': 3.2860984071459497e-06, 'demonstrators': 1.6430492035729749e-06, 'headstand': 1.6430492035729749e-06, 'abdominal': 4.107623008932437e-06, 'ballerinas': 1.6430492035729749e-06, 'chin-ups': 1.6430492035729749e-06, 'dashes': 2.4645738053594624e-06, 'chinning': 2.4645738053594624e-06, 'chin-up': 2.4645738053594624e-06, 'climb': 9.85829522143785e-06, 'Arm': 3.2860984071459497e-06, 'Horse': 6.5721968142918994e-06, 'fours': 1.6430492035729749e-06, 'Push-ups': 2.4645738053594624e-06, 'Push': 1.6430492035729749e-06, 'Handstands': 2.4645738053594624e-06, 'kick-up': 1.6430492035729749e-06, 'Drop': 2.4645738053594624e-06, 'Bare': 1.6430492035729749e-06, 'Backbends': 1.6430492035729749e-06, 'backbend': 1.6430492035729749e-06, 'acrobatics': 1.6430492035729749e-06, 'supine': 1.6430492035729749e-06, 'palms': 7.393721416078387e-06, 'Arch': 3.2860984071459497e-06, 'handstand': 1.6430492035729749e-06, 'walkover': 1.6430492035729749e-06, 'Straighten': 1.6430492035729749e-06, 'Improvement': 3.2860984071459497e-06, 'lessening': 6.5721968142918994e-06, 'Somersaults': 1.6430492035729749e-06, 'copying': 1.6430492035729749e-06, 'pelvis': 1.6430492035729749e-06, 'beginnings': 8.215246017864873e-06, 'tumbler': 2.4645738053594624e-06, 'electronics': 2.3824213451808133e-05, 'evenutally': 1.6430492035729749e-06, 'betterment': 3.2860984071459497e-06, 'staggering': 5.750672212505412e-06, 'bio-medicine': 2.4645738053594624e-06, 'Electronics': 4.107623008932437e-06, 'x-ray': 5.750672212505412e-06, 'electrocardiograph': 2.4645738053594624e-06, 'diathermy': 1.6430492035729749e-06, 'ultrasonic': 7.393721416078387e-06, 'contusions': 1.6430492035729749e-06, 'bursitis': 1.6430492035729749e-06, 'Commonly': 1.6430492035729749e-06, 'closed-circuit': 1.6430492035729749e-06, 'audio': 2.4645738053594624e-06, 'paging': 1.6430492035729749e-06, 'timers': 1.6430492035729749e-06, 'bio-medical': 1.6430492035729749e-06, 'laboratories': 4.929147610718925e-06, 'originates': 2.4645738053594624e-06, 'Ultraviolet': 1.6430492035729749e-06, 'microscopy': 4.107623008932437e-06, 'bacteria': 7.393721416078387e-06, 'microorganisms': 9.85829522143785e-06, 'stained': 2.218116424823516e-05, 'microscopic': 4.929147610718925e-06, 'disrupts': 1.6430492035729749e-06, 'replaces': 5.750672212505412e-06, 'ultraviolet': 1.1501344425010824e-05, 'microscope': 7.393721416078387e-06, 'color-TV': 2.4645738053594624e-06, 'Aterman': 1.6430492035729749e-06, 'biophysicist': 1.6430492035729749e-06, 'Berkely': 2.4645738053594624e-06, 'Zworykin': 2.4645738053594624e-06, 'mercury': 6.5721968142918994e-06, 'xenon': 1.6430492035729749e-06, "observer's": 1.6430492035729749e-06, 'orthicon': 2.4645738053594624e-06, 'quartz': 1.6430492035729749e-06, 'amplified': 5.750672212505412e-06, 'synchronism': 1.6430492035729749e-06, 'sequenced': 1.6430492035729749e-06, 'one-twentieth': 2.4645738053594624e-06, 'wavelength': 4.107623008932437e-06, 'leakage': 1.6430492035729749e-06, 'commutator-like': 1.6430492035729749e-06, 'rotated': 5.750672212505412e-06, 'synchronous': 2.4645738053594624e-06, '20-cps': 1.6430492035729749e-06, 'circuitry': 1.6430492035729749e-06, 'field-sequential': 1.6430492035729749e-06, 'amplifiers': 1.6430492035729749e-06, 'tricolor': 1.6430492035729749e-06, 'illumination': 8.215246017864873e-06, 'advancing': 4.107623008932437e-06, 'perfecting': 3.2860984071459497e-06, 'Breathing': 1.6430492035729749e-06, 'electronically': 1.6430492035729749e-06, 'Lobar': 1.6430492035729749e-06, 'Ventilation': 3.2860984071459497e-06, 'respiratory': 1.3965918230370285e-05, 'Respiratory': 1.6430492035729749e-06, 'Analyzer': 1.6430492035729749e-06, 'affectionately': 3.2860984071459497e-06, 'Monster': 1.6430492035729749e-06, "patient's": 1.8073541239302723e-05, '8-channel': 1.6430492035729749e-06, 'carbon': 2.3824213451808133e-05, 'dioxide': 2.4645738053594624e-06, 'nitrogen': 9.036770619651361e-06, 'lung': 1.3144393628583799e-05, 'inhalation': 1.6430492035729749e-06, 'mouthpiece': 6.5721968142918994e-06, 'treadmill': 1.6430492035729749e-06, 'medically': 2.4645738053594624e-06, 'hitherto': 3.2860984071459497e-06, 'Heart-measuring': 1.6430492035729749e-06, 'heartbeat': 4.107623008932437e-06, 'aorta': 3.2860984071459497e-06, 'dimensioning': 3.2860984071459497e-06, 'undisturbed': 3.2860984071459497e-06, 'outlines': 5.750672212505412e-06, 'pen': 1.3965918230370285e-05, 'Sonar': 2.4645738053594624e-06, 'transducers': 2.4645738053594624e-06, 'pulsed': 1.6430492035729749e-06, 'meters': 9.85829522143785e-06, 'Msec.': 1.6430492035729749e-06, 'traverse': 2.4645738053594624e-06, 'sonar': 4.929147610718925e-06, 'radar-type': 1.6430492035729749e-06, 'generator': 1.232286902679731e-05, 'time-delay': 1.6430492035729749e-06, 'body-tissue': 1.6430492035729749e-06, 'evaluation': 2.464573805359462e-05, 'spleen': 2.4645738053594624e-06, 'Doppler': 1.6430492035729749e-06, 'catheter': 2.4645738053594624e-06, 'thermistor': 1.6430492035729749e-06, 'transducer': 9.036770619651361e-06, "heart's": 1.6430492035729749e-06, 'ventricle': 3.2860984071459497e-06, 'Outputs': 1.6430492035729749e-06, 'pulse-timing': 1.6430492035729749e-06, 'analogue': 1.6430492035729749e-06, 'computer': 1.1501344425010824e-05, 'multichannel': 1.6430492035729749e-06, 'Radio-transmitter': 1.6430492035729749e-06, 'receivers': 4.929147610718925e-06, 'transistor': 1.6430492035729749e-06, 'oscillator': 1.6430492035729749e-06, 'cm.': 1.0679819823224336e-05, 'Battery': 3.2860984071459497e-06, 'Farrar': 1.6430492035729749e-06, 'resonant': 4.107623008932437e-06, 'capacitor': 2.4645738053594624e-06, 'pressure-sensing': 1.6430492035729749e-06, 'antenna': 1.1501344425010824e-05, '3000': 1.6430492035729749e-06, '400-kc.': 1.6430492035729749e-06, 'bursts': 1.6430492035729749e-06, 'detected': 1.0679819823224336e-05, 'receiver': 1.1501344425010824e-05, 'transmitted': 7.393721416078387e-06, 'calibrated': 3.2860984071459497e-06, 'Applications': 1.6430492035729749e-06, 'gastrointestinal': 2.4645738053594624e-06, 'gratifying': 3.2860984071459497e-06, 'detection': 1.1501344425010824e-05, 'exploration': 1.889506584108921e-05, 'submerged': 6.5721968142918994e-06, 'pulsing': 2.4645738053594624e-06, 'scanning': 4.107623008932437e-06, 'Bones': 1.6430492035729749e-06, 'cartilage': 2.4645738053594624e-06, 'Based': 3.2860984071459497e-06, 'Baum': 2.4645738053594624e-06, 'diagnose': 3.2860984071459497e-06, 'retina': 1.6430492035729749e-06, 'glaucoma': 1.6430492035729749e-06, 'ultrasonically': 1.6430492035729749e-06, 'indicator': 7.393721416078387e-06, 'sonogram': 1.6430492035729749e-06, 'anatomical': 8.215246017864873e-06, 'mc.': 1.6430492035729749e-06, 'specially': 8.215246017864873e-06, 'epoxy': 2.4645738053594624e-06, 'lens': 1.0679819823224336e-05, 'diameters': 4.107623008932437e-06, 'millimeter': 3.2860984071459497e-06, '90-degree': 2.4645738053594624e-06, 'integrates': 2.4645738053594624e-06, 'scans': 2.4645738053594624e-06, 'Howry': 1.6430492035729749e-06, 'submerging': 1.6430492035729749e-06, 'tub': 1.1501344425010824e-05, 'Arteries': 1.6430492035729749e-06, 'veins': 5.750672212505412e-06, 'blood-filled': 1.6430492035729749e-06, "Oersted's": 6.5721968142918994e-06, 'boyhood': 4.929147610718925e-06, 'Rudkoebing': 1.6430492035729749e-06, 'Langeland': 1.6430492035729749e-06, 'south-central': 1.6430492035729749e-06, 'Denmark': 4.107623008932437e-06, '1777': 1.6430492035729749e-06, 'Soeren': 1.6430492035729749e-06, 'apothecary': 3.2860984071459497e-06, 'educate': 5.750672212505412e-06, 'Anders': 2.4645738053594624e-06, 'wigmaker': 2.4645738053594624e-06, 'Oldenburg': 1.6430492035729749e-06, "Oldenburg's": 1.6430492035729749e-06, 'surveyor': 4.929147610718925e-06, 'borrow': 8.215246017864873e-06, 'stimulate': 5.750672212505412e-06, 'Copenhagen': 5.750672212505412e-06, '1479': 1.6430492035729749e-06, 'matriculate': 2.4645738053594624e-06, 'lodging': 4.929147610718925e-06, 'dormitory': 2.4645738053594624e-06, 'supplemented': 5.750672212505412e-06, 'revel': 3.2860984071459497e-06, 'onward-driving': 1.6430492035729749e-06, 'banished': 6.5721968142918994e-06, 'lecturing': 3.2860984071459497e-06, '1797': 3.2860984071459497e-06, 'essay': 1.6430492035729746e-05, 'Limits': 1.6430492035729749e-06, 'Poetry': 5.750672212505412e-06, 'Prose': 1.6430492035729749e-06, 'pharmacy': 2.4645738053594624e-06, '1799': 1.6430492035729749e-06, 'alkalis': 2.4645738053594624e-06, 'Ferment': 1.6430492035729749e-06, "Hans'": 1.6430492035729749e-06, 'ferment': 1.6430492035729749e-06, 'divisive': 4.929147610718925e-06, 'Oersted': 1.1501344425010824e-05, "Volta's": 1.6430492035729749e-06, 'voltaic': 6.5721968142918994e-06, 'Wanderjahr': 1.6430492035729749e-06, 'Schelling': 2.4645738053594624e-06, 'Fichte': 1.6430492035729749e-06, 'Tieck': 1.6430492035729749e-06, 'Woburn': 1.6430492035729749e-06, 'Elector': 2.4645738053594624e-06, 'Bavaria': 3.2860984071459497e-06, 'Ritter': 8.215246017864873e-06, 'Gottingen': 1.6430492035729749e-06, '1801': 4.107623008932437e-06, 'galvanism': 1.6430492035729749e-06, 'Jena': 1.6430492035729749e-06, 'stormed': 3.2860984071459497e-06, "host's": 4.929147610718925e-06, 'fertile': 4.929147610718925e-06, 'disorganized': 4.929147610718925e-06, 'remodeled': 1.6430492035729749e-06, "Ritter's": 1.6430492035729749e-06, 'Institut': 1.6430492035729749e-06, 'francs': 3.2860984071459497e-06, 'discoveries': 8.215246017864873e-06, 'quixotic': 2.4645738053594624e-06, 'fantasy': 1.0679819823224336e-05, '1803': 3.2860984071459497e-06, 'celestial': 7.393721416078387e-06, 'ecliptic': 3.2860984071459497e-06, '1745': 1.6430492035729749e-06, 'corresponded': 4.107623008932437e-06, 'Leiden': 1.6430492035729749e-06, 'Kleist': 1.6430492035729749e-06, '1764': 1.6430492035729749e-06, 'electrophorus': 1.6430492035729749e-06, 'Wilcke': 1.6430492035729749e-06, '1782': 2.4645738053594624e-06, 'condenser': 1.6430492035729749e-06, 'Volta': 1.6430492035729749e-06, '1819': 6.5721968142918994e-06, '1820': 3.2860984071459497e-06, 'reckon': 4.929147610718925e-06, '1806': 1.6430492035729749e-06, 'professorship': 1.6430492035729749e-06, 'ordinarius': 1.6430492035729749e-06, '1817': 4.107623008932437e-06, 'Manthey': 3.2860984071459497e-06, '1769-1842': 1.6430492035729749e-06, 'Lion': 3.2860984071459497e-06, 'Pharmacy': 3.2860984071459497e-06, '1800': 2.4645738053594624e-06, 'Davy': 2.4645738053594624e-06, 'salts': 5.750672212505412e-06, 'Eager': 1.6430492035729749e-06, 'pursue': 1.7252016637516235e-05, 'pharmaceutical': 2.4645738053594624e-06, 'faculties': 4.929147610718925e-06, 'thoroughness': 1.6430492035729749e-06, '1812': 4.107623008932437e-06, '1813': 2.4645738053594624e-06, 'Recherches': 1.6430492035729749e-06, 'Sur': 2.4645738053594624e-06, "l'identite": 1.6430492035729749e-06, 'chimiques': 1.6430492035729749e-06, 'electriques': 1.6430492035729749e-06, 'esteem': 4.929147610718925e-06, 'chemists': 4.107623008932437e-06, 'magnetism': 6.5721968142918994e-06, 'Magnetism': 1.6430492035729749e-06, 'repulsions': 2.4645738053594624e-06, 'similarity': 8.215246017864873e-06, 'galvanic': 2.4645738053594624e-06, 'analogies': 4.107623008932437e-06, 'Bruckmann': 1.6430492035729749e-06, 'Coulomb': 1.6430492035729749e-06, 'magnet': 3.2860984071459497e-06, '1814': 2.4645738053594624e-06, 'detonating': 1.6430492035729749e-06, 'fuse': 4.929147610718925e-06, 'Bornholm': 1.6430492035729749e-06, 'Lauritz': 1.6430492035729749e-06, 'Esmarch': 2.4645738053594624e-06, 'vapor': 9.85829522143785e-06, 'trough': 3.2860984071459497e-06, 'electromagnetism': 1.6430492035729749e-06, 'electrostatic': 7.393721416078387e-06, 'Electrical': 6.5721968142918994e-06, 'magnetized': 2.4645738053594624e-06, 'polarity': 4.929147610718925e-06, "1700's": 1.6430492035729749e-06, 'Beccaria': 2.4645738053594624e-06, 'Marum': 1.6430492035729749e-06, 'Leyden': 1.6430492035729749e-06, 'transversally': 1.6430492035729749e-06, 'watch-spring': 1.6430492035729749e-06, 'Romagnosi': 1.6430492035729749e-06, 'cause-and-effect': 2.4645738053594624e-06, 'unimpressive': 2.4645738053594624e-06, 'Knowing': 2.4645738053594624e-06, 'additives': 4.107623008932437e-06, 'sanctioned': 4.107623008932437e-06, 'Drug': 5.750672212505412e-06, 'drugs': 2.3824213451808133e-05, 'veterinary': 3.2860984071459497e-06, 'assumes': 7.393721416078387e-06, "drug's": 2.4645738053594624e-06, 'processors': 1.6430492035729749e-06, 'parentheses': 1.6430492035729749e-06, 'additive': 2.4645738053594624e-06, 'ruminants': 1.6430492035729749e-06, 'Oxytetracycline': 1.6430492035729749e-06, 'hydrochloride': 4.107623008932437e-06, 'Terramycin': 1.6430492035729749e-06, 'Increases': 3.2860984071459497e-06, 'bacterial': 1.1501344425010824e-05, 'diarrhea': 6.5721968142918994e-06, 'incidence': 6.5721968142918994e-06, 'bloat': 7.393721416078387e-06, 'abscesses': 3.2860984071459497e-06, 'anti-infective': 2.4645738053594624e-06, 'Calves': 1.6430492035729749e-06, 'grams': 1.5608967433943262e-05, 'scours': 4.929147610718925e-06, '100-200': 1.6430492035729749e-06, '0.1': 8.215246017864873e-06, 'Beef': 1.6430492035729749e-06, 'severity': 4.929147610718925e-06, 'oxytetracycline': 2.4645738053594624e-06, '0.5': 8.215246017864873e-06, 'shipment': 2.4645738053594624e-06, 'onset': 1.3144393628583799e-05, 'disappear': 9.85829522143785e-06, 'Sheep': 4.107623008932437e-06, "Drug's": 1.3144393628583799e-05, 'Chlortetracycline': 1.6430492035729749e-06, 'Aureomycin': 4.929147610718925e-06, 'reduces': 5.750672212505412e-06, 'infections': 4.929147610718925e-06, 'feed-lot': 2.4645738053594624e-06, 'Prevention': 2.4645738053594624e-06, 'pneumonia': 3.2860984071459497e-06, 'rhinotracheitis': 2.4645738053594624e-06, 'vaccination': 2.4645738053594624e-06, 'rot': 7.393721416078387e-06, 'milligram': 4.929147610718925e-06, 'anaplasmosis': 1.6430492035729749e-06, 'Dairy': 1.6430492035729749e-06, 'calves': 4.929147610718925e-06, 'infection': 7.393721416078387e-06, 'enterotoxemia': 1.6430492035729749e-06, 'vibrionic': 1.6430492035729749e-06, 'abortion': 5.750672212505412e-06, 'breeding': 2.4645738053594624e-06, 'Dynafac': 4.107623008932437e-06, '0.2': 4.107623008932437e-06, 'gram': 8.215246017864873e-06, 'premix': 3.2860984071459497e-06, 'Feeder': 2.4645738053594624e-06, '0.3': 3.2860984071459497e-06, '0.4': 4.107623008932437e-06, 'consuming': 4.929147610718925e-06, 'minimizing': 3.2860984071459497e-06, 'lambs': 6.5721968142918994e-06, '1.0': 3.2860984071459497e-06, 'Diethylstilbestrol': 1.6430492035729749e-06, 'diethylstilbestrol': 3.2860984071459497e-06, 'consumes': 1.6430492035729749e-06, 'DES': 1.6430492035729749e-06, '10-milligram': 1.6430492035729749e-06, 'creep': 9.036770619651361e-06, 'fattening': 2.4645738053594624e-06, 'Include': 2.4645738053594624e-06, 'Caution': 4.929147610718925e-06, 'Discontinue': 1.6430492035729749e-06, 'medication': 2.4645738053594624e-06, 'Hydroxazine': 1.6430492035729749e-06, 'Improves': 2.4645738053594624e-06, 'Iodinated': 1.6430492035729749e-06, 'casein': 1.6430492035729749e-06, 'elevates': 1.6430492035729749e-06, 'metabolic': 2.4645738053594624e-06, 'Fed': 1.6430492035729749e-06, 'butterfat': 1.6430492035729749e-06, 'Cows': 3.2860984071459497e-06, 'registry': 2.4645738053594624e-06, 'Bacterial': 1.6430492035729749e-06, 'fungal': 1.6430492035729749e-06, 'enzymes': 9.85829522143785e-06, 'enzyme': 5.750672212505412e-06, 'preparations': 1.232286902679731e-05, 'tags': 1.6430492035729749e-06, 'fermentation': 3.2860984071459497e-06, 'extracts': 4.107623008932437e-06, 'Bacillus': 2.4645738053594624e-06, 'subtilis': 2.4645738053594624e-06, 'Apergillus': 1.6430492035729749e-06, 'orzae': 1.6430492035729749e-06, 'Niger': 1.6430492035729749e-06, 'Flavus': 1.6430492035729749e-06, 'utilization': 8.215246017864873e-06, 'low-moisture': 2.4645738053594624e-06, 'Greatest': 4.107623008932437e-06, 'beef-feeding': 1.6430492035729749e-06, 'Ronnel': 1.6430492035729749e-06, 'Effectively': 1.6430492035729749e-06, 'grubs': 1.6430492035729749e-06, 'Methyl': 1.6430492035729749e-06, 'polysiloxanes': 1.6430492035729749e-06, 'foamy': 3.2860984071459497e-06, 'Phenothiazine': 1.6430492035729749e-06, 'Reduces': 1.6430492035729749e-06, 'hookworm': 1.6430492035729749e-06, 'nodular': 1.6430492035729749e-06, 'reproduction': 5.750672212505412e-06, 'worm': 4.107623008932437e-06, 'droppings': 1.6430492035729749e-06, '2-5': 2.4645738053594624e-06, 'phenothiazine': 3.2860984071459497e-06, 'Continuous': 3.2860984071459497e-06, 'lactating': 2.4645738053594624e-06, 'single-dose': 1.6430492035729749e-06, 'Procaine': 1.6430492035729749e-06, 'penicillin': 1.6430492035729749e-06, 'legume': 2.4645738053594624e-06, 'pasture': 9.036770619651361e-06, 'Sodium': 1.6430492035729749e-06, 'propionate': 2.4645738053594624e-06, 'acetonemia': 3.2860984071459497e-06, 'ketosis': 5.750672212505412e-06, 'calving': 3.2860984071459497e-06, 'Sulfaquinoxaline': 1.6430492035729749e-06, 'Helps': 2.4645738053594624e-06, 'dysentery': 1.6430492035729749e-06, 'coccidiosis': 1.6430492035729749e-06, 'Dried': 2.4645738053594624e-06, 'rumen': 2.4645738053594624e-06, 'Stimulates': 1.6430492035729749e-06, 'Incorporated': 1.6430492035729749e-06, 'sodium': 9.85829522143785e-06, 'lactate': 2.4645738053594624e-06, 'Prevents': 1.6430492035729749e-06, 'Promazine': 1.6430492035729749e-06, 'tranquilizer': 1.6430492035729749e-06, 'vaccinating': 1.6430492035729749e-06, 'weaning': 1.6430492035729749e-06, '1.25': 1.6430492035729749e-06, 'Additive': 1.6430492035729749e-06, 'Fence-line': 2.4645738053594624e-06, 'self-unloading': 4.107623008932437e-06, 'Mechanized': 1.6430492035729749e-06, 'conveyor': 3.2860984071459497e-06, 'elevator': 1.0679819823224336e-05, 'construct': 9.85829522143785e-06, 'Selecting': 2.4645738053594624e-06, 'fence-line': 2.4645738053594624e-06, 'Filling': 2.4645738053594624e-06, 'silos': 2.4645738053594624e-06, 'All-weather': 1.6430492035729749e-06, 'sixties': 9.85829522143785e-06, '20-25': 1.6430492035729749e-06, 'yrs.': 4.107623008932437e-06, 'Companies': 1.6430492035729749e-06, 'efficiencies': 3.2860984071459497e-06, 'upgraded': 1.6430492035729749e-06, 'price-consciousness': 3.2860984071459497e-06, 'intensification': 6.5721968142918994e-06, 'Frequently': 5.750672212505412e-06, 'wittingly': 1.6430492035729749e-06, 'distributors': 3.2860984071459497e-06, 'distributor': 6.5721968142918994e-06, 'Increased': 4.929147610718925e-06, 'Average': 3.2860984071459497e-06, 'assertions': 3.2860984071459497e-06, 'follow-through': 1.6430492035729749e-06, 'discretionary': 2.4645738053594624e-06, 'convenient-type': 1.6430492035729749e-06, 'enhance': 4.929147610718925e-06, "consumer's": 1.6430492035729749e-06, 'Geographic': 2.4645738053594624e-06, 'acquisitions': 2.4645738053594624e-06, 'warehousing': 1.6430492035729749e-06, "distributor's": 1.6430492035729749e-06, 'branded': 2.4645738053594624e-06, 'researching': 1.6430492035729749e-06, 'Display': 1.6430492035729749e-06, 'pre-selling': 2.4645738053594624e-06, 'headaches': 5.750672212505412e-06, 'fast-growing': 1.6430492035729749e-06, 'higher-quality': 1.6430492035729749e-06, 'Salesmanship': 1.6430492035729749e-06, 'slants': 1.6430492035729749e-06, 'niceties': 1.6430492035729749e-06, 'Computers': 1.6430492035729749e-06, 'Selective': 2.4645738053594624e-06, 'economies': 6.5721968142918994e-06, 'scrutinizing': 3.2860984071459497e-06, 'higher-priced': 1.6430492035729749e-06, 'high-quality': 2.4645738053594624e-06, 'lower-paid': 1.6430492035729749e-06, 'mos.': 1.6430492035729749e-06, 'Distribution': 2.4645738053594624e-06, 'accentuated': 3.2860984071459497e-06, 'influencing': 2.4645738053594624e-06, 'evaluated': 9.85829522143785e-06, 'sales-building': 1.6430492035729749e-06, 'beats': 4.107623008932437e-06, 'obsoleting': 1.6430492035729749e-06, 'tuned': 3.2860984071459497e-06, 'Technical': 4.929147610718925e-06, 'shepherd': 2.4645738053594624e-06, 'commercialization': 1.6430492035729749e-06, 'shelved': 1.6430492035729749e-06, 'quantitative': 8.215246017864873e-06, 'qualitative': 4.929147610718925e-06, 'qualitatively': 2.4645738053594624e-06, 'geared': 2.4645738053594624e-06, 'Shortage': 1.6430492035729749e-06, 'outdistanced': 3.2860984071459497e-06, 'top-notch': 1.6430492035729749e-06, 'Complexity': 1.6430492035729749e-06, 'Hip-pocket': 1.6430492035729749e-06, 'beverage': 4.929147610718925e-06, 'short-changing': 1.6430492035729749e-06, '5-': 1.6430492035729749e-06, '10-yr.': 1.6430492035729749e-06, 'wrapped': 1.232286902679731e-05, 'defining': 8.215246017864873e-06, 'Solutions': 1.6430492035729749e-06, 'politeness': 4.929147610718925e-06, 'militated': 1.6430492035729749e-06, 'crux': 2.4645738053594624e-06, 'certification': 3.2860984071459497e-06, 'lengthen': 2.4645738053594624e-06, "designer's": 1.6430492035729749e-06, 'catalogs': 2.4645738053594624e-06, 'adhere': 4.107623008932437e-06, 'A.I.D.': 1.6430492035729749e-06, 'curricular': 2.4645738053594624e-06, 'necessities': 1.1501344425010824e-05, 'Dictionary': 3.2860984071459497e-06, 'Occupational': 2.4645738053594624e-06, 'Titles': 1.6430492035729749e-06, 'furnishes': 4.107623008932437e-06, 'institutional': 8.215246017864873e-06, 'coverings': 2.4645738053594624e-06, 'determines': 1.232286902679731e-05, 'Furnishes': 1.6430492035729749e-06, 'supervises': 2.4645738053594624e-06, 'examining': 6.5721968142918994e-06, 'supervising': 3.2860984071459497e-06, 'carpentry': 4.107623008932437e-06, 'exhibitions': 3.2860984071459497e-06, 'extant': 4.929147610718925e-06, 'synthetic': 9.036770619651361e-06, 'fairy-land': 1.6430492035729749e-06, 'inhibition': 5.750672212505412e-06, 'dissection': 3.2860984071459497e-06, 'frowned': 7.393721416078387e-06, 'Consultation': 2.4645738053594624e-06, 'Fashions': 1.6430492035729749e-06, 'educator': 9.036770619651361e-06, 'scrutinized': 3.2860984071459497e-06, 'Participation': 2.4645738053594624e-06, 'denies': 5.750672212505412e-06, 'refuses': 4.929147610718925e-06, 'initials': 3.2860984071459497e-06, 'catalog': 1.6430492035729749e-06, 'anomalous': 1.6430492035729749e-06, 'tolerate': 4.107623008932437e-06, 'shortsighted': 4.929147610718925e-06, 'molding': 1.232286902679731e-05, 'Institutes': 1.6430492035729749e-06, 'Societies': 1.6430492035729749e-06, 'disservice': 1.6430492035729749e-06, 'rushes': 3.2860984071459497e-06, 'Jack-of-all-trades': 1.6430492035729749e-06, 'suffice': 4.107623008932437e-06, 'irresponsibility': 3.2860984071459497e-06, 'confreres': 1.6430492035729749e-06, 'Considerable': 2.4645738053594624e-06, 'correlation': 1.3965918230370285e-05, 'accreditation': 6.5721968142918994e-06, 'aquisition': 1.6430492035729749e-06, 'ring-around-a-rosy': 1.6430492035729749e-06, 'repute': 2.4645738053594624e-06, 'mitigation': 1.6430492035729749e-06, 'offences': 1.6430492035729749e-06, 'productivity': 1.3144393628583799e-05, 'absenteeism': 1.6430492035729749e-06, 'turnover': 1.6430492035729749e-06, 'fancier': 1.6430492035729749e-06, 'printing': 1.3144393628583799e-05, 'free-buying': 1.6430492035729749e-06, 'cents-per-hour': 2.4645738053594624e-06, 'restricting': 4.107623008932437e-06, 'profit-sharing': 1.6430492035729749e-06, 'entitles': 4.107623008932437e-06, 'employee-contributed': 1.6430492035729749e-06, 'company-paid': 1.6430492035729749e-06, 'Holidays': 2.4645738053594624e-06, 'midweek': 2.4645738053594624e-06, 'uninterrupted': 4.929147610718925e-06, 'policing': 3.2860984071459497e-06, 'wash-up': 1.6430492035729749e-06, 'boiler': 2.4645738053594624e-06, '24-hour-day': 1.6430492035729749e-06, '7-day-week': 1.6430492035729749e-06, 'vending': 4.929147610718925e-06, 'relying': 4.929147610718925e-06, 'prepackaged': 2.4645738053594624e-06, 'second-': 2.4645738053594624e-06, 'third-shift': 1.6430492035729749e-06, 'subcontracting': 1.6430492035729749e-06, 'custodial': 1.6430492035729749e-06, 'in-plant': 1.6430492035729749e-06, 'Recreation': 6.5721968142918994e-06, 'commensurate': 4.107623008932437e-06, 'audited': 2.4645738053594624e-06, 'weed': 1.6430492035729749e-06, "employee's": 1.6430492035729749e-06, 'inter-plant': 1.6430492035729749e-06, 'taxis': 3.2860984071459497e-06, 'intra-company': 1.6430492035729749e-06, 're-scheduled': 1.6430492035729749e-06, 'Paid': 1.6430492035729749e-06, 'vacations': 7.393721416078387e-06, 'shutdown': 3.2860984071459497e-06, 'fill-ins': 2.4645738053594624e-06, 'unneeded': 1.6430492035729749e-06, 'shutdowns': 3.2860984071459497e-06, 'Retirement': 2.4645738053594624e-06, 'non-productive': 1.6430492035729749e-06, 'make-work': 1.6430492035729749e-06, 'assigning': 8.215246017864873e-06, 'fee-per-case': 1.6430492035729749e-06, 'first-aid': 1.6430492035729749e-06, 'rigidly': 7.393721416078387e-06, 'distinguish': 1.6430492035729746e-05, 'job-': 1.6430492035729749e-06, 'non-job-connected': 1.6430492035729749e-06, 'indiscriminantly': 1.6430492035729749e-06, 'treatments': 9.85829522143785e-06, 'revamping': 1.6430492035729749e-06, 'Unions': 1.6430492035729749e-06, 'hourly': 2.4645738053594624e-06, 'Aim': 1.6430492035729749e-06, 'overboard': 7.393721416078387e-06, 'Encourage': 1.6430492035729749e-06, 'Hallmark': 1.6430492035729749e-06, 'Benefit': 1.6430492035729749e-06, 'Bafflers': 1.6430492035729749e-06, 'distributes': 2.4645738053594624e-06, 'Dietetic': 1.6430492035729749e-06, 'facsimile': 1.6430492035729749e-06, 'checkbook': 4.929147610718925e-06, 'itemizing': 2.4645738053594624e-06, 'blue-collar': 1.6430492035729749e-06, '$227.72': 1.6430492035729749e-06, 'periodically': 5.750672212505412e-06, 'alerting': 4.107623008932437e-06, 'on-the-job': 3.2860984071459497e-06, 'deductable': 1.6430492035729749e-06, 'beware': 3.2860984071459497e-06, 'open-end': 1.6430492035729749e-06, 'dollar-and-cents': 1.6430492035729749e-06, 'bereavement': 4.107623008932437e-06, "worker's": 4.107623008932437e-06, 'deceased': 9.036770619651361e-06, "cousin's": 1.6430492035729749e-06, 'Vending': 1.6430492035729749e-06, 'alleviate': 4.929147610718925e-06, 'supplemental': 2.4645738053594624e-06, 'dispensers': 1.6430492035729749e-06, 'containers': 4.107623008932437e-06, 'good-size': 1.6430492035729749e-06, 'drinkers': 2.4645738053594624e-06, 'deadheads': 1.6430492035729749e-06, 'time-on-the-job': 1.6430492035729749e-06, 'Choose': 2.4645738053594624e-06, 'contributory': 1.6430492035729749e-06, 'non-contributory': 2.4645738053594624e-06, 'retires': 2.4645738053594624e-06, 'absences': 3.2860984071459497e-06, 'illnesses': 2.4645738053594624e-06, 'layoffs': 1.6430492035729749e-06, 'adopting': 9.85829522143785e-06, 'inconvenience': 3.2860984071459497e-06, 'Thanksgiving': 6.5721968142918994e-06, 'startups': 1.6430492035729749e-06, 'Require': 1.6430492035729749e-06, 'absentee': 1.6430492035729749e-06, 'Eating': 2.4645738053594624e-06, 'Latest': 1.6430492035729749e-06, 'concessionaire': 2.4645738053594624e-06, 'dishwater': 1.6430492035729749e-06, 'rap': 2.4645738053594624e-06, 'Vacations': 1.6430492035729749e-06, 'widest': 3.2860984071459497e-06, 'replacements': 2.4645738053594624e-06, 'Sporting': 2.4645738053594624e-06, 'firearms': 5.750672212505412e-06, 'Studebaker': 1.6430492035729749e-06, 'ammunition': 1.4787442832156774e-05, 'diligent': 2.4645738053594624e-06, 'loader': 1.6430492035729749e-06, 'slow-firing': 1.6430492035729749e-06, 'auto-loaders': 1.6430492035729749e-06, 'small-arms': 1.6430492035729749e-06, 'resource-use': 1.6430492035729749e-06, 'ever-expanding': 3.2860984071459497e-06, 'Present': 6.5721968142918994e-06, 'expendable': 1.6430492035729749e-06, 'sown': 3.2860984071459497e-06, 'reaped': 1.6430492035729749e-06, 'Unlimited': 1.6430492035729749e-06, 'game-management': 1.6430492035729749e-06, 'harvested': 1.6430492035729749e-06, '1,500': 3.2860984071459497e-06, 'Game': 1.6430492035729749e-06, 'Commission-controlled': 1.6430492035729749e-06, 'Ammunition': 1.6430492035729749e-06, "Manufacturers'": 1.6430492035729749e-06, "Sportsmen's": 1.6430492035729749e-06, 'SAAMI': 2.4645738053594624e-06, 'consultants': 6.5721968142918994e-06, 'kick-off': 1.6430492035729749e-06, "SAAMI's": 5.750672212505412e-06, 'Rifle': 4.107623008932437e-06, 'Tackle': 1.6430492035729749e-06, 'Outdoor': 4.107623008932437e-06, 'Project': 2.4645738053594624e-06, 'carryover': 1.0679819823224336e-05, 'OEP': 1.6430492035729749e-06, 'Personnel': 3.2860984071459497e-06, 'school-age': 1.6430492035729749e-06, 'Teen': 4.107623008932437e-06, 'Merchandising': 1.6430492035729749e-06, 'Events': 2.4645738053594624e-06, 'Jennings': 3.2860984071459497e-06, 'Babylon': 2.4645738053594624e-06, 'THC': 1.6430492035729749e-06, 'appreciations': 1.6430492035729749e-06, 'assists': 1.6430492035729749e-06, 'ever-growing': 2.4645738053594624e-06, 'grass-roots': 1.6430492035729749e-06, 'Shooting': 1.6430492035729749e-06, 'man-hours': 1.6430492035729749e-06, 'benefited': 3.2860984071459497e-06, 'primed': 2.4645738053594624e-06, 'Hunters': 1.6430492035729749e-06, 'Sammy': 1.6430492035729749e-06, 'Shooter': 1.6430492035729749e-06, 'Hatteras': 1.6430492035729749e-06, 'Campground': 1.6430492035729749e-06, 'seagulls': 1.6430492035729749e-06, 'bluefish': 1.6430492035729749e-06, "Carolina's": 1.6430492035729749e-06, 'campground': 2.4645738053594624e-06, 'tents': 9.036770619651361e-06, 'pup': 2.4645738053594624e-06, 'Pop': 2.4645738053594624e-06, 'camper': 3.2860984071459497e-06, 'parachutes': 1.6430492035729749e-06, 'sunshades': 2.4645738053594624e-06, 'stoves': 2.4645738053594624e-06, 'lanterns': 2.4645738053594624e-06, 'bedding': 3.2860984071459497e-06, 'windbreaks': 1.6430492035729749e-06, 'campgrounds': 2.4645738053594624e-06, '70-mile-long': 1.6430492035729749e-06, 'Seashore': 2.4645738053594624e-06, 'Dealers': 1.6430492035729749e-06, 'campers': 8.215246017864873e-06, 'Camping': 2.4645738053594624e-06, 'guesses': 3.2860984071459497e-06, 'campsites': 2.4645738053594624e-06, 'Harassed': 1.6430492035729749e-06, 'Forests': 1.1501344425010824e-05, 'rods': 4.107623008932437e-06, 'binoculars': 2.4645738053594624e-06, 'migration': 4.929147610718925e-06, 'Automobile': 6.5721968142918994e-06, '$29': 2.4645738053594624e-06, 'AAA': 1.6430492035729749e-06, 'splits': 2.4645738053594624e-06, '$10.50': 2.4645738053594624e-06, '$9.50': 2.4645738053594624e-06, '$7': 3.2860984071459497e-06, 'resorts': 1.6430492035729749e-06, 'tow': 1.6430492035729749e-06, 'comforts': 4.929147610718925e-06, 'logger': 1.6430492035729749e-06, 'wandering': 6.5721968142918994e-06, 'mattresses': 1.6430492035729749e-06, 'disillusionment': 3.2860984071459497e-06, 'willingly': 4.107623008932437e-06, 'rebelled': 4.107623008932437e-06, "public's": 5.750672212505412e-06, 'astronomically': 1.6430492035729749e-06, 'remedies': 5.750672212505412e-06, 'management-trained': 1.6430492035729749e-06, 'gage': 4.107623008932437e-06, 'fights': 4.929147610718925e-06, 'incomes': 1.6430492035729749e-06, 'over-emphasized': 2.4645738053594624e-06, 'status-conscious': 2.4645738053594624e-06, 'contributor': 2.4645738053594624e-06, 'vice-presidents': 1.6430492035729749e-06, 'dual-road-up': 1.6430492035729749e-06, 'dual-channel': 1.6430492035729749e-06, 'advancement': 8.215246017864873e-06, 'supervisory': 2.4645738053594624e-06, 'individual-contributor': 2.4645738053594624e-06, 'company-wide': 1.6430492035729749e-06, 'GE': 2.4645738053594624e-06, 'Turbine': 1.6430492035729749e-06, 'turbine': 4.929147610718925e-06, 'vp': 2.4645738053594624e-06, 'gm': 2.4645738053594624e-06, 'Strang': 1.6430492035729749e-06, 'switchgear': 1.6430492035729749e-06, 'Products': 1.1501344425010824e-05, 'Switchgear': 1.6430492035729749e-06, 'Consultant': 1.6430492035729749e-06, 'Advanced': 2.4645738053594624e-06, 'Consulting': 3.2860984071459497e-06, 'Engineer': 4.107623008932437e-06, 'Transfer': 1.6430492035729749e-06, 'Senior': 3.2860984071459497e-06, 'Physicist': 1.6430492035729749e-06, 'classifications': 4.107623008932437e-06, 'abundantly': 2.4645738053594624e-06, 'quotations': 4.107623008932437e-06, 'fad': 2.4645738053594624e-06, 'equivalence': 4.107623008932437e-06, 'non-supervisory': 3.2860984071459497e-06, 'first-level': 2.4645738053594624e-06, 'engineering-management': 2.4645738053594624e-06, 'divisional': 2.4645738053594624e-06, 'ASME': 1.6430492035729749e-06, 'AIEE': 1.6430492035729749e-06, 'AIChE': 1.6430492035729749e-06, 'formalize': 2.4645738053594624e-06, 'Engrg': 1.6430492035729749e-06, 'Approximately': 6.5721968142918994e-06, 'agitate': 1.6430492035729749e-06, 'secretaries': 5.750672212505412e-06, 'dual-ladder': 1.6430492035729749e-06, 'technical-ladder': 1.6430492035729749e-06, 'longevity': 2.4645738053594624e-06, 'top-heavy': 1.6430492035729749e-06, 'high-level': 3.2860984071459497e-06, 'high-salaried': 1.6430492035729749e-06, 'Staff': 9.036770619651361e-06, 'remuneration': 2.4645738053594624e-06, 'Publicity': 2.4645738053594624e-06, 'patents': 1.6430492035729746e-05, 'Salaries': 1.6430492035729749e-06, 'badge': 4.929147610718925e-06, 'inaugurating': 1.6430492035729749e-06, 'research-staff': 3.2860984071459497e-06, 'organization-position': 1.6430492035729749e-06, 'evaluations': 4.929147610718925e-06, 'administratively': 1.6430492035729749e-06, 'Sixty': 3.2860984071459497e-06, 'Dutchess': 2.4645738053594624e-06, 'Oakwood': 4.929147610718925e-06, 'three-bedroom': 1.6430492035729749e-06, '$14,000': 1.6430492035729749e-06, 'metered': 4.107623008932437e-06, 'Tri-State': 1.0679819823224336e-05, 'Pipeline': 2.4645738053594624e-06, 'Timen': 1.6430492035729749e-06, '540-K': 1.6430492035729749e-06, 'Vice-president': 1.6430492035729749e-06, 'Berkman': 1.6430492035729749e-06, 'Kahler-Craft': 1.6430492035729749e-06, 'Distributors': 1.6430492035729749e-06, 'Newburgh': 1.6430492035729749e-06, 'Fueloil': 1.6430492035729749e-06, '278': 1.6430492035729749e-06, 'Schulz': 1.6430492035729749e-06, 'tenants': 8.215246017864873e-06, 'Slo-Flo': 1.6430492035729749e-06, 'time-consuming': 1.6430492035729749e-06, 'lays': 5.750672212505412e-06, 'easement': 2.4645738053594624e-06, 'Buries': 1.6430492035729749e-06, 'supplier': 5.750672212505412e-06, 'two-to-three': 1.6430492035729749e-06, 'oilheating': 2.4645738053594624e-06, 'Paragon': 1.6430492035729749e-06, 'boiler-burner': 1.6430492035729749e-06, 'summer-winter': 1.6430492035729749e-06, 'hookups': 1.6430492035729749e-06, 'fueloil': 2.4645738053594624e-06, 'gallonage': 1.6430492035729749e-06, 'Poughkeepsie': 2.4645738053594624e-06, 'township': 3.2860984071459497e-06, 'simplifies': 2.4645738053594624e-06, 'crescent': 1.6430492035729749e-06, 'stipulation': 1.6430492035729749e-06, 'X-Tru-Coat': 1.6430492035729749e-06, 'welded': 3.2860984071459497e-06, "24''": 2.4645738053594624e-06, 'shocks': 4.929147610718925e-06, 'trucking': 2.4645738053594624e-06, 'gallon': 4.929147610718925e-06, 'easements': 2.4645738053594624e-06, 'options': 1.6430492035729749e-06, "editor's": 2.4645738053594624e-06, 'sunning': 1.6430492035729749e-06, 'ditcher': 1.6430492035729749e-06, 'trenches': 1.6430492035729749e-06, 'Gargle': 1.6430492035729749e-06, 'gargle': 1.6430492035729749e-06, 'coolant': 4.107623008932437e-06, 'anti-freeze': 1.6430492035729749e-06, 'inhibitors': 2.4645738053594624e-06, 'Pitch': 2.4645738053594624e-06, 'flushing': 1.6430492035729749e-06, 'inhibitor': 2.4645738053594624e-06, 'softest': 1.6430492035729749e-06, 'leaks': 3.2860984071459497e-06, 'hoses': 2.4645738053594624e-06, 'hose': 7.393721416078387e-06, 'freeze-out': 1.6430492035729749e-06, 'plugs': 2.4645738053594624e-06, 'gaskets': 1.6430492035729749e-06, 'fittings': 1.6430492035729749e-06, 'bugs': 4.929147610718925e-06, 'radiator': 4.107623008932437e-06, 'fluids': 1.3144393628583799e-05, 'Dowguard': 1.6430492035729749e-06, 'breakdowns': 3.2860984071459497e-06, 'zooms': 1.6430492035729749e-06, 'thermostats': 1.6430492035729749e-06, 'thermos': 1.6430492035729749e-06, 'insulators': 1.6430492035729749e-06, 'Duplicate': 1.6430492035729749e-06, 'lay-up': 1.6430492035729749e-06, 'clause': 8.215246017864873e-06, 'discount': 1.0679819823224336e-05, 'Discounts': 1.6430492035729749e-06, 'reductions': 4.107623008932437e-06, 'deductibles': 1.6430492035729749e-06, 'liability': 6.5721968142918994e-06, 'coinciding': 1.6430492035729749e-06, 'plastics': 2.3824213451808133e-05, 'thermoforming': 1.6430492035729749e-06, 'preprinting': 1.6430492035729749e-06, 'reverse-surface': 1.6430492035729749e-06, 'escutcheons': 1.6430492035729749e-06, 'medallions': 1.6430492035729749e-06, 'light-transmitting': 1.6430492035729749e-06, 'trans-illumination': 1.6430492035729749e-06, 'entrenched': 4.929147610718925e-06, 'neon': 1.0679819823224336e-05, 'tubing': 5.750672212505412e-06, 'estimating': 2.4645738053594624e-06, 'Evidence': 3.2860984071459497e-06, 'Neon': 2.4645738053594624e-06, 'Sign': 3.2860984071459497e-06, '85%': 2.4645738053594624e-06, 'Aggregate': 1.6430492035729749e-06, 'Plastics': 3.2860984071459497e-06, 'built-in': 3.2860984071459497e-06, 'transparency': 2.4645738053594624e-06, 'translucency': 1.6430492035729749e-06, 'fabrication': 7.393721416078387e-06, 'Shipping': 1.6430492035729749e-06, '3-by-6-ft.': 1.6430492035729749e-06, 'lb.': 1.6430492035729746e-05, '275-300': 1.6430492035729749e-06, 'durability': 2.4645738053594624e-06, 'mountings': 1.6430492035729749e-06, 'incorporate': 2.4645738053594624e-06, 'Vacuum-': 1.6430492035729749e-06, 'pressure-formed': 1.6430492035729749e-06, 'molded': 1.0679819823224336e-05, 'Pre-decoration': 1.6430492035729749e-06, 'low-cost': 5.750672212505412e-06, 'tailor-made': 3.2860984071459497e-06, 'Advances': 1.6430492035729749e-06, 'smaller-size': 1.6430492035729749e-06, 'mass-production': 1.6430492035729749e-06, 'styrene': 6.5721968142918994e-06, 'acrylic': 9.85829522143785e-06, 'formability': 1.6430492035729749e-06, 'dominates': 6.5721968142918994e-06, 'extruded': 7.393721416078387e-06, '166': 1.6430492035729749e-06, "Pont's": 1.3144393628583799e-05, 'Polychemicals': 1.6430492035729749e-06, 'Dept.': 3.2860984071459497e-06, 'methyl': 1.6430492035729749e-06, 'methacrylate': 1.6430492035729749e-06, 'monomer': 2.4645738053594624e-06, 'Monocite': 1.6430492035729749e-06, 'Sheeting': 1.6430492035729749e-06, 'impervious': 2.4645738053594624e-06, 'resists': 1.6430492035729749e-06, 'chipping': 4.929147610718925e-06, 'crazing': 1.6430492035729749e-06, 'Cellulose': 1.6430492035729749e-06, 'acetate': 6.5721968142918994e-06, 'butyrate': 8.215246017864873e-06, 'vacuum-formed': 2.4645738053594624e-06, 'weathering': 2.4645738053594624e-06, 'duplex': 1.6430492035729749e-06, 'laminate': 3.2860984071459497e-06, 'Thermoforming': 1.6430492035729749e-06, 'two-color': 1.6430492035729749e-06, 'MPl': 1.6430492035729749e-06, 'three-dimensional': 9.036770619651361e-06, 'reproducing': 2.4645738053594624e-06, 'rotationally': 1.6430492035729749e-06, 'vinyl': 4.107623008932437e-06, 'plastisols': 1.6430492035729749e-06, 'Mylar': 2.4645738053594624e-06, 'polyester': 4.929147610718925e-06, 'overlay': 2.4645738053594624e-06, 'trans-illuminated': 4.107623008932437e-06, 'cellulose': 8.215246017864873e-06, 'polyethylene': 4.107623008932437e-06, 'tooling': 4.107623008932437e-06, 'expectancy': 4.107623008932437e-06, 'incorporates': 3.2860984071459497e-06, 'fabricating': 1.6430492035729749e-06, 'Trans-illuminated': 2.4645738053594624e-06, 'billboards': 2.4645738053594624e-06, 'advancements': 1.6430492035729749e-06, 'billboard': 1.6430492035729749e-06, 'translucent': 3.2860984071459497e-06, 'lumen': 2.4645738053594624e-06, 'shielded': 4.929147610718925e-06, 'obstruct': 4.107623008932437e-06, 'adhesive': 5.750672212505412e-06, 'Spare': 1.6430492035729749e-06, 'Panels': 1.6430492035729749e-06, 'Signs': 2.4645738053594624e-06, 'flood-lighted': 1.6430492035729749e-06, '24-sheet': 1.6430492035729749e-06, 'back-lighted': 1.6430492035729749e-06, 'opaque': 4.929147610718925e-06, 'cutouts': 1.6430492035729749e-06, 'Comprised': 1.6430492035729749e-06, 'triangles': 1.6430492035729749e-06, 'revolve': 1.6430492035729749e-06, 'sec.': 3.2860984071459497e-06, 'Sixteen': 2.4645738053594624e-06, 'ft.': 8.215246017864873e-06, '25-ft.': 1.6430492035729749e-06, 'Changeable': 1.6430492035729749e-06, 'characterizes': 4.107623008932437e-06, 'changeable': 4.107623008932437e-06, 'Poster': 1.6430492035729749e-06, 'snap-in': 1.6430492035729749e-06, 'screened': 2.4645738053594624e-06, 'Adaptaplex': 1.6430492035729749e-06, 'Ideal': 2.4645738053594624e-06, 'weather-resistant': 2.4645738053594624e-06, 'pegs': 2.4645738053594624e-06, 'openings': 6.5721968142918994e-06, 'waffle-pattern': 1.6430492035729749e-06, 'thermoformed': 1.6430492035729749e-06, '24-in.': 1.6430492035729749e-06, '36-in.': 1.6430492035729749e-06, 'brackets': 2.4645738053594624e-06, 'cemented': 4.107623008932437e-06, 'Stainless': 1.6430492035729749e-06, 'corrugated': 4.107623008932437e-06, 'stainless': 1.6430492035729749e-06, 'injection-molded': 1.6430492035729749e-06, 'installations': 1.3965918230370285e-05, 'formulation': 1.4787442832156774e-05, 'Tenite': 2.4645738053594624e-06, 'Snug-Grip': 1.6430492035729749e-06, 'Plasti-Bars': 1.6430492035729749e-06, 'Azusa': 1.6430492035729749e-06, '27-in.': 1.6430492035729749e-06, '0.080-in.': 1.6430492035729749e-06, 'sprayed': 5.750672212505412e-06, 'Finished': 1.6430492035729749e-06, '0.025-in.': 1.6430492035729749e-06, 'Specialties': 1.6430492035729749e-06, 'large-area': 1.6430492035729749e-06, 'right-angled': 1.6430492035729749e-06, 'corrugations': 1.6430492035729749e-06, 'Joined': 1.6430492035729749e-06, 'two-dimensional': 1.6430492035729749e-06, 'no.': 9.036770619651361e-06, 'quicker': 5.750672212505412e-06, 'bathtub': 4.107623008932437e-06, 'wrestle': 2.4645738053594624e-06, '400-lb.': 1.6430492035729749e-06, 'doorway': 1.3144393628583799e-05, 'Finish': 2.4645738053594624e-06, 'non-bearing': 1.6430492035729749e-06, 'studs': 3.2860984071459497e-06, 'shim': 1.6430492035729749e-06, 'shimming': 1.6430492035729749e-06, 'stud': 6.5721968142918994e-06, 'Install': 1.6430492035729749e-06, 'stair': 2.4645738053594624e-06, 'drywall': 4.107623008932437e-06, 'Schmitt': 2.4645738053594624e-06, 'erects': 1.6430492035729749e-06, 'unload': 6.5721968142918994e-06, 'homebuilders': 1.6430492035729749e-06, 'rethink': 2.4645738053594624e-06, 'build-better-for-less': 1.6430492035729749e-06, 'earthmoving': 1.6430492035729749e-06, 'roadbuilding': 1.6430492035729749e-06, 'lessens': 1.6430492035729749e-06, 'on-site': 2.4645738053594624e-06, 'driveways': 1.6430492035729749e-06, 'builder-dealer': 1.6430492035729749e-06, 'short-cutting': 1.6430492035729749e-06, 'teaming': 1.6430492035729749e-06, 'trusses': 2.4645738053594624e-06, 'roofing': 1.6430492035729749e-06, 'mark-up': 1.6430492035729749e-06, 'Table': 4.2719279292897344e-05, 'cosponsored': 2.4645738053594624e-06, 'Lumber': 4.929147610718925e-06, 'teamwork': 1.6430492035729749e-06, 'carrier': 7.393721416078387e-06, 'single-handed': 1.6430492035729749e-06, 'new-house': 1.6430492035729749e-06, 'mechanized': 4.107623008932437e-06, 'palletized': 1.6430492035729749e-06, 'unitized': 4.929147610718925e-06, 'asphalt': 3.2860984071459497e-06, 'hardboard': 1.6430492035729749e-06, 'gypsum': 2.4645738053594624e-06, 'wallboard': 1.6430492035729749e-06, 'sheathing': 2.4645738053594624e-06, 'acoustical': 2.4645738053594624e-06, 'asbestos': 1.6430492035729749e-06, 'materials-handling': 1.6430492035729749e-06, 'homebuilding': 1.6430492035729749e-06, 'NLRDA': 2.4645738053594624e-06, '492': 1.6430492035729749e-06, 'mills': 9.85829522143785e-06, 'strap': 2.4645738053594624e-06, '376': 1.6430492035729749e-06, 'strapping': 3.2860984071459497e-06, 'carloading': 1.6430492035729749e-06, '$.50': 2.4645738053594624e-06, '15,500-lb.': 1.6430492035729749e-06, 'fork-lift': 1.6430492035729749e-06, 'wide-door': 1.6430492035729749e-06, '$.30/mbf': 1.6430492035729749e-06, '$1.65': 1.6430492035729749e-06, "48''": 1.6430492035729749e-06, "30''": 1.6430492035729749e-06, 'McCracken': 1.6430492035729749e-06, 'packets': 1.6430492035729749e-06, "7''": 1.6430492035729749e-06, '48,000': 1.6430492035729749e-06, 'bd/ft': 1.6430492035729749e-06, '120,000': 1.6430492035729749e-06, 'lb': 7.393721416078387e-06, "50'": 1.6430492035729749e-06, 'loose-loaded': 1.6430492035729749e-06, "12'": 1.6430492035729749e-06, 'forklift': 1.6430492035729749e-06, 'unloading': 4.929147610718925e-06, '21%': 1.6430492035729749e-06, '6%': 3.2860984071459497e-06, '$.07/cwt': 1.6430492035729749e-06, 'lb-plus': 1.6430492035729749e-06, 'carloads': 1.6430492035729749e-06, '$4/mbf': 1.6430492035729749e-06, '6-B': 1.6430492035729749e-06, 'floating-load': 1.6430492035729749e-06, '$.054/mbf': 1.6430492035729749e-06, 'water-proof': 1.6430492035729749e-06, '$.75': 1.6430492035729749e-06, '$2.30/mbf': 1.6430492035729749e-06, "NRLDA's": 1.6430492035729749e-06, "dealer's": 2.4645738053594624e-06, 'packages': 5.750672212505412e-06, 'truckdriver': 1.6430492035729749e-06, 'unloads': 1.6430492035729749e-06, 'high-priced': 4.929147610718925e-06, 'Restudy': 1.6430492035729749e-06, 'manhours': 3.2860984071459497e-06, 'handiest': 1.6430492035729749e-06, 'stacked': 7.393721416078387e-06, 'Berea': 1.6430492035729749e-06, 'time-&-motion': 2.4645738053594624e-06, '170': 2.4645738053594624e-06, 'NAHB': 1.6430492035729749e-06, 'bricklaying': 3.2860984071459497e-06, 'SCR': 2.4645738053594624e-06, 'Structural': 3.2860984071459497e-06, 'bricklayers': 3.2860984071459497e-06, 'bricks': 4.929147610718925e-06, '$81': 1.6430492035729749e-06, '$43.50': 1.6430492035729749e-06, '$7.50': 1.6430492035729749e-06, '$36': 1.6430492035729749e-06, 'easy-to-spot': 1.6430492035729749e-06, '100-brick': 1.6430492035729749e-06, 'corner-posts': 1.6430492035729749e-06, 'scaffold': 5.750672212505412e-06, 'hand-level': 1.6430492035729749e-06, '156': 3.2860984071459497e-06, 'Lendrum': 1.6430492035729749e-06, 'carpenter': 5.750672212505412e-06, 'three-men-and-a-helper': 1.6430492035729749e-06, '$.10-a-minute': 1.6430492035729749e-06, '$.03': 4.107623008932437e-06, 'pound-foolish': 1.6430492035729749e-06, 'smart': 1.8073541239302723e-05, 'anachronism': 3.2860984071459497e-06, '$.65': 1.6430492035729749e-06, 'finisher': 1.6430492035729749e-06, 'happenstance': 2.4645738053594624e-06, 'wanting-to-be-alone': 1.6430492035729749e-06, 'gratefully': 3.2860984071459497e-06, 'piazzas': 1.6430492035729749e-06, 'plazas': 1.6430492035729749e-06, 'forums': 1.6430492035729749e-06, 'palaces': 4.107623008932437e-06, 'capitals': 4.107623008932437e-06, 'by-roads': 1.6430492035729749e-06, 'champagne': 1.1501344425010824e-05, 'Troyes': 1.6430492035729749e-06, 'ambrosial': 1.6430492035729749e-06, 'Rue': 4.107623008932437e-06, 'Paix': 1.6430492035729749e-06, 'Tour': 2.4645738053594624e-06, "D'Argent": 1.6430492035729749e-06, 'relive': 2.4645738053594624e-06, 'Grail': 2.4645738053594624e-06, 'Brindisi': 1.6430492035729749e-06, 'untouched': 8.215246017864873e-06, 'Ages': 1.232286902679731e-05, 'stairways': 2.4645738053594624e-06, 'clinging': 6.5721968142918994e-06, 'story-book': 1.6430492035729749e-06, 'lofty': 4.929147610718925e-06, 'crags': 2.4645738053594624e-06, 'Moors': 1.6430492035729749e-06, 'Saracens': 2.4645738053594624e-06, 'gourmets': 1.6430492035729749e-06, 'squat': 6.5721968142918994e-06, 'too-simple-to-be-true': 1.6430492035729749e-06, 'diathesis': 1.6430492035729749e-06, 'Hertz': 1.6430492035729749e-06, 'Avis': 1.6430492035729749e-06, 'Auto-Europe': 1.6430492035729749e-06, 'Nationalcar': 1.6430492035729749e-06, 'Rental': 2.4645738053594624e-06, 'dockside': 2.4645738053594624e-06, 'pick-up': 3.2860984071459497e-06, 'budget-wise': 1.6430492035729749e-06, 'Documents': 3.2860984071459497e-06, 'Driving': 2.4645738053594624e-06, '$3.00': 2.4645738053594624e-06, '$1.00': 1.6430492035729749e-06, '$2.00': 1.6430492035729749e-06, 'fee-per-day': 1.6430492035729749e-06, 'kilometer': 7.393721416078387e-06, 'per-day': 1.6430492035729749e-06, 'twenty-one': 6.5721968142918994e-06, '$.80': 1.6430492035729749e-06, '$.90': 1.6430492035729749e-06, 'wiser': 6.5721968142918994e-06, 'travelling': 3.2860984071459497e-06, 'sedans': 4.107623008932437e-06, '6-passenger': 2.4645738053594624e-06, 'wee': 2.4645738053594624e-06, 'supplementary': 8.215246017864873e-06, 'intra-city': 1.6430492035729749e-06, 'racks': 2.4645738053594624e-06, 'money-saving': 1.6430492035729749e-06, 'Fiats': 1.6430492035729749e-06, 'Alfa': 1.6430492035729749e-06, 'Romeo': 3.2860984071459497e-06, 'Giulietta': 1.6430492035729749e-06, 'indulge': 8.215246017864873e-06, 'luxuries': 3.2860984071459497e-06, '$1.26': 1.6430492035729749e-06, 'seating': 4.929147610718925e-06, '$1.10': 1.6430492035729749e-06, '$.105': 1.6430492035729749e-06, '$.86': 1.6430492035729749e-06, 'infinitesimal': 3.2860984071459497e-06, '$.30': 1.6430492035729749e-06, 'nickel': 6.5721968142918994e-06, '$3.50': 1.6430492035729749e-06, '$7.00': 2.4645738053594624e-06, '$8.00': 2.4645738053594624e-06, '$.12': 1.6430492035729749e-06, 'Rates': 2.4645738053594624e-06, '$14.00': 2.4645738053594624e-06, 'Convertible': 1.6430492035729749e-06, 'Citroen': 1.6430492035729749e-06, 'CV': 1.6430492035729749e-06, 'Volkswagens': 1.6430492035729749e-06, 'Renaults': 1.6430492035729749e-06, 'Simca': 1.6430492035729749e-06, 'Beaulieu': 1.6430492035729749e-06, 'Leasing': 1.6430492035729749e-06, '5-passenger': 1.6430492035729749e-06, 'reputations': 1.6430492035729749e-06, 'chauffeur-driven': 2.4645738053594624e-06, "chauffeur's": 1.6430492035729749e-06, '$12.00': 1.6430492035729749e-06, '7-passenger': 2.4645738053594624e-06, 'limousine': 4.107623008932437e-06, '4-passenger': 1.6430492035729749e-06, 'Peugeot': 1.6430492035729749e-06, 'equalize': 1.6430492035729749e-06, 'drive-yourself': 1.6430492035729749e-06, '$10.00': 1.6430492035729749e-06, 'English-speaking': 2.4645738053594624e-06, 'chauffeur': 4.107623008932437e-06, 'kilometers': 3.2860984071459497e-06, 'skimming': 4.107623008932437e-06, 'lured': 3.2860984071459497e-06, 'hinterlands': 1.6430492035729749e-06, 'Sweepstakes': 1.6430492035729749e-06, 'cute': 4.929147610718925e-06, 'boy-meets-girl': 1.6430492035729749e-06, 'real-life': 2.4645738053594624e-06, 'MacArthur-Helen': 1.6430492035729749e-06, 'peanuts': 4.107623008932437e-06, 'comico-romantico': 1.6430492035729749e-06, 'linguist-anthropologist': 1.6430492035729749e-06, 'MacArthur': 2.4645738053594624e-06, 'linguist': 1.1501344425010824e-05, 'Primary': 3.2860984071459497e-06, 'drawl': 2.4645738053594624e-06, 'oversoftness': 1.6430492035729749e-06, 'Conclusions': 1.6430492035729749e-06, 'drawling': 1.6430492035729749e-06, 'oversoft': 2.4645738053594624e-06, 'flirtation': 2.4645738053594624e-06, 'gambit': 2.4645738053594624e-06, 'tandem': 1.6430492035729749e-06, 'programming': 4.929147610718925e-06, 'junctures': 2.4645738053594624e-06, 'regrettably': 2.4645738053594624e-06, 'perverse': 4.929147610718925e-06, 'undaunted': 1.6430492035729749e-06, 'Eskimo': 3.2860984071459497e-06, 'blubber': 1.6430492035729749e-06, 'knotted': 4.107623008932437e-06, 'anthropology': 5.750672212505412e-06, 'linguistics': 4.929147610718925e-06, 'spring-joints': 1.6430492035729749e-06, 'attuned': 3.2860984071459497e-06, 'Language': 3.2860984071459497e-06, 'charting': 6.5721968142918994e-06, 'norms': 1.97165904428757e-05, 'talker': 1.6430492035729749e-06, 'socio-economic': 3.2860984071459497e-06, 'linguists': 9.036770619651361e-06, 'systematic': 1.5608967433943262e-05, 'psychiatric': 4.929147610718925e-06, 'therapy': 9.85829522143785e-06, "1950's": 4.107623008932437e-06, 'austerely': 1.6430492035729749e-06, 'Birdwhistell': 1.6430492035729749e-06, 'three-part': 4.107623008932437e-06, 'paralanguage': 2.4645738053594624e-06, 'laughing': 2.300268885002165e-05, 'kinesics': 1.6430492035729749e-06, 'facial': 2.4645738053594624e-06, 'nodding': 5.750672212505412e-06, 'cetera': 4.107623008932437e-06, 'spells': 2.4645738053594624e-06, 'well-adjusted': 2.4645738053594624e-06, 'fade': 2.4645738053594624e-06, 'downtalking': 1.6430492035729749e-06, 'mom': 1.6430492035729749e-06, "mom's": 1.6430492035729749e-06, 'impaired': 6.5721968142918994e-06, 'throaty': 1.6430492035729749e-06, 'seven-word': 1.6430492035729749e-06, 'revealing': 9.85829522143785e-06, 'psychiatry': 3.2860984071459497e-06, 'relate': 6.5721968142918994e-06, 'therapeutic': 1.1501344425010824e-05, 'playbacks': 1.6430492035729749e-06, 'Redstone': 1.6430492035729749e-06, "1940's": 1.6430492035729749e-06, 'psychiatrists': 4.929147610718925e-06, 'cues': 3.2860984071459497e-06, 'discernible': 7.393721416078387e-06, 'psychotherapy': 4.929147610718925e-06, 'acoustic': 1.6430492035729749e-06, 'therapist': 1.6430492035729746e-05, 'therapists': 2.4645738053594624e-06, 'high-powered': 2.4645738053594624e-06, 'typed': 3.2860984071459497e-06, 'Linguistic': 1.6430492035729749e-06, 'transcribed': 3.2860984071459497e-06, 'flags': 4.929147610718925e-06, 'rehearsed': 6.5721968142918994e-06, 'ambiguity': 7.393721416078387e-06, 'disinclination': 2.4645738053594624e-06, 'fade-in': 1.6430492035729749e-06, 'giveaways': 3.2860984071459497e-06, 'non-verbal': 2.4645738053594624e-06, 'beefed': 1.6430492035729749e-06, 'chartings': 1.6430492035729749e-06, 'now-historic': 1.6430492035729749e-06, "therapist's": 2.4645738053594624e-06, 'stressing': 4.929147610718925e-06, 'triad': 1.6430492035729749e-06, 'pedantic': 2.4645738053594624e-06, 'itemization': 1.6430492035729749e-06, 'catapults': 1.6430492035729749e-06, 'congruent': 3.2860984071459497e-06, 'Immediately': 5.750672212505412e-06, 'veering': 2.4645738053594624e-06, 'breathy': 1.6430492035729749e-06, 'sloppily': 1.6430492035729749e-06, 'articulated': 2.4645738053594624e-06, 'linguistic': 8.215246017864873e-06, 'paralinguistic': 1.6430492035729749e-06, 'non-scientific': 1.6430492035729749e-06, 'blunted': 1.6430492035729749e-06, 'monumentally': 1.6430492035729749e-06, 'unmeshed': 1.6430492035729749e-06, 'Blauberman': 2.4645738053594624e-06, 'Interestingly': 3.2860984071459497e-06, 'taped': 1.6430492035729749e-06, 'psychotherapists': 1.6430492035729749e-06, 'intuitively': 1.6430492035729749e-06, 'scientifically': 4.107623008932437e-06, 'Sibling': 1.6430492035729749e-06, 'indicators': 8.215246017864873e-06, 'Pittenger': 1.6430492035729749e-06, 'Hockett': 1.6430492035729749e-06, 'Danehy': 1.6430492035729749e-06, 'pronouns': 4.107623008932437e-06, 'Stammering': 1.6430492035729749e-06, 'x-rays': 2.4645738053594624e-06, 'actuality': 7.393721416078387e-06, 'neurasthenic': 1.6430492035729749e-06, 'soma': 1.6430492035729749e-06, 'psyche': 5.750672212505412e-06, 'Pursewarden': 1.6430492035729749e-06, "Durrell's": 1.6430492035729749e-06, 'stammered': 4.107623008932437e-06, 'freighter': 4.107623008932437e-06, 'sea-horses': 1.6430492035729749e-06, 'sailed': 9.036770619651361e-06, 'Bari': 1.232286902679731e-05, 'Fifteenth': 2.4645738053594624e-06, 'Adriatic': 3.2860984071459497e-06, 'Porto': 3.2860984071459497e-06, 'Nuovo': 1.6430492035729749e-06, 'anchored': 9.036770619651361e-06, 'stern-to': 1.6430492035729749e-06, 'Berth': 1.6430492035729749e-06, 'mole': 3.2860984071459497e-06, 'straddled': 2.4645738053594624e-06, 'laden': 5.750672212505412e-06, 'ammo': 4.107623008932437e-06, 'Delano': 1.6430492035729749e-06, 'despatched': 2.4645738053594624e-06, 'warfront': 1.6430492035729749e-06, 'unacquainted': 2.4645738053594624e-06, 'hideous': 9.036770619651361e-06, 'Axis': 4.107623008932437e-06, 'Influential': 1.6430492035729749e-06, 'poisonous': 4.929147610718925e-06, 'noxious': 2.4645738053594624e-06, 'inhumane': 4.107623008932437e-06, 'categorically': 1.6430492035729749e-06, 'consenting': 1.6430492035729749e-06, 'stockpiling': 1.6430492035729749e-06, 'depot': 3.2860984071459497e-06, 'retaliatory': 2.4645738053594624e-06, 'smokescreen': 1.6430492035729749e-06, 'incendiaries': 1.6430492035729749e-06, 'vile': 4.929147610718925e-06, 'cargo': 5.750672212505412e-06, '701st': 1.6430492035729749e-06, 'Beckstrom': 3.2860984071459497e-06, 'Cargo': 1.6430492035729749e-06, 'Secrecy': 1.6430492035729749e-06, 'nitrogen-mustard': 1.6430492035729749e-06, 'nestled': 3.2860984071459497e-06, 'decks': 5.750672212505412e-06, 'immemorial': 2.4645738053594624e-06, 'Me-210': 2.4645738053594624e-06, 'Maddalena': 1.6430492035729749e-06, 'convoy': 3.2860984071459497e-06, 'Bougie': 1.6430492035729749e-06, 'troopship': 1.6430492035729749e-06, 'reappeared': 3.2860984071459497e-06, 'alarmist': 1.6430492035729749e-06, 'Luftwaffe': 1.6430492035729749e-06, 'Peltz': 1.6430492035729749e-06, 'Blitz': 1.6430492035729749e-06, 'raids': 4.929147610718925e-06, 'Naples': 3.2860984071459497e-06, 'scouting': 3.2860984071459497e-06, "Bari's": 1.6430492035729749e-06, 'anti-aircraft': 2.4645738053594624e-06, 'squadron': 2.4645738053594624e-06, 'R.A.F.': 1.6430492035729749e-06, 'squadrons': 1.6430492035729749e-06, 'handmaiden': 1.6430492035729749e-06, 'Vesole': 4.929147610718925e-06, 'Bascom': 3.2860984071459497e-06, 'co-ordinate': 1.6430492035729749e-06, 'radar-controlled': 3.2860984071459497e-06, 'tracers': 2.4645738053594624e-06, "bomber's": 1.6430492035729749e-06, 'paradise': 4.929147610718925e-06, 'Britisher': 1.6430492035729749e-06, 'grimness': 1.6430492035729749e-06, 'Foggia': 1.6430492035729749e-06, 'stunned': 7.393721416078387e-06, 'flammable': 1.6430492035729749e-06, 'shook': 4.7648426903616267e-05, "he'd": 6.243586973577305e-05, 'supposing': 1.6430492035729749e-06, 'tarry': 1.6430492035729749e-06, 'Seaman': 4.929147610718925e-06, '2/c': 1.6430492035729749e-06, '1/c': 2.4645738053594624e-06, 'Rochford': 2.4645738053594624e-06, 'Lieutenant': 1.4787442832156774e-05, 'gazed': 6.5721968142918994e-06, 'gangplank': 1.6430492035729749e-06, 'Deck': 1.6430492035729749e-06, 'Cahill': 1.6430492035729749e-06, 'grins': 2.4645738053594624e-06, 'noncommittal': 2.4645738053594624e-06, "officer's": 1.1501344425010824e-05, 'Damned': 3.2860984071459497e-06, 'Vecchio': 7.393721416078387e-06, 'shiver': 4.107623008932437e-06, 'boggled': 1.6430492035729749e-06, 'Musmanno': 4.107623008932437e-06, 'Sorrentine': 1.6430492035729749e-06, "Musmanno's": 1.6430492035729749e-06, 'renovated': 3.2860984071459497e-06, 'schooner': 3.2860984071459497e-06, 'badly-needed': 1.6430492035729749e-06, 'olive': 4.107623008932437e-06, "Sorrentine's": 1.6430492035729749e-06, 'fluttering': 4.107623008932437e-06, 'snatched': 9.85829522143785e-06, 'savagely': 3.2860984071459497e-06, 'flashlight': 7.393721416078387e-06, 'laughed': 4.2719279292897344e-05, 'tinsel': 2.4645738053594624e-06, 'blips': 1.6430492035729749e-06, 'Fermate': 1.6430492035729749e-06, 'bellowed': 5.750672212505412e-06, 'crewmen': 1.6430492035729749e-06, 'Stop': 9.036770619651361e-06, 'eerily': 2.4645738053594624e-06, 'keening': 2.4645738053594624e-06, 'coughed': 2.4645738053594624e-06, 'chattered': 3.2860984071459497e-06, 'roared': 1.5608967433943262e-05, 'crashing': 6.5721968142918994e-06, 'airports': 4.107623008932437e-06, 'Balkans': 2.4645738053594624e-06, 'hundred-odd': 2.4645738053594624e-06, 'Junkers': 2.4645738053594624e-06, "88's": 1.6430492035729749e-06, 'battering': 2.4645738053594624e-06, 'invisible': 6.5721968142918994e-06, "crane's": 1.6430492035729749e-06, 'shine': 4.107623008932437e-06, 'unerring': 2.4645738053594624e-06, 'homing': 1.6430492035729749e-06, 'beacon': 4.929147610718925e-06, "MP's": 1.6430492035729749e-06, 'Merchant': 8.215246017864873e-06, 'imbedded': 4.107623008932437e-06, 'casks': 1.6430492035729749e-06, 'clambered': 5.750672212505412e-06, 'gunners': 2.4645738053594624e-06, 'valiantly': 1.6430492035729749e-06, 'blinding': 2.4645738053594624e-06, 'wounded': 1.97165904428757e-05, '20-mm': 1.6430492035729749e-06, 'Holds': 1.6430492035729749e-06, 'mortally': 1.6430492035729749e-06, 'Luckily': 2.4645738053594624e-06, 'erupt': 2.4645738053594624e-06, 'cries': 5.750672212505412e-06, 'merriment': 3.2860984071459497e-06, 'gaze': 1.0679819823224336e-05, 'staring': 2.218116424823516e-05, 'open-mouthed': 3.2860984071459497e-06, 'strangest': 1.6430492035729749e-06, 'confesses': 3.2860984071459497e-06, 'weird': 8.215246017864873e-06, 'deja': 6.5721968142918994e-06, 'vue': 6.5721968142918994e-06, 'previsions': 2.4645738053594624e-06, 'coincidences': 2.4645738053594624e-06, 'side-step': 1.6430492035729749e-06, 'grope': 1.6430492035729749e-06, 'pre-vision': 1.6430492035729749e-06, 'unscientific': 2.4645738053594624e-06, 'Maeterlinck': 1.6430492035729749e-06, 'mystified': 1.6430492035729749e-06, 'Rudyard': 1.6430492035729749e-06, 'scorn': 4.107623008932437e-06, 'psychical': 3.2860984071459497e-06, 'unreleased': 1.6430492035729749e-06, 'Myself': 1.6430492035729749e-06, 'stout': 2.4645738053594624e-06, 'irregular': 8.215246017864873e-06, 'slab': 7.393721416078387e-06, 'clasping': 3.2860984071459497e-06, 'whispered': 1.97165904428757e-05, 'Kipling': 1.6430492035729749e-06, 'overwhelmed': 3.2860984071459497e-06, 'wakeful': 4.929147610718925e-06, "Freud's": 2.4645738053594624e-06, 'ponder': 1.6430492035729749e-06, 'Dreams': 4.107623008932437e-06, 'mantic': 1.6430492035729749e-06, 'prophetic': 2.4645738053594624e-06, 'clairvoyance': 1.6430492035729749e-06, 'prevision': 2.4645738053594624e-06, 'retrovision': 1.6430492035729749e-06, 'continuities': 2.4645738053594624e-06, 'life-like': 2.4645738053594624e-06, 'hodge-podge': 1.6430492035729749e-06, 'Skeptics': 1.6430492035729749e-06, 'psychic': 3.2860984071459497e-06, 'dreamer': 2.4645738053594624e-06, 'imagery': 9.036770619651361e-06, 'subconsciously': 4.107623008932437e-06, 'impressing': 2.4645738053594624e-06, 'concurrent': 6.5721968142918994e-06, 'sensory': 8.215246017864873e-06, 'psycho-physiology': 1.6430492035729749e-06, 'Theory': 1.6430492035729749e-06, 'Perception': 2.4645738053594624e-06, 'Philosophies': 1.6430492035729749e-06, 'Ramsperger': 1.6430492035729749e-06, 'unexplained': 4.107623008932437e-06, 'retinal': 3.2860984071459497e-06, 'images': 3.0396410266100035e-05, 'theorize': 2.4645738053594624e-06, 'Hereby': 1.6430492035729749e-06, 'perceptive': 3.2860984071459497e-06, 'momentary': 5.750672212505412e-06, 'prehistoric': 2.4645738053594624e-06, 'ever-existent': 1.6430492035729749e-06, 'past-fantasy': 1.6430492035729749e-06, 'immensity': 2.4645738053594624e-06, 'journeys': 2.4645738053594624e-06, 'pulsation': 2.4645738053594624e-06, 'coexistent': 1.6430492035729749e-06, 'perpetuate': 4.929147610718925e-06, 'counterpart': 8.215246017864873e-06, 'inaudible': 2.4645738053594624e-06, 'intactible': 1.6430492035729749e-06, 'Consciousness': 1.6430492035729749e-06, 'progressions': 3.2860984071459497e-06, 'photographically': 1.6430492035729749e-06, 'bizarre': 5.750672212505412e-06, 'Hilprecht': 3.2860984071459497e-06, 'Assyrian': 2.4645738053594624e-06, 'Babylonian': 2.4645738053594624e-06, 'Kurigalzu': 1.6430492035729749e-06, '1300': 1.6430492035729749e-06, 'escorted': 4.929147610718925e-06, 'treasure': 3.2860984071459497e-06, 'Bel': 1.6430492035729749e-06, 'corroborated': 2.4645738053594624e-06, "priest's": 1.6430492035729749e-06, 'Cassite': 1.6430492035729749e-06, 'ostensibly': 1.6430492035729749e-06, "Hilprecht's": 1.6430492035729749e-06, 'fadeout': 1.6430492035729749e-06, 'substitution': 2.4645738053594624e-06, 'joblot': 1.6430492035729749e-06, "professor's": 1.6430492035729749e-06, 'gradient': 1.232286902679731e-05, 'Nippur': 1.6430492035729749e-06, 'forgetfulness': 3.2860984071459497e-06, "sleeper's": 1.6430492035729749e-06, 'obliteration': 2.4645738053594624e-06, 'withstands': 1.6430492035729749e-06, 'peculiarly': 7.393721416078387e-06, 'Depew': 4.107623008932437e-06, 'one-time': 3.2860984071459497e-06, 'nominate': 3.2860984071459497e-06, 'clinched': 1.6430492035729749e-06, 'psychologist': 9.036770619651361e-06, 'orator': 4.929147610718925e-06, 'nutrition': 6.5721968142918994e-06, 'assimilate': 2.4645738053594624e-06, 'handicaps': 1.6430492035729749e-06, 'Situated': 1.6430492035729749e-06, 'caring': 8.215246017864873e-06, 'lends': 4.107623008932437e-06, 'Improved': 1.6430492035729749e-06, 'farming': 1.3144393628583799e-05, 'sandy': 5.750672212505412e-06, 'quick-drying': 1.6430492035729749e-06, 'erosion': 5.750672212505412e-06, 'ghostly': 2.4645738053594624e-06, 'fertilizers': 3.2860984071459497e-06, 'insecticides': 2.4645738053594624e-06, 'contouring': 1.6430492035729749e-06, 'reminiscing': 1.6430492035729749e-06, 'Organic': 1.6430492035729749e-06, 'Gardening': 1.6430492035729749e-06, 'Nutrition': 1.6430492035729749e-06, "Bromfield's": 1.6430492035729749e-06, 'conservationist': 1.6430492035729749e-06, "Plowman's": 1.6430492035729749e-06, 'Folly': 4.107623008932437e-06, 'Faulkner': 1.8073541239302723e-05, 'herd': 1.889506584108921e-05, 'wastes': 5.750672212505412e-06, 'pails': 4.107623008932437e-06, 'shredder': 1.6430492035729749e-06, 'spreader': 1.6430492035729749e-06, 'mulching': 1.6430492035729749e-06, 'water-holding': 1.6430492035729749e-06, 'irrigate': 1.6430492035729749e-06, 'stooped': 3.2860984071459497e-06, 'Sniffing': 1.6430492035729749e-06, 'crumbly': 1.6430492035729749e-06, 'soils': 1.3144393628583799e-05, 'long-keeping': 1.6430492035729749e-06, 'enrichment': 3.2860984071459497e-06, 'fungicides': 1.6430492035729749e-06, 'carrots': 3.2860984071459497e-06, 'turnips': 1.6430492035729749e-06, 'rutabagas': 1.6430492035729749e-06, 'beets': 2.4645738053594624e-06, 'cabbage': 4.107623008932437e-06, 'squash': 2.4645738053594624e-06, 'rotenone': 1.6430492035729749e-06, 'Bio-Dynamic': 1.6430492035729749e-06, 'Starter': 1.6430492035729749e-06, 'wholewheat': 1.6430492035729749e-06, 'Adults': 1.6430492035729749e-06, 'whole-wheat': 5.750672212505412e-06, 'Homemade': 2.4645738053594624e-06, 'menus': 2.4645738053594624e-06, 'Colman': 3.2860984071459497e-06, 'freshly': 2.4645738053594624e-06, "Clark's": 1.6430492035729749e-06, 'deteriorate': 1.6430492035729749e-06, 'pours': 2.4645738053594624e-06, 'soy': 1.6430492035729749e-06, 'listens': 2.4645738053594624e-06, 'fragrant': 3.2860984071459497e-06, "Lillian's": 1.6430492035729749e-06, 'eyeing': 4.107623008932437e-06, 'freshly-ground': 1.6430492035729749e-06, 'cereal': 1.1501344425010824e-05, 'cereals': 4.107623008932437e-06, 'fresh-ground': 1.6430492035729749e-06, 'cornmeal': 2.4645738053594624e-06, 'buckshot': 1.6430492035729749e-06, 'voraciously': 1.6430492035729749e-06, 'Body-building': 1.6430492035729749e-06, 'Salads': 1.6430492035729749e-06, 'Vegetables': 1.6430492035729749e-06, 'liberally': 4.107623008932437e-06, 'freezer': 1.6430492035729749e-06, 'Home-made': 1.6430492035729749e-06, 'Sprouted': 1.6430492035729749e-06, 'salads': 2.4645738053594624e-06, 'suey': 1.6430492035729749e-06, 'sprouted': 2.4645738053594624e-06, 'Lots': 3.2860984071459497e-06, 'Hens': 1.6430492035729749e-06, 'roosters': 2.4645738053594624e-06, 'fertility': 9.036770619651361e-06, 'Organ': 1.6430492035729749e-06, 'puddings': 1.6430492035729749e-06, 'sulphured': 1.6430492035729749e-06, 'Apples': 1.6430492035729749e-06, 'Finding': 4.929147610718925e-06, 'Associates': 2.4645738053594624e-06, 'unsprayed': 1.6430492035729749e-06, 'Wheat-germ': 1.6430492035729749e-06, "brewer's": 1.6430492035729749e-06, 'kelp': 2.4645738053594624e-06, 'spaghetti': 1.6430492035729749e-06, 'loaves': 3.2860984071459497e-06, 'Raw': 1.6430492035729749e-06, 'wheat-germ': 1.6430492035729749e-06, 'Drinking': 1.6430492035729749e-06, 'insecticide': 1.6430492035729749e-06, 'residues': 3.2860984071459497e-06, 'conserves': 1.6430492035729749e-06, 'Wholesome': 1.6430492035729749e-06, 'spilling': 3.2860984071459497e-06, 'underfoot': 4.107623008932437e-06, 'maple': 4.107623008932437e-06, 'hikes': 4.107623008932437e-06, 'munch': 1.6430492035729749e-06, 'Candy': 2.4645738053594624e-06, 'Nourishing': 1.6430492035729749e-06, 'Soup': 2.4645738053594624e-06, 'Rugged': 1.6430492035729749e-06, 'skating': 1.6430492035729749e-06, 'hiking': 2.4645738053594624e-06, 'Healthier': 1.6430492035729749e-06, 'shampoo': 2.4645738053594624e-06, 'sheen': 2.4645738053594624e-06, 'complexion': 5.750672212505412e-06, 'Buffeted': 1.6430492035729749e-06, 'swirling': 4.107623008932437e-06, 'biplane': 2.4645738053594624e-06, 'struggled': 7.393721416078387e-06, 'northward': 4.929147610718925e-06, 'Northfield': 3.2860984071459497e-06, 'Wires': 1.6430492035729749e-06, 'whined': 1.6430492035729749e-06, 'bundled': 3.2860984071459497e-06, 'peered': 1.7252016637516235e-05, 'grinned': 2.464573805359462e-05, 'plume': 2.4645738053594624e-06, 'idled': 1.6430492035729749e-06, 'gravel': 8.215246017864873e-06, 'labored': 4.929147610718925e-06, 'ruptured': 2.4645738053594624e-06, 'roadbed': 1.6430492035729749e-06, 'girders': 1.6430492035729749e-06, 'prostrate': 2.4645738053594624e-06, 'Flood': 2.4645738053594624e-06, 'cloudburst': 3.2860984071459497e-06, 'Railway': 2.4645738053594624e-06, 'postmasters': 1.6430492035729749e-06, 'shoveled': 2.4645738053594624e-06, 'muck': 1.6430492035729749e-06, 'rights-of-way': 1.6430492035729749e-06, "flood's": 1.6430492035729749e-06, 'Burlington': 5.750672212505412e-06, 'ferried': 1.6430492035729749e-06, 'undisrupted': 1.6430492035729749e-06, 'Concord': 9.036770619651361e-06, 'easing': 3.2860984071459497e-06, "Burlington's": 1.6430492035729749e-06, 'Montpelier': 6.5721968142918994e-06, 'aviator': 3.2860984071459497e-06, 'Burns': 7.393721416078387e-06, 'hastily-summoned': 1.6430492035729749e-06, 'wide-winged': 1.6430492035729749e-06, 'Jenny': 7.393721416078387e-06, 'DeHaviland': 1.6430492035729749e-06, 'two-seaters': 1.6430492035729749e-06, 'sod': 3.2860984071459497e-06, 'flood-ravaged': 1.6430492035729749e-06, 'hillside': 8.215246017864873e-06, 'takeoffs': 2.4645738053594624e-06, 'landings': 2.4645738053594624e-06, 'Barre': 4.929147610718925e-06, 'crumpled': 4.107623008932437e-06, 'Anticipating': 1.6430492035729749e-06, 'Granite': 1.6430492035729749e-06, 'quarrymen': 1.6430492035729749e-06, '172nd': 1.6430492035729749e-06, 'Millstone': 1.6430492035729749e-06, 'Aviation': 3.2860984071459497e-06, 'flyers': 2.4645738053594624e-06, 'hops': 1.6430492035729749e-06, 'hob': 1.6430492035729749e-06, 'recently-passed': 1.6430492035729749e-06, 'empowering': 1.6430492035729749e-06, 'clogging': 2.4645738053594624e-06, 'terminals': 4.107623008932437e-06, 'flier': 1.6430492035729749e-06, 'Fogg': 1.97165904428757e-05, 'Englander': 4.929147610718925e-06, 'barnstormer': 1.6430492035729749e-06, 'Tall': 2.4645738053594624e-06, 'wiry': 6.5721968142918994e-06, 'racked': 1.6430492035729749e-06, 'Piloting': 1.6430492035729749e-06, 'Curtiss': 2.4645738053594624e-06, 'MF': 1.6430492035729749e-06, 'Winnipesaukee': 1.6430492035729749e-06, 'inaugurated': 4.107623008932437e-06, 'Delivery': 2.4645738053594624e-06, "Lindbergh's": 1.6430492035729749e-06, 'aviators': 1.6430492035729749e-06, 'legendary': 5.750672212505412e-06, 'Public-spirited': 1.6430492035729749e-06, 'backers': 4.107623008932437e-06, 'Waco': 4.929147610718925e-06, '225/hp': 1.6430492035729749e-06, 'Whirlwind': 1.6430492035729749e-06, 'silver-painted': 1.6430492035729749e-06, '22-1/2': 1.6430492035729749e-06, 'On-to-Spokane': 1.6430492035729749e-06, 'leak': 2.4645738053594624e-06, 'wry-faced': 1.6430492035729749e-06, 'airline': 2.4645738053594624e-06, 'unsafe': 1.6430492035729749e-06, 'roundabout': 2.4645738053594624e-06, 'begged': 1.1501344425010824e-05, 'safer': 4.929147610718925e-06, 'flat-topped': 1.6430492035729749e-06, 'countered': 2.4645738053594624e-06, 'uphill': 1.6430492035729749e-06, 'downwind': 3.2860984071459497e-06, 'wreckage': 2.4645738053594624e-06, 'snow-covered': 1.6430492035729749e-06, 'Aide': 1.6430492035729749e-06, 'Reuben': 3.2860984071459497e-06, 'Sleight': 1.6430492035729749e-06, 'Wolfe': 7.393721416078387e-06, 'Postmaster': 4.107623008932437e-06, 'McKenna': 1.6430492035729749e-06, 'scouted': 1.6430492035729749e-06, 'passable': 1.6430492035729749e-06, 'Somers': 6.5721968142918994e-06, 'Barre-Montpelier': 1.6430492035729749e-06, 'pouches': 2.4645738053594624e-06, 'telegram': 7.393721416078387e-06, 'airplanes': 9.036770619651361e-06, "Fogg's": 3.2860984071459497e-06, 'one-man': 4.929147610718925e-06, 'one-plane': 1.6430492035729749e-06, 'sub-freezing': 1.6430492035729749e-06, 'vagaries': 1.6430492035729749e-06, 'crawled': 1.7252016637516235e-05, 'togs': 1.6430492035729749e-06, 'old-style': 2.4645738053594624e-06, 'sheepskin': 3.2860984071459497e-06, 'sheep-lined': 1.6430492035729749e-06, 'helmet': 1.6430492035729749e-06, 'goggles': 1.6430492035729749e-06, 'mittens': 2.4645738053594624e-06, "airman's": 1.6430492035729749e-06, "Weren't": 1.6430492035729749e-06, 'Became': 1.6430492035729749e-06, 'frosty': 1.6430492035729749e-06, 'wind-velocity': 1.6430492035729749e-06, 'visibility': 4.107623008932437e-06, 'Ceilings': 1.6430492035729749e-06, 'Hartwell': 1.6430492035729749e-06, 'Caleb': 1.6430492035729749e-06, 'Marston': 3.2860984071459497e-06, 'drafty': 2.4645738053594624e-06, 'hangar': 1.6430492035729749e-06, "He'd": 1.97165904428757e-05, 'Wishing': 1.6430492035729749e-06, 'aviation': 2.4645738053594624e-06, 'disregarding': 3.2860984071459497e-06, 'sleet': 1.6430492035729749e-06, 'clocks': 7.393721416078387e-06, 'rackety': 2.4645738053594624e-06, 'bark': 1.232286902679731e-05, "Whirlwind's": 1.6430492035729749e-06, 'Plane': 2.4645738053594624e-06, 'reckoning': 3.2860984071459497e-06, 'threading': 3.2860984071459497e-06, 'overcast': 8.215246017864873e-06, 'mist': 9.85829522143785e-06, 'socked': 1.6430492035729749e-06, 'chandelle': 1.6430492035729749e-06, 'Ottauquechee': 1.6430492035729749e-06, 'Danville': 1.6430492035729749e-06, 'ticked': 2.4645738053594624e-06, 'idling': 2.4645738053594624e-06, 'messenger': 7.393721416078387e-06, 'deduce': 3.2860984071459497e-06, 'meadows': 4.929147610718925e-06, 'Instrument': 3.2860984071459497e-06, 'Ground': 2.4645738053594624e-06, 'Approach': 1.6430492035729749e-06, 'thawed': 3.2860984071459497e-06, 'shuttled': 1.6430492035729749e-06, 'barnyards': 1.6430492035729749e-06, 'repairmen': 2.4645738053594624e-06, 'near-misses': 1.6430492035729749e-06, 'flip': 3.2860984071459497e-06, 'miscalculated': 1.6430492035729749e-06, 'barracks': 3.2860984071459497e-06, 'revved': 1.6430492035729749e-06, 'slipstream': 1.6430492035729749e-06, 'Tracks': 1.6430492035729749e-06, 'powdery': 3.2860984071459497e-06, 'old-timers': 1.6430492035729749e-06, 'Compulsory': 1.6430492035729749e-06, 'looms': 2.4645738053594624e-06, 'Sixty-five': 2.4645738053594624e-06, 'hazy': 4.929147610718925e-06, 'penman': 1.6430492035729749e-06, 'stickler': 1.6430492035729749e-06, 'penny': 4.107623008932437e-06, 'dictionary': 4.518385309825681e-05, 'fogy': 1.6430492035729749e-06, 'out-moded': 1.6430492035729749e-06, 'I.B.M.': 1.6430492035729749e-06, 'Conferences': 4.107623008932437e-06, 'merrily': 2.4645738053594624e-06, 'invalids': 1.6430492035729749e-06, 'serenity': 4.929147610718925e-06, 'moan': 1.6430492035729749e-06, 'bewail': 1.6430492035729749e-06, 'unhappiness': 5.750672212505412e-06, 'unabridged': 1.6430492035729749e-06, 'Believe': 1.6430492035729749e-06, 'Find': 4.929147610718925e-06, 'puttering': 2.4645738053594624e-06, 'amaze': 3.2860984071459497e-06, 'knack': 4.107623008932437e-06, 'doll': 9.036770619651361e-06, 'hem': 4.107623008932437e-06, 'buttonholes': 1.6430492035729749e-06, 'crochet': 1.6430492035729749e-06, 'tat': 1.6430492035729749e-06, 'hooking': 1.6430492035729749e-06, 'braiding': 1.6430492035729749e-06, 'rugs': 4.107623008932437e-06, "How's": 8.215246017864873e-06, 'mosaic': 4.107623008932437e-06, 'ceramics': 3.2860984071459497e-06, 'yearn': 1.6430492035729749e-06, 'cakes': 3.2860984071459497e-06, 'candies': 2.4645738053594624e-06, 'calorie': 1.6430492035729749e-06, 'hands-off-all-sweets': 1.6430492035729749e-06, 'carve': 3.2860984071459497e-06, 'dandy': 2.4645738053594624e-06, 'gadgets': 6.5721968142918994e-06, 'housework': 2.4645738053594624e-06, 'scrub': 7.393721416078387e-06, 'forte': 4.107623008932437e-06, 'Ever': 9.85829522143785e-06, 'slips': 7.393721416078387e-06, 'dejection': 1.6430492035729749e-06, 'plugging': 1.6430492035729749e-06, 'hobbies': 3.2860984071459497e-06, 'timetables': 1.6430492035729749e-06, 'dolls': 1.0679819823224336e-05, 'hobby': 4.107623008932437e-06, 'clippings': 4.107623008932437e-06, "n'th": 1.6430492035729749e-06, 'Travel': 5.750672212505412e-06, 'Luck': 2.4645738053594624e-06, 'creativity': 8.215246017864873e-06, 'Noah': 1.6430492035729749e-06, 'coop': 3.2860984071459497e-06, 'procreative': 2.4645738053594624e-06, 'non-instinctive': 1.6430492035729749e-06, 'burrow': 4.107623008932437e-06, 'hive': 2.4645738053594624e-06, 'sameness': 2.4645738053594624e-06, 'specie': 2.4645738053594624e-06, 'forbears': 2.4645738053594624e-06, 'projecting': 5.750672212505412e-06, 'Jules': 1.6430492035729749e-06, 'Verne': 1.6430492035729749e-06, 'Tennyson': 2.4645738053594624e-06, 'blitzes': 1.6430492035729749e-06, 'acrobats': 1.6430492035729749e-06, 'remake': 2.4645738053594624e-06, 'artisan': 2.4645738053594624e-06, 'over-occupied': 1.6430492035729749e-06, 'forestall': 4.929147610718925e-06, 'maturing': 3.2860984071459497e-06, 'Huxley': 5.750672212505412e-06, 'Uniqueness': 1.6430492035729749e-06, 'procreativity': 1.6430492035729749e-06, 'Victorian': 7.393721416078387e-06, 'nowadays': 9.036770619651361e-06, 'honeymooners': 1.6430492035729749e-06, 'sex-manuals': 1.6430492035729749e-06, 'gynecologists': 1.6430492035729749e-06, 'Joking': 2.4645738053594624e-06, 'newly-married': 1.6430492035729749e-06, 'intercourse': 8.215246017864873e-06, 'Privacy': 1.6430492035729749e-06, 'stateroom': 2.4645738053594624e-06, 'unhurried': 3.2860984071459497e-06, 'confiding': 2.4645738053594624e-06, 'consummation': 4.107623008932437e-06, 'virginity': 4.107623008932437e-06, 'hymen': 1.0679819823224336e-05, 'profuse': 2.4645738053594624e-06, 'needless': 4.929147610718925e-06, 'membrane': 5.750672212505412e-06, 'vagina': 9.036770619651361e-06, 'Hymen': 1.6430492035729749e-06, 'exaggerations': 1.6430492035729749e-06, 'folk-lore': 1.6430492035729749e-06, 'hymens': 1.6430492035729749e-06, 'Extreme': 2.4645738053594624e-06, 'newly-weds': 1.6430492035729749e-06, 'Gynecologists': 1.6430492035729749e-06, 'manuals': 4.107623008932437e-06, 'foresaw': 2.4645738053594624e-06, 'incise': 1.6430492035729749e-06, 'dilate': 2.4645738053594624e-06, 'outgrowth': 1.6430492035729749e-06, 'dilating': 1.6430492035729749e-06, 'dilation': 2.4645738053594624e-06, 'childbirth': 3.2860984071459497e-06, 'dilatation': 3.2860984071459497e-06, 'instinctive': 2.4645738053594624e-06, 'reflex': 3.2860984071459497e-06, 'involuntarily': 1.6430492035729749e-06, 'vaginal': 6.5721968142918994e-06, 'intrusion': 3.2860984071459497e-06, 'learns': 9.036770619651361e-06, 'gynecological': 1.6430492035729749e-06, 'Folk-lore': 1.6430492035729749e-06, 'erotic': 7.393721416078387e-06, 'prolongation': 1.6430492035729749e-06, 'fore-play': 1.6430492035729749e-06, 'caresses': 4.929147610718925e-06, 'relaxes': 3.2860984071459497e-06, 'dilates': 1.6430492035729749e-06, 'lubricant': 2.4645738053594624e-06, 'Extensive': 3.2860984071459497e-06, 'physicians': 4.929147610718925e-06, 'anterior': 4.929147610718925e-06, 'posterior': 5.750672212505412e-06, 'urethra': 1.6430492035729749e-06, 'dilated': 2.4645738053594624e-06, 'Locker-room': 1.6430492035729749e-06, 'prolongs': 1.6430492035729749e-06, 'virility': 3.2860984071459497e-06, 'decisiveness': 2.4645738053594624e-06, 'Ruthlessness': 1.6430492035729749e-06, 'psychologically': 3.2860984071459497e-06, 'inflame': 1.6430492035729749e-06, 'deep-seated': 2.4645738053594624e-06, 'complicate': 2.4645738053594624e-06, 'facilitate': 4.929147610718925e-06, 'premature': 3.2860984071459497e-06, 'dishearten': 2.4645738053594624e-06, 'wisest': 1.6430492035729749e-06, 'momentarily': 4.107623008932437e-06, 'self-centered': 2.4645738053594624e-06, 'accumulated': 9.036770619651361e-06, 'orgasm': 6.5721968142918994e-06, 'nude': 1.6430492035729746e-05, 'Nude': 1.6430492035729749e-06, 'Kenneth': 5.750672212505412e-06, 'arouses': 2.4645738053594624e-06, 'divergence': 2.4645738053594624e-06, 'Kinsey': 1.6430492035729749e-06, 'Differences': 1.6430492035729749e-06, 'nudity': 2.4645738053594624e-06, 'matron': 3.2860984071459497e-06, 'nudist': 1.6430492035729749e-06, 'Attempts': 2.4645738053594624e-06, 'censorship': 4.929147610718925e-06, 'crusader': 1.6430492035729749e-06, 'semi-nude': 1.6430492035729749e-06, 'lewd': 3.2860984071459497e-06, 'pornographic': 1.6430492035729749e-06, 'proponent': 2.4645738053594624e-06, 'epitome': 2.4645738053594624e-06, 'bump': 4.929147610718925e-06, 'nudism': 1.6430492035729749e-06, 'unselfish': 1.6430492035729749e-06, 'reversed': 7.393721416078387e-06, 'counselors': 3.2860984071459497e-06, 'aye': 1.6430492035729749e-06, 'nay': 2.4645738053594624e-06, 'asserting': 4.107623008932437e-06, 'meekest': 1.6430492035729749e-06, 'submissive': 4.107623008932437e-06, 'emancipated': 2.4645738053594624e-06, 'Steichen': 9.036770619651361e-06, 'Calderone': 5.750672212505412e-06, 'Planned': 3.2860984071459497e-06, 'Parenthood': 3.2860984071459497e-06, 'Release': 1.6430492035729749e-06, 'Sexual': 1.6430492035729749e-06, 'Tensions': 1.6430492035729749e-06, 'self-assertive': 2.4645738053594624e-06, 'unhealthy': 4.107623008932437e-06, 'sexually': 5.750672212505412e-06, 'heedless': 2.4645738053594624e-06, 'cheated': 4.107623008932437e-06, 'bestial': 1.6430492035729749e-06, 'wifely': 1.6430492035729749e-06, 'demeans': 1.6430492035729749e-06, 'saps': 1.6430492035729749e-06, 'robs': 1.6430492035729749e-06, 'masculinity': 1.6430492035729749e-06, 'maleness': 3.2860984071459497e-06, 'embezzle': 1.6430492035729749e-06, 'Caught': 1.6430492035729749e-06, 'custody': 2.4645738053594624e-06, 'counselor': 4.107623008932437e-06, 'ironing': 4.929147610718925e-06, 'PTA': 3.2860984071459497e-06, 'Thursday-night': 1.6430492035729749e-06, 'dollars-and-cents': 1.6430492035729749e-06, 'overtures': 3.2860984071459497e-06, 'sacrificed': 2.4645738053594624e-06, 'well-educated': 4.107623008932437e-06, 'demandingly': 1.6430492035729749e-06, 'Hemmed': 1.6430492035729749e-06, 'submitting': 5.750672212505412e-06, 'career-bound': 1.6430492035729749e-06, 'topsy-turvy': 1.6430492035729749e-06, 'monopolize': 4.107623008932437e-06, 'Schillinger': 4.107623008932437e-06, 'Psychotherapy': 1.6430492035729749e-06, 'hover': 4.107623008932437e-06, 'anxiously': 8.215246017864873e-06, 'domineering': 2.4645738053594624e-06, 'henpecked': 1.6430492035729749e-06, 'shrewish': 2.4645738053594624e-06, 'Milquetoasts': 1.6430492035729749e-06, 'threshhold': 1.6430492035729749e-06, 'homosexual': 2.4645738053594624e-06, 'Theodor': 1.6430492035729749e-06, 'Reik': 1.6430492035729749e-06, 'aggressor': 2.4645738053594624e-06, 'bacon': 7.393721416078387e-06, 'roost': 1.6430492035729749e-06, 'bull-roaring': 1.6430492035729749e-06, 'Grandma': 1.0679819823224336e-05, 'Hilliard': 1.6430492035729749e-06, 'gynecologist': 1.6430492035729749e-06, "'90s": 1.6430492035729749e-06, 'shamefacedly': 1.6430492035729749e-06, 'marketplace': 3.2860984071459497e-06, 'flapper': 1.6430492035729749e-06, 'Virtually': 1.6430492035729749e-06, 'postwar': 9.85829522143785e-06, 'Circumstances': 2.4645738053594624e-06, 'child-rearing': 1.6430492035729749e-06, 'money-handling': 1.6430492035729749e-06, 'tradesmen': 1.6430492035729749e-06, '20-year-old': 2.4645738053594624e-06, 'arousal': 3.2860984071459497e-06, 'paradoxically': 7.393721416078387e-06, 'knuckle': 3.2860984071459497e-06, 'flurried': 1.6430492035729749e-06, 'extramarital': 1.6430492035729749e-06, 'passivity': 1.6430492035729749e-06, 'bed-hopped': 1.6430492035729749e-06, 'butting': 1.6430492035729749e-06, 'assertive': 2.4645738053594624e-06, 'courted': 1.6430492035729749e-06, 'coaxed': 3.2860984071459497e-06, "couple's": 1.6430492035729749e-06, 'Diana': 6.5721968142918994e-06, 'Harrington': 6.5721968142918994e-06, 'D.A.': 3.2860984071459497e-06, 'prostitute': 5.750672212505412e-06, 'Diane': 1.232286902679731e-05, 'D.O.A.': 1.6430492035729749e-06, 'trollop': 1.6430492035729749e-06, 'hid': 5.750672212505412e-06, 'ash-blonde': 1.6430492035729749e-06, 'Jelke': 6.5721968142918994e-06, 'oleomargarine': 1.6430492035729749e-06, 'Minot': 1.6430492035729749e-06, 'play-girl': 1.6430492035729749e-06, 'masterminding': 1.6430492035729749e-06, 'searched': 8.215246017864873e-06, 'swank': 1.6430492035729749e-06, 'Clad': 1.6430492035729749e-06, 'Liebler': 1.6430492035729749e-06, 'arraigning': 1.6430492035729749e-06, 'tycoon': 1.6430492035729749e-06, 'Deauville': 2.4645738053594624e-06, 'Pulley': 7.393721416078387e-06, 'Bey': 5.750672212505412e-06, 'procurer': 3.2860984071459497e-06, 'Farouk': 4.929147610718925e-06, 'sobbingly': 1.6430492035729749e-06, 'underestimated': 2.4645738053594624e-06, 'teenager': 2.4645738053594624e-06, 'chaperone': 1.6430492035729749e-06, 'Brew': 2.4645738053594624e-06, 'wide-eyed': 1.6430492035729749e-06, 'ex-fighter': 1.6430492035729749e-06, 'Warfield': 1.6430492035729749e-06, 'phony': 1.0679819823224336e-05, 'audition': 3.2860984071459497e-06, 'gushed': 4.929147610718925e-06, "somebody's": 4.107623008932437e-06, 'good-night': 1.6430492035729749e-06, 'scream': 1.1501344425010824e-05, 'financier': 2.4645738053594624e-06, "blonde's": 3.2860984071459497e-06, 'yearnings': 2.4645738053594624e-06, 'gamblers': 4.929147610718925e-06, 'X': 1.1501344425010824e-05, 'croupier': 1.6430492035729749e-06, 'Smarter': 1.6430492035729749e-06, 'casino': 1.6430492035729749e-06, "Paris'": 1.6430492035729749e-06, 'beautifully-built': 1.6430492035729749e-06, 'high-tailed': 1.6430492035729749e-06, 'teamed': 2.4645738053594624e-06, 'fiddling': 1.6430492035729749e-06, 'Nero': 3.2860984071459497e-06, 'envious': 1.6430492035729749e-06, 'revels': 1.6430492035729749e-06, 'swanky': 1.6430492035729749e-06, 'Excelsior': 3.2860984071459497e-06, 'halls': 3.2860984071459497e-06, 'screaming': 1.4787442832156774e-05, 'Discreet': 1.6430492035729749e-06, "suite's": 1.6430492035729749e-06, "Diane's": 4.107623008932437e-06, 'screamed': 1.4787442832156774e-05, 'luxurious': 5.750672212505412e-06, 'beguiling': 3.2860984071459497e-06, 'lass': 1.6430492035729749e-06, 'auditioning': 1.6430492035729749e-06, 'servitors': 1.6430492035729749e-06, 'Semiramis': 1.6430492035729749e-06, 'impatient': 9.036770619651361e-06, 'pimp': 3.2860984071459497e-06, 'Middle-Eastern': 1.6430492035729749e-06, 'Egyptians': 3.2860984071459497e-06, 'buzzed': 2.4645738053594624e-06, 'Tewfik': 1.6430492035729749e-06, 'Badrawi': 1.6430492035729749e-06, 'Mohammed': 1.6430492035729749e-06, 'Gaafer': 1.6430492035729749e-06, 'overthrown': 3.2860984071459497e-06, 'cagey': 2.4645738053594624e-06, 'unromantic': 1.6430492035729749e-06, "Attorney's": 1.6430492035729749e-06, 'comely': 1.6430492035729749e-06, 'courtesan': 2.4645738053594624e-06, 'Detention': 1.6430492035729749e-06, 'overcrowded': 3.2860984071459497e-06, "Vesuvio's": 1.6430492035729749e-06, 'Newspapers': 1.6430492035729749e-06, 'co-operating': 1.6430492035729749e-06, 'Bolivia': 1.6430492035729749e-06, 'decorated': 4.929147610718925e-06, 'littered': 4.107623008932437e-06, 'autopsy': 3.2860984071459497e-06, 'morphine': 1.6430492035729749e-06, 'dope': 2.4645738053594624e-06, 'bragged': 2.4645738053594624e-06, '$5-8,000': 1.6430492035729749e-06, 'bracket': 1.6430492035729749e-06, 'snazzy': 1.6430492035729749e-06, 'neon-lit': 2.4645738053594624e-06, 'chromium-plated': 1.6430492035729749e-06, 'knowingly': 4.107623008932437e-06, 'Claire': 1.3965918230370285e-05, 'Shaefer': 6.5721968142918994e-06, 'Bakersfield': 1.6430492035729749e-06, 'squeezing': 3.2860984071459497e-06, 'presto': 1.6430492035729749e-06, 'kidney': 5.750672212505412e-06, 'disorder': 6.5721968142918994e-06, 'ozone': 3.2860984071459497e-06, 'applicator': 1.6430492035729749e-06, 'diseased': 1.6430492035729749e-06, "Shaefer's": 1.6430492035729749e-06, 'pseudo-scientific': 1.6430492035729749e-06, 'mumbo-jumbo': 1.6430492035729749e-06, 'Continuing': 4.107623008932437e-06, 'cancer-ridden': 1.6430492035729749e-06, 'shrieked': 4.107623008932437e-06, '97': 4.107623008932437e-06, 'ailment': 4.107623008932437e-06, 'sage': 2.4645738053594624e-06, 'tumors': 7.393721416078387e-06, 'cysts': 3.2860984071459497e-06, "Lee's": 3.2860984071459497e-06, 'Pure': 2.4645738053594624e-06, 'Inspection': 1.6430492035729749e-06, 'quack': 8.215246017864873e-06, "friend's": 2.4645738053594624e-06, 'convicting': 1.6430492035729749e-06, 'Practices': 3.2860984071459497e-06, 'misbranded': 1.6430492035729749e-06, "days'": 2.4645738053594624e-06, 'quackery': 5.750672212505412e-06, 'quacks': 7.393721416078387e-06, 'fatten': 1.6430492035729749e-06, 'miseries': 2.4645738053594624e-06, 'luring': 1.6430492035729749e-06, 'Rube': 1.6430492035729749e-06, 'metals': 5.750672212505412e-06, 'wires': 1.0679819823224336e-05, 'flashing': 5.750672212505412e-06, 'ticks': 2.4645738053594624e-06, 'buzzes': 2.4645738053594624e-06, 'capitalizing': 2.4645738053594624e-06, 'translating': 2.4645738053594624e-06, 'vocabulary': 1.0679819823224336e-05, 'huckster': 2.4645738053594624e-06, 'fake': 9.036770619651361e-06, 'impotence': 2.4645738053594624e-06, 'faker': 1.6430492035729749e-06, 'anaprapath': 1.6430492035729749e-06, 'physiotherapist': 1.6430492035729749e-06, 'electrotherapist': 1.6430492035729749e-06, 'naturopath': 1.6430492035729749e-06, 'sanipractor': 2.4645738053594624e-06, 'cultist': 2.4645738053594624e-06, 'masseur': 3.2860984071459497e-06, 'letterhead': 1.6430492035729749e-06, 'gallus-snapping': 1.6430492035729749e-06, 'hawker': 1.6430492035729749e-06, 'FDA': 2.4645738053594624e-06, 'Ghadiali': 1.6430492035729749e-06, 'Abrams': 1.6430492035729749e-06, 'Reich': 5.750672212505412e-06, 'distributing': 4.107623008932437e-06, '2000': 4.929147610718925e-06, 'Authorities': 3.2860984071459497e-06, 'Frauds': 1.6430492035729749e-06, 'Gross': 3.368250867324598e-05, '$1020': 1.6430492035729749e-06, '$4200': 1.6430492035729749e-06, 'chiropractor': 1.6430492035729749e-06, 'radioclast': 1.6430492035729749e-06, 'diagnometer': 1.6430492035729749e-06, 'Multiply': 5.750672212505412e-06, 'conned': 1.6430492035729749e-06, 'AMA': 1.6430492035729749e-06, 'BBB': 3.2860984071459497e-06, '$610': 1.6430492035729749e-06, 'charlatans': 1.6430492035729749e-06, 'ACS': 1.6430492035729749e-06, 'Arthritis': 1.6430492035729749e-06, 'Rheumatism': 1.6430492035729749e-06, 'loot': 3.2860984071459497e-06, 'preying': 1.6430492035729749e-06, 'callously': 1.6430492035729749e-06, 'ghouls': 2.4645738053594624e-06, 'Typically': 3.2860984071459497e-06, 'townsman': 1.6430492035729749e-06, 'bilked': 2.4645738053594624e-06, 'practitioner': 2.4645738053594624e-06, 'incurable': 2.4645738053594624e-06, 'hard-earned': 1.6430492035729749e-06, "chiropractor's": 1.6430492035729749e-06, 'Hepker': 1.6430492035729749e-06, 'Fraud': 1.6430492035729749e-06, 'arsenic': 1.6430492035729749e-06, 'strychnine': 4.107623008932437e-06, "Fraud's": 2.4645738053594624e-06, 'diabetic': 2.4645738053594624e-06, 'relies': 4.107623008932437e-06, 'insulin': 3.2860984071459497e-06, 'spike': 2.4645738053594624e-06, 'barium': 1.6430492035729749e-06, 'chloride': 4.929147610718925e-06, 'Vrilium': 1.6430492035729749e-06, '$306': 1.6430492035729749e-06, 'Hang': 2.4645738053594624e-06, 'Hull': 3.2860984071459497e-06, 'drugless': 1.6430492035729749e-06, 'healer': 2.4645738053594624e-06, 'Spokane': 2.4645738053594624e-06, 'diagnosed': 2.4645738053594624e-06, 'radionic': 1.6430492035729749e-06, 'twirling': 4.929147610718925e-06, 'knobs': 1.6430492035729749e-06, 'prescription': 4.929147610718925e-06, 'compresses': 3.2860984071459497e-06, '10-day': 1.6430492035729749e-06, 'T.B.': 1.6430492035729749e-06, '$35,823': 1.6430492035729749e-06, 'ghoul': 1.6430492035729749e-06, 'reconditioning': 1.6430492035729749e-06, '$185': 1.6430492035729749e-06, 'Postal': 2.4645738053594624e-06, 'Stephens': 4.929147610718925e-06, 'prosecuted': 4.929147610718925e-06, 'cures': 3.2860984071459497e-06, 'oldsters': 2.4645738053594624e-06, 'Jannsen': 1.6430492035729749e-06, "FDA's": 1.6430492035729749e-06, 'Quacks': 1.6430492035729749e-06, 'sufferers': 1.6430492035729749e-06, 'arthritis': 2.4645738053594624e-06, 'rheumatism': 2.4645738053594624e-06, 'scrape': 3.2860984071459497e-06, 'avarice': 2.4645738053594624e-06, 'Ten-year-old': 1.6430492035729749e-06, 'quarrelsome': 2.4645738053594624e-06, "Dick's": 2.4645738053594624e-06, 'classmate': 3.2860984071459497e-06, "boys'": 3.2860984071459497e-06, 'nicknamed': 1.6430492035729749e-06, 'Bugs': 3.2860984071459497e-06, 'Bunny': 1.6430492035729749e-06, 'protruded': 4.107623008932437e-06, 'orthodontist': 8.215246017864873e-06, 'dentist': 1.0679819823224336e-05, 'specializes': 1.6430492035729749e-06, 'realigning': 1.6430492035729749e-06, 'jaws': 9.036770619651361e-06, 'co-operated': 1.6430492035729749e-06, 'whole-heartedly': 1.6430492035729749e-06, 'orthodontic': 7.393721416078387e-06, 'Brodie': 9.036770619651361e-06, 'orthodontics': 3.2860984071459497e-06, 'tooth-straightening': 1.6430492035729749e-06, 'Tooth': 2.4645738053594624e-06, 'occlusion': 2.4645738053594624e-06, "dentist's": 3.2860984071459497e-06, 'Malocclusion': 2.4645738053594624e-06, 'malocclusion': 4.107623008932437e-06, 'protruding': 3.2860984071459497e-06, 'jawbone': 1.6430492035729749e-06, 'malformations': 1.6430492035729749e-06, 'protrusion': 1.6430492035729749e-06, 'Crooked': 1.6430492035729749e-06, 'Front': 4.107623008932437e-06, 'lowers': 1.6430492035729749e-06, 'eyeteeth': 1.6430492035729749e-06, 'protrude': 1.6430492035729749e-06, 'fangs': 2.4645738053594624e-06, 'hereditary': 2.4645738053594624e-06, 'predisposition': 4.107623008932437e-06, 'deformity': 3.2860984071459497e-06, 'thumb-': 1.6430492035729749e-06, 'finger-sucking': 1.6430492035729749e-06, 'tongue-thrusting': 1.6430492035729749e-06, 'lip-sucking': 1.6430492035729749e-06, 'sucking': 7.393721416078387e-06, 'suck': 4.929147610718925e-06, 'thumbs': 3.2860984071459497e-06, "youngster's": 1.6430492035729749e-06, 'thumb-sucking': 1.6430492035729749e-06, 'molar': 1.6430492035729749e-06, 'narrowing': 4.107623008932437e-06, 'jumble': 4.107623008932437e-06, 'embarrassed': 7.393721416078387e-06, 'malformed': 4.107623008932437e-06, "Stewart's": 1.6430492035729749e-06, 'bad-fitting': 1.6430492035729749e-06, 'alignment': 4.107623008932437e-06, 'pyorrhea': 1.6430492035729749e-06, 'jammed-together': 1.6430492035729749e-06, 'trapping': 2.4645738053594624e-06, 'prolong': 1.6430492035729749e-06, 'interferes': 2.4645738053594624e-06, 'Badly': 1.6430492035729749e-06, 'lisping': 1.6430492035729749e-06, 'Orthodontic': 1.6430492035729749e-06, 'peridontal': 1.6430492035729749e-06, 'Abnormal': 1.6430492035729749e-06, "orthodontist's": 1.6430492035729749e-06, 'custom-make': 1.6430492035729749e-06, 'Susie': 4.929147610718925e-06, 'appliance': 4.929147610718925e-06, 'dissolve': 5.750672212505412e-06, 'ill-conceived': 3.2860984071459497e-06, 'disrupt': 4.929147610718925e-06, 'soreness': 1.6430492035729749e-06, 'well-cemented': 1.6430492035729749e-06, 'retention': 1.0679819823224336e-05, "Susie's": 1.6430492035729749e-06, 'molars': 1.6430492035729749e-06, 'healthier': 1.6430492035729749e-06, 'Straightening': 2.4645738053594624e-06, 'Aligning': 1.6430492035729749e-06, 'full-banded': 1.6430492035729749e-06, '$750': 3.2860984071459497e-06, '$1,200': 2.4645738053594624e-06, '$650': 1.6430492035729749e-06, 'orthodontists': 3.2860984071459497e-06, 'clinics': 2.4645738053594624e-06, '30-year': 1.6430492035729749e-06, 'births': 4.107623008932437e-06, 'scoffed': 3.2860984071459497e-06, 'modifies': 2.4645738053594624e-06, 'straighten': 5.750672212505412e-06, "culture's": 1.6430492035729749e-06, 'vulcanized': 1.6430492035729749e-06, 'Plaster': 1.6430492035729749e-06, 'utilized': 9.036770619651361e-06, 'alginates': 1.6430492035729749e-06, 'gelatin-like': 1.6430492035729749e-06, 'advises': 2.4645738053594624e-06, 'checkup': 2.4645738053594624e-06, 'prematurely': 3.2860984071459497e-06, 'impacted': 2.4645738053594624e-06, 'nicknames': 1.6430492035729749e-06, 'prognoses': 1.6430492035729749e-06, 'sitter': 2.0538115044662184e-05, 'foregoing': 9.85829522143785e-06, 'mediums': 4.107623008932437e-06, 'sensitives': 2.4645738053594624e-06, 'preferring': 1.6430492035729749e-06, 'extra-sensory': 3.2860984071459497e-06, 'ESP': 4.107623008932437e-06, 'mourning': 7.393721416078387e-06, 'mediumship': 1.6430492035729749e-06, 'Parapsychology': 2.4645738053594624e-06, 'dissociated': 1.6430492035729749e-06, 'entranced': 3.2860984071459497e-06, 'semi-conscious': 1.6430492035729749e-06, 'beyond-normal': 1.6430492035729749e-06, 'pre-conscious': 1.6430492035729749e-06, 'proxy': 6.5721968142918994e-06, 'Karlis': 1.6430492035729749e-06, 'Osis': 1.6430492035729749e-06, 'telepathically': 1.6430492035729749e-06, "medium's": 2.4645738053594624e-06, 'sittings': 2.4645738053594624e-06, 'experimenter': 4.929147610718925e-06, 'unconscious': 2.464573805359462e-05, 'questioner': 2.4645738053594624e-06, 'clarifying': 3.2860984071459497e-06, 'paranormal': 1.6430492035729749e-06, 'communicator': 3.2860984071459497e-06, 'typescript': 1.6430492035729749e-06, "sitter's": 2.4645738053594624e-06, 'afield': 1.6430492035729749e-06, 'elastic': 6.5721968142918994e-06, "individual's": 9.85829522143785e-06, 'J': 5.750672212505412e-06, 'Atta': 2.4645738053594624e-06, 'objectiveness': 1.6430492035729749e-06, 'Conversely': 4.929147610718925e-06, 'twins': 6.5721968142918994e-06, 'typhoid': 2.4645738053594624e-06, 'Methods': 4.107623008932437e-06, 'empirically': 4.929147610718925e-06, 'Z': 4.929147610718925e-06, 'smallpox': 2.4645738053594624e-06, 'parapsychology': 1.6430492035729749e-06, "foundation's": 1.6430492035729749e-06, 'sitters': 2.4645738053594624e-06, 'mediumistic': 2.4645738053594624e-06, 'intuitive': 6.5721968142918994e-06, "communicator's": 1.6430492035729749e-06, 'Correct': 1.6430492035729749e-06, 'Incorrect': 1.6430492035729749e-06, 'Doubtful': 1.6430492035729749e-06, 'totted': 1.6430492035729749e-06, 'tabulated': 4.107623008932437e-06, 'Hits': 1.6430492035729749e-06, 'Significants': 1.6430492035729749e-06, 'chalked': 1.6430492035729749e-06, 'intrinsic': 4.929147610718925e-06, 'meaningfulness': 2.4645738053594624e-06, 'slant': 3.2860984071459497e-06, 'Mediumistic': 1.6430492035729749e-06, 'aches': 1.6430492035729749e-06, 'odors': 6.5721968142918994e-06, 'eidetic': 1.6430492035729749e-06, 'Impressions': 1.6430492035729749e-06, 'clairvoyant': 1.6430492035729749e-06, 'irons': 6.5721968142918994e-06, 'clairaudiently': 1.6430492035729749e-06, 'apprehended': 2.4645738053594624e-06, 'visually': 3.2860984071459497e-06, 'signify': 2.4645738053594624e-06, 'Shietz': 1.6430492035729749e-06, 'Farming': 1.6430492035729749e-06, 'confining': 3.2860984071459497e-06, 'Livestock': 1.6430492035729749e-06, 'routinely': 1.6430492035729749e-06, 'chickens': 1.0679819823224336e-05, 'locality': 4.929147610718925e-06, 'Hard': 3.2860984071459497e-06, 'labor-saving': 1.6430492035729749e-06, 'profitably': 4.107623008932437e-06, 'Production': 7.393721416078387e-06, 'Drought': 1.6430492035729749e-06, 'hail': 4.929147610718925e-06, 'Sickness': 1.6430492035729749e-06, "owner's": 2.4645738053594624e-06, 'Returns': 3.2860984071459497e-06, 'invested': 9.85829522143785e-06, 'Part-time': 3.2860984071459497e-06, 'uneconomical': 3.2860984071459497e-06, 'threshing': 1.6430492035729749e-06, 'off-farm': 1.6430492035729749e-06, 'rented': 6.5721968142918994e-06, 'Advantages': 1.6430492035729749e-06, 'Caring': 1.6430492035729749e-06, 'pig': 7.393721416078387e-06, 'white-collar': 1.6430492035729749e-06, 'deciding': 9.85829522143785e-06, "family's": 5.750672212505412e-06, 'plantings': 1.6430492035729749e-06, 'disking': 1.6430492035729749e-06, 'cultivating': 2.4645738053594624e-06, 'small-scale': 1.6430492035729749e-06, 'secondhand': 1.6430492035729749e-06, 'binder': 1.6430492035729749e-06, 'Discussed': 1.6430492035729749e-06, 'Location': 3.2860984071459497e-06, 'nearness': 2.4645738053594624e-06, 'all-weather': 1.6430492035729749e-06, 'Nearness': 1.6430492035729749e-06, 'Facilities': 2.4645738053594624e-06, 'mains': 1.6430492035729749e-06, 'Pond': 2.4645738053594624e-06, 'Soil': 2.4645738053594624e-06, 'Buying': 1.6430492035729749e-06, 'subtract': 2.4645738053594624e-06, 'dirge': 2.4645738053594624e-06, 'graybeards': 1.6430492035729749e-06, 'adolescents': 5.750672212505412e-06, 'starved': 3.2860984071459497e-06, 'strangled': 5.750672212505412e-06, 'machine-gunned': 1.6430492035729749e-06, 'gassed': 2.4645738053594624e-06, 'Auschwitz': 1.6430492035729749e-06, 'gruesome': 2.4645738053594624e-06, 'SS': 4.107623008932437e-06, 'lunatic-fringe': 1.6430492035729749e-06, 'dulled': 3.2860984071459497e-06, 'corpses': 4.929147610718925e-06, 'legally': 4.929147610718925e-06, 'admissible': 8.215246017864873e-06, 'corpus': 4.929147610718925e-06, 'delicti': 1.6430492035729749e-06, "defendant's": 1.6430492035729749e-06, 'Counsel': 3.2860984071459497e-06, 'shrewdly': 2.4645738053594624e-06, 'recollections': 3.2860984071459497e-06, 'catharsis': 4.929147610718925e-06, 'awfulness': 2.4645738053594624e-06, 'exhausting': 3.2860984071459497e-06, 'emotionalism': 2.4645738053594624e-06, 'Servatius': 1.6430492035729749e-06, 'Interruptions': 1.6430492035729749e-06, 'rebuked': 1.6430492035729749e-06, 'anti-Communism': 1.6430492035729749e-06, 'repentant': 1.6430492035729749e-06, 'ex-Communist': 1.6430492035729749e-06, 'vanguard': 1.6430492035729749e-06, 'Eichmann': 1.232286902679731e-05, 'recollection': 4.929147610718925e-06, 'refining': 2.4645738053594624e-06, 'Gurion': 2.4645738053594624e-06, 'anti-Semitism': 1.97165904428757e-05, 'anti-semite': 1.6430492035729749e-06, 'scuttled': 2.4645738053594624e-06, 'fiend': 3.2860984071459497e-06, "prosecution's": 1.6430492035729749e-06, 'stubbornly': 3.2860984071459497e-06, 'anti-Semitic': 4.107623008932437e-06, 'overcoming': 5.750672212505412e-06, 'Jew-baiter': 2.4645738053594624e-06, 'Shout': 1.6430492035729749e-06, 'falsifying': 1.6430492035729749e-06, 'anti-Semites': 3.2860984071459497e-06, 'Jew-as-enemy': 1.6430492035729749e-06, 'virulent': 1.6430492035729749e-06, 'murderer': 1.6430492035729746e-05, 'disobeying': 1.6430492035729749e-06, 'giddiness': 1.6430492035729749e-06, 'half-acceptance': 1.6430492035729749e-06, 'light-mindedness': 1.6430492035729749e-06, 'rightness': 2.4645738053594624e-06, 'outrageous': 2.4645738053594624e-06, "Eichmann's": 5.750672212505412e-06, 'exemplified': 3.2860984071459497e-06, 'betrayal': 5.750672212505412e-06, 'non-police': 1.6430492035729749e-06, 'non-party': 2.4645738053594624e-06, 'Czechoslovakia': 4.929147610718925e-06, 'Hungary': 4.107623008932437e-06, 'infamous': 3.2860984071459497e-06, 'Wansee': 1.6430492035729749e-06, 'Heydrich': 3.2860984071459497e-06, 'phraseology': 3.2860984071459497e-06, 'Goering': 1.6430492035729749e-06, 'Final': 4.929147610718925e-06, 'Solution': 3.2860984071459497e-06, 'complement': 1.8073541239302723e-05, 'strangulation': 1.6430492035729749e-06, 'emigration': 1.6430492035729749e-06, 'promulgators': 1.6430492035729749e-06, 'exterminating': 1.6430492035729749e-06, 'secrecy': 7.393721416078387e-06, 'accomplices': 1.6430492035729749e-06, 'Anti-Semite': 1.6430492035729749e-06, 'concentration-camp': 1.6430492035729749e-06, 'dislike': 1.232286902679731e-05, 'madness': 2.4645738053594624e-06, 'edifying': 1.6430492035729749e-06, 'skull-bashings': 1.6430492035729749e-06, 'gassings': 1.6430492035729749e-06, 'enemy-Jew': 2.4645738053594624e-06, 'patriots': 1.6430492035729749e-06, 'terrorizing': 1.6430492035729749e-06, 'arousing': 3.2860984071459497e-06, 'meanest': 1.6430492035729749e-06, 'dishonest': 3.2860984071459497e-06, 'pulverizing': 1.6430492035729749e-06, 'abyss': 4.107623008932437e-06, 'unspeakable': 4.107623008932437e-06, 'demoralization': 1.6430492035729749e-06, 'neighborliness': 1.6430492035729749e-06, 'opportunism': 1.6430492035729749e-06, 'megalomania': 1.6430492035729749e-06, 'convict': 5.750672212505412e-06, 'fates': 3.2860984071459497e-06, 'Jew-haters': 1.6430492035729749e-06, 'Bulgaria': 1.6430492035729749e-06, 'awakened': 4.107623008932437e-06, 'poisoned': 4.107623008932437e-06, 'compatriots': 1.6430492035729749e-06, "Wasn't": 6.5721968142918994e-06, 'highlighting': 2.4645738053594624e-06, 'epic': 1.5608967433943262e-05, 'unavailable': 6.5721968142918994e-06, 'Crimes': 1.6430492035729749e-06, 'memoirs': 3.2860984071459497e-06, "survivors'": 1.6430492035729749e-06, 'resign': 2.4645738053594624e-06, 'reinstated': 1.6430492035729749e-06, 'Hospitals': 2.4645738053594624e-06, 'contraceptive': 1.6430492035729749e-06, 'birth-control': 4.107623008932437e-06, 'orthopedic': 1.6430492035729749e-06, 'surgeon': 9.85829522143785e-06, 'embroiled': 1.6430492035729749e-06, 'dramatize': 3.2860984071459497e-06, 'rancor': 3.2860984071459497e-06, 'birth-prevention': 2.4645738053594624e-06, 'family-welfare': 1.6430492035729749e-06, 'erupting': 1.6430492035729749e-06, 'rumbles': 1.6430492035729749e-06, 'smolders': 1.6430492035729749e-06, 'sullen': 8.215246017864873e-06, 'faiths': 3.2860984071459497e-06, 'nettlesome': 1.6430492035729749e-06, 'polemical': 1.6430492035729749e-06, 'recrimination': 1.6430492035729749e-06, 'sloganeering': 1.6430492035729749e-06, 'dispassionate': 1.6430492035729749e-06, "O'Gara": 1.6430492035729749e-06, 'Commonweal': 3.2860984071459497e-06, 'roughshod': 1.6430492035729749e-06, 'sensibilities': 5.750672212505412e-06, 'jibes': 1.6430492035729749e-06, 'blurred': 5.750672212505412e-06, 'Non-Catholics': 3.2860984071459497e-06, "Catholics'": 1.6430492035729749e-06, 'beget': 1.6430492035729749e-06, 'eugenic': 1.6430492035729749e-06, 'sanctions': 7.393721416078387e-06, 'infertile': 1.6430492035729749e-06, 'Author': 4.107623008932437e-06, "nature's": 2.4645738053594624e-06, 'contraceptives': 4.107623008932437e-06, 'Scriptural': 1.6430492035729749e-06, 'natural-law': 1.6430492035729749e-06, 'regards': 6.5721968142918994e-06, 'procreation': 4.107623008932437e-06, 'fostering': 2.4645738053594624e-06, 'spouses': 4.107623008932437e-06, 'subjective': 1.5608967433943262e-05, 'propositions': 2.4645738053594624e-06, 'ascertain': 6.5721968142918994e-06, 'propagation': 7.393721416078387e-06, 'supplant': 3.2860984071459497e-06, 'frustrate': 4.107623008932437e-06, 'Believing': 2.4645738053594624e-06, 'clenched': 4.929147610718925e-06, 'creedal': 1.6430492035729749e-06, 'Prohibition': 4.107623008932437e-06, 'sinful': 3.2860984071459497e-06, 'ushered': 2.4645738053594624e-06, 'bootleggers': 2.4645738053594624e-06, 'racketeers': 3.2860984071459497e-06, 'unparalleled': 2.4645738053594624e-06, 'inglorious': 1.6430492035729749e-06, 'tumultuous': 1.6430492035729749e-06, 'contraception': 4.107623008932437e-06, 'unnatural': 7.393721416078387e-06, 'Lambeth': 3.2860984071459497e-06, 'condemnation': 6.5721968142918994e-06, 'emphatic': 2.4645738053594624e-06, 'Denouncing': 1.6430492035729749e-06, 'steadfastly': 1.6430492035729749e-06, 'self-control': 3.2860984071459497e-06, 'affirmed': 5.750672212505412e-06, 'continence': 1.6430492035729749e-06, 'Repeated': 3.2860984071459497e-06, 'social-welfare': 1.6430492035729749e-06, 'fiat': 4.107623008932437e-06, 'ill-starred': 4.107623008932437e-06, 'Conscience': 3.2860984071459497e-06, '1610': 3.2860984071459497e-06, 'three-masted': 1.6430492035729749e-06, "Katherine's": 1.6430492035729749e-06, 'Pool': 2.4645738053594624e-06, 'Thames': 3.2860984071459497e-06, 'voyage': 1.4787442832156774e-05, 'Arctic': 4.107623008932437e-06, 'limping': 2.4645738053594624e-06, 'Galway': 2.4645738053594624e-06, 'mate': 1.8073541239302723e-05, 'commanded': 1.3144393628583799e-05, 'seaman': 2.4645738053594624e-06, "captain's": 5.750672212505412e-06, 'fragmentary': 6.5721968142918994e-06, 'journal': 5.750672212505412e-06, 'second-hand': 1.6430492035729749e-06, 'Historians': 3.2860984071459497e-06, 'persisting': 2.4645738053594624e-06, 'tantalizing': 4.107623008932437e-06, "Hudson's": 1.3965918230370285e-05, '1607': 2.4645738053594624e-06, '1608': 1.6430492035729749e-06, 'Muscovy': 3.2860984071459497e-06, 'Pole': 4.929147610718925e-06, '1609': 3.2860984071459497e-06, 'geographers': 1.6430492035729749e-06, 'Dartmouth': 2.546726265538111e-05, 'forbade': 1.6430492035729749e-06, 'provisioned': 1.6430492035729749e-06, 'recruited': 4.107623008932437e-06, 'unexplored': 4.107623008932437e-06, 'Baffin': 1.6430492035729749e-06, 'Labrador': 1.6430492035729749e-06, 'Furious': 3.2860984071459497e-06, 'Overfall': 3.2860984071459497e-06, 'Strait': 2.4645738053594624e-06, '1602': 3.2860984071459497e-06, 'Waymouth': 1.6430492035729749e-06, 'strait': 3.2860984071459497e-06, 'qualms': 1.6430492035729749e-06, 'Ahead': 3.2860984071459497e-06, 'ice-filled': 2.4645738053594624e-06, 'voyages': 1.6430492035729749e-06, 'Novaya': 1.6430492035729749e-06, 'Zemlya': 1.6430492035729749e-06, 'meekly': 2.4645738053594624e-06, 'near-mutiny': 1.6430492035729749e-06, 'Mid-Atlantic': 1.6430492035729749e-06, 'Worse': 2.4645738053594624e-06, 'Juet': 7.393721416078387e-06, 'Staffe': 4.107623008932437e-06, "ship's": 4.929147610718925e-06, 'perversely': 3.2860984071459497e-06, 'Lodley': 2.4645738053594624e-06, 'Perse': 2.4645738053594624e-06, 'explorer': 3.2860984071459497e-06, 'seafaring': 1.6430492035729749e-06, 'Londoner': 1.6430492035729749e-06, 'misconception': 4.107623008932437e-06, 'Hendrik': 1.6430492035729749e-06, 'forties': 5.750672212505412e-06, 'navigator': 2.4645738053594624e-06, 'voyager': 1.6430492035729749e-06, 'unsuited': 1.6430492035729749e-06, "river's": 1.6430492035729749e-06, 'ruffian': 2.4645738053594624e-06, 'pimps': 2.4645738053594624e-06, 'panders': 1.6430492035729749e-06, 'whores': 1.6430492035729749e-06, 'Gravesend': 1.6430492035729749e-06, 'skirted': 1.6430492035729749e-06, 'Iceland': 4.107623008932437e-06, 'Lousie': 1.6430492035729749e-06, 'two-weeks': 1.6430492035729749e-06, 'protege': 1.6430492035729749e-06, 'Desolation': 1.6430492035729749e-06, 'Greenland': 3.2860984071459497e-06, 'Floating': 1.6430492035729749e-06, 'Fog': 1.6430492035729749e-06, 'Turbulent': 1.6430492035729749e-06, 'bergs': 1.6430492035729749e-06, 'Ungava': 1.6430492035729749e-06, 'inlet': 4.107623008932437e-06, 'passageway': 4.107623008932437e-06, "Juet's": 3.2860984071459497e-06, 'Java': 3.2860984071459497e-06, 'quelling': 1.6430492035729749e-06, 'captains': 1.6430492035729749e-06, 'Drake': 2.4645738053594624e-06, 'lopped': 1.6430492035729749e-06, 'Patiently': 1.6430492035729749e-06, 'wordy': 1.6430492035729749e-06, '450-mile-long': 1.6430492035729749e-06, 'avoiding': 9.036770619651361e-06, 'headlands': 1.6430492035729749e-06, 'mists': 2.4645738053594624e-06, 'gateways': 1.6430492035729749e-06, 'starboard': 1.6430492035729749e-06, 'cape': 3.2860984071459497e-06, 'patched': 4.929147610718925e-06, 'precipice': 1.6430492035729749e-06, 'Digges': 1.6430492035729749e-06, 'Wolstenholme': 1.6430492035729749e-06, "weeks'": 2.4645738053594624e-06, 'deltas': 1.6430492035729749e-06, 'westwards': 1.6430492035729749e-06, 'blackest': 1.6430492035729749e-06, 'Feverishly': 1.6430492035729749e-06, 'intuition': 1.4787442832156774e-05, 'land-locked': 1.6430492035729749e-06, 'angered': 1.6430492035729749e-06, 'tacking': 2.4645738053594624e-06, 'Hands': 4.107623008932437e-06, 'swore': 1.232286902679731e-05, 'muskets': 3.2860984071459497e-06, 'cabins': 6.5721968142918994e-06, 'Bennett': 1.6430492035729749e-06, 'Mathues': 1.6430492035729749e-06, 'bloodshed': 3.2860984071459497e-06, 'homeward': 1.6430492035729749e-06, 'deposed': 2.4645738053594624e-06, 'Bylot': 1.6430492035729749e-06, 'boatswain': 3.2860984071459497e-06, 'sworn': 4.929147610718925e-06, 'criss-crossing': 1.6430492035729749e-06, "crew's": 1.6430492035729749e-06, 'calmed': 5.750672212505412e-06, 'Butt': 1.6430492035729749e-06, 'Adame': 1.6430492035729749e-06, 'capstan': 1.6430492035729749e-06, 'axe': 5.750672212505412e-06, 'Selkirk': 1.0679819823224336e-05, 'Scot': 1.6430492035729749e-06, 'crofters': 1.6430492035729749e-06, "Comany's": 1.6430492035729749e-06, '116,000': 1.6430492035729749e-06, 'Assiniboine': 2.4645738053594624e-06, 'Traverse': 3.2860984071459497e-06, 'headwaters': 4.107623008932437e-06, '1811': 1.6430492035729749e-06, 'Harrison': 2.4645738053594624e-06, 'pacify': 2.4645738053594624e-06, 'aborigines': 7.393721416078387e-06, 'Territory': 4.107623008932437e-06, 'Tippecanoe': 1.6430492035729749e-06, 'Anglo-Saxon': 1.889506584108921e-05, 'Forks': 4.929147610718925e-06, 'twenty-three': 6.5721968142918994e-06, 'Winnipeg': 1.6430492035729749e-06, 'Meurons': 1.6430492035729749e-06, 'regiments': 2.4645738053594624e-06, 'Kingston': 4.929147610718925e-06, "traders'": 1.6430492035729749e-06, 'hoes': 1.6430492035729749e-06, '1818': 4.107623008932437e-06, 'ravages': 2.4645738053594624e-06, 'grasshoppers': 4.107623008932437e-06, 'dispersal': 1.6430492035729749e-06, 'metis': 1.6430492035729749e-06, 'Pembina': 4.107623008932437e-06, 'huts': 5.750672212505412e-06, 'stockade': 1.0679819823224336e-05, 'Daer': 4.929147610718925e-06, "Selkirk's": 4.107623008932437e-06, 'barony': 1.6430492035729749e-06, 'warmer': 4.107623008932437e-06, 'traders': 2.1359639646448672e-05, '1816': 1.6430492035729749e-06, 'British-born': 1.6430492035729749e-06, 'Rolette': 1.6430492035729749e-06, 'Renville': 1.6430492035729749e-06, 'Alexis': 2.4645738053594624e-06, 'Bailly': 3.2860984071459497e-06, 'Dickson': 3.2860984071459497e-06, 'Superintendent': 4.107623008932437e-06, 'fort': 7.393721416078387e-06, '1802': 1.6430492035729749e-06, 'withes': 1.6430492035729749e-06, 'ox': 5.750672212505412e-06, 'thills': 1.6430492035729749e-06, 'Territories': 1.6430492035729749e-06, 'prophetically': 3.2860984071459497e-06, "tho'": 1.6430492035729749e-06, 'Settlements': 2.4645738053594624e-06, 'northerly': 1.6430492035729749e-06, "Peter's": 8.215246017864873e-06, 'bushels': 4.107623008932437e-06, 'barley': 5.750672212505412e-06, 'flat-bottomed': 4.107623008932437e-06, 'rowed': 2.4645738053594624e-06, 'Ab1,040': 1.6430492035729749e-06, 'Activity': 1.6430492035729749e-06, 'prompted': 5.750672212505412e-06, 'Lieutenant-Colonel': 1.6430492035729749e-06, 'Leavenworth': 1.6430492035729749e-06, '1822': 2.4645738053594624e-06, 'infantry': 1.1501344425010824e-05, 'renamed': 3.2860984071459497e-06, 'Snelling': 6.5721968142918994e-06, 'outposts': 1.6430492035729749e-06, 'Hercules': 3.2860984071459497e-06, 'Dousman': 2.4645738053594624e-06, 'trader': 5.750672212505412e-06, 'Labothe': 1.6430492035729749e-06, 'drovers': 1.6430492035729749e-06, 'Sieux': 1.6430492035729749e-06, '700-mile': 1.6430492035729749e-06, 'discontented': 1.6430492035729749e-06, 'disappointed': 1.3144393628583799e-05, 'Observing': 2.4645738053594624e-06, 'half-starved': 1.6430492035729749e-06, 'Michilimackinac': 1.6430492035729749e-06, 'McDonnell': 1.6430492035729749e-06, 'Ab4,500': 1.6430492035729749e-06, 'British-American': 1.6430492035729749e-06, 'Halkett': 1.6430492035729749e-06, 'rafts': 1.6430492035729749e-06, 'duly': 9.036770619651361e-06, 'powder': 2.300268885002165e-05, 'nets': 3.2860984071459497e-06, '1823': 1.6430492035729749e-06, '1825-1826': 1.6430492035729749e-06, 'mice': 9.036770619651361e-06, 'plains': 4.107623008932437e-06, '443': 1.6430492035729749e-06, 'Vevay': 1.6430492035729749e-06, '1837': 2.4645738053594624e-06, '157': 1.6430492035729749e-06, 'uninterruptedly': 1.6430492035729749e-06, 'Lucian': 4.929147610718925e-06, 'Galtier': 1.6430492035729749e-06, '1840': 4.107623008932437e-06, 'Bottineau': 1.6430492035729749e-06, 'Plympton': 1.6430492035729749e-06, 'platted': 1.6430492035729749e-06, '1847': 2.4645738053594624e-06, 'patron': 4.107623008932437e-06, "Galtier's": 1.6430492035729749e-06, 'Selkirkers': 1.6430492035729749e-06, '2,417': 1.6430492035729749e-06, '1831': 2.4645738053594624e-06, '4,369': 1.6430492035729749e-06, 'no-trading': 1.6430492035729749e-06, 'refrain': 9.036770619651361e-06, 'prohibiton': 1.6430492035729749e-06, '1844': 4.929147610718925e-06, 'Assiniboia': 2.4645738053594624e-06, 'vitals': 2.4645738053594624e-06, 'forwarding': 1.6430492035729749e-06, 'pemmican': 1.6430492035729749e-06, '1835': 3.2860984071459497e-06, 'smuggled': 3.2860984071459497e-06, '1841': 1.6430492035729749e-06, '49th': 1.6430492035729749e-06, 'semi-literate': 2.4645738053594624e-06, 'thicker': 4.929147610718925e-06, 'lise': 1.6430492035729749e-06, 'ornraier': 1.6430492035729749e-06, 'comrades': 9.036770619651361e-06, 'poring': 1.6430492035729749e-06, 'rawhide': 1.6430492035729749e-06, 'figurative': 4.929147610718925e-06, 'rider': 9.85829522143785e-06, 'stirups': 1.6430492035729749e-06, 'dilapidated': 3.2860984071459497e-06, 'slowness': 4.107623008932437e-06, 'litter': 3.2860984071459497e-06, 'leaches': 1.6430492035729749e-06, 'annoyed': 6.5721968142918994e-06, 'missive': 1.6430492035729749e-06, 'yore': 2.4645738053594624e-06, 'jist': 4.107623008932437e-06, 'maget': 1.6430492035729749e-06, 'sergeant': 9.036770619651361e-06, 'one-horse': 1.6430492035729749e-06, 'twister': 4.107623008932437e-06, 'geered': 1.6430492035729749e-06, 'wildcat': 3.2860984071459497e-06, 'Humor': 1.6430492035729749e-06, 'modes': 7.393721416078387e-06, 'Halda': 1.6430492035729749e-06, 'Stillwell': 1.6430492035729749e-06, 'Georgian': 3.2860984071459497e-06, 'Wife': 1.6430492035729749e-06, 'forgit': 2.4645738053594624e-06, 'maryed': 1.6430492035729749e-06, 'sofar': 1.6430492035729749e-06, 'enny': 1.6430492035729749e-06, 'forgitful': 1.6430492035729749e-06, 'Yank': 4.929147610718925e-06, 'corpulence': 1.6430492035729749e-06, 'parodied': 2.4645738053594624e-06, 'gray-backs': 1.6430492035729749e-06, "o'er": 1.6430492035729749e-06, 'Thiot': 1.6430492035729749e-06, 'plantation': 1.4787442832156774e-05, 'pups': 2.4645738053594624e-06, 'Fall-in': 2.4645738053594624e-06, 'Close-up': 2.4645738053594624e-06, 'maladies': 2.4645738053594624e-06, 'diarrhoea': 3.2860984071459497e-06, 'looseness': 2.4645738053594624e-06, 'bowels': 1.6430492035729749e-06, 'sh-ts': 1.6430492035729749e-06, 'stationed': 4.929147610718925e-06, 'knott': 1.6430492035729749e-06, 'Shitts': 1.6430492035729749e-06, 'Rebs': 4.929147610718925e-06, 'diorah': 1.6430492035729749e-06, 'poark': 1.6430492035729749e-06, 'sowered': 1.6430492035729749e-06, 'stomack': 1.6430492035729749e-06, 'Dyerear': 1.6430492035729749e-06, 'thease': 1.6430492035729749e-06, 'Save': 2.4645738053594624e-06, 'garrison': 2.4645738053594624e-06, 'hubbub': 1.6430492035729749e-06, 'Scarcity': 1.6430492035729749e-06, 'cross-writing': 1.6430492035729749e-06, 'whizzing': 1.6430492035729749e-06, 'escapes': 4.107623008932437e-06, 'Reb': 2.4645738053594624e-06, 'dodge': 5.750672212505412e-06, 'blots': 4.107623008932437e-06, 'homely': 8.215246017864873e-06, 'admonitions': 3.2860984071459497e-06, "planters'": 2.4645738053594624e-06, 'menial': 1.6430492035729749e-06, 'laundering': 6.5721968142918994e-06, 'soldier-masters': 1.6430492035729749e-06, 'Unmarried': 1.6430492035729749e-06, 'sweethearts': 1.6430492035729749e-06, 'Owing': 1.6430492035729749e-06, 'usages': 3.2860984071459497e-06, 'stereotyped': 4.929147610718925e-06, 'boon': 3.2860984071459497e-06, 'companions': 7.393721416078387e-06, 'amorous': 2.4645738053594624e-06, 'exploits': 4.107623008932437e-06, 'printable': 1.6430492035729749e-06, 'boastfully': 1.6430492035729749e-06, 'belles': 1.6430492035729749e-06, 'thout': 1.6430492035729749e-06, "Pappy's": 1.6430492035729749e-06, 'wold': 1.6430492035729749e-06, 'recond': 1.6430492035729749e-06, 'eyd': 1.6430492035729749e-06, 'pungently': 1.6430492035729749e-06, 'comrade': 4.107623008932437e-06, 'Sis': 3.2860984071459497e-06, 'Alf': 2.4645738053594624e-06, 'sed': 2.4645738053594624e-06, 'runing': 1.6430492035729749e-06, 'wod': 1.6430492035729749e-06, 'gust': 2.4645738053594624e-06, 'mor': 1.6430492035729749e-06, 'doo': 2.4645738053594624e-06, 'yuse': 1.6430492035729749e-06, 'chouise': 1.6430492035729749e-06, 'nise': 1.6430492035729749e-06, 'feler': 1.6430492035729749e-06, 'orney': 2.4645738053594624e-06, 'thefin': 1.6430492035729749e-06, 'drunkard': 3.2860984071459497e-06, 'damed': 2.4645738053594624e-06, 'bich': 1.6430492035729749e-06, 'com': 1.6430492035729749e-06, 'theaf': 1.6430492035729749e-06, 'lop': 1.6430492035729749e-06, 'yeard': 1.6430492035729749e-06, 'pigen': 1.6430492035729749e-06, 'tode': 1.6430492035729749e-06, 'helion': 1.6430492035729749e-06, 'hel': 1.6430492035729749e-06, 'shute': 1.6430492035729749e-06, 'Initiation': 1.6430492035729749e-06, 'infantryman': 2.4645738053594624e-06, 'Pa': 1.7252016637516235e-05, 'Went': 1.6430492035729749e-06, 'skouting': 1.6430492035729749e-06, 'secessionists': 1.6430492035729749e-06, 'brok': 1.6430492035729749e-06, 'holored': 1.6430492035729749e-06, 'ornery': 2.4645738053594624e-06, 'suns': 1.6430492035729749e-06, 'biches': 1.6430492035729749e-06, 'Thay': 1.6430492035729749e-06, 'godamit': 1.6430492035729749e-06, 'choicest': 2.4645738053594624e-06, 'disparagement': 2.4645738053594624e-06, 'Reub': 1.6430492035729749e-06, 'stuck-up': 1.6430492035729749e-06, 'illiterate': 7.393721416078387e-06, 'ass': 4.929147610718925e-06, 'Alabamian': 1.6430492035729749e-06, 'ignoramus': 2.4645738053594624e-06, 'Floridian': 1.6430492035729749e-06, 'tote': 1.6430492035729749e-06, 'guts': 8.215246017864873e-06, '1862': 2.4645738053594624e-06, 'Sergeant': 1.5608967433943262e-05, 'Fay': 1.6430492035729749e-06, 'Louisianan': 1.6430492035729749e-06, 'A.B.': 3.2860984071459497e-06, 'M.A.': 4.107623008932437e-06, 'Pemberton': 1.6430492035729749e-06, 'puke': 1.6430492035729749e-06, 'regiment': 1.8073541239302723e-05, 'Cavalry': 9.036770619651361e-06, 'shucks': 2.4645738053594624e-06, 'Mauldin': 1.6430492035729749e-06, 'drunken': 5.750672212505412e-06, 'rascals': 1.6430492035729749e-06, 'slinging': 1.6430492035729749e-06, 'docters': 1.6430492035729749e-06, 'aconte': 1.6430492035729749e-06, 'filde': 1.6430492035729749e-06, 'do(c)ters': 1.6430492035729749e-06, 'offersey': 1.6430492035729749e-06, "Sherman's": 6.5721968142918994e-06, 'homefolk': 1.6430492035729749e-06, 'takeing': 1.6430492035729749e-06, 'corporal': 2.4645738053594624e-06, 'whiskey': 1.3144393628583799e-05, 'gunpowder': 2.4645738053594624e-06, 'shavings': 1.6430492035729749e-06, 'diary': 3.2860984071459497e-06, 'Alabamans': 1.6430492035729749e-06, 'greenest': 2.4645738053594624e-06, 'recooned': 1.6430492035729749e-06, "you'uns": 1.6430492035729749e-06, 'wus': 1.6430492035729749e-06, "we'uns": 1.6430492035729749e-06, 'Volunteers': 4.107623008932437e-06, 'staid': 1.6430492035729749e-06, 'thievin': 1.6430492035729749e-06, 'skunks': 1.6430492035729749e-06, 'Booty': 1.6430492035729749e-06, 'imperialism': 2.4645738053594624e-06, 'rewrites': 1.6430492035729749e-06, 'legends': 9.036770619651361e-06, 'rationalize': 4.929147610718925e-06, 'superimposes': 1.6430492035729749e-06, 'justifying': 3.2860984071459497e-06, 'cohesive': 9.85829522143785e-06, 'Spanish-American': 2.4645738053594624e-06, '1880s': 2.4645738053594624e-06, 'curricula': 3.2860984071459497e-06, 'outlived': 3.2860984071459497e-06, 'world-oriented': 1.6430492035729749e-06, 'egocentric': 1.6430492035729749e-06, 'isolationistic': 1.6430492035729749e-06, "citizen's": 2.4645738053594624e-06, "Anyone's": 1.6430492035729749e-06, 'rewriting': 2.4645738053594624e-06, 'self-deception': 2.4645738053594624e-06, 'heterogeneous': 4.107623008932437e-06, 'Parson': 1.6430492035729749e-06, "Weems's": 1.6430492035729749e-06, 'uniting': 2.4645738053594624e-06, 'incarnation': 4.107623008932437e-06, 'rebelling': 3.2860984071459497e-06, 'confederacy': 3.2860984071459497e-06, 'Patrick': 1.6430492035729749e-06, 'Hale': 2.4645738053594624e-06, 'Crockett': 1.6430492035729749e-06, 'patriotism': 5.750672212505412e-06, 'propagandistic': 4.107623008932437e-06, 'homogeneous': 7.393721416078387e-06, 'recreate': 1.6430492035729749e-06, 'oral': 2.1359639646448672e-05, 'myths': 5.750672212505412e-06, 'proverbs': 1.6430492035729749e-06, 'rhymes': 1.6430492035729749e-06, 'Related': 4.107623008932437e-06, 'literate': 3.2860984071459497e-06, 'definitions': 5.750672212505412e-06, 'Enthusiastically': 1.6430492035729749e-06, 'subliterary': 1.6430492035729749e-06, 'bogus': 3.2860984071459497e-06, 'Bunyan': 2.4645738053594624e-06, 'semi-isolated': 1.6430492035729749e-06, 'occupational': 8.215246017864873e-06, 'culturally': 4.107623008932437e-06, 'Teutonic': 1.6430492035729749e-06, 'flag-wavers': 1.6430492035729749e-06, 'sentimentalists': 1.6430492035729749e-06, 'dramatists': 1.6430492035729749e-06, 'heritages': 1.6430492035729749e-06, 'lore': 6.5721968142918994e-06, 'acculturated': 1.6430492035729749e-06, 'Anthropologists': 1.6430492035729749e-06, 'housewives': 4.107623008932437e-06, 'amateurs': 2.4645738053594624e-06, 'propagandists': 4.107623008932437e-06, 'analysts': 4.929147610718925e-06, 'dollar-sign': 1.6430492035729749e-06, 'footnote': 3.2860984071459497e-06, 'collector': 6.5721968142918994e-06, 'hunts': 2.4645738053594624e-06, 'acutely': 4.929147610718925e-06, 'Fundamentally': 1.6430492035729749e-06, 'uncritical': 3.2860984071459497e-06, 'shudder': 4.929147610718925e-06, 'propagandist': 3.2860984071459497e-06, "analyst's": 3.2860984071459497e-06, 'analyst': 6.5721968142918994e-06, 'progandist': 1.6430492035729749e-06, 'probings': 1.6430492035729749e-06, 'Dominated': 1.6430492035729749e-06, 'Publishers': 2.4645738053594624e-06, 'hillbilly': 3.2860984071459497e-06, 'potpourri': 1.6430492035729749e-06, 'money-maker': 1.6430492035729749e-06, 'tamper': 1.6430492035729749e-06, 'poems': 6.407891893934602e-05, "Benet's": 1.6430492035729749e-06, "Steinbeck's": 1.6430492035729749e-06, 'Wrath': 1.6430492035729749e-06, 'bias': 7.393721416078387e-06, 'publically': 1.6430492035729749e-06, 'longs': 1.6430492035729749e-06, 'Benets': 1.6430492035729749e-06, 'Steinbecks': 1.6430492035729749e-06, 'Sandburgs': 2.4645738053594624e-06, 'Torrio': 1.0679819823224336e-05, "O'Banion": 2.1359639646448672e-05, 'Smoke': 1.6430492035729749e-06, 'Cicero': 4.929147610718925e-06, 'inadvisable': 1.6430492035729749e-06, 'candour': 1.6430492035729749e-06, "others'": 2.4645738053594624e-06, 'creased': 2.4645738053594624e-06, 'jovial': 1.6430492035729749e-06, 'bleakly': 3.2860984071459497e-06, 'trouser': 3.2860984071459497e-06, 'armpit': 2.4645738053594624e-06, 'lethal': 4.929147610718925e-06, 'dispassionately': 3.2860984071459497e-06, 'murders': 1.0679819823224336e-05, 'disliked': 9.85829522143785e-06, 'florist': 1.6430492035729749e-06, 'tenderly': 3.2860984071459497e-06, 'dextrous': 2.4645738053594624e-06, 'bouquets': 1.6430492035729749e-06, 'wreaths': 3.2860984071459497e-06, 'trample': 3.2860984071459497e-06, 'lurch': 3.2860984071459497e-06, 'feline': 2.4645738053594624e-06, 'quickness': 1.6430492035729749e-06, 'Landesco': 1.6430492035729749e-06, 'plugugly': 2.4645738053594624e-06, 'nerveless': 1.6430492035729749e-06, 'risking': 1.6430492035729749e-06, 'administering': 4.107623008932437e-06, 'casebook': 1.6430492035729749e-06, 'psychopath': 2.4645738053594624e-06, 'interwoven': 4.107623008932437e-06, 'rackets': 3.2860984071459497e-06, 'Capone': 5.750672212505412e-06, 'roughneck': 1.6430492035729749e-06, 'plasterer': 1.6430492035729749e-06, "Side's": 1.6430492035729749e-06, 'Hell': 1.8073541239302723e-05, 'Sicilian': 3.2860984071459497e-06, 'Corner': 2.4645738053594624e-06, 'choir': 4.107623008932437e-06, 'Name': 2.4645738053594624e-06, 'acolyte': 1.6430492035729749e-06, 'congested': 2.4645738053594624e-06, 'tenements': 2.4645738053594624e-06, 'honkytonks': 1.6430492035729749e-06, 'neighbourhood': 1.6430492035729749e-06, 'pressure-cooker': 1.6430492035729749e-06, 'thieving': 4.107623008932437e-06, 'police-dodging': 1.6430492035729749e-06, 'housebreaking': 1.6430492035729749e-06, 'newsboy': 2.4645738053594624e-06, 'Gimpy': 1.6430492035729749e-06, 'Scarface': 1.6430492035729749e-06, 'waiter': 9.036770619651361e-06, "McGovern's": 1.6430492035729749e-06, 'notoriously': 1.6430492035729749e-06, 'rowdy': 4.107623008932437e-06, 'befuddled': 2.4645738053594624e-06, 'methodically': 5.750672212505412e-06, 'looted': 3.2860984071459497e-06, 'waiters': 4.929147610718925e-06, 'Herald-Examiner': 1.6430492035729749e-06, "paper's": 1.6430492035729749e-06, 'trespassed': 3.2860984071459497e-06, 'vendors': 2.4645738053594624e-06, 'breaker': 1.6430492035729749e-06, 'highwayman': 1.6430492035729749e-06, 'Neanderthal': 1.6430492035729749e-06, 'Geary': 1.6430492035729749e-06, 'Asylum': 1.6430492035729749e-06, 'homicidal': 1.6430492035729749e-06, 'misted': 1.6430492035729749e-06, 'Dion': 1.6430492035729749e-06, "O'Banion's": 8.215246017864873e-06, '1909': 4.929147610718925e-06, 'Bridewell': 1.6430492035729749e-06, 'interludes': 2.4645738053594624e-06, 'alderman': 1.6430492035729749e-06, 'nolle': 1.6430492035729749e-06, 'prossed': 1.6430492035729749e-06, 'Ryan': 1.3144393628583799e-05, 'Telegraph': 1.1501344425010824e-05, 'acquitted': 2.4645738053594624e-06, 'bribes': 1.6430492035729749e-06, 'bootlegging': 1.6430492035729749e-06, 'Sicilians': 2.4645738053594624e-06, 'holdups': 1.6430492035729749e-06, 'safe-cracking': 1.6430492035729749e-06, 'pistoleers': 1.6430492035729749e-06, 'knuckle-duster': 1.6430492035729749e-06, 'bullyboys': 1.6430492035729749e-06, 'question-and-answer': 1.6430492035729749e-06, 'gag': 4.107623008932437e-06, "Who'll": 1.6430492035729749e-06, 'Forty-second': 1.6430492035729749e-06, 'Forty-third': 1.6430492035729749e-06, 'grapevine': 3.2860984071459497e-06, 'wooed': 1.6430492035729749e-06, 'conferring': 1.6430492035729749e-06, 'organised': 1.6430492035729749e-06, 'testimonial': 2.4645738053594624e-06, 'fraternisation': 1.6430492035729749e-06, 'ex-convicts': 1.6430492035729749e-06, 'heelers': 1.6430492035729749e-06, 'sold-out': 1.6430492035729749e-06, 'parable': 3.2860984071459497e-06, 'Detectives': 1.6430492035729749e-06, 'Dever': 1.6430492035729749e-06, 'dishonouring': 1.6430492035729749e-06, 'consorting': 2.4645738053594624e-06, 'felons': 1.6430492035729749e-06, 'fixers': 1.6430492035729749e-06, 'honour': 2.4645738053594624e-06, "O'Connor": 4.929147610718925e-06, 'recognised': 1.6430492035729749e-06, 'honoured': 1.6430492035729749e-06, '$2500': 1.6430492035729749e-06, 'stickpin': 1.6430492035729749e-06, 'jerked': 1.0679819823224336e-05, 'pestering': 1.6430492035729749e-06, 'platinum': 4.107623008932437e-06, 'rubies': 1.6430492035729749e-06, 'blatancy': 1.6430492035729749e-06, 'Pasley': 2.4645738053594624e-06, 'Belshazzar': 1.6430492035729749e-06, 'feasts': 2.4645738053594624e-06, 'fraternized': 1.6430492035729749e-06, 'jowl': 2.4645738053594624e-06, '1928-29': 1.6430492035729749e-06, 'tributes': 1.6430492035729749e-06, 'energetically': 2.4645738053594624e-06, 'marshalled': 1.6430492035729749e-06, 'bribers': 1.6430492035729749e-06, 'forging': 1.6430492035729749e-06, 'landslide': 2.4645738053594624e-06, 'ballooning': 1.6430492035729749e-06, 'euphoric': 1.6430492035729749e-06, 'self-aggrandisement': 1.6430492035729749e-06, 'liking': 9.85829522143785e-06, 'swaggering': 1.6430492035729749e-06, 'truculence': 1.6430492035729749e-06, 'offended': 3.2860984071459497e-06, 'vulpine': 1.6430492035729749e-06, 'unimpressed': 3.2860984071459497e-06, 'insolence': 5.750672212505412e-06, 'enraged': 1.6430492035729749e-06, 'blandness': 1.6430492035729749e-06, 'idiotic': 3.2860984071459497e-06, 'bodyguard': 1.6430492035729749e-06, 'prize-fight': 1.6430492035729749e-06, 'referee': 1.6430492035729749e-06, 'Hirschey': 1.6430492035729749e-06, 'gambler-politician': 1.6430492035729749e-06, 'beer-running': 1.6430492035729749e-06, 'Salle': 2.4645738053594624e-06, 'gowned': 1.6430492035729749e-06, 'tuxedoed': 1.6430492035729749e-06, 'nighters': 1.6430492035729749e-06, 'wounding': 1.6430492035729749e-06, 'ricocheted': 1.6430492035729749e-06, "Max's": 2.4645738053594624e-06, 'buckle': 4.929147610718925e-06, 'unhurt': 1.6430492035729749e-06, 'braggadocio': 1.6430492035729749e-06, 'incompatible': 2.4645738053594624e-06, 'beer-runners': 1.6430492035729749e-06, 'bums': 2.4645738053594624e-06, 'beer-runner': 1.6430492035729749e-06, 'Dionie': 1.6430492035729749e-06, 'cops': 1.4787442832156774e-05, 'graver': 2.4645738053594624e-06, 'Irishman': 1.6430492035729749e-06, 'double-crossing': 1.6430492035729749e-06, 'amity': 1.6430492035729749e-06, 'boosted': 3.2860984071459497e-06, 'speak-easy': 1.6430492035729749e-06, 'booze': 4.107623008932437e-06, 'Saltis-McErlane': 1.6430492035729749e-06, 'Druggan-Lake': 1.6430492035729749e-06, 'Torrio-Capone': 2.4645738053594624e-06, 'brash': 1.6430492035729749e-06, 'recklessness': 1.6430492035729749e-06, 'proliferation': 4.929147610718925e-06, 'Sides': 1.6430492035729749e-06, 'brothels': 2.4645738053594624e-06, 'concession': 3.2860984071459497e-06, "gang's": 1.6430492035729749e-06, 'marshalling': 1.6430492035729749e-06, 'freight-car': 1.6430492035729749e-06, 'coups': 2.4645738053594624e-06, 'Sibley': 1.6430492035729749e-06, 'brazenness': 1.6430492035729749e-06, '1750': 1.6430492035729749e-06, 'carted': 1.6430492035729749e-06, 'stead': 4.107623008932437e-06, 'tsunami': 1.6430492035729746e-05, 'earthquake': 8.215246017864873e-06, 'volcanic': 2.4645738053594624e-06, 'eruption': 2.4645738053594624e-06, 'Krakatoa': 1.6430492035729749e-06, 'Sumatra': 1.6430492035729749e-06, 'pounded': 4.107623008932437e-06, 'catastrophic': 4.929147610718925e-06, 'inundations': 1.6430492035729749e-06, "Plato's": 1.232286902679731e-05, 'Atlantis': 2.4645738053594624e-06, 'geologists': 3.2860984071459497e-06, 'archaeologists': 1.6430492035729749e-06, 'damaging': 3.2860984071459497e-06, 'Lisbon': 1.6430492035729749e-06, '1755': 1.6430492035729749e-06, 'Tsunami': 2.4645738053594624e-06, '1596': 1.6430492035729749e-06, '1707': 3.2860984071459497e-06, 'swamped': 1.6430492035729749e-06, 'Osaka': 5.750672212505412e-06, '1869': 1.6430492035729749e-06, 'Ponoluu': 1.6430492035729749e-06, 'forlorn': 3.2860984071459497e-06, '27,000': 2.4645738053594624e-06, 'dwarf': 4.107623008932437e-06, 'crest': 1.0679819823224336e-05, '320': 1.6430492035729749e-06, 'travels': 3.2860984071459497e-06, 'reckoned': 3.2860984071459497e-06, "Lagrange's": 1.6430492035729749e-06, 'gravity': 5.750672212505412e-06, 'detectable': 7.393721416078387e-06, 'amplitude': 5.750672212505412e-06, 'fateful': 3.2860984071459497e-06, 'swells': 4.107623008932437e-06, 'bathers': 1.6430492035729749e-06, 'flattening': 2.4645738053594624e-06, 'salvo': 2.4645738053594624e-06, 'Reefs': 1.6430492035729749e-06, 'Hilo': 4.107623008932437e-06, 'denuded': 1.6430492035729749e-06, 'Tugaru': 1.6430492035729749e-06, 'ebbing': 2.4645738053594624e-06, 'scurried': 3.2860984071459497e-06, 'quake': 2.4645738053594624e-06, 'landslides': 1.6430492035729749e-06, 'lulled': 1.6430492035729749e-06, 'Institution': 3.2860984071459497e-06, 'Oceanography': 1.6430492035729749e-06, 'rattling': 6.5721968142918994e-06, "islands'": 1.6430492035729749e-06, 'steepest': 1.6430492035729749e-06, 'seaquake': 1.6430492035729749e-06, 'Pololu': 1.6430492035729749e-06, 'glowed': 5.750672212505412e-06, 'luminosity': 1.6430492035729749e-06, 'luminescent': 1.6430492035729749e-06, 'organism': 5.750672212505412e-06, 'Noctiluca': 1.6430492035729749e-06, 'miliaris': 1.6430492035729749e-06, 'sardines': 2.4645738053594624e-06, 'swollen': 1.0679819823224336e-05, 'bottom-living': 1.6430492035729749e-06, 'diatoms': 1.6430492035729749e-06, 'Sagami': 1.6430492035729749e-06, 'Gratified': 1.6430492035729749e-06, 'tsunami-warning': 1.6430492035729749e-06, 'Commander': 4.107623008932437e-06, 'Geodetic': 1.6430492035729749e-06, 'pressure-measuring': 1.6430492035729749e-06, 'disregarded': 4.107623008932437e-06, 'oscillation': 3.2860984071459497e-06, 'notifying': 1.6430492035729749e-06, 'Attu': 1.6430492035729749e-06, 'forwarded': 3.2860984071459497e-06, 'earthquakes': 6.5721968142918994e-06, 'seismographs': 1.6430492035729749e-06, 'epicenter': 3.2860984071459497e-06, 'alerts': 1.6430492035729749e-06, 'wave-travel': 1.6430492035729749e-06, 'top-priority': 1.6430492035729749e-06, 'Kamchatka': 1.6430492035729749e-06, '17:07': 1.6430492035729749e-06, 'seismograph': 1.6430492035729749e-06, 'seismic': 1.6430492035729749e-06, "quake's": 1.6430492035729749e-06, '158': 1.6430492035729749e-06, 'longitude': 1.6430492035729749e-06, 'calculations': 8.215246017864873e-06, '23:30': 1.6430492035729749e-06, 'hurled': 4.107623008932437e-06, 'marooned': 1.6430492035729749e-06, '$800,000': 1.6430492035729749e-06, 'reminders': 2.4645738053594624e-06, 'Earthquakes': 2.4645738053594624e-06, 'restlessness': 2.4645738053594624e-06, 'overemphasized': 1.6430492035729749e-06, 'Superstition': 1.6430492035729749e-06, '1,800': 1.6430492035729749e-06, 'unsolved': 3.2860984071459497e-06, 'Knowledge': 2.4645738053594624e-06, 'Causes': 1.6430492035729749e-06, 'Catastrophe': 1.6430492035729749e-06, 'Leet': 1.6430492035729749e-06, '1906': 3.2860984071459497e-06, 'tremor': 2.4645738053594624e-06, 'jerky': 4.107623008932437e-06, 'Limerick': 1.6430492035729749e-06, 'Shannon': 1.6430492035729749e-06, 'Garryowen': 1.232286902679731e-05, 'valor': 1.6430492035729749e-06, 'Bursting': 2.4645738053594624e-06, 'cavalry': 1.3965918230370285e-05, 'trooper': 5.750672212505412e-06, 'Cheyennes': 3.2860984071459497e-06, 'Apaches': 4.107623008932437e-06, 'banditos': 1.6430492035729749e-06, 'Pancho': 1.6430492035729749e-06, 'Villa': 3.2860984071459497e-06, '7th': 1.0679819823224336e-05, 'Regiment': 4.107623008932437e-06, 'Fighting': 8.215246017864873e-06, 'saloon': 9.036770619651361e-06, 'Cav': 1.6430492035729749e-06, 'Melbourne': 1.6430492035729749e-06, 'Wiry': 1.6430492035729749e-06, 'burr-headed': 1.6430492035729749e-06, 'splattered': 1.6430492035729749e-06, 'Mel': 7.393721416078387e-06, 'steed': 1.6430492035729749e-06, 'ridden': 5.750672212505412e-06, 'swivel': 4.929147610718925e-06, 'commissioned': 2.4645738053594624e-06, 'Depot': 9.036770619651361e-06, 'CO': 3.2860984071459497e-06, 'blind-folded': 1.6430492035729749e-06, 'soldiering': 1.6430492035729749e-06, 'erudite': 3.2860984071459497e-06, 'Custer': 4.929147610718925e-06, 'non-com': 1.6430492035729749e-06, 'Maneuvers': 1.6430492035729749e-06, 'troopers': 4.929147610718925e-06, 'four-syllable': 1.6430492035729749e-06, 'shamrock': 1.6430492035729749e-06, 'Goulding': 6.5721968142918994e-06, 'Gouldings': 1.6430492035729749e-06, 'tearfully': 2.4645738053594624e-06, 'ould': 1.6430492035729749e-06, 'bugler': 1.6430492035729749e-06, "Custer's": 1.6430492035729749e-06, 'Margarito': 1.6430492035729749e-06, 'Leyte': 5.750672212505412e-06, 'platoon': 6.5721968142918994e-06, 'rifleman': 4.107623008932437e-06, 'ROTC': 1.6430492035729749e-06, 'bucking': 4.107623008932437e-06, 'Regular': 4.107623008932437e-06, 'RA': 1.6430492035729749e-06, 'berth': 3.2860984071459497e-06, 'beachhead': 2.4645738053594624e-06, 'non-commissioned': 1.6430492035729749e-06, 'Luzon': 1.6430492035729749e-06, 'bitterest': 2.4645738053594624e-06, 'Naktong': 2.4645738053594624e-06, "Chandler's": 2.4645738053594624e-06, 'cannon': 4.107623008932437e-06, 'fodder': 1.6430492035729749e-06, 'ram': 2.4645738053594624e-06, 'overran': 1.6430492035729749e-06, "Cav's": 1.6430492035729749e-06, 'machine-gun': 1.6430492035729749e-06, 'reinforcements': 2.4645738053594624e-06, 'Burst': 1.6430492035729749e-06, 'regrouped': 1.6430492035729749e-06, 'pinned': 4.107623008932437e-06, 'cavalrymen': 1.6430492035729749e-06, 'faring': 2.4645738053594624e-06, 'bounding': 2.4645738053594624e-06, 'hurling': 4.929147610718925e-06, 'imbued': 1.6430492035729749e-06, 'stragglers': 2.4645738053594624e-06, 'diversionary': 1.6430492035729749e-06, 'grenade': 3.2860984071459497e-06, 'attackers': 3.2860984071459497e-06, 'withering': 1.6430492035729749e-06, 'Enemy': 1.6430492035729749e-06, 'Troops': 1.6430492035729749e-06, 'G': 1.1501344425010824e-05, 'counterattack': 3.2860984071459497e-06, 'Okay': 1.232286902679731e-05, 'whacked': 2.4645738053594624e-06, 'bellow': 2.4645738053594624e-06, "Goulding's": 2.4645738053594624e-06, 'Reinforcements': 1.6430492035729749e-06, 'paddies': 1.6430492035729749e-06, 'profusely': 3.2860984071459497e-06, 'Glory': 3.2860984071459497e-06, 'pistol-whipped': 1.6430492035729749e-06, 'cowardice': 2.4645738053594624e-06, 'battlefield': 4.929147610718925e-06, 'Brevet': 1.6430492035729749e-06, "regiment's": 1.6430492035729749e-06, 'Patton': 1.6430492035729749e-06, 'Mesa': 1.6430492035729749e-06, 'Lock': 1.6430492035729749e-06, 'Assumption': 3.2860984071459497e-06, 'supposes': 1.6430492035729749e-06, 'reckons': 1.6430492035729749e-06, 'imperfectability': 1.6430492035729749e-06, 'approachable': 1.6430492035729749e-06, 'doctrinally': 1.6430492035729749e-06, 'antithetical': 1.6430492035729749e-06, 'diminishes': 3.2860984071459497e-06, 'rata': 2.4645738053594624e-06, 'Proximate': 1.6430492035729749e-06, 'defer': 1.6430492035729749e-06, 'Sino-Soviet': 1.6430492035729749e-06, 'Bantus': 3.2860984071459497e-06, 'denials': 3.2860984071459497e-06, 'consisently': 1.6430492035729749e-06, 'policy-makers': 3.2860984071459497e-06, 'U.S.-Soviet': 1.6430492035729749e-06, 'graphic': 4.929147610718925e-06, 'Jameson': 1.6430492035729749e-06, 'Campaigne': 1.6430492035729749e-06, 'Might': 2.4645738053594624e-06, 'Myth': 1.6430492035729749e-06, "Soviets'": 1.6430492035729749e-06, 'Overwhelming': 1.6430492035729749e-06, 'oppressed': 4.929147610718925e-06, 'abreast': 4.929147610718925e-06, 'reputed': 4.929147610718925e-06, 'Prestige': 2.4645738053594624e-06, 'incurably': 1.6430492035729749e-06, 'Cominform': 1.6430492035729749e-06, 'conquests': 2.4645738053594624e-06, 'insidiously': 2.4645738053594624e-06, 'Fearful': 1.6430492035729749e-06, 'backwoods': 4.929147610718925e-06, 'skirmishes': 1.6430492035729749e-06, 'parliaments': 1.6430492035729749e-06, 'clandestine': 1.6430492035729749e-06, 'undercover': 1.6430492035729749e-06, 'neutralize': 1.6430492035729749e-06, 'adherent': 2.4645738053594624e-06, "Kremlin's": 2.4645738053594624e-06, 'isolation': 1.3965918230370285e-05, 'mask': 8.215246017864873e-06, 'auxiliaries': 1.6430492035729749e-06, 'troubie': 1.6430492035729749e-06, 'teetering': 2.4645738053594624e-06, 'Cambodia': 1.6430492035729749e-06, "Sukarno's": 1.6430492035729749e-06, 'besieged': 2.4645738053594624e-06, 'avowed': 1.6430492035729749e-06, 'pretensions': 1.6430492035729749e-06, 'Nasser': 2.4645738053594624e-06, 'Kassem': 1.6430492035729749e-06, 'adamantly': 1.6430492035729749e-06, 'Kikiyus': 1.6430492035729749e-06, 'Wilsonian': 1.6430492035729749e-06, 'swerving': 2.4645738053594624e-06, 'violently': 1.0679819823224336e-05, 'plunging': 3.2860984071459497e-06, 'bridgehead': 2.4645738053594624e-06, 'Castroism': 2.4645738053594624e-06, 'Anti-Americanism': 1.6430492035729749e-06, 'unqualifiedly': 1.6430492035729749e-06, 'espousing': 1.6430492035729749e-06, 'counter-successes': 1.6430492035729749e-06, 'mourned': 2.4645738053594624e-06, 'misunderstood': 5.750672212505412e-06, 'pretended': 5.750672212505412e-06, 'purposively': 1.6430492035729749e-06, 'dislodge': 2.4645738053594624e-06, 'decisively': 4.929147610718925e-06, 'Guatemalan': 1.6430492035729749e-06, 'rattle': 4.929147610718925e-06, '7:10': 1.6430492035729749e-06, 'roused': 2.4645738053594624e-06, 'Sounds': 3.2860984071459497e-06, 'unshaven': 1.6430492035729749e-06, 'Amid': 2.4645738053594624e-06, 'thumping': 4.929147610718925e-06, 'mortars': 1.6430492035729749e-06, 'slamming': 4.107623008932437e-06, 'shutters': 4.929147610718925e-06, 'bicycles': 2.4645738053594624e-06, 'newspaperman': 5.750672212505412e-06, 'Gunfire': 1.6430492035729749e-06, '7:50': 1.6430492035729749e-06, 'eclipse': 2.4645738053594624e-06, 'toad': 4.107623008932437e-06, 'din': 1.6430492035729749e-06, 'Sandalwood': 1.6430492035729749e-06, 'Bullet': 2.4645738053594624e-06, 'Holes': 1.6430492035729749e-06, 'thoroughfares': 1.6430492035729749e-06, 'peppered': 2.4645738053594624e-06, 'rubble': 1.6430492035729749e-06, 'Mortars': 1.6430492035729749e-06, "ambassador's": 1.6430492035729749e-06, 'blackened': 4.929147610718925e-06, '9-11': 1.6430492035729749e-06, 'siege': 4.929147610718925e-06, 'hit-and-run': 1.6430492035729749e-06, 'terrorists': 1.6430492035729749e-06, 'ambush': 6.5721968142918994e-06, 'Frans': 2.4645738053594624e-06, 'Educational': 4.929147610718925e-06, 'Scientific': 4.929147610718925e-06, 'Cultural': 5.750672212505412e-06, 'Jeep': 1.1501344425010824e-05, 'buffaloes': 1.6430492035729749e-06, 'Oregonians': 1.6430492035729749e-06, 'Patagonians': 1.6430492035729749e-06, 'phis': 1.6430492035729749e-06, 'Precisely': 2.4645738053594624e-06, 'pirogues': 1.6430492035729749e-06, 'majestically': 1.6430492035729749e-06, 'meandering': 3.2860984071459497e-06, 'Shy': 3.2860984071459497e-06, 'slender-waisted': 1.6430492035729749e-06, 'frangipani': 1.6430492035729749e-06, 'Frenchman': 7.393721416078387e-06, 'colonized': 1.6430492035729749e-06, 'tranquil': 2.4645738053594624e-06, 'Tahiti': 2.4645738053594624e-06, 'stiffened': 7.393721416078387e-06, '$1.60': 1.6430492035729749e-06, 'Attopeu': 1.6430492035729749e-06, 'Dung': 1.6430492035729749e-06, 'Muong': 1.6430492035729749e-06, 'Lions': 2.4645738053594624e-06, 'ruts': 2.4645738053594624e-06, 'spinning': 9.85829522143785e-06, 'rickety': 1.6430492035729749e-06, 'overloaded': 1.6430492035729749e-06, 'Garrett': 1.6430492035729749e-06, 'Illustrations': 4.107623008932437e-06, 'boun': 1.6430492035729749e-06, 'Savannakhet': 2.4645738053594624e-06, 'Luang': 2.4645738053594624e-06, 'Prabang': 2.4645738053594624e-06, "life's": 5.750672212505412e-06, 'escorts': 1.6430492035729749e-06, 'spurned': 1.6430492035729749e-06, 'barefoot': 6.5721968142918994e-06, 'lethargy': 4.107623008932437e-06, 'Highness': 1.6430492035729749e-06, 'ten-gallon': 2.4645738053594624e-06, 'bouncing': 8.215246017864873e-06, 'Land-Rover': 1.6430492035729749e-06, 'Champassak': 2.4645738053594624e-06, 'Churchillian': 1.6430492035729749e-06, 'mien': 1.6430492035729749e-06, 'bush': 9.036770619651361e-06, 'peeked': 2.4645738053594624e-06, 'seven-inch': 1.6430492035729749e-06, 'Luger': 1.6430492035729749e-06, '105-degrees': 1.6430492035729749e-06, 'Keng': 1.6430492035729749e-06, 'Kok': 1.6430492035729749e-06, 'Silkworms': 1.6430492035729749e-06, 'cicadas': 1.6430492035729749e-06, 'notebooks': 1.6430492035729749e-06, 'traversed': 5.750672212505412e-06, 'spleen-crushing': 1.6430492035729749e-06, 'dispensary': 1.6430492035729749e-06, 'Keo': 4.107623008932437e-06, 'Viphakone': 1.6430492035729749e-06, 'Cool': 4.107623008932437e-06, 'Beaver': 1.6430492035729749e-06, 'coatings': 1.0679819823224336e-05, 'constructively': 2.4645738053594624e-06, 'anthropologist': 2.4645738053594624e-06, 'doctorate': 1.6430492035729749e-06, 'Economics': 4.107623008932437e-06, 'USOM': 1.6430492035729749e-06, 'self-help': 1.3144393628583799e-05, 'shovels': 3.2860984071459497e-06, 'infirmary': 1.6430492035729749e-06, '2,500': 1.6430492035729749e-06, 'elders': 8.215246017864873e-06, 'nation-building': 1.6430492035729749e-06, 'coconuts': 2.4645738053594624e-06, 'strode': 9.036770619651361e-06, 'joked': 1.6430492035729749e-06, 'soldiery': 1.6430492035729749e-06, 'villager': 1.6430492035729749e-06, 'stumping': 1.6430492035729749e-06, 'Crossing': 1.6430492035729749e-06, '4,000-foot': 1.6430492035729749e-06, 'dusty': 1.3965918230370285e-05, 'shirts': 2.4645738053594624e-06, 'Briefly': 1.6430492035729749e-06, 'Pak': 2.4645738053594624e-06, 'Bolovens': 1.6430492035729749e-06, 'Plateau': 1.6430492035729749e-06, 'Brotherhood': 1.6430492035729749e-06, 'Philippines': 4.107623008932437e-06, 'pet': 7.393721416078387e-06, 'Soukhouma': 1.6430492035729749e-06, 'Peaceful': 1.6430492035729749e-06, 'baci': 1.6430492035729749e-06, 'rite': 3.2860984071459497e-06, 'well-wishing': 1.6430492035729749e-06, '261': 1.6430492035729749e-06, 'split-bamboo': 1.6430492035729749e-06, 'notables': 2.4645738053594624e-06, 'divinities': 3.2860984071459497e-06, 'happiness': 1.889506584108921e-05, 'villagers': 1.6430492035729749e-06, 'wrists': 5.750672212505412e-06, 'festering': 1.6430492035729749e-06, 'maggots': 2.4645738053594624e-06, 'antiseptic': 5.750672212505412e-06, 'salve': 3.2860984071459497e-06, 'weakening': 5.750672212505412e-06, 'strivings': 3.2860984071459497e-06, 'accords': 1.6430492035729749e-06, 'Maier': 1.6430492035729749e-06, 'Spinrad': 1.6430492035729749e-06, 'synagogue': 3.2860984071459497e-06, 'Judaism': 2.4645738053594624e-06, 'querulously': 1.6430492035729749e-06, 'beards': 4.929147610718925e-06, 'ancestral': 4.929147610718925e-06, "teen-agers'": 1.6430492035729749e-06, "parents'": 5.750672212505412e-06, 'inhabiting': 1.6430492035729749e-06, 'Intermarriage': 1.6430492035729749e-06, 'clinical': 2.300268885002165e-05, 'marry': 1.5608967433943262e-05, 'fourteen-year-old': 1.6430492035729749e-06, 'wryly': 3.2860984071459497e-06, 'inconveniently': 1.6430492035729749e-06, 'peripheral': 7.393721416078387e-06, 'outing': 2.4645738053594624e-06, 'kosher': 1.6430492035729749e-06, 'nonobservant': 1.6430492035729749e-06, 'teen': 2.4645738053594624e-06, 'college-oriented': 1.6430492035729749e-06, '45.6': 1.6430492035729749e-06, '29.2': 2.4645738053594624e-06, 'exertions': 1.6430492035729749e-06, 'pursuits': 3.2860984071459497e-06, 'academically': 4.929147610718925e-06, 'gentile': 4.107623008932437e-06, 'counterparts': 9.85829522143785e-06, 'sexes': 9.85829522143785e-06, 'American-Jewish': 1.6430492035729749e-06, 'best-sellers': 1.6430492035729749e-06, 'non-college': 1.6430492035729749e-06, 'marginality': 2.4645738053594624e-06, 'nineteen-year-old': 2.4645738053594624e-06, 'irritably': 3.2860984071459497e-06, 'morale-enhancing': 1.6430492035729749e-06, 'contradistinction': 1.6430492035729749e-06, 'buttressed': 1.6430492035729749e-06, 'expansively': 1.6430492035729749e-06, 'lower-middle': 4.107623008932437e-06, 'differentiate': 2.4645738053594624e-06, 'self-enclosed': 1.6430492035729749e-06, 'non-Jewish': 2.4645738053594624e-06, 'constituting': 3.2860984071459497e-06, 'vigilance': 4.107623008932437e-06, 'ambiance': 1.6430492035729749e-06, 'Midwood': 1.6430492035729749e-06, 'self-congratulation': 1.6430492035729749e-06, 'inconsiderable': 1.6430492035729749e-06, 'cozy': 1.6430492035729749e-06, 'generates': 4.929147610718925e-06, 'perpetuation': 2.4645738053594624e-06, 'detribalize': 1.6430492035729749e-06, 'unimpeachably': 1.6430492035729749e-06, 'unavailing': 1.6430492035729749e-06, 'certitudes': 1.6430492035729749e-06, 'overprotective': 1.6430492035729749e-06, 'enveloping': 2.4645738053594624e-06, 'overprotection': 1.6430492035729749e-06, 'sorority': 1.6430492035729749e-06, 'tentacles': 2.4645738053594624e-06, 'co-ordinates': 1.6430492035729749e-06, 'hapless': 2.4645738053594624e-06, 'sallying': 1.6430492035729749e-06, 'Westhampton': 1.6430492035729749e-06, 'homogeneously': 2.4645738053594624e-06, 'junior-year-abroad': 1.6430492035729749e-06, 'acculturation': 1.6430492035729749e-06, 'Marjorie': 1.6430492035729749e-06, 'Morningstar': 1.6430492035729749e-06, 'hordes': 2.4645738053594624e-06, 'nubile': 1.6430492035729749e-06, 'prodded': 3.2860984071459497e-06, 'appreciably': 6.5721968142918994e-06, 'graduating': 6.5721968142918994e-06, 'puffed': 4.107623008932437e-06, 'dogmatically': 2.4645738053594624e-06, 'jubilant': 2.4645738053594624e-06, 'fraternities': 1.6430492035729749e-06, 'sororities': 1.6430492035729749e-06, 'advertisements': 3.2860984071459497e-06, 'marts': 1.6430492035729749e-06, 'watchings': 1.6430492035729749e-06, 'pinnings': 1.6430492035729749e-06, 'ringings': 1.6430492035729749e-06, 'scrupulously': 1.6430492035729749e-06, 'Witt': 2.4645738053594624e-06, 'announces': 3.2860984071459497e-06, 'Fran': 4.929147610718925e-06, 'Horowitz': 3.2860984071459497e-06, 'Erwin': 1.6430492035729749e-06, 'Fife': 1.6430492035729749e-06, 'Ivy': 7.393721416078387e-06, 'foppish': 1.6430492035729749e-06, 'flamboyantly': 1.6430492035729749e-06, 'mascara': 1.6430492035729749e-06, 'hairdos': 1.6430492035729749e-06, 'galled': 1.6430492035729749e-06, 'unsalted': 2.4645738053594624e-06, 'lard': 4.107623008932437e-06, 'cornstarch': 1.6430492035729749e-06, 'Female': 2.4645738053594624e-06, 'hastening': 1.6430492035729749e-06, 'menstruation': 1.6430492035729749e-06, 'tansy': 1.6430492035729749e-06, 'Bruises': 2.4645738053594624e-06, 'beefsteak': 1.6430492035729749e-06, 'coolness': 4.929147610718925e-06, 'Salted': 1.6430492035729749e-06, 'salves': 1.6430492035729749e-06, 'informant': 2.4645738053594624e-06, 'bathed': 6.5721968142918994e-06, 'oozed': 2.4645738053594624e-06, 'watery': 3.2860984071459497e-06, 'healing': 5.750672212505412e-06, 'epsom': 1.6430492035729749e-06, 'salted': 3.2860984071459497e-06, 'Butter': 1.6430492035729749e-06, 'ointment': 3.2860984071459497e-06, "Cow's": 1.6430492035729749e-06, 'arabic': 1.6430492035729749e-06, 'mucilage': 1.6430492035729749e-06, 'welding': 2.4645738053594624e-06, 'poultices': 2.4645738053594624e-06, 'parings': 2.4645738053594624e-06, 'quickest': 1.6430492035729749e-06, 'cobwebs': 1.6430492035729749e-06, 'old-timer': 2.4645738053594624e-06, 'rusty': 6.5721968142918994e-06, 'sprinkled': 4.107623008932437e-06, 'turpentine': 4.107623008932437e-06, 'amputated': 1.6430492035729749e-06, 'scar': 9.036770619651361e-06, 'Tobacco': 4.929147610718925e-06, 'chaw': 1.6430492035729749e-06, 'fractious': 1.6430492035729749e-06, 'scalp': 4.107623008932437e-06, 'Veronica': 1.6430492035729749e-06, 'herb': 3.2860984071459497e-06, 'rue': 2.4645738053594624e-06, 'Tetanus': 1.6430492035729749e-06, 'Rabies': 1.6430492035729749e-06, 'madstones': 1.6430492035729749e-06, '1872': 3.2860984071459497e-06, 'hydrophobia': 1.6430492035729749e-06, 'cauterize': 1.6430492035729749e-06, 'poker': 4.929147610718925e-06, 'nosebleed': 1.6430492035729749e-06, 'nostril': 1.6430492035729749e-06, 'Nosebleed': 1.6430492035729749e-06, 'knot': 7.393721416078387e-06, 'chew': 2.4645738053594624e-06, 'sores': 3.2860984071459497e-06, 'Blood': 6.5721968142918994e-06, 'blisters': 2.4645738053594624e-06, 'rubbing': 9.85829522143785e-06, 'blister': 3.2860984071459497e-06, 'nonpoisonous': 1.6430492035729749e-06, 'Felons': 1.6430492035729749e-06, 'twenty-four': 9.85829522143785e-06, 'felon': 1.6430492035729749e-06, 'Insect': 2.4645738053594624e-06, 'saliva': 3.2860984071459497e-06, 'proverb': 4.929147610718925e-06, 'poultice': 3.2860984071459497e-06, 'swellings': 2.4645738053594624e-06, 'Mud': 1.6430492035729749e-06, 'Chiggers': 1.6430492035729749e-06, 'berries': 2.4645738053594624e-06, 'Bathing': 1.6430492035729749e-06, 'itching': 3.2860984071459497e-06, 'pests': 2.4645738053594624e-06, 'Ant': 1.6430492035729749e-06, 'bluing': 1.6430492035729749e-06, 'mosquito': 1.6430492035729749e-06, 'soda': 3.2860984071459497e-06, 'wasp': 2.4645738053594624e-06, 'stings': 2.4645738053594624e-06, 'scraping': 6.5721968142918994e-06, 'handier': 1.6430492035729749e-06, 'bathe': 4.107623008932437e-06, 'soapy': 1.6430492035729749e-06, 'soap': 1.8073541239302723e-05, 'bee': 9.036770619651361e-06, 'Bedbugs': 1.6430492035729749e-06, 'Bed': 1.6430492035729749e-06, 'slats': 1.6430492035729749e-06, 'alum': 1.6430492035729749e-06, 'corrosive': 4.107623008932437e-06, 'sublimate': 2.4645738053594624e-06, 'Kerosene': 1.6430492035729749e-06, 'ridding': 2.4645738053594624e-06, 'lice': 2.4645738053594624e-06, 'cinder': 2.4645738053594624e-06, 'flaxseed': 2.4645738053594624e-06, 'swelled': 3.2860984071459497e-06, 'glutinous': 1.6430492035729749e-06, 'eyeball': 2.4645738053594624e-06, 'cross-eyed': 1.6430492035729749e-06, 'wisp': 2.4645738053594624e-06, 'Shingles': 1.6430492035729749e-06, 'gentian': 1.6430492035729749e-06, 'erysipelas': 1.6430492035729749e-06, 'dram': 1.6430492035729749e-06, 'borax': 1.6430492035729749e-06, 'ounce': 3.2860984071459497e-06, 'glycerine': 4.929147610718925e-06, 'afflicted': 7.393721416078387e-06, 'Itching': 1.6430492035729749e-06, 'Winter': 6.5721968142918994e-06, 'itch': 4.107623008932437e-06, 'cider': 2.4645738053594624e-06, 'bloodroot': 1.6430492035729749e-06, 'steeped': 4.929147610718925e-06, 'growths': 1.6430492035729749e-06, 'sassafras': 2.4645738053594624e-06, 'soaked': 5.750672212505412e-06, 'defied': 4.107623008932437e-06, 'Frostbite': 1.6430492035729749e-06, 'eucalyptus': 1.6430492035729749e-06, 'chilblains': 1.6430492035729749e-06, 'Chilblains': 1.6430492035729749e-06, 'tincture': 1.6430492035729749e-06, 'capsicum': 1.6430492035729749e-06, 'Boils': 1.6430492035729749e-06, 'rye': 2.4645738053594624e-06, 'molasses': 1.6430492035729749e-06, 'elm': 2.4645738053594624e-06, 'sticky': 8.215246017864873e-06, 'gummy': 2.4645738053594624e-06, 'corns': 2.4645738053594624e-06, 'veracious': 1.6430492035729749e-06, 'calluses': 1.6430492035729749e-06, 'soak': 4.107623008932437e-06, 'bandage': 4.107623008932437e-06, 'scraped': 7.393721416078387e-06, 'soaking': 8.215246017864873e-06, 'drip': 1.6430492035729749e-06, 'Saliva': 1.6430492035729749e-06, 'wetting': 4.107623008932437e-06, 'wakening': 1.6430492035729749e-06, 'sulphur': 1.6430492035729749e-06, 'eave': 1.6430492035729749e-06, 'Sore': 1.6430492035729749e-06, 'arnica': 1.6430492035729749e-06, "calf's-foot": 1.6430492035729749e-06, "pioneer's": 1.6430492035729749e-06, 'ubiquitous': 2.4645738053594624e-06, 'cramps': 2.4645738053594624e-06, 'brandy': 6.5721968142918994e-06, 'Pains': 1.6430492035729749e-06, 'rope': 1.3144393628583799e-05, 'waist': 9.85829522143785e-06, 'sprains': 1.6430492035729749e-06, 'inscrutable': 4.929147610718925e-06, 'plenipotentiary': 1.6430492035729749e-06, 'genii': 1.6430492035729749e-06, 'unlock': 3.2860984071459497e-06, 'shipper': 3.2860984071459497e-06, 'negociant': 2.4645738053594624e-06, 'wines': 2.0538115044662184e-05, 'promoters': 2.4645738053594624e-06, 'shippers': 1.6430492035729749e-06, 'tainted': 1.6430492035729749e-06, 'misrepresentation': 2.4645738053594624e-06, 'dishonesty': 2.4645738053594624e-06, 'negociants': 1.6430492035729749e-06, 'sou': 1.6430492035729749e-06, 'cornered': 1.6430492035729749e-06, 'blends': 2.4645738053594624e-06, 'Grands': 3.2860984071459497e-06, 'Crus': 3.2860984071459497e-06, 'meal-to-meal': 1.6430492035729749e-06, 'doting': 2.4645738053594624e-06, 'palates': 1.6430492035729749e-06, 'beginner': 1.6430492035729749e-06, 'palate': 2.4645738053594624e-06, 'crus': 1.6430492035729749e-06, 'renown': 1.6430492035729749e-06, 'infra': 1.6430492035729749e-06, 'requisites': 1.6430492035729749e-06, 'abysmal': 2.4645738053594624e-06, 'recondite': 1.6430492035729749e-06, 'extenuating': 3.2860984071459497e-06, 'reprehensible': 2.4645738053594624e-06, 'guardian': 3.2860984071459497e-06, 'purveyor': 1.6430492035729749e-06, 'Visigoths': 1.6430492035729749e-06, 'exhaustible': 1.6430492035729749e-06, 'inexhaustible': 3.2860984071459497e-06, 'pocketbooks': 1.6430492035729749e-06, 'bargains': 3.2860984071459497e-06, 'practicable': 5.750672212505412e-06, 'dries': 1.6430492035729749e-06, 'spoil': 3.2860984071459497e-06, 'stacking': 2.4645738053594624e-06, 'Fat': 3.2860984071459497e-06, 'Burgundies': 1.6430492035729749e-06, 'reclining': 3.2860984071459497e-06, 'corks': 1.6430492035729749e-06, 'corked': 2.4645738053594624e-06, 'Seasonal': 1.6430492035729749e-06, 'fifty-five': 2.4645738053594624e-06, 'allowable': 4.929147610718925e-06, 'Prolonged': 1.6430492035729749e-06, 'electrically': 2.4645738053594624e-06, 'furnaces': 1.6430492035729749e-06, 'decanting': 2.4645738053594624e-06, 'chilling': 4.929147610718925e-06, 'banishing': 1.6430492035729749e-06, 'purists': 1.6430492035729749e-06, 'acquiring': 9.036770619651361e-06, 'purism': 1.6430492035729749e-06, 'Bordeaux': 2.4645738053594624e-06, 'Dijon': 1.6430492035729749e-06, 'bucket': 6.5721968142918994e-06, 'tulip-shaped': 1.6430492035729749e-06, 'warms': 1.6430492035729749e-06, 'effaces': 1.6430492035729749e-06, "wine's": 1.6430492035729749e-06, 'half-bottles': 1.6430492035729749e-06, 'Tregnums': 1.6430492035729749e-06, 'Jeroboams': 1.6430492035729749e-06, 'Methuselahs': 1.6430492035729749e-06, 'Imperiales': 1.6430492035729749e-06, 'aeration': 6.5721968142918994e-06, 'sweetness': 3.2860984071459497e-06, 'Sauternes': 1.6430492035729749e-06, 'Barsacs': 1.6430492035729749e-06, 'Pouilly-Fuisse': 1.6430492035729749e-06, 'Chablis': 1.6430492035729749e-06, 'Over-chilling': 1.6430492035729749e-06, 'unattractive': 3.2860984071459497e-06, 'Saintsbury': 1.6430492035729749e-06, 'claret': 4.107623008932437e-06, 'Burgundy': 5.750672212505412e-06, 'Chateau': 3.2860984071459497e-06, "d'Yquem": 1.6430492035729749e-06, 'Montrachet': 1.6430492035729749e-06, 'Beaujolais': 2.4645738053594624e-06, 'tannin': 1.6430492035729749e-06, 'sediment': 3.2860984071459497e-06, 'decanted': 2.4645738053594624e-06, 'puckering': 1.6430492035729749e-06, 'tug-of-war': 2.4645738053594624e-06, 'corkscrew': 3.2860984071459497e-06, 'afterward': 1.3144393628583799e-05, 'wicker': 4.107623008932437e-06, 'cradles': 1.6430492035729749e-06, 'frowns': 1.6430492035729749e-06, 'shortcut': 1.6430492035729749e-06, 'aerate': 1.6430492035729749e-06, 'Decanting': 1.6430492035729749e-06, 'aerates': 1.6430492035729749e-06, 'dregs': 4.107623008932437e-06, 'longer-lived': 2.4645738053594624e-06, 'clarets': 1.6430492035729749e-06, 'muddy-tasting': 1.6430492035729749e-06, 'Alsatians': 1.6430492035729749e-06, 'Giffen': 1.4787442832156774e-05, 'punctually': 2.4645738053594624e-06, 'Rest': 3.2860984071459497e-06, 'humane': 4.929147610718925e-06, "Palfrey's": 8.215246017864873e-06, 'overseer': 1.6430492035729749e-06, 'citing': 1.6430492035729749e-06, "Gorham's": 1.6430492035729749e-06, 'remonstrated': 2.4645738053594624e-06, 'calmly': 9.036770619651361e-06, 'injurious': 2.4645738053594624e-06, 'perpetrated': 3.2860984071459497e-06, 'Gorham': 4.107623008932437e-06, 'planter': 5.750672212505412e-06, 'furious': 4.929147610718925e-06, 'amicably': 1.6430492035729749e-06, 'Palfrey': 2.218116424823516e-05, 'inducement': 2.4645738053594624e-06, "brothers'": 2.4645738053594624e-06, 'accede': 1.6430492035729749e-06, "William's": 5.750672212505412e-06, 'Liberia': 1.6430492035729749e-06, 'fifty-two': 1.6430492035729749e-06, 'philantrophy': 1.6430492035729749e-06, 'Emancipation': 5.750672212505412e-06, 'unnamed': 4.107623008932437e-06, "Sam's": 4.107623008932437e-06, 'twelve-year-old': 1.6430492035729749e-06, 'child-bearing': 1.6430492035729749e-06, 'rejecting': 4.107623008932437e-06, '$7,000': 1.6430492035729749e-06, '$6,666.66': 1.6430492035729749e-06, "Giffen's": 2.4645738053594624e-06, 'freeing': 3.2860984071459497e-06, 'manumitted': 1.6430492035729749e-06, 'waive': 1.6430492035729749e-06, 'incensed': 3.2860984071459497e-06, 'Courier': 1.6430492035729749e-06, 'Ears': 1.6430492035729749e-06, 'Plantation': 2.4645738053594624e-06, 'assented': 3.2860984071459497e-06, 'vowing': 2.4645738053594624e-06, 'mid-April': 1.6430492035729749e-06, 'apprehensively': 3.2860984071459497e-06, 'Lydia': 1.6430492035729749e-06, 'Child': 3.2860984071459497e-06, 'apologized': 4.929147610718925e-06, 'Cassius': 1.6430492035729749e-06, 'annoyances': 1.6430492035729749e-06, 'abolitionist': 1.6430492035729749e-06, 'Edmund': 2.4645738053594624e-06, 'civility': 1.6430492035729749e-06, 'upriver': 1.6430492035729749e-06, 'planters': 2.4645738053594624e-06, 'antislavery': 1.6430492035729749e-06, 'Attakapas': 2.4645738053594624e-06, 'unborn': 4.107623008932437e-06, 'bondage': 3.2860984071459497e-06, 'freedom-conscious': 1.6430492035729749e-06, 'solicitousness': 1.6430492035729749e-06, 'Bashaw': 2.4645738053594624e-06, 'levee': 1.6430492035729749e-06, 'chattels': 1.6430492035729749e-06, 'jubilation': 1.6430492035729749e-06, "Martin's": 1.6430492035729749e-06, 'Parish': 1.6430492035729749e-06, 'Excitement': 1.6430492035729749e-06, 'bribed': 3.2860984071459497e-06, 'Slavery': 2.4645738053594624e-06, '1780': 2.4645738053594624e-06, 'red-turbaned': 1.6430492035729749e-06, 'curtseyed': 1.6430492035729749e-06, 'diffidence': 2.4645738053594624e-06, 'fruitlessly': 1.6430492035729749e-06, 'Hopedale': 1.6430492035729749e-06, 'Hathaway': 2.4645738053594624e-06, 'Canandaigua': 1.6430492035729749e-06, 'Scholar': 4.107623008932437e-06, 'appointees': 4.929147610718925e-06, 'Ambassador-at-Large': 1.6430492035729749e-06, 'Renoir': 3.2860984071459497e-06, 'Cezanne': 2.4645738053594624e-06, 'Gauguin': 1.6430492035729749e-06, 'Toulouse-Lautrec': 1.6430492035729749e-06, 'Degas': 1.6430492035729749e-06, 'Matisse': 1.6430492035729749e-06, 'Kuhn': 1.6430492035729749e-06, 'moderns': 3.2860984071459497e-06, 'Kenzo': 1.6430492035729749e-06, 'Okada': 1.6430492035729749e-06, 'Albers': 1.6430492035729749e-06, 'Femmes': 1.6430492035729749e-06, 'dans': 1.6430492035729749e-06, 'Jardin': 1.6430492035729749e-06, 'anti-intellectual': 3.2860984071459497e-06, 'pragmatism': 1.6430492035729749e-06, 'scholar-businessman': 1.6430492035729749e-06, 'inveterate': 3.2860984071459497e-06, 'Arbor': 1.6430492035729749e-06, 'Comptroller': 4.107623008932437e-06, 'accountant': 2.4645738053594624e-06, 'Hitch': 1.6430492035729749e-06, 'Age': 1.0679819823224336e-05, 'co-author': 1.6430492035729749e-06, 'Stimson': 1.6430492035729749e-06, 'memoir': 1.6430492035729749e-06, 'Schlesinger': 2.4645738053594624e-06, 'prodigy': 3.2860984071459497e-06, "Artists'": 1.6430492035729749e-06, 'Labouisse': 1.6430492035729749e-06, 'Guthman': 1.6430492035729749e-06, 'Bartholf': 1.6430492035729749e-06, 'albeit': 2.4645738053594624e-06, 'Walton': 8.215246017864873e-06, 'writer-turned-painter': 1.6430492035729749e-06, 'Time-Life': 1.6430492035729749e-06, 'unattached': 2.4645738053594624e-06, 'semi-abstract': 1.6430492035729749e-06, 'co-ordinator': 1.6430492035729749e-06, 'critically': 4.107623008932437e-06, "Gavin's": 8.215246017864873e-06, 'paratroopers': 1.6430492035729749e-06, 'post-Inaugural': 1.6430492035729749e-06, 'cased': 1.6430492035729749e-06, 'credentials': 2.4645738053594624e-06, 'deputized': 1.6430492035729749e-06, 'renovation': 2.4645738053594624e-06, 'trouble-shooter': 1.6430492035729749e-06, 'ex': 2.4645738053594624e-06, 'officio': 1.6430492035729749e-06, 'Mormon': 2.4645738053594624e-06, 'first-families': 1.6430492035729749e-06, 'plain-spoken': 2.4645738053594624e-06, 'sparring': 3.2860984071459497e-06, 'attainments': 1.6430492035729749e-06, 'dams': 2.4645738053594624e-06, "Frost's": 1.6430492035729749e-06, 'impresario': 1.6430492035729749e-06, 'Ideas': 4.929147610718925e-06, 'tempest': 1.6430492035729749e-06, 'eight-and-a-half-foot': 1.6430492035729749e-06, 'sculpted': 1.6430492035729749e-06, 'Gutzon': 1.6430492035729749e-06, 'Borglum': 2.4645738053594624e-06, "Bryan's": 2.4645738053594624e-06, 'Spokesmen': 1.6430492035729749e-06, 'tradition-minded': 1.6430492035729749e-06, 'sculptors': 1.6430492035729749e-06, 'exiling': 1.6430492035729749e-06, 'decrying': 1.6430492035729749e-06, 'memorials': 2.4645738053594624e-06, 'Hoping': 1.6430492035729749e-06, 'memorialized': 1.6430492035729749e-06, 'hustle': 1.6430492035729749e-06, 'Shevchenko': 1.6430492035729749e-06, 'Potomac': 2.4645738053594624e-06, "TR.'s": 1.6430492035729749e-06, 'hotly': 2.4645738053594624e-06, 'debated': 4.929147610718925e-06, 'tablets': 1.6430492035729749e-06, 'Stonehenge': 1.6430492035729749e-06, "Udall's": 1.6430492035729749e-06, 'ironically': 3.2860984071459497e-06, 'redress': 2.4645738053594624e-06, 'shrine': 4.929147610718925e-06, 'hodgepodge': 1.6430492035729749e-06, 'hewed': 1.6430492035729749e-06, 'H.M.S.': 3.2860984071459497e-06, 'Resolute': 1.6430492035729749e-06, 'Victoria': 7.393721416078387e-06, 'browsing': 1.6430492035729749e-06, 'Beaux-Arts': 1.6430492035729749e-06, 'gilt': 3.2860984071459497e-06, 'pier-table': 1.6430492035729749e-06, 'coating': 3.0396410266100035e-05, 'gaucherie': 1.6430492035729749e-06, 'tenant': 4.929147610718925e-06, 'rightful': 4.107623008932437e-06, 'emanating': 2.4645738053594624e-06, 'pencil-and-sepia': 1.6430492035729749e-06, 'allegorical': 3.2860984071459497e-06, 'Jean-Honore': 1.6430492035729749e-06, 'Fragonard': 1.6430492035729749e-06, 'Georges': 2.4645738053594624e-06, 'Wildenstein': 1.6430492035729749e-06, 'Dolley': 3.2860984071459497e-06, "Madison's": 1.6430492035729749e-06, 'sofa': 5.750672212505412e-06, 'vermeil': 1.6430492035729749e-06, 'hollowware': 1.6430492035729749e-06, 'bequeathed': 2.4645738053594624e-06, 'Biddle': 1.6430492035729749e-06, 'vexatious': 1.6430492035729749e-06, 'flanking': 1.6430492035729749e-06, 'monumentality': 1.6430492035729749e-06, 'unsuccessfully': 1.6430492035729749e-06, 'Belasco': 2.4645738053594624e-06, 'razing': 1.6430492035729749e-06, 'perils': 2.4645738053594624e-06, 'Logically': 2.4645738053594624e-06, 'USO': 1.6430492035729749e-06, "Square's": 1.6430492035729749e-06, 'Surrounded': 2.4645738053594624e-06, 'elms': 1.6430492035729749e-06, "Hanover's": 1.6430492035729749e-06, 'rakish': 1.6430492035729749e-06, 'sophisticate': 1.6430492035729749e-06, 'citybred': 1.6430492035729749e-06, 'manly': 2.4645738053594624e-06, 'camaraderie': 2.4645738053594624e-06, 'unequaled': 1.6430492035729749e-06, "Dartmouth's": 3.2860984071459497e-06, 'wildest': 1.6430492035729749e-06, 'roaringest': 1.6430492035729749e-06, 'hookup': 2.4645738053594624e-06, 'Prexy': 1.6430492035729749e-06, 'Dickey': 3.2860984071459497e-06, "tam-o'-shanter": 1.6430492035729749e-06, "Dickey's": 1.6430492035729749e-06, 'retriever': 1.6430492035729749e-06, 'informality': 1.6430492035729749e-06, 'disdain': 3.2860984071459497e-06, 'cropped': 4.929147610718925e-06, 'Thaddeus': 1.6430492035729749e-06, 'Seymour': 1.6430492035729749e-06, 'ski': 3.2860984071459497e-06, 'beauteous': 1.6430492035729749e-06, 'damsel': 1.6430492035729749e-06, 'temptingly': 1.6430492035729749e-06, 'kissed': 1.3144393628583799e-05, 'sang-froid': 1.6430492035729749e-06, 'Ledyard': 1.6430492035729749e-06, '1773': 1.6430492035729749e-06, 'scooped': 3.2860984071459497e-06, 'travelers': 5.750672212505412e-06, 'unappreciated': 1.6430492035729749e-06, 'riverbanks': 2.4645738053594624e-06, 'Northampton': 2.4645738053594624e-06, 'refresh': 1.6430492035729749e-06, 'voyageurs': 4.107623008932437e-06, 'kisses': 4.107623008932437e-06, 'skis': 1.6430492035729749e-06, 'outnumbered': 2.4645738053594624e-06, 'Ski': 2.4645738053594624e-06, 'Team': 2.4645738053594624e-06, 'Intercollegiate': 1.6430492035729749e-06, 'ski-joring': 1.6430492035729749e-06, 'Skiway': 1.6430492035729749e-06, "Holt's": 1.6430492035729749e-06, 'terrains': 1.6430492035729749e-06, 'Moosilauke': 1.6430492035729749e-06, 'Ravine': 1.6430492035729749e-06, 'freshmen': 3.2860984071459497e-06, 'Outing': 3.2860984071459497e-06, 'hand-hewn': 1.6430492035729749e-06, 'spruce': 2.4645738053594624e-06, 'lounging': 4.107623008932437e-06, '140': 3.2860984071459497e-06, 'Mountaineering': 1.6430492035729749e-06, 'climbs': 1.6430492035729749e-06, 'McKinley': 9.85829522143785e-06, 'Bait': 1.6430492035729749e-06, "Woodman's": 1.6430492035729749e-06, 'competes': 1.6430492035729749e-06, 'sawing': 1.6430492035729749e-06, 'chopping': 4.929147610718925e-06, 'Ivies': 2.4645738053594624e-06, 'ax': 4.929147610718925e-06, 'sawmill': 1.6430492035729749e-06, 'Himalayas': 2.4645738053594624e-06, 'Hanoverian': 6.5721968142918994e-06, 'casting': 4.107623008932437e-06, 'proctor': 3.2860984071459497e-06, "tug-o'-war": 1.6430492035729749e-06, 'factions': 4.929147610718925e-06, 'judicial': 1.232286902679731e-05, 'inviolability': 1.6430492035729749e-06, 'charters': 3.2860984071459497e-06, 'oratory': 2.4645738053594624e-06, 'orators': 2.4645738053594624e-06, "Dan'l": 1.6430492035729749e-06, 'thundering': 2.4645738053594624e-06, "Webster's": 1.6430492035729749e-06, 'eloquence': 2.4645738053594624e-06, 'Eleazar': 2.4645738053594624e-06, '1769': 1.6430492035729749e-06, 'earl': 1.6430492035729749e-06, 'pausing': 3.2860984071459497e-06, 'remoteness': 2.4645738053594624e-06, 'log': 9.85829522143785e-06, 'hut': 1.1501344425010824e-05, 'Tribes': 1.6430492035729749e-06, 'civilizing': 1.6430492035729749e-06, 'christianizing': 1.6430492035729749e-06, 'Pagans': 1.6430492035729749e-06, "Wheelock's": 1.6430492035729749e-06, 'hacked': 2.4645738053594624e-06, 'trackless': 1.6430492035729749e-06, 'Wentworth': 2.4645738053594624e-06, 'commencement': 3.2860984071459497e-06, '1771': 1.6430492035729749e-06, 'retinue': 1.6430492035729749e-06, 'punchbowl': 1.6430492035729749e-06, 'exuberance': 2.4645738053594624e-06, 'punch': 4.929147610718925e-06, 'near-by': 2.4645738053594624e-06, 'underclassman': 1.6430492035729749e-06, 'disdaining': 2.4645738053594624e-06, 'harangued': 1.6430492035729749e-06, 'aboriginal': 1.6430492035729749e-06, 'three-hundred-foot': 1.6430492035729749e-06, 'pines': 2.4645738053594624e-06, 'broached': 2.4645738053594624e-06, 'commencements': 1.6430492035729749e-06, 'decorous': 1.6430492035729749e-06, 'Penn': 4.929147610718925e-06, 'sixty-nine': 1.6430492035729749e-06, 'Spartan': 2.4645738053594624e-06, 'Jewett': 1.6430492035729749e-06, "college's": 1.6430492035729749e-06, '1907': 4.107623008932437e-06, '1,107': 1.6430492035729749e-06, 'attesting': 1.6430492035729749e-06, 'C.C.N.Y.': 1.6430492035729749e-06, 'Bowdoin': 1.6430492035729749e-06, 'emeritus': 2.4645738053594624e-06, 'numerically': 2.4645738053594624e-06, 'twenty-nine': 1.6430492035729749e-06, 'curriculums': 1.6430492035729749e-06, 'Thayer': 1.1501344425010824e-05, 'Amos': 3.2860984071459497e-06, 'Tuck': 1.6430492035729749e-06, 'B.S.': 1.6430492035729749e-06, 'outscoring': 1.6430492035729749e-06, '694': 1.6430492035729749e-06, '1888': 5.750672212505412e-06, 'espouses': 1.6430492035729749e-06, 'brashness': 1.6430492035729749e-06, 'Emeritus': 1.6430492035729749e-06, 'corral': 4.929147610718925e-06, 'conveniently': 6.5721968142918994e-06, 'unattended': 2.4645738053594624e-06, 'curbside': 3.2860984071459497e-06, 'stepmother': 3.2860984071459497e-06, 'stableman': 1.6430492035729749e-06, 'Vinnicum': 1.6430492035729749e-06, 'unannounced': 2.4645738053594624e-06, 'Borden': 1.7252016637516235e-05, 'iota': 1.6430492035729749e-06, 'Lizzie': 1.4787442832156774e-05, 'inquest': 4.929147610718925e-06, 'quarreled': 4.107623008932437e-06, 'Bedford': 2.4645738053594624e-06, 'Standard-Times': 1.6430492035729749e-06, 'Knowlton': 2.4645738053594624e-06, 'itinerant': 1.6430492035729749e-06, 'Westport': 2.4645738053594624e-06, 'vagabond': 2.4645738053594624e-06, 'shady': 1.6430492035729749e-06, 'accomplice': 2.4645738053594624e-06, 'incriminating': 1.6430492035729749e-06, "Morse's": 4.929147610718925e-06, 'alibi': 7.393721416078387e-06, '11:20': 4.107623008932437e-06, 'Questioned': 1.6430492035729749e-06, 'Bridget': 1.8073541239302723e-05, "Bridget's": 1.6430492035729749e-06, 'vomiting': 3.2860984071459497e-06, "Knowlton's": 1.6430492035729749e-06, 'tighter': 1.6430492035729749e-06, 'unlocked': 1.0679819823224336e-05, 'hatchet': 4.107623008932437e-06, 'disbelieve': 1.6430492035729749e-06, 'Weybosset': 1.6430492035729749e-06, 'Sawyer': 1.6430492035729749e-06, 'bloodstains': 1.6430492035729749e-06, 'trial-book': 1.6430492035729749e-06, 'exonerated': 1.6430492035729749e-06, 'disbelieved': 1.6430492035729749e-06, 'sinister': 1.1501344425010824e-05, 'exoneration': 2.4645738053594624e-06, "Lizzie's": 1.6430492035729749e-06, 'Fleet': 4.929147610718925e-06, 'Hiram': 3.2860984071459497e-06, "Harrington's": 1.6430492035729749e-06, 'Kirby': 8.215246017864873e-06, 'pears': 2.4645738053594624e-06, 'myopia': 1.6430492035729749e-06, 'cricket': 2.4645738053594624e-06, 'butler': 2.4645738053594624e-06, 'retell': 1.6430492035729749e-06, 'Bethlehem': 1.6430492035729749e-06, 'Bordens': 1.6430492035729749e-06, 'Upton': 1.5608967433943262e-05, 'withal': 1.6430492035729749e-06, 'profited': 3.2860984071459497e-06, 'observant': 3.2860984071459497e-06, 'retentive': 2.4645738053594624e-06, 'Elmira': 1.6430492035729749e-06, 'schoolmate': 1.6430492035729749e-06, 'Flint': 3.2860984071459497e-06, 'Winslow': 9.85829522143785e-06, 'astronomer': 1.6430492035729749e-06, 'bright-looking': 1.6430492035729749e-06, 'black-eyed': 1.6430492035729749e-06, 'recitation': 3.2860984071459497e-06, '1879': 2.4645738053594624e-06, '1874': 1.6430492035729749e-06, 'Diman': 1.6430492035729749e-06, "Diman's": 1.6430492035729749e-06, 'onward': 1.6430492035729749e-06, 'retrograde': 3.2860984071459497e-06, "Winslow's": 2.4645738053594624e-06, 'botany': 3.2860984071459497e-06, 'dabbling': 2.4645738053594624e-06, 'zoology': 1.6430492035729749e-06, 'Mathematics': 2.4645738053594624e-06, 'persistently': 3.2860984071459497e-06, "Maitland's": 1.6430492035729749e-06, 'Croix': 1.6430492035729749e-06, 'Customs': 1.6430492035729749e-06, 'Guizot': 1.6430492035729749e-06, 'Lecky': 1.6430492035729749e-06, "Stanley's": 4.107623008932437e-06, "Lucy's": 1.6430492035729749e-06, 'chess': 3.2860984071459497e-06, 'importunately': 1.6430492035729749e-06, '1,212': 1.6430492035729749e-06, 'glee-club': 1.6430492035729749e-06, 'organist': 1.6430492035729749e-06, 'Spelman': 9.85829522143785e-06, 'Observatory': 3.2860984071459497e-06, 'eclipses': 4.107623008932437e-06, 'Census': 3.2860984071459497e-06, 'Pension': 1.6430492035729749e-06, '1887': 4.107623008932437e-06, 'Packard': 1.1501344425010824e-05, 'Giles': 6.5721968142918994e-06, 'exacting': 2.4645738053594624e-06, 'discernment': 1.6430492035729749e-06, 'exquisiteness': 1.6430492035729749e-06, 'well-modulated': 1.6430492035729749e-06, 'hearers': 2.4645738053594624e-06, '1909-10': 1.6430492035729749e-06, 'geometry': 8.215246017864873e-06, 'horseback': 3.2860984071459497e-06, '1890': 3.2860984071459497e-06, 'brunt': 1.6430492035729749e-06, 'Buttrick': 1.6430492035729749e-06, 'Tapley': 1.6430492035729749e-06, 'Acting-President': 1.6430492035729749e-06, 'boilers': 1.6430492035729749e-06, 'Halls': 1.6430492035729749e-06, 'thankfulness': 2.4645738053594624e-06, 'bequests': 3.2860984071459497e-06, 'Copp': 1.6430492035729749e-06, 'Celia': 1.6430492035729749e-06, 'sorest': 1.6430492035729749e-06, 'bereft': 2.4645738053594624e-06, "Sophia's": 1.6430492035729749e-06, 'half-sister': 1.6430492035729749e-06, 'Worcester': 2.4645738053594624e-06, 'rhetoric': 4.929147610718925e-06, 'Founders': 4.107623008932437e-06, 'hardships': 4.929147610718925e-06, 'seminary': 2.4645738053594624e-06, 'Sister': 4.107623008932437e-06, 'Messenger': 2.4645738053594624e-06, 'pains-taking': 1.6430492035729749e-06, 'self-effacing': 1.6430492035729749e-06, 'radiating': 1.6430492035729749e-06, 'Smith-Hughes': 3.2860984071459497e-06, 'drafting': 5.750672212505412e-06, 'tool-and-die': 2.4645738053594624e-06, 'sheet-metal': 1.6430492035729749e-06, 'Formally': 1.6430492035729749e-06, 'occupations': 3.2860984071459497e-06, 'trade-preparatory': 1.6430492035729749e-06, 'distributive': 1.6430492035729749e-06, 'half-time': 2.4645738053594624e-06, 'marketable': 4.107623008932437e-06, 'Adult': 1.6430492035729749e-06, 'work-study': 1.6430492035729749e-06, 'furthering': 2.4645738053594624e-06, 'out-of-school': 1.6430492035729749e-06, 'Statistically': 2.4645738053594624e-06, 'motivation': 9.85829522143785e-06, 'tamp': 1.6430492035729749e-06, 'inequality': 1.6430492035729749e-06, 'underline': 2.4645738053594624e-06, 'learners': 1.6430492035729749e-06, 'relevance': 9.036770619651361e-06, 'disappears': 3.2860984071459497e-06, 'falter': 2.4645738053594624e-06, 'adjective': 2.4645738053594624e-06, 'stenography': 1.6430492035729749e-06, 'majored': 1.6430492035729749e-06, 'vocation': 3.2860984071459497e-06, 'typewriting': 1.6430492035729749e-06, 'typing': 6.5721968142918994e-06, 'consolidated': 4.929147610718925e-06, 'confidentially': 4.107623008932437e-06, 'plumber': 4.107623008932437e-06, 'Located': 1.6430492035729749e-06, 'redevelopment': 1.6430492035729749e-06, 'vandalism': 1.6430492035729749e-06, 'repairing': 2.4645738053594624e-06, 'soybean': 4.107623008932437e-06, 'leguminous': 1.6430492035729749e-06, 'soybeans': 4.929147610718925e-06, 'processed': 1.0679819823224336e-05, 'Soybeans': 1.6430492035729749e-06, 'Orient': 4.107623008932437e-06, 'tofu': 1.6430492035729749e-06, 'miso': 1.6430492035729749e-06, 'tempeh': 1.6430492035729749e-06, 'Soybean': 1.6430492035729749e-06, 'grits': 1.6430492035729749e-06, 'flakes': 4.107623008932437e-06, 'curd': 2.4645738053594624e-06, 'Peanuts': 1.6430492035729749e-06, 'Blanched': 1.6430492035729749e-06, 'seedcoats': 1.6430492035729749e-06, 'Cereal': 4.107623008932437e-06, 'three-fourths': 2.4645738053594624e-06, 'carbohydrate': 1.6430492035729749e-06, 'oils': 1.232286902679731e-05, 'Argentina': 1.6430492035729749e-06, '1957-1958': 1.6430492035729749e-06, 'sorghum': 3.2860984071459497e-06, 'byproducts': 3.2860984071459497e-06, 'oilseeds': 4.107623008932437e-06, 'forages': 1.6430492035729749e-06, "1930's": 6.5721968142918994e-06, 'byproduct': 2.4645738053594624e-06, 'arable': 3.2860984071459497e-06, 'nonfood': 1.6430492035729749e-06, 'Seeds': 5.750672212505412e-06, 'oil-bearing': 2.4645738053594624e-06, 'flax': 3.2860984071459497e-06, 'castor': 1.6430492035729749e-06, 'tung': 2.4645738053594624e-06, 'wood-oil': 1.6430492035729749e-06, 'perilla': 1.6430492035729749e-06, 'oiticica': 1.6430492035729749e-06, 'Oils': 1.6430492035729749e-06, 'varnishes': 2.4645738053594624e-06, 'beautifying': 1.6430492035729749e-06, 'resinlike': 1.6430492035729749e-06, 'poppy': 2.4645738053594624e-06, 'sesame': 4.107623008932437e-06, 'semidrying': 1.6430492035729749e-06, 'plated': 1.6430492035729749e-06, 'Castor': 1.6430492035729749e-06, 'castorbeans': 1.6430492035729749e-06, 'nondrying': 2.4645738053594624e-06, 'constituent': 4.929147610718925e-06, 'hydraulically': 1.6430492035729749e-06, 'Almond': 1.6430492035729749e-06, 'perfumery': 1.6430492035729749e-06, 'fragrances': 1.6430492035729749e-06, 'cosmetics': 6.5721968142918994e-06, 'adulterated': 1.6430492035729749e-06, 'peach': 2.4645738053594624e-06, 'plum': 1.6430492035729749e-06, 'Liquid': 1.6430492035729749e-06, 'soaps': 3.2860984071459497e-06, 'glycerin': 2.4645738053594624e-06, 'explosives': 3.2860984071459497e-06, 'Sizable': 1.6430492035729749e-06, 'kernel': 3.2860984071459497e-06, 'detergents': 4.107623008932437e-06, 'resins': 2.4645738053594624e-06, 'mahua': 1.6430492035729749e-06, 'shea': 1.6430492035729749e-06, 'starch': 3.2860984071459497e-06, 'starchy': 2.4645738053594624e-06, 'tubers': 1.6430492035729749e-06, 'Starch': 1.6430492035729749e-06, 'food-processing': 1.6430492035729749e-06, 'Gums': 1.6430492035729749e-06, 'quince': 1.6430492035729749e-06, 'psyllium': 3.2860984071459497e-06, 'fleawort': 1.6430492035729749e-06, 'locust': 4.929147610718925e-06, 'carob': 1.6430492035729749e-06, '2.6': 4.107623008932437e-06, 'guar': 1.6430492035729749e-06, 'Water-soluble': 1.6430492035729749e-06, 'thickeners': 1.6430492035729749e-06, 'stabilizers': 1.6430492035729749e-06, 'dispersing': 1.6430492035729749e-06, 'Guar': 1.6430492035729749e-06, 'thickens': 1.6430492035729749e-06, 'dressings': 1.6430492035729749e-06, 'stabilizes': 1.6430492035729749e-06, 'Quince': 1.6430492035729749e-06, 'wave-setting': 1.6430492035729749e-06, 'lotions': 1.6430492035729749e-06, 'laxative': 1.6430492035729749e-06, '117': 1.6430492035729749e-06, 'Locust': 1.6430492035729749e-06, 'slurries': 1.6430492035729749e-06, 'lumps': 3.2860984071459497e-06, 'fibrous': 4.929147610718925e-06, 'stony': 4.929147610718925e-06, 'seedcoat': 1.6430492035729749e-06, 'kernels': 3.2860984071459497e-06, 'brazil': 2.4645738053594624e-06, 'cashews': 1.6430492035729749e-06, 'filberts': 2.4645738053594624e-06, 'hazelnuts': 1.6430492035729749e-06, 'hickory': 2.4645738053594624e-06, 'pecans': 1.6430492035729749e-06, 'Almonds': 1.6430492035729749e-06, 'pistachio': 1.6430492035729749e-06, 'Chestnuts': 1.6430492035729749e-06, 'almonds': 2.4645738053594624e-06, 'Coconuts': 1.6430492035729749e-06, 'copra': 2.4645738053594624e-06, 'Exports': 1.6430492035729749e-06, 'spicy': 1.6430492035729749e-06, 'sudsing': 1.6430492035729749e-06, 'saponins': 1.6430492035729749e-06, 'varnish': 1.6430492035729749e-06, 'aromatic': 2.4645738053594624e-06, 'sweet-smelling': 2.4645738053594624e-06, 'cumara': 1.6430492035729749e-06, 'perfumes': 1.6430492035729749e-06, 'tagua': 1.6430492035729749e-06, 'endosperm': 1.6430492035729749e-06, 'egg-sized': 1.6430492035729749e-06, 'turnery': 1.6430492035729749e-06, 'sago': 1.6430492035729749e-06, 'ornaments': 3.2860984071459497e-06, 'rosaries': 3.2860984071459497e-06, 'jobs-tears': 1.6430492035729749e-06, 'Asiatic': 1.6430492035729749e-06, 'Bead': 1.6430492035729749e-06, 'necklaces': 2.4645738053594624e-06, 'islanders': 1.6430492035729749e-06, 'stringing': 1.6430492035729749e-06, 'Handmade': 1.6430492035729749e-06, 'Tradition': 2.4645738053594624e-06, 'medicinal': 1.6430492035729749e-06, 'alkaloids': 1.6430492035729749e-06, 'anise': 2.4645738053594624e-06, 'castorbean': 1.6430492035729749e-06, 'colchicum': 1.6430492035729749e-06, 'nux': 1.6430492035729749e-06, 'vomica': 1.6430492035729749e-06, 'fennel': 2.4645738053594624e-06, 'stramonium': 1.6430492035729749e-06, 'Flaxseed': 1.6430492035729749e-06, 'plasters': 1.6430492035729749e-06, 'Peanut': 1.6430492035729749e-06, 'diluents': 1.6430492035729749e-06, 'seed-bearing': 1.6430492035729749e-06, 'flavors': 2.4645738053594624e-06, 'flavorings': 1.6430492035729749e-06, 'coriander': 1.6430492035729749e-06, 'Single-seeded': 1.6430492035729749e-06, 'flavoring': 2.4645738053594624e-06, 'carrot': 1.6430492035729749e-06, 'cumin': 1.6430492035729749e-06, 'dill': 1.6430492035729749e-06, 'angelica': 1.6430492035729749e-06, 'beverages': 3.2860984071459497e-06, 'fenugreek': 1.6430492035729749e-06, 'cardamom': 1.6430492035729749e-06, 'pods': 1.6430492035729749e-06, 'Brazil': 5.750672212505412e-06, 'toasted-nut': 1.6430492035729749e-06, 'halvah': 1.6430492035729749e-06, 'Beverages': 1.6430492035729749e-06, 'Per': 1.6430492035729749e-06, 'Cocoa': 1.6430492035729749e-06, 'cocoa': 1.6430492035729749e-06, 'cacao': 1.6430492035729749e-06, 'kola': 2.4645738053594624e-06, 'fermented': 4.107623008932437e-06, 'Arrack': 1.6430492035729749e-06, 'Beer': 3.2860984071459497e-06, 'alcoholic': 3.2860984071459497e-06, 'brewed': 1.6430492035729749e-06, 'Brewers': 1.6430492035729749e-06, 'malted': 1.6430492035729749e-06, 'Distillers': 1.6430492035729749e-06, 'malt': 1.6430492035729749e-06, 'Seed': 1.6430492035729749e-06, 'cottonseed': 1.6430492035729749e-06, 'Hay': 2.4645738053594624e-06, 'oilseed': 1.6430492035729749e-06, 'brewing': 1.6430492035729749e-06, 'distilling': 1.6430492035729749e-06, '15.8': 1.6430492035729749e-06, "locatin'": 1.6430492035729749e-06, "herdin'": 3.2860984071459497e-06, 'Cattle': 6.5721968142918994e-06, "seekin'": 1.6430492035729749e-06, 'strays': 5.750672212505412e-06, "bein'": 2.4645738053594624e-06, 'hosses': 4.929147610718925e-06, "marchin'": 1.6430492035729749e-06, 'banded': 2.4645738053594624e-06, 'drought': 4.107623008932437e-06, 'stampede': 4.107623008932437e-06, "'nough": 1.6430492035729749e-06, "'emselves": 1.6430492035729749e-06, 'blizzards': 1.6430492035729749e-06, 'droughts': 2.4645738053594624e-06, 'die-up': 1.6430492035729749e-06, "Followin'": 1.6430492035729749e-06, 'ranchers': 6.5721968142918994e-06, "skinnin'": 1.6430492035729749e-06, "brandin'": 1.6430492035729749e-06, 'potted': 3.2860984071459497e-06, 'choked': 6.5721968142918994e-06, "durin'": 3.2860984071459497e-06, 'humped': 1.6430492035729749e-06, "showin'": 1.6430492035729749e-06, 'cowhand': 4.107623008932437e-06, 'hailstorm': 1.6430492035729749e-06, 'wintered': 2.4645738053594624e-06, 'Them': 2.4645738053594624e-06, 'pilgrims': 1.6430492035729749e-06, 'hot-blooded': 1.6430492035729749e-06, 'tenderfoot': 2.4645738053594624e-06, 'Hereford': 1.6430492035729749e-06, 'open-face': 1.6430492035729749e-06, 'cowman': 2.4645738053594624e-06, 'hothouse': 1.6430492035729749e-06, 'Holstein': 1.6430492035729749e-06, 'magpies': 2.4645738053594624e-06, 'cattaloe': 1.6430492035729749e-06, 'hybrid': 1.6430492035729749e-06, 'denoted': 8.215246017864873e-06, 'bovines': 1.6430492035729749e-06, "givin'": 4.929147610718925e-06, "cowboy's": 1.6430492035729749e-06, 'knowed': 1.6430492035729749e-06, 'strippers': 1.6430492035729749e-06, "speakin'": 1.6430492035729749e-06, "confusin'": 1.6430492035729749e-06, "meanin'": 2.4645738053594624e-06, 'Mixed': 1.6430492035729749e-06, 'steers': 1.6430492035729749e-06, 'turn-out': 1.6430492035729749e-06, "Shootin'": 1.6430492035729749e-06, "gettin'": 1.6430492035729749e-06, "crouchin'": 1.6430492035729749e-06, "a-stoopin'": 1.6430492035729749e-06, 'stir': 6.5721968142918994e-06, "ginnin'": 1.6430492035729749e-06, "chousin'": 1.6430492035729749e-06, "pushin'": 2.4645738053594624e-06, "throwin'": 4.107623008932437e-06, 'hindquarters': 1.6430492035729749e-06, "standin'": 1.6430492035729749e-06, "prayin'": 2.4645738053594624e-06, "grazin'": 3.2860984071459497e-06, 'hoof': 2.4645738053594624e-06, "referrin'": 1.6430492035729749e-06, "travelin'": 2.4645738053594624e-06, "goin'": 7.393721416078387e-06, "Shippin'": 1.6430492035729749e-06, 'grass-fed': 1.6430492035729749e-06, 'grassers': 1.6430492035729749e-06, "dustin'": 1.6430492035729749e-06, 'throwed': 2.4645738053594624e-06, "chargin'": 1.6430492035729749e-06, "Injun's": 1.6430492035729749e-06, 'wohaw': 2.4645738053594624e-06, 'frontiersmen': 2.4645738053594624e-06, 'Injun': 3.2860984071459497e-06, 'Injuns': 1.6430492035729749e-06, 'freighters': 1.6430492035729749e-06, "Listenin'": 1.6430492035729749e-06, 'bullwhackers': 1.6430492035729749e-06, 'Whoa': 1.6430492035729749e-06, 'Haw': 1.6430492035729749e-06, "callin'": 1.6430492035729749e-06, 'wohaws': 1.6430492035729749e-06, "Tailin'": 1.6430492035729749e-06, 'lieu': 4.929147610718925e-06, "overtakin'": 1.6430492035729749e-06, "seizin'": 1.6430492035729749e-06, "it'd": 3.2860984071459497e-06, 'yank': 2.4645738053594624e-06, "producin'": 1.6430492035729749e-06, "'bout": 1.6430492035729749e-06, 'heave': 1.6430492035729749e-06, "rider's": 2.4645738053594624e-06, "strainin'": 1.6430492035729749e-06, 'resorted': 4.929147610718925e-06, 'unmanageable': 1.6430492035729749e-06, 'longhorns': 1.6430492035729749e-06, "tailin'": 2.4645738053594624e-06, 'dazed': 3.2860984071459497e-06, "'im": 5.750672212505412e-06, 'hoss': 4.929147610718925e-06, "darin'": 1.6430492035729749e-06, 'discontinued': 6.5721968142918994e-06, "tailin's": 1.6430492035729749e-06, 'Bull': 1.6430492035729749e-06, "pop'lar": 1.6430492035729749e-06, 'bulls': 2.4645738053594624e-06, "yellin'": 1.6430492035729749e-06, "cowhand'd": 1.6430492035729749e-06, "Seizin'": 1.6430492035729749e-06, "bustin'": 1.6430492035729749e-06, "Rammin'": 1.6430492035729749e-06, "peggin'": 1.6430492035729749e-06, 'splotches': 1.6430492035729749e-06, 'brindle': 1.6430492035729749e-06, 'brockle': 1.6430492035729749e-06, 'lineback': 2.4645738053594624e-06, 'stripe': 4.107623008932437e-06, "runnin'": 2.4645738053594624e-06, 'lobo': 1.6430492035729749e-06, 'yeller': 1.6430492035729749e-06, 'mealynose': 1.6430492035729749e-06, 'longhorn': 2.4645738053594624e-06, "lighter'n": 1.6430492035729749e-06, 'mealynosed': 1.6430492035729749e-06, 'Sabinas': 1.6430492035729749e-06, 'splotched': 2.4645738053594624e-06, "colorin'": 1.6430492035729749e-06, 'Sonora': 1.6430492035729749e-06, 'yaks': 1.6430492035729749e-06, 'Yaqui': 1.6430492035729749e-06, 'buckskins': 1.6430492035729749e-06, 'coloration': 2.4645738053594624e-06, 'speckles': 1.6430492035729749e-06, "appearin'": 1.6430492035729749e-06, 'zorrillas': 1.6430492035729749e-06, 'polecat': 1.6430492035729749e-06, 'Yeller': 1.6430492035729749e-06, 'bellies': 2.4645738053594624e-06, 'flank': 2.4645738053594624e-06, 'yellerish': 1.6430492035729749e-06, 'rustler': 4.107623008932437e-06, "Countin'": 1.6430492035729749e-06, "driftin'": 1.6430492035729749e-06, 'uncounted': 3.2860984071459497e-06, "sellin'": 1.6430492035729749e-06, "sayin'": 4.107623008932437e-06, 'byword': 1.6430492035729749e-06, 'saloonkeeper': 1.6430492035729749e-06, 'Murrin': 1.6430492035729749e-06, "meetin'": 1.6430492035729749e-06, 'cattlemen': 3.2860984071459497e-06, 'herd-owner': 1.6430492035729749e-06, "wearin'": 1.6430492035729749e-06, 'Cheer': 1.6430492035729749e-06, "prevailin'": 1.6430492035729749e-06, "buyin'": 1.6430492035729749e-06, "examinin'": 1.6430492035729749e-06, "seller's": 1.6430492035729749e-06, "considerin'": 1.6430492035729749e-06, "rep'tation": 1.6430492035729749e-06, 'truthfulness': 2.4645738053594624e-06, "denyin'": 1.6430492035729749e-06, "redeemin'": 1.6430492035729749e-06, "swingin'": 2.4645738053594624e-06, 'synonym': 3.2860984071459497e-06, 'hustler': 3.2860984071459497e-06, "becomin'": 1.6430492035729749e-06, "bustlin'": 1.6430492035729749e-06, 'rustle': 4.107623008932437e-06, "rustlin'": 1.6430492035729749e-06, "startin'": 1.6430492035729749e-06, 'cowhands': 1.6430492035729749e-06, 'mavericks': 1.6430492035729749e-06, 'zebra': 1.6430492035729749e-06, 'circled': 8.215246017864873e-06, 'stifled': 2.4645738053594624e-06, 'Comanche': 1.6430492035729749e-06, 'yell': 8.215246017864873e-06, 'Reef': 9.85829522143785e-06, 'perpendicularly': 1.6430492035729749e-06, 'honeycombed': 1.6430492035729749e-06, 'creepers': 2.4645738053594624e-06, 'lava': 1.6430492035729749e-06, 'Kearton': 8.215246017864873e-06, 'Ulyate': 1.3144393628583799e-05, 'Loveless': 4.929147610718925e-06, 'reined': 3.2860984071459497e-06, 'focussed': 3.2860984071459497e-06, 'specks': 2.4645738053594624e-06, 'Hyena': 1.6430492035729749e-06, 'faintly': 6.5721968142918994e-06, 'cracks': 6.5721968142918994e-06, 'Sounder': 1.6430492035729749e-06, 'Rim': 1.6430492035729749e-06, 'Rastus': 1.6430492035729749e-06, 'Rake': 1.6430492035729749e-06, 'fox-hounds': 1.6430492035729749e-06, 'collie': 2.4645738053594624e-06, 'Simba': 1.6430492035729749e-06, 'terrier': 4.107623008932437e-06, 'motley': 3.2860984071459497e-06, 'galloping': 1.6430492035729749e-06, 'leaning': 1.0679819823224336e-05, 'cheering': 1.6430492035729749e-06, 'blew': 1.0679819823224336e-05, 'fetch': 4.929147610718925e-06, 'barking': 2.4645738053594624e-06, 'baying': 1.6430492035729749e-06, 'gallop': 4.107623008932437e-06, 'lava-rocks': 1.6430492035729749e-06, 'thickly': 4.929147610718925e-06, 'peering': 8.215246017864873e-06, 'impassable': 2.4645738053594624e-06, 'full-grown': 2.4645738053594624e-06, 'lioness': 3.2860984071459497e-06, 'crouched': 1.3965918230370285e-05, 'whirled': 5.750672212505412e-06, 'Careful': 2.4645738053594624e-06, 'lashing': 2.4645738053594624e-06, 'stamping': 4.929147610718925e-06, 'forefeet': 1.6430492035729749e-06, 'Intuition': 1.6430492035729749e-06, 'winded': 2.4645738053594624e-06, 'Nairobi': 1.6430492035729749e-06, 'graves': 5.750672212505412e-06, 'lasso': 2.4645738053594624e-06, 'lionesses': 1.6430492035729749e-06, 'bluffing': 1.6430492035729749e-06, 'nipped': 1.6430492035729749e-06, 'ducked': 4.929147610718925e-06, 'recoiled': 1.6430492035729749e-06, 'encircle': 1.6430492035729749e-06, "lioness'": 2.4645738053594624e-06, 'paw': 3.2860984071459497e-06, 'lashed': 3.2860984071459497e-06, 'treading': 1.6430492035729749e-06, 'hind': 3.2860984071459497e-06, 'undergrowth': 1.6430492035729749e-06, 'crevice': 2.4645738053594624e-06, 'yelled': 1.889506584108921e-05, "she'll": 4.107623008932437e-06, 'firecrackers': 2.4645738053594624e-06, 'Fourth-of-July': 1.6430492035729749e-06, 'crackers': 4.107623008932437e-06, 'Lighting': 4.107623008932437e-06, 'mauling': 1.6430492035729749e-06, "Ain't": 4.107623008932437e-06, 'clung': 1.232286902679731e-05, 'rhinoceros': 2.4645738053594624e-06, 'poke': 1.6430492035729749e-06, 'noose': 3.2860984071459497e-06, 'cave-like': 1.6430492035729749e-06, 'aperture': 7.393721416078387e-06, 'ropes': 4.107623008932437e-06, "lions'": 1.6430492035729749e-06, 'gentler': 3.2860984071459497e-06, 'strung': 4.107623008932437e-06, 'bruised': 6.5721968142918994e-06, 'clawed': 2.4645738053594624e-06, 'thorn': 3.2860984071459497e-06, 'maneuvered': 3.2860984071459497e-06, 'rawboned': 1.6430492035729749e-06, 'gelding': 4.107623008932437e-06, 'spin': 6.5721968142918994e-06, 'whining': 5.750672212505412e-06, 'tensely': 4.107623008932437e-06, 'obedient': 2.4645738053594624e-06, 'warningly': 1.6430492035729749e-06, 'pony': 6.5721968142918994e-06, 'sidewise': 5.750672212505412e-06, 'cheetah': 1.6430492035729749e-06, 'cowpony': 1.6430492035729749e-06, "she'd": 4.60053777000433e-05, 'Baldy': 1.6430492035729749e-06, 'scant': 4.929147610718925e-06, 'ropers': 1.6430492035729749e-06, 'Tossing': 1.6430492035729749e-06, 'Wait': 1.8073541239302723e-05, "camera's": 1.6430492035729749e-06, 'roped': 1.6430492035729749e-06, 'proclaim': 1.1501344425010824e-05, 'deficient': 3.2860984071459497e-06, 'sideshow': 1.6430492035729749e-06, 'oversight': 1.6430492035729749e-06, 'interdenominational': 2.4645738053594624e-06, 'parishes': 1.6430492035729749e-06, 'Rover': 4.107623008932437e-06, 'prevails': 6.5721968142918994e-06, 'lame': 2.4645738053594624e-06, 'worshiping': 3.2860984071459497e-06, 'unreality': 2.4645738053594624e-06, 'grievous': 1.6430492035729749e-06, 'disparity': 2.4645738053594624e-06, 'complacent': 1.6430492035729749e-06, 'separateness': 2.4645738053594624e-06, 'trite': 2.4645738053594624e-06, 'comprehended': 2.4645738053594624e-06, 'polity': 1.6430492035729749e-06, 'Shintoism': 1.6430492035729749e-06, 'koinonia': 2.4645738053594624e-06, 'chumminess': 1.6430492035729749e-06, 'Acts': 2.4645738053594624e-06, 'Epistles': 1.6430492035729749e-06, 'Bonhoffer': 1.6430492035729749e-06, 'agreeableness': 1.6430492035729749e-06, 'reconciliation': 1.6430492035729749e-06, 'congeniality': 1.6430492035729749e-06, 'foundation-stone': 1.6430492035729749e-06, 'antithesis': 3.2860984071459497e-06, 'organically': 3.2860984071459497e-06, 'shuts': 1.6430492035729749e-06, 'Divergent': 1.6430492035729749e-06, 'perspectives': 3.2860984071459497e-06, 'illustrative': 5.750672212505412e-06, 'Bela': 1.6430492035729749e-06, 'Vasady': 1.6430492035729749e-06, 'bifocal': 1.6430492035729749e-06, 'near-at-hand': 2.4645738053594624e-06, 'ecumenists': 1.6430492035729749e-06, 'Dickens': 1.3965918230370285e-05, 'Jellyby': 1.6430492035729749e-06, 'Borrioboola-Gha': 1.6430492035729749e-06, 'forgot': 1.4787442832156774e-05, 'Peepy': 1.6430492035729749e-06, 'Likewise': 4.929147610718925e-06, 'ecumenist': 1.6430492035729749e-06, 'unspectacular': 1.6430492035729749e-06, 'introverted': 1.6430492035729749e-06, 'starkly': 1.6430492035729749e-06, 'eminently': 4.107623008932437e-06, 'edifice': 3.2860984071459497e-06, 'enthusiast': 2.4645738053594624e-06, 'sub-Christian': 1.6430492035729749e-06, 'stewardship': 1.6430492035729749e-06, 'rancher': 1.232286902679731e-05, 'inn': 4.929147610718925e-06, 'Desiring': 1.6430492035729749e-06, 'erecting': 3.2860984071459497e-06, 'Rancher': 1.6430492035729749e-06, "ma'am": 2.4645738053594624e-06, 'preferences': 6.5721968142918994e-06, 'conceives': 2.4645738053594624e-06, 'buggies': 1.6430492035729749e-06, 'chugging': 2.4645738053594624e-06, 'Fords': 1.6430492035729749e-06, 'scampering': 1.6430492035729749e-06, 'enraptured': 1.6430492035729749e-06, 'fielder': 3.2860984071459497e-06, 'fuzzy': 5.750672212505412e-06, 'yelps': 1.6430492035729749e-06, 'derision': 4.107623008932437e-06, 'suspenders': 1.6430492035729749e-06, 'umpire': 1.6430492035729749e-06, 'kidneys': 4.929147610718925e-06, 'wrangled': 2.4645738053594624e-06, 'triumphantly': 7.393721416078387e-06, 'hay-shakers': 2.4645738053594624e-06, "G'ahn": 1.6430492035729749e-06, 'payday': 3.2860984071459497e-06, 'Coastal': 1.6430492035729749e-06, 'abounded': 2.4645738053594624e-06, 'grocers': 3.2860984071459497e-06, 'begrudge': 2.4645738053594624e-06, 'scorned': 2.4645738053594624e-06, 'Jidge': 1.6430492035729749e-06, 'Two-Head': 1.6430492035729749e-06, 'taunt': 4.107623008932437e-06, 'delinquent': 5.750672212505412e-06, 'risked': 4.107623008932437e-06, 'eccentricities': 1.6430492035729749e-06, 'Daddy': 2.4645738053594624e-06, "Capone's": 1.6430492035729749e-06, "Sande's": 1.6430492035729749e-06, "Wales'": 1.6430492035729749e-06, 'sorriest': 1.6430492035729749e-06, 'Shires': 3.2860984071459497e-06, 'brag': 2.4645738053594624e-06, 'carousing': 2.4645738053594624e-06, 'knuckles': 7.393721416078387e-06, 'Baseman': 1.6430492035729749e-06, 'Pegler': 1.6430492035729749e-06, 'armament': 1.6430492035729749e-06, 'irritant': 1.6430492035729749e-06, 'orate': 1.6430492035729749e-06, 'flagpoles': 1.6430492035729749e-06, 'ingested': 4.107623008932437e-06, 'essayed': 2.4645738053594624e-06, 'illicit': 3.2860984071459497e-06, 'exhilarated': 1.6430492035729749e-06, 'insanity': 3.2860984071459497e-06, 'swan': 2.4645738053594624e-06, 'Yale-Army': 1.6430492035729749e-06, 'prosper': 3.2860984071459497e-06, 'entertainments': 3.2860984071459497e-06, 'Goodwill': 1.6430492035729749e-06, 'Spalding': 1.6430492035729749e-06, 'Era': 1.6430492035729749e-06, 'toiled': 1.6430492035729749e-06, 'stingy': 1.6430492035729749e-06, 'Comiskey': 1.6430492035729749e-06, 'brewery': 1.6430492035729749e-06, 'Barrow': 1.6430492035729749e-06, 'Huggins': 1.6430492035729749e-06, 'wring': 2.4645738053594624e-06, '1923-27': 1.6430492035729749e-06, 'millionaires': 1.6430492035729749e-06, 'Huston': 1.6430492035729749e-06, 'Ruppert': 1.6430492035729749e-06, 'trifling': 2.4645738053594624e-06, 'wrappers': 1.6430492035729749e-06, 'Fenway': 1.6430492035729749e-06, 'Waite': 1.6430492035729749e-06, 'Schang': 1.6430492035729749e-06, 'Dugan': 2.4645738053594624e-06, 'playboy': 1.6430492035729749e-06, 'mightiest': 1.6430492035729749e-06, 'shone': 4.929147610718925e-06, 'agile': 2.4645738053594624e-06, 'Lazzeri': 1.6430492035729749e-06, 'epileptic': 3.2860984071459497e-06, 'Koenig': 1.6430492035729749e-06, 'Pipgras': 1.6430492035729749e-06, 'gray-thatched': 1.6430492035729749e-06, 'Combs': 1.6430492035729749e-06, "World's": 3.2860984071459497e-06, 'Thevenow': 1.6430492035729749e-06, 'red-necked': 1.6430492035729749e-06, '-ing': 1.6430492035729749e-06, 'sonofabitch': 4.107623008932437e-06, 'speculators': 2.4645738053594624e-06, 'ineluctable': 1.6430492035729749e-06, 'modality': 1.6430492035729749e-06, 'excursion': 2.4645738053594624e-06, 'trolley': 4.929147610718925e-06, 'martyrdom': 1.6430492035729749e-06, 'fifty-one': 1.6430492035729749e-06, 'pretend': 6.5721968142918994e-06, 'unaccompanied': 3.2860984071459497e-06, 'tobacco-juice': 1.6430492035729749e-06, 'premarital': 3.2860984071459497e-06, 'chastity': 2.4645738053594624e-06, "Erikson's": 3.2860984071459497e-06, 'schema': 3.2860984071459497e-06, 'diffusion': 2.0538115044662184e-05, 'conceptual': 4.107623008932437e-06, 'superimposing': 1.6430492035729749e-06, 'denominators': 1.6430492035729749e-06, 'configurations': 3.2860984071459497e-06, 'unwed': 1.0679819823224336e-05, 'postulated': 6.5721968142918994e-06, 'Erikson': 5.750672212505412e-06, 'effectual': 1.6430492035729749e-06, 'socialization': 4.107623008932437e-06, 'adolescence': 1.5608967433943262e-05, 'Hypothesizing': 1.6430492035729749e-06, 'developmental': 8.215246017864873e-06, 'epigenetic': 1.6430492035729749e-06, "adolescent's": 3.2860984071459497e-06, 'motherhood': 1.6430492035729749e-06, 'adulthood': 3.2860984071459497e-06, 'Experience': 4.107623008932437e-06, 'polar': 6.5721968142918994e-06, 'Erickson': 1.6430492035729749e-06, 'identities': 9.036770619651361e-06, 'irreversibly': 1.6430492035729749e-06, 'deterministic': 6.5721968142918994e-06, 'SNP': 1.6430492035729749e-06, 'alter-parents': 1.6430492035729749e-06, 'self-certainty': 6.5721968142918994e-06, 'role-experimentation': 1.6430492035729749e-06, 'peer-group': 1.6430492035729749e-06, 'ostensible': 3.2860984071459497e-06, 'indoctrinated': 1.6430492035729749e-06, 'nursery-': 1.6430492035729749e-06, 'elementary-school': 5.750672212505412e-06, 'shamed': 1.6430492035729749e-06, 'groping': 4.929147610718925e-06, 'work-paralysis': 1.6430492035729749e-06, 'self-discipline': 4.929147610718925e-06, "female's": 3.2860984071459497e-06, 'incapacitated': 2.4645738053594624e-06, 'homemaker': 3.2860984071459497e-06, 'carreer': 1.6430492035729749e-06, 'deprive': 3.2860984071459497e-06, 'role-experiment': 1.6430492035729749e-06, 'Childhood': 1.6430492035729749e-06, 'Sex': 3.2860984071459497e-06, 'polarization': 5.750672212505412e-06, 'germane': 2.4645738053594624e-06, 'consderations': 1.6430492035729749e-06, 'superimpose': 4.107623008932437e-06, 'Adolescents': 1.6430492035729749e-06, 'much-discussed': 1.6430492035729749e-06, 'polarize': 1.6430492035729749e-06, 'either-or': 1.6430492035729749e-06, 'nuances': 3.2860984071459497e-06, 'resolves': 2.4645738053594624e-06, 'fluctuating': 2.4645738053594624e-06, "no-man's-land": 1.6430492035729749e-06, 'transcends': 5.750672212505412e-06, 'evinced': 1.6430492035729749e-06, 'mirrored': 1.6430492035729749e-06, 'Lohmans': 1.6430492035729749e-06, 'disprove': 3.2860984071459497e-06, 'explicitly': 5.750672212505412e-06, 'censured': 1.6430492035729749e-06, 'pregnant': 7.393721416078387e-06, 'diffuse': 4.107623008932437e-06, 'asocial': 1.6430492035729749e-06, 'attributing': 3.2860984071459497e-06, 'Selden': 1.3144393628583799e-05, 'litigation': 1.1501344425010824e-05, 'infringement': 6.5721968142918994e-06, 'inventors': 3.2860984071459497e-06, 'Equity': 2.4645738053594624e-06, 'flagrantly': 1.6430492035729749e-06, 'adduce': 1.6430492035729749e-06, 'deposition': 3.2860984071459497e-06, 'viva': 1.6430492035729749e-06, 'voce': 1.6430492035729749e-06, 'antiquated': 4.107623008932437e-06, 'prolixity': 2.4645738053594624e-06, 'elephantine': 1.6430492035729749e-06, 'rancorous': 2.4645738053594624e-06, 'bouts': 3.2860984071459497e-06, 'uncalled': 1.6430492035729749e-06, 'retort': 4.107623008932437e-06, 'discourteous': 2.4645738053594624e-06, 'singular': 1.232286902679731e-05, 'Redding': 1.6430492035729749e-06, 'Inventors': 1.6430492035729749e-06, 'clamor': 2.4645738053594624e-06, 'centering': 4.107623008932437e-06, 'costive': 1.6430492035729749e-06, 'likened': 3.2860984071459497e-06, 'chancery': 2.4645738053594624e-06, 'caricatured': 1.6430492035729749e-06, 'Bleak': 1.6430492035729749e-06, 'conceal': 6.5721968142918994e-06, 'procedural': 6.5721968142918994e-06, 'pilloried': 2.4645738053594624e-06, 'embraced': 4.107623008932437e-06, '1911': 3.2860984071459497e-06, 'strictures': 1.6430492035729749e-06, 'consolidate': 2.4645738053594624e-06, 'infringements': 1.6430492035729749e-06, 'automotive': 7.393721416078387e-06, "Hough's": 2.4645738053594624e-06, 'indiscriminate': 3.2860984071459497e-06, 'depositions': 3.2860984071459497e-06, 'empowered': 2.4645738053594624e-06, 'thereto': 9.85829522143785e-06, 'acidulous': 1.6430492035729749e-06, 'unheeded': 2.4645738053594624e-06, 'long-overdue': 1.6430492035729749e-06, 'orally': 2.4645738053594624e-06, 'A.L.A.M.': 1.1501344425010824e-05, 'litigants': 1.6430492035729749e-06, 'promulgated': 2.4645738053594624e-06, 'lineal': 1.6430492035729749e-06, 'cross-licensing': 4.107623008932437e-06, 'rims': 1.6430492035729749e-06, 'fluidity': 2.4645738053594624e-06, 'disregard': 5.750672212505412e-06, 'conflicting': 7.393721416078387e-06, 'patent-sharing': 2.4645738053594624e-06, 'interchange': 5.750672212505412e-06, 'royalty': 6.5721968142918994e-06, 'cross-fertilization': 1.6430492035729749e-06, 'withholding': 6.5721968142918994e-06, 'adjunct': 5.750672212505412e-06, 'wouldbe': 1.6430492035729749e-06, 'retard': 3.2860984071459497e-06, 'unlicensed': 1.6430492035729749e-06, 'planetary': 1.8073541239302723e-05, 'freebooters': 1.6430492035729749e-06, 'trafficked': 1.6430492035729749e-06, 'disputed': 2.4645738053594624e-06, 'inventions': 4.107623008932437e-06, 'parts-suppliers': 1.6430492035729749e-06, 'Purely': 1.6430492035729749e-06, "lawyer's": 2.4645738053594624e-06, 'accessory': 1.6430492035729749e-06, 'beneficient': 1.6430492035729749e-06, 'ordeal': 3.2860984071459497e-06, 'sapping': 1.6430492035729749e-06, 'blocking': 3.2860984071459497e-06, 'Hanch': 4.929147610718925e-06, 'Nordyke': 1.6430492035729749e-06, 'Marmon': 2.4645738053594624e-06, 'flour-milling': 1.6430492035729749e-06, '1904': 3.2860984071459497e-06, 'first-hand': 3.2860984071459497e-06, "mid-1890's": 1.6430492035729749e-06, 'Anxious': 1.6430492035729749e-06, 'debacle': 3.2860984071459497e-06, 'industry-wide': 1.6430492035729749e-06, 'propitious': 2.4645738053594624e-06, 'Wilfred': 1.6430492035729749e-06, 'Coffin': 1.6430492035729749e-06, 'Vandervoort': 1.6430492035729749e-06, 'royalty-free': 1.6430492035729749e-06, 'summation': 3.2860984071459497e-06, 'persuasions': 1.6430492035729749e-06, 'Sabina': 2.4645738053594624e-06, 'Aventine': 1.6430492035729749e-06, 'Continue': 2.4645738053594624e-06, 'Piazza': 9.85829522143785e-06, 'Malta': 3.2860984071459497e-06, 'bas-reliefs': 2.4645738053594624e-06, 'Maltese': 3.2860984071459497e-06, 'laurel': 1.6430492035729749e-06, 'Retrace': 1.6430492035729749e-06, 'Via': 2.6288787257167598e-05, 'Alessio': 1.6430492035729749e-06, 'Oleanders': 1.6430492035729749e-06, 'Prisca': 1.6430492035729749e-06, 'Viale': 1.6430492035729749e-06, 'Aventino': 1.6430492035729749e-06, 'renaissance': 5.750672212505412e-06, 'piazza': 5.750672212505412e-06, 'Navona': 4.107623008932437e-06, 'hemmed': 2.4645738053594624e-06, 'palazzi': 1.6430492035729749e-06, 'by-passed': 1.6430492035729749e-06, 'Steps': 4.107623008932437e-06, 'Pincian': 2.4645738053594624e-06, 'civilizations': 4.107623008932437e-06, 'Teatro': 1.6430492035729749e-06, 'Marcello': 1.6430492035729749e-06, 'Capitoline': 1.6430492035729749e-06, 'Marcellus': 2.4645738053594624e-06, 'Augustus': 4.107623008932437e-06, 'Twenty-two': 2.4645738053594624e-06, 'modeled': 3.2860984071459497e-06, 'Doric': 4.107623008932437e-06, 'Columns': 4.929147610718925e-06, 'Portico': 1.6430492035729749e-06, 'Octavia': 1.6430492035729749e-06, 'Climb': 1.6430492035729749e-06, 'Della': 5.750672212505412e-06, 'Tribuna': 1.6430492035729749e-06, 'Campitelli': 2.4645738053594624e-06, 'Dei': 6.5721968142918994e-06, 'Funari': 1.6430492035729749e-06, 'Mattei': 3.2860984071459497e-06, 'Fontana': 1.6430492035729749e-06, 'delle': 1.6430492035729749e-06, 'Tartarughe': 1.6430492035729749e-06, 'Tortoises': 1.6430492035729749e-06, 'Stand': 3.2860984071459497e-06, 'dolphin': 1.6430492035729749e-06, 'skillfully': 4.929147610718925e-06, 'Opposite': 3.2860984071459497e-06, 'Palazzo': 7.393721416078387e-06, "Rome's": 2.4645738053594624e-06, 'Italo-American': 1.6430492035729749e-06, 'terraced': 2.4645738053594624e-06, 'ivy-covered': 1.6430492035729749e-06, 'Caetani': 2.4645738053594624e-06, 'adjoins': 2.4645738053594624e-06, 'Falegnami': 1.6430492035729749e-06, 'Arenula': 1.6430492035729749e-06, 'Cairoli': 1.6430492035729749e-06, 'Ai': 1.6430492035729749e-06, 'Catinari': 1.6430492035729749e-06, 'frescoes': 3.2860984071459497e-06, 'Giubbonari': 1.6430492035729749e-06, "dell'": 2.4645738053594624e-06, 'Arco': 1.6430492035729749e-06, 'Pellegrini': 1.6430492035729749e-06, 'Capo': 2.4645738053594624e-06, 'Ferro': 2.4645738053594624e-06, 'Spada': 2.4645738053594624e-06, '1540': 1.6430492035729749e-06, 'Titian': 2.4645738053594624e-06, 'Caravaggio': 2.4645738053594624e-06, 'Rubens': 1.6430492035729749e-06, '4:00': 2.4645738053594624e-06, 'palazzo': 4.107623008932437e-06, 'Francesco': 2.4645738053594624e-06, "Borromini's": 2.4645738053594624e-06, 'facade': 6.5721968142918994e-06, 'staircase': 7.393721416078387e-06, 'colonnade': 3.2860984071459497e-06, 'connects': 2.4645738053594624e-06, 'Pompey': 2.4645738053594624e-06, 'Julius': 4.107623008932437e-06, 'stabbed': 2.4645738053594624e-06, 'tipping': 1.6430492035729749e-06, 'barrel-vaulted': 1.6430492035729749e-06, 'shaded': 5.750672212505412e-06, 'magnolia': 1.6430492035729749e-06, 'Vicolo': 1.6430492035729749e-06, 'Venti': 1.6430492035729749e-06, 'Farnese': 2.4645738053594624e-06, '1514': 1.6430492035729749e-06, '11:00': 2.4645738053594624e-06, '12:00': 1.6430492035729749e-06, 'Lurcat': 1.6430492035729749e-06, 'Baullari': 3.2860984071459497e-06, 'Campo': 1.6430492035729749e-06, 'Fiori': 1.6430492035729749e-06, 'turbulent': 3.2860984071459497e-06, 'Corso': 6.5721968142918994e-06, 'Vittorio': 2.4645738053594624e-06, 'Emanuele': 2.4645738053594624e-06, "Sant'": 3.2860984071459497e-06, 'Valle': 1.6430492035729749e-06, 'assassinated': 1.6430492035729749e-06, 'Tosca': 1.6430492035729749e-06, 'Rinascimento': 2.4645738053594624e-06, 'Canestrani': 1.6430492035729749e-06, 'russet-colored': 1.6430492035729749e-06, 'oblong': 1.6430492035729749e-06, "Domitian's": 1.6430492035729749e-06, 'open-air': 1.6430492035729749e-06, 'seventeenth': 8.215246017864873e-06, 'aristocrats': 2.4645738053594624e-06, 'inundated': 1.6430492035729749e-06, "Bernini's": 2.4645738053594624e-06, 'Rivers': 3.2860984071459497e-06, 'Circus': 1.6430492035729749e-06, 'Maxentius': 1.6430492035729749e-06, 'grottoes': 1.6430492035729749e-06, 'denoting': 4.929147610718925e-06, 'Danube': 3.2860984071459497e-06, 'Ganges': 2.4645738053594624e-06, 'Plate': 3.2860984071459497e-06, 'Agnese': 5.750672212505412e-06, 'Agone': 2.4645738053594624e-06, 'Borromini': 1.6430492035729749e-06, 'Pace': 1.6430492035729749e-06, 'Sibyls': 1.6430492035729749e-06, 'Raphael': 4.107623008932437e-06, 'cloisters': 1.6430492035729749e-06, 'Donato': 1.6430492035729749e-06, "Bramante's": 1.6430492035729749e-06, 'Corsia': 1.6430492035729749e-06, 'Agonale': 1.6430492035729749e-06, 'Madama': 1.6430492035729749e-06, 'Medici': 1.6430492035729749e-06, 'Walk': 4.107623008932437e-06, 'Giustiniani': 1.6430492035729749e-06, 'Rotonda': 1.6430492035729749e-06, 'Pantheon': 2.4645738053594624e-06, 'best-preserved': 1.6430492035729749e-06, 'Agrippa': 1.6430492035729749e-06, 'Hadrian': 1.6430492035729749e-06, 'Isis': 1.6430492035729749e-06, "Pantheon's": 2.4645738053594624e-06, 'twenty-nine-foot-wide': 1.6430492035729749e-06, 'stupendous': 3.2860984071459497e-06, 'Standing': 4.929147610718925e-06, 'Seminario': 1.6430492035729749e-06, 'Ignazio': 1.6430492035729749e-06, 'Sacrestia': 1.6430492035729749e-06, 'terra-cotta-colored': 1.6430492035729749e-06, 'Burro': 1.6430492035729749e-06, 'Neptune': 3.2860984071459497e-06, 'Bergamaschi': 1.6430492035729749e-06, 'Colonna': 2.4645738053594624e-06, 'Aurelius': 2.4645738053594624e-06, 'Doria': 2.4645738053594624e-06, '10:00': 1.6430492035729749e-06, '1:00': 2.4645738053594624e-06, 'Alemagna': 1.6430492035729749e-06, 'creams': 1.6430492035729749e-06, 'patisseries': 1.6430492035729749e-06, 'Rare': 1.6430492035729749e-06, 'Harlem': 1.232286902679731e-05, 'shiftless': 1.6430492035729749e-06, 'prostitutes': 3.2860984071459497e-06, "Harlem's": 1.6430492035729749e-06, 'blank': 1.232286902679731e-05, 'thoughtless': 3.2860984071459497e-06, 'insuperably': 1.6430492035729749e-06, 'astounded': 2.4645738053594624e-06, 'unnerving': 1.6430492035729749e-06, 'accumulating': 3.2860984071459497e-06, 'twos': 2.4645738053594624e-06, 'threes': 3.2860984071459497e-06, 'uneasily': 5.750672212505412e-06, 'occurring': 1.8073541239302723e-05, 'merest': 3.2860984071459497e-06, 'seep': 2.4645738053594624e-06, 'uneasiness': 4.929147610718925e-06, 'callousness': 2.4645738053594624e-06, 'callous': 6.5721968142918994e-06, 'keg': 2.4645738053594624e-06, 'civil-rights': 1.6430492035729749e-06, 'Kant': 2.4645738053594624e-06, 'Hegel': 2.4645738053594624e-06, 'impenetrable': 1.6430492035729749e-06, 'paralyzes': 2.4645738053594624e-06, 'trapped': 6.5721968142918994e-06, 'Crow': 1.6430492035729749e-06, 'not-less-deadly': 1.6430492035729749e-06, 'ghetto': 9.85829522143785e-06, 'tidy': 1.6430492035729749e-06, 'dispensing': 1.6430492035729749e-06, 'turf': 3.2860984071459497e-06, 'Ricans': 2.4645738053594624e-06, 'Northerners': 4.929147610718925e-06, 'deplore': 1.6430492035729749e-06, 'madhouse': 1.6430492035729749e-06, 'Johannesburg': 1.6430492035729749e-06, 'Buchenwald': 1.6430492035729749e-06, 'horrifying': 3.2860984071459497e-06, 'emptier': 2.4645738053594624e-06, 'Thirdly': 1.6430492035729749e-06, 'embarrassingly': 1.6430492035729749e-06, 'Northerner': 3.2860984071459497e-06, 'Historically': 4.929147610718925e-06, "Southerner's": 1.6430492035729749e-06, 'taboos': 1.6430492035729749e-06, 'torment': 4.107623008932437e-06, 'carnality': 1.6430492035729749e-06, 'hideously': 3.2860984071459497e-06, 'self-esteem': 4.107623008932437e-06, 'lynched': 1.6430492035729749e-06, 're-examines': 1.6430492035729749e-06, 'shrinks': 2.4645738053594624e-06, 'inexorable': 3.2860984071459497e-06, 'diminishing': 7.393721416078387e-06, 'postscript': 3.2860984071459497e-06, 'rioted': 1.6430492035729749e-06, "Stevenson's": 2.4645738053594624e-06, 'elicit': 3.2860984071459497e-06, 'self-examination': 4.929147610718925e-06, 'riots': 1.6430492035729749e-06, 'rioters': 2.4645738053594624e-06, 'Stalinist-corrupted': 1.6430492035729749e-06, 'provocateurs': 1.6430492035729749e-06, "Negro's": 4.107623008932437e-06, 'Stalinist': 1.6430492035729749e-06, 'revolutionists': 1.6430492035729749e-06, 'Wherever': 3.2860984071459497e-06, 'manipulated': 2.4645738053594624e-06, 'nineties': 2.4645738053594624e-06, 'Motion-picture': 1.6430492035729749e-06, 'snips': 1.6430492035729749e-06, 'Execution': 2.4645738053594624e-06, 'headsman': 1.6430492035729749e-06, 'Wizard': 1.6430492035729749e-06, 'Menlo': 1.6430492035729749e-06, 'kiss': 1.3965918230370285e-05, 'one-minute': 1.6430492035729749e-06, 'documentaries': 2.4645738053594624e-06, 'travelogues': 1.6430492035729749e-06, 'Cinerama': 1.6430492035729749e-06, 'Plow': 1.6430492035729749e-06, 'Broke': 1.6430492035729749e-06, 'Melies': 4.107623008932437e-06, 'fashioning': 2.4645738053594624e-06, 'inept': 2.4645738053594624e-06, 'Narrative': 1.6430492035729749e-06, 'illusionary': 1.6430492035729749e-06, 'climaxes': 1.6430492035729749e-06, 'Physically': 2.4645738053594624e-06, 'registers': 4.929147610718925e-06, 'Linking': 1.6430492035729749e-06, 'endows': 1.6430492035729749e-06, '35-mm.-wide': 1.6430492035729749e-06, 'cinematic': 3.2860984071459497e-06, "magician's": 2.4645738053594624e-06, 'Robbery': 4.107623008932437e-06, 'incalculable': 1.6430492035729749e-06, 'Overnight': 2.4645738053594624e-06, "Porter's": 2.4645738053594624e-06, 'one-reel': 1.6430492035729749e-06, 'reel': 2.4645738053594624e-06, '1903': 3.2860984071459497e-06, 'Griffith': 1.5608967433943262e-05, 'Birth': 3.2860984071459497e-06, 'robbers': 5.750672212505412e-06, 'overpowers': 1.6430492035729749e-06, 'telegraph': 7.393721416078387e-06, 'posse': 9.85829522143785e-06, 'pursues': 2.4645738053594624e-06, 'whooping': 2.4645738053594624e-06, 'honky-tonk': 1.6430492035729749e-06, 'hide-out': 2.4645738053594624e-06, 'appended': 2.4645738053594624e-06, 'outlaws': 2.4645738053594624e-06, 'geniuses': 1.6430492035729749e-06, 'footage': 1.6430492035729749e-06, 'grandmother': 7.393721416078387e-06, "telegrapher's": 1.6430492035729749e-06, 'pail': 4.107623008932437e-06, 'pursuer': 2.4645738053594624e-06, 'chasing': 3.2860984071459497e-06, 'sequences': 5.750672212505412e-06, 'instinctively': 6.5721968142918994e-06, 'D.W.': 2.4645738053594624e-06, 'unthinking': 1.6430492035729749e-06, 'Staggeringly': 1.6430492035729749e-06, 'condensed': 8.215246017864873e-06, 'actresses': 3.2860984071459497e-06, 'Bernhardt': 2.4645738053594624e-06, 'phonograph': 3.2860984071459497e-06, 'stereophonic': 1.6430492035729749e-06, 'purveyors': 1.6430492035729749e-06, 'congregational': 6.5721968142918994e-06, 'survives': 1.6430492035729749e-06, 'blight': 2.4645738053594624e-06, 'middle-class': 1.889506584108921e-05, 'lower-class': 7.393721416078387e-06, 'poorer': 3.2860984071459497e-06, 'exodus': 3.2860984071459497e-06, 'cluster': 1.1501344425010824e-05, 'deceptive': 4.107623008932437e-06, 'stratum': 3.2860984071459497e-06, 'perishes': 1.6430492035729749e-06, 'replenish': 4.107623008932437e-06, 'higher-': 1.6430492035729749e-06, 'lower-status': 2.4645738053594624e-06, 'collapsing': 3.2860984071459497e-06, 'secondarily': 3.2860984071459497e-06, 'folksy': 3.2860984071459497e-06, 'recruitment': 6.5721968142918994e-06, 'co-optation': 7.393721416078387e-06, 'outreach': 4.929147610718925e-06, 'co-opting': 1.6430492035729749e-06, 'Co-optation': 1.6430492035729749e-06, 'assimilated': 4.107623008932437e-06, '11.2': 1.6430492035729749e-06, 'antennae': 3.2860984071459497e-06, 'like-minded': 2.4645738053594624e-06, 'transmutation': 3.2860984071459497e-06, 'insignificance': 1.6430492035729749e-06, '17.3': 1.6430492035729749e-06, 'fraternize': 1.6430492035729749e-06, 'suitability': 1.6430492035729749e-06, 'statuses': 2.4645738053594624e-06, 'balances': 1.6430492035729749e-06, 'nonetheless': 6.5721968142918994e-06, 'illumines': 1.6430492035729749e-06, 'exclusiveness': 3.2860984071459497e-06, 'cross-purposes': 1.6430492035729749e-06, 'insulate': 1.6430492035729749e-06, 'intrusions': 2.4645738053594624e-06, 'motifs': 4.929147610718925e-06, 'polarized': 3.2860984071459497e-06, 'schism': 1.6430492035729749e-06, 'crystallize': 1.6430492035729749e-06, 'stabilize': 2.4645738053594624e-06, 'counteracting': 2.4645738053594624e-06, 'perpetuating': 4.107623008932437e-06, 'stratification': 2.4645738053594624e-06, 'countervailing': 1.6430492035729749e-06, 'rearguard': 1.6430492035729749e-06, 'rebuilding': 5.750672212505412e-06, 'self-defeating': 2.4645738053594624e-06, 'contradicts': 2.4645738053594624e-06, 'stabilities': 1.6430492035729749e-06, 'characteristically': 5.750672212505412e-06, 'keynotes': 1.6430492035729749e-06, 'activism': 2.4645738053594624e-06, 'dictating': 2.4645738053594624e-06, 'rearing': 2.4645738053594624e-06, 'informing': 4.107623008932437e-06, 'rubric': 1.6430492035729749e-06, 'illuminate': 1.6430492035729749e-06, 'imprisons': 1.6430492035729749e-06, 'captivity': 4.107623008932437e-06, 'perplexing': 2.4645738053594624e-06, 'squandered': 2.4645738053594624e-06, 'engages': 5.750672212505412e-06, 'habitants': 4.107623008932437e-06, 'pelts': 8.215246017864873e-06, 'penurious': 1.6430492035729749e-06, 'Traders': 1.6430492035729749e-06, 'Protests': 2.4645738053594624e-06, 'intendants': 1.6430492035729749e-06, 'parsimonious': 1.6430492035729749e-06, 'insurrections': 1.6430492035729749e-06, '1721': 2.4645738053594624e-06, 'livres': 3.2860984071459497e-06, 'Mobile': 1.6430492035729746e-05, 'Toulouse': 1.6430492035729749e-06, '1714': 2.4645738053594624e-06, 'Alabamas': 2.4645738053594624e-06, 'Choctaws': 3.2860984071459497e-06, 'Dependent': 1.6430492035729749e-06, 'Kaskaskia': 1.6430492035729749e-06, 'director-general': 1.6430492035729749e-06, 'Concessionaires': 1.6430492035729749e-06, 'Engages': 1.6430492035729749e-06, 'storehouses': 1.6430492035729749e-06, 'Bienville': 8.215246017864873e-06, 'Regulations': 2.4645738053594624e-06, 'Conseil': 2.4645738053594624e-06, 'superieure': 1.6430492035729749e-06, 'Louisiane': 1.6430492035729749e-06, 'disaffected': 1.6430492035729749e-06, 'peltry': 2.4645738053594624e-06, 'heathen': 2.4645738053594624e-06, 'Carolinians': 3.2860984071459497e-06, 'deerskins': 3.2860984071459497e-06, 'Chickasaws': 4.107623008932437e-06, '50,000': 1.6430492035729749e-06, 'Choctaw': 1.6430492035729749e-06, 'Tombigbee': 2.4645738053594624e-06, 'cheaply': 3.2860984071459497e-06, 'Laude': 1.6430492035729749e-06, 'Diron': 1.6430492035729749e-06, "D'Artaguette": 3.2860984071459497e-06, 'ire': 1.6430492035729749e-06, 'Cumberland': 3.2860984071459497e-06, 'Cherokees': 1.6430492035729749e-06, '1720': 1.6430492035729749e-06, 'massacred': 1.6430492035729749e-06, 'Venturesome': 1.6430492035729749e-06, 'incited': 3.2860984071459497e-06, 'Factions': 1.6430492035729749e-06, 'termini': 3.2860984071459497e-06, 'enticements': 1.6430492035729749e-06, 'urgings': 2.4645738053594624e-06, '1724': 1.6430492035729749e-06, 'Boisbriant': 1.6430492035729749e-06, 'Perier': 5.750672212505412e-06, '1727': 1.6430492035729749e-06, 'conciliate': 1.6430492035729749e-06, 'unfriendly': 4.929147610718925e-06, 'incite': 3.2860984071459497e-06, "Perier's": 2.4645738053594624e-06, 'ineffective': 3.2860984071459497e-06, "Indians'": 1.6430492035729749e-06, '1730': 1.6430492035729749e-06, 'revolted': 1.6430492035729749e-06, 'pillaged': 1.6430492035729749e-06, 'harassed': 4.929147610718925e-06, '1731': 1.6430492035729749e-06, '20,000,000': 1.6430492035729749e-06, 'indemnity': 1.6430492035729749e-06, '1,450,000': 1.6430492035729749e-06, 'Thenceforth': 1.6430492035729749e-06, 'Frenchmen': 2.4645738053594624e-06, 'fortifications': 2.4645738053594624e-06, 'half-blood': 1.6430492035729749e-06, 'artisans': 1.6430492035729749e-06, 'coureurs': 1.6430492035729749e-06, 'bois': 1.6430492035729749e-06, 'Salmon': 1.6430492035729749e-06, 'intendant': 1.6430492035729749e-06, 'entrust': 2.4645738053594624e-06, '1732': 1.6430492035729749e-06, 'probity': 1.6430492035729749e-06, 'entrusting': 1.6430492035729749e-06, "Treasury's": 1.6430492035729749e-06, 'displeased': 6.5721968142918994e-06, 'Businessmen': 2.4645738053594624e-06, 'restrains': 1.6430492035729749e-06, 'kaleidoscope': 1.6430492035729749e-06, "congressman's": 1.6430492035729749e-06, 'Tampering': 1.6430492035729749e-06, 'infuriate': 1.6430492035729749e-06, 'sails': 2.4645738053594624e-06, 'subdues': 1.6430492035729749e-06, 'gazes': 1.6430492035729749e-06, 'reap': 3.2860984071459497e-06, 'dispensed': 2.4645738053594624e-06, 'ungrateful': 2.4645738053594624e-06, "Uncle's": 3.2860984071459497e-06, 'largesse': 1.6430492035729749e-06, 'do-gooders': 1.6430492035729749e-06, 'cheered': 2.4645738053594624e-06, 'spoiling': 1.6430492035729749e-06, 'dyspeptic': 1.6430492035729749e-06, 'peccadilloes': 1.6430492035729749e-06, 'junketeering': 1.6430492035729749e-06, 'discretion': 1.232286902679731e-05, "Cicero's": 1.6430492035729749e-06, 'whim': 2.4645738053594624e-06, 'tuition': 4.929147610718925e-06, 'franc': 1.6430492035729749e-06, 'Notre-Dame': 1.6430492035729749e-06, 'tantamount': 3.2860984071459497e-06, 'debauchery': 2.4645738053594624e-06, "State's": 1.6430492035729746e-05, 'unrelenting': 1.6430492035729749e-06, 'Rooney': 6.5721968142918994e-06, 'Diplomats': 1.6430492035729749e-06, 'confidential': 5.750672212505412e-06, 'whispers': 4.107623008932437e-06, 'groveling': 1.6430492035729749e-06, 'abasement': 2.4645738053594624e-06, 'heartbreak': 1.6430492035729749e-06, 'penury': 1.6430492035729749e-06, 'threadbare': 3.2860984071459497e-06, 'Loy': 1.6430492035729749e-06, 'Undersecretary': 1.6430492035729749e-06, 'oath': 5.750672212505412e-06, 'minuet': 2.4645738053594624e-06, 'negate': 2.4645738053594624e-06, "Executive's": 1.6430492035729749e-06, 'paralyze': 1.6430492035729749e-06, 'Acheson': 2.4645738053594624e-06, 'Inquisition': 3.2860984071459497e-06, "Dulles's": 1.6430492035729749e-06, 'thirsted': 1.6430492035729749e-06, 'McLeod': 1.6430492035729749e-06, 'Bohlen': 1.6430492035729749e-06, 'mauler': 1.6430492035729749e-06, 'crocodile': 1.6430492035729749e-06, 'Fretting': 1.6430492035729749e-06, 'eschewing': 1.6430492035729749e-06, 'bureaucrats': 1.6430492035729749e-06, 'detached': 9.85829522143785e-06, 'amiss': 2.4645738053594624e-06, "Acheson's": 1.6430492035729749e-06, 'trampling': 1.6430492035729749e-06, 'tumbrels': 1.6430492035729749e-06, 'treasonous': 1.6430492035729749e-06, 'senatorial': 3.2860984071459497e-06, 'berated': 3.2860984071459497e-06, 'barren': 5.750672212505412e-06, 'outwit': 1.6430492035729749e-06, "mid-1950's": 1.6430492035729749e-06, 'rumbling': 2.4645738053594624e-06, 'countenance': 5.750672212505412e-06, 'penchant': 1.6430492035729749e-06, 'crucifying': 2.4645738053594624e-06, 'ninety-eight': 1.6430492035729749e-06, 'legations': 1.6430492035729749e-06, 'shuttered': 2.4645738053594624e-06, 'funeral-accessories': 1.6430492035729749e-06, 'Thirty-fourth': 1.6430492035729749e-06, 'cement-and-glass': 1.6430492035729749e-06, 'chauffeured': 1.6430492035729749e-06, 'caviar': 1.6430492035729749e-06, 'stale': 4.107623008932437e-06, 'martini': 2.4645738053594624e-06, 'poseur': 1.6430492035729749e-06, 'crasher': 1.6430492035729749e-06, 'tails': 6.5721968142918994e-06, 'Lothario': 1.6430492035729749e-06, 'chanceries': 1.6430492035729749e-06, 'ministries': 3.2860984071459497e-06, 'home-office': 1.6430492035729749e-06, 'anti-missile': 1.6430492035729749e-06, 'purporting': 2.4645738053594624e-06, 'comma': 2.4645738053594624e-06, 'espionage': 4.929147610718925e-06, 'Mikhail': 1.6430492035729749e-06, 'Menshikov': 6.5721968142918994e-06, 'Georgi': 1.6430492035729749e-06, 'Zaroubin': 1.6430492035729749e-06, "announcer's": 1.6430492035729749e-06, 'handclasp': 3.2860984071459497e-06, 'run-of-the-mine': 1.6430492035729749e-06, 'Babbitt': 2.4645738053594624e-06, 'Fyodor': 1.6430492035729749e-06, 'Pavlovitch': 1.6430492035729749e-06, 'Karamazov': 4.107623008932437e-06, 'glowered': 3.2860984071459497e-06, "embalmers'": 1.6430492035729749e-06, 'Speeches': 1.6430492035729749e-06, 'vogue': 4.107623008932437e-06, 'Rotarians': 1.6430492035729749e-06, "McCarthy's": 1.6430492035729749e-06, 'unheard-of': 2.4645738053594624e-06, "Smilin'": 2.4645738053594624e-06, 'sobriquet': 2.4645738053594624e-06, 'fearlessly': 2.4645738053594624e-06, 'Toasting': 1.6430492035729749e-06, 'hoisted': 2.4645738053594624e-06, "senator's": 1.6430492035729749e-06, 'gaily': 4.929147610718925e-06, 'giddy': 2.4645738053594624e-06, 'hard-bitten': 1.6430492035729749e-06, 'wits': 4.929147610718925e-06, 'Newspaper': 3.2860984071459497e-06, 'punditry': 1.6430492035729749e-06, 'Judas': 2.4645738053594624e-06, 'larks': 2.4645738053594624e-06, 'unsuitable': 3.2860984071459497e-06, 'scowling': 2.4645738053594624e-06, "Arabs'": 1.6430492035729749e-06, 'Arabs': 1.6430492035729749e-06, 'Saudi': 2.4645738053594624e-06, 'Arabians': 1.6430492035729749e-06, 'Saud': 1.6430492035729749e-06, 'Rumor': 4.107623008932437e-06, 'Arabia': 1.6430492035729749e-06, 'drawer': 7.393721416078387e-06, 'brochure': 2.4645738053594624e-06, 'Arabian-American': 1.6430492035729749e-06, "Saud's": 1.6430492035729749e-06, 'dusky': 2.4645738053594624e-06, 'sheik': 4.107623008932437e-06, "Hagerty's": 1.6430492035729749e-06, 'massed': 2.4645738053594624e-06, 'bromides': 1.6430492035729749e-06, 'Saudi-American': 1.6430492035729749e-06, 'Twenty-one': 1.6430492035729749e-06, 'Twenty-five': 2.4645738053594624e-06, 'murmured': 1.4787442832156774e-05, 'elusiveness': 1.6430492035729749e-06, "Israel's": 1.6430492035729749e-06, 'anarchic': 1.6430492035729749e-06, "Nasser's": 1.6430492035729749e-06, 'relaying': 1.6430492035729749e-06, 'incomprehensible': 2.4645738053594624e-06, 'Israeli': 4.107623008932437e-06, 'Golda': 1.6430492035729749e-06, 'Meir': 1.6430492035729749e-06, 'interned': 1.6430492035729749e-06, 'unbound': 1.6430492035729749e-06, 'stockroom': 2.4645738053594624e-06, 'Spiritual': 1.6430492035729749e-06, 'Hosaka': 2.4645738053594624e-06, 'Kodama': 2.4645738053594624e-06, 'Geisha': 1.6430492035729749e-06, 'artful': 1.6430492035729749e-06, 'pampered': 1.6430492035729749e-06, 'Rockettes': 1.6430492035729749e-06, 'Morikawa': 1.6430492035729749e-06, 'middle-school': 1.6430492035729749e-06, "Yoshimoto's": 1.6430492035729749e-06, 'diety': 1.6430492035729749e-06, 'Gambling': 1.6430492035729749e-06, 'Kyoto': 6.5721968142918994e-06, 'Nikko': 1.6430492035729749e-06, 'Nishimo': 1.6430492035729749e-06, 'Masu': 5.750672212505412e-06, 'teased': 2.4645738053594624e-06, 'Nara': 5.750672212505412e-06, 'prewar': 1.6430492035729749e-06, 'Okamoto': 2.4645738053594624e-06, "Fumio's": 1.6430492035729749e-06, 'Washizu': 3.2860984071459497e-06, 'Nishima': 3.2860984071459497e-06, '7:00': 2.4645738053594624e-06, '9:00': 1.6430492035729749e-06, '6:00': 1.6430492035729749e-06, 'unagi': 1.6430492035729749e-06, 'eel': 2.4645738053594624e-06, 'ice-cold': 1.6430492035729749e-06, 'Fuji': 1.6430492035729749e-06, "Washizu's": 1.6430492035729749e-06, 'eldest': 4.107623008932437e-06, 'lacquer': 2.4645738053594624e-06, 'less-hurried': 1.6430492035729749e-06, 'Yoneda': 2.4645738053594624e-06, 'reflections': 5.750672212505412e-06, 'Uno': 1.6430492035729749e-06, "Uno's": 1.6430492035729749e-06, 'American-trained': 1.6430492035729749e-06, 'artfulness': 1.6430492035729749e-06, 'alumnae': 1.6430492035729749e-06, 'unafraid': 4.107623008932437e-06, 'municipally-sponsored': 1.6430492035729749e-06, 'widows': 1.6430492035729749e-06, 'Graduates': 1.6430492035729749e-06, "maid's": 1.6430492035729749e-06, "Masu's": 1.6430492035729749e-06, 'cupboards': 2.4645738053594624e-06, 'housekeeper': 2.4645738053594624e-06, 'USIS': 1.6430492035729749e-06, 'suppositions': 3.2860984071459497e-06, 'unjust': 3.2860984071459497e-06, 'indivisible': 1.6430492035729749e-06, 'indiscriminating': 1.6430492035729749e-06, 'prudence': 2.4645738053594624e-06, 'decentralization': 1.6430492035729749e-06, 'self-defeat': 1.6430492035729749e-06, 'pre-Civil': 2.4645738053594624e-06, "Citizens'": 2.4645738053594624e-06, 'Councils': 2.4645738053594624e-06, 'Philco': 2.4645738053594624e-06, 'Philco-sponsored': 1.6430492035729749e-06, 'gal': 3.2860984071459497e-06, 'smooching': 1.6430492035729749e-06, 'unqualified': 2.4645738053594624e-06, 'doers': 1.6430492035729749e-06, 'devastate': 1.6430492035729749e-06, 'pre-conditions': 1.6430492035729749e-06, 'despoiled': 1.6430492035729749e-06, 'non-violent': 9.036770619651361e-06, 'sit-in': 1.6430492035729749e-06, 'interpenetrates': 2.4645738053594624e-06, 'non-violence': 3.2860984071459497e-06, 'jiu-jitsu': 1.6430492035729749e-06, 'demoralize': 3.2860984071459497e-06, 'demoralizes': 2.4645738053594624e-06, 're-establish': 1.6430492035729749e-06, 'sounder': 4.107623008932437e-06, 're-moralizing': 1.6430492035729749e-06, 're-establishing': 1.6430492035729749e-06, 'non-violently': 1.6430492035729749e-06, 'Mennonites': 1.6430492035729749e-06, 'Christ-like': 1.6430492035729749e-06, 'Mennonite': 2.4645738053594624e-06, 'love-in-action': 1.6430492035729749e-06, 'intolerable': 3.2860984071459497e-06, 'repressed': 3.2860984071459497e-06, 'amounting': 1.6430492035729749e-06, 'complicity': 5.750672212505412e-06, 'Billions': 1.6430492035729749e-06, 'diabolical': 1.6430492035729749e-06, 'exploitation': 4.929147610718925e-06, 'Title': 2.1359639646448672e-05, '1307': 1.6430492035729749e-06, 'importation': 2.4645738053594624e-06, 'enslavement': 2.4645738053594624e-06, 'non-discrimination': 1.6430492035729749e-06, 'Bourbons': 5.750672212505412e-06, 'egghead': 1.6430492035729749e-06, 'puzzling': 8.215246017864873e-06, 'left-of-center': 1.6430492035729749e-06, 'shibboleths': 1.6430492035729749e-06, 'scornfully': 2.4645738053594624e-06, 'to-day': 4.107623008932437e-06, 'uncooperative': 2.4645738053594624e-06, "states'": 4.929147610718925e-06, 'anachronisms': 2.4645738053594624e-06, 'enmeshed': 2.4645738053594624e-06, 'womb-to-tomb': 1.6430492035729749e-06, 'scornful': 4.929147610718925e-06, "liberal's": 1.6430492035729749e-06, "Time's": 2.4645738053594624e-06, 'Waist-High': 1.6430492035729749e-06, 'Culture': 2.4645738053594624e-06, 'outbursts': 5.750672212505412e-06, 'friendships': 4.107623008932437e-06, 'wrecking': 4.929147610718925e-06, 'roomful': 1.6430492035729749e-06, 'bastards': 1.0679819823224336e-05, 'Accounts': 2.4645738053594624e-06, 'prejudice': 9.036770619651361e-06, 'state-supported': 1.6430492035729749e-06, 'Yankee-hatred': 1.6430492035729749e-06, 'leavening': 1.6430492035729749e-06, 'Souths': 1.6430492035729749e-06, 'reconstructed': 3.2860984071459497e-06, 'unreconstructed': 4.929147610718925e-06, 'unpatriotic': 2.4645738053594624e-06, "Court's": 5.750672212505412e-06, 'Belief': 1.6430492035729749e-06, 'Virginians': 1.6430492035729749e-06, 'tenaciously': 1.6430492035729749e-06, 'Tidewater': 2.4645738053594624e-06, 'tidewater': 1.6430492035729749e-06, 'enclaves': 1.6430492035729749e-06, 'long-settled': 1.6430492035729749e-06, 'lowlands': 1.6430492035729749e-06, 'Anglophilia': 1.6430492035729749e-06, 'humbled': 1.6430492035729749e-06, 'arrogant': 2.4645738053594624e-06, 'Carolinas': 1.6430492035729749e-06, 'Tory': 1.1501344425010824e-05, 'Crown': 2.4645738053594624e-06, 'meddling': 4.107623008932437e-06, 'miscegenation': 1.6430492035729749e-06, 'therein': 8.215246017864873e-06, 'delude': 2.4645738053594624e-06, 'veiling': 1.6430492035729749e-06, 'sharers': 1.6430492035729749e-06, 'pre-World-War-': 1.6430492035729749e-06, 'Celtic': 6.5721968142918994e-06, 'Britannic': 1.6430492035729749e-06, "South's": 4.929147610718925e-06, 'Wars': 1.6430492035729749e-06, 'inferences': 4.107623008932437e-06, 'therefrom': 4.929147610718925e-06, 'levelled': 2.4645738053594624e-06, 'racists': 1.6430492035729749e-06, 'reactionaries': 1.6430492035729749e-06, 'Northeners': 1.6430492035729749e-06, 'reaping': 1.6430492035729749e-06, 'egalitarianism': 1.6430492035729749e-06, 'socialistic': 3.2860984071459497e-06, 'gastronomy': 1.6430492035729749e-06, 'claimants': 4.929147610718925e-06, 'nation-state': 5.750672212505412e-06, 'sovereign': 2.3824213451808133e-05, 'non-Western': 1.6430492035729749e-06, 'Bentham': 2.4645738053594624e-06, 'arena': 6.5721968142918994e-06, 'furthered': 3.2860984071459497e-06, 'reexamination': 1.6430492035729749e-06, 'internally': 5.750672212505412e-06, 'externally': 2.4645738053594624e-06, 'anarchical': 2.4645738053594624e-06, 'avaricious': 1.6430492035729749e-06, 'Pax': 1.6430492035729749e-06, 'Britannica': 1.6430492035729749e-06, 'societal': 4.107623008932437e-06, 'Darwinism': 2.4645738053594624e-06, 'socialist': 5.750672212505412e-06, 'observable': 3.2860984071459497e-06, 'articulation': 1.6430492035729749e-06, 'implanted': 1.6430492035729749e-06, 'night-watchman': 1.6430492035729749e-06, 'victorious': 1.6430492035729749e-06, 'Court-packing': 1.6430492035729749e-06, 'standardized': 4.107623008932437e-06, 'Ratified': 1.6430492035729749e-06, 'Positive': 2.4645738053594624e-06, 'watersheds': 4.107623008932437e-06, 'immersion': 2.4645738053594624e-06, 'truism': 3.2860984071459497e-06, 'Thirty': 3.2860984071459497e-06, 'wallowing': 1.6430492035729749e-06, 'Employment': 3.2860984071459497e-06, 'Hands-off': 1.6430492035729749e-06, "state's-responsibility": 1.6430492035729749e-06, 'nation-wide': 3.2860984071459497e-06, 'Reduced': 2.4645738053594624e-06, 'Jurists': 2.4645738053594624e-06, 'redefined': 1.6430492035729749e-06, 'substantively': 1.6430492035729749e-06, 'non-Soviet': 1.6430492035729749e-06, 'validating': 1.6430492035729749e-06, 'viability': 3.2860984071459497e-06, 'supranationalism': 1.6430492035729749e-06, 'Reference': 1.6430492035729749e-06, 'feudal': 5.750672212505412e-06, 'breakup': 3.2860984071459497e-06, 'feudalism': 1.6430492035729749e-06, 'time-span': 2.4645738053594624e-06, 'coincides': 4.929147610718925e-06, 'epitomizes': 1.6430492035729749e-06, 'glorifies': 1.6430492035729749e-06, 'socal': 1.6430492035729749e-06, 'homeland': 4.929147610718925e-06, 'febrile': 1.6430492035729749e-06, 'worldwide': 1.6430492035729749e-06, 'nationalist': 3.2860984071459497e-06, 'fervors': 1.6430492035729749e-06, 'wreak': 1.6430492035729749e-06, 'civilizational': 7.393721416078387e-06, 'subduing': 1.6430492035729749e-06, 'cornucopia': 1.6430492035729749e-06, 'quirks': 1.6430492035729749e-06, 'dissipating': 1.6430492035729749e-06, 'Complementing': 1.6430492035729749e-06, 'legitimacy': 2.4645738053594624e-06, 'antiquity': 2.4645738053594624e-06, 'seminal': 1.6430492035729749e-06, "Austin's": 2.4645738053594624e-06, 'monarch': 3.2860984071459497e-06, 'sovereigns': 3.2860984071459497e-06, 'indivisibility': 1.6430492035729749e-06, 'internal-external': 1.6430492035729749e-06, 'exemplifies': 1.6430492035729749e-06, 'nebulous': 3.2860984071459497e-06, 'High-level': 1.6430492035729749e-06, 'abstractions': 5.750672212505412e-06, 'supplanted': 1.6430492035729749e-06, 'thermonuclear': 2.4645738053594624e-06, 'prowl': 2.4645738053594624e-06, 'launch-control': 1.6430492035729749e-06, 'sidearms': 1.6430492035729749e-06, 'manning': 2.4645738053594624e-06, 'pistol-packing': 1.6430492035729749e-06, 'instrument-jammed': 1.6430492035729749e-06, 'cockpits': 1.6430492035729749e-06, 'compartments': 1.6430492035729749e-06, 'windowless': 3.2860984071459497e-06, 'foxholes': 2.4645738053594624e-06, 'farfetched': 3.2860984071459497e-06, 'unceasing': 1.6430492035729749e-06, 'Readiness': 1.6430492035729749e-06, 'tick': 3.2860984071459497e-06, 'elapsed': 4.929147610718925e-06, 'unleash': 1.6430492035729749e-06, 'consoles': 4.107623008932437e-06, 'Accidental': 1.6430492035729749e-06, 'physicists': 2.4645738053594624e-06, 'pushers': 3.2860984071459497e-06, 'scenarios': 1.6430492035729749e-06, 'hypothesize': 1.6430492035729749e-06, 'restraining': 6.5721968142918994e-06, 'pre-emption': 1.6430492035729749e-06, 'inhabit': 1.6430492035729749e-06, 'forefingers': 1.6430492035729749e-06, 'darting': 1.6430492035729749e-06, 'arclike': 1.6430492035729749e-06, 'semicircular': 1.6430492035729749e-06, 'unthinkable': 3.2860984071459497e-06, 'Unanimously': 1.6430492035729749e-06, "Pandora's": 2.4645738053594624e-06, 'Ikle': 1.6430492035729749e-06, 'frail': 6.5721968142918994e-06, 'meek-mannered': 1.6430492035729749e-06, 'Swiss-born': 1.6430492035729749e-06, 'sociologist': 2.4645738053594624e-06, 'RAND': 1.6430492035729749e-06, 'nonprofit': 1.6430492035729749e-06, 'thinkers': 5.750672212505412e-06, 'Revere': 2.4645738053594624e-06, 'accidental-war': 1.6430492035729749e-06, 'BMEWS': 2.4645738053594624e-06, 'Ballistic': 2.4645738053594624e-06, 'Missile': 2.4645738053594624e-06, 'Warning': 1.6430492035729749e-06, 'Thule': 1.6430492035729749e-06, 'flashed': 1.3144393628583799e-05, 'NORAD': 1.6430492035729749e-06, 'Offutt': 1.6430492035729749e-06, 'Base': 6.5721968142918994e-06, 'Omaha': 2.4645738053594624e-06, 'Chiefs': 3.2860984071459497e-06, 'Telephones': 1.6430492035729749e-06, 'Teletypes': 1.6430492035729749e-06, 'Alternate': 1.6430492035729749e-06, 'last-ditch': 1.6430492035729749e-06, 'KC-135': 1.6430492035729749e-06, 'tankers': 2.4645738053594624e-06, 'Multiple': 2.4645738053594624e-06, 'circuits': 4.107623008932437e-06, 'routings': 1.6430492035729749e-06, 'senders': 1.6430492035729749e-06, 'authenticate': 1.6430492035729749e-06, 'counterchallenge': 1.6430492035729749e-06, 'authentications': 1.6430492035729749e-06, 'clobber': 1.6430492035729749e-06, 'ape': 3.2860984071459497e-06, 'singlehandedly': 1.6430492035729749e-06, 'ingeniously': 1.6430492035729749e-06, 'gold-phone': 1.6430492035729749e-06, 'ramble': 2.4645738053594624e-06, 'preprepared': 2.4645738053594624e-06, 'Officers': 2.4645738053594624e-06, 'continual': 4.929147610718925e-06, 'Norfolk': 2.4645738053594624e-06, 'Wisman': 8.215246017864873e-06, "SAC's": 1.6430492035729749e-06, 'controller': 1.6430492035729749e-06, 'colonels': 1.6430492035729749e-06, 'mans': 1.6430492035729749e-06, 'thirty-nine': 2.4645738053594624e-06, 'Movable': 1.6430492035729749e-06, 'floor-to-ceiling': 1.6430492035729749e-06, 'crammed': 3.2860984071459497e-06, 'forty-three': 2.4645738053594624e-06, 'Beallsville': 1.6430492035729749e-06, 'anchors': 2.4645738053594624e-06, 'ruffles': 1.6430492035729749e-06, "controller's": 1.6430492035729749e-06, 'dull-gray': 1.6430492035729749e-06, "Power's": 1.6430492035729749e-06, 'beige': 1.6430492035729749e-06, "Wisman's": 5.750672212505412e-06, 'screeching': 6.5721968142918994e-06, 'klaxon': 1.6430492035729749e-06, 'obnoxious': 4.929147610718925e-06, 'guarded': 4.929147610718925e-06, 'X-ray-proof': 1.6430492035729749e-06, 'fragments': 9.036770619651361e-06, 'activate': 2.4645738053594624e-06, 'authentication': 1.6430492035729749e-06, 'authenticator': 1.6430492035729749e-06, 'transmitting': 2.4645738053594624e-06, 'coworkers': 2.4645738053594624e-06, "B-52's": 1.6430492035729749e-06, 'fail-safe': 1.6430492035729749e-06, 'cryptographic': 1.6430492035729749e-06, 'six-man': 1.6430492035729749e-06, 'go-to-war': 1.6430492035729749e-06, 'fragment': 4.929147610718925e-06, 'statuary': 2.4645738053594624e-06, 'sniffing': 1.6430492035729749e-06, 'squall': 6.5721968142918994e-06, 'pathos': 1.6430492035729749e-06, 'Watching': 2.4645738053594624e-06, 'thickened': 4.929147610718925e-06, 'lope': 2.4645738053594624e-06, 'wolf': 4.107623008932437e-06, 'gulley': 1.6430492035729749e-06, 'runner': 1.6430492035729749e-06, 'dangling': 3.2860984071459497e-06, 'hummocks': 2.4645738053594624e-06, 'capering': 1.6430492035729749e-06, 'cranelike': 1.6430492035729749e-06, 'lordly': 2.4645738053594624e-06, 'discoverer': 1.6430492035729749e-06, 'swooped': 4.929147610718925e-06, 'puddle': 1.6430492035729749e-06, 'sucked': 5.750672212505412e-06, 'aborigine': 6.5721968142918994e-06, 'cruelest': 1.6430492035729749e-06, 'ridges': 4.107623008932437e-06, 'ravines': 1.6430492035729749e-06, 'scuttling': 1.6430492035729749e-06, 'moonlike': 1.6430492035729749e-06, 'saltbush': 1.6430492035729749e-06, 'bluebush': 1.6430492035729749e-06, 'malignancy': 1.6430492035729749e-06, 'Bean': 1.6430492035729749e-06, 'paddock': 1.6430492035729749e-06, 'ten-by-ten-mile': 1.6430492035729749e-06, 'grazer': 1.6430492035729749e-06, 'well-equipped': 1.6430492035729749e-06, 'outback': 3.2860984071459497e-06, 'tree-clumps': 2.4645738053594624e-06, 'peeping': 1.6430492035729749e-06, 'mummified': 1.6430492035729749e-06, 'twenty-mile': 1.6430492035729749e-06, 'unfulfilled': 1.6430492035729749e-06, 'pitiless': 2.4645738053594624e-06, 'falters': 1.6430492035729749e-06, 'misperceives': 1.6430492035729749e-06, 'weakens': 1.6430492035729749e-06, 'self-conscious': 4.929147610718925e-06, 'boulder': 6.5721968142918994e-06, 'seaports': 2.4645738053594624e-06, 'fugitive': 3.2860984071459497e-06, 'shunning': 1.6430492035729749e-06, 'corroborees': 2.4645738053594624e-06, 'gimbaled': 1.6430492035729749e-06, 'navigating': 1.6430492035729749e-06, 'flatland': 1.6430492035729749e-06, 'navigate': 1.6430492035729749e-06, 'chaps': 1.6430492035729749e-06, 'speedometer': 1.6430492035729749e-06, 'memorize': 3.2860984071459497e-06, 'bivouac': 4.929147610718925e-06, 'camped': 1.6430492035729749e-06, 'column-shaped': 1.6430492035729749e-06, 'lubra': 2.4645738053594624e-06, 'dingo': 1.6430492035729749e-06, 'scabbed': 1.6430492035729749e-06, 'paws': 3.2860984071459497e-06, 'malnourished': 1.6430492035729749e-06, 'patted': 6.5721968142918994e-06, 'buggers': 1.6430492035729749e-06, 'starving': 5.750672212505412e-06, 'wispy': 2.4645738053594624e-06, 'eyelids': 6.5721968142918994e-06, 'crawling': 7.393721416078387e-06, 'blink': 4.107623008932437e-06, 'sockets': 1.6430492035729749e-06, 'crawl': 9.85829522143785e-06, 'repellent': 1.6430492035729749e-06, 'squatting': 4.107623008932437e-06, 'rhythmical': 1.6430492035729749e-06, 'woven-root': 1.6430492035729749e-06, 'rodent': 2.4645738053594624e-06, 'woomera': 1.6430492035729749e-06, 'spear-throwing': 1.6430492035729749e-06, 'boomerang': 1.6430492035729749e-06, 'burnished': 1.6430492035729749e-06, 'ageless': 2.4645738053594624e-06, 'wandered': 7.393721416078387e-06, 'squatted': 4.107623008932437e-06, "One's": 2.4645738053594624e-06, 'stink': 3.2860984071459497e-06, 'powerfully': 4.107623008932437e-06, 'darker': 2.4645738053594624e-06, 'cosmetic': 1.6430492035729749e-06, 'blinked': 5.750672212505412e-06, 'eh': 3.2860984071459497e-06, 'swear': 9.036770619651361e-06, 'sweating': 3.2860984071459497e-06, "who's": 7.393721416078387e-06, 'Idje': 3.2860984071459497e-06, 'blindfolded': 2.4645738053594624e-06, 'fella': 4.929147610718925e-06, 'tabac': 1.6430492035729749e-06, 'pidgin': 2.4645738053594624e-06, 'potters': 7.393721416078387e-06, 'calligraphers': 1.6430492035729749e-06, 'metalsmiths': 1.6430492035729749e-06, "Abbas's": 1.6430492035729749e-06, 'confounded': 2.4645738053594624e-06, 'nightingales': 1.6430492035729749e-06, 'canals': 1.6430492035729749e-06, 'promenades': 1.6430492035729749e-06, 'glistening': 5.750672212505412e-06, 'aromatick': 1.6430492035729749e-06, 'Isfahan': 4.107623008932437e-06, 'nisf-i-jahan': 1.6430492035729749e-06, 'Afghans': 1.6430492035729749e-06, 'Safavids': 1.6430492035729749e-06, 'encroached': 1.6430492035729749e-06, 'Persia': 4.107623008932437e-06, 'spooky': 2.4645738053594624e-06, 'Persians': 1.0679819823224336e-05, 'dirty': 2.9574885664313547e-05, 'pavilions': 2.4645738053594624e-06, 'promenade': 3.2860984071459497e-06, 'Chahar': 1.6430492035729749e-06, 'Bagh': 1.6430492035729749e-06, 'mile-long': 1.6430492035729749e-06, 'poplar': 1.6430492035729749e-06, 'arcades': 2.4645738053594624e-06, 'Khaju': 3.2860984071459497e-06, 'Fridays': 3.2860984071459497e-06, 'samovar': 2.4645738053594624e-06, 'Chehel': 1.6430492035729749e-06, 'Sotun': 1.6430492035729749e-06, 'pavilion': 4.107623008932437e-06, 'Shah': 2.4645738053594624e-06, 'Abbas': 2.4645738053594624e-06, 'zur': 1.6430492035729749e-06, 'khaneh': 1.6430492035729749e-06, 'chalk-white': 1.6430492035729749e-06, 'daises': 1.6430492035729749e-06, 'sojourner': 1.6430492035729749e-06, 'carelessly': 3.2860984071459497e-06, 'aesthetes': 1.6430492035729749e-06, 'orchard': 3.2860984071459497e-06, 'lutihaw': 1.6430492035729749e-06, 'mustachioed': 1.6430492035729749e-06, 'teahouses': 1.6430492035729749e-06, 'lugged': 4.929147610718925e-06, 'mountainside': 4.107623008932437e-06, 'slick-headed': 1.6430492035729749e-06, 'maw': 2.4645738053594624e-06, 'puffing': 2.4645738053594624e-06, 'sniffed': 5.750672212505412e-06, 'vintner': 1.6430492035729749e-06, 'vintage': 3.2860984071459497e-06, 'ghazal': 1.6430492035729749e-06, 'Hafiz': 2.4645738053594624e-06, 'boughs': 4.107623008932437e-06, 'caravan': 3.2860984071459497e-06, 'caravans': 2.4645738053594624e-06, 'pleasance': 1.6430492035729749e-06, '1657': 1.6430492035729749e-06, 'sun-baked': 1.6430492035729749e-06, 'upstream': 4.929147610718925e-06, 'arcaded': 1.6430492035729749e-06, 'facaded': 1.6430492035729749e-06, 'alcoves': 4.929147610718925e-06, 'spandrels': 1.6430492035729749e-06, 'bays': 2.4645738053594624e-06, 'frescoed': 1.6430492035729749e-06, 'capacious': 1.6430492035729749e-06, 'apses': 1.6430492035729749e-06, 'vaults': 5.750672212505412e-06, 'tunnel': 9.036770619651361e-06, 'understructure': 1.6430492035729749e-06, 'echo': 8.215246017864873e-06, 'sunrise': 7.393721416078387e-06, 'sluices': 2.4645738053594624e-06, 'descend': 4.107623008932437e-06, 'light-flared': 1.6430492035729749e-06, 'Crowds': 2.4645738053594624e-06, 'massing': 1.6430492035729749e-06, 'fortress': 4.929147610718925e-06, 'Bakhtiari': 1.6430492035729749e-06, 'khan': 1.6430492035729749e-06, 'hacking': 2.4645738053594624e-06, 'filmed': 4.107623008932437e-06, 'rheum': 1.6430492035729749e-06, 'Kajar': 1.6430492035729749e-06, 'princes': 1.6430492035729749e-06, 'limousines': 1.6430492035729749e-06, 'beggars': 2.4645738053594624e-06, 'hawkers': 1.6430492035729749e-06, 'prosceniums': 1.6430492035729749e-06, 'ghazals': 1.6430492035729749e-06, 'Saadi': 1.6430492035729749e-06, 'hoot': 2.4645738053594624e-06, 'arak': 1.6430492035729749e-06, 'dice': 1.0679819823224336e-05, 'paradoxical': 3.2860984071459497e-06, 'amusements': 2.4645738053594624e-06, 'mullah': 1.6430492035729749e-06, 'fissured': 1.6430492035729749e-06, 'Teddy': 2.4645738053594624e-06, 'Marlowe': 4.107623008932437e-06, 'Herrick': 2.4645738053594624e-06, 'riverbank': 3.2860984071459497e-06, 'attribute': 5.750672212505412e-06, 'inducing': 4.107623008932437e-06, 'tulip': 3.2860984071459497e-06, 'Fought': 1.6430492035729749e-06, 'Know': 4.107623008932437e-06, 'hereafter': 4.107623008932437e-06, 'Iraj': 1.6430492035729749e-06, 'sweet-tongued': 1.6430492035729749e-06, "lover's": 1.6430492035729749e-06, 'interred': 1.6430492035729749e-06, 'sepulchred': 1.6430492035729749e-06, 'octaves': 2.4645738053594624e-06, 'arabesque': 1.6430492035729749e-06, 'Frist': 1.6430492035729749e-06, 'ist': 1.6430492035729749e-06, 'um': 2.4645738053594624e-06, 'und': 3.2860984071459497e-06, 'wiederum': 1.6430492035729749e-06, 'verstrichen': 1.6430492035729749e-06, 'sind': 1.6430492035729749e-06, 'sieben': 1.6430492035729749e-06, 'Jahr': 1.6430492035729749e-06, 'Dutchman': 1.6430492035729749e-06, 'wanderings': 3.2860984071459497e-06, 'recurred': 3.2860984071459497e-06, 'directorship': 1.6430492035729749e-06, 'rescinded': 1.6430492035729749e-06, 'cheerfully': 4.929147610718925e-06, 'lightens': 1.6430492035729749e-06, 'stop-overs': 1.6430492035729749e-06, 'lounge': 5.750672212505412e-06, 'Muzak': 1.6430492035729749e-06, 'piped': 2.4645738053594624e-06, 'nolens': 1.6430492035729749e-06, 'volens': 1.6430492035729749e-06, 'stuffing': 2.4645738053594624e-06, 'alphabet': 2.4645738053594624e-06, 'five-and-a-half': 1.6430492035729749e-06, 'Czerny': 1.6430492035729749e-06, 'Etudes': 1.6430492035729749e-06, 'Municipal': 1.6430492035729749e-06, 'twinkle': 3.2860984071459497e-06, 'escapade': 1.6430492035729749e-06, 'Gymnasium': 1.6430492035729749e-06, 'conservatory': 1.6430492035729749e-06, 'Otto': 1.6430492035729749e-06, "Klemperer's": 1.6430492035729749e-06, 'relinquished': 4.107623008932437e-06, 'Prague': 3.2860984071459497e-06, 'von': 1.6430492035729749e-06, 'Zemlinsky': 2.4645738053594624e-06, 'Schonberg': 2.4645738053594624e-06, 'Korngold': 1.6430492035729749e-06, 'Frankfurt': 6.5721968142918994e-06, "Puccini's": 3.2860984071459497e-06, 'Manon': 1.6430492035729749e-06, 'Lescaut': 1.6430492035729749e-06, "Falla's": 1.6430492035729749e-06, 'Vida': 1.6430492035729749e-06, 'Breve': 1.6430492035729749e-06, "Berg's": 1.6430492035729749e-06, 'Wozzek': 1.6430492035729749e-06, 'Kleiber': 1.6430492035729749e-06, "Schonberg's": 1.6430492035729749e-06, 'heute': 1.6430492035729749e-06, 'auf': 1.6430492035729749e-06, 'morgen': 1.6430492035729749e-06, 'repertoire': 2.4645738053594624e-06, "Erdmann's": 1.6430492035729749e-06, "Mahler's": 4.107623008932437e-06, 'upheaval': 3.2860984071459497e-06, 'Kulturbund': 4.107623008932437e-06, 'sonata': 1.6430492035729749e-06, 'synagogues': 2.4645738053594624e-06, 'Cellist': 1.6430492035729749e-06, 'Emanuel': 1.6430492035729749e-06, 'Feuermann': 1.6430492035729749e-06, 'Bronislaw': 1.6430492035729749e-06, 'Hubermann': 1.6430492035729749e-06, 'Palestine': 6.5721968142918994e-06, 'founder-conductor': 1.6430492035729749e-06, 'Arturo': 2.4645738053594624e-06, "Toscanini's": 1.6430492035729749e-06, "Verdi's": 2.4645738053594624e-06, 'Falstaff': 1.6430492035729749e-06, 'Marmi': 1.6430492035729749e-06, 'Viareggio': 1.6430492035729749e-06, 'Boheme': 1.6430492035729749e-06, 'masterpieces': 1.6430492035729749e-06, 'Accademia': 1.6430492035729749e-06, 'Carlisle': 1.6430492035729749e-06, 'Mystery': 3.2860984071459497e-06, 'Curtin': 1.6430492035729749e-06, "Read's": 1.6430492035729749e-06, 'Burle': 1.6430492035729749e-06, "Marx's": 4.107623008932437e-06, 'Samba': 1.6430492035729749e-06, 'Concertante': 1.6430492035729749e-06, 'Jacob': 1.6430492035729749e-06, 'Lateiner': 1.6430492035729749e-06, 'Mahler': 3.2860984071459497e-06, 'Bruckner': 4.107623008932437e-06, "Bruckner's": 3.2860984071459497e-06, 'Pittsburghers': 2.4645738053594624e-06, 'Das': 1.6430492035729749e-06, 'Lied': 1.6430492035729749e-06, 'der': 2.4645738053594624e-06, 'Erde': 1.6430492035729749e-06, 'Bruno': 1.6430492035729749e-06, 'Dimitri': 2.4645738053594624e-06, 'Mitropoulos': 2.4645738053594624e-06, 'Bernstein': 1.6430492035729749e-06, 'introduces': 4.107623008932437e-06, 'Ich': 1.6430492035729749e-06, 'habe': 1.6430492035729749e-06, 'ein': 2.4645738053594624e-06, 'Amt': 1.6430492035729749e-06, 'aber': 1.6430492035729749e-06, 'keine': 1.6430492035729749e-06, 'Meinung': 1.6430492035729749e-06, 'Collection': 1.6430492035729749e-06, 'Rembrandt': 1.6430492035729749e-06, 'Franz': 2.4645738053594624e-06, 'Hals': 2.4645738053594624e-06, 'Lorrain': 1.6430492035729749e-06, 'reminisced': 1.6430492035729749e-06, 'Poussin': 2.4645738053594624e-06, 'Conan': 2.4645738053594624e-06, 'Heine': 1.6430492035729749e-06, 'Stendhal': 2.4645738053594624e-06, 'Etruscan': 1.6430492035729749e-06, 'unfailing': 2.4645738053594624e-06, 'judgement': 2.4645738053594624e-06, 'round-table': 1.6430492035729749e-06, 'Bayerische': 1.6430492035729749e-06, 'Rundfunk': 1.6430492035729749e-06, 'uninterested': 1.6430492035729749e-06, 'doubtingly': 1.6430492035729749e-06, 'foolhardy': 2.4645738053594624e-06, 'strangers': 7.393721416078387e-06, 'Founding': 4.929147610718925e-06, 'forthrightly': 1.6430492035729749e-06, 'Incapable': 1.6430492035729749e-06, 'surmount': 1.6430492035729749e-06, 'destinies': 3.2860984071459497e-06, 'footstep': 3.2860984071459497e-06, 'Argonauts': 1.6430492035729749e-06, 'Heroic': 1.6430492035729749e-06, 'indiscreet': 2.4645738053594624e-06, 'consequential': 1.6430492035729749e-06, 'documentation': 3.2860984071459497e-06, 'composite': 1.0679819823224336e-05, 'merging': 4.929147610718925e-06, 'Eldest': 1.6430492035729749e-06, 'transplanted': 1.6430492035729749e-06, "printer's": 1.6430492035729749e-06, 'philanthropist': 1.6430492035729749e-06, "colonists'": 1.6430492035729749e-06, 'moderating': 1.6430492035729749e-06, "colony's": 1.6430492035729749e-06, 'militia': 9.036770619651361e-06, 'Commanding': 2.4645738053594624e-06, 'Retiring': 1.6430492035729749e-06, 'preside': 2.4645738053594624e-06, 'pre-Revolutionary': 1.6430492035729749e-06, 'precocity': 1.6430492035729749e-06, 'pamphlets': 8.215246017864873e-06, 'Federalist': 1.6430492035729749e-06, 'single-handedly': 2.4645738053594624e-06, 'Confederation': 3.2860984071459497e-06, 'two-term': 1.6430492035729749e-06, 'acumen': 1.6430492035729749e-06, "Hamilton's": 3.2860984071459497e-06, 'power-starved': 1.6430492035729749e-06, 'rotund': 1.6430492035729749e-06, 'individualists': 2.4645738053594624e-06, 'Ardent': 2.4645738053594624e-06, 'opinionated': 2.4645738053594624e-06, 'obstinate': 1.6430492035729749e-06, 'amazingly': 3.2860984071459497e-06, 'phrasemaking': 1.6430492035729749e-06, 'controversialists': 1.6430492035729749e-06, 'vitriol': 1.6430492035729749e-06, 'pens': 2.4645738053594624e-06, 'Dickinson': 1.6430492035729749e-06, 'piddling': 1.6430492035729749e-06, 'castigated': 1.6430492035729749e-06, 'Conway': 1.6430492035729749e-06, 'gratify': 1.6430492035729749e-06, "Burr's": 1.6430492035729749e-06, 'actuarial': 1.6430492035729749e-06, 'forty-two': 2.4645738053594624e-06, 'mentor': 1.6430492035729749e-06, 'Gridley': 1.6430492035729749e-06, 'funding': 1.6430492035729749e-06, 'Talleyrand': 1.6430492035729749e-06, 'legality': 1.6430492035729749e-06, "Congress'": 3.2860984071459497e-06, 'forgiving': 2.4645738053594624e-06, 'vindictive': 2.4645738053594624e-06, 'legislatures': 1.6430492035729749e-06, 'confiscating': 1.6430492035729749e-06, '1783': 3.2860984071459497e-06, 'moderation': 3.2860984071459497e-06, 'refugee': 6.5721968142918994e-06, 'Schaack': 3.2860984071459497e-06, 'exiled': 2.4645738053594624e-06, 'ex-Tory': 1.6430492035729749e-06, 'continentally': 1.6430492035729749e-06, 'super-imposed': 1.6430492035729749e-06, 'displacing': 1.6430492035729749e-06, 'fruition': 2.4645738053594624e-06, 'Nineties': 1.6430492035729749e-06, 'polarizing': 1.6430492035729749e-06, 'nationalists': 1.6430492035729749e-06, 'upholding': 4.107623008932437e-06, 'Resolves': 1.6430492035729749e-06, 'Hamiltonians': 1.6430492035729749e-06, 'Jeffersonians': 2.4645738053594624e-06, 'rechartering': 1.6430492035729749e-06, 'strenuously': 2.4645738053594624e-06, 'Hamiltonian': 1.6430492035729749e-06, 'atune': 1.6430492035729749e-06, 'Hamilton-oriented': 1.6430492035729749e-06, 'Whigs': 5.750672212505412e-06, 'Jacksonian': 2.4645738053594624e-06, '1832': 6.5721968142918994e-06, 'nullifiers': 1.6430492035729749e-06, 'interposition': 2.4645738053594624e-06, 'Resolve': 1.6430492035729749e-06, 'testament': 5.750672212505412e-06, 'Advice': 2.4645738053594624e-06, 'perpetuated': 1.6430492035729749e-06, 'Pandora': 1.6430492035729749e-06, 'serpent': 2.4645738053594624e-06, 'wiles': 2.4645738053594624e-06, 'Nostalgic': 1.6430492035729749e-06, 'Erskine': 1.6430492035729749e-06, 'Georgians': 1.6430492035729749e-06, 'suburbanite': 2.4645738053594624e-06, 'Dow-Jones': 1.6430492035729749e-06, 'urbanization': 6.5721968142918994e-06, 'sowbelly': 2.4645738053594624e-06, 'cornbread': 1.6430492035729749e-06, 'juleps': 1.6430492035729749e-06, 'overexploited': 1.6430492035729749e-06, 'phantom': 2.4645738053594624e-06, 'accolades': 1.6430492035729749e-06, 'eulogize': 1.6430492035729749e-06, 'post-bellum': 2.4645738053594624e-06, 'forsaken': 2.4645738053594624e-06, 'white-suited': 1.6430492035729749e-06, 'big-daddy': 1.6430492035729749e-06, 'chanting': 2.4645738053594624e-06, 'agrarian': 7.393721416078387e-06, 'rankest': 1.6430492035729749e-06, 'wide-sweeping': 1.6430492035729749e-06, 'oddly': 5.750672212505412e-06, '15%': 4.929147610718925e-06, '47.1%': 1.6430492035729749e-06, 'half-century': 2.4645738053594624e-06, 'avalanche': 1.6430492035729749e-06, 'snowballs': 2.4645738053594624e-06, 'Thorp': 2.4645738053594624e-06, 'Yankeefication': 2.4645738053594624e-06, 'Styron': 2.4645738053594624e-06, 'Bankhead': 1.6430492035729749e-06, 'McGruder': 1.6430492035729749e-06, 'Buena': 1.6430492035729749e-06, 'Vista': 1.6430492035729749e-06, 'Terrace': 2.4645738053594624e-06, 'localisms': 1.6430492035729749e-06, 'sixty-two': 2.4645738053594624e-06, '126,000': 1.6430492035729749e-06, 'city-dweller': 1.6430492035729749e-06, 'Capote': 1.6430492035729749e-06, 'reveling': 1.6430492035729749e-06, 'Gothicism': 1.6430492035729749e-06, 'unreal': 5.750672212505412e-06, 'urbanism': 2.4645738053594624e-06, 'dreaded': 2.4645738053594624e-06, 'unwanted': 5.750672212505412e-06, 'hypnotically': 1.6430492035729749e-06, 'testings': 1.6430492035729749e-06, 'contenting': 1.6430492035729749e-06, 'crept': 9.85829522143785e-06, 'white-dominated': 1.6430492035729749e-06, 'sit-ins': 1.6430492035729749e-06, 'speechlessness': 2.4645738053594624e-06, 'hindered': 3.2860984071459497e-06, 'self-assertion': 1.6430492035729749e-06, 'subservience': 1.6430492035729749e-06, 'amorphously': 1.6430492035729749e-06, 'socio-political': 1.6430492035729749e-06, 'picturing': 2.4645738053594624e-06, 'woolly-headed': 1.6430492035729749e-06, 'mutters': 1.6430492035729749e-06, 'yassuhs': 1.6430492035729749e-06, "sho'": 1.6430492035729749e-06, 'nufs': 1.6430492035729749e-06, 'blissful': 4.107623008932437e-06, 'deference': 4.929147610718925e-06, 'massuh': 1.6430492035729749e-06, 'Faulknerian': 1.6430492035729749e-06, 'Lucas': 1.6430492035729749e-06, 'Beauchamps': 1.6430492035729749e-06, 'vanishing': 4.107623008932437e-06, 'Presenting': 1.6430492035729749e-06, 'individualized': 4.929147610718925e-06, 'glaringly': 1.6430492035729749e-06, 'non-representation': 1.6430492035729749e-06, 'Keith': 1.8073541239302723e-05, "Wheeler's": 1.6430492035729749e-06, 'Peaceable': 1.6430492035729749e-06, 'rabid': 2.4645738053594624e-06, 'wavers': 1.6430492035729749e-06, 'disappearance': 7.393721416078387e-06, 'aristocratic': 4.107623008932437e-06, 'languid': 4.107623008932437e-06, 'romanticize': 2.4645738053594624e-06, "Mitchell's": 1.6430492035729749e-06, 'Tara': 1.6430492035729749e-06, 'prolonging': 2.4645738053594624e-06, 'overexploitation': 1.6430492035729749e-06, 'romanticizing': 1.6430492035729749e-06, 'Westbrook': 2.4645738053594624e-06, 'Twilight': 1.6430492035729749e-06, 'Regionalism': 1.6430492035729749e-06, 'miasmal': 1.6430492035729749e-06, 'minutely': 1.6430492035729749e-06, 'autopsied': 1.6430492035729749e-06, 'fervently': 2.4645738053594624e-06, 'bemoans': 1.6430492035729749e-06, 'northerner': 1.6430492035729749e-06, 'bewilders': 1.6430492035729749e-06, 'befuddles': 1.6430492035729749e-06, 'Yoknapatawpha': 2.4645738053594624e-06, 'razorback': 1.6430492035729749e-06, 'hogs': 2.4645738053594624e-06, 'effluvium': 1.6430492035729749e-06, 'backwoods-and-sand-hill': 1.6430492035729749e-06, 'subhumanity': 1.6430492035729749e-06, 'Disneyland': 1.6430492035729749e-06, 'make-believe': 1.6430492035729749e-06, 'validly': 1.6430492035729749e-06, 'Dreiser': 1.6430492035729749e-06, 'Dos': 1.6430492035729749e-06, 'Passos': 1.6430492035729749e-06, 'assailants': 1.6430492035729749e-06, 'masterfully': 1.6430492035729749e-06, 'irrevocably': 2.4645738053594624e-06, 'Sartoris': 3.2860984071459497e-06, 'Snopes': 4.107623008932437e-06, 'glimmer': 3.2860984071459497e-06, 'overpowering': 1.6430492035729749e-06, 'grapple': 1.6430492035729749e-06, 'choreographer': 4.929147610718925e-06, 'creators': 2.4645738053594624e-06, 'self-sufficiency': 2.4645738053594624e-06, 'cyclorama': 1.6430492035729749e-06, 'Rauschenberg': 1.6430492035729749e-06, 'neo-dadaist': 1.6430492035729749e-06, "Cunningham's": 2.4645738053594624e-06, 'Summerspace': 1.6430492035729749e-06, 'Images': 1.6430492035729749e-06, 'Reflections': 1.6430492035729749e-06, 'diaphanous': 1.6430492035729749e-06, 'dance-theatre': 1.6430492035729749e-06, 'environmental': 5.750672212505412e-06, 'masks': 3.2860984071459497e-06, 'hoops': 3.2860984071459497e-06, 'metamorphosed': 2.4645738053594624e-06, 'loosens': 1.6430492035729749e-06, 'parasol': 3.2860984071459497e-06, 'clad': 5.750672212505412e-06, 'finial': 1.6430492035729749e-06, 'depersonalized': 1.6430492035729749e-06, 'accouterments': 1.6430492035729749e-06, 'animized': 1.6430492035729749e-06, 'choreographers': 4.107623008932437e-06, "Olson's": 1.6430492035729749e-06, 'projective': 2.4645738053594624e-06, 'disdains': 1.6430492035729749e-06, 'syntax': 5.750672212505412e-06, 'metre': 1.6430492035729749e-06, 'Breath': 3.2860984071459497e-06, 'surrealism': 1.6430492035729749e-06, 'incongruous': 1.6430492035729749e-06, 'contradictions': 4.107623008932437e-06, 'energies': 9.85829522143785e-06, 'brushwork': 1.6430492035729749e-06, 'attendant': 1.0679819823224336e-05, 'urgencies': 1.6430492035729749e-06, 'ambiguities': 6.5721968142918994e-06, 'perceptual': 6.5721968142918994e-06, 'serial': 4.929147610718925e-06, 'establishes': 4.107623008932437e-06, 'rotations': 1.6430492035729749e-06, 'intensities': 4.929147610718925e-06, 'invert': 1.6430492035729749e-06, 'tossing': 4.107623008932437e-06, 'oracles': 1.6430492035729749e-06, 'Ching': 4.929147610718925e-06, 'Avant-garde': 1.6430492035729749e-06, 'Litz': 2.4645738053594624e-06, 'stipulates': 2.4645738053594624e-06, 'meditative': 2.4645738053594624e-06, 'depiction': 1.6430492035729749e-06, 'analytic': 1.3965918230370285e-05, 'Merle': 1.6430492035729749e-06, 'spatial': 8.215246017864873e-06, 'catapulting': 1.6430492035729749e-06, 'recklessly': 1.6430492035729749e-06, 'Pollock': 7.393721416078387e-06, 'impelled': 5.750672212505412e-06, "Pollock's": 1.6430492035729749e-06, 'constricting': 2.4645738053594624e-06, 'Midi': 1.6430492035729749e-06, 'Garth': 1.232286902679731e-05, 'front-back': 1.6430492035729749e-06, 'pervading': 2.4645738053594624e-06, 'lyricism': 2.4645738053594624e-06, 'jumps': 2.4645738053594624e-06, 'outpouring': 1.6430492035729749e-06, 'godlike': 1.6430492035729749e-06, 'Mars': 1.6430492035729746e-05, 'evolve': 4.929147610718925e-06, 'kaleidescope': 1.6430492035729749e-06, 'Unconcerned': 2.4645738053594624e-06, 'motional': 1.6430492035729749e-06, 'Movements': 1.6430492035729749e-06, 'uninhibited': 3.2860984071459497e-06, 'purposive': 3.2860984071459497e-06, 'metamorphosis': 2.4645738053594624e-06, 'Merce': 1.6430492035729749e-06, 'Cunningham': 4.929147610718925e-06, 'chanced': 3.2860984071459497e-06, 'freshness': 4.107623008932437e-06, 'excitedly': 6.5721968142918994e-06, 'slaps': 1.6430492035729749e-06, 'pirouette': 4.107623008932437e-06, 'designating': 3.2860984071459497e-06, 'variables': 2.218116424823516e-05, 'approximate': 9.85829522143785e-06, 'inviolable': 1.6430492035729749e-06, 'segments': 9.036770619651361e-06, 'cheat': 2.4645738053594624e-06, 'adheres': 1.6430492035729749e-06, 'arbitrate': 3.2860984071459497e-06, 'rearrange': 3.2860984071459497e-06, 'transitions': 4.929147610718925e-06, 'expounded': 2.4645738053594624e-06, 'calibre': 2.4645738053594624e-06, 'Calhoun': 9.036770619651361e-06, 'Compromise': 1.6430492035729749e-06, 'bloodiest': 1.6430492035729749e-06, 'Nineteenth': 4.107623008932437e-06, 'Atlantica': 1.6430492035729749e-06, '1787-89': 2.4645738053594624e-06, 'upholders': 1.6430492035729749e-06, 'centralizing': 2.4645738053594624e-06, '1855': 2.4645738053594624e-06, 'timeliness': 2.4645738053594624e-06, 'Know-nothings': 1.6430492035729749e-06, 'emigrating': 1.6430492035729749e-06, 'pretence': 4.107623008932437e-06, 'alloy': 2.4645738053594624e-06, 'Dictionaries': 1.6430492035729749e-06, 'Articles': 1.6430492035729749e-06, '1781': 1.6430492035729749e-06, 'verbatim': 2.4645738053594624e-06, 'hostilities': 4.929147610718925e-06, 'drafters': 1.6430492035729749e-06, 'admits': 2.4645738053594624e-06, 'coerced': 1.6430492035729749e-06, 'defiantly': 2.4645738053594624e-06, '1787': 2.4645738053594624e-06, 'unalienable': 1.6430492035729749e-06, 'Constitutions': 3.2860984071459497e-06, 'Preambles': 2.4645738053594624e-06, 'Preamble': 1.6430492035729749e-06, 'Defence': 1.6430492035729749e-06, 'Blessings': 1.6430492035729749e-06, 'Posterity': 1.6430492035729749e-06, 'ordain': 2.4645738053594624e-06, 'tranquility': 2.4645738053594624e-06, 'preambles': 1.6430492035729749e-06, 'seceding': 2.4645738053594624e-06, 'abhorred': 1.6430492035729749e-06, 'forerunner': 3.2860984071459497e-06, 'Proclamation': 3.2860984071459497e-06, 'Message': 1.6430492035729749e-06, 'Liberty-and-Union': 2.4645738053594624e-06, 'grimmer': 1.6430492035729749e-06, '214,938': 1.6430492035729749e-06, 'Commander-in-Chief': 1.6430492035729749e-06, 'mars': 2.4645738053594624e-06, 'delegated': 4.107623008932437e-06, '140,414': 1.6430492035729749e-06, 'disunion': 1.6430492035729749e-06, 'confederations': 1.6430492035729749e-06, '70,524': 1.6430492035729749e-06, 'Sumter': 2.4645738053594624e-06, 'undoing': 2.4645738053594624e-06, "freedom's": 2.4645738053594624e-06, 'coalesced': 1.6430492035729749e-06, 'organisms': 6.5721968142918994e-06, 'entropy-increasing': 1.6430492035729749e-06, 'Hawkins': 2.4645738053594624e-06, 'applicability': 2.4645738053594624e-06, 'nucleic': 1.6430492035729749e-06, 'molecular': 1.4787442832156774e-05, 'Lavoisier': 1.6430492035729749e-06, 'Archimedes': 1.6430492035729749e-06, 'Copernicus': 1.1501344425010824e-05, 'standstill': 1.6430492035729749e-06, 'coexist': 1.6430492035729749e-06, 'Consitutional': 1.6430492035729749e-06, 'cooperatives': 4.107623008932437e-06, 'communes': 4.929147610718925e-06, 'quell': 2.4645738053594624e-06, 'breakwaters': 1.6430492035729749e-06, 'dispel': 3.2860984071459497e-06, 'Lucretius': 2.4645738053594624e-06, 'Mortals': 1.6430492035729749e-06, 'discernable': 1.6430492035729749e-06, 'reconstruct': 5.750672212505412e-06, 'remembrances': 1.6430492035729749e-06, 'comets': 2.4645738053594624e-06, 'amenable': 3.2860984071459497e-06, 'ritualized': 1.6430492035729749e-06, 'unaware': 1.1501344425010824e-05, 'reiterates': 1.6430492035729749e-06, 'dwindle': 2.4645738053594624e-06, 'solstice': 1.6430492035729749e-06, 'solar': 1.1501344425010824e-05, 'Ptolemaic': 1.0679819823224336e-05, 'periodicity': 1.6430492035729749e-06, 'Newtonian': 2.4645738053594624e-06, 'terrestial': 1.6430492035729749e-06, 'instituting': 1.6430492035729749e-06, 'planetoid': 1.6430492035729749e-06, 'meteor': 3.2860984071459497e-06, 'Solar': 3.2860984071459497e-06, 'suggestive': 8.215246017864873e-06, 'stubbornness': 2.4645738053594624e-06, 'staved': 1.6430492035729749e-06, 'clench': 1.6430492035729749e-06, 'drunks': 3.2860984071459497e-06, 'unwitting': 1.6430492035729749e-06, 'induces': 3.2860984071459497e-06, 'toto': 1.6430492035729749e-06, 'voodoo': 2.4645738053594624e-06, 'determing': 1.6430492035729749e-06, 'compulsions': 1.6430492035729749e-06, 'exhortations': 1.6430492035729749e-06, 'bio-': 1.6430492035729749e-06, 'domains': 3.2860984071459497e-06, 'predictive': 3.2860984071459497e-06, 'acquires': 2.4645738053594624e-06, 'imminence': 1.6430492035729749e-06, 'parental': 2.4645738053594624e-06, 'hallucinations': 1.6430492035729749e-06, 'X-rays': 3.2860984071459497e-06, 'insofar': 4.929147610718925e-06, 'unanswered': 1.6430492035729749e-06, 'Godot': 4.929147610718925e-06, 'Beckett': 5.750672212505412e-06, 'reviewers': 2.4645738053594624e-06, 'nihilistic': 1.6430492035729749e-06, 'astute': 1.6430492035729749e-06, 'Clurman': 2.4645738053594624e-06, 'Waiting': 5.750672212505412e-06, "Beckett's": 4.107623008932437e-06, 'permeated': 3.2860984071459497e-06, 'nihilism': 1.6430492035729749e-06, 'sharpened': 4.929147610718925e-06, 'Jesuit': 3.2860984071459497e-06, 'hates': 4.107623008932437e-06, 'rough-hewn': 1.6430492035729749e-06, 'unsharpened': 1.6430492035729749e-06, 'Unruly': 1.6430492035729749e-06, 'humility': 4.929147610718925e-06, 'self-acceptance': 1.6430492035729749e-06, 'genesis': 3.2860984071459497e-06, 'corresponds': 5.750672212505412e-06, 'inflections': 4.107623008932437e-06, 'tweed': 4.929147610718925e-06, 'baggy': 4.107623008932437e-06, 'shirt': 2.218116424823516e-05, "L'Arcade": 1.6430492035729749e-06, 'Madeleine': 3.2860984071459497e-06, 'world-shattering': 1.6430492035729749e-06, 'buzzing': 5.750672212505412e-06, 'Heidegger': 1.6430492035729749e-06, 'Sartre': 2.4645738053594624e-06, 'withstood': 3.2860984071459497e-06, 'jeopardize': 3.2860984071459497e-06, 'invades': 1.6430492035729749e-06, 'Plays': 1.6430492035729749e-06, 'formalized': 2.4645738053594624e-06, 'Endgame': 1.6430492035729749e-06, "Krapp's": 1.6430492035729749e-06, 'Tape': 4.107623008932437e-06, 'accommodates': 2.4645738053594624e-06, 'never-predictable': 1.6430492035729749e-06, 'manifold': 1.1501344425010824e-05, 'gestured': 3.2860984071459497e-06, 'Boulevard': 8.215246017864873e-06, 'Malesherbes': 1.6430492035729749e-06, 'Royale': 1.6430492035729749e-06, 'flattery': 3.2860984071459497e-06, 'tidings': 3.2860984071459497e-06, 'Chartres': 2.4645738053594624e-06, 'unexplainable': 1.6430492035729749e-06, 'Didi': 1.6430492035729749e-06, 'Gogo': 1.6430492035729749e-06, "Hamm's": 1.6430492035729749e-06, 'Clov': 1.6430492035729749e-06, 'life-death': 1.6430492035729749e-06, 'inscrutability': 1.6430492035729749e-06, "Augustine's": 1.6430492035729749e-06, 'damned': 1.3965918230370285e-05, 'Jansenist': 1.6430492035729749e-06, 'Communion': 1.6430492035729749e-06, 'knelt': 7.393721416078387e-06, 'kneel': 4.929147610718925e-06, 'irksome': 1.6430492035729749e-06, 'orphans': 1.6430492035729749e-06, 'Lunch': 1.6430492035729749e-06, 'disarray': 2.4645738053594624e-06, 'ethic': 4.107623008932437e-06, 'systematization': 1.6430492035729749e-06, 'not-strictly-practical': 1.6430492035729749e-06, 'Hemingway': 2.4645738053594624e-06, 'Rises': 1.6430492035729749e-06, 'Farewell': 2.4645738053594624e-06, "Hemingway's": 1.6430492035729749e-06, 'Fantasia': 1.6430492035729749e-06, 'Unconscious': 1.6430492035729749e-06, 'vehemently': 1.6430492035729749e-06, 'overestimation': 2.4645738053594624e-06, 'hipster': 1.6430492035729749e-06, 'Eros': 2.4645738053594624e-06, 'libido': 2.4645738053594624e-06, 'godhead': 1.6430492035729749e-06, 'Astarte': 1.6430492035729749e-06, 'Ishtar': 1.6430492035729749e-06, 'Yahwe': 1.6430492035729749e-06, 'Dionysus': 1.6430492035729749e-06, 'orgone': 1.6430492035729749e-06, 'marijuana': 9.036770619651361e-06, 'orgiastic': 2.4645738053594624e-06, 'Lipton': 4.929147610718925e-06, 'Barbarians': 1.6430492035729749e-06, 'mystique': 4.929147610718925e-06, 'multivalent': 1.6430492035729749e-06, 'sexualized': 1.6430492035729749e-06, 'ungratified': 1.6430492035729749e-06, 'beatniks': 4.107623008932437e-06, 'domesticity': 1.6430492035729749e-06, 'tame': 4.929147610718925e-06, 'legalized': 2.4645738053594624e-06, 'flappers': 1.6430492035729749e-06, 'necking': 1.6430492035729749e-06, 'petting': 2.4645738053594624e-06, 'pungent': 4.107623008932437e-06, 'taboo': 3.2860984071459497e-06, 'mana': 2.4645738053594624e-06, 'leering': 4.107623008932437e-06, 'knights': 4.107623008932437e-06, 'Dylan': 9.85829522143785e-06, 'Dionysian': 2.4645738053594624e-06, 'dialectic': 5.750672212505412e-06, 'glorification': 1.6430492035729749e-06, 'mysteriously': 2.4645738053594624e-06, 'metaphors': 3.2860984071459497e-06, 'beatific': 1.6430492035729749e-06, 'reconciled': 3.2860984071459497e-06, 'wholeness': 2.4645738053594624e-06, 'psychoanalysis': 4.929147610718925e-06, 'flirt': 1.6430492035729749e-06, 'mysticism': 2.4645738053594624e-06, 'unfettered': 4.107623008932437e-06, 'liberated': 5.750672212505412e-06, 'Righteous': 1.6430492035729749e-06, 'prophets': 4.107623008932437e-06, 'deathward': 1.6430492035729749e-06, 'nothingness': 3.2860984071459497e-06, 'predestined': 1.6430492035729749e-06, 'curb': 1.1501344425010824e-05, 'instinctual': 2.4645738053594624e-06, 'apocalypse': 1.6430492035729749e-06, 'explodes': 1.6430492035729749e-06, 'barbarians': 3.2860984071459497e-06, 'implacable': 3.2860984071459497e-06, 'categorical': 3.2860984071459497e-06, 'metaphysics': 9.85829522143785e-06, 'alienation': 1.889506584108921e-05, 'betrayed': 7.393721416078387e-06, 'promptings': 1.6430492035729749e-06, 'mentality': 3.2860984071459497e-06, 'rootless': 2.4645738053594624e-06, 'undisciplined': 3.2860984071459497e-06, 'unproductive': 1.6430492035729749e-06, 'fetish': 2.4645738053594624e-06, 'non-conformists': 1.6430492035729749e-06, 'negation': 4.929147610718925e-06, 'obsesses': 2.4645738053594624e-06, 'dialectical': 1.6430492035729749e-06, 'Muse': 2.4645738053594624e-06, 'Monogamy': 1.6430492035729749e-06, 'abjectly': 1.6430492035729749e-06, 'abortions': 1.6430492035729749e-06, 'monogamous': 1.6430492035729749e-06, 'wedlock': 2.4645738053594624e-06, 'bourgeois': 2.4645738053594624e-06, 'pyschiatrist': 1.6430492035729749e-06, 'disapproves': 1.6430492035729749e-06, 'stifling': 2.4645738053594624e-06, 'unbearably': 1.6430492035729749e-06, 'craving': 2.4645738053594624e-06, 'Boredom': 1.6430492035729749e-06, 'reigns': 1.6430492035729749e-06, 'orgies': 2.4645738053594624e-06, 'borderline': 3.2860984071459497e-06, 'composes': 2.4645738053594624e-06, 'Tijuana': 1.6430492035729749e-06, 'initiates': 2.4645738053594624e-06, 'disaffiliated': 1.6430492035729749e-06, 'disordered': 3.2860984071459497e-06, 'Nymphomaniacs': 1.6430492035729749e-06, 'junkies': 1.6430492035729749e-06, 'homosexuals': 3.2860984071459497e-06, 'lesbians': 1.6430492035729749e-06, 'irresolute': 2.4645738053594624e-06, 'despairing': 4.107623008932437e-06, 'derelicts': 1.6430492035729749e-06, 'outcasts': 1.6430492035729749e-06, 'shack-up': 1.6430492035729749e-06, 'null': 1.1501344425010824e-05, 'leagued': 1.6430492035729749e-06, 'persecutory': 1.6430492035729749e-06, 'concerted': 3.2860984071459497e-06, 'malevolent': 2.4645738053594624e-06, 'hirelings': 1.6430492035729749e-06, 'self-analysis': 1.6430492035729749e-06, 'all-night': 1.6430492035729749e-06, 'obsessions': 1.6430492035729749e-06, 'Loveways': 1.6430492035729749e-06, 'Generation': 2.4645738053594624e-06, 'spares': 1.6430492035729749e-06, 'sordid': 3.2860984071459497e-06, 'Venice': 6.5721968142918994e-06, 'radicalism': 4.107623008932437e-06, 'Mecca': 1.6430492035729749e-06, 'smalltime': 1.6430492035729749e-06, 'deviants': 2.4645738053594624e-06, 'orgasms': 1.6430492035729749e-06, 'enhanced': 4.929147610718925e-06, 'Carried': 1.6430492035729749e-06, 'captures': 2.4645738053594624e-06, 'dreamlike': 2.4645738053594624e-06, 'drugged': 4.929147610718925e-06, "Ginsberg's": 1.6430492035729749e-06, 'Howl': 1.6430492035729749e-06, 'disoriented': 1.6430492035729749e-06, 'Apollonian': 1.6430492035729749e-06, 'derangement': 1.6430492035729749e-06, 'Ortega': 1.6430492035729749e-06, 'Y': 4.107623008932437e-06, 'Gasset': 1.6430492035729749e-06, 'betrays': 3.2860984071459497e-06, 'genre': 2.4645738053594624e-06, 'spiked': 2.4645738053594624e-06, 'Alley': 1.6430492035729749e-06, 'hollyhocks': 1.6430492035729749e-06, 'lilacs': 3.2860984071459497e-06, 'hundred-leaf': 1.6430492035729749e-06, 'creeper': 1.6430492035729749e-06, 'honeysuckle': 2.4645738053594624e-06, 'corner-': 1.6430492035729749e-06, 'open-work': 1.6430492035729749e-06, 'cast-iron': 1.6430492035729749e-06, 'steeples': 4.107623008932437e-06, 'pinnacle': 1.6430492035729749e-06, 'squeak': 1.6430492035729749e-06, 'clang': 1.6430492035729749e-06, 'bough': 2.4645738053594624e-06, 'quietness': 3.2860984071459497e-06, 'greenness': 1.6430492035729749e-06, 'grape-arbor': 3.2860984071459497e-06, 'grandfathers': 1.6430492035729749e-06, 'syringa': 1.6430492035729749e-06, 'sweet-shrub': 1.6430492035729749e-06, 'snowball': 1.6430492035729749e-06, 'rose-of-Sharon': 1.6430492035729749e-06, 'balm-of-Gilead': 1.6430492035729749e-06, 'gingham': 2.4645738053594624e-06, 'clothesline': 1.6430492035729749e-06, 'flutter': 2.4645738053594624e-06, 'garments': 4.929147610718925e-06, 'half-way': 4.107623008932437e-06, 'apple-tree': 1.6430492035729749e-06, 'queer': 5.750672212505412e-06, 'queerer': 1.6430492035729749e-06, 'queerest': 1.6430492035729749e-06, 'mill-wheel': 1.6430492035729749e-06, 'mill-pond': 1.6430492035729749e-06, 'shadowed': 3.2860984071459497e-06, 'remonstrate': 1.6430492035729749e-06, 'smallness': 2.4645738053594624e-06, 'frost-bitten': 2.4645738053594624e-06, 'chrysanthemums': 1.6430492035729749e-06, 'scent': 5.750672212505412e-06, 'dusty-slippered': 1.6430492035729749e-06, 'cautiously': 6.5721968142918994e-06, 'bees': 1.3144393628583799e-05, 'ragged': 8.215246017864873e-06, 'brown-edged': 1.6430492035729749e-06, 'hot-colored': 1.6430492035729749e-06, 'verbenas': 3.2860984071459497e-06, 'dining-room': 1.6430492035729749e-06, 'half-gourd': 1.6430492035729749e-06, 'great-grandmother': 1.6430492035729749e-06, 'oleanders': 1.6430492035729749e-06, 'tubs': 4.929147610718925e-06, 'wall-flowers': 1.6430492035729749e-06, 'pots': 4.929147610718925e-06, 'heliotrope': 1.6430492035729749e-06, 'woodshed': 1.6430492035729749e-06, 'plantain': 1.6430492035729749e-06, 'lilies': 1.6430492035729749e-06, 'commandment': 2.4645738053594624e-06, 'rose-tea': 1.6430492035729749e-06, 'peonies': 2.4645738053594624e-06, 'blighted': 3.2860984071459497e-06, 'poppies': 1.6430492035729749e-06, 'myrtle': 1.6430492035729749e-06, 'violets': 2.4645738053594624e-06, 'prodigally': 1.6430492035729749e-06, 'hollyhock': 1.6430492035729749e-06, 'pink-petticoated': 1.6430492035729749e-06, 'larkspur': 1.6430492035729749e-06, 'minutiae': 1.6430492035729749e-06, 'Pale': 1.6430492035729749e-06, 'snapdragons': 1.6430492035729749e-06, 'seed-pods': 1.6430492035729749e-06, 'balsams': 1.6430492035729749e-06, 'fire-crackers': 1.6430492035729749e-06, 'red-and-yellow': 1.6430492035729749e-06, 'columbines': 1.6430492035729749e-06, 'round-tipped': 1.6430492035729749e-06, 'morning-glory': 1.6430492035729749e-06, 'blown-up': 1.6430492035729749e-06, 'vine': 4.107623008932437e-06, 'waggling': 1.6430492035729749e-06, 'Fuzzy': 1.6430492035729749e-06, 'caterpillars': 1.6430492035729749e-06, 'snails': 1.6430492035729749e-06, 'squashed-looking': 1.6430492035729749e-06, 'straw-colored': 1.6430492035729749e-06, 'slit': 5.750672212505412e-06, 'claws': 3.2860984071459497e-06, 'stabled': 1.6430492035729749e-06, 'faery': 1.6430492035729749e-06, 'creamy': 1.6430492035729749e-06, 'pebbles': 3.2860984071459497e-06, 'pocketed': 1.6430492035729749e-06, 'prettier': 3.2860984071459497e-06, 'exteriors': 1.6430492035729749e-06, 'passers-by': 1.6430492035729749e-06, 'unselfconsciousness': 1.6430492035729749e-06, 'vine-embowered': 1.6430492035729749e-06, 'gate-post': 1.6430492035729749e-06, "Beauty's": 1.6430492035729749e-06, 'enchanted': 4.929147610718925e-06, 'Rapunzel': 1.6430492035729749e-06, 'crocketed': 1.6430492035729749e-06, 'spire': 4.929147610718925e-06, 'solitudes': 1.6430492035729749e-06, 'misinterpretation': 1.6430492035729749e-06, 'sag': 4.107623008932437e-06, 'poor-white-trash': 1.6430492035729749e-06, 'latched': 1.6430492035729749e-06, 'chins': 2.4645738053594624e-06, 'unintentionally': 2.4645738053594624e-06, 'drowsed': 1.6430492035729749e-06, 'palpable': 2.4645738053594624e-06, 'hay-wagon': 1.6430492035729749e-06, 'gutter': 1.6430492035729749e-06, 'squeaked': 2.4645738053594624e-06, 'hub': 1.6430492035729749e-06, "horses'": 3.2860984071459497e-06, "huckster's": 1.6430492035729749e-06, 'forearms': 1.6430492035729749e-06, 'Sleepily': 1.6430492035729749e-06, 'half-reluctant': 1.6430492035729749e-06, 'Rhu-beb-ni-ice': 1.6430492035729749e-06, 'rhu-beb': 1.6430492035729749e-06, 'sing-song': 1.6430492035729749e-06, 'drone': 3.2860984071459497e-06, 'bumble-bee': 1.6430492035729749e-06, 'heeded': 1.6430492035729749e-06, 'plodded': 2.4645738053594624e-06, 'slant-wise': 1.6430492035729749e-06, "trees'": 1.6430492035729749e-06, "four-o'clock": 2.4645738053594624e-06, 'four-thirty': 1.6430492035729749e-06, 'sunshiny': 1.6430492035729749e-06, 'fifty-odd': 2.4645738053594624e-06, 'edgewise': 1.6430492035729749e-06, 'hitching': 2.4645738053594624e-06, 'carriage-step': 1.6430492035729749e-06, 'unpaved': 1.6430492035729749e-06, 'steeply': 1.6430492035729749e-06, 'ankle-deep': 2.4645738053594624e-06, 'bucolic': 1.6430492035729749e-06, 'hoofmarks': 1.6430492035729749e-06, 'shod': 2.4645738053594624e-06, 'backyard': 1.6430492035729749e-06, 'barns': 4.107623008932437e-06, 'coaxing': 1.6430492035729749e-06, 'thud': 3.2860984071459497e-06, 'hooves': 2.4645738053594624e-06, 'thwack': 1.6430492035729749e-06, 'cowhide': 1.6430492035729749e-06, 'riddling': 2.4645738053594624e-06, 'obscurely': 1.6430492035729749e-06, 'centrally': 4.929147610718925e-06, "Mann's": 8.215246017864873e-06, 'Amra': 1.6430492035729749e-06, 'voluptuous': 3.2860984071459497e-06, 'indolent': 4.107623008932437e-06, 'cunning': 4.929147610718925e-06, 'birdlike': 1.6430492035729749e-06, 'Lautner': 3.2860984071459497e-06, 'epithets': 6.5721968142918994e-06, 'wretched': 6.5721968142918994e-06, 'poseurs': 1.6430492035729749e-06, 'decently': 1.6430492035729749e-06, 'Jacoby': 4.929147610718925e-06, 'Lizzy': 2.4645738053594624e-06, 'epiphany': 2.4645738053594624e-06, 'unredeemed': 1.6430492035729749e-06, 'humiliation': 4.929147610718925e-06, 'transvestitism': 1.6430492035729749e-06, 'coquette': 2.4645738053594624e-06, 'horrifyingly': 1.6430492035729749e-06, "Jacoby's": 2.4645738053594624e-06, 'banal': 2.4645738053594624e-06, 'artifice': 1.6430492035729749e-06, 'hackwork': 1.6430492035729749e-06, 'modulation': 4.107623008932437e-06, 'abjection': 1.6430492035729749e-06, 'infidelity': 2.4645738053594624e-06, 'perceives': 3.2860984071459497e-06, 'collapses': 1.6430492035729749e-06, 'emblematic': 3.2860984071459497e-06, 'constatation': 1.6430492035729749e-06, 'enciphered': 1.6430492035729749e-06, 'whore': 2.4645738053594624e-06, 'quivering': 6.5721968142918994e-06, 'mindless': 3.2860984071459497e-06, 'resonances': 3.2860984071459497e-06, 'revert': 3.2860984071459497e-06, 'Tonio': 1.6430492035729749e-06, 'Aschenbach': 1.6430492035729749e-06, 'Leverkuhn': 3.2860984071459497e-06, 'sufferings': 4.107623008932437e-06, 'transgression': 1.6430492035729749e-06, 'disguise': 4.929147610718925e-06, 'singularity': 1.6430492035729749e-06, 'Cipolla': 1.6430492035729749e-06, 'catastrophes': 4.929147610718925e-06, 'accumulates': 2.4645738053594624e-06, 'Professionally': 1.6430492035729749e-06, 'masquerading': 1.6430492035729749e-06, 'punishable': 1.6430492035729749e-06, 'artist-nature': 1.6430492035729749e-06, 'expressionistic': 1.6430492035729749e-06, 'Churchyard': 2.4645738053594624e-06, 'cyclist': 7.393721416078387e-06, 'platitudinous': 1.6430492035729749e-06, 'churchyard': 5.750672212505412e-06, 'highroad': 5.750672212505412e-06, 'footpath': 1.6430492035729749e-06, 'widower': 1.6430492035729749e-06, 'Praisegod': 3.2860984071459497e-06, 'Piepsam': 1.1501344425010824e-05, 'physiognomy': 2.4645738053594624e-06, 'enigmatic': 2.4645738053594624e-06, 'cadaver': 1.6430492035729749e-06, 'psychopomp': 1.6430492035729749e-06, 'impotent': 2.4645738053594624e-06, 'sinfulness': 3.2860984071459497e-06, 'wretchedness': 1.6430492035729749e-06, 'imprecates': 1.6430492035729749e-06, 'doom': 3.2860984071459497e-06, 'light-headed': 2.4645738053594624e-06, "Piepsam's": 1.6430492035729749e-06, 'cur': 1.6430492035729749e-06, 'puppy': 2.4645738053594624e-06, 'fox-terrier': 1.6430492035729749e-06, 'howls': 3.2860984071459497e-06, 'religiousness': 1.6430492035729749e-06, 'dialectically': 1.6430492035729749e-06, 'wrestlings': 1.6430492035729749e-06, 'bitten': 3.2860984071459497e-06, 'capitulated': 2.4645738053594624e-06, 'blue-eyed': 3.2860984071459497e-06, 'unreflective': 1.6430492035729749e-06, 'unproblematic': 1.6430492035729749e-06, 'blithe': 2.4645738053594624e-06, 'raving': 3.2860984071459497e-06, 'germinal': 1.6430492035729749e-06, 'self-destructive': 3.2860984071459497e-06, 'Naphta': 1.6430492035729749e-06, 'expressiveness': 1.6430492035729749e-06, 'unthematic': 1.6430492035729749e-06, 'Durer': 2.4645738053594624e-06, 'Bruegel': 1.6430492035729749e-06, 'Gladius': 2.4645738053594624e-06, '1902': 3.2860984071459497e-06, 'characterizing': 1.6430492035729749e-06, 'Savonarola': 1.6430492035729749e-06, 'art-shop': 1.6430492035729749e-06, 'Bluthenzweig': 1.6430492035729749e-06, "painter's": 1.6430492035729749e-06, 'Hieronymus': 2.4645738053594624e-06, 'envisions': 2.4645738053594624e-06, 'vanities': 1.6430492035729749e-06, 'namesake': 2.4645738053594624e-06, 'terram': 1.6430492035729749e-06, 'cito': 1.6430492035729749e-06, 'velociter': 1.6430492035729749e-06, 'powerfulness': 1.6430492035729749e-06, 'unreason': 1.6430492035729749e-06, 'formalism': 2.4645738053594624e-06, 'disintegrative': 1.6430492035729749e-06, 'sub-human': 1.6430492035729749e-06, 'quasi-mechanistic': 1.6430492035729749e-06, 'imitations': 3.2860984071459497e-06, 'individualistic': 4.107623008932437e-06, 'humanism': 4.107623008932437e-06, 'thoroughgoing': 2.4645738053594624e-06, 'rationalism': 4.107623008932437e-06, 'acknowledges': 2.4645738053594624e-06, 'non-artistic': 1.6430492035729749e-06, 'causal': 5.750672212505412e-06, 'uncaused': 1.6430492035729749e-06, 'solipsism': 1.6430492035729749e-06, 'mimesis': 8.215246017864873e-06, 'mimetic': 3.2860984071459497e-06, 'Plato': 1.7252016637516235e-05, 'intellect': 4.929147610718925e-06, 'Presupposed': 1.6430492035729749e-06, 'stratify': 1.6430492035729749e-06, 'unimpassioned': 1.6430492035729749e-06, 'Poetics': 7.393721416078387e-06, 'imitated': 4.107623008932437e-06, "Auerbach's": 1.6430492035729749e-06, 'Mimesis': 3.2860984071459497e-06, 'Incarnation': 1.6430492035729749e-06, 'overtones': 3.2860984071459497e-06, 'transcendent': 2.4645738053594624e-06, 'Artistic': 1.6430492035729749e-06, 'rarified': 1.6430492035729749e-06, 'abstraction': 1.1501344425010824e-05, 'designations': 1.6430492035729749e-06, 'conjoined': 3.2860984071459497e-06, 're-living': 1.6430492035729749e-06, 'imagining': 1.6430492035729749e-06, 'recovers': 1.6430492035729749e-06, 'exerting': 2.4645738053594624e-06, 'relatedness': 1.6430492035729749e-06, 'inextricable': 1.6430492035729749e-06, 'interrelations': 4.107623008932437e-06, 'literalism': 1.6430492035729749e-06, 'vividness': 1.6430492035729749e-06, 'connote': 1.6430492035729749e-06, 'incitement': 3.2860984071459497e-06, 'conventionalized': 1.6430492035729749e-06, 'preconceived': 2.4645738053594624e-06, 'immediacy': 7.393721416078387e-06, 'carven': 1.6430492035729749e-06, 'imitates': 2.4645738053594624e-06, 'clamors': 1.6430492035729749e-06, 'compels': 2.4645738053594624e-06, 'presuppositions': 1.6430492035729749e-06, 'registering': 4.107623008932437e-06, 'tabula': 2.4645738053594624e-06, 'rasa': 2.4645738053594624e-06, 'uninvolved': 1.6430492035729749e-06, 'empiricism': 2.4645738053594624e-06, 'environing': 1.6430492035729749e-06, 'rudimentary': 4.107623008932437e-06, 'presuppose': 1.6430492035729749e-06, 'causally': 1.6430492035729749e-06, 'efficacious': 2.4645738053594624e-06, 'constellations': 4.107623008932437e-06, 'defender': 3.2860984071459497e-06, 'interrelated': 4.929147610718925e-06, 'abstractive': 1.6430492035729749e-06, 'unities': 1.6430492035729749e-06, "Hume's": 2.4645738053594624e-06, 'epistemology': 3.2860984071459497e-06, 'presupposition': 1.6430492035729749e-06, 'Hume': 2.4645738053594624e-06, 'presentational': 1.6430492035729749e-06, 'interconnectedness': 1.6430492035729749e-06, 'scepticism': 4.929147610718925e-06, 'derivation': 4.107623008932437e-06, 'non-interference': 1.6430492035729749e-06, 'melioration': 1.6430492035729749e-06, 'statisticians': 1.6430492035729749e-06, 'Hattiesburg': 1.6430492035729749e-06, 'Booker': 2.4645738053594624e-06, 'infuriating': 2.4645738053594624e-06, 'humanely': 1.6430492035729749e-06, 'counter-attack': 1.6430492035729749e-06, 'socialize': 1.6430492035729749e-06, 'inseparable': 4.107623008932437e-06, 'instancy': 1.6430492035729749e-06, "Thompson's": 4.929147610718925e-06, 'Hound': 3.2860984071459497e-06, "Heaven's": 1.6430492035729749e-06, 'Pursuit': 1.6430492035729749e-06, 'Tacitus': 1.6430492035729749e-06, 'Solitudinem': 1.6430492035729749e-06, 'faciunt': 1.6430492035729749e-06, 'pacem': 1.6430492035729749e-06, 'appellant': 1.6430492035729749e-06, 'irrevocable': 2.4645738053594624e-06, "Taney's": 1.6430492035729749e-06, 'Dred': 1.6430492035729749e-06, '1857': 2.4645738053594624e-06, 'talismanic': 1.6430492035729749e-06, 'Disquisition': 1.6430492035729749e-06, 'unequally': 2.4645738053594624e-06, 'Jeffersonian': 1.6430492035729749e-06, 'merry': 5.750672212505412e-06, 'bell': 1.232286902679731e-05, 'aloofness': 1.6430492035729749e-06, 'THIDIU': 1.6430492035729749e-06, "Doesn't": 3.2860984071459497e-06, 'Affect': 1.6430492035729749e-06, 'Us': 1.6430492035729749e-06, 'insouciance': 1.6430492035729749e-06, "X's": 2.4645738053594624e-06, "Y's": 1.6430492035729749e-06, 'fugitives': 1.6430492035729749e-06, 'enroll': 4.929147610718925e-06, 'prep': 2.4645738053594624e-06, 'tokenish': 1.6430492035729749e-06, 'professes': 1.6430492035729749e-06, 'willy': 1.6430492035729749e-06, 'nilly': 1.6430492035729749e-06, 'segregating': 1.6430492035729749e-06, "Whittier's": 1.6430492035729749e-06, 'loathsome': 4.107623008932437e-06, 'stagger': 2.4645738053594624e-06, 'Notebooks': 1.6430492035729749e-06, 'Complicity': 1.6430492035729749e-06, "Crane's": 1.6430492035729749e-06, 'Dragons': 1.6430492035729749e-06, 'redemption': 4.107623008932437e-06, "bondsman's": 1.6430492035729749e-06, 'unrequited': 1.6430492035729749e-06, 'toil': 1.6430492035729749e-06, 'Englanders': 3.2860984071459497e-06, 'manipulations': 2.4645738053594624e-06, 'purified': 8.215246017864873e-06, 'taint': 1.6430492035729749e-06, 'slave-owners': 1.6430492035729749e-06, 'paternalistic': 1.6430492035729749e-06, 'Platonist': 2.4645738053594624e-06, 'idealist': 3.2860984071459497e-06, 'doctrinaire': 2.4645738053594624e-06, 'Transcendental': 1.6430492035729749e-06, 'amidst': 3.2860984071459497e-06, 'Pay': 3.2860984071459497e-06, 'ransom': 3.2860984071459497e-06, 'brim': 4.107623008932437e-06, 'abstractionism': 1.6430492035729749e-06, 'unrealism': 1.6430492035729749e-06, 'Pilate': 1.6430492035729749e-06, 'mocked': 3.2860984071459497e-06, 'Autobiography': 1.6430492035729749e-06, 'reprobating': 1.6430492035729749e-06, 'enslaving': 1.6430492035729749e-06, 'complaisance': 1.6430492035729749e-06, 'censures': 2.4645738053594624e-06, 'desensitized': 1.6430492035729749e-06, '1889': 1.6430492035729749e-06, 'agitated': 1.6430492035729749e-06, 'isolate': 7.393721416078387e-06, 'schoolmaster': 3.2860984071459497e-06, 'perchance': 1.6430492035729749e-06, 'post-Civil': 1.6430492035729749e-06, 'ironical': 2.4645738053594624e-06, "Williams's": 2.4645738053594624e-06, 'forty-eight': 1.6430492035729749e-06, 'galaxy': 2.4645738053594624e-06, 'adorns': 1.6430492035729749e-06, 'surmises': 2.4645738053594624e-06, 'segregate': 1.6430492035729749e-06, 'Literature': 2.4645738053594624e-06, 'rewarding': 4.107623008932437e-06, 'Verner': 1.6430492035729749e-06, 'Heidenstam': 5.750672212505412e-06, '1916': 4.929147610718925e-06, 'recreates': 1.6430492035729749e-06, 'prosperous': 7.393721416078387e-06, 'Vadstena': 1.6430492035729749e-06, 'Vattern': 1.6430492035729749e-06, 'Deciding': 1.6430492035729749e-06, 'Gerome': 1.6430492035729749e-06, 'scanned': 9.036770619651361e-06, 'swart': 1.6430492035729749e-06, "beggar's": 1.6430492035729749e-06, 'unceasingly': 1.6430492035729749e-06, 'selves': 4.107623008932437e-06, "Heidenstam's": 3.2860984071459497e-06, 'Pilgrimage': 3.2860984071459497e-06, 'Wander-Years': 2.4645738053594624e-06, 'Vallfart': 1.6430492035729749e-06, 'och': 2.4645738053594624e-06, 'Vandringsar': 1.6430492035729749e-06, "Byron's": 4.107623008932437e-06, 'Childe': 1.6430492035729749e-06, 'Fredrik': 1.6430492035729749e-06, 'acclaims': 1.6430492035729749e-06, 'poet-painter': 1.6430492035729749e-06, 'Thousand': 2.4645738053594624e-06, 'bazaars': 1.6430492035729749e-06, 'care-free': 1.6430492035729749e-06, 'indolence': 1.6430492035729749e-06, 'hedonism': 1.6430492035729749e-06, 'Thoughts': 3.2860984071459497e-06, 'Loneliness': 3.2860984071459497e-06, 'sombre': 2.4645738053594624e-06, 'Nameless': 1.6430492035729749e-06, 'Immortal': 1.6430492035729749e-06, 'Paestum': 1.6430492035729749e-06, 'Parthenon': 5.750672212505412e-06, 'Naxos': 1.6430492035729749e-06, 'grouped': 4.929147610718925e-06, 'revelations': 3.2860984071459497e-06, 'dwells': 1.6430492035729749e-06, "daylight's": 1.6430492035729749e-06, 'tortures': 2.4645738053594624e-06, 'men-folk': 1.6430492035729749e-06, 'desultory': 1.6430492035729749e-06, 'individualism': 1.0679819823224336e-05, 'commemorate': 2.4645738053594624e-06, 'Alienus': 1.6430492035729749e-06, 'storied': 1.6430492035729749e-06, 'Faustus': 2.4645738053594624e-06, 'Sardanapalus': 1.6430492035729749e-06, 'Tiveden': 1.6430492035729749e-06, 're-assumed': 1.6430492035729749e-06, 'acquiescence': 4.929147610718925e-06, 'Strindberg': 1.6430492035729749e-06, 'mediocrity': 1.6430492035729749e-06, 'provincialism': 3.2860984071459497e-06, "Strindberg's": 1.6430492035729749e-06, 'Karolinerna': 1.6430492035729749e-06, '1897-8': 1.6430492035729749e-06, "Tolstoy's": 1.6430492035729749e-06, 'concise': 1.6430492035729749e-06, 'Poltava': 2.4645738053594624e-06, 'twined': 4.107623008932437e-06, 'Somewhat': 4.107623008932437e-06, 'idyllic': 4.107623008932437e-06, 'idolized': 1.6430492035729749e-06, 'exalted': 6.5721968142918994e-06, 'fervor': 4.107623008932437e-06, 'authors': 1.97165904428757e-05, 'Macedon': 1.6430492035729749e-06, "Napoleon's": 2.4645738053594624e-06, 'aspired': 1.6430492035729749e-06, 'catastrophically': 2.4645738053594624e-06, 'glorified': 4.107623008932437e-06, '1709': 1.6430492035729749e-06, 'coherent': 4.929147610718925e-06, 'degenerated': 1.6430492035729749e-06, 'pitiable': 3.2860984071459497e-06, 'losers': 1.6430492035729749e-06, 'Swedes': 2.4645738053594624e-06, 'adversity': 2.4645738053594624e-06, 'fortitude': 3.2860984071459497e-06, 'cheerfulness': 1.6430492035729749e-06, 'rallying': 2.4645738053594624e-06, 'Ride': 4.107623008932437e-06, 'petulance': 1.6430492035729749e-06, 'inertia': 2.4645738053594624e-06, 'regains': 1.6430492035729749e-06, 'Fredrikshall': 1.6430492035729749e-06, 'thirty-six': 3.2860984071459497e-06, 'madman': 2.4645738053594624e-06, "Hero's": 1.6430492035729749e-06, 'Slowly': 6.5721968142918994e-06, 'procession': 4.929147610718925e-06, 'warriors': 6.5721968142918994e-06, 'vault': 2.4645738053594624e-06, 'tombs': 2.4645738053594624e-06, 'longed': 6.5721968142918994e-06, 'Excellent': 1.6430492035729749e-06, 'detain': 1.6430492035729749e-06, 'Chieftains': 1.6430492035729749e-06, 'Svenskarna': 1.6430492035729749e-06, 'deras': 1.6430492035729749e-06, 'Hovdingar': 1.6430492035729749e-06, 'Admirably': 1.6430492035729749e-06, 'Selma': 2.4645738053594624e-06, 'Lagerlof': 1.6430492035729749e-06, "king's": 4.107623008932437e-06, 'convent': 4.107623008932437e-06, 'Birgitta': 1.6430492035729749e-06, 'teems': 1.6430492035729749e-06, 'Gustaf': 1.6430492035729749e-06, 'Vasa': 1.6430492035729749e-06, 'conqueror': 1.6430492035729749e-06, 'Gustavus': 1.6430492035729749e-06, 'Adolphus': 1.6430492035729749e-06, 'unpromising': 1.6430492035729749e-06, 'self-employed': 2.4645738053594624e-06, 'free-lance': 2.4645738053594624e-06, 'punished': 6.5721968142918994e-06, 'self-reliance': 1.6430492035729749e-06, 'hindmost': 1.6430492035729749e-06, 'individualist': 3.2860984071459497e-06, 'anarchist': 1.6430492035729749e-06, 'entrepreneur': 5.750672212505412e-06, '1880-1900': 1.6430492035729749e-06, 'Balzac': 2.4645738053594624e-06, 'Poe': 4.107623008932437e-06, 'Sherlock': 5.750672212505412e-06, '1890s': 1.6430492035729749e-06, 'Driven': 1.6430492035729749e-06, 'disguises': 1.6430492035729749e-06, 'compensates': 1.6430492035729749e-06, 'enforces': 1.6430492035729749e-06, 'deepening': 1.6430492035729749e-06, 'advent': 4.929147610718925e-06, "Doyle's": 2.4645738053594624e-06, "detective's": 3.2860984071459497e-06, 'cocaine': 1.6430492035729749e-06, 'stimulants': 1.6430492035729749e-06, 'semi-catatonic': 1.6430492035729749e-06, 'trances': 2.4645738053594624e-06, 'vioiln': 1.6430492035729749e-06, 'egotist': 2.4645738053594624e-06, 'misogynist': 1.6430492035729749e-06, 'stuffy': 2.4645738053594624e-06, 'informs': 5.750672212505412e-06, 'Yard': 2.4645738053594624e-06, 'deductive': 3.2860984071459497e-06, "Watson's": 4.929147610718925e-06, 'verified': 5.750672212505412e-06, 'arch-opponent': 1.6430492035729749e-06, 'Moriarty': 4.929147610718925e-06, 'egotism': 3.2860984071459497e-06, 'relentlessness': 2.4645738053594624e-06, 'grappling': 4.107623008932437e-06, 'Linked': 1.6430492035729749e-06, 'alter-ego': 1.6430492035729749e-06, 'lurks': 1.6430492035729749e-06, 'whodunnit': 1.6430492035729749e-06, 'insinuation': 2.4645738053594624e-06, 'Hercule': 1.6430492035729749e-06, 'Poirot': 2.4645738053594624e-06, 'Whimsey': 1.6430492035729749e-06, 'Agatha': 2.4645738053594624e-06, 'Christie': 2.4645738053594624e-06, 'Sayers': 1.6430492035729749e-06, "Holmes'": 2.4645738053594624e-06, 'descendents': 1.6430492035729749e-06, 'stormy': 4.107623008932437e-06, 'hardboiled': 2.4645738053594624e-06, "'20s": 1.6430492035729749e-06, "'30s": 2.4645738053594624e-06, 'self-imposed': 4.107623008932437e-06, 'outcast': 1.6430492035729749e-06, "Stout's": 1.6430492035729749e-06, 'condemns': 3.2860984071459497e-06, 'Beaten': 2.4645738053594624e-06, 'elusive': 2.4645738053594624e-06, 'demi-monde': 1.6430492035729749e-06, 'despised': 3.2860984071459497e-06, 'thrillers': 1.6430492035729749e-06, 'Ambler': 1.6430492035729749e-06, 'Dashiell': 3.2860984071459497e-06, "Hammett's": 2.4645738053594624e-06, 'Falcon': 2.4645738053594624e-06, 'Spade': 5.750672212505412e-06, 'joins': 2.4645738053594624e-06, 'adventurers': 1.6430492035729749e-06, 'jeweled': 2.4645738053594624e-06, 'falcon': 2.4645738053594624e-06, 'Burger': 1.6430492035729749e-06, 'Cramer': 1.6430492035729749e-06, 'Phillip': 2.4645738053594624e-06, 'exonerate': 2.4645738053594624e-06, 'accusation': 3.2860984071459497e-06, 'defiance': 6.5721968142918994e-06, "Spillane's": 1.6430492035729749e-06, 'Hammer': 2.4645738053594624e-06, 'pleases': 2.4645738053594624e-06, 'executioner': 2.4645738053594624e-06, 'enumerated': 2.4645738053594624e-06, 'monitoring': 1.1501344425010824e-05, 'exclamation': 5.750672212505412e-06, 'Rolls': 1.6430492035729749e-06, 'timepiece': 1.6430492035729749e-06, 'measurable': 4.929147610718925e-06, 'Networks': 1.6430492035729749e-06, 'inadequately': 2.4645738053594624e-06, 'endeavors': 4.929147610718925e-06, 'exclamations': 2.4645738053594624e-06, 'complimentary': 2.4645738053594624e-06, 'intonations': 1.6430492035729749e-06, 'customarily': 4.107623008932437e-06, 'completeness': 4.107623008932437e-06, 'N': 2.6288787257167598e-05, '1,225': 1.6430492035729749e-06, 'oneness': 2.4645738053594624e-06, 'overload': 3.2860984071459497e-06, 'half-life': 1.6430492035729749e-06, 'connective': 3.2860984071459497e-06, 'configuration': 6.5721968142918994e-06, 'third-': 1.6430492035729749e-06, 'fourth-hand': 1.6430492035729749e-06, 'distortable': 1.6430492035729749e-06, 'f': 4.107623008932437e-06, 'h': 2.4645738053594624e-06, 'e': 3.2860984071459497e-06, 'n': 6.5721968142918994e-06, 'relayed': 2.4645738053594624e-06, 'dweller': 2.4645738053594624e-06, 'distresses': 1.6430492035729749e-06, 'waterfall': 2.4645738053594624e-06, 'theorists': 2.4645738053594624e-06, 'monitored': 1.6430492035729749e-06, 'noisy': 5.750672212505412e-06, 'target-hunting': 1.6430492035729749e-06, 'projectiles': 1.6430492035729749e-06, 'Commands': 1.6430492035729749e-06, 'combinable': 1.6430492035729749e-06, 'dispersed': 6.5721968142918994e-06, 'indoctrinating': 1.6430492035729749e-06, '55,987': 1.6430492035729749e-06, 'channeled': 3.2860984071459497e-06, 'interlaced': 4.107623008932437e-06, 'bottlenecks': 1.6430492035729749e-06, 're-examine': 4.107623008932437e-06, 'Finns': 1.6430492035729749e-06, 'geochemistry': 2.4645738053594624e-06, 'fervent': 4.929147610718925e-06, 'generalists': 2.4645738053594624e-06, 'optimum': 1.3965918230370285e-05, 'mineralogy': 1.6430492035729749e-06, 'crystallography': 1.6430492035729749e-06, 'X-ray': 7.393721416078387e-06, 'diffraction': 6.5721968142918994e-06, 'montmorillonites': 1.6430492035729749e-06, 'Andean': 2.4645738053594624e-06, 'contrasted': 4.107623008932437e-06, 'generalist': 1.6430492035729749e-06, 'incipience': 1.6430492035729749e-06, "Gabriel's": 4.929147610718925e-06, 'evangelical': 4.107623008932437e-06, 'millenarianism': 1.6430492035729749e-06, 'specifies': 4.107623008932437e-06, 'naturalism': 1.6430492035729749e-06, 'utopianism': 1.6430492035729749e-06, 'Follows': 1.6430492035729749e-06, 'Progressivism': 2.4645738053594624e-06, 'scrapped': 1.6430492035729749e-06, 'reposed': 1.6430492035729749e-06, 'Humanity': 2.4645738053594624e-06, 'Gabriel': 1.0679819823224336e-05, 'mythic': 2.4645738053594624e-06, 'charisma': 1.6430492035729749e-06, 'Saint': 5.750672212505412e-06, 'Amendment': 5.750672212505412e-06, 'Egalitarianism': 1.6430492035729749e-06, 'Popularism': 1.6430492035729749e-06, 'industrialism': 1.6430492035729749e-06, "Revolution's": 1.6430492035729749e-06, 'dislocations': 2.4645738053594624e-06, 'Depression': 1.6430492035729749e-06, 'Materialism': 1.6430492035729749e-06, 'face-lifting': 1.6430492035729749e-06, 'Fink': 4.107623008932437e-06, 'Gatsby': 1.6430492035729749e-06, "Locke's": 1.6430492035729749e-06, 'fathered': 2.4645738053594624e-06, 'Rousseau': 1.6430492035729746e-05, "Rousseau's": 3.2860984071459497e-06, 'Commune': 1.6430492035729749e-06, 'Newcastle': 1.6430492035729749e-06, 'Heresy': 1.6430492035729749e-06, 'Democracy': 2.4645738053594624e-06, 'Voegelin': 2.4645738053594624e-06, 'Rousseauan': 1.6430492035729749e-06, 'classless': 1.6430492035729749e-06, 'ussr': 1.6430492035729749e-06, 'exemplar': 2.4645738053594624e-06, 'utopians': 2.4645738053594624e-06, 'liberal-led': 1.6430492035729749e-06, 'indecent': 5.750672212505412e-06, 'undeclared': 1.6430492035729749e-06, 'Containment': 1.6430492035729749e-06, 'enforceable': 2.4645738053594624e-06, 'G.O.P.': 1.6430492035729749e-06, 'Lubell': 2.4645738053594624e-06, 'assiduity': 1.6430492035729749e-06, 'rendezvous': 6.5721968142918994e-06, 'clamorous': 1.6430492035729749e-06, 'nascent': 1.6430492035729749e-06, 'assailing': 1.6430492035729749e-06, 'gyrations': 1.6430492035729749e-06, 'self-redefinition': 1.6430492035729749e-06, 'preferment': 1.6430492035729749e-06, 'Purpose': 4.107623008932437e-06, "magazine's": 1.6430492035729749e-06, 'columnists': 2.4645738053594624e-06, 'evangelist': 1.6430492035729749e-06, 'ex-liberals': 2.4645738053594624e-06, 'forefathers': 1.6430492035729749e-06, 'Lippman': 2.4645738053594624e-06, 'incantation': 2.4645738053594624e-06, 'shibboleth': 2.4645738053594624e-06, 'Goals': 2.4645738053594624e-06, 'preface': 2.4645738053594624e-06, 'invoke': 4.107623008932437e-06, 'secularist': 1.6430492035729749e-06, 'testaments': 1.6430492035729749e-06, "Murray's": 1.6430492035729749e-06, 'panoramic': 1.6430492035729749e-06, 'utopian': 7.393721416078387e-06, 'uncontrollable': 2.4645738053594624e-06, 'cancers': 1.6430492035729749e-06, 'determinable': 1.6430492035729749e-06, 'sedentary': 1.6430492035729749e-06, 'social-political-economical': 1.6430492035729749e-06, 'amplify': 1.6430492035729749e-06, 'Properly': 2.4645738053594624e-06, 'correction': 3.2860984071459497e-06, 'Offensive': 1.6430492035729749e-06, 'Contacts': 1.6430492035729749e-06, 'counter-offensive': 1.6430492035729749e-06, 'cutting-edge': 1.6430492035729749e-06, 'steppes': 2.4645738053594624e-06, 'Porgy': 1.6430492035729749e-06, 'overrode': 1.6430492035729749e-06, 'reading-rooms': 1.6430492035729749e-06, 'photo-montage': 1.6430492035729749e-06, 'entrepreneurs': 1.6430492035729749e-06, 'treasury': 2.4645738053594624e-06, 'contrive': 1.6430492035729749e-06, 'directives': 4.107623008932437e-06, 'anti-American': 2.4645738053594624e-06, 'milquetoast': 1.6430492035729749e-06, 'ballyhoo': 1.6430492035729749e-06, 'set-up': 3.2860984071459497e-06, 'Businesses': 1.6430492035729749e-06, 'pseudo-capitalism': 2.4645738053594624e-06, 'capitalistic': 2.4645738053594624e-06, 'pretense': 5.750672212505412e-06, 'sham': 1.6430492035729749e-06, 'swallowing': 3.2860984071459497e-06, 'cumbersome': 3.2860984071459497e-06, 'unluckily': 1.6430492035729749e-06, "corporation's": 4.929147610718925e-06, 'Examples': 5.750672212505412e-06, 'proprietorship': 7.393721416078387e-06, 'quasi-governmental': 1.6430492035729749e-06, 'Proprietorship': 1.6430492035729749e-06, 'Avoiding': 1.6430492035729749e-06, 'short-range': 1.6430492035729749e-06, 'stimuli': 4.929147610718925e-06, 'Proprietorships': 3.2860984071459497e-06, 'profit-motivated': 1.6430492035729749e-06, 'accruing': 6.5721968142918994e-06, 'accumulate': 3.2860984071459497e-06, 'legacies': 1.6430492035729749e-06, 'anti-democratic': 1.6430492035729749e-06, 'Strikes': 2.4645738053594624e-06, 'disagreements': 2.4645738053594624e-06, 'internationally': 4.107623008932437e-06, 'abler': 2.4645738053594624e-06, 'fellow-employees': 1.6430492035729749e-06, '$10,000,000': 1.6430492035729749e-06, 'pin-curl': 1.6430492035729749e-06, 'clips': 2.4645738053594624e-06, 'self-locking': 1.6430492035729749e-06, "Wilson's": 3.2860984071459497e-06, 'scare': 3.2860984071459497e-06, 'irrationally': 1.6430492035729749e-06, 'Burleson': 1.6430492035729749e-06, 'radicals': 4.107623008932437e-06, 'Un-American': 2.4645738053594624e-06, 'Activities': 4.929147610718925e-06, 'Dies': 1.6430492035729749e-06, 'traitorous': 1.6430492035729749e-06, 'Demagogues': 1.6430492035729749e-06, "James'": 1.6430492035729749e-06, 'repress': 1.6430492035729749e-06, 'salable': 1.6430492035729749e-06, 'Seemingly': 2.4645738053594624e-06, 'Criminals': 1.6430492035729749e-06, 'Merely': 2.4645738053594624e-06, 'inmate': 1.6430492035729749e-06, 'pilfering': 1.6430492035729749e-06, 'Einsteinian': 1.6430492035729749e-06, 'scour': 1.6430492035729749e-06, 'Shylock': 6.5721968142918994e-06, '1290': 1.6430492035729749e-06, '1655': 1.6430492035729749e-06, 'hiding': 1.3965918230370285e-05, 'market-place': 1.6430492035729749e-06, 'Il': 3.2860984071459497e-06, 'Pecorone': 1.6430492035729749e-06, '1558': 1.6430492035729749e-06, 'Griston': 1.6430492035729749e-06, 'Shaking': 1.6430492035729749e-06, '216': 1.6430492035729749e-06, 'unwise': 3.2860984071459497e-06, 'pound-of-flesh': 1.6430492035729749e-06, 'Scotchman': 1.6430492035729749e-06, 'hurl': 3.2860984071459497e-06, 'Tikopia': 1.6430492035729749e-06, 'aberrant': 4.929147610718925e-06, 'Shylockian': 1.6430492035729749e-06, 'crafty': 1.6430492035729749e-06, 'fiendish': 1.6430492035729749e-06, 'abhorrent': 1.6430492035729749e-06, 'Studying': 2.4645738053594624e-06, 'non-Jew': 2.4645738053594624e-06, 'Torquemada': 1.6430492035729749e-06, 'Inquisitor-General': 1.6430492035729749e-06, 'cold-blooded': 1.6430492035729749e-06, 'besmirching': 1.6430492035729749e-06, 'prefaced': 2.4645738053594624e-06, 'deranged': 2.4645738053594624e-06, 'treasured': 2.4645738053594624e-06, 'resifted': 1.6430492035729749e-06, 'powders': 4.929147610718925e-06, 'Kyne': 2.4645738053594624e-06, 'Palomar': 1.6430492035729749e-06, 'Californians': 1.6430492035729749e-06, 'falsity': 3.2860984071459497e-06, "Leopard's": 1.6430492035729749e-06, 'Spots': 1.6430492035729749e-06, 'unchangeable': 1.6430492035729749e-06, 'short-story': 1.6430492035729749e-06, 'overworked': 1.6430492035729749e-06, 'tell-tale': 3.2860984071459497e-06, 'half-moons': 1.6430492035729749e-06, 'coal-black': 2.4645738053594624e-06, 'anthropologists': 1.6430492035729749e-06, 'biologists': 2.4645738053594624e-06, 'sociologists': 1.6430492035729749e-06, 'consigned': 1.6430492035729749e-06, 'False': 1.6430492035729749e-06, 'surfeit': 1.6430492035729749e-06, 'steprelationship': 1.6430492035729749e-06, 'ogress': 1.6430492035729749e-06, 'stepmothers': 2.4645738053594624e-06, 'stepchild': 1.6430492035729749e-06, 'Deutsch': 1.6430492035729749e-06, 'Psychology': 1.6430492035729749e-06, 'Vol.': 2.4645738053594624e-06, '434': 1.6430492035729749e-06, 'deprecatory': 1.6430492035729749e-06, 'worthless': 3.2860984071459497e-06, 'scientifically-trained': 1.6430492035729749e-06, 'Salk': 1.6430492035729749e-06, 'anti-polio': 1.6430492035729749e-06, 'vaccine': 1.6430492035729749e-06, 'forensic': 1.6430492035729749e-06, 'barnsful': 1.6430492035729749e-06, 'super-Herculean': 1.6430492035729749e-06, 'winnow': 1.6430492035729749e-06, 'mud-beplastered': 1.6430492035729749e-06, 'stereotypes': 2.4645738053594624e-06, 'declarations': 2.4645738053594624e-06, 'Assuredly': 1.6430492035729749e-06, 'martyr': 7.393721416078387e-06, "architect's": 2.4645738053594624e-06, 'stimulations': 1.6430492035729749e-06, 'successorship': 1.6430492035729749e-06, 'inheritance': 4.929147610718925e-06, 'Rutstein': 1.6430492035729749e-06, 'resolving': 2.4645738053594624e-06, 'humbly': 4.107623008932437e-06, 'competently': 4.929147610718925e-06, 'simile': 1.6430492035729749e-06, 'Bulge': 1.6430492035729749e-06, 'cleavage': 2.4645738053594624e-06, 'disquieting': 1.6430492035729749e-06, 'bespeaks': 1.6430492035729749e-06, 'climactic': 4.107623008932437e-06, 'argumentation': 1.6430492035729749e-06, 'betraying': 1.6430492035729749e-06, 'transpired': 3.2860984071459497e-06, 'testifies': 3.2860984071459497e-06, 'Aspects': 1.6430492035729749e-06, 'gambles': 1.6430492035729749e-06, 'Risk': 1.6430492035729749e-06, 'bout': 4.929147610718925e-06, 'influenza': 2.4645738053594624e-06, 'infrequently': 1.6430492035729749e-06, 'fortune-happy': 1.6430492035729749e-06, 'syndicates': 1.6430492035729749e-06, 'ascribes': 1.6430492035729749e-06, 'silencing': 1.6430492035729749e-06, 'electorate': 1.6430492035729749e-06, 'evades': 1.6430492035729749e-06, 'utterances': 1.6430492035729749e-06, 'evasions': 1.6430492035729749e-06, 'disconcert': 1.6430492035729749e-06, 'questioners': 1.6430492035729749e-06, 'Thinking': 4.929147610718925e-06, 'fragmentarily': 1.6430492035729749e-06, 'inhibits': 2.4645738053594624e-06, 'revoked': 1.6430492035729749e-06, 'Drifting': 2.4645738053594624e-06, 'singularly': 1.6430492035729749e-06, 'recalcitrant': 2.4645738053594624e-06, 'exacts': 2.4645738053594624e-06, 'immoralities': 1.6430492035729749e-06, 'transforming': 2.4645738053594624e-06, 'inordinately': 2.4645738053594624e-06, 'unrecognizable': 2.4645738053594624e-06, 'inconsistency': 1.6430492035729749e-06, 'capacities': 4.929147610718925e-06, 'endow': 2.4645738053594624e-06, 'unwisely': 2.4645738053594624e-06, 'interacts': 1.6430492035729749e-06, 'recipes': 1.6430492035729749e-06, 'disrupting': 2.4645738053594624e-06, 'elaborated': 3.2860984071459497e-06, 'theoriticians': 1.6430492035729749e-06, 'ontological': 7.393721416078387e-06, 'ensues': 2.4645738053594624e-06, 'focuses': 2.4645738053594624e-06, 'phenomenological': 1.6430492035729749e-06, 'wrenches': 2.4645738053594624e-06, 'floats': 1.6430492035729749e-06, 'Relativism': 1.6430492035729749e-06, 'paradigmatic': 1.6430492035729749e-06, 'disruptive': 4.107623008932437e-06, 'disruption': 3.2860984071459497e-06, 'helplessly': 3.2860984071459497e-06, 'determinability': 1.6430492035729749e-06, 'tenuous': 5.750672212505412e-06, 'Civilization': 4.929147610718925e-06, 'esse': 2.4645738053594624e-06, 'self-perceived': 1.6430492035729749e-06, 'substantive': 2.4645738053594624e-06, 'analyzable': 1.6430492035729749e-06, "Maritain's": 1.6430492035729749e-06, 'locus': 2.4645738053594624e-06, 'existentialist': 2.4645738053594624e-06, 'volition': 2.4645738053594624e-06, 'terminus': 2.4645738053594624e-06, 'conducive': 2.4645738053594624e-06, 'anchoring': 1.6430492035729749e-06, 'prima-facie': 2.4645738053594624e-06, 'necessitates': 3.2860984071459497e-06, 'emergence': 3.2860984071459497e-06, 'warranty': 1.6430492035729749e-06, 'inevitabilities': 1.6430492035729749e-06, 'Unanalyzed': 1.6430492035729749e-06, 'Weil': 1.6430492035729749e-06, 'Guardini': 1.6430492035729749e-06, 'placeless': 1.6430492035729749e-06, 'Riesman': 1.6430492035729749e-06, 'dislocation': 1.6430492035729749e-06, 'force-fear': 1.6430492035729749e-06, 'unanalyzed': 2.4645738053594624e-06, 'progressivism': 1.6430492035729749e-06, 'explicable': 4.107623008932437e-06, 'coercive': 2.4645738053594624e-06, 'reversible': 5.750672212505412e-06, 'subsistent': 1.6430492035729749e-06, 'adventitious': 1.6430492035729749e-06, 'accretions': 2.4645738053594624e-06, 'activation': 6.5721968142918994e-06, 'exhausts': 1.6430492035729749e-06, 'hopelessness': 3.2860984071459497e-06, 'misinterpreted': 2.4645738053594624e-06, 'ideational': 1.6430492035729749e-06, 'ontologically': 1.6430492035729749e-06, 'psychological-intellectual': 1.6430492035729749e-06, 'Reactionary': 4.929147610718925e-06, 'organismic': 1.6430492035729749e-06, 'visualizes': 1.6430492035729749e-06, 'bolstered': 1.6430492035729749e-06, 'selectivity': 1.6430492035729749e-06, 'psychoanalytic': 5.750672212505412e-06, 'Oedipus': 1.7252016637516235e-05, 'syndrome': 2.4645738053594624e-06, 'neurosis': 5.750672212505412e-06, 'tiredly': 2.4645738053594624e-06, 'externalization': 1.6430492035729749e-06, 'Smerdyakov': 1.6430492035729749e-06, 'Dostoevsky': 2.4645738053594624e-06, 'father-murder': 1.6430492035729749e-06, 'Psychoanalytic': 1.6430492035729749e-06, 'Quarterly': 2.4645738053594624e-06, 'Complex': 1.6430492035729749e-06, 'descendant': 2.4645738053594624e-06, 'incest': 1.0679819823224336e-05, 'unknowing': 1.6430492035729749e-06, 'renews': 1.6430492035729749e-06, 'absorbs': 1.6430492035729749e-06, 'renouncing': 1.6430492035729749e-06, 'case-history': 2.4645738053594624e-06, 'storyteller': 4.107623008932437e-06, 'Incest': 1.6430492035729749e-06, 'comparisons': 5.750672212505412e-06, 'Oedipal': 1.6430492035729749e-06, 'Rocking': 2.4645738053594624e-06, 'Winner': 2.4645738053594624e-06, 'Lovers': 2.4645738053594624e-06, 'singling': 1.6430492035729749e-06, 'madly': 4.107623008932437e-06, 'conspires': 1.6430492035729749e-06, 'delirium': 3.2860984071459497e-06, 'uncanny': 4.929147610718925e-06, 'oedipal': 3.2860984071459497e-06, 'prophesies': 1.6430492035729749e-06, 'undercurrent': 3.2860984071459497e-06, 'incestuous': 3.2860984071459497e-06, 'Morel': 1.6430492035729749e-06, 'repels': 1.6430492035729749e-06, "Lawrence's": 2.4645738053594624e-06, 'plausible': 4.107623008932437e-06, "novelist's": 3.2860984071459497e-06, "Ortega's": 1.6430492035729749e-06, 'borrows': 1.6430492035729749e-06, 'seduced': 1.6430492035729749e-06, 'marvels': 1.6430492035729749e-06, 'bloodless': 3.2860984071459497e-06, 'forgetful': 2.4645738053594624e-06, 'discerned': 2.4645738053594624e-06, 'burlesques': 1.6430492035729749e-06, 'reassembled': 1.6430492035729749e-06, 'irresistibly': 1.6430492035729749e-06, 'oracle': 2.4645738053594624e-06, "Ellison's": 1.6430492035729749e-06, 'Invisible': 1.6430492035729749e-06, 'Sinner': 3.2860984071459497e-06, 'Mann': 2.4645738053594624e-06, 'leave-taking': 2.4645738053594624e-06, 'gathering-in': 1.6430492035729749e-06, 'bevor': 1.6430492035729749e-06, 'Nacht': 2.4645738053594624e-06, 'sinkt': 1.6430492035729749e-06, 'eine': 1.6430492035729749e-06, 'lange': 1.6430492035729749e-06, 'vielleicht': 1.6430492035729749e-06, 'tiefes': 1.6430492035729749e-06, 'Vergessen': 1.6430492035729749e-06, 'Gregorius': 2.4645738053594624e-06, 'Vom': 1.6430492035729749e-06, 'retold': 1.6430492035729749e-06, 'interpolated': 1.6430492035729749e-06, 'pageantry': 1.6430492035729749e-06, 'not-knowing': 1.6430492035729749e-06, 'Grigorss': 4.929147610718925e-06, 'Sibylla': 4.107623008932437e-06, 'Wiligis': 1.6430492035729749e-06, 'adrift': 1.6430492035729749e-06, 'fisherman': 4.929147610718925e-06, 'tablet': 3.2860984071459497e-06, "infant's": 1.6430492035729749e-06, 'cask': 1.6430492035729749e-06, 'monastery': 2.4645738053594624e-06, 'knight': 6.5721968142918994e-06, "Sibylla's": 1.6430492035729749e-06, 'overrun': 4.929147610718925e-06, 'suitors': 3.2860984071459497e-06, 'suitor': 1.6430492035729749e-06, 'sternly': 3.2860984071459497e-06, 'rigorously': 4.107623008932437e-06, 'equilibriums': 1.6430492035729749e-06, 'gradations': 2.4645738053594624e-06, 'Mondrian': 3.2860984071459497e-06, 'reproof': 1.6430492035729749e-06, 'Helion': 1.5608967433943262e-05, 'non-objects': 1.6430492035729749e-06, "'thirties": 1.6430492035729749e-06, "Helion's": 2.4645738053594624e-06, 'abstractionists': 2.4645738053594624e-06, 'Leger': 2.4645738053594624e-06, 'Arp': 5.750672212505412e-06, 'Calder': 2.4645738053594624e-06, 'Figures': 1.1501344425010824e-05, 'Pink': 2.4645738053594624e-06, 'Exhibited': 1.6430492035729749e-06, 'abstracts': 3.2860984071459497e-06, 'three-dimentional': 1.6430492035729749e-06, 'coherence': 1.6430492035729749e-06, 'thirty-year': 1.6430492035729749e-06, 'Seurat': 1.6430492035729749e-06, 'Gris': 1.6430492035729749e-06, 'Schapiro': 1.6430492035729749e-06, "Cimabue's": 1.6430492035729749e-06, "Poussin's": 1.6430492035729749e-06, 'Abstract': 4.107623008932437e-06, 'Raphaels': 1.6430492035729749e-06, 'Poussins': 1.6430492035729749e-06, 'cubists': 1.6430492035729749e-06, 'evolving': 2.4645738053594624e-06, 'sensed': 1.4787442832156774e-05, 'arid': 2.4645738053594624e-06, 'Abstractionists': 1.6430492035729749e-06, 'Bauhaus': 1.6430492035729749e-06, 'utopia': 3.2860984071459497e-06, 'constructions': 4.107623008932437e-06, '1914-1918': 1.6430492035729749e-06, 'wasting': 4.929147610718925e-06, 'migrate': 1.6430492035729749e-06, 'Rooseveltian': 1.6430492035729749e-06, 'non-figurative': 1.6430492035729749e-06, 'Kooning': 2.4645738053594624e-06, 'Holty': 1.6430492035729749e-06, 'Sheridan': 2.4645738053594624e-06, 'darkening': 4.107623008932437e-06, 'smelled': 1.6430492035729746e-05, 'heaps': 1.6430492035729749e-06, 'three-panel': 1.6430492035729749e-06, 'frieze': 1.1501344425010824e-05, 'Double-Figure': 1.6430492035729749e-06, '1939': 5.750672212505412e-06, 'Fallen': 1.6430492035729749e-06, 'non-objective': 1.6430492035729749e-06, 'sketching': 4.107623008932437e-06, 'Loire': 1.6430492035729749e-06, 'apparition': 3.2860984071459497e-06, 'gloomy': 2.4645738053594624e-06, 'prams': 1.6430492035729749e-06, 'cattle-car': 1.6430492035729749e-06, 'Stalag': 4.107623008932437e-06, 'Stettin': 4.107623008932437e-06, 'sketchbook': 2.4645738053594624e-06, "Woolworth's": 1.6430492035729749e-06, 'deloused': 1.6430492035729749e-06, 'much-thumbed': 1.6430492035729749e-06, 'confiscated': 2.4645738053594624e-06, 'university-educated': 1.6430492035729749e-06, 'plotted': 9.036770619651361e-06, 'sabotage': 3.2860984071459497e-06, 'slave-laborers': 1.6430492035729749e-06, "camp's": 1.6430492035729749e-06, 'contingents': 1.6430492035729749e-06, 'volley-ball': 2.4645738053594624e-06, 'simulated': 6.5721968142918994e-06, 'sentry': 4.929147610718925e-06, 'Marquet': 1.6430492035729749e-06, 'briefcase': 1.6430492035729749e-06, 'Finot': 1.6430492035729749e-06, 'Moineau': 1.6430492035729749e-06, 'Duclos': 6.5721968142918994e-06, 'Desprez': 1.6430492035729749e-06, 'Shedding': 1.6430492035729749e-06, 'cloak': 3.2860984071459497e-06, 'Flemish': 4.929147610718925e-06, 'Riding': 2.4645738053594624e-06, 'Vichy': 1.6430492035729749e-06, 'loathing': 2.4645738053594624e-06, 'fellow-men': 1.6430492035729749e-06, 'Arbeitskommando': 1.6430492035729749e-06, 'adore': 2.4645738053594624e-06, 'rediscovering': 1.6430492035729749e-06, 'Abstraction': 3.2860984071459497e-06, 'convalescing': 1.6430492035729749e-06, 'Rosenberg': 4.107623008932437e-06, 'reincarnated': 1.6430492035729749e-06, 'kiosk': 1.6430492035729749e-06, 'doorways': 3.2860984071459497e-06, 'golden-crusted': 1.6430492035729749e-06, 'cigarettes': 1.0679819823224336e-05, 'ceremoniously': 1.6430492035729749e-06, 'doffing': 1.6430492035729749e-06, 'pomp': 1.6430492035729749e-06, "O'Donnell's": 1.6430492035729749e-06, 'Cowley': 2.4645738053594624e-06, 'besets': 1.6430492035729749e-06, 'Nathaniel': 2.4645738053594624e-06, "Faulkner's": 8.215246017864873e-06, "O'Donnell": 2.4645738053594624e-06, 'traditionalist': 3.2860984071459497e-06, 'Sutpen': 1.6430492035729749e-06, 'Compson': 4.107623008932437e-06, 'disintegrating': 1.6430492035729749e-06, "barn-burner's": 1.6430492035729749e-06, 'Flem': 2.4645738053594624e-06, 'commercialism': 1.6430492035729749e-06, 'hyperbolic': 2.4645738053594624e-06, 'crassness': 1.6430492035729749e-06, 'Jason': 4.929147610718925e-06, 'untraditional': 1.6430492035729749e-06, 'moralist': 2.4645738053594624e-06, 'Hoffman': 2.4645738053594624e-06, 'apologist': 1.6430492035729749e-06, 'unquestioningly': 1.6430492035729749e-06, 'intolerance': 2.4645738053594624e-06, 'regimentation': 1.6430492035729749e-06, 'pedigree': 3.2860984071459497e-06, 'Basso': 1.6430492035729749e-06, 'unassisted': 2.4645738053594624e-06, 'notwithstanding': 3.2860984071459497e-06, 'Gothic': 3.2860984071459497e-06, 'romancers': 1.6430492035729749e-06, 'symbolists': 1.6430492035729749e-06, 'stream-of-consciousness': 1.6430492035729749e-06, 'novelists': 4.107623008932437e-06, 'originality': 5.750672212505412e-06, 'deviated': 1.6430492035729749e-06, 'Pendleton': 4.929147610718925e-06, 'Swallow-Barn': 1.6430492035729749e-06, 'Meriwether': 1.6430492035729749e-06, 'idealization': 2.4645738053594624e-06, 'half-conscious': 2.4645738053594624e-06, 'apex': 4.107623008932437e-06, 'undiminished': 3.2860984071459497e-06, 'best-selling': 1.6430492035729749e-06, 'sentimentalize': 1.6430492035729749e-06, 'tangential': 1.6430492035729749e-06, 'habitual': 4.929147610718925e-06, 'portraying': 2.4645738053594624e-06, 'dynasties': 1.6430492035729749e-06, 'Glasgow': 2.4645738053594624e-06, 'low-class': 2.4645738053594624e-06, '1728': 1.6430492035729749e-06, 'Lubberlanders': 1.6430492035729749e-06, 'antecedents': 2.4645738053594624e-06, 'narratives': 3.2860984071459497e-06, 'morocco-bound': 1.6430492035729749e-06, 'Addison': 1.6430492035729749e-06, 'indelicate': 1.6430492035729749e-06, 'Gilmore': 1.6430492035729749e-06, 'realist': 2.4645738053594624e-06, 'robustness': 1.6430492035729749e-06, 'Elizabethans': 2.4645738053594624e-06, 'vivify': 1.6430492035729749e-06, 'Baldwin': 2.4645738053594624e-06, 'Longstreet': 2.4645738053594624e-06, 'Ransy': 1.6430492035729749e-06, 'Sniffle': 1.6430492035729749e-06, 'horse-trading': 1.6430492035729749e-06, 'eye-gouging': 1.6430492035729749e-06, 'unliterary': 1.6430492035729749e-06, 'Bangs': 2.4645738053594624e-06, 'Thorpe': 4.107623008932437e-06, 'Bee-Hunter': 1.6430492035729749e-06, 'Hooper': 2.4645738053594624e-06, 'Suggs': 1.6430492035729749e-06, 'sharpness': 1.6430492035729749e-06, 'habitually': 2.4645738053594624e-06, 'Sut': 1.6430492035729749e-06, 'Lovingood': 1.6430492035729749e-06, 'unmalicious': 1.6430492035729749e-06, 'humorists': 2.4645738053594624e-06, 'long-established': 2.4645738053594624e-06, 'subtler': 1.6430492035729749e-06, 'idealized': 4.107623008932437e-06, 'Hardscrabble': 1.6430492035729749e-06, 'tall-tale': 1.6430492035729749e-06, 'contemplates': 1.6430492035729749e-06, 'Advancement': 1.6430492035729749e-06, 'supernormal': 1.6430492035729749e-06, 'Humanist': 1.6430492035729749e-06, 'unfoldment': 1.6430492035729749e-06, 'side-conclusions': 1.6430492035729749e-06, 'evolutionists': 1.6430492035729749e-06, "Huxley's": 2.4645738053594624e-06, 'confinements': 1.6430492035729749e-06, "Craig's": 1.6430492035729749e-06, 'agonizes': 2.4645738053594624e-06, 'stack': 6.5721968142918994e-06, 'lethargies': 1.6430492035729749e-06, 'decencies': 1.6430492035729749e-06, 'contentions': 2.4645738053594624e-06, 'volcanos': 1.6430492035729749e-06, 'relieving': 1.6430492035729749e-06, 'pleasantness': 1.6430492035729749e-06, 'flowered': 3.2860984071459497e-06, "Lyford's": 4.107623008932437e-06, 'Introduction': 9.85829522143785e-06, 'Agreeable': 3.2860984071459497e-06, 'Autocracies': 3.2860984071459497e-06, 'paperback': 2.4645738053594624e-06, 'Lyford': 4.929147610718925e-06, 'plateau': 2.4645738053594624e-06, 'reflective': 5.750672212505412e-06, 'irritated': 4.929147610718925e-06, 'defensiveness': 2.4645738053594624e-06, 'badness': 8.215246017864873e-06, 'Shocked': 2.4645738053594624e-06, 'sourly': 3.2860984071459497e-06, 'insecure': 3.2860984071459497e-06, 'sacrosanct': 1.6430492035729749e-06, 'self-criticism': 1.6430492035729749e-06, 'defeatists': 1.6430492035729749e-06, 'scoundrels': 1.6430492035729749e-06, 'conversational': 3.2860984071459497e-06, 'corroding': 1.6430492035729749e-06, 'Oceana': 1.6430492035729749e-06, 'genie': 1.6430492035729749e-06, 'bossed': 1.6430492035729749e-06, 'speculate': 6.5721968142918994e-06, 'autocratic': 1.6430492035729749e-06, 'autocracies': 1.6430492035729749e-06, 'sketched': 4.107623008932437e-06, 'constitutions': 1.6430492035729749e-06, 'Ptolemy': 7.393721416078387e-06, 'observational': 4.107623008932437e-06, 'diurnal': 4.929147610718925e-06, 'Draco': 1.6430492035729749e-06, 'Cepheus': 1.6430492035729749e-06, 'Cassiopeia': 1.6430492035729749e-06, 'circumpolar': 1.6430492035729749e-06, "constellation's": 1.6430492035729749e-06, 'nocturnal': 3.2860984071459497e-06, "sun's": 4.107623008932437e-06, 'contour': 5.750672212505412e-06, 'gnomon': 1.6430492035729749e-06, 'spherical': 6.5721968142918994e-06, 'Ships': 2.4645738053594624e-06, 'hull-first': 1.6430492035729749e-06, 'masts': 2.4645738053594624e-06, 'Earth': 2.875336106252706e-05, 'circularity': 2.4645738053594624e-06, 'discoid': 1.6430492035729749e-06, 'ancients': 1.6430492035729749e-06, 'elliptical': 1.6430492035729749e-06, 'oviform': 1.6430492035729749e-06, 'superlunary': 1.6430492035729749e-06, 'sublunary': 1.6430492035729749e-06, 'terrestrial': 6.5721968142918994e-06, 'four-element': 2.4645738053594624e-06, 'Empedocles': 2.4645738053594624e-06, 'viz.': 1.6430492035729749e-06, 'discrete': 6.5721968142918994e-06, 'Circular': 4.107623008932437e-06, 'imcomplete': 1.6430492035729749e-06, 'Perfect': 3.2860984071459497e-06, 'natures': 4.107623008932437e-06, 'muddy': 9.036770619651361e-06, 'frothy': 2.4645738053594624e-06, 'cosmical': 1.6430492035729749e-06, 'substratum': 1.6430492035729749e-06, 'material-formal': 1.6430492035729749e-06, 'quickened': 1.6430492035729749e-06, 'ethereal': 3.2860984071459497e-06, 'distinguishes': 4.929147610718925e-06, 'projectile': 1.6430492035729749e-06, 'rectlinearly': 1.6430492035729749e-06, 'rectilinear': 1.6430492035729749e-06, 'embodiments': 1.6430492035729749e-06, 'partake': 1.6430492035729749e-06, 'Copernican': 7.393721416078387e-06, 'Bluntly': 1.6430492035729749e-06, "Copernicus'": 5.750672212505412e-06, 'Almagest': 4.107623008932437e-06, 'Hypotheses': 2.4645738053594624e-06, "Ptolemy's": 5.750672212505412e-06, 'computational': 1.6430492035729749e-06, 'Halma': 1.6430492035729749e-06, "Theon's": 1.6430492035729749e-06, 'headings': 1.6430492035729749e-06, 'weld': 1.6430492035729749e-06, 'a-la-Aristotle': 1.6430492035729749e-06, 'predicting-machines': 1.6430492035729749e-06, 'deferent': 2.4645738053594624e-06, 'epicycles': 5.750672212505412e-06, 'bumping': 2.4645738053594624e-06, 'infinity': 2.4645738053594624e-06, 'longitudes': 1.6430492035729749e-06, 'latitudes': 1.6430492035729749e-06, 'velocities': 5.750672212505412e-06, 'conjectures': 2.4645738053594624e-06, 'orderings': 2.4645738053594624e-06, 'confounding': 1.6430492035729749e-06, 'Aristotelian': 2.4645738053594624e-06, 'geocentric': 2.4645738053594624e-06, 'recurrently': 1.6430492035729749e-06, 'nonsystematic': 1.6430492035729749e-06, 'textbooks': 1.6430492035729749e-06, 'epicyclically': 1.6430492035729749e-06, 'deferents': 1.6430492035729749e-06, '20th-century': 1.6430492035729749e-06, 'three-body': 1.6430492035729749e-06, 'simpliciter': 1.6430492035729749e-06, 'resultants': 4.929147610718925e-06, 'epicyclical': 1.6430492035729749e-06, 'retrogradations': 1.6430492035729749e-06, 'intricately': 1.6430492035729749e-06, 'Margenau': 2.4645738053594624e-06, 'eighty-three': 3.2860984071459497e-06, 'heliocentric': 1.6430492035729749e-06, 'arithmetized': 1.6430492035729749e-06, 'non-systematic': 1.6430492035729749e-06, 'cellular': 3.2860984071459497e-06, 'Calculations': 1.6430492035729749e-06, 'dynamical': 1.6430492035729749e-06, 'Analogously': 1.6430492035729749e-06, "Newton's": 3.2860984071459497e-06, 'student-physicists': 1.6430492035729749e-06, 'systematically-simple': 1.6430492035729749e-06, 'Axioms': 1.6430492035729749e-06, 'tersely': 2.4645738053594624e-06, 'permissible': 1.6430492035729749e-06, 'axioms': 1.6430492035729749e-06, "Euclid's": 2.4645738053594624e-06, 'epicycle': 1.6430492035729749e-06, 'abberations': 1.6430492035729749e-06, 'lunar': 9.036770619651361e-06, 'lower-level': 1.6430492035729749e-06, 'hypotheses': 2.4645738053594624e-06, 'datum': 1.6430492035729749e-06, 'unachieved': 1.6430492035729749e-06, 'approximated': 4.929147610718925e-06, 'Revolutionibus': 3.2860984071459497e-06, 'Solving': 1.6430492035729749e-06, 'astronomical': 5.750672212505412e-06, '1543': 1.6430492035729749e-06, 'reverberations': 1.6430492035729749e-06, 'Copernicus-the-astronomer': 1.6430492035729749e-06, 'Geocentricism': 1.6430492035729749e-06, 'unphysical': 1.6430492035729749e-06, 'triplication': 1.6430492035729749e-06, 'centric': 1.6430492035729749e-06, 'reference-points': 1.6430492035729749e-06, "planet's": 1.6430492035729749e-06, 'Ptolemaists': 1.6430492035729749e-06, 'monster': 4.929147610718925e-06, 'novo': 1.6430492035729749e-06, 'Cusa': 1.6430492035729749e-06, 'Oresme': 1.6430492035729749e-06, "Henrietta's": 2.4645738053594624e-06, 'Sara': 4.107623008932437e-06, 'Sullam': 3.2860984071459497e-06, "Sara's": 1.6430492035729749e-06, 'epitaph': 1.6430492035729749e-06, 'Sulamite': 1.6430492035729749e-06, 'Henrietta': 3.450403327503247e-05, 'strands': 3.2860984071459497e-06, 'giver': 1.6430492035729749e-06, 'demander': 1.6430492035729749e-06, 'exacted': 1.6430492035729749e-06, 'condemn': 4.107623008932437e-06, 'clearness': 2.4645738053594624e-06, 'exasperating': 1.6430492035729749e-06, 'unwomanly': 1.6430492035729749e-06, 'importunities': 1.6430492035729749e-06, 'overconfident': 1.6430492035729749e-06, 'childlike': 4.107623008932437e-06, 'avenge': 2.4645738053594624e-06, 'overstraining': 1.6430492035729749e-06, 'biographical': 4.107623008932437e-06, "Harper's": 4.929147610718925e-06, 'Anglo-Jewish': 1.6430492035729749e-06, 'oratorio': 1.6430492035729749e-06, 'Maccabeus': 1.6430492035729749e-06, 'Hanukkah': 1.6430492035729749e-06, 'Mamma': 7.393721416078387e-06, "'76": 1.6430492035729749e-06, "Darwin's": 1.6430492035729749e-06, 'disciple': 4.107623008932437e-06, 'Szold': 9.85829522143785e-06, 'mothered': 1.6430492035729749e-06, 'Adler': 3.2860984071459497e-06, 'Jastrow': 9.85829522143785e-06, "Sulzberger's": 2.4645738053594624e-06, 'nephew': 8.215246017864873e-06, 'Assyriology': 1.6430492035729749e-06, 'rabbi': 5.750672212505412e-06, 'round-faced': 1.6430492035729749e-06, 'mustache': 4.929147610718925e-06, 'punster': 1.6430492035729749e-06, 'jolly': 3.2860984071459497e-06, 'Rabbi': 6.5721968142918994e-06, 'Szolds': 4.107623008932437e-06, 'Friedenwald': 2.4645738053594624e-06, 'dazzle': 1.6430492035729749e-06, 'patronize': 1.6430492035729749e-06, 'eclipsed': 1.6430492035729749e-06, 'chignon': 1.6430492035729749e-06, 'Racie': 1.6430492035729749e-06, 'temerity': 1.6430492035729749e-06, "Joe's": 4.929147610718925e-06, 'Rodeph': 1.6430492035729749e-06, 'Shalom': 1.6430492035729749e-06, "Rabbi's": 1.6430492035729749e-06, 'twenty-page': 1.6430492035729749e-06, 'Sulamith': 1.6430492035729749e-06, 'familiarly': 1.6430492035729749e-06, 'follies': 2.4645738053594624e-06, 'unwillingness': 4.929147610718925e-06, 'Corbin': 1.6430492035729749e-06, 'Lombard': 1.6430492035729749e-06, 'Louisa': 1.6430492035729749e-06, "Alcott's": 1.6430492035729749e-06, 'Jo': 5.750672212505412e-06, 'Marches': 4.107623008932437e-06, 'Marmee': 1.6430492035729749e-06, 'Sophie': 2.4645738053594624e-06, "Szolds'": 2.4645738053594624e-06, 'hoydenish': 1.6430492035729749e-06, 'tempers': 2.4645738053594624e-06, 'confidante': 1.6430492035729749e-06, 'Meg': 2.4645738053594624e-06, 'Sadie': 4.929147610718925e-06, 'rheumatic': 2.4645738053594624e-06, 'Fun': 1.6430492035729749e-06, 'Comedy': 2.4645738053594624e-06, 'Personages': 1.6430492035729749e-06, 'Schoolmarm': 1.6430492035729749e-06, 'Dummkopf': 1.6430492035729749e-06, 'Soiree': 1.6430492035729749e-06, 'Musicale': 1.6430492035729749e-06, "Guthrie's": 1.6430492035729749e-06, 'Pupils': 1.6430492035729749e-06, 'recited': 2.4645738053594624e-06, "Hector's": 1.6430492035729749e-06, 'Andromache': 1.6430492035729749e-06, 'movingly': 1.6430492035729749e-06, 'Germantown': 2.4645738053594624e-06, 'Adele': 2.4645738053594624e-06, 'rebellious': 2.4645738053594624e-06, 'mischievous': 3.2860984071459497e-06, 'prettiest': 4.107623008932437e-06, 'strumming': 1.6430492035729749e-06, 'silvery': 2.4645738053594624e-06, 'Laurie': 1.6430492035729749e-06, 'lovering': 1.6430492035729749e-06, 'Lobl': 1.6430492035729749e-06, 'descriptions': 9.036770619651361e-06, 'Olgivanna': 6.5721968142918994e-06, 'Montenegrin': 1.6430492035729749e-06, 'flouting': 1.6430492035729749e-06, 'intentioned': 1.6430492035729749e-06, 'afflictions': 1.6430492035729749e-06, 'maddening': 2.4645738053594624e-06, 'Miriam': 2.546726265538111e-05, 'Reporters': 2.4645738053594624e-06, 'Flocks': 1.6430492035729749e-06, 'writs': 1.6430492035729749e-06, 'Cloud': 3.2860984071459497e-06, 'parting': 4.107623008932437e-06, 'avenging': 2.4645738053594624e-06, 'punish': 3.2860984071459497e-06, 'heavy-faced': 1.6430492035729749e-06, 'misdemeanants': 1.6430492035729749e-06, 'Taliesin': 9.85829522143785e-06, 'warrants': 4.929147610718925e-06, "Miriam's": 2.4645738053594624e-06, 'heaped': 4.107623008932437e-06, 'Constable': 4.929147610718925e-06, 'Pengally': 2.4645738053594624e-06, 'Weston': 7.393721416078387e-06, 'parley': 1.6430492035729749e-06, 'Cupply': 3.2860984071459497e-06, 'pane': 3.2860984071459497e-06, 'uglier': 2.4645738053594624e-06, 'Norris': 1.6430492035729749e-06, 'harrumphing': 1.6430492035729749e-06, 'Micawber': 1.6430492035729749e-06, 'generalized': 8.215246017864873e-06, 'boulevard': 2.4645738053594624e-06, 'racetrack': 2.4645738053594624e-06, 'jams': 2.4645738053594624e-06, 'panes': 3.2860984071459497e-06, 'fused': 3.2860984071459497e-06, "K'ang-si": 1.6430492035729749e-06, 'faultless': 1.6430492035729749e-06, 'tepees': 1.6430492035729749e-06, 'dauntless': 1.6430492035729749e-06, 'planetarium': 1.6430492035729749e-06, 'Koch': 1.6430492035729749e-06, "doctor's": 1.5608967433943262e-05, 'derogatory': 1.6430492035729749e-06, 'Milanoff': 1.6430492035729749e-06, "judge's": 1.6430492035729749e-06, 'harrassment': 1.6430492035729749e-06, 'Volstead': 2.4645738053594624e-06, 'liars': 1.6430492035729749e-06, 'breakers': 1.6430492035729749e-06, 'weariness': 2.4645738053594624e-06, 'disrespect': 2.4645738053594624e-06, 'betide': 2.4645738053594624e-06, 'sortie': 2.4645738053594624e-06, 'repulsed': 1.6430492035729749e-06, 'mattered': 4.929147610718925e-06, 'incanted': 1.6430492035729749e-06, "pride's": 1.6430492035729749e-06, 'vade': 2.4645738053594624e-06, 'mecum': 2.4645738053594624e-06, 'insinuated': 1.6430492035729749e-06, 'weakly': 3.2860984071459497e-06, 'taut': 7.393721416078387e-06, 'semblance': 2.4645738053594624e-06, 'cluck': 2.4645738053594624e-06, 'exacerbations': 1.6430492035729749e-06, 'kin': 2.4645738053594624e-06, 'yachts': 3.2860984071459497e-06, 'self-consuming': 1.6430492035729749e-06, 'elegiac': 2.4645738053594624e-06, "Millay's": 2.4645738053594624e-06, 'quatrain': 2.4645738053594624e-06, 'pluck': 2.4645738053594624e-06, 'overblown': 1.6430492035729749e-06, 'diva': 1.6430492035729749e-06, 'Millay': 1.6430492035729749e-06, 'plucking': 1.6430492035729749e-06, 'awaken': 6.5721968142918994e-06, 'hormone': 1.1501344425010824e-05, 'determinant': 1.6430492035729749e-06, 'sweet-throated': 1.6430492035729749e-06, 'yea': 1.6430492035729749e-06, 'transcendant': 1.6430492035729749e-06, 'nightingale': 3.2860984071459497e-06, 'croak': 1.6430492035729749e-06, 'capercailzie': 1.6430492035729749e-06, 'mute': 3.2860984071459497e-06, 'antics': 4.107623008932437e-06, 'immodest': 1.6430492035729749e-06, 'scandalizing': 1.6430492035729749e-06, 'obscenity': 1.6430492035729749e-06, 'fancies': 1.6430492035729749e-06, 'abnormal': 2.4645738053594624e-06, 'fastidious': 3.2860984071459497e-06, 'tea-leaf': 1.6430492035729749e-06, 'psyches': 1.6430492035729749e-06, 'autumnal': 1.6430492035729749e-06, 'ahem': 1.6430492035729749e-06, 'marrying': 3.2860984071459497e-06, 'mumble': 1.6430492035729749e-06, 'maternal': 4.929147610718925e-06, 'awkwardness': 1.6430492035729749e-06, 'mollycoddle': 1.6430492035729749e-06, 'foolproof': 2.4645738053594624e-06, 'self-betrayal': 1.6430492035729749e-06, 'shames': 1.6430492035729749e-06, 'prestidigitator': 1.6430492035729749e-06, 'distracting': 1.6430492035729749e-06, 'unsavory': 1.6430492035729749e-06, 'moored': 2.4645738053594624e-06, 'buffetings': 1.6430492035729749e-06, 'Helpless': 1.6430492035729749e-06, 'impediment': 1.6430492035729749e-06, 'Instinctively': 3.2860984071459497e-06, 'regained': 4.107623008932437e-06, 'frailest': 1.6430492035729749e-06, 'incontrovertible': 1.6430492035729749e-06, 'bads': 1.6430492035729749e-06, 'weasel': 1.6430492035729749e-06, 'engulfing': 1.6430492035729749e-06, 'dissatisfactions': 1.6430492035729749e-06, 'Yours': 1.6430492035729749e-06, 'innocently': 3.2860984071459497e-06, 'noli': 1.6430492035729749e-06, 'tangere': 1.6430492035729749e-06, 'writ': 6.5721968142918994e-06, 'unbridled': 2.4645738053594624e-06, 'lean-to': 2.4645738053594624e-06, 'trundle': 1.6430492035729749e-06, 'prettily': 2.4645738053594624e-06, 'sine': 4.107623008932437e-06, 'qua': 2.4645738053594624e-06, 'precept': 1.6430492035729749e-06, 'tact': 4.929147610718925e-06, "Baptist's": 1.6430492035729749e-06, 'pouted': 1.6430492035729749e-06, 'scandalized': 3.2860984071459497e-06, 'unseemly': 1.6430492035729749e-06, 'indulged': 4.929147610718925e-06, 'confidences': 1.6430492035729749e-06, 'alleviating': 1.6430492035729749e-06, 'gossiped': 1.6430492035729749e-06, 'thesaurus': 1.6430492035729749e-06, 'hobo': 1.6430492035729749e-06, 'rummaged': 1.6430492035729749e-06, 'arrangers': 1.6430492035729749e-06, 'harmonization': 1.6430492035729749e-06, 'musicologists': 1.6430492035729749e-06, 'Songbag': 1.6430492035729749e-06, 'ditty': 1.6430492035729749e-06, 'Appalachian': 1.6430492035729749e-06, 'skyscrapers': 1.6430492035729749e-06, 'gusher': 1.6430492035729749e-06, 'Schopenhauer': 1.6430492035729749e-06, 'entertainer': 2.4645738053594624e-06, 'envelopes': 3.2860984071459497e-06, 'shorthand': 2.4645738053594624e-06, 'abbreviations': 1.6430492035729749e-06, 'humly': 1.6430492035729749e-06, 'w': 1.6430492035729749e-06, 'tt': 1.6430492035729749e-06, 'dextrous-fingered': 1.6430492035729749e-06, 'bashful': 2.4645738053594624e-06, 'seventy-four': 1.6430492035729749e-06, 'shyly': 4.107623008932437e-06, 'Andres': 1.6430492035729749e-06, 'Segovia': 3.2860984071459497e-06, "Segovia's": 1.6430492035729749e-06, 'disciplining': 1.6430492035729749e-06, 'precocious': 3.2860984071459497e-06, 'aspires': 1.6430492035729749e-06, 'three-fold': 2.4645738053594624e-06, "Schopenhauer's": 1.6430492035729749e-06, 'Guitar': 2.4645738053594624e-06, 'freshborn': 1.6430492035729749e-06, 'meditation': 2.4645738053594624e-06, "Tribune's": 1.6430492035729749e-06, 'Ira': 2.4645738053594624e-06, 'Preferably': 1.6430492035729749e-06, 'pawnshop': 3.2860984071459497e-06, '1162': 1.6430492035729749e-06, 'introductions': 1.6430492035729749e-06, 'eyed': 6.5721968142918994e-06, 'distastefully': 2.4645738053594624e-06, 'Kalamazoo': 1.6430492035729749e-06, 'knowledgeable': 2.4645738053594624e-06, 'celebrity': 3.2860984071459497e-06, 'eats': 2.4645738053594624e-06, 'celerity': 1.6430492035729749e-06, "Carl's": 4.107623008932437e-06, '$27.50': 1.6430492035729749e-06, 'sparse': 4.929147610718925e-06, 'one-arm': 2.4645738053594624e-06, 'pangs': 2.4645738053594624e-06, 'query': 1.6430492035729749e-06, 'Fame': 2.4645738053594624e-06, 'figment': 2.4645738053594624e-06, 'fames': 1.6430492035729749e-06, 'bauble': 1.6430492035729749e-06, 'fifty-three': 1.6430492035729749e-06, 'limelight': 1.6430492035729749e-06, 'Phi': 2.4645738053594624e-06, 'Beta': 2.4645738053594624e-06, "Peoples'": 1.6430492035729749e-06, 'Poet': 2.6288787257167598e-05, 'seventy-fifth': 1.6430492035729749e-06, 'banquets': 3.2860984071459497e-06, 'intrude': 1.6430492035729749e-06, 'Classicist': 1.6430492035729749e-06, 'Harbert': 2.4645738053594624e-06, 'grapevines': 1.6430492035729749e-06, 'Lilian': 6.5721968142918994e-06, 'Luxemburg': 4.107623008932437e-06, "Paus'l": 1.6430492035729749e-06, 'endearment': 1.6430492035729749e-06, 'pussycat': 1.6430492035729749e-06, 'pronounce': 2.4645738053594624e-06, 'soubriquet': 1.6430492035729749e-06, 'baptismal': 1.6430492035729749e-06, 'christened': 2.4645738053594624e-06, 'Magdalene': 3.2860984071459497e-06, "Paula's": 2.4645738053594624e-06, 'Vogue': 2.4645738053594624e-06, 'Photographer': 1.6430492035729749e-06, 'millinery': 1.6430492035729749e-06, 'compromised': 2.4645738053594624e-06, 'Ursuline': 1.6430492035729749e-06, 'Ontario': 1.6430492035729749e-06, 'kneeling': 4.107623008932437e-06, 'Twain': 1.6430492035729749e-06, 'saddened': 1.6430492035729749e-06, 'Urbana': 1.6430492035729749e-06, 'Thorstein': 1.6430492035729749e-06, 'Veblen': 1.6430492035729749e-06, 'fluency': 1.6430492035729749e-06, 'German-language': 1.6430492035729749e-06, 'legitimized': 3.2860984071459497e-06, 'panjandrum': 1.6430492035729749e-06, 'Appleton': 1.6430492035729749e-06, 'Athearn': 1.6430492035729749e-06, 'Oshkosh': 1.6430492035729749e-06, 'softens': 1.6430492035729749e-06, 'guerilla': 1.6430492035729749e-06, 'S-D': 1.6430492035729749e-06, 'Teacher': 2.4645738053594624e-06, 'subversion': 1.6430492035729749e-06, 'self-defense': 3.2860984071459497e-06, 'Growing': 2.4645738053594624e-06, 'urgently': 5.750672212505412e-06, 'self-indulgence': 4.107623008932437e-06, 'repudiating': 1.6430492035729749e-06, 'enmities': 1.6430492035729749e-06, 'consonant': 3.2860984071459497e-06, 'supplementing': 2.4645738053594624e-06, 'transactions': 4.929147610718925e-06, 'deficits': 1.6430492035729749e-06, 'scourge': 2.4645738053594624e-06, 'oxcart': 2.4645738053594624e-06, 'Respecting': 1.6430492035729749e-06, 'South-Asian': 1.6430492035729749e-06, 'co-operate': 4.107623008932437e-06, 'multi-year': 2.4645738053594624e-06, 'instrumentalities': 3.2860984071459497e-06, 'titanic': 2.4645738053594624e-06, 'broadly': 5.750672212505412e-06, 'launchings': 1.6430492035729749e-06, 'deployment': 1.6430492035729749e-06, 'shoulder-to-shoulder': 1.6430492035729749e-06, 'mistakenly': 3.2860984071459497e-06, 'astrophysics': 3.2860984071459497e-06, 'scout': 5.750672212505412e-06, 'relay': 2.4645738053594624e-06, 'Suggested': 2.4645738053594624e-06, 'alluded': 1.6430492035729749e-06, 'sinews': 1.6430492035729749e-06, 'wither': 2.4645738053594624e-06, 'amassing': 1.6430492035729749e-06, 'downturn': 2.4645738053594624e-06, 'resurgent': 1.6430492035729749e-06, 'surging': 2.4645738053594624e-06, 'Bang-Jensen': 2.1359639646448672e-05, 'Adolf': 4.107623008932437e-06, 'Berle': 4.107623008932437e-06, "Stavropoulos'": 1.6430492035729749e-06, 'Dragoslav': 1.6430492035729749e-06, 'Protitch': 1.6430492035729749e-06, 'Begley': 2.4645738053594624e-06, 'Farmington': 1.6430492035729749e-06, 'overcoats': 1.6430492035729749e-06, 'wind-swept': 2.4645738053594624e-06, 'eighty-one': 1.6430492035729749e-06, "Cordier's": 1.6430492035729749e-06, 'advising': 3.2860984071459497e-06, "Gross's": 1.6430492035729749e-06, "Bang-Jensen's": 5.750672212505412e-06, '195-page': 1.6430492035729749e-06, 'Secretaries': 3.2860984071459497e-06, 'Constantin': 1.6430492035729749e-06, 'Stavropoulos': 3.2860984071459497e-06, 'Philippe': 1.6430492035729749e-06, 'Seynes': 2.4645738053594624e-06, 'up-and-coming': 1.6430492035729749e-06, 'courteously': 3.2860984071459497e-06, 'clean-top': 1.6430492035729749e-06, 'manila': 1.6430492035729749e-06, 'folder': 1.6430492035729749e-06, 'derogate': 1.6430492035729749e-06, 'prejudged': 2.4645738053594624e-06, 'Disciplinary': 1.6430492035729749e-06, 'bushel': 1.6430492035729749e-06, 'willfully': 1.6430492035729749e-06, 'day-after-day': 2.4645738053594624e-06, 'memos': 1.6430492035729749e-06, 'Supposing': 1.6430492035729749e-06, 'hairy': 4.929147610718925e-06, 'bristled': 3.2860984071459497e-06, 'glared': 4.929147610718925e-06, 'speechless': 3.2860984071459497e-06, 'back-issue': 1.6430492035729749e-06, 'libelous': 1.6430492035729749e-06, 'slanderous': 1.6430492035729749e-06, 'querying': 1.6430492035729749e-06, 'blackmailed': 1.6430492035729749e-06, 'Gotterdammerung': 1.6430492035729749e-06, 'settles': 2.4645738053594624e-06, 'omissions': 3.2860984071459497e-06, 'Mick': 1.6430492035729749e-06, 'Shann': 8.215246017864873e-06, 'Alsing': 1.6430492035729749e-06, 'Andersen': 1.6430492035729749e-06, "Delegates'": 1.6430492035729749e-06, 'Widener': 1.6430492035729749e-06, 'Enquirer': 1.6430492035729749e-06, 'Chesly': 1.6430492035729749e-06, 'Manley': 5.750672212505412e-06, 'Ches': 1.6430492035729749e-06, "Shann's": 1.6430492035729749e-06, 'immoderate': 1.6430492035729749e-06, 'Henrik': 1.6430492035729749e-06, 'Kauffmann': 1.6430492035729749e-06, 'respectfully': 2.4645738053594624e-06, "diplomat's": 1.6430492035729749e-06, 'thirteenth': 2.4645738053594624e-06, 'thirty-sixth': 1.6430492035729749e-06, 'Robertson': 2.4645738053594624e-06, 'Pickering': 1.6430492035729749e-06, "Dodge's": 1.6430492035729749e-06, 'loathed': 4.107623008932437e-06, 'coops': 1.6430492035729749e-06, 'pigpens': 1.6430492035729749e-06, 'Skipping': 1.6430492035729749e-06, 'Hasseltine': 2.4645738053594624e-06, 'frolics': 1.6430492035729749e-06, 'off-color': 1.6430492035729749e-06, 'Caravan': 4.929147610718925e-06, 'sailorly': 1.6430492035729749e-06, 'profane': 1.6430492035729749e-06, 'homesickness': 1.6430492035729749e-06, 'Heard': 6.5721968142918994e-06, 'twinge': 3.2860984071459497e-06, 'Adoniram': 5.750672212505412e-06, 'kindest': 1.6430492035729749e-06, 'Calcutta': 4.107623008932437e-06, 'loaf': 4.107623008932437e-06, 'exclaiming': 4.107623008932437e-06, 'Congregationalist': 2.4645738053594624e-06, 'searchings': 1.6430492035729749e-06, 'conceding': 2.4645738053594624e-06, 'Congregationalists': 3.2860984071459497e-06, 'midstream': 1.6430492035729749e-06, 'seafarers': 2.4645738053594624e-06, 'thrilled': 3.2860984071459497e-06, 'butterfly': 2.4645738053594624e-06, 'Orissa': 1.6430492035729749e-06, 'Bengal': 4.107623008932437e-06, 'leadsman': 1.6430492035729749e-06, 'Judsons': 1.6430492035729749e-06, 'Newells': 1.6430492035729749e-06, 'trousers': 6.5721968142918994e-06, "Ann's": 2.4645738053594624e-06, 'consternation': 1.6430492035729749e-06, 'Relieved': 1.6430492035729749e-06, "pilot's": 2.4645738053594624e-06, 'Hooghli': 1.6430492035729749e-06, 'Running': 4.107623008932437e-06, 'spice-laden': 1.6430492035729749e-06, 'Hoogli': 1.6430492035729749e-06, 'Hindoo': 1.6430492035729749e-06, 'haystacks': 1.6430492035729749e-06, 'chimney': 6.5721968142918994e-06, 'romantick': 1.6430492035729749e-06, 'indolently': 1.6430492035729749e-06, 'pagodas': 1.6430492035729749e-06, 'tawny': 4.107623008932437e-06, "Caravan's": 1.6430492035729749e-06, '1690': 1.6430492035729749e-06, 'Job': 2.4645738053594624e-06, 'Charnock': 1.6430492035729749e-06, 'Palaces': 1.6430492035729749e-06, 'wharves': 2.4645738053594624e-06, 'tall-masted': 1.6430492035729749e-06, 'flocked': 2.4645738053594624e-06, 'chattering': 5.750672212505412e-06, 'strange-sounding': 1.6430492035729749e-06, 'Bengali': 1.6430492035729749e-06, "Harriet's": 1.6430492035729749e-06, 'much-craved': 1.6430492035729749e-06, 'intrigued': 2.4645738053594624e-06, 'Cautiously': 2.4645738053594624e-06, 'banana': 4.107623008932437e-06, "Symes's": 1.6430492035729749e-06, 'Gibault': 2.4645738053594624e-06, 'Astra': 1.6430492035729749e-06, 'commandeered': 1.6430492035729749e-06, 'captors': 2.4645738053594624e-06, 'Irrawaddy': 1.6430492035729749e-06, 'Cruel': 1.6430492035729749e-06, 'Burmans': 1.6430492035729749e-06, 'Unspeakable': 1.6430492035729749e-06, 'daunted': 1.6430492035729749e-06, 'Directors': 1.6430492035729749e-06, 'foreigner': 4.107623008932437e-06, 'unseasonable': 1.6430492035729749e-06, 'exultation': 3.2860984071459497e-06, 'Whig': 5.750672212505412e-06, 'Tories': 5.750672212505412e-06, 'sarcastically': 1.6430492035729749e-06, 'Ridpath': 1.6430492035729749e-06, 'Steele': 1.8073541239302723e-05, 'Apostles': 1.6430492035729749e-06, 'Coffee-House': 1.6430492035729749e-06, 'Molesworth': 6.5721968142918994e-06, 'Privy': 3.2860984071459497e-06, 'Commons': 3.2860984071459497e-06, 'Phipps': 2.4645738053594624e-06, 'Convocation': 3.2860984071459497e-06, 'blasphemous': 4.107623008932437e-06, 'affront': 2.4645738053594624e-06, 'Tatler': 1.6430492035729749e-06, 'Preface': 1.6430492035729749e-06, "Sarum's": 1.6430492035729749e-06, 'Toland': 1.6430492035729749e-06, 'Tindal': 1.6430492035729749e-06, 'Burnet': 2.4645738053594624e-06, 'Convocations': 1.6430492035729749e-06, 'Wharton': 1.6430492035729749e-06, 'Observations': 4.107623008932437e-06, 'Publick': 3.2860984071459497e-06, "Steele's": 1.0679819823224336e-05, 'Succession': 6.5721968142918994e-06, 'preliminaries': 2.4645738053594624e-06, 'Crisis': 4.929147610718925e-06, 'expelling': 1.6430492035729749e-06, 'pretentious': 5.750672212505412e-06, 'Arbitrary': 1.6430492035729749e-06, 'Popish': 2.4645738053594624e-06, 'Marlborough': 3.2860984071459497e-06, 'Jacobite': 1.6430492035729749e-06, 'Treasonable': 1.6430492035729749e-06, 'complains': 3.2860984071459497e-06, 'Insinuations': 1.6430492035729749e-06, 'altering': 4.107623008932437e-06, 'asserts': 4.929147610718925e-06, 'Terrours': 1.6430492035729749e-06, 'Hints': 1.6430492035729749e-06, 'Innuendos': 1.6430492035729749e-06, 'Sentiments': 1.6430492035729749e-06, 'Enemies': 1.6430492035729749e-06, 'compleated': 1.6430492035729749e-06, 'touchy': 1.6430492035729749e-06, 'Dowager': 1.6430492035729749e-06, 'Electress': 1.6430492035729749e-06, 'summons': 1.6430492035729749e-06, "Queen's": 1.6430492035729749e-06, 'Bolingbroke': 1.6430492035729749e-06, 'forgave': 2.4645738053594624e-06, 'Schutz': 1.6430492035729749e-06, "Oxford's": 1.6430492035729749e-06, 'Defoe': 3.2860984071459497e-06, 'Measures': 1.6430492035729749e-06, "asham'd": 1.6430492035729749e-06, 'pamphlet': 3.2860984071459497e-06, 'Paper': 4.107623008932437e-06, 'So-called': 1.6430492035729749e-06, 'libel': 1.6430492035729749e-06, 'ridiculed': 2.4645738053594624e-06, 'whoever': 4.929147610718925e-06, 'Destroyer': 1.6430492035729749e-06, 'Character': 1.6430492035729749e-06, 'maudlin': 1.6430492035729749e-06, 'showered': 4.929147610718925e-06, 'affronting': 1.6430492035729749e-06, 'prerogative': 1.6430492035729749e-06, 'Sovereign': 2.4645738053594624e-06, 'purports': 2.4645738053594624e-06, 'Dunkirk': 3.2860984071459497e-06, 'Converts': 1.6430492035729749e-06, 'gibe': 1.6430492035729749e-06, 'Presbyterianism': 1.6430492035729749e-06, "Harley's": 1.6430492035729749e-06, "Bolingbroke's": 1.6430492035729749e-06, 'impiety': 1.6430492035729749e-06, 'insinuates': 1.6430492035729749e-06, 'cynically': 1.6430492035729749e-06, 'By-word': 1.6430492035729749e-06, 'counteract': 4.107623008932437e-06, 'Courtier': 3.2860984071459497e-06, 'favorer': 1.6430492035729749e-06, "Swift's": 2.4645738053594624e-06, 'Allay': 1.6430492035729749e-06, 'malleable': 1.6430492035729749e-06, 'Artificer': 1.6430492035729749e-06, 'Favour': 1.6430492035729749e-06, 'Pretender': 2.4645738053594624e-06, 'seditious': 1.6430492035729749e-06, "Button's": 1.6430492035729749e-06, 'coffee-house': 1.6430492035729749e-06, 'reviews': 8.215246017864873e-06, 'feud': 1.6430492035729749e-06, 'contemptuously': 2.4645738053594624e-06, 'Style': 1.6430492035729749e-06, 'Level': 1.6430492035729749e-06, 'parliamentary': 7.393721416078387e-06, 'Infamous': 1.6430492035729749e-06, 'Libel': 1.6430492035729749e-06, 'Facetious': 1.6430492035729749e-06, 'Tripe': 1.6430492035729749e-06, 'Bath': 1.6430492035729749e-06, 'Venerable': 1.6430492035729749e-06, 'Nestor': 1.6430492035729749e-06, 'Ironside': 1.6430492035729749e-06, 'Cr--spe': 1.6430492035729749e-06, 'Customhouse': 1.6430492035729749e-06, 'Arlen': 1.1501344425010824e-05, 'inconsequential': 3.2860984071459497e-06, 'bobby-soxer': 1.6430492035729749e-06, 'craze': 2.4645738053594624e-06, 'Bing': 2.4645738053594624e-06, 'Bracken': 1.6430492035729749e-06, 'mouthed': 1.6430492035729749e-06, 'emigrated': 1.6430492035729749e-06, '1747': 1.6430492035729749e-06, "lyricist's": 1.6430492035729749e-06, 'branched': 2.4645738053594624e-06, 'Jasper': 1.6430492035729749e-06, 'Greens': 1.6430492035729749e-06, 'evidencing': 1.6430492035729749e-06, 'aptitude': 3.2860984071459497e-06, 'Woodberry': 1.6430492035729749e-06, 'jazzy': 1.6430492035729749e-06, 'Strut': 1.6430492035729749e-06, 'Stuff': 1.6430492035729749e-06, 'playmates': 2.4645738053594624e-06, 'Gullah': 1.6430492035729749e-06, 'expressivness': 1.6430492035729749e-06, 'half-brother': 1.6430492035729749e-06, 'absent-mindedly': 3.2860984071459497e-06, 'encumbrances': 1.6430492035729749e-06, "Mercer's": 7.393721416078387e-06, 'lyricists': 2.4645738053594624e-06, '$300,000': 1.6430492035729749e-06, 'best-hearted': 1.6430492035729749e-06, 'absent-minded': 2.4645738053594624e-06, 'instructing': 2.4645738053594624e-06, 'one-act-play': 1.6430492035729749e-06, 'fourth-flight': 1.6430492035729749e-06, 'walk-up': 1.6430492035729749e-06, 'washbasin': 1.6430492035729749e-06, 'apocryphal': 1.6430492035729749e-06, 'monacle': 4.929147610718925e-06, 'aspiring': 1.6430492035729749e-06, 'imprint': 1.6430492035729749e-06, 'malfeasant': 1.6430492035729749e-06, 'Guild': 4.107623008932437e-06, 'Scared': 2.4645738053594624e-06, 'Holloway': 1.6430492035729749e-06, 'Gershwin': 1.6430492035729749e-06, 'Harburg': 2.4645738053594624e-06, 'Entrance': 1.6430492035729749e-06, 'stellar': 1.6430492035729749e-06, 'Meehan': 1.6430492035729749e-06, 'Mercers': 1.6430492035729749e-06, 'misplacing': 1.6430492035729749e-06, 'Whiteman': 4.107623008932437e-06, 'Rhythm': 1.6430492035729749e-06, "Satan's": 1.6430492035729749e-06, "Li'l": 1.6430492035729749e-06, 'Lamb': 1.6430492035729749e-06, 'Hoagy': 1.6430492035729749e-06, 'Snowball': 1.6430492035729749e-06, 'relyriced': 1.6430492035729749e-06, 'Lazybones': 2.4645738053594624e-06, 'song-writing': 1.6430492035729749e-06, 'Benny': 4.107623008932437e-06, 'Ziggy': 1.6430492035729749e-06, 'Heusen': 1.6430492035729749e-06, 'Whiting': 2.4645738053594624e-06, 'Donaldson': 2.4645738053594624e-06, 'Woodin': 1.6430492035729749e-06, '1932-33': 1.6430492035729749e-06, 'Hooray': 1.6430492035729749e-06, 'Tenderfoot': 1.6430492035729749e-06, 'Castles': 1.6430492035729749e-06, 'Marvelous': 2.4645738053594624e-06, 'Whirling': 1.6430492035729749e-06, 'Dervish': 1.6430492035729749e-06, 'Jeepers': 1.6430492035729749e-06, 'Creepers': 1.6430492035729749e-06, 'puckish': 1.6430492035729749e-06, 'colloquial': 2.4645738053594624e-06, 'quasi-folk': 1.6430492035729749e-06, 'absentia': 1.6430492035729749e-06, "Harburg's": 1.6430492035729749e-06, "Arlen's": 1.6430492035729749e-06, 'Koehler': 3.2860984071459497e-06, 'American-Negro': 3.2860984071459497e-06, 'eight-bar': 1.6430492035729749e-06, "There'll": 1.6430492035729749e-06, "there'll": 2.4645738053594624e-06, 'jot': 1.6430492035729749e-06, "Comin'": 1.6430492035729749e-06, 'spirituals': 1.6430492035729749e-06, 'Negroid': 1.6430492035729749e-06, 'Thoroughly': 2.4645738053594624e-06, 'folk-music': 1.6430492035729749e-06, 'Spirituals': 1.6430492035729749e-06, 'allusions': 4.929147610718925e-06, 'hallelujahs': 1.6430492035729749e-06, 'cubbyhole': 1.6430492035729749e-06, 'stall': 1.4787442832156774e-05, 'chairing': 1.6430492035729749e-06, 'bards': 2.4645738053594624e-06, 'terror-stricken': 1.6430492035729749e-06, 'unrehearsed': 1.6430492035729749e-06, 'lavatory': 4.107623008932437e-06, 'skimpy': 1.6430492035729749e-06, 'unused': 3.2860984071459497e-06, 'convalescence': 1.6430492035729749e-06, 'Robbie': 3.2860984071459497e-06, 'battle-shattered': 1.6430492035729749e-06, 'pals': 1.6430492035729749e-06, 'Herford': 4.929147610718925e-06, "Herford's": 1.6430492035729749e-06, 'gnome': 1.6430492035729749e-06, 'dangled': 2.4645738053594624e-06, 'highball': 4.107623008932437e-06, 'jakes': 1.6430492035729749e-06, 'stowed': 2.4645738053594624e-06, 'rest-room': 1.6430492035729749e-06, 'hulking': 2.4645738053594624e-06, 'artist-author': 1.6430492035729749e-06, 'Waterloo': 1.6430492035729749e-06, 'Pardon': 2.4645738053594624e-06, "Pliny's": 1.6430492035729749e-06, 'peed': 1.6430492035729749e-06, 'Honorable': 3.2860984071459497e-06, 'disarranged': 1.6430492035729749e-06, 'edit': 2.4645738053594624e-06, 'Reporter': 1.6430492035729749e-06, "Hearst's": 5.750672212505412e-06, 'telegraphic': 3.2860984071459497e-06, 'fatboy': 1.6430492035729749e-06, 'Cossack': 3.2860984071459497e-06, 'Hetman': 1.0679819823224336e-05, "Hetman's": 7.393721416078387e-06, 'well-fleshed': 1.6430492035729749e-06, 'Hospice': 1.6430492035729749e-06, 'barbaric': 1.6430492035729749e-06, 'immobility': 4.107623008932437e-06, 'Hearst': 4.025470548753788e-05, 'self-ordained': 1.6430492035729749e-06, 'unfrocking': 1.6430492035729749e-06, 'Brisbane': 3.2860984071459497e-06, 'S.S.': 1.6430492035729749e-06, 'Carvalho': 2.4645738053594624e-06, 'Runyon': 3.2860984071459497e-06, "Demon's": 1.6430492035729749e-06, 'say-so': 1.6430492035729749e-06, 'wrong-o': 1.6430492035729749e-06, 'Statue': 1.6430492035729749e-06, 'Baer': 4.929147610718925e-06, "Vic's": 1.6430492035729749e-06, 'Gentlemen': 1.6430492035729749e-06, 'Armistice': 2.4645738053594624e-06, 'dream-ridden': 1.6430492035729749e-06, 'Duponts': 1.6430492035729749e-06, 'confide': 3.2860984071459497e-06, 'parlors': 1.6430492035729749e-06, 'monkey-gland': 1.6430492035729749e-06, 'sleuthing': 1.6430492035729749e-06, 'shadowing': 4.929147610718925e-06, 'ring-around-the-rosie': 1.6430492035729749e-06, 'Enrico': 2.4645738053594624e-06, "lady's": 4.929147610718925e-06, 'monkey': 8.215246017864873e-06, 'McCay': 2.4645738053594624e-06, 'crepe': 1.6430492035729749e-06, 'spirit-gum': 1.6430492035729749e-06, 'Friars': 1.6430492035729749e-06, 'auburn': 1.6430492035729749e-06, "Longfellow's": 2.4645738053594624e-06, 'Maximilian': 1.6430492035729749e-06, 'muff': 1.6430492035729749e-06, 'derby': 4.107623008932437e-06, 'horn-rim': 1.6430492035729749e-06, 'nihilist': 2.4645738053594624e-06, 'make-up': 4.929147610718925e-06, 'mirthless': 1.6430492035729749e-06, 'telephones': 4.929147610718925e-06, 'whizzed': 2.4645738053594624e-06, 'wrinkled': 1.0679819823224336e-05, 'brow': 5.750672212505412e-06, 'goggle-eyed': 2.4645738053594624e-06, 'fruitless': 4.929147610718925e-06, 'riddance': 1.6430492035729749e-06, 'bucket-shop': 1.6430492035729749e-06, 'Nat': 1.6430492035729749e-06, 'Ferber': 1.6430492035729749e-06, 'Helm': 1.6430492035729749e-06, 'conceits': 2.4645738053594624e-06, 'brandishing': 4.929147610718925e-06, 'eleventh-floor': 1.6430492035729749e-06, 'W.R.': 1.6430492035729749e-06, 'unfinished': 2.4645738053594624e-06, 'coroner': 4.107623008932437e-06, 'Damon': 1.6430492035729749e-06, "Runyon's": 1.6430492035729749e-06, 'foisted': 1.6430492035729749e-06, 'syndicated': 1.6430492035729749e-06, 'ten-foot': 3.2860984071459497e-06, 'grunted': 8.215246017864873e-06, 'Menas': 1.6430492035729749e-06, 'neurologist': 1.6430492035729749e-06, 'affable': 1.6430492035729749e-06, 'blurted': 3.2860984071459497e-06, "Gregory's": 1.6430492035729749e-06, 'Mama': 3.6147082478605446e-05, 'condolences': 1.6430492035729749e-06, 'Backstairs': 1.6430492035729749e-06, 'coax': 1.6430492035729749e-06, 'shawls': 2.4645738053594624e-06, 'Dresses': 1.6430492035729749e-06, 'shawl': 3.2860984071459497e-06, 'banister': 4.929147610718925e-06, 'stairway': 5.750672212505412e-06, "Coolidge's": 2.4645738053594624e-06, 'wrist': 8.215246017864873e-06, "Coolidges'": 2.4645738053594624e-06, 'Hounds': 1.6430492035729749e-06, "Jack's": 9.85829522143785e-06, 'immortalized': 1.6430492035729749e-06, 'Christy': 1.6430492035729749e-06, 'manikin': 1.6430492035729749e-06, 'Smithsonian': 3.2860984071459497e-06, 'lengthened': 2.4645738053594624e-06, 'rhinestones': 1.6430492035729749e-06, 'memento': 1.6430492035729749e-06, 'fondly': 4.107623008932437e-06, 'Calamity': 2.4645738053594624e-06, 'Timmy': 1.6430492035729749e-06, 'Blackberry': 2.4645738053594624e-06, 'wakened': 1.6430492035729749e-06, 'accompany': 7.393721416078387e-06, 'Prudence': 4.107623008932437e-06, 'snow-white': 1.6430492035729749e-06, 'leashes': 1.6430492035729749e-06, 'tidied': 1.6430492035729749e-06, 'Coolidges': 3.2860984071459497e-06, 'Stearns': 3.2860984071459497e-06, 'tab-lifter': 1.6430492035729749e-06, 'Hardings': 1.6430492035729749e-06, 'Rumania': 1.6430492035729749e-06, 'proudest': 1.6430492035729749e-06, 'frazzled': 1.6430492035729749e-06, "Emmett's": 1.6430492035729749e-06, 'lungs': 1.7252016637516235e-05, 'Coupal': 1.6430492035729749e-06, 'Emmett': 4.929147610718925e-06, 'muggy': 1.6430492035729749e-06, 'receptions': 1.6430492035729749e-06, "Mama's": 2.4645738053594624e-06, 'horrified': 4.107623008932437e-06, 'swirled': 4.929147610718925e-06, 'Impressive': 1.6430492035729749e-06, 'enumeration': 1.6430492035729749e-06, 'perceptions': 8.215246017864873e-06, 'non-Jews': 1.6430492035729749e-06, 'suppliers': 1.6430492035729749e-06, 'clannish': 1.6430492035729749e-06, 'monopolists': 1.6430492035729749e-06, 'cutthroat': 1.6430492035729749e-06, 'Diversity': 1.6430492035729749e-06, 'diversity': 1.0679819823224336e-05, 'Conventional': 2.4645738053594624e-06, 'self-correcting': 1.6430492035729749e-06, 'recheck': 1.6430492035729749e-06, 'usefully': 1.6430492035729749e-06, 'predispositions': 7.393721416078387e-06, 'self-victimized': 1.6430492035729749e-06, 'uncritically': 1.6430492035729749e-06, 'Predispositions': 1.6430492035729749e-06, "Lueger's": 2.4645738053594624e-06, 'fanaticism': 4.107623008932437e-06, 'anthology': 3.2860984071459497e-06, 'undo': 3.2860984071459497e-06, 'redo': 1.6430492035729749e-06, 'Gentile-Jewish': 4.929147610718925e-06, 'Comprehensive': 1.6430492035729749e-06, 'problem-solving': 2.4645738053594624e-06, 'epilogue': 1.6430492035729749e-06, 'claimant': 7.393721416078387e-06, 'self-styled': 2.4645738053594624e-06, 'multiplicity': 7.393721416078387e-06, 'Jewish-Gentile': 1.6430492035729749e-06, 'commonwealths': 1.6430492035729749e-06, 'Gentiles': 1.6430492035729749e-06, 'perennially': 2.4645738053594624e-06, 'restructured': 1.6430492035729749e-06, 'conformance': 2.4645738053594624e-06, 'maximization': 6.5721968142918994e-06, 'inharmonious': 1.6430492035729749e-06, 'outcomes': 9.85829522143785e-06, 'cumulate': 1.6430492035729749e-06, 'legacy': 4.929147610718925e-06, 'adversely': 3.2860984071459497e-06, 'nullified': 2.4645738053594624e-06, 'cognizant': 2.4645738053594624e-06, 'overburdened': 1.6430492035729749e-06, 'intercrisis': 1.6430492035729749e-06, 'remolding': 1.6430492035729749e-06, 'reaffirmation': 2.4645738053594624e-06, 'implementing': 3.2860984071459497e-06, 'enlightenment': 2.4645738053594624e-06, 'Sigmund': 1.6430492035729749e-06, 'punctuated': 4.107623008932437e-06, 'interviewer': 2.4645738053594624e-06, 'psychoanalyst': 1.6430492035729749e-06, 'self-observation': 1.6430492035729749e-06, 'symposium': 3.2860984071459497e-06, 'communicators': 1.6430492035729749e-06, 'specificity': 9.036770619651361e-06, 'recurring': 5.750672212505412e-06, 'clustering': 2.4645738053594624e-06, 'pseudo-thinking': 2.4645738053594624e-06, 'pseudo-feeling': 1.6430492035729749e-06, 'pseudo-willing': 1.6430492035729749e-06, 'Fromm': 1.3144393628583799e-05, 'instructs': 2.4645738053594624e-06, 'unreliable': 4.107623008932437e-06, "Reader's": 2.4645738053594624e-06, 'Digest': 2.4645738053594624e-06, 'idiosyncratic': 2.4645738053594624e-06, 'Flugel': 1.6430492035729749e-06, 'Ranyard': 1.6430492035729749e-06, 'Buber': 1.6430492035729749e-06, 'psychotherapeutic': 1.6430492035729749e-06, 'pre-literate': 1.6430492035729749e-06, 'prurient': 1.6430492035729749e-06, 'glossary': 3.2860984071459497e-06, 'Seldes': 1.6430492035729749e-06, 'Feeling': 4.107623008932437e-06, 'gratified': 3.2860984071459497e-06, 'cognate': 1.6430492035729749e-06, 'differentiated': 4.929147610718925e-06, 'purging': 2.4645738053594624e-06, "Beardsley's": 1.6430492035729749e-06, "Housman's": 2.4645738053594624e-06, 'beautify': 1.6430492035729749e-06, 'F.S.C.': 1.6430492035729749e-06, 'Northrop': 1.6430492035729749e-06, 'deflated': 1.6430492035729749e-06, 'common-sense': 2.4645738053594624e-06, 'ineffable': 1.6430492035729749e-06, 'enriched': 2.4645738053594624e-06, "Richards'": 1.6430492035729749e-06, 'earth-bound': 1.6430492035729749e-06, 'Wimsatt': 1.6430492035729749e-06, 'Cleanth': 1.6430492035729749e-06, 'Platonic': 3.2860984071459497e-06, 'compounding': 1.6430492035729749e-06, 'reconciling': 1.6430492035729749e-06, 'tensional': 1.6430492035729749e-06, 'stratagem': 1.6430492035729749e-06, 'devious': 1.6430492035729749e-06, 'uttering': 2.4645738053594624e-06, 'fireman': 1.6430492035729749e-06, 'mastering': 1.6430492035729749e-06, 'reliving': 2.4645738053594624e-06, 'imaginatively': 1.6430492035729749e-06, "Spinley's": 1.6430492035729749e-06, 'undereducated': 1.6430492035729749e-06, 'savoring': 3.2860984071459497e-06, 'subtlety': 1.6430492035729749e-06, 'researchable': 1.6430492035729749e-06, 'Sensibility': 1.6430492035729749e-06, 'Personal': 4.107623008932437e-06, 'Interpersonal': 1.6430492035729749e-06, 'Behavior': 1.6430492035729749e-06, 'Solomon': 2.4645738053594624e-06, 'Asch': 1.6430492035729749e-06, 'transcultural': 1.6430492035729749e-06, 'inferential': 2.4645738053594624e-06, 'wholes': 2.4645738053594624e-06, 'obverse': 1.6430492035729749e-06, 'triviality': 2.4645738053594624e-06, 'shallowness': 1.6430492035729749e-06, 'anaesthesia': 1.6430492035729749e-06, 'Collingwood': 2.4645738053594624e-06, 'snobbish': 2.4645738053594624e-06, 'music-hall': 1.6430492035729749e-06, 'picture-palace': 1.6430492035729749e-06, 'Chaucer': 1.6430492035729749e-06, 'Cimabue': 1.6430492035729749e-06, 'carvings': 2.4645738053594624e-06, 'cavemen': 1.6430492035729749e-06, 'colour-prints': 1.6430492035729749e-06, 'similarities': 2.4645738053594624e-06, 'confine': 2.4645738053594624e-06, 'stylistic': 1.6430492035729749e-06, 'interpenetrate': 1.6430492035729749e-06, 'immediacies': 1.6430492035729749e-06, 'sensuous': 2.4645738053594624e-06, 'recur': 2.4645738053594624e-06, 'perfectibility': 1.6430492035729749e-06, 'depravity': 3.2860984071459497e-06, 'literatures': 1.6430492035729749e-06, "Burns's": 1.6430492035729749e-06, "Hopkins'": 1.6430492035729749e-06, 'thunder-purple': 1.6430492035729749e-06, 'sea-beach': 1.6430492035729749e-06, 'plumed': 1.6430492035729749e-06, 'Thunder': 2.4645738053594624e-06, 'unplumbed': 1.6430492035729749e-06, 'estranging': 1.6430492035729749e-06, 'Understanding': 2.4645738053594624e-06, 'atypical': 1.6430492035729749e-06, 'labelled': 2.4645738053594624e-06, '-ism': 2.4645738053594624e-06, "Shelley's": 6.5721968142918994e-06, 'Stoicism': 3.2860984071459497e-06, "Henley's": 2.4645738053594624e-06, 'Invictus': 1.6430492035729749e-06, 'Hellenic': 5.750672212505412e-06, 'self-mastery': 1.6430492035729749e-06, 'Stoic': 3.2860984071459497e-06, "Milton's": 5.750672212505412e-06, 'sonnet': 3.2860984071459497e-06, 'thematic': 1.6430492035729749e-06, "historian's": 3.2860984071459497e-06, 'Regarded': 1.6430492035729749e-06, 're-thinking': 1.6430492035729749e-06, 'ipso': 1.6430492035729749e-06, 'exhibiting': 5.750672212505412e-06, 'secondly': 1.6430492035729749e-06, 'Reformation': 2.4645738053594624e-06, 'scripture': 1.6430492035729749e-06, 'familarity': 1.6430492035729749e-06, 'Plutarch': 1.6430492035729749e-06, 'Montaigne': 2.4645738053594624e-06, 'dialogues': 1.6430492035729749e-06, "Coleridge's": 2.4645738053594624e-06, 'plundering': 1.6430492035729749e-06, "Alexander's": 3.2860984071459497e-06, 'Wordsworth': 2.4645738053594624e-06, 'romantics': 4.929147610718925e-06, "Hegel's": 1.6430492035729749e-06, 'tragedians': 2.4645738053594624e-06, 'elimination': 8.215246017864873e-06, 'unfit': 1.6430492035729749e-06, 'caveat': 1.6430492035729749e-06, 'dictate': 3.2860984071459497e-06, 'disclaimed': 1.6430492035729749e-06, 'forgery': 1.6430492035729749e-06, 'respite': 2.4645738053594624e-06, 'joyful': 1.6430492035729749e-06, 'Judiciary': 1.6430492035729749e-06, 'coal-railroad': 1.6430492035729749e-06, 'Shearn': 1.6430492035729749e-06, '$60,000': 1.6430492035729749e-06, 'quiescent': 2.4645738053594624e-06, 'netting': 1.6430492035729749e-06, '$20,000,000': 1.6430492035729749e-06, 'Hatred': 1.6430492035729749e-06, 'pariah': 1.6430492035729749e-06, 'disowned': 2.4645738053594624e-06, 'Inherently': 1.6430492035729749e-06, 'party-line': 1.6430492035729749e-06, 'bulldoze': 1.6430492035729749e-06, 'blazon': 1.6430492035729749e-06, 'infamy': 1.6430492035729749e-06, 'balked': 2.4645738053594624e-06, 'Lessons': 1.6430492035729749e-06, 'graybeard': 1.6430492035729749e-06, 'detestation': 1.6430492035729749e-06, 'terriers': 1.6430492035729749e-06, 'snapping': 8.215246017864873e-06, 'demoralizing': 1.6430492035729749e-06, 'old-line': 1.6430492035729749e-06, 'Platoons': 1.6430492035729749e-06, 'supporter': 3.2860984071459497e-06, 'sensationalism': 2.4645738053594624e-06, 'seduction': 3.2860984071459497e-06, 'Offers': 1.6430492035729749e-06, 'quoting': 2.4645738053594624e-06, 'magnates': 1.6430492035729749e-06, 'spoils': 1.6430492035729749e-06, 'bandwagon': 1.6430492035729749e-06, 'bellwethers': 1.6430492035729749e-06, 'Boss': 2.4645738053594624e-06, 'industriously': 2.4645738053594624e-06, 'Watterson': 1.6430492035729749e-06, 'Courier-Journal': 1.6430492035729749e-06, 'constituency': 3.2860984071459497e-06, 'splenetic': 1.6430492035729749e-06, 'Carmack': 2.4645738053594624e-06, 'disgrace': 3.2860984071459497e-06, 'pro-Hearst': 1.6430492035729749e-06, 'Devery': 2.4645738053594624e-06, '[': 2.4645738053594624e-06, ']': 2.4645738053594624e-06, "buildin'": 1.6430492035729749e-06, "Indiana's": 1.6430492035729749e-06, 'unblushing': 1.6430492035729749e-06, 'multi-millionaire': 1.6430492035729749e-06, 'retainers': 1.6430492035729749e-06, 'confer': 3.2860984071459497e-06, 'kingpin': 1.6430492035729749e-06, 'surreptitiously': 3.2860984071459497e-06, 'Koenigsberg': 2.4645738053594624e-06, 'despairingly': 4.107623008932437e-06, 'grinning': 6.5721968142918994e-06, 'Ihmsen': 1.6430492035729749e-06, 'intently': 4.107623008932437e-06, "Chief's": 2.4645738053594624e-06, 'aspirant': 2.4645738053594624e-06, 'spanning': 1.6430492035729749e-06, 'money-minded': 1.6430492035729749e-06, 'Floradora': 1.6430492035729749e-06, 'hansom': 1.6430492035729749e-06, "Trevelyan's": 1.0679819823224336e-05, "Garibaldi's": 7.393721416078387e-06, 'Garibaldi': 1.1501344425010824e-05, 'Trevelyan': 1.4787442832156774e-05, 'consular': 1.6430492035729749e-06, 'Messina': 1.6430492035729749e-06, 'Emmanuel': 1.6430492035729749e-06, 'Statuto': 1.6430492035729749e-06, 'Radetzky': 1.6430492035729749e-06, 'Galantuomo': 1.6430492035729749e-06, 'papal': 5.750672212505412e-06, 'assessing': 9.036770619651361e-06, 'trilogy': 4.107623008932437e-06, 'Manin': 2.4645738053594624e-06, 'Venetian': 5.750672212505412e-06, 'overemphasis': 1.6430492035729749e-06, 'Grey': 4.929147610718925e-06, 'appreciative': 2.4645738053594624e-06, "Bright's": 2.4645738053594624e-06, 'Peel': 1.6430492035729749e-06, 'Crimean': 2.4645738053594624e-06, 'Nineteenth-century': 1.6430492035729749e-06, 'damning': 1.6430492035729749e-06, 'shortsightedness': 1.6430492035729749e-06, 'Characteristically': 1.6430492035729749e-06, "Grey's": 1.6430492035729749e-06, 'Northumberland': 1.6430492035729749e-06, 'contemptible': 2.4645738053594624e-06, 'interplay': 5.750672212505412e-06, 'dynamics': 4.107623008932437e-06, 'marionettes': 1.6430492035729749e-06, 'Liberal-Radical': 1.6430492035729749e-06, 'deserted': 1.3144393628583799e-05, 'temperately': 1.6430492035729749e-06, 'pre-French': 1.6430492035729749e-06, 'merges': 2.4645738053594624e-06, 'medley': 1.6430492035729749e-06, 'unconnected': 2.4645738053594624e-06, '1870': 2.4645738053594624e-06, 'reprinted': 2.4645738053594624e-06, 'Lowell': 5.750672212505412e-06, 'kings': 2.4645738053594624e-06, 'schoolboys': 1.6430492035729749e-06, 'deteriorates': 1.6430492035729749e-06, 'excursions': 2.4645738053594624e-06, 'boroughs': 2.4645738053594624e-06, 'surveys': 9.85829522143785e-06, 'militantly': 1.6430492035729749e-06, 'self-satisfaction': 4.107623008932437e-06, 'humanistic': 2.4645738053594624e-06, 'Tolerance': 1.6430492035729749e-06, 'Regius': 2.4645738053594624e-06, 'Blenheim': 4.929147610718925e-06, 'Ramillies': 2.4645738053594624e-06, 'Wycliffe': 1.6430492035729749e-06, "Macaulay's": 2.4645738053594624e-06, '1702-14': 1.6430492035729749e-06, 'eras': 2.4645738053594624e-06, 'charitably': 1.6430492035729749e-06, 'hazes': 1.6430492035729749e-06, 'evocation': 1.6430492035729749e-06, 'skilfully': 1.6430492035729749e-06, 'Savoy': 4.107623008932437e-06, 'etched': 2.4645738053594624e-06, 'reread': 4.107623008932437e-06, 'copes': 1.6430492035729749e-06, 'expectant': 3.2860984071459497e-06, 'Kehl': 9.85829522143785e-06, 'Rhine': 6.5721968142918994e-06, 'Strasbourg': 7.393721416078387e-06, 'Franco-German': 1.6430492035729749e-06, 'immodesty': 1.6430492035729749e-06, 'overturning': 2.4645738053594624e-06, 'streetcars': 2.4645738053594624e-06, 'Alarmed': 1.6430492035729749e-06, 'cordon': 2.4645738053594624e-06, 'waspish': 3.2860984071459497e-06, 'bicycle': 4.107623008932437e-06, 'barricade': 3.2860984071459497e-06, 'titre': 2.4645738053594624e-06, "d'identite": 1.6430492035729749e-06, 'bien': 1.6430492035729749e-06, 'Alors': 1.6430492035729749e-06, 'imperiously': 2.4645738053594624e-06, 'uproariously': 1.6430492035729749e-06, 'Mais': 2.4645738053594624e-06, 'Ministry': 5.750672212505412e-06, 'Visa': 1.6430492035729749e-06, 'compatriot': 1.6430492035729749e-06, 'Bravo': 1.6430492035729749e-06, 'backpack': 1.6430492035729749e-06, 'guardhouse': 1.6430492035729749e-06, 'vigil': 1.6430492035729749e-06, 'mustached': 3.2860984071459497e-06, 'thanking': 3.2860984071459497e-06, 'thoughtfulness': 1.6430492035729749e-06, 'ludicrousness': 1.6430492035729749e-06, 'eventfully': 1.6430492035729749e-06, 'Andre': 3.2860984071459497e-06, 'Nouvelle': 1.6430492035729749e-06, 'Alsatian': 3.2860984071459497e-06, 'brigade': 1.6430492035729749e-06, 'governess': 3.2860984071459497e-06, 'Sighting': 1.6430492035729749e-06, 'stateless': 1.6430492035729749e-06, 'trench': 2.4645738053594624e-06, 'chill': 1.232286902679731e-05, 'necessitating': 1.6430492035729749e-06, 'scouring': 4.107623008932437e-06, 'tar-soaked': 1.6430492035729749e-06, 'crackled': 1.6430492035729749e-06, 'ashen': 2.4645738053594624e-06, 'kettle': 3.2860984071459497e-06, 'petits': 2.4645738053594624e-06, 'France-Germany': 1.6430492035729749e-06, 'trickling': 2.4645738053594624e-06, 'talkative': 4.107623008932437e-06, 'after-school': 2.4645738053594624e-06, "Grimm's": 1.6430492035729749e-06, 'Heidelberg': 1.6430492035729749e-06, 'Baden-Baden': 1.6430492035729749e-06, 'Stuttgart': 1.6430492035729749e-06, '26th': 2.4645738053594624e-06, 'sluggishly': 2.4645738053594624e-06, 'patter': 3.2860984071459497e-06, 'fitful': 1.6430492035729749e-06, '27th': 1.6430492035729749e-06, 'pallid': 3.2860984071459497e-06, 'rasping': 1.6430492035729749e-06, 'entreated': 2.4645738053594624e-06, 'mistaking': 2.4645738053594624e-06, 'regain': 1.6430492035729749e-06, "Davis'": 2.4645738053594624e-06, 'Babel': 2.4645738053594624e-06, 'Shake': 1.6430492035729749e-06, 'Campaign': 1.6430492035729749e-06, 'hug': 3.2860984071459497e-06, 'incongruities': 2.4645738053594624e-06, 'Citizen': 2.4645738053594624e-06, 'adieu': 1.6430492035729749e-06, 'pre-assault': 1.6430492035729749e-06, 'broadside': 3.2860984071459497e-06, "Cleburne's": 1.6430492035729749e-06, 'parapet': 1.6430492035729749e-06, 'infantrymen': 1.6430492035729749e-06, 'streaming': 6.5721968142918994e-06, 'Rebels': 4.929147610718925e-06, 'surrendered': 6.5721968142918994e-06, "officers'": 3.2860984071459497e-06, "Thomas'": 5.750672212505412e-06, 'breastworks': 1.6430492035729749e-06, 'Fourteenth': 1.6430492035729749e-06, 'Thirty-eighth': 1.6430492035729749e-06, "Buell's": 1.6430492035729749e-06, 'galloped': 1.6430492035729749e-06, 'Peach': 1.6430492035729749e-06, "Ward's": 1.6430492035729749e-06, 'crumbling': 2.4645738053594624e-06, 'Jonesborough': 1.6430492035729749e-06, 'sundown': 5.750672212505412e-06, 'reconnaissanace': 1.6430492035729749e-06, 'Armies': 1.6430492035729749e-06, "Hardee's": 1.6430492035729749e-06, "Lovejoy's": 2.4645738053594624e-06, 'deployed': 3.2860984071459497e-06, "Slocum's": 2.4645738053594624e-06, 're-examined': 1.6430492035729749e-06, 'whistled': 5.750672212505412e-06, 'unmurmuring': 1.6430492035729749e-06, 'heroism': 3.2860984071459497e-06, 'wholeheartedly': 1.6430492035729749e-06, 'despondency': 2.4645738053594624e-06, 'Proposals': 2.4645738053594624e-06, 'armistice': 2.4645738053594624e-06, '10:05': 1.6430492035729749e-06, 'perseverance': 1.6430492035729749e-06, 'annals': 4.107623008932437e-06, 'inexplicably': 1.6430492035729749e-06, 'thirty-mile': 1.6430492035729749e-06, 'skirmishing': 2.4645738053594624e-06, '22,807': 1.6430492035729749e-06, '37,081': 1.6430492035729749e-06, 'periscopes': 1.6430492035729749e-06, 'booby': 3.2860984071459497e-06, 'traps': 7.393721416078387e-06, 'armored': 3.2860984071459497e-06, 'sharpshooters': 1.6430492035729749e-06, 'treetops': 1.6430492035729749e-06, 'forerunners': 1.6430492035729749e-06, 'presaged': 1.6430492035729749e-06, 'anesthetics': 1.6430492035729749e-06, 'coordinates': 5.750672212505412e-06, 'o': 1.6430492035729749e-06, '239': 2.4645738053594624e-06, '247': 2.4645738053594624e-06, '272': 1.6430492035729749e-06, 'pickets': 2.4645738053594624e-06, 'lithograph': 1.6430492035729749e-06, 'Orders': 4.929147610718925e-06, 'whistle': 4.107623008932437e-06, 'locomotives': 1.6430492035729749e-06, 'precedent-based': 1.6430492035729749e-06, 'horseman': 1.6430492035729749e-06, 'footman': 1.6430492035729749e-06, 'debilitated': 2.4645738053594624e-06, 'horseflesh': 1.6430492035729749e-06, 'retreats': 1.6430492035729749e-06, 'railways': 1.6430492035729749e-06, "Garrard's": 1.6430492035729749e-06, 'Covington': 2.4645738053594624e-06, 'Forrest': 2.4645738053594624e-06, 'McPherson': 1.6430492035729749e-06, 'Snake': 2.4645738053594624e-06, 'van': 2.4645738053594624e-06, 'Mounted': 1.6430492035729749e-06, "McPherson's": 1.6430492035729749e-06, "Polk's": 1.6430492035729749e-06, 'galls': 1.6430492035729749e-06, 'fords': 2.4645738053594624e-06, 'Brownlow': 2.4645738053594624e-06, 'Brigade': 2.4645738053594624e-06, 'pits': 4.107623008932437e-06, 'pursuers': 2.4645738053594624e-06, 'Rank': 2.4645738053594624e-06, 'Merited': 1.6430492035729749e-06, 'Meynell': 6.5721968142918994e-06, 'Patmore': 1.6430492035729749e-06, "M.'s": 1.6430492035729749e-06, 'Lymington': 1.6430492035729749e-06, 'scrupulosity': 1.6430492035729749e-06, 'Pantasaph': 1.6430492035729749e-06, 'confessions': 1.6430492035729749e-06, 'Wilde': 1.6430492035729749e-06, "daughter's": 4.107623008932437e-06, 'recommence': 1.6430492035729749e-06, 'Bohemian': 1.6430492035729749e-06, 'Katie': 1.3144393628583799e-05, 'misunderstand': 1.6430492035729749e-06, 'unwarrantable': 2.4645738053594624e-06, 'Maggie': 1.97165904428757e-05, 'Brien': 1.6430492035729749e-06, 'Godfrey': 1.6430492035729749e-06, 'Burr': 4.929147610718925e-06, 'Rushall': 1.6430492035729749e-06, 'Staffordshire': 1.6430492035729749e-06, 'deepen': 1.6430492035729749e-06, "Katie's": 2.4645738053594624e-06, 'undeserved': 1.6430492035729749e-06, 'kindness': 4.929147610718925e-06, 'mementos': 1.6430492035729749e-06, 'orphaned': 2.4645738053594624e-06, 'father-brother': 1.6430492035729749e-06, 'lodgment': 1.6430492035729749e-06, 'purposed': 1.6430492035729749e-06, 'favour': 1.6430492035729749e-06, 'to-morrow': 1.6430492035729749e-06, 'good-bye': 4.107623008932437e-06, 'Wilfrid': 1.6430492035729749e-06, 'inundating': 1.6430492035729749e-06, 'sonnets': 2.4645738053594624e-06, 'Ad': 1.6430492035729749e-06, 'Amicam': 1.6430492035729749e-06, "Connolly's": 1.6430492035729749e-06, 'Petrarchan': 1.6430492035729749e-06, "writer's": 1.6430492035729749e-06, "Song's": 1.6430492035729749e-06, 'Date': 1.6430492035729749e-06, "song's": 1.6430492035729749e-06, 'nobler': 1.6430492035729749e-06, 'Than': 2.4645738053594624e-06, 'Lightly': 1.6430492035729749e-06, 'bravest-feathered': 1.6430492035729749e-06, 'Whose': 1.6430492035729749e-06, 'dearer': 1.6430492035729749e-06, 'presences': 2.4645738053594624e-06, 'self-dramatization': 1.6430492035729749e-06, 'misfortunes': 1.6430492035729749e-06, 'protestations': 3.2860984071459497e-06, 'Highest': 1.6430492035729749e-06, "Dian's": 1.6430492035729749e-06, 'Lap': 1.6430492035729749e-06, 'Narrow': 2.4645738053594624e-06, 'Vessel': 1.6430492035729749e-06, 'overtook': 1.6430492035729749e-06, 'Danchin': 1.6430492035729749e-06, 'opium': 1.3965918230370285e-05, 'draughts': 2.4645738053594624e-06, 'laudanum': 3.2860984071459497e-06, 'rationed': 3.2860984071459497e-06, 'vagrant': 1.6430492035729749e-06, "Meynell's": 1.6430492035729749e-06, 'despondent': 2.4645738053594624e-06, 'judicious': 1.6430492035729749e-06, 'carefulness': 1.6430492035729749e-06, 'unquestionable': 1.6430492035729749e-06, 'unmethodical': 1.6430492035729749e-06, 'Reviewing': 1.6430492035729749e-06, "Davidson's": 2.4645738053594624e-06, 'metrical': 2.4645738053594624e-06, 'stoop': 4.107623008932437e-06, 'K.C.': 1.6430492035729749e-06, 'cloth-of-gold': 1.6430492035729749e-06, 'Laurence': 3.2860984071459497e-06, 'Housman': 1.6430492035729749e-06, 'diction': 5.750672212505412e-06, 'intellectuality': 1.6430492035729749e-06, 'inversion': 2.4645738053594624e-06, 'allurement': 1.6430492035729749e-06, 'Tempter': 1.6430492035729749e-06, 'trekked': 1.6430492035729749e-06, 'Kamieniec': 2.4645738053594624e-06, 'Thence': 1.6430492035729749e-06, 'Podolia': 1.6430492035729749e-06, 'Nogay': 2.4645738053594624e-06, 'Tartary': 2.4645738053594624e-06, 'Yedisan': 1.6430492035729749e-06, 'Bug': 1.6430492035729749e-06, 'Zhitzhakli': 1.6430492035729749e-06, '1788': 3.2860984071459497e-06, "Catherine's": 2.4645738053594624e-06, '1774': 1.6430492035729749e-06, 'legions': 1.6430492035729749e-06, 'annex': 1.6430492035729749e-06, 'Crimea': 1.6430492035729749e-06, 'Crescent': 1.6430492035729749e-06, 'suzerainty': 1.6430492035729749e-06, "Sea's": 1.6430492035729749e-06, 'lackadaisical': 1.6430492035729749e-06, 'Czarina': 2.4645738053594624e-06, 'Giaour': 1.6430492035729749e-06, 'Potemkin': 4.107623008932437e-06, 'Caucasus': 1.6430492035729749e-06, 'Carpathians': 1.6430492035729749e-06, "Joseph's": 2.4645738053594624e-06, 'marshlands': 1.6430492035729749e-06, 'Taurida': 1.6430492035729749e-06, 'Littlepage': 9.036770619651361e-06, "Potemkin's": 3.2860984071459497e-06, 'Ekaterinoslav': 1.6430492035729749e-06, 'irregulars': 1.6430492035729749e-06, "Islam's": 1.6430492035729749e-06, 'Oczakov': 2.4645738053594624e-06, 'Chamberlain': 1.6430492035729749e-06, 'Repnin': 2.4645738053594624e-06, 'longish': 1.6430492035729749e-06, 'arching': 1.6430492035729749e-06, 'brows': 4.929147610718925e-06, 'quizzical': 1.6430492035729749e-06, 'Mephistopheles': 1.6430492035729749e-06, 'Ribas': 1.6430492035729749e-06, 'conniver': 1.6430492035729749e-06, 'blacksmith': 2.4645738053594624e-06, 'fawned': 1.6430492035729749e-06, 'daggerman': 1.6430492035729749e-06, 'Czar': 1.6430492035729749e-06, 'procure': 4.107623008932437e-06, 'stiletto': 1.6430492035729749e-06, 'Ligne': 1.6430492035729749e-06, 'Pallavicini': 1.6430492035729749e-06, 'courtier': 2.4645738053594624e-06, 'Madrid': 1.6430492035729749e-06, 'Milan': 1.6430492035729749e-06, 'Chevalier': 1.6430492035729749e-06, 'Litta': 1.6430492035729749e-06, 'Saxony': 1.6430492035729749e-06, 'Anhalt-Bernburg': 1.6430492035729749e-06, "Czarina's": 3.2860984071459497e-06, 'kindnesses': 1.6430492035729749e-06, 'sincerest': 1.6430492035729749e-06, 'vexed': 2.4645738053594624e-06, 'Parisian': 3.2860984071459497e-06, 'Damas': 1.6430492035729749e-06, "Littlepage's": 1.6430492035729749e-06, 'artillerist': 1.6430492035729749e-06, 'Prevost': 1.6430492035729749e-06, 'Segur': 1.6430492035729749e-06, 'subaltern': 1.6430492035729749e-06, "colonel's": 2.4645738053594624e-06, "Jones's": 1.6430492035729749e-06, "Nassau's": 1.6430492035729749e-06, "Stanislas'": 1.6430492035729749e-06, 'Glayre': 1.6430492035729749e-06, 'Pe': 1.6430492035729749e-06, 'aide-de-camp': 1.6430492035729749e-06, 'Serenissimus': 3.2860984071459497e-06, "Prince's": 3.2860984071459497e-06, 'sapped': 3.2860984071459497e-06, 'comb': 5.750672212505412e-06, '200-man': 1.6430492035729749e-06, 'Sarti': 1.6430492035729749e-06, 'caress': 1.6430492035729749e-06, 'divan': 5.750672212505412e-06, 'rose-pink': 1.6430492035729749e-06, 'tapis': 1.6430492035729749e-06, 'Filigreed': 1.6430492035729749e-06, 'exuded': 2.4645738053594624e-06, 'aromas': 2.4645738053594624e-06, 'Araby': 1.6430492035729749e-06, 'billiard': 1.6430492035729749e-06, 'beribboned': 1.6430492035729749e-06, 'cuirassiers': 1.6430492035729749e-06, 'tufts': 1.6430492035729749e-06, 'lewdly': 1.6430492035729749e-06, 'nieces': 1.6430492035729749e-06, 'Bauer': 1.6430492035729749e-06, 'fancied': 2.4645738053594624e-06, 'haughtiness': 1.6430492035729749e-06, 'personified': 1.6430492035729749e-06, 'collared': 1.6430492035729749e-06, 'agleam': 1.6430492035729749e-06, 'sulkily': 1.6430492035729749e-06, 'downcast': 2.4645738053594624e-06, 'trance': 4.107623008932437e-06, 'besiege': 1.6430492035729749e-06, 'gratuitously': 2.4645738053594624e-06, 'eclat': 1.6430492035729749e-06, 'monsters': 3.2860984071459497e-06, 'ray': 3.2860984071459497e-06, 'Vasilievitch': 1.6430492035729749e-06, 'Suvorov': 5.750672212505412e-06, 'fifty-ninth': 1.6430492035729749e-06, 'worn-faced': 1.6430492035729749e-06, 'furrows': 1.6430492035729749e-06, "Suvorov's": 2.4645738053594624e-06, 'stooping': 4.107623008932437e-06, 'briskness': 1.6430492035729749e-06, 'warred': 1.6430492035729749e-06, 'Current': 3.2860984071459497e-06, 'Woe': 1.6430492035729749e-06, 'interviewee': 1.6430492035729749e-06, "don't-know's": 1.6430492035729749e-06, 'Despising': 1.6430492035729749e-06, 'slept': 2.300268885002165e-05, 'crowing': 3.2860984071459497e-06, 'cock': 4.929147610718925e-06, 'smithereens': 2.4645738053594624e-06, 'mew': 1.6430492035729749e-06, 'adored': 2.4645738053594624e-06, 'oddities': 1.6430492035729749e-06, 'peculiarity': 1.6430492035729749e-06, 'Underneath': 4.107623008932437e-06, 'best-educated': 1.6430492035729749e-06, 'dabbled': 1.6430492035729749e-06, 'whiskers': 3.2860984071459497e-06, 'shaven': 2.4645738053594624e-06, 'knots': 1.6430492035729749e-06, 'Stanislas': 1.6430492035729749e-06, 'Cossacks': 4.107623008932437e-06, 'geopolitical': 1.6430492035729749e-06, 'ex-bandits': 1.6430492035729749e-06, 'Zaporogian': 1.6430492035729749e-06, 'Dnieper': 1.6430492035729749e-06, 'Sienkiewicz': 1.6430492035729749e-06, 'Sword': 1.6430492035729749e-06, 'resettlement': 1.6430492035729749e-06, 'Bessarabia': 2.4645738053594624e-06, 'scimitar-wielding': 1.6430492035729749e-06, 'skirmishers': 1.6430492035729749e-06, 'demographic': 1.0679819823224336e-05, 'disorderliness': 1.6430492035729749e-06, 'plunderers': 1.6430492035729749e-06, 'donned': 3.2860984071459497e-06, 'tribal': 4.929147610718925e-06, 'ornamented': 3.2860984071459497e-06, 'worsted': 2.4645738053594624e-06, 'tassels': 1.6430492035729749e-06, 'boors': 1.6430492035729749e-06, 'levies': 2.4645738053594624e-06, 'shambling': 1.6430492035729749e-06, 'cogs': 1.6430492035729749e-06, 'queued': 1.6430492035729749e-06, 'greatcoated': 1.6430492035729749e-06, 'jackbooted': 1.6430492035729749e-06, 'Semple-Lisle': 1.6430492035729749e-06, 'smatterings': 1.6430492035729749e-06, 'insubordination': 2.4645738053594624e-06, 'Mando': 4.929147610718925e-06, 'Transparent': 1.6430492035729749e-06, 'uremia': 1.6430492035729749e-06, 'disapprovingly': 1.6430492035729749e-06, 'stubs': 2.4645738053594624e-06, 'thumped': 1.6430492035729749e-06, 'sheaf': 3.2860984071459497e-06, 'Klinico': 1.6430492035729749e-06, 'Brownapopolus': 1.6430492035729749e-06, 'siesta': 2.4645738053594624e-06, 'Deppy': 2.4645738053594624e-06, 'Despina': 1.6430492035729749e-06, 'Messinesi': 1.6430492035729749e-06, 'Ilka': 1.6430492035729749e-06, 'outs': 1.6430492035729749e-06, 'Acropolis': 5.750672212505412e-06, 'amphitheater': 1.6430492035729749e-06, 'curving': 4.107623008932437e-06, 'headless': 3.2860984071459497e-06, 'torsos': 3.2860984071459497e-06, 'Atlantes': 1.6430492035729749e-06, 'engravings': 1.6430492035729749e-06, 'schoolbooks': 1.6430492035729749e-06, 'quicken': 1.6430492035729749e-06, 'Uh': 4.107623008932437e-06, 'huh': 4.929147610718925e-06, 'Athens': 7.393721416078387e-06, 'awe-inspiring': 1.6430492035729749e-06, 'benediction': 2.4645738053594624e-06, '1687': 1.6430492035729749e-06, 'shattering': 5.750672212505412e-06, 'bombarding': 1.6430492035729749e-06, 'Nearby': 2.4645738053594624e-06, 'Athena': 1.6430492035729749e-06, 'caryatides': 1.6430492035729749e-06, 'Porch': 1.6430492035729749e-06, 'Maidens': 1.6430492035729749e-06, 'airily': 2.4645738053594624e-06, "Girls'": 1.6430492035729749e-06, 'Propylaea': 1.6430492035729749e-06, 'nugget': 1.6430492035729749e-06, 'Ghiberti': 1.6430492035729749e-06, 'baptistery': 1.6430492035729749e-06, 'fluted': 1.6430492035729749e-06, 'Evzone': 1.6430492035729749e-06, 'pompons': 1.6430492035729749e-06, 'Gun': 1.6430492035729746e-05, 'click': 2.4645738053594624e-06, 'skirts': 4.107623008932437e-06, 'Sakellariadis': 2.4645738053594624e-06, 'Aegean': 1.3144393628583799e-05, 'detoured': 2.4645738053594624e-06, 'Lumiere': 2.4645738053594624e-06, 'Athenians': 4.107623008932437e-06, 'narration': 2.4645738053594624e-06, 're-created': 2.4645738053594624e-06, 'forgo': 1.6430492035729749e-06, 'Athenian': 2.4645738053594624e-06, 'Philistines': 2.4645738053594624e-06, 'crassest': 1.6430492035729749e-06, 'imcomparable': 1.6430492035729749e-06, 'moonlight': 1.1501344425010824e-05, 'Sakellariadises': 1.6430492035729749e-06, 'Asteria': 2.4645738053594624e-06, 'tramway': 1.6430492035729749e-06, 'lasts': 1.6430492035729749e-06, 'busses': 1.6430492035729749e-06, 'nine-thirty': 2.4645738053594624e-06, 'Bedtime': 1.6430492035729749e-06, 'cabanas': 2.4645738053594624e-06, 'parasols': 2.4645738053594624e-06, 'raspberry': 1.6430492035729749e-06, 'overpopulation': 2.4645738053594624e-06, 'side-stepped': 2.4645738053594624e-06, 'braying': 1.6430492035729749e-06, 'rock-and-roll': 2.4645738053594624e-06, 'servicemen': 1.6430492035729749e-06, 'Sounion': 3.2860984071459497e-06, 'Attic': 2.4645738053594624e-06, 'inlets': 3.2860984071459497e-06, 'coves': 1.6430492035729749e-06, 'encrusted': 2.4645738053594624e-06, 'hurdles': 1.6430492035729749e-06, 'ruins': 7.393721416078387e-06, 'Poseidon': 1.6430492035729749e-06, 'Gaunt': 1.6430492035729749e-06, 'scaffoldings': 1.6430492035729749e-06, 'chiseled': 2.4645738053594624e-06, 'fluting': 1.6430492035729749e-06, 'nectar': 3.2860984071459497e-06, 'thirst': 4.107623008932437e-06, 'assuaged': 2.4645738053594624e-06, 'dined': 3.2860984071459497e-06, 'sea-food': 1.6430492035729749e-06, 'Piraeus': 1.6430492035729749e-06, 'trays': 3.2860984071459497e-06, 'nimbly': 2.4645738053594624e-06, 'Tertre': 1.6430492035729749e-06, 'morsel': 3.2860984071459497e-06, 'winced': 4.107623008932437e-06, 'tidbit': 1.6430492035729749e-06, 'Panyotis': 2.4645738053594624e-06, 'irritating': 4.107623008932437e-06, 'galling': 1.6430492035729749e-06, 'O.K.': 7.393721416078387e-06, 'lolling': 1.6430492035729749e-06, 'Ouzo': 1.6430492035729749e-06, 'relishing': 1.6430492035729749e-06, 'discard': 1.6430492035729749e-06, 'degradation': 2.4645738053594624e-06, 'extricate': 2.4645738053594624e-06, 'Woodruff': 2.546726265538111e-05, 'scurrilous': 1.6430492035729749e-06, 'underhandedness': 1.6430492035729749e-06, 'wearily': 6.5721968142918994e-06, 'bellows': 2.4645738053594624e-06, 'Crittenden': 3.2860984071459497e-06, 'destitute': 2.4645738053594624e-06, 'entitle': 4.929147610718925e-06, 'victor': 1.6430492035729749e-06, 'unenvied': 1.6430492035729749e-06, "Woodruff's": 2.4645738053594624e-06, 'gadfly': 3.2860984071459497e-06, 'ridiculing': 1.6430492035729749e-06, 'Casca': 1.6430492035729749e-06, 'belittling': 1.6430492035729749e-06, 'vilifying': 1.6430492035729749e-06, "Pike's": 2.4645738053594624e-06, 'illusive': 2.4645738053594624e-06, 'assassin': 5.750672212505412e-06, 'harassing': 2.4645738053594624e-06, 'Vale': 4.107623008932437e-06, 'innuendoes': 1.6430492035729749e-06, 'mules': 3.2860984071459497e-06, 'Fe': 6.5721968142918994e-06, 'sticky-fingered': 1.6430492035729749e-06, 'Buren': 2.4645738053594624e-06, 'Outraged': 1.6430492035729749e-06, 'Advocate': 4.929147610718925e-06, 'vindicate': 1.6430492035729749e-06, 'perfidious': 1.6430492035729749e-06, 'slanderer': 3.2860984071459497e-06, 'pseudonym': 1.6430492035729749e-06, 'culprit': 2.4645738053594624e-06, 'dueling': 2.4645738053594624e-06, '11th': 3.2860984071459497e-06, 'Jas.': 1.6430492035729749e-06, 'canny': 2.4645738053594624e-06, 'Preoccupied': 1.6430492035729749e-06, 'infighting': 1.6430492035729749e-06, 'rift': 1.6430492035729749e-06, 'One-armed': 1.6430492035729749e-06, 'gruff': 4.107623008932437e-06, 'frugally': 1.6430492035729749e-06, 'disgraceful': 1.6430492035729749e-06, 'tolerating': 1.6430492035729749e-06, 'compiling': 4.107623008932437e-06, 'windfall': 2.4645738053594624e-06, 'stanchest': 1.6430492035729749e-06, 'printer': 3.2860984071459497e-06, 'Helena': 1.6430492035729749e-06, 'aired': 2.4645738053594624e-06, 'impaled': 2.4645738053594624e-06, 'bidder': 2.4645738053594624e-06, 'alliances': 1.6430492035729749e-06, 'stanch': 1.6430492035729749e-06, 'Friedrich': 1.6430492035729749e-06, 'Gerstacker': 1.6430492035729749e-06, 'detractors': 1.6430492035729749e-06, 'mid-thirties': 3.2860984071459497e-06, 'detestable': 2.4645738053594624e-06, 'dreariness': 1.6430492035729749e-06, 'soulful': 1.6430492035729749e-06, 'airs': 3.2860984071459497e-06, 'Debating': 1.6430492035729749e-06, 'Gorton': 2.7110311858954083e-05, 'biographer': 1.6430492035729749e-06, 'half-crazy': 1.6430492035729749e-06, 'arch-heretic': 1.6430492035729749e-06, 'miscreant': 1.6430492035729749e-06, 'pestilent': 1.6430492035729749e-06, 'seducer': 1.6430492035729749e-06, 'prodigious': 4.107623008932437e-06, 'minter': 1.6430492035729749e-06, 'exorbitant': 1.6430492035729749e-06, 'Rawson': 3.2860984071459497e-06, 'stark': 4.107623008932437e-06, 'blasphemies': 2.4645738053594624e-06, 'corrupter': 1.6430492035729749e-06, 'disturber': 1.6430492035729749e-06, 'leavened': 2.4645738053594624e-06, 'familistical': 1.6430492035729749e-06, 'Plymouth': 9.85829522143785e-06, 'Pocasset': 3.2860984071459497e-06, 'Angell': 1.6430492035729749e-06, 'dispensation': 3.2860984071459497e-06, 'neighbours': 1.6430492035729749e-06, 'Adelos': 1.6430492035729749e-06, '1592': 2.4645738053594624e-06, 'clothier': 1.6430492035729749e-06, 'libertie': 1.6430492035729749e-06, '1637': 1.6430492035729749e-06, 'Hutchinson': 2.4645738053594624e-06, 'Antinomians': 1.6430492035729749e-06, 'powers-that-be': 1.6430492035729749e-06, 'Aldridge': 1.6430492035729749e-06, "Gorton's": 3.2860984071459497e-06, 'Prence': 1.6430492035729749e-06, 'knoe': 1.6430492035729749e-06, 'deport': 1.6430492035729749e-06, 'magistrates': 3.2860984071459497e-06, 'deluding': 1.6430492035729749e-06, '1638': 1.6430492035729749e-06, 'unconquerable': 1.6430492035729749e-06, 'Coddington': 2.4645738053594624e-06, 'constrained': 2.4645738053594624e-06, '1640': 1.6430492035729749e-06, 'ruckus': 1.6430492035729749e-06, 'reverted': 2.4645738053594624e-06, 'Asses': 1.6430492035729749e-06, 'freeman': 1.6430492035729749e-06, 'saucy': 1.6430492035729749e-06, 'Jack-an-Apes': 1.6430492035729749e-06, 'colonists': 1.6430492035729749e-06, 'foully': 1.6430492035729749e-06, 'Aquidneck': 2.4645738053594624e-06, 'bewitching': 1.6430492035729749e-06, 'bemaddening': 1.6430492035729749e-06, 'unclean': 4.107623008932437e-06, 'foul': 4.107623008932437e-06, 'Familism': 1.6430492035729749e-06, 'inhabitation': 1.6430492035729749e-06, 'reformation': 3.2860984071459497e-06, 'uncivil': 1.6430492035729749e-06, 'framer': 1.6430492035729749e-06, 'tertian': 1.6430492035729749e-06, 'ague': 1.6430492035729749e-06, 'Pawtuxet': 4.107623008932437e-06, 'Pawtucket': 2.4645738053594624e-06, 'Pawcatuck': 2.4645738053594624e-06, 'Westerly': 2.4645738053594624e-06, 'agitator': 1.6430492035729749e-06, 'benighted': 2.4645738053594624e-06, 'Miantonomi': 2.4645738053594624e-06, 'Gaspee': 1.6430492035729749e-06, 'inland': 2.4645738053594624e-06, 'Shawomet': 3.2860984071459497e-06, 'meditations': 2.4645738053594624e-06, 'bedlam': 1.6430492035729749e-06, 'Pomham': 2.4645738053594624e-06, 'Soconoco': 1.6430492035729749e-06, 'laborious': 1.6430492035729749e-06, 'circuitous': 1.6430492035729749e-06, 'embattled': 1.6430492035729749e-06, "sachems'": 1.6430492035729749e-06, 'blasphemy': 4.107623008932437e-06, 'miscreants': 1.6430492035729749e-06, 'blockhouse': 1.6430492035729749e-06, 'Gortonists': 2.4645738053594624e-06, 'captives': 2.4645738053594624e-06, 'chaplain': 3.2860984071459497e-06, 'befuddling': 1.6430492035729749e-06, 'obscurities': 1.6430492035729749e-06, 'Demetrius': 1.6430492035729749e-06, 'obediences': 1.6430492035729749e-06, 'thinke': 2.4645738053594624e-06, 'starre': 1.6430492035729749e-06, 'Remphan': 1.6430492035729749e-06, 'Chion': 1.6430492035729749e-06, 'heresy': 1.6430492035729749e-06, 'paraded': 2.4645738053594624e-06, "Cotton's": 1.6430492035729749e-06, 'languished': 1.6430492035729749e-06, 'cooped': 2.4645738053594624e-06, 'elated': 3.2860984071459497e-06, "Fred's": 2.4645738053594624e-06, 'hemorrhaging': 2.4645738053594624e-06, 'hemorrhage': 4.929147610718925e-06, "Papa's": 9.036770619651361e-06, 'prostate': 2.4645738053594624e-06, 'transfusions': 4.107623008932437e-06, 'Asheville': 2.4645738053594624e-06, 'Beloved': 1.6430492035729749e-06, 'tombstones': 1.6430492035729749e-06, 'bequest': 4.929147610718925e-06, 'executors': 2.4645738053594624e-06, "doctors'": 1.6430492035729749e-06, 'prorate': 1.6430492035729749e-06, 'educations': 1.6430492035729749e-06, 'Effie': 1.6430492035729749e-06, 'Carneigie': 1.6430492035729749e-06, 'invalidism': 1.6430492035729749e-06, 'exceeded': 4.929147610718925e-06, 'valuations': 2.4645738053594624e-06, 'Merciful': 1.6430492035729749e-06, 'Julia': 2.300268885002165e-05, 'exclaim': 1.6430492035729749e-06, 'McCrady': 2.4645738053594624e-06, 'postponing': 3.2860984071459497e-06, 'playwriting': 1.6430492035729749e-06, 'explanatory': 4.107623008932437e-06, 'fury': 1.232286902679731e-05, 'Niggertown': 1.6430492035729749e-06, 'Mannerhouse': 1.6430492035729749e-06, 'condense': 1.6430492035729749e-06, 'parsimony': 1.6430492035729749e-06, 'Kidder': 1.6430492035729749e-06, 'revise': 4.107623008932437e-06, "Sharpe's": 3.2860984071459497e-06, "pastor's": 2.4645738053594624e-06, 'out-of-door': 1.6430492035729749e-06, 'self-energizing': 1.6430492035729749e-06, 'energized': 1.6430492035729749e-06, 'overdoing': 1.6430492035729749e-06, "Pilgrim's": 1.6430492035729749e-06, 'partakes': 2.4645738053594624e-06, 'rhyming': 1.6430492035729749e-06, 'sin-ned': 1.6430492035729749e-06, 'repugnant': 1.6430492035729749e-06, 'impelling': 1.6430492035729749e-06, 'severed': 5.750672212505412e-06, "Carlyle's": 1.6430492035729749e-06, 'navels': 1.6430492035729749e-06, 'Am': 3.2860984071459497e-06, 'bethought': 1.6430492035729749e-06, 'Thy': 4.929147610718925e-06, 'repentance': 2.4645738053594624e-06, 'wronged': 1.6430492035729749e-06, 'reparation': 1.6430492035729749e-06, 'Beardslee': 1.6430492035729749e-06, 'Deity': 1.6430492035729749e-06, 'steward': 1.6430492035729749e-06, 'supra-personal': 1.6430492035729749e-06, 'self-righteousness': 1.6430492035729749e-06, 'corollaries': 1.6430492035729749e-06, 'sacredness': 4.107623008932437e-06, 'occidental': 1.6430492035729749e-06, 'unburdened': 1.6430492035729749e-06, 'infliction': 3.2860984071459497e-06, 'inheres': 1.6430492035729749e-06, 'Lambarene': 1.6430492035729749e-06, "MacDonald's": 1.6430492035729749e-06, 'Borneo': 1.6430492035729749e-06, 'Segura': 1.6430492035729749e-06, 'Tomonggong': 1.6430492035729749e-06, 'Koh': 1.6430492035729749e-06, 'Jens': 1.6430492035729749e-06, "Bjerre's": 1.6430492035729749e-06, 'Cannibal': 1.6430492035729749e-06, 'Wailbri': 1.6430492035729749e-06, 'cannibals': 1.6430492035729749e-06, 'streamed': 3.2860984071459497e-06, 'degraded': 1.6430492035729749e-06, 'Respect': 2.4645738053594624e-06, 'Ballard': 1.6430492035729749e-06, 'newt': 7.393721416078387e-06, 'transplanting': 1.6430492035729749e-06, 'Wonder': 3.2860984071459497e-06, 'gateway': 2.4645738053594624e-06, 'sorted': 4.107623008932437e-06, 'Einstein': 3.2860984071459497e-06, 'vitiates': 1.6430492035729749e-06, 'Montreux': 1.6430492035729749e-06, 'censors': 2.4645738053594624e-06, 'Gosson': 4.929147610718925e-06, 'discusses': 4.107623008932437e-06, 'corrupted': 2.4645738053594624e-06, 'misrepresentations': 1.6430492035729749e-06, 'pantomimic': 1.6430492035729749e-06, 'tyrants': 1.6430492035729749e-06, 'Tenth': 2.4645738053594624e-06, 'irresolvable': 1.6430492035729749e-06, 'Poets': 1.6430492035729749e-06, 'dualism': 1.6430492035729749e-06, 'tempts': 1.6430492035729749e-06, "Poetry's": 1.6430492035729749e-06, 'gainers': 1.6430492035729749e-06, "Aristotle's": 5.750672212505412e-06, 'comedies': 2.4645738053594624e-06, 'interrelationship': 1.6430492035729749e-06, 'fiber': 2.300268885002165e-05, 'Wood': 4.107623008932437e-06, 'Krutch': 2.4645738053594624e-06, "Krutch's": 3.2860984071459497e-06, 'purgation': 2.4645738053594624e-06, 'allay': 1.6430492035729749e-06, 'superego': 1.6430492035729749e-06, 'Ion': 1.6430492035729749e-06, "Sidney's": 2.4645738053594624e-06, 'Apologie': 1.6430492035729749e-06, 'Poetrie': 1.6430492035729749e-06, '1595': 1.6430492035729749e-06, 'puritanical': 1.6430492035729749e-06, "Gosson's": 1.6430492035729749e-06, 'Abuse': 2.4645738053594624e-06, '1579': 2.4645738053594624e-06, 'Playes': 1.6430492035729749e-06, 'Confuted': 1.6430492035729749e-06, '1582': 3.2860984071459497e-06, "Ringler's": 1.6430492035729749e-06, '1577': 2.4645738053594624e-06, 'Aroused': 1.6430492035729749e-06, 'Puritans': 3.2860984071459497e-06, '1642': 1.6430492035729749e-06, 'decreed': 1.6430492035729749e-06, 'stage-plays': 1.6430492035729749e-06, 'forborne': 1.6430492035729749e-06, 'sorrows': 2.4645738053594624e-06, 'cheere': 1.6430492035729749e-06, 'beguile': 1.6430492035729749e-06, 'mirth': 2.4645738053594624e-06, 'levity': 1.6430492035729749e-06, 'eies': 1.6430492035729749e-06, 'lyking': 2.4645738053594624e-06, 'hartes': 2.4645738053594624e-06, 'burne': 1.6430492035729749e-06, 'diagnosing': 2.4645738053594624e-06, 'Values': 1.6430492035729749e-06, '2,758': 1.6430492035729749e-06, '1,571': 1.6430492035729749e-06, '944': 1.6430492035729749e-06, '4,585': 1.6430492035729749e-06, 'Fisk': 2.4645738053594624e-06, 'value-problems': 1.6430492035729749e-06, 'naively': 1.6430492035729749e-06, 'character-education': 1.6430492035729749e-06, 'impresses': 1.6430492035729749e-06, 'milieu': 4.107623008932437e-06, 'whimsical': 1.6430492035729749e-06, 'value-orientations': 1.6430492035729749e-06, 'success-oriented': 1.6430492035729749e-06, 'other-directed': 2.4645738053594624e-06, 'goal-values': 1.6430492035729749e-06, 'materialistic': 2.4645738053594624e-06, 'aspire': 3.2860984071459497e-06, 'people-oriented': 2.4645738053594624e-06, 'instrumental-reward': 1.6430492035729749e-06, "occupation's": 1.6430492035729749e-06, 'informational': 2.4645738053594624e-06, 'creativity-oriented': 1.6430492035729749e-06, 'resigns': 1.6430492035729749e-06, 'M.D.': 1.6430492035729749e-06, 'once-popular': 1.6430492035729749e-06, 'carriage': 9.85829522143785e-06, 'Conservatism': 1.6430492035729749e-06, 'suppression': 6.5721968142918994e-06, 'conformist': 3.2860984071459497e-06, 'traditionalistic': 1.6430492035729749e-06, 'libertarian': 1.6430492035729749e-06, 'upperclassmen': 1.6430492035729749e-06, 'homogenization': 1.6430492035729749e-06, 'Detached': 1.6430492035729749e-06, 'converge': 3.2860984071459497e-06, 'college-educated': 1.6430492035729749e-06, 'toleration': 1.6430492035729749e-06, 'sampling': 1.889506584108921e-05, 'orientations': 1.6430492035729749e-06, 'apathetic': 1.6430492035729749e-06, 'conformists': 3.2860984071459497e-06, 'gyroscopes': 1.6430492035729749e-06, 'traditionalized': 1.6430492035729749e-06, 'robotism': 1.6430492035729749e-06, 'overestimated': 1.6430492035729749e-06, 'faceless': 1.6430492035729749e-06, 'not-so-lonely': 1.6430492035729749e-06, 'couched': 2.4645738053594624e-06, 'Avowed': 1.6430492035729749e-06, 'freethinkers': 1.6430492035729749e-06, 'wrestling': 1.6430492035729749e-06, 'overshadow': 2.4645738053594624e-06, 'transcendence': 2.4645738053594624e-06, 'reinforcement': 2.4645738053594624e-06, 'religiously': 4.107623008932437e-06, 'benchmarks': 2.4645738053594624e-06, 'profoundity': 1.6430492035729749e-06, 'invulnerability': 1.6430492035729749e-06, 'socially-oriented': 1.6430492035729749e-06, 'Kluckhohn': 1.6430492035729749e-06, '1935-1955': 1.6430492035729749e-06, 'puritan': 1.6430492035729749e-06, 'work-success': 1.6430492035729749e-06, 'future-time': 1.6430492035729749e-06, 'sociability': 2.4645738053594624e-06, 'relativism': 1.6430492035729749e-06, 'hedonistic': 2.4645738053594624e-06, 'present-time': 2.4645738053594624e-06, 'Whitemarsh': 3.2860984071459497e-06, 'Cornwallis': 2.4645738053594624e-06, 'capturing': 2.4645738053594624e-06, "Morgan's": 5.750672212505412e-06, 'riflemen': 5.750672212505412e-06, 'evacuated': 3.2860984071459497e-06, 'redcoats': 8.215246017864873e-06, "riflemen's": 1.6430492035729749e-06, 'desirous': 1.6430492035729749e-06, 'Nathanael': 1.6430492035729749e-06, 'Howe': 9.036770619651361e-06, 'skirmished': 1.6430492035729749e-06, 'Edge': 1.6430492035729749e-06, 'tempting': 2.4645738053594624e-06, 'messed': 1.6430492035729749e-06, 'Marylanders': 2.4645738053594624e-06, 'rabbits': 4.107623008932437e-06, 'forty-four': 5.750672212505412e-06, 'warmhearted': 1.6430492035729749e-06, 'complimenting': 1.6430492035729749e-06, 'praising': 2.4645738053594624e-06, 'restitution': 1.6430492035729749e-06, 'Gates': 2.4645738053594624e-06, 'vehement': 2.4645738053594624e-06, 'commander-in-chief': 3.2860984071459497e-06, 'Peters': 4.107623008932437e-06, 'barefooted': 1.6430492035729749e-06, "Howe's": 1.6430492035729749e-06, 'hindering': 1.6430492035729749e-06, 'periphery': 4.929147610718925e-06, 'intercept': 5.750672212505412e-06, 'thankful': 4.929147610718925e-06, 'culprits': 2.4645738053594624e-06, 'worsened': 1.6430492035729749e-06, 'braved': 1.6430492035729749e-06, 'Posey': 1.6430492035729749e-06, 'Pickman': 1.6430492035729749e-06, 'slanders': 1.6430492035729749e-06, 'propagated': 1.6430492035729749e-06, 'exalt': 1.6430492035729749e-06, "'tis": 2.4645738053594624e-06, 'Abstracts': 1.6430492035729749e-06, 'recuperating': 1.6430492035729749e-06, 'hast': 1.6430492035729749e-06, 'heartfelt': 1.6430492035729749e-06, 'wickets': 1.6430492035729749e-06, 'patrols': 1.6430492035729749e-06, 'Barren': 1.6430492035729749e-06, 'harass': 1.6430492035729749e-06, 'Oneida': 1.6430492035729749e-06, 'admonished': 2.4645738053594624e-06, 'riflemen-rangers': 1.6430492035729749e-06, 'Meantime': 2.4645738053594624e-06, 'Sanderson': 2.4645738053594624e-06, 'Excellency': 2.4645738053594624e-06, "Philip's": 2.4645738053594624e-06, 'Gascony': 3.2860984071459497e-06, 'web': 5.750672212505412e-06, "Edward's": 4.929147610718925e-06, 'unremitting': 1.6430492035729749e-06, 'failures': 4.107623008932437e-06, 'Nogaret': 2.4645738053594624e-06, 'Boniface': 4.107623008932437e-06, 'pronouncement': 3.2860984071459497e-06, 'misstep': 2.4645738053594624e-06, 'temporize': 1.6430492035729749e-06, 'abeyance': 3.2860984071459497e-06, 'reviving': 2.4645738053594624e-06, 'Valois': 1.6430492035729749e-06, 'Tuscany': 2.4645738053594624e-06, 'cardinals': 3.2860984071459497e-06, 'circumspection': 1.6430492035729749e-06, "Amadee's": 1.6430492035729749e-06, 'Agnes': 1.6430492035729749e-06, 'dauphin': 1.6430492035729749e-06, 'Vienne': 1.6430492035729749e-06, 'peacemaking': 1.6430492035729749e-06, 'thirteenth-century': 1.6430492035729749e-06, 'Dauphine': 1.6430492035729749e-06, 'cession': 1.6430492035729749e-06, 'Flanders': 2.4645738053594624e-06, 'forfeited': 1.6430492035729749e-06, 'insubordinate': 2.4645738053594624e-06, 'vassal': 1.6430492035729749e-06, 'suzerain': 2.4645738053594624e-06, 'Sicily': 3.2860984071459497e-06, 'Patrimony': 1.6430492035729749e-06, 'English-Scottish-French': 1.6430492035729749e-06, 'triangle': 4.107623008932437e-06, 'invalidate': 2.4645738053594624e-06, 'involvements': 1.6430492035729749e-06, 'impartiality': 1.6430492035729749e-06, 'arbiter': 4.929147610718925e-06, 'Curia': 3.2860984071459497e-06, 'misinterpret': 2.4645738053594624e-06, "pope's": 2.4645738053594624e-06, 'Othon': 8.215246017864873e-06, "Boniface's": 1.6430492035729749e-06, 'tactlessness': 1.6430492035729749e-06, 'Tact': 1.6430492035729749e-06, 'possessor': 1.6430492035729749e-06, 'Clericis': 1.6430492035729749e-06, 'Laicos': 1.6430492035729749e-06, 'Unam': 1.6430492035729749e-06, 'Sanctam': 1.6430492035729749e-06, 'wielder': 1.6430492035729749e-06, 'vice-regent': 1.6430492035729749e-06, 'incomprehension': 1.6430492035729749e-06, 'Flotte': 1.6430492035729749e-06, 'Powicke': 1.6430492035729749e-06, 'archbishop': 2.4645738053594624e-06, 'Narbonne': 1.6430492035729749e-06, 'duke': 2.4645738053594624e-06, 'St.-Pol': 2.4645738053594624e-06, 'diligence': 3.2860984071459497e-06, 'astuteness': 1.6430492035729749e-06, 'nobles': 1.6430492035729749e-06, 'clerks': 4.929147610718925e-06, 'Hotham': 2.4645738053594624e-06, 'visualized': 2.4645738053594624e-06, 'covetousness': 2.4645738053594624e-06, 'homage': 2.4645738053594624e-06, 'Tipperary': 1.6430492035729749e-06, 'Grandson': 2.4645738053594624e-06, "Flotte's": 1.6430492035729749e-06, 'Normandy': 1.6430492035729749e-06, "Frenchman's": 1.6430492035729749e-06, 'terse': 2.4645738053594624e-06, 'Vous': 2.4645738053594624e-06, 'dites': 1.6430492035729749e-06, 'vrai': 1.6430492035729749e-06, 'Loyal': 1.6430492035729749e-06, 'single-minded': 1.6430492035729749e-06, 'outmatched': 1.6430492035729749e-06, 'Courtrai': 1.6430492035729749e-06, 'Flemings': 1.6430492035729749e-06, 'evermounting': 1.6430492035729749e-06, 'barons': 1.6430492035729749e-06, 'unaided': 4.107623008932437e-06, 'Habsburg': 1.6430492035729749e-06, 'disadvantage': 4.107623008932437e-06, 'Savoyards': 2.4645738053594624e-06, 'Amadee': 4.107623008932437e-06, 'Guillaume': 1.6430492035729749e-06, 'Lausanne': 1.6430492035729749e-06, 'arbitrated': 1.6430492035729749e-06, '1298': 1.6430492035729749e-06, "D'Arlay": 1.6430492035729749e-06, 'Chalon-sur-Saone': 1.6430492035729749e-06, 'staunch': 3.2860984071459497e-06, 'Burgundian': 1.6430492035729749e-06, 'Gautier': 1.6430492035729749e-06, 'Montfaucon': 1.6430492035729749e-06, "Othon's": 1.6430492035729749e-06, 'Vaudois': 1.6430492035729749e-06, 'Vere': 1.6430492035729749e-06, 'Pembroke': 2.4645738053594624e-06, 'Lusignan': 1.6430492035729749e-06, 'swarthy': 4.107623008932437e-06, "Carnarvon's": 1.6430492035729749e-06, 'irreverent': 2.4645738053594624e-06, 'Piers': 1.6430492035729749e-06, 'Gaveston': 1.6430492035729749e-06, 'Pontissara': 1.6430492035729749e-06, 'jocund': 1.6430492035729749e-06, 'envoys': 1.6430492035729749e-06, 'overtaxed': 1.6430492035729749e-06, 'grumbling': 1.6430492035729749e-06, 'Non': 2.4645738053594624e-06, 'est': 3.2860984071459497e-06, 'lex': 1.6430492035729749e-06, 'sana': 1.6430492035729749e-06, 'Quod': 1.6430492035729749e-06, 'regi': 1.6430492035729749e-06, 'lana': 1.6430492035729749e-06, 'shepherds': 1.6430492035729749e-06, 'dales': 1.6430492035729749e-06, 'downs': 3.2860984071459497e-06, 'Countries': 3.2860984071459497e-06, 'Ghent': 1.6430492035729749e-06, 'nasty': 4.929147610718925e-06, 'woolworkers': 1.6430492035729749e-06, 'Florentine': 4.107623008932437e-06, 'Lana': 1.6430492035729749e-06, 'dyed': 4.107623008932437e-06, 'Calimala': 1.6430492035729749e-06, 'Bernardo': 1.6430492035729749e-06, 'Rucellai': 1.6430492035729749e-06, 'jealously': 1.6430492035729749e-06, 'chatty': 1.6430492035729749e-06, 'cursory': 4.107623008932437e-06, 'Inferno': 1.6430492035729749e-06, 'fairs': 1.6430492035729749e-06, 'malediction': 1.6430492035729749e-06, 'tabernacles': 1.6430492035729749e-06, 'pyramids': 1.6430492035729749e-06, 'Bold': 1.6430492035729749e-06, 'Alpert': 4.929147610718925e-06, 'Lew': 4.107623008932437e-06, 'Margaretville': 1.6430492035729749e-06, 'Fleischmanns': 3.2860984071459497e-06, "Lew's": 1.6430492035729749e-06, 'Alperts': 1.6430492035729749e-06, 'Tessie': 6.5721968142918994e-06, 'sicker': 2.4645738053594624e-06, 'rocker': 4.107623008932437e-06, 'sickroom': 1.6430492035729749e-06, 'trinket': 1.6430492035729749e-06, 'lawsuit': 1.6430492035729749e-06, 'Meltzer': 1.0679819823224336e-05, 'Solemnly': 1.6430492035729749e-06, "Alfred's": 3.2860984071459497e-06, "Meltzer's": 2.4645738053594624e-06, 'Kaddish': 1.6430492035729749e-06, 'sobs': 3.2860984071459497e-06, 'Speak': 3.2860984071459497e-06, "Flagler's": 1.6430492035729749e-06, 'jug': 5.750672212505412e-06, 'boarder': 1.6430492035729749e-06, 'Talmud': 4.107623008932437e-06, 'whyfores': 1.6430492035729749e-06, 'wherefores': 1.6430492035729749e-06, 'therefores': 1.6430492035729749e-06, 'Commentaries': 1.6430492035729749e-06, 'Lilly': 9.036770619651361e-06, "Lilly's": 3.2860984071459497e-06, 'carcasses': 1.6430492035729749e-06, 'apology': 2.4645738053594624e-06, 'rude': 4.929147610718925e-06, "Banks's": 1.6430492035729749e-06, 'butcher': 2.4645738053594624e-06, 'busyness': 1.6430492035729749e-06, 'unstaring': 1.6430492035729749e-06, 'gawky': 1.6430492035729749e-06, 'hips': 7.393721416078387e-06, 'loose-jointed': 2.4645738053594624e-06, 'childishness': 4.107623008932437e-06, 'undisclosed': 1.6430492035729749e-06, 'hulk': 2.4645738053594624e-06, "Stream's": 1.6430492035729749e-06, 'Lullaby': 2.4645738053594624e-06, 'Gute': 2.4645738053594624e-06, 'ruh': 2.4645738053594624e-06, "Mach't": 1.6430492035729749e-06, 'augen': 1.6430492035729749e-06, 'zu': 1.6430492035729749e-06, 'Schone': 1.6430492035729749e-06, 'Mullerin': 1.6430492035729749e-06, 'mutual-aid': 1.6430492035729749e-06, 'preceeding': 2.4645738053594624e-06, 'Haverfield': 2.4645738053594624e-06, 'Reginald': 1.6430492035729749e-06, 'Histories': 2.4645738053594624e-06, 'antiquarian': 1.6430492035729749e-06, "Leeds'": 2.4645738053594624e-06, 'Archaeology': 1.6430492035729749e-06, 'archaeological': 7.393721416078387e-06, 'place-name': 5.750672212505412e-06, 'place-names': 2.4645738053594624e-06, 'Place-names': 1.6430492035729749e-06, 'Camden': 2.4645738053594624e-06, 'onwards': 1.6430492035729749e-06, 'Germanic': 8.215246017864873e-06, 'philology': 2.4645738053594624e-06, 'debatable': 1.6430492035729749e-06, 'philologists': 1.6430492035729749e-06, 'Kemble': 4.929147610718925e-06, 'philological': 2.4645738053594624e-06, 'J.H.': 1.6430492035729749e-06, "Round's": 1.6430492035729749e-06, 'Settlement': 1.6430492035729749e-06, 'Saxons': 6.5721968142918994e-06, 'W.H.': 1.6430492035729749e-06, 'Conquest': 1.6430492035729749e-06, 'Diplomatic': 1.6430492035729749e-06, 'textual': 2.4645738053594624e-06, 'Asser': 1.6430492035729749e-06, 'Charters': 1.6430492035729749e-06, 'Saxon': 1.5608967433943262e-05, 'Stubbs': 1.6430492035729749e-06, 'Plummer': 2.4645738053594624e-06, 'Bede': 3.2860984071459497e-06, 'superstructure': 1.6430492035729749e-06, 'Howorth': 2.4645738053594624e-06, 'Lappenburg-Kemble': 1.6430492035729749e-06, 'veracity': 3.2860984071459497e-06, 'T.W.': 2.4645738053594624e-06, 'H.M.': 2.4645738053594624e-06, 'Chadwick': 2.4645738053594624e-06, 'Hodgkin': 3.2860984071459497e-06, 'Beck': 1.6430492035729749e-06, 'Lot': 3.2860984071459497e-06, 'Conquete': 1.6430492035729749e-06, 'Grande-Bretagne': 2.4645738053594624e-06, 'difficile': 1.6430492035729749e-06, "aujourd'hui": 1.6430492035729749e-06, "d'entretenir": 1.6430492035729749e-06, 'des': 2.4645738053594624e-06, 'sur': 1.6430492035729749e-06, 'valeur': 1.6430492035729749e-06, 'du': 3.2860984071459497e-06, 'recit': 1.6430492035729749e-06, 'traditionnel': 1.6430492035729749e-06, 'conquete': 1.6430492035729749e-06, 'Lappenberg': 4.929147610718925e-06, 'retreated': 7.393721416078387e-06, 'Zachrisson': 1.6430492035729749e-06, 'Wade-Evans': 4.107623008932437e-06, 'gullibility': 1.6430492035729749e-06, 'Gildas': 1.6430492035729749e-06, 'Nennius': 2.4645738053594624e-06, 'Chronicles': 1.6430492035729749e-06, 'R.H.': 2.4645738053594624e-06, 'Oman': 1.6430492035729749e-06, 'untrustworthiness': 1.6430492035729749e-06, 'unreliability': 1.6430492035729749e-06, 'genealogies': 1.6430492035729749e-06, 'vineyard': 1.6430492035729749e-06, 'invasions': 8.215246017864873e-06, "Kemble's": 2.4645738053594624e-06, 'gradualist': 1.6430492035729749e-06, 'ca.': 2.4645738053594624e-06, 'Victorians': 1.6430492035729749e-06, 'Germanized': 1.6430492035729749e-06, 'extinction': 3.2860984071459497e-06, "Seebohm's": 1.6430492035729749e-06, 'reigning': 3.2860984071459497e-06, 'Seebohm': 4.107623008932437e-06, 'Maitland': 1.6430492035729749e-06, 'Domesday': 1.6430492035729749e-06, 'Vinogradoff': 1.6430492035729749e-06, 'Largely': 1.6430492035729749e-06, 'invasion-theory': 1.6430492035729749e-06, 'H.L.': 1.6430492035729749e-06, 'Systems': 4.107623008932437e-06, "Zachrisson's": 1.6430492035729749e-06, 'Kelts': 1.6430492035729749e-06, 'H.P.R.': 1.6430492035729749e-06, 'Finberg': 2.4645738053594624e-06, 'Copley': 1.6430492035729749e-06, 'survivalist': 1.6430492035729749e-06, 'pre-Anglo-Saxon': 1.6430492035729749e-06, 'Stenton': 1.6430492035729749e-06, 'al.': 1.6430492035729749e-06, 'sceptical': 3.2860984071459497e-06, 'survivalists': 2.4645738053594624e-06, 'tack': 4.107623008932437e-06, 'infiltration': 5.750672212505412e-06, 'Jutish': 1.6430492035729749e-06, 'foray': 1.6430492035729749e-06, '514': 1.6430492035729749e-06, 'E.T.': 1.6430492035729749e-06, 'unchallenged': 2.4645738053594624e-06, 'Anglo-Saxons': 1.6430492035729749e-06, 're-adopt': 1.6430492035729749e-06, 'complection': 1.6430492035729749e-06, 'phenonenon': 1.6430492035729749e-06, 'Notitia': 1.6430492035729749e-06, 'Theodosian': 1.6430492035729749e-06, '369': 1.6430492035729749e-06, 'Carausius': 1.6430492035729749e-06, 'construe': 1.6430492035729749e-06, 'Anglia': 1.6430492035729749e-06, 'Sussex': 2.4645738053594624e-06, 'Gaul': 1.6430492035729749e-06, 'intrusive': 2.4645738053594624e-06, 'fourth-century': 1.6430492035729749e-06, 'fifth-century': 1.6430492035729749e-06, 'mainstream': 2.4645738053594624e-06, 'volunteering': 2.4645738053594624e-06, 'disorganization': 1.6430492035729749e-06, 'enlistment': 1.6430492035729749e-06, 'pinning': 1.6430492035729749e-06, 'briefed': 2.4645738053594624e-06, 'Provost': 2.4645738053594624e-06, 'Enoch': 1.6430492035729749e-06, 'Crowder': 2.4645738053594624e-06, 'Ironpants': 1.6430492035729749e-06, 'corridors': 2.4645738053594624e-06, 'Printing': 3.2860984071459497e-06, 'draftees': 1.6430492035729749e-06, 'Greetings': 1.6430492035729749e-06, 'Champ': 1.6430492035729749e-06, 'conscript': 1.6430492035729749e-06, 'Dent': 1.6430492035729749e-06, 'Floor': 1.6430492035729749e-06, 'Kitchin': 1.6430492035729749e-06, 'ranking': 4.107623008932437e-06, 'Kahn': 1.6430492035729749e-06, "Kahn's": 1.6430492035729749e-06, '258': 2.4645738053594624e-06, '2,800,000': 1.6430492035729749e-06, 'gargantuan': 1.6430492035729749e-06, 'cantonment': 1.6430492035729749e-06, 'electric-sewer-water': 1.6430492035729749e-06, 'Ditch': 1.6430492035729749e-06, 'Josephus': 1.6430492035729749e-06, 'Daniels': 2.4645738053594624e-06, '42,000': 1.6430492035729749e-06, '1918': 3.2860984071459497e-06, 'pandemic': 2.4645738053594624e-06, '1918-19': 1.6430492035729749e-06, 'malady': 1.6430492035729749e-06, 'influenza-pneumonia': 1.6430492035729749e-06, 'eight-week': 1.6430492035729749e-06, 'blitz': 2.4645738053594624e-06, 'libertine': 1.6430492035729749e-06, 'manliness': 1.6430492035729749e-06, 'Fosdick': 9.036770619651361e-06, 'CTCA': 4.929147610718925e-06, 'Philosophical': 2.4645738053594624e-06, 'venereal': 3.2860984071459497e-06, 'filles': 2.4645738053594624e-06, 'joie': 1.6430492035729749e-06, 'flocking': 1.6430492035729749e-06, 'Laredo': 2.4645738053594624e-06, 'cribs': 3.2860984071459497e-06, 'ascertained': 4.107623008932437e-06, 'Funston': 2.4645738053594624e-06, "Fosdick's": 3.2860984071459497e-06, 'do-gooder': 1.6430492035729749e-06, 'pre-penicillin': 1.6430492035729749e-06, 'verboten': 1.6430492035729749e-06, 'vociferous': 3.2860984071459497e-06, 'red-light': 2.4645738053594624e-06, 'business-minded': 1.6430492035729749e-06, 'journeyed': 2.4645738053594624e-06, 'Clemenceau': 2.4645738053594624e-06, 'proclivities': 1.6430492035729749e-06, 'Pershing': 1.6430492035729749e-06, 'Fit': 1.6430492035729749e-06, 'Affirmatively': 1.6430492035729749e-06, 'baser': 1.6430492035729749e-06, 'YMCA': 1.6430492035729749e-06, 'Playground': 1.6430492035729749e-06, '1917-18': 1.6430492035729749e-06, 'co-ordinating': 1.6430492035729749e-06, 'antipodes': 1.6430492035729749e-06, 'best-known': 1.6430492035729749e-06, 'Farnum': 1.6430492035729749e-06, 'Pickford': 1.6430492035729749e-06, 'Janis': 1.6430492035729749e-06, 'Lauder': 1.6430492035729749e-06, 'khaki-bound': 1.6430492035729749e-06, 'songbook': 1.6430492035729749e-06, 'Fires': 1.6430492035729749e-06, 'Burning': 2.4645738053594624e-06, 'Mademoiselle': 1.6430492035729749e-06, 'Armentieres': 1.6430492035729749e-06, 'transcending': 3.2860984071459497e-06, 'contrarieties': 1.6430492035729749e-06, 'Lessing': 2.4645738053594624e-06, 'Hugo': 3.2860984071459497e-06, 'encloses': 1.6430492035729749e-06, 'overreaches': 1.6430492035729749e-06, 'Aeschylus': 4.107623008932437e-06, 'Euripides': 3.2860984071459497e-06, 'intimations': 1.6430492035729749e-06, 'Antigone': 1.6430492035729749e-06, 'Juliet': 1.6430492035729749e-06, 'Macbeth': 5.750672212505412e-06, 'scion': 1.6430492035729749e-06, 'Atreus': 2.4645738053594624e-06, 'Elsinore': 2.4645738053594624e-06, 'Mycenae': 2.4645738053594624e-06, 'Orestes': 2.4645738053594624e-06, 'resounds': 1.6430492035729749e-06, 'Hamlet': 4.107623008932437e-06, 'hounds': 2.4645738053594624e-06, 'quarry': 6.5721968142918994e-06, "Apollo's": 1.6430492035729749e-06, 'Lear': 4.107623008932437e-06, 'Racine': 2.4645738053594624e-06, 'Athalie': 2.4645738053594624e-06, 'Voltaire': 8.215246017864873e-06, 'realness': 1.6430492035729749e-06, 'Descartes': 2.4645738053594624e-06, 'Discours': 1.6430492035729749e-06, 'methode': 1.6430492035729749e-06, 'Principia': 1.6430492035729749e-06, 'undreamt': 1.6430492035729749e-06, "Horatio's": 1.6430492035729749e-06, 'encompassed': 3.2860984071459497e-06, 'transcend': 1.6430492035729749e-06, 'Furies': 1.6430492035729749e-06, 'Weird': 1.6430492035729749e-06, 'Sisters': 1.6430492035729749e-06, 'Sphinx': 1.6430492035729749e-06, 'personages': 2.4645738053594624e-06, 'Shakespearean': 5.750672212505412e-06, 'thunderclaps': 1.6430492035729749e-06, 'Colonus': 1.6430492035729749e-06, 'kite': 1.6430492035729749e-06, 'damnation': 3.2860984071459497e-06, 'Mortality': 1.6430492035729749e-06, 'sentinels': 2.4645738053594624e-06, 'battlements': 1.6430492035729749e-06, 'banishes': 1.6430492035729749e-06, 'wanderers': 1.6430492035729749e-06, 'repose': 2.4645738053594624e-06, 'visitations': 1.6430492035729749e-06, 'haunted': 7.393721416078387e-06, "Agamemnon's": 1.6430492035729749e-06, 'tawdry': 2.4645738053594624e-06, 'gaslights': 1.6430492035729749e-06, 'melodrama': 3.2860984071459497e-06, 'Purgatory': 1.6430492035729749e-06, 'Versailles': 2.4645738053594624e-06, 'hierarchies': 1.6430492035729749e-06, 'centre': 2.4645738053594624e-06, 'spokes': 2.4645738053594624e-06, 'Tragedy': 2.4645738053594624e-06, 'vaulting': 3.2860984071459497e-06, 'ascent': 1.6430492035729749e-06, 'Alcibiades': 1.6430492035729749e-06, 'Agamemnon': 2.4645738053594624e-06, 'Creon': 1.6430492035729749e-06, 'Medea': 1.6430492035729749e-06, 'polis': 1.6430492035729749e-06, 'Othello': 1.6430492035729749e-06, 'clashed': 1.6430492035729749e-06, 'Heretofore': 1.6430492035729749e-06, 'Feversham': 1.6430492035729749e-06, 'Nouvelle-Heloise': 1.6430492035729749e-06, 'Werther': 2.4645738053594624e-06, 'presenter': 1.6430492035729749e-06, 'rationalistic': 1.6430492035729749e-06, 'allegoric': 2.4645738053594624e-06, 'Classic': 1.6430492035729749e-06, 'architectures': 1.6430492035729749e-06, 'immaculate': 4.929147610718925e-06, 'supervened': 1.6430492035729749e-06, 'imaginings': 1.6430492035729749e-06, 'parables': 1.6430492035729749e-06, 'primal': 1.6430492035729749e-06, 'retribution': 4.107623008932437e-06, 'preordainment': 1.6430492035729749e-06, 'Oresteia': 1.6430492035729749e-06, 'Concepts': 1.6430492035729749e-06, 'catchwords': 1.6430492035729749e-06, 'seers': 1.6430492035729749e-06, 'Orpheus': 2.4645738053594624e-06, 'chroniclers': 1.6430492035729749e-06, 'inheritors': 1.6430492035729749e-06, 'primitivism': 1.6430492035729749e-06, 'anti-Newtonian': 1.6430492035729749e-06, 'Blake': 5.750672212505412e-06, "Hugo's": 1.6430492035729749e-06, 'Magi': 1.6430492035729749e-06, 'unacknowledged': 1.6430492035729749e-06, 'rear-guard': 1.6430492035729749e-06, 'Sophoclean': 1.6430492035729749e-06, 'Ibsen': 1.6430492035729749e-06, 'Chekhov': 2.4645738053594624e-06, "Goethe's": 1.6430492035729749e-06, 'Alps': 2.4645738053594624e-06, 'Goethe': 3.2860984071459497e-06, 'Meister': 1.6430492035729749e-06, 'glows': 1.6430492035729749e-06, 'Torquato': 1.6430492035729749e-06, 'Tasso': 1.6430492035729749e-06, 'Elegies': 1.6430492035729749e-06, 'streaks': 5.750672212505412e-06, 'tempered': 1.6430492035729749e-06, 'wager': 3.2860984071459497e-06, 'Faust': 4.107623008932437e-06, "Faust's": 2.4645738053594624e-06, 'Faustian': 1.6430492035729749e-06, 'wrest': 1.6430492035729749e-06, "Marlowe's": 1.6430492035729749e-06, "Menelaus'": 1.6430492035729749e-06, 'necromantic': 1.6430492035729749e-06, 'Sparta': 1.6430492035729749e-06, 'Gesamtkunstwerke': 1.6430492035729749e-06, 'recusant': 1.6430492035729749e-06, 'diocese': 1.6430492035729749e-06, 'Quiney': 1.97165904428757e-05, 'Greville': 1.232286902679731e-05, '1593': 2.4645738053594624e-06, 'bailiff': 5.750672212505412e-06, 'Sawnders': 1.6430492035729749e-06, 'Bushell': 3.2860984071459497e-06, 'Hobday': 1.6430492035729749e-06, 'Stratford': 5.750672212505412e-06, 'glover': 1.6430492035729749e-06, '1615': 1.6430492035729749e-06, 'Elinor': 3.2860984071459497e-06, "Quiney's": 2.4645738053594624e-06, '1613': 2.4645738053594624e-06, 'Pebworth': 1.6430492035729749e-06, 'Packwood': 1.6430492035729749e-06, 'Broad': 2.4645738053594624e-06, '1622': 1.6430492035729749e-06, '1594-1674': 1.6430492035729749e-06, 'Bacon': 2.4645738053594624e-06, 'Superlative': 1.6430492035729749e-06, 'Prodigall': 1.6430492035729749e-06, 'Youths': 1.6430492035729749e-06, '1628': 1.6430492035729749e-06, 'Milcote': 2.4645738053594624e-06, 'Lodowick': 1.6430492035729749e-06, '1589': 1.6430492035729749e-06, 'Fulke': 3.2860984071459497e-06, '1596/7': 1.6430492035729749e-06, 'Sturley': 9.036770619651361e-06, '1597': 1.6430492035729749e-06, 'aldermen': 1.6430492035729749e-06, 'affied': 1.6430492035729749e-06, 'endeavour': 1.6430492035729749e-06, 'prosecuting': 3.2860984071459497e-06, 'shillings': 1.6430492035729749e-06, 'recompence': 1.6430492035729749e-06, '1597/8': 1.6430492035729749e-06, 'theare': 1.6430492035729749e-06, 'bi': 2.4645738053594624e-06, 'Ed.': 2.4645738053594624e-06, 'Grev.': 1.6430492035729749e-06, 'meanes': 2.4645738053594624e-06, 'Knightes': 1.6430492035729749e-06, 'subsedies': 1.6430492035729749e-06, 'wherewith': 1.6430492035729749e-06, 'towne': 4.107623008932437e-06, 'u': 2.4645738053594624e-06, 'feare': 1.6430492035729749e-06, 'doubte': 1.6430492035729749e-06, 'hable': 1.6430492035729749e-06, 'paie': 3.2860984071459497e-06, 'Gre.': 1.6430492035729749e-06, 'gonne': 1.6430492035729749e-06, 'Brestowe': 1.6430492035729749e-06, 'Lond.': 1.6430492035729749e-06, 'heare': 2.4645738053594624e-06, 'verie': 1.6430492035729749e-06, 'knoweth': 1.6430492035729749e-06, 'estates': 4.929147610718925e-06, 'wil': 1.6430492035729749e-06, 'willinge': 1.6430492035729749e-06, 'ani': 2.4645738053594624e-06, 'Warwickshire': 1.6430492035729749e-06, 'Combe': 1.6430492035729749e-06, '1598': 2.4645738053594624e-06, 'Fortescue': 2.4645738053594624e-06, 'Exchequer': 4.107623008932437e-06, 'countriman': 1.6430492035729749e-06, 'Wm.': 2.4645738053594624e-06, 'Shak.': 1.6430492035729749e-06, 'monei': 4.929147610718925e-06, 'wheare': 1.6430492035729749e-06, 'howe': 2.4645738053594624e-06, 'prai': 1.6430492035729749e-06, 'mai': 1.6430492035729749e-06, 'condicions': 1.6430492035729749e-06, 'Allso': 1.6430492035729749e-06, 'procured': 4.107623008932437e-06, 'presente': 1.6430492035729749e-06, 'obtaine': 1.6430492035729749e-06, 'enlargd': 1.6430492035729749e-06, 'ij': 1.6430492035729749e-06, 'faires': 1.6430492035729749e-06, 'tole': 2.4645738053594624e-06, 'corne': 2.4645738053594624e-06, 'bestes': 1.6430492035729749e-06, 'sheepe': 1.6430492035729749e-06, 'valewe': 1.6430492035729749e-06, 'tithes': 1.6430492035729749e-06, 'landes': 1.6430492035729749e-06, 'himselfe': 1.6430492035729749e-06, '1590': 1.6430492035729749e-06, 'Burghley': 1.6430492035729749e-06, 'lordship': 3.2860984071459497e-06, "Sturley's": 1.6430492035729749e-06, 'allusion': 3.2860984071459497e-06, 'Ashley': 1.6430492035729749e-06, 'scrivener': 1.6430492035729749e-06, 'Gelly': 1.6430492035729749e-06, 'Merrick': 1.6430492035729749e-06, 'mercer': 1.6430492035729749e-06, 'bye': 1.6430492035729749e-06, 'warys': 1.6430492035729749e-06, 'yow': 4.929147610718925e-06, 'selle': 1.6430492035729749e-06, 'presentlye': 1.6430492035729749e-06, 'profet': 1.6430492035729749e-06, 'Yff': 1.6430492035729749e-06, 'bargen': 1.6430492035729749e-06, 'Sha.': 1.6430492035729749e-06, 'MS': 2.4645738053594624e-06, 'Receave': 1.6430492035729749e-06, 'ther': 4.929147610718925e-06, 'brynge': 1.6430492035729749e-06, 'maye': 2.4645738053594624e-06, 'knite': 1.6430492035729749e-06, 'stockynges': 1.6430492035729749e-06, 'ys': 1.6430492035729749e-06, 'gret': 1.6430492035729749e-06, 'byinge': 1.6430492035729749e-06, 'Aysshom': 1.6430492035729749e-06, 'thynke': 1.6430492035729749e-06, 'yff': 1.6430492035729749e-06, 'copybooks': 1.6430492035729749e-06, 'chartaceos': 1.6430492035729749e-06, 'libellos': 1.6430492035729749e-06, 'apron': 6.5721968142918994e-06, 'hattes': 1.6430492035729749e-06, 'boies': 1.6430492035729749e-06, 'yongst': 1.6430492035729749e-06, 'silke': 1.6430492035729749e-06, 'Isabell': 1.6430492035729749e-06, 'Bardall': 1.6430492035729749e-06, 'Cozen': 1.6430492035729749e-06, 'Bardell': 1.6430492035729749e-06, 'handicraftsman': 1.6430492035729749e-06, 'Walford': 1.6430492035729749e-06, 'drapers': 2.4645738053594624e-06, 'deluged': 1.6430492035729749e-06, 'Unckle': 1.6430492035729749e-06, 'Quyne': 1.6430492035729749e-06, 'Watling': 1.6430492035729749e-06, 'Cats': 1.6430492035729749e-06, 'Canning': 1.6430492035729749e-06, 'tooke': 2.4645738053594624e-06, 'Grevile': 1.6430492035729749e-06, 'Ceartaine': 1.6430492035729749e-06, 'beefore': 1.6430492035729749e-06, 'towardes': 1.6430492035729749e-06, 'synce': 1.6430492035729749e-06, 'dessier': 1.6430492035729749e-06, 'mee': 4.929147610718925e-06, 'standeth': 1.6430492035729749e-06, 'uppon': 3.2860984071459497e-06, 'paide': 1.6430492035729749e-06, 'Peeter': 1.6430492035729749e-06, 'Rowswell': 1.6430492035729749e-06, 'entreat': 1.6430492035729749e-06, 'delivre': 1.6430492035729749e-06, 'inclosed': 1.6430492035729749e-06, 'Comend': 1.6430492035729749e-06, 'Rychard': 1.6430492035729749e-06, 'Mytton': 1.6430492035729749e-06, 'whoe': 2.4645738053594624e-06, 'ffreind': 1.6430492035729749e-06, "Stratford's": 1.6430492035729749e-06, 'myn': 1.6430492035729749e-06, 'resonable': 1.6430492035729749e-06, 'conscionable': 1.6430492035729749e-06, 'hir': 1.6430492035729749e-06, 'maiestie': 1.6430492035729749e-06, 'graunt': 1.6430492035729749e-06, 'twise': 1.6430492035729749e-06, '1598/9': 1.6430492035729749e-06, 'thither': 1.6430492035729749e-06, 'homewards': 1.6430492035729749e-06, 'Fanshawe': 1.6430492035729749e-06, '1599': 1.6430492035729749e-06, 'manye': 1.6430492035729749e-06, 'Guiftes': 1.6430492035729749e-06, 'myne': 1.6430492035729749e-06, 'owne': 1.6430492035729749e-06, 'Cowrtiers': 1.6430492035729749e-06, 'effectinge': 1.6430492035729749e-06, 'hande': 3.2860984071459497e-06, 'commons': 1.6430492035729749e-06, 'Bancroft': 4.929147610718925e-06, 'hedges': 2.4645738053594624e-06, '1600/1': 1.6430492035729749e-06, 'Accompanied': 1.6430492035729749e-06, 'Coke': 2.4645738053594624e-06, 'doorkeeper': 1.6430492035729749e-06, 'colde': 3.2860984071459497e-06, 'nott': 2.4645738053594624e-06, 'att': 2.4645738053594624e-06, 'Leasure': 1.6430492035729749e-06, 'thees': 1.6430492035729749e-06, 'trobles': 1.6430492035729749e-06, 'pynte': 1.6430492035729749e-06, 'muskadell': 1.6430492035729749e-06, "Greville's": 4.107623008932437e-06, 'husbandry': 1.6430492035729749e-06, 'greate': 1.6430492035729749e-06, 'oathe': 1.6430492035729749e-06, 'thatt': 1.6430492035729749e-06, 'soe': 1.6430492035729749e-06, 'hys': 4.929147610718925e-06, 'sackes': 1.6430492035729749e-06, 'anye': 1.6430492035729749e-06, 'shuld': 3.2860984071459497e-06, 'behynde': 1.6430492035729749e-06, 'hym': 2.4645738053594624e-06, '1601': 2.4645738053594624e-06, 'Wycombe': 1.6430492035729749e-06, 'Uxbridge': 1.6430492035729749e-06, 'Aylesbury': 2.4645738053594624e-06, 'Banbury': 1.6430492035729749e-06, 'bayly': 1.6430492035729749e-06, 'Edwardes': 1.6430492035729749e-06, 'beinge': 2.4645738053594624e-06, 'hadd': 1.6430492035729749e-06, 'swearinge': 1.6430492035729749e-06, 'townsmen': 2.4645738053594624e-06, 'hytt': 1.6430492035729749e-06, 'shulde': 1.6430492035729749e-06, 'coste': 1.6430492035729749e-06, 'sayed': 1.6430492035729749e-06, 'ether': 1.6430492035729749e-06, 'Lorde': 1.6430492035729749e-06, 'countrey': 1.6430492035729749e-06, 'Ffortescue': 1.6430492035729749e-06, 'exchequer': 1.6430492035729749e-06, 'prevaile': 1.6430492035729749e-06, 'Bromley': 1.6430492035729749e-06, 'effecte': 1.6430492035729749e-06, 'wynne': 1.6430492035729749e-06, 'sworde': 1.6430492035729749e-06, 'Robin': 1.6430492035729749e-06, 'abaringe': 1.6430492035729749e-06, 'Edw': 1.6430492035729749e-06, 'Grevyles': 1.6430492035729749e-06, 'minaces': 1.6430492035729749e-06, 'Baileefe': 2.4645738053594624e-06, 'Aldermen': 1.6430492035729749e-06, 'Burgesses': 1.6430492035729749e-06, 'Stratforde': 1.6430492035729749e-06, 'tyme': 2.4645738053594624e-06, "Ryc'": 1.6430492035729749e-06, 'Quyney': 1.6430492035729749e-06, 'bayleefe': 1.6430492035729749e-06, 'druncke': 2.4645738053594624e-06, 'braweling': 1.6430492035729749e-06, 'howse': 2.4645738053594624e-06, 'wher': 1.6430492035729749e-06, 'thei': 1.6430492035729749e-06, 'drewe': 1.6430492035729749e-06, 'dagers': 1.6430492035729749e-06, 'hoste': 1.6430492035729749e-06, 'faier': 1.6430492035729749e-06, 'abroade': 1.6430492035729749e-06, 'comminge': 1.6430492035729749e-06, 'hurley': 1.6430492035729749e-06, 'burley': 1.6430492035729749e-06, 'commawnded': 1.6430492035729749e-06, 'prevayle': 1.6430492035729749e-06, 'endevor': 1.6430492035729749e-06, 'sticle': 1.6430492035729749e-06, 'brawle': 1.6430492035729749e-06, 'heade': 1.6430492035729749e-06, 'grevouselye': 1.6430492035729749e-06, 'brooken': 1.6430492035729749e-06, 'nether': 1.6430492035729749e-06, 'hymselfe': 1.6430492035729749e-06, 'punnished': 2.4645738053594624e-06, 'wolde': 1.6430492035729749e-06, 'shewe': 1.6430492035729749e-06, 'turne': 1.6430492035729749e-06, 'awaye': 1.6430492035729749e-06, 'enterteyned': 1.6430492035729749e-06, 'agayne': 1.6430492035729749e-06, 'Unconsciously': 1.6430492035729749e-06, 'inimical': 1.6430492035729749e-06, 'underrate': 1.6430492035729749e-06, 'preponderating': 1.6430492035729749e-06, 'Periclean': 1.6430492035729749e-06, 'admonishments': 1.6430492035729749e-06, 'soundness': 1.6430492035729749e-06, 'historicism': 1.6430492035729749e-06, 'methodological': 3.2860984071459497e-06, 'credulousness': 1.6430492035729749e-06, 'proneness': 1.6430492035729749e-06, 'unprofessional': 1.6430492035729749e-06, 'Israelite': 1.6430492035729749e-06, "Adams'": 3.2860984071459497e-06, 'trustworthy': 3.2860984071459497e-06, 'reappraisals': 1.6430492035729749e-06, 'antifundamentalist': 1.6430492035729749e-06, 'substantiate': 2.4645738053594624e-06, 'smacks': 1.6430492035729749e-06, 'contradicted': 2.4645738053594624e-06, 'monasteries': 2.4645738053594624e-06, 'dispatches': 3.2860984071459497e-06, 'adjudging': 1.6430492035729749e-06, 'exposited': 1.6430492035729749e-06, 'Anglophobia': 1.6430492035729749e-06, 'Impartiality': 1.6430492035729749e-06, 'historiography': 2.4645738053594624e-06, 'terming': 1.6430492035729749e-06, 'Ranke': 1.6430492035729749e-06, 'dullness': 1.6430492035729749e-06, 'chronicles': 1.6430492035729749e-06, 'Froissart': 1.6430492035729749e-06, 'theorizing': 1.6430492035729749e-06, 'fogged': 1.6430492035729749e-06, 'unproved': 1.6430492035729749e-06, 'generalization': 4.107623008932437e-06, 'servile': 2.4645738053594624e-06, 'revolts': 2.4645738053594624e-06, 'bald': 4.107623008932437e-06, 'rigidity': 2.4645738053594624e-06, 'typifying': 1.6430492035729749e-06, 'pontificates': 1.6430492035729749e-06, 'Shotwell': 1.6430492035729749e-06, 'appalled': 2.4645738053594624e-06, 'spurious': 2.4645738053594624e-06, 'Carolingian': 1.6430492035729749e-06, 'embodying': 3.2860984071459497e-06, 'Wergeland': 1.6430492035729749e-06, 'antihistorical': 1.6430492035729749e-06, 'Clive': 1.6430492035729749e-06, 'omits': 2.4645738053594624e-06, 'Wasson': 1.6430492035729749e-06, 'mundane': 3.2860984071459497e-06, 'unseen': 4.929147610718925e-06, 'motivating': 3.2860984071459497e-06, 'priestly': 1.6430492035729749e-06, 'caste': 3.2860984071459497e-06, 'deities': 2.4645738053594624e-06, 'Elijah': 1.6430492035729749e-06, 'Doctrine': 7.393721416078387e-06, 'Decay': 1.6430492035729749e-06, 'monasticism': 1.6430492035729749e-06, 'religiosity': 1.6430492035729749e-06, 'Catherwood': 2.4645738053594624e-06, 'Piranesi': 1.6430492035729749e-06, 'reconstructs': 1.6430492035729749e-06, 'dinosaur': 1.6430492035729749e-06, 'petrified': 2.4645738053594624e-06, 'unearthed': 2.4645738053594624e-06, "Stephens's": 2.4645738053594624e-06, 'farmhouse': 7.393721416078387e-06, 'unmarked': 1.6430492035729749e-06, 'cholera': 1.6430492035729749e-06, 'Makers': 1.6430492035729749e-06, 'Finders': 1.6430492035729749e-06, 'resurrecting': 1.6430492035729749e-06, 'adventurous': 4.929147610718925e-06, 'metier': 1.6430492035729749e-06, 'tropics': 1.6430492035729749e-06, 'Amazon': 2.4645738053594624e-06, 'sleepless': 1.6430492035729749e-06, 'howling': 3.2860984071459497e-06, 'sore-ridden': 1.6430492035729749e-06, 'Kofanes': 1.6430492035729749e-06, 'Huitotoes': 1.6430492035729749e-06, 'rediscovery': 2.4645738053594624e-06, 'Inca': 1.6430492035729749e-06, 'Pizarro': 1.6430492035729749e-06, 'Peru': 4.107623008932437e-06, 'Dorado': 4.107623008932437e-06, 'Sierra': 2.4645738053594624e-06, 'Tibetan-like': 1.6430492035729749e-06, 'emerald': 2.4645738053594624e-06, 'Muzo': 1.6430492035729749e-06, 'naturalist': 1.6430492035729749e-06, 'quetzal': 2.4645738053594624e-06, 'Mayans': 1.6430492035729749e-06, 'Ecuador': 1.6430492035729749e-06, 'Galapagos': 1.6430492035729749e-06, 'turtles': 1.6430492035729749e-06, "Victor's": 1.6430492035729749e-06, 'Broun': 3.2860984071459497e-06, 'morbid': 1.6430492035729749e-06, 'prowling': 2.4645738053594624e-06, 'schoolchildren': 1.6430492035729749e-06, 'bragging': 1.6430492035729749e-06, 'Fuhrer': 1.6430492035729749e-06, 'charitable': 4.107623008932437e-06, 'Neilson': 1.6430492035729749e-06, 'Kennard': 2.4645738053594624e-06, 'Rand': 1.6430492035729749e-06, 'mediaevalist': 1.6430492035729749e-06, 'aeternitatis': 1.6430492035729749e-06, 'bluebook': 1.6430492035729749e-06, 'Propertius': 1.6430492035729749e-06, 'Coleridge': 1.6430492035729749e-06, 'Benedictine': 1.6430492035729749e-06, "Anselm's": 1.6430492035729749e-06, 'Priory': 1.6430492035729749e-06, "Great's": 1.6430492035729749e-06, 'Scholastica': 1.6430492035729749e-06, 'Dialogues': 1.6430492035729749e-06, 'slimly': 1.6430492035729749e-06, 'Burlingham': 2.4645738053594624e-06, 'insatiable': 1.6430492035729749e-06, 'fellow-creatures': 1.6430492035729749e-06, 'Trotsky': 1.6430492035729749e-06, "Simonson's": 1.6430492035729749e-06, 'nonogenarian': 1.6430492035729749e-06, 'Sedgwick': 3.2860984071459497e-06, 'ninety-five': 1.6430492035729749e-06, 'remarried': 2.4645738053594624e-06, 'Cavallinis': 1.6430492035729749e-06, 'Trastevere': 3.2860984071459497e-06, 'eighties': 1.6430492035729749e-06, 'Epicurus': 1.6430492035729749e-06, 'Dante': 2.4645738053594624e-06, 'Happiness': 1.6430492035729749e-06, 'Epicurean': 1.6430492035729749e-06, 'frugality': 2.4645738053594624e-06, 'Antony': 2.4645738053594624e-06, "Earth's": 5.750672212505412e-06, 'ninetieth': 1.6430492035729749e-06, 'Burghardt': 1.6430492035729749e-06, 'Bois': 1.6430492035729749e-06, 'embarked': 2.4645738053594624e-06, 'eighty-nine': 1.6430492035729749e-06, 'intelligentsia': 1.6430492035729749e-06, 'Tuskegee': 1.6430492035729749e-06, 'coloured': 1.6430492035729749e-06, 'C.C.B.': 2.4645738053594624e-06, 'Ratcliffe': 1.6430492035729749e-06, "elephant's": 1.6430492035729749e-06, 'lark': 1.6430492035729749e-06, 'gazelle': 1.6430492035729749e-06, 'seventy-six': 1.6430492035729749e-06, 'humour': 1.6430492035729749e-06, 'S.K.': 4.929147610718925e-06, 'obituaries': 2.4645738053594624e-06, 'Needy': 1.6430492035729749e-06, 'Knife-grinder': 1.6430492035729749e-06, 'Methuselah': 2.4645738053594624e-06, 'G.B.S.': 1.6430492035729749e-06, 'bookshelves': 3.2860984071459497e-06, 'eighty-five': 1.6430492035729749e-06, 'lectured': 2.4645738053594624e-06, 'patronized': 3.2860984071459497e-06, 'facile': 1.6430492035729749e-06, 'mediocrities': 1.6430492035729749e-06, 'Whiteleaf': 1.6430492035729749e-06, 'Boadicea': 1.6430492035729749e-06, "Orwell's": 2.4645738053594624e-06, '1984': 1.6430492035729749e-06, 'uncharted': 3.2860984071459497e-06, 'Orwellian': 1.6430492035729749e-06, 'wordlessly': 2.4645738053594624e-06, 'telegraphed': 2.4645738053594624e-06, 'Mencken': 3.2860984071459497e-06, 'Drawing': 3.2860984071459497e-06, 'Gantry': 4.929147610718925e-06, '140,000': 1.6430492035729749e-06, 'soothe': 2.4645738053594624e-06, 'drunkards': 3.2860984071459497e-06, 'Breasted': 5.750672212505412e-06, 'Grosvenor': 2.4645738053594624e-06, 'sanitarium': 1.6430492035729749e-06, 'normalize': 1.6430492035729749e-06, 'euphemism': 1.6430492035729749e-06, 'unpacking': 1.6430492035729749e-06, 'bootlegger': 1.6430492035729749e-06, 'hangers-on': 1.6430492035729749e-06, 'barflies': 1.6430492035729749e-06, 'Wylie': 2.4645738053594624e-06, 'Dorens': 1.6430492035729749e-06, 'Rebecca': 1.6430492035729749e-06, 'Walpole': 1.6430492035729749e-06, 'Osbert': 1.6430492035729749e-06, 'Stallings': 1.6430492035729749e-06, 'Browne': 1.6430492035729749e-06, 'Seabrook': 1.6430492035729749e-06, 'Woodwards': 2.4645738053594624e-06, 'Birkhead': 3.2860984071459497e-06, 'Sanatorium': 1.6430492035729749e-06, 'Blackman': 1.3144393628583799e-05, 'outfitted': 1.6430492035729749e-06, 'indisposed': 3.2860984071459497e-06, "Lewis's": 4.929147610718925e-06, 'Casanova': 2.4645738053594624e-06, 'discreet': 2.4645738053594624e-06, 'solicitous': 2.4645738053594624e-06, 'chambermaids': 1.6430492035729749e-06, "Gracie's": 1.6430492035729749e-06, 'adores': 1.6430492035729749e-06, 'Stidger': 2.4645738053594624e-06, 'Ben-hadad': 1.6430492035729749e-06, 'Drunk': 3.2860984071459497e-06, 'Bury': 2.4645738053594624e-06, 'unquiet': 1.6430492035729749e-06, 'slang': 2.4645738053594624e-06, 'loquacity': 1.6430492035729749e-06, 'impossibility': 1.6430492035729749e-06, 'vocally': 1.6430492035729749e-06, 'allegro': 1.6430492035729749e-06, 'editorialist': 1.6430492035729749e-06, 'ferret': 1.6430492035729749e-06, 'Stanhope': 1.6430492035729749e-06, 'rumors': 4.107623008932437e-06, 'snobbery': 4.107623008932437e-06, 'Gracie': 1.6430492035729749e-06, 'Sybil': 2.4645738053594624e-06, 'Colefax': 1.6430492035729749e-06, 'Thomson': 2.4645738053594624e-06, 'Bechhofer': 1.6430492035729749e-06, 'chatted': 2.4645738053594624e-06, 'pajamas': 3.2860984071459497e-06, 'smoking': 7.393721416078387e-06, 'apologize': 1.6430492035729749e-06, 'motoring': 1.6430492035729749e-06, 'Southampton': 2.4645738053594624e-06, 'Vachell': 1.6430492035729749e-06, 'gaucheries': 1.6430492035729749e-06, 'incepting': 3.2860984071459497e-06, 'bachelors': 4.107623008932437e-06, '1629': 4.107623008932437e-06, 'Masson': 1.6430492035729749e-06, '1:218': 1.6430492035729749e-06, 'fifty-nine': 1.6430492035729749e-06, 'ordo': 3.2860984071459497e-06, 'senioritatis': 2.4645738053594624e-06, 'incepted': 1.6430492035729749e-06, 'Peterhouse': 2.4645738053594624e-06, "Queens'": 2.4645738053594624e-06, 'Caius': 1.6430492035729749e-06, 'Clare': 1.6430492035729749e-06, 'matriculated': 3.2860984071459497e-06, '1625': 4.929147610718925e-06, '1632': 4.107623008932437e-06, '1639-40': 1.6430492035729749e-06, 'B.D.': 1.6430492035729749e-06, '1639': 1.6430492035729749e-06, 'deacon': 2.4645738053594624e-06, '1633': 1.6430492035729749e-06, 'Ravencroft': 1.6430492035729749e-06, '1631': 1.6430492035729749e-06, 'Manningham': 2.4645738053594624e-06, '1624': 2.4645738053594624e-06, 'Venn': 2.4645738053594624e-06, 'B.A.': 2.4645738053594624e-06, 'Boutflower': 1.6430492035729749e-06, 'Lovering': 1.6430492035729749e-06, 'pensioner': 2.4645738053594624e-06, 'fourteenth': 2.4645738053594624e-06, 'Buckenham': 1.6430492035729749e-06, 'Buckman': 1.6430492035729749e-06, 'inceptor': 1.6430492035729749e-06, 'Chappell': 1.6430492035729749e-06, 'Lightfoot': 1.6430492035729749e-06, 'proctors': 1.6430492035729749e-06, 'comported': 1.6430492035729749e-06, 'vice-chancellor': 1.6430492035729749e-06, 'Recapitulation': 1.6430492035729749e-06, 'logic-rhetoric': 1.6430492035729749e-06, 'divinity': 2.4645738053594624e-06, 'Galen': 1.6430492035729749e-06, 'devastatingly': 1.6430492035729749e-06, 'artfully': 3.2860984071459497e-06, 'prayerfully': 1.6430492035729749e-06, 'extempore': 1.6430492035729749e-06, '1628/29': 1.6430492035729749e-06, 'Naturam': 1.6430492035729749e-06, 'Pati': 1.6430492035729749e-06, 'Senium': 1.6430492035729749e-06, 'Platonica': 1.6430492035729749e-06, 'domi': 1.6430492035729749e-06, 'forisque': 1.6430492035729749e-06, 'boastings': 1.6430492035729749e-06, 'pastimes': 1.6430492035729749e-06, 'uncommunicative': 1.6430492035729749e-06, 'nonliterary': 1.6430492035729749e-06, 'walker': 1.6430492035729749e-06, 'prolusions': 4.107623008932437e-06, 'reedy': 2.4645738053594624e-06, 'Cam': 1.6430492035729749e-06, 'roved': 1.6430492035729749e-06, 'Chesterton': 1.6430492035729749e-06, 'fens': 1.6430492035729749e-06, 'Ouse': 1.6430492035729749e-06, 'Gog': 1.6430492035729749e-06, 'Magog': 1.6430492035729749e-06, 'imbibed': 2.4645738053594624e-06, 'abstinence': 1.6430492035729749e-06, 'resided': 3.2860984071459497e-06, 'Graceful': 1.6430492035729749e-06, 'fencing': 4.107623008932437e-06, 'Prolusion': 2.4645738053594624e-06, 'quibusdam': 1.6430492035729749e-06, 'audivi': 1.6430492035729749e-06, 'nuper': 1.6430492035729749e-06, 'Domina': 2.4645738053594624e-06, 'specious': 2.4645738053594624e-06, 'persiflage': 1.6430492035729749e-06, 'allusiveness': 1.6430492035729749e-06, 'meted': 2.4645738053594624e-06, 'egregiously': 1.6430492035729749e-06, 'banter': 4.929147610718925e-06, 'epithet': 2.4645738053594624e-06, "Aubrey's": 1.6430492035729749e-06, '2:67': 1.6430492035729749e-06, 'Bodleian': 1.6430492035729749e-06, 'Aubr.': 1.6430492035729749e-06, 'prolusion': 3.2860984071459497e-06, 'autobiographic': 1.6430492035729749e-06, 'interlocutor': 1.6430492035729749e-06, 'archfool': 1.6430492035729749e-06, 'bantering': 1.6430492035729749e-06, 'pater': 1.6430492035729749e-06, 'Pater': 1.6430492035729749e-06, 'Liber': 1.6430492035729749e-06, 'annihilate': 1.6430492035729749e-06, 'rough-and-tumble': 1.6430492035729749e-06, 'ribald': 1.6430492035729749e-06, 'raillery': 1.6430492035729749e-06, 'reveled': 1.6430492035729749e-06, 'oratio': 1.6430492035729749e-06, 'viciousness': 2.4645738053594624e-06, 'sadistic': 2.4645738053594624e-06, 'tormenting': 2.4645738053594624e-06, 'scathing': 1.6430492035729749e-06, 'Diodati': 1.6430492035729749e-06, '23-36': 1.6430492035729749e-06, 'Lycidas': 1.6430492035729749e-06, '1626': 1.6430492035729749e-06, 'consorted': 1.6430492035729749e-06, 'forbidding': 2.4645738053594624e-06, 'theatricals': 2.4645738053594624e-06, 'Apology': 1.6430492035729749e-06, '3:300': 1.6430492035729749e-06, "enter'd": 1.6430492035729749e-06, 'hypothetical': 7.393721416078387e-06, '1644': 1.6430492035729749e-06, 'eschew': 1.6430492035729749e-06, 'Hartlib': 1.6430492035729749e-06, 'distantly': 1.6430492035729749e-06, "Bellamy's": 1.6430492035729749e-06, 'Backward': 1.6430492035729749e-06, "Wells's": 4.929147610718925e-06, "Clarke's": 1.6430492035729749e-06, "Childhood's": 4.929147610718925e-06, 'dystopias': 7.393721416078387e-06, 'Kurd': 1.6430492035729749e-06, "Lasswitz's": 1.6430492035729749e-06, 'Utopian': 1.1501344425010824e-05, 'Auf': 1.6430492035729749e-06, 'Zwei': 1.6430492035729749e-06, 'Planeten': 1.6430492035729749e-06, 'Overlords': 3.2860984071459497e-06, 'robot': 1.6430492035729749e-06, 'Mankind': 1.6430492035729749e-06, 'attains': 1.6430492035729749e-06, 'undreamed': 1.6430492035729749e-06, 'science-fiction': 7.393721416078387e-06, 'dystopian': 6.5721968142918994e-06, 'paperbacks': 1.6430492035729749e-06, 'extrapolations': 1.6430492035729749e-06, "Asimov's": 1.6430492035729749e-06, 'Caves': 1.6430492035729749e-06, 'super-city': 1.6430492035729749e-06, "Blish's": 1.6430492035729749e-06, "Bradbury's": 2.4645738053594624e-06, 'Fahrenheit': 1.6430492035729749e-06, '451': 1.6430492035729749e-06, 'book-burning': 1.6430492035729749e-06, 'hearing-aid': 1.6430492035729749e-06, 'enslave': 2.4645738053594624e-06, 'Canticle': 1.6430492035729749e-06, 'Leibowitz': 1.6430492035729749e-06, 'Midas': 1.6430492035729749e-06, 'Touch': 1.6430492035729749e-06, 'robots': 3.2860984071459497e-06, "Simak's": 1.6430492035729749e-06, 'How-2': 1.6430492035729749e-06, "Sheckley's": 1.6430492035729749e-06, 'Status': 1.6430492035729749e-06, 'Pedestrian': 1.6430492035729749e-06, 'Lottery': 1.6430492035729749e-06, "Karp's": 1.6430492035729749e-06, "Tucker's": 1.6430492035729749e-06, 'Loud': 1.6430492035729749e-06, "Vance's": 1.6430492035729749e-06, "Vidal's": 1.6430492035729749e-06, 'Messiah': 2.4645738053594624e-06, "Wolfe's": 1.6430492035729749e-06, 'Limbo': 1.6430492035729749e-06, 'Frederik': 1.6430492035729749e-06, "Kornbluth's": 3.2860984071459497e-06, 'Merchants': 4.929147610718925e-06, 'Kurt': 1.6430492035729749e-06, "Vonnegut's": 2.4645738053594624e-06, "Wyndham's": 2.4645738053594624e-06, 'Re-Birth': 2.4645738053594624e-06, "Drunkard's": 1.6430492035729749e-06, 'overpopulated': 1.6430492035729749e-06, 'uninteresting': 1.6430492035729749e-06, 'university-trained': 1.6430492035729749e-06, 'utopias': 1.6430492035729749e-06, "Gulliver's": 1.6430492035729749e-06, "Zamiatin's": 1.6430492035729749e-06, "Capek's": 1.6430492035729749e-06, 'Newts': 1.6430492035729749e-06, 'Brave': 4.107623008932437e-06, "Forster's": 1.6430492035729749e-06, 'Machine': 4.929147610718925e-06, 'Stops': 1.6430492035729749e-06, 'Hideous': 1.6430492035729749e-06, 'Strength': 2.4645738053594624e-06, 'Sleeper': 1.6430492035729749e-06, 'Wakes': 1.6430492035729749e-06, "Williamson's": 1.6430492035729749e-06, 'Folded': 1.6430492035729749e-06, '101': 2.4645738053594624e-06, 'dystopia': 2.4645738053594624e-06, 'Gravity': 1.6430492035729749e-06, "Hoyle's": 1.6430492035729749e-06, 'extrapolate': 1.6430492035729749e-06, 'dehumanize': 1.6430492035729749e-06, 'Easily': 1.6430492035729749e-06, 'extrapolates': 1.6430492035729749e-06, 'behavioral': 3.2860984071459497e-06, 'one-sixteenth': 1.6430492035729749e-06, 'fifteen-sixteenths': 1.6430492035729749e-06, 'two-room': 1.6430492035729749e-06, 'stairwells': 1.6430492035729749e-06, 'soyaburgers': 1.6430492035729749e-06, 'befouled': 1.6430492035729749e-06, 'respirators': 1.6430492035729749e-06, 'soot': 1.6430492035729749e-06, 'Kingsley': 2.4645738053594624e-06, 'Amis': 1.6430492035729749e-06, 'satirizes': 1.6430492035729749e-06, 'Kornbluth': 1.6430492035729749e-06, 'humanist': 3.2860984071459497e-06, 'persuaders': 1.6430492035729749e-06, 'trauma': 1.6430492035729749e-06, 'Courtenay': 4.107623008932437e-06, 'priming': 2.4645738053594624e-06, 'cue-phrase': 1.6430492035729749e-06, 'copywriter': 1.6430492035729749e-06, 'redirecting': 1.6430492035729749e-06, 'manipulators': 1.6430492035729749e-06, 'humanists': 1.6430492035729749e-06, 'Stigmata': 1.6430492035729749e-06, 'deceives': 1.6430492035729749e-06, 'rouge': 2.4645738053594624e-06, 'idealistic': 2.4645738053594624e-06, 'defiant': 3.2860984071459497e-06, 'tombstone': 2.4645738053594624e-06, 'fooling': 3.2860984071459497e-06, 'unfortunates': 1.6430492035729749e-06, 'Anthology': 1.6430492035729749e-06, 'goddess': 3.2860984071459497e-06, 'Serenity': 1.6430492035729749e-06, 'exasperatingly': 1.6430492035729749e-06, 'discontinuous': 3.2860984071459497e-06, 'caterpillar': 1.6430492035729749e-06, 'persona': 2.4645738053594624e-06, 'Heraclitus': 1.6430492035729749e-06, 'Pirandello': 1.6430492035729749e-06, 'Proust': 1.6430492035729749e-06, 'near-Communists': 1.6430492035729749e-06, 'centrist': 1.6430492035729749e-06, 'sociologically': 1.6430492035729749e-06, 'skepticism': 4.929147610718925e-06, 'Laodicean': 2.4645738053594624e-06, 'Spencerian': 1.6430492035729749e-06, 'Spencer': 1.97165904428757e-05, 'succumbing': 1.6430492035729749e-06, 'weasel-worded': 1.6430492035729749e-06, 'encomiums': 1.6430492035729749e-06, 'prouder': 1.6430492035729749e-06, 'unblemished': 1.6430492035729749e-06, 'well-deserved': 2.4645738053594624e-06, 'Steffens': 1.6430492035729749e-06, 'recanted': 1.6430492035729749e-06, 'palliative': 1.6430492035729749e-06, 'profoundest': 1.6430492035729749e-06, 'senile': 2.4645738053594624e-06, 'Apropos': 1.6430492035729749e-06, 'imitators': 2.4645738053594624e-06, 'Cynical': 1.6430492035729749e-06, 'Blasphemous': 1.6430492035729749e-06, 'barbarous': 1.6430492035729749e-06, 'prescribes': 1.6430492035729749e-06, 'pacifist': 2.4645738053594624e-06, 'hangman': 1.6430492035729749e-06, 'Seems': 6.5721968142918994e-06, 'Punishment': 1.6430492035729749e-06, 'wrongdoer': 1.6430492035729749e-06, 'counterbalance': 2.4645738053594624e-06, 'Existentialism': 1.6430492035729749e-06, 'Malraux': 1.1501344425010824e-05, "Malraux's": 7.393721416078387e-06, 'Trees': 5.750672212505412e-06, 'Altenburg': 4.107623008932437e-06, 'Lutte': 1.6430492035729749e-06, 'avec': 1.6430492035729749e-06, "l'Ange": 1.6430492035729749e-06, 'Gestapo': 1.6430492035729749e-06, 'Metamorphose': 1.6430492035729749e-06, 'Dieux': 1.6430492035729749e-06, 'rewritten': 1.6430492035729749e-06, 'modesty': 4.107623008932437e-06, 'bibliophiles': 1.6430492035729749e-06, 'connoisseurs': 2.4645738053594624e-06, 'unrecoverable': 1.6430492035729749e-06, 'smoldering': 1.6430492035729749e-06, 'Frohock': 1.6430492035729749e-06, 'Loyalist': 1.6430492035729749e-06, 'non-propagandistic': 1.6430492035729749e-06, 'inadvertent': 2.4645738053594624e-06, 'anarchist-adventurers': 1.6430492035729749e-06, 'Perken': 1.6430492035729749e-06, 'Garine': 1.6430492035729749e-06, 'self-sacrificing': 1.6430492035729749e-06, 'Kyo': 1.6430492035729749e-06, 'Gisors': 1.6430492035729749e-06, 'Katow': 1.6430492035729749e-06, 'Alvear': 1.6430492035729749e-06, 'art-historian': 1.6430492035729749e-06, 'exaltations': 1.6430492035729749e-06, 'catalyst': 3.2860984071459497e-06, 'will-to-power': 1.6430492035729749e-06, 'furor': 3.2860984071459497e-06, 'illuminations': 1.6430492035729749e-06, 'piercing': 3.2860984071459497e-06, 'radiance': 3.2860984071459497e-06, 'triptych': 1.6430492035729749e-06, 'enclosing': 1.6430492035729749e-06, 'Resistance': 2.4645738053594624e-06, 'bewildered': 5.750672212505412e-06, 'appanage': 1.6430492035729749e-06, 'dogged': 2.4645738053594624e-06, 'Awkwardly': 2.4645738053594624e-06, 'laboriously': 2.4645738053594624e-06, 'Roman-camp': 1.6430492035729749e-06, 'hovel': 2.4645738053594624e-06, 'mummies': 1.6430492035729749e-06, 'fresco': 7.393721416078387e-06, 'cave-men': 1.6430492035729749e-06, 're-vision': 1.6430492035729749e-06, 'alluding': 1.6430492035729749e-06, 'Nietzsche': 2.4645738053594624e-06, 'Pasha': 3.2860984071459497e-06, 'embracing': 4.107623008932437e-06, 'Adrianople': 1.6430492035729749e-06, 'Silk': 1.6430492035729749e-06, 'sunk': 5.750672212505412e-06, 'somnolence': 1.6430492035729749e-06, 'Occident': 2.4645738053594624e-06, 'Trains': 1.6430492035729749e-06, 'cabs': 1.6430492035729749e-06, 'culte': 1.6430492035729749e-06, 'moi': 1.6430492035729749e-06, 'deepened': 2.4645738053594624e-06, 'dawning': 2.4645738053594624e-06, 'strangeness': 2.4645738053594624e-06, 'immensities': 1.6430492035729749e-06, 'Citing': 2.4645738053594624e-06, 'Combined': 1.6430492035729749e-06, "Anthony's": 1.6430492035729749e-06, 'xenophobia': 2.4645738053594624e-06, 'federation': 3.2860984071459497e-06, 'confederation': 1.6430492035729749e-06, 'functionalism': 1.6430492035729749e-06, 'advocated': 4.107623008932437e-06, 'fearfully': 4.107623008932437e-06, 'hesitant': 3.2860984071459497e-06, '50-year': 1.6430492035729749e-06, 'Benelux': 2.4645738053594624e-06, 'proliferated': 1.6430492035729749e-06, 'consultative': 1.6430492035729749e-06, 'supranational': 1.6430492035729749e-06, 'capped': 2.4645738053594624e-06, 'tariff-free': 1.6430492035729749e-06, 'Euratom': 1.6430492035729749e-06, 'democracies': 1.6430492035729749e-06, 'groom': 4.107623008932437e-06, 'centuries-old': 2.4645738053594624e-06, 'insularity': 3.2860984071459497e-06, 'overdue': 2.4645738053594624e-06, 'Parties': 1.6430492035729749e-06, 'Parliamentarians': 1.6430492035729749e-06, 'evolves': 1.6430492035729749e-06, 'Conceived': 1.6430492035729749e-06, 'prescriptions': 2.4645738053594624e-06, 'devising': 1.6430492035729749e-06, 'overhaul': 3.2860984071459497e-06, 'Grenville': 1.6430492035729749e-06, 'Sohn': 1.6430492035729749e-06, 'apocalyptic': 3.2860984071459497e-06, 'Lockian': 1.6430492035729749e-06, 'pluralistic': 2.4645738053594624e-06, 'multi-state': 1.6430492035729749e-06, 'pluralism': 1.6430492035729749e-06, 'non-Communist': 1.6430492035729749e-06, 'poetry-and-jazz': 4.107623008932437e-06, 'goldfish': 1.6430492035729749e-06, 'pee-wee': 1.6430492035729749e-06, 'Rexroth': 5.750672212505412e-06, 'Evergreen': 1.6430492035729749e-06, 'Ferlenghetti': 1.6430492035729749e-06, 'Lippincott': 1.6430492035729749e-06, 'Tristano': 4.107623008932437e-06, 'exploiters': 1.6430492035729749e-06, 'Patchen': 2.218116424823516e-05, 'musically': 2.4645738053594624e-06, 'poetically': 2.4645738053594624e-06, 'longtime': 1.6430492035729749e-06, 'name-dropper': 1.6430492035729749e-06, 'Mingus': 1.6430492035729749e-06, 'Sextet': 2.4645738053594624e-06, 'Downbeat': 1.6430492035729749e-06, 'CJS': 1.6430492035729749e-06, "Patchen's": 6.5721968142918994e-06, 'Communistic': 1.6430492035729749e-06, 'pacifistic': 1.6430492035729749e-06, 'hunted': 6.5721968142918994e-06, 'power-hungry': 1.6430492035729749e-06, 'money-hungry': 1.6430492035729749e-06, 'redemptive': 1.6430492035729749e-06, 'preaches': 1.6430492035729749e-06, 'odious': 3.2860984071459497e-06, 'moneyed': 1.6430492035729749e-06, 'sentinel': 2.4645738053594624e-06, 'messengers': 1.6430492035729749e-06, 'myth-making': 2.4645738053594624e-06, 'pseudo-anthropological': 2.4645738053594624e-06, 'grandiloquent': 1.6430492035729749e-06, 'travelogue-like': 1.6430492035729749e-06, 'Cloth': 1.6430492035729749e-06, 'Tempest': 1.6430492035729749e-06, 'Sleepers': 1.6430492035729749e-06, 'Awake': 1.6430492035729749e-06, 'poems-in-drawing-and-type': 1.6430492035729749e-06, 'underdog': 2.4645738053594624e-06, 'Youngest': 1.6430492035729749e-06, 'Trickster': 1.6430492035729749e-06, 'non-literary': 1.6430492035729749e-06, 'Memoirs': 1.6430492035729749e-06, 'Pornographer': 1.6430492035729749e-06, 'Budd': 4.929147610718925e-06, 'Dragnet': 1.6430492035729749e-06, 'bebop': 1.6430492035729749e-06, 'Dizzy': 1.6430492035729749e-06, 'Gillespie': 3.2860984071459497e-06, 'Lennie': 1.6430492035729749e-06, 'Konitz': 2.4645738053594624e-06, 'bop': 3.2860984071459497e-06, 'Rollins': 1.6430492035729749e-06, 'Marsh': 4.107623008932437e-06, "Rexroth's": 1.6430492035729749e-06, 'chants': 3.2860984071459497e-06, 'Rainy': 1.6430492035729749e-06, 'juxtaposition': 3.2860984071459497e-06, 'Novak': 1.6430492035729749e-06, 'improvisation': 1.6430492035729749e-06, 'cultivates': 1.6430492035729749e-06, 'naivete': 2.4645738053594624e-06, 'non-intellectual': 1.6430492035729749e-06, "Hangman's": 1.6430492035729749e-06, 'Anger': 2.4645738053594624e-06, 'Angry': 3.2860984071459497e-06, 'filth': 2.4645738053594624e-06, 'modulated': 1.6430492035729749e-06, 'Hurray': 1.6430492035729749e-06, 'Anything': 1.3144393628583799e-05, 'a-crowing': 1.6430492035729749e-06, 'asses': 2.4645738053594624e-06, "han'": 4.107623008932437e-06, 'doleful': 1.6430492035729749e-06, 'mournful': 1.6430492035729749e-06, 'aberration': 3.2860984071459497e-06, 'disconnected': 4.107623008932437e-06, 'Krim': 1.4787442832156774e-05, 'York-born': 1.6430492035729749e-06, 'duck': 8.215246017864873e-06, 'OWI': 1.6430492035729749e-06, 'Paramount': 1.6430492035729749e-06, 'newsreel': 1.6430492035729749e-06, 'quibble': 1.6430492035729749e-06, 'typicality': 3.2860984071459497e-06, 'typify': 1.6430492035729749e-06, "generation's": 1.6430492035729749e-06, "Krim's": 7.393721416078387e-06, 'sweated': 1.6430492035729749e-06, 'eclectically': 1.6430492035729749e-06, 'pseudo-glamorous': 2.4645738053594624e-06, 'untruth': 2.4645738053594624e-06, "Yorker's": 1.6430492035729749e-06, 'outlanders': 1.6430492035729749e-06, 'misinformation': 1.6430492035729749e-06, 'fulminating': 1.6430492035729749e-06, 'Closely': 3.2860984071459497e-06, 'Jewishness': 2.4645738053594624e-06, 'intellectual-literary': 1.6430492035729749e-06, 'unappeasably': 1.6430492035729749e-06, 'unique-ingrown-screwedup': 1.6430492035729749e-06, 'blushes': 1.6430492035729749e-06, 'ikey-kikey': 1.6430492035729749e-06, 'Yiddish': 4.107623008932437e-06, 'unappeasable': 1.6430492035729749e-06, 'Franco-Irishman': 1.6430492035729749e-06, "Jews'": 1.6430492035729749e-06, 'anthropological-religious': 1.6430492035729749e-06, 'pogroms': 2.4645738053594624e-06, 'ghettos': 4.929147610718925e-06, 'Bellow': 2.4645738053594624e-06, 'Malamud': 1.6430492035729749e-06, 'Yaddo': 1.6430492035729749e-06, 'precociously': 1.6430492035729749e-06, 'staples': 1.6430492035729749e-06, "fiction-writer's": 1.6430492035729749e-06, 'bugged': 2.4645738053594624e-06, 'diddling': 1.6430492035729749e-06, 'fiction-writing': 1.6430492035729749e-06, 'Bartleby': 2.4645738053594624e-06, 'Scrivener': 2.4645738053594624e-06, 'internationalized': 1.6430492035729749e-06, 'Commentary': 3.2860984071459497e-06, 'Partisan': 8.215246017864873e-06, 'Exodus': 1.6430492035729749e-06, "staff's": 1.6430492035729749e-06, 'tiptoeing': 2.4645738053594624e-06, 'booboo': 1.6430492035729749e-06, 'arch-enemy': 1.6430492035729749e-06, 'what-will-T.': 1.6430492035729749e-06, 'Eliot-or-Martin': 1.6430492035729749e-06, 'Buber-think': 1.6430492035729749e-06, 'snob-clannish': 1.6430492035729749e-06, 'overcerebral': 1.6430492035729749e-06, 'Europeanish': 1.6430492035729749e-06, 'aristocratically': 1.6430492035729749e-06, 'synthesize': 1.6430492035729749e-06, 'crazily': 4.107623008932437e-06, 'Spenglerian': 1.6430492035729749e-06, 'inclusiveness': 1.6430492035729749e-06, 'Kenyon': 2.4645738053594624e-06, 'Sewanee': 1.6430492035729749e-06, 'Anglo-Protestant': 1.6430492035729749e-06, 'Critical': 3.2860984071459497e-06, 'Englishy': 1.6430492035729749e-06, 'social-register': 1.6430492035729749e-06, 'unnaturalness': 1.6430492035729749e-06, 'transoms': 2.4645738053594624e-06, 'Qui': 1.6430492035729749e-06, "s'excuse": 1.6430492035729749e-06, "s'accuse": 1.6430492035729749e-06, 'castigates': 1.6430492035729749e-06, 'flatulence': 1.6430492035729749e-06, 'Sociological': 1.6430492035729749e-06, 'Germano-Slavic': 1.6430492035729749e-06, 'approximations': 3.2860984071459497e-06, 'third-rate': 1.6430492035729749e-06, 'modish': 1.6430492035729749e-06, 'disfigured': 4.929147610718925e-06, 'cosmopolitanism': 2.4645738053594624e-06, 'Wolfes': 1.6430492035729749e-06, 'Farrells': 1.6430492035729749e-06, 'Dreisers': 1.6430492035729749e-06, 'Frosts': 1.6430492035729749e-06, 'MacLeishes': 1.6430492035729749e-06, 'Screwed': 1.6430492035729749e-06, 'stewed': 1.6430492035729749e-06, 'tattooed': 1.6430492035729749e-06, 'Hergesheimer': 1.6430492035729749e-06, 'Woollcott': 1.6430492035729749e-06, 'Booth': 3.2860984071459497e-06, 'Tarkington': 1.6430492035729749e-06, 'Willa': 1.6430492035729749e-06, 'Catheter': 1.6430492035729749e-06, 'sic': 1.6430492035729749e-06, 'Phelps': 1.6430492035729749e-06, 'smog': 1.6430492035729749e-06, 'sociology': 1.3144393628583799e-05, 'politico-sociological': 1.6430492035729749e-06, 'dozed': 4.929147610718925e-06, 'York-mind': 1.6430492035729749e-06, 'Silone': 1.6430492035729749e-06, 'Chiaromonte': 1.6430492035729749e-06, 'Gide': 1.6430492035729749e-06, 'Fergusson': 1.6430492035729749e-06, 'Delmore': 1.6430492035729749e-06, 'Mailer': 2.4645738053594624e-06, 'Krims': 1.6430492035729749e-06, 'youngish': 1.6430492035729749e-06, 'half-educated': 1.6430492035729749e-06, 'dazzled': 2.4645738053594624e-06, 'critical-intellectual': 1.6430492035729749e-06, 'bedazzlement': 1.6430492035729749e-06, 'bull-sessions': 2.4645738053594624e-06, 'perfumed': 2.4645738053594624e-06, 'bullshit': 2.4645738053594624e-06, 'hick': 1.6430492035729749e-06, "Whitman's": 1.6430492035729749e-06, 'bedazzled': 1.6430492035729749e-06, 'half-digested': 1.6430492035729749e-06, 'anti-intellectualism': 1.6430492035729749e-06, 'winsome': 1.6430492035729749e-06, 'thruway': 1.6430492035729749e-06, 'touchstones': 1.6430492035729749e-06, 'humanly': 1.6430492035729749e-06, 'alludes': 1.6430492035729749e-06, 'realer': 1.6430492035729749e-06, 'portents': 1.6430492035729749e-06, 'toppling': 2.4645738053594624e-06, 'defacing': 1.6430492035729749e-06, 'Lauro': 5.750672212505412e-06, 'Bosis': 5.750672212505412e-06, 'Lante': 1.6430492035729749e-06, 'Gianicolo': 2.4645738053594624e-06, 'plainclothes': 1.6430492035729749e-06, 'Quirinal': 1.6430492035729749e-06, 'mispronunciation': 1.6430492035729749e-06, "Mussolini's": 1.6430492035729749e-06, 'Dogumenti': 1.6430492035729749e-06, 'favore': 1.6430492035729749e-06, 'basements': 2.4645738053594624e-06, 'ghosts': 4.929147610718925e-06, 'Berto': 3.2860984071459497e-06, 'Pavese': 2.4645738053594624e-06, "Berto's": 1.6430492035729749e-06, 'Sky': 2.4645738053594624e-06, 'Cristo': 1.6430492035729749e-06, "Bellow's": 1.6430492035729749e-06, 'Seize': 1.6430492035729749e-06, "Musil's": 1.6430492035729749e-06, 'Qualities': 1.6430492035729749e-06, 'Italo': 1.6430492035729749e-06, 'Svevo': 1.6430492035729749e-06, 'realismo': 1.6430492035729749e-06, 'Calabria': 2.4645738053594624e-06, 'cliques': 1.6430492035729749e-06, 'money-fed': 1.6430492035729749e-06, 'Shirt': 1.6430492035729749e-06, 'jackboots': 1.6430492035729749e-06, 'Rimanelli': 3.2860984071459497e-06, 'square-built': 1.6430492035729749e-06, 'busts': 3.2860984071459497e-06, 'Porta': 1.6430492035729749e-06, 'Pancrazio': 1.6430492035729749e-06, 'Pamphili': 1.6430492035729749e-06, '1849': 2.4645738053594624e-06, 'shivered': 4.107623008932437e-06, 'sixteen-year-old': 1.6430492035729749e-06, 'gloriously': 1.6430492035729749e-06, 'bugeyed': 1.6430492035729749e-06, 'Object': 1.6430492035729749e-06, 'Krauts': 1.6430492035729749e-06, 'Bullshit': 1.6430492035729749e-06, 'Excuse': 4.107623008932437e-06, 'diapers': 3.2860984071459497e-06, 'disown': 1.6430492035729749e-06, 'anti-clericalism': 1.6430492035729749e-06, 'fine-featured': 1.6430492035729749e-06, 'Mussolini': 1.6430492035729749e-06, 'Fascists': 2.4645738053594624e-06, 'Gossip': 1.6430492035729749e-06, 'commemorated': 2.4645738053594624e-06, 'Piazzo': 1.6430492035729749e-06, "Bosis'": 1.6430492035729749e-06, 'grubby': 2.4645738053594624e-06, 'quitting': 4.107623008932437e-06, 'Occupation': 1.6430492035729749e-06, 'swam': 5.750672212505412e-06, 'Linz': 1.6430492035729749e-06, 'dimesize': 1.6430492035729749e-06, 'beatings': 2.4645738053594624e-06, 'Were': 4.929147610718925e-06, 'banging': 4.107623008932437e-06, "Pickett's": 1.6430492035729749e-06, 'Miltonic': 1.6430492035729749e-06, 'Rottosei': 1.6430492035729749e-06, 'OBE': 1.6430492035729749e-06, 'short-run': 3.2860984071459497e-06, 'Contact': 5.750672212505412e-06, 'Printed': 4.929147610718925e-06, 'Offices': 5.750672212505412e-06, 'SBA': 2.1359639646448672e-05, 'Practical': 2.4645738053594624e-06, 'Management': 3.2860984071459497e-06, 'Courses': 3.2860984071459497e-06, 'cosponsors': 1.6430492035729749e-06, "SBA's": 2.4645738053594624e-06, 'Counseling': 1.6430492035729749e-06, 'One-day': 1.6430492035729749e-06, 'Chambers': 3.2860984071459497e-06, 'Product': 4.107623008932437e-06, 'semi-processed': 1.6430492035729749e-06, 'adaptable': 2.4645738053594624e-06, 'diversification': 2.4645738053594624e-06, 'identifying': 3.2860984071459497e-06, 'Proposed': 2.4645738053594624e-06, '8-b-2': 1.6430492035729749e-06, 'authorizes': 2.4645738053594624e-06, "registrants'": 1.6430492035729749e-06, 'budgetary': 2.4645738053594624e-06, 'Colo.': 2.4645738053594624e-06, 'Minn.': 2.4645738053594624e-06, 'Owners': 1.6430492035729749e-06, 'Developing': 1.6430492035729749e-06, 'Selling': 1.6430492035729749e-06, 'Specifications': 3.2860984071459497e-06, 'Directory': 3.2860984071459497e-06, 'Loans': 3.2860984071459497e-06, 'wholesalers': 1.6430492035729749e-06, 'Types': 2.4645738053594624e-06, 'Credit': 8.215246017864873e-06, 'repayment': 2.4645738053594624e-06, '$350,000': 1.6430492035729749e-06, 'installments': 2.4645738053594624e-06, '5-1/2': 1.6430492035729749e-06, 'Pooling': 1.6430492035729749e-06, 'Cooperatives': 5.750672212505412e-06, 'long-': 1.6430492035729749e-06, 'provdied': 1.6430492035729749e-06, 'Commodity': 1.6430492035729749e-06, 'Eligibility': 1.6430492035729749e-06, 'Interest': 6.5721968142918994e-06, 'Cooperative': 2.4645738053594624e-06, 'Assist': 1.6430492035729749e-06, '36-A': 1.6430492035729749e-06, 'Minerals': 3.2860984071459497e-06, 'Exploration': 3.2860984071459497e-06, 'OME': 2.4645738053594624e-06, 'Requirements': 1.6430492035729749e-06, 'Repayment': 1.6430492035729749e-06, '5-percent': 1.6430492035729749e-06, 'certifies': 1.6430492035729749e-06, 'nonexistent': 3.2860984071459497e-06, 'administer': 3.2860984071459497e-06, 'conditional': 3.2860984071459497e-06, 'surveying': 7.393721416078387e-06, 'incentives': 4.107623008932437e-06, 'mobilizing': 3.2860984071459497e-06, 'foreseeing': 1.6430492035729749e-06, 'balance-of-payments': 1.6430492035729749e-06, 'nationals': 4.107623008932437e-06, 'longrun': 1.6430492035729749e-06, 'favoritism': 4.107623008932437e-06, 'officialdom': 1.6430492035729749e-06, 'regimes': 2.4645738053594624e-06, 'withhold': 2.4645738053594624e-06, 'monolithic': 1.6430492035729749e-06, 'deem': 1.6430492035729749e-06, 'focusing': 5.750672212505412e-06, 'government-to-government': 1.6430492035729749e-06, 'self-sustaining': 4.929147610718925e-06, 'slow-acting': 1.6430492035729749e-06, 'Dams': 1.6430492035729749e-06, 'commence': 3.2860984071459497e-06, 'twofold': 4.107623008932437e-06, 'appraise': 4.107623008932437e-06, 'Kaisers': 1.6430492035729749e-06, 'Hitlers': 1.6430492035729749e-06, 'Mussolinis': 1.6430492035729749e-06, 'Tojos': 1.6430492035729749e-06, 'Stalins': 1.6430492035729749e-06, 'freest': 2.4645738053594624e-06, 'McCormack': 1.6430492035729749e-06, 'tempore': 1.6430492035729749e-06, 'Remarks': 4.929147610718925e-06, 'Hon.': 4.107623008932437e-06, 'Addabbo': 2.4645738053594624e-06, 'refrained': 1.6430492035729749e-06, 'workday': 1.6430492035729749e-06, 'fatherly': 1.6430492035729749e-06, 'unpleasantness': 1.6430492035729749e-06, 'stabilizing': 4.107623008932437e-06, 'succinct': 1.6430492035729749e-06, 'compress': 1.6430492035729749e-06, 'conciliator': 1.6430492035729749e-06, 'devotedly': 1.6430492035729749e-06, 'Bonham': 1.6430492035729749e-06, 'neglecting': 4.107623008932437e-06, 'iron-clad': 1.6430492035729749e-06, 'combatant': 2.4645738053594624e-06, 'Speakership': 1.6430492035729749e-06, '63d': 1.6430492035729749e-06, 'Electrification': 1.6430492035729749e-06, 'Record': 3.2860984071459497e-06, 'Monagan': 2.4645738053594624e-06, 'adorn': 1.6430492035729749e-06, 'statute': 1.0679819823224336e-05, 'Ship': 1.6430492035729749e-06, 'shoals': 1.6430492035729749e-06, 'confessor': 1.6430492035729749e-06, 'Origin': 2.4645738053594624e-06, 'state-owned': 1.0679819823224336e-05, '389': 1.6430492035729749e-06, 'analyses': 9.85829522143785e-06, 'effecting': 3.2860984071459497e-06, 'Cars': 3.2860984071459497e-06, '$.027': 2.4645738053594624e-06, 'Vehicle': 2.4645738053594624e-06, "legislature's": 2.4645738053594624e-06, 'Meaningful': 1.6430492035729749e-06, 'assigns': 4.107623008932437e-06, 'Unsuccessful': 1.6430492035729749e-06, 'Forty-seven': 1.6430492035729749e-06, 'Twenty-six': 1.6430492035729749e-06, 'change-over': 2.4645738053594624e-06, '13,200': 1.6430492035729749e-06, 'Mileage': 2.4645738053594624e-06, 'Actual': 3.2860984071459497e-06, 'itemized': 3.2860984071459497e-06, 'reimbursements': 2.4645738053594624e-06, 'personally-owned': 3.2860984071459497e-06, '$.07': 3.2860984071459497e-06, 'Fixed': 5.750672212505412e-06, 'non-itemized': 1.6430492035729749e-06, 'reimburseable': 2.4645738053594624e-06, '$.076': 1.6430492035729749e-06, '$.09': 1.6430492035729749e-06, 'well-administered': 1.6430492035729749e-06, 'reimbursement': 2.4645738053594624e-06, 'audit': 4.107623008932437e-06, 'Flat': 1.6430492035729749e-06, 'well-regulated': 1.6430492035729749e-06, 'Registry': 4.929147610718925e-06, 'Vehicles': 1.6430492035729749e-06, 'privately-owned': 1.6430492035729749e-06, 'problematical': 1.6430492035729749e-06, 'Gasoline': 1.6430492035729749e-06, 'headquarter': 1.6430492035729749e-06, 'garages': 4.929147610718925e-06, 'organizationally': 1.6430492035729749e-06, 'rotary': 4.929147610718925e-06, 'newly-created': 1.6430492035729749e-06, 'cost-billing': 1.6430492035729749e-06, '1951-1956': 1.6430492035729749e-06, '35%': 1.6430492035729749e-06, '11%': 2.4645738053594624e-06, 'refine': 3.2860984071459497e-06, 'reassign': 1.6430492035729749e-06, '44,000': 1.6430492035729749e-06, 'excels': 1.6430492035729749e-06, 'cost-data': 2.4645738053594624e-06, '7,500': 1.6430492035729749e-06, 'dispersement': 1.6430492035729749e-06, 'Bids': 1.6430492035729749e-06, 'Purchases': 1.6430492035729749e-06, 'cost-accounting': 1.6430492035729749e-06, 'upgrading': 2.4645738053594624e-06, 'grants-in-aid': 3.2860984071459497e-06, 'Notwithstanding': 1.6430492035729749e-06, 'revaluation': 1.6430492035729749e-06, 'situs': 4.107623008932437e-06, 'Situs': 1.6430492035729749e-06, 'domicile': 1.6430492035729749e-06, 'origination': 1.6430492035729749e-06, 'non-residents': 1.6430492035729749e-06, 'Intangible': 1.6430492035729749e-06, 'abode': 4.107623008932437e-06, 'cancelled': 1.6430492035729749e-06, 'garaged': 1.6430492035729749e-06, 'Airpark': 1.6430492035729749e-06, 'Middletown': 3.2860984071459497e-06, 'rateable': 1.6430492035729749e-06, 'assessor': 2.4645738053594624e-06, 'Assessment': 1.6430492035729749e-06, 'non-professional': 1.6430492035729749e-06, 'variance': 1.6430492035729749e-06, 'Expenditure': 1.6430492035729749e-06, 'Fiscal': 4.107623008932437e-06, 'questionnaire': 3.1217934867886523e-05, 'specifying': 3.2860984071459497e-06, 'tabulate': 1.6430492035729749e-06, 'Twenty-seven': 1.6430492035729749e-06, 'Eighteen': 2.4645738053594624e-06, 'resides': 4.107623008932437e-06, 'summarize': 3.2860984071459497e-06, 'Assessors': 1.6430492035729749e-06, 'Barrington': 2.4645738053594624e-06, 'aggregate': 6.5721968142918994e-06, 'Slightly': 1.6430492035729749e-06, 'Harbors': 1.6430492035729749e-06, "assessors'": 1.6430492035729749e-06, 'Fifty-two': 1.6430492035729749e-06, '1,418,000': 1.6430492035729749e-06, '$11,900,000': 1.6430492035729749e-06, 'out-of-state': 5.750672212505412e-06, 'expansions': 3.2860984071459497e-06, 'Collyer': 1.6430492035729749e-06, 'Wire': 1.6430492035729749e-06, 'Leesona': 4.929147610718925e-06, 'Tube': 1.6430492035729749e-06, 'Controls': 1.6430492035729749e-06, 'Speidel': 1.6430492035729749e-06, 'Cornell-Dubilier': 1.6430492035729749e-06, 'Photek': 1.6430492035729749e-06, 'Textron': 1.6430492035729749e-06, 'Foundry': 1.6430492035729749e-06, 'Cobb': 1.5608967433943262e-05, 'Manufacturing': 2.4645738053594624e-06, 'Expansion': 2.4645738053594624e-06, 'relocation': 1.6430492035729749e-06, "Division's": 2.4645738053594624e-06, 'Domestic': 3.2860984071459497e-06, 'Bid': 1.6430492035729749e-06, 'Assistance': 2.4645738053594624e-06, 'follow-ups': 1.6430492035729749e-06, '10,517': 1.6430492035729749e-06, '4,427': 1.6430492035729749e-06, "Office's": 1.6430492035729749e-06, 'copyrights': 1.6430492035729749e-06, 'cooperates': 1.6430492035729749e-06, '954': 1.6430492035729749e-06, 'specifics': 1.6430492035729749e-06, 'availabilities': 2.4645738053594624e-06, 'industrialists': 1.6430492035729749e-06, 'location-minded': 1.6430492035729749e-06, 'Midwestern': 2.4645738053594624e-06, 'Banker': 1.6430492035729749e-06, 'Electronic': 3.2860984071459497e-06, 'Investor': 1.6430492035729749e-06, 'intra-state': 1.6430492035729749e-06, 'mailings': 2.4645738053594624e-06, '1680': 1.6430492035729749e-06, '6,768': 1.6430492035729749e-06, '164': 1.6430492035729749e-06, 'soliciting': 1.6430492035729749e-06, 'Waterbury': 1.6430492035729749e-06, 'Bridgeport': 1.6430492035729749e-06, 'Waltham': 1.6430492035729749e-06, '603': 1.6430492035729749e-06, '452': 1.6430492035729749e-06, 'follow-up': 6.5721968142918994e-06, 'offsetting': 1.6430492035729749e-06, 'conclave': 2.4645738053594624e-06, 'Export': 1.6430492035729749e-06, '143': 1.6430492035729749e-06, 'Morning': 3.2860984071459497e-06, 'Kepler': 1.6430492035729749e-06, '64-page': 1.6430492035729749e-06, 'Devoted': 1.6430492035729749e-06, 'Mailings': 1.6430492035729749e-06, 'Med-Chemical': 1.6430492035729749e-06, 'Symposium': 5.750672212505412e-06, 'reprints': 2.4645738053594624e-06, '1184': 1.6430492035729749e-06, '643': 1.6430492035729749e-06, 'in-state': 1.6430492035729749e-06, '541': 1.6430492035729749e-06, 'Turnkey': 1.6430492035729749e-06, 'Stated': 1.6430492035729749e-06, 'State-Local': 1.6430492035729749e-06, 'exhaustive': 2.4645738053594624e-06, 'reorientation': 2.4645738053594624e-06, 'Metropolian': 1.6430492035729749e-06, 'Functionally': 1.6430492035729749e-06, 'origin/destination': 1.6430492035729749e-06, 'Inventory': 3.2860984071459497e-06, '701': 1.6430492035729749e-06, 'Analysis': 4.929147610718925e-06, 'forty-seven': 3.2860984071459497e-06, 'Audits': 1.6430492035729749e-06, '$450,000': 1.6430492035729749e-06, 'Included': 3.2860984071459497e-06, 'Montana': 2.4645738053594624e-06, 'calendars': 9.85829522143785e-06, 'ensures': 1.6430492035729749e-06, 'expend': 1.6430492035729749e-06, 'disbursements': 2.4645738053594624e-06, 'augmenting': 1.6430492035729749e-06, 'facilitates': 2.4645738053594624e-06, 'inter-town': 1.6430492035729749e-06, 'Towns': 1.6430492035729749e-06, 'Borrowing': 2.4645738053594624e-06, 'installment': 4.929147610718925e-06, 'intergovernmental': 1.6430492035729749e-06, 'equalization': 1.6430492035729749e-06, 'state-local': 2.4645738053594624e-06, 'Disadvantages': 1.6430492035729749e-06, 'disgruntled': 1.6430492035729749e-06, 'tax-paying': 1.6430492035729749e-06, "municipality's": 1.6430492035729749e-06, 'Adjusting': 1.6430492035729749e-06, 'systematized': 2.4645738053594624e-06, 'Kingstown': 2.4645738053594624e-06, 'Coventry': 1.6430492035729749e-06, 'payable': 3.2860984071459497e-06, 'collectible': 1.6430492035729749e-06, 'Glocester': 1.6430492035729749e-06, 'Woonsocket': 4.107623008932437e-06, 'Simultaneous': 1.6430492035729749e-06, 'Varying': 1.6430492035729749e-06, 'proponents': 4.107623008932437e-06, 'treasuries': 1.6430492035729749e-06, 'Suitable': 1.6430492035729749e-06, 'commemorates': 1.6430492035729749e-06, '185th': 1.6430492035729749e-06, 'commemorating': 1.6430492035729749e-06, 'Homestead': 1.6430492035729749e-06, 'Plantations': 6.5721968142918994e-06, 'april': 1.6430492035729749e-06, 'whereof': 7.393721416078387e-06, 'hereunto': 6.5721968142918994e-06, 'sixty-one': 7.393721416078387e-06, 'eighty-fifth': 2.4645738053594624e-06, 'rededicate': 1.6430492035729749e-06, 'eighty-sixth': 4.929147610718925e-06, 'pursuant': 2.300268885002165e-05, 'Resolution': 2.4645738053594624e-06, '22nd': 3.2860984071459497e-06, 'Pageant': 4.929147610718925e-06, 'Jaycees': 3.2860984071459497e-06, 'Sally': 1.1501344425010824e-05, 'Saabye': 1.6430492035729749e-06, 'Pageants': 2.4645738053594624e-06, 'observances': 1.6430492035729749e-06, '5th': 1.6430492035729749e-06, '1450': 1.6430492035729749e-06, '1550': 1.6430492035729749e-06, 'Medicis': 1.6430492035729749e-06, 'Comique': 1.6430492035729749e-06, 'Reine': 2.4645738053594624e-06, '1581': 1.6430492035729749e-06, 'alternated': 1.6430492035729749e-06, 'Ballets': 1.6430492035729749e-06, 'intermissions': 1.6430492035729749e-06, 'Islanders': 4.929147610718925e-06, 'Pilgrims': 4.929147610718925e-06, 'skeptically': 1.6430492035729749e-06, 'dire': 1.6430492035729749e-06, 'Stat.': 4.107623008932437e-06, '328': 1.6430492035729749e-06, 'U.S.C.': 2.4645738053594624e-06, '1952-1958': 1.6430492035729749e-06, 'consumptive': 3.2860984071459497e-06, 'saline': 2.6288787257167598e-05, 'brackish': 3.2860984071459497e-06, 'mineralized': 1.6430492035729749e-06, 'Sec.': 1.3965918230370285e-05, 'aforesaid': 2.4645738053594624e-06, 'authorization': 2.4645738053594624e-06, 'subsections': 3.2860984071459497e-06, 'effectuate': 2.4645738053594624e-06, 'donation': 2.4645738053594624e-06, 'bibliographical': 1.6430492035729749e-06, 'correlate': 3.2860984071459497e-06, 'subsection': 1.1501344425010824e-05, 'thereunder': 1.6430492035729749e-06, 'dispositions': 1.6430492035729749e-06, '$75,000,000': 1.6430492035729749e-06, '1967': 2.4645738053594624e-06, 'theretofore': 2.4645738053594624e-06, 'Provided': 4.107623008932437e-06, 'expiration': 3.2860984071459497e-06, 'twelve-year': 1.6430492035729749e-06, 'nonmetallic': 4.107623008932437e-06, 'lignite': 4.107623008932437e-06, 'right-of-entry': 2.4645738053594624e-06, 'mine-safety': 1.6430492035729749e-06, 'ores': 3.2860984071459497e-06, 'Subject': 3.2860984071459497e-06, 'Payments': 2.4645738053594624e-06, 'assay': 1.6430492035729749e-06, '14-1/2': 4.107623008932437e-06, 'centum': 5.750672212505412e-06, '$4,500,000': 2.4645738053594624e-06, '$4,000,000': 1.6430492035729749e-06, '$3,500,000': 2.4645738053594624e-06, '431': 1.6430492035729749e-06, 'pathology': 6.5721968142918994e-06, 'Forensic': 5.750672212505412e-06, 'Pathology': 2.218116424823516e-05, 'Application': 4.107623008932437e-06, 'Histochemistry': 3.2860984071459497e-06, 'Diseases': 3.2860984071459497e-06, 'Ophthalmic': 2.4645738053594624e-06, 'Oral': 2.4645738053594624e-06, 'Regions': 4.929147610718925e-06, 'Cardiovasculatory': 1.6430492035729749e-06, 'Seminar': 1.6430492035729749e-06, 'Orthopedic': 2.4645738053594624e-06, 'Resident': 1.6430492035729749e-06, '139': 1.6430492035729749e-06, 'medico-military': 3.2860984071459497e-06, 'morphological': 4.929147610718925e-06, 'biochemical': 3.2860984071459497e-06, 'microwaves': 1.6430492035729749e-06, 'neuropathology': 1.6430492035729749e-06, 'carcinoma': 1.6430492035729749e-06, 'histochemical': 1.6430492035729749e-06, 'dysplasia': 1.6430492035729749e-06, 'biophysical': 2.4645738053594624e-06, 'ocular': 2.4645738053594624e-06, 'Support': 3.2860984071459497e-06, 'mammalian': 4.929147610718925e-06, 'microscopical': 1.6430492035729749e-06, 'microchemistry': 1.6430492035729749e-06, 'microcytochemistry': 1.6430492035729749e-06, 'diphosphopyridine': 1.6430492035729749e-06, 'nucleotide': 2.4645738053594624e-06, 'synthesizine': 1.6430492035729749e-06, 'lymphoma': 1.6430492035729749e-06, 'leprae': 1.6430492035729749e-06, 'mycobacteria': 1.6430492035729749e-06, 'Illustration': 6.5721968142918994e-06, 'photomicrography': 1.6430492035729749e-06, 'Tumor': 4.107623008932437e-06, '762': 1.6430492035729749e-06, '442': 1.6430492035729749e-06, 'Twenty-nine': 1.6430492035729749e-06, 'Visual': 1.6430492035729749e-06, 'operable': 1.6430492035729749e-06, 'casualty': 2.4645738053594624e-06, 'demonstrations': 3.2860984071459497e-06, 'Demonstrations': 1.6430492035729749e-06, "Instructor's": 1.6430492035729749e-06, 'simulation': 2.4645738053594624e-06, 'kits': 1.6430492035729749e-06, 'manikins': 1.6430492035729749e-06, 'projector': 1.6430492035729749e-06, 'Soldiers': 1.6430492035729749e-06, 'Bandaging': 1.6430492035729749e-06, 'Splinting': 1.6430492035729749e-06, 'Surgery': 2.4645738053594624e-06, 'Handbook': 1.6430492035729749e-06, 'Fifty': 4.929147610718925e-06, 'South-East': 1.6430492035729749e-06, 'Liaison': 1.6430492035729749e-06, 'Mobilization': 2.4645738053594624e-06, 'Graphic': 1.6430492035729749e-06, 'loaned': 4.107623008932437e-06, 'Managua': 1.6430492035729749e-06, 'Nicaragua': 2.4645738053594624e-06, 'Subcommittee': 1.6430492035729749e-06, 'Reorganization': 1.6430492035729749e-06, 'fascicles': 3.2860984071459497e-06, 'registries': 4.107623008932437e-06, '1959-1960': 3.2860984071459497e-06, 'Testicular': 1.6430492035729749e-06, 'military-medical': 1.6430492035729749e-06, 'Surgeons': 1.6430492035729749e-06, '37,470': 1.6430492035729749e-06, '54,320': 1.6430492035729749e-06, '642': 1.6430492035729749e-06, 'Forty-five': 1.6430492035729749e-06, 'Clinico-pathologic': 3.2860984071459497e-06, '7,827': 1.6430492035729749e-06, 'consequent': 6.5721968142918994e-06, 'unabated': 2.4645738053594624e-06, '161': 1.6430492035729749e-06, 'refurbished': 2.4645738053594624e-06, '885': 1.6430492035729749e-06, '254': 1.6430492035729749e-06, 'Eighty-five': 1.6430492035729749e-06, 'Macropathology': 1.6430492035729749e-06, 'Squibb': 2.4645738053594624e-06, 'great-grandson': 1.6430492035729749e-06, 'short-time': 1.6430492035729749e-06, 'accessions': 1.6430492035729749e-06, 'microscopes': 1.6430492035729749e-06, 'surgical': 1.6430492035729749e-06, 'macropathological': 1.6430492035729749e-06, 'requesters': 1.6430492035729749e-06, 'Specimens': 2.4645738053594624e-06, 'Manual': 3.2860984071459497e-06, 'Macropathological': 1.6430492035729749e-06, 'Techniques': 1.6430492035729749e-06, 'Thirty-five': 4.107623008932437e-06, '795,586': 1.6430492035729749e-06, 'Temporary': 2.4645738053594624e-06, 'Publication': 5.750672212505412e-06, 'triservice': 2.4645738053594624e-06, 'Technicians': 2.4645738053594624e-06, 'Estimated': 2.4645738053594624e-06, '$65,000': 1.6430492035729749e-06, '$70,000': 1.6430492035729749e-06, 'Additionally': 3.2860984071459497e-06, 'photo-offset': 1.6430492035729749e-06, 'varityping': 1.6430492035729749e-06, 'typesetting': 1.6430492035729749e-06, 'stapling': 1.6430492035729749e-06, '$4,000': 1.6430492035729749e-06, 'unexpended': 1.6430492035729749e-06, 'reinstitution': 1.6430492035729749e-06, 'Writes': 1.6430492035729749e-06, 'Replacing': 1.6430492035729749e-06, 'November-December': 1.6430492035729749e-06, 'bimonthly': 1.6430492035729749e-06, 'bibliography': 1.6430492035729749e-06, "Collector's": 1.6430492035729749e-06, 'Items': 1.6430492035729749e-06, 'Diagnosis': 1.6430492035729749e-06, 'Exhibits': 1.6430492035729749e-06, 'Epidemiological': 1.6430492035729749e-06, 'calorimeter': 2.4645738053594624e-06, 'fluorine': 1.6430492035729749e-06, 'non-volatile': 1.6430492035729749e-06, 'fluoride': 2.4645738053594624e-06, 'substantiates': 1.6430492035729749e-06, 'beryllium': 1.6430492035729749e-06, 'exploding-wire': 1.6430492035729749e-06, 'thermodynamically': 2.4645738053594624e-06, 'atmospheres': 4.929147610718925e-06, 'microseconds': 4.107623008932437e-06, 'calibration': 5.750672212505412e-06, 'calorimetric': 1.6430492035729749e-06, 'ohmic': 1.6430492035729749e-06, 'voltage': 1.3965918230370285e-05, 'high-speed': 4.107623008932437e-06, 'shutter': 4.929147610718925e-06, 'fast-opening': 2.4645738053594624e-06, 'fast-closing': 2.4645738053594624e-06, "Edgerton's": 1.6430492035729749e-06, 'blackening': 1.6430492035729749e-06, 'Experiments': 5.750672212505412e-06, '60-80': 1.6430492035729749e-06, 'input': 1.7252016637516235e-05, 'interstellar': 4.929147610718925e-06, 'spectra': 1.232286902679731e-05, 'cm': 1.0679819823224336e-05, 'extraterrestrial': 3.2860984071459497e-06, 'ions': 8.215246017864873e-06, 'diatomic': 2.4645738053594624e-06, 'hydrides': 3.2860984071459497e-06, 'OH': 3.2860984071459497e-06, 'CH': 2.4645738053594624e-06, 'SH': 2.4645738053594624e-06, 'SiH': 1.6430492035729749e-06, "atom's": 1.6430492035729749e-06, '21-cm': 1.6430492035729749e-06, 'telescopes': 1.6430492035729749e-06, 'bandwidth': 1.6430492035729749e-06, 'foreknowledge': 1.6430492035729749e-06, 'microwave': 2.4645738053594624e-06, 'spectroscopy': 3.2860984071459497e-06, 'paramagnetic': 1.1501344425010824e-05, 'low-frequency': 1.6430492035729749e-06, 'hydride': 2.4645738053594624e-06, 'spectral': 5.750672212505412e-06, '1665.32': 1.6430492035729749e-06, '1667.36': 1.6430492035729749e-06, '0.10': 1.6430492035729749e-06, 'Preparations': 1.6430492035729749e-06, 'thermometry': 3.2860984071459497e-06, 'helium': 1.3144393628583799e-05, 'germanium': 7.393721416078387e-06, 'resistors': 6.5721968142918994e-06, 'helium-4': 2.4645738053594624e-06, 'vapor-pressure': 3.2860984071459497e-06, '144': 1.6430492035729749e-06, 'Acoustical': 1.6430492035729749e-06, 'interferometer': 4.107623008932437e-06, 'thermometric': 1.6430492035729749e-06, '4.2': 4.107623008932437e-06, '2.1': 4.107623008932437e-06, 'millidegrees': 3.2860984071459497e-06, 'thermometers': 5.750672212505412e-06, 'Carbon': 2.4645738053594624e-06, 'impurity-doped': 1.6430492035729749e-06, 'thermally': 1.6430492035729749e-06, 'cycled': 1.6430492035729749e-06, 'resistances': 1.6430492035729749e-06, 'reproducible': 4.929147610718925e-06, 'millidegree': 3.2860984071459497e-06, 'Preliminary': 3.2860984071459497e-06, 'calibrations': 1.6430492035729749e-06, '4.21': 1.6430492035729749e-06, '2.16': 1.6430492035729749e-06, 'deviations': 4.107623008932437e-06, 'resistor': 3.2860984071459497e-06, '3.3': 2.4645738053594624e-06, 'Vapor': 1.6430492035729749e-06, 'reproducibilities': 1.6430492035729749e-06, 'Surface': 2.4645738053594624e-06, 'gradients': 4.929147610718925e-06, '15-': 1.6430492035729749e-06, '25-liter': 1.6430492035729749e-06, 'dewars': 1.6430492035729749e-06, '**yl': 5.750672212505412e-06, 'hydrostatic': 1.6430492035729749e-06, 'bulb': 6.5721968142918994e-06, 'Pressure': 1.6430492035729749e-06, 'pvt': 1.6430492035729749e-06, 'pressure-volume-temperature': 1.6430492035729749e-06, 'fulfills': 2.4645738053594624e-06, 'null-type': 1.6430492035729749e-06, 'diaphragm': 6.5721968142918994e-06, '0.001': 2.4645738053594624e-06, 'in.': 4.107623008932437e-06, 'unbalance': 1.6430492035729749e-06, 'displaces': 1.6430492035729749e-06, 'capacitance': 1.6430492035729749e-06, 'Spherical': 1.6430492035729749e-06, 'concave': 4.107623008932437e-06, 'atm': 1.6430492035729749e-06, 'Transport': 1.6430492035729749e-06, '6-year': 1.6430492035729749e-06, 'Prandtl': 1.6430492035729749e-06, 'dissociation': 4.107623008932437e-06, 'coefficient': 3.2860984071459497e-06, 'straddling': 3.2860984071459497e-06, 'integrals': 3.2860984071459497e-06, 'intermolecular': 1.6430492035729749e-06, 'viscosity': 9.036770619651361e-06, 'conductivity': 4.929147610718925e-06, 'coefficients': 3.2860984071459497e-06, 'logarithm': 1.6430492035729749e-06, 'NBS': 3.2860984071459497e-06, 'Temperature': 4.929147610718925e-06, 'Measurement': 2.4645738053594624e-06, 'Physics': 3.2860984071459497e-06, 'Standards': 2.4645738053594624e-06, 'registrants': 1.6430492035729749e-06, 'Wildhack': 1.6430492035729749e-06, 'Herzfeld': 1.6430492035729749e-06, 'Astin': 1.6430492035729749e-06, '2.1.6': 1.6430492035729749e-06, 'interactions': 3.2860984071459497e-06, 'indexing': 3.2860984071459497e-06, 'dissemination': 2.4645738053594624e-06, 'bibliographies': 2.4645738053594624e-06, 'Transition': 1.6430492035729749e-06, 'Selected': 1.6430492035729749e-06, 'wall-stabilized': 1.6430492035729749e-06, 'high-current': 1.6430492035729749e-06, 'profiles': 3.2860984071459497e-06, 'plasma': 1.1501344425010824e-05, '39,000': 2.4645738053594624e-06, 'matrix': 1.6430492035729749e-06, 'd-c': 1.6430492035729749e-06, '1001': 1.6430492035729749e-06, 'apportion': 1.6430492035729749e-06, "attorney's": 2.4645738053594624e-06, 'Written': 1.6430492035729749e-06, 'deducting': 1.6430492035729749e-06, 'unlawful': 1.6430492035729749e-06, 'misdemeanor': 2.4645738053594624e-06, 'imprisoned': 4.107623008932437e-06, 'notify': 7.393721416078387e-06, 'therefor': 1.6430492035729749e-06, 'mandamus': 1.6430492035729749e-06, 'deferring': 1.6430492035729749e-06, 'provisons': 1.6430492035729749e-06, 'Procedure': 3.2860984071459497e-06, 'submissions': 1.6430492035729749e-06, 'States-Yugoslav': 1.6430492035729749e-06, 'Yugoslav': 6.5721968142918994e-06, 'Agreement': 2.218116424823516e-05, 'hereinafter': 4.929147610718925e-06, 'accrued': 3.2860984071459497e-06, 'executor': 2.4645738053594624e-06, 'trustee': 6.5721968142918994e-06, 'assignee': 2.4645738053594624e-06, 'consented': 4.107623008932437e-06, 'disbursed': 1.6430492035729749e-06, '$17,000,000': 1.6430492035729749e-06, 'ratable': 1.6430492035729749e-06, 'adjudication': 4.107623008932437e-06, 'Dooley': 1.6430492035729749e-06, 'commuter': 9.036770619651361e-06, 'discontinuance': 1.6430492035729749e-06, 'implemented': 1.6430492035729749e-06, 'commutation': 1.6430492035729749e-06, '47.6': 1.6430492035729749e-06, "Railroad's": 1.6430492035729749e-06, '-': 6.49004435411325e-05, '185': 1.6430492035729749e-06, 'raiding': 2.4645738053594624e-06, "Central's": 2.4645738053594624e-06, 'terminal': 1.0679819823224336e-05, 'southbound': 1.6430492035729749e-06, '3,500': 3.2860984071459497e-06, 'two-system': 2.4645738053594624e-06, 'Detailed': 2.4645738053594624e-06, 'users': 5.750672212505412e-06, 'on-again-off-again': 1.6430492035729749e-06, 'two-way': 1.6430492035729749e-06, 'Lindsay': 2.4645738053594624e-06, 'Sulzberger': 3.2860984071459497e-06, 'Orvil': 2.4645738053594624e-06, 'Dryfoos': 2.4645738053594624e-06, "Dryfoos'": 1.6430492035729749e-06, 'Oakes': 3.2860984071459497e-06, 'Merz': 2.4645738053594624e-06, 'heartiest': 1.6430492035729749e-06, 'S.S.R.': 1.6430492035729749e-06, 'Castro-held': 1.6430492035729749e-06, 'Russian-dominated': 1.6430492035729749e-06, 'T-34': 2.4645738053594624e-06, 'Mig': 1.6430492035729749e-06, 'strafing': 1.6430492035729749e-06, 'republics': 2.4645738053594624e-06, 'Migs': 1.6430492035729749e-06, 'U.s.': 1.6430492035729749e-06, 'cockier': 1.6430492035729749e-06, 'Americas': 1.6430492035729749e-06, 'Blockade': 3.2860984071459497e-06, 'Weaken': 1.6430492035729749e-06, 're-export': 1.6430492035729749e-06, 'ports': 4.107623008932437e-06, 'Shangri-La': 1.6430492035729749e-06, 'blockading': 2.4645738053594624e-06, 'Land-based': 1.6430492035729749e-06, 'gunfire': 5.750672212505412e-06, 'rulings': 2.4645738053594624e-06, 'Plenty': 4.107623008932437e-06, 'short-of-war': 2.4645738053594624e-06, 'Shipments': 1.6430492035729749e-06, 'contraband': 1.6430492035729749e-06, 'foodstuffs': 2.4645738053594624e-06, '236': 1.6430492035729749e-06, '66th': 1.6430492035729749e-06, 'gainful': 1.6430492035729749e-06, '78th': 2.4645738053594624e-06, 'backlog': 4.929147610718925e-06, 'rehabilitating': 1.6430492035729749e-06, 'remunerative': 1.6430492035729749e-06, '83rd': 1.6430492035729749e-06, 'Rehabilitation': 2.4645738053594624e-06, 'homebound': 1.6430492035729749e-06, "program's": 1.6430492035729749e-06, 'Financial': 4.929147610718925e-06, '50-50': 1.6430492035729749e-06, 'traineeships': 1.6430492035729749e-06, 'authorizations': 5.750672212505412e-06, 'allotments': 7.393721416078387e-06, 'redistributed': 2.4645738053594624e-06, 'maximums': 2.4645738053594624e-06, 'vocationally': 1.6430492035729749e-06, 'Method': 4.929147610718925e-06, 'excludes': 3.2860984071459497e-06, 'Source': 4.107623008932437e-06, 'Divide': 3.2860984071459497e-06, '33-1/3%': 1.6430492035729749e-06, 'computations': 1.6430492035729749e-06, 'unadjusted': 1.0679819823224336e-05, '$23,000,000': 2.4645738053594624e-06, '5.4865771': 1.6430492035729749e-06, 'recouped': 1.6430492035729749e-06, 'pivot': 2.4645738053594624e-06, '60%': 1.6430492035729749e-06, 'pre-1960': 1.6430492035729749e-06, 'Share': 3.2860984071459497e-06, 'Computing': 2.4645738053594624e-06, 'Allotments': 2.4645738053594624e-06, 'mortaring': 1.6430492035729749e-06, 'shielding': 4.929147610718925e-06, 'inset': 1.6430492035729749e-06, 'fig.': 1.232286902679731e-05, 'Concrete': 2.4645738053594624e-06, 'mortared': 2.4645738053594624e-06, 'hollow': 1.0679819823224336e-05, 'Bricks': 1.6430492035729749e-06, 'Masonry': 1.6430492035729749e-06, 'Cement': 1.6430492035729749e-06, 'Aboveground': 1.6430492035729749e-06, 'double-wall': 4.107623008932437e-06, 'aboveground': 1.6430492035729749e-06, 'pit-run': 3.2860984071459497e-06, 'overlaid': 1.6430492035729749e-06, 'waterproofing': 1.6430492035729749e-06, "Contractors'": 1.6430492035729749e-06, 'Pre-shaped': 2.4645738053594624e-06, 'pre-cast': 1.6430492035729749e-06, 'mounded': 2.4645738053594624e-06, 'hatchway': 2.4645738053594624e-06, 'Underground': 1.6430492035729749e-06, 'Arrangement': 1.6430492035729749e-06, 'right-angle': 1.6430492035729749e-06, 'Radiation': 5.750672212505412e-06, 'scatters': 1.6430492035729749e-06, 'vents': 4.107623008932437e-06, 'Vent': 1.6430492035729749e-06, 'figs.': 8.215246017864873e-06, 'CONELRAD': 2.4645738053594624e-06, 'low-level': 2.4645738053594624e-06, '4-cell': 1.6430492035729749e-06, 'hot-shot': 2.4645738053594624e-06, '150-milliampere': 1.6430492035729749e-06, 'flashlight-type': 1.6430492035729749e-06, 'Tests': 3.2860984071459497e-06, 'Appendix': 9.036770619651361e-06, 'Basement': 1.6430492035729749e-06, 'Bunks': 1.6430492035729749e-06, 'belowground': 2.4645738053594624e-06, 'tornado': 1.6430492035729749e-06, 'decays': 1.6430492035729749e-06, 'Forty-nine': 1.6430492035729749e-06, 'battery-powered': 2.4645738053594624e-06, 'checklist': 3.2860984071459497e-06, 'Blowers': 1.6430492035729749e-06, 'Provision': 1.6430492035729749e-06, '10-gallon': 1.6430492035729749e-06, 'advisable': 1.6430492035729749e-06, 'climates': 1.6430492035729749e-06, 'Warm': 2.4645738053594624e-06, 'Open-flame': 1.6430492035729749e-06, 'rehearsals': 4.107623008932437e-06, 'Shelter': 1.6430492035729749e-06, 'maximizing': 4.107623008932437e-06, "Motors'": 3.2860984071459497e-06, 'Competitors': 1.6430492035729749e-06, 'outstripping': 1.6430492035729749e-06, '353': 4.929147610718925e-06, '606': 1.6430492035729749e-06, 'F.Supp.235': 1.6430492035729749e-06, 'proscribe': 1.6430492035729749e-06, 'monopolization': 1.6430492035729749e-06, 'incipiency': 2.4645738053594624e-06, 'restraints': 6.5721968142918994e-06, '589': 1.6430492035729749e-06, 'pre-eminent': 1.6430492035729749e-06, 'endangered': 1.6430492035729749e-06, "customer's": 1.6430492035729749e-06, '607': 1.6430492035729749e-06, 'remanded': 2.4645738053594624e-06, 'decrees': 4.929147610718925e-06, 'judgements': 1.6430492035729749e-06, 'exigencies': 2.4645738053594624e-06, '332': 3.2860984071459497e-06, '392': 2.4645738053594624e-06, '400-401': 1.6430492035729749e-06, '607-608': 1.6430492035729749e-06, 'pretrial': 1.6430492035729749e-06, 'amici': 2.4645738053594624e-06, 'curiae': 2.4645738053594624e-06, 'disenfranchisement': 2.4645738053594624e-06, 'deeming': 1.6430492035729749e-06, 'divestiture': 4.107623008932437e-06, 'antitrust': 1.6430492035729749e-06, '63,000,000': 1.6430492035729749e-06, 'Christiana': 8.215246017864873e-06, 'Securities': 1.6430492035729749e-06, 'Realty': 1.6430492035729749e-06, 'allocable': 3.2860984071459497e-06, "trustee's": 1.6430492035729749e-06, 'preferential': 4.107623008932437e-06, 'Amici': 1.6430492035729749e-06, 'Curiae': 1.6430492035729749e-06, 'taxpaying': 1.6430492035729749e-06, '$2.09': 1.6430492035729749e-06, 'counterproposal': 1.6430492035729749e-06, 'inter': 2.4645738053594624e-06, 'alia': 1.6430492035729749e-06, 'depress': 1.6430492035729749e-06, 'comprehensively': 2.4645738053594624e-06, 'households': 2.4645738053594624e-06, 'disenfranchised': 1.6430492035729749e-06, 'quirk': 1.6430492035729749e-06, 'unnourished': 1.6430492035729749e-06, 'endanger': 1.6430492035729749e-06, 'confidentiality': 1.6430492035729749e-06, "Hawkins'": 1.6430492035729749e-06, '362': 2.4645738053594624e-06, '525': 1.6430492035729749e-06, 'husband-wife': 1.6430492035729749e-06, 'enthrones': 1.6430492035729749e-06, 'depose': 1.6430492035729749e-06, 'Petitioner': 9.036770619651361e-06, 'objector': 2.4645738053594624e-06, '12a': 1.6430492035729749e-06, '60-66': 1.6430492035729749e-06, '62-63': 1.6430492035729749e-06, "Justice's": 2.4645738053594624e-06, '63-64': 1.6430492035729749e-06, '64-66': 1.6430492035729749e-06, 'Friedman': 1.6430492035729749e-06, 'Rankin': 8.215246017864873e-06, 'Wilkey': 1.6430492035729749e-06, '604,622': 1.6430492035729749e-06, 'App.': 1.6430492035729749e-06, '462': 1.6430492035729749e-06, '269': 1.6430492035729749e-06, '613': 1.6430492035729749e-06, 'certiorari': 2.4645738053594624e-06, '899': 1.6430492035729749e-06, "petitioner's": 2.4645738053594624e-06, 'Gonzales': 8.215246017864873e-06, '348': 4.107623008932437e-06, '407': 2.4645738053594624e-06, '346': 2.4645738053594624e-06, "Jehovah's": 2.4645738053594624e-06, 'Witnesses': 2.4645738053594624e-06, '4-d': 1.6430492035729749e-06, '1-a': 4.107623008932437e-06, '1-o': 1.6430492035729749e-06, 'pioneering': 3.2860984071459497e-06, 'reclassified': 2.4645738053594624e-06, 'reclassification': 1.6430492035729749e-06, 'reopened': 1.6430492035729749e-06, 'Sicurella': 1.6430492035729749e-06, '385': 1.6430492035729749e-06, 'memorandum': 3.2860984071459497e-06, 'Pioneer': 2.4645738053594624e-06, 'Servant': 1.6430492035729749e-06, 'concurred': 2.4645738053594624e-06, 'rebutted': 2.4645738053594624e-06, 'registrant': 4.107623008932437e-06, 'supra': 3.2860984071459497e-06, '412': 1.6430492035729749e-06, 'renders': 2.4645738053594624e-06, 'Estep': 1.6430492035729749e-06, '327': 1.6430492035729749e-06, '412-413': 1.6430492035729749e-06, 'subpoena': 1.6430492035729749e-06, 'duces': 1.6430492035729749e-06, 'tecum': 1.6430492035729749e-06, 'longhand': 2.4645738053594624e-06, 'Evensen': 1.6430492035729749e-06, 'thereon': 1.6430492035729749e-06, '6(j)': 1.6430492035729749e-06, "registrant's": 2.4645738053594624e-06, 'intradepartmental': 1.6430492035729749e-06, 'relevancy': 2.4645738053594624e-06, 'objectors': 1.6430492035729749e-06, '5-6': 1.6430492035729749e-06, 'interdepartmental': 1.6430492035729749e-06, 'inadvertence': 1.6430492035729749e-06, 'bureaucratic': 3.2860984071459497e-06, 'affliction': 1.6430492035729749e-06, 'bureaucracies': 3.2860984071459497e-06, 'spoiled': 5.750672212505412e-06, 'Dozens': 1.6430492035729749e-06, 'remedial': 1.6430492035729749e-06, 'departmental': 1.6430492035729749e-06, 'Chewing': 1.6430492035729749e-06, 'explores': 1.6430492035729749e-06, 'underlies': 1.6430492035729749e-06, 'policy-oriented': 1.6430492035729749e-06, 'dimly': 9.036770619651361e-06, 'merciful': 1.6430492035729749e-06, 'guidelines': 1.6430492035729749e-06, 'well-understood': 1.6430492035729749e-06, 'imperceptibly': 1.6430492035729749e-06, 'inflammation': 1.6430492035729749e-06, 'multilateral': 1.6430492035729749e-06, 'public-opinion': 2.4645738053594624e-06, 'desks': 4.107623008932437e-06, 'undigested': 1.6430492035729749e-06, 'deferment': 1.6430492035729749e-06, 'readjustment': 2.4645738053594624e-06, 'afresh': 2.4645738053594624e-06, 'Pending': 1.6430492035729749e-06, 'semi-autonomous': 1.6430492035729749e-06, "ICA's": 1.6430492035729749e-06, 'ICA': 1.6430492035729749e-06, 'appropriates': 1.6430492035729749e-06, 'campuses': 1.6430492035729749e-06, 'helpers': 2.4645738053594624e-06, 'Unfriendly': 1.6430492035729749e-06, 'immeasurably': 1.6430492035729749e-06, 'Specifically': 2.4645738053594624e-06, 'currencies': 3.2860984071459497e-06, 'P.L.': 1.6430492035729749e-06, 'Wildlife': 1.6430492035729749e-06, '92.5': 1.6430492035729749e-06, '1972': 1.6430492035729749e-06, 'Revise': 1.6430492035729749e-06, 'big-game': 1.6430492035729749e-06, 'gamebird': 1.6430492035729749e-06, 'fishery': 1.6430492035729749e-06, '81,000': 1.6430492035729749e-06, 'impoundments': 1.6430492035729749e-06, 'Improve': 2.4645738053594624e-06, 'Develop': 1.6430492035729749e-06, 'vegetation': 3.2860984071459497e-06, '400,000': 2.4645738053594624e-06, '56,000': 1.6430492035729749e-06, 'streamside': 1.6430492035729749e-06, 'Protection': 4.107623008932437e-06, 'sawtimber': 3.2860984071459497e-06, 'life-supporting': 1.6430492035729749e-06, 'waterflows': 1.6430492035729749e-06, 'renewable': 1.6430492035729749e-06, 'infestations': 4.107623008932437e-06, 'Intensification': 1.6430492035729749e-06, 'Continuation': 3.2860984071459497e-06, 'Initiating': 1.6430492035729749e-06, 'mistletoe': 1.6430492035729749e-06, 'softwood': 1.6430492035729749e-06, 'Coordination': 1.6430492035729749e-06, 'timberlands': 3.2860984071459497e-06, 'proficiency': 3.2860984071459497e-06, 'Adoption': 1.6430492035729749e-06, 'Reduction': 1.6430492035729749e-06, 'high-value': 3.2860984071459497e-06, 'needing': 4.929147610718925e-06, 'felling': 2.4645738053594624e-06, 'snags': 1.6430492035729749e-06, '350,000': 2.4645738053594624e-06, 'lightning-occurrence': 1.6430492035729749e-06, '3.5': 4.107623008932437e-06, '11,000': 1.6430492035729749e-06, 'firebreaks': 1.6430492035729749e-06, 'Rodent': 1.6430492035729749e-06, 'porcupines': 1.6430492035729749e-06, 'forage': 3.2860984071459497e-06, 'infestation': 2.4645738053594624e-06, 'rangelands': 2.4645738053594624e-06, '9.4': 2.4645738053594624e-06, 'jurisdictions': 1.6430492035729749e-06, '24,400': 1.6430492035729749e-06, '162,400': 1.6430492035729749e-06, '106,500': 1.6430492035729749e-06, '542,250': 1.6430492035729749e-06, 'windstorm': 1.6430492035729749e-06, 'overgrazing': 1.6430492035729749e-06, 'acre-feet': 1.6430492035729749e-06, '635': 1.6430492035729749e-06, '379,900': 1.6430492035729749e-06, '105,000': 1.6430492035729749e-06, '10,500': 1.6430492035729749e-06, '26,500': 1.6430492035729749e-06, '1963-1972': 1.6430492035729749e-06, '79,400': 1.6430492035729749e-06, 'multiple-purpose': 1.6430492035729749e-06, 'stumpage': 1.6430492035729749e-06, '268,900': 1.6430492035729749e-06, 'patenting': 1.6430492035729749e-06, 'non-Federal': 1.6430492035729749e-06, 'inholdings': 3.2860984071459497e-06, 'unmanaged': 1.6430492035729749e-06, 'Strategy': 1.6430492035729749e-06, 'conventional-type': 1.6430492035729749e-06, 'missile-type': 1.6430492035729749e-06, 'contending': 1.6430492035729749e-06, 'year-end': 1.6430492035729749e-06, '2,489,000': 1.6430492035729749e-06, '870,000': 1.6430492035729749e-06, '817': 1.6430492035729749e-06, '619,000': 1.6430492035729749e-06, '175,000': 1.6430492035729749e-06, '91': 1.6430492035729749e-06, '825,000': 1.6430492035729749e-06, 'reexamine': 1.6430492035729749e-06, 'Appropriation': 1.6430492035729749e-06, 'strengths': 4.107623008932437e-06, '360,000': 1.6430492035729749e-06, '270,000': 1.6430492035729749e-06, '$12.1': 1.6430492035729749e-06, '$187': 1.6430492035729749e-06, 'dependents': 2.4645738053594624e-06, 'Retired': 1.6430492035729749e-06, '$94': 1.6430492035729749e-06, '$56': 1.6430492035729749e-06, 'Traditionally': 1.6430492035729749e-06, 'Expenditures': 2.4645738053594624e-06, '$10.3': 1.6430492035729749e-06, '$184': 1.6430492035729749e-06, 'outweigh': 2.4645738053594624e-06, '601': 1.6430492035729749e-06, '365': 1.6430492035729749e-06, 'violates': 2.4645738053594624e-06, 'long-line': 1.6430492035729749e-06, 'Government-owned': 1.6430492035729749e-06, 'Procurement': 1.6430492035729749e-06, '45%': 1.6430492035729749e-06, '$19.3': 1.6430492035729749e-06, 'decreases': 7.393721416078387e-06, 'obligational': 1.6430492035729749e-06, '$4,753': 1.6430492035729749e-06, '$1,390': 1.6430492035729749e-06, '$3,825': 1.6430492035729749e-06, '$581': 1.6430492035729749e-06, 'bidding': 6.5721968142918994e-06, 'Buy': 1.6430492035729749e-06, 'reenact': 1.6430492035729749e-06, 'obsolescent': 2.4645738053594624e-06, 'break-through': 1.6430492035729749e-06, 'reevaluation': 1.6430492035729749e-06, 'redirect': 1.6430492035729749e-06, 'overtaken': 1.6430492035729749e-06, 'Regulus': 1.6430492035729749e-06, 'aerodynamic': 1.6430492035729749e-06, 'ship-to-surface': 1.6430492035729749e-06, 'surfaced': 1.6430492035729749e-06, 'F-108': 2.4645738053594624e-06, 'interceptor': 1.6430492035729749e-06, "mid-1960's": 1.6430492035729749e-06, 'Notable': 1.6430492035729749e-06, 'Jupiter': 8.215246017864873e-06, 'high-energy': 4.107623008932437e-06, 'curtailed': 2.4645738053594624e-06, 'underscore': 1.6430492035729749e-06, 'far-ranging': 1.6430492035729749e-06, 'carrier-based': 1.6430492035729749e-06, "ICBM's": 2.4645738053594624e-06, 'solid-fueled': 1.6430492035729749e-06, 'mid-1963': 1.6430492035729749e-06, 'reliability': 1.6430492035729749e-06, 'air-frame': 1.6430492035729749e-06, 'B-52H': 1.6430492035729749e-06, 'turbofan': 1.6430492035729749e-06, 'B-58': 1.6430492035729749e-06, 'B-47': 1.6430492035729749e-06, "B-47's": 1.6430492035729749e-06, 'equipping': 1.6430492035729749e-06, 'air-to-surface': 1.6430492035729749e-06, 'rupees': 1.232286902679731e-05, "India's": 2.4645738053594624e-06, '104': 1.0679819823224336e-05, 'rupee': 5.750672212505412e-06, '$538': 2.4645738053594624e-06, '$1,276': 1.6430492035729749e-06, 'disbursement': 2.4645738053594624e-06, 'undertakings': 4.107623008932437e-06, 'resale': 2.4645738053594624e-06, 'transshipment': 2.4645738053594624e-06, 'Done': 3.2860984071459497e-06, 'Patil': 1.6430492035729749e-06, 'Agricultural': 3.2860984071459497e-06, 'Commodities': 1.6430492035729749e-06, 'Paragraph': 2.4645738053594624e-06, '$63.8': 1.6430492035729749e-06, 'Export-Import': 1.232286902679731e-05, 'subsidiaries': 2.4645738053594624e-06, 'affiliates': 1.6430492035729749e-06, 'receipt': 4.107623008932437e-06, 'maturities': 1.6430492035729749e-06, 'sixty-day': 1.6430492035729749e-06, 'approves': 1.6430492035729749e-06, 'Uses': 1.6430492035729749e-06, 'Sections': 4.929147610718925e-06, 'reimbursed': 1.6430492035729749e-06, 'memoranda': 1.6430492035729749e-06, 'above-mentioned': 2.4645738053594624e-06, 'always-present': 1.6430492035729749e-06, 'kc.': 2.4645738053594624e-06, 'undetectable': 1.6430492035729749e-06, 'radiated': 4.107623008932437e-06, 'sunspot': 1.6430492035729749e-06, 'case-to-case': 1.6430492035729749e-06, 'separations': 1.6430492035729749e-06, '20-to-1': 2.4645738053594624e-06, 'cochannel': 4.929147610718925e-06, 'objectionable': 3.2860984071459497e-06, "B's": 1.6430492035729749e-06, 'allocations': 2.4645738053594624e-06, 'nighttime': 1.1501344425010824e-05, 'skywave': 2.6288787257167598e-05, 'ionized': 3.2860984071459497e-06, 'ionosphere': 3.2860984071459497e-06, 'radiate': 1.6430492035729749e-06, 'groundwave': 5.750672212505412e-06, 'radiations': 3.2860984071459497e-06, 'complicating': 1.6430492035729749e-06, '1938-39': 2.4645738053594624e-06, 'limited-time': 1.6430492035729749e-06, '3.190': 1.6430492035729749e-06, 'variability': 3.2860984071459497e-06, 'fluctuations': 1.6430492035729749e-06, 'denominated': 1.6430492035729749e-06, 'signal-intensity': 1.6430492035729749e-06, 'Allocation': 1.6430492035729749e-06, 'clear-channel': 2.4645738053594624e-06, 'predominant': 1.6430492035729749e-06, '0.1-mv./m.': 1.6430492035729749e-06, 'whereever': 1.6430492035729749e-06, '0.5-mv./m.': 1.6430492035729749e-06, '50-percent': 1.6430492035729749e-06, 'directionally': 1.6430492035729749e-06, 'antennas': 1.6430492035729749e-06, 'Essentially': 4.107623008932437e-06, 'Daytime': 1.6430492035729749e-06, 'Skywave': 1.6430492035729749e-06, '1938-1939': 1.6430492035729749e-06, 'affidavits': 2.4645738053594624e-06, 'intereference': 1.6430492035729749e-06, 'Deduction': 3.2860984071459497e-06, 'refund': 1.7252016637516235e-05, 'Claim': 1.6430492035729749e-06, 'Refund': 2.4645738053594624e-06, '1040': 7.393721416078387e-06, 'waived': 1.6430492035729749e-06, 'Nonresident': 2.4645738053594624e-06, 'aliens': 3.2860984071459497e-06, 'nonresident': 1.6430492035729749e-06, 'decedent': 2.4645738053594624e-06, 'overpayment': 4.107623008932437e-06, '1310': 1.6430492035729749e-06, 'Extensions': 3.2860984071459497e-06, '2688': 1.6430492035729749e-06, 'Unpaid': 1.6430492035729749e-06, 'Taxes': 1.6430492035729749e-06, 'Taxpayers': 1.6430492035729749e-06, '1040A': 4.107623008932437e-06, 'remitted': 1.6430492035729749e-06, 'computes': 2.4645738053594624e-06, 'Payment': 1.6430492035729749e-06, 'uncertified': 1.6430492035729749e-06, 'elapses': 1.6430492035729749e-06, 'Refunds': 2.4645738053594624e-06, 'refunded': 1.6430492035729749e-06, 'Income': 1.0679819823224336e-05, 'Taxable': 1.6430492035729749e-06, 'deduct': 1.0679819823224336e-05, 'Rents': 1.6430492035729749e-06, 'royalties': 2.4645738053594624e-06, 'Employees': 1.6430492035729749e-06, 'reimburses': 1.6430492035729749e-06, 'Sick': 2.4645738053594624e-06, 'beneficiary': 1.6430492035729749e-06, 'legatee': 1.6430492035729749e-06, 'devisee': 1.6430492035729749e-06, 'Deductible': 1.6430492035729749e-06, 'Chapters': 4.107623008932437e-06, 'Minors': 1.6430492035729749e-06, 'Exemption': 1.6430492035729749e-06, 'Example': 4.929147610718925e-06, '$720': 1.6430492035729749e-06, 'W-2': 1.6430492035729749e-06, 'one-': 4.929147610718925e-06, "Foundation's": 1.0679819823224336e-05, "Trustees'": 1.6430492035729749e-06, "Lowell's": 2.4645738053594624e-06, 'selectors': 1.6430492035729749e-06, 'constancy': 4.929147610718925e-06, 'trickle': 2.4645738053594624e-06, 'Fellows': 4.929147610718925e-06, 'essayists': 1.6430492035729749e-06, 'gratis': 1.6430492035729749e-06, 'conveying': 1.6430492035729749e-06, 'biennium': 1.6430492035729749e-06, 'Fellow': 1.6430492035729749e-06, 'thrice': 1.6430492035729749e-06, 'Makepeace': 1.6430492035729749e-06, 'Thackeray': 2.4645738053594624e-06, 'Mathias': 2.4645738053594624e-06, 'Kellum': 1.6430492035729749e-06, 'above-noted': 1.6430492035729749e-06, 'legion': 2.4645738053594624e-06, 'Pericles': 1.6430492035729749e-06, "Greece's": 1.6430492035729749e-06, 'Thermopylae': 1.6430492035729749e-06, 'gusto': 2.4645738053594624e-06, "Keats's": 1.6430492035729749e-06, "Armada's": 1.6430492035729749e-06, 'logarithms': 1.6430492035729749e-06, '1665': 1.6430492035729749e-06, 'Olympian': 1.6430492035729749e-06, 'sayings': 1.6430492035729749e-06, 'explorations': 1.6430492035729749e-06, 'Forsan': 1.6430492035729749e-06, 'haec': 1.6430492035729749e-06, 'olim': 1.6430492035729749e-06, 'meminisse': 1.6430492035729749e-06, 'iuvabit': 1.6430492035729749e-06, 'theoreticians': 1.6430492035729749e-06, 'inductions': 1.6430492035729749e-06, 'naught': 2.4645738053594624e-06, "capitalists'": 1.6430492035729749e-06, 'enlighten': 1.6430492035729749e-06, '334': 1.6430492035729749e-06, 'humanities': 2.4645738053594624e-06, '125th': 1.6430492035729749e-06, 'astride': 3.2860984071459497e-06, 'metalworking': 2.4645738053594624e-06, 'bustle': 2.4645738053594624e-06, '1830': 1.6430492035729749e-06, 'watchmaker': 2.4645738053594624e-06, 'plied': 2.4645738053594624e-06, 'Walcott': 1.6430492035729749e-06, 'lathes': 1.6430492035729749e-06, 'father-and-son': 1.6430492035729749e-06, '1833': 1.6430492035729749e-06, '1838': 1.6430492035729749e-06, 'gutted': 1.6430492035729749e-06, 'inclinations': 1.6430492035729749e-06, 'cryptic': 2.4645738053594624e-06, 'apprenticeship': 2.4645738053594624e-06, 'tinkering': 2.4645738053594624e-06, '1853': 1.6430492035729749e-06, 'vernier': 1.6430492035729749e-06, 'caliper': 2.4645738053594624e-06, '1858': 2.4645738053594624e-06, 'Willcox': 2.4645738053594624e-06, 'Gibbs': 6.5721968142918994e-06, 'Curious': 1.6430492035729749e-06, 'turret': 3.2860984071459497e-06, 'hand-filed': 1.6430492035729749e-06, 'rattail': 1.6430492035729749e-06, 'Serial': 2.4645738053594624e-06, 'Milling': 1.6430492035729749e-06, 'archtype': 1.6430492035729749e-06, 'knee-type': 2.4645738053594624e-06, 'Precision': 1.6430492035729749e-06, 're-sharpening': 2.4645738053594624e-06, 'gears': 2.4645738053594624e-06, 'superceded': 1.6430492035729749e-06, 'antecedent': 1.6430492035729749e-06, 'machine-family': 1.6430492035729749e-06, 'Darling': 6.5721968142918994e-06, 'Swartz': 1.6430492035729749e-06, "60's": 1.6430492035729749e-06, "Darling's": 1.6430492035729749e-06, 'trademark': 3.2860984071459497e-06, 'gages': 2.4645738053594624e-06, 'Viall': 2.4645738053594624e-06, 'Apprentice': 1.6430492035729749e-06, 'Commencing': 1.6430492035729749e-06, 'tenets': 2.4645738053594624e-06, 'formed-tooth': 1.6430492035729749e-06, 'hobbing': 1.6430492035729749e-06, 'belt-driven': 1.6430492035729749e-06, 'grinders': 3.2860984071459497e-06, 'cylindrical': 9.85829522143785e-06, 'semi-special': 1.6430492035729749e-06, 'metal-working': 1.6430492035729749e-06, 'Tool': 2.4645738053594624e-06, 'bed-type': 1.6430492035729749e-06, 'manufactures': 2.4645738053594624e-06, 'gaging': 1.6430492035729749e-06, "machinists'": 1.6430492035729749e-06, 'micrometers': 1.6430492035729749e-06, 'Vernier': 1.6430492035729749e-06, 'calipers': 1.6430492035729749e-06, '$2,557,111': 1.6430492035729749e-06, '$3.11': 1.6430492035729749e-06, '821,220': 1.6430492035729749e-06, '$2,323,867': 1.6430492035729749e-06, '$2.82': 1.6430492035729749e-06, '25.1%': 1.6430492035729749e-06, '$24,926,615': 1.6430492035729749e-06, '$31,179,816': 1.6430492035729749e-06, 'Outlook': 1.6430492035729749e-06, "Leesona's": 3.2860984071459497e-06, 'Unifil': 4.929147610718925e-06, 'winder': 3.2860984071459497e-06, 'Uniconer': 4.929147610718925e-06, 'coning': 2.4645738053594624e-06, 'Budget': 2.4645738053594624e-06, 'chargeable': 1.6430492035729749e-06, 'Stretch': 1.6430492035729749e-06, 'ultra-high-speed': 1.6430492035729749e-06, 'yarns': 5.750672212505412e-06, 'weaving': 4.107623008932437e-06, 'textured': 2.4645738053594624e-06, 'apparel': 2.4645738053594624e-06, 'blouses': 1.6430492035729749e-06, "producers'": 1.6430492035729749e-06, 'winders': 1.6430492035729749e-06, 'Large-package': 1.6430492035729749e-06, 'large-package': 1.6430492035729749e-06, "customers'": 1.6430492035729749e-06, 'progressing': 2.4645738053594624e-06, 'knot-tying': 1.6430492035729749e-06, 'bobbins': 1.6430492035729749e-06, 'bobbin-to-cone': 1.6430492035729749e-06, 'high-cost': 1.6430492035729749e-06, 'Take-up': 1.6430492035729749e-06, 'take-up': 3.2860984071459497e-06, 'thermoplastic': 1.6430492035729749e-06, 'filament': 1.6430492035729749e-06, 'spinneret': 1.6430492035729749e-06, 'extruder': 1.6430492035729749e-06, 'twister-coners': 1.6430492035729749e-06, 'polymer': 1.6430492035729749e-06, 'Diversification': 1.6430492035729749e-06, 'Moos': 3.2860984071459497e-06, 'licensee': 1.6430492035729749e-06, 'PMR': 1.6430492035729749e-06, 'Compagnie': 1.6430492035729749e-06, 'Telegraphie': 1.6430492035729749e-06, 'Sans': 2.4645738053594624e-06, 'CSF': 1.6430492035729749e-06, 'thermoelectric': 2.4645738053594624e-06, 'modules': 1.6430492035729749e-06, 'NAIR': 1.6430492035729749e-06, '430,000': 1.6430492035729749e-06, 'Leesona-Holt': 2.4645738053594624e-06, 'Limited': 4.107623008932437e-06, 'Darwen': 1.6430492035729749e-06, 'Rochdale': 2.4645738053594624e-06, 'Layout': 1.6430492035729749e-06, 'transfered': 1.6430492035729749e-06, 'reimburse': 1.6430492035729749e-06, 'Interim': 1.6430492035729749e-06, '$1,961,000': 1.6430492035729749e-06, '$395,000': 1.6430492035729749e-06, '$2,461,000': 1.6430492035729749e-06, 'Inventories': 1.6430492035729749e-06, '$625,561': 1.6430492035729749e-06, '$8,313,514': 1.6430492035729749e-06, 'Employee': 1.6430492035729749e-06, '4%': 1.6430492035729749e-06, 'non-exempt': 1.6430492035729749e-06, 'salaried': 1.6430492035729749e-06, 'semi-private': 1.6430492035729749e-06, '171': 1.6430492035729749e-06, '$2,412,616': 1.6430492035729749e-06, 'synthetics': 1.6430492035729749e-06, 'Carleton': 2.464573805359462e-05, 'Glee': 2.4645738053594624e-06, 'auditions': 2.4645738053594624e-06, 'Overtones': 1.6430492035729749e-06, 'Keynotes': 1.6430492035729749e-06, 'student-directed': 1.6430492035729749e-06, 'Chaplain': 2.4645738053594624e-06, 'Judeo-Christian': 1.6430492035729749e-06, 'Worship': 2.4645738053594624e-06, 'Y.M.C.A.': 1.6430492035729749e-06, 'Y.W.C.A.': 1.6430492035729749e-06, "Friends'": 1.6430492035729749e-06, 'Hillel': 1.6430492035729749e-06, 'Congregational-Baptist': 2.4645738053594624e-06, 'co-ordinated': 1.6430492035729749e-06, 'Synod': 1.6430492035729749e-06, 'Bethel': 1.6430492035729749e-06, 'Moravian': 1.6430492035729749e-06, 'Pentecostal': 1.6430492035729749e-06, 'theater-going': 1.6430492035729749e-06, 'Dramatic': 1.6430492035729749e-06, '1960-1961': 1.6430492035729749e-06, 'Wedding': 1.6430492035729749e-06, 'Federico': 1.6430492035729749e-06, 'Lorca': 1.6430492035729749e-06, 'Pestle': 1.6430492035729749e-06, 'Misbegotten': 1.6430492035729749e-06, 'Menagerie': 1.6430492035729749e-06, 'Boliou': 2.4645738053594624e-06, 'enameling': 2.4645738053594624e-06, 'printmaking': 1.6430492035729749e-06, 'lapidary': 1.6430492035729749e-06, 'extra-curricular': 1.6430492035729749e-06, 'Bottega': 1.6430492035729749e-06, 'contexts': 2.4645738053594624e-06, 'intercollegiate': 3.2860984071459497e-06, 'intramural': 2.4645738053594624e-06, 'eligibility': 3.2860984071459497e-06, 'Collegiate': 1.6430492035729749e-06, 'captaincy': 1.6430492035729749e-06, '1.00': 2.4645738053594624e-06, 'cheerleaders': 1.6430492035729749e-06, 'Soccer': 2.4645738053594624e-06, 'soccer': 1.6430492035729749e-06, 'beginners': 1.6430492035729749e-06, 'sportsmanship': 1.6430492035729749e-06, 'Saddle': 2.4645738053594624e-06, 'Orchesis': 2.4645738053594624e-06, 'Dolphins': 2.4645738053594624e-06, 'Annual': 4.107623008932437e-06, 'Fete': 2.4645738053594624e-06, 'invitational': 1.6430492035729749e-06, 'three-night': 1.6430492035729749e-06, 'interclass': 1.6430492035729749e-06, 'badminton': 1.6430492035729749e-06, 'hockey': 1.6430492035729749e-06, 'Olaf': 1.6430492035729749e-06, 'arranges': 1.6430492035729749e-06, 'Alumni': 4.929147610718925e-06, 'Catalog': 2.4645738053594624e-06, 'Reunion': 1.6430492035729749e-06, 'Treasurer': 1.6430492035729749e-06, 'Comments': 1.6430492035729749e-06, "College's": 1.6430492035729749e-06, 'directory': 4.107623008932437e-06, 'Admissions': 1.6430492035729749e-06, 'Miscellany': 1.6430492035729749e-06, 'Carletonian': 1.6430492035729749e-06, 'Algol': 3.2860984071459497e-06, 'Manuscript': 2.4645738053594624e-06, 'low-power': 1.6430492035729749e-06, 'carrier-current': 1.6430492035729749e-06, 'KARL': 2.4645738053594624e-06, 'Co-operative': 2.4645738053594624e-06, 'Week-end': 1.6430492035729749e-06, 'Co-op': 1.6430492035729749e-06, 'downtrend': 1.6430492035729749e-06, 'burdensome': 1.6430492035729749e-06, '$9.2': 1.6430492035729749e-06, '$10.1': 1.6430492035729749e-06, 'Reflecting': 1.6430492035729749e-06, 'high-end': 1.6430492035729749e-06, '$1.9': 2.4645738053594624e-06, '$1.7': 1.6430492035729749e-06, '5.8': 1.6430492035729749e-06, '5.7': 3.2860984071459497e-06, '5.6': 2.4645738053594624e-06, '6.2': 1.6430492035729749e-06, '15.4': 1.6430492035729749e-06, '16.7': 1.6430492035729749e-06, '10.4': 1.6430492035729749e-06, 'Auto': 2.4645738053594624e-06, '6.3': 1.6430492035729749e-06, 'phonographs': 1.6430492035729749e-06, '15.0': 1.6430492035729749e-06, '15.5': 1.6430492035729749e-06, '$1.8': 2.4645738053594624e-06, 'totalled': 3.2860984071459497e-06, '$5.4': 1.6430492035729749e-06, '$4.9': 1.6430492035729749e-06, '1950-1953': 1.6430492035729749e-06, 'B70': 1.6430492035729749e-06, 'Nike-Zeus': 1.6430492035729749e-06, '$6': 1.6430492035729749e-06, 'Paced': 1.6430492035729749e-06, '$1.6': 1.6430492035729749e-06, 'data-handling': 1.6430492035729749e-06, 'Informed': 1.6430492035729749e-06, 'quadruple': 1.6430492035729749e-06, 'banking': 2.4645738053594624e-06, 'retailing': 4.929147610718925e-06, 'retrieval': 1.6430492035729749e-06, 'Replacement': 1.6430492035729749e-06, '$1.0': 1.6430492035729749e-06, '$0.9': 1.6430492035729749e-06, 'Demand': 1.6430492035729749e-06, 'transistors': 1.6430492035729749e-06, '$222': 1.6430492035729749e-06, '123': 1.6430492035729749e-06, '82': 1.6430492035729749e-06, '188': 2.4645738053594624e-06, '$380': 1.6430492035729749e-06, 'capacitors': 1.6430492035729749e-06, 'semi-conductors': 1.6430492035729749e-06, '7%': 2.4645738053594624e-06, '$10.8': 1.6430492035729749e-06, 'full-year': 1.6430492035729749e-06, 'Devey': 4.929147610718925e-06, 'VecTrol': 2.4645738053594624e-06, 'thyratron': 1.6430492035729749e-06, 'rectifier': 3.2860984071459497e-06, "VecTrol's": 2.4645738053594624e-06, 'Sprague': 3.2860984071459497e-06, "Devey's": 1.6430492035729749e-06, "Sprague's": 1.6430492035729749e-06, 'digital': 5.750672212505412e-06, 'Specialist': 1.6430492035729749e-06, 'Post-Graduate': 1.6430492035729749e-06, 'Modular': 1.6430492035729749e-06, 'Components': 1.6430492035729749e-06, 'English-born': 1.6430492035729749e-06, 'Vickers': 1.6430492035729749e-06, 'Interference': 2.4645738053594624e-06, 'Scarborough': 1.6430492035729749e-06, 'electro-magnetic': 1.6430492035729749e-06, 'compatability': 1.6430492035729749e-06, 'accountable': 1.6430492035729749e-06, 'Letting': 1.6430492035729749e-06, 'university-wide': 1.6430492035729749e-06, 'action-oriented': 1.6430492035729749e-06, 'hesitance': 1.6430492035729749e-06, 'conversant': 1.6430492035729749e-06, 'deadlines': 1.6430492035729749e-06, 'day-by-day': 3.2860984071459497e-06, 'rebuilds': 1.6430492035729749e-06, 'regenerates': 1.6430492035729749e-06, 'Deans': 1.6430492035729749e-06, 'appoints': 1.6430492035729749e-06, 'all-college': 1.6430492035729749e-06, 'Faculty': 1.6430492035729749e-06, 'Indirectly': 1.6430492035729749e-06, 'investigates': 1.6430492035729749e-06, 'truest': 2.4645738053594624e-06, 'unaggressive': 1.6430492035729749e-06, 'summon': 3.2860984071459497e-06, 'diversities': 1.6430492035729749e-06, 'multiversity': 1.6430492035729749e-06, 'institution-wide': 1.6430492035729749e-06, 'appropriateness': 2.4645738053594624e-06, 'inspires': 1.6430492035729749e-06, "institution's": 1.6430492035729749e-06, 'Budgeting': 1.6430492035729749e-06, 'affluent': 2.4645738053594624e-06, 'Joneses': 1.6430492035729749e-06, 'Supporting': 2.4645738053594624e-06, 'non-academic': 2.4645738053594624e-06, 'Declinations': 1.6430492035729749e-06, 'substitutions': 1.6430492035729749e-06, 'emission': 2.6288787257167598e-05, 'Garstung': 1.6430492035729749e-06, 'subsurface': 1.6430492035729749e-06, '600-degrees': 1.6430492035729749e-06, 'non-thermal': 2.4645738053594624e-06, 'black-body': 4.107623008932437e-06, 'Saturn': 3.2860984071459497e-06, '3-cm': 2.4645738053594624e-06, 'reflectors': 3.2860984071459497e-06, 'amplifying': 1.6430492035729749e-06, '1.25-cm': 2.4645738053594624e-06, 'Dicke': 1.6430492035729749e-06, 'Beringer': 1.6430492035729749e-06, 'Piddington': 3.2860984071459497e-06, 'Minnett': 3.2860984071459497e-06, 'lunation': 2.4645738053594624e-06, 'sinusoidal': 2.4645738053594624e-06, 'Pettit': 2.4645738053594624e-06, 'Nicholson': 1.6430492035729749e-06, 'rocklike': 2.4645738053594624e-06, 'interference-like': 1.6430492035729749e-06, 'chap.': 3.2860984071459497e-06, 'Gallet': 1.6430492035729749e-06, 'Steady': 1.6430492035729749e-06, '3.15': 4.107623008932437e-06, 'McCullough': 3.2860984071459497e-06, 'Sloanaker': 4.929147610718925e-06, '3.75': 1.6430492035729749e-06, 'Ewen': 1.6430492035729749e-06, '0.8': 4.107623008932437e-06, '10.2': 1.6430492035729749e-06, 'wave-length': 2.4645738053594624e-06, '3.03': 2.4645738053594624e-06, 'interferometers': 1.6430492035729749e-06, 'NRL': 1.6430492035729749e-06, '50-foot': 3.2860984071459497e-06, 'reflector': 4.929147610718925e-06, 'altitude-azimuth-mounted': 1.6430492035729749e-06, 'linearly': 4.107623008932437e-06, 'Radhakrishnan': 1.6430492035729749e-06, '960-mc': 1.6430492035729749e-06, 'subtends': 1.6430492035729749e-06, 'radiates': 1.6430492035729749e-06, 'emitting': 1.6430492035729749e-06, 'centimeter': 2.4645738053594624e-06, '1-degree': 1.6430492035729749e-06, '10-degrees': 1.6430492035729749e-06, 'centimeter-': 1.6430492035729749e-06, 'decimeter-wave-length': 1.6430492035729749e-06, '4.3': 3.2860984071459497e-06, 'mm': 4.929147610718925e-06, 'Sinton': 1.6430492035729749e-06, 'calibrating': 1.6430492035729749e-06, 'Coates': 2.4645738053594624e-06, "6'.7": 1.6430492035729749e-06, 'maria': 1.6430492035729749e-06, 'Mare': 4.107623008932437e-06, 'Imbrium': 1.6430492035729749e-06, 'falloff': 1.6430492035729749e-06, '8-mm': 1.6430492035729749e-06, "2'": 1.6430492035729749e-06, 'Amenitskii': 1.6430492035729749e-06, 'Noskova': 1.6430492035729749e-06, 'Salomonovich': 1.6430492035729749e-06, 'constant-temperature': 1.6430492035729749e-06, 'high-resolution': 1.6430492035729749e-06, '10.3': 1.6430492035729749e-06, 'half-intensity': 2.4645738053594624e-06, "9'": 1.6430492035729749e-06, 'subtended': 1.6430492035729749e-06, 'graphical': 1.6430492035729749e-06, 'directivity': 1.6430492035729749e-06, '0.85': 1.6430492035729749e-06, "moon's": 2.4645738053594624e-06, 'Q': 3.861165628396491e-05, '8.6-mm': 2.4645738053594624e-06, '10.3-cm': 1.6430492035729749e-06, '84-foot': 1.6430492035729749e-06, 'lobe': 3.2860984071459497e-06, "18'.5": 1.6430492035729749e-06, 'Gaussian': 2.4645738053594624e-06, 'graphite': 4.929147610718925e-06, 'anode': 6.407891893934602e-05, 'transpiring': 4.107623008932437e-06, 'Argon': 3.2860984071459497e-06, 'ablation': 2.4645738053594624e-06, 'transpirating': 1.6430492035729749e-06, 'Amp': 2.4645738053594624e-06, 'Qualitative': 1.6430492035729749e-06, 'fluxes': 4.107623008932437e-06, 'electrode': 4.929147610718925e-06, 'arcs': 7.393721416078387e-06, 'free-burning': 1.6430492035729749e-06, 'generators': 8.215246017864873e-06, 'cathode': 9.036770619651361e-06, 'convection': 2.4645738053594624e-06, 'kinetic': 7.393721416078387e-06, 'sheath': 4.107623008932437e-06, 'conduction': 2.4645738053594624e-06, 'Maecker': 1.6430492035729749e-06, 'Ref.': 4.107623008932437e-06, 'stagnation': 1.6430492035729749e-06, 'anodes': 1.6430492035729749e-06, 'voltages': 4.107623008932437e-06, 'Feedback': 1.6430492035729749e-06, 'transpiration': 3.2860984071459497e-06, 'Sheer': 2.4645738053594624e-06, 'co-workers': 2.4645738053594624e-06, 'Sintered': 1.6430492035729749e-06, 'Experimental': 4.929147610718925e-06, 'schematic': 3.2860984071459497e-06, 'thoriated': 1.6430492035729749e-06, 'tungsten': 4.107623008932437e-06, 'ejected': 2.4645738053594624e-06, 'axially': 1.6430492035729749e-06, 'Inflow': 1.6430492035729749e-06, 'coaxial': 1.6430492035729749e-06, 'NC': 1.6430492035729749e-06, 'porosity': 2.4645738053594624e-06, 'pore': 2.4645738053594624e-06, 'thermocouple': 3.2860984071459497e-06, 'pyrometers': 1.6430492035729749e-06, 'Pyrometer': 1.6430492035729749e-06, 'thermocouples': 3.2860984071459497e-06, '1/16': 2.4645738053594624e-06, 'Temperatures': 1.6430492035729749e-06, 'water-cooled': 1.6430492035729749e-06, 'argon': 4.107623008932437e-06, 'regulator': 1.6430492035729749e-06, 'rator': 1.6430492035729749e-06, 'V': 2.300268885002165e-05, 'resistive': 1.6430492035729749e-06, 'mV': 1.6430492035729749e-06, 'shunt': 1.6430492035729749e-06, 'millivoltmeter': 1.6430492035729749e-06, 'voltmeter': 1.6430492035729749e-06, 'Transpiration': 1.6430492035729749e-06, 'parameters': 7.393721416078387e-06, "0.5''": 1.6430492035729749e-06, 'pyrometer': 2.4645738053594624e-06, 'decreased': 7.393721416078387e-06, 'halfways': 1.6430492035729749e-06, 'x': 2.4645738053594624e-06, 'enthalpy': 2.4645738053594624e-06, 'dotted': 2.4645738053594624e-06, '**ye': 2.4645738053594624e-06, 'analogously': 1.6430492035729749e-06, 'viscometer': 1.6430492035729749e-06, 'shims': 1.6430492035729749e-06, 'force-rate': 1.6430492035729749e-06, 'graph': 1.3965918230370285e-05, 'pulley': 3.2860984071459497e-06, "0.002''": 1.6430492035729749e-06, "1/16''": 1.6430492035729749e-06, 'manometer': 5.750672212505412e-06, 'high-positive': 1.6430492035729749e-06, 'silicone': 1.6430492035729749e-06, '12,500': 1.6430492035729749e-06, 'cps': 2.4645738053594624e-06, 'hr.': 4.107623008932437e-06, 'polybutene': 1.6430492035729749e-06, 'polybutenes': 1.6430492035729749e-06, '520': 1.6430492035729749e-06, 'viscoelastic': 4.107623008932437e-06, 'suction': 1.6430492035729749e-06, "3.25''": 1.6430492035729749e-06, 'geometric': 1.6430492035729749e-06, 'disassembly': 1.6430492035729749e-06, 'magnitudes': 1.6430492035729749e-06, 'elasticity': 4.929147610718925e-06, 'parameter': 6.5721968142918994e-06, 'pastes': 1.6430492035729749e-06, 'inks': 1.6430492035729749e-06, 'adhesives': 2.4645738053594624e-06, 'molten': 2.4645738053594624e-06, 'shortness': 1.6430492035729749e-06, 'spinnability': 1.6430492035729749e-06, 'gravitational': 4.107623008932437e-06, 'osmotic': 3.2860984071459497e-06, 'molal': 2.4645738053594624e-06, '**yr': 1.6430492035729749e-06, 'derivative': 1.6430492035729749e-06, 'thermodynamic': 2.4645738053594624e-06, 'thermodynamics': 2.4645738053594624e-06, 'thermostatics': 1.6430492035729749e-06, 'Philippoff': 2.4645738053594624e-06, 'deformational': 1.6430492035729749e-06, 'solids': 1.1501344425010824e-05, 'infer': 1.6430492035729749e-06, 'shearing': 4.107623008932437e-06, 'birefringence': 3.2860984071459497e-06, '45-degrees': 2.4645738053594624e-06, 'asymptotically': 1.6430492035729749e-06, 'recoverable': 1.6430492035729749e-06, '**yc': 7.393721416078387e-06, 'deformation': 4.929147610718925e-06, 'droplets': 3.2860984071459497e-06, 'ellipsoids': 4.107623008932437e-06, 'asymptotic': 1.6430492035729749e-06, 'radii': 4.107623008932437e-06, 'curvature': 4.929147610718925e-06, '**yg': 1.6430492035729749e-06, 'interfacial': 5.750672212505412e-06, 'Rumscheidt': 1.6430492035729749e-06, 'ellipsoid': 1.6430492035729749e-06, 'ab': 1.6430492035729749e-06, 'cyclohexanol': 1.6430492035729749e-06, 'phthalate': 1.6430492035729749e-06, '155': 1.6430492035729749e-06, 'poises': 2.4645738053594624e-06, 'Bartok': 1.6430492035729749e-06, 'cosec': 1.6430492035729749e-06, 'rubber-like': 1.6430492035729749e-06, 'compressing': 1.6430492035729749e-06, 'entropy': 4.107623008932437e-06, '**zq': 2.4645738053594624e-06, 'conformational': 2.4645738053594624e-06, 'isothermal': 1.6430492035729749e-06, 'polycrystalline': 3.2860984071459497e-06, 'dipole': 4.929147610718925e-06, 'asymmetric': 2.4645738053594624e-06, 'gauss': 2.4645738053594624e-06, 'asymmetry': 1.6430492035729749e-06, 'isotropic': 3.2860984071459497e-06, 'hyperfine': 1.6430492035729749e-06, 'Curie-Weiss': 1.6430492035729749e-06, 'nuclei': 1.1501344425010824e-05, 'unpaired': 4.107623008932437e-06, 'paramagnet': 1.6430492035729749e-06, 'chromium': 3.2860984071459497e-06, 'dipoles': 1.6430492035729749e-06, 'motional-modified': 1.6430492035729749e-06, 'Theoretical': 3.2860984071459497e-06, 'symmetric': 6.5721968142918994e-06, '2.26': 1.6430492035729749e-06, 'dimethylglyoxime': 2.4645738053594624e-06, '2.44': 1.6430492035729749e-06, 'semiempirical': 1.6430492035729749e-06, '2.4': 3.2860984071459497e-06, '2.5': 4.107623008932437e-06, 'Douglass': 8.215246017864873e-06, 'trigonal': 2.4645738053594624e-06, 'Laue': 1.6430492035729749e-06, 'ion': 4.929147610718925e-06, 'piezoelectricity': 1.6430492035729749e-06, 'Cr': 3.2860984071459497e-06, 'octahedron': 1.6430492035729749e-06, 'oxygens': 3.2860984071459497e-06, 'OOH': 1.6430492035729749e-06, 'nonequivalent': 1.6430492035729749e-06, 'nonequivalence': 1.6430492035729749e-06, 'interlayer': 2.4645738053594624e-06, '2.55': 1.6430492035729749e-06, 'non-hydrogen-bonded': 1.6430492035729749e-06, '2.58': 1.6430492035729749e-06, 'geometrical': 1.6430492035729749e-06, 'asymmetrically': 2.4645738053594624e-06, 'randomly': 2.4645738053594624e-06, 'piezoelectric': 3.2860984071459497e-06, 'randomization': 1.6430492035729749e-06, 'ups': 2.4645738053594624e-06, 'symmetrically': 1.6430492035729749e-06, 'decomposition': 1.232286902679731e-05, 'aqueous': 1.232286902679731e-05, 'chromic': 1.6430492035729749e-06, '325-degrees-C': 1.6430492035729749e-06, 'Subsequently': 1.6430492035729749e-06, 'impurity': 2.4645738053594624e-06, 'ferromagnetic': 2.4645738053594624e-06, 'magnetically': 1.6430492035729749e-06, 'ml': 9.85829522143785e-06, '1M': 1.6430492035729749e-06, '170-degrees-C': 1.6430492035729749e-06, 'g': 3.2860984071459497e-06, 'water-washed': 1.6430492035729749e-06, 'centrifugation': 2.4645738053594624e-06, '110-degrees-C': 1.6430492035729749e-06, 'Differential': 1.6430492035729749e-06, 'endothermic': 2.4645738053594624e-06, '340-degrees-C': 1.6430492035729749e-06, '470-degrees-C': 1.6430492035729749e-06, 'Thermogravimetric': 1.6430492035729749e-06, '1.8%': 1.6430492035729749e-06, '337-degrees-C': 2.4645738053594624e-06, '10.8%': 1.6430492035729749e-06, '463-degrees-C': 1.6430492035729749e-06, '10.6%': 1.6430492035729749e-06, 'spectrometric': 1.6430492035729749e-06, '410-degrees-C': 1.6430492035729749e-06, 'oxides': 1.6430492035729749e-06, 'occluded': 4.107623008932437e-06, 'nitrates': 1.6430492035729749e-06, 'hydrous': 1.6430492035729749e-06, '375-degrees-C': 3.2860984071459497e-06, 'Emission': 1.6430492035729749e-06, 'impurities': 8.215246017864873e-06, 'Chromium': 1.6430492035729749e-06, '58.8%': 1.6430492035729749e-06, '61.2%': 1.6430492035729749e-06, 'adsorbs': 1.6430492035729749e-06, 'CuK**ya': 1.6430492035729749e-06, 'Magnetic': 1.6430492035729749e-06, 'Meisenheimer': 1.6430492035729749e-06, 'susceptibility': 2.4645738053594624e-06, '3.10': 1.6430492035729749e-06, 'Benesi': 1.6430492035729749e-06, 'Snyder': 1.6430492035729749e-06, 'Electron': 1.6430492035729749e-06, '0.3M': 1.6430492035729749e-06, 'single-crystal': 1.6430492035729749e-06, 'crystallites': 3.2860984071459497e-06, 'NMR': 1.6430492035729749e-06, 'Varian': 2.4645738053594624e-06, 'spectrometer': 2.4645738053594624e-06, '12-inch': 1.6430492035729749e-06, 'electromagnet': 1.6430492035729749e-06, 'Mc/sec': 3.2860984071459497e-06, 'bridged-T': 1.6430492035729749e-06, 'rf': 1.6430492035729749e-06, 'distortions': 2.4645738053594624e-06, 'signal-to-noise': 1.6430492035729749e-06, 'Background': 1.6430492035729749e-06, '470': 1.6430492035729749e-06, 'Berkeley': 1.6430492035729749e-06, 'Corrections': 1.6430492035729749e-06, 'Spectra': 4.107623008932437e-06, '294-degrees-K': 1.6430492035729749e-06, 'low-temperature': 2.4645738053594624e-06, 'Eades': 1.6430492035729749e-06, 'adsorbed': 3.2860984071459497e-06, 'wt': 1.6430492035729749e-06, 'height-to-diameter': 1.6430492035729749e-06, 'hemispherical': 1.6430492035729749e-06, 'capillary': 7.393721416078387e-06, 'anhydrous': 1.6430492035729749e-06, 'alundum': 1.6430492035729749e-06, 'Polyphosphates': 1.6430492035729749e-06, 'surfactants': 2.4645738053594624e-06, 'polyphosphates': 4.107623008932437e-06, 'synergism': 1.6430492035729749e-06, 'actives': 7.393721416078387e-06, 'heavy-duty': 1.6430492035729749e-06, 'spray-dried': 1.6430492035729749e-06, 'high-sudsing': 1.6430492035729749e-06, 'alkylbenzenesulfonates': 1.6430492035729749e-06, 'tripolyphosphate': 2.4645738053594624e-06, 'tetrasodium': 1.6430492035729749e-06, 'pyrophosphate': 1.6430492035729749e-06, 'low-sudsing': 1.6430492035729749e-06, 'nonionic': 1.6430492035729749e-06, 'light-duty': 1.6430492035729749e-06, 'dwindling': 4.107623008932437e-06, 'built-soap': 1.6430492035729749e-06, 'granules': 1.6430492035729749e-06, 'well-publicized': 1.6430492035729749e-06, 'builder/active': 1.6430492035729749e-06, 'Hard-surface': 1.6430492035729749e-06, 'alkaline': 2.4645738053594624e-06, 'dishwashers': 1.6430492035729749e-06, 'general-purpose': 1.6430492035729749e-06, 'hard-surface': 8.215246017864873e-06, 'trisodium': 1.6430492035729749e-06, 'orthophosphate': 1.6430492035729749e-06, 'phosphates': 1.6430492035729749e-06, 'Cleaning': 1.6430492035729749e-06, 'Wet': 2.4645738053594624e-06, 'substrate': 1.97165904428757e-05, 'surface-active': 6.5721968142918994e-06, 'soft-': 1.6430492035729749e-06, 'coupon': 1.6430492035729749e-06, 'absorptive': 1.6430492035729749e-06, 'reactivity': 1.6430492035729746e-05, 'surface-analyzer': 1.6430492035729749e-06, 'metal-cleaning': 1.6430492035729749e-06, 'Exclusive': 1.6430492035729749e-06, 'high-': 1.6430492035729749e-06, 'low-foam': 1.6430492035729749e-06, 'washings': 2.4645738053594624e-06, 'tattle-tale': 1.6430492035729749e-06, 'Launder-Ometer': 1.6430492035729749e-06, 'Terg-O-Tometer': 1.6430492035729749e-06, 'soiled': 6.5721968142918994e-06, 'reflectance': 1.6430492035729749e-06, 'swatches': 3.2860984071459497e-06, 'redeposition': 3.2860984071459497e-06, 'inorganic': 9.036770619651361e-06, 'Hydroxides': 1.6430492035729749e-06, 'orthophosphates': 1.6430492035729749e-06, 'borates': 1.6430492035729749e-06, 'carbonates': 1.6430492035729749e-06, 'silicates': 1.6430492035729749e-06, 'peptizing': 1.6430492035729749e-06, 'Dirt': 1.6430492035729749e-06, 'particulate': 3.2860984071459497e-06, 'colloidal': 2.4645738053594624e-06, 'Greasy': 2.4645738053594624e-06, 'typified': 2.4645738053594624e-06, 'hydrocarbons': 1.6430492035729749e-06, 'esters': 1.6430492035729749e-06, 'glycerol': 2.4645738053594624e-06, 'long-chain': 1.6430492035729749e-06, 'Stains': 1.6430492035729749e-06, 'nonparticulate': 1.6430492035729749e-06, 'Miscellaneous': 1.6430492035729749e-06, 'evaporate': 1.6430492035729749e-06, "Waal's": 1.6430492035729749e-06, 'uncharged': 4.107623008932437e-06, 'agglomerate': 2.4645738053594624e-06, 'greases': 2.4645738053594624e-06, 'Greases': 1.6430492035729749e-06, 'sorbed': 7.393721416078387e-06, 'loosen': 3.2860984071459497e-06, 'float': 3.2860984071459497e-06, 'solvating': 1.6430492035729749e-06, 'greasy': 5.750672212505412e-06, 'hydrophilic': 2.4645738053594624e-06, 'micelles': 4.107623008932437e-06, 'Physicochemical': 1.6430492035729749e-06, 'anionic': 9.036770619651361e-06, 'polymerization': 5.750672212505412e-06, 'agglomeration': 3.2860984071459497e-06, 'anions': 1.6430492035729749e-06, 'micelle': 5.750672212505412e-06, 'monomers': 1.6430492035729749e-06, 'dimers': 1.6430492035729749e-06, 'anionics': 1.6430492035729749e-06, 'assemblages': 1.6430492035729749e-06, 'hydrocarbon': 3.2860984071459497e-06, 'hydrophobic': 2.4645738053594624e-06, 'oleophilic': 3.2860984071459497e-06, 'Micelles': 1.6430492035729749e-06, 'imbibe': 1.6430492035729749e-06, 'two-fold': 2.4645738053594624e-06, 'detergency': 3.2860984071459497e-06, 'technologically': 1.6430492035729749e-06, 'congregate': 2.4645738053594624e-06, 'interfaces': 4.929147610718925e-06, 'surfactant': 1.6430492035729749e-06, 'emulsified': 1.6430492035729749e-06, 'disengage': 1.6430492035729749e-06, 'Substances': 5.750672212505412e-06, 'contiguous': 1.6430492035729749e-06, 'polyelectrolytes': 1.6430492035729749e-06, 'ionic': 4.107623008932437e-06, '26-2': 1.6430492035729749e-06, '1678': 1.6430492035729749e-06, 'oleophobic': 1.6430492035729749e-06, 'sorption': 1.6430492035729749e-06, 'polyphosphate': 1.6430492035729749e-06, 'sorption-desorption': 1.6430492035729749e-06, '1746': 1.6430492035729749e-06, '1748': 1.6430492035729749e-06, 'Freed': 2.4645738053594624e-06, 'flocculation': 1.6430492035729749e-06, 'Cleaned': 2.4645738053594624e-06, 'synergistic': 1.6430492035729749e-06, 'built-detergent': 1.6430492035729749e-06, 'antiredeposition': 1.6430492035729749e-06, 'isomers': 1.6430492035729749e-06, 'photochemical': 6.5721968142918994e-06, 'quantum': 4.929147610718925e-06, '65-degrees': 2.4645738053594624e-06, '85-degrees': 2.4645738053594624e-06, 'reagents': 3.2860984071459497e-06, 'tetrachloride': 1.6430492035729746e-05, 'proportional': 1.232286902679731e-05, 'bimolecular': 1.6430492035729749e-06, 'isotopic': 2.4645738053594624e-06, 'halogens': 1.6430492035729749e-06, 'tetrahalides': 1.6430492035729749e-06, 'carbon-halogen': 1.6430492035729749e-06, 'chlorides': 1.6430492035729749e-06, 'prechlorination': 1.6430492035729749e-06, 'scavenger': 1.6430492035729749e-06, 'reproducibility': 1.6430492035729749e-06, 'Matheson': 1.6430492035729749e-06, 'resublimed': 1.6430492035729749e-06, 'Pyrex': 4.929147610718925e-06, '-78-degrees': 3.2860984071459497e-06, 'tagging': 1.6430492035729749e-06, 'radiochlorine': 3.2860984071459497e-06, 'chips': 2.4645738053594624e-06, 'sublimed': 1.6430492035729749e-06, 'flask': 4.929147610718925e-06, 'Liter': 1.6430492035729749e-06, 'Mallinckrodt': 1.6430492035729749e-06, 'sulfur': 1.6430492035729749e-06, 'reagent': 1.6430492035729749e-06, 'watt': 2.4645738053594624e-06, 'alkali': 4.107623008932437e-06, 'Vigreux': 1.6430492035729749e-06, 'degassed': 1.6430492035729749e-06, 'Purified': 1.6430492035729749e-06, 'chlorine-carbon': 1.6430492035729749e-06, 'resealed': 1.6430492035729749e-06, 'reactants': 3.2860984071459497e-06, 'side-arm': 1.6430492035729749e-06, 'distil': 1.6430492035729749e-06, 'pre-cooled': 1.6430492035729749e-06, 'sealing': 4.107623008932437e-06, 'i.d.': 3.2860984071459497e-06, '220-degrees': 2.4645738053594624e-06, '5.5': 3.2860984071459497e-06, 'liquid-glass': 1.6430492035729749e-06, 'gas-glass': 1.6430492035729749e-06, 'shatter': 2.4645738053594624e-06, 'reproducibly': 1.6430492035729749e-06, 'positioned': 1.6430492035729749e-06, 'thermostated': 1.6430492035729749e-06, 'oil-bath': 1.6430492035729749e-06, 'AH6': 1.6430492035729749e-06, 'thermopile': 1.6430492035729749e-06, 'potentiometer': 1.6430492035729749e-06, 'iodide': 7.393721416078387e-06, 'Carrier': 1.6430492035729749e-06, 'gaseous': 2.4645738053594624e-06, 'titration': 1.6430492035729749e-06, 'aliquots': 1.6430492035729749e-06, 'solution-type': 1.6430492035729749e-06, 'Geiger': 1.6430492035729749e-06, 'emptying': 1.6430492035729749e-06, '/': 1.7252016637516235e-05, 'fillings': 3.2860984071459497e-06, 'mixtures': 4.107623008932437e-06, 'electrolysis': 1.6430492035729749e-06, 'eutectic': 1.6430492035729749e-06, 'irreproducibility': 2.4645738053594624e-06, '200-degrees': 1.6430492035729749e-06, '0.7': 1.6430492035729749e-06, 'Sets': 2.4645738053594624e-06, 'uranyl': 2.4645738053594624e-06, 'oxalate': 2.4645738053594624e-06, 'actinometer': 1.6430492035729749e-06, 'phosgene': 1.6430492035729749e-06, '14.7': 2.4645738053594624e-06, 'inversely': 4.929147610718925e-06, 'proportionality': 1.6430492035729749e-06, 'Poynting-Robertson': 4.929147610718925e-06, 'retardation': 3.2860984071459497e-06, 'orbital': 2.4645738053594624e-06, '1000-m-diameter': 1.6430492035729749e-06, 'solar-corpuscular-radiation': 1.6430492035729749e-06, 'corpuscular': 1.6430492035729749e-06, 'solar-wind': 1.6430492035729749e-06, 'sputter': 1.6430492035729749e-06, 'diminution': 1.6430492035729749e-06, 'semi-major': 2.4645738053594624e-06, 'diminish': 3.2860984071459497e-06, 'semi-minor': 1.6430492035729749e-06, 'Jager': 1.6430492035729749e-06, 'micrometeorites': 4.929147610718925e-06, 'micrometeoritic': 2.4645738053594624e-06, 'replenishment': 1.6430492035729749e-06, 'interplanetary': 3.2860984071459497e-06, 'cometary': 1.6430492035729749e-06, 'spiraling': 1.6430492035729749e-06, 'Asteroidal': 1.6430492035729749e-06, 'meteoritic': 6.5721968142918994e-06, 'impacts': 3.2860984071459497e-06, '5.3': 1.6430492035729749e-06, 'micrometeorite': 7.393721416078387e-06, 'sensors': 5.750672212505412e-06, 'meteors': 4.107623008932437e-06, 'corona': 1.6430492035729749e-06, 'cores': 3.2860984071459497e-06, 'deep-sea': 2.4645738053594624e-06, 'probes': 3.2860984071459497e-06, 'Explorer': 1.6430492035729749e-06, 'Sputnik': 1.6430492035729749e-06, 'Eta': 4.107623008932437e-06, 'sensitive-area': 1.6430492035729749e-06, 'exposure-time': 1.6430492035729749e-06, '153': 2.4645738053594624e-06, 'Dubin': 1.6430492035729749e-06, 'Ninety': 1.6430492035729749e-06, 'intersect': 5.750672212505412e-06, 'contradictory': 1.6430492035729749e-06, 'Nazarova': 1.6430492035729749e-06, '22-day': 1.6430492035729749e-06, 'LaGow': 1.6430492035729749e-06, '4.5': 2.4645738053594624e-06, 'mass-distribution': 1.6430492035729749e-06, 'inverse': 4.929147610718925e-06, '7/2': 2.4645738053594624e-06, 'detectors': 2.4645738053594624e-06, 'vaporization': 1.6430492035729749e-06, 'ejection': 2.4645738053594624e-06, 'hypervelocity': 1.6430492035729749e-06, 'sensor': 3.2860984071459497e-06, '10-M-diameter': 1.6430492035729749e-06, 'fluffy': 1.6430492035729749e-06, 'meteorite': 5.750672212505412e-06, 'densities': 2.4645738053594624e-06, 'Zodiacal': 1.6430492035729749e-06, 'gegenschein': 1.6430492035729749e-06, 'extrapolation': 3.2860984071459497e-06, 'zero-magnitude': 2.4645738053594624e-06, '2.512': 2.4645738053594624e-06, 'solar-radiation': 1.6430492035729749e-06, 'next-to-last': 1.6430492035729749e-06, 'unshielded': 1.6430492035729749e-06, 'Jacchia': 1.6430492035729749e-06, '0.15': 1.6430492035729749e-06, 'Manning': 1.6430492035729749e-06, 'Eshleman': 1.6430492035729749e-06, 'Extrapolation': 1.6430492035729749e-06, 'thirtieth': 1.6430492035729749e-06, 'line-density': 1.6430492035729749e-06, 'cubed': 1.6430492035729749e-06, 'twenty-fifth': 1.6430492035729749e-06, "Whipple's": 1.6430492035729749e-06, 'solar-electromagnetic-': 1.6430492035729749e-06, 'corpuscular-radiation': 1.6430492035729749e-06, 'microns': 4.929147610718925e-06, 'meteorites': 7.393721416078387e-06, '5.4': 1.6430492035729749e-06, 'Indirect': 1.6430492035729749e-06, 'Pettersson': 1.6430492035729749e-06, 'spherules': 1.6430492035729749e-06, 'ablated': 1.6430492035729749e-06, 'dusts': 1.6430492035729749e-06, 'Biological': 4.929147610718925e-06, 'intentional': 4.929147610718925e-06, 'toxic': 3.2860984071459497e-06, 'BW': 4.929147610718925e-06, 'quick-kill': 1.6430492035729749e-06, 'incubation': 4.107623008932437e-06, 'hand-to-hand': 2.4645738053594624e-06, 'areosol': 1.6430492035729749e-06, 'pathogenesis': 1.6430492035729749e-06, 'intensively': 1.6430492035729749e-06, 'aerosols': 3.2860984071459497e-06, 'assesment': 1.6430492035729749e-06, 'intranasal': 1.6430492035729749e-06, 'instillation': 1.6430492035729749e-06, 'anesthetized': 1.6430492035729749e-06, 'respiration': 2.4645738053594624e-06, 'aerosolized': 3.2860984071459497e-06, 'turbinates': 1.6430492035729749e-06, 'cilia': 1.6430492035729749e-06, 'trachea': 1.6430492035729749e-06, 'bronchi': 3.2860984071459497e-06, 'alveolar': 8.215246017864873e-06, 'alveoli': 4.107623008932437e-06, 'intratissue': 1.6430492035729749e-06, 'inoculation': 2.4645738053594624e-06, 'meterological': 1.6430492035729749e-06, 'aerosol': 6.5721968142918994e-06, 'optimal': 2.3824213451808133e-05, 'Neutral': 5.750672212505412e-06, '24-hour': 1.6430492035729749e-06, 'diffuses': 1.6430492035729749e-06, 'Depending': 1.6430492035729749e-06, 'inert': 4.929147610718925e-06, 'Zinc': 1.6430492035729749e-06, 'sulfide': 1.6430492035729749e-06, 'fluoresces': 1.6430492035729749e-06, 'dosage': 4.107623008932437e-06, 'isopleths': 2.4645738053594624e-06, '34,000': 1.6430492035729749e-06, 'dosages': 4.107623008932437e-06, 'non-pathogenic': 1.6430492035729749e-06, 'var.': 1.6430492035729749e-06, 'niger': 1.6430492035729749e-06, 'globigii': 1.6430492035729749e-06, 'off-shore': 1.6430492035729749e-06, 'on-sure': 1.6430492035729749e-06, 'Spraying': 1.6430492035729749e-06, 'two-mile': 1.6430492035729749e-06, '5:00': 1.6430492035729749e-06, 'samplers': 1.6430492035729749e-06, '562': 1.6430492035729749e-06, 'four-fold': 1.6430492035729749e-06, 'portal': 3.2860984071459497e-06, 'Botulinal': 1.6430492035729749e-06, 'toxin': 1.6430492035729749e-06, 'thousand-fold': 1.6430492035729749e-06, 'os': 1.6430492035729749e-06, 'tularemia': 2.4645738053594624e-06, 'ulcer': 4.929147610718925e-06, 'Agents': 1.6430492035729749e-06, 'brucellosis': 1.6430492035729749e-06, 'glanders': 1.6430492035729749e-06, 'coccidioidomycosis': 1.6430492035729749e-06, 'logistic': 2.4645738053594624e-06, 'debilitating': 2.4645738053594624e-06, 'microorganism': 1.6430492035729749e-06, 'lethality': 1.6430492035729749e-06, 'mutational': 1.6430492035729749e-06, 'antibiotic': 1.6430492035729749e-06, 'Mutants': 1.6430492035729749e-06, 'host-specific': 1.6430492035729749e-06, 'epidemics': 2.4645738053594624e-06, 'contradictorily': 2.4645738053594624e-06, 'causative': 1.6430492035729749e-06, 'typhus': 3.2860984071459497e-06, 'Rickettsia': 1.6430492035729749e-06, 'prowazwki': 1.6430492035729749e-06, 'Lousiness': 1.6430492035729749e-06, 'prerequisite': 2.4645738053594624e-06, 'disseminating': 1.6430492035729749e-06, 'ventilating': 1.6430492035729749e-06, 'precooked': 1.6430492035729749e-06, 'predigested': 1.6430492035729749e-06, 'Huge': 2.4645738053594624e-06, 'antibodies': 8.215246017864873e-06, 'ethanol': 1.6430492035729749e-06, 'fractionation': 3.2860984071459497e-06, 'electrophoresis': 4.929147610718925e-06, 'ultracentrifugation': 3.2860984071459497e-06, 'chromatography': 6.5721968142918994e-06, 'celluloses': 1.6430492035729749e-06, 'Modifications': 1.6430492035729749e-06, 'Abelson': 1.6430492035729749e-06, 'stepwise': 3.2860984071459497e-06, 'elution': 4.107623008932437e-06, 'fractionated': 3.2860984071459497e-06, 'sera': 1.6430492035729746e-05, 'ABO': 4.929147610718925e-06, 'Rh': 4.929147610718925e-06, 'diethylaminoethyl': 2.4645738053594624e-06, 'DEAE': 2.4645738053594624e-06, 'carboxymethyl': 1.6430492035729749e-06, 'Speer': 1.6430492035729749e-06, 'Fahey': 1.6430492035729749e-06, 'anti-A': 3.2860984071459497e-06, 'anti-B': 4.107623008932437e-06, 'agglutinins': 2.4645738053594624e-06, 'preisolated': 1.6430492035729749e-06, '**yg-globulin': 1.6430492035729749e-06, 'DEAE-cellulose': 8.215246017864873e-06, 'Sober': 3.2860984071459497e-06, 'serological': 1.6430492035729749e-06, 'Serum': 2.4645738053594624e-06, 'donors': 4.929147610718925e-06, 'anti-Rh': 1.6430492035729749e-06, 'sensitized': 2.4645738053594624e-06, 'antibody': 1.0679819823224336e-05, 'titer': 4.107623008932437e-06, '512': 2.4645738053594624e-06, 'titers': 4.107623008932437e-06, '256': 3.2860984071459497e-06, 'albumin': 9.036770619651361e-06, '2048': 1.6430492035729749e-06, '1024': 1.6430492035729749e-06, 'serum': 1.3965918230370285e-05, 'homozygous': 4.107623008932437e-06, 'Serological': 1.6430492035729749e-06, 'Anti-A': 1.6430492035729749e-06, 'agglutination': 4.107623008932437e-06, 'centrifuged': 6.5721968142918994e-06, 'min': 4.929147610718925e-06, 'macroscopically': 1.6430492035729749e-06, 'bovine': 2.4645738053594624e-06, 'hr': 6.5721968142918994e-06, 'Homozygous': 1.6430492035729749e-06, 'heterozygous': 2.4645738053594624e-06, 'conciseness': 1.6430492035729749e-06, 'incubated': 1.6430492035729749e-06, '37-degrees-C': 2.4645738053594624e-06, 'anti-human': 2.4645738053594624e-06, 'resuspended': 3.2860984071459497e-06, 'antisera': 2.4645738053594624e-06, 'immunoelectrophoresis': 1.6430492035729749e-06, 'glycerolized': 1.6430492035729749e-06, '-20-degrees-C': 1.6430492035729749e-06, 'deglycerolized': 1.6430492035729749e-06, 'centrifuging': 1.6430492035729749e-06, 'Chromatography': 2.4645738053594624e-06, 'volumetrically': 1.6430492035729749e-06, 'dialyzed': 4.107623008932437e-06, '8.6': 2.4645738053594624e-06, '0.005': 1.6430492035729749e-06, '0.039': 1.6430492035729749e-06, 'tris(hydroxymethyl)-aminometha': 1.6430492035729749e-06, 'Tris': 2.4645738053594624e-06, 'dialysis': 1.0679819823224336e-05, 'supernatant': 1.6430492035729749e-06, 'EEAE-cellulose': 1.6430492035729749e-06, 'equilibrated': 2.4645738053594624e-06, '0.78': 1.6430492035729749e-06, 'mEq': 1.6430492035729749e-06, 'N/g': 1.6430492035729749e-06, '230': 4.107623008932437e-06, 'isotonic': 4.107623008932437e-06, '6-degrees-C': 1.6430492035729749e-06, 'nine-chambered': 1.6430492035729749e-06, 'Varigrad': 1.6430492035729749e-06, 'cone-sphere': 2.4645738053594624e-06, '2-liter': 2.4645738053594624e-06, 'Erlenmeyer': 1.6430492035729749e-06, 'round-bottom': 1.6430492035729749e-06, '1700': 3.2860984071459497e-06, '0.50': 1.6430492035729749e-06, '4.1': 2.4645738053594624e-06, 'm**ym': 1.6430492035729749e-06, 'Beckman': 1.6430492035729749e-06, 'DU': 1.6430492035729749e-06, 'spectrophotometer': 1.6430492035729749e-06, 'pervaporation': 1.6430492035729749e-06, '5-degrees-C': 1.6430492035729749e-06, '2-degrees-C': 1.6430492035729749e-06, 'dilute': 1.6430492035729749e-06, 'Spinco': 4.107623008932437e-06, 'barbital': 1.6430492035729749e-06, '0.075': 1.6430492035729749e-06, 'Whatman': 1.6430492035729749e-06, '3MM': 1.6430492035729749e-06, 'milliamperes/cell': 1.6430492035729749e-06, 'bromphenol': 1.6430492035729749e-06, 'densitometry': 1.6430492035729749e-06, 'Analytrol': 1.6430492035729749e-06, 'chromatographic': 3.2860984071459497e-06, 'run/chamber': 1.6430492035729749e-06, '1-degree-C': 1.6430492035729749e-06, 'unstained': 2.4645738053594624e-06, 'transversely': 1.6430492035729749e-06, 'pooled': 1.6430492035729749e-06, 'eluted': 1.6430492035729749e-06, 'eluates': 1.6430492035729749e-06, 'Ultracentrifugation': 2.4645738053594624e-06, 'Fractions': 1.6430492035729749e-06, 'phosphate-buffered': 1.6430492035729749e-06, '7.2': 1.6430492035729749e-06, '0.154': 1.6430492035729749e-06, '59,780': 1.6430492035729749e-06, 'Pm': 1.6430492035729749e-06, '20-degrees-C': 1.6430492035729749e-06, 'ultracentrifuge': 3.2860984071459497e-06, '1.25%': 1.6430492035729749e-06, 'Sedimentation': 1.6430492035729749e-06, 'Schlieren': 1.6430492035729749e-06, 'preparative': 3.2860984071459497e-06, 'Successive': 1.6430492035729749e-06, '1-ml': 1.6430492035729749e-06, 'hypodermic': 1.6430492035729749e-06, 'syringe': 1.6430492035729749e-06, 'agglutinin': 5.750672212505412e-06, 'Region': 4.929147610718925e-06, '1a': 1.6430492035729749e-06, '2a': 1.6430492035729749e-06, 'agglutinating': 1.6430492035729749e-06, 'citrated': 1.6430492035729749e-06, 'AB': 2.4645738053594624e-06, 'Fraction': 3.2860984071459497e-06, '4-1': 1.6430492035729749e-06, 'eluate': 1.6430492035729749e-06, 'chromatogram': 1.6430492035729749e-06, 'honeybee': 2.4645738053594624e-06, 'bumblebees': 7.393721416078387e-06, 'hibernate': 2.4645738053594624e-06, 'torpor': 2.4645738053594624e-06, 'sods': 1.6430492035729749e-06, 'queens': 6.5721968142918994e-06, 'unmated': 1.6430492035729749e-06, 'perished': 1.6430492035729749e-06, '50-degrees': 1.6430492035729749e-06, 'currants': 1.6430492035729749e-06, 'Ribes': 2.4645738053594624e-06, 'sanguineum': 1.6430492035729749e-06, 'sloe': 2.4645738053594624e-06, 'pussy': 4.929147610718925e-06, 'willow': 7.393721416078387e-06, 'staminate': 2.4645738053594624e-06, 'catkins': 4.929147610718925e-06, 'blooms': 3.2860984071459497e-06, 'honeybees': 4.107623008932437e-06, 'catkin': 2.4645738053594624e-06, 'stamens': 1.6430492035729749e-06, 'black-tipped': 1.6430492035729749e-06, 'nectaries': 1.6430492035729749e-06, 'beebread': 6.5721968142918994e-06, 'hairier': 1.6430492035729749e-06, 'Bombus': 4.107623008932437e-06, 'Bumblebees': 2.4645738053594624e-06, 'Plath': 1.6430492035729749e-06, 'hideout': 1.6430492035729749e-06, 'woke': 1.232286902679731e-05, 'befits': 1.6430492035729749e-06, 'bumblebee': 2.4645738053594624e-06, 'choosy': 1.6430492035729749e-06, 'nesting': 2.4645738053594624e-06, 'mouse': 7.393721416078387e-06, 'woodpecker': 1.6430492035729749e-06, 'moss': 3.2860984071459497e-06, 'woolly': 3.2860984071459497e-06, 'pollen-and-nectar': 1.6430492035729749e-06, 'waxen': 1.6430492035729749e-06, 'incubating': 1.6430492035729749e-06, 'sip': 2.4645738053594624e-06, 'larvae': 5.750672212505412e-06, 'hatch': 4.929147610718925e-06, 'papery': 1.6430492035729749e-06, 'pupates': 1.6430492035729749e-06, 'broods': 3.2860984071459497e-06, 'drones': 2.4645738053594624e-06, 'unfertilized': 1.6430492035729749e-06, 'fertilized': 3.2860984071459497e-06, 'scavenging': 1.6430492035729749e-06, 'beetles': 1.6430492035729749e-06, 'moths': 2.4645738053594624e-06, 'idlers': 1.6430492035729749e-06, 'hardworking': 1.6430492035729749e-06, 'onslaughts': 2.4645738053594624e-06, 'Psithyrus': 4.929147610718925e-06, 'cuckoo-bumblebee': 1.6430492035729749e-06, 'deceptively': 1.6430492035729749e-06, 'victimize': 1.6430492035729749e-06, 'idler': 1.6430492035729749e-06, 'baskets': 2.4645738053594624e-06, 'parasite': 1.6430492035729749e-06, 'unobtrusively': 2.4645738053594624e-06, 'intruder': 1.6430492035729749e-06, 'andrenas': 4.107623008932437e-06, 'Andrena': 6.5721968142918994e-06, 'armata': 2.4645738053594624e-06, 'mounds': 1.6430492035729749e-06, 'duller': 2.4645738053594624e-06, 'digs': 1.6430492035729749e-06, 'pupated': 1.6430492035729749e-06, 'larval': 1.6430492035729749e-06, 'burrows': 2.4645738053594624e-06, 'nomias': 2.4645738053594624e-06, 'Nomia': 1.6430492035729749e-06, 'melanderi': 1.6430492035729749e-06, "Agriculture's": 1.6430492035729749e-06, 'Yearbook': 1.6430492035729749e-06, 'Bohart': 1.6430492035729749e-06, 'prepupal': 1.6430492035729749e-06, 'Yakima': 1.6430492035729749e-06, 'Prosser': 1.6430492035729749e-06, 'inhospitable': 1.6430492035729749e-06, 'fine-grained': 1.6430492035729749e-06, 'evaporation': 2.4645738053594624e-06, 'snakes': 1.97165904428757e-05, 'Klauber': 2.4645738053594624e-06, 'rattlesnakes': 4.929147610718925e-06, "Carpenter's": 2.4645738053594624e-06, 'garter': 2.4645738053594624e-06, 'Thamnophis': 1.6430492035729749e-06, 'gravid': 2.4645738053594624e-06, 'Kopstein': 1.6430492035729749e-06, 'maximal': 3.2860984071459497e-06, 'reticulate': 3.2860984071459497e-06, 'python': 1.232286902679731e-05, 'boa': 5.750672212505412e-06, 'constrictor': 5.750672212505412e-06, 'anaconda': 1.0679819823224336e-05, 'amethystine': 4.107623008932437e-06, 'quadrupling': 1.6430492035729749e-06, 'paucity': 1.6430492035729749e-06, '10-foot': 1.6430492035729749e-06, 'rattlers': 1.6430492035729749e-06, 'Tropidoclonion': 1.6430492035729749e-06, 'red-bellied': 1.6430492035729749e-06, 'Storeria': 1.6430492035729749e-06, 'cottonmouth': 1.6430492035729749e-06, 'Ancistrodon': 1.6430492035729749e-06, 'herpetologists': 2.4645738053594624e-06, 'rattlesnake': 3.2860984071459497e-06, 'Maximum': 1.6430492035729749e-06, 'Oversized': 1.6430492035729749e-06, 'noticeably': 2.4645738053594624e-06, 'pitfalls': 1.6430492035729749e-06, 'err': 1.6430492035729749e-06, 'leans': 1.6430492035729749e-06, 'hoop': 3.2860984071459497e-06, 'graveyards': 2.4645738053594624e-06, 'second-level': 1.6430492035729749e-06, '18-1/2': 1.6430492035729749e-06, 'Heuvelmans': 2.4645738053594624e-06, 'anacondas': 4.107623008932437e-06, 'freaks': 2.4645738053594624e-06, 'Discussions': 1.6430492035729749e-06, 'amplification': 2.4645738053594624e-06, "Oliver's": 3.2860984071459497e-06, 'Definite': 1.6430492035729749e-06, 'Brookfield': 2.4645738053594624e-06, 'Zoo': 3.2860984071459497e-06, '33-1/2': 1.6430492035729749e-06, 'Ditmars': 2.4645738053594624e-06, 'Mole': 1.6430492035729749e-06, 'Urich': 1.6430492035729749e-06, 'Orinoco': 1.6430492035729749e-06, 'estuaries': 1.6430492035729749e-06, 'ounces': 3.2860984071459497e-06, 'emaciated': 3.2860984071459497e-06, 'seventy-two': 1.6430492035729749e-06, '19-foot': 1.6430492035729749e-06, '3-foot': 1.6430492035729749e-06, '9.8': 2.4645738053594624e-06, 'subspecies': 3.2860984071459497e-06, "anaconda's": 2.4645738053594624e-06, 'Schweizer': 1.6430492035729749e-06, '19-1/2': 1.6430492035729749e-06, 'Quelch': 1.6430492035729749e-06, 'Afranio': 1.6430492035729749e-06, 'Amaral': 1.6430492035729749e-06, 'herpetologist': 1.6430492035729749e-06, 'Colombia': 1.6430492035729749e-06, 'Roberto': 1.6430492035729749e-06, 'Lamon': 1.6430492035729749e-06, 'petroleum': 1.6430492035729749e-06, 'geologist': 2.4645738053594624e-06, '37-1/2': 1.6430492035729749e-06, 'Boa': 1.6430492035729749e-06, 'constrictors': 1.6430492035729749e-06, 'collated': 1.6430492035729749e-06, 'Laying': 1.6430492035729749e-06, 'Hatching': 1.6430492035729749e-06, 'Alphonse': 1.6430492035729749e-06, "Hoge's": 1.6430492035729749e-06, 'Kauffeld': 1.6430492035729749e-06, 'snout': 1.6430492035729749e-06, 'bronchus': 4.107623008932437e-06, 'pulmonary': 2.300268885002165e-05, 'supportive': 6.5721968142918994e-06, 'septa': 5.750672212505412e-06, 'hilum': 4.929147610718925e-06, 'distal': 8.215246017864873e-06, 'bronchiole': 4.107623008932437e-06, 'duct': 1.6430492035729749e-06, 'pleura': 5.750672212505412e-06, 'bronchial': 2.464573805359462e-05, 'pleural': 5.750672212505412e-06, 'hilar': 4.107623008932437e-06, 'lymph': 2.4645738053594624e-06, 'nodes': 2.4645738053594624e-06, 'bronchioles': 8.215246017864873e-06, 'terminating': 1.6430492035729749e-06, 'artery-pulmonary': 4.929147610718925e-06, 'anastomoses': 5.750672212505412e-06, 'Lung': 1.6430492035729749e-06, 'incompletely': 2.4645738053594624e-06, 'lobules': 2.4645738053594624e-06, 'haphazardly': 1.6430492035729749e-06, 'interlobular': 7.393721416078387e-06, 'vascular': 3.2860984071459497e-06, 'airways': 4.107623008932437e-06, 'septation': 1.6430492035729749e-06, 'lobule': 1.6430492035729749e-06, 'Air-drifts': 1.6430492035729749e-06, 'Distally': 1.6430492035729749e-06, 'mammals': 3.2860984071459497e-06, 'vasa': 2.4645738053594624e-06, 'vasorum': 2.4645738053594624e-06, 'anastomotic': 1.6430492035729749e-06, 'net-like': 1.6430492035729749e-06, 'parenchyma': 4.107623008932437e-06, 'pathways': 3.2860984071459497e-06, 'arteriolar-pulmonary': 1.6430492035729749e-06, 'arteriolar': 3.2860984071459497e-06, 'anastomosis': 1.6430492035729749e-06, 'bronchiolar': 1.6430492035729749e-06, 'inter-species': 1.6430492035729749e-06, 'physiologic': 2.4645738053594624e-06, 'airflow': 1.6430492035729749e-06, 'morphologic': 1.6430492035729749e-06, 'segmental': 2.4645738053594624e-06, 'Lindskog': 1.6430492035729749e-06, "'31": 1.6430492035729749e-06, 'morphology': 2.4645738053594624e-06, 'monkeys': 1.6430492035729749e-06, 'bronchiolitis': 1.6430492035729749e-06, 'emphysema': 4.107623008932437e-06, 'lobular': 1.6430492035729749e-06, 'Anatomically': 1.6430492035729749e-06, 'Birnbaum': 1.6430492035729749e-06, "'54": 1.6430492035729749e-06, 'Cudkowicz': 1.6430492035729749e-06, "'50": 3.2860984071459497e-06, 'pathologic': 1.6430492035729749e-06, 'Loosli': 1.6430492035729749e-06, "'38": 1.6430492035729749e-06, 'intrapulmonary': 1.6430492035729749e-06, "'13": 2.4645738053594624e-06, "'25": 1.6430492035729749e-06, 'nutrient': 2.4645738053594624e-06, 'proximal': 2.4645738053594624e-06, 'tissues': 1.1501344425010824e-05, 'Theoretically': 1.6430492035729749e-06, 'Ghoreyeb': 2.4645738053594624e-06, 'Karsner': 2.4645738053594624e-06, 'Comroe': 1.6430492035729749e-06, "'58": 3.2860984071459497e-06, 'nutritive': 2.4645738053594624e-06, 'alveolus': 1.6430492035729749e-06, 'occlusive': 1.6430492035729749e-06, 'lesion': 2.4645738053594624e-06, 'degeneration': 1.6430492035729749e-06, 'Ruysch': 1.6430492035729749e-06, 'Nakamura': 3.2860984071459497e-06, 'Verloop': 2.4645738053594624e-06, "'48": 3.2860984071459497e-06, 'Marchand': 1.6430492035729749e-06, 'Gilroy': 1.6430492035729749e-06, 'Hayek': 1.6430492035729749e-06, "'53": 1.6430492035729749e-06, 'nonfunctional': 1.6430492035729749e-06, 'antagonist': 3.2860984071459497e-06, 'perfusion': 1.6430492035729749e-06, 'Brailsford': 1.6430492035729749e-06, 'Daly': 1.6430492035729749e-06, 'shunts': 4.929147610718925e-06, 'inoperable': 1.6430492035729749e-06, 'uninjectable': 1.6430492035729749e-06, "Verloop's": 1.6430492035729749e-06, 'Grindlay': 1.6430492035729749e-06, 'anatomic': 1.6430492035729749e-06, 'species-dependent': 1.6430492035729749e-06, 'inferred': 3.2860984071459497e-06, 'histology': 1.6430492035729749e-06, 'interspecies': 1.6430492035729749e-06, 'anatomically': 1.6430492035729749e-06, 'Summary': 6.5721968142918994e-06, 'subgross': 2.4645738053594624e-06, 'tabulation': 2.4645738053594624e-06, 'Lobularity': 1.6430492035729749e-06, 'imperfectly': 2.4645738053594624e-06, 'Arterial': 1.6430492035729749e-06, 'terminates': 1.6430492035729749e-06, 'peripherally': 2.4645738053594624e-06, 'Onset': 1.97165904428757e-05, 'Profile': 8.215246017864873e-06, 'Completion': 1.8073541239302723e-05, 'Maturity': 3.2860984071459497e-06, 'Chart': 4.929147610718925e-06, 'transverse': 4.107623008932437e-06, 'ossify': 1.6430492035729749e-06, 'Onsets': 4.929147610718925e-06, 'calcification': 1.6430492035729749e-06, 'modal': 3.2860984071459497e-06, 'Skeletal': 8.215246017864873e-06, 'denotes': 6.5721968142918994e-06, 'skeletal': 4.107623008932437e-06, 'Elbow': 3.2860984071459497e-06, 'Shoulder': 2.4645738053594624e-06, 'Knee': 2.4645738053594624e-06, 'Foot': 2.4645738053594624e-06, 'Wrist': 1.6430492035729749e-06, 'Completions': 4.107623008932437e-06, 'osseous': 2.4645738053594624e-06, 'Tables': 5.750672212505412e-06, 'arrows': 5.750672212505412e-06, 'arrow': 1.1501344425010824e-05, 'ossification': 5.750672212505412e-06, 'epiphysis': 4.929147610718925e-06, 'Span': 3.2860984071459497e-06, "center's": 1.6430492035729749e-06, 'prepubescent': 1.6430492035729749e-06, 'Length': 1.6430492035729749e-06, 'monograph': 1.6430492035729749e-06, 'epiphyseal-diaphyseal': 2.4645738053594624e-06, 'menarche': 3.2860984071459497e-06, 'pubescent': 3.2860984071459497e-06, 'arrayed': 2.4645738053594624e-06, '25.3': 1.6430492035729749e-06, '-.50': 1.6430492035729749e-06, '-.10': 1.6430492035729749e-06, 'counter-balanced': 1.6430492035729749e-06, 'menarches': 1.6430492035729749e-06, 'crosses': 4.107623008932437e-06, 'digitalis': 1.6430492035729749e-06, 'glycosides': 1.6430492035729749e-06, 'potassium': 4.929147610718925e-06, 'Wolff': 2.4645738053594624e-06, 'Organification': 1.6430492035729749e-06, 'iodine': 1.5608967433943262e-05, 'organification': 4.107623008932437e-06, 'mono-iodotyrosine': 3.2860984071459497e-06, 'cell-free': 4.107623008932437e-06, 'homogenate': 2.4645738053594624e-06, 'iodinated': 5.750672212505412e-06, 'Fawcett': 1.6430492035729749e-06, 'Kirkwood': 2.4645738053594624e-06, 'Taurog': 2.4645738053594624e-06, 'Chaikoff': 2.4645738053594624e-06, 'Tong': 1.6430492035729749e-06, 'Serif': 1.6430492035729749e-06, 'Groot': 1.6430492035729749e-06, 'iodoprotein': 1.6430492035729749e-06, 'thyroglobulin': 1.3965918230370285e-05, 'vitro': 4.107623008932437e-06, 'iodoamino': 1.6430492035729749e-06, 'di-iodotyrosine': 4.929147610718925e-06, 'tyrosine': 3.2860984071459497e-06, 'peroxide': 2.4645738053594624e-06, 'vivo': 4.107623008932437e-06, 'iodinating': 3.2860984071459497e-06, 'thyronine': 1.6430492035729749e-06, 'Iodination': 1.6430492035729749e-06, 'mono-': 2.4645738053594624e-06, 'tri-iodothyronine': 4.107623008932437e-06, 'thyroxine': 7.393721416078387e-06, 'non-enzymatic': 1.6430492035729749e-06, 'analogues': 1.6430492035729749e-06, 'Pitt-Rivers': 1.6430492035729749e-06, 'enzymatic': 3.2860984071459497e-06, 'iodocompounds': 1.6430492035729749e-06, 'seq.': 1.6430492035729749e-06, 'Thyroglobulin': 1.6430492035729749e-06, 'iodination': 1.6430492035729749e-06, 'transplantable': 1.6430492035729749e-06, 'tumours': 1.6430492035729749e-06, 'congenital': 1.6430492035729749e-06, 'Secretion': 1.6430492035729749e-06, 'amino': 1.6430492035729749e-06, 'cf.': 6.5721968142918994e-06, 'secretion': 3.2860984071459497e-06, 'proteases': 4.107623008932437e-06, 'peptidases': 2.4645738053594624e-06, '3.7': 1.6430492035729749e-06, 'McQuillan': 1.6430492035729749e-06, 'Trikojus': 1.6430492035729749e-06, 'Alpers': 2.4645738053594624e-06, 'TSH-treated': 1.6430492035729749e-06, 'protease': 1.6430492035729749e-06, 'preferentially': 2.4645738053594624e-06, 'macromolecular': 2.4645738053594624e-06, 'Petermann': 1.6430492035729749e-06, 'proteolytic': 1.6430492035729749e-06, 'de-iodinating': 2.4645738053594624e-06, 'microsomal': 1.6430492035729749e-06, 'de-iodinase': 1.6430492035729749e-06, 'triphosphopyridine': 1.6430492035729749e-06, 'Stanbury': 2.4645738053594624e-06, 'de-iodinate': 1.6430492035729749e-06, 'iodotyrosines': 1.6430492035729749e-06, 'oxidised': 2.4645738053594624e-06, 're-incorporated': 1.6430492035729749e-06, 'proteolysis': 2.4645738053594624e-06, 'de-iodination': 1.6430492035729749e-06, 'binds': 2.4645738053594624e-06, 'thyroxine-binding': 1.6430492035729749e-06, 'Ingbar': 1.6430492035729749e-06, 'Freinkel': 1.6430492035729749e-06, 'Antithyroid': 2.4645738053594624e-06, 'univalent': 1.6430492035729749e-06, 'anion': 1.6430492035729749e-06, 'thiocyanate-perchlorate-fluoro': 1.6430492035729749e-06, 'antithyroid': 4.929147610718925e-06, 'thiouracil': 3.2860984071459497e-06, 'inhibit': 7.393721416078387e-06, 'iodinate': 1.6430492035729749e-06, 'Astwood': 1.6430492035729749e-06, 'goitre': 3.2860984071459497e-06, 'owing': 3.2860984071459497e-06, 'hypothyroidism': 1.6430492035729749e-06, 'TSH': 1.4787442832156774e-05, 'iodide-concentrating': 1.6430492035729749e-06, 'counteracted': 2.4645738053594624e-06, 'antagonised': 1.6430492035729749e-06, 'L-5-vinyl-2-thio-oxazolidone': 1.6430492035729749e-06, 'rutabaga': 1.6430492035729749e-06, 'Brassica': 1.6430492035729749e-06, 'goitrogens': 2.4645738053594624e-06, 'Wishart': 1.6430492035729749e-06, 'goitrogen': 2.4645738053594624e-06, 'secreted': 1.6430492035729749e-06, 'Dietary': 1.6430492035729749e-06, 'hyperplasia': 1.6430492035729749e-06, 'hypertrophy': 2.4645738053594624e-06, 'Brownell': 1.6430492035729749e-06, 'Riggs': 1.6430492035729749e-06, 'Perinetti': 1.6430492035729749e-06, 'Itoiz': 1.6430492035729749e-06, 'Castillo': 1.6430492035729749e-06, '**ymg': 1.6430492035729749e-06, 'blood-flow': 1.6430492035729749e-06, 're-use': 1.6430492035729749e-06, 'de-iodinated': 1.6430492035729749e-06, 'iodothyronines': 1.6430492035729749e-06, 'thyroid-stimulating': 4.107623008932437e-06, 'thyrotrophin': 1.6430492035729749e-06, 'thyrotrophic': 1.6430492035729749e-06, 'bio-assay': 2.4645738053594624e-06, 'follicular': 1.6430492035729749e-06, 'thyroidal': 1.6430492035729749e-06, 'uptake': 4.929147610718925e-06, 'assaying': 2.4645738053594624e-06, 'tsh': 1.6430492035729749e-06, 'Niepce': 1.6430492035729749e-06, 're-activate': 1.6430492035729749e-06, 'atrophied': 1.6430492035729749e-06, 'thyroids': 1.6430492035729749e-06, 'hypophysectomised': 1.6430492035729749e-06, 'tadpoles': 1.6430492035729749e-06, 'Loeser': 1.6430492035729749e-06, 'trichloroacetic': 1.6430492035729749e-06, 'salt-fractionation': 1.6430492035729749e-06, 'solvents': 3.2860984071459497e-06, 'acetone': 4.107623008932437e-06, 'Sonenberg': 1.6430492035729749e-06, 'Condliffe': 1.6430492035729749e-06, 'Carsten': 1.6430492035729749e-06, 'Wynston': 1.6430492035729749e-06, 'synthesised': 1.6430492035729749e-06, 'abnormally': 1.6430492035729749e-06, 'long-acting': 1.6430492035729749e-06, 'thyrotoxic': 1.6430492035729749e-06, 'alternatively': 3.2860984071459497e-06, 'Pharmacopoeia': 1.6430492035729749e-06, 'redefinition': 1.6430492035729749e-06, 'USP': 3.2860984071459497e-06, 're-emphasise': 1.6430492035729749e-06, 're-introduction': 1.6430492035729749e-06, 'u.': 1.6430492035729749e-06, 'Mussett': 1.6430492035729749e-06, 'mg': 7.393721416078387e-06, 'equipotent': 1.6430492035729749e-06, 'steroid': 1.6430492035729749e-06, 'corticosteroids': 1.6430492035729749e-06, 'biopsies': 1.6430492035729749e-06, 'steroid-induced': 1.6430492035729749e-06, 'necropsy': 2.4645738053594624e-06, 'disabling': 3.2860984071459497e-06, 'steroids': 2.4645738053594624e-06, 'refractory': 1.6430492035729749e-06, 'anemia': 4.929147610718925e-06, '65-year-old': 1.6430492035729749e-06, 'debility': 2.4645738053594624e-06, 'Splenomegaly': 1.6430492035729749e-06, 'sternal': 1.6430492035729749e-06, 'marrow': 4.929147610718925e-06, 'biopsy': 2.4645738053594624e-06, 'foci': 1.6430492035729749e-06, 'fibrosis': 5.750672212505412e-06, 'myelofibrosis': 1.6430492035729749e-06, 'prednisone': 2.4645738053594624e-06, 'mg.': 9.85829522143785e-06, 'tapering': 2.4645738053594624e-06, 'myocardial': 3.2860984071459497e-06, 'infarction': 1.6430492035729749e-06, 'edema': 2.4645738053594624e-06, 'cardiomegaly': 1.6430492035729749e-06, 'arteriosclerosis': 1.6430492035729749e-06, 'obliterans': 1.6430492035729749e-06, 'cholelithiasis': 1.6430492035729749e-06, 'hemoglobin': 4.107623008932437e-06, '11.6': 1.6430492035729749e-06, 'gm.': 9.036770619651361e-06, 'Therapy': 1.6430492035729749e-06, 'digitalization': 1.6430492035729749e-06, 'anticoagulation': 1.6430492035729749e-06, 'chlorothiazide': 1.6430492035729749e-06, 'congestive': 2.4645738053594624e-06, 'triamcinolone': 3.2860984071459497e-06, '10.6': 1.6430492035729749e-06, 'hemolytic': 1.6430492035729749e-06, '13.8': 1.6430492035729749e-06, 'caving': 1.6430492035729749e-06, 'pelvic': 3.2860984071459497e-06, 'musculature': 1.6430492035729749e-06, 'Prednisone': 1.6430492035729749e-06, '3.8': 1.6430492035729749e-06, 'mEq.': 1.6430492035729749e-06, 'liter': 1.6430492035729749e-06, '13.9': 1.6430492035729749e-06, 'quadriceps': 1.6430492035729749e-06, 'Triamcinolone': 1.6430492035729749e-06, 'Chlorothiazide': 1.6430492035729749e-06, '2-week': 1.6430492035729749e-06, 'neuromuscular': 1.6430492035729749e-06, 'atrophy': 4.107623008932437e-06, 'girdle': 2.4645738053594624e-06, 'hypoactive': 1.6430492035729749e-06, 'deep-tendon': 1.6430492035729749e-06, 'fasciculations': 1.6430492035729749e-06, 'Electromyography': 1.6430492035729749e-06, 'neuron': 1.6430492035729749e-06, 'Thyroid': 1.6430492035729749e-06, 'protein-bound': 1.6430492035729749e-06, '6.6': 1.6430492035729749e-06, '46%': 1.6430492035729749e-06, 'Schilling': 1.6430492035729749e-06, 'gastrocnemius': 4.107623008932437e-06, 'sarcolemmal': 1.6430492035729749e-06, 'shrunken': 1.6430492035729749e-06, 'glutamic': 1.6430492035729749e-06, 'oxaloacetic': 1.6430492035729749e-06, 'transaminase': 1.6430492035729749e-06, 'ml.': 1.6430492035729749e-06, 'min.': 1.6430492035729749e-06, 'polymyositis': 1.6430492035729749e-06, 'corticotropin': 1.6430492035729749e-06, 'ACTH': 1.6430492035729749e-06, 'Gel': 1.6430492035729749e-06, 'intramuscularly': 1.6430492035729749e-06, 'dexamethasone': 2.4645738053594624e-06, 'propylthiouracil': 1.6430492035729749e-06, 'intensify': 4.107623008932437e-06, 'anorexia': 1.6430492035729749e-06, 'hypoadrenocorticism': 1.6430492035729749e-06, 'Severe': 3.2860984071459497e-06, 'osteoporosis': 1.6430492035729749e-06, 'D8': 1.6430492035729749e-06, 'norethandrolone': 1.6430492035729749e-06, 'urinary': 2.4645738053594624e-06, 'thrombosed': 1.6430492035729749e-06, 'hemorrhoids': 1.6430492035729749e-06, 'vertebral': 3.2860984071459497e-06, 'demineralization': 1.6430492035729749e-06, 'distension': 1.6430492035729749e-06, 'Findings': 1.6430492035729749e-06, 'well-developed': 2.4645738053594624e-06, 'pterygia': 1.6430492035729749e-06, 'arcus': 1.6430492035729749e-06, 'senilis': 1.6430492035729749e-06, 'edentulous': 1.6430492035729749e-06, '510': 1.6430492035729749e-06, 'outflow': 2.4645738053594624e-06, 'ventricles': 1.6430492035729749e-06, 'sclerotic': 1.6430492035729749e-06, 'diffusely': 1.6430492035729749e-06, 'atheromatous': 1.6430492035729749e-06, 'myocardium': 1.6430492035729749e-06, 'mitral': 1.6430492035729749e-06, 'Microscopically': 5.750672212505412e-06, 'necrosis': 3.2860984071459497e-06, 'infiltrated': 2.4645738053594624e-06, 'neutrophils': 4.929147610718925e-06, 'hypertrophied': 1.6430492035729749e-06, 'basophilic': 2.4645738053594624e-06, 'fusiform': 1.6430492035729749e-06, 'clefts': 1.6430492035729749e-06, 'mononuclear': 1.6430492035729749e-06, 'intimal': 1.6430492035729749e-06, 'confluent': 1.6430492035729749e-06, 'yellow-brown': 1.6430492035729749e-06, 'friable': 2.4645738053594624e-06, 'orifices': 2.4645738053594624e-06, 'visceral': 4.107623008932437e-06, 'renal': 1.6430492035729749e-06, 'celiac': 1.6430492035729749e-06, 'calcified': 1.6430492035729749e-06, 'iliac': 1.6430492035729749e-06, '950': 1.6430492035729749e-06, 'emphysematous': 1.6430492035729749e-06, 'blebs': 1.6430492035729749e-06, 'hyperemic': 2.4645738053594624e-06, 'fibrocalcific': 1.6430492035729749e-06, 'nodules': 1.6430492035729749e-06, 'Macrophages': 1.6430492035729749e-06, '410': 1.6430492035729749e-06, 'mottled': 3.2860984071459497e-06, 'endothelial': 1.6430492035729749e-06, 'sinusoids': 2.4645738053594624e-06, 'hemosiderin': 2.4645738053594624e-06, 'nucleated': 1.6430492035729749e-06, 'granulocytic': 1.6430492035729749e-06, 'arteriolosclerosis': 2.4645738053594624e-06, '2,090': 1.6430492035729749e-06, 'hyperemia': 2.4645738053594624e-06, 'cord': 5.750672212505412e-06, 'vacuolated': 1.6430492035729749e-06, 'cytoplasm': 4.107623008932437e-06, 'gallbladder': 1.6430492035729749e-06, 'green-brown': 2.4645738053594624e-06, 'dark-green': 1.6430492035729749e-06, 'calculi': 1.6430492035729749e-06, 'mucosa': 4.929147610718925e-06, 'atrophic': 3.2860984071459497e-06, 'intestines': 1.6430492035729749e-06, 'jejunum': 3.2860984071459497e-06, 'intestine': 1.6430492035729749e-06, 'colon': 2.4645738053594624e-06, 'foul-smelling': 2.4645738053594624e-06, 'sanguineous': 1.6430492035729749e-06, 'mesenteric': 1.6430492035729749e-06, 'cytolysis': 1.6430492035729749e-06, 'Gram-negative': 1.6430492035729749e-06, 'submucosa': 2.4645738053594624e-06, 'focally': 1.6430492035729749e-06, 'ileum': 1.6430492035729749e-06, 'edematous': 1.6430492035729749e-06, 'fibrin': 2.4645738053594624e-06, 'thrombi': 1.6430492035729749e-06, 'interstitial': 2.4645738053594624e-06, 'ulcerations': 1.6430492035729749e-06, 'Cultures': 1.6430492035729749e-06, 'Monilia': 1.6430492035729749e-06, 'albicans': 1.6430492035729749e-06, 'Pseudomonas': 1.6430492035729749e-06, 'pyocanea': 1.6430492035729749e-06, 'Aerobacter': 1.6430492035729749e-06, 'aerogenes': 1.6430492035729749e-06, 'Streptococcus': 1.6430492035729749e-06, 'anhemolyticus': 1.6430492035729749e-06, 'coarsely': 1.6430492035729749e-06, 'granular': 3.2860984071459497e-06, 'fluid-filled': 1.6430492035729749e-06, 'cortical': 3.2860984071459497e-06, 'glomerular': 2.4645738053594624e-06, 'lymphocytes': 1.6430492035729749e-06, 'tubules': 1.6430492035729749e-06, 'hyaline': 1.6430492035729749e-06, 'admixed': 1.6430492035729749e-06, 'hyalinization': 1.6430492035729749e-06, 'afferent': 1.6430492035729749e-06, 'arterioles': 2.4645738053594624e-06, 'papillary': 1.6430492035729749e-06, 'adenomas': 1.6430492035729749e-06, 'sternum': 1.6430492035729749e-06, 'hypercellularity': 1.6430492035729749e-06, 'alternating': 1.6430492035729749e-06, 'hypocellularity': 1.6430492035729749e-06, 'erythroid': 1.6430492035729749e-06, 'myeloid': 1.6430492035729749e-06, 'megakaryocytic': 1.6430492035729749e-06, 'extremities': 1.6430492035729749e-06, 'Microscopic': 3.2860984071459497e-06, 'pectoralis': 2.4645738053594624e-06, 'transversus': 2.4645738053594624e-06, 'abdominis': 1.6430492035729749e-06, 'biceps': 3.2860984071459497e-06, 'brachii': 1.6430492035729749e-06, 'vacuolization': 2.4645738053594624e-06, 'necrotic': 1.6430492035729749e-06, 'eosinophilic': 1.6430492035729749e-06, 'pyknotic': 2.4645738053594624e-06, 'cross-striations': 2.4645738053594624e-06, 'myofibrils': 1.6430492035729749e-06, 'protoplasm': 1.6430492035729749e-06, 'flocculated': 1.6430492035729749e-06, 'phagocytes': 1.6430492035729749e-06, 'Inflammatory': 1.6430492035729749e-06, 'nucleoli': 2.4645738053594624e-06, 'myofibrillae': 2.4645738053594624e-06, 'chainlike': 1.6430492035729749e-06, 'clumps': 2.4645738053594624e-06, 'closely-packed': 1.6430492035729749e-06, 'vesicular': 1.6430492035729749e-06, 'regenerating': 1.6430492035729749e-06, 'Trichrome': 1.6430492035729749e-06, 'Purification': 1.6430492035729749e-06, 'conjugates': 1.232286902679731e-05, 'staining': 3.0396410266100035e-05, 'fluorescein-labeled': 1.6430492035729749e-06, 'Dowex-2-chloride': 5.750672212505412e-06, 'Coons': 3.2860984071459497e-06, 'clover': 1.3965918230370285e-05, 'gall': 6.5721968142918994e-06, 'Agrobacterium': 1.6430492035729749e-06, 'tumefaciens': 1.6430492035729749e-06, 'Townsend': 1.6430492035729749e-06, '80%': 2.4645738053594624e-06, 'precipitate': 1.6430492035729749e-06, 'ammonium': 1.6430492035729749e-06, 'lyophilized': 1.6430492035729749e-06, 'conjugate': 9.036770619651361e-06, 'ethyl': 4.107623008932437e-06, 'Dineen': 1.6430492035729749e-06, 'Ade': 1.6430492035729749e-06, 'PBS': 8.215246017864873e-06, 'Root': 2.4645738053594624e-06, 'WTV': 1.1501344425010824e-05, 'quick-frozen': 1.6430492035729749e-06, '**ym': 1.6430492035729749e-06, 'cryostat': 1.6430492035729749e-06, '-16-degrees': 1.6430492035729749e-06, '-20-degrees': 1.6430492035729749e-06, 'smeared': 2.4645738053594624e-06, "Haupts'": 1.6430492035729749e-06, 'Johansen': 1.6430492035729749e-06, 'Schramm': 2.4645738053594624e-06, 'Rottger': 2.4645738053594624e-06, 'Staining': 1.6430492035729749e-06, '37-degrees': 2.4645738053594624e-06, '24-degrees': 1.6430492035729749e-06, 'blotting': 2.4645738053594624e-06, 'layered': 1.6430492035729749e-06, 'buffered': 4.107623008932437e-06, 'conjugated': 4.929147610718925e-06, 'undiluted': 1.6430492035729749e-06, 'antiserum': 4.107623008932437e-06, 'yellow-dwarf': 3.2860984071459497e-06, 'Wolcyrz': 1.6430492035729749e-06, 'Fluorescence': 1.6430492035729749e-06, 'Zeiss': 2.4645738053594624e-06, 'fluorescence': 9.85829522143785e-06, 'Osram': 1.6430492035729749e-06, 'HBO': 1.6430492035729749e-06, 'half-standard': 1.6430492035729749e-06, 'Corning': 1.6430492035729749e-06, 'eyepiece': 1.6430492035729749e-06, 'Wratten': 1.6430492035729749e-06, 'residual': 1.6430492035729749e-06, 'Schott': 1.6430492035729749e-06, 'nonspecific': 1.5608967433943262e-05, 'pseudophloem': 5.750672212505412e-06, 'dilution': 6.5721968142918994e-06, 'NS': 5.750672212505412e-06, 'Unstained': 1.6430492035729749e-06, 'antigen': 1.0679819823224336e-05, 'absorptions': 2.4645738053594624e-06, '0.85%': 2.4645738053594624e-06, 'Rinsing': 1.6430492035729749e-06, 'layering': 2.4645738053594624e-06, 'milliliter': 2.4645738053594624e-06, 'DEAE-cellulose-treated': 1.6430492035729749e-06, 'distinguishable': 4.107623008932437e-06, 'sweet-clover': 1.6430492035729749e-06, 'FITC': 3.2860984071459497e-06, 'globulin': 4.107623008932437e-06, 'conjugating': 1.6430492035729749e-06, 'Nonspecific': 1.6430492035729749e-06, 'precipitin': 1.6430492035729749e-06, 'Whitcomb': 1.6430492035729749e-06, 'autofluorescence': 3.2860984071459497e-06, 'bluish': 2.4645738053594624e-06, 'xylem': 4.107623008932437e-06, 'localization': 2.4645738053594624e-06, 'thick-walled': 2.4645738053594624e-06, 'cortex': 6.5721968142918994e-06, 'pith': 1.6430492035729749e-06, 'Littau': 1.6430492035729749e-06, 'nonspecifically': 3.2860984071459497e-06, 'fluorescein': 1.6430492035729749e-06, 'isocyanate-labeled': 1.6430492035729749e-06, 'Wound-tumor': 1.6430492035729749e-06, 'leafhopper': 1.6430492035729749e-06, 'transmissible': 1.6430492035729749e-06, 'Brakke': 1.6430492035729749e-06, 'phloem': 1.6430492035729749e-06, 'infect': 1.6430492035729749e-06, 'vertebrates': 1.6430492035729749e-06, 'nociceptive': 2.4645738053594624e-06, 'cortically': 1.6430492035729749e-06, 'extinguished': 1.6430492035729749e-06, 'discharges': 8.215246017864873e-06, 'paleo-': 1.6430492035729749e-06, 'neocortex': 4.929147610718925e-06, 'neocortical-hypothalamic': 2.4645738053594624e-06, 'primates': 1.6430492035729749e-06, "Mirsky's": 1.6430492035729749e-06, 'MacLean': 1.6430492035729749e-06, 'limbic': 1.6430492035729749e-06, 'Hypothalamic': 1.6430492035729749e-06, 'neo-': 1.6430492035729749e-06, 'paleocortical': 1.6430492035729749e-06, 'cortico-hypothalamic': 2.4645738053594624e-06, 'hypothalamic': 1.8073541239302723e-05, 'Facilitatory': 1.6430492035729749e-06, 'cortico-fugal': 2.4645738053594624e-06, 'summate': 2.4645738053594624e-06, 'spikes': 2.4645738053594624e-06, 'convulsive': 3.2860984071459497e-06, 'excitability': 4.107623008932437e-06, 'barbiturate': 1.6430492035729749e-06, 'feedback': 3.2860984071459497e-06, 'hypothalamic-cortical': 4.107623008932437e-06, 'electroshock': 2.4645738053594624e-06, 'wakefulness': 3.2860984071459497e-06, 'EEG': 2.4645738053594624e-06, 'asynchrony': 2.4645738053594624e-06, 'parasympathetic': 7.393721416078387e-06, 'autonomic': 9.85829522143785e-06, 'somatic': 2.4645738053594624e-06, 'reflexly': 2.4645738053594624e-06, 'baroreceptor': 1.6430492035729749e-06, 'analeptic': 2.4645738053594624e-06, 'psychoactive': 2.4645738053594624e-06, 'reserpine': 1.6430492035729749e-06, 'chlorpromazine': 1.6430492035729749e-06, 'depressions': 3.2860984071459497e-06, 'excitatory': 4.107623008932437e-06, 'maniclike': 1.6430492035729749e-06, 'synchrony': 2.4645738053594624e-06, 'therapies': 1.6430492035729749e-06, 'hypothalamically': 1.6430492035729749e-06, 'hypophyseal': 1.6430492035729749e-06, 'secretions': 1.6430492035729749e-06, 'hypo-': 1.6430492035729749e-06, 'Mecholyl': 4.107623008932437e-06, 'remissions': 1.6430492035729749e-06, 'impairment': 1.6430492035729749e-06, 'neuropsychiatric': 2.4645738053594624e-06, 'noradrenalin': 1.6430492035729749e-06, 'correlating': 2.4645738053594624e-06, 'sleep-wakefulness': 1.6430492035729749e-06, 'cardiovascular': 1.6430492035729749e-06, 'nausea': 3.2860984071459497e-06, 'clinically': 1.6430492035729749e-06, 'elucidated': 1.6430492035729749e-06, 'tuning': 3.2860984071459497e-06, 'parsympathetic': 1.6430492035729749e-06, 'elicits': 1.6430492035729749e-06, 'comas': 1.6430492035729749e-06, 'electroshocks': 1.6430492035729749e-06, 'metrazol': 1.6430492035729749e-06, 'inhibitory': 2.4645738053594624e-06, 'desynchronizing': 1.6430492035729749e-06, 'disjointed': 1.6430492035729749e-06, 'pharmacological': 2.4645738053594624e-06, 'psychosomatic': 1.6430492035729749e-06, 'abreaction': 1.6430492035729749e-06, 'neuroses': 4.107623008932437e-06, "Wolpe's": 1.6430492035729749e-06, 'convincingly': 2.4645738053594624e-06, 'neuronal': 1.6430492035729749e-06, 'underlie': 2.4645738053594624e-06, 'Pavlov': 1.6430492035729749e-06, 'reversibility': 1.6430492035729749e-06, 'salivary': 1.6430492035729749e-06, 'Wolpe': 1.6430492035729749e-06, 'feeding-pain': 2.4645738053594624e-06, 'Appropriate': 1.6430492035729749e-06, 'assertiveness': 1.6430492035729749e-06, 'tropho-': 1.6430492035729749e-06, 'ergotropic': 1.6430492035729749e-06, 'autonomic-somatic': 2.4645738053594624e-06, 'excretion': 1.6430492035729749e-06, 'catecholamines': 1.6430492035729749e-06, 'incompatibility': 1.6430492035729749e-06, 'Concluding': 1.6430492035729749e-06, 'psychopharmacological': 1.6430492035729749e-06, 'disturbances': 3.2860984071459497e-06, 'psychotic': 1.6430492035729749e-06, 'imbalance': 1.6430492035729749e-06, '6.4': 2.4645738053594624e-06, 'theorem': 9.036770619651361e-06, 'finite-dimensional': 4.107623008932437e-06, 'decomposing': 2.4645738053594624e-06, 'vectors': 6.5721968142918994e-06, 'polynomial': 2.3824213451808133e-05, 'scalar': 2.4645738053594624e-06, 'monic': 3.2860984071459497e-06, 'polynomials': 9.036770619651361e-06, 'algebraically': 3.2860984071459497e-06, 'diagonalizable': 1.232286902679731e-05, 'subspace': 6.5721968142918994e-06, 'spanned': 2.4645738053594624e-06, 'decomposes': 2.4645738053594624e-06, 'i': 3.2860984071459497e-06, 'primes': 2.4645738053594624e-06, 'Theorem': 7.393721416078387e-06, 'vector': 1.6430492035729746e-05, 'irreducible': 1.6430492035729749e-06, 'integers': 1.6430492035729749e-06, 'invariant': 1.1501344425010824e-05, 'direct-sum': 2.4645738053594624e-06, 'divisible': 4.107623008932437e-06, 'divides': 5.750672212505412e-06, '**ya': 4.929147610718925e-06, 'subspaces': 1.6430492035729749e-06, 'Corollary': 2.4645738053594624e-06, 'commutes': 2.4645738053594624e-06, 'notation': 3.2860984071459497e-06, 'first-degree': 1.6430492035729749e-06, 'nilpotent': 1.0679819823224336e-05, 'integer': 4.107623008932437e-06, 'b': 3.2860984071459497e-06, 'commute': 9.036770619651361e-06, "D'": 4.929147610718925e-06, "N'": 5.750672212505412e-06, 'n-dimensional': 1.6430492035729749e-06, 'non-algebraically': 1.6430492035729749e-06, 'algebra': 2.4645738053594624e-06, 'differentiable': 3.2860984071459497e-06, 'complex-valued': 1.6430492035729749e-06, 'satisfies': 3.2860984071459497e-06, 'expressible': 1.6430492035729749e-06, 'exponential': 1.6430492035729749e-06, 'zeros': 1.6430492035729749e-06, '7-1': 5.750672212505412e-06, 'binomial': 2.875336106252706e-05, 'repetitions': 3.2860984071459497e-06, 'Marksmanship': 1.6430492035729749e-06, 'marksman': 6.5721968142918994e-06, "bull's-eyes": 5.750672212505412e-06, 'Inheritance': 1.6430492035729749e-06, 'litters': 3.2860984071459497e-06, 'wavy': 1.6430492035729749e-06, 'Aces': 1.6430492035729749e-06, 'aces': 3.2860984071459497e-06, 'non-success': 1.6430492035729749e-06, 'straight-haired': 2.4645738053594624e-06, 'solves': 2.4645738053594624e-06, 'super-experiment': 1.6430492035729749e-06, 'five-round': 1.6430492035729749e-06, 'Mathematically': 1.6430492035729749e-06, 'Exactly': 2.4645738053594624e-06, 'nondriver': 1.6430492035729749e-06, 'Experiment': 3.2860984071459497e-06, 'Toss': 1.6430492035729749e-06, 'Binomial': 2.4645738053594624e-06, 'not-A': 1.6430492035729749e-06, "marksman's": 1.6430492035729749e-06, 'not-ace': 2.4645738053594624e-06, 'two-class': 1.6430492035729749e-06, 'wavy-haired': 1.6430492035729749e-06, 'hairless': 1.6430492035729749e-06, 'dazzles': 1.6430492035729749e-06, 'Strictly': 1.6430492035729749e-06, 'three-dice': 1.6430492035729749e-06, 'Experimentally': 1.6430492035729749e-06, 'Voting': 2.4645738053594624e-06, '0.6': 2.4645738053594624e-06, '0.36': 1.6430492035729749e-06, '0.16': 2.4645738053594624e-06, '0.52': 1.6430492035729749e-06, '0.70': 1.6430492035729749e-06, 'n-trial': 1.6430492035729749e-06, 'baseline': 1.6430492035729749e-06, 'Bernoulli': 2.4645738053594624e-06, 'real-analytic': 1.6430492035729749e-06, 'inscribed': 5.750672212505412e-06, 'Kakutani': 1.6430492035729749e-06, 'circumscribing': 2.4645738053594624e-06, 'cube': 1.6430492035729749e-06, 'convex': 1.6430492035729749e-06, 'Yamabe': 1.6430492035729749e-06, 'Yujobo': 1.6430492035729749e-06, 'Cairns': 1.6430492035729749e-06, 'cubes': 4.107623008932437e-06, 'convexity': 1.6430492035729749e-06, 'endpoints': 1.6430492035729749e-06, 'vertex': 1.6430492035729746e-05, 'diagonal': 4.107623008932437e-06, 't': 4.929147610718925e-06, '90-degrees': 3.2860984071459497e-06, 'intersections': 1.0679819823224336e-05, 'f{t}': 8.215246017864873e-06, 'multi-valued': 2.4645738053594624e-06, 'C-plane': 7.393721416078387e-06, 'abscissa': 1.6430492035729749e-06, 'tangent': 2.218116424823516e-05, 'lemmas': 1.6430492035729749e-06, 'Lemma': 6.5721968142918994e-06, 'f-plane': 5.750672212505412e-06, 'single-valued': 5.750672212505412e-06, 'parametric': 2.4645738053594624e-06, 'Cartesian': 1.6430492035729749e-06, 'monotone': 3.2860984071459497e-06, 'extrema': 1.6430492035729749e-06, 'double-valued': 2.4645738053594624e-06, 'analyticity': 1.6430492035729749e-06, 'two-valued': 1.6430492035729749e-06, 'no-valued': 1.6430492035729749e-06, 'sub-interval': 3.2860984071459497e-06, '{0,T}': 1.6430492035729749e-06, 'PQ': 1.6430492035729749e-06, 's-values': 1.6430492035729749e-06, 'g{t}': 3.2860984071459497e-06, 'b{t}': 2.4645738053594624e-06, 'Af-values': 1.6430492035729749e-06, 'ordinates': 1.6430492035729749e-06, 'b-plane': 1.6430492035729749e-06, 'oblique': 1.6430492035729749e-06, 'g{t}-axis': 1.6430492035729749e-06, 'involutions': 3.2860984071459497e-06, 'involutorial': 3.2860984071459497e-06, 'nonsingular': 3.2860984071459497e-06, 'quadric': 6.5721968142918994e-06, 'involution': 8.215246017864873e-06, 'reguli': 1.6430492035729749e-06, '**zg': 2.7110311858954083e-05, 'regulus': 8.215246017864873e-06, 'secants': 1.3965918230370285e-05, 'l': 4.929147610718925e-06, "l'": 2.4645738053594624e-06, 'intercepts': 1.6430492035729749e-06, 'totality': 2.4645738053594624e-06, 'congruence': 9.85829522143785e-06, 'quadratic': 2.4645738053594624e-06, 'tangents': 5.750672212505412e-06, 'tangency': 3.2860984071459497e-06, 'pencils': 4.107623008932437e-06, '**yp': 2.4645738053594624e-06, 'conic': 2.4645738053594624e-06, "C'": 4.929147610718925e-06, 'intersecting': 2.4645738053594624e-06, "P'": 1.6430492035729749e-06, 'secant': 1.0679819823224336e-05, 'bilinear': 1.6430492035729749e-06, 'directrices': 1.6430492035729749e-06, 'Jonquieres': 1.6430492035729749e-06, 'Af-fold': 3.2860984071459497e-06, '**yb': 3.2860984071459497e-06, 'Feelings': 1.6430492035729749e-06, 'recreated': 1.6430492035729749e-06, 'dearly': 3.2860984071459497e-06, 'intractable': 2.4645738053594624e-06, 'pertains': 4.929147610718925e-06, 'forward-moving': 1.6430492035729749e-06, 'Transitional': 1.6430492035729749e-06, 'erratically': 1.6430492035729749e-06, 'Isolated': 1.6430492035729749e-06, 'equate': 6.5721968142918994e-06, 'modernize': 1.6430492035729749e-06, 'democratize': 3.2860984071459497e-06, 'advisor': 1.6430492035729749e-06, 'underlining': 2.4645738053594624e-06, 'interrelationships': 2.4645738053594624e-06, 'Efforts': 2.4645738053594624e-06, 'tenancy': 2.4645738053594624e-06, 'Actively': 1.6430492035729749e-06, 'decentralizing': 1.6430492035729749e-06, 'mobilize': 2.4645738053594624e-06, 'middle-': 4.107623008932437e-06, 'upper-level': 1.6430492035729749e-06, 'constraining': 1.6430492035729749e-06, 'Particularly': 4.107623008932437e-06, 'Convinced': 1.6430492035729749e-06, 'reassured': 4.929147610718925e-06, 'treaty-making': 1.6430492035729749e-06, 'free-world': 1.6430492035729749e-06, 'marginally': 1.6430492035729749e-06, 'preliterate': 1.6430492035729749e-06, 'dominantly': 1.6430492035729749e-06, 'anomic': 1.6430492035729749e-06, 'enhancing': 1.6430492035729749e-06, 'pertinence': 2.4645738053594624e-06, 'self-pacification': 1.6430492035729749e-06, 'self-completion': 1.6430492035729749e-06, 'epitomize': 1.6430492035729749e-06, 'clarifies': 1.6430492035729749e-06, 'incitements': 1.6430492035729749e-06, 'sociality': 1.6430492035729749e-06, 'creativeness': 1.6430492035729749e-06, 'theistic': 1.6430492035729749e-06, 'beckoning': 2.4645738053594624e-06, 'recurrent': 4.107623008932437e-06, 'widowhood': 1.6430492035729749e-06, 'anomie': 1.6430492035729749e-06, 'equanimity': 2.4645738053594624e-06, 'consolation': 3.2860984071459497e-06, 'colossal': 3.2860984071459497e-06, 'sinning': 1.6430492035729749e-06, 'self-sufficient': 3.2860984071459497e-06, 'humilation': 1.6430492035729749e-06, 'all-victorious': 1.6430492035729749e-06, 'Father-God': 1.6430492035729749e-06, 'value-system': 1.6430492035729749e-06, 're-enforces': 1.6430492035729749e-06, 'reaffirms': 1.6430492035729749e-06, 'vis-a-vis': 2.4645738053594624e-06, 'atheistic': 1.6430492035729749e-06, 'universalistic': 1.6430492035729749e-06, 'non-church': 1.6430492035729749e-06, 'freewheelers': 1.6430492035729749e-06, 'religionists': 1.6430492035729749e-06, 'internalized': 2.4645738053594624e-06, 'intermediary': 1.6430492035729749e-06, 'super-empirical': 1.6430492035729749e-06, 'sacrament': 1.6430492035729749e-06, 'law-breaking': 1.6430492035729749e-06, 'tampering': 1.6430492035729749e-06, 'interpretable': 1.6430492035729749e-06, 'transcendental': 2.4645738053594624e-06, 'unifies': 3.2860984071459497e-06, 'totemic': 1.6430492035729749e-06, 'creeds': 1.6430492035729749e-06, 'dogmas': 2.4645738053594624e-06, 'Durkheim': 3.2860984071459497e-06, 'socializes': 1.6430492035729749e-06, 'attaching': 3.2860984071459497e-06, 'rites': 4.107623008932437e-06, 'sanctified': 1.6430492035729749e-06, 'reasserting': 1.6430492035729749e-06, 'unites': 1.6430492035729749e-06, 'denominationally': 1.6430492035729749e-06, 'semi-public': 1.6430492035729749e-06, 'spatially': 2.4645738053594624e-06, '2500': 1.6430492035729749e-06, 'interpeople': 1.6430492035729749e-06, 'integrating': 2.4645738053594624e-06, 'stabilizing-conserving': 1.6430492035729749e-06, 'Yinger': 1.6430492035729749e-06, 'energizes': 1.6430492035729749e-06, 'Crusades': 1.6430492035729749e-06, 'insuperable': 2.4645738053594624e-06, 'embody': 1.6430492035729749e-06, 'Overwhelmed': 1.6430492035729749e-06, 'phobic-like': 1.6430492035729749e-06, 'befall': 2.4645738053594624e-06, "B.'s": 3.2860984071459497e-06, 'full-blown': 1.6430492035729749e-06, 'Inability': 1.6430492035729749e-06, 'colicky': 1.6430492035729749e-06, 'bone-weary': 2.4645738053594624e-06, 'helplessness': 4.929147610718925e-06, 'stressful': 2.4645738053594624e-06, 'remarrying': 1.6430492035729749e-06, 'traumatic': 1.6430492035729749e-06, 'agonized': 1.6430492035729749e-06, 'dissipated': 2.4645738053594624e-06, 'Abreaction': 1.6430492035729749e-06, 'perceiving': 1.6430492035729749e-06, 'Johnnie': 2.218116424823516e-05, 'motherly': 1.6430492035729749e-06, 'referral': 5.750672212505412e-06, 'well-baby': 1.6430492035729749e-06, "twins'": 1.6430492035729749e-06, 'Follow-up': 1.6430492035729749e-06, 'transference': 2.4645738053594624e-06, 'out-reaching': 1.6430492035729749e-06, 'regression': 6.5721968142918994e-06, 'casework': 1.1501344425010824e-05, 'helpfulness': 1.6430492035729749e-06, 'information-seeking': 1.6430492035729749e-06, 'relationship-building': 1.6430492035729749e-06, 'maturational': 1.6430492035729749e-06, 'pathogenic': 2.4645738053594624e-06, 'ego-adaptive': 1.6430492035729749e-06, 'maladaptive': 1.6430492035729749e-06, 'time-honored': 3.2860984071459497e-06, 'anticipatory': 1.6430492035729749e-06, 'precipitating': 2.4645738053594624e-06, 'preconscious': 1.6430492035729749e-06, 'reactivated': 2.4645738053594624e-06, 'family-oriented': 1.6430492035729749e-06, 'averted': 3.2860984071459497e-06, 'integrative': 1.6430492035729749e-06, 'crisis-oriented': 1.6430492035729749e-06, 'short-contact': 2.4645738053594624e-06, 'telescoped': 2.4645738053594624e-06, "Levinger's": 1.6430492035729749e-06, 'predictors': 1.6430492035729749e-06, 'parent-child': 1.6430492035729749e-06, 'Similarities': 1.6430492035729749e-06, "ego's": 1.6430492035729749e-06, 'Willingness': 1.6430492035729749e-06, 'chronically': 1.6430492035729749e-06, 'innovate': 1.6430492035729749e-06, 'typology': 1.6430492035729749e-06, 'caseworkers': 1.6430492035729749e-06, 'replete': 1.6430492035729749e-06, 'globally': 1.6430492035729749e-06, 'middle-range': 1.6430492035729749e-06, 'multipurpose': 1.6430492035729749e-06, 'abounds': 1.6430492035729749e-06, 'meaningfully': 1.6430492035729749e-06, 'Sentiment': 1.6430492035729749e-06, 'Brandywine': 6.5721968142918994e-06, 'baptisms': 1.6430492035729749e-06, 'weddings': 2.4645738053594624e-06, 'Loomis': 4.107623008932437e-06, 'interacting': 1.6430492035729749e-06, 'Achieving': 1.6430492035729749e-06, 'endogamous': 1.6430492035729749e-06, 'Norms': 1.6430492035729749e-06, 'conjectured': 1.6430492035729749e-06, 'proscribed': 1.6430492035729749e-06, 'Status-roles': 1.6430492035729749e-06, 'status-roles': 1.6430492035729749e-06, 'non-authoritative': 1.6430492035729749e-06, 'Ranking': 1.6430492035729749e-06, 'interviewees': 1.6430492035729749e-06, 'exogamous': 1.6430492035729749e-06, 'Gemeinschaft': 1.6430492035729749e-06, 'social-role': 1.6430492035729749e-06, 'occupancies': 1.6430492035729749e-06, 'biologically': 1.6430492035729749e-06, 'immutable': 1.6430492035729749e-06, 'self-image': 1.6430492035729749e-06, 'Sanctions': 1.6430492035729749e-06, 'stringently': 1.6430492035729749e-06, 'consanguineously': 1.6430492035729749e-06, 'facilitating': 1.6430492035729749e-06, 'illegitimate': 3.2860984071459497e-06, 'consanguineous': 1.6430492035729749e-06, 'Subsystems': 1.6430492035729749e-06, 'subsystems': 8.215246017864873e-06, 'subsystem': 2.4645738053594624e-06, 'inter-relationships': 1.6430492035729749e-06, 'Subgroups': 2.4645738053594624e-06, 'interconnected': 1.6430492035729749e-06, 'relational': 1.6430492035729749e-06, 'Roles': 1.6430492035729749e-06, 'subgroups': 4.929147610718925e-06, 'Regulative': 1.6430492035729749e-06, 'consanguinity': 2.4645738053594624e-06, 'affinities': 1.6430492035729749e-06, 'substructure': 1.6430492035729749e-06, 'regulative': 1.6430492035729749e-06, 'hypothesized': 2.4645738053594624e-06, 'inbreeding': 1.6430492035729749e-06, 'Adaptation': 1.6430492035729749e-06, 'non-social': 1.6430492035729749e-06, 'Integration': 1.6430492035729749e-06, 'inter-relation': 1.6430492035729749e-06, 'Communication': 3.2860984071459497e-06, 'Boundary': 3.2860984071459497e-06, 'Systemic': 2.4645738053594624e-06, 'linkage': 3.2860984071459497e-06, 'Socialization': 2.4645738053594624e-06, 'Institutionalization': 1.6430492035729749e-06, 'facilitated': 1.6430492035729749e-06, 'Intense': 1.6430492035729749e-06, 'statistically': 2.4645738053594624e-06, 'Urbanization': 1.6430492035729749e-06, 'over-simplification': 1.6430492035729749e-06, 'urban-fringe': 1.6430492035729749e-06, 'deviant': 3.2860984071459497e-06, 'incurs': 1.6430492035729749e-06, 'heterogamous': 1.6430492035729749e-06, 'exogamy': 2.4645738053594624e-06, "group's": 1.6430492035729749e-06, 'deviance': 2.4645738053594624e-06, 'ostracism': 1.6430492035729749e-06, 'Confused': 1.6430492035729749e-06, 'Culturally': 1.6430492035729749e-06, 'endogamy': 3.2860984071459497e-06, 'intergroup': 2.4645738053594624e-06, 'systemic': 1.6430492035729749e-06, 'chiefdoms': 1.6430492035729749e-06, 'Governor-General': 1.6430492035729749e-06, 'Affaires': 1.6430492035729749e-06, 'Indigenes': 2.4645738053594624e-06, "Main-d'Oeuvre": 1.6430492035729749e-06, 'AIMO': 4.929147610718925e-06, 'Direction': 2.4645738053594624e-06, 'Gouvernement': 1.6430492035729749e-06, 'Tribal': 1.6430492035729749e-06, 'tabulations': 2.4645738053594624e-06, 'fiche': 1.6430492035729749e-06, 'circonscription': 1.6430492035729749e-06, 'sub-chiefdom': 1.6430492035729749e-06, 'territoire': 1.6430492035729749e-06, 'chiefdom': 1.6430492035729749e-06, 'clipped': 3.2860984071459497e-06, 'puberty': 1.6430492035729749e-06, 'age-and-sex': 2.4645738053594624e-06, 'inoculations': 1.6430492035729749e-06, 'out-migrants': 2.4645738053594624e-06, 'circonscriptions': 1.6430492035729749e-06, 'compilations': 2.4645738053594624e-06, 'polygynous': 1.6430492035729749e-06, 'non-polygynous': 1.6430492035729749e-06, 'Averages': 1.6430492035729749e-06, 'domiciled': 1.6430492035729749e-06, 'jure': 3.2860984071459497e-06, 'Ruanda-Urundi': 7.393721416078387e-06, 'demography': 3.2860984071459497e-06, 'Fonds': 1.6430492035729749e-06, "l'Assistance": 1.6430492035729749e-06, 'Medicale': 1.6430492035729749e-06, 'aux': 1.6430492035729749e-06, 'Belge': 2.4645738053594624e-06, 'FOREAMI': 1.6430492035729749e-06, '638,560': 1.6430492035729749e-06, '840,503': 1.6430492035729749e-06, 'Kwango': 1.6430492035729749e-06, 'Rapport': 1.6430492035729749e-06, "l'activite": 1.6430492035729749e-06, 'Pendant': 1.6430492035729749e-06, 'annee': 1.6430492035729749e-06, 'Bruxelles': 1.6430492035729749e-06, "L'Institut": 1.6430492035729749e-06, 'Recherche': 1.6430492035729749e-06, 'Scientifique': 1.6430492035729749e-06, 'Afrique': 1.6430492035729749e-06, 'Centrale': 1.6430492035729749e-06, 'IRSAC': 4.107623008932437e-06, 'in-migrants': 1.6430492035729749e-06, 'Maquet': 1.6430492035729749e-06, "l'Universite": 1.6430492035729749e-06, 'Officielle': 1.6430492035729749e-06, 'sub-chiefs': 1.6430492035729749e-06, '1,100': 1.6430492035729749e-06, 'circumscriptions': 1.6430492035729749e-06, 'Statistics': 1.6430492035729749e-06, 'Demographie': 1.6430492035729749e-06, 'Romaniuk': 1.6430492035729749e-06, 'Statistique': 1.6430492035729749e-06, 'Statistical': 2.4645738053594624e-06, 'Neesen': 1.6430492035729749e-06, 'Walle': 1.6430492035729749e-06, 'censuses': 3.2860984071459497e-06, 'enquetes': 1.6430492035729749e-06, 'demographiques': 1.6430492035729749e-06, 'successively': 2.4645738053594624e-06, 'calculable': 1.6430492035729749e-06, 'stratified': 2.4645738053594624e-06, 'strata': 2.4645738053594624e-06, 'Uniform': 1.6430492035729749e-06, 'post-census': 1.6430492035729749e-06, 'expeditiously': 1.6430492035729749e-06, "semester's": 2.4645738053594624e-06, 'hindsight': 3.2860984071459497e-06, 'not-yet-married': 1.6430492035729749e-06, 'all-married': 1.6430492035729749e-06, 'rationalized': 1.6430492035729749e-06, 'sophomores': 1.6430492035729749e-06, 'Auditors': 1.6430492035729749e-06, 'auditors': 3.2860984071459497e-06, 'electives': 1.6430492035729749e-06, 'auditing': 1.6430492035729749e-06, 'senior-graduate': 1.6430492035729749e-06, 'pregnancy': 4.107623008932437e-06, 'digress': 1.6430492035729749e-06, 'interpersonal': 2.4645738053594624e-06, 'pre-marital': 1.6430492035729749e-06, 'encroach': 1.6430492035729749e-06, 're-evaluate': 1.6430492035729749e-06, 'Films': 1.6430492035729749e-06, 'Supplemental': 1.6430492035729749e-06, 'contagious': 2.4645738053594624e-06, 'empathy': 1.6430492035729749e-06, 'in-laws': 2.4645738053594624e-06, 'Mainly': 2.4645738053594624e-06, 'survivor': 1.6430492035729749e-06, 'associating': 2.4645738053594624e-06, 'reproductive': 1.6430492035729749e-06, 'childless': 1.6430492035729749e-06, 'trimester': 1.6430492035729749e-06, 'examiantion': 1.6430492035729749e-06, 'structuring': 1.6430492035729749e-06, 'Kohnstamm-negative': 8.215246017864873e-06, 'concretistic': 2.4645738053594624e-06, 'hesitancy': 2.4645738053594624e-06, 'Responses': 1.6430492035729749e-06, 'Guilford-Martin': 3.2860984071459497e-06, 'Guilford': 1.6430492035729749e-06, 'Kohnstamm-positive': 1.1501344425010824e-05, 'Rorschach': 1.6430492035729749e-06, 'Co': 2.4645738053594624e-06, 'Kohnstamm': 1.1501344425010824e-05, 'nonreactors': 2.4645738053594624e-06, 'Inferiority': 1.6430492035729749e-06, 'Conditions': 1.6430492035729749e-06, 'shifters': 1.6430492035729749e-06, 'nonshifters': 1.6430492035729749e-06, '2.405': 1.6430492035729749e-06, 'two-tail': 1.6430492035729749e-06, '27%': 1.6430492035729749e-06, '49%': 1.6430492035729749e-06, '24%': 2.4645738053594624e-06, 'arm-elevation': 5.750672212505412e-06, "subject's": 1.6430492035729749e-06, 'arm-levitation': 2.4645738053594624e-06, 'Condition': 2.4645738053594624e-06, 'suggestibility': 3.2860984071459497e-06, 'behaviorally': 1.6430492035729749e-06, 'uninfluenced': 1.6430492035729749e-06, 'Autosuggestibility': 1.6430492035729749e-06, 'arm-rise': 1.6430492035729749e-06, "subjects'": 1.6430492035729749e-06, 'Hypothesis': 1.6430492035729749e-06, 'normals': 1.6430492035729749e-06, 'levitation': 1.6430492035729749e-06, 'inhibiting': 2.4645738053594624e-06, 'Alcohol': 1.6430492035729749e-06, 'ingestion': 1.6430492035729749e-06, 'hypnosis': 1.6430492035729749e-06, 'involuntary': 3.2860984071459497e-06, 'nonreactivity': 3.2860984071459497e-06, 'voluntary-control': 1.6430492035729749e-06, 'involuntary-control': 1.6430492035729749e-06, 'relinquishing': 4.107623008932437e-06, 'Aniseikonic': 1.6430492035729749e-06, 'stationary': 2.4645738053594624e-06, 'aniseikonic': 1.6430492035729749e-06, 'constriction': 3.2860984071459497e-06, 'guardedness': 1.6430492035729749e-06, 'conventionality': 1.6430492035729749e-06, 'socioeconomic': 3.2860984071459497e-06, 'three-family': 1.6430492035729749e-06, 'tenement': 2.4645738053594624e-06, 'unstructured': 1.0679819823224336e-05, 'upper-middle': 1.6430492035729749e-06, 'upper-lower': 1.6430492035729749e-06, 'Subjects': 1.6430492035729749e-06, 'third-grade': 4.107623008932437e-06, 'underachievers': 1.6430492035729749e-06, 'over-achievers': 1.6430492035729749e-06, 'under-achievers': 1.6430492035729749e-06, 'Over-achievers': 1.6430492035729749e-06, 'Rating': 1.6430492035729749e-06, 'compulsivity': 1.1501344425010824e-05, 'open-ended': 1.6430492035729749e-06, 'multiple-choice': 1.6430492035729749e-06, 'perfectionism': 1.6430492035729749e-06, 'orderliness': 1.6430492035729749e-06, 'punctuality': 1.6430492035729749e-06, 'interviewers': 1.6430492035729749e-06, 'perusing': 1.6430492035729749e-06, 'categorizing': 1.6430492035729749e-06, 'behaviors': 1.6430492035729749e-06, 'emotionality': 1.6430492035729749e-06, 'cleans': 1.6430492035729749e-06, 'Castaneda': 2.4645738053594624e-06, 'Anxiety': 3.2860984071459497e-06, 'Scale': 4.929147610718925e-06, 'Multiphastic': 1.6430492035729749e-06, 'Personality': 1.6430492035729749e-06, 'differentiating': 1.6430492035729749e-06, 'Reliability': 1.6430492035729749e-06, 'validation': 1.6430492035729749e-06, 'Relationship': 1.6430492035729749e-06, 'obsessive-compulsive': 1.6430492035729749e-06, 'Criterion': 1.6430492035729749e-06, 'permeates': 2.4645738053594624e-06, 'Stanford': 1.6430492035729749e-06, 'sub-tests': 2.4645738053594624e-06, 'Meaning': 3.2860984071459497e-06, 'Spelling': 1.6430492035729749e-06, 'Arithmetic': 3.2860984071459497e-06, 'Computation': 2.4645738053594624e-06, 'Reasoning': 1.6430492035729749e-06, 'grade-equivalents': 1.6430492035729749e-06, 'median': 1.6430492035729749e-06, 'grade-equivalent': 1.6430492035729749e-06, 'Wechsler': 1.6430492035729749e-06, 'Intelligence': 4.107623008932437e-06, 'over-': 1.6430492035729749e-06, 'under-achievement': 3.2860984071459497e-06, 'I.Q.': 4.929147610718925e-06, '4.8': 1.6430492035729749e-06, 'over-achievement': 1.6430492035729749e-06, '3.0': 1.6430492035729749e-06, '-.5': 1.6430492035729749e-06, 'descriptive': 5.750672212505412e-06, 'sub-group': 1.6430492035729749e-06, 'surmised': 2.4645738053594624e-06, 'compulsives': 4.107623008932437e-06, 'whole-word': 1.6430492035729749e-06, 'systemization': 1.6430492035729749e-06, 'phonic': 1.6430492035729749e-06, 'accentuates': 1.6430492035729749e-06, 'decrement': 2.4645738053594624e-06, 'anxiety-released': 1.6430492035729749e-06, 'memorization': 1.6430492035729749e-06, 'memorizing': 2.4645738053594624e-06, 'panicked': 2.4645738053594624e-06, 'Sarason': 1.6430492035729749e-06, 'test-like': 1.6430492035729749e-06, 'replication': 1.6430492035729749e-06, 'Observers': 2.4645738053594624e-06, 'subparts': 1.6430492035729749e-06, 'roleplaying': 1.1501344425010824e-05, 'Impersonal': 1.6430492035729749e-06, 'Roleplaying': 3.2860984071459497e-06, 'possiblities': 1.6430492035729749e-06, 'Evaluation': 2.4645738053594624e-06, 'Interviewing': 1.6430492035729749e-06, 'resignations': 1.6430492035729749e-06, 'questionnaires': 5.750672212505412e-06, 'suitcase': 1.7252016637516235e-05, 'antagonists': 4.107623008932437e-06, 'hesitating': 1.6430492035729749e-06, 'receptionist': 4.929147610718925e-06, 'clerking': 1.6430492035729749e-06, "receptionist's": 1.6430492035729749e-06, 'mousy': 1.6430492035729749e-06, 'aplomb': 1.6430492035729749e-06, 'supplanting': 1.6430492035729749e-06, 'outstandingly': 2.4645738053594624e-06, 'comer': 1.6430492035729749e-06, 'antagonize': 1.6430492035729749e-06, 'Turnover': 1.6430492035729749e-06, 'Entirely': 1.6430492035729749e-06, 'criticizing': 2.4645738053594624e-06, 'laxness': 2.4645738053594624e-06, 'supermarket': 1.6430492035729749e-06, 'curtness': 1.6430492035729749e-06, 'abruptness': 1.6430492035729749e-06, 'tailor-make': 1.6430492035729749e-06, "manager's": 2.4645738053594624e-06, 'blackboard': 2.4645738053594624e-06, 'condensing': 1.6430492035729749e-06, 'roleplayed': 1.6430492035729749e-06, 'graphed': 1.6430492035729749e-06, "supervisor's": 2.4645738053594624e-06, 'evaluative': 1.6430492035729749e-06, 'totalistic': 1.6430492035729749e-06, 'veridical': 1.6430492035729749e-06, 'Spontaneity': 1.6430492035729749e-06, 'introject': 3.2860984071459497e-06, "voice's": 1.6430492035729749e-06, 'parrot-like': 1.6430492035729749e-06, 'parroting': 1.6430492035729749e-06, 'timeworn': 1.6430492035729749e-06, 'axiom': 1.6430492035729749e-06, 'hebephrenic': 6.5721968142918994e-06, 'pseudo-emotion': 1.6430492035729749e-06, 'wracking': 1.6430492035729749e-06, 'cheeks': 1.1501344425010824e-05, 'demarcated': 1.6430492035729749e-06, 'Granny': 5.750672212505412e-06, 'home-city': 1.6430492035729749e-06, 'mother-introject': 1.6430492035729749e-06, 'scathingly': 1.6430492035729749e-06, 'condemnatory': 1.6430492035729749e-06, 'despises': 1.6430492035729749e-06, 'disconcertingly': 1.6430492035729749e-06, 'unmanageably': 1.6430492035729749e-06, 'introjected': 1.6430492035729749e-06, 'introjects': 1.6430492035729749e-06, 'passerby': 1.6430492035729749e-06, 'vocalize': 1.6430492035729749e-06, 'seclude': 1.6430492035729749e-06, 'scolding': 2.4645738053594624e-06, 'manifesting': 1.6430492035729749e-06, 'annoy': 2.4645738053594624e-06, 'steoreotyped': 1.6430492035729749e-06, 'condescending': 2.4645738053594624e-06, 'schizophrenic': 5.750672212505412e-06, 'condescension': 2.4645738053594624e-06, 'personifying': 1.6430492035729749e-06, 'demeanor': 2.4645738053594624e-06, 'consoling': 1.6430492035729749e-06, 'succor': 1.6430492035729749e-06, 'morrow': 2.4645738053594624e-06, 'paranoid': 2.4645738053594624e-06, 'infuriated': 3.2860984071459497e-06, 'ward-personnel': 1.6430492035729749e-06, 'arrogantly': 1.6430492035729749e-06, 'uncomfortably': 3.2860984071459497e-06, 'stolidly': 2.4645738053594624e-06, 'shutting': 2.4645738053594624e-06, 'plunking': 1.6430492035729749e-06, 'Condensation': 1.6430492035729749e-06, 'simple-seeming': 1.6430492035729749e-06, 'nonverbal': 3.2860984071459497e-06, 'spread-out': 1.6430492035729749e-06, 'well-grooved': 1.6430492035729749e-06, 'communicational': 2.4645738053594624e-06, 'newly-emerging': 1.6430492035729749e-06, 'determinants': 2.4645738053594624e-06, 'babel': 1.6430492035729749e-06, 'indistinct': 1.6430492035729749e-06, 'delineated': 1.6430492035729749e-06, 'repetitious': 2.4645738053594624e-06, 'largely-silent': 1.6430492035729749e-06, 'Dearie': 1.6430492035729749e-06, 'undifferentiated': 1.6430492035729749e-06, 'dedifferentiated': 1.6430492035729749e-06, 'welter': 2.4645738053594624e-06, "person's": 4.107623008932437e-06, 'belching': 2.4645738053594624e-06, 'flatus': 2.4645738053594624e-06, 'mulling': 1.6430492035729749e-06, 'belch': 2.4645738053594624e-06, 'animal-like': 1.6430492035729749e-06, 'intimating': 1.6430492035729749e-06, 'Cameron': 1.6430492035729749e-06, 'McGhie': 1.6430492035729749e-06, 'prototypical': 1.6430492035729749e-06, 'symbolic-sounding': 1.6430492035729749e-06, 'philosophizing': 2.4645738053594624e-06, 'deplorable': 2.4645738053594624e-06, 'mid-twentieth-century': 1.6430492035729749e-06, 'peeking': 1.6430492035729749e-06, 'concretistic-seeming': 1.6430492035729749e-06, 'particularistic-seeming': 1.6430492035729749e-06, 'Burnham': 1.6430492035729749e-06, 'expounding': 1.6430492035729749e-06, 'tangibly': 1.6430492035729749e-06, 'bales': 3.2860984071459497e-06, 'docked': 1.6430492035729749e-06, "dictionary's": 1.6430492035729749e-06, 'prefixes': 1.6430492035729749e-06, 'suffixes': 1.6430492035729749e-06, 'voume': 1.6430492035729749e-06, 'inflected': 3.2860984071459497e-06, 'synthesized': 2.4645738053594624e-06, 'data-processing': 2.4645738053594624e-06, 'alphabetic': 1.6430492035729749e-06, 'random-storage': 1.6430492035729749e-06, 'compile': 1.6430492035729749e-06, 'text-form': 9.036770619651361e-06, 'grammatical': 8.215246017864873e-06, 'sentence-structure': 1.6430492035729749e-06, 'equivalent-choice': 1.6430492035729749e-06, 'semantic': 6.5721968142918994e-06, 'target-language': 1.6430492035729749e-06, 'lookup': 6.5721968142918994e-06, 'Text': 5.750672212505412e-06, 'W-region': 4.929147610718925e-06, 'X-region': 4.107623008932437e-06, 'storing': 4.107623008932437e-06, 'Y-region': 2.4645738053594624e-06, 'Y-cell': 3.2860984071459497e-06, 'Y-cells': 1.6430492035729749e-06, 'inspected': 2.4645738053594624e-06, 'pre-determined': 1.6430492035729749e-06, 'i-th': 2.4645738053594624e-06, 'Y-regions': 1.6430492035729749e-06, 'selection-rejection': 1.6430492035729749e-06, 'text-ordered': 1.6430492035729749e-06, 'information-cell': 1.6430492035729749e-06, 'outputting': 1.6430492035729749e-06, 'text-lookup': 1.6430492035729749e-06, 'modifying': 4.107623008932437e-06, 'form-dictionary': 1.6430492035729749e-06, 'paradigms': 1.6430492035729749e-06, 'Equivalents': 1.6430492035729749e-06, 'inflection': 3.2860984071459497e-06, 'endings': 3.2860984071459497e-06, 'summarization': 1.6430492035729749e-06, 'summarizing': 3.2860984071459497e-06, 'long-known': 1.6430492035729749e-06, "Wesley's": 1.6430492035729749e-06, 'glorify': 2.4645738053594624e-06, 'Boylston': 1.6430492035729749e-06, 'syllables': 6.5721968142918994e-06, 'fy': 1.6430492035729749e-06, 'Dominant': 3.2860984071459497e-06, 'syllable': 1.6430492035729749e-06, 'syntactic': 1.6430492035729749e-06, 'predicator': 2.4645738053594624e-06, 'friendlier': 2.4645738053594624e-06, 'Adverbial': 1.6430492035729749e-06, 'complements': 2.4645738053594624e-06, 'adjuncts': 1.6430492035729749e-06, 'prepositional': 3.2860984071459497e-06, 'Context': 1.6430492035729749e-06, 'unstressed': 4.107623008932437e-06, 'preposition': 2.4645738053594624e-06, 'accompanies': 1.6430492035729749e-06, 'pronoun': 4.107623008932437e-06, 'modifier': 4.929147610718925e-06, 'semantically': 2.4645738053594624e-06, 'insulting': 4.107623008932437e-06, 'underlined': 2.4645738053594624e-06, 'italicized': 1.6430492035729749e-06, "reader's": 2.4645738053594624e-06, 'alertness': 2.4645738053594624e-06, 'stored-up': 1.6430492035729749e-06, "sisters'": 2.4645738053594624e-06, 'stimulates': 2.4645738053594624e-06, 'italics': 2.4645738053594624e-06, "Mack's": 2.4645738053594624e-06, 'declarative': 6.5721968142918994e-06, 'silliest': 1.6430492035729749e-06, 'Martinique': 1.6430492035729749e-06, 'Omission': 1.6430492035729749e-06, 'subordinator': 2.4645738053594624e-06, 'adverb': 1.6430492035729749e-06, 'unambiguously': 2.4645738053594624e-06, 'gerundial': 2.4645738053594624e-06, 'noun': 1.6430492035729749e-06, 'Steiners': 1.6430492035729749e-06, 'syntactically': 1.6430492035729749e-06, 'Syllabification': 1.6430492035729749e-06, 'Syllables': 2.4645738053594624e-06, 'vocalic': 1.6430492035729749e-06, 'consonantal': 7.393721416078387e-06, 'consonants': 4.107623008932437e-06, 'Doubt': 1.6430492035729749e-06, '/l/': 2.4645738053594624e-06, 'AAb/': 2.4645738053594624e-06, '/r/': 1.6430492035729749e-06, 're': 1.6430492035729749e-06, 'suffix': 1.6430492035729749e-06, 'ity': 1.6430492035729749e-06, 'monosyllable': 1.6430492035729749e-06, 'vowel': 5.750672212505412e-06, 'rhyme': 2.4645738053594624e-06, 'vowels': 3.2860984071459497e-06, 'over-simple': 1.6430492035729749e-06, 'Tone': 4.107623008932437e-06, 'familar': 1.6430492035729749e-06, 'Papers': 2.4645738053594624e-06, 'analysed': 2.4645738053594624e-06, 'simplistic': 2.4645738053594624e-06, 'Analyses': 2.4645738053594624e-06, 'equip': 1.6430492035729749e-06, 'pondering': 2.4645738053594624e-06, 'phonologic': 9.036770619651361e-06, 'analytically': 1.6430492035729749e-06, 'Welmers': 1.6430492035729749e-06, 'nonlinguistic': 2.4645738053594624e-06, 'divert': 1.6430492035729749e-06, 'uninitiate': 1.6430492035729749e-06, 'disentangle': 2.4645738053594624e-06, 'co-occurring': 1.6430492035729749e-06, 'phonology': 4.929147610718925e-06, 'articulations': 1.6430492035729749e-06, "Rowlands'": 1.6430492035729749e-06, 'intonation': 7.393721416078387e-06, 'intermeshed': 1.6430492035729749e-06, 'phonetic': 2.4645738053594624e-06, 'glottal': 1.6430492035729749e-06, 'murmur': 3.2860984071459497e-06, 'phonemics': 2.4645738053594624e-06, 'accentual': 1.6430492035729749e-06, 'Ewe': 1.6430492035729749e-06, "Richardson's": 1.6430492035729749e-06, 'Sukuma': 1.6430492035729749e-06, 'phonemic': 7.393721416078387e-06, 'morphophonemic': 5.750672212505412e-06, 'phonemes': 1.6430492035729749e-06, 'morphemic': 1.6430492035729749e-06, 'morphophonemics': 8.215246017864873e-06, 'Consonantal': 1.6430492035729749e-06, 'multidimensional': 1.6430492035729749e-06, 'Morphophonemic': 1.6430492035729749e-06, 'Phonemes': 1.6430492035729749e-06, 'Tonal': 2.4645738053594624e-06, 'confusing': 2.4645738053594624e-06, 'Smaller': 1.6430492035729749e-06, 'grammatically': 1.6430492035729749e-06, 'orthographies': 2.4645738053594624e-06, 'transcription': 2.4645738053594624e-06, 'orthography': 5.750672212505412e-06, 'broadest': 1.6430492035729749e-06, 'abstrusenesses': 1.6430492035729749e-06, 'typographic': 1.6430492035729749e-06, 'Linguists': 1.6430492035729749e-06, 'Vowel-Length': 1.6430492035729749e-06, 'Syllabicity': 1.6430492035729749e-06, 'Kikuyu': 3.2860984071459497e-06, 'examines': 1.6430492035729749e-06, 'orthographic': 3.2860984071459497e-06, 'syllabicity': 1.6430492035729749e-06, 'superficiality': 1.6430492035729749e-06, 'hesitates': 1.6430492035729749e-06, 'Vowel': 1.6430492035729749e-06, 'Igbo': 3.2860984071459497e-06, 'Carnochan': 1.6430492035729749e-06, 'restates': 1.6430492035729749e-06, 'prosodies': 1.6430492035729749e-06, 'prosodic': 3.2860984071459497e-06, 'briefer': 1.6430492035729749e-06, 'Whiteley': 1.6430492035729749e-06, 'Verbal': 2.4645738053594624e-06, 'Radical': 1.6430492035729749e-06, 'Iraqw': 2.4645738053594624e-06, 'Description': 1.6430492035729749e-06, 'Item-Categories': 1.6430492035729749e-06, 'unnecessarily': 3.2860984071459497e-06, 'stopping-point': 1.6430492035729749e-06, 'Athabascan': 1.1501344425010824e-05, 'diverging': 1.6430492035729749e-06, 'proto-Athabascan': 1.6430492035729749e-06, 'Yokuts': 6.5721968142918994e-06, 'proto-Yokuts': 1.6430492035729749e-06, '3.46': 2.4645738053594624e-06, '2.75': 2.4645738053594624e-06, 'one-eighth': 2.4645738053594624e-06, 'unambiguity': 1.6430492035729749e-06, 'informants': 1.6430492035729749e-06, "Hoijer's": 3.2860984071459497e-06, "Swadesh's": 2.4645738053594624e-06, 'glottochronological': 3.2860984071459497e-06, 'Swadesh': 7.393721416078387e-06, 'Joaquin': 1.6430492035729749e-06, 'Hoijer': 3.2860984071459497e-06, 'omit': 1.6430492035729749e-06, 'genera': 1.6430492035729749e-06, 'vulture': 4.107623008932437e-06, 'salmon': 2.4645738053594624e-06, 'manzanita': 1.6430492035729749e-06, 'non-comparable': 1.6430492035729749e-06, 'interrogatives': 1.6430492035729749e-06, 'adverbs': 2.4645738053594624e-06, 'demonstratives': 1.6430492035729749e-06, 'proportionally': 1.6430492035729749e-06, '253': 1.6430492035729749e-06, '2.7': 1.6430492035729749e-06, 'adjectives': 4.107623008932437e-06, '3.9': 1.6430492035729749e-06, '4.7': 1.6430492035729749e-06, 'verbs': 6.5721968142918994e-06, '4.0': 1.6430492035729749e-06, '3.4': 1.6430492035729749e-06, '2.8': 1.6430492035729749e-06, '22%': 1.6430492035729749e-06, '3.5%': 1.6430492035729749e-06, 'verb': 4.107623008932437e-06, 'consistence': 1.6430492035729749e-06, 'trans-lingually': 1.6430492035729749e-06, 'near-synonyms': 1.6430492035729749e-06, 'stomach-belly': 1.6430492035729749e-06, 'big-large': 1.6430492035729749e-06, 'long-far': 1.6430492035729749e-06, 'many-much': 1.6430492035729749e-06, 'die-dead': 1.6430492035729749e-06, 'say-speak': 1.6430492035729749e-06, 'eventuate': 1.6430492035729749e-06, '1.07': 2.4645738053594624e-06, 'concordant': 2.4645738053594624e-06, '2.0': 2.4645738053594624e-06, 'Vocabulary': 1.6430492035729749e-06, 'Mon-Khmer': 2.4645738053594624e-06, 'Languages': 1.6430492035729749e-06, 'AL': 1.6430492035729749e-06, 'I-E': 2.4645738053594624e-06, 'Towards': 2.4645738053594624e-06, 'Accuracy': 1.6430492035729749e-06, 'IJAL': 1.6430492035729749e-06, '137': 1.6430492035729749e-06, 'unpredictably': 2.4645738053594624e-06, 'unvarying': 1.6430492035729749e-06, 'M-K': 1.6430492035729749e-06, 'Ath.': 1.6430492035729749e-06, 'Yok.': 1.6430492035729749e-06, '86%': 1.6430492035729749e-06, '64%': 1.6430492035729749e-06, '57%': 1.6430492035729749e-06, 'diachronic': 1.6430492035729749e-06, 'classificatory': 1.6430492035729749e-06, 'Gleason': 2.4645738053594624e-06, 'weighting': 1.6430492035729749e-06, 'Two-Stem': 1.6430492035729749e-06, 'Meanings': 1.6430492035729749e-06, 'asterisks': 2.4645738053594624e-06, 'A/3': 1.6430492035729749e-06, 'unasterisked': 1.6430492035729749e-06, 'Stems': 1.6430492035729749e-06, 'adjectival': 3.2860984071459497e-06, 'retentiveness': 1.6430492035729749e-06, 'expectable': 1.6430492035729749e-06, 'lexical': 2.4645738053594624e-06, 'snare': 1.6430492035729749e-06, 'linguistically': 1.6430492035729749e-06, 'labile': 1.6430492035729749e-06, 'lexicostatistics': 4.107623008932437e-06, 'definable': 1.6430492035729749e-06, 'cocopalm': 1.6430492035729749e-06, 'indubitable': 1.6430492035729749e-06, 'nail': 4.929147610718925e-06, 'millennia': 3.2860984071459497e-06, 'ramification': 1.6430492035729749e-06, 'coalescence': 1.6430492035729749e-06, 'kingdoms': 1.6430492035729749e-06, 'Hokan': 1.6430492035729749e-06, 'Penutian': 1.6430492035729749e-06, 'Uto-Aztecan': 2.4645738053594624e-06, 'phyla': 1.6430492035729749e-06, 'diagrammed': 1.6430492035729749e-06, 'Salish': 1.6430492035729749e-06, 'cloudy': 2.4645738053594624e-06, 'by-product': 3.2860984071459497e-06, 'evidential': 1.6430492035729749e-06, 'anciently': 1.6430492035729749e-06, 'glottochronology': 1.6430492035729749e-06, 'plodding': 4.107623008932437e-06, 'Lees': 1.6430492035729749e-06, 'swerve': 2.4645738053594624e-06, 'predilections': 1.6430492035729749e-06, 'lexicostatistic': 1.6430492035729749e-06, 'unachievable': 1.6430492035729749e-06, 'operationally': 1.6430492035729749e-06, '5000-word': 1.6430492035729749e-06, 'alphabetized': 1.6430492035729749e-06, 'fiftieth': 1.6430492035729749e-06, 'Doubtless': 1.6430492035729749e-06, 'Nazi-minded': 1.6430492035729749e-06, 'Prussia': 2.4645738053594624e-06, 'Oder': 3.2860984071459497e-06, 'Bolshevism': 1.6430492035729749e-06, 'Ukrainians': 1.6430492035729749e-06, 'digressions': 1.6430492035729749e-06, 'Dunn-Atherton': 1.6430492035729749e-06, "Poland's": 2.4645738053594624e-06, 'Neisse-Oder': 1.6430492035729749e-06, 'Silesia': 2.4645738053594624e-06, 'Pomerania': 1.6430492035729749e-06, 'evicted': 2.4645738053594624e-06, 'Pripet': 1.6430492035729749e-06, 'Marshes': 1.6430492035729749e-06, 'Teheran': 2.4645738053594624e-06, 'Poles': 4.107623008932437e-06, 'Neisse': 2.4645738053594624e-06, 'industrially': 1.6430492035729749e-06, 'agriculturally': 1.6430492035729749e-06, 'unplagued': 1.6430492035729749e-06, 'master-race': 1.6430492035729749e-06, 'Junkerdom': 1.6430492035729749e-06, 'Slavs': 1.6430492035729749e-06, 'enslaved': 1.6430492035729749e-06, 'exterminate': 2.4645738053594624e-06, 'onrushing': 1.6430492035729749e-06, 'practised': 2.4645738053594624e-06, 'feudalistic': 1.6430492035729749e-06, 'devoutly': 1.6430492035729749e-06, 'Lublin': 1.3144393628583799e-05, 'incompatibles': 1.6430492035729749e-06, 'corridor': 1.4787442832156774e-05, 'sanitaire': 1.6430492035729749e-06, 'Byrnes': 2.4645738053594624e-06, 'anti-Soviet': 2.4645738053594624e-06, 'Liberated': 2.4645738053594624e-06, 'merged': 4.107623008932437e-06, 'affirmations': 1.6430492035729749e-06, 'McNeill': 1.6430492035729749e-06, 'war-time': 1.6430492035729749e-06, 'imperil': 1.6430492035729749e-06, 'far-sighted': 1.6430492035729749e-06, 'capitalist-democratic': 1.6430492035729749e-06, 'Italics': 1.6430492035729749e-06, 'localized': 1.6430492035729749e-06, 'aberrations': 4.929147610718925e-06, 'actualities': 2.4645738053594624e-06, 're-declared': 1.6430492035729749e-06, 'Pogue': 1.6430492035729749e-06, 'fanfare': 1.6430492035729749e-06, 'electoral': 9.85829522143785e-06, 'procrastination': 1.6430492035729749e-06, 'reproach': 2.4645738053594624e-06, 'regionally': 1.6430492035729749e-06, 'self-government': 2.4645738053594624e-06, 'identifications': 2.4645738053594624e-06, 'long-run': 4.929147610718925e-06, 'Elections': 1.6430492035729749e-06, 'Si': 1.6430492035729749e-06, 'Mubarak': 1.6430492035729749e-06, 'Bekkai': 1.6430492035729749e-06, 'Istiqlal': 9.036770619651361e-06, 'Muhammad': 1.6430492035729749e-06, 'feasibility': 3.2860984071459497e-06, 'Moroccan': 3.2860984071459497e-06, 'Liberties': 1.6430492035729749e-06, 'P.D.I.': 3.2860984071459497e-06, 'Parti': 1.6430492035729749e-06, 'Democratique': 1.6430492035729749e-06, "l'Independance": 1.6430492035729749e-06, "Istiqlal's": 2.4645738053594624e-06, 'predominance': 2.4645738053594624e-06, 'Maroc': 1.6430492035729749e-06, 'Ifni': 1.6430492035729749e-06, 'mid-1958': 1.6430492035729749e-06, 'Mouvement': 1.6430492035729749e-06, 'Populaire': 1.6430492035729749e-06, 'Balafrej': 4.929147610718925e-06, 'post-independence': 1.6430492035729749e-06, 'let-down': 1.6430492035729749e-06, 'after-effects': 1.6430492035729749e-06, 'Abdallah': 1.6430492035729749e-06, 'Ibrahim': 4.107623008932437e-06, 'maneuvering': 4.107623008932437e-06, 'labyrinth': 1.6430492035729749e-06, 'procrastinate': 1.6430492035729749e-06, 'repudiate': 1.6430492035729749e-06, 'self-interest': 2.4645738053594624e-06, 'scrutin': 2.4645738053594624e-06, 'uninominal': 1.6430492035729749e-06, 'liste': 1.6430492035729749e-06, 'Duverger': 1.6430492035729749e-06, 'unearth': 1.6430492035729749e-06, 'maximize': 2.4645738053594624e-06, 'Rabat': 1.6430492035729749e-06, 'Interesting': 1.6430492035729749e-06, 'Istiqlal-sponsored': 1.6430492035729749e-06, 'U.M.C.I.A.': 3.2860984071459497e-06, "L'Union": 2.4645738053594624e-06, 'Marocaine': 1.6430492035729749e-06, 'Commercants': 1.6430492035729749e-06, 'Industrialistes': 1.6430492035729749e-06, 'Artisans': 1.6430492035729749e-06, 'U.N.F.P.': 4.929147610718925e-06, 'Populaires': 1.6430492035729749e-06, 'labor-based': 1.6430492035729749e-06, 'U.M.T.': 1.6430492035729749e-06, 'Popular': 2.4645738053594624e-06, 'pro-U.N.F.P.': 1.6430492035729749e-06, 'Bani': 1.6430492035729749e-06, 'Mellal': 1.6430492035729749e-06, 'Centrally': 1.6430492035729749e-06, 'inescapably': 1.6430492035729749e-06, 'demarcation': 2.4645738053594624e-06, 'Voter': 1.6430492035729749e-06, 'Periodic': 1.6430492035729749e-06, 'disqualified': 1.6430492035729749e-06, 'Protectorate': 1.6430492035729749e-06, 'Unemployed': 1.6430492035729749e-06, 'retraining': 1.6430492035729749e-06, 'state-administered': 1.6430492035729749e-06, 'George-Barden': 3.2860984071459497e-06, 'matching-fund': 1.6430492035729749e-06, '$297': 1.6430492035729749e-06, '$740': 1.6430492035729749e-06, 'Manpower': 1.6430492035729749e-06, 'Employers': 1.6430492035729749e-06, 'state-sponsored': 1.6430492035729749e-06, 'Relation': 1.6430492035729749e-06, 'pre-employment': 1.6430492035729749e-06, 'semi-skilled': 2.4645738053594624e-06, 'preemployment': 1.6430492035729749e-06, 'Elaborate': 1.6430492035729749e-06, 'enrollees': 1.6430492035729749e-06, 'unenthusiastic': 2.4645738053594624e-06, 'Programs': 1.6430492035729749e-06, 'heighten': 1.6430492035729749e-06, 'aptitudes': 1.6430492035729749e-06, 'topping': 2.4645738053594624e-06, 'pierced': 4.107623008932437e-06, 'intial': 1.6430492035729749e-06, 'breakaway': 1.6430492035729749e-06, 'demonstrable': 3.2860984071459497e-06, 'vaguest': 1.6430492035729749e-06, 'generalities': 1.6430492035729749e-06, 'durations': 1.6430492035729749e-06, 'advocates': 1.6430492035729749e-06, 'trend-following': 1.6430492035729749e-06, 'indices': 6.5721968142918994e-06, 'ceaseless': 3.2860984071459497e-06, 'Correlations': 1.6430492035729749e-06, 'loadings': 4.929147610718925e-06, 'fatter': 3.2860984071459497e-06, 'cut-and-dried': 1.6430492035729749e-06, 'ceaselessly': 1.6430492035729749e-06, 'sedate': 2.4645738053594624e-06, 'shoe-string': 1.6430492035729749e-06, 'doggedly': 2.4645738053594624e-06, 'foretell': 1.6430492035729749e-06, 'olden': 1.6430492035729749e-06, "Street's": 1.6430492035729749e-06, "stock's": 1.6430492035729749e-06, 'odd-lot': 1.3965918230370285e-05, 'cocao': 1.6430492035729749e-06, 'Merchandise': 1.6430492035729749e-06, 'Mart': 2.4645738053594624e-06, 'lady-bugs': 1.6430492035729749e-06, 'green-bugs': 1.6430492035729749e-06, 'non-forthcoming': 1.6430492035729749e-06, 'broker': 1.6430492035729749e-06, 'echelon': 2.4645738053594624e-06, 'marketwise': 1.6430492035729749e-06, 'Odd-lot': 1.6430492035729749e-06, 'graphs': 1.6430492035729749e-06, 'chartist': 2.4645738053594624e-06, 'bottoms': 6.5721968142918994e-06, 'vernacular': 2.4645738053594624e-06, 'movers': 4.107623008932437e-06, 'diffused': 2.4645738053594624e-06, 'bearish': 2.4645738053594624e-06, 'erudition': 1.6430492035729749e-06, 'accrues': 1.6430492035729749e-06, 'askew': 1.6430492035729749e-06, 'unflattering': 1.6430492035729749e-06, 'played-out': 2.4645738053594624e-06, "campaign's": 1.6430492035729749e-06, 'flatteringly': 1.6430492035729749e-06, 'echelons': 1.6430492035729749e-06, 'fluctuates': 1.6430492035729749e-06, 'outfox': 1.6430492035729749e-06, 'Diametric': 1.6430492035729749e-06, 'unimaginable': 2.4645738053594624e-06, 'squeamishness': 1.6430492035729749e-06, 'Magee': 1.6430492035729749e-06, 'chartists': 1.6430492035729749e-06, 'investing': 1.6430492035729749e-06, "Wheelan's": 1.6430492035729749e-06, 'Technique': 2.4645738053594624e-06, 'committment': 1.6430492035729749e-06, 'forethought': 1.6430492035729749e-06, 'oversubscribed': 2.4645738053594624e-06, 'bullish': 1.6430492035729749e-06, 'over-subscribed': 1.6430492035729749e-06, 'hoaxes': 1.6430492035729749e-06, 'Nineteen-sixty': 1.6430492035729749e-06, 'record-high': 1.6430492035729749e-06, 'unsold': 3.2860984071459497e-06, '7.6%': 1.6430492035729749e-06, '4-month': 1.6430492035729749e-06, 'downpayment': 1.6430492035729749e-06, 'amortization': 3.2860984071459497e-06, 'liquidity': 1.6430492035729749e-06, 'longer-term': 2.4645738053594624e-06, 'accentuate': 1.6430492035729749e-06, 'Sixties': 9.85829522143785e-06, '883,000': 1.6430492035729749e-06, 'Fifties': 4.929147610718925e-06, '1,018,000': 1.6430492035729749e-06, '1,083,000': 2.4645738053594624e-06, 'Seventies': 1.6430492035729749e-06, '1,338,000': 1.6430492035729749e-06, '1,525,000': 1.6430492035729749e-06, '$26.5-billion': 1.6430492035729749e-06, '$44.3-billion': 1.6430492035729749e-06, '$75-billion': 1.6430492035729749e-06, 'Spurred': 1.6430492035729749e-06, 'dammed-up': 1.6430492035729749e-06, 'guaranty': 1.6430492035729749e-06, 'home-building': 1.6430492035729749e-06, 'Markets': 1.6430492035729749e-06, "Sixties'": 1.6430492035729749e-06, 'Wage-price': 1.6430492035729749e-06, 'wage-price': 4.107623008932437e-06, 'profit-maximizing': 3.2860984071459497e-06, 'entry-limiting': 2.4645738053594624e-06, 'public-limit': 7.393721416078387e-06, 'abstracting': 3.2860984071459497e-06, 'expository': 1.6430492035729749e-06, 'Mathematical': 1.6430492035729749e-06, 'behaves': 2.4645738053594624e-06, 'GNP': 5.750672212505412e-06, 'gouging': 3.2860984071459497e-06, 'entry-limited': 1.6430492035729749e-06, 'non-wage': 1.6430492035729749e-06, 'entry-limit': 1.6430492035729749e-06, 'foreign-entry-limit': 1.6430492035729749e-06, 'wage-rates': 1.6430492035729749e-06, 'acceded': 1.6430492035729749e-06, '3%': 3.2860984071459497e-06, 'cost-of-living': 3.2860984071459497e-06, 'Disagreement': 1.6430492035729749e-06, 'exacerbates': 1.6430492035729749e-06, 'productivity-share': 1.6430492035729749e-06, 'cost-raising': 2.4645738053594624e-06, 'price-level': 1.6430492035729749e-06, 'wage-rate': 1.6430492035729749e-06, 'non-negative': 1.6430492035729749e-06, 'wage-setter': 1.6430492035729749e-06, 'presumption': 3.2860984071459497e-06, 'disproving': 1.6430492035729749e-06, 'union-industry': 1.6430492035729749e-06, 'legislate': 1.6430492035729749e-06, 'opportunistic': 1.6430492035729749e-06, 'alignments': 1.6430492035729749e-06, 'Europeanized': 1.6430492035729749e-06, 'Napoleonic': 1.6430492035729749e-06, 'neutralization': 2.4645738053594624e-06, 'Europeanization': 1.6430492035729749e-06, 'Wheaton': 2.4645738053594624e-06, 'law-governed': 1.6430492035729749e-06, 'misconstruction': 1.6430492035729749e-06, 'ineffectively': 1.6430492035729749e-06, 'conceptually': 1.6430492035729749e-06, 'unifications': 1.6430492035729749e-06, 'Hobbes': 1.6430492035729749e-06, 'jurisprudentially': 1.6430492035729749e-06, 'Hegelian': 3.2860984071459497e-06, "Jellinek's": 1.6430492035729749e-06, 'auto-limitation': 1.6430492035729749e-06, 'self-will': 2.4645738053594624e-06, 'Hidden': 1.6430492035729749e-06, 'jurisprudence': 3.2860984071459497e-06, 'industralization': 1.6430492035729749e-06, 'codification': 2.4645738053594624e-06, 'Codification': 1.6430492035729749e-06, 'positivism': 4.107623008932437e-06, 'judiciary': 2.4645738053594624e-06, 'emanation': 2.4645738053594624e-06, "Hobbes'": 1.6430492035729749e-06, 'amoral': 2.4645738053594624e-06, 'rationalization': 2.4645738053594624e-06, 'bourgeoisie': 1.6430492035729749e-06, 'abrogated': 1.6430492035729749e-06, 'clog': 2.4645738053594624e-06, 'Contract': 1.6430492035729749e-06, 'touchstone': 1.6430492035729749e-06, 'Anzilotti': 1.6430492035729749e-06, 'Pacta': 1.6430492035729749e-06, 'sunt': 1.6430492035729749e-06, 'Servanda': 1.6430492035729749e-06, 'reshaped': 1.6430492035729749e-06, 'nationalize': 1.6430492035729749e-06, 'Admiralty': 1.6430492035729749e-06, 'determinate': 1.6430492035729749e-06, '1875': 4.107623008932437e-06, 'nationalizing': 1.6430492035729749e-06, 'concurrently': 1.6430492035729749e-06, 'federal-right': 1.6430492035729749e-06, 'Substantive': 1.6430492035729749e-06, 'Process': 1.6430492035729749e-06, 'three-judge': 1.6430492035729749e-06, 'injunction': 3.2860984071459497e-06, 'ineffectiveness': 1.6430492035729749e-06, 'enjoin': 1.6430492035729749e-06, "Frankfurter's": 2.4645738053594624e-06, 'Pullman': 1.6430492035729749e-06, 'offending': 1.6430492035729749e-06, 'Reluctant': 1.6430492035729749e-06, 'vacate': 1.6430492035729749e-06, 'Burford': 1.6430492035729749e-06, 'state-law': 1.6430492035729749e-06, 'postponement': 2.4645738053594624e-06, 'adjudicate': 1.6430492035729749e-06, 'unmodified': 1.6430492035729749e-06, 'Ry.': 1.6430492035729749e-06, 'uneconomic': 1.6430492035729749e-06, 'deprivation': 1.6430492035729749e-06, 'injunctive': 1.6430492035729749e-06, 'Justices': 2.4645738053594624e-06, 'swoop': 2.4645738053594624e-06, 'sterilize': 1.6430492035729749e-06, 'federal-question': 1.6430492035729749e-06, 'suable': 1.6430492035729749e-06, 'lawmaking': 2.4645738053594624e-06, 'suability': 1.6430492035729749e-06, 'Erie': 2.4645738053594624e-06, 'decisional': 1.6430492035729749e-06, 'case-by-case': 1.6430492035729749e-06, 'judiciaries': 1.6430492035729749e-06, 'pronouncing': 1.6430492035729749e-06, 'FELA': 2.4645738053594624e-06, 'fooled': 2.4645738053594624e-06, 'parenthetically': 1.6430492035729749e-06, 'evade': 1.6430492035729749e-06, 'ex-Justice': 1.6430492035729749e-06, 'federal-state': 2.4645738053594624e-06, 'Litigants': 2.4645738053594624e-06, 'construing': 1.6430492035729749e-06, 'complainant': 1.6430492035729749e-06, 'pleader': 1.6430492035729749e-06, "plaintiff's": 1.6430492035729749e-06, 'Strict': 1.6430492035729749e-06, 'subsumed': 1.6430492035729749e-06, 'judge-made': 1.6430492035729749e-06, 'dissented': 1.6430492035729749e-06, 'litigant': 2.4645738053594624e-06, 'particularity': 1.6430492035729749e-06, 'delimits': 1.6430492035729749e-06, 'Terminiello': 1.6430492035729749e-06, 'disorderly': 3.2860984071459497e-06, 'amortize': 2.4645738053594624e-06, '381(c)(9)': 1.6430492035729749e-06, 'transferor': 1.0679819823224336e-05, '381(c)(16)': 1.6430492035729749e-06, '381(c)(6)': 2.4645738053594624e-06, '381(c)(14)': 1.6430492035729749e-06, '381': 4.107623008932437e-06, 'tax-avoidance': 1.6430492035729749e-06, '381(c)': 2.4645738053594624e-06, "transferor's": 3.2860984071459497e-06, '203': 6.5721968142918994e-06, 'voids': 1.6430492035729749e-06, '381(a)': 4.107623008932437e-06, 'Seaboard': 4.107623008932437e-06, 'transferee': 2.4645738053594624e-06, 'furthermore': 3.2860984071459497e-06, 'dissolutions': 1.6430492035729749e-06, 'subrogation': 1.6430492035729749e-06, 'Exceptions': 1.6430492035729749e-06, 'complying': 2.4645738053594624e-06, 'non-taxable': 3.2860984071459497e-06, 'reorganizations': 2.4645738053594624e-06, 'transferors': 1.6430492035729749e-06, 'Canneries': 1.6430492035729749e-06, 'Holding': 2.4645738053594624e-06, 'Novo': 1.6430492035729749e-06, 'Roomberg': 1.6430492035729749e-06, 'Kingan': 1.6430492035729749e-06, 'liquidating': 1.6430492035729749e-06, 'anti-assignment': 1.6430492035729749e-06, 'suing': 1.6430492035729749e-06, '368(a)(1)': 3.2860984071459497e-06, '54-17': 2.4645738053594624e-06, 'certificates': 1.6430492035729749e-06, 'Rul.': 1.6430492035729749e-06, 'inapplicable': 2.4645738053594624e-06, 'Kimbell-Diamond': 1.6430492035729749e-06, 'meretricious': 1.6430492035729749e-06, 'contingent-fee': 2.4645738053594624e-06, '1231': 1.6430492035729749e-06, '381(c)(4)': 1.6430492035729749e-06, '1223': 1.6430492035729749e-06, 'grain-storage': 1.6430492035729749e-06, '60-month': 1.6430492035729749e-06, 'Attributes': 1.6430492035729749e-06, 'Brewery': 1.6430492035729749e-06, 'Learned': 1.6430492035729749e-06, 'Sansome': 1.6430492035729749e-06, 'cautions': 1.6430492035729749e-06, 'Reasons': 1.6430492035729749e-06, 'respondents': 7.393721416078387e-06, 'respondent': 7.393721416078387e-06, "respondent's": 1.6430492035729749e-06, 'classifying': 1.6430492035729749e-06, 'Characteristics': 1.6430492035729749e-06, "Respondents'": 4.929147610718925e-06, 'pretest': 1.6430492035729749e-06, 'addressees': 1.6430492035729749e-06, 'questionaire': 1.6430492035729749e-06, 'Aerospace': 4.107623008932437e-06, 'AIA': 9.036770619651361e-06, 'TR': 4.107623008932437e-06, 'airmail': 3.2860984071459497e-06, 'postcards': 1.6430492035729749e-06, 'Twenty-eight': 1.6430492035729749e-06, 'Appendixes': 1.6430492035729749e-06, 'Compilation': 1.6430492035729749e-06, 'out-group': 1.6430492035729749e-06, 'Mailing': 1.6430492035729749e-06, 'Airmail': 1.6430492035729749e-06, 'postage-prepaid': 1.6430492035729749e-06, '4,900': 1.6430492035729749e-06, '3,450': 1.6430492035729749e-06, '1,450': 1.6430492035729749e-06, '1,343': 1.6430492035729749e-06, '26.8': 1.6430492035729749e-06, '5,014': 1.6430492035729749e-06, 'Fifty-seven': 1.6430492035729749e-06, '1,286': 1.6430492035729749e-06, 'Processing': 4.107623008932437e-06, 'postmark': 2.4645738053594624e-06, 'coded': 1.6430492035729749e-06, 'key-punched': 1.6430492035729749e-06, '228': 1.6430492035729749e-06, '650': 1.6430492035729749e-06, 'ASPR': 1.6430492035729749e-06, '1-701': 1.6430492035729749e-06, 'wishing': 4.107623008932437e-06, 'Organizing': 1.6430492035729749e-06, 'AWOC': 4.929147610718925e-06, 'endeavored': 2.4645738053594624e-06, 'consoled': 2.4645738053594624e-06, 'Perluss': 2.4645738053594624e-06, "growers'": 1.6430492035729749e-06, 'trumped-up': 1.6430492035729749e-06, 'bona': 1.6430492035729749e-06, 'fide': 1.6430492035729749e-06, 'sucess': 1.6430492035729749e-06, 'Primarily': 1.6430492035729749e-06, 'Normally': 2.4645738053594624e-06, 'Unemployment': 1.6430492035729749e-06, 'Wagner-Peyser': 8.215246017864873e-06, 'referrals': 6.5721968142918994e-06, 'Migrant': 1.6430492035729749e-06, 'Infrequently': 1.6430492035729749e-06, '2051': 1.6430492035729749e-06, 'lock-outs': 1.6430492035729749e-06, 'empower': 1.6430492035729749e-06, '602.2': 1.6430492035729749e-06, 'Referrals': 1.6430492035729749e-06, 'subparagraph': 1.6430492035729749e-06, 'Assume': 1.6430492035729749e-06, 'fieldwork': 2.4645738053594624e-06, 'Regulation': 5.750672212505412e-06, 'prohibits': 1.6430492035729749e-06, 'Employer': 1.6430492035729749e-06, 'DiGiorgio': 1.6430492035729749e-06, 'Yuba': 2.4645738053594624e-06, "Secretary's": 4.929147610718925e-06, 'Bowers': 1.6430492035729749e-06, 'Butte': 1.6430492035729749e-06, 'Legal': 1.6430492035729749e-06, 'juridical': 1.6430492035729749e-06, 'nullify': 1.6430492035729749e-06, 'sustaining': 1.6430492035729749e-06, 'midair': 2.4645738053594624e-06, 'nonagricultural': 1.6430492035729749e-06, 'strikebreakers': 1.6430492035729749e-06, 'noncompliance': 2.4645738053594624e-06, 'corollary': 2.4645738053594624e-06, 'Stendler': 1.6430492035729749e-06, 'manipulating': 2.4645738053594624e-06, 'concretely': 2.4645738053594624e-06, 'one-year': 1.6430492035729749e-06, 'Emotional': 2.4645738053594624e-06, 'Concerning': 3.2860984071459497e-06, 'preschool': 1.6430492035729749e-06, 'Ridiculing': 1.6430492035729749e-06, 'jostle': 1.6430492035729749e-06, 'frown': 1.6430492035729749e-06, 'negativism': 1.6430492035729749e-06, 'harmoniously': 1.6430492035729749e-06, 'maladjusted': 3.2860984071459497e-06, 'maladjustment': 5.750672212505412e-06, '1,524': 1.6430492035729749e-06, 'maladjustments': 2.4645738053594624e-06, 'overaggressive': 1.6430492035729749e-06, 'glandular': 1.6430492035729749e-06, 'malfunctioning': 1.6430492035729749e-06, 'immaturity': 1.6430492035729749e-06, 'Unwholesome': 1.6430492035729749e-06, 'Sources': 5.750672212505412e-06, 'Cumulative': 1.6430492035729749e-06, 'folders': 1.6430492035729749e-06, 'Middle-South': 3.2860984071459497e-06, 'Intergroup': 1.6430492035729749e-06, 'NAIRO': 2.4645738053594624e-06, 'Harford': 1.6430492035729749e-06, 'plaintiff': 4.929147610718925e-06, 'Knoxville': 1.6430492035729749e-06, 'Pulaski': 1.6430492035729749e-06, 'Fairfax': 2.4645738053594624e-06, 'recapitulation': 1.6430492035729749e-06, 'Dominion': 1.6430492035729749e-06, 'desegregation-from-court-order': 1.6430492035729749e-06, 'all-Negro': 5.750672212505412e-06, '74.1': 1.6430492035729749e-06, '76.7': 1.6430492035729749e-06, 'monolithically': 1.6430492035729749e-06, "Georgetown's": 1.6430492035729749e-06, 'conversion-by-renovation': 1.6430492035729749e-06, 'Foggy': 2.4645738053594624e-06, 'ousting': 1.6430492035729749e-06, 'sharpest': 1.6430492035729749e-06, 'Core': 1.6430492035729749e-06, 'Warrenton': 1.6430492035729749e-06, 'Rockville': 1.6430492035729749e-06, 'conjured': 2.4645738053594624e-06, 'vex': 1.6430492035729749e-06, 'perplex': 1.6430492035729749e-06, 'Correlatively': 1.6430492035729749e-06, 'Pupil': 1.6430492035729749e-06, 'hand-in-glove': 2.4645738053594624e-06, 'desegregate': 1.6430492035729749e-06, 'all-something-or-the-other': 1.6430492035729749e-06, 'infinitesimally': 1.6430492035729749e-06, 'Withholding': 1.6430492035729749e-06, 'AVC': 1.6430492035729749e-06, 'enlists': 1.6430492035729749e-06, 'Required': 1.6430492035729749e-06, 'municipality': 1.6430492035729749e-06, 'Supervisors': 1.6430492035729749e-06, 'marshal': 4.929147610718925e-06, 'legislated': 1.6430492035729749e-06, 'moot': 1.6430492035729749e-06, 'Seldom': 1.6430492035729749e-06, 'working-class': 3.2860984071459497e-06, '172': 1.6430492035729749e-06, 'social-class': 7.393721416078387e-06, 'upper-middle-': 2.4645738053594624e-06, 'lower-middle-class': 3.2860984071459497e-06, 'class-biased': 1.6430492035729749e-06, 'transmits': 1.6430492035729749e-06, "educator's": 1.6430492035729749e-06, 'Wattenberg': 1.6430492035729749e-06, "teacher's": 2.4645738053594624e-06, 'upward-mobile': 2.4645738053594624e-06, 'taskmaster': 1.6430492035729749e-06, 'deprivations': 1.6430492035729749e-06, 'vocational-advancement': 2.4645738053594624e-06, 'upper-': 3.2860984071459497e-06, 'native-born': 1.6430492035729749e-06, 'emphases': 2.4645738053594624e-06, 'unofficially': 1.6430492035729749e-06, 'constituencies': 1.6430492035729749e-06, 'Commissions': 2.4645738053594624e-06, 'expansionist': 1.6430492035729749e-06, 'upper-class': 2.4645738053594624e-06, 'Financing': 2.4645738053594624e-06, 'government-supported': 1.6430492035729749e-06, 'Hollingshead': 1.6430492035729749e-06, "laymen's": 1.6430492035729749e-06, 'P.-T.A.': 1.6430492035729749e-06, 'policy-making': 1.6430492035729749e-06, 'espousal': 1.6430492035729749e-06, 'counterbalancing': 1.6430492035729749e-06, 'Maximizing': 1.6430492035729749e-06, 'school-leaving': 1.6430492035729749e-06, 'equalizing': 1.6430492035729749e-06, 'student-loan': 1.6430492035729749e-06, 'dwarfs': 2.4645738053594624e-06, 'nondiscriminatory': 1.6430492035729749e-06, 'apportionment': 8.215246017864873e-06, 'double-step': 3.2860984071459497e-06, 'expositions': 1.6430492035729749e-06, 'total-cost': 2.4645738053594624e-06, 'apportionments': 2.4645738053594624e-06, 'unallocable': 3.2860984071459497e-06, 'incremental': 1.6430492035729749e-06, 'out-of-pocket': 3.2860984071459497e-06, "economist's": 1.6430492035729749e-06, 'cost-finding': 1.6430492035729749e-06, 'carload': 3.2860984071459497e-06, 'ton-mile': 1.6430492035729749e-06, 'concededly': 1.6430492035729749e-06, 'less-than-carload': 1.6430492035729749e-06, 'Suffice': 1.6430492035729749e-06, 'utility-cost': 1.6430492035729749e-06, 'single-step': 3.2860984071459497e-06, 'parlance': 2.4645738053594624e-06, 'High-tension': 1.6430492035729749e-06, 'low-tension': 1.6430492035729749e-06, 'reapportioned': 1.6430492035729749e-06, 'electric-utility': 1.6430492035729749e-06, 'subtypes': 1.6430492035729749e-06, 'subtype': 3.2860984071459497e-06, '$7,000,000': 1.6430492035729749e-06, '$30,000,000': 1.6430492035729749e-06, '6-2/3': 1.6430492035729749e-06, 'Three-part': 1.6430492035729749e-06, 'steam-generation': 1.6430492035729749e-06, 'outputs': 4.107623008932437e-06, 'kilowatt-hour': 4.107623008932437e-06, 'subdivisions': 1.6430492035729749e-06, 'volumetric': 2.4645738053594624e-06, 'kilowatt-hours': 1.6430492035729749e-06, 'kilowatts': 1.6430492035729749e-06, 'kilowatt': 1.6430492035729749e-06, 'metering': 2.4645738053594624e-06, 'customer-cost': 1.6430492035729749e-06, 'imputation': 2.4645738053594624e-06, 'earmarked': 1.6430492035729749e-06, 'low-voltage': 1.6430492035729749e-06, 'preconditions': 1.6430492035729749e-06, 'unexamined': 1.6430492035729749e-06, 'axiological': 1.6430492035729749e-06, 'mimetically': 1.6430492035729749e-06, 'behaviour': 3.2860984071459497e-06, 'perilously': 3.2860984071459497e-06, 'Rapoport': 1.6430492035729749e-06, 'subatomic': 1.6430492035729749e-06, 'Brodbeck': 1.6430492035729749e-06, 'experientially': 1.6430492035729749e-06, 'sifting': 1.6430492035729749e-06, "Merton's": 1.6430492035729749e-06, 'Nagel': 1.6430492035729749e-06, 'Hempel': 2.4645738053594624e-06, '307': 1.6430492035729749e-06, 'teleology': 1.6430492035729749e-06, 'Functionalism': 1.6430492035729749e-06, 'tyrannize': 1.6430492035729749e-06, 'Bee': 1.6430492035729749e-06, 'flagellation': 1.6430492035729749e-06, 'Wetter': 1.6430492035729749e-06, 'Pt.': 1.6430492035729749e-06, '1957b': 1.6430492035729749e-06, 'Metaphysics': 1.6430492035729749e-06, "Heidegger's": 2.4645738053594624e-06, 'ditch': 8.215246017864873e-06, 'nebular': 1.6430492035729749e-06, 'Laplace': 1.6430492035729749e-06, 'Systeme': 1.6430492035729749e-06, 'Monde': 1.6430492035729749e-06, "Riemann's": 1.6430492035729749e-06, 'space-time': 1.6430492035729749e-06, "Marcel's": 1.6430492035729749e-06, 'Homo': 1.6430492035729749e-06, 'Viator': 1.6430492035729749e-06, 'das': 1.6430492035729749e-06, 'Nichtige': 1.6430492035729749e-06, 'jeers': 1.6430492035729749e-06, 'anthropological': 1.6430492035729749e-06, 'emergent': 2.4645738053594624e-06, 'borderlands': 1.6430492035729749e-06, 'slothful': 1.6430492035729749e-06, 'self-content': 1.6430492035729749e-06, 'vantage-points': 1.6430492035729749e-06, 'Oppenheim': 1.6430492035729749e-06, 'Bergson': 1.6430492035729749e-06, 'verity': 1.6430492035729749e-06, 'sterility': 2.4645738053594624e-06, 'spruced': 1.6430492035729749e-06, 'Merleau-Ponty': 1.6430492035729749e-06, 'hypostatization': 1.6430492035729749e-06, 'philosophies': 1.6430492035729749e-06, 'mystification': 1.6430492035729749e-06, 'fetishize': 1.6430492035729749e-06, 'delphic': 1.6430492035729749e-06, 'McGlynn': 1.6430492035729749e-06, 'mechanist': 1.6430492035729749e-06, 'relativist': 1.6430492035729749e-06, 'Philosophic': 1.6430492035729749e-06, 'incompleteness': 1.6430492035729749e-06, 'goal-oriented': 1.6430492035729749e-06, 'teleological': 1.6430492035729749e-06, 'prescriptive': 1.6430492035729749e-06, 'methodology': 1.6430492035729749e-06, 'presumptions': 1.6430492035729749e-06, 'Simmel': 1.6430492035729749e-06, 'Dilthey': 1.6430492035729749e-06, 'pseudo-questions': 1.6430492035729749e-06, 'universals': 1.6430492035729749e-06, 'wave-particle': 1.6430492035729749e-06, 'reshapes': 1.6430492035729749e-06, 'Uncertainty': 1.6430492035729749e-06, 'precondition': 1.6430492035729749e-06, 'indefiniteness': 1.6430492035729749e-06, 'squeaky': 1.6430492035729749e-06, 'Fiddlesticks': 1.6430492035729749e-06, 'troubling': 2.4645738053594624e-06, 'positivists': 3.2860984071459497e-06, 'commoner': 1.6430492035729749e-06, 'excruciating': 2.4645738053594624e-06, 'positivist': 6.5721968142918994e-06, "animal's": 3.2860984071459497e-06, 'whit': 1.6430492035729749e-06, 'passer-by': 1.6430492035729749e-06, 'repugnance': 1.6430492035729749e-06, 'frivolous': 5.750672212505412e-06, 'groundless': 1.6430492035729749e-06, 'nonoccurrence': 1.6430492035729749e-06, 'distort': 4.107623008932437e-06, 'untrue': 2.4645738053594624e-06, 'subjectivists': 1.6430492035729749e-06, 'Siberian': 1.6430492035729749e-06, "Dostoevsky's": 1.6430492035729749e-06, 'childishly': 2.4645738053594624e-06, 'unfitting': 3.2860984071459497e-06, 'subjectivist': 2.4645738053594624e-06, 'onlooker': 2.4645738053594624e-06, 'repulsion': 1.6430492035729749e-06, 'needlessly': 1.6430492035729749e-06, 'miner': 1.6430492035729749e-06, 'shrapnel': 2.4645738053594624e-06, 'occipital': 2.4645738053594624e-06, 'cerebellum': 1.6430492035729749e-06, 'psychically': 2.4645738053594624e-06, 'Psychical': 1.6430492035729749e-06, 'memory-images': 2.4645738053594624e-06, 'conjure': 1.6430492035729749e-06, 'memory-picture': 1.6430492035729749e-06, 'tactual': 7.393721416078387e-06, 'third-dimensional': 2.4645738053594624e-06, 'Spatial': 1.6430492035729749e-06, 'Spatiality': 1.6430492035729749e-06, 'decidedly': 4.107623008932437e-06, 'psychically-blind': 1.6430492035729749e-06, 'third-dimensionality': 1.6430492035729749e-06, "authors'": 1.6430492035729749e-06, 'skin-perceptiveness': 1.6430492035729749e-06, 'kinesthetic': 4.107623008932437e-06, 'passively': 1.6430492035729749e-06, 'abnormalities': 1.6430492035729749e-06, 'undamaged': 1.6430492035729749e-06, 'portfolio-maker': 2.4645738053594624e-06, 'eyesight': 1.6430492035729749e-06, 'every-day': 1.6430492035729749e-06, 'performance-capacity': 1.6430492035729749e-06, 'long-familiar': 1.6430492035729749e-06, 'jumbled': 3.2860984071459497e-06, 'subfigures': 1.6430492035729749e-06, 'writing-like': 1.6430492035729749e-06, 'hasher': 1.6430492035729749e-06, 'hand-written': 1.6430492035729749e-06, 'corroborate': 2.4645738053594624e-06, 'recount': 2.4645738053594624e-06, 'memory-pictures': 1.6430492035729749e-06, 'figural': 1.6430492035729749e-06, 'surmise': 1.6430492035729749e-06, 'blot-appearance': 1.6430492035729749e-06, 'Dice': 2.4645738053594624e-06, 'readapting': 1.6430492035729749e-06, 'blot-like': 1.6430492035729749e-06, 'kinesthetically': 1.6430492035729749e-06, 'tactually': 1.6430492035729749e-06, '6a': 1.6430492035729749e-06, '9b': 1.6430492035729749e-06, 'Geometric': 1.3965918230370285e-05, 'Homeric': 1.3144393628583799e-05, 'epics': 2.4645738053594624e-06, 'hexameter': 3.2860984071459497e-06, 'vases': 8.215246017864873e-06, 'deducing': 1.6430492035729749e-06, 'Argos': 1.6430492035729749e-06, 'embryo': 1.6430492035729749e-06, 'Minoan-Mycenaean': 1.6430492035729749e-06, 'irruptions': 1.6430492035729749e-06, 'south-eastern': 1.6430492035729749e-06, 'excepting': 1.6430492035729749e-06, 'Protogeometric': 3.2860984071459497e-06, 'non-Greek': 1.6430492035729749e-06, 'Attica': 1.6430492035729749e-06, 'vase': 4.107623008932437e-06, 'ascertainable': 1.6430492035729749e-06, 'Argive': 1.6430492035729749e-06, 'Boeotian': 1.6430492035729749e-06, 'sharper': 3.2860984071459497e-06, 'survivals': 1.6430492035729749e-06, 'Iliad': 1.232286902679731e-05, 'enduringly': 1.6430492035729749e-06, 'crystallized': 1.6430492035729749e-06, 'self-awareness': 1.6430492035729749e-06, 'turnings': 1.6430492035729749e-06, 'excavations': 1.6430492035729749e-06, 'broadens': 2.4645738053594624e-06, 'abruptly': 1.4787442832156774e-05, "Homer's": 1.6430492035729749e-06, 'rosy-fingered': 1.6430492035729749e-06, 'Dawn': 3.2860984071459497e-06, 'slanting': 4.107623008932437e-06, 'Figurines': 1.6430492035729749e-06, 'presage': 1.6430492035729749e-06, 'Dipylon': 3.2860984071459497e-06, 'premonitory': 1.6430492035729749e-06, 'Janus-faced': 1.6430492035729749e-06, 'basileis': 1.6430492035729749e-06, 'anthropomorphic': 1.6430492035729749e-06, 'archaized': 1.6430492035729749e-06, 'sunder': 1.6430492035729749e-06, 'Ripe': 4.107623008932437e-06, 'eschewed': 1.6430492035729749e-06, 'hesitantly': 2.4645738053594624e-06, 'Painters': 1.6430492035729749e-06, 'all-over': 1.6430492035729749e-06, 'Wavy': 1.6430492035729749e-06, 'feather-like': 1.6430492035729749e-06, 'rosettes': 1.6430492035729749e-06, 'Plates': 1.6430492035729749e-06, 'Syrian': 1.6430492035729749e-06, 'Cyclades': 1.6430492035729749e-06, 'exporters': 1.6430492035729749e-06, 'Catskill': 4.929147610718925e-06, 'Martinez': 3.2860984071459497e-06, 'daybreak': 1.6430492035729749e-06, 'Julio': 1.6430492035729749e-06, "Cook's": 1.6430492035729749e-06, 'Mexicans': 1.0679819823224336e-05, 'Pels': 5.750672212505412e-06, 'suspense': 5.750672212505412e-06, 'Pena': 1.6430492035729749e-06, 'Flor': 1.6430492035729749e-06, 'Vermejo': 6.5721968142918994e-06, 'ranches': 2.4645738053594624e-06, 'Beall': 2.4645738053594624e-06, 'Archuleta': 1.6430492035729749e-06, 'horse-trail': 1.6430492035729749e-06, 'Suspecting': 1.6430492035729749e-06, 'canyon': 5.750672212505412e-06, 'Garnett': 1.6430492035729749e-06, "Salyer's": 3.2860984071459497e-06, 'trapper': 2.4645738053594624e-06, 'oak': 6.5721968142918994e-06, 'arroyo': 3.2860984071459497e-06, 'Grabbing': 1.6430492035729749e-06, 'Bullets': 2.4645738053594624e-06, 'Noticing': 2.4645738053594624e-06, 'Dropping': 1.6430492035729749e-06, 'felled': 2.4645738053594624e-06, 'dismounted': 4.929147610718925e-06, "trapper's": 1.6430492035729749e-06, 'two-inches': 1.6430492035729749e-06, "foreman's": 1.6430492035729749e-06, 'bloodhounds': 2.4645738053594624e-06, 'assassins': 1.6430492035729749e-06, 'MacPherson': 3.2860984071459497e-06, 'Chaves': 1.6430492035729749e-06, 'adobe': 2.4645738053594624e-06, 'possemen': 1.6430492035729749e-06, 'underrated': 1.6430492035729749e-06, "posse's": 2.4645738053594624e-06, 'overbearing': 2.4645738053594624e-06, 'Bonito': 1.6430492035729749e-06, 'Lavato': 1.6430492035729749e-06, 'Pedro': 3.2860984071459497e-06, "Chavez'": 1.6430492035729749e-06, 'ambuscade': 1.6430492035729749e-06, 'Laramie': 3.2860984071459497e-06, 'Colfax': 1.6430492035729749e-06, 'docketed': 1.6430492035729749e-06, 'depredations': 3.2860984071459497e-06, 'Manuel': 5.750672212505412e-06, 'Asher': 1.6430492035729749e-06, 'Jose': 2.4645738053594624e-06, '3:00': 1.6430492035729749e-06, 'creek': 7.393721416078387e-06, 'besiegers': 2.4645738053594624e-06, 'Shot': 4.107623008932437e-06, 'Receiving': 2.4645738053594624e-06, 'whereabouts': 4.929147610718925e-06, 'lifeless': 2.4645738053594624e-06, 'Celso': 1.6430492035729749e-06, 'Chavez': 3.2860984071459497e-06, 'Barney': 7.393721416078387e-06, 'Raton': 3.2860984071459497e-06, 'posseman': 1.6430492035729749e-06, 'gun-shot': 1.6430492035729749e-06, 'horsemen': 3.2860984071459497e-06, 'Battenkill': 4.107623008932437e-06, 'Sewer': 1.6430492035729749e-06, 'Bonnet': 1.6430492035729749e-06, 'Connell': 1.6430492035729749e-06, 'Selectmen': 1.6430492035729749e-06, "Way's": 1.6430492035729749e-06, '$230,000': 1.6430492035729749e-06, "Manchester's": 1.6430492035729749e-06, 'telegraphy': 1.6430492035729749e-06, 'Wickham': 1.6430492035729749e-06, 'Burton': 1.3144393628583799e-05, '1846': 1.6430492035729749e-06, 'Goodwin': 2.4645738053594624e-06, 'jeweler': 2.4645738053594624e-06, 'telegrapher': 3.2860984071459497e-06, 'Equinox': 2.4645738053594624e-06, 'Junction': 3.2860984071459497e-06, 'Shares': 1.6430492035729749e-06, '1871': 1.6430492035729749e-06, 'Orvis': 5.750672212505412e-06, 'telegrams': 2.4645738053594624e-06, 'drugstore': 4.929147610718925e-06, 'editorially': 2.4645738053594624e-06, '1878': 1.6430492035729749e-06, 'dime': 4.107623008932437e-06, 'Holley': 1.6430492035729749e-06, 'Dorset': 7.393721416078387e-06, 'flimsy': 2.4645738053594624e-06, 'gusts': 3.2860984071459497e-06, 'toppled': 2.4645738053594624e-06, 'Pettibone': 1.6430492035729749e-06, 'Fowler': 2.4645738053594624e-06, 'Operators': 1.6430492035729749e-06, 'Koop': 1.6430492035729749e-06, 'peremptory': 1.6430492035729749e-06, 'grocer': 1.6430492035729749e-06, 'Hapgood': 2.4645738053594624e-06, "Graves'": 2.4645738053594624e-06, 'Porterhouse': 1.6430492035729749e-06, 'serloin': 1.6430492035729749e-06, 'oranges': 3.2860984071459497e-06, 'Barnumville': 4.107623008932437e-06, 'Londonderry': 2.4645738053594624e-06, 'Windham': 2.4645738053594624e-06, 'Cambridgeport': 1.6430492035729749e-06, "Saxton's": 1.6430492035729749e-06, 'Towsley': 2.4645738053594624e-06, "Hard's": 1.6430492035729749e-06, 'Ekwanok': 1.6430492035729749e-06, 'basked': 1.6430492035729749e-06, 'Simplex': 1.6430492035729749e-06, 'Ellamae': 1.6430492035729749e-06, 'Heckman': 1.6430492035729749e-06, 'Wilcox': 2.4645738053594624e-06, 'Goyette': 1.6430492035729749e-06, "clerk's": 4.929147610718925e-06, 'Mercier': 1.6430492035729749e-06, "Manley's": 1.6430492035729749e-06, 'Marble': 3.2860984071459497e-06, "agent's": 1.6430492035729749e-06, "Thayer's": 1.6430492035729749e-06, "Dufresne's": 1.6430492035729749e-06, 'Dufresne': 1.6430492035729749e-06, 'Bourn': 1.6430492035729749e-06, 'Eber': 1.6430492035729749e-06, "Carleton's": 1.6430492035729749e-06, 'switchboard': 1.6430492035729749e-06, "Woodcock's": 1.6430492035729749e-06, "Hemenway's": 1.6430492035729749e-06, 'Woodcock': 1.6430492035729749e-06, 'troubleshooter': 1.6430492035729749e-06, 'Briggs': 1.6430492035729749e-06, '$2,490': 1.6430492035729749e-06, 'Hitchcock': 2.4645738053594624e-06, 'Blackmer': 3.2860984071459497e-06, "Colvin's": 1.6430492035729749e-06, "Houghton's": 1.6430492035729749e-06, 'gristmill': 1.6430492035729749e-06, 'Isham': 1.6430492035729749e-06, 'Ormsby': 1.6430492035729749e-06, 'Marsden': 4.929147610718925e-06, 'Dellwood': 1.6430492035729749e-06, 'Vail': 3.2860984071459497e-06, 'Creamery': 1.6430492035729749e-06, 'intending': 1.6430492035729749e-06, 'Hydro-Electric': 1.6430492035729749e-06, 'sub-station': 1.6430492035729749e-06, 'transformers': 2.4645738053594624e-06, 'tie-in': 1.6430492035729749e-06, 'phantasy': 2.4645738053594624e-06, 'overflow': 2.4645738053594624e-06, 'festivus': 2.4645738053594624e-06, 'Nec': 1.6430492035729749e-06, 'salutaris': 1.6430492035729749e-06, 'quam': 1.6430492035729749e-06, 'lexicon': 2.4645738053594624e-06, "More's": 6.5721968142918994e-06, 'sedulously': 1.6430492035729749e-06, 'academics': 2.4645738053594624e-06, 'solemnity': 1.6430492035729749e-06, 'brutalities': 1.6430492035729749e-06, 'dispossessed': 2.4645738053594624e-06, 'imbecile': 1.6430492035729749e-06, 'Canon': 1.6430492035729749e-06, 'Ecclesiastical': 1.6430492035729749e-06, 'Medieval': 1.6430492035729749e-06, 'Papal': 1.6430492035729749e-06, "Erasmus's": 1.6430492035729749e-06, 'tenuously': 1.6430492035729749e-06, 'Niccolo': 1.6430492035729749e-06, 'Machiavelli': 1.6430492035729749e-06, 'inconceivable': 1.6430492035729749e-06, 'Humanism': 1.6430492035729749e-06, 'Utopians': 3.2860984071459497e-06, 'full-clad': 1.6430492035729749e-06, '1515': 1.6430492035729749e-06, 'genus': 2.4645738053594624e-06, 'canonist': 1.6430492035729749e-06, 'commonwealth': 2.4645738053594624e-06, 'sharpen': 1.6430492035729749e-06, 'communistic': 1.6430492035729749e-06, 'anachronistically': 1.6430492035729749e-06, 'Janissaries': 1.6430492035729749e-06, 'warrior': 4.929147610718925e-06, 'excursus': 1.6430492035729749e-06, 'ruling-class': 1.6430492035729749e-06, 'lumpish': 1.6430492035729749e-06, 'optimo': 1.6430492035729749e-06, 'reipublicae': 1.6430492035729749e-06, 'statu': 1.6430492035729749e-06, 'indispensible': 1.6430492035729749e-06, 'successors-in-spirit': 1.6430492035729749e-06, 'novitiate': 1.6430492035729749e-06, 'athleticism': 1.6430492035729749e-06, 'Stoics': 1.6430492035729749e-06, 'theologian-philosophers': 1.6430492035729749e-06, 'patristic': 1.6430492035729749e-06, 'millenium': 1.6430492035729749e-06, 'severalty': 1.6430492035729749e-06, 'unalterable': 1.6430492035729749e-06, 'safeguards': 1.6430492035729749e-06, 'Stoic-patristic': 1.6430492035729749e-06, 'bottomless': 1.6430492035729749e-06, 'sieve': 1.6430492035729749e-06, 'ineptly': 1.6430492035729749e-06, 'shreds': 4.929147610718925e-06, 'elaborates': 1.6430492035729749e-06, "Divine's": 1.6430492035729749e-06, '1516': 1.6430492035729749e-06, 'infirm': 1.6430492035729749e-06, 'refectories': 1.6430492035729749e-06, 'Antiquity': 1.6430492035729749e-06, 'Dorr': 3.2860984071459497e-06, 'Abolitionists': 1.6430492035729749e-06, 'misrepresenting': 1.6430492035729749e-06, 'falsify': 2.4645738053594624e-06, 'Patriot': 3.2860984071459497e-06, 'Editor': 1.6430492035729749e-06, 'Foss': 3.2860984071459497e-06, 'calmer': 1.6430492035729749e-06, 'inciting': 1.6430492035729749e-06, 'butchered': 1.6430492035729749e-06, "newspapers'": 1.6430492035729749e-06, 'misnamed': 1.6430492035729749e-06, 'philantropists': 1.6430492035729749e-06, 'actuated': 2.4645738053594624e-06, 'instigate': 1.6430492035729749e-06, 'Advertiser': 1.6430492035729749e-06, 'outwardly': 2.4645738053594624e-06, 'override': 1.6430492035729749e-06, 'remnant': 2.4645738053594624e-06, 'Know-Nothing': 1.6430492035729749e-06, 'Lieutenant-Governor': 1.6430492035729749e-06, 'Elisha': 1.6430492035729749e-06, 'lieutenant-governor': 1.6430492035729749e-06, 'non-resistants': 1.6430492035729749e-06, 'anemated': 1.6430492035729749e-06, 'Trafton': 3.2860984071459497e-06, 'Sympathy': 2.4645738053594624e-06, 'insurrection': 2.4645738053594624e-06, "Trafton's": 1.6430492035729749e-06, 'deserving': 2.4645738053594624e-06, 'Quakeress': 1.6430492035729749e-06, 'fanatics': 2.4645738053594624e-06, "Post's": 1.6430492035729749e-06, 'rebuke': 2.4645738053594624e-06, 'Extraordinary': 1.6430492035729749e-06, 'bells': 5.750672212505412e-06, 'tolled': 1.6430492035729749e-06, "Pratt's": 1.6430492035729749e-06, 'Seated': 3.2860984071459497e-06, 'Barstow': 3.2860984071459497e-06, 'ex-mayor': 1.6430492035729749e-06, 'Garrisonian': 1.6430492035729749e-06, 'Woodbury': 2.4645738053594624e-06, 'Free-Will': 1.6430492035729749e-06, "Woodbury's": 1.6430492035729749e-06, 'impropriety': 1.6430492035729749e-06, 'endeavoring': 2.4645738053594624e-06, 'Resolved': 4.107623008932437e-06, 'bereavements': 1.6430492035729749e-06, 'Cubist': 4.929147610718925e-06, "facet-plane's": 1.6430492035729749e-06, "arm's": 3.2860984071459497e-06, 'eye-undeceiving': 2.4645738053594624e-06, 'contrivances': 1.6430492035729749e-06, 'typography': 3.2860984071459497e-06, 'Braque': 8.215246017864873e-06, 'graining': 1.6430492035729749e-06, 'marbleizing': 1.6430492035729749e-06, 'shuttling': 1.6430492035729749e-06, 'telescoping': 1.6430492035729749e-06, 'fusing': 1.6430492035729749e-06, 'pasting': 1.6430492035729749e-06, 'imitation-woodgrain': 1.6430492035729749e-06, 'wallpaper': 6.5721968142918994e-06, 'simulate': 4.107623008932437e-06, 'collage': 1.3144393628583799e-05, 'imitation-caning': 1.6430492035729749e-06, 'Analytical': 4.929147610718925e-06, "Braque's": 4.107623008932437e-06, 'facet-planes': 3.2860984071459497e-06, 'Cubism': 9.85829522143785e-06, 'eked': 2.4645738053594624e-06, "Picasso's": 3.2860984071459497e-06, 'corporeal': 1.6430492035729749e-06, 'extraneousness': 1.6430492035729749e-06, 'surface-declaring': 1.6430492035729749e-06, 'overshoots': 1.6430492035729749e-06, 'bas-relief': 3.2860984071459497e-06, 'undepicted': 4.107623008932437e-06, 'flatness': 6.5721968142918994e-06, 'Literal': 1.6430492035729749e-06, 'boomerangs': 1.6430492035729749e-06, 'collages': 2.4645738053594624e-06, 'surfaceness': 1.6430492035729749e-06, 'Dish': 1.6430492035729749e-06, "Cooper's": 2.4645738053594624e-06, 'conventionally': 1.6430492035729749e-06, 'sculptural': 2.4645738053594624e-06, "trompe-l'oeil": 1.6430492035729749e-06, 'flatnesses': 1.6430492035729749e-06, 'grape': 3.2860984071459497e-06, 'charcoaled': 1.6430492035729749e-06, 'corporeality': 1.6430492035729749e-06, 'woodgraining': 1.6430492035729749e-06, 'eye-deceiving': 1.6430492035729749e-06, 'painted-in': 1.6430492035729749e-06, 'Planes': 2.4645738053594624e-06, 'optically': 1.6430492035729749e-06, 'pictorially': 1.6430492035729749e-06, 'fictive': 1.6430492035729749e-06, 'Flatness': 1.6430492035729749e-06, 'Depicted': 1.6430492035729749e-06, 'reacts': 1.6430492035729749e-06, 'transforms': 3.2860984071459497e-06, 'literalness': 3.2860984071459497e-06, 'underpins': 1.6430492035729749e-06, 're-creates': 1.6430492035729749e-06, 'reemerged': 1.6430492035729749e-06, 'imaging': 2.4645738053594624e-06, 'three-dimensionality': 2.4645738053594624e-06, 'abstracted': 3.2860984071459497e-06, 'disembodied': 1.6430492035729749e-06, 'expropriated': 1.6430492035729749e-06, 'contour-obliterating': 1.6430492035729749e-06, '1911-1912': 1.6430492035729749e-06, 'hermetic': 1.6430492035729749e-06, 'verge': 2.4645738053594624e-06, 'opted': 2.4645738053594624e-06, 'representational': 2.4645738053594624e-06, 'plumped': 2.4645738053594624e-06, 'juxtaposed': 2.4645738053594624e-06, 'coalesce': 1.6430492035729749e-06, 'planar': 2.4645738053594624e-06, 'atom-like': 1.6430492035729749e-06, 'chain-reaction': 1.6430492035729749e-06, 're-emerged': 1.6430492035729749e-06, 'papiers': 1.6430492035729749e-06, 'colles': 1.6430492035729749e-06, 'Synthetic': 2.4645738053594624e-06, 'exhaustively': 1.6430492035729749e-06, 'legibility': 1.6430492035729749e-06, 'folded': 1.232286902679731e-05, 'skyscraper': 2.4645738053594624e-06, 'rapid-transit': 1.6430492035729749e-06, 'grade-constructed': 1.6430492035729749e-06, 'accesses': 1.6430492035729749e-06, 'intertwined': 4.107623008932437e-06, 'ruinous': 1.6430492035729749e-06, 'Subways': 1.6430492035729749e-06, 'interchanges': 2.4645738053594624e-06, 'mitigates': 2.4645738053594624e-06, 'roadways': 1.6430492035729749e-06, 'slighter': 1.6430492035729749e-06, 'leapfrog': 2.4645738053594624e-06, 'Akron': 1.6430492035729749e-06, "Chrysler's": 1.6430492035729749e-06, "Steel's": 1.6430492035729749e-06, 'long-haul': 1.6430492035729749e-06, 'grille-route': 1.6430492035729749e-06, 'walk-to': 1.6430492035729749e-06, 'Willow': 1.6430492035729749e-06, "Electric's": 1.6430492035729749e-06, 'Syracuse': 1.6430492035729749e-06, 'thruways': 1.6430492035729749e-06, '128': 3.2860984071459497e-06, 'by-pass': 1.6430492035729749e-06, "Land's": 1.6430492035729749e-06, 'Polaroid': 1.6430492035729749e-06, 'non-competitive': 1.6430492035729749e-06, 'cost-plus': 1.6430492035729749e-06, "outskirt's": 1.6430492035729749e-06, 'hotel-motel': 1.6430492035729749e-06, 'central-city': 2.4645738053594624e-06, 'drugstores': 1.6430492035729749e-06, 'haberdasheries': 1.6430492035729749e-06, 'bonnet': 2.4645738053594624e-06, 'congregated': 1.6430492035729749e-06, 'converged': 1.6430492035729749e-06, 'retailer': 1.6430492035729749e-06, "hotelman's": 1.6430492035729749e-06, 'shopping-center': 1.6430492035729749e-06, 'recalculated': 1.6430492035729749e-06, 'profitability': 1.6430492035729749e-06, "rival's": 1.6430492035729749e-06, 'suburbanized': 1.6430492035729749e-06, 'Lazarus': 1.6430492035729749e-06, '46,000': 1.6430492035729749e-06, 'shopper': 1.6430492035729749e-06, 'gadgetry': 1.6430492035729749e-06, 'big-ticket': 1.6430492035729749e-06, 'accountants': 1.6430492035729749e-06, 'ya': 4.107623008932437e-06, 'diagnosticians': 2.4645738053594624e-06, 'Tunnard': 1.6430492035729749e-06, 'suburbanites': 1.6430492035729749e-06, 'superhighways': 1.6430492035729749e-06, "Morgenthau's": 1.6430492035729749e-06, 'cheap-money': 1.6430492035729749e-06, 'householders': 1.6430492035729749e-06, 'high-interest': 1.6430492035729749e-06, 'aegis': 1.6430492035729749e-06, 'Brumidi': 9.85829522143785e-06, 'frescos': 2.4645738053594624e-06, 'Rotunda': 3.2860984071459497e-06, 'meticulous': 1.6430492035729749e-06, 'Correggio': 1.6430492035729749e-06, 'Constantino': 1.6430492035729749e-06, 'Bullfinch': 1.6430492035729749e-06, 'canopy': 2.4645738053594624e-06, 'Filippo': 2.4645738053594624e-06, 'Costaggini': 6.5721968142918994e-06, 'undecorated': 1.6430492035729749e-06, 'roughcast': 3.2860984071459497e-06, 'Architect': 3.2860984071459497e-06, "Brumidi's": 5.750672212505412e-06, 'frescoing': 1.6430492035729749e-06, 'restorers': 1.6430492035729749e-06, 'slaked': 3.2860984071459497e-06, 'Cartoons': 1.6430492035729749e-06, 'scaffolding': 3.2860984071459497e-06, 'roughish': 1.6430492035729749e-06, 'Washed': 1.6430492035729749e-06, 'Cennino': 1.6430492035729749e-06, 'Cennini': 1.6430492035729749e-06, 'Painting': 2.4645738053594624e-06, 'secco': 3.2860984071459497e-06, 'intonaco': 2.4645738053594624e-06, 'awhile': 4.107623008932437e-06, 'stiffer': 1.6430492035729749e-06, 'putty-like': 1.6430492035729749e-06, 'hydrated': 1.6430492035729749e-06, 'Lime': 1.6430492035729749e-06, 'reground': 1.6430492035729749e-06, 'bianco': 1.6430492035729749e-06, 'sangiovanni': 1.6430492035729749e-06, 'titanium': 2.4645738053594624e-06, 'oxide': 3.2860984071459497e-06, 'spotty': 1.6430492035729749e-06, 'tempera': 1.6430492035729749e-06, "Doerner's": 1.6430492035729749e-06, 'putty': 1.6430492035729749e-06, 'waterproof': 2.4645738053594624e-06, 'mutilated': 3.2860984071459497e-06, 'ambitiously': 1.6430492035729749e-06, 'coveting': 1.6430492035729749e-06, 'Whosever': 1.6430492035729749e-06, 'plastering': 1.6430492035729749e-06, 'pyramidal': 1.6430492035729749e-06, "Liberty's": 1.6430492035729749e-06, 'forty-niners': 1.6430492035729749e-06, "Costaggini's": 1.6430492035729749e-06, 'Kitty': 6.5721968142918994e-06, 'Hawk': 6.5721968142918994e-06, 'Brumidi-Costaggini': 1.6430492035729749e-06, 'plank': 5.750672212505412e-06, 'oscillating': 1.6430492035729749e-06, 'mopped': 4.107623008932437e-06, 'sponges': 1.6430492035729749e-06, 'sponging': 1.6430492035729749e-06, 'Necessary': 1.6430492035729749e-06, 'retouching': 1.6430492035729749e-06, 'Landing': 1.6430492035729749e-06, 'Oglethorpe': 1.6430492035729749e-06, 'unsightly': 1.6430492035729749e-06, 'leaky': 2.4645738053594624e-06, 'Pozzatti': 4.929147610718925e-06, 'geo-political': 1.6430492035729749e-06, 'ascribe': 1.6430492035729749e-06, 'preoccupies': 1.6430492035729749e-06, 'anecdotal': 1.6430492035729749e-06, 'shrug': 2.4645738053594624e-06, 'romantically': 1.6430492035729749e-06, 'denunciations': 2.4645738053594624e-06, 'pseudo-patriotism': 1.6430492035729749e-06, 'Difficult': 1.6430492035729749e-06, 'nerve-ends': 1.6430492035729749e-06, "poeple's": 1.6430492035729749e-06, 'Gagarin': 2.4645738053594624e-06, 'turrets': 1.6430492035729749e-06, 'pastures': 2.4645738053594624e-06, 'advantageously': 1.6430492035729749e-06, 'half-light': 1.6430492035729749e-06, 'dexterity': 1.6430492035729749e-06, 'cross-fertilized': 1.6430492035729749e-06, 'mutations': 1.6430492035729749e-06, 'propagate': 1.6430492035729749e-06, 'non-propagating': 1.6430492035729749e-06, 'illogical': 1.6430492035729749e-06, "Lenin's": 1.6430492035729749e-06, 'rejoinder': 1.6430492035729749e-06, 'cherry': 2.4645738053594624e-06, 'motion-pattern': 1.6430492035729749e-06, 'shopworn': 1.6430492035729749e-06, 're-emergence': 1.6430492035729749e-06, 'Realism': 1.6430492035729749e-06, 'petulant': 1.6430492035729749e-06, 'admonition': 1.6430492035729749e-06, 'presume': 3.2860984071459497e-06, 'Impressionism': 1.6430492035729749e-06, 'depressingly': 2.4645738053594624e-06, 'resplendent': 1.6430492035729749e-06, 'Sane': 3.2860984071459497e-06, 'exclusions': 1.6430492035729749e-06, 'trivia': 1.6430492035729749e-06, 'captious': 1.6430492035729749e-06, 'shred': 3.2860984071459497e-06, 'cluttered': 2.4645738053594624e-06, 'outworn': 1.6430492035729749e-06, 'critique': 1.6430492035729749e-06, "Fromm's": 1.3144393628583799e-05, 'normative': 1.6430492035729749e-06, 'Guttman-type': 1.6430492035729749e-06, 'feeling-state': 1.6430492035729749e-06, 'socio-structural': 1.6430492035729749e-06, 'Considered': 1.6430492035729749e-06, 'bureaucratization': 1.6430492035729749e-06, "Means's": 1.6430492035729749e-06, 'survey-type': 2.4645738053594624e-06, 'Hoffer': 1.6430492035729749e-06, 'workingmen': 1.6430492035729749e-06, 'guild': 3.2860984071459497e-06, 'unfelt': 1.6430492035729749e-06, 'conquering': 1.6430492035729749e-06, 'pseudo-happiness': 1.6430492035729749e-06, 'automaton': 1.6430492035729749e-06, 'iniquities': 1.6430492035729749e-06, 'work-satisfaction': 1.6430492035729749e-06, 'unknowingly': 1.6430492035729749e-06, 'marketability': 1.6430492035729749e-06, 'Diagnoses': 1.6430492035729749e-06, 'prognosis': 2.4645738053594624e-06, 'Glance': 1.6430492035729749e-06, 'Burckhardt': 1.6430492035729749e-06, 'Tolstoy': 1.6430492035729749e-06, 'Proudhon': 1.6430492035729749e-06, 'Thoreau': 1.6430492035729749e-06, 'Tawney': 1.6430492035729749e-06, 'Mayo': 1.6430492035729749e-06, 'Tannenbaum': 1.6430492035729749e-06, 'Mumford': 1.6430492035729749e-06, 'Heron': 1.6430492035729749e-06, 'Existentialists': 1.6430492035729749e-06, 'Boris': 9.036770619651361e-06, 'Godunov': 1.6430492035729749e-06, 'lifelike': 3.2860984071459497e-06, "Mussorgsky's": 1.6430492035729749e-06, 'Lully': 1.6430492035729749e-06, 'Purcell': 1.6430492035729749e-06, 'recitative': 2.4645738053594624e-06, 'sensitively': 1.6430492035729749e-06, 'Mussorgsky': 6.5721968142918994e-06, 'liturgical': 2.4645738053594624e-06, "Boris'": 3.2860984071459497e-06, 'monologue': 3.2860984071459497e-06, 'phrasing': 4.107623008932437e-06, 'portraiture': 1.6430492035729749e-06, 'Pimen': 4.929147610718925e-06, 'Varlaam': 4.107623008932437e-06, 'Missail': 3.2860984071459497e-06, 'Rangoni': 5.750672212505412e-06, 'calmness': 2.4645738053594624e-06, "Grigori's": 3.2860984071459497e-06, 'folklike': 1.6430492035729749e-06, "shepherd's": 1.6430492035729749e-06, 'rhythmically': 2.4645738053594624e-06, 'unsophisticated': 1.6430492035729749e-06, 'mild-mannered': 2.4645738053594624e-06, 'ostinato': 1.6430492035729749e-06, 'Kazan': 1.6430492035729749e-06, 'wild-sounding': 1.6430492035729749e-06, 'forcefulness': 1.6430492035729749e-06, "1870's": 1.6430492035729749e-06, "Varlaam's": 2.4645738053594624e-06, "guard's": 4.107623008932437e-06, 'Musically': 1.6430492035729749e-06, 'eerie': 2.4645738053594624e-06, 'blood-kinship': 1.6430492035729749e-06, 'Dappertutto': 1.6430492035729749e-06, "Offenbach's": 1.6430492035729749e-06, "Rangoni's": 2.4645738053594624e-06, 'materialized': 1.6430492035729749e-06, 'concealing': 1.6430492035729749e-06, 'Curiously': 1.6430492035729749e-06, 'Verdi': 3.2860984071459497e-06, 'Amonasro': 2.4645738053594624e-06, 'Aida': 1.6430492035729749e-06, 'sainthood': 1.6430492035729749e-06, 'heretics': 1.6430492035729749e-06, 'sinuously': 1.6430492035729749e-06, 'Grigori': 2.4645738053594624e-06, 'Coming': 4.107623008932437e-06, 'unattainable': 1.6430492035729749e-06, 'Indignantly': 1.6430492035729749e-06, 'denounces': 1.6430492035729749e-06, 'hell-fire': 1.6430492035729749e-06, 'exhorting': 1.6430492035729749e-06, 'duet': 1.6430492035729749e-06, 'Shuiski': 1.6430492035729749e-06, 'choral': 1.6430492035729749e-06, 'Coronation': 1.6430492035729749e-06, 'tonalities': 1.6430492035729749e-06, "Tsar's": 2.4645738053594624e-06, 'halfhearted': 1.6430492035729749e-06, 'acclamation': 1.6430492035729749e-06, "guests'": 2.4645738053594624e-06, 'dissenters': 1.6430492035729749e-06, 'coldness': 4.107623008932437e-06, 'boyars': 1.6430492035729749e-06, 'tenors': 1.6430492035729749e-06, 'basses': 1.6430492035729749e-06, "rulers'": 1.6430492035729749e-06, 'gasping': 4.929147610718925e-06, 'cudgels': 2.4645738053594624e-06, 'Mityukh': 4.929147610718925e-06, 'wail': 3.2860984071459497e-06, "Pimen's": 2.4645738053594624e-06, 'offstage': 1.6430492035729749e-06, 'exit': 6.5721968142918994e-06, 'churchly': 1.6430492035729749e-06, 'trembles': 1.6430492035729749e-06, 'begs': 1.6430492035729749e-06, "Basil's": 2.4645738053594624e-06, 'mayhem': 1.6430492035729749e-06, 'Kromy': 1.6430492035729749e-06, 'sequel': 1.6430492035729749e-06, 'hushed': 2.4645738053594624e-06, 'pizzicato': 1.6430492035729749e-06, 'mocking': 4.107623008932437e-06, 'staccatos': 1.6430492035729749e-06, 'Tsarevich': 1.6430492035729749e-06, 'monolith': 1.6430492035729749e-06, 'Domicilium': 1.6430492035729749e-06, '1860': 3.2860984071459497e-06, 'Rise': 1.6430492035729749e-06, 'seventy-odd': 1.6430492035729749e-06, 'Noyes': 1.6430492035729749e-06, 'notebook': 2.4645738053594624e-06, 'neglects': 1.6430492035729749e-06, "Hardy's": 1.3144393628583799e-05, 'intermittently': 2.4645738053594624e-06, 'predominates': 1.6430492035729749e-06, 'Swinburne': 2.4645738053594624e-06, 'Satires': 3.2860984071459497e-06, 'Circumstance': 3.2860984071459497e-06, 'Poems': 4.929147610718925e-06, "1860's": 1.6430492035729749e-06, 'Laughing': 1.6430492035729749e-06, 'Stocks': 1.6430492035729749e-06, 'Dynasts': 3.2860984071459497e-06, 'Vision': 1.6430492035729749e-06, '1881': 2.4645738053594624e-06, 'viewless': 2.4645738053594624e-06, 'Poesy': 1.6430492035729749e-06, 'worrying': 4.929147610718925e-06, 'pettinesses': 1.6430492035729749e-06, '302': 1.6430492035729749e-06, "'80's": 1.6430492035729749e-06, 'Tess': 1.6430492035729749e-06, 'seventies': 1.6430492035729749e-06, 'five-and-twenty': 1.6430492035729749e-06, 'pruned': 1.6430492035729749e-06, 'Shakespearian': 1.6430492035729749e-06, 'Revulsion': 4.107623008932437e-06, '1866': 1.6430492035729749e-06, 'Tones': 4.929147610718925e-06, '1867': 1.6430492035729749e-06, 'anonymity': 2.4645738053594624e-06, 'evoking': 1.6430492035729749e-06, 'stanza-form': 1.6430492035729749e-06, 'a-wing': 1.6430492035729749e-06, 'wrings': 1.6430492035729749e-06, 'God-curst': 1.6430492035729749e-06, 'Weathers': 1.6430492035729749e-06, 'Darkling': 1.6430492035729749e-06, 'Madding': 1.6430492035729749e-06, 'Crowd': 1.6430492035729749e-06, 'Yeats': 1.6430492035729749e-06, "speaker's": 1.6430492035729749e-06, 'elegy': 1.6430492035729749e-06, 'expiation': 2.4645738053594624e-06, 'rearranged': 1.6430492035729749e-06, 'Collected': 1.6430492035729749e-06, 'pastness': 1.6430492035729749e-06, 'deadness': 1.6430492035729749e-06, 'epigraph': 1.6430492035729749e-06, 'charred': 1.6430492035729749e-06, 'uncomforted': 1.6430492035729749e-06, 'Critically': 1.6430492035729749e-06, 'Disaffiliation': 1.6430492035729749e-06, 'Epigraph': 1.6430492035729749e-06, 'disaffiliate': 1.6430492035729749e-06, 'Titans': 1.6430492035729749e-06, "Dante's": 1.6430492035729749e-06, 'saxophonist': 1.6430492035729749e-06, 'conflagration': 1.6430492035729749e-06, "Jimbo's": 1.6430492035729749e-06, 'Evil': 2.4645738053594624e-06, 'spiraled': 1.6430492035729749e-06, 'rationality': 1.6430492035729749e-06, 'inanimate': 2.4645738053594624e-06, 'rapture': 3.2860984071459497e-06, "Thomas's": 5.750672212505412e-06, 'blood-stained': 1.6430492035729749e-06, 'silken': 1.6430492035729749e-06, "Horace's": 1.6430492035729749e-06, 'imperishable': 1.6430492035729749e-06, 'Augustan': 1.6430492035729749e-06, 'partook': 1.6430492035729749e-06, 'ovens': 1.6430492035729749e-06, 'innovators': 1.6430492035729749e-06, 'Reverdy': 1.6430492035729749e-06, 'Apollinaire': 2.4645738053594624e-06, 'overrated': 1.6430492035729749e-06, 'jitterbug': 1.6430492035729749e-06, 'aficionado': 1.6430492035729749e-06, 'Roach': 1.6430492035729749e-06, 'anomaly': 1.6430492035729749e-06, 'ornamentation': 1.6430492035729749e-06, 'pulsations': 1.6430492035729749e-06, 'strophe': 1.6430492035729749e-06, 'Mozart': 2.4645738053594624e-06, 'syntactical': 1.6430492035729749e-06, 'Rimbaud': 1.6430492035729749e-06, 'fascinate': 3.2860984071459497e-06, 'backwater': 1.6430492035729749e-06, 'embroideries': 1.6430492035729749e-06, 'Emotionally': 2.4645738053594624e-06, 'Berlioz': 1.6430492035729749e-06, 'impassive': 1.6430492035729749e-06, 'Partly': 3.2860984071459497e-06, 'talk-aboutiveness': 1.6430492035729749e-06, 'rendition': 1.6430492035729749e-06, 'saxophone': 4.107623008932437e-06, 'embouchure': 1.6430492035729749e-06, 'Metrically': 1.6430492035729749e-06, 'enrage': 1.6430492035729749e-06, 'Ornament': 1.6430492035729749e-06, 'confabulation': 2.4645738053594624e-06, 'interstices': 1.6430492035729749e-06, 'confabulations': 1.6430492035729749e-06, 'Confabulation': 1.6430492035729749e-06, 'Uninhibited': 1.6430492035729749e-06, 'corn-belt': 1.6430492035729749e-06, 'metaphysicals': 1.6430492035729749e-06, 'Tate': 2.4645738053594624e-06, 'Valery': 3.2860984071459497e-06, 'Eluard': 2.4645738053594624e-06, 'extinct': 1.6430492035729749e-06, 'Apocalypse': 1.6430492035729749e-06, 'Treece': 1.6430492035729749e-06, 'Hendry': 1.6430492035729749e-06, 'ebb': 1.6430492035729749e-06, 'by-passes': 1.6430492035729749e-06, 'Baudelaire': 1.6430492035729749e-06, 'Gertrude': 4.929147610718925e-06, 'cubist': 2.4645738053594624e-06, 'surrealists': 1.6430492035729749e-06, 'Breton': 1.6430492035729749e-06, 'Continuity': 1.6430492035729749e-06, 'exits': 1.6430492035729749e-06, 'neo-swing': 1.6430492035729749e-06, 'Surrealists': 1.6430492035729749e-06, 'soles': 4.929147610718925e-06, 'self-deluded': 1.6430492035729749e-06, 'expressionists': 2.4645738053594624e-06, 'apostles': 1.6430492035729749e-06, 'all-consuming': 1.6430492035729749e-06, 'incidentals': 1.6430492035729749e-06, 'Rothko': 1.6430492035729749e-06, 'Clyfford': 1.6430492035729749e-06, 'Motherwell': 1.6430492035729749e-06, 'Willem': 1.6430492035729749e-06, 'De-Kooning': 1.6430492035729749e-06, 'mother-of-pearl': 2.4645738053594624e-06, 'shimmer': 1.6430492035729749e-06, 'McFee': 1.6430492035729749e-06, 'drapery': 2.4645738053594624e-06, 'calligraphy': 1.6430492035729749e-06, 'painteresque': 1.6430492035729749e-06, 'Sesshu': 1.6430492035729749e-06, 'Tiepolo': 3.2860984071459497e-06, 'confabulated': 1.6430492035729749e-06, 'bijouterie': 1.6430492035729749e-06, 'Ashikaga': 1.6430492035729749e-06, 'wallpapers': 1.6430492035729749e-06, 'expressionism': 2.4645738053594624e-06, "Hrothgar's": 1.6430492035729749e-06, 'bard': 3.2860984071459497e-06, 'Finnsburg': 1.6430492035729749e-06, '1068': 1.6430492035729749e-06, '1159': 1.6430492035729749e-06, 'improvises': 1.6430492035729749e-06, "Beowulf's": 1.6430492035729749e-06, 'Geatish': 1.6430492035729749e-06, 'Sigemund': 1.6430492035729749e-06, '871': 1.6430492035729749e-06, '892': 1.6430492035729749e-06, "Alcinous'": 1.6430492035729749e-06, 'Ares': 1.6430492035729749e-06, 'Aphrodite': 1.6430492035729749e-06, 'Odyssey': 9.036770619651361e-06, '266-366': 1.6430492035729749e-06, 'Odysseus': 1.6430492035729749e-06, 'Ithacan': 1.6430492035729749e-06, 'wanderer': 1.6430492035729749e-06, '499-520': 1.6430492035729749e-06, 'Deor': 1.6430492035729749e-06, 'Widsith': 1.6430492035729749e-06, 'Beowulf': 1.232286902679731e-05, 'minstrel': 2.4645738053594624e-06, 'Demodocus': 1.6430492035729749e-06, 'poetizing': 2.4645738053594624e-06, 'Milman': 1.6430492035729749e-06, 'Parry': 1.6430492035729749e-06, 'formulaic': 1.0679819823224336e-05, 'Proceeding': 3.2860984071459497e-06, "Parry's": 1.6430492035729749e-06, 'schemata': 1.6430492035729749e-06, 'Magoun': 2.4645738053594624e-06, 'skilful': 1.6430492035729749e-06, 'Assonance': 1.6430492035729749e-06, 'Malmesbury': 1.6430492035729749e-06, 'intoned': 4.107623008932437e-06, 'Hastings': 1.6430492035729749e-06, 'alliterative': 1.6430492035729749e-06, 'credibly': 1.6430492035729749e-06, 'incurring': 1.6430492035729749e-06, 'improvise': 2.4645738053594624e-06, 'kennings': 9.036770619651361e-06, 'alliteration': 1.6430492035729749e-06, 'synonyms': 3.2860984071459497e-06, 'nouns': 2.4645738053594624e-06, 'loosest': 1.6430492035729749e-06, 'Gar-Dene': 2.4645738053594624e-06, 'kenning': 1.6430492035729749e-06, 'adverbial': 1.6430492035729749e-06, 'near-equivalents': 1.6430492035729749e-06, 'circumlocution': 1.6430492035729749e-06, 'Homerists': 1.6430492035729749e-06, 'Combellack': 2.4645738053594624e-06, 'redactor': 2.4645738053594624e-06, 'fellow-craftsmen': 1.6430492035729749e-06, 'vaster': 1.6430492035729749e-06, 'plagiarism': 1.6430492035729749e-06, 'modus': 1.6430492035729749e-06, 'dicendi': 1.6430492035729749e-06, 'mot': 1.6430492035729749e-06, 'juste': 1.6430492035729749e-06, 'time-servers': 1.6430492035729749e-06, 'inappropriateness': 1.6430492035729749e-06, 'scops': 1.6430492035729749e-06, 'awry': 2.4645738053594624e-06, 'Time-servers': 1.6430492035729749e-06, 'periphrastic': 1.6430492035729749e-06, 'Nouns': 1.6430492035729749e-06, 'nonce': 1.6430492035729749e-06, 'Reliance': 1.6430492035729749e-06, 'no-one': 1.6430492035729749e-06, 'Heorot': 1.6430492035729749e-06, 'Priam': 2.4645738053594624e-06, 'dry-dock': 1.6430492035729749e-06, 'foamy-necked': 1.6430492035729749e-06, 'floater': 1.6430492035729749e-06, 'Hrothgar': 1.6430492035729749e-06, 'EUMMELIHS': 1.6430492035729749e-06, 'Achilles': 1.6430492035729749e-06, 'Siegfried': 1.6430492035729749e-06, 'Nibelungenlied': 1.6430492035729749e-06, 'swiftest': 1.6430492035729749e-06, 'swift-footed': 1.6430492035729749e-06, 'Coriolanus': 1.6430492035729749e-06, 'agnomen': 1.6430492035729749e-06, 'Marcius': 1.6430492035729749e-06, 'referent': 1.6430492035729749e-06, 'biographers': 1.6430492035729749e-06, 'scribe': 1.6430492035729749e-06, 'matured': 2.4645738053594624e-06, 'Cynewulf': 3.2860984071459497e-06, 'vitiated': 1.6430492035729749e-06, 'runes': 1.6430492035729749e-06, 'amanuensis': 1.6430492035729749e-06, 'hysteron-proteron': 1.6430492035729749e-06, 'Eduard': 1.6430492035729749e-06, 'Schmidt': 1.6430492035729749e-06, '1804': 1.6430492035729749e-06, '2118': 1.6430492035729749e-06, '5612': 1.6430492035729749e-06, 'scop': 1.6430492035729749e-06, 're-used': 1.6430492035729749e-06, 'line-fragments': 1.6430492035729749e-06, 'extemporize': 1.6430492035729749e-06, 'deftness': 1.6430492035729749e-06, 'ASPIS': 1.6430492035729749e-06, 'SAKOS': 1.6430492035729749e-06, 'Expectations': 6.5721968142918994e-06, 'Zabel': 1.6430492035729749e-06, "novel's": 1.6430492035729749e-06, 'fruitfully': 1.6430492035729749e-06, "actor's": 1.6430492035729749e-06, 'individualizing': 1.6430492035729749e-06, 'dramatizing': 1.6430492035729749e-06, 'Jaggers': 2.4645738053594624e-06, 'forefinger': 5.750672212505412e-06, 'abstractedness': 1.6430492035729749e-06, 'fascinates': 1.6430492035729749e-06, 'terrifies': 2.4645738053594624e-06, "Havisham's": 1.6430492035729749e-06, 'withered': 2.4645738053594624e-06, 'self-pity': 3.2860984071459497e-06, "Pumblechook's": 2.4645738053594624e-06, 'Wemmick': 2.4645738053594624e-06, "Pocket's": 1.6430492035729749e-06, 'social-climbing': 1.6430492035729749e-06, 'Gargery': 2.4645738053594624e-06, 'mannerisms': 1.6430492035729749e-06, "Dickens'": 2.4645738053594624e-06, 'leitmotif': 1.6430492035729749e-06, 'motivate': 1.6430492035729749e-06, 'greed': 3.2860984071459497e-06, 'policeman-murderer': 1.6430492035729749e-06, "Burke's": 1.6430492035729749e-06, 'Ottermole': 1.6430492035729749e-06, "Orlick's": 3.2860984071459497e-06, "Pip's": 1.1501344425010824e-05, 'steals': 1.6430492035729749e-06, 'pantry': 2.4645738053594624e-06, 'gothic': 1.6430492035729749e-06, 'mystery-story': 1.6430492035729749e-06, 'frantically': 7.393721416078387e-06, 'nemesis': 4.107623008932437e-06, 'eluding': 2.4645738053594624e-06, 'Magwitch': 2.4645738053594624e-06, 'Pip': 1.7252016637516235e-05, 'bogy': 2.4645738053594624e-06, 'imbruing': 1.6430492035729749e-06, 'signpost': 2.4645738053594624e-06, 'Hulks': 1.6430492035729749e-06, 'flees': 1.6430492035729749e-06, 'accusingly': 2.4645738053594624e-06, 'handcuffs': 2.4645738053594624e-06, "Gargery's": 1.6430492035729749e-06, 'forge': 4.107623008932437e-06, 'mending': 3.2860984071459497e-06, "Magwitch's": 4.107623008932437e-06, "convict's": 1.6430492035729749e-06, 'reappearance': 2.4645738053594624e-06, 'Orlick': 3.2860984071459497e-06, 'slouches': 1.6430492035729749e-06, 'shouts': 4.929147610718925e-06, 'objecting': 1.6430492035729749e-06, 'claps': 2.4645738053594624e-06, 'tantrum': 2.4645738053594624e-06, 'clenches': 1.6430492035729749e-06, 'rampage': 1.6430492035729749e-06, 'hammer': 6.5721968142918994e-06, 'sluicehouse': 1.6430492035729749e-06, 'bangs': 4.107623008932437e-06, 'unclenched': 1.6430492035729749e-06, 'scarred': 2.4645738053594624e-06, "Jaggers'": 2.4645738053594624e-06, 'hesitatingly': 1.6430492035729749e-06, 'contriving': 1.6430492035729749e-06, 'brambles': 1.6430492035729749e-06, 'fingernails': 2.4645738053594624e-06, "Estella's": 1.6430492035729749e-06, 'knitting': 1.6430492035729749e-06, 'Satis': 2.4645738053594624e-06, 'Compeyson': 2.4645738053594624e-06, 'archenemy': 1.6430492035729749e-06, 'betrayer': 1.6430492035729749e-06, 'vicelike': 1.6430492035729749e-06, 'flats': 2.4645738053594624e-06, 'death-locked': 1.6430492035729749e-06, 'drowns': 1.6430492035729749e-06, 'acquisitiveness': 1.6430492035729749e-06, 'toadyism': 1.6430492035729749e-06, 'trousers-pockets': 1.6430492035729749e-06, "Dreiser's": 1.6430492035729749e-06, 'reproaches': 1.6430492035729749e-06, 'sullying': 1.6430492035729749e-06, 'Estella': 4.107623008932437e-06, 'cruelly': 4.107623008932437e-06, 'coarseness': 1.6430492035729749e-06, 'appendages': 1.6430492035729749e-06, 'smithy': 1.6430492035729749e-06, 'artificiality': 1.6430492035729749e-06, 'commonness': 1.6430492035729749e-06, 'alienates': 1.6430492035729749e-06, 'handshake': 1.6430492035729749e-06, 'exclaims': 1.6430492035729749e-06, 'Havisham': 3.2860984071459497e-06, 'kneels': 1.6430492035729749e-06, 'signalizes': 1.6430492035729749e-06, 'patroness': 1.6430492035729749e-06, 'nostalgically': 1.6430492035729749e-06, 'finger-post': 2.4645738053594624e-06, 'pointer': 2.4645738053594624e-06, 'designates': 1.6430492035729749e-06, 'reintroduces': 1.6430492035729749e-06, 'associatively': 1.6430492035729749e-06, 'Pocket': 4.107623008932437e-06, 'magnetisms': 1.6430492035729749e-06, 'vulture-like': 1.6430492035729749e-06, 'hypocritical': 2.4645738053594624e-06, 'feigned': 1.6430492035729749e-06, 'spasm': 3.2860984071459497e-06, 'grief-stricken': 2.4645738053594624e-06, 'travesty': 1.6430492035729749e-06, 'self-aggrandizement': 1.6430492035729749e-06, 'hundredth': 2.4645738053594624e-06, 'effusive': 1.6430492035729749e-06, 'congratulation': 1.6430492035729749e-06, 'Pumblechook': 1.6430492035729749e-06, 'gloats': 1.6430492035729749e-06, 'canting': 1.6430492035729749e-06, 'ingratitoode': 1.6430492035729749e-06, 'sycophantic': 1.6430492035729749e-06, 'tailor': 2.4645738053594624e-06, 'Trabb': 1.6430492035729749e-06, 'fawning': 1.6430492035729749e-06, 'elbow': 6.5721968142918994e-06, 'confers': 1.6430492035729749e-06, 'over-hand': 1.6430492035729749e-06, 'operands': 1.6430492035729749e-06, 'synchronizers': 2.4645738053594624e-06, 'EQU': 4.929147610718925e-06, 'Autocoder': 9.036770619651361e-06, 'operand': 1.3965918230370285e-05, 'coding': 3.2860984071459497e-06, 'left-justified': 1.6430492035729749e-06, 'header': 1.6430492035729749e-06, 'compiler': 4.929147610718925e-06, 'NOP': 1.6430492035729749e-06, 'macro-instructions': 3.2860984071459497e-06, '106': 2.4645738053594624e-06, 'Reservation': 1.6430492035729749e-06, 'processor': 4.107623008932437e-06, 'Compiler': 2.4645738053594624e-06, '7070/7074': 4.107623008932437e-06, 'two-digit': 4.929147610718925e-06, 'Index': 4.929147610718925e-06, 'XRESERVE': 1.6430492035729749e-06, 'SRESERVE': 1.6430492035729749e-06, 'LITORIGIN': 2.4645738053594624e-06, 'sectionalized': 1.6430492035729749e-06, 'multi-phase': 1.6430492035729749e-06, 'XRELEASE': 2.4645738053594624e-06, 'SRELEASE': 2.4645738053594624e-06, 'Switches': 1.6430492035729749e-06, 'Declarative': 2.4645738053594624e-06, 'DA': 5.750672212505412e-06, 'Define': 6.5721968142918994e-06, 'DC': 5.750672212505412e-06, 'DRDW': 3.2860984071459497e-06, 'DSW': 2.4645738053594624e-06, 'Switch': 1.6430492035729749e-06, 'DLINE': 3.2860984071459497e-06, 'Equate': 1.6430492035729749e-06, 'CODE,DTF': 1.6430492035729749e-06, 'DIOCS': 6.5721968142918994e-06, 'Input/Output': 4.107623008932437e-06, 'DUF': 4.929147610718925e-06, 'Descriptive': 1.6430492035729749e-06, 'Entry': 1.6430492035729749e-06, 'DTF': 3.2860984071459497e-06, '7070': 3.2860984071459497e-06, '7074': 1.6430492035729749e-06, 'RDWS': 4.107623008932437e-06, 'RDW': 2.4645738053594624e-06, 'xxxx': 1.6430492035729749e-06, 'yyyy': 1.6430492035729749e-06, 'programmer': 3.2860984071459497e-06, 'SETSW': 1.6430492035729749e-06, 'digit': 1.6430492035729749e-06, 'ESN': 1.6430492035729749e-06, 'BSN': 1.6430492035729749e-06, 'EDMOV': 1.6430492035729749e-06, 'subroutine': 1.6430492035729749e-06, 'subroutines': 1.6430492035729749e-06, 'formats': 1.6430492035729749e-06, 'diocs': 1.6430492035729749e-06, 'input/output': 1.6430492035729749e-06, 'anylabel': 1.6430492035729749e-06, 'IOCSIXF': 3.2860984071459497e-06, 'IOCS': 2.4645738053594624e-06, 'one-digit': 2.4645738053594624e-06, '94': 2.4645738053594624e-06, 'IOCSIXG': 3.2860984071459497e-06, 'ponds': 6.5721968142918994e-06, 'wastewater': 2.4645738053594624e-06, 'BOD': 1.4787442832156774e-05, 'effluent': 1.5608967433943262e-05, 'mg/l': 9.036770619651361e-06, 'effluents': 1.6430492035729749e-06, 'aerator': 9.85829522143785e-06, 'hp.': 2.4645738053594624e-06, 'Eckenfelder': 2.4645738053594624e-06, 'aerated': 8.215246017864873e-06, 'lagoons': 2.4645738053594624e-06, '4-day': 2.4645738053594624e-06, 'lagoon': 1.1501344425010824e-05, 'Subdivision': 3.2860984071459497e-06, '4.77': 1.6430492035729749e-06, '1,230': 1.6430492035729749e-06, 'septic': 3.2860984071459497e-06, 'aerobic': 1.6430492035729749e-06, 'nitrate': 3.2860984071459497e-06, 'algae': 6.5721968142918994e-06, 'anaerobic': 1.6430492035729749e-06, 'Pilot': 2.4645738053594624e-06, 'ft': 4.107623008932437e-06, 'diam': 2.4645738053594624e-06, '121,000': 1.6430492035729749e-06, 'fiberglas': 1.6430492035729749e-06, '314': 1.6430492035729749e-06, '18-month': 1.6430492035729749e-06, '3-hp.': 1.6430492035729749e-06, 'variable-speed': 1.6430492035729749e-06, '24-hr.': 7.393721416078387e-06, 'Weekly': 1.6430492035729749e-06, '6-hr.': 4.107623008932437e-06, 'Examination': 2.4645738053594624e-06, 'composites': 1.6430492035729749e-06, 'Grab': 4.107623008932437e-06, 'influent': 2.4645738053594624e-06, '710': 1.6430492035729749e-06, 'mg/lBOD': 1.6430492035729749e-06, '76-per-cent': 1.6430492035729749e-06, 'Ice': 2.4645738053594624e-06, 'slippage': 1.6430492035729749e-06, 'BOD/day': 1.6430492035729749e-06, 'BOD/day/1,000': 1.6430492035729749e-06, 'cu': 1.6430492035729749e-06, '270': 2.4645738053594624e-06, 'BOD/day/acre': 1.6430492035729749e-06, 'sludge': 4.107623008932437e-06, 'grindings': 1.6430492035729749e-06, 'metabolized': 1.6430492035729749e-06, 'weir': 2.4645738053594624e-06, 'MLSS': 1.6430492035729749e-06, '14.5': 1.6430492035729749e-06, 'mg/l/hr': 2.4645738053594624e-06, '1.2': 1.6430492035729749e-06, 'rotor': 5.750672212505412e-06, 'resuspension': 1.6430492035729749e-06, 'microbial': 1.6430492035729749e-06, 'Removal': 1.6430492035729749e-06, 'sedimentation': 1.6430492035729749e-06, 'runoff': 2.4645738053594624e-06, 'Routine': 2.4645738053594624e-06, 'McKinney': 1.6430492035729749e-06, 'Gram': 1.6430492035729749e-06, 'protozoa': 6.5721968142918994e-06, 'floc': 3.2860984071459497e-06, 'flagellated': 1.6430492035729749e-06, 'predominated': 1.6430492035729749e-06, 'ciliated': 3.2860984071459497e-06, '40-degrees-F': 1.6430492035729749e-06, '32-degrees-F': 1.6430492035729749e-06, 'protozoan': 1.6430492035729749e-06, 'stalked': 6.5721968142918994e-06, 'ciliates': 1.6430492035729749e-06, 'predomination': 1.6430492035729749e-06, 'Oxygen': 1.6430492035729749e-06, 'determinations': 2.4645738053594624e-06, '1.0-mg.': 1.6430492035729749e-06, 'l.': 2.4645738053594624e-06, '10-degrees-C': 1.6430492035729749e-06, 'lb/day': 1.6430492035729749e-06, '9.3': 1.6430492035729749e-06, 'Oxidation': 1.6430492035729749e-06, 'nuisances': 1.6430492035729749e-06, '147,000': 1.6430492035729749e-06, 'gpd': 1.6430492035729749e-06, "BOD's": 1.6430492035729749e-06, 'antisubmarine': 4.107623008932437e-06, 'overlaps': 1.6430492035729749e-06, 'amphibious': 1.6430492035729749e-06, 'Submarines': 1.6430492035729749e-06, 'reoriented': 1.6430492035729749e-06, 'Operational': 1.6430492035729749e-06, 'oceanography': 2.4645738053594624e-06, 'Necessity': 1.6430492035729749e-06, 'ASW': 2.4645738053594624e-06, 'delineating': 2.4645738053594624e-06, "Industry's": 1.6430492035729749e-06, 'preponderance': 2.4645738053594624e-06, 'fleets': 1.6430492035729749e-06, 'unwillingly': 1.6430492035729749e-06, 'Attack': 2.4645738053594624e-06, 'Destruction': 1.6430492035729749e-06, 'Antisubmarine': 1.6430492035729749e-06, 'weaponry': 1.6430492035729749e-06, 'torpedo': 1.6430492035729749e-06, "plan's": 1.6430492035729749e-06, 'Conceivably': 1.6430492035729749e-06, 'Shipbuilding': 1.6430492035729749e-06, 'breakthroughs': 1.6430492035729749e-06, 'asw': 1.6430492035729749e-06, 'sub-surface': 1.6430492035729749e-06, 'vociferousness': 1.6430492035729749e-06, 'Environmental': 1.6430492035729749e-06, 'co-operates': 1.6430492035729749e-06, 'Gathering': 1.6430492035729749e-06, 'oceanographic': 2.4645738053594624e-06, 'Approaching': 1.6430492035729749e-06, 'counter-efforts': 1.6430492035729749e-06, 'Mines': 6.5721968142918994e-06, 'Effective': 1.6430492035729749e-06, 'Yucatan': 1.6430492035729749e-06, 'inshore': 2.4645738053594624e-06, 'burglar': 1.6430492035729749e-06, 'alarms': 1.6430492035729749e-06, 'localize': 1.6430492035729749e-06, 'pinpointing': 1.6430492035729749e-06, "target's": 1.6430492035729749e-06, 'ambushed': 2.4645738053594624e-06, 'metabolites': 1.6430492035729749e-06, 'p-aminobenzoic': 1.6430492035729749e-06, 'PABA': 2.4645738053594624e-06, 'cofactors': 1.6430492035729749e-06, 'hydroxylation': 1.6430492035729749e-06, 'aniline': 1.6430492035729749e-06, 'acid-fast': 1.6430492035729749e-06, 'biosynthesized': 1.6430492035729749e-06, 'carbons': 2.4645738053594624e-06, 'metabolite': 4.929147610718925e-06, 'ring-labeled': 1.6430492035729749e-06, 'carboxy-labeled': 1.6430492035729749e-06, 'hydrolysis': 4.929147610718925e-06, 'Metabolite': 1.6430492035729749e-06, 'endogenous': 1.6430492035729749e-06, 'Vigorous': 1.6430492035729749e-06, 'aryl': 1.6430492035729749e-06, 'amines': 1.6430492035729749e-06, 'Fragment': 1.6430492035729749e-06, 'dioxalate': 1.6430492035729749e-06, 'cleaved': 1.6430492035729749e-06, 'amide': 1.6430492035729749e-06, 'Sloane': 3.2860984071459497e-06, 'K.G.': 1.6430492035729749e-06, 'Untch': 1.6430492035729749e-06, 'esterases': 2.4645738053594624e-06, 'arylesterases': 1.6430492035729749e-06, 'lanthanum': 1.6430492035729749e-06, 'arylesterase': 3.2860984071459497e-06, 'inactivation': 2.4645738053594624e-06, 'urea': 1.6430492035729749e-06, 'guanidine': 1.6430492035729749e-06, 'non-identity': 1.6430492035729749e-06, 'paraoxon': 1.6430492035729749e-06, 'hydrolyzed': 1.6430492035729749e-06, 'Investigations': 1.6430492035729749e-06, 'cholinesterase': 1.6430492035729749e-06, 'Erdos': 2.4645738053594624e-06, 'Boggs': 1.6430492035729749e-06, 'Electron-microscopical': 1.6430492035729749e-06, 'physical-chemical': 1.6430492035729749e-06, 'renaturation': 1.6430492035729749e-06, 'heat-denatured': 1.6430492035729749e-06, 'collagen': 3.2860984071459497e-06, 'ribonucleic': 1.6430492035729749e-06, 'purifying': 1.6430492035729749e-06, 'earthworm': 1.6430492035729749e-06, 'EWC': 2.4645738053594624e-06, 'macromolecules': 2.4645738053594624e-06, 'a.': 3.2860984071459497e-06, 'vertebrate': 1.6430492035729749e-06, 'tropocollagen': 1.6430492035729749e-06, 'Maser': 1.6430492035729749e-06, 'peptides': 2.4645738053594624e-06, 'peptide': 1.6430492035729749e-06, 'high-voltage': 1.6430492035729749e-06, 'assayed': 1.6430492035729749e-06, 'Instruments': 1.6430492035729749e-06, 'Jackman': 1.6430492035729749e-06, 'Reiss': 1.6430492035729749e-06, 'bradykinin': 1.6430492035729749e-06, 'spectrophotometric': 1.6430492035729749e-06, 'Renfrew': 1.6430492035729749e-06, 'Severs': 1.6430492035729749e-06, 'physiochemical': 1.6430492035729749e-06, 'globulins': 1.6430492035729749e-06, 'excelsin': 1.6430492035729749e-06, 'ultracentrifugally': 1.6430492035729749e-06, 'water-soluble': 1.6430492035729749e-06, 'Notarius': 1.6430492035729749e-06, 'viscoelasticity': 3.2860984071459497e-06, 'non-newtonian': 1.6430492035729749e-06, 'differentiability': 2.4645738053594624e-06, 'second-order': 1.6430492035729749e-06, 'first-order': 1.6430492035729749e-06, 'Noll': 1.6430492035729749e-06, 'torsion': 1.6430492035729749e-06, 'pendulum': 2.4645738053594624e-06, '80-degrees-C': 1.6430492035729749e-06, 'isothermally': 1.6430492035729749e-06, 'time-temperature': 2.4645738053594624e-06, 'decompose': 1.6430492035729749e-06, 'frequency-independent': 1.6430492035729749e-06, 'Boltzmann': 1.6430492035729749e-06, 'superposition': 1.6430492035729749e-06, 'Hershel': 1.6430492035729749e-06, 'Markovitz': 1.6430492035729749e-06, 'D.J.': 1.6430492035729749e-06, 'Plazek': 1.6430492035729749e-06, 'Haruo': 1.6430492035729749e-06, 'Nakayasu': 1.6430492035729749e-06, 'tektites': 4.929147610718925e-06, 'microanalysis': 1.6430492035729749e-06, 'gallium': 4.929147610718925e-06, 'igneous': 1.6430492035729749e-06, 'metamorphic': 1.6430492035729749e-06, 'sedimentary': 1.6430492035729749e-06, 'volatilization': 1.6430492035729749e-06, 'tektite': 1.6430492035729749e-06, 'Gallium': 1.6430492035729749e-06, 'silica': 2.4645738053594624e-06, 'Australites': 1.6430492035729749e-06, 'silicate': 1.6430492035729749e-06, 'Libyan': 2.4645738053594624e-06, 'silica-glass': 1.6430492035729749e-06, 'five-fold': 1.6430492035729749e-06, 'comet': 1.6430492035729749e-06, 'stony-meteorite': 1.6430492035729749e-06, 'Nickel-iron': 1.6430492035729749e-06, 'quenching': 1.6430492035729749e-06, 'inclusions': 2.4645738053594624e-06, 'Impact': 1.6430492035729749e-06, 'nickel-iron': 1.6430492035729749e-06, 'paleoexplosion': 1.6430492035729749e-06, 'Aouelloul': 1.6430492035729749e-06, 'crater': 2.4645738053594624e-06, 'Adrar': 1.6430492035729749e-06, 'Sahara': 2.4645738053594624e-06, 'Anania': 1.6430492035729749e-06, 'ligand': 1.6430492035729749e-06, 'solvent': 4.929147610718925e-06, 'osmium': 1.6430492035729749e-06, 'ruthenium': 1.6430492035729749e-06, 'iridium': 1.6430492035729749e-06, 'rhenium': 1.6430492035729749e-06, 'triphenylphosphine': 1.6430492035729749e-06, 'triphenylarsine': 1.6430492035729749e-06, 'triphenylstibine': 1.6430492035729749e-06, 'Lauri': 1.6430492035729749e-06, 'Vaska': 1.6430492035729749e-06, 'DiLuzio': 1.6430492035729749e-06, 'heretofore-accepted': 1.6430492035729749e-06, 'radiocarbon': 1.6430492035729749e-06, 'deuterated': 1.6430492035729749e-06, 'alcohols': 2.4645738053594624e-06, 'metal-hydrido': 1.6430492035729749e-06, 'carbonyl': 2.4645738053594624e-06, 'reformulated': 1.6430492035729749e-06, 'hydrido': 1.6430492035729749e-06, 'phosphines': 1.6430492035729749e-06, 'arsines': 1.6430492035729749e-06, 'Hayter': 1.6430492035729749e-06, 'Particular': 1.6430492035729749e-06, 'ligands': 2.4645738053594624e-06, 'halides': 1.6430492035729749e-06, 'phosphide': 1.6430492035729749e-06, 'arside': 1.6430492035729749e-06, 'five-coordinate': 1.6430492035729749e-06, 'binuclear': 1.6430492035729749e-06, 'phosphorus-bridged': 1.6430492035729749e-06, 'palladium': 1.6430492035729749e-06, 'chromium-substituted': 1.6430492035729749e-06, 'oxyhydroxides': 1.6430492035729749e-06, 'high-temperature': 1.6430492035729749e-06, 'spectrally': 1.6430492035729749e-06, 'semiquantitative': 1.6430492035729749e-06, 'Laswick': 1.6430492035729749e-06, 'Heatwole': 1.6430492035729749e-06, 'elongation': 3.2860984071459497e-06, 'stress-temperature': 1.6430492035729749e-06, 'anisotropy': 1.6430492035729749e-06, 'compressibility': 1.6430492035729749e-06, 'elucidation': 1.6430492035729749e-06, 'imperfections': 2.4645738053594624e-06, 'Flory': 3.2860984071459497e-06, 'Hoeve': 3.2860984071459497e-06, 'conformations': 1.6430492035729749e-06, 'polymeric': 2.4645738053594624e-06, 'Volkenstein': 1.6430492035729749e-06, 'Lifson': 1.6430492035729749e-06, 'mean-square': 1.6430492035729749e-06, 'end-to-end': 1.6430492035729749e-06, 'polyisobutylene': 1.6430492035729749e-06, 'polymers': 4.107623008932437e-06, 'hindrances': 2.4645738053594624e-06, 'copolymers': 2.4645738053594624e-06, 'interspersed': 1.6430492035729749e-06, 'lattice': 2.4645738053594624e-06, 'Limitations': 1.6430492035729749e-06, 'Carefully': 3.2860984071459497e-06, 'crystallite': 1.6430492035729749e-06, 'homopolymers': 1.6430492035729749e-06, 'Contraction': 1.6430492035729749e-06, 'Glycerinated': 1.6430492035729749e-06, 'ATP': 2.4645738053594624e-06, 'mechanochemically': 1.6430492035729749e-06, 'Centigrade': 1.6430492035729749e-06, 'myosin': 1.6430492035729749e-06, 'Polymerization': 1.6430492035729749e-06, 'monodisperse': 1.6430492035729749e-06, 'polystyrene': 1.6430492035729749e-06, 'polymerizations': 1.6430492035729749e-06, 'benzene': 2.4645738053594624e-06, 'deactivation': 1.6430492035729749e-06, 'initiator': 2.4645738053594624e-06, 'butyl-lithium': 1.6430492035729749e-06, 'telomeric': 1.6430492035729749e-06, 'styryl-lithium': 1.6430492035729749e-06, 'predictability': 1.6430492035729749e-06, 'ethers': 1.6430492035729749e-06, 'crystals': 7.393721416078387e-06, 'classification-angle': 1.6430492035729749e-06, 'crystallographers': 1.6430492035729749e-06, 'Mineralogy': 4.107623008932437e-06, 'Geology': 2.4645738053594624e-06, 'Numerous': 1.6430492035729749e-06, 'Editors': 1.6430492035729749e-06, 'Spiller': 1.6430492035729749e-06, '2991': 1.6430492035729749e-06, 'tetragonal': 1.6430492035729749e-06, 'hexagonal': 2.4645738053594624e-06, 'orthorhombic': 1.6430492035729749e-06, '3500': 1.6430492035729749e-06, 'monoclinic': 1.6430492035729749e-06, 'anorthic': 1.6430492035729749e-06, "Groth's": 4.107623008932437e-06, 'Chemische': 4.107623008932437e-06, 'Krystallographie': 4.107623008932437e-06, 'Properties': 4.929147610718925e-06, 'Criticality': 4.929147610718925e-06, 'crystallographic': 2.4645738053594624e-06, 'Currency': 4.929147610718925e-06, 'Groth': 4.107623008932437e-06, 'Format': 4.107623008932437e-06, 'clothbound': 1.6430492035729749e-06, 'refractive': 1.6430492035729749e-06, 'mineralogical': 2.4645738053594624e-06, 'References': 3.2860984071459497e-06, 'Heffer': 1.6430492035729749e-06, 'Petty': 2.4645738053594624e-06, 'Cury': 3.2860984071459497e-06, '$16.80': 1.6430492035729749e-06, '$28.00': 1.6430492035729749e-06, '2-2': 1.6430492035729749e-06, 'J.D.H.': 2.4645738053594624e-06, 'Donnay': 3.2860984071459497e-06, 'Nowacki': 1.6430492035729749e-06, 'Berne': 1.6430492035729749e-06, 'Crystallographic': 3.2860984071459497e-06, 'Coeditors': 1.6430492035729749e-06, 'Leeds': 1.6430492035729749e-06, 'alloys': 3.2860984071459497e-06, 'Ottawa': 1.6430492035729749e-06, 'handbook': 1.6430492035729749e-06, 'spacings': 1.6430492035729749e-06, 'Pergamon': 1.6430492035729749e-06, 'Cell': 1.6430492035729749e-06, 'mid-1948': 1.6430492035729749e-06, 'Strukturbericht': 1.6430492035729749e-06, 'precluded': 1.6430492035729749e-06, 'abbreviation': 1.6430492035729749e-06, 'determinative': 1.6430492035729749e-06, 'indexes': 2.4645738053594624e-06, 'Memoir': 1.6430492035729749e-06, '2-3': 1.6430492035729749e-06, 'Structures': 3.2860984071459497e-06, 'W.G.': 1.6430492035729749e-06, 'Wyckoff': 1.6430492035729749e-06, 'Internationale': 1.6430492035729749e-06, 'Tabellen': 1.6430492035729749e-06, 'Zur': 1.6430492035729749e-06, 'Bestimmung': 1.6430492035729749e-06, 'Kristallstrukturen': 1.6430492035729749e-06, 'Coverage': 2.4645738053594624e-06, 'loose-leaf': 1.6430492035729749e-06, 'binders': 2.4645738053594624e-06, 'Bibliography': 1.6430492035729749e-06, 'paginated': 1.6430492035729749e-06, 'insertions': 1.6430492035729749e-06, 'Inorganic': 1.6430492035729749e-06, 'Interscience': 1.6430492035729749e-06, '$148.50': 1.6430492035729749e-06, '2-4': 1.6430492035729749e-06, "Dana's": 3.2860984071459497e-06, 'Penrose': 1.6430492035729749e-06, 'Palache': 1.6430492035729749e-06, 'Frondel': 1.6430492035729749e-06, 'interaxial': 1.6430492035729749e-06, 'appraised': 1.6430492035729749e-06, "'?'": 1.6430492035729749e-06, 'Recommendations': 1.6430492035729749e-06, 'Crystallography': 1.6430492035729749e-06, 'synonymy': 1.6430492035729749e-06, 'Mineralogies': 1.6430492035729749e-06, '$16.00': 1.6430492035729749e-06, 'Pepinsky': 1.6430492035729749e-06, 'five-volume': 1.6430492035729749e-06, 'abstractors': 1.6430492035729749e-06, "Institute's": 1.6430492035729749e-06, 'solid-state': 1.6430492035729749e-06, 'encyclopedic': 1.6430492035729749e-06, 'correlations': 1.6430492035729749e-06, 'Unpublished': 1.6430492035729749e-06, 'reinvestigation': 1.6430492035729749e-06, 'recalculation': 1.6430492035729749e-06, 'punched-card': 1.6430492035729749e-06, 'dehydration': 1.6430492035729749e-06, 'food-preservation': 4.107623008932437e-06, 'ionizing': 4.929147610718925e-06, 'irradiation': 8.215246017864873e-06, 'yeasts': 1.6430492035729749e-06, 'Microorganisms': 1.6430492035729749e-06, 'Clostridium': 1.6430492035729749e-06, 'botulinum': 1.6430492035729749e-06, 'Enzymatic': 1.6430492035729749e-06, 'palatability': 8.215246017864873e-06, 'Spoilage': 1.6430492035729749e-06, 'rancidity': 1.6430492035729749e-06, 'Sprouting': 1.6430492035729749e-06, 'parasitic': 2.4645738053594624e-06, 'Trichinella': 1.6430492035729749e-06, 'spiralis': 1.6430492035729749e-06, 'sterilization': 4.929147610718925e-06, 'recontamination': 1.6430492035729749e-06, 'aseptic': 1.6430492035729749e-06, 'containment': 1.6430492035729749e-06, 'pasteurization': 1.6430492035729749e-06, 'accomplishes': 1.6430492035729749e-06, 'blanching': 4.107623008932437e-06, 'scalding': 1.6430492035729749e-06, 'inactivate': 2.4645738053594624e-06, 'Ionizing': 1.6430492035729749e-06, 'Deactivation': 1.6430492035729749e-06, 'Mrad': 3.2860984071459497e-06, 'heat-processing': 1.6430492035729749e-06, 'radiosterilization': 4.929147610718925e-06, 'nonacid': 1.6430492035729749e-06, 'radiopasteurization': 5.750672212505412e-06, 'Mrads': 1.6430492035729749e-06, 'radiosterilized': 1.6430492035729749e-06, 'irradiated': 4.929147610718925e-06, 'fat-soluble': 1.6430492035729749e-06, 'gamma': 4.107623008932437e-06, 'collimated': 1.6430492035729749e-06, 'unidirectional': 1.6430492035729749e-06, 'Selection': 1.6430492035729749e-06, 'throughput': 1.6430492035729749e-06, 'cobalt-60': 1.6430492035729749e-06, 'cesium-137': 3.2860984071459497e-06, 'indium': 1.6430492035729749e-06, 'accelerators': 3.2860984071459497e-06, 'Graff': 1.6430492035729749e-06, 'nuclide': 3.2860984071459497e-06, 'kwhr': 3.2860984071459497e-06, 'megawatt': 2.4645738053594624e-06, 'inherently': 2.4645738053594624e-06, 'impracticable': 1.6430492035729749e-06, 'palatable': 1.6430492035729749e-06, 'appetizing': 2.4645738053594624e-06, 'Radiopasteurization': 3.2860984071459497e-06, 'Commercial': 1.6430492035729749e-06, 'Meats': 1.6430492035729749e-06, 'off-flavors': 1.6430492035729749e-06, 'Quartermaster': 1.6430492035729749e-06, "beef's": 1.6430492035729749e-06, 'Off-flavor': 1.6430492035729749e-06, 'acceptability': 2.4645738053594624e-06, 'Moderate': 1.6430492035729749e-06, 'rads': 1.6430492035729749e-06, 'preradiation': 1.6430492035729749e-06, 'discolors': 1.6430492035729749e-06, 'Cooked': 1.6430492035729749e-06, 'mutton': 3.2860984071459497e-06, 'substerilization': 1.6430492035729749e-06, 'dehydrated': 1.6430492035729749e-06, 'chalky': 1.6430492035729749e-06, 'sausage': 1.6430492035729749e-06, 'Specialty': 1.6430492035729749e-06, 'Competitive': 1.6430492035729749e-06, 'Radiosterilization': 1.6430492035729749e-06, 'accelerator': 4.929147610718925e-06, 'Irradiation': 1.6430492035729749e-06, 'Poultry': 1.6430492035729749e-06, 'sterilizing': 2.4645738053594624e-06, 'untreated': 1.6430492035729749e-06, 'Acceptable': 1.6430492035729749e-06, 'Acceptance': 1.6430492035729749e-06, 'antibiotics': 1.6430492035729749e-06, 'Seafood': 1.6430492035729749e-06, 'perishable': 1.6430492035729749e-06, 'carbide': 2.4645738053594624e-06, 'transformer': 1.6430492035729749e-06, 'Hesiometer': 5.750672212505412e-06, 'substrates': 3.2860984071459497e-06, 'topcoats': 1.6430492035729749e-06, 'primers': 1.6430492035729749e-06, 'peeling': 5.750672212505412e-06, 'enlargements': 1.6430492035729749e-06, 'interface': 3.2860984071459497e-06, 'schematically': 3.2860984071459497e-06, '**yf': 7.393721416078387e-06, 'compressive': 2.4645738053594624e-06, '**yt': 4.107623008932437e-06, 'eqn.': 3.2860984071459497e-06, 'Blunt': 1.6430492035729749e-06, 'signifies': 1.6430492035729749e-06, 'bluntness': 2.4645738053594624e-06, 'Carboloy': 2.4645738053594624e-06, 'grit': 1.6430492035729749e-06, 'mil.': 1.6430492035729749e-06, 'roundness': 1.6430492035729749e-06, 'blunter': 1.6430492035729749e-06, 'abrasion-resistant': 1.6430492035729749e-06, 'Softer': 1.6430492035729749e-06, 'frictional': 2.4645738053594624e-06, 'k': 1.6430492035729749e-06, 'knife/coating': 1.6430492035729749e-06, 'Chipping': 1.6430492035729749e-06, 'cohesively': 1.6430492035729749e-06, 'pigmented': 1.6430492035729749e-06, 'photomicrograph': 1.6430492035729749e-06, 'fracture': 1.6430492035729749e-06, 'rupture': 3.2860984071459497e-06, '9a': 1.6430492035729749e-06, '9e': 1.6430492035729749e-06, 'eqns.': 1.6430492035729749e-06, 'foamed': 7.393721416078387e-06, 'Urethane': 4.107623008932437e-06, '275': 4.107623008932437e-06, 'styrenes': 1.6430492035729749e-06, 'buoyancy': 1.6430492035729749e-06, 'polypropylene': 3.2860984071459497e-06, 'urethane': 1.889506584108921e-05, 'foams': 1.889506584108921e-05, 'polyether-type': 1.6430492035729749e-06, 'two-component': 1.6430492035729749e-06, 'fire-resistant': 1.6430492035729749e-06, 'self-extinguishing': 1.6430492035729749e-06, 'insulator': 1.6430492035729749e-06, 'Whirlpool': 1.6430492035729749e-06, 'refrigerators': 2.4645738053594624e-06, 'frothing': 2.4645738053594624e-06, '391': 1.6430492035729749e-06, 'garment': 5.750672212505412e-06, 'interlining': 2.4645738053594624e-06, 'laminating': 1.6430492035729749e-06, 'flotation-type': 1.6430492035729749e-06, 'end-use': 2.4645738053594624e-06, "styrene's": 1.6430492035729749e-06, 'inserts': 1.6430492035729749e-06, 'foamed-core': 1.6430492035729749e-06, 'Extruded': 1.6430492035729749e-06, 'price-wise': 1.6430492035729749e-06, 'Sandwich': 2.4645738053594624e-06, 'kraft': 1.6430492035729749e-06, '395': 1.6430492035729749e-06, 'insulating': 2.4645738053594624e-06, 'extruding': 1.6430492035729749e-06, 'Readers': 2.4645738053594624e-06, 'Foamed': 1.6430492035729749e-06, '100-million-lb.': 1.6430492035729749e-06, '115': 1.6430492035729749e-06, 'Furniture': 2.4645738053594624e-06, 'offing': 1.6430492035729749e-06, 'hydroxyl-rich': 2.4645738053594624e-06, 'polyisocyanates': 1.6430492035729749e-06, 'tolylene': 1.6430492035729749e-06, 'diisocyanate': 1.6430492035729749e-06, 'Blowing': 1.6430492035729749e-06, 'polyisocyanate': 1.6430492035729749e-06, 'low-boiling': 1.6430492035729749e-06, 'fluorinated': 1.6430492035729749e-06, 'end-product': 2.4645738053594624e-06, 'polyesters': 2.4645738053594624e-06, 'semi-rigid': 2.4645738053594624e-06, 'sandwich-type': 1.6430492035729749e-06, 'foamed-in-place': 1.6430492035729749e-06, 'polyethers': 1.6430492035729749e-06, 'branching': 1.6430492035729749e-06, 'rigids': 1.6430492035729749e-06, 'polyether': 6.5721968142918994e-06, 'glycols': 1.6430492035729749e-06, 'urethanes': 2.4645738053594624e-06, 'spring-back': 1.6430492035729749e-06, 'two-step': 1.6430492035729749e-06, 'prepolymer': 4.107623008932437e-06, 'catalysts': 2.4645738053594624e-06, 'latex': 2.4645738053594624e-06, 'adipic': 1.6430492035729749e-06, 'glycol': 2.4645738053594624e-06, 'triol': 1.6430492035729749e-06, 'isocyanate': 2.4645738053594624e-06, 'anhydrously': 1.6430492035729749e-06, 'foaming': 5.750672212505412e-06, 'Basically': 2.4645738053594624e-06, 'exothermic': 1.6430492035729749e-06, 'cu.': 4.929147610718925e-06, 'Graph': 1.6430492035729749e-06, 'Thermal': 2.4645738053594624e-06, "materials'": 1.6430492035729749e-06, 'flexural': 4.107623008932437e-06, 'tensile': 4.107623008932437e-06, "material's": 1.6430492035729749e-06, 'air-cell': 1.6430492035729749e-06, 'B.t.u./sq.': 1.6430492035729749e-06, 'material/hr./*0F./in.': 1.6430492035729749e-06, '0.24': 1.6430492035729749e-06, '0.28': 1.6430492035729749e-06, '0.12': 1.6430492035729749e-06, '394': 1.6430492035729749e-06, 'Flexural': 1.6430492035729749e-06, 'higher-density': 1.6430492035729749e-06, 'Tensile': 1.6430492035729749e-06, 'longitudinal': 1.6430492035729749e-06, 'Exceptional': 1.6430492035729749e-06, "foam's": 1.6430492035729749e-06, 'poured-in-place': 1.6430492035729749e-06, 'Slab': 1.6430492035729749e-06, 'mixer': 2.4645738053594624e-06, 'solidifies': 1.6430492035729749e-06, 'receptacle': 1.6430492035729749e-06, 'slitters': 1.6430492035729749e-06, 'fabricate': 1.6430492035729749e-06, 'trapezoid': 1.6430492035729749e-06, 'convoluted': 1.6430492035729749e-06, 'slitter': 1.6430492035729749e-06, 'peels': 1.6430492035729749e-06, 'yd.': 1.6430492035729749e-06, 'Molding': 1.6430492035729749e-06, 'cushions': 2.4645738053594624e-06, 'Satisfactory': 1.6430492035729749e-06, 'fabricated': 1.6430492035729749e-06, 'free-blown': 1.6430492035729749e-06, 'gel': 1.6430492035729749e-06, 'ironed': 2.4645738053594624e-06, 'pumped': 3.2860984071459497e-06, '90-degrees-F': 2.4645738053594624e-06, '32-degrees-C': 1.6430492035729749e-06, 'suds': 8.215246017864873e-06, '160-ml.': 1.6430492035729749e-06, 'Washing': 1.6430492035729749e-06, 'nips': 1.6430492035729749e-06, 'liters': 2.4645738053594624e-06, '32*0C.': 1.6430492035729749e-06, 'rinsing': 4.107623008932437e-06, 'readjusted': 1.6430492035729749e-06, 'draining': 3.2860984071459497e-06, 'soil-bearing': 1.6430492035729749e-06, 'soil-removal': 1.6430492035729749e-06, 'grease-removal': 1.6430492035729749e-06, 'reflectance-measuring': 1.6430492035729749e-06, 'Soxhlet': 1.6430492035729749e-06, 'knitted': 7.393721416078387e-06, 'laundry': 4.929147610718925e-06, 'restorability': 3.2860984071459497e-06, 'launderings': 1.6430492035729749e-06, 'summarizes': 1.6430492035729749e-06, 'Numeral': 1.6430492035729749e-06, '160-degrees-F': 2.4645738053594624e-06, 'tumble': 3.2860984071459497e-06, 'dryer': 3.2860984071459497e-06, 'restorative': 7.393721416078387e-06, 'Presser': 1.6430492035729749e-06, 'Drying': 2.4645738053594624e-06, 'Distances': 2.4645738053594624e-06, 'warp': 4.107623008932437e-06, 'wales': 2.4645738053594624e-06, 'Apparatus': 1.6430492035729749e-06, 'fin': 2.4645738053594624e-06, '120-degrees': 2.4645738053594624e-06, 'rotates': 2.4645738053594624e-06, 'eight-inch': 2.4645738053594624e-06, '110-degrees': 1.6430492035729749e-06, '140-degrees-F': 1.6430492035729749e-06, '38*0': 1.6430492035729749e-06, '60*0C.': 1.6430492035729749e-06, 'insertion': 1.6430492035729749e-06, 'washer': 2.4645738053594624e-06, 'flat-bed': 4.107623008932437e-06, '275-degrees-F': 1.6430492035729749e-06, '135*0C.': 1.6430492035729749e-06, 'Dryer': 1.6430492035729749e-06, 'r.p.m.': 2.4645738053594624e-06, '49*0': 1.6430492035729749e-06, '71*&0C.': 1.6430492035729749e-06, 'Screen': 1.6430492035729749e-06, '16-mesh': 1.6430492035729749e-06, 'Saran': 1.6430492035729749e-06, 'Velon': 1.6430492035729749e-06, 'drip-': 1.6430492035729749e-06, 'line-drying': 1.6430492035729749e-06, 'Extractor': 1.6430492035729749e-06, 'centrifugal': 1.6430492035729749e-06, 'extractor': 1.6430492035729749e-06, 'laundry-type': 1.6430492035729749e-06, 'perforated': 3.2860984071459497e-06, 'Soap': 1.6430492035729749e-06, 'fed.': 1.6430492035729749e-06, 'Spec.': 1.6430492035729749e-06, '566': 1.6430492035729749e-06, 'Softener': 1.6430492035729749e-06, 'metaphosphate': 1.6430492035729749e-06, 'hexametaphosphate': 1.6430492035729749e-06, 'Detergent': 1.6430492035729749e-06, 'alkylarysulfonate': 1.6430492035729749e-06, 'Flatiron': 1.6430492035729749e-06, 'presser': 2.4645738053594624e-06, 'dead-weight': 1.6430492035729749e-06, 'flatiron': 1.6430492035729749e-06, 'template': 4.929147610718925e-06, 'Knit': 1.6430492035729749e-06, 'tensioning': 2.4645738053594624e-06, 'uncluttered': 1.6430492035729749e-06, 'friction-free': 1.6430492035729749e-06, 'creases': 1.6430492035729749e-06, 'Fabrics': 1.6430492035729749e-06, 'unlaundered': 1.6430492035729749e-06, 'laundered': 1.6430492035729749e-06, 'widthwise': 1.6430492035729749e-06, 'fine-point': 1.6430492035729749e-06, 'Woven': 2.4645738053594624e-06, 'midpoint': 1.6430492035729749e-06, 'equidistantly': 1.6430492035729749e-06, 'Garments': 1.6430492035729749e-06, '105-degrees-F': 1.6430492035729749e-06, '43*0C.': 2.4645738053594624e-06, 'softener': 1.6430492035729749e-06, 'Refill': 2.4645738053594624e-06, '109-degrees-F': 3.2860984071459497e-06, '43*0': 1.6430492035729749e-06, 'Inject': 1.6430492035729749e-06, 'Drain': 3.2860984071459497e-06, 'refill': 1.6430492035729749e-06, '43*0C': 1.6430492035729749e-06, 'High-gain': 2.4645738053594624e-06, 'photoelectronic': 2.4645738053594624e-06, 'practicability': 1.6430492035729749e-06, 'radiography': 1.6430492035729749e-06, 'Cascading': 3.2860984071459497e-06, 'Channel-type': 2.4645738053594624e-06, 'intensifier': 5.750672212505412e-06, 'Image': 2.4645738053594624e-06, 'multipactor': 2.4645738053594624e-06, 'Transmission': 1.6430492035729749e-06, 'intensifiers': 5.750672212505412e-06, 'TSEM': 2.4645738053594624e-06, 'high-gain': 2.4645738053594624e-06, 'low-duty': 1.6430492035729749e-06, 'dynodes': 1.6430492035729749e-06, 'Cascaded': 1.6430492035729749e-06, 'defocusing': 2.4645738053594624e-06, 'interstage': 3.2860984071459497e-06, 'coupler': 4.929147610718925e-06, 'solenoid': 1.6430492035729749e-06, 'couplers': 4.107623008932437e-06, 'paraxial': 2.4645738053594624e-06, 'fiber-coupled': 4.107623008932437e-06, 'double-': 1.6430492035729749e-06, 'multi-': 1.6430492035729749e-06, 'constructional': 1.6430492035729749e-06, 'double-stage': 3.2860984071459497e-06, 'Measured': 1.6430492035729749e-06, '14-1': 2.4645738053594624e-06, 'concentric': 2.4645738053594624e-06, 'phosphor': 1.1501344425010824e-05, 'photoelectrons': 1.6430492035729749e-06, 'impinge': 3.2860984071459497e-06, 'cathodoluminescent': 4.107623008932437e-06, 'codetermines': 1.6430492035729749e-06, 'photocathode': 6.5721968142918994e-06, 'field-flattening': 2.4645738053594624e-06, 'biconcave': 1.6430492035729749e-06, 'phosphor-screen': 1.6430492035729749e-06, 'planoconcave': 1.6430492035729749e-06, 'sensitivities': 1.6430492035729749e-06, 'subscripts': 1.6430492035729749e-06, 'amp': 1.6430492035729749e-06, 'volts': 1.6430492035729749e-06, 'lumen/watt': 1.6430492035729749e-06, 'normalized': 1.6430492035729749e-06, 'optics': 1.6430492035729749e-06, 'N.A.': 1.6430492035729749e-06, 'Fresnel': 3.2860984071459497e-06, 'I.L.': 1.6430492035729749e-06, 'F.R.': 2.4645738053594624e-06, 'Settled': 1.6430492035729749e-06, 'phosphors': 1.6430492035729749e-06, '4.6': 1.6430492035729749e-06, 'refraction': 1.6430492035729749e-06, 'photosensitive': 1.6430492035729749e-06, 'SbCs-type': 1.6430492035729749e-06, 'fiber-photocathode': 1.6430492035729749e-06, '0.95': 1.6430492035729749e-06, 'core-jacket': 1.6430492035729749e-06, 'Explicit': 1.6430492035729749e-06, '1/4-inch': 1.6430492035729749e-06, '0.906': 1.6430492035729749e-06, 'circumscribed': 1.6430492035729749e-06, 'hexagon': 1.6430492035729749e-06, 'cladding': 1.6430492035729749e-06, 'mica': 1.6430492035729749e-06, 'Neglecting': 1.6430492035729749e-06, '0.25': 1.6430492035729749e-06, '0.043': 1.6430492035729749e-06, 'Gain': 1.6430492035729749e-06, 'Including': 1.6430492035729749e-06, 'demagnification': 1.6430492035729749e-06, 'maximizes': 3.2860984071459497e-06, 'second-stage': 1.6430492035729749e-06, 'emulsion': 1.6430492035729749e-06, 'photocathodes': 2.4645738053594624e-06, 'S-11': 2.4645738053594624e-06, 'S-20': 2.4645738053594624e-06, 'P-11': 2.4645738053594624e-06, 'P-20': 4.107623008932437e-06, 'N.L.': 1.6430492035729749e-06, 'H.W.': 1.6430492035729749e-06, 'Babcock': 1.6430492035729749e-06, 'minifying': 1.6430492035729749e-06, 'magnifying': 3.2860984071459497e-06, 'Eq.': 2.4645738053594624e-06, 'fluorescent': 4.107623008932437e-06, 'JEDEC': 1.6430492035729749e-06, '14-2': 1.6430492035729749e-06, 'blowup': 1.6430492035729749e-06, 'crossover': 1.6430492035729749e-06, 'Electrostatic': 1.6430492035729749e-06, 'pseudo-symmetric': 1.6430492035729749e-06, 'electronography': 1.6430492035729749e-06, 'line-pairs': 1.6430492035729749e-06, 'cathodophoretic': 1.6430492035729749e-06, 'scatter': 2.4645738053594624e-06, 'photoluminescence': 1.6430492035729749e-06, 'Bremsstrahlung': 1.6430492035729749e-06, 'KV': 1.6430492035729749e-06, 'specification': 3.2860984071459497e-06, 'optimization': 1.6430492035729749e-06, 'Bellman': 2.4645738053594624e-06, 'R-stage': 5.750672212505412e-06, 'Af-stage': 4.107623008932437e-06, 'optimizing': 1.6430492035729749e-06, 'unreasonably': 1.6430492035729749e-06, 'interpolation': 1.6430492035729749e-06, 'baseless': 1.6430492035729749e-06, 'crudest': 1.6430492035729749e-06, 'optimality': 4.929147610718925e-06, 'multistage': 1.6430492035729749e-06, 'annunciated': 1.6430492035729749e-06, '2.2': 1.6430492035729749e-06, 'maximized': 1.6430492035729749e-06, 'piecewise': 1.6430492035729749e-06, 'recursive': 1.6430492035729749e-06, 'algorithm': 1.6430492035729749e-06, '2.3': 1.6430492035729749e-06, 'stochastic': 1.6430492035729749e-06, 'probabilistic': 1.6430492035729749e-06, 'r': 1.6430492035729749e-06, 'elapse': 1.6430492035729749e-06, 'p(T)': 1.6430492035729749e-06, 'p(Q)': 1.6430492035729749e-06, 'gyro-stabilized': 5.750672212505412e-06, 'gyros': 4.929147610718925e-06, 'leveling': 1.3965918230370285e-05, 'gyro-platform-servo': 1.6430492035729749e-06, 'transient': 3.2860984071459497e-06, 'torque': 4.929147610718925e-06, 'gyro': 2.218116424823516e-05, '**yj': 1.6430492035729749e-06, 'platform-controller': 1.6430492035729749e-06, 'torquers': 4.107623008932437e-06, 'accelerometer': 1.4787442832156774e-05, 'output-axis': 1.6430492035729749e-06, 'torquer': 4.929147610718925e-06, 'polarities': 1.6430492035729749e-06, '7-2': 3.2860984071459497e-06, 'servo': 4.929147610718925e-06, 'cutoff': 1.6430492035729749e-06, 'accelerations': 2.4645738053594624e-06, 'preflight': 2.4645738053594624e-06, 'airframe': 1.6430492035729749e-06, 'accelerometers': 7.393721416078387e-06, 'low-pass': 2.4645738053594624e-06, 'non-linear': 1.6430492035729749e-06, 'amplifier': 5.750672212505412e-06, 'off-level': 1.6430492035729749e-06, '7-3': 2.4645738053594624e-06, 'on-level': 1.6430492035729749e-06, 'biases': 1.6430492035729749e-06, 'manually': 3.2860984071459497e-06, 'minimizes': 1.6430492035729749e-06, 'inconvenient': 3.2860984071459497e-06, '7-4': 2.4645738053594624e-06, 'Platform': 2.4645738053594624e-06, 'inertial': 3.2860984071459497e-06, 'navigators': 1.6430492035729749e-06, '7-5': 1.6430492035729749e-06, 'perpendicular': 2.4645738053594624e-06, 'darkened': 6.5721968142918994e-06, 'Autocollimator': 1.6430492035729749e-06, 'autocollimator': 4.107623008932437e-06, 'Z-gyro': 1.6430492035729749e-06, 'Z-axis': 1.6430492035729749e-06, 'pickoffs': 1.6430492035729749e-06, 'pickoff': 3.2860984071459497e-06, 'stator': 1.6430492035729749e-06, 'Gyrocompass': 2.4645738053594624e-06, 'autonavigator': 1.6430492035729749e-06, 'east-west': 3.2860984071459497e-06, 'north-south': 2.4645738053594624e-06, 'X-gyro': 2.4645738053594624e-06, 'Y-gyro': 1.6430492035729749e-06, 'three-axis': 1.6430492035729749e-06, 'unleveled': 1.6430492035729749e-06, 'Thirty-three': 1.6430492035729749e-06, 'Scotty': 2.7110311858954083e-05, 'lengthily': 1.6430492035729749e-06, 'lipstick': 3.2860984071459497e-06, "Scotty's": 9.85829522143785e-06, 'stainless-steel': 1.6430492035729749e-06, 'baronial': 1.6430492035729749e-06, 'banners': 2.4645738053594624e-06, 'blueberry': 1.6430492035729749e-06, 'grizzled': 1.6430492035729749e-06, 'crested': 1.6430492035729749e-06, 'three-sectioned': 1.6430492035729749e-06, 'plumpness': 4.107623008932437e-06, 'swollen-looking': 1.6430492035729749e-06, 'whitely': 1.6430492035729749e-06, 'stiffly': 8.215246017864873e-06, 'overindulged': 1.6430492035729749e-06, 'querulous': 1.6430492035729749e-06, 'sprawling': 4.929147610718925e-06, 'jumping': 7.393721416078387e-06, 'store-front': 1.6430492035729749e-06, 'Thirty-four': 1.6430492035729749e-06, 'bathrobe': 3.2860984071459497e-06, 'tempt': 2.4645738053594624e-06, 'biscuits': 4.929147610718925e-06, 'rediscover': 1.6430492035729749e-06, 'draughty': 1.6430492035729749e-06, 'Kate': 3.450403327503247e-05, 'bandaged': 4.107623008932437e-06, 'throbbed': 3.2860984071459497e-06, "Kate's": 4.107623008932437e-06, 'slim-waisted': 1.6430492035729749e-06, 'unsmiling': 2.4645738053594624e-06, 'teasing': 3.2860984071459497e-06, 'Husky': 1.6430492035729749e-06, 'veined': 1.6430492035729749e-06, "moth's": 1.6430492035729749e-06, 'absently': 5.750672212505412e-06, 'unsmilingly': 1.6430492035729749e-06, 'stethoscope': 2.4645738053594624e-06, 'wagged': 2.4645738053594624e-06, 'fussily': 1.6430492035729749e-06, 'glinted': 2.4645738053594624e-06, 'irritability': 1.6430492035729749e-06, 'Estherson': 1.6430492035729749e-06, 'frowning': 9.85829522143785e-06, 'annoys': 1.6430492035729749e-06, 'phoned': 4.929147610718925e-06, "Rachel's": 2.4645738053594624e-06, 'throbbing': 3.2860984071459497e-06, 'invariable': 1.6430492035729749e-06, 'scarf': 4.107623008932437e-06, 'Papa-san': 7.393721416078387e-06, 'glacier-like': 1.6430492035729749e-06, 'defying': 2.4645738053594624e-06, 'Gouge': 1.6430492035729749e-06, 'reigned': 1.6430492035729749e-06, 'raped': 2.4645738053594624e-06, 'womb': 1.6430492035729749e-06, "slope's": 1.6430492035729749e-06, 'concertina': 1.6430492035729749e-06, 'weirdly': 1.6430492035729749e-06, 'Closer': 1.6430492035729749e-06, 'lulls': 1.6430492035729749e-06, 'spill': 1.6430492035729749e-06, 'unlovely': 1.6430492035729749e-06, 'coward': 4.107623008932437e-06, 'Prevot': 8.215246017864873e-06, 'ROK': 1.6430492035729749e-06, 'thirty-caliber': 1.6430492035729749e-06, "ROK's": 1.6430492035729749e-06, 'Automatic': 1.6430492035729749e-06, '0600': 1.6430492035729749e-06, '2130': 1.6430492035729749e-06, 'Ours': 1.6430492035729749e-06, 'kinder': 1.6430492035729749e-06, 'betties': 1.6430492035729749e-06, 'testicle': 2.4645738053594624e-06, 'mercifully': 3.2860984071459497e-06, 'Booby': 1.6430492035729749e-06, 'searchlights': 1.6430492035729749e-06, '2230': 1.6430492035729749e-06, 'overhang': 1.6430492035729749e-06, 'stealthily': 1.6430492035729749e-06, 'sighing': 3.2860984071459497e-06, 'pant-legs': 1.6430492035729749e-06, 'unprotected': 2.4645738053594624e-06, 'mourners': 2.4645738053594624e-06, 'unsung': 3.2860984071459497e-06, 'wraith-like': 2.4645738053594624e-06, 'Clumps': 2.4645738053594624e-06, 'enchained': 1.6430492035729749e-06, 'gnaw': 1.6430492035729749e-06, 'Looming': 1.6430492035729749e-06, 'leered': 3.2860984071459497e-06, 'malevolencies': 1.6430492035729749e-06, 'searchlight': 2.4645738053594624e-06, 'fear-filled': 1.6430492035729749e-06, 'furtively': 1.6430492035729749e-06, 'sweaty': 4.929147610718925e-06, 'blackness': 4.929147610718925e-06, 'Lying': 2.4645738053594624e-06, 'knoll': 1.6430492035729749e-06, "rifle's": 1.6430492035729749e-06, 'sneaked': 5.750672212505412e-06, 'bandoleers': 1.6430492035729749e-06, 'overheat': 1.6430492035729749e-06, 'armpits': 1.6430492035729749e-06, 'snugly': 2.4645738053594624e-06, 'crouch': 4.107623008932437e-06, "valley's": 1.6430492035729749e-06, 'grotesques': 1.6430492035729749e-06, 'Sensing': 1.6430492035729749e-06, 'mutely': 2.4645738053594624e-06, 'near-strangers': 1.6430492035729749e-06, 'Brittany': 2.4645738053594624e-06, 'stone-gray': 1.6430492035729749e-06, 'handlebars': 1.6430492035729749e-06, 'shipyards': 1.6430492035729749e-06, 'Brest': 1.6430492035729749e-06, 'vouching': 1.6430492035729749e-06, 'shout': 6.5721968142918994e-06, 'handless': 1.6430492035729749e-06, "C'est": 2.4645738053594624e-06, 'oui': 2.4645738053594624e-06, 'merveilleux': 1.6430492035729749e-06, 'infirmity': 1.6430492035729749e-06, 'healthiest': 1.6430492035729749e-06, 'Solesmes': 1.6430492035729749e-06, 'abbey': 1.6430492035729749e-06, "Warren's": 1.6430492035729749e-06, 'Mickie': 4.107623008932437e-06, 'whisky-on-the-rocks': 1.6430492035729749e-06, 'black-haired': 1.6430492035729749e-06, 'elfin': 1.6430492035729749e-06, 'Eloise': 1.6430492035729749e-06, 'Moonan': 1.6430492035729749e-06, 'booth': 4.107623008932437e-06, 'noticing': 3.2860984071459497e-06, 'shopkeepers': 1.6430492035729749e-06, 'hideaway': 1.6430492035729749e-06, 'sorting': 1.6430492035729749e-06, 'Jeff': 3.2860984071459497e-06, 'altruism': 1.6430492035729749e-06, 'Christiansen': 2.4645738053594624e-06, 'Distinguished': 1.6430492035729749e-06, 'bastard': 1.0679819823224336e-05, 'Trig': 9.036770619651361e-06, "There'd": 1.6430492035729749e-06, "Trig's": 1.6430492035729749e-06, 'concussion': 1.6430492035729749e-06, 'rank-and-file': 1.6430492035729749e-06, "sniper's": 1.6430492035729749e-06, 'devilish': 3.2860984071459497e-06, 'Davao': 1.6430492035729749e-06, 'snaked': 3.2860984071459497e-06, 'lunged': 4.107623008932437e-06, "'low": 1.6430492035729749e-06, 'nigras': 1.6430492035729749e-06, 'placid': 4.107623008932437e-06, 'DSM': 1.6430492035729749e-06, 'combat-inflicted': 1.6430492035729749e-06, 'Supplies': 2.4645738053594624e-06, 'citations': 1.6430492035729749e-06, 'Beside': 2.4645738053594624e-06, 'Dalloway': 3.2860984071459497e-06, 'dainty': 3.2860984071459497e-06, 'Poverty': 1.6430492035729749e-06, 'pharmacist': 1.6430492035729749e-06, 'deliciously': 1.6430492035729749e-06, 'vernal': 1.6430492035729749e-06, 'cripple': 1.6430492035729749e-06, 'Lorelei': 1.6430492035729749e-06, 'rosebuds': 4.107623008932437e-06, 'Boxell': 4.107623008932437e-06, 'underhanded': 1.6430492035729749e-06, 'furtive': 1.6430492035729749e-06, 'distrusted': 2.4645738053594624e-06, 'well-bound': 1.6430492035729749e-06, 'cut-glass': 1.6430492035729749e-06, 'chandelier': 3.2860984071459497e-06, 'Wilkes-Barre': 1.6430492035729749e-06, 'bluster': 1.6430492035729749e-06, 'Chris': 1.0679819823224336e-05, 'damn': 2.300268885002165e-05, 'krautheads': 1.6430492035729749e-06, 'piss': 1.6430492035729749e-06, 'Literally': 1.6430492035729749e-06, 'Sojourner': 2.4645738053594624e-06, 'Annisberg': 1.6430492035729749e-06, 'seventy-five': 1.6430492035729749e-06, 'Tallahoosa': 1.6430492035729749e-06, 'calamities': 1.6430492035729749e-06, 'loud-voiced': 1.6430492035729749e-06, 'obsequious': 2.4645738053594624e-06, 'Deacon': 3.2860984071459497e-06, 'orgy': 1.6430492035729749e-06, 'worshippers': 1.6430492035729749e-06, 're-enacting': 1.6430492035729749e-06, 'contortion': 1.6430492035729749e-06, 'snickered': 2.4645738053594624e-06, 'handkerchief': 8.215246017864873e-06, 'death-like': 1.6430492035729749e-06, 're-enacted': 1.6430492035729749e-06, 'disgust': 1.6430492035729749e-06, 'man-to-man': 1.6430492035729749e-06, 'sympathized': 1.6430492035729749e-06, 'parsonage': 1.6430492035729749e-06, 'rat-holes': 1.6430492035729749e-06, 'Catt': 4.107623008932437e-06, 'Cat': 1.6430492035729749e-06, 'spotless': 3.2860984071459497e-06, 'dissenter': 1.6430492035729749e-06, 'soared': 4.107623008932437e-06, '$2,500': 1.6430492035729749e-06, 'Deacons': 1.6430492035729749e-06, 'pliant': 1.6430492035729749e-06, 'warren': 1.6430492035729749e-06, 'disrepair': 2.4645738053594624e-06, 'Dives': 1.6430492035729749e-06, 'cosily': 1.6430492035729749e-06, 'trash': 2.4645738053594624e-06, 'dumps': 1.6430492035729749e-06, 'privies': 1.6430492035729749e-06, 'Presiding': 4.107623008932437e-06, 'business-like': 1.6430492035729749e-06, 'rut': 1.6430492035729749e-06, 'Tenements': 1.6430492035729749e-06, 'Payne': 1.3965918230370285e-05, 'Herold': 4.107623008932437e-06, 'Seward': 4.929147610718925e-06, "chemist's": 1.6430492035729749e-06, 'errand': 6.5721968142918994e-06, 'Clubhouse': 1.6430492035729749e-06, "Seward's": 3.2860984071459497e-06, 'gentry': 1.6430492035729749e-06, 'clomped': 1.6430492035729749e-06, 'rang': 1.8073541239302723e-05, 'doorbell': 2.4645738053594624e-06, 'nigger': 9.85829522143785e-06, 'synchronize': 1.6430492035729749e-06, 'banisters': 2.4645738053594624e-06, 'gleamed': 4.107623008932437e-06, 'bothering': 5.750672212505412e-06, 'lumbered': 1.6430492035729749e-06, 'congress': 2.4645738053594624e-06, 'gaiters': 1.6430492035729749e-06, 'clodhoppers': 1.6430492035729749e-06, 'Panting': 1.6430492035729749e-06, 'pantomime': 2.4645738053594624e-06, 'misfired': 1.6430492035729749e-06, 'Reversing': 1.6430492035729749e-06, 'exultantly': 1.6430492035729749e-06, 'Murder': 3.2860984071459497e-06, 'nightmares': 1.6430492035729749e-06, 'nightdress': 1.6430492035729749e-06, 'yelling': 5.750672212505412e-06, 'wakes': 1.6430492035729749e-06, 'clammy': 2.4645738053594624e-06, 'unhitched': 2.4645738053594624e-06, 'sleepy': 5.750672212505412e-06, 'tousled': 2.4645738053594624e-06, 'surfeited': 1.6430492035729749e-06, 'Debts': 1.6430492035729749e-06, 'soothed': 2.4645738053594624e-06, 'Overreach': 1.6430492035729749e-06, 'declaimed': 2.4645738053594624e-06, 'Edwina': 1.6430492035729749e-06, 'boo': 1.6430492035729749e-06, 'Wilkes': 2.4645738053594624e-06, 'Keene': 3.2860984071459497e-06, 'Cousin': 3.203945946967301e-05, 'sockdologizing': 1.6430492035729749e-06, 'mantrap': 1.6430492035729749e-06, 'Trenchard': 2.4645738053594624e-06, 'Guns': 2.4645738053594624e-06, 'celebrations': 2.4645738053594624e-06, 'soundproof': 1.6430492035729749e-06, 'Sic': 1.6430492035729749e-06, 'semper': 1.6430492035729749e-06, 'tyrannis': 1.6430492035729749e-06, 'billowed': 1.6430492035729749e-06, 'leapt': 2.4645738053594624e-06, 'faltered': 3.2860984071459497e-06, 'theatrically': 2.4645738053594624e-06, 'Octoroon': 1.6430492035729749e-06, 'maimed': 1.6430492035729749e-06, 'balustrade': 3.2860984071459497e-06, 'beehive': 1.6430492035729749e-06, 'Taft': 1.6430492035729749e-06, 'hoist': 1.6430492035729749e-06, 'Leale': 1.6430492035729749e-06, 'dingy': 4.929147610718925e-06, "Harris's": 2.4645738053594624e-06, 'Rathbone': 2.4645738053594624e-06, 'sneer': 1.6430492035729749e-06, 'whinnied': 2.4645738053594624e-06, 'Stevie': 1.5608967433943262e-05, 'nimbler': 1.6430492035729749e-06, 'Seizing': 1.6430492035729749e-06, 'bridle': 1.6430492035729749e-06, 'tugged': 2.4645738053594624e-06, "stranger's": 3.2860984071459497e-06, 'ferocity': 2.4645738053594624e-06, 'silky': 1.6430492035729749e-06, 'agilely': 1.6430492035729749e-06, 'wickedly': 2.4645738053594624e-06, 'iron-shod': 1.6430492035729749e-06, 'limp': 1.0679819823224336e-05, 'gloated': 2.4645738053594624e-06, 'slavered': 1.6430492035729749e-06, 'chortling': 1.6430492035729749e-06, 'clamshell': 1.6430492035729749e-06, 'hooted': 1.6430492035729749e-06, 'Instantly': 1.6430492035729749e-06, 'clutched': 6.5721968142918994e-06, 'nudging': 1.6430492035729749e-06, 'mangled': 1.6430492035729749e-06, 'Houses': 2.4645738053594624e-06, 'winked': 7.393721416078387e-06, "Po'": 2.4645738053594624e-06, 'Chavis': 2.4645738053594624e-06, 'trainman': 1.6430492035729749e-06, 'Bong': 5.750672212505412e-06, 'Startled': 2.4645738053594624e-06, 'vibrated': 1.6430492035729749e-06, 'bulged': 3.2860984071459497e-06, 'trembled': 4.929147610718925e-06, 'windowpanes': 2.4645738053594624e-06, 'rattled': 2.4645738053594624e-06, 'yanked': 4.929147610718925e-06, 'alligatored': 1.6430492035729749e-06, 'ivy': 1.6430492035729749e-06, 'green-scaled': 1.6430492035729749e-06, 'steeple': 8.215246017864873e-06, 'Broome': 1.6430492035729749e-06, 'Jervis': 1.6430492035729749e-06, 'basking': 2.4645738053594624e-06, 'foothills': 1.6430492035729749e-06, 'Reformed': 3.2860984071459497e-06, 'taller': 6.5721968142918994e-06, 'Neversink': 3.2860984071459497e-06, 'belfry': 1.6430492035729749e-06, 'yawning': 2.4645738053594624e-06, 'Drew': 4.929147610718925e-06, 'consign': 2.4645738053594624e-06, 'hellfire': 1.6430492035729749e-06, "soldiers'": 2.4645738053594624e-06, 'illumined': 3.2860984071459497e-06, 'tollgate': 1.6430492035729749e-06, 'Sunday-school': 1.6430492035729749e-06, 'Violet': 4.929147610718925e-06, 'roundhouse': 2.4645738053594624e-06, 'tollhouse': 1.6430492035729749e-06, 'Afternoon': 1.6430492035729749e-06, 'Matamoras': 1.6430492035729749e-06, 'greening': 2.4645738053594624e-06, 'underbrush': 1.6430492035729749e-06, 'Laurel': 2.4645738053594624e-06, 'rove': 1.6430492035729749e-06, 'Cuddleback': 1.6430492035729749e-06, 'Idle': 1.6430492035729749e-06, 'sun-inflamed': 1.6430492035729749e-06, 'Ludie': 1.1501344425010824e-05, "Somebody's": 2.4645738053594624e-06, 'Paterson': 1.6430492035729749e-06, 'hateful': 3.2860984071459497e-06, 'peaked': 6.5721968142918994e-06, 'brass-bound': 1.6430492035729749e-06, 'shuffled': 2.4645738053594624e-06, 'wainscoted': 1.6430492035729749e-06, 'pews': 1.6430492035729749e-06, 'curtained': 1.6430492035729749e-06, 'coattails': 1.6430492035729749e-06, 'wreathed': 1.6430492035729749e-06, 'luminescence': 1.6430492035729749e-06, 'shuddered': 4.929147610718925e-06, 'deathly': 1.6430492035729749e-06, 'thin-lipped': 2.4645738053594624e-06, 'cleft': 2.4645738053594624e-06, 'indentations': 1.6430492035729749e-06, 'Townley': 1.6430492035729749e-06, 'Burt': 1.6430492035729749e-06, 'Hackettstown': 1.6430492035729749e-06, 'Someday': 4.107623008932437e-06, 'black-clad': 1.6430492035729749e-06, 'wrathful': 1.6430492035729749e-06, 'Aggie': 2.4645738053594624e-06, 'Lightning': 2.4645738053594624e-06, 'mountainsides': 1.6430492035729749e-06, 'crooked': 2.4645738053594624e-06, 'twigged': 1.6430492035729749e-06, 'aghast': 1.6430492035729749e-06, 'Drenched': 1.6430492035729749e-06, 'pat': 3.2860984071459497e-06, 'industrious': 3.2860984071459497e-06, 'brimmed': 1.6430492035729749e-06, 'straggling': 2.4645738053594624e-06, 'screeched': 4.929147610718925e-06, "Someone'll": 1.6430492035729749e-06, 'mite-box': 1.6430492035729749e-06, 'slingshot': 1.6430492035729749e-06, 'crows': 1.6430492035729749e-06, 'chewed': 4.107623008932437e-06, "roofer's": 1.6430492035729749e-06, 'shooters': 1.6430492035729749e-06, 'chased': 1.6430492035729749e-06, 'Yankton': 1.6430492035729749e-06, 'overheated': 1.6430492035729749e-06, 'ice-chest': 1.6430492035729749e-06, 'shivery': 1.6430492035729749e-06, 'jingled': 2.4645738053594624e-06, 'swaggered': 3.2860984071459497e-06, "Christophers'": 1.6430492035729749e-06, 'pinafores': 1.6430492035729749e-06, 'grownups': 3.2860984071459497e-06, 'doghouse': 1.6430492035729749e-06, 'meandered': 1.6430492035729749e-06, 'boaters': 1.6430492035729749e-06, 'mustaches': 1.6430492035729749e-06, 'verandah': 1.6430492035729749e-06, 'ruffled': 3.2860984071459497e-06, 'insolent': 2.4645738053594624e-06, 'haughty': 2.4645738053594624e-06, 'Fiddles': 1.6430492035729749e-06, 'tinkled': 1.6430492035729749e-06, 'boardinghouses': 1.6430492035729749e-06, 'crummy': 3.2860984071459497e-06, 'fucken': 5.750672212505412e-06, 'niggers': 3.2860984071459497e-06, 'Krist': 1.6430492035729749e-06, 'Nigger': 1.6430492035729749e-06, 'haint': 1.6430492035729749e-06, 'nothin': 3.2860984071459497e-06, 'shack': 1.6430492035729749e-06, 'lovin': 1.6430492035729749e-06, 'chuckled': 7.393721416078387e-06, 'Jee-sus': 1.6430492035729749e-06, 'Yooee': 1.6430492035729749e-06, 'Goddamn': 4.107623008932437e-06, 'Sonuvabitch': 1.6430492035729749e-06, 'shit': 2.4645738053594624e-06, 'Brandon': 7.393721416078387e-06, 'ol': 3.2860984071459497e-06, 'Slater': 4.929147610718925e-06, 'Kaboom': 1.6430492035729749e-06, 'thinkin': 3.2860984071459497e-06, 'thum': 1.6430492035729749e-06, 'goddamn': 6.5721968142918994e-06, 'redheader': 1.6430492035729749e-06, 'sayin': 1.6430492035729749e-06, 'wanta': 1.6430492035729749e-06, 'em': 4.107623008932437e-06, 'goddammit': 1.6430492035729749e-06, "That'll": 4.929147610718925e-06, 'Normal': 1.6430492035729749e-06, 'doin': 2.4645738053594624e-06, 'croakin': 1.6430492035729749e-06, 'Keerist': 1.6430492035729749e-06, 'Prickly': 1.6430492035729749e-06, 'twinges': 1.6430492035729749e-06, 'squashing': 1.6430492035729749e-06, 'Boogie': 1.6430492035729749e-06, 'juke': 2.4645738053594624e-06, 'humming': 5.750672212505412e-06, 'jiving': 1.6430492035729749e-06, 'comin': 3.2860984071459497e-06, 'POW': 1.6430492035729749e-06, 'Lousy': 1.6430492035729749e-06, 'tryin': 2.4645738053594624e-06, 'fuck': 3.2860984071459497e-06, 'Months': 1.6430492035729749e-06, 'Hired': 1.6430492035729749e-06, 'lackeys': 1.6430492035729749e-06, 'Warmongering': 1.6430492035729749e-06, 'haranguing': 2.4645738053594624e-06, 'patting': 4.107623008932437e-06, 'Dirty': 1.6430492035729749e-06, 'bumpin': 1.6430492035729749e-06, 'Bastards': 2.4645738053594624e-06, 'unleashed': 3.2860984071459497e-06, "Somebody'll": 1.6430492035729749e-06, 'hafta': 3.2860984071459497e-06, 'takin': 2.4645738053594624e-06, 'Stroked': 1.6430492035729749e-06, 'Damn': 4.929147610718925e-06, 'oughta': 2.4645738053594624e-06, 'Sleepy-eyed': 1.6430492035729749e-06, 'soft-spoken': 1.6430492035729749e-06, 'goofed': 1.6430492035729749e-06, 'dumped': 8.215246017864873e-06, 'Reactionaries': 1.6430492035729749e-06, 'Wised': 1.6430492035729749e-06, 'Knows': 1.6430492035729749e-06, 'gnashing': 2.4645738053594624e-06, 'glob-flakes': 1.6430492035729749e-06, "sky's": 2.4645738053594624e-06, 'cavin': 1.6430492035729749e-06, 'Keeeerist': 1.6430492035729749e-06, 'Lookit': 2.4645738053594624e-06, 'Somebody': 1.1501344425010824e-05, 'waitin': 1.6430492035729749e-06, "Slater's": 1.6430492035729749e-06, 'stirrin': 1.6430492035729749e-06, 'Yehhh': 2.4645738053594624e-06, 'Coughlin': 5.750672212505412e-06, 'testily': 1.6430492035729749e-06, 'willya': 1.6430492035729749e-06, 'stupidest': 1.6430492035729749e-06, '8-Balls': 1.6430492035729749e-06, 'croaked': 1.6430492035729749e-06, 'fucks': 1.6430492035729749e-06, "They'd": 5.750672212505412e-06, 'jerk': 2.4645738053594624e-06, 'nailing': 1.6430492035729749e-06, "Foster's": 1.6430492035729749e-06, 'Contradictions': 1.6430492035729749e-06, 'Quick': 2.4645738053594624e-06, 'shrank': 1.6430492035729749e-06, 'Finnegan': 2.4645738053594624e-06, 'caved': 1.6430492035729749e-06, 'prick': 1.6430492035729749e-06, 'nut-house': 1.6430492035729749e-06, 'dreamin': 1.6430492035729749e-06, "Coughlin's": 1.6430492035729749e-06, 'Christsake': 1.6430492035729749e-06, "C'mon": 4.107623008932437e-06, "'mon": 1.6430492035729749e-06, 'Automatically': 1.6430492035729749e-06, 'Goddammit': 1.6430492035729749e-06, 'breakin': 1.6430492035729749e-06, 'pricks': 1.6430492035729749e-06, 'Fuck': 1.6430492035729749e-06, 'snuggled': 4.107623008932437e-06, 'bandits': 3.2860984071459497e-06, 'perseveres': 1.6430492035729749e-06, 'bedraggled': 1.6430492035729749e-06, "Voltaire's": 2.4645738053594624e-06, 'depraved': 2.4645738053594624e-06, 'Souci': 1.6430492035729749e-06, 'Timon': 1.6430492035729749e-06, 'misanthrope': 1.6430492035729749e-06, 'subterfuges': 1.6430492035729749e-06, 'Discourse': 3.2860984071459497e-06, 'Gallant': 1.6430492035729749e-06, 'Muses': 1.6430492035729749e-06, 'String': 1.6430492035729749e-06, 'stoutly': 1.6430492035729749e-06, 'replying': 1.6430492035729749e-06, 'decry': 2.4645738053594624e-06, 'nothings': 1.6430492035729749e-06, 'craved': 2.4645738053594624e-06, 'Bah': 1.6430492035729749e-06, 'rehearse': 1.6430492035729749e-06, 'Armide': 1.6430492035729749e-06, 'Prosopopoeia': 1.6430492035729749e-06, 'Fabricius': 1.6430492035729749e-06, 'Afraid': 2.4645738053594624e-06, 'Fontainebleau': 1.6430492035729749e-06, 'austerity': 1.6430492035729749e-06, 'self-effacement': 1.6430492035729749e-06, "D'Aumont": 1.6430492035729749e-06, 'Soothsayer': 1.6430492035729749e-06, 'unperformed': 1.6430492035729749e-06, 'titillating': 1.6430492035729749e-06, 'squirmed': 2.4645738053594624e-06, 'perspiration': 1.6430492035729749e-06, 'Confessions': 1.6430492035729749e-06, 'Raynal': 1.6430492035729749e-06, 'Pompadour': 1.6430492035729749e-06, 'slovenly': 3.2860984071459497e-06, 'slovenliness': 1.6430492035729749e-06, 'obeys': 1.6430492035729749e-06, 'inane': 1.6430492035729749e-06, 'spurring': 1.6430492035729749e-06, 'a-coming': 2.4645738053594624e-06, 'misjudged': 2.4645738053594624e-06, 'storekeepers': 1.6430492035729749e-06, 'dashing': 4.107623008932437e-06, 'deplorably': 1.6430492035729749e-06, 'nauseated': 2.4645738053594624e-06, 'flint': 1.6430492035729749e-06, 'redcoat': 5.750672212505412e-06, 'musket': 5.750672212505412e-06, 'showy': 1.6430492035729749e-06, 'punctured': 3.2860984071459497e-06, 'booted': 1.6430492035729749e-06, 'stirrup': 1.6430492035729749e-06, 'crazed': 2.4645738053594624e-06, 'drummers': 1.6430492035729749e-06, 'pipers': 1.6430492035729749e-06, 'bayonets': 3.2860984071459497e-06, 'Committeemen': 3.2860984071459497e-06, 'sobbing': 1.6430492035729749e-06, 'viselike': 1.6430492035729749e-06, 'plucked': 4.107623008932437e-06, 'low-lying': 1.6430492035729749e-06, 'mooed': 1.6430492035729749e-06, 'waded': 2.4645738053594624e-06, 'handfuls': 1.6430492035729749e-06, 'Pitt': 2.4645738053594624e-06, 'sympathizing': 1.6430492035729749e-06, 'reloaded': 2.4645738053594624e-06, 'Militia': 1.6430492035729749e-06, 'slow-moving': 1.6430492035729749e-06, 'brisker': 1.6430492035729749e-06, 'narrowness': 1.6430492035729749e-06, 'Mattathias': 1.6430492035729749e-06, 'slackened': 2.4645738053594624e-06, 'pasty': 2.4645738053594624e-06, 'pimples': 1.6430492035729749e-06, 'rob': 2.4645738053594624e-06, 'outface': 2.4645738053594624e-06, 'braver': 2.4645738053594624e-06, 'Ameaux': 2.4645738053594624e-06, 'gaming-card': 2.4645738053594624e-06, 'Dancing': 2.4645738053594624e-06, 'Bordel': 2.4645738053594624e-06, 'breeches': 1.6430492035729749e-06, 'Drunkenness': 1.6430492035729749e-06, 'chinless': 2.4645738053594624e-06, 'reprobate': 1.6430492035729749e-06, 'Jake': 5.750672212505412e-06, 'Camaret': 4.107623008932437e-06, 'Plunking': 1.6430492035729749e-06, 'smirk': 3.2860984071459497e-06, 'Calmly': 1.6430492035729749e-06, 'brazen': 1.6430492035729749e-06, 'dishonor': 2.4645738053594624e-06, 'Favre': 4.929147610718925e-06, 'rudely': 2.4645738053594624e-06, 'ungodly': 2.4645738053594624e-06, 'high-backed': 1.6430492035729749e-06, 'Ablard': 2.4645738053594624e-06, 'Corne': 2.4645738053594624e-06, 'Poupin': 1.6430492035729749e-06, 'sunken': 2.4645738053594624e-06, 'deep-set': 3.2860984071459497e-06, 'brazenly': 1.6430492035729749e-06, 'adulterers': 2.4645738053594624e-06, 'Philibert': 1.6430492035729749e-06, 'Berthelier': 1.6430492035729749e-06, 'throttling': 1.6430492035729749e-06, 'beadle': 1.6430492035729749e-06, 'evildoers': 1.6430492035729749e-06, 'Burial': 1.6430492035729749e-06, 'gibbet': 1.6430492035729749e-06, 'Abbot': 1.6430492035729749e-06, 'Eloi': 1.6430492035729749e-06, 'Mommor': 1.6430492035729749e-06, 'blue-draped': 1.6430492035729749e-06, 'Varnessa': 1.6430492035729749e-06, 'Noyon-la-Sainte': 1.6430492035729749e-06, 'lilt': 1.6430492035729749e-06, "Charles's": 1.6430492035729749e-06, 'raftered': 1.6430492035729749e-06, 'specters': 1.6430492035729749e-06, 'rooftops': 1.6430492035729749e-06, 'trudged': 4.107623008932437e-06, 'crunched': 1.6430492035729749e-06, 'slapped': 7.393721416078387e-06, 'parchment': 1.6430492035729749e-06, 'neared': 3.2860984071459497e-06, 'Quickening': 1.6430492035729749e-06, 'pigeon': 2.4645738053594624e-06, 'Clemence': 1.6430492035729749e-06, 'moon-splashed': 1.6430492035729749e-06, 'insurmountable': 2.4645738053594624e-06, 'glittered': 1.6430492035729749e-06, 'blinking': 3.2860984071459497e-06, 'Sleep': 2.4645738053594624e-06, 'Indigestion': 1.6430492035729749e-06, 'Nerien': 2.4645738053594624e-06, 'Cop': 1.6430492035729749e-06, 'Bucer': 1.6430492035729749e-06, 'Tillet': 1.6430492035729749e-06, 'Waldensian': 1.6430492035729749e-06, 'smashing': 1.6430492035729749e-06, 'godless': 2.4645738053594624e-06, 'Refugees': 1.6430492035729749e-06, 'Confession': 1.6430492035729749e-06, 'blasphemed': 1.6430492035729749e-06, 'Libertines': 1.6430492035729749e-06, 'Tears': 2.4645738053594624e-06, 'meditated': 1.6430492035729749e-06, "Favre's": 1.6430492035729749e-06, 'reverie': 1.6430492035729749e-06, 'Faint': 1.6430492035729749e-06, 'Corault': 1.6430492035729749e-06, 'near-blind': 1.6430492035729749e-06, 'Gospelers': 1.6430492035729749e-06, "Eli's": 2.4645738053594624e-06, 'hearth': 4.107623008932437e-06, 'Plot': 1.6430492035729749e-06, 'Anabaptists': 1.6430492035729749e-06, 'Caroli': 3.2860984071459497e-06, 'Benoit': 1.6430492035729749e-06, 'Arianism': 1.6430492035729749e-06, 'Arianists': 1.6430492035729749e-06, 'Sept': 1.6430492035729749e-06, 'unmasked': 1.6430492035729749e-06, 'Anabaptist': 1.6430492035729749e-06, 'Bern': 4.929147610718925e-06, 'unleavened': 2.4645738053594624e-06, 'firelight': 2.4645738053594624e-06, 'Syndic': 1.6430492035729749e-06, 'Molard': 1.6430492035729749e-06, 'premonition': 2.4645738053594624e-06, 'outskirts': 3.2860984071459497e-06, 'rabble': 2.4645738053594624e-06, 'Gaspard': 1.6430492035729749e-06, 'Arianist': 1.6430492035729749e-06, 'blob': 2.4645738053594624e-06, 'Heretic': 1.6430492035729749e-06, 'heaved': 4.107623008932437e-06, 'dizzily': 1.6430492035729749e-06, 'Fists': 1.6430492035729749e-06, 'pummeled': 1.6430492035729749e-06, 'snarling': 3.2860984071459497e-06, 'growling': 1.6430492035729749e-06, 'bristling': 3.2860984071459497e-06, 'dripped': 5.750672212505412e-06, 'improvised': 3.2860984071459497e-06, 'hardbake': 1.6430492035729749e-06, 'toffee': 1.6430492035729749e-06, 'bitters': 1.6430492035729749e-06, 'stationery': 2.4645738053594624e-06, 'yellowing': 2.4645738053594624e-06, 'aimlessly': 1.6430492035729749e-06, 'pfennig': 1.6430492035729749e-06, 'stoicism': 2.4645738053594624e-06, 'expiating': 1.6430492035729749e-06, 'torpid': 1.6430492035729749e-06, 'befogged': 1.6430492035729749e-06, 'loblolly': 1.6430492035729749e-06, 'hutment': 1.6430492035729749e-06, 'chinked': 1.6430492035729749e-06, 'tenting': 1.6430492035729749e-06, 'hardtack': 3.2860984071459497e-06, 'cranky': 1.6430492035729749e-06, 'surmounted': 2.4645738053594624e-06, 'drizzle': 4.929147610718925e-06, 'sopping': 1.6430492035729749e-06, 'Purdew': 1.0679819823224336e-05, 'lairs': 1.6430492035729749e-06, 'chaffing': 1.6430492035729749e-06, 'exchanging': 3.2860984071459497e-06, 'obscenities': 2.4645738053594624e-06, 'covertly': 1.6430492035729749e-06, 'bestubbled': 1.6430492035729749e-06, 'emit': 1.6430492035729749e-06, 'obscene': 2.4645738053594624e-06, 'pale-blue': 1.6430492035729749e-06, 'trustfully': 1.6430492035729749e-06, 'freckles': 3.2860984071459497e-06, 'Lemme': 1.6430492035729749e-06, 'untellable': 1.6430492035729749e-06, 'snoring': 5.750672212505412e-06, 'poncho': 3.2860984071459497e-06, 'armful': 1.6430492035729749e-06, 'campmate': 1.6430492035729749e-06, 'rubberized': 1.6430492035729749e-06, 'hardtack-box': 1.6430492035729749e-06, 'Antietam': 2.4645738053594624e-06, 'slacking': 1.6430492035729749e-06, 'grayer': 1.6430492035729749e-06, 'emptiness': 2.4645738053594624e-06, 'swathed': 1.6430492035729749e-06, 'turban': 2.4645738053594624e-06, 'Moisture': 1.6430492035729749e-06, 'twitching': 2.4645738053594624e-06, 'Slice': 2.4645738053594624e-06, 'bhoy': 1.6430492035729749e-06, 'queried': 2.4645738053594624e-06, 'Mollie': 5.750672212505412e-06, 'Mutton': 4.929147610718925e-06, 'Scratching': 1.6430492035729749e-06, 'hasps': 1.6430492035729749e-06, 'Jed': 7.393721416078387e-06, 'Hawksworth': 1.6430492035729749e-06, 'dusk': 8.215246017864873e-06, 'Thee': 1.6430492035729749e-06, 'riven': 1.6430492035729749e-06, 'thickening': 1.6430492035729749e-06, 'greatcoat': 4.929147610718925e-06, 'yonder': 1.6430492035729749e-06, 'darkly': 2.4645738053594624e-06, 'hutments': 1.6430492035729749e-06, 'nameless': 1.6430492035729749e-06, 'undershirt': 3.2860984071459497e-06, 'sizzled': 2.4645738053594624e-06, 'cornfield': 1.6430492035729749e-06, 'maniacal': 1.6430492035729749e-06, 'clubbed': 2.4645738053594624e-06, 'flail': 1.6430492035729749e-06, 'swirl': 2.4645738053594624e-06, 'Rebel': 6.5721968142918994e-06, 'veining': 2.4645738053594624e-06, 'Blaustein': 1.6430492035729749e-06, 'Mose': 5.750672212505412e-06, 'Gonna': 1.6430492035729749e-06, 'Ole': 3.2860984071459497e-06, 'Buckra': 2.4645738053594624e-06, 'Yeah': 1.4787442832156774e-05, 'yeah': 7.393721416078387e-06, "Gre't": 1.6430492035729749e-06, 'tits': 2.4645738053594624e-06, 'lak': 1.6430492035729749e-06, 'slop': 2.4645738053594624e-06, 'giggled': 3.2860984071459497e-06, 'Fooled': 1.6430492035729749e-06, 'ole': 2.4645738053594624e-06, "po'k": 3.2860984071459497e-06, 'skippers': 2.4645738053594624e-06, 'hoo-pig': 1.6430492035729749e-06, 'fer': 2.4645738053594624e-06, 'lob-scuse': 2.4645738053594624e-06, 'crumbled': 3.2860984071459497e-06, 'lobscouse': 1.6430492035729749e-06, 'mumbled': 4.929147610718925e-06, 'Easthampton': 1.6430492035729749e-06, 'Fritzie': 5.750672212505412e-06, 'sea-blessed': 1.6430492035729749e-06, 'spume': 1.6430492035729749e-06, 'wrack': 1.6430492035729749e-06, 'terry-cloth': 2.4645738053594624e-06, 'wobbly': 2.4645738053594624e-06, "Y'all": 3.2860984071459497e-06, 'wanna': 3.2860984071459497e-06, 'shoved': 7.393721416078387e-06, 'flaunting': 1.6430492035729749e-06, "liar's": 1.6430492035729749e-06, 'euphoria': 2.4645738053594624e-06, 'swathings': 1.6430492035729749e-06, 'jabbed': 2.4645738053594624e-06, "deceit's": 1.6430492035729749e-06, 'short-lived': 3.2860984071459497e-06, 'muttering': 7.393721416078387e-06, 'Andrus': 1.0679819823224336e-05, "'nother": 1.6430492035729749e-06, "H'all": 1.6430492035729749e-06, 'gasped': 4.929147610718925e-06, 'enervating': 2.4645738053594624e-06, 'McFeeley': 1.0679819823224336e-05, 'Irvin': 1.6430492035729749e-06, 'Moll': 4.929147610718925e-06, 'Irv': 1.6430492035729749e-06, 'early-morning': 1.6430492035729749e-06, 'Selena': 4.107623008932437e-06, "'nuff": 2.4645738053594624e-06, 'crudities': 1.6430492035729749e-06, 'southernisms': 1.6430492035729749e-06, "Sparling's": 1.6430492035729749e-06, 'constricted': 2.4645738053594624e-06, 'gauged': 2.4645738053594624e-06, 'Westwood': 1.6430492035729749e-06, 'overcurious': 1.6430492035729749e-06, 'unservile': 1.6430492035729749e-06, "today'll": 1.6430492035729749e-06, 'good-news': 1.6430492035729749e-06, 'deadened': 1.6430492035729749e-06, 'blinkers': 1.6430492035729749e-06, 'mug': 1.6430492035729749e-06, 'drugging': 1.6430492035729749e-06, 'redder': 3.2860984071459497e-06, 'glassy': 2.4645738053594624e-06, 'groggy': 1.6430492035729749e-06, 'crank': 1.6430492035729749e-06, 'wan': 2.4645738053594624e-06, 'uselessness': 2.4645738053594624e-06, 'play-acting': 1.6430492035729749e-06, 'Sipping': 1.6430492035729749e-06, "Fritzie's": 1.6430492035729749e-06, 'Luisa': 1.6430492035729749e-06, 'Kidnaper': 1.6430492035729749e-06, 'spurns': 1.6430492035729749e-06, 'five-column': 1.6430492035729749e-06, 'Duane': 1.6430492035729749e-06, 'buncha': 1.6430492035729749e-06, 'Andruses': 1.6430492035729749e-06, 'Rheinholdt': 1.6430492035729749e-06, "Rheinholdt's": 1.6430492035729749e-06, 'munching': 1.6430492035729749e-06, 'Sparling': 1.6430492035729749e-06, 'DeGroot': 1.6430492035729749e-06, 'Ringel': 1.6430492035729749e-06, 'lunchroom': 1.6430492035729749e-06, 'suppers': 1.6430492035729749e-06, 'skirting': 1.6430492035729749e-06, 'Skopas': 4.107623008932437e-06, 'resiny': 1.6430492035729749e-06, 'olives': 1.6430492035729749e-06, 'boatloads': 1.6430492035729749e-06, 'unrevealing': 1.6430492035729749e-06, 'hoarse': 4.929147610718925e-06, 'brocaded': 1.6430492035729749e-06, 'Flanked': 1.6430492035729749e-06, 'herded': 2.4645738053594624e-06, 'matriarch': 1.6430492035729749e-06, 'quilted': 1.6430492035729749e-06, 'wrapper': 2.4645738053594624e-06, 'shuffling': 3.2860984071459497e-06, 'inquisitor': 1.6430492035729749e-06, 'monosyllables': 2.4645738053594624e-06, 'nods': 1.6430492035729749e-06, 'restlessly': 2.4645738053594624e-06, 'romances': 1.6430492035729749e-06, 'fledglings': 1.6430492035729749e-06, 'McFeely': 1.6430492035729749e-06, 'Kahler': 6.5721968142918994e-06, 'Tudor-style': 1.6430492035729749e-06, 'shrub': 1.6430492035729749e-06, 'straight-backed': 1.6430492035729749e-06, 'rimless': 1.6430492035729749e-06, 'dried-out': 1.6430492035729749e-06, 'Funny': 2.4645738053594624e-06, 'Hausman': 1.6430492035729749e-06, 'barging': 1.6430492035729749e-06, "Hausman's": 1.6430492035729749e-06, 'firecracker': 1.6430492035729749e-06, 'ki-yi-ing': 1.6430492035729749e-06, 'flamed': 1.6430492035729749e-06, 'teakettle': 1.6430492035729749e-06, 'icebox': 3.2860984071459497e-06, 'teacart': 2.4645738053594624e-06, 'petit': 1.6430492035729749e-06, 'dejeuner': 1.6430492035729749e-06, 'breakfast-table': 1.6430492035729749e-06, 'spoonful': 1.6430492035729749e-06, 'Stirring': 1.6430492035729749e-06, 'creaked': 5.750672212505412e-06, 'fauteuil': 1.6430492035729749e-06, 'rudeness': 1.6430492035729749e-06, 'fling': 2.4645738053594624e-06, 'marmalade': 1.6430492035729749e-06, 'black-market': 1.6430492035729749e-06, 'Berlitz': 1.6430492035729749e-06, 'lathered': 3.2860984071459497e-06, 'Sabine': 2.4645738053594624e-06, 'ornately': 1.6430492035729749e-06, 'important-looking': 1.6430492035729749e-06, 'Mme': 3.2860984071459497e-06, 'Cestre': 2.4645738053594624e-06, 'Alix': 2.4645738053594624e-06, 'Bonenfant': 1.6430492035729749e-06, "Alix's": 1.6430492035729749e-06, 'Vienot': 1.6430492035729749e-06, 'drawing-room': 2.4645738053594624e-06, 'upholstered': 1.6430492035729749e-06, 'russet': 1.6430492035729749e-06, 'Lancret': 1.6430492035729749e-06, 'Redoute': 3.2860984071459497e-06, 'bookcase': 2.4645738053594624e-06, 'criss-crossed': 3.2860984071459497e-06, 'daybed': 1.6430492035729749e-06, 'dark-brown': 1.6430492035729749e-06, 'velours': 1.6430492035729749e-06, 'pillows': 3.2860984071459497e-06, "Beethoven's": 1.6430492035729749e-06, 'Da-da-da-dum': 1.6430492035729749e-06, "Eugene's": 2.4645738053594624e-06, 'astral': 1.6430492035729749e-06, 'concierge': 2.4645738053594624e-06, 'clogged': 2.4645738053594624e-06, 'unclaimed': 2.4645738053594624e-06, 'Vouillemont': 1.6430492035729749e-06, 'sight-seeing': 2.4645738053594624e-06, 'Tours': 1.6430492035729749e-06, 'Cheap': 1.6430492035729749e-06, 'Looked': 1.6430492035729749e-06, 'aprons': 1.6430492035729749e-06, 'shoestrings': 1.6430492035729749e-06, 'unpicturesque': 1.6430492035729749e-06, 'sneakers': 3.2860984071459497e-06, 'open-collared': 1.6430492035729749e-06, 'coupons': 1.6430492035729749e-06, 'Blois': 1.6430492035729749e-06, 'Vermouth': 1.6430492035729749e-06, "Irelands'": 1.6430492035729749e-06, 'Eighties': 1.6430492035729749e-06, 'hot-water': 1.6430492035729749e-06, 'Damp': 1.6430492035729749e-06, 'Concorde': 1.6430492035729749e-06, 'myrrh': 2.4645738053594624e-06, 'aloes': 2.4645738053594624e-06, "pounds'": 1.6430492035729749e-06, "Jesus's": 1.6430492035729749e-06, 'winding-clothes': 1.6430492035729749e-06, 'Descent': 1.6430492035729749e-06, 'Arimathea': 2.4645738053594624e-06, 'Search': 1.6430492035729749e-06, "Dell'Arca": 1.6430492035729749e-06, 'Lamentation': 1.6430492035729749e-06, 'usurped': 1.6430492035729749e-06, 'Pontius': 1.6430492035729749e-06, "Pilate's": 1.6430492035729749e-06, 'Pieta': 2.4645738053594624e-06, 'halos': 1.6430492035729749e-06, 'resurrected': 1.6430492035729749e-06, 'ungainly': 2.4645738053594624e-06, 'probed': 3.2860984071459497e-06, 'remotest': 1.6430492035729749e-06, 'Visually': 1.6430492035729749e-06, 'stalls': 3.2860984071459497e-06, 'sweet-faced': 1.6430492035729749e-06, 'foreheads': 2.4645738053594624e-06, 'Discovering': 1.6430492035729749e-06, 'life-size': 1.6430492035729749e-06, 'draper': 1.6430492035729749e-06, 'Argiento': 1.1501344425010824e-05, 'Tiber': 2.4645738053594624e-06, "Madonna's": 1.6430492035729749e-06, 'sluiced': 2.4645738053594624e-06, 'tactile': 2.4645738053594624e-06, 'Hebraic': 1.6430492035729749e-06, 'Ripa': 1.6430492035729749e-06, '1492': 1.6430492035729749e-06, 'Melzi': 4.107623008932437e-06, 'robed': 1.6430492035729749e-06, 'gabardine': 1.6430492035729749e-06, 'skullcap': 3.2860984071459497e-06, 'graven': 1.6430492035729749e-06, 'Carrara': 1.6430492035729749e-06, 'Dionigi': 1.6430492035729749e-06, 'Workmen': 1.6430492035729749e-06, 'sinewy': 2.4645738053594624e-06, "Sangallo's": 1.6430492035729749e-06, 'Sangallo': 1.6430492035729749e-06, 'trestle': 1.6430492035729749e-06, 'disrobe': 1.6430492035729749e-06, 'toweling': 1.6430492035729749e-06, 'bolting': 1.6430492035729749e-06, 'roughed': 1.6430492035729749e-06, 'thirty-three': 1.6430492035729749e-06, 'mid-fifties': 2.4645738053594624e-06, 'Jacopo': 2.4645738053594624e-06, 'Galli': 3.2860984071459497e-06, 'Santo': 2.4645738053594624e-06, 'translucence': 1.6430492035729749e-06, 'scratchiness': 1.6430492035729749e-06, 'plastically': 1.6430492035729749e-06, 'Carving': 1.6430492035729749e-06, 'Jesuits': 1.6430492035729749e-06, 'scoured': 3.2860984071459497e-06, 'Scrub': 1.6430492035729749e-06, 'unteach': 1.6430492035729749e-06, 'Grumbled': 1.6430492035729749e-06, 'campagna': 1.6430492035729749e-06, 'Po': 1.6430492035729749e-06, 'anvil': 1.6430492035729749e-06, 'chisels': 1.6430492035729749e-06, 'Lippi': 1.6430492035729749e-06, 'pigeons': 1.6430492035729749e-06, 'gush': 1.6430492035729749e-06, "Michelangelo's": 1.6430492035729749e-06, 'jerking': 3.2860984071459497e-06, 'gasps': 4.929147610718925e-06, 'twitched': 4.107623008932437e-06, 'convulsively': 2.4645738053594624e-06, 'Juanita': 1.3144393628583799e-05, 'crooning': 1.6430492035729749e-06, 'Tussle': 4.107623008932437e-06, 'Trouble': 3.2860984071459497e-06, 'bewilderment': 3.2860984071459497e-06, "Jonathan's": 4.107623008932437e-06, 'packs': 2.4645738053594624e-06, 'shriveled': 3.2860984071459497e-06, 'steeled': 1.6430492035729749e-06, "nurse's": 1.6430492035729749e-06, 'remembrance': 2.4645738053594624e-06, "baby's": 5.750672212505412e-06, 'drooped': 1.6430492035729749e-06, 'Fitzroy': 1.6430492035729749e-06, 'portended': 1.6430492035729749e-06, 'Randolph': 8.215246017864873e-06, 'replanted': 1.6430492035729749e-06, 'Annie': 1.6430492035729749e-06, 'fathom': 3.2860984071459497e-06, 'cronies': 2.4645738053594624e-06, "Lattimer's": 1.6430492035729749e-06, 'Moccasin': 1.6430492035729749e-06, 'Rangers': 1.6430492035729749e-06, 'Hush': 2.4645738053594624e-06, 'winking': 5.750672212505412e-06, 'Stranger': 1.6430492035729749e-06, 'strapped': 1.6430492035729749e-06, 'drunkenly': 4.107623008932437e-06, 'Hearing': 1.6430492035729749e-06, 'raucously': 1.6430492035729749e-06, 'perplexed': 2.4645738053594624e-06, 'reprisals': 1.6430492035729749e-06, 'schoolroom': 3.2860984071459497e-06, "Joel's": 2.4645738053594624e-06, 'blackberry': 1.6430492035729749e-06, 'Beau': 1.6430492035729749e-06, 'sired': 3.2860984071459497e-06, 'restive': 1.6430492035729749e-06, 'bawling': 1.6430492035729749e-06, 'wares': 1.6430492035729749e-06, 'Wheeling': 1.6430492035729749e-06, 'Dangling': 1.6430492035729749e-06, 'trinkets': 1.6430492035729749e-06, 'Cheat': 1.6430492035729749e-06, "out'n": 2.4645738053594624e-06, 'git': 3.2860984071459497e-06, 'Federals': 1.6430492035729749e-06, 'crowed': 2.4645738053594624e-06, 'Winking': 1.6430492035729749e-06, "Breckenridge's": 1.6430492035729749e-06, 'Maj.': 1.6430492035729749e-06, 'grassfire': 1.6430492035729749e-06, 'garbled': 1.6430492035729749e-06, 'dey': 1.6430492035729749e-06, 'dere': 1.6430492035729749e-06, 'Manassas': 2.4645738053594624e-06, 'rejoice': 1.6430492035729749e-06, 'victoriously': 1.6430492035729749e-06, 'insulted': 2.4645738053594624e-06, 'flushed': 5.750672212505412e-06, 'Lattimer': 3.2860984071459497e-06, "Juanita's": 1.6430492035729749e-06, 'Tomorrow': 4.107623008932437e-06, 'iced': 1.6430492035729749e-06, "Marsh's": 1.6430492035729749e-06, 'gentians': 1.6430492035729749e-06, 'enunciated': 1.6430492035729749e-06, 'manumission': 1.6430492035729749e-06, 'cove': 1.6430492035729749e-06, 'unsaid': 1.6430492035729749e-06, 'well-stuffed': 1.6430492035729749e-06, 'snuffer': 1.6430492035729749e-06, 'scented': 4.929147610718925e-06, 'candlewick': 1.6430492035729749e-06, 'Mynheer': 3.2860984071459497e-06, 'marvelously': 1.6430492035729749e-06, 'seahorse': 1.6430492035729749e-06, 'scudding': 2.4645738053594624e-06, 'sugared': 1.6430492035729749e-06, 'silver-gray': 1.6430492035729749e-06, 'lace-drawn': 1.6430492035729749e-06, 'buckles': 2.4645738053594624e-06, 'lummox': 1.6430492035729749e-06, 'upstate': 1.6430492035729749e-06, 'Rensselaerwyck': 1.6430492035729749e-06, 'Cortlandt': 3.2860984071459497e-06, 'trolls': 1.6430492035729749e-06, "sulky's": 1.6430492035729749e-06, 'pothole': 1.6430492035729749e-06, 'electrifying': 1.6430492035729749e-06, 'purling': 1.6430492035729749e-06, 'weirs': 1.6430492035729749e-06, 'moon-drenched': 1.6430492035729749e-06, 'blending': 1.6430492035729749e-06, 'saddlebags': 3.2860984071459497e-06, 'berry': 3.2860984071459497e-06, 'bewhiskered': 1.6430492035729749e-06, 'feathered': 4.107623008932437e-06, 'groin': 4.107623008932437e-06, 'shied': 3.2860984071459497e-06, 'nostrils': 3.2860984071459497e-06, 'croaking': 1.6430492035729749e-06, 'rooster': 3.2860984071459497e-06, 'bleaching': 1.6430492035729749e-06, 'hawk': 6.5721968142918994e-06, 'pig-infested': 1.6430492035729749e-06, 'non-Indian': 1.6430492035729749e-06, 'landowners': 1.6430492035729749e-06, 'hayfields': 1.6430492035729749e-06, 'Husbandry': 1.6430492035729749e-06, 'snake-rail': 1.6430492035729749e-06, 'fishers': 1.6430492035729749e-06, 'mooncursers': 1.6430492035729749e-06, 'smugglers': 1.6430492035729749e-06, 'eatable': 1.6430492035729749e-06, 'killable': 1.6430492035729749e-06, 'digestible': 1.6430492035729749e-06, 'Paulus': 1.6430492035729749e-06, 'Hook': 1.6430492035729749e-06, "Majesty's": 1.6430492035729749e-06, 'herding': 1.6430492035729749e-06, 'hulks': 2.4645738053594624e-06, 'ketches': 1.6430492035729749e-06, "Breed's": 2.4645738053594624e-06, 'seeped': 2.4645738053594624e-06, 'Provincial': 1.6430492035729749e-06, 'glided': 1.6430492035729749e-06, 'sterns': 1.6430492035729749e-06, 'men-of-war': 1.6430492035729749e-06, 'gig': 1.6430492035729749e-06, 'dwellers': 1.6430492035729749e-06, 'chevaux': 1.6430492035729749e-06, 'frise': 1.6430492035729749e-06, 'Palisades': 1.6430492035729749e-06, 'gritty': 1.6430492035729749e-06, 'clam': 3.2860984071459497e-06, 'nested': 4.107623008932437e-06, 'thickets': 2.4645738053594624e-06, 'Wappinger': 1.6430492035729749e-06, 'Fishkill': 1.6430492035729749e-06, "Verplanck's": 1.6430492035729749e-06, 'salt-crusted': 1.6430492035729749e-06, 'Rockaways': 1.6430492035729749e-06, 'Waited': 1.6430492035729749e-06, 'lobster-backed': 1.6430492035729749e-06, 'Spuyten': 1.6430492035729749e-06, 'Duyvil': 1.6430492035729749e-06, 'violet': 2.4645738053594624e-06, 'meadow': 1.0679819823224336e-05, "Kentuck'": 1.6430492035729749e-06, 'cutlass': 1.6430492035729749e-06, 'unshaved': 1.6430492035729749e-06, 'odyssey': 1.6430492035729749e-06, 'Pensive': 1.6430492035729749e-06, 'ached': 3.2860984071459497e-06, 'mosquito-plagued': 1.6430492035729749e-06, 'tepid': 1.6430492035729749e-06, 'stropping': 1.6430492035729749e-06, 'knob': 2.4645738053594624e-06, 'bedpost': 1.6430492035729749e-06, 'calumny': 1.6430492035729749e-06, 'intuitions': 1.6430492035729749e-06, 'stropped': 1.6430492035729749e-06, 'ledgers': 1.6430492035729749e-06, 'Manderscheid': 1.6430492035729749e-06, 'Unique': 1.6430492035729749e-06, 'Injury': 1.6430492035729749e-06, 'ingratitude': 1.6430492035729749e-06, 'Hancock': 1.6430492035729749e-06, "smugglers'": 1.6430492035729749e-06, 'tarred': 1.6430492035729749e-06, 'wretch': 1.6430492035729749e-06, "Schuyler's": 1.6430492035729749e-06, 'perfectability': 1.6430492035729749e-06, 'tenebrous': 1.6430492035729749e-06, 'Peg': 1.6430492035729749e-06, 'meditate': 1.6430492035729749e-06, 'lather': 3.2860984071459497e-06, 'retied': 1.6430492035729749e-06, 'wig': 1.6430492035729749e-06, 'colonials': 1.6430492035729749e-06, 'wide-cut': 1.6430492035729749e-06, 'patriarchal': 1.6430492035729749e-06, 'plenitude': 1.6430492035729749e-06, 'English-Dutch': 1.6430492035729749e-06, 'manors': 1.6430492035729749e-06, 'squires': 1.6430492035729749e-06, 'Burly': 1.6430492035729749e-06, 'leathered': 1.6430492035729749e-06, 'Peasants': 1.6430492035729749e-06, 'Andrei': 1.5608967433943262e-05, 'Bathyran': 1.6430492035729749e-06, 'Tolek': 1.6430492035729749e-06, 'Alterman': 1.6430492035729749e-06, 'swamps': 2.4645738053594624e-06, 'irrigating': 1.6430492035729749e-06, 'Uplands': 2.4645738053594624e-06, 'unfertile': 1.6430492035729749e-06, 'Brandel': 3.2860984071459497e-06, 'rostrum': 2.4645738053594624e-06, 'Zionists': 1.6430492035729749e-06, 'ideologies': 3.2860984071459497e-06, 'Judea': 1.6430492035729749e-06, 'Zionism': 1.6430492035729749e-06, 'chills': 2.4645738053594624e-06, 'birthright': 1.6430492035729749e-06, 'Tel': 1.6430492035729749e-06, 'Aviv': 1.6430492035729749e-06, "Warsaw's": 2.4645738053594624e-06, 'Ulanys': 3.2860984071459497e-06, 'flirted': 1.6430492035729749e-06, 'Rak': 1.6430492035729749e-06, 'gnawed': 1.6430492035729749e-06, "Andrei's": 2.4645738053594624e-06, 'goddamned': 2.4645738053594624e-06, 'inched': 1.6430492035729749e-06, 'marshaling': 1.6430492035729749e-06, 'Deportees': 1.6430492035729749e-06, 'Rumanians': 1.6430492035729749e-06, 'Styka': 1.3965918230370285e-05, 'Bathyrans': 2.4645738053594624e-06, 'Ana': 1.6430492035729749e-06, 'Odilo': 1.6430492035729749e-06, 'Globocnik': 3.2860984071459497e-06, 'Gauleiter': 1.6430492035729749e-06, "Death's-Head": 2.4645738053594624e-06, 'Himmler': 1.6430492035729749e-06, 'Funk': 4.107623008932437e-06, "Lublin's": 2.4645738053594624e-06, 'fountainhead': 1.6430492035729749e-06, 'spouted': 3.2860984071459497e-06, 'interlacing': 1.6430492035729749e-06, 'lagers': 1.6430492035729749e-06, 'Madagascar': 1.6430492035729749e-06, 'Stories': 1.6430492035729749e-06, "Globocnik's": 1.6430492035729749e-06, 'Lipowa': 1.6430492035729749e-06, 'Sobibor': 1.6430492035729749e-06, 'Chelmno': 1.6430492035729749e-06, 'Poltawa': 1.6430492035729749e-06, 'Belzec': 1.6430492035729749e-06, 'Krzywy-Rog': 1.6430492035729749e-06, 'Budzyn': 1.6430492035729749e-06, 'Krasnik': 1.6430492035729749e-06, 'lashings': 1.6430492035729749e-06, 'crushers': 1.6430492035729749e-06, 'Auxiliaries': 2.4645738053594624e-06, 'Einsatzkommandos': 1.6430492035729749e-06, 'knee-deep': 1.6430492035729749e-06, 'dope-ridden': 1.6430492035729749e-06, 'maniacs': 1.6430492035729749e-06, 'Reinhard': 2.4645738053594624e-06, 'Majdan-Tartarski': 1.6430492035729749e-06, 'Majdanek': 9.036770619651361e-06, 'refilled': 1.6430492035729749e-06, 'deportees': 1.6430492035729749e-06, 'Umschlagplatz': 1.6430492035729749e-06, 'Litowski': 1.6430492035729749e-06, 'Krakow': 1.6430492035729749e-06, 'brownish': 1.6430492035729749e-06, 'Androfski': 3.2860984071459497e-06, 'haggard': 2.4645738053594624e-06, 'vociferously': 1.6430492035729749e-06, 'grumbled': 1.6430492035729749e-06, 'Grabski': 4.929147610718925e-06, 'zlotys': 1.6430492035729749e-06, 'dishonored': 1.6430492035729749e-06, "Grabski's": 1.6430492035729749e-06, 'Bystrzyca': 1.6430492035729749e-06, 'sweat-saturated': 1.6430492035729749e-06, 'moon-round': 1.6430492035729749e-06, 'Flies': 1.6430492035729749e-06, 'lentils': 1.6430492035729749e-06, 'barrack': 1.6430492035729749e-06, 'slurped': 1.6430492035729749e-06, 'son-of-a-bitch': 2.4645738053594624e-06, 'one-thousand-zloty': 1.6430492035729749e-06, 'clumsily': 1.6430492035729749e-06, 'Hedda': 1.6430492035729749e-06, 'Gabler': 1.6430492035729749e-06, 'highschool': 1.6430492035729749e-06, 'dramatics': 1.6430492035729749e-06, "Nothing's": 1.6430492035729749e-06, 'goddam': 4.107623008932437e-06, 'Thelma': 5.750672212505412e-06, "Thelma's": 1.6430492035729749e-06, 'ginmill': 2.4645738053594624e-06, 'hummed': 3.2860984071459497e-06, 'understandingly': 3.2860984071459497e-06, 'hook': 4.107623008932437e-06, 'smelt': 3.2860984071459497e-06, 'lotion': 7.393721416078387e-06, 'pimplike': 1.6430492035729749e-06, 'Ballestre': 2.4645738053594624e-06, 'Waking': 1.6430492035729749e-06, 'remorseful': 1.6430492035729749e-06, 'hangovers': 1.6430492035729749e-06, 'jabbing': 2.4645738053594624e-06, 'coffeepot': 2.4645738053594624e-06, 'kitchenette': 3.2860984071459497e-06, 'sickish': 1.6430492035729749e-06, 'hairtonic': 1.6430492035729749e-06, 'Honest': 2.4645738053594624e-06, "dog's": 2.4645738053594624e-06, 'percolator': 1.6430492035729749e-06, 'bleary': 2.4645738053594624e-06, 'olivefaced': 1.6430492035729749e-06, 'overcoat': 4.929147610718925e-06, 'taffycolored': 1.6430492035729749e-06, 'Oval': 1.6430492035729749e-06, "Eileen's": 3.2860984071459497e-06, 'Xavier': 1.6430492035729749e-06, 'Exboyfriend': 1.6430492035729749e-06, 'exhusband': 1.6430492035729749e-06, 'nastiest': 1.6430492035729749e-06, 'fellowfeeling': 1.6430492035729749e-06, 'lowdown': 1.6430492035729749e-06, 'hound': 4.107623008932437e-06, 'coffeecup': 1.6430492035729749e-06, 'parted': 4.929147610718925e-06, 'shacked': 1.6430492035729749e-06, 'advisedly': 1.6430492035729749e-06, 'needled': 1.6430492035729749e-06, 'twotiming': 1.6430492035729749e-06, 'selfeffacing': 1.6430492035729749e-06, 'valet': 2.4645738053594624e-06, 'Connections': 1.6430492035729749e-06, 'screechy': 1.6430492035729749e-06, 'skull': 3.2860984071459497e-06, 'wheedled': 1.6430492035729749e-06, 'kale': 1.6430492035729749e-06, 'hocking': 1.6430492035729749e-06, "O'Dwyer": 2.4645738053594624e-06, 'curly': 4.107623008932437e-06, "Jim's": 4.107623008932437e-06, 'pokerfaced': 1.6430492035729749e-06, 'beefy': 1.6430492035729749e-06, 'lecher': 1.6430492035729749e-06, "O'Dwyers": 2.4645738053594624e-06, 'clannishness': 1.6430492035729749e-06, 'Apparel': 1.6430492035729749e-06, "Xavier's": 1.6430492035729749e-06, 'bubbling': 3.2860984071459497e-06, 'christening': 1.6430492035729749e-06, 'layette': 1.6430492035729749e-06, "Pat's": 2.4645738053594624e-06, 'Sposato': 4.107623008932437e-06, 'muscled': 1.6430492035729749e-06, "Portwatchers'": 1.6430492035729749e-06, 'portwatchers': 2.4645738053594624e-06, 'longshoremen': 1.6430492035729749e-06, 'towboats': 1.6430492035729749e-06, 'watchmen': 1.6430492035729749e-06, 'musclemen': 1.6430492035729749e-06, 'Redhook': 1.6430492035729749e-06, "who'd": 7.393721416078387e-06, 'gouged': 3.2860984071459497e-06, 'weatherbeaten': 1.6430492035729749e-06, 'extinguish': 1.6430492035729749e-06, 'bishopry': 1.6430492035729749e-06, 'Kayabashi': 8.215246017864873e-06, 'indefatigable': 1.6430492035729749e-06, 'Hino': 1.1501344425010824e-05, 'stiffness': 1.6430492035729749e-06, 'pachinko': 1.6430492035729749e-06, 'joyous': 4.929147610718925e-06, 'attentively': 1.6430492035729749e-06, 'point-blank': 1.6430492035729749e-06, 'guileless': 1.6430492035729749e-06, 'truthful': 1.6430492035729749e-06, 'indirection': 1.6430492035729749e-06, "Hino's": 2.4645738053594624e-06, 'Chiba': 1.6430492035729749e-06, 'unasked': 2.4645738053594624e-06, 'embellished': 1.6430492035729749e-06, 'imagnation': 1.6430492035729749e-06, "Rector's": 3.2860984071459497e-06, "Kayabashi's": 2.4645738053594624e-06, 'oyabun': 4.107623008932437e-06, 'Kayabashi-san': 1.6430492035729749e-06, 'Arigato': 1.6430492035729749e-06, 'gosaimasu': 1.6430492035729749e-06, 'Yamata': 1.6430492035729749e-06, 'sushi': 1.6430492035729749e-06, 'Fujimoto': 2.4645738053594624e-06, 'cuttings': 1.6430492035729749e-06, 'effortlessly': 1.6430492035729749e-06, 'tableau': 1.6430492035729749e-06, 'deceive': 1.6430492035729749e-06, 'Mavis': 2.4645738053594624e-06, 'Ito': 1.6430492035729749e-06, 'altercation': 1.6430492035729749e-06, 'Konishi': 2.4645738053594624e-06, 'attired': 1.6430492035729749e-06, 'serge': 1.6430492035729749e-06, 'lacy': 3.2860984071459497e-06, 'dappled': 1.6430492035729749e-06, 'bait': 1.6430492035729749e-06, 'entanglement': 1.6430492035729749e-06, 'manservant': 3.2860984071459497e-06, 'daunt': 1.6430492035729749e-06, 'forte-pianos': 1.6430492035729749e-06, "Scott's": 1.6430492035729749e-06, 'Rosabelle': 1.6430492035729749e-06, 'cooing': 1.6430492035729749e-06, 'doves': 1.6430492035729749e-06, 'jackdaws': 1.6430492035729749e-06, 'goose': 2.4645738053594624e-06, 'harpy': 1.6430492035729749e-06, 'Medmenham': 1.6430492035729749e-06, 'Hellfire': 1.6430492035729749e-06, 'regaled': 1.6430492035729749e-06, 'cassocked': 1.6430492035729749e-06, 'bloods': 1.6430492035729749e-06, 'firsthand': 1.6430492035729749e-06, 'Dodington': 1.6430492035729749e-06, 'monkish': 1.6430492035729749e-06, 'self-flagellation': 1.6430492035729749e-06, 'Naked': 1.6430492035729749e-06, 'chancel': 1.6430492035729749e-06, 'depravities': 1.6430492035729749e-06, 'jaded': 2.4645738053594624e-06, 'amorist': 1.6430492035729749e-06, 'Dashwood': 1.6430492035729749e-06, 'Wicked': 1.6430492035729749e-06, 'abbot': 1.6430492035729749e-06, 'beadsman': 1.6430492035729749e-06, 'seventeen-year-old': 1.6430492035729749e-06, 'bluestocking': 1.6430492035729749e-06, 'Bishopsgate': 2.4645738053594624e-06, 'Charming': 1.6430492035729749e-06, 'girlishly': 2.4645738053594624e-06, 'palpably': 1.6430492035729749e-06, 'Adonis': 1.6430492035729749e-06, 'crudely': 2.4645738053594624e-06, 'milord': 2.4645738053594624e-06, 'owls': 1.6430492035729749e-06, 'Elba': 1.6430492035729749e-06, 'hostelries': 1.6430492035729749e-06, 'philosophized': 1.6430492035729749e-06, 'overpriced': 1.6430492035729749e-06, 'Bacchus': 1.6430492035729749e-06, 'Ariadne': 3.2860984071459497e-06, 'Io': 1.6430492035729749e-06, 'nymph': 1.6430492035729749e-06, "owl's": 1.6430492035729749e-06, 'Minerva': 2.4645738053594624e-06, 'owl': 2.4645738053594624e-06, 'unfaithful': 1.6430492035729749e-06, 'catechize': 1.6430492035729749e-06, 'overdone': 2.4645738053594624e-06, 'Brains': 1.6430492035729749e-06, 'striped': 4.929147610718925e-06, 'poplin': 1.6430492035729749e-06, 'untied': 1.6430492035729749e-06, 'buttoned': 1.6430492035729749e-06, 'unhurriedly': 2.4645738053594624e-06, 'kindled': 1.6430492035729749e-06, 'Pausing': 3.2860984071459497e-06, 'Parisina': 1.6430492035729749e-06, 'sonorous': 1.6430492035729749e-06, 'scimitars': 1.6430492035729749e-06, 'Bonaparte': 1.6430492035729749e-06, 'Demanded': 2.4645738053594624e-06, "mustn't": 4.929147610718925e-06, 'detractor': 1.6430492035729749e-06, 'pardonable': 1.6430492035729749e-06, 'Alastor': 4.107623008932437e-06, 'musings': 1.6430492035729749e-06, 'Southey': 1.6430492035729749e-06, 'reprovingly': 1.6430492035729749e-06, 'Thynne': 2.4645738053594624e-06, 'raptures': 1.6430492035729749e-06, 'Thynnes': 1.6430492035729749e-06, 'caliphs': 1.6430492035729749e-06, 'supercritical': 1.6430492035729749e-06, 'resentful': 3.2860984071459497e-06, 'Siege': 1.6430492035729749e-06, 'Corinth': 1.6430492035729749e-06, 'Byronism': 1.6430492035729749e-06, 'low-water': 1.6430492035729749e-06, 'far-famed': 1.6430492035729749e-06, 'flaunted': 2.4645738053594624e-06, 'languishing': 1.6430492035729749e-06, 'smallish': 1.6430492035729749e-06, 'Milbankes': 1.6430492035729749e-06, 'Beckworth': 4.107623008932437e-06, 'impatiently': 7.393721416078387e-06, 'Fetch': 1.6430492035729749e-06, 'torches': 2.4645738053594624e-06, 'folding': 2.4645738053594624e-06, 'thumbnail': 1.6430492035729749e-06, 'bombproof': 3.2860984071459497e-06, 'low-ceilinged': 1.6430492035729749e-06, 'drumlin': 1.6430492035729749e-06, 'lump': 6.5721968142918994e-06, 'slits': 2.4645738053594624e-06, 'rotting': 3.2860984071459497e-06, 'urine': 1.6430492035729749e-06, 'slimed': 1.6430492035729749e-06, 'clutching': 7.393721416078387e-06, 'pouch': 2.4645738053594624e-06, 'safe-conduct': 1.6430492035729749e-06, 'rampart': 2.4645738053594624e-06, 'exorcise': 1.6430492035729749e-06, 'groped': 6.5721968142918994e-06, 'dank': 1.6430492035729749e-06, 'timbered': 2.4645738053594624e-06, 'enervation': 1.6430492035729749e-06, 'reclaimed': 2.4645738053594624e-06, 'skulk': 1.6430492035729749e-06, 'Hillman': 2.4645738053594624e-06, 'Prompted': 1.6430492035729749e-06, 'belched': 4.107623008932437e-06, 'snorted': 4.107623008932437e-06, "soldier's": 1.6430492035729749e-06, "'scuse": 1.6430492035729749e-06, 'skiffs': 4.107623008932437e-06, 'dented': 1.6430492035729749e-06, 'frayed': 3.2860984071459497e-06, 'stocky': 2.4645738053594624e-06, 'clean-shaven': 1.6430492035729749e-06, 'shambled': 1.6430492035729749e-06, 'cawing': 1.6430492035729749e-06, 'elbowing': 1.6430492035729749e-06, 'postures': 2.4645738053594624e-06, 'flounder': 1.6430492035729749e-06, 'shrilly': 3.2860984071459497e-06, 'skiff': 8.215246017864873e-06, 'unsteadily': 1.6430492035729749e-06, 'supercilious': 1.6430492035729749e-06, 'strut': 2.4645738053594624e-06, 'haughtily': 1.6430492035729749e-06, 'swamping': 1.6430492035729749e-06, 'incertain': 1.6430492035729749e-06, 'slow-scrambling': 1.6430492035729749e-06, 'gesticulated': 1.6430492035729749e-06, 'cadaverous': 1.6430492035729749e-06, 'clotted': 1.6430492035729749e-06, 'mucus': 2.4645738053594624e-06, 'nighted': 1.6430492035729749e-06, 'fellas': 1.6430492035729749e-06, 'bein': 1.6430492035729749e-06, 'Secesh': 1.6430492035729749e-06, 'wheezed': 1.6430492035729749e-06, 'fetid': 2.4645738053594624e-06, 'hush': 2.4645738053594624e-06, 'sickened': 4.107623008932437e-06, 'mewed': 1.6430492035729749e-06, 'bewilderedly': 1.6430492035729749e-06, 'flecked': 1.6430492035729749e-06, 'pine-knot': 1.6430492035729749e-06, 'grovel': 1.6430492035729749e-06, 'prie-dieu': 1.6430492035729749e-06, 'bade': 1.6430492035729749e-06, 'parcels': 1.6430492035729749e-06, 'chute': 2.4645738053594624e-06, 'chafe': 1.6430492035729749e-06, "Hillman's": 1.6430492035729749e-06, "schoolmaster's": 1.6430492035729749e-06, 'spat': 8.215246017864873e-06, 'stupidly': 2.4645738053594624e-06, 'Gogol': 1.6430492035729749e-06, 'plaster-of-Paris': 1.6430492035729749e-06, 'birdbath': 1.6430492035729749e-06, 'gnomes': 1.6430492035729749e-06, 'mobcaps': 1.6430492035729749e-06, 'beech': 2.4645738053594624e-06, 'horse-chestnut': 1.6430492035729749e-06, 'Pasterns': 1.6430492035729749e-06, 'bulks': 1.6430492035729749e-06, 'physicalness': 1.6430492035729749e-06, 'Pastern': 8.215246017864873e-06, 'Offer': 1.6430492035729749e-06, 'mosquitoes': 1.6430492035729749e-06, 'Grandmother': 1.6430492035729749e-06, 'Delancy': 1.6430492035729749e-06, 'trumps': 1.6430492035729749e-06, 'bewilderingly': 1.6430492035729749e-06, 'Grassy': 1.6430492035729749e-06, 'Brae': 1.6430492035729749e-06, 'Bomb': 3.2860984071459497e-06, 'locker-room': 1.6430492035729749e-06, 'fineness': 1.6430492035729749e-06, 'Leaves': 1.6430492035729749e-06, 'ammoniac': 1.6430492035729749e-06, 'acidity': 1.6430492035729749e-06, 'boundless': 2.4645738053594624e-06, 'zenith': 1.6430492035729749e-06, 'hepatitis': 3.2860984071459497e-06, 'Charity': 1.6430492035729749e-06, 'signified': 2.4645738053594624e-06, 'Balcolm': 1.6430492035729749e-06, 'Eyke': 1.6430492035729749e-06, 'Trempler': 1.6430492035729749e-06, 'Surcliffe': 1.6430492035729749e-06, "Mothers'": 1.6430492035729749e-06, 'Dimes': 1.6430492035729749e-06, 'Craven': 1.6430492035729749e-06, 'Gilkson': 1.6430492035729749e-06, 'Hewlitt': 1.6430492035729749e-06, 'birthcontrol': 1.6430492035729749e-06, 'Ryerson': 1.6430492035729749e-06, "Littleton's": 1.6430492035729749e-06, 'gout': 2.4645738053594624e-06, 'encyclopedias': 1.6430492035729749e-06, 'sherry': 4.107623008932437e-06, 'kit': 2.4645738053594624e-06, "Surcliffes'": 1.6430492035729749e-06, 'Scotch-and-soda': 1.6430492035729749e-06, 'Blevins': 2.4645738053594624e-06, 'Flannagans': 3.2860984071459497e-06, "Blevins'": 1.6430492035729749e-06, "Flannagans'": 1.6430492035729749e-06, 'hallway': 6.5721968142918994e-06, 'Infectious': 1.6430492035729749e-06, "Won't": 2.4645738053594624e-06, 'cozier': 1.6430492035729749e-06, 'Flannagan': 6.5721968142918994e-06, 'Travelling': 1.6430492035729749e-06, 'riffle': 1.6430492035729749e-06, 'sighs': 1.6430492035729749e-06, "Everything's": 1.6430492035729749e-06, 'Sit': 2.4645738053594624e-06, 'depressors': 1.6430492035729749e-06, 'coyness': 2.4645738053594624e-06, 'stockings': 4.929147610718925e-06, 'window-washing': 1.6430492035729749e-06, 'harried': 1.6430492035729749e-06, 'starlight': 1.6430492035729749e-06, 'pari-mutuel': 1.6430492035729749e-06, 'scuff': 1.6430492035729749e-06, 'unashamedly': 1.6430492035729749e-06, 'shun': 1.6430492035729749e-06, 'Izaak': 3.2860984071459497e-06, 'notification': 1.6430492035729749e-06, 'lemons': 1.6430492035729749e-06, 'dainty-legged': 1.6430492035729749e-06, 'escritoire': 2.4645738053594624e-06, 'vellum': 1.6430492035729749e-06, 'authoritatively': 1.6430492035729749e-06, 'quaver': 1.6430492035729749e-06, 'thwarting': 1.6430492035729749e-06, 'broad-nibbed': 1.6430492035729749e-06, 'Myra': 2.300268885002165e-05, 'glare': 6.5721968142918994e-06, 'Angelina': 4.107623008932437e-06, 'linen-covered': 1.6430492035729749e-06, 'speculatively': 1.6430492035729749e-06, 'paled': 1.6430492035729749e-06, 'uncousinly': 1.6430492035729749e-06, 'near-absence': 1.6430492035729749e-06, 'flick': 1.6430492035729749e-06, 'Um': 2.4645738053594624e-06, 'suspiciously': 4.107623008932437e-06, 'blowfish': 1.6430492035729749e-06, 'indefinable': 2.4645738053594624e-06, 'Jessica': 1.232286902679731e-05, 'unself-conscious': 1.6430492035729749e-06, 'dourly': 1.6430492035729749e-06, 'impaling': 1.6430492035729749e-06, 'Procreation': 1.6430492035729749e-06, 'oblivion': 2.4645738053594624e-06, 'belligerently': 1.6430492035729749e-06, 'ah': 4.107623008932437e-06, 'Packards': 1.6430492035729749e-06, 'populate': 1.6430492035729749e-06, 'mashing': 1.6430492035729749e-06, 'densest': 1.6430492035729749e-06, "table's": 1.6430492035729749e-06, 'quirking': 1.6430492035729749e-06, "Izaak's": 3.2860984071459497e-06, 'malignancies': 1.6430492035729749e-06, 'bassinet': 1.6430492035729749e-06, 'unreeling': 1.6430492035729749e-06, 'paling': 1.6430492035729749e-06, 'unendurable': 1.6430492035729749e-06, "Mark's": 2.4645738053594624e-06, 'greenly': 1.6430492035729749e-06, 'tilled': 1.6430492035729749e-06, 'familiarness': 1.6430492035729749e-06, "Jessica's": 1.6430492035729749e-06, 'selfishness': 1.6430492035729749e-06, "uncle's": 2.4645738053594624e-06, 'contrition': 1.6430492035729749e-06, 'categorized': 1.6430492035729749e-06, 'crotchety': 1.6430492035729749e-06, 'uh-uh': 1.6430492035729749e-06, 'hugging': 6.5721968142918994e-06, 'briefest': 1.6430492035729749e-06, 'half-expressed': 1.6430492035729749e-06, 'fecund': 1.6430492035729749e-06, 'farmland': 1.6430492035729749e-06, 'clams': 1.6430492035729749e-06, 'seaweed': 3.2860984071459497e-06, 'fieldstone': 1.6430492035729749e-06, 'bride-gift': 1.6430492035729749e-06, 'cousin-wife': 1.6430492035729749e-06, 'clambering': 1.6430492035729749e-06, 'headland': 1.6430492035729749e-06, 'Starbird': 4.107623008932437e-06, 'ascended': 2.4645738053594624e-06, 'sloop': 1.6430492035729749e-06, 'mutuality': 1.6430492035729749e-06, 'mast': 5.750672212505412e-06, 'cumulus': 1.6430492035729749e-06, 'Pedersen': 9.036770619651361e-06, 'dung': 1.6430492035729749e-06, 'waked': 2.4645738053594624e-06, 'fuzzed': 1.6430492035729749e-06, 'dandelion': 1.6430492035729749e-06, 'pig-drunk': 2.4645738053594624e-06, 'Pap-pap-pap-hey': 1.6430492035729749e-06, 'mother-naked': 1.6430492035729749e-06, 'cough': 6.5721968142918994e-06, 'crib': 4.929147610718925e-06, 'froze': 4.929147610718925e-06, 'hey': 4.107623008932437e-06, 'dammit': 3.2860984071459497e-06, 'cuff': 1.6430492035729749e-06, 'nightshirt': 1.6430492035729749e-06, "Pa'd": 1.6430492035729749e-06, 'shit-sick': 1.6430492035729749e-06, "Pa's": 4.107623008932437e-06, 'pa': 3.2860984071459497e-06, "What'd": 1.6430492035729749e-06, 'sassing': 1.6430492035729749e-06, 'busted': 3.2860984071459497e-06, "Pedersen's": 1.6430492035729749e-06, 'cleat': 1.6430492035729749e-06, 'insides': 4.107623008932437e-06, 'shovel': 4.929147610718925e-06, 'pawing': 1.6430492035729749e-06, 'unscrewed': 2.4645738053594624e-06, "She'd": 1.1501344425010824e-05, 'privy': 1.6430492035729749e-06, "that'd": 1.6430492035729749e-06, "Heat's": 1.6430492035729749e-06, 'poked': 4.107623008932437e-06, 'Lift': 1.6430492035729749e-06, 'shove': 2.4645738053594624e-06, 'flopped': 5.750672212505412e-06, "throat's": 1.6430492035729749e-06, 'Shut': 1.6430492035729749e-06, 'lionized': 2.4645738053594624e-06, 'disputable': 1.6430492035729749e-06, 'Stowey': 4.929147610718925e-06, 'Rummel': 1.6430492035729749e-06, 'crafter': 1.6430492035729749e-06, 'believably': 1.6430492035729749e-06, 'half-past': 1.6430492035729749e-06, 'high-topped': 1.6430492035729749e-06, 'bower': 1.6430492035729749e-06, 'cages': 2.4645738053594624e-06, 'geneticist': 1.6430492035729749e-06, 'sill': 4.107623008932437e-06, 'spidery': 1.6430492035729749e-06, 'cantilevers': 1.6430492035729749e-06, 'jutting': 2.4645738053594624e-06, 'inventing': 1.6430492035729749e-06, 'gratings': 1.6430492035729749e-06, 'stool': 7.393721416078387e-06, 'monochromes': 1.6430492035729749e-06, 'broken-backed': 1.6430492035729749e-06, 'Bicycle': 1.6430492035729749e-06, 'gear-sets': 1.6430492035729749e-06, 'Cycly': 1.6430492035729749e-06, 'skates': 1.6430492035729749e-06, 'grunt': 2.4645738053594624e-06, 'moralistic': 1.6430492035729749e-06, 'broken-nosed': 1.6430492035729749e-06, "wrestler's": 1.6430492035729749e-06, 'caretaker': 1.6430492035729749e-06, "boss's": 3.2860984071459497e-06, 'disengagement': 1.6430492035729749e-06, 'mistook': 1.6430492035729749e-06, 'mackinaw': 1.6430492035729749e-06, "Cleota's": 1.6430492035729749e-06, 'cuffs': 2.4645738053594624e-06, 'Rumanian': 1.6430492035729749e-06, 'Defrost': 1.6430492035729749e-06, 'funniest': 2.4645738053594624e-06, 'rutted': 1.6430492035729749e-06, 'forty-nine': 3.2860984071459497e-06, 'eyebrows': 8.215246017864873e-06, 'startled-horse': 1.6430492035729749e-06, 'money-making': 1.6430492035729749e-06, 'gardened': 1.6430492035729749e-06, 'peasanthood': 1.6430492035729749e-06, 'breaths': 1.6430492035729749e-06, 'ferociously': 2.4645738053594624e-06, 'Toot-toot': 1.6430492035729749e-06, 'stump': 2.4645738053594624e-06, 'uncombable': 1.6430492035729749e-06, 'nicotine-choked': 1.6430492035729749e-06, 'protectively': 1.6430492035729749e-06, 'partings': 1.6430492035729749e-06, 'realest': 1.6430492035729749e-06, 'parakeets': 1.6430492035729749e-06, 'cha-chas': 1.6430492035729749e-06, 'harp': 1.6430492035729749e-06, 'rustling': 9.036770619651361e-06, 'whirring': 2.4645738053594624e-06, 'perch': 1.6430492035729749e-06, 'crook': 3.2860984071459497e-06, 'Lucretia': 2.4645738053594624e-06, 'soddenly': 1.6430492035729749e-06, 'smoothing': 2.4645738053594624e-06, 'writhe': 2.4645738053594624e-06, 'unready': 1.6430492035729749e-06, 'Enjoy': 1.6430492035729749e-06, 'Weaning': 1.6430492035729749e-06, 'Albright': 3.2860984071459497e-06, 'brides': 2.4645738053594624e-06, 'sisters-in-law': 1.6430492035729749e-06, 'Linda': 3.532555787681896e-05, 'reprieve': 2.4645738053594624e-06, 'unpack': 1.6430492035729749e-06, 'linoleum': 1.6430492035729749e-06, "Albrights'": 1.6430492035729749e-06, 'loft': 2.4645738053594624e-06, 'evaporative': 1.6430492035729749e-06, "Granny's": 1.6430492035729749e-06, 'parched': 2.4645738053594624e-06, 'fifty-pound': 1.6430492035729749e-06, 'clucking': 1.6430492035729749e-06, 'grayed': 1.6430492035729749e-06, 'unwrinkled': 1.6430492035729749e-06, 'Ada': 1.4787442832156774e-05, 'Lura': 1.6430492035729749e-06, 'booming': 1.6430492035729749e-06, 'thirsty': 4.107623008932437e-06, 'smothering': 1.6430492035729749e-06, 'Carrying': 1.6430492035729749e-06, 'swingy': 1.6430492035729749e-06, 'blushed': 5.750672212505412e-06, "Howard's": 1.6430492035729749e-06, 'Odessa': 1.6430492035729749e-06, 'lucked': 1.6430492035729749e-06, 'Gosh': 3.2860984071459497e-06, 'half-grown': 1.6430492035729749e-06, 'windbag': 1.6430492035729749e-06, 'drouth': 1.6430492035729749e-06, 'Bye': 1.6430492035729749e-06, 'Debora': 2.4645738053594624e-06, 'caliche-topped': 1.6430492035729749e-06, 'well-rounded': 1.6430492035729749e-06, 'Homemakers': 2.4645738053594624e-06, 'blushing': 4.107623008932437e-06, "Albright's": 2.4645738053594624e-06, 'full-of-the-moon': 1.6430492035729749e-06, 'possum-hunting': 2.4645738053594624e-06, 'Farnworth': 1.6430492035729749e-06, 'darn': 2.4645738053594624e-06, 'oil-well': 1.6430492035729749e-06, 'retorted': 3.2860984071459497e-06, "Alex's": 9.036770619651361e-06, 'smuggle': 1.6430492035729749e-06, 'unimposing': 1.6430492035729749e-06, 'specimentalia': 1.6430492035729749e-06, "hens'": 1.6430492035729749e-06, 'eared': 1.6430492035729749e-06, 'Flumenophobe': 1.6430492035729749e-06, 'scapulars': 1.6430492035729749e-06, "Couldn't": 2.4645738053594624e-06, 'squawk': 1.6430492035729749e-06, 'turkey': 3.2860984071459497e-06, 'chick': 3.2860984071459497e-06, "rooster's": 1.6430492035729749e-06, 'wattles': 2.4645738053594624e-06, 'scrawled': 4.929147610718925e-06, 'alpha-beta-gammas': 1.6430492035729749e-06, 'lineage': 2.4645738053594624e-06, 'Ecole': 1.6430492035729749e-06, 'Medecine': 1.6430492035729749e-06, 'egg-hatching': 1.6430492035729749e-06, 'sure-enough': 1.6430492035729749e-06, 'knocking': 4.929147610718925e-06, 'still-dark': 1.6430492035729749e-06, 'hallways': 1.6430492035729749e-06, 'patronne': 3.2860984071459497e-06, 'stroked': 2.4645738053594624e-06, 'hens': 3.2860984071459497e-06, 'gobbled': 2.4645738053594624e-06, 'turkeys': 1.6430492035729749e-06, 'quacked': 1.6430492035729749e-06, 'cackled': 3.2860984071459497e-06, 'ministrations': 2.4645738053594624e-06, 'revery': 1.6430492035729749e-06, 'excellences': 1.6430492035729749e-06, 'hackles': 1.6430492035729749e-06, 'justness': 1.6430492035729749e-06, 'lappets': 1.6430492035729749e-06, 'fowl': 1.6430492035729749e-06, 'nestling': 2.4645738053594624e-06, 'seven-thirty': 1.6430492035729749e-06, 'chambermaid': 3.2860984071459497e-06, 'abed': 1.6430492035729749e-06, 'sequestration': 1.6430492035729749e-06, 'perceptible': 1.6430492035729749e-06, 'cradled': 3.2860984071459497e-06, 'gingerly': 2.4645738053594624e-06, 'perturbation': 1.6430492035729749e-06, 'Bonjour': 1.6430492035729749e-06, 'messieurs': 1.6430492035729749e-06, 'vous': 1.6430492035729749e-06, 'etes': 1.6430492035729749e-06, 'matinals': 1.6430492035729749e-06, 'protuberance': 1.6430492035729749e-06, 'voulez': 1.6430492035729749e-06, 'vos': 1.6430492035729749e-06, 'dejeuners': 1.6430492035729749e-06, 'tout': 1.6430492035729749e-06, 'alors': 1.6430492035729749e-06, 'enquired': 1.6430492035729749e-06, 'stair-well': 1.6430492035729749e-06, 'Eyes': 9.036770619651361e-06, 'swerved': 2.4645738053594624e-06, "patronne's": 1.6430492035729749e-06, 'sforzando': 1.6430492035729749e-06, 'long-shanked': 1.6430492035729749e-06, 'Comment': 1.6430492035729749e-06, 'Ejaculated': 1.6430492035729749e-06, "hen's": 1.6430492035729749e-06, 'attentions': 1.6430492035729749e-06, 'coughing': 3.2860984071459497e-06, 'drown': 3.2860984071459497e-06, 'emanations': 1.6430492035729749e-06, 'fille': 5.750672212505412e-06, 'chambre': 4.107623008932437e-06, 'pricked': 1.6430492035729749e-06, 'feller': 1.6430492035729749e-06, 'Anyhow': 4.107623008932437e-06, 'beckon': 1.6430492035729749e-06, 'remarking': 2.4645738053594624e-06, 'poultry-loving': 1.6430492035729749e-06, 'tip-toe': 1.6430492035729749e-06, "chambre's": 1.6430492035729749e-06, 'barnyard': 1.6430492035729749e-06, 'cackly': 1.6430492035729749e-06, 'wails': 2.4645738053594624e-06, 'sixty-eight': 1.6430492035729749e-06, 'showerhead': 1.6430492035729749e-06, 'highboard': 1.6430492035729749e-06, 'Chickens': 1.6430492035729749e-06, 'fellers': 1.6430492035729749e-06, 'Tanganika': 1.6430492035729749e-06, 'Vulturidae': 1.6430492035729749e-06, 'flops': 1.6430492035729749e-06, 'Jeannie': 1.6430492035729749e-06, 'chicks': 1.6430492035729749e-06, 'little-girl': 1.6430492035729749e-06, 'Leona': 4.929147610718925e-06, 'impudently': 1.6430492035729749e-06, 'Fuss': 1.6430492035729749e-06, 'fuss': 3.2860984071459497e-06, "cat's": 1.6430492035729749e-06, "Ada's": 4.107623008932437e-06, 'Sighing': 2.4645738053594624e-06, 'untie': 2.4645738053594624e-06, 'undid': 1.6430492035729749e-06, 'cockeyed': 1.6430492035729749e-06, 'flounced': 1.6430492035729749e-06, 'thinness': 1.6430492035729749e-06, 'lint': 3.2860984071459497e-06, 'clothesbrush': 1.6430492035729749e-06, 'pigskin': 1.6430492035729749e-06, 'fleck': 1.6430492035729749e-06, 'shoelace': 1.6430492035729749e-06, 'corduroys': 1.6430492035729749e-06, 'pearl-gray': 1.6430492035729749e-06, 'unworn': 1.6430492035729749e-06, 'Good-by': 1.6430492035729749e-06, 'swiped': 1.6430492035729749e-06, 'hinge': 1.6430492035729749e-06, 'polishes': 1.6430492035729749e-06, 'citron': 1.6430492035729749e-06, 'jonquils': 1.6430492035729749e-06, 'periwinkles': 1.6430492035729749e-06, 'hyacinths': 1.6430492035729749e-06, 'dogwood': 1.6430492035729749e-06, 'cherries': 2.4645738053594624e-06, 'gardening': 2.4645738053594624e-06, 'snail': 1.6430492035729749e-06, 'breakables': 1.6430492035729749e-06, 'lavender': 4.929147610718925e-06, 'Halfway': 2.4645738053594624e-06, 'Frowning': 1.6430492035729749e-06, 'cockatoo': 1.6430492035729749e-06, 'clotheshorse': 2.4645738053594624e-06, 'overshoes': 2.4645738053594624e-06, 'Picture': 1.6430492035729749e-06, 'Lovie': 1.6430492035729749e-06, 'dresser': 1.6430492035729749e-06, 'spatter': 1.6430492035729749e-06, 'severing': 1.6430492035729749e-06, 'woeful': 1.6430492035729749e-06, 'intruded': 1.6430492035729749e-06, 'footbridge': 1.6430492035729749e-06, 'messhall': 1.6430492035729749e-06, 'unsloped': 1.6430492035729749e-06, 'studious': 1.6430492035729749e-06, 'grandparents': 1.6430492035729749e-06, 'epistolatory': 1.6430492035729749e-06, 'communiques': 1.6430492035729749e-06, 'imitating': 2.4645738053594624e-06, 'bunkmate': 1.6430492035729749e-06, 'tango': 2.4645738053594624e-06, 'blooded': 1.6430492035729749e-06, 'irresolution': 1.6430492035729749e-06, 'unbounded': 1.6430492035729749e-06, 'unbearable': 5.750672212505412e-06, 'reunion-Halloween': 1.6430492035729749e-06, 'mum': 1.6430492035729749e-06, 'jubilantly': 2.4645738053594624e-06, 'bunkmates': 1.6430492035729749e-06, 'Jessie': 2.4645738053594624e-06, 'braids': 1.6430492035729749e-06, 'Halloween': 1.6430492035729749e-06, 'schoolgirlish': 1.6430492035729749e-06, 'fantasist': 1.6430492035729749e-06, 'kissing': 4.929147610718925e-06, 'flustered': 1.6430492035729749e-06, 'fleetest': 1.6430492035729749e-06, 'premonitions': 1.6430492035729749e-06, 'timidity': 1.6430492035729749e-06, 'half-understood': 1.6430492035729749e-06, 'Lovingly': 1.6430492035729749e-06, 'pompously': 1.6430492035729749e-06, 'corsage': 1.6430492035729749e-06, 'goodnight': 2.4645738053594624e-06, 'implored': 2.4645738053594624e-06, 'Astor': 2.4645738053594624e-06, "Child's": 1.6430492035729749e-06, "Toffenetti's": 1.6430492035729749e-06, 'waffles': 1.6430492035729749e-06, 'double-breasted': 2.4645738053594624e-06, 'herringbone': 1.6430492035729749e-06, 'lapels': 2.4645738053594624e-06, 'camp-made': 1.6430492035729749e-06, 'Hatless': 1.6430492035729749e-06, 'travellers': 1.6430492035729749e-06, 'Heavy-coated': 1.6430492035729749e-06, 'severe-looking': 1.6430492035729749e-06, 'revellers': 1.6430492035729749e-06, 'marquees': 1.6430492035729749e-06, 'Cardboard': 1.6430492035729749e-06, 'noisemakers': 2.4645738053594624e-06, 'hawked': 1.6430492035729749e-06, 'serenaded': 2.4645738053594624e-06, "horns'": 1.6430492035729749e-06, 'rasps': 1.6430492035729749e-06, 'bleats': 1.6430492035729749e-06, 'Scout': 2.4645738053594624e-06, 'bugle': 1.6430492035729749e-06, 'gallants': 1.6430492035729749e-06, 'beach-head': 1.6430492035729749e-06, 'merrymaking': 1.6430492035729749e-06, 'curdling': 1.6430492035729749e-06, 'huggings': 1.6430492035729749e-06, 'kissings': 1.6430492035729749e-06, 'forays': 1.6430492035729749e-06, '7:25': 1.6430492035729749e-06, 'saw-horse': 1.6430492035729749e-06, 'haberdashery': 1.6430492035729749e-06, 'entranceway': 1.6430492035729749e-06, 'epaulets': 1.6430492035729749e-06, 'spic': 1.6430492035729749e-06, 'red-visored': 1.6430492035729749e-06, 'thirty-eight': 1.6430492035729749e-06, 'hallucinating': 1.6430492035729749e-06, 'interne': 2.4645738053594624e-06, 'Brennan': 3.2860984071459497e-06, 'gentleness': 2.4645738053594624e-06, 'remorse': 1.6430492035729749e-06, "Nurses'": 1.6430492035729749e-06, 'Listening': 2.4645738053594624e-06, 'orphan': 1.6430492035729749e-06, 'dad': 2.4645738053594624e-06, 'rumdum': 2.4645738053594624e-06, 'Homicide': 4.929147610718925e-06, 'jabberings': 1.6430492035729749e-06, 'grade-A': 1.6430492035729749e-06, 'gangster': 2.4645738053594624e-06, 'unjustified': 1.6430492035729749e-06, 'Kupcinet': 1.6430492035729749e-06, 'Sun-Times': 1.6430492035729749e-06, 'psychopathic': 3.2860984071459497e-06, 'Chicagoans': 1.6430492035729749e-06, 'Croydon': 1.6430492035729749e-06, 'N.Y.U.': 1.6430492035729749e-06, 'five-a-week': 1.6430492035729749e-06, 'unlucky': 2.4645738053594624e-06, 'counterman': 1.6430492035729749e-06, 'Schraffts': 1.6430492035729749e-06, 'bellboy': 4.107623008932437e-06, 'Wycoff': 1.6430492035729749e-06, 'untimely': 1.6430492035729749e-06, 'tenspot': 1.6430492035729749e-06, 'motioned': 1.6430492035729749e-06, 'bartender': 5.750672212505412e-06, "Wycoff's": 1.6430492035729749e-06, 'shiningly': 1.6430492035729749e-06, 'once-over': 1.6430492035729749e-06, 'JYJ': 1.6430492035729749e-06, 'Forgot': 1.6430492035729749e-06, 'bug': 3.2860984071459497e-06, 'batteries': 3.2860984071459497e-06, 'JYM': 1.6430492035729749e-06, 'inconspicuous': 1.6430492035729749e-06, 'magnifies': 1.6430492035729749e-06, 'disagreeable': 1.6430492035729749e-06, 'sublease': 1.6430492035729749e-06, 'Want': 2.4645738053594624e-06, 'transients': 1.6430492035729749e-06, 'Regulars': 1.6430492035729749e-06, 'snappy': 1.6430492035729749e-06, 'beep': 4.107623008932437e-06, 'bugging': 3.2860984071459497e-06, 'beeps': 3.2860984071459497e-06, 'drawn-out': 1.6430492035729749e-06, 'high-class': 1.6430492035729749e-06, 'charcoal-broiled': 1.6430492035729749e-06, 'Peeping': 1.6430492035729749e-06, 'Ninety-nine': 1.6430492035729749e-06, 'transposition': 1.6430492035729749e-06, 'alias': 1.6430492035729749e-06, 'registrations': 1.6430492035729749e-06, 'soft-drink': 1.6430492035729749e-06, 'sidelong': 1.6430492035729749e-06, 'cracker-box': 1.6430492035729749e-06, 'bedded': 1.6430492035729749e-06, 'microphone': 4.107623008932437e-06, 'tightest-fitting': 1.6430492035729749e-06, 'slacks': 6.5721968142918994e-06, 'sociable': 1.6430492035729749e-06, 'pout': 1.6430492035729749e-06, 'commences': 1.6430492035729749e-06, 'ten-fifty-five': 1.6430492035729749e-06, 'buzz-buzz-buzz': 1.6430492035729749e-06, 'Darn': 1.6430492035729749e-06, "Dowling's": 1.6430492035729749e-06, 'Diets': 1.6430492035729749e-06, 'provocatively': 1.6430492035729749e-06, 'wiggle': 1.6430492035729749e-06, 'That-a-way': 1.6430492035729749e-06, 'Roberta': 5.750672212505412e-06, 'rash': 1.6430492035729749e-06, 'spilled': 3.2860984071459497e-06, 'sideboard': 1.6430492035729749e-06, 'Rat-face': 1.6430492035729749e-06, 'Lauren': 9.036770619651361e-06, 'zipped': 1.6430492035729749e-06, 'paunch': 2.4645738053594624e-06, 'dialed': 3.2860984071459497e-06, 'Vince': 9.85829522143785e-06, "Cate's": 2.4645738053594624e-06, 'Corsi': 1.6430492035729749e-06, 'Quebec': 2.4645738053594624e-06, "Simon's": 1.6430492035729749e-06, 'twitch': 3.2860984071459497e-06, 'Grosse': 8.215246017864873e-06, 'musta': 1.6430492035729749e-06, 'Howda': 1.6430492035729749e-06, 'Kinda': 1.6430492035729749e-06, 'zombie': 1.6430492035729749e-06, 'Stupid': 1.6430492035729749e-06, 'fools': 4.107623008932437e-06, 'zipper': 1.6430492035729749e-06, 'sompin': 1.6430492035729749e-06, 'coulda': 1.6430492035729749e-06, 'Steiner': 1.6430492035729749e-06, 'hiss': 1.6430492035729749e-06, "Why'n": 1.6430492035729749e-06, 'catchup': 1.6430492035729749e-06, 'napkin': 2.4645738053594624e-06, 'dispenser': 1.6430492035729749e-06, 'soothingly': 1.6430492035729749e-06, 'Guardino': 3.2860984071459497e-06, "Rose's": 3.2860984071459497e-06, "Guardino's": 1.6430492035729749e-06, 'Dammit': 4.107623008932437e-06, 'sullenly': 2.4645738053594624e-06, 'scaring': 1.6430492035729749e-06, 'Impatiently': 1.6430492035729749e-06, 'aleck': 2.4645738053594624e-06, 'sniggered': 1.6430492035729749e-06, "Where'd": 4.107623008932437e-06, 'Landis': 3.2860984071459497e-06, 'coke': 2.4645738053594624e-06, 'wetly': 1.6430492035729749e-06, 'unopened': 1.6430492035729749e-06, 'door-frame': 1.6430492035729749e-06, "driver's": 4.929147610718925e-06, 'deviate': 1.6430492035729749e-06, '387': 1.6430492035729749e-06, 'Heather': 1.6430492035729749e-06, 'yawn': 2.4645738053594624e-06, 'jowls': 4.107623008932437e-06, 'graying': 4.107623008932437e-06, 'unblinkingly': 2.4645738053594624e-06, 'filaments': 1.6430492035729749e-06, 'wheezing': 1.6430492035729749e-06, "Admassy's": 2.4645738053594624e-06, 'Acey': 3.2860984071459497e-06, 'Squire': 3.2860984071459497e-06, 'Jarrodsville': 5.750672212505412e-06, 'foolishly': 3.2860984071459497e-06, "Sanford's": 2.4645738053594624e-06, 'red-clay': 2.4645738053594624e-06, 'growled': 4.107623008932437e-06, 'farmhouses': 1.6430492035729749e-06, 'quagmire': 1.6430492035729749e-06, 'mud-caked': 1.6430492035729749e-06, 'viscous': 1.6430492035729749e-06, 'puddles': 2.4645738053594624e-06, 'toddlers': 1.6430492035729749e-06, 'disgraced': 1.6430492035729749e-06, 'drummed': 2.4645738053594624e-06, 'about-faced': 2.4645738053594624e-06, 'bordered': 2.4645738053594624e-06, "Marty's": 1.6430492035729749e-06, 'Burch': 2.4645738053594624e-06, 'ruse': 2.4645738053594624e-06, "Burch's": 1.6430492035729749e-06, 'water-filled': 1.6430492035729749e-06, 'equidistant': 1.6430492035729749e-06, 'nerve-shattering': 2.4645738053594624e-06, 'Chancellorsville': 1.6430492035729749e-06, 'banshee': 1.6430492035729749e-06, 'pained': 1.6430492035729749e-06, 'hyped-up': 1.6430492035729749e-06, 'barbed-wire': 1.6430492035729749e-06, 'tormenters': 1.6430492035729749e-06, 'Admassy': 2.4645738053594624e-06, 'splashed': 3.2860984071459497e-06, 'lurched': 4.929147610718925e-06, 'muddied': 2.4645738053594624e-06, 'dogtrot': 1.6430492035729749e-06, 'stone-still': 1.6430492035729749e-06, 'lacerated': 1.6430492035729749e-06, 'pedals': 1.6430492035729749e-06, 'thundered': 2.4645738053594624e-06, 'hurtled': 1.6430492035729749e-06, 'reverberated': 2.4645738053594624e-06, 'siren': 1.6430492035729749e-06, 'Estes': 1.6430492035729749e-06, 'brusquely': 1.6430492035729749e-06, 'cabdriver': 1.6430492035729749e-06, 'yellow-bellied': 1.6430492035729749e-06, "must've": 2.4645738053594624e-06, 'redneck': 1.6430492035729749e-06, 'Rourke': 1.6430492035729746e-05, 'Alvarez': 3.2860984071459497e-06, 'Jai': 1.6430492035729749e-06, 'Alai': 1.6430492035729749e-06, 'Shayne': 2.300268885002165e-05, 'slopped': 1.6430492035729749e-06, 'half-melted': 1.6430492035729749e-06, 'ice-cubes': 1.6430492035729749e-06, "Rourke's": 3.2860984071459497e-06, 'Biscayne': 2.4645738053594624e-06, 'Felice': 4.107623008932437e-06, "Perrin's": 1.6430492035729749e-06, 'Peralta': 4.107623008932437e-06, 'Marsha': 1.6430492035729749e-06, 'Putas': 1.6430492035729749e-06, 'Buenas': 1.6430492035729749e-06, 'knife-men': 1.6430492035729749e-06, 'aforethought': 1.6430492035729749e-06, 'luscious': 2.4645738053594624e-06, 'counterfeit': 1.6430492035729749e-06, 'bracelet': 1.6430492035729749e-06, 'faintest': 3.2860984071459497e-06, 'confederates': 1.6430492035729749e-06, "Felice's": 1.6430492035729749e-06, 'divider': 1.6430492035729749e-06, 'neon-lighted': 1.6430492035729749e-06, 'palm-lined': 1.6430492035729749e-06, 'crane': 1.6430492035729749e-06, 'briefly-illumed': 1.6430492035729749e-06, "Painter's": 2.4645738053594624e-06, 'dicks': 1.6430492035729749e-06, 'Geely': 6.5721968142918994e-06, 'Petey': 1.6430492035729749e-06, 'commending': 2.4645738053594624e-06, 'stake-out': 3.2860984071459497e-06, 'Perrin': 5.750672212505412e-06, 'groaned': 3.2860984071459497e-06, 'dismally': 2.4645738053594624e-06, 'cognac': 4.107623008932437e-06, 'twenty-dollar': 1.6430492035729749e-06, 'conspiratorial': 1.6430492035729749e-06, 'punk': 2.4645738053594624e-06, 'sipped': 2.4645738053594624e-06, 'coupe': 2.4645738053594624e-06, "Shayne's": 2.4645738053594624e-06, 'paunchy': 2.4645738053594624e-06, 'half-turned': 1.6430492035729749e-06, 'hatchet-faced': 1.6430492035729749e-06, 'gum-chewing': 1.6430492035729749e-06, 'dived': 4.929147610718925e-06, 'holster': 9.036770619651361e-06, "Harris'": 1.6430492035729749e-06, "Geely's": 1.6430492035729749e-06, 'recumbent': 1.6430492035729749e-06, 'okay': 5.750672212505412e-06, 'good-humoredly': 1.6430492035729749e-06, 'mailboxes': 4.107623008932437e-06, 'wall-switch': 1.6430492035729749e-06, 'flatten': 1.6430492035729749e-06, 'wrenching': 1.6430492035729749e-06, 'scrambling': 1.6430492035729749e-06, 'knifelike': 1.6430492035729749e-06, 'steadied': 2.4645738053594624e-06, 'invulnerable': 1.6430492035729749e-06, 'feint': 2.4645738053594624e-06, 'macabre': 2.4645738053594624e-06, 'hunched': 2.4645738053594624e-06, 'forearm': 3.2860984071459497e-06, 'sagged': 3.2860984071459497e-06, 'Ducking': 2.4645738053594624e-06, 'tripped': 2.4645738053594624e-06, 'feebly': 1.6430492035729749e-06, 'wobbled': 2.4645738053594624e-06, 'mid-air': 1.6430492035729749e-06, 'bloodstained': 1.6430492035729749e-06, 'careened': 1.6430492035729749e-06, 'newel': 1.6430492035729749e-06, 'sudden-end': 1.6430492035729749e-06, 'lamming': 1.6430492035729749e-06, 'wastrel': 1.6430492035729749e-06, 'snowed': 2.4645738053594624e-06, 'undulating': 1.6430492035729749e-06, 'safekeeping': 1.6430492035729749e-06, 'deceitful': 1.6430492035729749e-06, 'dryly': 4.107623008932437e-06, 'skeleton': 2.4645738053594624e-06, 'Liz': 1.6430492035729749e-06, 'Peabody': 1.6430492035729749e-06, 'Jeb': 1.6430492035729749e-06, 'Lisa': 4.107623008932437e-06, 'garish': 1.6430492035729749e-06, 'courthouse': 3.2860984071459497e-06, 'white-stucco': 1.6430492035729749e-06, 'privet': 1.6430492035729749e-06, 'semitropical': 1.6430492035729749e-06, 'camellias': 1.6430492035729749e-06, 'azaleas': 3.2860984071459497e-06, 'improbably': 1.6430492035729749e-06, 'bright-green': 1.6430492035729749e-06, "florist's": 2.4645738053594624e-06, 'grooms': 1.6430492035729749e-06, 'good-looking': 4.107623008932437e-06, "Calhoun's": 1.6430492035729749e-06, 'gallstone': 1.6430492035729749e-06, 'tracking': 2.4645738053594624e-06, 'Tracking': 1.6430492035729749e-06, 'wearying': 2.4645738053594624e-06, 'frizzled': 1.6430492035729749e-06, 'poodle': 2.4645738053594624e-06, 'pecked': 2.4645738053594624e-06, 'breaking-out': 1.6430492035729749e-06, 'allergy': 1.6430492035729749e-06, 'Carmody': 2.4645738053594624e-06, "it'll": 8.215246017864873e-06, 'reportorial': 1.6430492035729749e-06, 'rolled-up': 1.6430492035729749e-06, 'Ferrell': 3.2860984071459497e-06, 'Hirey': 5.750672212505412e-06, 'Wants': 2.4645738053594624e-06, 'latches': 1.6430492035729749e-06, 'grillework': 1.6430492035729749e-06, "Hirey's": 1.6430492035729749e-06, 'grille': 3.2860984071459497e-06, 'leather-bound': 1.6430492035729749e-06, 'mustiness': 1.6430492035729749e-06, 'thrumming': 1.6430492035729749e-06, 'stacks': 1.6430492035729749e-06, 'burrowing': 1.6430492035729749e-06, 'casters': 1.6430492035729749e-06, 'plod': 1.6430492035729749e-06, 'cropping': 1.6430492035729749e-06, 'distract': 2.4645738053594624e-06, "Black's": 5.750672212505412e-06, 'basketball-playing': 1.6430492035729749e-06, 'L.S.U.': 1.6430492035729749e-06, 'Peerless': 3.2860984071459497e-06, 'Machines': 2.4645738053594624e-06, 'two-line': 1.6430492035729749e-06, "McKinley's": 1.6430492035729749e-06, 'Iroquois': 1.6430492035729749e-06, 'Hall-Mills': 1.6430492035729749e-06, 'tomblike': 2.4645738053594624e-06, 'clanged': 1.6430492035729749e-06, 'stone-blind': 1.6430492035729749e-06, 'pungency': 1.6430492035729749e-06, "supervisors'": 1.6430492035729749e-06, 'Gaylor': 1.6430492035729749e-06, 'Lila': 2.4645738053594624e-06, 'anagram': 1.6430492035729749e-06, 'unscramble': 1.6430492035729749e-06, "Gaylor's": 1.6430492035729749e-06, 'chimera-chasing': 1.6430492035729749e-06, 'reminiscences': 1.6430492035729749e-06, 'mesmerized': 1.6430492035729749e-06, 'Skyros': 1.7252016637516235e-05, 'contacting': 2.4645738053594624e-06, 'Angie': 1.4787442832156774e-05, 'Acourse': 1.6430492035729749e-06, "Denny's": 1.6430492035729749e-06, "Jackie's": 1.6430492035729749e-06, "hangin'": 2.4645738053594624e-06, "worryin'": 1.6430492035729749e-06, 'spades': 4.107623008932437e-06, 'crooks': 2.4645738053594624e-06, 'distractedly': 1.6430492035729749e-06, "Angelo's": 2.4645738053594624e-06, 'regular-featured': 1.6430492035729749e-06, 'spaniel-like': 1.6430492035729749e-06, 'Prettyman': 2.4645738053594624e-06, 'Denny': 2.4645738053594624e-06, "anybody'd": 1.6430492035729749e-06, "everything's": 2.4645738053594624e-06, 'underling': 1.6430492035729749e-06, 'Domokous': 2.4645738053594624e-06, "Skyros'": 2.4645738053594624e-06, 'paternally': 1.6430492035729749e-06, 'Elite': 1.6430492035729749e-06, 'ground-glass': 1.6430492035729749e-06, 'ten-twelve': 1.6430492035729749e-06, 'Bouvardier': 1.6430492035729749e-06, 'superstitious': 1.6430492035729749e-06, 'Katya': 3.2860984071459497e-06, 'Roslev': 1.6430492035729749e-06, 'Katharine': 5.750672212505412e-06, "'way": 1.6430492035729749e-06, "so's": 4.107623008932437e-06, "there'd": 3.2860984071459497e-06, 'foreign-sounding': 1.6430492035729749e-06, 'Prettier': 1.6430492035729749e-06, 'smarter': 1.6430492035729749e-06, 'vaguely-imagined': 1.6430492035729749e-06, "Katharine's": 1.6430492035729749e-06, 'Mendoza': 1.6430492035729749e-06, 'Alison': 1.6430492035729749e-06, 'handbag': 3.2860984071459497e-06, 'propped': 3.2860984071459497e-06, 'Bast': 1.6430492035729749e-06, 'daintily': 1.6430492035729749e-06, 'Abyssinians': 1.6430492035729749e-06, 'kittens': 4.929147610718925e-06, 'que': 1.6430492035729749e-06, 'sigue': 1.6430492035729749e-06, 'despues': 1.6430492035729749e-06, 'vet': 1.6430492035729749e-06, 'Carters': 1.6430492035729749e-06, "Maude's": 1.6430492035729749e-06, 'Happened': 3.2860984071459497e-06, 'Lolotte': 7.393721416078387e-06, 'beau': 1.6430492035729749e-06, 'Emile': 4.929147610718925e-06, 'Maude': 1.8073541239302723e-05, "Celie's": 1.6430492035729749e-06, "Sarah's": 4.107623008932437e-06, 'smokehouse': 2.4645738053594624e-06, 'storehouse': 3.2860984071459497e-06, 'Drink': 3.2860984071459497e-06, 'hiked': 1.6430492035729749e-06, 'Lucien': 9.036770619651361e-06, 'floes': 1.6430492035729749e-06, 'Stowe': 1.6430492035729749e-06, 'paterollers': 1.6430492035729749e-06, 'swished': 4.107623008932437e-06, 'undrinkable': 1.6430492035729749e-06, 'Honotassa': 4.107623008932437e-06, 'Rilly': 1.6430492035729749e-06, 'Glendora': 1.1501344425010824e-05, 'unprocurable': 1.6430492035729749e-06, 'credible': 2.4645738053594624e-06, 'unpleasantly': 1.6430492035729749e-06, 'Rev': 9.85829522143785e-06, "Emile's": 2.4645738053594624e-06, 'Added': 1.6430492035729749e-06, 'moire': 1.6430492035729749e-06, 'armoire': 1.6430492035729749e-06, 'moccasins': 2.4645738053594624e-06, 'curtly': 2.4645738053594624e-06, 'dosed': 2.4645738053594624e-06, 'doled': 1.6430492035729749e-06, 'Celie': 1.6430492035729749e-06, 'storeroom': 1.6430492035729749e-06, 'Commissary': 1.6430492035729749e-06, 'hams': 1.6430492035729749e-06, 'smoke-stained': 1.6430492035729749e-06, 'rafters': 1.6430492035729749e-06, 'ruthlessness': 2.4645738053594624e-06, 'drizzling': 2.4645738053594624e-06, 'brad': 1.6430492035729749e-06, "George's": 3.2860984071459497e-06, 'Reckon': 2.4645738053594624e-06, 'satirically': 1.6430492035729749e-06, "Rev's": 2.4645738053594624e-06, "cobbler's": 1.6430492035729749e-06, 'lamplight': 3.2860984071459497e-06, "Lolotte's": 1.6430492035729749e-06, 'schoolgirl': 1.6430492035729749e-06, 'confidant': 1.6430492035729749e-06, 'gulp': 2.4645738053594624e-06, "Glendora's": 1.6430492035729749e-06, 'stinking': 2.4645738053594624e-06, "Gilborn's": 3.2860984071459497e-06, 'Jacobs': 2.4645738053594624e-06, 'Gilborn': 1.3965918230370285e-05, 'half-cocked': 1.6430492035729749e-06, 'telephone-booth': 1.6430492035729749e-06, 'massaging': 1.6430492035729749e-06, "Kitti's": 2.4645738053594624e-06, 'blustery': 1.6430492035729749e-06, 'unheeding': 1.6430492035729749e-06, 'Kitti': 1.5608967433943262e-05, 'picture-images': 1.6430492035729749e-06, 'enormity': 1.6430492035729749e-06, "Conrad's": 2.4645738053594624e-06, 'no-goal': 1.6430492035729749e-06, 'one-thousandth': 1.6430492035729749e-06, 'undisguised': 1.6430492035729749e-06, 'Quickly': 2.4645738053594624e-06, 'lain': 4.107623008932437e-06, 'racking': 1.6430492035729749e-06, "Blanche's": 1.6430492035729749e-06, 'worksheet': 1.6430492035729749e-06, 'unpredictable': 2.4645738053594624e-06, 'Dinner': 1.6430492035729749e-06, 'Acapulco': 1.6430492035729749e-06, 'stupor': 4.107623008932437e-06, 'serenely': 1.6430492035729749e-06, 'penciled': 1.6430492035729749e-06, 'fingerprint': 5.750672212505412e-06, 'Mallory': 1.6430492035729749e-06, 'swooping': 3.2860984071459497e-06, 'pantomimed': 1.6430492035729749e-06, 'grasping': 2.4645738053594624e-06, 'cleanly': 2.4645738053594624e-06, "Mallory's": 1.6430492035729749e-06, 'cinch': 3.2860984071459497e-06, 'sobered': 3.2860984071459497e-06, 'second-floor': 1.6430492035729749e-06, "M.E.'s": 1.6430492035729749e-06, 'on-the-spot': 1.6430492035729749e-06, 'comings': 1.6430492035729749e-06, 'goings': 1.6430492035729749e-06, 'onlookers': 2.4645738053594624e-06, "Felix's": 2.4645738053594624e-06, 'householder': 1.6430492035729749e-06, 'Defining': 1.6430492035729749e-06, 'sobriety': 1.6430492035729749e-06, 'dame': 1.6430492035729749e-06, 'craggy': 1.6430492035729749e-06, 'unsuitably': 1.6430492035729749e-06, 'hatted': 1.6430492035729749e-06, 'unaccountable': 1.6430492035729749e-06, 'handiwork': 1.6430492035729749e-06, 'flute': 1.6430492035729749e-06, 'cavort': 1.6430492035729749e-06, 'big-chested': 1.6430492035729749e-06, 'big-shouldered': 1.6430492035729749e-06, 'heavy-armed': 1.6430492035729749e-06, 'dentures': 1.6430492035729749e-06, 'receded': 2.4645738053594624e-06, 'staggeringly': 1.6430492035729749e-06, 'freak': 4.107623008932437e-06, 'flannel': 4.107623008932437e-06, 'necktie': 2.4645738053594624e-06, 'whiff': 1.6430492035729749e-06, 'Gibby': 6.5721968142918994e-06, 'blokes': 1.6430492035729749e-06, 'Bully': 1.6430492035729749e-06, 'pompous': 3.2860984071459497e-06, 'whorls': 1.6430492035729749e-06, 'chortled': 3.2860984071459497e-06, 'fingerprints': 4.107623008932437e-06, 'prancing': 3.2860984071459497e-06, 'Grubb': 3.2860984071459497e-06, 'Shh': 1.6430492035729749e-06, 'Obligingly': 1.6430492035729749e-06, 'Connor': 1.6430492035729749e-06, 'foursome': 1.6430492035729749e-06, 'fingerprinting': 1.6430492035729749e-06, 'skylight': 1.6430492035729749e-06, 'skylights': 2.4645738053594624e-06, 'unerringly': 1.6430492035729749e-06, 'Expecting': 1.6430492035729749e-06, 'more-than-average': 1.6430492035729749e-06, 'wacky': 1.6430492035729749e-06, 'tarpaulin': 1.6430492035729749e-06, 'shrouded': 1.6430492035729749e-06, "workman's": 1.6430492035729749e-06, 'crutch': 1.6430492035729749e-06, 'Memory': 1.6430492035729749e-06, 'kidnapped': 1.6430492035729749e-06, 'cant': 1.6430492035729749e-06, 'Hub': 9.036770619651361e-06, 'dozing': 3.2860984071459497e-06, "Andy's": 4.107623008932437e-06, 'Sorry': 3.2860984071459497e-06, 'Paxton': 6.5721968142918994e-06, 'Lissa': 2.4645738053594624e-06, 'comforted': 1.6430492035729749e-06, 'revising': 1.6430492035729749e-06, 'befitting': 1.6430492035729749e-06, 'Fox': 3.2860984071459497e-06, 'Cradle': 2.4645738053594624e-06, 'cancelling': 1.6430492035729749e-06, "casino's": 1.6430492035729749e-06, 'Rocco': 2.4645738053594624e-06, 'nosing': 1.6430492035729749e-06, 'hustled': 2.4645738053594624e-06, "hotel's": 1.6430492035729749e-06, 'prying': 1.6430492035729749e-06, 'hero-worshippers': 1.6430492035729749e-06, "Skolman's": 2.4645738053594624e-06, 'Backstage': 1.6430492035729749e-06, 'bouquet': 4.107623008932437e-06, 'Shirl': 3.2860984071459497e-06, 'DuVol': 1.6430492035729749e-06, 'Skolman': 3.2860984071459497e-06, 'kidnapper': 1.6430492035729749e-06, 'Bonner': 5.750672212505412e-06, 'louse': 3.2860984071459497e-06, "nightclub's": 1.6430492035729749e-06, 'Motion': 1.6430492035729749e-06, 'Kidnapper': 1.6430492035729749e-06, 'kidnappers': 1.6430492035729749e-06, "bastard's": 1.6430492035729749e-06, 'natch': 1.6430492035729749e-06, 'sippers': 1.6430492035729749e-06, 'call-backs': 1.6430492035729749e-06, 'lucks': 1.6430492035729749e-06, 'Eliminating': 1.6430492035729749e-06, 'upbeat': 1.6430492035729749e-06, 'gravestone': 1.6430492035729749e-06, 'plowed': 4.929147610718925e-06, 'clapping': 4.929147610718925e-06, 'salvaging': 2.4645738053594624e-06, 'backstage': 1.6430492035729749e-06, 'perspiring': 1.6430492035729749e-06, 'discordantly': 2.4645738053594624e-06, 'Ladies': 1.6430492035729749e-06, 'clapped': 4.107623008932437e-06, 'off-stage': 1.6430492035729749e-06, "money's": 2.4645738053594624e-06, 'Bunch': 1.6430492035729749e-06, 'jerks': 1.6430492035729749e-06, 'mended': 1.6430492035729749e-06, 'Humpty': 1.6430492035729749e-06, 'Dumpty': 1.6430492035729749e-06, 'shouldered': 3.2860984071459497e-06, 'dully': 3.2860984071459497e-06, 'morgue': 1.6430492035729749e-06, 'scraggly': 2.4645738053594624e-06, "Dronk's": 1.6430492035729749e-06, 'Rossi': 2.4645738053594624e-06, 'limps': 1.6430492035729749e-06, 'limped': 2.4645738053594624e-06, "'stead": 1.6430492035729749e-06, 'sneaking': 2.4645738053594624e-06, 'spying': 2.4645738053594624e-06, 'Dronk': 2.4645738053594624e-06, 'Holden': 8.215246017864873e-06, 'half-aloud': 1.6430492035729749e-06, 'overalls': 4.929147610718925e-06, 'slimmer': 1.6430492035729749e-06, 'pleats': 1.6430492035729749e-06, "Arthur's": 1.6430492035729749e-06, "Holden's": 2.4645738053594624e-06, 'Mae': 1.3965918230370285e-05, "Crosson's": 2.4645738053594624e-06, "shark's": 1.6430492035729749e-06, 'Deliberately': 2.4645738053594624e-06, 'yelp': 2.4645738053594624e-06, 'No-o-o': 1.6430492035729749e-06, 'Crosson': 2.4645738053594624e-06, 'squinting': 3.2860984071459497e-06, "Mae's": 1.6430492035729749e-06, 'blatant': 2.4645738053594624e-06, 'scheming': 3.2860984071459497e-06, 'prodding': 1.6430492035729749e-06, 'cringed': 2.4645738053594624e-06, 'recreating': 1.6430492035729749e-06, 'molesting': 1.6430492035729749e-06, 'staginess': 1.6430492035729749e-06, 'darted': 5.750672212505412e-06, 'wilfully': 2.4645738053594624e-06, 'uprooted': 1.6430492035729749e-06, 'morosely': 2.4645738053594624e-06, 'jerkings': 1.6430492035729749e-06, 'snivelings': 1.6430492035729749e-06, "Ferguson's": 2.4645738053594624e-06, 'dragons': 1.6430492035729749e-06, 'Abandon': 1.6430492035729749e-06, 'Good-bye': 2.4645738053594624e-06, 'Glad': 2.4645738053594624e-06, 'chomp': 1.6430492035729749e-06, 'Worn': 1.6430492035729749e-06, 'seeping': 2.4645738053594624e-06, 'glass-like': 1.6430492035729749e-06, 'icicle': 1.6430492035729749e-06, 'MacReady': 2.4645738053594624e-06, 'busboy': 2.4645738053594624e-06, 'airless': 1.6430492035729749e-06, 'Forties': 1.6430492035729749e-06, 'Precinct': 2.4645738053594624e-06, 'overnighters': 3.2860984071459497e-06, 'Willings': 6.5721968142918994e-06, 'Paynes': 1.6430492035729749e-06, 'lodgings': 2.4645738053594624e-06, 'lunge': 1.6430492035729749e-06, 'fifty-four': 1.6430492035729749e-06, 'telescopic': 1.6430492035729749e-06, 'sniper': 1.6430492035729749e-06, 'Shrugs': 2.4645738053594624e-06, 'bellhops': 1.6430492035729749e-06, 'Cases': 1.6430492035729749e-06, 'long-stemmed': 1.6430492035729749e-06, 'Traces': 1.6430492035729749e-06, 'lab': 3.2860984071459497e-06, 'ocelot': 1.6430492035729749e-06, 'collapsible': 1.6430492035729749e-06, 'Vitus': 1.6430492035729749e-06, 'dribbled': 1.6430492035729749e-06, 'Weigand': 4.107623008932437e-06, 'centrifuge': 2.4645738053594624e-06, 'Mullins': 6.5721968142918994e-06, 'Nod': 1.6430492035729749e-06, 'Ridgefield': 1.6430492035729749e-06, 'Sort': 3.2860984071459497e-06, 'Norths': 1.6430492035729749e-06, "Jerry's": 1.6430492035729749e-06, 'Livingston': 1.6430492035729749e-06, 'Birdwood': 1.6430492035729749e-06, 'Uprising': 1.6430492035729749e-06, 'scuffle': 1.6430492035729749e-06, 'Intangibles': 1.6430492035729749e-06, 'hunches': 1.6430492035729749e-06, 'Ambushes': 1.6430492035729749e-06, 'Forget': 2.4645738053594624e-06, 'punishes': 1.6430492035729749e-06, 'quarter-century-old': 1.6430492035729749e-06, 'dereliction': 2.4645738053594624e-06, 'Grudges': 1.6430492035729749e-06, 'Jeopardize': 1.6430492035729749e-06, 'large-enough': 1.6430492035729749e-06, 'Motive': 3.2860984071459497e-06, 'Bitter': 1.6430492035729749e-06, 'unreasoning': 1.6430492035729749e-06, 'eliminations': 1.6430492035729749e-06, 'Opportunity': 1.6430492035729749e-06, 'corrode': 1.6430492035729749e-06, 'Lars': 1.6430492035729749e-06, 'playwright-director': 1.6430492035729749e-06, 'y': 1.6430492035729749e-06, 'Siamese': 4.107623008932437e-06, 'Stilts': 2.4645738053594624e-06, "Pam's": 1.6430492035729749e-06, 'dinnertime': 3.2860984071459497e-06, 'too-large': 2.4645738053594624e-06, 'piteous': 1.6430492035729749e-06, 'chaise': 1.6430492035729749e-06, "Constable's": 1.6430492035729749e-06, 'uninvited': 1.6430492035729749e-06, 'adulation': 1.6430492035729749e-06, 'martinis': 2.4645738053594624e-06, 'Hello': 5.750672212505412e-06, 'Madden': 1.5608967433943262e-05, "Madden's": 3.2860984071459497e-06, 'herring': 1.6430492035729749e-06, 'Uh-huh': 4.107623008932437e-06, 'Coroner': 1.6430492035729749e-06, 'pathologist': 2.4645738053594624e-06, 'Meeker': 9.036770619651361e-06, 'suffocation': 1.6430492035729749e-06, 'hemorrhages': 1.6430492035729749e-06, 'Scrapings': 1.6430492035729749e-06, 'nasal': 2.4645738053594624e-06, 'cavities': 1.6430492035729749e-06, 'Trachea': 1.6430492035729749e-06, 'thrombosis': 1.6430492035729749e-06, "seven-o'clock": 1.6430492035729749e-06, "Meeker's": 6.5721968142918994e-06, 'Medfield': 3.2860984071459497e-06, 'Brian': 4.929147610718925e-06, 'Hohlbein': 8.215246017864873e-06, 'one-thirty': 2.4645738053594624e-06, "Garth's": 4.929147610718925e-06, "Medfield's": 1.6430492035729749e-06, 'haircut': 2.4645738053594624e-06, 'Youngish': 1.6430492035729749e-06, 'Jaycee': 1.6430492035729749e-06, 'harbored': 3.2860984071459497e-06, 'disliking': 1.6430492035729749e-06, "inspector's": 1.6430492035729749e-06, 'Fairly': 1.6430492035729749e-06, 'wills': 1.6430492035729749e-06, 'pompousness': 1.6430492035729749e-06, 'great-nieces': 1.6430492035729749e-06, 'Pecks': 1.6430492035729749e-06, "Joan's": 2.4645738053594624e-06, 'faucet': 1.6430492035729749e-06, 'prized': 2.4645738053594624e-06, 'Ten-thousand-dollar': 1.6430492035729749e-06, 'two-bedroom': 1.6430492035729749e-06, 'Airy': 1.6430492035729749e-06, 'unremarkable': 1.6430492035729749e-06, 'Dunston': 1.6430492035729749e-06, 'stock-market': 1.6430492035729749e-06, 'Hoag': 1.8073541239302723e-05, "building's": 2.4645738053594624e-06, 'wrought-iron': 1.6430492035729749e-06, 'Leigh': 3.2860984071459497e-06, "undersecretary's": 1.6430492035729749e-06, 'Midge': 4.107623008932437e-06, 'red-rimmed': 1.6430492035729749e-06, "Who'd": 1.6430492035729749e-06, 'Mahzeer': 9.85829522143785e-06, "Mahzeer's": 4.929147610718925e-06, 'Impossible': 2.4645738053594624e-06, 'fuzz': 3.2860984071459497e-06, 'encased': 1.6430492035729749e-06, 'john': 2.4645738053594624e-06, 'placating': 1.6430492035729749e-06, 'Docherty': 8.215246017864873e-06, 'swallows': 2.4645738053594624e-06, 'recollected': 1.6430492035729749e-06, 'uncertainly': 2.4645738053594624e-06, 'Bonfiglio': 1.6430492035729749e-06, 'half-crocked': 1.6430492035729749e-06, 'muddleheaded': 1.6430492035729749e-06, "Haven't": 3.2860984071459497e-06, 'Troubled': 1.6430492035729749e-06, "Griffith's": 1.6430492035729749e-06, 'sari': 1.6430492035729749e-06, 'Muller': 8.215246017864873e-06, 'leaded': 1.6430492035729749e-06, 'drapes': 1.6430492035729749e-06, "minister's": 1.6430492035729749e-06, 'four-story': 1.6430492035729749e-06, "Muller's": 3.2860984071459497e-06, 'legation': 1.6430492035729749e-06, 'copings': 1.6430492035729749e-06, 'bulked': 1.6430492035729749e-06, 'Guardia': 1.6430492035729749e-06, "legation's": 1.6430492035729749e-06, 'third-story': 1.6430492035729749e-06, "room's": 1.6430492035729749e-06, 'facades': 1.6430492035729749e-06, 'vestibule': 2.4645738053594624e-06, 'fussing': 2.4645738053594624e-06, "Hoag's": 2.4645738053594624e-06, 'fumbled': 4.929147610718925e-06, 'nakedly': 1.6430492035729749e-06, 'lurching': 2.4645738053594624e-06, 'retch': 1.6430492035729749e-06, 'Arleigh': 1.6430492035729749e-06, 'buoyed': 1.6430492035729749e-06, 'Ingleside': 1.6430492035729749e-06, "lieutenant's": 3.2860984071459497e-06, "janitor's": 1.6430492035729749e-06, "Policemen's": 1.6430492035729749e-06, 'thirty-seven': 1.6430492035729749e-06, 'Killpath': 1.6430492035729746e-05, "Killpath's": 5.750672212505412e-06, 'untoward': 1.6430492035729749e-06, 'incursion': 1.6430492035729749e-06, 'fumed-oak': 2.4645738053594624e-06, 'Lieut': 1.6430492035729749e-06, 'Orville': 4.107623008932437e-06, 'Torrence': 2.4645738053594624e-06, 'combing': 1.6430492035729749e-06, 'pomaded': 1.6430492035729749e-06, 'raked': 4.107623008932437e-06, 'thatches': 1.6430492035729749e-06, "Gun's": 1.6430492035729749e-06, 'washbowl': 1.6430492035729749e-06, 'Fight': 1.6430492035729749e-06, 'Schaeffer': 2.4645738053594624e-06, 'bitch': 5.750672212505412e-06, 'stiff-backed': 1.6430492035729749e-06, 'seepage': 2.4645738053594624e-06, 'shinbone': 1.6430492035729749e-06, 'gut': 1.6430492035729749e-06, 'kneecap': 1.6430492035729749e-06, 'beady': 1.6430492035729749e-06, 'Matson': 7.393721416078387e-06, 'squadroom': 1.6430492035729749e-06, 'day-watch': 2.4645738053594624e-06, 'Rinker': 2.4645738053594624e-06, 'Vaughn': 2.4645738053594624e-06, 'patrolmen': 1.6430492035729749e-06, 'keeper': 3.2860984071459497e-06, 'single-spaced': 1.6430492035729749e-06, "Ingleside's": 1.6430492035729749e-06, 'drunk-and-disorderlies': 1.6430492035729749e-06, 'Accacia': 4.107623008932437e-06, 'gold-wire': 1.6430492035729749e-06, 'eying': 2.4645738053594624e-06, 'Gunnar': 2.4645738053594624e-06, 'absented': 1.6430492035729749e-06, 'sergeants': 1.6430492035729749e-06, 'Detail': 1.6430492035729749e-06, "Inspector's": 1.6430492035729749e-06, 'arrogate': 1.6430492035729749e-06, 'homicide': 1.6430492035729749e-06, 'frequented': 1.6430492035729749e-06, 'extralegal': 1.6430492035729749e-06, 'after-hours': 1.6430492035729749e-06, 'purportedly': 1.6430492035729749e-06, 'law-enforcement': 1.6430492035729749e-06, 'negligence': 2.4645738053594624e-06, 'trapdoor': 1.6430492035729749e-06, 'negligent': 2.4645738053594624e-06, 'nasaled': 1.6430492035729749e-06, 'balling': 1.6430492035729749e-06, 'showers': 2.4645738053594624e-06, 'Loren': 1.6430492035729749e-06, 'playback': 1.6430492035729749e-06, 'comportment': 1.6430492035729749e-06, 'mid-watch': 1.6430492035729749e-06, 'pencil-pusher': 1.6430492035729749e-06, 'ulcerated': 1.6430492035729749e-06, 'pro-tem': 1.6430492035729749e-06, 'squinted': 3.2860984071459497e-06, 'Doughnuttery': 1.6430492035729749e-06, 'Urbano': 1.6430492035729749e-06, 'Quintana': 1.6430492035729749e-06, 'foot-high': 1.6430492035729749e-06, 'Gonzalez': 2.4645738053594624e-06, 'Prop.': 2.4645738053594624e-06, 'Se': 1.6430492035729749e-06, 'Habla': 1.6430492035729749e-06, 'Espanol': 1.6430492035729749e-06, 'bilingual': 1.6430492035729749e-06, 'salesgirl': 1.6430492035729749e-06, 'Jiffy-Couch-a-Bed': 1.6430492035729749e-06, 'mauve': 1.6430492035729749e-06, 'velour': 1.6430492035729749e-06, '$79.89': 1.6430492035729749e-06, 'nothing-down': 1.6430492035729749e-06, 'refinance': 1.6430492035729749e-06, 'muse': 2.4645738053594624e-06, 'Needham': 4.929147610718925e-06, 'double-crossed': 1.6430492035729749e-06, "Casey's": 2.4645738053594624e-06, "Needham's": 1.6430492035729749e-06, "Betty's": 1.6430492035729749e-06, 'father-confessor': 1.6430492035729749e-06, "Burton's": 2.4645738053594624e-06, 'striding': 1.6430492035729749e-06, 'wastebasket': 2.4645738053594624e-06, 'sodden': 2.4645738053594624e-06, 'glint': 2.4645738053594624e-06, 'blackmailer': 2.4645738053594624e-06, 'grappled': 1.6430492035729749e-06, 'Calenda': 4.929147610718925e-06, 'Ackerly': 1.6430492035729749e-06, 'vetoed': 1.6430492035729749e-06, 'unlacing': 1.6430492035729749e-06, 'sedan': 2.4645738053594624e-06, 'throttle': 5.750672212505412e-06, 'appreciatively': 2.4645738053594624e-06, 'Reverse': 1.6430492035729749e-06, 'RDF': 1.6430492035729749e-06, 'enviously': 1.6430492035729749e-06, 'chartroom': 2.4645738053594624e-06, 'joking': 3.2860984071459497e-06, 'taut-nerved': 1.6430492035729749e-06, 'Silently': 1.6430492035729749e-06, 'padlock': 2.4645738053594624e-06, 'Hydraulic': 1.6430492035729749e-06, 'buckled': 2.4645738053594624e-06, 'codfish': 1.6430492035729749e-06, 'wiggling': 2.4645738053594624e-06, 'Clasping': 1.6430492035729749e-06, 'loneliest': 1.6430492035729749e-06, "Elaine's": 1.6430492035729749e-06, 'aloneness': 2.4645738053594624e-06, 'stumble': 1.6430492035729749e-06, 'Trinidad': 1.6430492035729749e-06, 'snooping': 1.6430492035729749e-06, 'helicopter': 1.6430492035729749e-06, 'skids': 1.6430492035729749e-06, 'churned': 1.6430492035729749e-06, 'secluded': 1.6430492035729749e-06, 'eyeful': 1.6430492035729749e-06, 'crossways': 1.6430492035729749e-06, 'ground-swell': 1.6430492035729749e-06, 'Jolla': 2.4645738053594624e-06, 'Redondo': 2.4645738053594624e-06, 'deeps': 1.6430492035729749e-06, 'whoppers': 1.6430492035729749e-06, 'skindive': 1.6430492035729749e-06, 'Strolling': 1.6430492035729749e-06, 'butane': 1.6430492035729749e-06, 'brew': 2.4645738053594624e-06, 'hi-fi': 1.6430492035729749e-06, 'Cigarette': 2.4645738053594624e-06, 'moulding': 1.6430492035729749e-06, 'washboard': 1.6430492035729749e-06, 'grimaced': 2.4645738053594624e-06, 'Kee-reist': 1.6430492035729749e-06, 'hissed': 2.4645738053594624e-06, "Poet's": 4.929147610718925e-06, "Nick's": 6.5721968142918994e-06, 'mannequin': 1.6430492035729749e-06, 'shin': 3.2860984071459497e-06, 'lingered': 2.4645738053594624e-06, 'Hurts': 1.6430492035729749e-06, 'companionway': 1.6430492035729749e-06, 'telegraphing': 1.6430492035729749e-06, 'Springing': 1.6430492035729749e-06, 'whoosh': 1.6430492035729749e-06, 'atavistic': 1.6430492035729749e-06, 'flippers': 1.6430492035729749e-06, 'pinioned': 1.6430492035729749e-06, 'painlessly': 1.6430492035729749e-06, 'flailed': 1.6430492035729749e-06, 'lanced': 1.6430492035729749e-06, 'lazily': 1.6430492035729749e-06, 'snake-like': 1.6430492035729749e-06, 'spewing': 1.6430492035729749e-06, 'cobra': 3.2860984071459497e-06, 'Desperately': 1.6430492035729749e-06, 'exhaled': 2.4645738053594624e-06, 'thrash': 1.6430492035729749e-06, 'Relentlessly': 1.6430492035729749e-06, 'inhaling': 1.6430492035729749e-06, 'steamer': 1.6430492035729749e-06, 'stiffs': 1.6430492035729749e-06, 'hick-self': 1.6430492035729749e-06, 'Took': 1.6430492035729749e-06, 'Proves': 1.6430492035729749e-06, 'sarcasm': 1.6430492035729749e-06, 'ribbing': 1.6430492035729749e-06, 'runt': 1.6430492035729749e-06, 'hotrod': 1.6430492035729749e-06, 'six-four': 1.6430492035729749e-06, 'corny': 1.6430492035729749e-06, 'gassy': 1.6430492035729749e-06, 'Comfortably': 1.6430492035729749e-06, 'Ran': 2.4645738053594624e-06, 'Came': 1.6430492035729749e-06, 'Colored': 2.4645738053594624e-06, 'hustling': 1.6430492035729749e-06, 'idiot-grin': 1.6430492035729749e-06, '9:47': 1.6430492035729749e-06, 'Nellie': 5.750672212505412e-06, 'Swears': 1.6430492035729749e-06, "Tim's": 2.4645738053594624e-06, 'Guess': 4.107623008932437e-06, "Abel's": 1.6430492035729749e-06, "Harbor's": 2.4645738053594624e-06, "Buck's": 1.6430492035729749e-06, 'Powerful': 1.6430492035729749e-06, 'Naw': 1.6430492035729749e-06, 'Jaguar': 4.929147610718925e-06, 'roadster': 1.6430492035729749e-06, 'heck': 1.6430492035729749e-06, 'grandfather-father-to-son': 1.6430492035729749e-06, 'Caddy': 1.6430492035729749e-06, 'prune': 1.6430492035729749e-06, 'shacks': 1.6430492035729749e-06, "'till": 1.6430492035729749e-06, 'Hiding': 1.6430492035729749e-06, 'chowder': 1.6430492035729749e-06, 'yachting': 2.4645738053594624e-06, 'slick': 6.5721968142918994e-06, 'ocean-going': 1.6430492035729749e-06, 'yawl': 1.6430492035729749e-06, "Bob's": 1.6430492035729749e-06, 'outriggers': 2.4645738053594624e-06, "Moore's": 2.4645738053594624e-06, 'plumb': 4.929147610718925e-06, 'Beauclerk': 7.393721416078387e-06, '1105': 6.5721968142918994e-06, 'Alec': 2.1359639646448672e-05, 'fine-tooth': 1.6430492035729749e-06, 'vacuumed': 1.6430492035729749e-06, 'redecorated': 2.4645738053594624e-06, 'Interview': 1.6430492035729749e-06, 'Soak': 3.2860984071459497e-06, 'Reenact': 1.6430492035729749e-06, 'smirked': 1.6430492035729749e-06, 'Cheerful': 1.6430492035729749e-06, "chief's": 1.6430492035729749e-06, 'flimsies': 1.6430492035729749e-06, 'spot-news': 1.6430492035729749e-06, 'Syndicate': 1.6430492035729749e-06, 'Kimball': 1.6430492035729749e-06, 'Westmore': 2.4645738053594624e-06, 'alimony': 2.4645738053594624e-06, 'remarry': 1.6430492035729749e-06, "Alec's": 4.929147610718925e-06, 'Unoccupied': 1.6430492035729749e-06, 'babbled': 2.4645738053594624e-06, 'Larger': 1.6430492035729749e-06, 'impertinent': 1.6430492035729749e-06, 'parrots': 1.6430492035729749e-06, 'drawled': 3.2860984071459497e-06, 'St-story': 1.6430492035729749e-06, 'Syndicated': 1.6430492035729749e-06, 'Feature': 1.6430492035729749e-06, 'tremulously': 1.6430492035729749e-06, 'globes': 1.6430492035729749e-06, 'footfall': 1.6430492035729749e-06, 'Stairs': 1.6430492035729749e-06, 'snowflakes': 1.6430492035729749e-06, 'Hastily': 1.6430492035729749e-06, 'ashtrays': 1.6430492035729749e-06, 'N-no': 1.6430492035729749e-06, 'mister': 3.2860984071459497e-06, 'immovable': 1.6430492035729749e-06, 'metronome': 1.6430492035729749e-06, 'wide-awake': 1.6430492035729749e-06, 'noiseless': 1.6430492035729749e-06, 'droop': 1.6430492035729749e-06, 'feigning': 1.6430492035729749e-06, 'tensed': 1.6430492035729749e-06, 'bedsprings': 1.6430492035729749e-06, 'creak': 1.6430492035729749e-06, 'Abandoning': 1.6430492035729749e-06, 'stinging': 2.4645738053594624e-06, 'squashy': 1.6430492035729749e-06, 'grazed': 2.4645738053594624e-06, 'Rough': 1.6430492035729749e-06, 'rasped': 1.6430492035729749e-06, 'inarticulate': 1.6430492035729749e-06, 'lumpy': 2.4645738053594624e-06, 'Tartar': 1.6430492035729749e-06, 'one-way': 1.6430492035729749e-06, 'fluttered': 2.4645738053594624e-06, 'grunting': 2.4645738053594624e-06, 'gullet': 1.6430492035729749e-06, 'McIver': 3.2860984071459497e-06, 'Handley': 1.3965918230370285e-05, 'Wharf': 2.4645738053594624e-06, 'Dogtown': 8.215246017864873e-06, "Day's": 1.6430492035729749e-06, 'inwardness': 2.4645738053594624e-06, 'highboy': 1.6430492035729749e-06, 'Places': 1.6430492035729749e-06, 'creeps': 1.6430492035729749e-06, 'veneer': 1.6430492035729749e-06, 'hall-mark': 1.6430492035729749e-06, 'Granther': 1.6430492035729749e-06, 'Stannard': 1.6430492035729749e-06, 'Dorcas': 1.6430492035729749e-06, 'bungled': 1.6430492035729749e-06, 'hex': 2.4645738053594624e-06, 'highland': 1.6430492035729749e-06, "moraine's": 1.6430492035729749e-06, 'spewings': 1.6430492035729749e-06, 'glacier': 1.6430492035729749e-06, 'granite': 2.4645738053594624e-06, 'cellars': 1.6430492035729749e-06, 'boulders': 3.2860984071459497e-06, 'ledges': 1.6430492035729749e-06, 'sumac': 1.6430492035729749e-06, 'Lanesville': 1.6430492035729749e-06, "hour's": 1.6430492035729749e-06, 'Pigeon': 1.6430492035729749e-06, 'Cove': 1.6430492035729749e-06, 'picnickers': 1.6430492035729749e-06, 'Sea-road': 1.6430492035729749e-06, 'Anta': 4.929147610718925e-06, 'Freya': 3.2860984071459497e-06, 'Norberg': 5.750672212505412e-06, 'Scandinavians': 1.6430492035729749e-06, 'steam-baths': 1.6430492035729749e-06, 'Beech': 4.107623008932437e-06, 'Pasture': 4.107623008932437e-06, 'as-it-were': 1.6430492035729749e-06, 'demoniac': 2.4645738053594624e-06, 'antiquities': 1.6430492035729749e-06, 'registrar': 1.6430492035729749e-06, 'water-line': 1.6430492035729749e-06, 'fingering': 1.6430492035729749e-06, 'glossy': 1.6430492035729749e-06, 'appraising': 1.6430492035729749e-06, 'curt': 1.6430492035729749e-06, 'untidy': 1.6430492035729749e-06, 'fine-boned': 1.6430492035729749e-06, 'ivory-inlay': 1.6430492035729749e-06, 'sneak': 2.4645738053594624e-06, 'foulest': 1.6430492035729749e-06, 'glowering': 2.4645738053594624e-06, 'rumpled': 2.4645738053594624e-06, 'noir': 1.6430492035729749e-06, 'Violent': 1.6430492035729749e-06, 'morose': 2.4645738053594624e-06, "granite's": 1.6430492035729749e-06, '1785': 1.6430492035729749e-06, '1786': 1.6430492035729749e-06, 'free-holders': 1.6430492035729749e-06, 'Sirs': 2.4645738053594624e-06, 'Salu': 1.6430492035729749e-06, 'bake-oven': 1.6430492035729749e-06, 'Cow': 1.6430492035729749e-06, 'lastly': 1.6430492035729749e-06, 'dower': 1.6430492035729749e-06, 'crests': 3.2860984071459497e-06, 'coxcombs': 1.6430492035729749e-06, 'buccolic': 1.6430492035729749e-06, 'escorting': 2.4645738053594624e-06, "Red's": 1.6430492035729749e-06, 'inopportune': 1.6430492035729749e-06, 'unperceived': 1.6430492035729749e-06, 'Gloomy': 1.6430492035729749e-06, 'unkempt': 1.6430492035729749e-06, 'unravel': 1.6430492035729749e-06, 'gunning': 1.6430492035729749e-06, 'pheasant': 1.6430492035729749e-06, 'Rabbits': 1.6430492035729749e-06, 'mussels': 2.4645738053594624e-06, 'dragger': 1.6430492035729749e-06, 'Haney': 1.6430492035729746e-05, 'doubtfully': 2.4645738053594624e-06, 'tear-filled': 1.6430492035729749e-06, 'Brakes': 2.4645738053594624e-06, 'howled': 1.6430492035729749e-06, 'blared': 1.6430492035729749e-06, 'safe-driving': 1.6430492035729749e-06, 'screwball': 1.6430492035729749e-06, 'crease': 1.6430492035729749e-06, "landlord's": 1.6430492035729749e-06, "Haney's": 2.4645738053594624e-06, 'Customer': 1.6430492035729749e-06, 'hangover': 2.4645738053594624e-06, 'weirdy': 1.6430492035729749e-06, 'surly': 2.4645738053594624e-06, 'Lolly': 3.2860984071459497e-06, 'sickening': 2.4645738053594624e-06, 'pallor': 2.4645738053594624e-06, 'limply': 1.6430492035729749e-06, 'lushes': 1.6430492035729749e-06, 'grievance': 3.2860984071459497e-06, 'moistened': 2.4645738053594624e-06, 'moodily': 1.6430492035729749e-06, 'table-top': 1.6430492035729749e-06, 'bloodshot': 1.6430492035729749e-06, 'bar-buddy': 1.6430492035729749e-06, 'offhand': 1.6430492035729749e-06, 'sulked': 2.4645738053594624e-06, 'scowled': 4.107623008932437e-06, 'feverishly': 2.4645738053594624e-06, 'Pops': 9.036770619651361e-06, "level's": 1.6430492035729749e-06, 'Jist': 3.2860984071459497e-06, "Pops's": 1.6430492035729749e-06, 'crate': 2.4645738053594624e-06, 'unrolled': 1.6430492035729749e-06, 'bindle': 1.6430492035729749e-06, 'Sure-sure': 1.6430492035729749e-06, 'sure-sure': 1.6430492035729749e-06, 'Git': 1.6430492035729749e-06, "an'": 6.5721968142918994e-06, "th'": 1.6430492035729749e-06, 'yuh': 2.4645738053594624e-06, 'agin': 2.4645738053594624e-06, 'amusedly': 1.6430492035729749e-06, 'Wearing': 1.6430492035729749e-06, 'Gloves': 1.6430492035729749e-06, 'blaring': 1.6430492035729749e-06, 'drunker': 2.4645738053594624e-06, 'flicking': 1.6430492035729749e-06, 'watermelon': 1.6430492035729749e-06, 'kayo': 1.6430492035729749e-06, 'Dig': 1.6430492035729749e-06, "Charlie's": 2.4645738053594624e-06, 'thunk': 1.6430492035729749e-06, 'abstractly': 1.6430492035729749e-06, 'winos': 1.6430492035729749e-06, 'guttered': 1.6430492035729749e-06, 'triple-checked': 1.6430492035729749e-06, 'Winsett': 1.6430492035729749e-06, 'Maxine': 2.4645738053594624e-06, 'Cosmo': 1.6430492035729749e-06, 'clockwork': 1.6430492035729749e-06, 'unpadded': 1.6430492035729749e-06, "Seaton's": 2.4645738053594624e-06, 'Radic': 4.107623008932437e-06, 'soundly': 3.2860984071459497e-06, 'dreamlessly': 1.6430492035729749e-06, "Maxine's": 1.6430492035729749e-06, 'Seaton': 1.6430492035729749e-06, 'show-down': 1.6430492035729749e-06, 'rummy': 1.6430492035729749e-06, 'stashed': 1.6430492035729749e-06, 'D-night': 1.6430492035729749e-06, 'Manny': 2.4645738053594624e-06, 'grok': 4.929147610718925e-06, "Self's": 1.6430492035729749e-06, 'threes-fulfilled': 1.6430492035729749e-06, 'discorporate': 2.4645738053594624e-06, 'grokked': 4.107623008932437e-06, 'Archangel': 3.2860984071459497e-06, 'Tabernacle': 1.6430492035729749e-06, 'cusp': 2.4645738053594624e-06, 'Digby': 6.5721968142918994e-06, 'Boone': 2.4645738053594624e-06, 'warily': 2.4645738053594624e-06, "Jubal's": 3.2860984071459497e-06, 'Martian': 4.929147610718925e-06, 'growing-waiting': 1.6430492035729749e-06, 'Jubal': 8.215246017864873e-06, 'Mahmoud': 2.4645738053594624e-06, 'grokking': 4.107623008932437e-06, 'Repeating': 1.6430492035729749e-06, 'jewel': 1.6430492035729749e-06, 'lotus': 1.6430492035729749e-06, 'nirvana': 1.6430492035729749e-06, 'speeded': 3.2860984071459497e-06, 'uncurled': 1.6430492035729749e-06, 'clear-headed': 1.6430492035729749e-06, 'puppyish': 1.6430492035729749e-06, 'chipper': 1.6430492035729749e-06, 'Asleep': 1.6430492035729749e-06, 'Stinky': 1.6430492035729749e-06, 'night-sight': 1.6430492035729749e-06, 'picnicked': 1.6430492035729749e-06, 'Antares': 1.6430492035729749e-06, 'Taught': 1.6430492035729749e-06, 'Martians': 3.2860984071459497e-06, 'nymphs': 1.6430492035729749e-06, 'nests': 3.2860984071459497e-06, 'quickening': 1.6430492035729749e-06, 'equator': 1.6430492035729749e-06, 'discorporated': 1.6430492035729749e-06, 'Technician': 1.6430492035729749e-06, 'Ones': 2.4645738053594624e-06, 'homesick': 3.2860984071459497e-06, 'breathlessly': 1.6430492035729749e-06, 'Kiss': 1.6430492035729749e-06, 'Greatness': 1.6430492035729749e-06, 'serviettes': 1.6430492035729749e-06, 'swami': 1.6430492035729749e-06, 'yoga': 1.6430492035729749e-06, 'pranha': 1.6430492035729749e-06, 'chelas': 1.6430492035729749e-06, 'matsyendra': 1.6430492035729749e-06, 'Rig-Veda': 1.6430492035729749e-06, 'guru': 1.6430492035729749e-06, 'purses': 1.6430492035729749e-06, "Grandmothers'": 1.6430492035729749e-06, 'price-cutting': 1.6430492035729749e-06, 'Fosterite': 1.6430492035729749e-06, 'Miracle': 1.6430492035729749e-06, 'spot-promoted': 1.6430492035729749e-06, 'with-but-after': 1.6430492035729749e-06, 'Huey': 1.6430492035729749e-06, "L'Unita": 1.6430492035729749e-06, 'Hoy': 1.6430492035729749e-06, "Short's": 1.6430492035729749e-06, "l'Osservatore": 1.6430492035729749e-06, 'Romano': 1.6430492035729749e-06, 'Monitor': 2.4645738053594624e-06, 'Fosterites': 1.6430492035729749e-06, 'jackass': 2.4645738053594624e-06, 'angelic': 2.4645738053594624e-06, 'Eternity': 1.6430492035729749e-06, 'Popes': 1.6430492035729749e-06, 'halo': 2.4645738053594624e-06, 'requisition': 1.6430492035729749e-06, 'gripes': 1.6430492035729749e-06, "Digby's": 1.6430492035729749e-06, 'clinches': 1.6430492035729749e-06, 'vs': 4.107623008932437e-06, 'BCD': 1.6430492035729749e-06, 'AD': 1.6430492035729749e-06, 'CB': 1.6430492035729749e-06, 'rock-steady': 1.6430492035729749e-06, 'Absent-minded': 1.6430492035729749e-06, 'personae': 1.6430492035729749e-06, 'barometric': 1.6430492035729749e-06, 'sentient': 2.4645738053594624e-06, 'Macneff': 6.5721968142918994e-06, 'Sandalphon': 3.2860984071459497e-06, 'Forerunner': 4.107623008932437e-06, '573': 1.6430492035729749e-06, 'scriptural': 1.6430492035729749e-06, 'Thought': 2.4645738053594624e-06, 'Pornsen': 3.2860984071459497e-06, 'gapt': 6.5721968142918994e-06, 'impresser': 1.6430492035729749e-06, 'creche': 1.6430492035729749e-06, "R.'s": 1.6430492035729749e-06, 'Swiftly': 1.6430492035729749e-06, 'Sigmen': 4.107623008932437e-06, 'contrary-to-reality': 1.6430492035729749e-06, 'lightyears': 1.6430492035729749e-06, 'lamechians': 1.6430492035729749e-06, 'lamechian': 1.6430492035729749e-06, 'pardons': 1.6430492035729749e-06, 'Urielites': 1.6430492035729749e-06, 'Israelites': 1.6430492035729749e-06, 'Yarrow': 4.107623008932437e-06, 'blazed': 2.4645738053594624e-06, 'megalopolises': 1.6430492035729749e-06, 'Haijac': 2.4645738053594624e-06, 'Malay': 1.6430492035729749e-06, 'Bazaar': 2.4645738053594624e-06, 'Icelandic': 1.6430492035729749e-06, 'Swahili': 1.6430492035729749e-06, 'Icelandic-speaking': 1.6430492035729749e-06, 'Apocalyptic': 2.4645738053594624e-06, 'Lingo': 1.6430492035729749e-06, 'Hawaiian-Americans': 1.6430492035729749e-06, 'resettling': 1.6430492035729749e-06, 'French-Canadians': 1.6430492035729749e-06, 'Preserve': 1.6430492035729749e-06, 'dry-eyed': 1.6430492035729749e-06, 'unrealistically': 1.6430492035729749e-06, 'cremated': 1.6430492035729749e-06, 'Sturch': 2.4645738053594624e-06, 'welling': 1.6430492035729749e-06, 'rend': 1.6430492035729749e-06, "Hal's": 1.6430492035729749e-06, 'navel': 2.4645738053594624e-06, 'loose-jowled': 1.6430492035729749e-06, 'lopsidedly': 1.6430492035729749e-06, 'one-gee': 2.4645738053594624e-06, '99.1': 1.6430492035729749e-06, 'suspensor': 2.4645738053594624e-06, 'animation': 2.4645738053594624e-06, 'unfrozen': 2.4645738053594624e-06, "journey's": 2.4645738053594624e-06, 'photon-counting': 1.6430492035729749e-06, 'actuate': 1.6430492035729749e-06, 'deceleration': 2.4645738053594624e-06, 'unthaw': 1.6430492035729749e-06, 'half-year': 1.6430492035729749e-06, 'Ozagen': 4.107623008932437e-06, 'Siddo': 6.5721968142918994e-06, 'wrongly': 1.6430492035729749e-06, "Earthmen's": 1.6430492035729749e-06, 'Ozagenians': 1.6430492035729749e-06, 'inflecting': 1.6430492035729749e-06, 'animate': 1.6430492035729749e-06, 'infinitive': 1.6430492035729749e-06, "dabhumaksanigalu'ahai": 1.6430492035729749e-06, "ksu'u'peli'afo": 1.6430492035729749e-06, "mai'teipa": 1.6430492035729749e-06, 'tenses': 1.6430492035729749e-06, 'Earthmen': 4.929147610718925e-06, 'genders': 1.6430492035729749e-06, 'neuter': 1.6430492035729749e-06, 'gender': 2.4645738053594624e-06, 'conjunctions': 1.6430492035729749e-06, 'value-judgments': 1.6430492035729749e-06, "Hesperus'": 1.6430492035729749e-06, 'galactic': 1.6430492035729749e-06, 'Hesperus': 9.85829522143785e-06, 'First-Born': 1.6430492035729749e-06, 'Recovering': 1.6430492035729749e-06, 'Visiting': 1.6430492035729749e-06, 'elation': 2.4645738053594624e-06, 'ratify': 1.6430492035729749e-06, 'codified': 1.6430492035729749e-06, 'sanest': 1.6430492035729749e-06, 'unreassuringly': 1.6430492035729749e-06, 'hegemony': 1.6430492035729749e-06, 'thrashed': 3.2860984071459497e-06, 'pentagon': 1.6430492035729749e-06, 'zigzagging': 4.107623008932437e-06, 'pip': 3.2860984071459497e-06, 'hove': 1.6430492035729749e-06, 'roiling': 3.2860984071459497e-06, 'Sack': 2.4645738053594624e-06, 'spacesuits': 1.6430492035729749e-06, 'unfurled': 1.6430492035729749e-06, 'Langer': 3.2860984071459497e-06, 'numenous': 1.6430492035729749e-06, "comet's-tail": 1.6430492035729749e-06, 'light-year': 1.6430492035729749e-06, 'Nernst': 2.4645738053594624e-06, 'Fuming': 1.6430492035729749e-06, "skiff's": 1.6430492035729749e-06, 'nebula': 1.6430492035729749e-06, 'frighteningly': 1.6430492035729749e-06, 'Holies': 1.6430492035729749e-06, 'excised': 1.6430492035729749e-06, 'reinstall': 1.6430492035729749e-06, 'fuses': 3.2860984071459497e-06, "instant's": 1.6430492035729749e-06, 't-tau': 1.6430492035729749e-06, 'hefted': 1.6430492035729749e-06, 'sleepily': 2.4645738053594624e-06, 'Ekstrohm': 2.218116424823516e-05, 'Nogol': 7.393721416078387e-06, 'ground-level': 1.6430492035729749e-06, 'facsiport': 1.6430492035729749e-06, 'hugged': 2.4645738053594624e-06, 'Galaxy': 1.6430492035729749e-06, 'swath': 1.6430492035729749e-06, 'asteroid': 1.6430492035729749e-06, 'infuriation': 1.6430492035729749e-06, 'planetoids': 1.6430492035729749e-06, 'Yancy-6': 1.6430492035729749e-06, 'Antarctica': 1.6430492035729749e-06, 'Nitrogen': 2.4645738053594624e-06, 'Ringing': 1.6430492035729749e-06, 'interjected': 1.6430492035729749e-06, 'Sonic': 1.6430492035729749e-06, 'encephalographic': 1.6430492035729749e-06, 'unfathomable': 1.6430492035729749e-06, 'mis-reading': 1.6430492035729749e-06, 'dials': 1.6430492035729749e-06, 'lug': 2.4645738053594624e-06, 'ambidextrous': 1.6430492035729749e-06, 'airlock': 1.6430492035729749e-06, 'lapel': 1.6430492035729749e-06, 'coverall': 2.4645738053594624e-06, 'warm-blooded': 1.6430492035729749e-06, 'mammal': 1.6430492035729749e-06, 'seismological': 1.6430492035729749e-06, 'nudged': 2.4645738053594624e-06, 'wart-hog': 1.6430492035729749e-06, 'creepy': 1.6430492035729749e-06, 'Dissect': 1.6430492035729749e-06, "Ekstrohm's": 1.6430492035729749e-06, 'beasts': 2.4645738053594624e-06, 'blastdown': 1.6430492035729749e-06, 'critters': 3.2860984071459497e-06, 'curl': 2.4645738053594624e-06, 'spaceship': 2.4645738053594624e-06, 'ringed': 2.4645738053594624e-06, 'intimacy': 3.2860984071459497e-06, 'Yancey-6': 1.6430492035729749e-06, '138': 1.6430492035729749e-06, 'Insects': 1.6430492035729749e-06, 'couches': 1.6430492035729749e-06, 'birthed': 1.6430492035729749e-06, 'insomnia': 2.4645738053594624e-06, 'fitfully': 1.6430492035729749e-06, 'dispell': 1.6430492035729749e-06, 'gritty-eyed': 1.6430492035729749e-06, 'shipmates': 1.6430492035729749e-06, 'Insomnia': 1.6430492035729749e-06, 'shipboard': 1.6430492035729749e-06, 'no-back': 1.6430492035729749e-06, 'repercussions': 1.6430492035729749e-06, 'pontifical': 1.6430492035729749e-06, 'flipped': 3.2860984071459497e-06, 'sleeplessly': 1.6430492035729749e-06, 'burnt-red': 1.6430492035729749e-06, 'beasties': 1.6430492035729749e-06, 'veldt': 1.6430492035729749e-06, 'ExPe': 1.6430492035729749e-06, 'mucking': 2.4645738053594624e-06, 'patsy': 1.6430492035729749e-06, 'shipmate': 2.4645738053594624e-06, 'Suspicion': 1.6430492035729749e-06, 'Helva': 2.218116424823516e-05, 'crabbed': 1.6430492035729749e-06, 'transferral': 1.6430492035729749e-06, "Helva's": 7.393721416078387e-06, 'neural': 3.2860984071459497e-06, 'synapses': 1.6430492035729749e-06, 'partnered': 1.6430492035729749e-06, 'side-effects': 1.6430492035729749e-06, 'bide': 1.6430492035729749e-06, 'shell-psychology': 1.6430492035729749e-06, 'rogue': 1.6430492035729749e-06, 'babes': 3.2860984071459497e-06, 'Shell': 5.750672212505412e-06, 'deformities': 1.6430492035729749e-06, 'well-oriented': 1.6430492035729749e-06, 'scooted': 4.107623008932437e-06, 'Stall': 1.6430492035729749e-06, 'Power-Seek': 1.6430492035729749e-06, 'ceteras': 1.6430492035729749e-06, 'sub-conscious-level': 1.6430492035729749e-06, 'do-good': 1.6430492035729749e-06, 'inhumanities': 1.6430492035729749e-06, 'shelled': 1.6430492035729749e-06, 'Worlds': 2.4645738053594624e-06, 'overridden': 1.6430492035729749e-06, 'absentmindedly': 1.6430492035729749e-06, 'crooned': 2.4645738053594624e-06, 'cords': 2.4645738053594624e-06, 'diaphragms': 1.6430492035729749e-06, 'dulcet': 1.6430492035729749e-06, 'gurgle': 1.6430492035729749e-06, 'cratered': 1.6430492035729749e-06, 'madam': 1.6430492035729749e-06, 'Vocal': 1.6430492035729749e-06, 'intra-stellar': 1.6430492035729749e-06, 'unshelled': 1.6430492035729749e-06, 'sheered': 1.6430492035729749e-06, 'twittered': 1.6430492035729749e-06, "Master's": 1.6430492035729749e-06, 'unmagnified': 1.6430492035729749e-06, 'contrite': 1.6430492035729749e-06, 'monitor': 1.6430492035729749e-06, 'digesting': 2.4645738053594624e-06, 'Tristan': 1.6430492035729749e-06, 'Isolde': 1.6430492035729749e-06, 'Candide': 1.6430492035729749e-06, 'Nozze': 1.6430492035729749e-06, 'Figaro': 1.6430492035729749e-06, 'Presley': 1.6430492035729749e-06, 'Venusians': 1.6430492035729749e-06, 'Capellan': 1.6430492035729749e-06, 'chromatics': 1.6430492035729749e-06, 'sonic': 1.6430492035729749e-06, 'concerti': 1.6430492035729749e-06, 'Altairians': 1.6430492035729749e-06, 'schooled': 1.6430492035729749e-06, 'Balanced': 1.6430492035729749e-06, 'nondefeatist': 1.6430492035729749e-06, 'by-passing': 1.6430492035729749e-06, 'enunciation': 1.6430492035729749e-06, 'diaphragmic': 2.4645738053594624e-06, 'sinuses': 1.6430492035729749e-06, 'felicitous': 1.6430492035729749e-06, 'unpleased': 1.6430492035729749e-06, 'unharmonious': 1.6430492035729749e-06, 'Acquiring': 1.6430492035729749e-06, 'mezzo': 1.6430492035729749e-06, 'avocation': 1.6430492035729749e-06, 'indestructible': 1.6430492035729749e-06, 'extendibles': 1.6430492035729749e-06, 'diverted': 3.2860984071459497e-06, 'delicate-beyond-description': 1.6430492035729749e-06, 'taps': 1.6430492035729749e-06, 'anesthetically': 1.6430492035729749e-06, 'ambulatory': 1.6430492035729749e-06, 'scouts': 2.4645738053594624e-06, 'Tanner': 2.4645738053594624e-06, "pilots'": 2.4645738053594624e-06, 'wisecracked': 2.4645738053594624e-06, 'activating': 1.6430492035729749e-06, 'scanners': 1.6430492035729749e-06, 'self-pitying': 1.6430492035729749e-06, "B'dikkat": 1.8073541239302723e-05, 'two-nosed': 1.6430492035729749e-06, 'super-condamine': 4.107623008932437e-06, 'spacesuit': 1.6430492035729749e-06, 'many-bodied': 1.6430492035729749e-06, 'rammed': 3.2860984071459497e-06, 'pinkly': 1.6430492035729749e-06, 'thicken': 1.6430492035729749e-06, 'companionable': 1.6430492035729749e-06, 'dromozoa': 4.929147610718925e-06, 'screams': 2.4645738053594624e-06, 'agonies': 1.6430492035729749e-06, 'hand-covered': 1.6430492035729749e-06, 'half-man': 8.215246017864873e-06, 'friendlily': 1.6430492035729749e-06, 'Shayol': 4.107623008932437e-06, 'Formerly': 1.6430492035729749e-06, 'benign': 1.6430492035729749e-06, 'half-transparent': 1.6430492035729749e-06, 'eye-machine': 1.6430492035729749e-06, 'obviousness': 1.6430492035729749e-06, 'dummies': 1.6430492035729749e-06, 'decorticated': 1.6430492035729749e-06, 'lovelies': 1.6430492035729749e-06, 'Earth-weeks': 1.6430492035729749e-06, 'Earth-week': 1.6430492035729749e-06, 'well-read': 1.6430492035729749e-06, 'dromozootic': 1.6430492035729749e-06, 'implant': 1.6430492035729749e-06, 'senselessly': 1.6430492035729749e-06, 'hoarsely': 4.107623008932437e-06, 'child-face': 1.6430492035729749e-06, 'dabbed': 1.6430492035729749e-06, 'toe-tips': 1.6430492035729749e-06, 'teratologies': 1.6430492035729749e-06, 'nicest': 1.6430492035729749e-06, 'burned-out': 1.6430492035729749e-06, 'ground-truck': 1.6430492035729749e-06, 'threshed': 1.6430492035729749e-06, 'bawled': 2.4645738053594624e-06, 'perplexity': 1.6430492035729749e-06, 'eighty-four': 1.6430492035729749e-06, 'cow-man': 1.6430492035729749e-06, 'cow-people': 1.6430492035729749e-06, 'resembling': 2.4645738053594624e-06, 'kindliness': 1.6430492035729749e-06, 'geysers': 2.4645738053594624e-06, 'commingled': 1.6430492035729749e-06, "B'dikkat's": 1.6430492035729749e-06, 'fickle': 1.6430492035729749e-06, 'ditches': 2.4645738053594624e-06, 'Renfro': 1.6430492035729749e-06, 'angling': 1.6430492035729749e-06, 'Reaching': 4.107623008932437e-06, 'Leaning': 3.2860984071459497e-06, 'frowzy': 1.6430492035729749e-06, 'dipper': 5.750672212505412e-06, 'greedily': 1.6430492035729749e-06, 'nester': 2.4645738053594624e-06, 'buckets': 3.2860984071459497e-06, "hell's": 2.4645738053594624e-06, 'half-acre': 1.6430492035729749e-06, "Buckhorn's": 1.6430492035729749e-06, 'woebegone': 1.6430492035729749e-06, 'idiot': 2.4645738053594624e-06, 'dejectedly': 1.6430492035729749e-06, 'Rafter': 1.6430492035729749e-06, 'best-looking': 1.6430492035729749e-06, 'innocents': 1.6430492035729749e-06, 'doc': 1.6430492035729749e-06, 'scissors': 1.6430492035729749e-06, 'savvy': 1.6430492035729749e-06, 'Rittenhouse': 1.6430492035729749e-06, 'Splendide': 1.6430492035729749e-06, 'croaks': 1.6430492035729749e-06, 'half-breed': 4.929147610718925e-06, "'pache": 1.6430492035729749e-06, 'anythin': 1.6430492035729749e-06, 'goin': 4.107623008932437e-06, 'murmuring': 4.107623008932437e-06, 'fiercely': 4.107623008932437e-06, 'driftin': 1.6430492035729749e-06, 'stallion': 3.2860984071459497e-06, 'tightened': 5.750672212505412e-06, 'cinches': 1.6430492035729749e-06, 'looped': 1.6430492035729749e-06, 'veranda': 7.393721416078387e-06, 'somethin': 1.6430492035729749e-06, "stallion's": 2.4645738053594624e-06, 'huskily': 1.6430492035729749e-06, 'Lived': 2.4645738053594624e-06, 'rump': 2.4645738053594624e-06, 'campfire': 2.4645738053594624e-06, 'untenanted': 1.6430492035729749e-06, 'palely': 1.6430492035729749e-06, 'gullies': 1.6430492035729749e-06, 'watchful': 2.4645738053594624e-06, 'windless': 1.6430492035729749e-06, "Pettigrew's": 1.6430492035729749e-06, 'leavin': 2.4645738053594624e-06, 'Purvis': 4.107623008932437e-06, 'rustled': 2.4645738053594624e-06, "Clayton's": 3.2860984071459497e-06, "Lester's": 1.6430492035729749e-06, "Cabot's": 1.6430492035729749e-06, 'Silas': 1.6430492035729749e-06, 'Pettigrew': 1.6430492035729749e-06, 'Thirty-six': 1.6430492035729749e-06, 'manes': 2.4645738053594624e-06, 'pennants': 1.6430492035729749e-06, 'hoofs': 6.5721968142918994e-06, "mare's": 1.6430492035729749e-06, 'leaping': 2.4645738053594624e-06, 'Enfield': 1.6430492035729749e-06, 'holstered': 3.2860984071459497e-06, 'cap-and-ball': 1.6430492035729749e-06, 'tunic': 1.6430492035729749e-06, 'gagged': 1.6430492035729749e-06, 'Fiske': 4.929147610718925e-06, 'unsteady': 2.4645738053594624e-06, 'blustered': 1.6430492035729749e-06, 'dabbing': 2.4645738053594624e-06, 'unutterably': 1.6430492035729749e-06, 'Fortune': 2.4645738053594624e-06, 'McLish': 3.2860984071459497e-06, "Dean's": 2.4645738053594624e-06, 'sop': 1.6430492035729749e-06, 'slouch': 1.6430492035729749e-06, 'parried': 1.6430492035729749e-06, 'veer': 2.4645738053594624e-06, "Mike's": 6.5721968142918994e-06, 'backlash': 1.6430492035729749e-06, 'tethers': 1.6430492035729749e-06, "fat's": 1.6430492035729749e-06, "sentry's": 1.6430492035729749e-06, 'Feds': 1.6430492035729749e-06, 'panted': 1.6430492035729749e-06, 'Favor': 1.6430492035729749e-06, 'whack': 1.6430492035729749e-06, 'whoop': 1.6430492035729749e-06, "stealin'": 1.6430492035729749e-06, 'half-clad': 1.6430492035729749e-06, 'Durkin': 2.4645738053594624e-06, 'uproar': 2.4645738053594624e-06, 'peg': 3.2860984071459497e-06, 'canisters': 1.6430492035729749e-06, 'pallet': 1.6430492035729749e-06, 'booty': 2.4645738053594624e-06, 'Shouldering': 1.6430492035729749e-06, 'hoods': 2.4645738053594624e-06, 'Snatching': 1.6430492035729749e-06, 'canister': 2.4645738053594624e-06, 'Powder': 1.6430492035729749e-06, 'Guerrillas': 2.4645738053594624e-06, 'floundered': 1.6430492035729749e-06, 'whipsawed': 1.6430492035729749e-06, 'crossbars': 1.6430492035729749e-06, 'hovered': 1.6430492035729749e-06, 'thudding': 1.6430492035729749e-06, 'mudwagon': 1.6430492035729749e-06, 'Gawdamighty': 1.6430492035729749e-06, 'grub': 2.4645738053594624e-06, 'Hurry': 4.107623008932437e-06, 'Drag': 1.6430492035729749e-06, 'Hustle': 1.6430492035729749e-06, 'pillar': 2.4645738053594624e-06, 'gash': 1.6430492035729749e-06, 'hobble': 1.6430492035729749e-06, "cap'n": 1.6430492035729749e-06, 'Dirion': 1.6430492035729749e-06, 'Montero': 9.036770619651361e-06, 'Oso': 6.5721968142918994e-06, 'Aricaras': 4.929147610718925e-06, 'unruffled': 1.6430492035729749e-06, "Knife's": 3.2860984071459497e-06, "Montero's": 4.929147610718925e-06, "comin'": 2.4645738053594624e-06, "fightin'": 1.6430492035729749e-06, 'Matt': 1.6430492035729749e-06, 'Blackfeet': 2.4645738053594624e-06, "hankerin'": 1.6430492035729749e-06, "talkin'": 1.6430492035729749e-06, "Oso's": 2.4645738053594624e-06, 'Missy': 1.6430492035729749e-06, 'Crows': 1.6430492035729749e-06, 'Surprisingly': 1.6430492035729749e-06, "rev'rend": 1.6430492035729749e-06, 'stitched': 1.6430492035729749e-06, 'bale': 4.929147610718925e-06, 'Rees': 2.4645738053594624e-06, 'Wildly': 1.6430492035729749e-06, 'Buckets': 1.6430492035729749e-06, 'Coyotes': 1.6430492035729749e-06, 'whinny': 1.6430492035729749e-06, 'unconcernedly': 1.6430492035729749e-06, 'lances': 2.4645738053594624e-06, 'spine-chilling': 2.4645738053594624e-06, 'quivered': 1.6430492035729749e-06, 'clout': 1.6430492035729749e-06, 'corded': 1.6430492035729749e-06, 'Kill': 1.6430492035729749e-06, 'circling': 2.4645738053594624e-06, 'reorganizing': 1.6430492035729749e-06, 'shields': 2.4645738053594624e-06, 'sweetish': 1.6430492035729749e-06, 'new-spilled': 1.6430492035729749e-06, 'acrid': 1.6430492035729749e-06, 'stench': 1.6430492035729749e-06, "Canadian's": 1.6430492035729749e-06, "Indian's": 4.929147610718925e-06, 'shrilling': 1.6430492035729749e-06, 'hurdled': 1.6430492035729749e-06, 'melon': 1.6430492035729749e-06, 'quirt': 7.393721416078387e-06, 'wheeling': 1.6430492035729749e-06, 'saddles': 2.4645738053594624e-06, 'slam': 3.2860984071459497e-06, 'Hawkinses': 1.6430492035729749e-06, 'dangle': 1.6430492035729749e-06, "fire's": 2.4645738053594624e-06, 'aback': 2.4645738053594624e-06, 'whiteface': 2.4645738053594624e-06, 'cud': 1.6430492035729749e-06, 'Carwood': 2.4645738053594624e-06, 'dark-skinned': 1.6430492035729749e-06, 'half-darkness': 1.6430492035729749e-06, 'expressionless': 2.4645738053594624e-06, 'flinching': 1.6430492035729749e-06, "pony's": 1.6430492035729749e-06, "name's": 4.107623008932437e-06, 'Sanchez': 1.6430492035729749e-06, 'thong': 1.6430492035729749e-06, 'prettiness': 1.6430492035729749e-06, 'browbeaten': 1.6430492035729749e-06, 'coyote': 1.6430492035729749e-06, 'scrubbed': 1.6430492035729749e-06, 'pans': 3.2860984071459497e-06, 'broken-down': 1.6430492035729749e-06, "Amelia's": 2.4645738053594624e-06, 'livable': 1.6430492035729749e-06, "Carwood's": 1.6430492035729749e-06, 'graze': 1.6430492035729749e-06, 'red-tailed': 1.6430492035729749e-06, 'Kelseyville': 1.6430492035729749e-06, 'false-fronted': 1.6430492035729749e-06, 'sunbaked': 1.6430492035729749e-06, 'Baldness': 1.6430492035729749e-06, 'pate': 1.6430492035729749e-06, 'affectation': 1.6430492035729749e-06, 'belied': 3.2860984071459497e-06, 'gob': 1.6430492035729749e-06, 'spineless': 2.4645738053594624e-06, 'baldness': 1.6430492035729749e-06, 'tabloids': 1.6430492035729749e-06, 'dog-eared': 1.6430492035729749e-06, 'rearranging': 1.6430492035729749e-06, 'urinals': 1.6430492035729749e-06, 'flicked': 4.929147610718925e-06, 'fronted': 1.6430492035729749e-06, "ships'": 1.6430492035729749e-06, 'funnels': 1.6430492035729749e-06, 'winches': 1.6430492035729749e-06, "longshoremen's": 1.6430492035729749e-06, 'personage': 1.6430492035729749e-06, 'echoing': 2.4645738053594624e-06, 'footfalls': 1.6430492035729749e-06, "director's": 1.6430492035729749e-06, 'green-tinted': 1.6430492035729749e-06, 'white-topped': 2.4645738053594624e-06, 'vaudeville': 4.929147610718925e-06, 'tapdance': 1.6430492035729749e-06, 'Begging': 1.6430492035729749e-06, 'hankered': 1.6430492035729749e-06, 'wellbeing': 1.6430492035729749e-06, 'Tie': 1.6430492035729749e-06, 'Barton': 2.1359639646448672e-05, 'sneered': 1.6430492035729749e-06, 'guard-room': 1.6430492035729749e-06, 'Powers': 5.750672212505412e-06, 'pinochle': 1.6430492035729749e-06, 'half-reached': 1.6430492035729749e-06, "Rankin's": 1.6430492035729749e-06, 'wicket': 1.6430492035729749e-06, 'ghosted': 1.6430492035729749e-06, 'Dill': 9.85829522143785e-06, 'grove': 6.5721968142918994e-06, "Dill's": 3.2860984071459497e-06, 'shedding': 1.6430492035729749e-06, 'butternut': 1.6430492035729749e-06, 'ex-prison': 1.6430492035729749e-06, 'starve': 1.6430492035729749e-06, 'killers': 1.6430492035729749e-06, 'soothing': 3.2860984071459497e-06, 'auditor': 1.6430492035729749e-06, "syndicate's": 1.6430492035729749e-06, 'Kruger': 4.929147610718925e-06, 'tirelessly': 1.6430492035729749e-06, 'Haskell': 2.4645738053594624e-06, 'Mitch': 2.4645738053594624e-06, 'Easterners': 1.6430492035729749e-06, 'Grass': 1.6430492035729749e-06, 'haulage': 1.6430492035729749e-06, 'petered': 1.6430492035729749e-06, "Kruger's": 2.4645738053594624e-06, 'half-straightened': 1.6430492035729749e-06, 'Dealing': 2.4645738053594624e-06, 'faro': 4.107623008932437e-06, "Ayres'": 1.6430492035729749e-06, "Barton's": 3.2860984071459497e-06, 'rougher': 1.6430492035729749e-06, 'hostage': 1.6430492035729749e-06, 'Burlingame': 1.6430492035729749e-06, 'Bloomfield': 1.6430492035729749e-06, 'Hague': 8.215246017864873e-06, 'Ione': 1.6430492035729749e-06, 'dwarfed': 1.6430492035729749e-06, 'monitors': 2.4645738053594624e-06, 'seventy-five-foot': 1.6430492035729749e-06, 'tertiary': 1.6430492035729749e-06, "dollars'": 1.6430492035729749e-06, 'tornadoes': 1.6430492035729749e-06, 'deafened': 1.6430492035729749e-06, 'eardrums': 1.6430492035729749e-06, 'foothill': 1.6430492035729749e-06, 'mucker': 1.6430492035729749e-06, 'Kodyke': 6.5721968142918994e-06, 'lidless': 1.6430492035729749e-06, "lizard's": 1.6430492035729749e-06, 'machinelike': 1.6430492035729749e-06, 'hi-graders': 1.6430492035729749e-06, 'cleanups': 1.6430492035729749e-06, 'tintype': 1.6430492035729749e-06, 'Folsom': 1.6430492035729749e-06, 'Dangerous': 2.4645738053594624e-06, 'Melissa': 3.2860984071459497e-06, 'Sprite': 1.6430492035729749e-06, 'Culver': 2.4645738053594624e-06, 'partaking': 1.6430492035729749e-06, 'felony': 1.6430492035729749e-06, 'great-grandfather': 2.4645738053594624e-06, 'Munroe': 1.6430492035729749e-06, 'desecrated': 1.6430492035729749e-06, 'unnameable': 1.6430492035729749e-06, 'Atonement': 1.6430492035729749e-06, 'atonement': 1.6430492035729749e-06, 'renunciation': 1.6430492035729749e-06, 'chirped': 1.6430492035729749e-06, 'dewy-eyed': 1.6430492035729749e-06, 'caressed': 4.107623008932437e-06, 'Culvers': 1.6430492035729749e-06, 'reawaken': 1.6430492035729749e-06, 'unenunciated': 1.6430492035729749e-06, 'darkling': 1.6430492035729749e-06, 'omen': 2.4645738053594624e-06, 'steeper': 2.4645738053594624e-06, 'prowled': 1.6430492035729749e-06, 'unmotivated': 1.6430492035729749e-06, 'thrive': 1.6430492035729749e-06, 'beneficence': 1.6430492035729749e-06, 'tranquillity': 1.6430492035729749e-06, 'dimly-outlined': 1.6430492035729749e-06, 'scoffing': 1.6430492035729749e-06, 'Bushes': 1.6430492035729749e-06, 'detours': 1.6430492035729749e-06, 'unguided': 1.6430492035729749e-06, 'eclipsing': 1.6430492035729749e-06, 'drawbridge': 1.6430492035729749e-06, "Pamela's": 1.6430492035729749e-06, 'numbingly': 1.6430492035729749e-06, 'maliciously': 1.6430492035729749e-06, 'bruising': 2.4645738053594624e-06, 'spasms': 1.6430492035729749e-06, 'bled': 3.2860984071459497e-06, 'mouldering': 1.6430492035729749e-06, 'dreamt': 1.6430492035729749e-06, 'unwholesome': 1.6430492035729749e-06, 'blouse': 1.6430492035729749e-06, 'nipples': 1.6430492035729749e-06, 'incubus': 1.6430492035729749e-06, 'foreclosing': 1.6430492035729749e-06, 'snared': 1.6430492035729749e-06, 'writhed': 1.6430492035729749e-06, 'ever-tightening': 1.6430492035729749e-06, 'wisps': 1.6430492035729749e-06, 'Twigs': 1.6430492035729749e-06, 'Miraculously': 3.2860984071459497e-06, 'DeMontez': 1.6430492035729749e-06, 'a-tall': 1.6430492035729749e-06, 'sweetest': 2.4645738053594624e-06, 'Beaming': 1.6430492035729749e-06, 'idiotically': 1.6430492035729749e-06, 'pooched': 1.6430492035729749e-06, 'Shu-tt': 1.6430492035729749e-06, 'up-pp': 1.6430492035729749e-06, 'agreeably': 1.6430492035729749e-06, 'brainy': 1.6430492035729749e-06, "pleasin'": 1.6430492035729749e-06, "checkin'": 1.6430492035729749e-06, 'Looks': 1.6430492035729749e-06, 'expectantly': 2.4645738053594624e-06, "somethin'": 2.4645738053594624e-06, 'Print': 1.6430492035729749e-06, 'cipher': 1.6430492035729749e-06, 'Aah': 1.6430492035729749e-06, 'Lips': 1.6430492035729749e-06, 'pursed': 3.2860984071459497e-06, 'mournfully': 1.6430492035729749e-06, 'hunkered': 2.4645738053594624e-06, 'handmade': 1.6430492035729749e-06, 'absorber': 1.6430492035729749e-06, 'Permian': 1.6430492035729749e-06, 'six-dollar': 1.6430492035729749e-06, 'levis': 2.4645738053594624e-06, 'twenty-five-dollar': 1.6430492035729749e-06, 'ommission': 1.6430492035729749e-06, 'teensy': 1.6430492035729749e-06, 'yearningly': 1.6430492035729749e-06, 'limitless': 1.6430492035729749e-06, 'God-forsaken': 1.6430492035729749e-06, 'fine-chiseled': 1.6430492035729749e-06, 'handsomer': 2.4645738053594624e-06, 'gosh': 1.6430492035729749e-06, 'boot-wearer': 1.6430492035729749e-06, 'half-mincing': 1.6430492035729749e-06, 'yokels': 1.6430492035729749e-06, 'clowning': 1.6430492035729749e-06, "walkin'": 1.6430492035729749e-06, "seein'": 1.6430492035729749e-06, 'howsomever': 1.6430492035729749e-06, 'figger': 2.4645738053594624e-06, "probl'y": 1.6430492035729749e-06, 'sixty-five-mile': 1.6430492035729749e-06, "c'n": 1.6430492035729749e-06, 'danged': 1.6430492035729749e-06, 'rattler': 1.6430492035729749e-06, 'Looky': 1.6430492035729749e-06, 'derrick': 3.2860984071459497e-06, 'wildcatter': 1.6430492035729749e-06, 'anyways': 1.6430492035729749e-06, 'baited': 1.6430492035729749e-06, 'Vs.': 1.6430492035729749e-06, 'Lakewood': 1.6430492035729749e-06, "snail's": 1.6430492035729749e-06, 'left-front': 1.6430492035729749e-06, 'mudguard': 1.6430492035729749e-06, 'tunelessly': 1.6430492035729749e-06, 'fine-drawn': 1.6430492035729749e-06, 'coiling': 1.6430492035729749e-06, 'McBride': 9.85829522143785e-06, 'accosting': 1.6430492035729749e-06, "t'": 1.6430492035729749e-06, 'see-lective': 1.6430492035729749e-06, "y'know": 2.4645738053594624e-06, 'Figger': 1.6430492035729749e-06, 'reddened': 1.6430492035729749e-06, 'swindled': 1.6430492035729749e-06, 'uh-huh': 1.6430492035729749e-06, "An'": 1.6430492035729749e-06, "workin'": 1.6430492035729749e-06, 'Mis-ter': 2.4645738053594624e-06, 'well-nigh': 1.6430492035729749e-06, 'Oil-field': 1.6430492035729749e-06, 'rough-tough': 1.6430492035729749e-06, 'knuckled': 1.6430492035729749e-06, 'huh-uh': 1.6430492035729749e-06, "deputy's": 2.4645738053594624e-06, 'storefront': 1.6430492035729749e-06, 'uppercut': 1.6430492035729749e-06, 'numbing': 2.4645738053594624e-06, 'gut-flattening': 1.6430492035729749e-06, 'willful': 1.6430492035729749e-06, 'unpunished': 1.6430492035729749e-06, 'scot-free': 1.6430492035729749e-06, 'Fear-maddened': 1.6430492035729749e-06, 'Dimly': 2.4645738053594624e-06, 'hoots': 1.6430492035729749e-06, 'leaden': 2.4645738053594624e-06, 'flailing': 3.2860984071459497e-06, 'law-unto-itself': 1.6430492035729749e-06, 'Donna': 4.107623008932437e-06, 'Brannon': 2.464573805359462e-05, 'Slash-B': 2.4645738053594624e-06, 'Hondo': 1.6430492035729749e-06, 'bedground': 1.6430492035729749e-06, 'Amado': 1.6430492035729749e-06, 'offsaddled': 1.6430492035729749e-06, 'remuda': 1.6430492035729749e-06, "coosie's": 1.6430492035729749e-06, 'brown-paper': 1.6430492035729749e-06, 'listless': 1.6430492035729749e-06, 'Mateo': 1.6430492035729749e-06, 'readying': 1.6430492035729749e-06, 'sourdough': 2.4645738053594624e-06, 'Maguire': 4.929147610718925e-06, "Brannon's": 1.6430492035729749e-06, 'cookfire': 1.6430492035729749e-06, 'Conchita': 4.929147610718925e-06, 'Elena': 3.2860984071459497e-06, 'nagged': 1.6430492035729749e-06, 'Maguires': 1.6430492035729749e-06, 'Tomas': 4.107623008932437e-06, 'vaquero': 1.6430492035729749e-06, 'Hernandez': 5.750672212505412e-06, "grownups'": 1.6430492035729749e-06, 'rider-fashion': 1.6430492035729749e-06, 'Senora': 1.6430492035729749e-06, 'senora': 1.6430492035729749e-06, 'glum': 1.6430492035729749e-06, 'fifteen-mile': 1.6430492035729749e-06, 'Rockfork': 3.2860984071459497e-06, 'slickers': 1.6430492035729749e-06, 'ducking': 1.6430492035729749e-06, 'cantles': 1.6430492035729749e-06, 'gunplay': 1.6430492035729749e-06, "Luis's": 1.6430492035729749e-06, 'Ramirez': 2.4645738053594624e-06, 'puncher': 3.2860984071459497e-06, 'hell-raising': 1.6430492035729749e-06, 'Lighted': 1.6430492035729749e-06, 'jewel-bright': 1.6430492035729749e-06, "marshal's": 2.4645738053594624e-06, 'box-sized': 1.6430492035729749e-06, 'Jesse': 3.2860984071459497e-06, 'Macklin': 7.393721416078387e-06, 'corduroy': 1.6430492035729749e-06, 'sluicing': 1.6430492035729749e-06, "lawman's": 1.6430492035729749e-06, "Hogan's": 1.6430492035729749e-06, "Macklin's": 1.6430492035729749e-06, 'badge-toter': 1.6430492035729749e-06, 'lockup': 2.4645738053594624e-06, 'beaded': 1.6430492035729749e-06, 'Resignedly': 1.6430492035729749e-06, 'oversized': 1.6430492035729749e-06, 'padlocked': 1.6430492035729749e-06, 'Harper': 2.4645738053594624e-06, 'scarecrowish': 1.6430492035729749e-06, 'dismounting': 1.6430492035729749e-06, 'garbed': 1.6430492035729749e-06, 'tough-looking': 1.6430492035729749e-06, 'tracked': 3.2860984071459497e-06, 'oaken': 1.6430492035729749e-06, 'Ansley': 1.6430492035729749e-06, 'all-knowing': 1.6430492035729749e-06, 'settler': 3.2860984071459497e-06, 'puff': 1.6430492035729749e-06, "shootin'": 1.6430492035729749e-06, 'far-off': 1.6430492035729749e-06, "bushwhackin'": 1.6430492035729749e-06, 'ghostlike': 1.6430492035729749e-06, "Lewis'": 1.6430492035729749e-06, "Stockgrowers'": 1.6430492035729749e-06, 'Natrona': 1.6430492035729749e-06, "scout's": 1.6430492035729749e-06, 'Cheyenne': 2.4645738053594624e-06, 'ten-day': 1.6430492035729749e-06, "'fore": 1.6430492035729749e-06, 'Publicly': 1.6430492035729749e-06, 'blood-chilling': 1.6430492035729749e-06, 'beef-hungry': 1.6430492035729749e-06, 'raided': 1.6430492035729749e-06, 'soddies': 1.6430492035729749e-06, 'homesteaders': 3.2860984071459497e-06, 'foreclosed': 1.6430492035729749e-06, 'hisself': 1.6430492035729749e-06, 'Haying': 1.6430492035729749e-06, 'Harnessing': 1.6430492035729749e-06, 'buckboard': 2.4645738053594624e-06, 'willow-lined': 1.6430492035729749e-06, 'lawmen': 2.4645738053594624e-06, "rifleman's": 1.6430492035729749e-06, 'insinuations': 2.4645738053594624e-06, "Exterminatin'": 1.6430492035729749e-06, 'bushwhacked': 1.6430492035729749e-06, 'rustlers': 1.6430492035729749e-06, 'straight-out': 1.6430492035729749e-06, 'shoot-down': 2.4645738053594624e-06, 'rodeo': 1.6430492035729749e-06, "s'posin'": 1.6430492035729749e-06, 'scairt': 1.6430492035729749e-06, "dry-gulchin'": 1.6430492035729749e-06, "sportin'": 2.4645738053594624e-06, "Sportin'": 2.4645738053594624e-06, 'sunburnt': 1.6430492035729749e-06, 'rustler-hunter': 1.6430492035729749e-06, 'Apache': 1.6430492035729749e-06, 'spread-eagled': 1.6430492035729749e-06, 'skulls': 2.4645738053594624e-06, "wrappin'": 1.6430492035729749e-06, "lettin'": 1.6430492035729749e-06, "killin'": 1.6430492035729749e-06, "Powell's": 2.4645738053594624e-06, 'Keane': 2.4645738053594624e-06, 'half-heartedly': 1.6430492035729749e-06, 'fallow': 1.6430492035729749e-06, 'explosively': 1.6430492035729749e-06, "coroner's": 4.107623008932437e-06, "reputation's": 1.6430492035729749e-06, 'Coble': 1.6430492035729749e-06, 'Bosler': 1.6430492035729749e-06, 'roundups': 1.6430492035729749e-06, 'rodeos': 1.6430492035729749e-06, 'waging': 1.6430492035729749e-06, 'lawless': 1.6430492035729749e-06, 'guitar-strumming': 1.6430492035729749e-06, 'minstrels': 1.6430492035729749e-06, 'Curt': 2.6288787257167598e-05, 'livery': 4.107623008932437e-06, 'Brenner': 9.036770619651361e-06, 'reentered': 1.6430492035729749e-06, 'Summers': 6.5721968142918994e-06, "Brenner's": 3.2860984071459497e-06, 'Vastly': 1.6430492035729749e-06, 'inkling': 1.6430492035729749e-06, "Eagle's": 1.6430492035729749e-06, 'Nest': 1.6430492035729749e-06, 'haystack': 1.6430492035729749e-06, "Adams's": 1.6430492035729749e-06, "Curt's": 7.393721416078387e-06, "Jess's": 1.232286902679731e-05, 'buckskin': 6.5721968142918994e-06, 'Jess': 2.793183646074057e-05, 'unfastened': 1.6430492035729749e-06, 'crunch': 1.6430492035729749e-06, 'sway-backed': 1.6430492035729749e-06, 'dun': 1.6430492035729749e-06, "Crouch's": 1.6430492035729749e-06, 'snuffed': 1.6430492035729749e-06, 'Stacey': 2.4645738053594624e-06, 'squeal': 1.6430492035729749e-06, 'snort': 3.2860984071459497e-06, 'Gruller': 1.6430492035729749e-06, 'trigger-happy': 2.4645738053594624e-06, 'Arbuckle': 4.929147610718925e-06, "nothin'": 4.107623008932437e-06, 'two-by-four': 1.6430492035729749e-06, "Arbuckle's": 1.6430492035729749e-06, 'Crouch': 3.2860984071459497e-06, 'gunbarrel': 1.6430492035729749e-06, 'Pistol-whipping': 1.6430492035729749e-06, 'Sweat': 3.2860984071459497e-06, 'claw': 1.6430492035729749e-06, "drawin'": 1.6430492035729749e-06, 'outdrew': 1.6430492035729749e-06, 'gunslinger': 1.6430492035729749e-06, 'sneaks': 1.6430492035729749e-06, 'mid-section': 1.6430492035729749e-06, 'Pain': 1.6430492035729749e-06, 'pitchfork': 2.4645738053594624e-06, 'tines': 2.4645738053594624e-06, 'crowbait': 1.6430492035729749e-06, 'shirtfront': 1.6430492035729749e-06, "buckskin's": 1.6430492035729749e-06, 'halter': 1.6430492035729749e-06, "Where're": 1.6430492035729749e-06, "takin'": 2.4645738053594624e-06, 'worriedly': 1.6430492035729749e-06, "Woods's": 1.6430492035729749e-06, "Burnsides'": 1.6430492035729749e-06, 'caked': 2.4645738053594624e-06, 'bravest': 1.6430492035729749e-06, 'Hap': 1.6430492035729749e-06, 'Eben': 1.6430492035729749e-06, 'summing': 1.6430492035729749e-06, "Sally's": 2.4645738053594624e-06, 'haggle': 1.6430492035729749e-06, "two-bits'": 1.6430492035729749e-06, 'Burnsides': 4.929147610718925e-06, 'Nate': 4.929147610718925e-06, "duds'd": 1.6430492035729749e-06, 'heal': 2.4645738053594624e-06, 'purposefully': 1.6430492035729749e-06, 'beaver': 2.4645738053594624e-06, "Nate's": 2.4645738053594624e-06, 'bullet-riddled': 1.6430492035729749e-06, 'purpling': 1.6430492035729749e-06, "you's": 1.6430492035729749e-06, 'choring': 1.6430492035729749e-06, 'Slipping': 1.6430492035729749e-06, 'Matilda': 5.750672212505412e-06, 'trail-worn': 1.6430492035729749e-06, 'Emigrant': 2.4645738053594624e-06, 'sags': 1.6430492035729749e-06, 'careworn': 1.6430492035729749e-06, 'Hez': 6.5721968142918994e-06, 'Jacksons': 2.4645738053594624e-06, 'Harrows': 1.6430492035729749e-06, "Dan's": 3.2860984071459497e-06, 'Gran': 8.215246017864873e-06, 'simples': 1.6430492035729749e-06, 'dished': 1.6430492035729749e-06, 'victuals': 1.6430492035729749e-06, 'gab': 1.6430492035729749e-06, 'nosebag': 1.6430492035729749e-06, 'Hoe-Down': 1.6430492035729749e-06, 'Reels': 1.6430492035729749e-06, 'fiddle': 2.4645738053594624e-06, 'Harrow': 2.4645738053594624e-06, 'exuberantly': 2.4645738053594624e-06, 'Hallelujah': 1.6430492035729749e-06, 'Golly': 1.6430492035729749e-06, 'Rod': 1.1501344425010824e-05, 'Methodists': 1.6430492035729749e-06, 'coltish': 1.6430492035729749e-06, 'Dare-Base': 1.6430492035729749e-06, 'Farmer-in-the-Dell': 1.6430492035729749e-06, 'handhold': 1.6430492035729749e-06, 'wrestles': 1.6430492035729749e-06, 'flexed': 2.4645738053594624e-06, "'cept": 1.6430492035729749e-06, 'outgrip': 1.6430492035729749e-06, 'skipping': 3.2860984071459497e-06, 'Farmer': 2.4645738053594624e-06, 'dell': 3.2860984071459497e-06, 'Heigh-ho': 1.6430492035729749e-06, 'dairy-oh': 1.6430492035729749e-06, "Harmony's": 1.6430492035729749e-06, 'brightened': 2.4645738053594624e-06, 'unshed': 1.6430492035729749e-06, 'unselfishly': 1.6430492035729749e-06, 'Conestoga': 2.4645738053594624e-06, 'siphoned': 1.6430492035729749e-06, 'dreamless': 1.6430492035729749e-06, "souls'": 1.6430492035729749e-06, 'a-gracious': 1.6430492035729749e-06, 'Shucks': 1.6430492035729749e-06, 'unison': 3.2860984071459497e-06, 'nearsightedly': 1.6430492035729749e-06, "rubbin'": 1.6430492035729749e-06, 'thar': 2.4645738053594624e-06, 'ticklebrush': 1.6430492035729749e-06, "ye're": 2.4645738053594624e-06, 'a-raising': 1.6430492035729749e-06, 'Quit': 2.4645738053594624e-06, 'ragging': 2.4645738053594624e-06, 'week-old': 1.6430492035729749e-06, 'honest-to-Betsy': 1.6430492035729749e-06, 'Rheumatics': 1.6430492035729749e-06, 'notched-stick': 1.6430492035729749e-06, 'tailgate': 2.4645738053594624e-06, "leg's": 1.6430492035729749e-06, "sun'll": 1.6430492035729749e-06, 'fry': 1.6430492035729749e-06, 'onct': 2.4645738053594624e-06, "Clemens'": 2.4645738053594624e-06, 'signboard': 1.6430492035729749e-06, 'Raft': 1.6430492035729749e-06, 'turnoff': 1.6430492035729749e-06, 'John-Henry': 1.6430492035729749e-06, "Rod's": 1.6430492035729749e-06, 'ma': 2.4645738053594624e-06, "'tain't": 1.6430492035729749e-06, "more'n": 1.6430492035729749e-06, 'unhook': 1.6430492035729749e-06, 'precipice-walled': 1.6430492035729749e-06, 'gorge': 1.6430492035729749e-06, "oxen's": 1.6430492035729749e-06, 'busier': 1.6430492035729749e-06, 'broncs': 1.6430492035729749e-06, "Gyp'll": 1.6430492035729749e-06, "holdin'": 1.6430492035729749e-06, 'Ganado': 1.6430492035729749e-06, 'dives': 3.2860984071459497e-06, 'Carmer': 9.036770619651361e-06, "Cobb's": 1.6430492035729749e-06, 'Separating': 1.6430492035729749e-06, 'Gyp': 5.750672212505412e-06, 'Miners': 1.6430492035729749e-06, 'plummeting': 1.6430492035729749e-06, 'stilts': 1.6430492035729749e-06, 'ornate': 1.6430492035729749e-06, "bird's": 1.6430492035729749e-06, 'canyonside': 1.6430492035729749e-06, 'Heading': 1.6430492035729749e-06, 'batwings': 1.6430492035729749e-06, 'perfunctorily': 1.6430492035729749e-06, 'dodged': 2.4645738053594624e-06, 'Nerves': 2.4645738053594624e-06, 'bowstring': 1.6430492035729749e-06, 'tipsy': 2.4645738053594624e-06, 'Fierce': 1.6430492035729749e-06, 'Muffling': 1.6430492035729749e-06, 'Hitching': 1.6430492035729749e-06, 'Climbing': 1.6430492035729749e-06, 'Forced': 2.4645738053594624e-06, 'revelry': 1.6430492035729749e-06, 'somnolent': 2.4645738053594624e-06, 'sleek-headed': 1.6430492035729749e-06, 'barkeep': 1.6430492035729749e-06, 'Halting': 1.6430492035729749e-06, 'wide-shouldered': 1.6430492035729749e-06, 'alertly': 1.6430492035729749e-06, 'ell': 1.6430492035729749e-06, 'half-filled': 2.4645738053594624e-06, 'upraised': 1.6430492035729749e-06, 'half-drunk': 2.4645738053594624e-06, 'jab': 1.6430492035729749e-06, 'reeling': 1.6430492035729749e-06, 'groan': 1.6430492035729749e-06, 'Kneeling': 1.6430492035729749e-06, 'Complying': 1.6430492035729749e-06, "Carmer's": 3.2860984071459497e-06, 'half-a-dozen': 1.6430492035729749e-06, 'sweatband': 1.6430492035729749e-06, 'wads': 1.6430492035729749e-06, 'cache': 1.6430492035729749e-06, 'golly': 1.6430492035729749e-06, "Colcord's": 2.4645738053594624e-06, 'cowpuncher': 1.6430492035729749e-06, 'Crip': 2.4645738053594624e-06, 'Penny': 1.8073541239302723e-05, 'Handing': 1.6430492035729749e-06, 'pants-legs': 1.6430492035729749e-06, 'disdainful': 2.4645738053594624e-06, 'Glowering': 1.6430492035729749e-06, 'Colcord': 1.6430492035729749e-06, 'puckered': 2.4645738053594624e-06, 'tartly': 1.6430492035729749e-06, "Penny's": 3.2860984071459497e-06, 'bronc': 3.2860984071459497e-06, 'Antler': 3.2860984071459497e-06, 'dismayed': 1.6430492035729749e-06, 'mused': 4.107623008932437e-06, "Stober's": 1.6430492035729749e-06, 'Ax': 1.6430492035729749e-06, 'Nearing': 1.6430492035729749e-06, 'Hauling': 1.6430492035729749e-06, 'twinkling': 2.4645738053594624e-06, 'Clapping': 1.6430492035729749e-06, 'canter': 1.6430492035729749e-06, 'brushy': 2.4645738053594624e-06, 'clap': 1.6430492035729749e-06, 'Setting': 1.6430492035729749e-06, 'besieging': 1.6430492035729749e-06, 'Cursing': 1.6430492035729749e-06, 'unmolested': 1.6430492035729749e-06, 'Dismounting': 1.6430492035729749e-06, 'remounting': 1.6430492035729749e-06, 'Swinging': 1.6430492035729749e-06, 'stirrup-guard': 1.6430492035729749e-06, 'shirtsleeve': 1.6430492035729749e-06, 'Jumping': 1.6430492035729749e-06, 'Sweeping': 1.6430492035729749e-06, 'Recklessly': 1.6430492035729749e-06, 'Sweeney': 4.107623008932437e-06, 'Squadron': 1.6430492035729749e-06, 'Cricket': 1.6430492035729749e-06, 'Mindanao': 1.6430492035729749e-06, 'Cagayan': 1.6430492035729749e-06, 'Fleischman': 2.4645738053594624e-06, 'kamikaze': 1.6430492035729749e-06, 'Greg': 2.218116424823516e-05, 'Todman': 9.036770619651361e-06, 'Ormoc': 2.4645738053594624e-06, 'five-hundred': 1.6430492035729749e-06, 'Belton': 2.4645738053594624e-06, 'Banjo': 1.6430492035729749e-06, 'revetments': 1.6430492035729749e-06, 'Donovan': 6.5721968142918994e-06, "Greg's": 9.036770619651361e-06, 'check-out': 1.6430492035729749e-06, 'straps': 2.4645738053594624e-06, 'Seton': 1.6430492035729749e-06, 'carabao': 1.6430492035729749e-06, 'trade-mark': 1.6430492035729749e-06, 'prearranged': 1.6430492035729749e-06, 'taxied': 1.6430492035729749e-06, 'chocks': 1.6430492035729749e-06, 'rumbled': 2.4645738053594624e-06, 'Tacloban': 2.4645738053594624e-06, 'Samar': 1.6430492035729749e-06, 'A-26': 1.6430492035729749e-06, 'punched': 1.6430492035729749e-06, 'hundred-and-eighty-degree': 1.6430492035729749e-06, 'claustrophobia': 1.6430492035729749e-06, 'cliffs': 2.4645738053594624e-06, 'Visibility': 1.6430492035729749e-06, 'earphones': 1.6430492035729749e-06, 'glide-bombed': 1.6430492035729749e-06, 'Mercifully': 1.6430492035729749e-06, "Todman's": 1.6430492035729749e-06, 'Sweeneys': 3.2860984071459497e-06, 'bogies': 1.6430492035729749e-06, 'Zeros': 1.6430492035729749e-06, 'Identification': 1.6430492035729749e-06, 'Zero': 1.6430492035729749e-06, 'tactically': 1.6430492035729749e-06, 'maneuverability': 1.6430492035729749e-06, 'firepower': 1.6430492035729749e-06, 'deviating': 1.6430492035729749e-06, 'Japs': 4.107623008932437e-06, 'airspeed': 1.6430492035729749e-06, 'Suns': 1.6430492035729749e-06, 'pinpoints': 1.6430492035729749e-06, 'break-away': 1.6430492035729749e-06, 'tight-turn': 1.6430492035729749e-06, 'RPM': 1.6430492035729749e-06, 'wingman': 1.6430492035729749e-06, 'closure': 1.6430492035729749e-06, 'half-gainer': 1.6430492035729749e-06, 'Blind': 1.6430492035729749e-06, "Jap's": 1.6430492035729749e-06, 'cowling': 1.6430492035729749e-06, 'Wingman': 1.6430492035729749e-06, 'rudder': 1.6430492035729749e-06, 'vertigo': 1.6430492035729749e-06, 'fenders': 1.6430492035729749e-06, 'giggles': 4.107623008932437e-06, 'smashed-out': 1.6430492035729749e-06, 'mustering': 1.6430492035729749e-06, 'chuffing': 1.6430492035729749e-06, 'Gracias': 2.4645738053594624e-06, 'scarcely-tapped': 1.6430492035729749e-06, 'gauche': 1.6430492035729749e-06, 'rainbow': 2.4645738053594624e-06, 'ovals': 2.4645738053594624e-06, 'Autos': 1.6430492035729749e-06, 'White-shirted': 1.6430492035729749e-06, 'conservatively-cravated': 1.6430492035729749e-06, 'supplicating': 2.4645738053594624e-06, 'tootley-toot-tootled': 1.6430492035729749e-06, 'thumbing': 1.6430492035729749e-06, 'Herry': 3.2860984071459497e-06, 'Mor-ee-air-teeeee': 1.6430492035729749e-06, 'counterpointing': 1.6430492035729749e-06, 'rapidly-diminishing': 1.6430492035729749e-06, "Herry's": 1.6430492035729749e-06, 'brushcut': 1.6430492035729749e-06, 'enviably': 1.6430492035729749e-06, 'delicately-textured': 1.6430492035729749e-06, 'tinted': 1.6430492035729749e-06, 'sagebrush': 1.6430492035729749e-06, 'yucca': 1.6430492035729749e-06, 'foregone': 1.6430492035729749e-06, 'sweltering': 1.6430492035729749e-06, 'listlessly': 1.6430492035729749e-06, 'thumbed': 1.6430492035729749e-06, 'duffel': 3.2860984071459497e-06, 'Sahjunt': 1.6430492035729749e-06, 'Yoorick': 1.6430492035729749e-06, 'Roebuck': 8.215246017864873e-06, 'gunner': 1.6430492035729749e-06, 'Squeezing': 1.6430492035729749e-06, 'darkhaired': 1.6430492035729749e-06, 'drahve': 1.6430492035729749e-06, 'Onleh': 1.6430492035729749e-06, 'thiihng': 1.6430492035729749e-06, 'Ahm': 1.6430492035729749e-06, 'nawth': 1.6430492035729749e-06, "t'jawn": 1.6430492035729749e-06, 'mah': 2.4645738053594624e-06, 'husbun': 1.6430492035729749e-06, 'Sante': 4.929147610718925e-06, "y'all": 1.6430492035729749e-06, 'maht': 1.6430492035729749e-06, 'prefuh': 1.6430492035729749e-06, 'suhthuhn': 1.6430492035729749e-06, 'rewt': 1.6430492035729749e-06, 'Corporal': 2.4645738053594624e-06, 'alreadeh': 1.6430492035729749e-06, 'didn': 2.4645738053594624e-06, 'diffrunce': 1.6430492035729749e-06, "t'hi-im": 1.6430492035729749e-06, 'wonduh': 1.6430492035729749e-06, 'wahtahm': 1.6430492035729749e-06, 'ee-faket': 1.6430492035729749e-06, 'kittenish': 1.6430492035729749e-06, 'ejaculated': 2.4645738053594624e-06, 'Howsabout': 1.6430492035729749e-06, 'Co-cola': 1.6430492035729749e-06, "Ma'am": 3.2860984071459497e-06, 'smilingly': 2.4645738053594624e-06, 'onleh': 2.4645738053594624e-06, 'younguh': 1.6430492035729749e-06, 'bawhs': 1.6430492035729749e-06, 'bawh': 2.4645738053594624e-06, "t'lah": 1.6430492035729749e-06, 'lahk': 1.6430492035729749e-06, 'thet': 2.4645738053594624e-06, 'befoh': 1.6430492035729749e-06, 'foh': 1.6430492035729749e-06, 'academeh': 1.6430492035729749e-06, 'wuh': 1.6430492035729749e-06, 'hevin': 3.2860984071459497e-06, 'dack-rihs': 1.6430492035729749e-06, 'vuhranduh': 1.6430492035729749e-06, 'Huhmun': 2.4645738053594624e-06, 'hev': 1.6430492035729749e-06, "p'lite": 1.6430492035729749e-06, 'cohnfidunt': 1.6430492035729749e-06, 'coahse': 1.6430492035729749e-06, "cain't": 1.6430492035729749e-06, 'Whah': 1.6430492035729749e-06, 'nawt': 1.6430492035729749e-06, 'coudn': 1.6430492035729749e-06, 'ansuh': 1.6430492035729749e-06, 'Aw': 3.2860984071459497e-06, 'gay-ess': 1.6430492035729749e-06, 'fathuh': 1.6430492035729749e-06, 'uttuh': 1.6430492035729749e-06, 'wohd': 1.6430492035729749e-06, 'aftuh': 1.6430492035729749e-06, 'majuh': 1.6430492035729749e-06, "t'gethuh": 1.6430492035729749e-06, "f'ovuh": 1.6430492035729749e-06, 'behahn': 1.6430492035729749e-06, 'doan': 1.6430492035729749e-06, "thet's": 1.6430492035729749e-06, 'nahce': 1.6430492035729749e-06, "d'you": 1.6430492035729749e-06, 'Taos': 1.6430492035729749e-06, 'eventshahleh': 1.6430492035729749e-06, 'eventshah-leh': 1.6430492035729749e-06, 'crannies': 2.4645738053594624e-06, 're-echo': 1.6430492035729749e-06, 'Senor': 2.4645738053594624e-06, "Moriarty's": 1.6430492035729749e-06, 'dust-swirling': 1.6430492035729749e-06, 'shards': 1.6430492035729749e-06, 'unwired': 1.6430492035729749e-06, 'loosely-taped': 1.6430492035729749e-06, 'wadded': 2.4645738053594624e-06, 'side-rack': 1.6430492035729749e-06, 'western-style': 1.6430492035729749e-06, 'flying-mount': 1.6430492035729749e-06, 'slivery': 1.6430492035729749e-06, "truck's": 1.6430492035729749e-06, "cab's": 2.4645738053594624e-06, 'glassless': 1.6430492035729749e-06, 'pearly': 1.6430492035729749e-06, 'Wanna': 2.4645738053594624e-06, 'anteater': 1.6430492035729749e-06, 'Bueno': 1.6430492035729749e-06, 'amigo': 2.4645738053594624e-06, 'hollered': 2.4645738053594624e-06, 'gesticulating': 1.6430492035729749e-06, 'sideboards': 1.6430492035729749e-06, 'hovering': 1.6430492035729749e-06, 'whitening': 1.6430492035729749e-06, 'Tee-wah': 2.4645738053594624e-06, 'geysering': 1.6430492035729749e-06, 'luckily': 1.6430492035729749e-06, 'Emptied': 1.6430492035729749e-06, 'Teeth': 1.6430492035729749e-06, 'bobbed': 2.4645738053594624e-06, 'hyphenated': 2.4645738053594624e-06, 'jabs': 1.6430492035729749e-06, 'harmlessly': 1.6430492035729749e-06, 'unoccupied': 2.4645738053594624e-06, 'amber': 3.2860984071459497e-06, 'Aye-yah-ah-ah': 1.6430492035729749e-06, 'splintery': 1.6430492035729749e-06, 'clod': 1.6430492035729749e-06, 'soft-looking': 1.6430492035729749e-06, 'pebble': 1.6430492035729749e-06, 'unwire': 1.6430492035729749e-06, 'loosened': 4.107623008932437e-06, 'cotter': 1.6430492035729749e-06, 'screech': 1.6430492035729749e-06, 'S-s-sahjunt': 1.6430492035729749e-06, 'self-proclaimed': 1.6430492035729749e-06, 'teetotaler': 2.4645738053594624e-06, 'froth': 1.6430492035729749e-06, 'shrieking': 1.6430492035729749e-06, 'disturbingly': 1.6430492035729749e-06, 'Relax': 1.6430492035729749e-06, 'wobbling': 1.6430492035729749e-06, 'muffler': 2.4645738053594624e-06, 'yelped': 1.6430492035729749e-06, 'Zing': 2.4645738053594624e-06, 'seventeen-inch': 1.6430492035729749e-06, 'swimsuit': 1.6430492035729749e-06, 'zing': 5.750672212505412e-06, 'peddled': 1.6430492035729749e-06, 'SX-21': 3.2860984071459497e-06, 'Veterinary': 1.6430492035729749e-06, 'repositories': 1.6430492035729749e-06, 'caller': 2.4645738053594624e-06, "Thor's": 4.107623008932437e-06, 'soapsuds': 1.6430492035729749e-06, 'cavorted': 1.6430492035729749e-06, 'longshot': 1.6430492035729749e-06, 'stills': 2.4645738053594624e-06, 'cabana': 3.2860984071459497e-06, 'Bryn': 2.4645738053594624e-06, 'Mawr': 2.4645738053594624e-06, 'shrubbery': 1.6430492035729749e-06, 'upcoming': 1.6430492035729749e-06, 'Underwater': 2.4645738053594624e-06, 'Eye': 3.2860984071459497e-06, 'documentary-type': 1.6430492035729749e-06, 'Oatnut': 2.4645738053594624e-06, 'Grits': 2.4645738053594624e-06, 'salacious': 2.4645738053594624e-06, "sponsor's": 1.6430492035729749e-06, 'dandily': 1.6430492035729749e-06, 'worth-waiting-for': 1.6430492035729749e-06, 'Itch': 1.6430492035729749e-06, 'Mmmm': 1.6430492035729749e-06, 'itches': 1.6430492035729749e-06, 'doggone': 1.6430492035729749e-06, 'Softly': 1.6430492035729749e-06, 'Warmly': 1.6430492035729749e-06, 'hot-honey': 1.6430492035729749e-06, 'swarms': 1.6430492035729749e-06, 'Lights': 1.6430492035729749e-06, 'shrubbery-lined': 1.6430492035729749e-06, 'plain-clothesmen': 2.4645738053594624e-06, 'limp-looking': 1.6430492035729749e-06, 'dichondra': 1.6430492035729749e-06, 'Rawlins': 3.2860984071459497e-06, "How'd": 2.4645738053594624e-06, 'filming': 1.6430492035729749e-06, 'PM': 2.4645738053594624e-06, 'gunk': 1.6430492035729749e-06, 'once-over-lightly': 1.6430492035729749e-06, 'Accident': 1.6430492035729749e-06, 'pool-equipment': 1.6430492035729749e-06, 'stymied': 1.6430492035729749e-06, "Orleans'": 4.107623008932437e-06, 'everlastingly': 1.6430492035729749e-06, 'Mardi': 2.4645738053594624e-06, 'Gras': 2.4645738053594624e-06, 'adventuring': 1.6430492035729749e-06, 'sexy': 2.4645738053594624e-06, 'bodied': 1.6430492035729749e-06, 'suffuse': 1.6430492035729749e-06, 'circumspectly': 1.6430492035729749e-06, 'surreptitious': 1.6430492035729749e-06, 'unuttered': 2.4645738053594624e-06, 'appreciates': 1.6430492035729749e-06, 'fixations': 1.6430492035729749e-06, 'indisposition': 1.6430492035729749e-06, 'give-away': 1.6430492035729749e-06, 'cavernous': 1.6430492035729749e-06, 'outspread': 2.4645738053594624e-06, 'humid': 1.6430492035729749e-06, 'opportune': 1.6430492035729749e-06, 'horsehair': 1.6430492035729749e-06, 'napped': 1.6430492035729749e-06, 'encircled': 2.4645738053594624e-06, 'bear-like': 1.6430492035729749e-06, 'suspecting': 1.6430492035729749e-06, 'incredulously': 1.6430492035729749e-06, 'corkers': 1.6430492035729749e-06, 'Ponchartrain': 1.6430492035729749e-06, 'appraisingly': 1.6430492035729749e-06, 'jalopy': 1.6430492035729749e-06, 'smacked': 2.4645738053594624e-06, 'two-timing': 1.6430492035729749e-06, 'Dactyls': 1.6430492035729749e-06, "Rhea's": 1.6430492035729749e-06, "Wilder's": 1.6430492035729749e-06, 'Nicolas': 1.3965918230370285e-05, 'Squaresville': 1.6430492035729749e-06, 'palazzos': 1.6430492035729749e-06, 'Palasts': 1.6430492035729749e-06, 'Manas': 4.107623008932437e-06, 'Wilder': 1.6430492035729749e-06, 'dactyls': 1.6430492035729749e-06, 'tanned': 5.750672212505412e-06, 'Holderlin': 1.6430492035729749e-06, "Meredith's": 2.4645738053594624e-06, 'Sie': 1.6430492035729749e-06, 'lacheln': 1.6430492035729749e-06, 'Schwarzen': 1.6430492035729749e-06, 'Hexen': 1.6430492035729749e-06, "Walter's": 2.4645738053594624e-06, 'beers': 1.6430492035729749e-06, 'meek': 1.6430492035729749e-06, 'conjugation': 1.6430492035729749e-06, 'gimme': 1.6430492035729749e-06, "Munich's": 1.6430492035729749e-06, 'dew': 3.2860984071459497e-06, 'Lerner': 1.6430492035729749e-06, 'fawn': 1.6430492035729749e-06, "Nicolas's": 1.6430492035729749e-06, "Harry's": 1.6430492035729749e-06, 'foundling': 1.6430492035729749e-06, 'Express': 3.2860984071459497e-06, 'tedium': 1.6430492035729749e-06, 'Chrissake': 1.6430492035729749e-06, 'tickled': 2.4645738053594624e-06, 'sneezed': 2.4645738053594624e-06, 'expertly': 2.4645738053594624e-06, "Grafin's": 1.6430492035729749e-06, 'Grafin': 4.929147610718925e-06, 'erotically': 1.6430492035729749e-06, 'waitress': 2.4645738053594624e-06, 'glamorize': 1.6430492035729749e-06, "Jane's": 1.6430492035729749e-06, 'badinage': 1.6430492035729749e-06, 'acknowledgement': 2.4645738053594624e-06, 'cashmere': 2.4645738053594624e-06, 'brassiere': 2.4645738053594624e-06, 'glisten': 4.107623008932437e-06, 'coolnesses': 1.6430492035729749e-06, 'veal': 1.6430492035729749e-06, 'cutlets': 1.6430492035729749e-06, 'compote': 1.6430492035729749e-06, 'triplet': 1.6430492035729749e-06, 'calfskin': 1.6430492035729749e-06, 'Opening': 1.6430492035729749e-06, 'schnapps': 1.6430492035729749e-06, 'thimble-sized': 1.6430492035729749e-06, 'tipple': 1.6430492035729749e-06, 'poppyseed': 1.6430492035729749e-06, 'Steinhager': 3.2860984071459497e-06, 'Y.M.H.A.': 1.6430492035729749e-06, 'Bleaching': 1.6430492035729749e-06, 'wincing': 1.6430492035729749e-06, 'Eurydice': 2.4645738053594624e-06, 'Kissing': 1.6430492035729749e-06, 'stolid': 1.6430492035729749e-06, 'Molten': 1.6430492035729749e-06, 'singed': 1.6430492035729749e-06, 'scorched': 2.4645738053594624e-06, 'high-stepped': 1.6430492035729749e-06, 'goad': 1.6430492035729749e-06, 'Hoa-whup': 1.6430492035729749e-06, 'rivulets': 1.6430492035729749e-06, 'dust-thick': 1.6430492035729749e-06, 'balled': 1.6430492035729749e-06, 'sweat-soaked': 1.6430492035729749e-06, 'salt-edged': 1.6430492035729749e-06, 'unlashed': 1.6430492035729749e-06, 'cleansed': 1.6430492035729749e-06, 'replenished': 2.4645738053594624e-06, 'baleful': 1.6430492035729749e-06, 'kerchief': 1.6430492035729749e-06, 'smolderingly': 1.6430492035729749e-06, 'Hettie': 4.929147610718925e-06, 'pathless': 1.6430492035729749e-06, 'crudity': 1.6430492035729749e-06, 'semitrance': 1.6430492035729749e-06, 'sidewinder': 1.6430492035729749e-06, 'calloused': 1.6430492035729749e-06, 'miserably': 3.2860984071459497e-06, 'sharecrop': 1.6430492035729749e-06, 'puzzlement': 1.6430492035729749e-06, 'sharp-limbed': 1.6430492035729749e-06, 'funnel': 1.6430492035729749e-06, 'Frozen': 1.6430492035729749e-06, 'marrowbones': 1.6430492035729749e-06, 'six-ton': 1.6430492035729749e-06, 'pelting': 2.4645738053594624e-06, 'slopping': 2.4645738053594624e-06, 'Walls': 1.6430492035729749e-06, 'hollows': 1.6430492035729749e-06, 'jetting': 1.6430492035729749e-06, 'thinned': 1.6430492035729749e-06, 'haggardly': 1.6430492035729749e-06, 'half-swamped': 1.6430492035729749e-06, 'renewing': 1.6430492035729749e-06, 'floodheads': 1.6430492035729749e-06, 'speared': 1.6430492035729749e-06, 'up-jutting': 1.6430492035729749e-06, "Ben's": 1.6430492035729749e-06, 'half-swimming': 1.6430492035729749e-06, 'sputtered': 1.6430492035729749e-06, 'sour': 2.4645738053594624e-06, 'match-width': 1.6430492035729749e-06, 'chunky': 1.6430492035729749e-06, 'messes': 1.6430492035729749e-06, 'jellies': 1.6430492035729749e-06, 'wiggled': 3.2860984071459497e-06, 'frizzling': 1.6430492035729749e-06, 'java': 1.6430492035729749e-06, 'furled': 1.6430492035729749e-06, 'tarpaulins': 1.6430492035729749e-06, 'trunk': 7.393721416078387e-06, 'spoilables': 1.6430492035729749e-06, 'tinder': 1.6430492035729749e-06, 'firebug': 1.6430492035729749e-06, 'Lascar': 1.6430492035729749e-06, 'lifeboats': 1.6430492035729749e-06, 'stoker': 1.6430492035729749e-06, 'tongued': 1.6430492035729749e-06, 'shark-infested': 1.6430492035729749e-06, 'Lifeboat': 1.6430492035729749e-06, 'davits': 1.6430492035729749e-06, 'Brassnose': 1.0679819823224336e-05, 'Sommers': 3.2860984071459497e-06, 'Heave': 1.6430492035729749e-06, "boat's": 1.6430492035729749e-06, 'unstuck': 1.6430492035729749e-06, 'Bonaventure': 2.4645738053594624e-06, 'spavined': 1.6430492035729749e-06, 'lifeboat': 3.2860984071459497e-06, 'bleached': 4.929147610718925e-06, 'black-and-orange': 1.6430492035729749e-06, 'inferno': 1.6430492035729749e-06, 'Bismark': 1.6430492035729749e-06, 'Archipelago': 1.6430492035729749e-06, 'Rennell': 1.6430492035729749e-06, 'bailing': 3.2860984071459497e-06, 'whitened': 3.2860984071459497e-06, 'Manu': 4.929147610718925e-06, 'Anthropology': 1.6430492035729749e-06, 'Eromonga': 8.215246017864873e-06, 'Griggs': 3.2860984071459497e-06, 'archipelago': 1.6430492035729749e-06, 'amazons': 1.6430492035729749e-06, 'all-female': 1.6430492035729749e-06, 'matriarchal': 1.6430492035729749e-06, 'Pauson': 2.4645738053594624e-06, 'guffaws': 1.6430492035729749e-06, 'exploiting': 1.6430492035729749e-06, 'amatory': 1.6430492035729749e-06, 'revolting': 2.4645738053594624e-06, 'Lukuklu': 1.6430492035729749e-06, 'Frayne': 3.2860984071459497e-06, 'propitiate': 1.6430492035729749e-06, "bo'sun's": 1.6430492035729749e-06, 'quavered': 1.6430492035729749e-06, 'Tchalo': 1.6430492035729749e-06, 'comport': 1.6430492035729749e-06, 'bogeymen': 1.6430492035729749e-06, 'Aaa-ee': 1.6430492035729749e-06, 'tultul': 4.107623008932437e-06, 'Rabaul': 1.6430492035729749e-06, 'outrigger': 3.2860984071459497e-06, 'bronzed': 1.6430492035729749e-06, 'Melanesian': 2.4645738053594624e-06, 'tongue-tied': 1.6430492035729749e-06, 'mustered': 1.6430492035729749e-06, 'ngandlu': 1.6430492035729749e-06, 'prow': 1.6430492035729749e-06, 'garland': 1.6430492035729749e-06, 'pandanus': 1.6430492035729749e-06, 'blue-black': 2.4645738053594624e-06, 'Songau': 4.107623008932437e-06, 'Ponkob': 1.6430492035729749e-06, 'Piwen': 1.6430492035729749e-06, 'coral': 1.6430492035729749e-06, 'maggoty': 1.6430492035729749e-06, 'septum': 1.6430492035729749e-06, 'topmost': 1.6430492035729749e-06, 'rung': 3.2860984071459497e-06, 'divining': 1.6430492035729749e-06, 'aku': 1.6430492035729749e-06, 'pokeneu': 1.6430492035729749e-06, 'moons': 3.2860984071459497e-06, 'queasiness': 1.6430492035729749e-06, 'maku': 2.4645738053594624e-06, 'Taui': 1.6430492035729749e-06, 'brokenly': 1.6430492035729749e-06, "Frayne's": 2.4645738053594624e-06, 'eromonga': 1.6430492035729749e-06, 'derisively': 1.6430492035729749e-06, 'kava': 1.6430492035729749e-06, 'crone': 2.4645738053594624e-06, 'drooping': 1.6430492035729749e-06, 'conversing': 1.6430492035729749e-06, "L'Turu": 3.2860984071459497e-06, 'Scobee-Frazier': 1.6430492035729749e-06, 'Expedition': 1.6430492035729749e-06, 'Manitoba': 1.6430492035729749e-06, 'Karipo': 4.107623008932437e-06, 'inter-tribal': 1.6430492035729749e-06, 'rallied': 1.6430492035729749e-06, 'Pamasu': 1.6430492035729749e-06, 'feminist': 1.6430492035729749e-06, 'betel-stained': 1.6430492035729749e-06, "Karipo's": 1.6430492035729749e-06, 'squalid': 1.6430492035729749e-06, 'semi-circle': 1.6430492035729749e-06, 'squaw': 1.6430492035729749e-06, "Ramey's": 3.2860984071459497e-06, 'bib': 2.4645738053594624e-06, 'Ramey': 2.3824213451808133e-05, 'dislodged': 1.6430492035729749e-06, 'Nope': 1.6430492035729749e-06, 'checker': 1.6430492035729749e-06, 'far-away': 1.6430492035729749e-06, 'floppy': 1.6430492035729749e-06, 'shredded': 1.6430492035729749e-06, 'joyfully': 1.6430492035729749e-06, 'Horsely': 2.4645738053594624e-06, 'ex-truck': 1.6430492035729749e-06, 'outlandish': 1.6430492035729749e-06, 'Crumley': 1.6430492035729749e-06, 'towed': 1.6430492035729749e-06, 'Slender': 1.6430492035729749e-06, 'grimed': 1.6430492035729749e-06, 'diesel': 1.6430492035729749e-06, 'alleys': 1.6430492035729749e-06, 'blonde-haired': 1.6430492035729749e-06, 'courtliness': 1.6430492035729749e-06, 'levi-clad': 1.6430492035729749e-06, 'half-off': 1.6430492035729749e-06, 'laces': 1.6430492035729749e-06, 'eyelets': 1.6430492035729749e-06, 'blonde-headed': 1.6430492035729749e-06, 'Coca-Cola': 1.6430492035729749e-06, "Benson's": 1.6430492035729749e-06, 'sneaker': 2.4645738053594624e-06, 'nudge': 2.4645738053594624e-06, 'blood-flecked': 1.6430492035729749e-06, 'light-headedness': 1.6430492035729749e-06, "Them's": 2.4645738053594624e-06, 'once-in-a-lifetime': 1.6430492035729749e-06, 'cheekbone': 1.6430492035729749e-06, 'moaned': 2.4645738053594624e-06, 'kneeled': 2.4645738053594624e-06, 'gesturing': 1.6430492035729749e-06, 'ruddiness': 1.6430492035729749e-06, "patrolman's": 1.6430492035729749e-06, 'smoky': 1.6430492035729749e-06, 'horned': 1.6430492035729749e-06, 'Mough': 1.6430492035729749e-06, 'mough': 1.6430492035729749e-06, 'bungalow': 1.6430492035729749e-06, 'reciprocate': 1.6430492035729749e-06, 'harsher': 1.6430492035729749e-06, 'roach': 1.6430492035729749e-06, 'Ahmiri': 1.6430492035729749e-06, 'invader': 1.6430492035729749e-06, 'sulking': 1.6430492035729749e-06, 'Brahmaputra': 2.4645738053594624e-06, 'tableland': 1.6430492035729749e-06, 'headwalls': 2.4645738053594624e-06, 'pinnacles': 1.6430492035729749e-06, 'glaciers': 1.6430492035729749e-06, 'rockstrewn': 1.6430492035729749e-06, 'sky-carving': 1.6430492035729749e-06, 'massifs': 1.6430492035729749e-06, 'Gurla': 1.6430492035729749e-06, 'Mandhata': 1.6430492035729749e-06, 'Kemchenjunga': 1.6430492035729749e-06, 'curling': 1.6430492035729749e-06, 'Assam': 2.4645738053594624e-06, 'Khasi': 1.6430492035729749e-06, 'Sirinjani': 1.6430492035729749e-06, 'Madaripur': 1.6430492035729749e-06, 'mingles': 1.6430492035729749e-06, 'meld': 1.6430492035729749e-06, 'teeming': 1.6430492035729749e-06, 'Hump': 2.4645738053594624e-06, 'untracked': 1.6430492035729749e-06, 'lords': 1.6430492035729749e-06, 'Wing': 1.6430492035729749e-06, 'Commanders': 1.6430492035729749e-06, 'RAF': 3.2860984071459497e-06, "Keith's": 3.2860984071459497e-06, 'crates': 2.4645738053594624e-06, 'swastika': 1.6430492035729749e-06, 'bombed': 1.6430492035729749e-06, 'retaliated': 1.6430492035729749e-06, 'unsurmountable': 1.6430492035729749e-06, 'frightfully': 1.6430492035729749e-06, 'WAC': 1.6430492035729749e-06, 'bull-like': 1.6430492035729749e-06, 'rapier': 1.6430492035729749e-06, 'bicep': 1.6430492035729749e-06, 'greying': 1.6430492035729749e-06, 'beauty-idiom': 1.6430492035729749e-06, 'twittering': 1.6430492035729749e-06, 'WACS': 1.6430492035729749e-06, 'eagles': 1.6430492035729749e-06, 'hating': 2.4645738053594624e-06, 'hand-holding': 1.6430492035729749e-06, 'searing': 2.4645738053594624e-06, 'harry': 1.6430492035729749e-06, 'turtlebacks': 1.6430492035729749e-06, 'farmer-type': 1.6430492035729749e-06, 'London-bred': 1.6430492035729749e-06, 'Shillong': 1.6430492035729749e-06, 'sladang': 1.6430492035729749e-06, 'leopards': 1.6430492035729749e-06, 'sambur': 1.6430492035729749e-06, 'elk': 1.6430492035729749e-06, 'ferocious': 2.4645738053594624e-06, 'loners': 1.6430492035729749e-06, 'babyhood': 1.6430492035729749e-06, 'keddah': 1.6430492035729749e-06, 'marvelled': 1.6430492035729749e-06, 'traversing': 1.6430492035729749e-06, 'cheetal': 1.6430492035729749e-06, 'woodland': 1.6430492035729749e-06, 'Peacocks': 1.6430492035729749e-06, 'strutted': 2.4645738053594624e-06, 'preening': 1.6430492035729749e-06, 'boar': 1.6430492035729749e-06, 'fathoms': 1.6430492035729749e-06, 'Schaffner': 8.215246017864873e-06, 'triple-tank': 1.6430492035729749e-06, 'Temper': 1.6430492035729749e-06, 'irreparably': 1.6430492035729749e-06, 'tonic': 1.6430492035729749e-06, 'loused': 1.6430492035729749e-06, 'stonily': 1.6430492035729749e-06, 'Artie': 7.393721416078387e-06, 'muscle-bound': 1.6430492035729749e-06, 'bird-brain': 1.6430492035729749e-06, 'damnit': 1.6430492035729749e-06, 'Pressure-happy': 1.6430492035729749e-06, 'crewcut': 1.6430492035729749e-06, 'heavy-framed': 1.6430492035729749e-06, 'narcosis': 1.6430492035729749e-06, 'diver': 1.6430492035729749e-06, "Rob's": 1.6430492035729749e-06, 'puffy': 2.4645738053594624e-06, 'natty': 1.6430492035729749e-06, 'flannels': 1.6430492035729749e-06, 'Commodore': 3.2860984071459497e-06, 'fifty-dollar': 1.6430492035729749e-06, 'impassively': 1.6430492035729749e-06, 'skipper': 1.6430492035729749e-06, 'compactly': 1.6430492035729749e-06, "Rommel's": 1.6430492035729749e-06, 'Afrika': 1.6430492035729749e-06, 'Aloud': 1.6430492035729749e-06, 'Shaffner': 1.6430492035729749e-06, 'guile': 1.6430492035729749e-06, 'necessaries': 1.6430492035729749e-06, 'byline': 1.6430492035729749e-06, "German's": 1.6430492035729749e-06, 'swig': 2.4645738053594624e-06, 'distributorship': 1.6430492035729749e-06, 'sloshed': 1.6430492035729749e-06, 'gulps': 1.6430492035729749e-06, 'altruistically': 1.6430492035729749e-06, 'braving': 2.4645738053594624e-06, 'big-business': 1.6430492035729749e-06, 'Folding': 1.6430492035729749e-06, 'snorkle': 2.4645738053594624e-06, 'decompression': 1.6430492035729749e-06, 'Matsuo': 2.9574885664313547e-05, 'rubbery': 1.6430492035729749e-06, 'leafiest': 1.6430492035729749e-06, 'bred': 1.6430492035729749e-06, 'superiors': 4.107623008932437e-06, 'self-dictate': 1.6430492035729749e-06, 'Whichever': 1.6430492035729749e-06, 'urn': 1.6430492035729749e-06, 'loin': 1.6430492035729749e-06, 'Gloom': 1.6430492035729749e-06, 'fatigues': 2.4645738053594624e-06, 'phosphorescent': 1.6430492035729749e-06, 'sling': 1.6430492035729749e-06, 'steadiness': 1.6430492035729749e-06, 'wooooosh': 1.6430492035729749e-06, 'flame-throwers': 1.6430492035729749e-06, 'squirting': 1.6430492035729749e-06, 'billows': 1.6430492035729749e-06, 'Nagamo': 1.6430492035729749e-06, 'char': 1.6430492035729749e-06, 'unburned': 1.6430492035729749e-06, 'retching': 1.6430492035729749e-06, 'reeking': 1.6430492035729749e-06, 'Apprehensively': 1.6430492035729749e-06, 'leafy': 1.6430492035729749e-06, 'vine-crisscrossed': 1.6430492035729749e-06, 'deploying': 1.6430492035729749e-06, 'Cautious': 1.6430492035729749e-06, 'leafmold': 1.6430492035729749e-06, 'slings': 1.6430492035729749e-06, 'Humiliation': 1.6430492035729749e-06, 'whiplashes': 1.6430492035729749e-06, 'passiveness': 1.6430492035729749e-06, "Matsuo's": 2.4645738053594624e-06, 'bobbing': 3.2860984071459497e-06, 'vied': 1.6430492035729749e-06, 'Reflex': 1.6430492035729749e-06, 'snakestrike': 1.6430492035729749e-06, 'collarbone': 1.6430492035729749e-06, 'Maintaining': 1.6430492035729749e-06, 'rummaging': 1.6430492035729749e-06, 'tinplated': 1.6430492035729749e-06, 'wristwatch': 2.4645738053594624e-06, 'flintless': 1.6430492035729749e-06, 'canteen': 2.4645738053594624e-06, 'squeaking': 1.6430492035729749e-06, "marine's": 4.107623008932437e-06, 'Sake': 2.4645738053594624e-06, 'propping': 1.6430492035729749e-06, 'freshened': 1.6430492035729749e-06, 'perspired': 1.6430492035729749e-06, 'giggle': 1.6430492035729749e-06, 'wrenched': 2.4645738053594624e-06, 'unwounded': 1.6430492035729749e-06, 'winehead': 1.6430492035729749e-06, 'uncap': 1.6430492035729749e-06, 'squealing': 1.6430492035729749e-06, 'Popping': 1.6430492035729749e-06, 'broil': 1.6430492035729749e-06, 'purify': 2.4645738053594624e-06, 'quivers': 1.6430492035729749e-06, 'smudged': 1.6430492035729749e-06, 'blood-specked': 1.6430492035729749e-06, 'Chairs': 1.6430492035729749e-06, 'Throat': 9.85829522143785e-06, 'beardless': 1.6430492035729749e-06, 'a-drinking': 1.6430492035729749e-06, 'Tilghman': 2.1359639646448672e-05, "Conyers'": 3.2860984071459497e-06, "Tilghman's": 4.107623008932437e-06, 'gunfighter': 1.6430492035729749e-06, 'reeled': 2.4645738053594624e-06, 'careening': 1.6430492035729749e-06, "Throat's": 4.929147610718925e-06, 'henchmen': 2.4645738053594624e-06, 'doused': 1.6430492035729749e-06, 'henchman': 1.6430492035729749e-06, 'Rust': 2.4645738053594624e-06, 'brawl': 1.6430492035729749e-06, 'collosal': 1.6430492035729749e-06, 'critter': 1.6430492035729749e-06, 'Doran': 2.4645738053594624e-06, 'Boot': 1.6430492035729749e-06, 'Petrie': 3.2860984071459497e-06, 'six-shooter': 1.6430492035729749e-06, 'rip-roaring': 2.4645738053594624e-06, 'gun-slinger': 1.6430492035729749e-06, 'liquor-crazed': 1.6430492035729749e-06, 'desperadoes': 1.6430492035729749e-06, 'law-abiding': 1.6430492035729749e-06, "Kaster's": 1.6430492035729749e-06, 'Store': 2.4645738053594624e-06, 'dodging': 2.4645738053594624e-06, 'splintered': 2.4645738053594624e-06, "barber's": 1.6430492035729749e-06, 'splinters': 1.6430492035729749e-06, 'outlaw': 2.4645738053594624e-06, 'hair-raising': 1.6430492035729749e-06, "smash-'em-down": 1.6430492035729749e-06, 'two-fisted': 1.6430492035729749e-06, 'lawman': 2.4645738053594624e-06, 'gunfights': 1.6430492035729749e-06, 'gun-slinging': 1.6430492035729749e-06, 'badmen': 1.6430492035729749e-06, 'ham-like': 1.6430492035729749e-06, 'daylights': 1.6430492035729749e-06, 'hero-worship': 1.6430492035729749e-06, 'action-packed': 1.6430492035729749e-06, 'taming': 1.6430492035729749e-06, 'Doolin': 5.750672212505412e-06, 'mobsters': 1.6430492035729749e-06, 'sideline': 1.6430492035729749e-06, "Doolin's": 1.6430492035729749e-06, 'Guthrie': 1.6430492035729749e-06, "Dunn's": 1.6430492035729749e-06, 'tiered': 1.6430492035729749e-06, 'muzzles': 1.6430492035729749e-06, 'blissfully': 2.4645738053594624e-06, 'backside': 1.6430492035729749e-06, "Jed's": 1.6430492035729749e-06, 'homestead': 1.6430492035729749e-06, 'Resisting': 1.6430492035729749e-06, 'flng': 1.6430492035729749e-06, 'death-trap': 1.6430492035729749e-06, 'unwaveringly': 1.6430492035729749e-06, 'warmup': 1.6430492035729749e-06, 'clasped': 3.2860984071459497e-06, 'Leisurely': 1.6430492035729749e-06, 'fifty-year': 1.6430492035729749e-06, "Murphy's": 1.6430492035729749e-06, 'pimpled': 1.6430492035729749e-06, 'catlike': 1.6430492035729749e-06, 'Woman': 6.5721968142918994e-06, 'passionately': 3.2860984071459497e-06, 'Langford': 1.5608967433943262e-05, 'blue-eyes': 1.6430492035729749e-06, 'buxom': 1.6430492035729749e-06, 'budding': 1.6430492035729749e-06, 'womanhood': 1.6430492035729749e-06, 'starched': 2.4645738053594624e-06, 'afire': 1.6430492035729749e-06, 'litle': 1.6430492035729749e-06, 'inasmuch': 1.6430492035729749e-06, 'OK.': 1.6430492035729749e-06, 'Lever': 1.6430492035729749e-06, 'Whaddya': 1.6430492035729749e-06, 'Dixie': 1.6430492035729749e-06, 'thrills': 2.4645738053594624e-06, 'lapsing': 1.6430492035729749e-06, "how'd": 1.6430492035729749e-06, 'figgered': 1.6430492035729749e-06, "well's": 2.4645738053594624e-06, "doin'": 1.6430492035729749e-06, 'Branchville': 1.6430492035729749e-06, 'ownself': 1.6430492035729749e-06, 'wonderingly': 1.6430492035729749e-06, 'low-heeled': 1.6430492035729749e-06, 'jingling': 1.6430492035729749e-06, 'five-and-dime': 1.6430492035729749e-06, 'straggled': 1.6430492035729749e-06, 'sixth-grade': 1.6430492035729749e-06, 'noontime': 1.6430492035729749e-06, "playin'": 1.6430492035729749e-06, 'well-house': 1.6430492035729749e-06, 'druther': 1.6430492035729749e-06, 'Goody': 1.6430492035729749e-06, 'goody': 1.6430492035729749e-06, 'backwards': 2.4645738053594624e-06, "Allen's": 1.6430492035729749e-06, 'three-room': 1.6430492035729749e-06, 'tarpapered': 1.6430492035729749e-06, 'erasers': 1.6430492035729749e-06, 'flipping': 2.4645738053594624e-06, 'paperwads': 1.6430492035729749e-06, 'face-to-wall': 1.6430492035729749e-06, 'stampeded': 1.6430492035729749e-06, 'docilely': 1.6430492035729749e-06, 'munched': 1.6430492035729749e-06, 'ginger': 2.4645738053594624e-06, "mulatto's": 1.6430492035729749e-06, 'hypnotic': 1.6430492035729749e-06, 'Lithe': 1.6430492035729749e-06, 'well-molded': 1.6430492035729749e-06, 'hawk-faced': 1.6430492035729749e-06, 'Garvier': 2.4645738053594624e-06, 'calinda': 2.4645738053594624e-06, 'No-Name': 1.6430492035729749e-06, 'gourd': 2.4645738053594624e-06, 'incoherently': 1.6430492035729749e-06, 'gyration': 1.6430492035729749e-06, 'Haitian': 1.6430492035729749e-06, 'beetling': 2.4645738053594624e-06, 'Delphine': 1.0679819823224336e-05, 'Lalaurie': 1.4787442832156774e-05, 'pace-setter': 1.6430492035729749e-06, 'horsewoman': 1.6430492035729749e-06, 'sadist': 1.6430492035729749e-06, 'nymphomaniac': 4.107623008932437e-06, 'perpetrator': 1.6430492035729749e-06, 'stomping': 1.6430492035729749e-06, 'Dandy': 1.3144393628583799e-05, 'allure': 1.6430492035729749e-06, 'Bayou': 2.4645738053594624e-06, "girls'": 1.6430492035729749e-06, 'liaisons': 1.6430492035729749e-06, 'boathouses': 1.6430492035729749e-06, 'avidity': 1.6430492035729749e-06, 'doubloon': 1.6430492035729749e-06, 'gaped': 3.2860984071459497e-06, 'emanated': 1.6430492035729749e-06, 'missy': 1.6430492035729749e-06, 'Prieur': 5.750672212505412e-06, 'propelled': 1.6430492035729749e-06, 'Lifting': 1.6430492035729749e-06, 'coiled': 1.6430492035729749e-06, 'luxuriosly-upholstered': 1.6430492035729749e-06, 'landau': 1.6430492035729749e-06, 'inductees': 1.6430492035729749e-06, 'Satisfied': 1.6430492035729749e-06, 'gambits': 1.6430492035729749e-06, 'liveried': 1.6430492035729749e-06, 'proprietory': 1.6430492035729749e-06, 'Aristide': 2.4645738053594624e-06, 'chamois': 1.6430492035729749e-06, "Louis'": 1.6430492035729749e-06, 'bleedings': 1.6430492035729749e-06, 'Devol': 3.2860984071459497e-06, 'Leone': 1.6430492035729749e-06, 'well-brushed': 1.6430492035729749e-06, 'coachman': 3.2860984071459497e-06, 'gloved': 2.4645738053594624e-06, 'cowering': 1.6430492035729749e-06, 'Perdido': 3.2860984071459497e-06, 'pint-sized': 1.6430492035729749e-06, 'myopic': 1.6430492035729749e-06, 'blurry': 1.6430492035729749e-06, 'flee': 1.6430492035729749e-06, "Lalauries'": 1.6430492035729749e-06, "Delphine's": 2.4645738053594624e-06, 'endearments': 2.4645738053594624e-06, 'drudgery': 1.6430492035729749e-06, 'trustingly': 1.6430492035729749e-06, 'Airless': 1.6430492035729749e-06, 'assorted': 2.4645738053594624e-06, "Brandon's": 2.4645738053594624e-06, 'svelte': 1.6430492035729749e-06, 'wealthiest': 1.6430492035729749e-06, 'stringed': 1.6430492035729749e-06, 'waltz': 1.6430492035729749e-06, 'loincloth': 1.6430492035729749e-06, 'quaking': 1.6430492035729749e-06, "lad's": 1.6430492035729749e-06, 'welts': 1.6430492035729749e-06, 'Feebly': 1.6430492035729749e-06, 'Convulsively': 1.6430492035729749e-06, 'Berche': 1.6430492035729749e-06, 'crimsoning': 1.6430492035729749e-06, 'frilly': 1.6430492035729749e-06, 'waistcoat': 1.6430492035729749e-06, 'parquet': 1.6430492035729749e-06, 'sheeted': 1.6430492035729749e-06, 'daubed': 1.6430492035729749e-06, 'Ruffians': 1.6430492035729749e-06, "slave's": 1.6430492035729749e-06, "Dandy's": 1.6430492035729749e-06, 'adjudged': 1.6430492035729749e-06, 'Lalauries': 2.4645738053594624e-06, 'soirees': 1.6430492035729749e-06, 'abated': 1.6430492035729749e-06, "Lalaurie's": 1.6430492035729749e-06, 'Dominique': 1.6430492035729749e-06, 'octoroon': 1.6430492035729749e-06, 'cameo-like': 1.6430492035729749e-06, 'slashes': 1.6430492035729749e-06, 'sibilant': 1.6430492035729749e-06, 'hacksaw': 1.6430492035729749e-06, 'Vivaldi': 1.6430492035729749e-06, 'clobbered': 1.6430492035729749e-06, 'Embarcadero': 1.6430492035729749e-06, 'sucker-rolling': 1.6430492035729749e-06, 'freight-jumper': 1.6430492035729749e-06, 'lonelier': 1.6430492035729749e-06, 'cannonball': 1.6430492035729749e-06, 'Feathertop': 1.0679819823224336e-05, 'poshest': 1.6430492035729749e-06, "askin'": 1.6430492035729749e-06, 'conning': 1.6430492035729749e-06, 'freights': 1.6430492035729749e-06, 'hooch': 1.6430492035729749e-06, 'sacks': 1.6430492035729749e-06, 'tinning': 1.6430492035729749e-06, 'ocarina': 1.6430492035729749e-06, 'trilled': 1.6430492035729749e-06, 'tune-belly': 1.6430492035729749e-06, 'gratingly': 1.6430492035729749e-06, "Feathertop's": 2.4645738053594624e-06, 'pfffted': 1.6430492035729749e-06, 'Hair': 1.6430492035729749e-06, 'morning-frightened': 1.6430492035729749e-06, "sparrow's": 1.6430492035729749e-06, 'swanlike': 1.6430492035729749e-06, 'Zingggg-O': 1.6430492035729749e-06, 'straight-armed': 1.6430492035729749e-06, 'Curly': 1.6430492035729749e-06, 'cheekbones': 4.929147610718925e-06, 'gnomelike': 1.6430492035729749e-06, "drummer's": 1.6430492035729749e-06, 'Cappy': 1.0679819823224336e-05, 'Ah-ah': 1.6430492035729749e-06, 'offal': 1.6430492035729749e-06, 'slatted': 1.6430492035729749e-06, 'kazoo': 1.6430492035729749e-06, 'motioning': 2.4645738053594624e-06, 'crap': 3.2860984071459497e-06, 'tugging': 1.6430492035729749e-06, 'Oooo': 1.6430492035729749e-06, 'Outsville': 1.6430492035729749e-06, "freight's": 1.6430492035729749e-06, 'vibrating': 1.6430492035729749e-06, 'eloped': 1.6430492035729749e-06, 'pickins': 1.6430492035729749e-06, 'freight-bums': 1.6430492035729749e-06, 'savor': 1.6430492035729749e-06, 'leavings': 1.6430492035729749e-06, 'ex-jazz': 1.6430492035729749e-06, 'uh': 2.4645738053594624e-06, 'wolfishly': 1.6430492035729749e-06, 'chided': 1.6430492035729749e-06, 'scissoring': 1.6430492035729749e-06, "grabbin'": 1.6430492035729749e-06, 'doped': 1.6430492035729749e-06, 'Slug': 1.6430492035729749e-06, "rockin'": 1.6430492035729749e-06, 'Hmm': 1.6430492035729749e-06, 'diddle': 1.6430492035729749e-06, 'wallowed': 1.6430492035729749e-06, 'clanking': 1.6430492035729749e-06, 'Philly': 1.6430492035729749e-06, 'Joviality': 1.6430492035729749e-06, "Cargill's": 1.6430492035729749e-06, "Whyn't": 1.6430492035729749e-06, 'ex-musician': 1.6430492035729749e-06, 'refuse-littered': 1.6430492035729749e-06, 'boxcar': 5.750672212505412e-06, 'many-times': 1.6430492035729749e-06, 'slightly-smoking': 1.6430492035729749e-06, 'brazier': 1.6430492035729749e-06, 'Fan': 1.6430492035729749e-06, "what're": 1.6430492035729749e-06, 'Charcoal': 1.6430492035729749e-06, 'Fella': 1.6430492035729749e-06, 'waggled': 1.6430492035729749e-06, "ever-lovin'": 1.6430492035729749e-06, 'wieners': 1.6430492035729749e-06, 'cellophane': 1.6430492035729749e-06, 'sizzle': 1.6430492035729749e-06, "Kroger's": 1.6430492035729749e-06, 'self-serve': 1.6430492035729749e-06, 'self-served': 1.6430492035729749e-06, "wieners'": 1.6430492035729749e-06, "Kitty's": 4.929147610718925e-06, "Cappy's": 1.6430492035729749e-06, 'woulda': 1.6430492035729749e-06, "Ernie's": 1.6430492035729749e-06, 'bumming': 1.6430492035729749e-06, 'Pull': 1.6430492035729749e-06, 'lucy': 1.6430492035729749e-06, 'grizzly': 1.6430492035729749e-06, 'guzzled': 1.6430492035729749e-06, 'home-blend': 1.6430492035729749e-06, 'belligerence': 2.4645738053594624e-06, 'clincher': 1.6430492035729749e-06, 'girlie': 1.6430492035729749e-06, 'thwump': 1.6430492035729749e-06, "footballer's": 1.6430492035729749e-06, 'Aaawww': 1.6430492035729749e-06, 'switchblade': 1.6430492035729749e-06, 'snick': 1.6430492035729749e-06, 'fisted': 1.6430492035729749e-06, 'overhand': 2.4645738053594624e-06, 'insanely': 1.6430492035729749e-06, 'repetitive': 1.6430492035729749e-06, 'fly-dotted': 1.6430492035729749e-06, 'cheesecloth': 1.6430492035729749e-06, 'Signore': 1.6430492035729749e-06, 'fur-piece': 1.6430492035729749e-06, 'satin-covered': 1.6430492035729749e-06, 'buttocks': 1.6430492035729749e-06, 'Torino': 2.4645738053594624e-06, 'Henh': 1.6430492035729749e-06, 'Calloused': 1.6430492035729749e-06, 'tweezed': 1.6430492035729749e-06, 'Mauve-colored': 1.6430492035729749e-06, 'sweeter': 2.4645738053594624e-06, 'Puttana': 1.6430492035729749e-06, 'fig': 2.4645738053594624e-06, 'suppleness': 1.6430492035729749e-06, 'shooing': 1.6430492035729749e-06, 'sundials': 1.6430492035729749e-06, 'variegated': 1.6430492035729749e-06, 'Chieti': 1.6430492035729749e-06, 'Sameness': 2.4645738053594624e-06, 'ginkgo': 1.6430492035729749e-06, 'manure-scented': 1.6430492035729749e-06, 'porches': 2.4645738053594624e-06, 'rusted': 1.6430492035729749e-06, 'stable-garage': 1.6430492035729749e-06, 'hedge': 2.4645738053594624e-06, 'reeked': 1.6430492035729749e-06, 'grating': 1.6430492035729749e-06, "Bartoli's": 1.6430492035729749e-06, 'second-story': 1.6430492035729749e-06, 'showroom': 1.6430492035729749e-06, 'fortresses': 2.4645738053594624e-06, 'alleyways': 1.6430492035729749e-06, 'tunneled': 1.6430492035729749e-06, 'courtyards': 1.6430492035729749e-06, 'forked': 3.2860984071459497e-06, 'Pompeii': 4.929147610718925e-06, 'white-columned': 1.6430492035729749e-06, 'eight-thirty': 1.6430492035729749e-06, 'bowing': 3.2860984071459497e-06, 'pales': 1.6430492035729749e-06, 'harshness': 1.6430492035729749e-06, 'daydreaming': 1.6430492035729749e-06, 'wetness': 1.6430492035729749e-06, 'lapping': 2.4645738053594624e-06, "goat's": 2.4645738053594624e-06, 'feasting': 1.6430492035729749e-06, 'sallow': 1.6430492035729749e-06, 'time-cast': 1.6430492035729749e-06, 'marbleized': 1.6430492035729749e-06, 'unfalteringly': 1.6430492035729749e-06, 'Soothing': 1.6430492035729749e-06, 'whiskered': 1.6430492035729749e-06, 'teats': 2.4645738053594624e-06, 'undulated': 1.6430492035729749e-06, 'squirted': 1.6430492035729749e-06, 'bagpipe': 1.6430492035729749e-06, 'delighting': 1.6430492035729749e-06, 'soutane': 1.6430492035729749e-06, 'ocher': 1.6430492035729749e-06, "Pompeii's": 1.6430492035729749e-06, 'Niobe': 1.6430492035729749e-06, 'neatest': 1.6430492035729749e-06, 'Concetta': 1.6430492035729749e-06, "Concetta's": 2.4645738053594624e-06, "Romeo's": 1.6430492035729749e-06, 'rotundity': 1.6430492035729749e-06, "Maggie's": 3.2860984071459497e-06, 'quench': 1.6430492035729749e-06, 'flaxen': 1.6430492035729749e-06, 'rages': 1.6430492035729749e-06, 'peaches': 1.6430492035729749e-06, 'Worry': 1.6430492035729749e-06, 'pored': 1.6430492035729749e-06, 'Eugenia': 1.3144393628583799e-05, 'nuzzled': 1.6430492035729749e-06, 'Evadna': 3.2860984071459497e-06, "Best's": 1.6430492035729749e-06, 'Liliputian': 1.6430492035729749e-06, 'jotting': 1.6430492035729749e-06, 'playroom': 1.6430492035729749e-06, 'harshened': 1.6430492035729749e-06, 'bumptious': 1.6430492035729749e-06, 'open-handed': 1.6430492035729749e-06, 'Shivering': 2.4645738053594624e-06, 'Abernathys': 1.6430492035729749e-06, 'Abernathy': 2.4645738053594624e-06, 'ravenous': 2.4645738053594624e-06, 'fireplaces': 1.6430492035729749e-06, "Grandma's": 3.2860984071459497e-06, 'stormbound': 1.6430492035729749e-06, 'shipwrecked': 1.6430492035729749e-06, 'anxieties': 1.6430492035729749e-06, 'swabbed': 1.6430492035729749e-06, 'bathrooms': 1.6430492035729749e-06, 'undressed': 2.4645738053594624e-06, 'groaning': 1.6430492035729749e-06, 'mouthful': 3.2860984071459497e-06, 'wallow': 1.6430492035729749e-06, "Hope's": 1.6430492035729749e-06, 'bedspread': 2.4645738053594624e-06, 'Thrifty': 1.6430492035729749e-06, 'Unusual': 1.6430492035729749e-06, "Tolley's": 3.2860984071459497e-06, 'Laban': 4.107623008932437e-06, 'Tolley': 5.750672212505412e-06, 'Robards': 7.393721416078387e-06, 'Kizzie': 4.929147610718925e-06, "Brace's": 1.6430492035729749e-06, 'Fairbrothers': 2.4645738053594624e-06, 'Labans': 1.6430492035729749e-06, 'valiant': 1.6430492035729749e-06, 'log-house': 1.6430492035729749e-06, 'asunder': 1.6430492035729749e-06, 'Absolution': 1.6430492035729749e-06, 'pigeonhole': 1.6430492035729749e-06, 'deception': 1.6430492035729749e-06, 'lacerate': 1.6430492035729749e-06, 'pyre': 1.6430492035729749e-06, 'feathery': 1.6430492035729749e-06, 'gathers': 1.6430492035729749e-06, "Fair's": 2.4645738053594624e-06, 'Quinzaine': 4.107623008932437e-06, 'grandsons': 1.6430492035729749e-06, 'thimble': 1.6430492035729749e-06, 'easygoing': 1.6430492035729749e-06, 'Howdy': 1.6430492035729749e-06, 'Whipsnade': 2.4645738053594624e-06, 'Dunne': 4.107623008932437e-06, 'P.GA': 1.6430492035729749e-06, "C'un": 1.6430492035729749e-06, 'plain-out': 1.6430492035729749e-06, 'carte': 1.6430492035729749e-06, 'blanche': 1.6430492035729749e-06, "Robards'": 1.6430492035729749e-06, 'mares': 1.6430492035729749e-06, 'geldings': 1.6430492035729749e-06, 'what-nots': 1.6430492035729749e-06, "Racin'": 1.6430492035729749e-06, 'Gunny': 5.750672212505412e-06, 'oneasy': 1.6430492035729749e-06, "sor'l": 1.6430492035729749e-06, "musn't": 1.6430492035729749e-06, 'foal': 2.4645738053594624e-06, 'laments': 2.4645738053594624e-06, 'foals': 1.6430492035729749e-06, 'Tillie': 2.4645738053594624e-06, 'midwife': 1.6430492035729749e-06, "Jenny's": 1.6430492035729749e-06, 'aversion': 2.4645738053594624e-06, 'veterinarian': 2.4645738053594624e-06, 'quarts': 1.6430492035729749e-06, 'liniment': 1.6430492035729749e-06, 'bran': 1.6430492035729749e-06, 'mash': 1.6430492035729749e-06, 'charlotte': 1.6430492035729749e-06, 'russe': 1.6430492035729749e-06, 'jiffy': 1.6430492035729749e-06, 'triplets': 3.2860984071459497e-06, "trippin'": 1.6430492035729749e-06, 'pike': 3.2860984071459497e-06, "ever'": 1.6430492035729749e-06, 'hon': 2.4645738053594624e-06, 'Rhyme': 1.6430492035729749e-06, 'Arcilla': 1.6430492035729749e-06, 'Flotilla': 1.6430492035729749e-06, 'Edmonia': 1.6430492035729749e-06, 'Jennifer': 1.6430492035729749e-06, 'Kezziah': 1.6430492035729749e-06, "this'll": 1.6430492035729749e-06, 'boy-name': 1.6430492035729749e-06, "Mare's": 1.6430492035729749e-06, 'Handsomest': 1.6430492035729749e-06, 'Rakestraw': 1.6430492035729749e-06, 'Spa': 1.6430492035729749e-06, 'snippy': 1.6430492035729749e-06, 'teething': 1.6430492035729749e-06, 'Kiz': 3.2860984071459497e-06, "Tillie's": 1.6430492035729749e-06, 'to-do': 1.6430492035729749e-06, 'dollies': 1.6430492035729749e-06, 'spa': 1.6430492035729749e-06, 'nigs': 1.6430492035729749e-06, "ever'body": 1.6430492035729749e-06, 'dang': 1.6430492035729749e-06, 'oystchers': 1.6430492035729749e-06, "bar'l": 1.6430492035729749e-06, "oystchers'll": 1.6430492035729749e-06, 'perk': 1.6430492035729749e-06, "Roy's": 1.6430492035729749e-06, 'Eph': 1.6430492035729749e-06, 'Showers': 1.6430492035729749e-06, 'hop': 2.4645738053594624e-06, 'purtiest': 1.6430492035729749e-06, 'lonesome': 2.4645738053594624e-06, 'absolution': 1.6430492035729749e-06, "Doaty's": 5.750672212505412e-06, 'Doaty': 7.393721416078387e-06, 'garnet': 1.6430492035729749e-06, 'Hetty': 2.4645738053594624e-06, 'Adelia': 4.929147610718925e-06, "Hetty's": 1.6430492035729749e-06, 'Maneret': 1.6430492035729749e-06, 'Craddock': 1.6430492035729749e-06, 'wand': 1.6430492035729749e-06, 'one-two-three': 2.4645738053594624e-06, 'teas': 1.6430492035729749e-06, 'fetes': 1.6430492035729749e-06, 'Blackwell': 3.2860984071459497e-06, 'colloquy': 1.6430492035729749e-06, 'wildness': 1.6430492035729749e-06, 'rosebush': 1.6430492035729749e-06, 'thorns': 1.6430492035729749e-06, 'dewdrops': 1.6430492035729749e-06, 'nondescriptly': 1.6430492035729749e-06, 'femme': 1.6430492035729749e-06, "d'un": 1.6430492035729749e-06, 'Rosa': 4.107623008932437e-06, 'unbelievably': 1.6430492035729749e-06, 'bun': 1.6430492035729749e-06, 'william': 1.6430492035729749e-06, 'bedstraw': 1.6430492035729749e-06, 'grasses': 1.6430492035729749e-06, 'gleefully': 1.6430492035729749e-06, 'prayerful': 1.6430492035729749e-06, 'forepaws': 1.6430492035729749e-06, 'Rummaging': 2.4645738053594624e-06, 'slumbered': 1.6430492035729749e-06, 'frankest': 1.6430492035729749e-06, 'princess-in-a-carriage': 1.6430492035729749e-06, 'acknowledgments': 1.6430492035729749e-06, 'sap': 1.6430492035729749e-06, 'nettled': 2.4645738053594624e-06, "Summer's": 1.6430492035729749e-06, "dryin'": 2.4645738053594624e-06, "soon's": 1.6430492035729749e-06, "Y're": 2.4645738053594624e-06, 'soldierly': 1.6430492035729749e-06, "f'r": 1.6430492035729749e-06, 'womanly': 1.6430492035729749e-06, 'Rests': 1.6430492035729749e-06, 'pacifies': 1.6430492035729749e-06, 'Titus': 2.4645738053594624e-06, 'Blackwells': 1.6430492035729749e-06, 'mariner': 1.6430492035729749e-06, 'fishing-boat': 1.6430492035729749e-06, "leavin'": 1.6430492035729749e-06, 'connivance': 1.6430492035729749e-06, "Cotter's": 1.6430492035729749e-06, 'big-boned': 1.6430492035729749e-06, 'drab-haired': 1.6430492035729749e-06, "gran'dad": 1.6430492035729749e-06, "Y'r": 1.6430492035729749e-06, "dam'": 1.6430492035729749e-06, 'porridge': 1.6430492035729749e-06, 'sops': 1.6430492035729749e-06, 'lowly': 1.6430492035729749e-06, 'grand-daughter': 2.4645738053594624e-06, 'piously': 1.6430492035729749e-06, "Blackwell's": 1.6430492035729749e-06, 'somewheres': 1.6430492035729749e-06, 'Delia': 1.6430492035729749e-06, 'mightily': 1.6430492035729749e-06, 'buffeted': 1.6430492035729749e-06, 'gabble': 1.6430492035729749e-06, 'clawing': 1.6430492035729749e-06, 'headstones': 1.6430492035729749e-06, 'Tredding': 1.6430492035729749e-06, 'sea-damp': 1.6430492035729749e-06, 'indecipherable': 1.6430492035729749e-06, 'rock-carved': 1.6430492035729749e-06, 'Momoyama': 3.2860984071459497e-06, 'Miyagi': 2.4645738053594624e-06, 'Prefecture': 1.6430492035729749e-06, 'Honshu': 1.6430492035729749e-06, 'Ainu': 1.6430492035729749e-06, 'Ainus': 1.6430492035729749e-06, 'Caucasian': 1.6430492035729749e-06, 'subsist': 1.6430492035729749e-06, 'Akita': 1.6430492035729749e-06, 'prefectures': 1.6430492035729749e-06, 'honey-in-the-sun': 1.6430492035729749e-06, 'tint': 1.6430492035729749e-06, 'willowy': 1.6430492035729749e-06, 'sunburn': 4.929147610718925e-06, 'forebears': 1.6430492035729749e-06, 'Diego': 4.929147610718925e-06, 'Bremerton': 1.6430492035729749e-06, 'Lakes': 1.6430492035729749e-06, 'six-month': 1.6430492035729749e-06, 'Yokosuka': 3.2860984071459497e-06, "Fleet's": 1.6430492035729749e-06, 'Sooner': 2.4645738053594624e-06, 'tinkling': 2.4645738053594624e-06, 'fifty-fifty': 1.6430492035729749e-06, 'Harro': 1.6430492035729749e-06, 'girl-san': 1.6430492035729749e-06, 'catchee': 1.6430492035729749e-06, 'boy-furiendo': 1.6430492035729749e-06, 'likee': 1.6430492035729749e-06, 'nice-looking': 1.6430492035729749e-06, 'blush': 1.6430492035729749e-06, 'fly-boy': 1.6430492035729749e-06, "nurses'": 1.6430492035729749e-06, 'brunettes': 1.6430492035729749e-06, 'humiliated': 2.4645738053594624e-06, 'waitresses': 1.6430492035729749e-06, 'murdering': 3.2860984071459497e-06, 'Yuki': 1.6430492035729749e-06, 'Kobayashi': 1.6430492035729749e-06, 'Bifutek-san': 1.6430492035729749e-06, 'Kohi': 1.6430492035729749e-06, 'Futotsu': 1.6430492035729749e-06, 'whitehaired': 1.6430492035729749e-06, "Tommy's": 1.6430492035729749e-06, 'Nurse': 1.6430492035729749e-06, 'after-duty': 1.6430492035729749e-06, 'put-upon': 1.6430492035729749e-06, 'indigestion': 1.6430492035729749e-06, 'bicarbonate': 1.6430492035729749e-06, 'Oyajima': 1.6430492035729749e-06, 'kimono': 1.6430492035729749e-06, 'kotowaza': 1.6430492035729749e-06, 'Tanin': 1.6430492035729749e-06, 'yori': 1.6430492035729749e-06, 'miuchi': 1.6430492035729749e-06, 'Relatives': 1.6430492035729749e-06, "Doolittle's": 1.6430492035729749e-06, 'Subic': 2.4645738053594624e-06, 'Doolittle': 2.4645738053594624e-06, 'Appleby': 1.6430492035729749e-06, 'indoctrination': 1.6430492035729749e-06, 'slaughtering': 1.6430492035729749e-06, 'cockroaches': 2.4645738053594624e-06, 'Bustard': 1.6430492035729749e-06, 'McCafferty': 1.6430492035729749e-06, 'Gresham': 1.6430492035729749e-06, 'commissary': 1.6430492035729749e-06, 'gangway': 1.6430492035729749e-06, 'frog': 1.6430492035729749e-06, 'Sierras': 2.4645738053594624e-06, "Buzz's": 1.6430492035729749e-06, 'Pagan': 3.2860984071459497e-06, 'Wow': 1.6430492035729749e-06, 'Strippers': 1.6430492035729749e-06, 'scrumptious': 1.6430492035729749e-06, 'Toodle': 2.4645738053594624e-06, 'all-lesbian': 1.6430492035729749e-06, 'Buzz': 7.393721416078387e-06, 'Willows': 1.6430492035729749e-06, 'Tough': 1.6430492035729749e-06, 'instigator': 1.6430492035729749e-06, 'Ahah': 1.6430492035729749e-06, 'semi-professionally': 1.6430492035729749e-06, 'lay-sisters': 4.107623008932437e-06, 'Eskimos': 2.4645738053594624e-06, 'sparkled': 1.6430492035729749e-06, 'Smug': 1.6430492035729749e-06, 'sappy': 1.6430492035729749e-06, 'sickly-tolerant': 1.6430492035729749e-06, 'canvassing': 1.6430492035729749e-06, 'Forebearing': 1.6430492035729749e-06, "strangers'": 1.6430492035729749e-06, 'hundred-and-fifty': 1.6430492035729749e-06, 'overexcited': 1.6430492035729749e-06, 'bibles': 1.6430492035729749e-06, 'waspishly': 1.6430492035729749e-06, 'heatedly': 1.6430492035729749e-06, 'bucking-up': 1.6430492035729749e-06, 'crestfallen': 1.6430492035729749e-06, 'indecisively': 1.6430492035729749e-06, 'Collector': 1.6430492035729749e-06, 'Truckee': 1.6430492035729749e-06, 'spangle': 1.6430492035729749e-06, 'flowerpot': 2.4645738053594624e-06, 'Calf': 3.2860984071459497e-06, 'mural': 1.6430492035729749e-06, 'Donner': 1.6430492035729749e-06, 'heavily-upholstered': 1.6430492035729749e-06, 'bested': 1.6430492035729749e-06, 'dried-up': 1.6430492035729749e-06, 'martingale': 1.6430492035729749e-06, 'hit-and-miss': 1.6430492035729749e-06, 'five-seventeen': 1.6430492035729749e-06, "roulette's": 1.6430492035729749e-06, 'blackjack': 2.4645738053594624e-06, 'Wrangler': 3.2860984071459497e-06, 'Bar-H': 1.6430492035729749e-06, 'Sparky': 3.2860984071459497e-06, 'single-foot': 1.6430492035729749e-06, 'Washoe': 1.6430492035729749e-06, 'pinto': 1.6430492035729749e-06, 'jinx': 1.6430492035729749e-06, 'Hurrays': 3.2860984071459497e-06, 'den': 2.4645738053594624e-06, 'keno': 1.6430492035729749e-06, 'waned': 2.4645738053594624e-06, 'shill': 1.6430492035729749e-06, 'shills': 1.6430492035729749e-06, 'floorshow': 1.6430492035729749e-06, 'schoolgirls': 1.6430492035729749e-06, 'chuck-a-luck': 1.6430492035729749e-06, 'sun-tan': 1.6430492035729749e-06, 'Cal-Neva': 1.6430492035729749e-06, 'instigating': 1.6430492035729749e-06, 'stickman': 1.6430492035729749e-06, 'crossroading': 1.6430492035729749e-06, 'sun-suit': 1.6430492035729749e-06, 'propositioned': 1.6430492035729749e-06, 'Stake': 1.6430492035729749e-06, 'Gisele': 1.6430492035729749e-06, 'Sylphide': 1.6430492035729749e-06, 'cold-bloodedly': 1.6430492035729749e-06, 'Hostile': 1.6430492035729749e-06, 'Gansevoort': 5.750672212505412e-06, "Captain's": 1.6430492035729749e-06, 'mutineer': 1.6430492035729749e-06, 'Heiser': 6.5721968142918994e-06, 'wild-eyed': 1.6430492035729749e-06, 'handspikes': 3.2860984071459497e-06, 'heavers': 2.4645738053594624e-06, 'holystones': 1.6430492035729749e-06, 'souvenirs': 1.6430492035729749e-06, 'battle-ax': 1.6430492035729749e-06, "Spencer's": 5.750672212505412e-06, 'topgallant': 2.4645738053594624e-06, 'well-organized': 1.6430492035729749e-06, 'questioningly': 1.6430492035729749e-06, 'shackled': 2.4645738053594624e-06, 'Adrien': 2.4645738053594624e-06, 'Deslonde': 2.4645738053594624e-06, 'weather-royal': 1.6430492035729749e-06, 'Midshipman': 2.4645738053594624e-06, 'Tillotson': 2.4645738053594624e-06, 'insolently': 1.6430492035729749e-06, 'brig': 1.6430492035729749e-06, 'villainous': 1.6430492035729749e-06, 'omniscient': 1.6430492035729749e-06, 'Implements': 1.6430492035729749e-06, 'midshipmen': 2.4645738053594624e-06, 'eighteen-year-old': 1.6430492035729749e-06, 'sobbed': 2.4645738053594624e-06, "egotist's": 1.6430492035729749e-06, 'Stern-faced': 1.6430492035729749e-06, 'thick-skulled': 1.6430492035729749e-06, 'red-haired': 3.2860984071459497e-06, 'shackles': 2.4645738053594624e-06, 'hazel': 1.6430492035729749e-06, "Cromwell's": 1.6430492035729749e-06, 'wardroom': 1.6430492035729749e-06, 'Torah': 1.6430492035729749e-06, 'Bits': 1.6430492035729749e-06, 'warmish': 1.6430492035729749e-06, 'pinkish-white': 1.6430492035729749e-06, 'paot': 3.2860984071459497e-06, 'long-sleeved': 1.6430492035729749e-06, 'pivoting': 1.6430492035729749e-06, 'discolored': 1.6430492035729749e-06, 'ajar': 2.4645738053594624e-06, 'unclasping': 1.6430492035729749e-06, 'bare-armed': 1.6430492035729749e-06, 'Rapping': 1.6430492035729749e-06, 'shrilled': 2.4645738053594624e-06, 'upturned': 1.6430492035729749e-06, 'ringlets': 1.6430492035729749e-06, 'yellowed': 1.6430492035729749e-06, 'prayerbooks': 1.6430492035729749e-06, 'rapping': 2.4645738053594624e-06, 'incessantly': 2.4645738053594624e-06, 'curls': 1.6430492035729749e-06, 'singsonged': 1.6430492035729749e-06, 'off-key': 1.6430492035729749e-06, 'clucked': 1.6430492035729749e-06, 'Shabbat': 1.6430492035729749e-06, 'prickly': 1.6430492035729749e-06, 'pruta': 1.6430492035729749e-06, 'Sabras': 1.6430492035729749e-06, 'kibbutzim': 1.6430492035729749e-06, 'Aliah': 1.6430492035729749e-06, 'slyly': 2.4645738053594624e-06, 'Ready': 1.6430492035729749e-06, "Me'a": 1.6430492035729749e-06, "She'arim": 1.6430492035729749e-06, 'anyplace': 1.6430492035729749e-06, 'cobblestones': 1.6430492035729749e-06, 'numerals': 1.6430492035729749e-06, 'retrieve': 2.4645738053594624e-06, 'Mandate': 1.6430492035729749e-06, 'Reuveni': 4.929147610718925e-06, 'bright-eyed': 2.4645738053594624e-06, 'poling': 2.4645738053594624e-06, 'Forked': 1.6430492035729749e-06, 'Ethiopians': 1.6430492035729749e-06, 'unfrosted': 1.6430492035729749e-06, 'streetlight': 1.6430492035729749e-06, 'hopscotch': 1.6430492035729749e-06, 'pinging': 1.6430492035729749e-06, 'feelers': 1.6430492035729749e-06, 'overhearing': 1.6430492035729749e-06, 'Gratt': 7.393721416078387e-06, 'Shafer': 5.750672212505412e-06, 'Mattie': 1.6430492035729749e-06, 'Toonker': 1.6430492035729749e-06, 'Burkette': 1.6430492035729749e-06, 'yanking': 1.6430492035729749e-06, 'parachute': 1.6430492035729749e-06, 'Starkey': 1.6430492035729749e-06, 'underwear': 3.2860984071459497e-06, 'daddy': 2.4645738053594624e-06, 'tramp': 1.6430492035729749e-06, 'mild-voiced': 1.6430492035729749e-06, 'little-town': 1.6430492035729749e-06, 'big-town': 1.6430492035729749e-06, 'Houdini': 1.6430492035729749e-06, 'chump': 1.6430492035729749e-06, 'too-shiny': 1.6430492035729749e-06, 'dawns': 1.6430492035729749e-06, "Shafer's": 1.6430492035729749e-06, 'whitewashed': 1.6430492035729749e-06, 'Homes': 1.6430492035729749e-06, 'spellbound': 1.6430492035729749e-06, 'rehearsing': 1.6430492035729749e-06, 'bumps': 1.6430492035729749e-06, 'rippled': 1.6430492035729749e-06, "rat's": 1.6430492035729749e-06, 'Factory-to-You': 1.6430492035729749e-06, 'unventilated': 1.6430492035729749e-06, 'primping': 1.6430492035729749e-06, 'boxed-in': 1.6430492035729749e-06, 'whichever-the-hell': 1.6430492035729749e-06, 'six-thirty': 1.6430492035729749e-06, 'eight-by-ten': 1.6430492035729749e-06, "jeweler's": 1.6430492035729749e-06, 'Magpie': 1.6430492035729749e-06, 'fifteenth-century': 1.6430492035729749e-06, 'ferreted': 1.6430492035729749e-06, 'linden': 1.6430492035729749e-06, 'McKenzie': 3.2860984071459497e-06, 'Rufus': 1.6430492035729749e-06, 'researches': 1.6430492035729749e-06, 'haircuts': 1.6430492035729749e-06, 'Fauntleroy': 1.6430492035729749e-06, 'Monmouth': 3.2860984071459497e-06, 'nearsighted': 1.6430492035729749e-06, 'sleepwalker': 1.6430492035729749e-06, 'Prussian': 1.6430492035729749e-06, 'Attending': 1.6430492035729749e-06, "Askington's": 1.6430492035729749e-06, 'illustrator': 1.6430492035729749e-06, 'Askington': 4.929147610718925e-06, "Monmouth's": 2.4645738053594624e-06, 'Viyella': 1.6430492035729749e-06, 'bolo': 1.6430492035729749e-06, 'jade': 1.6430492035729749e-06, "Brush-off's": 1.6430492035729749e-06, 'illustrators': 1.6430492035729749e-06, 'Velasquez': 1.6430492035729749e-06, 'Modigliani': 1.6430492035729749e-06, 'Miro': 1.6430492035729749e-06, 'Mantegna': 1.6430492035729749e-06, 'philharmonic': 1.6430492035729749e-06, 'photorealism': 1.6430492035729749e-06, 'five-hundred-dollar': 1.6430492035729749e-06, 'Hajime': 1.6430492035729749e-06, 'Iijima': 1.6430492035729749e-06, 'Osric': 1.6430492035729749e-06, 'retrospective': 1.6430492035729749e-06, "Cezanne's": 1.6430492035729749e-06, "Thoreau's": 1.6430492035729749e-06, 'hangouts': 1.6430492035729749e-06, 'goldsmith': 1.6430492035729749e-06, 'carver': 1.6430492035729749e-06, 'satirist': 1.6430492035729749e-06, 'tooth-paste': 1.6430492035729749e-06, 'fluff': 1.6430492035729749e-06, 'upshot': 1.6430492035729749e-06, "Pendleton's": 1.6430492035729749e-06, 'Brush-off': 1.6430492035729749e-06, 'mailman': 1.6430492035729749e-06, 'Stimulating': 1.6430492035729749e-06, 'cigars': 2.4645738053594624e-06, 'Ida': 2.4645738053594624e-06, "Via's": 2.4645738053594624e-06, 'half-murmured': 1.6430492035729749e-06, 'parboiled': 1.6430492035729749e-06, 'Dolly': 4.107623008932437e-06, 'Thaxters': 1.6430492035729749e-06, 'movie-to-be': 1.6430492035729749e-06, 'grooved': 1.6430492035729749e-06, 'sun-warmed': 1.6430492035729749e-06, 'palisades': 1.6430492035729749e-06, 'unsee': 1.6430492035729749e-06, 'Thaxter': 2.4645738053594624e-06, 'turnaround': 1.6430492035729749e-06, 'Engisch': 1.6430492035729749e-06, 'closets': 2.4645738053594624e-06, 'portfolio': 1.6430492035729749e-06, 'lingerie': 2.4645738053594624e-06, "Salter's": 1.6430492035729749e-06, 'Harvie': 3.2860984071459497e-06, 'Constance': 1.6430492035729749e-06, 'moontrack': 1.6430492035729749e-06, 'Sonny': 1.6430492035729749e-06, 'unquenched': 1.6430492035729749e-06, 'outcry': 3.2860984071459497e-06, 'scapegoat': 1.6430492035729749e-06, 'rankles': 1.6430492035729749e-06, 'overplayed': 1.6430492035729749e-06, "Mathias'": 1.6430492035729749e-06, 'makeshifts': 1.6430492035729749e-06, 'pettiness': 1.6430492035729749e-06, 'cremate': 1.6430492035729749e-06, 'trestles': 1.6430492035729749e-06, 'hearse': 1.6430492035729749e-06, 'chapel-like': 1.6430492035729749e-06, 'Uhhu': 3.2860984071459497e-06, 'eyelid': 1.6430492035729749e-06, 'convivial': 1.6430492035729749e-06, 'Umm': 1.6430492035729749e-06, 'uhhu': 1.6430492035729749e-06, 'Kleenex': 1.6430492035729749e-06, 'Alberto': 2.4645738053594624e-06, 'flatter': 1.6430492035729749e-06, 'Caneli': 1.6430492035729749e-06, 'dwelt': 1.6430492035729749e-06, 'thin-soled': 1.6430492035729749e-06, 'dark-gray': 1.6430492035729749e-06, 'fawn-colored': 1.6430492035729749e-06, 'tweedy': 1.6430492035729749e-06, 'dark-blue': 1.6430492035729749e-06, 'Parioli': 1.6430492035729749e-06, 'loafed': 1.6430492035729749e-06, 'Veneto': 1.6430492035729749e-06, 'Farneses': 1.6430492035729749e-06, 'drowsily': 1.6430492035729749e-06, 'Sistine': 1.6430492035729749e-06, 'wearied': 1.6430492035729749e-06, 'Ferraros': 3.2860984071459497e-06, 'Ferraro': 2.4645738053594624e-06, 'Ciao': 1.6430492035729749e-06, "'ello": 1.6430492035729749e-06, 'Signora': 3.2860984071459497e-06, 'encouragingly': 1.6430492035729749e-06, 'boxcars': 2.4645738053594624e-06, 'Regretfully': 1.6430492035729749e-06, 'Nodding': 1.6430492035729749e-06, 'Signor': 2.4645738053594624e-06, "Carla's": 2.4645738053594624e-06, 'Devout': 1.6430492035729749e-06, 'Dookiyoon': 2.4645738053594624e-06, 'Shades': 2.4645738053594624e-06, 'flageolet': 1.6430492035729749e-06, 'unhesitant': 1.6430492035729749e-06, 'eyeballs': 1.6430492035729749e-06, 'Elsewhere': 1.6430492035729749e-06, 'lodges': 2.4645738053594624e-06, 'Walitzee': 4.929147610718925e-06, 'imperious': 1.6430492035729749e-06, 'overloud': 1.6430492035729749e-06, 'Pile': 4.107623008932437e-06, 'Clouds': 4.107623008932437e-06, 'Telling': 1.6430492035729749e-06, 'unsheathing': 1.6430492035729749e-06, 'curing': 1.6430492035729749e-06, "helsq'iyokom": 1.6430492035729749e-06, 'mingling': 1.6430492035729749e-06, 'bullhide': 1.6430492035729749e-06, 'flog': 1.6430492035729749e-06, 'double-married': 1.6430492035729749e-06, 'mumbling': 1.6430492035729749e-06, 'worrisome': 2.4645738053594624e-06, 'TuHulHulZote': 2.4645738053594624e-06, 'Lie': 1.6430492035729749e-06, 'gnarled': 1.6430492035729749e-06, 'talons': 1.6430492035729749e-06, 'delineaments': 1.6430492035729749e-06, 'tracings': 1.6430492035729749e-06, 'refracted': 1.6430492035729749e-06, 'unnnt': 1.6430492035729749e-06, 'Sssshoo': 1.6430492035729749e-06, 'quavering': 2.4645738053594624e-06, 'Move': 3.2860984071459497e-06, "whip's": 1.6430492035729749e-06, 'unbent': 1.6430492035729749e-06, 'glorying': 1.6430492035729749e-06, 'mastiff': 1.6430492035729749e-06, 'ranted': 1.6430492035729749e-06, 'grandly': 1.6430492035729749e-06, 'attis': 1.6430492035729749e-06, 'skeletons': 1.6430492035729749e-06, 'paxam': 1.6430492035729749e-06, 'arrowheads': 1.6430492035729749e-06, 'Sarpsis': 2.4645738053594624e-06, 'Swan': 1.6430492035729749e-06, 'Necklace': 1.6430492035729749e-06, 'timidly': 1.6430492035729749e-06, 'chemistries': 1.6430492035729749e-06, 'fermenting': 1.6430492035729749e-06, 'Alokut': 1.6430492035729749e-06, 'frenziedly': 1.6430492035729749e-06, 'regalia': 1.6430492035729749e-06, 'leggings': 1.6430492035729749e-06, 'envenomed': 1.6430492035729749e-06, 'hilltops': 1.6430492035729749e-06, 'caper': 1.6430492035729749e-06, 'amulets': 1.6430492035729749e-06, 'bellicosity': 1.6430492035729749e-06, 'disheveled': 2.4645738053594624e-06, 'Appaloosas': 1.6430492035729749e-06, 'multicolored': 1.6430492035729749e-06, 'cacophony': 1.6430492035729749e-06, 'thousand-legged': 1.6430492035729749e-06, 'hemlocks': 1.6430492035729749e-06, 'birch': 1.6430492035729749e-06, 'short-cut': 1.6430492035729749e-06, 'frogs': 1.6430492035729749e-06, 'lower-cut': 1.6430492035729749e-06, 'Bentley': 2.4645738053594624e-06, 'Rawlings': 4.107623008932437e-06, 'bandages': 3.2860984071459497e-06, 'coursing': 1.6430492035729749e-06, 'blood-soaked': 1.6430492035729749e-06, 'tidiness': 1.6430492035729749e-06, 'Poldowski': 1.6430492035729749e-06, 'effete': 1.6430492035729749e-06, 'shoelaces': 1.6430492035729749e-06, 'absurdly': 1.6430492035729749e-06, 'gauze': 1.6430492035729749e-06, 'detained': 1.6430492035729749e-06, 'freakish': 1.6430492035729749e-06, 'cavern': 1.6430492035729749e-06, 'blazer': 1.6430492035729749e-06, "Pietro's": 1.6430492035729749e-06, 'implausibly': 1.6430492035729749e-06, 'Pietro': 2.4645738053594624e-06, 'Ardmore': 1.6430492035729749e-06, 'Carrie': 1.6430492035729749e-06, 'purposeless': 1.6430492035729749e-06, 'Abruptly': 1.6430492035729749e-06, 'bumped': 2.4645738053594624e-06, 'intoxicated': 1.6430492035729749e-06, 'pinch-hit': 1.6430492035729749e-06, 'tactful': 2.4645738053594624e-06, 'bribe': 1.6430492035729749e-06, 'flyaway': 1.6430492035729749e-06, 'jollying': 1.6430492035729749e-06, 'Upstairs': 1.6430492035729749e-06, 'showering': 1.6430492035729749e-06, 'raindrops': 1.6430492035729749e-06, 'pattered': 1.6430492035729749e-06, 'prudent': 1.6430492035729749e-06, 'Websterville': 2.4645738053594624e-06, "Myra's": 4.107623008932437e-06, 'nervously': 3.2860984071459497e-06, 'child-cloud': 1.6430492035729749e-06, 'forever-Cathy': 1.6430492035729749e-06, 'moon-washed': 1.6430492035729749e-06, 'muddling': 1.6430492035729749e-06, 'clattering': 1.6430492035729749e-06, 'shape-up': 1.6430492035729749e-06, "Susan's": 2.4645738053594624e-06, 'outsized': 1.6430492035729749e-06, 'armload': 1.6430492035729749e-06, 'Scrooge-like': 1.6430492035729749e-06, "cousins'": 1.6430492035729749e-06, "Cathy's": 1.6430492035729749e-06, 'Lilliputian': 1.6430492035729749e-06, 'flower-scented': 1.6430492035729749e-06, 'good-by': 3.2860984071459497e-06, 'chillier': 1.6430492035729749e-06, 'raffish': 1.6430492035729749e-06, 'cowbirds': 3.2860984071459497e-06, 'vestments': 1.6430492035729749e-06, 'Goose': 2.4645738053594624e-06, 'hangers': 1.6430492035729749e-06, 'panicky': 1.6430492035729749e-06, 'napping': 1.6430492035729749e-06, 'Subdued': 1.6430492035729749e-06, 'merriest': 1.6430492035729749e-06, 'voiceless': 1.6430492035729749e-06, 'Puzzled': 1.6430492035729749e-06, 'moth': 1.6430492035729749e-06, 'seekingly': 1.6430492035729749e-06, 'Christmastime': 2.4645738053594624e-06, 'uncoiling': 1.6430492035729749e-06, 'to-and-fro': 1.6430492035729749e-06, "hall's": 1.6430492035729749e-06, 'purple-black': 1.6430492035729749e-06, "cowbirds'": 1.6430492035729749e-06, 'Cowbird': 1.6430492035729749e-06, 'teddy': 2.4645738053594624e-06, "aunt's": 1.6430492035729749e-06, 'Unimpressed': 1.6430492035729749e-06, 'plopped': 1.6430492035729749e-06, 'Quint': 9.85829522143785e-06, 'disbelieving': 1.6430492035729749e-06, 'Esperanza': 1.6430492035729749e-06, 'show-offy': 1.6430492035729749e-06, 'lifeguards': 1.6430492035729749e-06, "Quint's": 2.4645738053594624e-06, 'sherbet-colored': 1.6430492035729749e-06, 'Eats': 1.6430492035729749e-06, 'jiggling': 1.6430492035729749e-06, 'jaggedly': 1.6430492035729749e-06, 'dragon': 1.6430492035729749e-06, 'Canute': 1.6430492035729749e-06, 'Quintus': 3.2860984071459497e-06, 'vampires': 1.6430492035729749e-06, 'warty': 1.6430492035729749e-06, 'astronaut': 1.6430492035729749e-06, 'intrepid': 1.6430492035729749e-06, 'Fearless': 2.4645738053594624e-06, 'Fortman': 2.4645738053594624e-06, 'polio': 1.6430492035729749e-06, 'probly': 1.6430492035729749e-06, 'Fatso': 1.6430492035729749e-06, 'Stuck-up': 2.4645738053594624e-06, 'Gord': 2.4645738053594624e-06, 'zip': 1.6430492035729749e-06, 'unlaced': 1.6430492035729749e-06, 'Goolick': 1.6430492035729749e-06, 'goooolick': 1.6430492035729749e-06, 'gull': 1.6430492035729749e-06, 'peppermints': 2.4645738053594624e-06, 'shouders': 1.6430492035729749e-06, "squatter's": 1.6430492035729749e-06, 'Kansas-Nebraska': 1.6430492035729749e-06, 'Britches': 1.6430492035729749e-06, "Victoria's": 1.6430492035729749e-06, 'mama': 1.6430492035729749e-06, 'wop': 1.6430492035729749e-06, 'wops': 1.6430492035729749e-06, 'jeans': 1.6430492035729749e-06, 'Dingy-looking': 1.6430492035729749e-06, "cane's": 1.6430492035729749e-06, "Someone's": 1.6430492035729749e-06, 'zoooop': 1.6430492035729749e-06, 'bannnnnng': 1.6430492035729749e-06, 'stooooomp': 1.6430492035729749e-06, 'licking': 1.6430492035729749e-06, 'wire-haired': 1.6430492035729749e-06, 'mackerel': 2.4645738053594624e-06, 'jag': 1.6430492035729749e-06, 'yodeling': 2.4645738053594624e-06, 'Squint': 1.6430492035729749e-06, 'Sabella': 6.5721968142918994e-06, 'undying': 1.6430492035729749e-06, 'pugh': 1.6430492035729749e-06, 'Pugh': 1.6430492035729749e-06, 'Camels': 1.6430492035729749e-06, 'Tripoli': 1.6430492035729749e-06, 'harelips': 1.6430492035729749e-06, 'tinkers': 1.6430492035729749e-06, 'gypsies': 1.6430492035729749e-06, 'Jerez': 1.6430492035729749e-06, 'Artfully': 1.6430492035729749e-06, 'IQ': 1.6430492035729749e-06, '141': 1.6430492035729749e-06, 'Mushr': 1.6430492035729749e-06, 'Ozon': 1.6430492035729749e-06, 'encyclopedia': 1.6430492035729749e-06, 'schnooks': 1.6430492035729749e-06, 'tonsil': 2.4645738053594624e-06, 'Chinaman': 1.6430492035729749e-06, 'Tooth-hurty': 1.6430492035729749e-06, 'Encouraged': 1.6430492035729749e-06, 'snuck': 1.6430492035729749e-06, 'gumming': 1.6430492035729749e-06, 'stumpy': 1.6430492035729749e-06, 'admiringly': 1.6430492035729749e-06, 'cod': 1.6430492035729749e-06, 'encylopedia': 1.6430492035729749e-06, 'je': 1.6430492035729749e-06, 'ne': 1.6430492035729749e-06, 'quok': 1.6430492035729749e-06, 'daydreamed': 1.6430492035729749e-06, 'beseech': 1.6430492035729749e-06, 'raisin': 1.6430492035729749e-06, "one-o'clock": 1.6430492035729749e-06, 'Kool-Aid': 1.6430492035729749e-06, 'gagging': 1.6430492035729749e-06, 'Sweating': 1.6430492035729749e-06, 'Bobbie': 1.889506584108921e-05, 'Oakmont': 1.6430492035729749e-06, 'miswritten': 1.6430492035729749e-06, 'heartless': 1.6430492035729749e-06, "Hadn't": 1.6430492035729749e-06, 'Edythe': 1.232286902679731e-05, 'Mousie': 6.5721968142918994e-06, 'Allegheny': 1.6430492035729749e-06, 'debs': 2.4645738053594624e-06, 'crinkles': 1.6430492035729749e-06, 'John-and-Linda': 4.929147610718925e-06, 'Longue': 3.2860984071459497e-06, 'Vue': 3.2860984071459497e-06, 'Conneaut': 1.6430492035729749e-06, "lovers'": 1.6430492035729749e-06, 'spats': 1.6430492035729749e-06, 'Dillinger': 1.6430492035729749e-06, "Linda's": 3.2860984071459497e-06, "Horne's": 1.6430492035729749e-06, 'scatterbrained': 2.4645738053594624e-06, 'less-dramatic': 1.6430492035729749e-06, 'Sewickley': 1.6430492035729749e-06, 'grindstone': 1.6430492035729749e-06, 'cutest': 1.6430492035729749e-06, 'fontanel': 1.6430492035729749e-06, 'nary': 1.6430492035729749e-06, "Edythe's": 2.4645738053594624e-06, 'dizziness': 1.6430492035729749e-06, 'graham': 2.4645738053594624e-06, 'Webber': 1.6430492035729749e-06, 'bosoms': 1.6430492035729749e-06, 'whimpering': 1.6430492035729749e-06, 'overgenerous': 1.6430492035729749e-06, 'apparency': 1.6430492035729749e-06, 'hairpin': 1.6430492035729749e-06, 'Mont': 1.6430492035729749e-06, "could've": 1.6430492035729749e-06, "Bobbie's": 2.4645738053594624e-06, 'bone-deep': 1.6430492035729749e-06, 'Alloy': 1.6430492035729749e-06, 'steels': 3.2860984071459497e-06, 'MacIsaacs': 1.6430492035729749e-06, 'Lovejoy': 3.2860984071459497e-06, 'Carnegie-Illinois': 1.6430492035729749e-06, 'Stuart-family': 1.6430492035729749e-06, 'dragooned': 1.6430492035729749e-06, 'Murkland': 2.4645738053594624e-06, "John'll": 1.6430492035729749e-06, 'Furnaces': 1.6430492035729749e-06, 'meteoric': 1.6430492035729749e-06, 'baby-sitter': 1.6430492035729749e-06, 'Nadine': 1.4787442832156774e-05, 'Francie': 4.107623008932437e-06, "Thom's": 1.6430492035729749e-06, 'Thom': 4.929147610718925e-06, 'Wondering': 1.6430492035729749e-06, "Nadine's": 3.2860984071459497e-06, "Wally's": 3.2860984071459497e-06, 'Pack': 2.4645738053594624e-06, 'davenport': 2.4645738053594624e-06, 'Tea': 1.6430492035729749e-06, "Francie's": 1.6430492035729749e-06, 'televison-record': 1.6430492035729749e-06, 'traipsing': 1.6430492035729749e-06, 'Thankful': 1.6430492035729749e-06, 'Worst': 1.6430492035729749e-06, 'fretted': 1.6430492035729749e-06, 'Straightened': 1.6430492035729749e-06, 'snobs': 1.6430492035729749e-06, 'Virus': 1.6430492035729749e-06, 'no-good': 1.6430492035729749e-06, 'alibis': 1.6430492035729749e-06, 'black-balled': 1.6430492035729749e-06, 'sewed': 1.6430492035729749e-06, 'punks': 1.6430492035729749e-06, 'nine-to-five': 1.6430492035729749e-06, 'five-days-a-week': 1.6430492035729749e-06, 'Gladdy': 5.750672212505412e-06, 'orphanage': 1.6430492035729749e-06, 'boarding-home': 1.6430492035729749e-06, 'fonder': 1.6430492035729749e-06, "Gladdy's": 2.4645738053594624e-06, 'Michelson': 2.4645738053594624e-06, 'Fairview': 3.2860984071459497e-06, 'interns': 1.6430492035729749e-06, 'Ishii': 1.6430492035729749e-06, 'post-operative': 1.6430492035729749e-06, 'lulu': 1.6430492035729749e-06, 'alcoholism': 1.6430492035729749e-06, 'two-colored': 1.6430492035729749e-06, 'disquiet': 1.6430492035729749e-06, 'AA': 1.6430492035729749e-06, 'drawn-back': 1.6430492035729749e-06, 'bloodspots': 1.6430492035729749e-06, 'Groggins': 4.107623008932437e-06, 'Papanicolaou': 1.6430492035729749e-06, 'smear': 2.4645738053594624e-06, 'hysterectomy': 1.6430492035729749e-06, 'intraepithelial': 1.6430492035729749e-06, 'situ': 1.6430492035729749e-06, 'badgering': 1.6430492035729749e-06, "Bancroft's": 1.6430492035729749e-06, 'curettage': 1.6430492035729749e-06, 'coverlet': 2.4645738053594624e-06, 'guinea': 1.6430492035729749e-06, 'half-smile': 1.6430492035729749e-06, 'heart-stopping': 1.6430492035729749e-06, 'mockingly': 1.6430492035729749e-06, 'outta': 2.4645738053594624e-06, 'anesthetic': 1.6430492035729749e-06, 'yielding-Mediterranian-woman-': 1.6430492035729749e-06, 'metal-tasting': 1.6430492035729749e-06, 'aqua-lung': 1.6430492035729749e-06, 'duds': 1.6430492035729749e-06, 'bellyfull': 1.6430492035729749e-06, 'Orly': 1.6430492035729749e-06, 'Rhine-Main': 1.6430492035729749e-06, 'mist-like': 1.6430492035729749e-06, 'pocketful': 1.6430492035729749e-06, 'Champs': 2.4645738053594624e-06, 'Elysees': 2.4645738053594624e-06, 'Hun': 2.4645738053594624e-06, 'Bugatti': 1.6430492035729749e-06, 'Farina': 1.6430492035729749e-06, 'coachwork': 1.6430492035729749e-06, 'chassis': 1.6430492035729749e-06, 'Swallow': 1.6430492035729749e-06, 'A40-AjK': 1.6430492035729749e-06, 'Mercedes': 1.6430492035729749e-06, 'Arc': 1.6430492035729749e-06, 'Triomphe': 1.6430492035729749e-06, "d'Eiffel": 1.6430492035729749e-06, 'yokel': 1.6430492035729749e-06, "Maxim's": 1.6430492035729749e-06, 'Jour': 2.4645738053594624e-06, 'Nuit': 2.4645738053594624e-06, 'Montmartre': 2.4645738053594624e-06, 'noblesse': 1.6430492035729749e-06, 'oblige': 1.6430492035729749e-06, 'Panther': 1.6430492035729749e-06, 'Pils': 1.6430492035729749e-06, 'Tuborg': 1.6430492035729749e-06, 'crocked': 1.6430492035729749e-06, 'Capricorn': 1.6430492035729749e-06, 'Elemental': 1.6430492035729749e-06, 'flop': 1.6430492035729749e-06, 'binge': 1.6430492035729749e-06, 'Sometime': 2.4645738053594624e-06, 'topcoat': 2.4645738053594624e-06, 'derriere': 1.6430492035729749e-06, 'crumble': 1.6430492035729749e-06, 'tiredness': 1.6430492035729749e-06, 'Remy': 1.6430492035729749e-06, 'rotten': 2.4645738053594624e-06, 'drowsing': 1.6430492035729749e-06, 'Allons': 1.6430492035729749e-06, 'rime': 1.6430492035729749e-06, 'Bon': 2.4645738053594624e-06, 'jour': 2.4645738053594624e-06, "J'ai": 1.6430492035729749e-06, 'faim': 1.6430492035729749e-06, 'scald': 1.6430492035729749e-06, 'Suzanne': 1.6430492035729749e-06, 'les': 1.6430492035729749e-06, 'putains': 1.6430492035729749e-06, 'Louvre': 2.4645738053594624e-06, 'cabaret': 1.6430492035729749e-06, 'sommelier': 1.6430492035729749e-06, 'magnum': 1.6430492035729749e-06, 'steely': 1.6430492035729749e-06, 'Jeroboam': 1.6430492035729749e-06, 'Theresa': 2.0538115044662184e-05, 'Stubblefield': 4.107623008932437e-06, 'exhaustingly': 1.6430492035729749e-06, "shores'": 1.6430492035729749e-06, 'aqueducts': 1.6430492035729749e-06, 'Appian': 1.6430492035729749e-06, 'Colosseum': 2.4645738053594624e-06, 'Stubblefields': 4.107623008932437e-06, 'motorscooters': 1.6430492035729749e-06, 'Shoals': 2.4645738053594624e-06, 'azalea': 2.4645738053594624e-06, 'fuchsia': 1.6430492035729749e-06, 'palest': 1.6430492035729749e-06, 'portly': 1.6430492035729749e-06, 'well-bred': 1.6430492035729749e-06, 'parapets': 1.6430492035729749e-06, 'Content': 1.6430492035729749e-06, 'Elec': 8.215246017864873e-06, 'Carraway': 3.2860984071459497e-06, "t's": 1.6430492035729749e-06, "l's": 1.6430492035729749e-06, 'Tuxapoka': 4.929147610718925e-06, 'next-door': 1.6430492035729749e-06, 'di': 1.6430492035729749e-06, 'Spagna': 1.6430492035729749e-06, 'sweetpeas': 1.6430492035729749e-06, 'refolded': 1.6430492035729749e-06, "Elec's": 2.4645738053594624e-06, 'mammas': 1.6430492035729749e-06, "Emma's": 2.4645738053594624e-06, 'uttermost': 1.6430492035729749e-06, 'footstool': 1.6430492035729749e-06, 'heroically': 1.6430492035729749e-06, 'enamelled': 1.6430492035729749e-06, 'hiccups': 1.6430492035729749e-06, 'unamused': 1.6430492035729749e-06, 'round-eyed': 1.6430492035729749e-06, 'Rosie': 1.6430492035729749e-06, 'Whittaker': 1.6430492035729749e-06, 'sneezing': 1.6430492035729749e-06, 'unnaturally': 1.6430492035729749e-06, 'cameos': 1.6430492035729749e-06, 'Carrozza': 1.6430492035729749e-06, 'vendor': 1.6430492035729749e-06, 'well-dressed': 1.6430492035729749e-06, 'alligator': 4.107623008932437e-06, 'hinting': 1.6430492035729749e-06, 'Dinsmore': 1.6430492035729749e-06, 'diapiace': 1.6430492035729749e-06, 'insomma': 1.6430492035729749e-06, 'stealer': 1.6430492035729749e-06, '4000-plus': 1.6430492035729749e-06, 'Dolan': 2.4645738053594624e-06, "nobody'd": 1.6430492035729749e-06, "Christians'": 2.4645738053594624e-06, 'good-living': 1.6430492035729749e-06, "Lucille's": 1.6430492035729749e-06, 'trucker': 1.6430492035729749e-06, "folks'": 1.6430492035729749e-06, 'crackling': 1.6430492035729749e-06, 'smokes': 1.6430492035729749e-06, 'ticking': 1.6430492035729749e-06, 'swears': 1.6430492035729749e-06, 'noncommittally': 1.6430492035729749e-06, 'fierceness': 1.6430492035729749e-06, 'Astonishingly': 1.6430492035729749e-06, 'Mmm': 2.4645738053594624e-06, 'contentment': 1.6430492035729749e-06, "Idiot's": 1.6430492035729749e-06, 'upbringing': 1.6430492035729749e-06, "Johnnie's": 1.6430492035729749e-06, 'petted': 2.4645738053594624e-06, 'husband-stealer': 1.6430492035729749e-06, 'wondrous': 1.6430492035729749e-06, 'Faneuil': 1.6430492035729749e-06, 'Alma': 5.750672212505412e-06, 'pumpkin': 1.6430492035729749e-06, 'Schmalma': 1.6430492035729749e-06, 'ale': 1.6430492035729749e-06, "'most": 1.6430492035729749e-06, 'lubricated': 1.6430492035729749e-06, 'all-American-boy': 1.6430492035729749e-06, 'Astronaut': 1.6430492035729749e-06, 'two-burner': 1.6430492035729749e-06, 'lunatic': 1.6430492035729749e-06, 'bachelor-type': 1.6430492035729749e-06, 'eatables': 1.6430492035729749e-06, "Kirby's": 3.2860984071459497e-06, 'vitamin-and-iron': 1.6430492035729749e-06, 'Vivian': 9.85829522143785e-06, 'scalded': 1.6430492035729749e-06, 'Woods': 1.6430492035729749e-06, 'mockery': 2.4645738053594624e-06, 'odds-on': 1.6430492035729749e-06, 'black-and-yellow': 1.6430492035729749e-06, 'polka-dotted': 1.6430492035729749e-06, 'Three-day': 1.6430492035729749e-06, 'Pyhrric': 1.6430492035729749e-06, 'bake': 2.4645738053594624e-06, 'forbore': 1.6430492035729749e-06, 'Peony': 3.2860984071459497e-06, 'honeymooning': 1.6430492035729749e-06, "what's-his-name": 3.2860984071459497e-06, 'unalloyed': 1.6430492035729749e-06, 'leafed': 1.6430492035729749e-06, 'Bobbsey': 2.4645738053594624e-06, 'hoof-and-mouth': 1.6430492035729749e-06, 'long-hair': 1.6430492035729749e-06, 'squirt': 1.6430492035729749e-06, "Kissin'": 1.6430492035729749e-06, 'Kare': 1.6430492035729749e-06, 'swiping': 1.6430492035729749e-06, 'Ugh': 1.6430492035729749e-06, 'fast-frozen': 1.6430492035729749e-06, 'horse-blanket': 1.6430492035729749e-06, 'plaid': 1.6430492035729749e-06, 'splashy': 1.6430492035729749e-06, 'toilsome': 1.6430492035729749e-06, 'clattery': 1.6430492035729749e-06, 'mops': 1.6430492035729749e-06, "rain's": 1.6430492035729749e-06, 'scorcher': 1.6430492035729749e-06, 'Larkspur': 2.4645738053594624e-06, "kind's": 1.6430492035729749e-06, 'Run-down': 1.6430492035729749e-06, 'iron-poor': 1.6430492035729749e-06, 'Frail': 1.6430492035729749e-06, 'varicolored': 1.6430492035729749e-06, 'floodlit': 1.6430492035729749e-06, "flower's": 1.6430492035729749e-06, 'M-m-m': 1.6430492035729749e-06, 'ninety-six': 2.4645738053594624e-06, 'redheads': 1.6430492035729749e-06, 'browny': 1.6430492035729749e-06, 'browny-haired': 2.4645738053594624e-06, 'blondes': 1.6430492035729749e-06, 'bikinis': 1.6430492035729749e-06, 'dune': 1.6430492035729749e-06, 'turtle-neck': 1.6430492035729749e-06, 'not-so-pale': 1.6430492035729749e-06, 'moonlit': 2.4645738053594624e-06, 'filched': 1.6430492035729749e-06, "goodness'": 1.6430492035729749e-06, "Vivian's": 1.6430492035729749e-06, 'pajama': 1.6430492035729749e-06, 'Correspondence': 1.6430492035729749e-06, 'whitens': 1.6430492035729749e-06, 'Broiled': 1.6430492035729749e-06, 'Puny': 1.6430492035729749e-06, 'Surviving': 1.6430492035729749e-06, 'Speedy': 1.6430492035729749e-06, 'Canoe': 1.6430492035729749e-06, "Anniston's": 1.6430492035729749e-06, "Riverside's": 1.6430492035729749e-06, 'redheaded': 1.6430492035729749e-06, 'Rossoff': 5.750672212505412e-06, "Deegan's": 2.4645738053594624e-06, 'Deegan': 1.889506584108921e-05, 'punches': 1.6430492035729749e-06, 'dugout': 6.5721968142918994e-06, 'sonny': 1.6430492035729749e-06, 'Mind': 1.6430492035729749e-06, "fielder's": 1.6430492035729749e-06, "catcher's": 1.6430492035729749e-06, 'ballplayers': 3.2860984071459497e-06, 'hander': 1.6430492035729749e-06, 'hefty': 1.6430492035729749e-06, "batter's": 1.6430492035729749e-06, 'Ricco': 4.107623008932437e-06, "Phil's": 2.4645738053594624e-06, 'Haydon': 1.6430492035729749e-06, 'flat-footed': 1.6430492035729749e-06, 'Fights': 1.6430492035729749e-06, 'squelched': 1.6430492035729749e-06, 'sweatshirt': 2.4645738053594624e-06, 'helluva': 1.6430492035729749e-06, 'team-mate': 1.6430492035729749e-06, "Eddie's": 1.6430492035729749e-06, 'pro-ball': 1.6430492035729749e-06, 'Dazed': 1.6430492035729749e-06, "Baseball's": 1.6430492035729749e-06, 'ramming': 1.6430492035729749e-06, 'goddamit': 1.6430492035729749e-06, "Springfield's": 1.6430492035729749e-06, 'outfielders': 1.6430492035729749e-06, 'by-ways': 1.6430492035729749e-06, 'Lao-tse': 1.6430492035729749e-06, 'Mencius': 1.6430492035729749e-06, 'Suzuki': 1.6430492035729749e-06, 'tomes': 1.6430492035729749e-06, 'Krishnaists': 1.6430492035729749e-06, 'socio-archaeological': 1.6430492035729749e-06, 'Zend-Avesta': 1.6430492035729749e-06, 'Acala': 4.929147610718925e-06, 'Grinned': 1.6430492035729749e-06, 'bookish': 1.6430492035729749e-06, 'biwa': 8.215246017864873e-06, 'incarcerated': 1.6430492035729749e-06, 'dusted': 1.6430492035729749e-06, 'tea-drinking': 1.6430492035729749e-06, 'Ryusenji': 7.393721416078387e-06, 'Fudomae': 3.2860984071459497e-06, "Charlotte's": 3.2860984071459497e-06, 'flippant': 1.6430492035729749e-06, 'pointless': 1.6430492035729749e-06, 'Soba': 1.6430492035729749e-06, 'udon': 1.6430492035729749e-06, 'Sushi': 1.6430492035729749e-06, 'Sashimi': 1.6430492035729749e-06, 'Ceecee': 2.4645738053594624e-06, 'Witter': 1.6430492035729749e-06, 'Gompachi': 1.6430492035729749e-06, 'Komurasaki': 1.6430492035729749e-06, 'parkish': 1.6430492035729749e-06, 'Kanto': 1.6430492035729749e-06, 'Fudo': 6.5721968142918994e-06, 'bothersome': 1.6430492035729749e-06, 'ascetic': 1.6430492035729749e-06, 'spigots': 1.6430492035729749e-06, 'caged': 1.6430492035729749e-06, 'limpid': 1.6430492035729749e-06, 'fountain-falls': 1.6430492035729749e-06, 'hundred-yen': 1.6430492035729749e-06, "Fudo's": 2.4645738053594624e-06, 'stubble': 2.4645738053594624e-06, 'snow-fence': 1.6430492035729749e-06, 'lath': 2.4645738053594624e-06, 'furrow': 4.929147610718925e-06, 'multi-colored': 1.6430492035729749e-06, 'delicately': 2.4645738053594624e-06, 'jet-black': 1.6430492035729749e-06, 'fire-colored': 1.6430492035729749e-06, 'forepart': 1.6430492035729749e-06, 'fieldmice': 1.6430492035729749e-06, 'newly-plowed': 1.6430492035729749e-06, 'sun-burned': 1.6430492035729749e-06, 'paleness': 1.6430492035729749e-06, 'uncolored': 1.6430492035729749e-06, 'plowshares': 1.6430492035729749e-06, 'frenzied': 1.6430492035729749e-06, 'hunched-up': 1.6430492035729749e-06, 'frenetic': 1.6430492035729749e-06, 'savagery': 1.6430492035729749e-06, 'bubbly': 1.6430492035729749e-06, 'finely-spun': 1.6430492035729749e-06, 'effeminate': 1.6430492035729749e-06, 'eyelashes': 1.6430492035729749e-06, 'brushlike': 1.6430492035729749e-06, 'newly-scrubbed': 1.6430492035729749e-06, 'Snakes': 3.2860984071459497e-06, 'gray-looking': 1.6430492035729749e-06, 'beautifully-tapered': 1.6430492035729749e-06, 'vise': 1.6430492035729749e-06, 'splayed': 1.6430492035729749e-06, 'thickest': 1.6430492035729749e-06, 'ice-feeling': 1.6430492035729749e-06, 'tool-kit': 1.6430492035729749e-06, 'gleeful': 1.6430492035729749e-06, 'glee': 1.6430492035729749e-06, 'Cady': 2.300268885002165e-05, 'unglued': 1.6430492035729749e-06, 'Hanford': 1.3965918230370285e-05, 'alma': 1.6430492035729749e-06, 'mater': 1.6430492035729749e-06, 'snapper': 1.6430492035729749e-06, 'Partlow': 8.215246017864873e-06, 'reunions': 1.6430492035729749e-06, 'old-grad-type': 1.6430492035729749e-06, "Pete's": 1.6430492035729749e-06, 'politicking': 1.6430492035729749e-06, 'Height': 1.6430492035729749e-06, "6'": 1.6430492035729749e-06, 'Weight': 1.6430492035729749e-06, 'enrolling': 1.6430492035729749e-06, 'ruining': 1.6430492035729749e-06, 'soul-searching': 1.6430492035729749e-06, 'unsealed': 1.6430492035729749e-06, 'gasser': 1.6430492035729749e-06, 'pre-packed': 1.6430492035729749e-06, 'messing': 1.6430492035729749e-06, 'unease': 1.6430492035729749e-06, 'Weakness': 1.6430492035729749e-06, 'surcease': 1.6430492035729749e-06, 'navy-blue': 1.6430492035729749e-06, 'shag': 1.6430492035729749e-06, "Partlow's": 1.6430492035729749e-06, 'Hear': 2.4645738053594624e-06, 'straight-A': 1.6430492035729749e-06, 'antisocial': 2.4645738053594624e-06, 'book-lined': 1.6430492035729749e-06, 'Wrong': 1.6430492035729749e-06, "Dave's": 1.6430492035729749e-06, 'play-off': 1.6430492035729749e-06, 'Astronomy': 1.6430492035729749e-06, 'fishpond': 1.6430492035729749e-06, 'Crazy': 2.4645738053594624e-06, 'Colts': 2.4645738053594624e-06, 'mollified': 1.6430492035729749e-06, 'ham-radio': 1.6430492035729749e-06, 'hemming': 1.6430492035729749e-06, 'well-worn': 1.6430492035729749e-06, 'mailbox': 1.6430492035729749e-06, 'patina': 1.6430492035729749e-06, 'vertebrae': 1.6430492035729749e-06, 'unyielding': 1.6430492035729749e-06, 'invigorating': 1.6430492035729749e-06, 'neatness': 1.6430492035729749e-06, 'incongruity': 1.6430492035729749e-06, 'Quietly': 1.6430492035729749e-06, 'Anthea': 3.2860984071459497e-06, 'glissade': 1.6430492035729749e-06, 'ellipsis': 1.6430492035729749e-06, 'Brainards': 1.6430492035729749e-06, 'fumed': 1.6430492035729749e-06, 'titters': 1.6430492035729749e-06, 'whisperings': 1.6430492035729749e-06, 'scabrous': 1.6430492035729749e-06, 'gossiping': 1.6430492035729749e-06, 'hoarseness': 1.6430492035729749e-06, 'Angrily': 1.6430492035729749e-06, "bedroom's": 1.6430492035729749e-06, 'scattering': 1.6430492035729749e-06, 'Bizarre': 1.6430492035729749e-06, 'Alternately': 1.6430492035729749e-06, 'defeatism': 1.6430492035729749e-06, 'Instantaneously': 1.6430492035729749e-06, 'panties': 1.6430492035729749e-06, 'unruly': 1.6430492035729749e-06, 'underclothes': 1.6430492035729749e-06, 'nylon': 1.6430492035729749e-06, 'Extending': 1.6430492035729749e-06, 'A-Z': 4.929147610718925e-06, "nibs'": 1.6430492035729749e-06, "Hershey's": 1.6430492035729749e-06, 'Eddyman': 1.6430492035729749e-06, 'Freddy': 1.7252016637516235e-05, 'Gerry': 4.107623008932437e-06, 'Willis': 1.3965918230370285e-05, 'Zenith': 4.929147610718925e-06, 'vicissitudes': 1.6430492035729749e-06, "Freddy's": 4.107623008932437e-06, 'prospering': 1.6430492035729749e-06, 'competency': 1.6430492035729749e-06, "Willis'": 2.4645738053594624e-06, 'calculators': 1.6430492035729749e-06, 'Herberet': 3.2860984071459497e-06, 'coffers': 1.6430492035729749e-06, 'Allstates': 4.107623008932437e-06, 'medium-sized': 1.6430492035729749e-06, 'four-wheel-drive': 1.6430492035729749e-06, 'off-road': 1.6430492035729749e-06, 'over-large': 1.6430492035729749e-06, 'Cursed': 1.6430492035729749e-06, 'amalgamation': 1.6430492035729749e-06, "Herberet's": 1.6430492035729749e-06, "Allstates'": 1.6430492035729749e-06, 'sub-assembly': 1.6430492035729749e-06, 'ordnance': 1.6430492035729749e-06, 'complaisant': 1.6430492035729749e-06, 'Hamrick': 7.393721416078387e-06, 'compound-engine': 1.6430492035729749e-06, 'Richert': 4.929147610718925e-06, 'dampening': 1.6430492035729749e-06, 'fray': 1.6430492035729749e-06, 'patriarchy': 1.6430492035729749e-06, 'closeted': 1.6430492035729749e-06, "A-Z's": 1.6430492035729749e-06, "Hamrick's": 2.4645738053594624e-06, 'coincidental': 1.6430492035729749e-06, 'out-dated': 1.6430492035729749e-06, 'small-car': 1.6430492035729749e-06, 'Ticonderoga': 4.107623008932437e-06, 'broach': 1.6430492035729749e-06, 'dealerships': 1.6430492035729749e-06, 'gantlet': 2.4645738053594624e-06, 'incredulity': 1.6430492035729749e-06, 'low-priced': 1.6430492035729749e-06, 'chromed': 1.6430492035729749e-06, 'too-expensive': 1.6430492035729749e-06, 'Allstates-Zenith': 1.6430492035729749e-06, 'Heads': 1.6430492035729749e-06, 'availing': 1.6430492035729749e-06, 'disquietude': 1.6430492035729749e-06, 'Spike-haired': 1.6430492035729749e-06, 'red-faced': 1.6430492035729749e-06, 'decked': 1.6430492035729749e-06, 'horn-rimmed': 1.6430492035729749e-06, 'Hinkle': 1.6430492035729749e-06, 'Barco': 1.5608967433943262e-05, 'fancying': 1.6430492035729749e-06, 'Beard': 1.6430492035729749e-06, 'instigation': 1.6430492035729749e-06, "Barco's": 7.393721416078387e-06, 'Cal': 1.6430492035729749e-06, 'Ye': 1.6430492035729749e-06, 'Olde': 1.6430492035729749e-06, 'Gasse': 1.6430492035729749e-06, 'Avocado': 1.6430492035729749e-06, 'Capistrano': 1.6430492035729749e-06, 'By-the-Sea': 1.6430492035729749e-06, 'Drive-in': 1.6430492035729749e-06, 'tamale': 1.6430492035729749e-06, 'Glendale': 1.6430492035729749e-06, 'unhinged': 1.6430492035729749e-06, 'fainted': 1.6430492035729749e-06, 'lifelong': 1.6430492035729749e-06, 'Welch': 1.232286902679731e-05, 'mayorship': 1.6430492035729749e-06, "Welch's": 5.750672212505412e-06, 'shifty': 1.6430492035729749e-06, 'pooh-poohed': 1.6430492035729749e-06, 'Ridiculous': 1.6430492035729749e-06, 'cameramen': 1.6430492035729749e-06, 'matter-of-factness': 1.6430492035729749e-06, 'cortege': 1.6430492035729749e-06, 'Stopping': 1.6430492035729749e-06, 'shrub-covered': 1.6430492035729749e-06, 'quibs': 1.6430492035729749e-06, 'gibes': 1.6430492035729749e-06, 'digger': 2.4645738053594624e-06, "murderer's": 1.6430492035729749e-06, 'cahoots': 1.6430492035729749e-06, "Marshall's": 1.6430492035729749e-06, 'Viola': 9.85829522143785e-06, "Viola's": 4.107623008932437e-06, 'Romances': 1.6430492035729749e-06, 'Addict': 1.6430492035729749e-06, 'Downfall': 1.6430492035729749e-06, 'Idol': 1.6430492035729749e-06, 'overvaulting': 1.6430492035729749e-06, 'luckier': 1.6430492035729749e-06, 'unidentified': 1.6430492035729749e-06, 'prank': 1.6430492035729749e-06, 'Southland': 1.6430492035729749e-06, 'footwear': 1.6430492035729749e-06, 'commiserate': 1.6430492035729749e-06, 'Scandal': 2.4645738053594624e-06, 'snobbishly': 1.6430492035729749e-06, 'Czarship': 1.6430492035729749e-06, 'Angeles-Pasadena': 1.6430492035729749e-06, 'scions': 1.6430492035729749e-06, 'Budweisers': 1.6430492035729749e-06, 'Chalmers': 1.6430492035729749e-06, 'Heinzes': 1.6430492035729749e-06, 'pickles': 1.6430492035729749e-06, 'midsts': 1.6430492035729749e-06, 'Pickfair': 1.6430492035729749e-06, 'Doug': 1.6430492035729749e-06, 'hoi-polloi': 1.6430492035729749e-06, 'trump': 1.6430492035729749e-06, 'matrimonial': 1.6430492035729749e-06, 'chi-chi': 1.6430492035729749e-06, 'cosy': 1.6430492035729749e-06, 'chaperon': 1.6430492035729749e-06, 'hotbed': 1.6430492035729749e-06, 'ladle': 1.6430492035729749e-06, "cook's": 1.6430492035729749e-06, 'giblet': 1.6430492035729749e-06, 'asparagus': 1.6430492035729749e-06, 'sprig': 1.6430492035729749e-06, 'creamed': 1.6430492035729749e-06, "Beige's": 1.6430492035729749e-06, 'Jennie': 3.2860984071459497e-06, 'remoter': 1.6430492035729749e-06, "Jennie's": 1.6430492035729749e-06, "Miranda's": 1.6430492035729749e-06, 'screeches': 1.6430492035729749e-06, 'thuds': 1.6430492035729749e-06, 'gainer': 1.6430492035729749e-06, 'Resolving': 1.6430492035729749e-06, 'woolgather': 1.6430492035729749e-06, 'Catatonia': 6.5721968142918994e-06, 'Parvenu': 2.4645738053594624e-06, 'heiress': 1.6430492035729749e-06, 'dabbler': 1.6430492035729749e-06, 'honeymooned': 2.4645738053594624e-06, 'suburbia': 1.6430492035729749e-06, "gourmet's": 1.6430492035729749e-06, 'nonconformist': 1.6430492035729749e-06, 'knee-length': 2.4645738053594624e-06, 'plaids': 1.6430492035729749e-06, 'SS.': 1.6430492035729749e-06, "Fran's": 1.6430492035729749e-06, 'Baccarat': 1.6430492035729749e-06, 'marinated': 1.6430492035729749e-06, "Koussevitzky's": 1.6430492035729749e-06, 'marshmallows': 1.6430492035729749e-06, 'ruefulness': 1.6430492035729749e-06, 'souffle': 1.6430492035729749e-06, 'red-blooded': 1.6430492035729749e-06, 'valueless': 1.6430492035729749e-06, 'astringency': 1.6430492035729749e-06, 'Grazie': 4.107623008932437e-06, 'Gwen': 1.6430492035729749e-06, 'Cafritz': 1.6430492035729749e-06, "Francesca's": 1.6430492035729749e-06, 'Perle': 1.6430492035729749e-06, 'Mesta': 1.6430492035729749e-06, 'rivals': 1.6430492035729749e-06, 'unfunnily': 1.6430492035729749e-06, 'sarcastic': 1.6430492035729749e-06, 'ultra-modern': 1.6430492035729749e-06, 'housepaint': 1.6430492035729749e-06, 'hair-trigger': 1.6430492035729749e-06, 'zounds': 2.4645738053594624e-06, 'country-squirehood': 1.6430492035729749e-06, 'too-hearty': 1.6430492035729749e-06, 'misty-eyed': 1.6430492035729749e-06, 'unadulterated': 1.6430492035729749e-06, 'mistrusted': 2.4645738053594624e-06, 'Shops': 1.6430492035729749e-06, 'Pioneers': 1.6430492035729749e-06, 'homesteads': 1.6430492035729749e-06, 'pioneers': 2.4645738053594624e-06, 'gardeners': 1.6430492035729749e-06, 'parent-teacher': 1.6430492035729749e-06, '$85,000': 1.6430492035729749e-06, 'Daphne': 1.6430492035729749e-06, 'Maurier': 1.6430492035729749e-06, 'Kafka': 4.929147610718925e-06, 'Reverently': 1.6430492035729749e-06, 'Becoming': 1.6430492035729749e-06, 'Bananas': 1.6430492035729749e-06, "devil's-food": 1.6430492035729749e-06, 'icing': 1.6430492035729749e-06, 'snoop': 1.6430492035729749e-06, 'coast-to-coast': 1.6430492035729749e-06, 'pre-empting': 1.6430492035729749e-06, 'Cantor': 2.4645738053594624e-06, 'Merry-go-round': 1.6430492035729749e-06, 'Bowes': 1.6430492035729749e-06, 'larder': 1.6430492035729749e-06, 'ransacking': 1.6430492035729749e-06, 'barbarian': 1.6430492035729749e-06, 'Metronome': 2.4645738053594624e-06, 'sacking': 1.6430492035729749e-06, 'despoiling': 1.6430492035729749e-06, 'Bolshevistic': 1.6430492035729749e-06, 'iniquitous': 1.6430492035729749e-06, "Morris'": 1.6430492035729749e-06, 'relict': 1.6430492035729749e-06, 'stung': 2.4645738053594624e-06, 'hard-come-by': 1.6430492035729749e-06, 'leftist': 1.6430492035729749e-06, 'availed': 2.4645738053594624e-06, 'tigress': 1.6430492035729749e-06, 'toadies': 1.6430492035729749e-06, 'sycophants': 1.6430492035729749e-06, 'Portia': 1.6430492035729749e-06, 'grata': 1.6430492035729749e-06, "Poitrine's": 2.4645738053594624e-06, 'Belle': 1.6430492035729749e-06, 'Poitrine': 3.2860984071459497e-06, 'Caligula': 1.6430492035729749e-06, 'Nineveh': 1.6430492035729749e-06, 'prohibitive': 1.6430492035729749e-06, 'usurious': 1.6430492035729749e-06, 'notoriety': 1.6430492035729749e-06, 'baroness': 1.6430492035729749e-06, 'traitor': 1.6430492035729749e-06, 'Traitor': 1.6430492035729749e-06, 'ere': 1.6430492035729749e-06, 'Minute': 1.6430492035729749e-06, 'Fascio-Communist': 1.6430492035729749e-06, 'NRA': 1.6430492035729749e-06, 'PWA': 1.6430492035729749e-06, 'WPA': 1.6430492035729749e-06, 'CCC': 1.6430492035729749e-06, 'imperilled': 1.6430492035729749e-06, 'distractions': 1.6430492035729749e-06, 'unflagging': 1.6430492035729749e-06, 'stardom': 2.4645738053594624e-06, 'Letch': 1.6430492035729746e-05, 'thespians': 1.6430492035729749e-06, 'co-star': 1.6430492035729749e-06, 'helpmate': 1.6430492035729749e-06, 'sulks': 1.6430492035729749e-06, 'storming': 1.6430492035729749e-06, "Letch's": 2.4645738053594624e-06, 'dislocated': 1.6430492035729749e-06, 'monies': 1.6430492035729749e-06, 'gaming': 1.6430492035729749e-06, 'bookies': 2.4645738053594624e-06, 'commonest': 1.6430492035729749e-06, 'ungallant': 1.6430492035729749e-06, 'Baby-dear': 2.4645738053594624e-06, 'Belletch': 2.4645738053594624e-06, 'Feeley': 3.2860984071459497e-06, 'slights': 1.6430492035729749e-06, 'Trianon': 1.6430492035729749e-06, 'collation': 1.6430492035729749e-06, 'overcooked': 1.6430492035729749e-06, 'Aquacutie': 1.6430492035729749e-06, 'Epiphany': 1.6430492035729749e-06, 'Errol': 1.6430492035729749e-06, "Flynn's": 1.6430492035729749e-06, 'starlet': 2.4645738053594624e-06, 'Filmdom': 1.6430492035729749e-06, 'Astaires': 1.6430492035729749e-06, 'Colmans': 1.6430492035729749e-06, 'Rathbones': 1.6430492035729749e-06, 'Taylors': 1.6430492035729749e-06, 'Thalbergs': 1.6430492035729749e-06, 'Barrymores': 1.6430492035729749e-06, 'Crosbys': 1.6430492035729749e-06, 'screenland': 1.6430492035729749e-06, 'Sainted': 1.6430492035729749e-06, 'Cabrini': 4.107623008932437e-06, 'beatification': 1.6430492035729749e-06, 'dens': 1.6430492035729749e-06, 'deigned': 1.6430492035729749e-06, 'tasteless': 1.6430492035729749e-06, 'unfunny': 1.6430492035729749e-06, 'over-spent': 1.6430492035729749e-06, 'farmed': 1.6430492035729749e-06, 'Diet': 1.6430492035729749e-06, 'Worms': 1.6430492035729749e-06, 'Gauntley': 1.6430492035729749e-06, 'Marquess': 1.6430492035729749e-06, 'inherits': 1.6430492035729749e-06, 'moors': 1.6430492035729749e-06, 'unbeknownst': 1.6430492035729749e-06, 'shoestring': 1.6430492035729749e-06, 'unrepentant': 1.6430492035729749e-06, 'Momma': 2.4645738053594624e-06, 'Bookies': 1.6430492035729749e-06, 'make-ready': 1.6430492035729749e-06, 'romping': 1.6430492035729749e-06, 'yelping': 1.6430492035729749e-06, 'fret': 1.6430492035729749e-06, 'perfectionists': 1.6430492035729749e-06, 'polishing': 2.4645738053594624e-06, 'lizards': 1.6430492035729749e-06, 'dial': 1.6430492035729749e-06, "Bradley's": 1.6430492035729749e-06, 'Hardware': 1.6430492035729749e-06, "carpenter's": 1.6430492035729749e-06, 'babbiting': 1.6430492035729749e-06, 'doweling': 1.6430492035729749e-06, 'pegboard': 5.750672212505412e-06, 'workbench': 7.393721416078387e-06, 'sandpaper': 1.6430492035729749e-06, 'Jinny': 1.6430492035729749e-06, 'two-by-fours': 1.6430492035729749e-06, 'Crombie': 9.85829522143785e-06, 'assortment': 1.6430492035729749e-06, 'Crumb': 3.2860984071459497e-06, 'worktable': 1.6430492035729749e-06, 'handyman-carpenter': 1.6430492035729749e-06, 'Carpenters': 1.6430492035729749e-06, 'Blatz': 8.215246017864873e-06, 'Smithtown': 1.6430492035729749e-06, "Crombie's": 1.6430492035729749e-06, 'Highfield': 1.6430492035729749e-06, "Blatz's": 1.6430492035729749e-06, 'pegboards': 2.4645738053594624e-06, 'shipshape': 1.6430492035729749e-06, "'ceptin'": 1.6430492035729749e-06, 'contraptions': 1.6430492035729749e-06, 'Doors': 1.6430492035729749e-06, 'Ambiguity': 3.2860984071459497e-06, 'Brinsley': 1.6430492035729749e-06, 'rhetoricians': 1.6430492035729749e-06, 'amphibology': 1.6430492035729749e-06, 'parisology': 1.6430492035729749e-06, 'ologies': 1.6430492035729749e-06, 'misinterpreters': 1.6430492035729749e-06, 'misunderstanders': 1.6430492035729749e-06, 'misdirectors': 1.6430492035729749e-06, 'baffle': 1.6430492035729749e-06, 'interweaving': 1.6430492035729749e-06, 'jest': 1.6430492035729749e-06, 'sours': 1.6430492035729749e-06, 'non-repetitious': 1.6430492035729749e-06, 'girl-friend': 1.6430492035729749e-06, 'misquoted': 1.6430492035729749e-06, 'stumped': 1.6430492035729749e-06, 'biter': 1.6430492035729749e-06, 'grammarians': 1.6430492035729749e-06, 'wooden-leg': 1.6430492035729749e-06, 'gagwriters': 1.6430492035729749e-06, 'gagline': 1.6430492035729749e-06, 'snapshots': 1.6430492035729749e-06, 'Classified': 1.6430492035729749e-06, 'chockfull': 1.6430492035729749e-06, 'misrelated': 1.6430492035729749e-06, 'Shapes': 1.6430492035729749e-06, 'bathtubs': 1.6430492035729749e-06, 'Couple': 1.6430492035729749e-06, 'modifiers': 2.4645738053594624e-06, 'headlinese': 1.6430492035729749e-06, 'schooldays': 1.6430492035729749e-06, "caterer's": 1.6430492035729749e-06, 'semi-ambiguous': 1.6430492035729749e-06, 'journalese': 2.4645738053594624e-06, 'gags': 2.4645738053594624e-06, 'rumpus': 1.6430492035729749e-06, 'Strangely': 1.6430492035729749e-06, 'lumbar': 1.6430492035729749e-06, 'misconstructions': 1.6430492035729749e-06, 'anatomicals': 1.6430492035729749e-06, 'gourmet': 2.4645738053594624e-06, 'demurred': 1.6430492035729749e-06, 'double-entendre': 2.4645738053594624e-06, 'saleslady': 3.2860984071459497e-06, 'Madam': 1.6430492035729749e-06, 'woolly-minded': 1.6430492035729749e-06, 'indefinity': 1.6430492035729749e-06, "clergyman's": 1.6430492035729749e-06, 'Dearly': 1.6430492035729749e-06, 'So-so': 1.6430492035729749e-06, 'maxim': 1.6430492035729749e-06, 'Indefinite': 1.6430492035729749e-06, 'double-meaning': 1.6430492035729749e-06, 'undertaker': 1.6430492035729749e-06, 'soulfully': 1.6430492035729749e-06, 'Replies': 1.6430492035729749e-06, 'equivocal': 1.6430492035729749e-06, 'it-wit': 1.6430492035729749e-06, 'It-wit': 1.6430492035729749e-06, 'misnomer': 1.6430492035729749e-06, 'Moreland': 1.4787442832156774e-05, 'Anglo-American': 2.4645738053594624e-06, 'fairy-tale': 1.6430492035729749e-06, 'Upson': 1.6430492035729749e-06, 'peacocks': 3.2860984071459497e-06, 'careerism': 1.6430492035729749e-06, "bee's": 1.6430492035729749e-06, 'Horror': 1.6430492035729749e-06, 'Comics': 1.6430492035729749e-06, 'Zeitgeist': 1.6430492035729749e-06, 'loon': 1.6430492035729749e-06, 'hare': 1.6430492035729749e-06, 'manic': 2.4645738053594624e-06, 'paraphrasing': 1.6430492035729749e-06, 'paraphrase': 2.4645738053594624e-06, 'walrus': 1.6430492035729749e-06, 'dooms': 1.6430492035729749e-06, 'commoners': 1.6430492035729749e-06, 'Traits': 1.6430492035729749e-06, 'Foreigners': 2.4645738053594624e-06, 'non-books': 1.6430492035729749e-06, 'non-writers': 1.6430492035729749e-06, 'non-publishers': 1.6430492035729749e-06, 'non-readers': 1.6430492035729749e-06, 'non-fiction': 3.2860984071459497e-06, 'nonism': 1.6430492035729749e-06, 'sit-down': 1.6430492035729749e-06, 'noisier': 1.6430492035729749e-06, 'non-English': 1.6430492035729749e-06, 'Cryptic': 1.6430492035729749e-06, 'Angst': 2.4645738053594624e-06, 'retrogressive': 1.6430492035729749e-06, 'Dilys': 1.6430492035729749e-06, 'beholds': 1.6430492035729749e-06, 'daffodils': 1.6430492035729749e-06, 'Galahad': 1.6430492035729749e-06, 'knightly': 1.6430492035729749e-06, 'Longfellow': 1.6430492035729749e-06, 'co-existence': 1.6430492035729749e-06, 'co-extinction': 1.6430492035729749e-06, 'theatres': 1.6430492035729749e-06, 're-explore': 1.6430492035729749e-06, 'antic': 1.6430492035729749e-06, 'drawing-rooms': 1.6430492035729749e-06, 'Anglo-Americans': 1.6430492035729749e-06, 'tragicomic': 1.6430492035729749e-06, 'brothel': 1.6430492035729749e-06, 'dustbin': 1.6430492035729749e-06, 'living-room': 1.6430492035729749e-06, 'Furiouser': 1.6430492035729749e-06, 'furiouser': 1.6430492035729749e-06, 'clinked': 1.6430492035729749e-06, 'Toujours': 1.6430492035729749e-06, 'gai': 1.6430492035729749e-06, "Marquis'": 1.6430492035729749e-06, 'Mehitabel': 1.6430492035729749e-06, 'non-institutionalized': 1.6430492035729749e-06, 'saner': 1.6430492035729749e-06, 'ba-a-a': 1.6430492035729749e-06, 'non-nonsense': 1.6430492035729749e-06, 'Rhinoceros': 1.6430492035729749e-06, 'rhinos': 2.4645738053594624e-06, 'Non-God': 1.6430492035729749e-06, 'anti-personality': 1.6430492035729749e-06, 'Wynn': 1.6430492035729749e-06, 'non-God': 1.6430492035729749e-06, 'restively': 1.6430492035729749e-06, 'fancy-free': 1.6430492035729749e-06, 'screw-loose': 1.6430492035729749e-06, 'frenzy-free': 1.6430492035729749e-06, 'tube-nosed': 1.6430492035729749e-06, 'disbelieves': 1.6430492035729749e-06, 'Eddies': 1.6430492035729749e-06, 'frog-eating': 1.6430492035729749e-06, 'Gott': 1.6430492035729749e-06, 'strafe': 2.4645738053594624e-06, 'Angleterre': 1.6430492035729749e-06, 'Carthago': 1.6430492035729749e-06, 'delenda': 1.6430492035729749e-06, 'Deus': 1.6430492035729749e-06, 'Carthage': 1.6430492035729749e-06, 'ideologist': 1.6430492035729749e-06, 'paranoiac': 1.6430492035729749e-06, 'manic-depressive': 1.6430492035729749e-06, 'corrupts': 1.6430492035729749e-06, 'nooks': 1.6430492035729749e-06, 'non-poetry': 1.6430492035729749e-06, "Burnside's": 4.107623008932437e-06, "policeman's": 1.6430492035729749e-06, 'tumbles': 1.6430492035729749e-06, 'unco-operative': 1.6430492035729749e-06, 'twirlingly': 1.6430492035729749e-06, 'somersaults': 2.4645738053594624e-06, 'warm-up': 1.6430492035729749e-06, 'cooked-over': 1.6430492035729749e-06, 'oatmeal': 1.6430492035729749e-06, 'gaspingly': 1.6430492035729749e-06, 'funnier': 1.6430492035729749e-06, 'Minks': 1.6430492035729749e-06, 'chorused': 1.6430492035729749e-06, "Arlene's": 1.6430492035729749e-06, 'bangish': 1.6430492035729749e-06, 'radish': 7.393721416078387e-06, 'finger-held': 1.6430492035729749e-06, 'ladylike': 1.6430492035729749e-06, 'somersaulting': 1.6430492035729749e-06, 'pamper': 1.6430492035729749e-06, 'middles': 1.6430492035729749e-06, 'laughingly': 1.6430492035729749e-06, 'Gorboduc': 6.5721968142918994e-06, 'ceremonially': 1.6430492035729749e-06, 'horselike': 1.6430492035729749e-06, 'balkiness': 1.6430492035729749e-06, 'coconut-containing': 1.6430492035729749e-06, 'convulsed': 1.6430492035729749e-06, 'wheezes': 1.6430492035729749e-06, 'over-pretended': 1.6430492035729749e-06, 'perpetration': 1.6430492035729749e-06, 'rakishly': 1.6430492035729749e-06, 'rollickingly': 1.6430492035729749e-06, 'eye-beamings': 1.6430492035729749e-06, 'Pueri': 1.6430492035729749e-06, 'aquam': 1.6430492035729749e-06, 'silvas': 1.6430492035729749e-06, 'agricolas': 1.6430492035729749e-06, 'portant': 1.6430492035729749e-06, 'vignette': 1.6430492035729749e-06, 'pre-Punic': 1.6430492035729749e-06, 'fifty-third': 1.6430492035729749e-06, 'affianced': 1.6430492035729749e-06, 'cancels': 1.6430492035729749e-06, 'buckling': 1.6430492035729749e-06, 'scimitar': 1.6430492035729749e-06, 'stumbles': 1.6430492035729749e-06, "Opera's": 1.6430492035729749e-06, "Spumoni's": 1.6430492035729749e-06, 'Sevigli': 1.6430492035729749e-06, 'del': 1.6430492035729749e-06, 'Spegititgninino': 1.6430492035729749e-06, 'contralto': 1.6430492035729749e-06, 'Hattie': 1.6430492035729749e-06, 'Sforzt': 1.6430492035729749e-06, 'Prometheus': 1.6430492035729749e-06, 'Leather': 1.6430492035729749e-06, 'Conduit': 1.6430492035729749e-06, 'Hubba': 1.6430492035729749e-06, 'hubba': 1.6430492035729749e-06, 'Yalagaloo': 1.6430492035729749e-06, 'overture': 1.6430492035729749e-06, 'Ranavan': 1.6430492035729749e-06, 'armadillo': 2.4645738053594624e-06, 'atonally': 1.6430492035729749e-06, 'Grunnfeu': 1.6430492035729749e-06, 'Arapacis': 2.4645738053594624e-06, 'Serbantian': 1.6430492035729749e-06, 'invocation': 1.6430492035729749e-06, 'Phineoppus': 1.6430492035729749e-06, 'Gorshek': 1.6430492035729749e-06, 'symbolizing': 2.4645738053594624e-06, 'Lust': 1.6430492035729749e-06, 'vanishes': 1.6430492035729749e-06, 'Shuz': 1.6430492035729749e-06, 'sidesteps': 1.6430492035729749e-06, 'gooshey': 1.6430492035729749e-06, 'ad-lib': 1.6430492035729749e-06, 'Dharma': 1.6430492035729749e-06, 'Eurasian': 1.6430492035729749e-06, 'proto-senility': 1.6430492035729749e-06, 'visrhanik': 1.6430492035729749e-06, 'bantered': 1.6430492035729749e-06, 'bouanahsha': 1.6430492035729749e-06, 'salivate': 1.6430492035729749e-06, 'pratakku': 1.6430492035729749e-06, 'sweathruna': 1.6430492035729749e-06, 'tongue-twister': 1.6430492035729749e-06, 'nnuolapertar-it-vuh-karti-birifw-': 1.6430492035729749e-06, 'Bathar-on-Walli': 1.6430492035729749e-06, 'Province': 1.6430492035729749e-06, 'spouting': 1.6430492035729749e-06, "Pockmanster's": 1.6430492035729749e-06, 'Neitzbohr': 4.107623008932437e-06, 'Jungian': 1.6430492035729749e-06, 'Meinckian': 1.6430492035729749e-06, 'Wilhelmina': 2.4645738053594624e-06, 'flashback': 1.6430492035729749e-06, 'middle-Gaelic': 1.6430492035729749e-06, 'derivations': 1.6430492035729749e-06, 'slat': 2.4645738053594624e-06, 'Reichstag': 1.6430492035729749e-06, 'expunge': 1.6430492035729749e-06, 'punishing': 1.6430492035729749e-06, 'shatters': 1.6430492035729749e-06, 'much-needed': 1.6430492035729749e-06, 'movie-goer': 1.6430492035729749e-06, 'Bini': 1.6430492035729749e-06, 'SalFininistas': 2.4645738053594624e-06, 'Ab63711-r': 1.6430492035729749e-06, 'Brest-Silevniov': 1.6430492035729749e-06, 'purgatory': 1.6430492035729749e-06, 'Schlek': 2.4645738053594624e-06, 'Neurenschatz': 1.6430492035729749e-06, 'Skolkau': 1.6430492035729749e-06, 'Baslot': 2.4645738053594624e-06, 'Rattzhenfuut': 1.6430492035729749e-06, 'Tschilwyk': 1.6430492035729749e-06, 'flautist': 1.6430492035729749e-06, 'Haumd': 1.6430492035729749e-06, "Haumd's": 1.6430492035729749e-06, 'F-major': 1.6430492035729749e-06, 'fingerings': 1.6430492035729749e-06, "flautist's": 1.6430492035729749e-06, 'heavy-handed': 1.6430492035729749e-06, 'inspirational': 1.6430492035729749e-06, 'non-dramas': 1.6430492035729749e-06, 'bittersweet': 1.6430492035729749e-06, 'theatregoer': 1.6430492035729749e-06, "Basho's": 1.6430492035729749e-06, 'frog-haiku': 1.6430492035729749e-06, 'Entwhistle': 1.6430492035729749e-06, 'amateurishness': 1.6430492035729749e-06, 'offbeat': 1.6430492035729749e-06, 'intruding': 1.6430492035729749e-06, 'lemon-meringue': 1.6430492035729749e-06, 'muffins': 1.6430492035729749e-06, 'Rilke': 1.6430492035729749e-06, 'unpretentious': 1.6430492035729749e-06, 'Aging': 1.6430492035729749e-06, 'enfant': 1.6430492035729749e-06, 'Francoisette': 1.6430492035729749e-06, 'Lagoon': 2.4645738053594624e-06, 'scenario': 1.6430492035729749e-06, 'Lascivious': 1.6430492035729749e-06, 'Interlude': 1.6430492035729749e-06, 'trip-hammer': 1.6430492035729749e-06, 'pithy': 1.6430492035729749e-06, 'all-pervading': 1.6430492035729749e-06, 'hollowness': 1.6430492035729749e-06, 'Mlle': 1.6430492035729749e-06, 'Petite': 1.6430492035729749e-06, 'Chadroe': 1.6430492035729749e-06, 'engagingly': 1.6430492035729749e-06, 'Bambi': 1.6430492035729749e-06, "Fink's": 1.6430492035729749e-06, 'understated': 1.6430492035729749e-06, 'Quizzical': 1.6430492035729749e-06, 'Salamander': 1.6430492035729749e-06, 'salamander': 1.6430492035729749e-06, 'Alicia': 4.107623008932437e-06, 'tragically': 1.6430492035729749e-06, "Parkinson's": 1.6430492035729749e-06, 'mah-jongg': 1.6430492035729749e-06, 'Fing': 2.4645738053594624e-06, 'Pulova': 2.4645738053594624e-06, 'Hardwicke': 1.6430492035729749e-06, 'Nabisco': 1.6430492035729749e-06, 'bout-de-souffle': 1.6430492035729749e-06, 'leitmotiv': 1.6430492035729749e-06, 'Mudugno': 1.6430492035729749e-06, 'Volare': 1.6430492035729749e-06, 'opalescent': 1.6430492035729749e-06, 'fascinatingly': 1.6430492035729749e-06, 'Rosalie': 1.6430492035729749e-06, 'beat-up': 1.6430492035729749e-06, 'jeunes': 1.6430492035729749e-06, 'Cause': 1.6430492035729749e-06, 'pug-nosed': 1.6430492035729749e-06, 'Jean-Pierre': 1.6430492035729749e-06, 'Bravado': 2.4645738053594624e-06, 'Bogartian': 1.6430492035729749e-06, 'Tasti-Freeze': 1.6430492035729749e-06, 'New-Waver': 1.6430492035729749e-06, 'Fredrico': 1.6430492035729749e-06, "Rossilini's": 1.6430492035729749e-06, 'Sour': 1.6430492035729749e-06, 'Sponge': 1.6430492035729749e-06, 'crackles': 1.6430492035729749e-06, 'Soaring': 1.6430492035729749e-06, 'Margo': 1.6430492035729749e-06, 'Felicity': 1.6430492035729749e-06, 'Brighetti': 1.6430492035729749e-06, 'curvaceously': 1.6430492035729749e-06, 'drib-drool': 1.6430492035729749e-06, 'sophisticates': 1.6430492035729749e-06, 'Expressionism': 1.6430492035729749e-06, 'Vindication': 1.6430492035729749e-06, "Quasimodo's": 2.4645738053594624e-06, 'Guggenheim': 1.6430492035729749e-06, 'Quasimodo': 3.2860984071459497e-06, 'Kandinsky': 1.6430492035729749e-06, 'blossomed': 1.6430492035729749e-06, 'Kline': 1.6430492035729749e-06, 'inexpressible': 1.6430492035729749e-06, 'unpaintable': 1.6430492035729749e-06, 'non-time': 1.6430492035729749e-06, 'unwaivering': 1.6430492035729749e-06, 'Invasion': 1.6430492035729749e-06, 'non-color': 1.6430492035729749e-06, 'chiding': 1.6430492035729749e-06, 'jocose': 1.6430492035729749e-06, 'reliably': 1.6430492035729749e-06, 'argot': 1.6430492035729749e-06, 'hot-slough': 1.6430492035729749e-06, 'prowlers': 1.6430492035729749e-06, 'taunting': 1.6430492035729749e-06, 'etymological': 1.6430492035729749e-06, 'rifling': 1.6430492035729749e-06, 'whimper': 1.6430492035729749e-06, 'objets': 1.6430492035729749e-06, "d'art": 1.6430492035729749e-06, 'rectitude': 1.6430492035729749e-06, 'malign': 1.6430492035729749e-06, 'recapitulate': 1.6430492035729749e-06, 'Hostaria': 1.6430492035729749e-06, 'Orso': 1.6430492035729749e-06, 'jimmied': 1.6430492035729749e-06, 'Hastening': 1.6430492035729749e-06, 'khaki': 1.6430492035729749e-06, 'eludes': 1.6430492035729749e-06, 'Victrola': 1.6430492035729749e-06, 'tangos': 1.6430492035729749e-06, 'paso': 1.6430492035729749e-06, 'doble': 1.6430492035729749e-06, 'glommed': 1.6430492035729749e-06, 'curio': 2.4645738053594624e-06, 'snuffboxes': 1.6430492035729749e-06, 'jade-handled': 1.6430492035729749e-06, 'sandalwood': 1.6430492035729749e-06, 'Kodaks': 1.6430492035729749e-06, 'afghan': 1.6430492035729749e-06, 'lammed': 1.6430492035729749e-06, 'constables': 1.6430492035729749e-06, 'Javert': 1.6430492035729749e-06, 'gird': 1.6430492035729749e-06, 'effloresce': 1.6430492035729749e-06, 'frambesia': 1.6430492035729749e-06, 'clonic': 1.6430492035729749e-06, 'curtain-raiser': 1.6430492035729749e-06, 'Occidental': 1.6430492035729749e-06, 'delimit': 1.6430492035729749e-06, 'affronted': 1.6430492035729749e-06, 'heisted': 1.6430492035729749e-06, 'obsidian': 1.6430492035729749e-06, 'statuette': 1.6430492035729749e-06, 'earth-touching': 1.6430492035729749e-06, 'Dying': 1.6430492035729749e-06, 'teakwood': 1.6430492035729749e-06, 'Jehovah': 1.6430492035729749e-06, 'Allah': 1.6430492035729749e-06, "'fess": 1.6430492035729749e-06, 'maltreat': 1.6430492035729749e-06, 'Presence': 1.6430492035729749e-06, 'jokers': 1.6430492035729749e-06, 'Khmer': 1.6430492035729749e-06, 'Musee': 1.6430492035729749e-06, 'Guimet': 1.6430492035729749e-06, 'Salpetriere': 1.6430492035729749e-06, 'leprosy': 1.6430492035729749e-06, "Hell's": 1.6430492035729749e-06, 'chaulmoogra': 1.6430492035729749e-06, 'fantods': 1.6430492035729749e-06, 'imploring': 1.6430492035729749e-06, 'desecration': 1.6430492035729749e-06, 'Sudanese': 1.6430492035729749e-06, 'juju': 1.6430492035729749e-06, 'livers': 1.6430492035729749e-06, 'Khartoum': 1.6430492035729749e-06, 'provenance': 1.6430492035729749e-06, 'applejack': 1.6430492035729749e-06, 'Ganessa': 1.6430492035729749e-06, 'Siva': 1.6430492035729749e-06, 'Krishna': 1.6430492035729749e-06, 'Travancore': 1.6430492035729749e-06, 'subcontinent': 1.6430492035729749e-06, 'Kali': 1.6430492035729749e-06, 'worshiped': 1.6430492035729749e-06, 'Thuggee': 1.6430492035729749e-06, 'Nuf': 1.6430492035729749e-06, 'amulet': 1.6430492035729749e-06, 'housebreakers': 1.6430492035729749e-06, 'mem': 1.6430492035729749e-06, 'rajah': 1.6430492035729749e-06, 'Inscribed': 1.6430492035729749e-06, 'Balinese': 1.6430492035729749e-06, 'Tjokorda': 1.6430492035729749e-06, 'Agoeng': 1.6430492035729749e-06, 'Whosoever': 1.6430492035729749e-06, 'rooftree': 1.6430492035729749e-06, 'cocu': 1.6430492035729749e-06, 'fishmongers': 1.6430492035729749e-06, 'vandals': 1.6430492035729749e-06, 'forty-fifth': 1.6430492035729749e-06, 'pap': 1.6430492035729749e-06, 'gorging': 1.6430492035729749e-06, 'pinball': 1.6430492035729749e-06, 'Ubermenschen': 1.6430492035729749e-06, 'befell': 1.6430492035729749e-06, 'wisenheimer': 1.6430492035729749e-06, 'joss': 1.6430492035729749e-06, 'Bombay': 1.6430492035729749e-06, 'garlanded': 1.6430492035729749e-06, 'cartons': 1.6430492035729749e-06, 'yapping': 1.6430492035729749e-06, 'scarify': 1.6430492035729749e-06, 'areaways': 1.6430492035729749e-06, 'exasperate': 1.6430492035729749e-06, 'Evenings': 1.6430492035729749e-06, "Paglieri's": 1.6430492035729749e-06, 'Backyard': 1.6430492035729749e-06, 'donning': 1.6430492035729749e-06, 'Sole': 1.6430492035729749e-06, 'Mio': 1.6430492035729749e-06, 'arboreal': 1.6430492035729749e-06, 'chivying': 1.6430492035729749e-06, 'retaliate': 1.6430492035729749e-06, 'stubbed': 1.6430492035729749e-06, 'contentedly': 1.6430492035729749e-06, 'tallow': 1.6430492035729749e-06, 'crisscrossed': 1.6430492035729749e-06, 'Spector': 1.6430492035729749e-06, 'process-server': 1.6430492035729749e-06, 'Grimesby': 1.6430492035729749e-06, "Roylott's": 1.6430492035729749e-06, 'speckled': 1.6430492035729749e-06, 'incubi': 1.6430492035729749e-06, 'masterly': 1.6430492035729749e-06, 'beggary': 1.6430492035729749e-06, 'hubris': 1.6430492035729749e-06, 'plumbed': 1.6430492035729749e-06, 'bathos': 1.6430492035729749e-06, 'besmirched': 1.6430492035729749e-06, 'extremis': 1.6430492035729749e-06, 'pityingly': 1.6430492035729749e-06, 'horoscope': 1.6430492035729749e-06, 'sidle': 1.6430492035729749e-06, 'Bodhisattva': 1.6430492035729749e-06, 'hors': 1.6430492035729749e-06, 'yaws': 1.6430492035729749e-06, 'fluke': 1.6430492035729749e-06, 'bilharziasis': 1.6430492035729749e-06, 'Compassionately': 1.6430492035729749e-06, 'Perelman': 1.6430492035729749e-06, 'exhaling': 1.6430492035729749e-06, 'aviary': 1.6430492035729749e-06, 'olive-flushed': 1.6430492035729749e-06, 'coral-colored': 1.6430492035729749e-06, 'boucle': 1.6430492035729749e-06, 'stupefying': 1.6430492035729749e-06}
In [20]:
smoothedBigramCounter = {}
totalBigramTypes = len(tokenBigramCount)
for bigram in tokenBigramCount:
    token1Freq = tokenCounter[bigram[0]]
    smoothedBigramCounter[bigram] = (tokenBigramCount[bigram] + 1) / (token1Freq + totalBigramTypes)
print(list(smoothedBigramCounter.values())[:20])
[4.324090589697854e-06, 1.537501866966553e-05, 4.3922064688416876e-06, 6.589279242672173e-06, 4.392987912693758e-06, 1.0935893790599507e-05, 4.3924476255526246e-06, 1.7436449590134456e-05, 3.514089301794382e-05, 4.070443088082353e-06, 4.392987912693758e-06, 4.391415660666529e-06, 6.588193956430077e-06, 4.392331867026545e-06, 4.3921582406770955e-06, 1.5082826263078965e-05, 3.2819310006826415e-05, 8.782175696206978e-06, 3.663350974882342e-05, 6.87426960885406e-05]
In [21]:
l = 0.5
smoothedBigramCounter = {}
totalBigramTypes = len(tokenBigramCount)
for bigram in tokenBigramCount:
    token1Freq = tokenCounter[bigram[0]]
    smoothedBigramCounter[bigram] = (tokenBigramCount[bigram] + l) / (token1Freq + (l * totalBigramTypes))
print(list(smoothedBigramCounter.values())[:20])
[6.385927119542427e-06, 2.8552539968065083e-05, 6.5870801010897225e-06, 1.0981697902276067e-05, 6.589423974520894e-06, 1.960130936746575e-05, 6.587803340894667e-06, 3.2442884302186e-05, 6.807905075842258e-05, 5.687990944718416e-06, 6.589423974520894e-06, 6.58470898878624e-06, 1.0978081163149656e-05, 6.587456165968762e-06, 6.58693547218447e-06, 2.748757244561161e-05, 6.32043746145078e-05, 1.53620281388464e-05, 6.979031183580243e-05, 0.00013242499595368068]
In [22]:
brown.categories()
Out[22]:
['adventure',
 'belles_lettres',
 'editorial',
 'fiction',
 'government',
 'hobbies',
 'humor',
 'learned',
 'lore',
 'mystery',
 'news',
 'religion',
 'reviews',
 'romance',
 'science_fiction']
In [23]:
tokensTraining = list(brown.words(categories=['adventure',
 'belles_lettres',
 'editorial',
 'fiction',
 'government',
 'hobbies',
 'humor',
 'learned',
 'lore',
 'mystery',
 'religion',
 'reviews',
 'romance',
 'science_fiction']))
TBigrams = Counter(ngrams(tokensTraining, 2))
TBigramsCount = Counter(TBigrams.values())
print("N of tokens:", len(tokensTraining))
print(TBigramsCount[1])
NrBigrams = [ b for b in TBigrams if TBigrams[b] == 1 ]
N of tokens: 1060638
313186
In [24]:
tokensNews = list(brown.words(categories='news'))
HOBigrams = Counter(ngrams(tokensNews, 2))
HOBigramsCount = Counter(HOBigrams.values())
print("N of tokens:", len(tokensNews))
print(HOBigramsCount[1])
res = 0
for b in NrBigrams:
    res += HOBigrams[b]
print("Tr/Nr =", res/TBigramsCount[1])
N of tokens: 100554
51998
Tr/Nr = 0.027143614337805648
In [25]:
newCount = 0
tokenCountDict = {}
for t in tokens:
    if t not in tokenCountDict:
        newCount += 1
    tokenCountDict[t] = tokenCountDict.get(t, 0) + 1
print("New events:", newCount)
print("Types:", len(tokenCountDict))
New events: 56057
Types: 56057

The tagCounter datatype now contains a hash-table with tags as keys and their frequencies as values. Accessing the frequency of a specific tag can be achieved using the following code:

In [26]:
tagCounter["NNS"]
Out[26]:
55110

The frequency of a specific token can be accessed by generating a frequency profile from the token-list in the same way as for tags:

In [27]:
tokenCounter = Counter(tokens)

We access the token frequency in the same way as for tags:

In [28]:
tokenCounter["the"]
Out[28]:
62713

Since one type (or word) in the Brown corpus can have more than one corresponding tag with a specific frequency, we need to store this information in a specific datastructure.

In [29]:
from collections import defaultdict

The following loop reads from the list of token-tag-tuples in brown.tagged_words the individual token and tag pairs and sets their counter in the dictionary of Counter datastructures.

In [30]:
tokenTags = defaultdict(Counter)
for token, tag in brown.tagged_words():
    tokenTags[token][tag] +=1

We can now ask for the Counter datastructure for the key the. The Counter datastructure is a hash-table with tags as keys and the corresponding frequency as values.

In [31]:
tokenTags["John"]
Out[31]:
Counter({'NP': 303, 'NP-HL': 9, 'NP-TL': 47, 'NN-TL': 1})
In [32]:
tokenTags["the"]["AT"]
Out[32]:
62288

For the calculation of the probability of a $tag_2$ given that a $tag_1$ occured, that is $P(tag_2\ |\ tag_1)$ we will need to count the bigrams from the tags list. The NLTK ngram module provides a convenient set of functions and datastructures to achieve this:

In [33]:
from nltk.util import ngrams

As for the tokenTags datatype above, we can create a tags bigram model using a dictionary of Counter datatypes. The dictionary keys will be the first tag of the tag-bigram. The value will contain a Counter datatype with the second tag of the tag-bigram as the key and the frequency of the bigram as value.

In [34]:
tagTags = defaultdict(Counter)

Using the ngrams module we generate a bigram model from the tags list and store it in the variable posBigrams using the following code:

In [35]:
posBigrams = list(ngrams(tags, 2))

The following loop goes through the list of bigram tuples, assigned the left bigram tag to the variable tag1 and the right bigram tag to variable tag2, and stores the count of the bigram in the tagTags datastructure:

In [36]:
for tag1, tag2 in posBigrams:
    tagTags[tag1][tag2] += 1

We can now list all tags that follow the AT tag with the corresponding frequency:

In [37]:
tagTags["AT"]
Out[37]:
Counter({'NP-TL': 809,
         'NN': 48376,
         'NN-TL': 2565,
         'NP': 2230,
         'JJ': 19488,
         'JJT': 675,
         'AP': 3007,
         'NNS': 7215,
         'NN$': 907,
         'VBG': 1568,
         'CD': 981,
         'JJS': 206,
         'VBN': 1468,
         'JJ-TL': 1414,
         'NPS': 588,
         'OD': 1251,
         '``': 620,
         'NNS$': 97,
         'RB': 350,
         'QL': 1377,
         'JJS-TL': 2,
         'NN$-TL': 162,
         'JJR': 630,
         'VBN-TL': 390,
         'NR-TL': 208,
         'NNS-TL': 284,
         'FW-IN': 7,
         'ABN': 42,
         'NR': 218,
         'NPS$': 30,
         'PN': 149,
         'NNS$-TL': 28,
         '*': 4,
         'NP$': 62,
         "'": 24,
         'VBG-TL': 34,
         'OD-TL': 98,
         'JJR-TL': 3,
         'FW-NN-TL': 52,
         'RB-TL': 1,
         'CD-TL': 29,
         'FW-JJ-TL': 8,
         'NR$-TL': 8,
         'FW-NN': 76,
         'RBT': 11,
         '(': 15,
         "''": 7,
         'CC': 4,
         'VB': 16,
         'RB-NC': 1,
         'VBZ': 1,
         'RP': 1,
         'NP$-TL': 17,
         'VBD': 2,
         ',': 12,
         '--': 4,
         'PN$': 1,
         'RBR': 40,
         'NN+HVZ': 3,
         'FW-IN-TL': 4,
         'IN': 3,
         'NN+BEZ': 13,
         '.': 4,
         'HV': 1,
         'MD': 1,
         'FW-RB': 1,
         'NPS-TL': 2,
         'FW-NNS': 11,
         'NN+MD': 2,
         'AT': 1,
         'PPO': 1,
         'FW-JJ': 2,
         'FW-VB': 2,
         'NIL': 1,
         'JJT-TL': 3,
         'FW-NNS-TL': 5,
         'FW-VBN': 1,
         'FW-NN-TL-NC': 1,
         ')': 1,
         'NN-HL': 3,
         'VB-TL': 3,
         'BEZ-NC': 1,
         'JJ-HL': 1,
         'FW-JJT': 1,
         'NN+IN': 1,
         'FW-NN$': 1,
         'WDT': 2,
         'UH': 2,
         'AP$': 1,
         'FW-CC': 1,
         'AP-TL': 2,
         'PN+HVZ': 1,
         'RBR+CS': 1,
         'PPS': 1,
         'IN-TL': 1})

We can request the frequency of the tag-bigram AT NN using the following code:

In [38]:
tagTags["AT"]["NN"]
Out[38]:
48376

We can calculate the total number of bigrams and relativize the count of any particular bigram:

In [44]:
total = float(len(tags))
print(total)
tagTags["NNS"]["NNS"]/(total-1)
1161192.0
Out[44]:
0.00012228823681892126

If we want to know how many times a certain tag occurs in sentence initial position, to estimate initial probabilities for startstates in a Hidden Markov Model for example, we can loop through the sentences and count the tags in initial position.

In [40]:
offset = 0
initialTags = Counter()
for x in brown.sents():
    initTag = tags[offset]
    initialTags[initTag] += 1
    offset += len(x)
print("Example:")
print("AT:", initialTags["AT"])
Example:
AT: 8297

Note, for the code above, I do not know how to access the initial sentence tag directly, thus I am indirectly accessing the tag over an offset count. If you know a better way, let me know, please.

We can now estimate the probability of any tag being in sentence initial position in the following way:

In [45]:
initialTags["AT"]/total
Out[45]:
0.007145243852868432

We can estimate the probability of any tag being followed by any other, in the following way:

In [46]:
tagTags["AT"]["NN"]/(total-1)
Out[46]:
0.04166067425600095

Note, we are dividing by total - 1, since the number of bigrams in the tagTags data structure is exactly this.

We can estimate the likelihood of a tag token combination using the tokenTags data-structure:

In [47]:
tokenTags["John"]["NN"]/total
Out[47]:
0.0

Given the data structures tokenTags and tagTags we can now estimate the probability of a word given a specific tag, or intuitively, the probability that a specific word is assigned a tag, that is for the token cat and the tag NN: $P(cat\ |\ NN)$ using the following equation and corresponding code (with $C(cat\ NN)$ as the absolute frequency or count of the cat NN tuple, and $C(NN)$ the count of the NN-tag):

$$P(w_n\ |\ t_n) = \frac{C(w_n\ t_n)}{C(t_n)}$$
In [48]:
tokenTags["cat"]["NN"] / tagCounter["NN"]
Out[48]:
0.00013117334557617892

We can estimate the probability of a $tag_2$ following a $tag_1$ using a similar approach:

$$P(t_n\ |\ t_{n-1}) = \frac{C(t_{n-1}\ t_n)}{C(t_{n-1})}$$

Here $C(t_{n-1}\ t_n)$ is the count of the bigram of these two tags in sequence. $C(t_{n-1})$ is the count or absolute frequency of the first or left tag in the bigram. Let us assume that the input sequence was the cat ... and that the most likely initial tag for the was AT, then the probability of the tag NN given that a tag AT occurred can be estimated as:

In [49]:
tagTags["AT"]["NN"] / tagCounter["AT"]
Out[49]:
0.4938392592819445

The product of the two probabilities $P(w_n\ |\ t_n)\ P(t_n\ |\ t_{n-1})$ for the tokens the cat and the possible tags AT NN should be:

In [50]:
(tokenTags["cat"]["NN"] / tagCounter["NN"]) * (tagTags["AT"]["NN"] / tagCounter["AT"])
Out[50]:
6.477854781687473e-05

If we would want to calculate this for any sequence of words, we should wrap this code in some function and a loop over all tokens. To avoid an underflow from the product of many probabilities, we can sum up the log-likelihoods of these probabilities. We would calculate the probabilities for all possible tag combinations assigned to the sequence of words or tokens and select the largest one as the best.

In the next section we will discuss Hidden Markov Models (HMMs) for Part-of-Speech Tagging.

References

Manning, Chris and Hinrich Schütze (1999) Foundations of Statistical Natural Language Processing, MIT Press. Cambridge, MA.

(C) 2016-2019 by Damir Cavar <dcavar@iu.edu>