-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwordshift.ipynb.html
828 lines (810 loc) · 747 KB
/
wordshift.ipynb.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head>
<meta charset="utf-8">
<meta name="generator" content="quarto-1.3.450">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
<title>TORCHLITE Hackathon Handbook - Documentation</title> <style>
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
ul.task-list{list-style: none;}
ul.task-list li input[type="checkbox"] {
width: 0.8em;
margin: 0 0.8em 0.2em -1em; /* quarto-specific, see https://github.com/quarto-dev/quarto-cli/issues/4556 */
vertical-align: middle;
}
/* CSS for syntax highlighting */
pre > code.sourceCode { white-space: pre; position: relative; }
pre > code.sourceCode > span { display: inline-block; line-height: 1.25; }
pre > code.sourceCode > span:empty { height: 1.2em; }
.sourceCode { overflow: visible; }
code.sourceCode > span { color: inherit; text-decoration: inherit; }
div.sourceCode { margin: 1em 0; }
pre.sourceCode { margin: 0; }
@media screen {
div.sourceCode { overflow: auto; }
}
@media print {
pre > code.sourceCode { white-space: pre-wrap; }
pre > code.sourceCode > span { text-indent: -5em; padding-left: 5em; }
}
pre.numberSource code
{ counter-reset: source-line 0; }
pre.numberSource code > span
{ position: relative; left: -4em; counter-increment: source-line; }
pre.numberSource code > span > a:first-child::before
{ content: counter(source-line);
position: relative; left: -1em; text-align: right; vertical-align: baseline;
border: none; display: inline-block;
-webkit-touch-callout: none; -webkit-user-select: none;
-khtml-user-select: none; -moz-user-select: none;
-ms-user-select: none; user-select: none;
padding: 0 4px; width: 4em;
}
pre.numberSource { margin-left: 3em; padding-left: 4px; }
div.sourceCode
{ }
@media screen {
pre > code.sourceCode > span > a:first-child::before { text-decoration: underline; }
}
</style>
<style>
.quarto-embed-header {
height: 3em;
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: solid 1px;
}
.quarto-embed-header h6 {
font-size: 1em;
padding-top: 0.6em;
margin-left: 1em;
margin-right: 1em;
font-weight: 300;
}
.quarto-embed-header a.quarto-download-embed {
font-size: 0.7em;
margin-top: 1em;
margin-bottom: 1em;
margin-left: 1em;
margin-right: 1em;
}
</style>
<script src="site_libs/quarto-nav/quarto-nav.js"></script>
<script src="site_libs/quarto-nav/headroom.min.js"></script>
<script src="site_libs/clipboard/clipboard.min.js"></script>
<script src="site_libs/quarto-search/autocomplete.umd.js"></script>
<script src="site_libs/quarto-search/fuse.min.js"></script>
<script src="site_libs/quarto-search/quarto-search.js"></script>
<meta name="quarto:offset" content="./">
<link href="./images/cover.png" rel="icon" type="image/png">
<script src="site_libs/quarto-html/quarto.js"></script>
<script src="site_libs/quarto-html/popper.min.js"></script>
<script src="site_libs/quarto-html/tippy.umd.min.js"></script>
<script src="site_libs/quarto-html/anchor.min.js"></script>
<link href="site_libs/quarto-html/tippy.css" rel="stylesheet">
<link href="site_libs/quarto-html/quarto-syntax-highlighting.css" rel="stylesheet" id="quarto-text-highlighting-styles">
<script src="site_libs/bootstrap/bootstrap.min.js"></script>
<link href="site_libs/bootstrap/bootstrap-icons.css" rel="stylesheet">
<link href="site_libs/bootstrap/bootstrap.min.css" rel="stylesheet" id="quarto-bootstrap" data-mode="light">
<script id="quarto-search-options" type="application/json">{
"location": "sidebar",
"copy-button": false,
"collapse-after": 3,
"panel-placement": "start",
"type": "textbox",
"limit": 20,
"language": {
"search-no-results-text": "No results",
"search-matching-documents-text": "matching documents",
"search-copy-link-title": "Copy link to search",
"search-hide-matches-text": "Hide additional matches",
"search-more-match-text": "more match in this document",
"search-more-matches-text": "more matches in this document",
"search-clear-button-title": "Clear",
"search-detached-cancel-button-title": "Cancel",
"search-submit-button-title": "Submit",
"search-label": "Search"
}
}</script>
</head>
<body class="nav-sidebar floating quarto-notebook">
<div class="quarto-embed-header">
<h6><i class="bi bi-journal-code"></i> wordshift.ipynb</h6>
<a href="./wordshift.ipynb" class="btn btn-primary quarto-download-embed" download="wordshift.ipynb">Download Notebook</a>
</div>
<div id="quarto-search-results"></div>
<header id="quarto-header" class="headroom fixed-top">
<nav class="quarto-secondary-nav">
<div class="container-fluid d-flex">
<button type="button" class="quarto-btn-toggle btn" data-bs-toggle="collapse" data-bs-target="#quarto-sidebar,#quarto-sidebar-glass" aria-controls="quarto-sidebar" aria-expanded="false" aria-label="Toggle sidebar navigation" onclick="if (window.quartoToggleHeadroom) { window.quartoToggleHeadroom(); }">
<i class="bi bi-layout-text-sidebar-reverse"></i>
</button>
<nav class="quarto-page-breadcrumbs" aria-label="breadcrumb"><ol class="breadcrumb"><li class="breadcrumb-item">
TORCHLITE Hackathon Handbook
</li></ol></nav>
<a class="flex-grow-1" role="button" data-bs-toggle="collapse" data-bs-target="#quarto-sidebar,#quarto-sidebar-glass" aria-controls="quarto-sidebar" aria-expanded="false" aria-label="Toggle sidebar navigation" onclick="if (window.quartoToggleHeadroom) { window.quartoToggleHeadroom(); }">
</a>
<button type="button" class="btn quarto-search-button" aria-label="" onclick="window.quartoOpenSearch();">
<i class="bi bi-search"></i>
</button>
</div>
</nav>
</header>
<!-- content -->
<div id="quarto-content" class="quarto-container page-columns page-rows-contents page-layout-article">
<!-- sidebar -->
<nav id="quarto-sidebar" class="sidebar collapse collapse-horizontal sidebar-navigation floating overflow-auto">
<div class="pt-lg-2 mt-2 text-left sidebar-header">
<div class="sidebar-title mb-0 py-0">
<a href="./">TORCHLITE Hackathon Handbook</a>
<div class="sidebar-tools-main tools-wide">
<a href="https://github.com/htrc/torchlite-handbook" rel="" title="Source Code" class="quarto-navigation-tool px-1" aria-label="Source Code"><i class="bi bi-github"></i></a>
<div class="dropdown">
<a href="" title="Share" id="quarto-navigation-tool-dropdown-0" class="quarto-navigation-tool dropdown-toggle px-1" data-bs-toggle="dropdown" aria-expanded="false" aria-label="Share"><i class="bi bi-share"></i></a>
<ul class="dropdown-menu" aria-labelledby="quarto-navigation-tool-dropdown-0">
<li>
<a class="dropdown-item sidebar-tools-main-item" href="https://twitter.com/intent/tweet?url=|url|">
<i class="bi bi-bi-twitter pe-1"></i>
Twitter
</a>
</li>
<li>
<a class="dropdown-item sidebar-tools-main-item" href="https://www.facebook.com/sharer/sharer.php?u=|url|">
<i class="bi bi-bi-facebook pe-1"></i>
Facebook
</a>
</li>
</ul>
</div>
<a href="" class="quarto-reader-toggle quarto-navigation-tool px-1" onclick="window.quartoToggleReader(); return false;" title="Toggle reader mode">
<div class="quarto-reader-toggle-btn">
<i class="bi"></i>
</div>
</a>
</div>
</div>
</div>
<div class="mt-2 flex-shrink-0 align-items-center">
<div class="sidebar-search">
<div id="quarto-search" class="" title="Search"></div>
</div>
</div>
<div class="sidebar-menu-container">
<ul class="list-unstyled mt-1">
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./index.html" class="sidebar-item-text sidebar-link">
<span class="menu-text">About TORCHLITE</span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./htrc.html" class="sidebar-item-text sidebar-link">
<span class="menu-text"><span class="chapter-number">1</span> <span class="chapter-title">About HathiTrust and HTRC</span></span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./technical-background.html" class="sidebar-item-text sidebar-link">
<span class="menu-text"><span class="chapter-number">2</span> <span class="chapter-title">Dashboard Technical Background</span></span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./ef.html" class="sidebar-item-text sidebar-link">
<span class="menu-text"><span class="chapter-number">3</span> <span class="chapter-title">Extracted Features</span></span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./worksets.html" class="sidebar-item-text sidebar-link">
<span class="menu-text"><span class="chapter-number">4</span> <span class="chapter-title">Featured Worksets</span></span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./widget.html" class="sidebar-item-text sidebar-link">
<span class="menu-text"><span class="chapter-number">5</span> <span class="chapter-title">Creating Summary Widget and Notebook</span></span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./publications.html" class="sidebar-item-text sidebar-link">
<span class="menu-text"><span class="chapter-number">6</span> <span class="chapter-title">Relevant Publications</span></span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./links.html" class="sidebar-item-text sidebar-link">
<span class="menu-text"><span class="chapter-number">7</span> <span class="chapter-title">Quick Links</span></span></a>
</div>
</li>
</ul>
</div>
</nav>
<div id="quarto-sidebar-glass" data-bs-toggle="collapse" data-bs-target="#quarto-sidebar,#quarto-sidebar-glass"></div>
<!-- margin-sidebar -->
<div id="quarto-margin-sidebar" class="sidebar margin-sidebar">
<nav id="TOC" role="doc-toc" class="toc-active">
<h2 id="toc-title">Table of contents</h2>
<ul>
<li><a href="#documentation" id="toc-documentation" class="nav-link active" data-scroll-target="#documentation"><span class="header-section-number">1</span> <strong>Documentation</strong></a>
<ul class="collapse">
<li><a href="#volumes" id="toc-volumes" class="nav-link" data-scroll-target="#volumes"><span class="header-section-number">1.1</span> Volumes</a>
<ul class="collapse">
<li><a href="#need-following-to-make-the-plot" id="toc-need-following-to-make-the-plot" class="nav-link" data-scroll-target="#need-following-to-make-the-plot"><span class="header-section-number">1.1.1</span> need following to make the plot</a></li>
</ul></li>
</ul></li>
<li><a href="#word-shiftrator" id="toc-word-shiftrator" class="nav-link" data-scroll-target="#word-shiftrator"><span class="header-section-number">2</span> Word Shiftrator</a></li>
</ul>
<div class="toc-actions"><div><i class="bi bi-github"></i></div><div class="action-links"><p><a href="https://github.dev/htrc/torchlite-handbook/blob/main/wordshift.ipynb" class="toc-action">Edit this page</a></p><p><a href="https://github.com/htrc/torchlite-handbook/issues/new" class="toc-action">Report an issue</a></p></div></div></nav>
</div>
<!-- main -->
<main class="content" id="quarto-document-content"> <header id="title-block-header" class="quarto-title-block default">
<div class="quarto-title">
<h1 class="title"><strong>Documentation</strong></h1>
</div>
<div class="quarto-title-meta">
</div>
</header> <section id="documentation" class="level1" data-number="1">
<h1 data-number="1"><span class="header-section-number">1</span> <strong>Documentation</strong></h1>
<p>https://htrc.stoplight.io/docs/ef-api/0948b1add4a6c-volume-metadata</p>
<p>METADATA</p>
<div class="cell">
<div class="sourceCode cell-code" id="cb1"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb1-1"><a href="#cb1-1" aria-hidden="true" tabindex="-1"></a>api_meta <span class="op">=</span> <span class="st">"https://tools.htrc.illinois.edu/ef-api/worksets/640ba4bf300000440a5ce31a/metadata"</span></span>
<span id="cb1-2"><a href="#cb1-2" aria-hidden="true" tabindex="-1"></a>response <span class="op">=</span> requests.get(api_url)</span>
<span id="cb1-3"><a href="#cb1-3" aria-hidden="true" tabindex="-1"></a>response.json()</span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
</div>
<section id="volumes" class="level2" data-number="1.1">
<h2 data-number="1.1" class="anchored" data-anchor-id="volumes"><span class="header-section-number">1.1</span> Volumes</h2>
<div class="cell">
<div class="sourceCode cell-code" id="cb2"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb2-1"><a href="#cb2-1" aria-hidden="true" tabindex="-1"></a>api_meta <span class="op">=</span> <span class="st">"https://tools.htrc.illinois.edu/ef-api/worksets/640ba4bf300000440a5ce31a/volumes"</span></span>
<span id="cb2-2"><a href="#cb2-2" aria-hidden="true" tabindex="-1"></a>response <span class="op">=</span> requests.get(api_url)</span>
<span id="cb2-3"><a href="#cb2-3" aria-hidden="true" tabindex="-1"></a>response.json()</span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
</div>
<div class="cell" data-outputid="7662a7dd-7f6f-470f-98d5-08dd6e85114b">
<div class="sourceCode cell-code" id="cb3"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb3-1"><a href="#cb3-1" aria-hidden="true" tabindex="-1"></a><span class="im">from</span> google.colab <span class="im">import</span> drive</span>
<span id="cb3-2"><a href="#cb3-2" aria-hidden="true" tabindex="-1"></a>drive.mount(<span class="st">'/content/drive'</span>)</span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
<div class="cell-output cell-output-stdout">
<pre><code>Drive already mounted at /content/drive; to attempt to forcibly remount, call drive.mount("/content/drive", force_remount=True).</code></pre>
</div>
</div>
<div class="cell">
<div class="sourceCode cell-code" id="cb5"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb5-1"><a href="#cb5-1" aria-hidden="true" tabindex="-1"></a><span class="im">import</span> json</span>
<span id="cb5-2"><a href="#cb5-2" aria-hidden="true" tabindex="-1"></a></span>
<span id="cb5-3"><a href="#cb5-3" aria-hidden="true" tabindex="-1"></a><span class="cf">with</span> <span class="bu">open</span>(<span class="st">'/content/drive/MyDrive/TORCHLITE/History of Black Writers Workset Sample.json'</span>, <span class="st">'r'</span>) <span class="im">as</span> <span class="bu">file</span>:</span>
<span id="cb5-4"><a href="#cb5-4" aria-hidden="true" tabindex="-1"></a> black_writers <span class="op">=</span> json.load(<span class="bu">file</span>)</span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
</div>
<div class="cell">
<div class="sourceCode cell-code" id="cb6"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb6-1"><a href="#cb6-1" aria-hidden="true" tabindex="-1"></a>black_writers_list <span class="op">=</span> black_writers[<span class="st">'data'</span>]</span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
</div>
<p>https://www.geeksforgeeks.org/part-speech-tagging-stop-words-using-nltk-python/</p>
<ul>
<li>CC coordinating conjunction</li>
<li>CD cardinal digit</li>
<li>DT determiner</li>
<li>EX existential there (like: “there is” … think of it like “there exists”)</li>
<li>FW foreign word</li>
<li>IN preposition/subordinating conjunction</li>
<li>JJ adjective – ‘big’</li>
<li>JJR adjective, comparative – ‘bigger’</li>
<li>JJS adjective, superlative – ‘biggest’</li>
<li>LS list marker 1)</li>
<li>MD modal – could, will</li>
<li>NN noun, singular ‘- desk’</li>
<li>NNS noun plural – ‘desks’</li>
<li>NNP proper noun, singular – ‘Harrison’</li>
<li>NNPS proper noun, plural – ‘Americans’</li>
<li>PDT predeterminer – ‘all the kids’</li>
<li>POS possessive ending parent’s</li>
<li>PRP personal pronoun – I, he, she</li>
<li>PRP possessive pronoun – my, his, hers</li>
<li>RB adverb – very, silently,</li>
<li>RBR adverb, comparative – better</li>
<li>RBS adverb, superlative – best</li>
<li>RP particle – give up</li>
<li>TO – to go ‘to’ the store.</li>
<li>UH interjection – errrrrrrrm</li>
<li>VB verb, base form – take</li>
<li>VBD verb, past tense – took</li>
<li>VBG verb, gerund/present participle – taking</li>
<li>VBN verb, past participle – taken</li>
<li>VBP verb, sing. present, non-3d – take</li>
<li>VBZ verb, 3rd person sing. present – takes</li>
<li>WDT wh-determiner – which</li>
<li>WP wh-pronoun – who, what</li>
<li>WP$ possessive wh-pronoun, eg- whose</li>
<li>WRB wh-adverb, eg- where, when</li>
</ul>
<section id="need-following-to-make-the-plot" class="level3" data-number="1.1.1">
<h3 data-number="1.1.1" class="anchored" data-anchor-id="need-following-to-make-the-plot"><span class="header-section-number">1.1.1</span> need following to make the plot</h3>
<ul>
<li>JJ</li>
<li>JJR</li>
<li>JJS</li>
<li>NN</li>
<li>NNS</li>
<li>NNP</li>
<li>NNPS</li>
<li>RB</li>
<li>RBR</li>
<li>RBC</li>
<li>VB</li>
</ul>
<p>pubDate</p>
<div class="cell">
<div class="sourceCode cell-code" id="cb7"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb7-1"><a href="#cb7-1" aria-hidden="true" tabindex="-1"></a>wanted_types <span class="op">=</span> [<span class="st">"JJ"</span>]</span>
<span id="cb7-2"><a href="#cb7-2" aria-hidden="true" tabindex="-1"></a></span>
<span id="cb7-3"><a href="#cb7-3" aria-hidden="true" tabindex="-1"></a></span>
<span id="cb7-4"><a href="#cb7-4" aria-hidden="true" tabindex="-1"></a>book_to_word_count <span class="op">=</span> {}</span>
<span id="cb7-5"><a href="#cb7-5" aria-hidden="true" tabindex="-1"></a><span class="cf">for</span> book <span class="kw">in</span> black_writers_list:</span>
<span id="cb7-6"><a href="#cb7-6" aria-hidden="true" tabindex="-1"></a> book_title <span class="op">=</span> book[<span class="st">'metadata'</span>][<span class="st">'title'</span>]</span>
<span id="cb7-7"><a href="#cb7-7" aria-hidden="true" tabindex="-1"></a> book_pubDate <span class="op">=</span> book[<span class="st">'metadata'</span>][<span class="st">'pubDate'</span>]</span>
<span id="cb7-8"><a href="#cb7-8" aria-hidden="true" tabindex="-1"></a> pages_of_book <span class="op">=</span> book[<span class="st">'features'</span>][<span class="st">'pages'</span>]</span>
<span id="cb7-9"><a href="#cb7-9" aria-hidden="true" tabindex="-1"></a> word_count <span class="op">=</span> {}</span>
<span id="cb7-10"><a href="#cb7-10" aria-hidden="true" tabindex="-1"></a> <span class="cf">for</span> page <span class="kw">in</span> pages_of_book:</span>
<span id="cb7-11"><a href="#cb7-11" aria-hidden="true" tabindex="-1"></a> body_page <span class="op">=</span> page[<span class="st">'body'</span>]</span>
<span id="cb7-12"><a href="#cb7-12" aria-hidden="true" tabindex="-1"></a> <span class="cf">if</span> body_page <span class="kw">is</span> <span class="kw">not</span> <span class="va">None</span>:</span>
<span id="cb7-13"><a href="#cb7-13" aria-hidden="true" tabindex="-1"></a> filtered_data <span class="op">=</span> {key: value <span class="cf">for</span> key, value <span class="kw">in</span> body_page[<span class="st">"tokenPosCount"</span>].items() <span class="cf">if</span> <span class="bu">any</span>(k <span class="kw">in</span> value <span class="cf">for</span> k <span class="kw">in</span> wanted_types)}</span>
<span id="cb7-14"><a href="#cb7-14" aria-hidden="true" tabindex="-1"></a> <span class="cf">for</span> word, word_obj <span class="kw">in</span> filtered_data.items():</span>
<span id="cb7-15"><a href="#cb7-15" aria-hidden="true" tabindex="-1"></a> <span class="cf">for</span> _, count <span class="kw">in</span> word_obj.items():</span>
<span id="cb7-16"><a href="#cb7-16" aria-hidden="true" tabindex="-1"></a> <span class="cf">if</span> <span class="kw">not</span> word <span class="kw">in</span> word_count:</span>
<span id="cb7-17"><a href="#cb7-17" aria-hidden="true" tabindex="-1"></a> word_count[word] <span class="op">=</span> count</span>
<span id="cb7-18"><a href="#cb7-18" aria-hidden="true" tabindex="-1"></a> <span class="cf">else</span>:</span>
<span id="cb7-19"><a href="#cb7-19" aria-hidden="true" tabindex="-1"></a> word_count[word] <span class="op">+=</span> count</span>
<span id="cb7-20"><a href="#cb7-20" aria-hidden="true" tabindex="-1"></a> book_to_word_count[book_title<span class="op">+</span><span class="st">'@'</span><span class="op">+</span><span class="bu">str</span>(book_pubDate)] <span class="op">=</span> word_count</span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
</div>
<div class="cell" data-outputid="316bf91c-86c6-4790-a5bc-1f36affeacff">
<div class="sourceCode cell-code" id="cb8"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb8-1"><a href="#cb8-1" aria-hidden="true" tabindex="-1"></a><span class="co"># printing</span></span>
<span id="cb8-2"><a href="#cb8-2" aria-hidden="true" tabindex="-1"></a><span class="cf">for</span> b, wc <span class="kw">in</span> book_to_word_count.items():</span>
<span id="cb8-3"><a href="#cb8-3" aria-hidden="true" tabindex="-1"></a> <span class="bu">print</span>(b)</span>
<span id="cb8-4"><a href="#cb8-4" aria-hidden="true" tabindex="-1"></a> <span class="bu">print</span>(wc)</span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
<div class="cell-output cell-output-stdout">
<pre><code>Portrait of a young man drowning.@1962
{'Unmityof': 1, 'YOUNG': 1, 'brown': 5, 'quick': 32, 'wild': 10, 'mine': 4, 'own': 31, 'same': 54, 'poor': 14, 'MYSELF': 3, 'scared': 22, 'slow': 9, 'big': 139, 'loud': 7, 'strong': 7, 'safe': 9, 'open': 46, 'ashamed': 18, 'raw': 4, 'round': 2, 'high': 11, 'dirty': 29, 'good': 221, 'warm': 15, 'clean': 29, 'fat': 16, 'little': 217, 'German': 1, 'stupid': 8, 'other': 97, 'red': 16, 'mad': 9, 'funny': 29, 'Italian': 3, 'hungry': 14, 'Strange': 2, 'different': 23, 'crowded': 1, 'old': 112, 'dark': 42, 'crazy': 37, 'strange': 18, 'new': 40, 'sorry': 61, 'great': 20, 'skinny': 3, 'afraid': 28, 'angry': 22, 'fuzzy': 1, 'nice': 101, 'soft': 12, 'happy': 20, 'magic': 9, 'white': 15, 'sweet': 22, 'full': 31, 'smart': 13, 'sharp': 10, 'bright': 13, 'wet': 9, 'long': 63, 'tired': 28, 'much': 81, 'next': 32, 'many': 34, 'filthy': 17, 'sleepy': 3, 'front': 26, 'glad': 20, 'bad': 44, 'upset': 7, 'tight': 31, 'sick': 14, 'sure': 94, 'rich': 6, 'precious': 2, 'hard': 41, 'late': 15, 'quiet': 29, 'small': 14, 'first': 58, 'dizzy': 5, 'sad': 13, 'sh-h': 1, 'wrong': 29, 'blue': 9, 'yellow': 2, 'dreamy': 1, 'light': 25, 'right': 60, 'nasty': 8, 'such': 41, 'stiff': 4, 'kind': 3, 'prideful': 1, 'reasonable': 2, 'Smart': 3, 'whole': 31, 'grateful': 1, 'careful': 11, 'ready': 28, 'unfit': 1, 'smelly': 1, 'outside': 7, 'last': 41, 'cold': 20, 'heavy': 11, 'drunk-sick': 1, 'dry': 6, 'snowy': 2, 'cute': 13, 'soapy': 2, 'sudden': 10, 'Good': 30, 'busy': 7, 'green': 5, 'real': 55, 'Want': 4, 'tough': 16, 'wrinkled': 2, 'wan': 2, 'back': 71, 'early': 7, 'Sure': 82, 'favorite': 4, 'main': 3, 'Outside': 2, 'free': 8, 'empty': 20, 'left': 4, 'broken-down': 1, 'hot': 46, 'lazy': 4, 'regular': 5, 'Little': 1, 'second': 13, 'able': 5, 'short': 8, 'rusty': 1, 'proud': 13, 'tough-guy': 1, 'weak': 14, 'underwater': 1, 'past': 6, 'only': 32, 'terrible': 25, 'Terrible': 1, 'proper': 2, 'surprised': 15, 'dead': 26, 'okay': 35, 'Scared': 2, 'wide': 6, 'smisshy-smasshy': 1, 'easy': 29, 'wee-wee': 1, 'bloody': 1, 'fresh': 13, 'Damned': 1, 'wise': 9, 'wonderful': 17, 'sore': 19, 'eighth': 2, 'Happy': 1, 'elementary': 1, 'blond': 4, 'lucky': 5, 'fine': 19, 'lightcolored': 1, 'artificial': 1, 'twenty-five': 2, 'worn': 1, 'black': 13, 'few': 37, 'plain': 4, 'embarrassed': 24, 'pitiful': 3, 'rotten': 4, 'sharpest-dressed': 1, 'alma': 1, 'straight': 3, 'noisy': 2, 'clenched': 2, 'sissy': 1, 'cool': 9, 'true': 21, 'wooden': 2, 'civil': 1, 'super': 11, 'watery': 2, 'sadlike': 1, 'Warm': 1, 'coming-home': 1, 'electric': 8, 'Nasty': 13, 'drunk': 32, 'Big': 15, 'starter': 1, 'serious': 12, 'cloudy': 3, 'solid': 1, 'impossible': 10, 'damn': 4, 'disgusted': 4, 'familiar': 5, 'broad': 33, 'virgin': 2, 'crazy-eyed': 1, 'red-haired': 1, 'friendly': 10, 'flat': 2, 'wobbly': 2, 'worried': 7, 'beautiful': 28, 'decent': 8, 'Christian': 2, 'famous': 6, 'young': 37, 'naughty': 4, 'rubbish': 1, 'disgraceful': 3, 'bad-luck': 1, 'softlike': 1, 'ringed': 1, 'absent': 2, 'mid-term': 1, 'chubby': 1, 'disturbed': 1, 'unusual': 2, 'miserable': 10, 'first-year-and-a-half': 1, 'silly': 8, 'physical': 4, 'gory': 1, 'part-time': 2, 'spare': 3, 'fast': 4, 'enough': 6, 'furious': 7, 'private': 4, 'awful': 3, 'public': 1, 'tall': 10, 'bulky': 1, 'bald-headed': 2, 'deep': 12, 'extra': 4, 'back-to-work': 1, 'opposite': 5, 'lousy': 5, 'crisp': 3, 'disappointed': 2, 'special': 21, 'gray-colored': 1, 'necessary': 3, 'usual': 3, 'gray': 8, 'dull': 1, 'gracious': 1, 'important': 7, 'else': 6, 'sickly': 2, 'personal': 6, 'low': 7, 'nearby': 1, 'skilled': 1, 'possible': 4, 'second-rate': 1, 'Goddamn': 18, 'silent': 8, 'curious': 16, 'pink': 4, 'four-thirty': 1, 'offensive': 1, 'restless': 6, 'abusive': 1, 'supernormal': 1, 'likely': 1, 'guilty': 5, 'Christmas-y': 1, 'battleship-gray': 1, 'three-storied': 1, 'Venetian': 1, 'petty': 1, 'broke': 2, 'mysterious': 1, 'Last': 4, 'anxious': 5, 'lush': 3, 'Old': 4, 'interested': 11, 'far': 1, 'sporty': 1, 'rough': 2, 'confidential': 1, 'uneasy': 6, 'nervous': 5, 'near': 2, 'impatient': 2, 'large': 7, 'suspicious': 4, 'tiny': 5, 'greedy': 1, 'seventy-some': 1, 'forty-buck': 1, 'shocked': 5, 'bug-eyed': 3, 'three-way': 1, 'Woweee': 1, 'lonely': 7, 'exciting': 1, 'delicate': 2, 'hazy': 2, 'nagging': 2, 'eager': 11, 'useless': 1, 'heavenly': 1, 'uncomfortable': 3, 'peaceful': 2, 'sticky': 1, 'interesting': 1, 'female': 2, 'simple': 2, 'male': 2, 'Human': 1, 'close': 4, 'fascinating': 2, 'inside': 1, 'sonny-boy': 1, 'frightened': 8, 'uncertain': 3, 'unboarded': 1, 'unlit': 2, 'bearded': 1, 'normal': 9, 'orange': 3, 'restful': 1, 'calm': 2, 'burnt': 1, 'giddy': 3, 'thrilling': 1, 'Other': 2, 'entire': 1, 'clear': 10, 'in-between': 1, 'powerful': 3, 'sexual': 1, 'natural': 2, 'pregnant': 2, 'certain': 8, 'splendid': 1, 'disgusting': 6, 'thin': 2, 'tempting': 1, 'scheming': 3, 'occupied': 1, 'present': 9, 'secret': 10, 'teasing-like': 1, 'huge': 1, 'cheerful': 1, 'colorful': 2, 'green-and-red-trimmed': 1, 'worth': 3, 'gay': 5, 'surprise-like': 1, 'elderly': 5, 'merry': 1, 'fancy': 5, 'bottom': 1, 'fearful': 1, 'dumb': 10, 'top': 3, 'bang-up': 1, 'handsome': 3, 'good-looking': 3, 'foolish': 1, 'confused': 3, 'meaningful': 1, 'electric-train': 1, 'bleary': 2, 'Next': 4, 'thousand-dollar': 1, 'good-time': 1, 'silver': 1, 'Silent': 1, 'firm': 1, 'thoughtful': 1, 'marvelous': 2, 'frowned': 1, 'artistic': 2, 'impersonal': 1, 'cursed': 1, 'brand-new': 1, 'particular': 5, 'grand': 3, 'cooking': 2, 'apprehensive': 1, 'stern': 1, 'pretty': 2, 'overhead': 1, 'kittenish': 1, 'attractive': 1, 'annoyed': 10, 'lovey-dovey': 2, 'greasy': 3, 'moist': 3, 'Wonder': 1, 'Weird': 2, 'spooky': 1, 'Headless': 1, 'mild': 2, 'pet': 2, 'joint': 4, 'pureblooded': 1, 'peeved': 4, 'loyal': 4, 'gleaming': 1, 'terrific': 1, 'convertible': 1, 'alive': 6, 'delirious': 1, 'deadly': 1, 'narrow': 6, 'double': 4, 'rid': 4, 'odd': 1, 'husky': 2, 'original': 1, 'several': 2, 'sour': 1, 'lovely': 1, 'ten-dollar': 3, 'fast-moving': 1, 'third': 4, 'grown': 4, 'wade-in': 1, 'bent': 2, 'unaware': 1, 'Damn': 3, 'fourth': 3, 'truthful': 1, 'Rare': 1, 'rare': 1, 'faint': 4, 'full-faced': 2, 'Pleased': 2, 'Glad': 3, 'excited': 1, 'darkened': 2, 'frantic': 3, 'scarce': 3, 'welcome': 1, 'groggy': 1, 'single': 3, 'Restless': 1, 'violent': 1, 'juicy': 1, 'pleased': 4, 'curly-haired': 2, 'inquisitive-like': 1, 'five-minute': 1, 'shlumping': 2, 'indifferent': 1, 'swollen': 1, 'impressed': 2, 'ash': 3, 'midget': 1, 'built-in': 1, '11y': 1, 'complete': 5, 'tieless': 1, 'naked': 9, 'hunkydory': 1, 'intolerable': 1, 'unnatural': 1, 'distressed': 1, 'jealous': 2, 'Greek': 3, 'bonehead': 1, 'sea-food': 1, 'flashy': 1, 'Large': 1, 'yeah': 4, 'chilly': 1, 'windy': 1, 'stout': 1, 'dim': 2, 'Manhattan-bound': 1, 'offhand': 1, 'uniformed': 1, 'ignorant': 1, 'tense': 2, 'fierce': 2, 'chummy': 1, 'pretty-boy': 1, 'Hazy': 1, 'cominaround': 1, 'Light': 3, 'fouled-up': 1, 'smoky': 1, 'Holy': 2, 'Dirty': 1, 'bald': 1, 'closed': 2, 'Fresh': 1, 'felonious': 1, 'freckled-face': 1, 'innocent': 7, 'Innocent': 1, 'portable': 1, 'relieved': 1, 'sneaky': 3, 'emotional': 1, 'lonesome': 1, 'tear-filled': 1, 'leery': 6, 'shiny': 1, 'formal': 1, 'automatical': 1, 'Chink': 5, 'convinced': 1, 'fifty-dollar-a-week': 1, 'seventy-five': 2, 'selfconscious': 1, 'swelled-up': 1, 'freckle-faced': 1, 'bright-eyed': 1, 'high-hat': 1, 'outa': 4, 'pleasant': 3, 'word-by-word': 1, 'plaid': 2, 'blind': 1, 'canary': 9, 'big-league': 1, 'sociable': 1, 'legal': 3, 'neat': 4, 'national': 2, 'six-for-five': 1, 'respectable': 1, 'encouraging': 1, 'money-making': 1, 'loose': 3, 'gentle': 4, 'embarrassing': 1, 'handy': 2, 'confidential-like': 1, 'astonished': 2, 'plenty': 1, 'satisfied': 1, 'token': 1, 'unhappy': 3, 'better-class': 1, 'forceful': 3, 'disrespectful': 2, 'exasperated': 1, 'vain': 1, 'leaky': 1, 'stinging': 1, 'beat-up': 1, 'frying': 2, 'housekeeping': 1, 'old-fashioned': 2, 'dog-tired': 1, 'broken': 1, 'sense': 2, 'sentimental': 1, 'fake': 1, 'out-holler': 1, 'colored': 1, 'mixed': 1, 'thick': 1, 'bang-bang': 1, 'flabby': 1, 'superior': 1, 'Beautiful': 1, 'fresh-looking': 1, 'silk-and-gold': 1, 'blonde': 2, 'sloppy': 1, 'royal': 1, 'ugly': 4, 'bashful': 5, 'kidding': 1, 'shy': 2, 'hissing': 1, 'phony': 1, 'misty': 2, 'devilish': 1, 'underground': 1, 'corroborating': 2, 'deaf': 1, 'ding': 1, 'capable': 1, 'Nice': 6, 'fair': 4, 'torn': 2, 'terminal': 1, 'ordinary': 3, 'hard-guy': 1, 'plump': 1, 'aware': 3, 'limp': 1, 'everyday': 1, 'trim': 1, 'two-storied': 1, 'perfect': 4, 'leisurely': 1, 'brute': 1, 'dumpy': 1, 'touching': 1, 'musical': 1, 'queer-shaped': 1, 'crooked-mouth': 1, 'five-dollar': 1, 'Deaf': 1, 'lay': 1, 'dinky': 1, 'full-time': 1, 'romantical': 3, 'Yeah-ah': 1, 'comfortable': 4, 'silky': 1, 'white-fur': 1, 'made-up': 1, 'desperate': 2, 'stunned': 2, 'nice-smelling': 1, 'purplish': 1, 'Afraid': 1, 'due': 2, 'shot-up': 1, 'pussy-particular': 1, 'easygoing': 1, 'dressy': 1, 'ingrown': 1, 'French': 1, 'growing-up': 1, 'horrible': 2, 'scattered': 1, 'beloved': 2, 'forgiving': 1, 'mean': 3, 'broader-type': 1, 'Sorry': 1, 'faceless': 1, 'smooth-working': 1, 'Skinny': 1, 'clipping': 1, 'unreal': 3, 'white-hot': 1, 'lightheaded': 1, 'Honest': 1, 'crooked-mouthed': 1, 'steady': 2, 'sunny': 1, 'irritated': 1, 'loose-fitting': 1, 'surprising': 1, 'confusing': 2, 'relative': 5, 'local': 2, 'three-room': 1, 'dangerous': 5, 'corny': 1, 'Sharp': 1, 'three-card': 1, 'honest': 1, 'sloppy-looking': 1, 'Routine': 1, 'unsolved': 1, 'disorderly': 1, 'unknown': 1, 'keen': 2, 'very': 2, 'bored': 2, 'jittery': 1, 'Gooney': 1, 'vour': 1, 'Lucky': 1, 'beat': 1, 'stubby': 1, 'High': 1, 'actual': 1, 'third-base': 1, 'available': 1, 'overdue': 1, 'feverish': 2, 'unnecessary': 1, 'insane': 1, 'frustrated': 1, 'outraged': 1, 'medical': 1, 'odd-shaped': 1, 'sly': 2, 'helpless': 2, 'grease-stained': 1, 'inner': 3, 'wild-eyed': 1, 'twisted': 2, 'jacked-up': 1, 'obscene': 1, 'lone': 2, 'asleep': 7, 'American': 1, 'selfish': 1, 'exceptional': 1, 'generous': 1, 'grassy': 1, 'soothing': 1, 'playful': 1, 'drowsy': 1, 'Communist': 2, 'hard-boiled': 1, 'religious': 1, 'mousy': 1, 'human': 1, 'Dark': 1, 'shameless': 1, 'bearable': 1, 'painful': 1, 'Real': 1, 'inky': 1, 'sorrowful': 1, 'key': 1, 'Fine': 2, 'refreshed': 1, 'expensive': 1, 'delicious': 2, 'golden-brown': 1, 'clever': 5, 'casual': 3, 'homely': 1, 'snazzy': 2, 'future': 1, 'delighted': 4, 'Wonderful': 1, 'devoted': 1, 'better-looking': 1, 'Hot': 1, 'screwy': 1, 'rival': 1, 'doubtful': 2, 'drunken': 2, "ol'": 3, 'sober': 2, 'bloodshot': 1, 'unshaven': 1, 'half': 1, 'vengeful': 1, 'menacing': 1, 'unconcerned': 1, 'lushing': 1, 'panicky': 1, 'full-length': 1, 'prickly': 1, 'faithful': 1, 'cocky': 1, 'Third': 1, 'angered': 1, 'startled': 1, 'static': 3, 'noble': 1, 'coast-to-coast': 1, 'dreadful': 1, 'Sudden': 1, 'honorable': 1, 'pale': 1, 'attentive': 1, 'delightful': 1, 'married': 3, 'invalid': 1, 'shameful': 1, 'irresponsible': 1, 'weird': 1, 'romantic': 1, 'difficult': 1, 'maddening': 1, 'rattrap': 1, 'triple': 1, 'satiny': 1, 'unblinking': 1, 'subject': 1, 'coming': 1, 'whipping': 1, 'newborn': 1, 'Straight': 1, 'legit': 1, 'terrifying': 1, '28l': 1, 'tangled': 1, 'Tangled': 1, 'mere': 1, 'contrite': 1, 'hopeful': 1, 'IRRITABLE': 1, 'sparkling': 1, 'depressed': 1, 'LAST': 1, 'TIRED': 1, 'solemn': 1, 'lean': 2, 'tonic': 2, 'Static': 1, 'dreary': 1, 'rude': 1, 'Goddamned': 1, 'holy': 1, 'pure': 1, 'youngish-looking': 1, 'urgent': 1, 'dignified': 1, 'later': 1, 'lively': 1, 'senseless': 1, 'mutual': 1, 'secluded': 1, 'shocking': 1, 'Spanish': 1, 'vicious': 1, 'homosexual': 1, 'unheard-of': 1, 'despicable': 2, 'wicked': 3, 'invisible': 1, 'packed': 1, 'brutal': 1, 'vile': 1, 'dreamlike': 1, 'franatic': 1, 'outa-town': 1, 'Fourth': 1, 'numb': 1, 'curly': 1, 'Such': 1, 'gorgeous': 1, 'further': 1, 'manly': 1}
Click song /@1982
{'Native': 3, 'Light': 1, 'electronic': 3, 'mechanical': 1, 'tot-ctt': 1, 'native': 1, 'Unmarked': 12, 'soundless': 1, 'hard': 35, 'fifth': 3, 'Mexican': 2, 'tilted': 5, 'casual': 2, 'stiff': 11, 'fat': 8, 'ash': 5, 'nervous': 13, 'black': 188, 'hot': 26, 'novel': 47, 'white': 126, 'empty': 17, 'Real': 2, 'blue': 16, 'twelfth': 1, 'wood-paneled': 1, 'okay': 91, 'old': 122, 'hacked-up': 1, 'brass-trimmed': 1, 'delightful': 2, 'bright': 22, 'strategic': 1, 'incipient': 1, 'long': 102, 'middleaged': 1, 'relieved': 6, 'wicked': 1, 'strange': 25, 'little': 124, 'quick': 9, 'other': 251, 'day-old': 1, 'ugly': 4, 'literary': 34, 'smooth': 6, 'sure': 97, 'wrong': 24, 'big': 55, 'whirling': 2, 'soft': 28, 'tremendous': 6, 'would-be': 1, 'helluva': 4, 'first': 129, 'bent': 17, 'financial': 2, 'sad': 19, 'troubled': 1, 'sick': 6, 'real': 34, 'different': 38, 'good': 215, 'own': 74, 'pleased': 9, 'dark': 31, 'gray': 27, 'true': 15, 'Orthodox': 1, 'surprised': 6, 'Unlisted': 1, 'only': 33, 'silent': 10, 'bad': 67, 'Ironic': 2, 'mangled': 1, 'same': 88, 'easy': 11, 'much': 120, 'Sure': 23, 'black-boxed': 1, 'fiftyfive': 1, 'decent': 3, 'flattered': 2, 'next': 72, 'liberal': 8, 'monthly': 2, 'dogshit-covered': 1, 'Western': 6, 'gaunt': 3, 'sharp': 11, 'northbound': 1, 'second': 44, 'marine': 5, 'tall': 11, 'brown': 24, 'rumpled': 1, 'anxious': 4, 'light': 9, 'antiaircraft': 1, 'secure': 1, 'arrogant': 2, 'sectioned-eight': 1, 'ten-thousand-mile': 1, 'blue-green': 1, 'awkward': 4, 'incongruous': 1, 'Good': 29, 'nonchalant': 2, 'afterclass': 1, 'Monthly': 1, 'ready': 40, 'Short': 1, 'unfrothed': 1, 'hopeful': 3, 'wet': 7, 'tentative': 2, 'honey-colored': 1, 'breeze-blown': 1, 'unbearable': 1, 'large': 19, 'lean': 6, 'violent': 2, 'upward': 1, 'Japanese': 10, 'past': 17, 'willing': 5, 'secret': 6, 'sturdy': 3, 'giant': 5, 'damp': 3, 'late': 21, 'fresh': 13, 'uncomfortable': 4, 'short': 20, 'loud': 9, 'cream-colored': 1, 'last': 83, 'peremptory': 1, 'small': 75, 'low': 10, 'extensive': 2, 'exuberant': 1, 'adjectiveless': 1, 'whole': 24, 'proscribed': 1, 'tough': 16, 'several': 22, 'trim': 1, 'medieval': 3, 'elated': 2, 'jealous': 8, 'implacable': 3, 'young': 65, 'dirty': 11, 'mournful': 2, 'folk': 3, 'bullet-spewing': 1, 'outside': 10, 'ass-end': 1, 'quiet': 32, 'spotted': 3, 'open': 34, 'lackluster': 1, 'bitter': 5, 'swollen': 1, 'small-time': 2, 'natural': 6, 'many': 76, 'great': 94, 'stale': 3, 'endless': 12, 'respectable': 2, 'bop-playing': 1, 'youthful': 2, 'able': 21, 'hungry': 10, 'bottom': 4, 'afraid': 21, 'scented': 1, 'Neolithic': 1, 'mutual': 8, 'pre-Cambrian': 1, 'untouched': 1, 'special': 35, 'high': 41, 'geological': 1, 'graduate': 3, 'slow': 13, 'pregnant': 9, 'clear': 15, 'advanced': 2, 'full': 14, 'nice': 41, 'polite': 5, 'crazy': 16, 'distant': 11, 'new': 76, 'Last': 4, 'portable': 1, 'frightening': 6, 'serious': 16, 'marvelous': 10, 'Democratic': 2, 'angry': 19, 'confident': 4, 'unusual': 5, 'Fine': 1, 'sparkling': 2, 'stamped': 1, 'paternal': 1, 'self-addressed': 1, 'muted': 4, 'glorious': 1, 'attendant': 2, 'glad': 26, 'civilian': 1, 'spare': 2, 'tandem': 1, 'impending': 1, 'cancerous': 1, 'inward': 1, 'wan': 4, 'certain': 23, 'Be-bop': 1, 'Jewish': 26, 'triumphant': 1, 'fourth-rank': 1, 'antagonistic': 2, 'warm': 13, 'acceptable': 1, 'pained': 1, 'genuine': 2, 'general': 3, 'filmic': 1, 'third': 11, 'white-haired': 1, 'weary': 5, 'right': 54, 'guilty': 8, 'slim': 1, 'capable': 6, 'German': 6, 'incredible': 3, 'such': 68, 'overseas': 2, 'double': 3, 'low-moaning': 1, 'paired': 1, 'Big': 16, 'wide': 7, 'warped': 2, 'later': 2, 'rocky': 1, 'flat': 11, 'opposite': 3, 'thick': 15, 'common': 4, 'heavy': 28, 'devoid': 2, 'scuffed': 1, 'top': 7, 'dangerous': 5, 'intelligent': 4, 'Italian': 18, 'Anglo-Saxon': 3, 'revolutionary': 4, 'necessary': 4, 'Brown': 2, 'strong': 15, 'goddamn': 31, 'deep': 24, 'Irish': 6, 'American': 35, 'important': 22, 'capitalist': 2, 'mad': 8, 'private': 19, 'horrendous': 3, 'shabby': 2, 'heavy-headed': 1, 'cold': 34, 'happy': 16, 'Indian': 6, 'slippery': 1, 'post-Catherine': 1, 'pensive': 6, 'bittersweet': 1, 'fitting': 2, 'sympathetic': 3, 'protective': 1, 'legal': 1, 'sheer': 5, 'disgruntled': 1, 'oblique': 3, 'sightless': 1, 'dependent': 1, 'close': 16, 'sudden': 14, 'free': 15, 'open-ended': 1, 'Strange': 5, 'drunken': 3, 'beige': 1, 'local': 5, 'dim': 2, 'penis-sized': 1, 'former': 7, 'darkened': 2, 'longish': 1, 'plumblue': 1, 'present': 15, 'clean': 9, 'well-tailored': 1, 'severe': 5, 'enlarged': 1, 'joint': 4, 'whisperingly': 1, 'demure': 1, 'complete': 10, 'expensive': 6, 'yellow': 10, 'drunk': 19, 'soggy': 2, 'Tall': 1, 'physical': 4, 'blond': 7, 'ratty': 1, 'obvious': 13, 'English': 9, 'mysterious': 2, 'gentle': 6, 'free-lance': 1, 'plain': 7, 'mothlike': 1, 'nationwide': 1, 'sub-branch': 1, 'European': 9, 'big-boned': 1, 'beautiful': 2, 'mistaken': 1, 'pedestrian': 1, 'superior': 4, 'deafening': 1, 'fearful': 8, 'usual': 21, 'frequent': 4, 'funny': 6, 'rich': 21, 'few': 62, 'curious': 9, 'Rotten': 1, 'thin': 12, 'brittle': 3, 'ballet': 1, 'restless': 8, 'public': 15, 'faceless': 5, 'reluctant': 1, 'envious': 5, 'individual': 5, 'embarrassing': 1, 'reckless': 1, 'cocky': 2, 'solid': 15, 'hasty': 1, 'weak': 5, 'rotten': 2, 'nigger-black': 1, 'unyielding': 1, 'valuable': 2, 'final': 13, 'full-blown': 2, 'distressed': 3, 'thankful': 1, 'honest': 5, 'outer': 3, 'Uh-huh': 2, 'uneasy': 6, 'grand': 17, 'keen': 1, 'worth': 8, 'uh-huh': 1, 'fine': 27, 'theirs': 4, 'red': 21, 'favorite': 4, 'probed': 1, 'simple': 7, 'Next': 9, 'huge': 14, 'mock': 3, 'imperious': 3, 'turned-out': 2, 'leisurely': 6, 'starched': 3, 'half': 1, 'modest': 3, 'neat': 12, 'domestic': 3, 'unflappable': 1, 'dead': 28, 'innocent': 8, 'ordinary': 5, 'Spanish': 51, 'pressing': 1, 'foreign': 3, 'vulnerable': 8, 'latter': 5, 'aware': 16, 'possible': 15, 'gratifying': 1, 'entire': 8, 'intimidating': 1, 'unwilling': 2, 'ceaseless': 1, 'early': 13, 'subliminal': 1, 'courteous': 1, 'Much': 3, 'sweet': 7, 'Civil': 3, 'British': 4, 'familiar': 15, 'faraway': 2, 'mute': 1, 'daily': 3, 'bone-dry': 1, 'threatless': 1, 'landscaped': 1, 'fifteen-cent': 1, 'located': 3, 'formless': 1, 'popular': 9, 'romantic': 2, 'traditional': 4, 'racial': 10, 'nonexistent': 2, 'satisfied': 3, 'existential': 2, 'self-hatred': 1, 'South': 1, 'winter-slicked': 1, 'visible': 6, 'abused': 1, 'intense': 3, 'cruel': 2, 'limitless': 1, 'cooking': 2, 'vibrant': 3, 'tiresome': 1, 'motionless': 11, 'murderous': 1, 'infinite': 2, 'careful': 8, 'correct': 9, 'invisible': 4, 'inherent': 3, 'unchanged': 4, 'direct': 4, 'historical': 5, 'objective': 1, 'eerie': 2, 'difficult': 7, 'poor': 23, 'good-looking': 2, 'cunning': 9, 'original': 2, 'golden': 7, 'amateur': 1, 'fitted': 1, 'tolerant': 2, 'selfevident': 1, 'shallow': 4, 'French': 9, 'rubbermetallic': 1, 'lonely': 5, 'loaded': 2, 'indistinguishable': 1, 'total': 2, 'back': 7, 'eager': 8, 'Unthinkable': 1, 'proper': 11, 'dejected': 2, 'fast': 3, 'sorry': 34, 'Afro-Cuban': 1, 'Incredible': 2, 'gold-rimmed': 1, 'proud': 6, 'loose-limbed': 1, 'timbal': 1, 'bored': 3, 'jive': 5, 'cha-chacha-ing': 1, 'Nice': 9, 'bare': 3, 'feminine': 1, 'First': 1, 'slight': 6, 'Catalan': 7, 'extra': 4, 'African': 11, 'cute': 3, 'midnight-to-dawn': 1, 'Basque': 1, 'pernicious': 1, 'Few': 2, 'star-spangled': 1, 'incontrovertible': 1, 'Little': 6, 'delicate': 4, 'insidious': 3, 'feder1co': 1, 'further': 3, 'rid': 3, 'remarkable': 2, 'frightened': 9, 'triple': 3, 'single': 10, 'related': 3, 'hip-length': 1, 'unmolested': 1, 'civil': 6, 'blue-eyed': 2, 'brooding': 4, 'advantageous': 2, 'friendly': 9, 'terrible': 8, 'wise': 6, 'momentous': 1, 'cheap': 6, 'loose': 4, 'Bad': 6, 'rutted': 1, 'low-wattage': 1, 'tiled': 2, 'half-darkened': 1, 'godforsaken': 1, 'green': 15, 'bereft': 1, 'rubber-soled': 1, 'fretful': 2, 'cheerful': 2, 'concentric': 1, 'chilling': 1, 'available': 6, 'provincial': 1, 'gracious': 6, 'chilly': 2, 'front': 12, 'accusatory': 1, 'infertile': 1, 'graceful': 1, 'enciphered': 1, 'interior': 2, 'tired': 29, 'concrete': 4, 'ignorant': 1, 'air-conditioned': 2, 'Such': 4, 'drastic': 2, 'electric': 2, 'due': 5, 'benevolent': 2, 'Greek': 5, 'professional': 2, 'plugged-in': 1, 'negative': 1, 'unconnected': 1, 'solicitous': 2, 'endowed': 2, 'sexual': 5, 'spontaneous': 1, 'magic': 1, 'positive': 2, 'enough': 18, 'magical': 2, 'half-covered': 1, 'lucky': 5, 'unpacked': 1, 'clever': 5, 'threadbare': 1, 'three-star': 1, 'twin': 2, 'daytime': 2, 'dazzling': 3, 'wooden': 1, 'unburied': 1, 'long-forgotten': 1, 'Sardinian': 1, 'fine-woven': 1, 'mild': 4, 'cool': 12, 'deluxe': 1, 'symptomatic': 2, 'pussy': 2, 'automatic': 1, 'Neat': 5, 'uptown': 3, 'crisp': 2, 'crackling': 1, 'malignant': 1, 'targetable': 1, 'near': 3, 'monstrous': 2, 'revolving': 1, 'oblivious': 1, 'fugitive': 2, 'sluggish': 2, 'sour': 3, 'uncelebrated': 1, 'evil': 2, 'classical': 1, 'palpable': 2, 'unhung': 1, 'yellow-gray': 1, 'dolichocephalic': 1, 'Canopic': 2, 'pristine': 1, 'pink': 3, 'selfless': 1, 'mobile': 2, 'fiftieth': 1, 'congratulatory': 2, 'urgent': 4, 'shit-stained': 1, 'sober': 4, 'uncommon': 1, 'kind': 3, 'adequate': 2, 'future': 3, 'dispassionate': 1, 'upper': 6, 'smoked': 1, 'startled': 2, 'definite': 1, 'handy': 1, 'New': 2, 'embarrassed': 7, 'interracial': 2, 'disturbed': 1, 'active': 5, 'one-shot': 1, 'convincing': 1, 'well-known': 2, 'inexpensive': 1, 'national': 7, 'Different': 1, 'whipping': 3, 'powerful': 4, 'diligent': 1, 'stylish': 2, 'seven-thousand-word': 1, 'interested': 9, 'pale': 2, 'bulletin-board': 1, 'discreet': 2, 'satisfactory': 1, 'nearby': 6, 'western': 1, 'reticent': 2, 'gray-skinned': 1, 'collective': 8, 'dull': 3, 'self-centered': 2, 'desperate': 6, 'daring': 3, 'spectacular': 1, 'affricative': 2, 'disembodied': 1, 'unspoken': 2, 'limp': 3, 'fulla': 1, 'additional': 3, 'falling-down': 1, 'mottled': 1, 'silly': 4, 'race-related': 1, 'pleasant': 2, 'Wrong': 1, 'Terrible': 1, 'wild': 1, 'heartless': 1, 'crude': 2, 'twisted': 1, 'awful': 8, 'Want': 3, 'lovely': 2, 'lousy': 14, 'noble': 1, 'courageous': 2, 'Republican': 2, 'high-toned': 1, 'gray-green': 1, 'Roman': 7, 'Stoic': 1, 'funeral': 1, 'song-and-dance': 1, 'Many': 2, 'religious': 6, 'previous': 7, 'universal': 1, 'fatal': 1, 'socialist': 1, 'horrible': 1, 'unable': 5, 'carpeted': 3, 'foot-high': 1, 'epidemic': 1, 'freezing': 1, 'iced-over': 1, 'ferocious-looking': 1, 'fourteenth': 1, 'silvery': 2, 'ancient': 11, 'Christian': 2, 'Muslim': 2, 'realistic': 2, 'prospective': 1, 'healthy': 1, 'famous': 8, 'tiny': 5, 'mortal': 1, 'desirable': 1, 'implicit': 1, 'immense': 3, 'exact': 3, 'rough': 4, 'Same': 5, 'hospitable': 1, 'well-fed': 1, 'disjointed': 2, 'Fantastic': 5, 'explosive': 2, 'childish': 1, 'Glad': 2, 'psychological': 1, 'magnanimous': 1, 'Special': 1, 'steady': 3, 'imminent': 2, 'gleeful': 1, 'striking': 2, 'sexy': 2, 'useless': 1, 'metered': 1, 'withering': 1, 'raucous': 1, 'left': 8, 'White': 3, 'perfect': 3, 'pure': 2, 'embittered': 1, 'female': 8, 'one-act': 1, 'male': 1, 'weathered': 1, 'overlarge': 1, 'maiden': 1, 'conservative': 3, 'Single': 1, 'Scotch-Irish': 2, 'Polish-German': 1, 'lovable': 1, 'expressionless': 3, 'burned': 1, 'select': 2, 'French-Italian': 1, 'musty': 1, 'quaint': 1, 'subsidized': 1, 'inartistic': 1, 'hyphenated': 1, 'artistic': 5, 'exceptional': 2, 'political': 10, 'successful': 2, 'lukewarm': 1, 'mean': 3, 'painful': 2, 'prominent': 1, 'surly': 1, 'crusty': 1, 'svelte': 1, 'breaking': 1, 'main': 10, 'unseemly': 1, 'countless': 1, 'very': 8, 'aged': 3, 'huge-bladed': 1, 'fancy': 1, 'comfortable': 7, 'unloaded': 2, 'two-headed': 1, 'ex-jazz': 1, 'mellow': 1, 'regular': 3, 'corduroy': 1, 'frosty': 1, 'brief': 5, 'unhappy': 6, 'Parker-like': 1, 'darkening': 2, 'fantastic': 1, 'Sorry': 6, 'dumb': 3, 'untoward': 3, 'Dumb': 2, 'like': 3, 'bland': 2, 'subterranean': 1, 'calm': 4, 'unseen': 1, 'upset': 1, 'half-naked': 1, 'nine-year-old': 1, 'scared': 5, 'vain': 3, 'instinctive': 1, 'twenty-foot': 1, 'Natural': 3, 'millionyear-old': 1, 'well-mannered': 1, 'evasive': 1, 'initial': 1, 'Dutch': 1, 'West': 3, 'dry': 4, 'five-thousand-dollar': 1, 'mental': 1, 'editorial-publishing-literary': 1, 'ethnic': 6, 'Voice-print': 1, 'token': 5, 'tonal': 1, 'formidable': 2, 'senior': 4, 'enormous': 3, 'yeah': 4, 'stamped-tin': 1, 'irritable': 2, 'pugnacious': 1, 'adolescent': 2, 'tight': 7, 'holy': 1, 'Holy': 1, 'blackwhite': 1, 'circumspect': 1, 'unprepared': 2, 'stern': 1, 'shit-smelling': 1, 'ill-at-ease': 1, 'Afraid': 1, 'Commercial': 1, 'occasional': 3, 'exciting': 3, 'major': 7, 'godlike': 1, 'evil-eyed': 1, 'visual': 1, 'undreamed': 1, 'attractive': 4, 'spit-and-gum-stained': 1, 'rhetorical': 1, 'loving': 2, 'pretty': 4, 'precise': 5, 'bold': 4, 'middle': 4, 'fear-stink': 1, 'disgusting': 2, 'male-descended': 2, 'quick-dying': 1, 'word-directed': 1, 'conscious': 4, 'chain-smoking': 1, 'honorable': 2, 'fourth': 1, 'peculiar': 2, 'ashamed': 5, 'Working': 3, 'busy': 8, 'cloudy': 1, 'splayed': 1, 'fortified': 1, 'jaundiced': 1, 'khaki-clad': 1, 'quick-striding': 1, 'false': 3, 'draped': 1, 'insane': 2, 'majestic': 1, 'key': 1, 'doomed': 1, 'sans': 1, 'fleshless': 1, 'knowledgeable': 1, 'consummate': 1, 'expendable': 1, 'pronounced': 1, 'fleeting': 4, 'costless': 1, 'withered': 1, 'sweeping': 2, 'nameless': 4, 'generous': 3, 'peaceful': 1, 'average': 1, 'overall': 1, 'last-minute': 2, 'riotous': 1, 'intrepid': 1, 'sound': 7, 'hostile': 3, 'east': 2, 'broken-headed': 1, 'broken': 3, 'shattered': 1, 'slick': 5, 'Black': 18, 'discontented': 1, 'amiable': 1, 'right-hand': 3, 'seventh': 1, 'left-handed': 1, 'Chinese': 7, 'gold': 1, 'Northern': 3, 'vast': 11, 'sky-blue': 1, 'two-line': 1, 'foggy': 1, 'nightly': 3, 'misanthropic': 1, 'Southern': 1, 'wind-seared': 1, 'Lousy': 2, 'puzzling': 2, 'blank': 1, 'educational': 1, 'raw': 2, 'straight': 4, 'sun-struck': 1, 'edgy': 1, 'wrathful': 1, 'relentless': 3, 'sullen': 6, 'sticky': 3, 'costly': 1, 'dispensable': 2, 'shitless': 2, 'brand-new': 2, 'wideopen': 1, 'suspicious': 8, 'economic': 1, 'quick-tempered': 1, 'uncertain': 3, 'unclinching': 1, 'brute': 1, 'snappish': 1, 'semantic': 1, 'suborbital': 1, 'clinching': 1, 'fifteen-minute': 1, 'w1th': 1, 'military': 1, 'watchful': 2, 'impossible': 2, 'ant': 1, 'upcountry': 1, 'uniform': 1, 'covert': 2, 'nighttime': 1, 'intent': 1, 'dog-ass': 1, 'Empty': 1, 'intact': 1, 'steadying': 1, 'safe': 6, 'starboard': 1, 'Goddamn': 7, 'cramped': 1, 'far': 1, 'personal': 7, 'self-shrink': 1, 'insistent': 3, 'unlined': 1, 'resilient': 1, 'Quiet': 1, 'taut': 3, 'nude': 5, 'theatrical': 3, 'awesome': 5, 'long-dead': 1, 'latent': 1, 'intricate': 4, 'Boeing-produced': 1, 'nigger': 3, 'prepared': 2, 'indignant': 3, 'humming': 3, 'Egyptian': 6, 'theft-plagued': 1, 'sly': 2, 'irritated': 1, 'Cultural': 1, 'conceivable': 1, 'buff-colored': 1, 'orange-brown': 1, 'dormant': 1, 'battered': 4, 'tattered': 1, 'aqualithic': 1, 'awash': 1, 'buggering': 1, 'unspeakable': 2, 'woeful': 1, 'sodden': 1, 'impressed': 1, 'dreary': 3, 'two-man': 1, 'airy': 1, 'atomic-testing': 1, 'overcast': 1, 'pitiful': 1, 'Coo-tie': 1, 'married': 4, 'adult': 1, 'intellectual': 3, 'precious': 1, 'unknown': 3, 'neutral': 3, 'Whole': 2, 'debased': 1, 'powerless': 3, 'depressed': 2, 'concerned': 2, 'proto-ancient': 1, 'massive': 4, 'subtly': 1, 'superficial': 1, 'palatable': 1, 'disappointed': 1, 'blonde': 1, 'Polish': 1, 'Good-looking': 1, 'eee-normous': 1, 'depreciatory': 1, 'distinct': 4, 'downcast': 1, 'Ready': 3, 'getting-up': 1, 'godless': 1, 'surprising': 1, 'sun-filled': 1, 'Hard': 3, 'Prime': 2, 'prime': 1, 'altered': 1, 'obligatory': 1, 'Other': 4, 'hefty': 1, 'quick-brained': 1, 'attentive': 1, 'distraught': 1, 'nimble-fingered': 1, '150-millimeter': 1, 'Top': 1, 'Secret': 1, 'beloved': 2, 'instrumental': 1, 'lightning-fast': 1, 'contemplative': 1, 'Double-mugged': 1, 'outraged': 1, 'mighty': 3, 'trusting': 2, 'King-Shuttlesworth': 1, 'congenital': 1, 'salt-and-pepper': 1, 'unending': 3, 'blood-and-power': 1, 'long-striding': 1, 'mixed': 4, 'camp-like': 1, 'mediocre': 2, 'fixed': 1, 'grass-covered': 1, 'inexorable': 1, 'ageless': 2, 'short-striding': 1, 'foul': 2, 'standard': 2, 'human': 7, 'gimlet': 1, 'various': 11, 'husky': 1, 'harmless': 1, 'poetic': 1, 'prickless': 1, 'Catholic': 1, 'work-filled': 1, 'slovenly': 1, 'bigoted': 1, 'broken-down': 1, 'black-and-white': 1, 'careless': 1, 'breathless': 2, 'all-white': 1, 'Protestant': 2, 'sociological': 1, 'stupid': 3, 'routine': 4, 'foolish': 2, 'ridiculous': 2, 'nattily': 1, 'packed': 1, 'excellent': 4, 'teeny': 1, 'uniformed': 1, 'transitory': 2, 'one-bedroom': 1, 'receptive': 1, 'nonlook': 1, 'partial': 1, 'threatening': 2, 'taxi-light': 1, 'concerted': 1, 'furnished': 1, 'eat-in': 1, 'warrior-ready': 1, 'spacious': 1, 'civilized': 1, 'walk-in': 1, 'gorgeous': 2, '=': 10, 'shaded': 2, 'repentant': 1, 'eligible': 1, 'inevitable': 1, 'interesting': 4, 'first-rate': 2, 'immediate': 2, 'book-people': 1, 'Gaelic': 1, 'Interesting': 2, 'Bright': 1, 'cautious': 4, 'favorable': 1, 'punchy': 1, 'purple': 1, 'dissident': 1, 'nonwhite': 5, 'similar': 4, 'naturalized': 1, 'traceable': 1, 'inside': 2, 'Amer-Indian': 1, 'cultural': 6, 'incestuous': 1, 'temporary': 2, 'Thelonious': 1, 'secondary': 4, 'snide': 1, 'Asian': 1, 'like-minded': 1, 'meager': 1, 'disdainful': 1, 'lead': 1, 'Russian': 2, 'self-serving': 1, 'nasty': 3, 'startling': 2, 'nonblack': 1, 'cozy': 2, 'mitigating': 1, 'hapless': 1, 'soft-swelling': 1, 'heady': 1, 'insular': 1, 'atrocious': 1, 'brilliant': 4, 'devastating': 1, 'lengthy': 1, 'disparate': 1, 'medical': 1, 'bemused': 1, 'unspecific': 1, 'classic': 1, 'Marvelous': 3, 'alive': 7, 'anti-Semitic': 1, 'unnecessary': 1, 'Yiddish': 1, 'temperate': 2, 'pushy': 1, 'mystical': 1, 'money-grubbing': 1, 'wondrous': 1, 'leprous': 1, 'ethnocentric': 1, 'Hebrew': 1, 'imperative': 1, 'Joking': 1, 'welcome': 2, 'unattractive': 3, 'smart': 3, 'cleated': 1, 'extended': 1, 'self-respecting': 1, 'desultory': 1, 'damn': 3, 'three-hour': 1, 'fifteen-mile-long': 1, 'six-month': 2, 'bell-bottomed': 1, 'slender': 3, 'Italian-Austrian': 1, 'nig-gah': 1, 'n1ggah': 1, 'Nigerian': 1, 'irregular': 1, 'n1g-gah': 1, 'niggah': 1, 'Interracial': 1, 'frenzied': 2, 'Accustomed': 1, 'shared': 1, 'instant': 2, 'militant': 5, 'Great': 2, 'tuneless': 1, 'immune': 2, 'specific': 1, 'turbulent': 1, 'swift': 3, 'rapid': 3, 'hooded': 1, 'ludicrous': 1, 'long-legged': 1, 'rare': 1, 'separate': 2, 'plump': 2, 'Hot': 2, 'grateful': 1, 'challenging': 1, 'sickle': 1, 'bewildered': 2, 'apologetic': 5, 'alert': 3, 'distinguishing': 1, 'absent-minded': 2, 'Latin': 2, 'corporate': 1, 'discouraging': 1, 'Senegal': 1, 'staggering': 3, 'Gullian': 12, 'potent': 1, 'effective': 2, 'Albigensian': 1, 'keener': 1, 'masculine': 1, 'Burnt': 1, 'rimmed': 1, 'underslung': 1, 'ecstatic': 2, 'dreamfed': 1, 'splendid': 2, 'flagging': 1, 'adjoining': 1, 'fetid': 1, '29th': 1, 'Evil-eyed': 1, 'dogshit-littered': 1, 'unrecognizable': 1, 'snapped': 1, 'unimaginable': 3, 'linear': 1, 'inner': 3, 'shaven': 1, 'northern': 1, 'peaked': 1, 'tropical': 2, 'disheveled': 1, 'terrifying': 1, 'worn': 2, 'spotless': 1, 'hush': 2, 'razor-sharp': 1, 'fevered': 2, 'youngish': 1, 'eight-pound': 1, 'troublesome': 2, 'pleasurable': 2, 'Newborn': 1, 'cordial': 2, 'mountainous': 1, 'Cute': 1, 'overt': 1, 'Clean': 1, 'unreliable': 1, 'extravagant': 1, 'black-white': 1, 'Ninety-fifth': 1, 'Ninety-sixth': 1, 'Militant': 1, 'exclusive': 1, 'fair': 3, 'shooting': 3, 'precinct': 1, 'clinking': 1, 'splintered': 3, 'unconscious': 1, 'poisonous': 1, 'imperial': 1, 'established': 1, 'nosiest': 1, 'Lovely': 1, 'taupe-colored': 1, 'decibel': 1, 'tense': 2, 'engraved': 1, 'unoccupied': 1, 'multiple': 1, 'convenient': 1, 'Tough': 2, 'Fine-looking': 1, 'languid': 2, 'notorious': 1, 'disturbing': 1, 'thyroidal': 1, 'dumfounded': 1, 'benched': 1, 'intimate': 1, 'helpless': 1, 'clenched': 1, 'powdered': 1, 'nigguh': 3, 'rear': 1, 'Underground': 1, 'Hush': 1, 'Mar-teen': 1, 'southern': 2, 'odd': 2, 'ever-present': 1, 'well-liked': 1, 'wealthy': 2, 'lime-filled': 1, 'cooling': 2, 'cooperative': 1, 'naked': 1, 'windward': 1, 'twin-mounted': 1, 'sibilant': 1, 'primary': 2, 'Ordinary': 1, 'sunny': 1, 'perpetual': 1, 'fashionable': 1, 'grayuniformed': 1, 'Stupid': 3, 'official': 3, 'accessible': 1, 'antipasto': 2, 'crooked': 2, 'profuse': 1, 'surrogate': 1, 'super': 3, 'boundless': 1, 'comforting': 4, 'quizzical': 1, 'old-fashioned': 2, 'British-made': 1, 'musical': 1, 'nipped-in': 1, 'rakish': 1, 'Asian-Hispanic-Amer-Indian-Afro-American': 1, 'Devoted': 1, 'Ethnic': 1, 'radical': 1, 'lavish': 1, 'high-rise': 1, 'unadorned': 1, 'stable': 1, 'whirlwind': 1, 'spiteful': 1, 'defiant': 1, 'vengeful': 1, 'dew-spilled': 1, 'grass-turned': 1, 'honest-to-God': 1, 'fragile': 2, 'helpful': 1, 'geriatric': 1, 'crass': 1, 'Former': 1, 'metallic': 1, 'beglassed': 1, 'sharpened': 1, 'berubbered': 1, 'Israeli': 4, 'inbound': 1, 'outbound': 1, 'wall-to-wall': 1, 'Ole': 2, 'obsolete': 1, 'astounded': 1, 'multicolored': 3, 'riddled': 1, 'vital': 1, 'Arab': 2, 'vigorous': 1, 'indirect': 1, 'bulletproof': 2, 'righteous': 1, 'Arab-Iberian': 1, 'twenty-five-footer': 1, 'instantaneous': 1, 'smelly': 1, 'exorbitant': 1, 'narrow': 1, 'bucolic': 1, 'pivot': 2, 'imaginary': 5, 'upraised': 1, 'six-foot-eight-inch': 1, 'gullible': 1, 'sloe-eyed': 1, 'rampant': 1, 'outstretched': 2, 'coed-professor': 1, 'acerbic': 1, 'impoverished': 1, 'successive': 1, 'four-day': 1, 'wonderful': 3, 'straight-back': 1, 'flashy': 1, 'handwritten': 1, 'depthless': 1, 'Kindred': 1, 'professorial': 1, 'gingerbread-brown': 1, 'vague': 2, 'deceptive': 2, 'elastic': 1, 'frantic': 2, 'folding': 2, 'seductive': 1, 'flaccid': 1, 'greenish': 1, 'expatriate': 1, 'disappointing': 1, 'inept': 1, 'terminal': 1, 'minor': 2, 'undressed': 1, 'undigested': 1, 'unsigned': 1, 'fuckedup': 1, 'fashion-model': 1, 'godawful': 1, 'eastern': 2, 'Slick': 1, 'Two-two-two': 1, 'Dial': 1, 'sleepy': 2, 'luminous': 1, 'jagged': 1, 'still-rumpled': 1, 'merry': 1, 'shitty': 2, 'gruff': 3, 'Fourteenth': 1, 'eighteen-month-old': 1, 'antiartistic': 1, 'butter-rich': 1, 'nineteenth': 2, 'late-eighteenth-century': 1, 'paneled': 1, 'dubious': 1, 'consular': 1, 'sunscorched': 1, 'present-day': 1, 'zebraic': 1, 'gas-fume': 1, 'obsequious': 1, 'recent': 2, 'whimsical': 1, 'dark-skinned': 1, 'manly': 1, 'mischievous': 1, 'haughty': 1, 'lusty': 1, 'clear-cut': 1, 'out-of-home': 1, 'worried': 1, 'sleek': 3, 'considerate': 1, 'assorted': 1, 'commercial': 2, 'Danish': 1, 'essential': 1, 'Strong': 1, 'upper-level': 1, 'reserved': 1, 'random': 1, 'subtle': 5, 'two-hour': 1, 'substantial': 1, 'unofficial': 2, 'jovial': 1, 'puffy': 1, 'glamorous': 1, 'one-dimensional': 1, 'eventual': 1, 'beardless': 1, 'annual': 3, 'steep': 1, 'singular': 2, 'adamant': 3, 'party-pretty': 1, 'iambic': 1, 'imaginable': 1, 'malevolent': 2, 'booming': 1, 'ultimate': 1, 'bush': 1, 'recipient': 1, 'relative': 3, 'hesitant': 1, 'sane': 1, 'somber': 2, 'asleep': 2, 'runty': 1, 'waist-deep': 1, 'precipitous': 1, 'indelicate': 1, 'fragmented': 1, 'considerable': 2, 'Afro-Russian': 1, 'progressive': 1, 'blue-collared': 1, 'stunning': 1, 'Old': 3, 'lyrical': 1, 'unnamed': 1, 'mine': 3, 'shanty': 1, 'wayward': 1, 'thorough': 1, 'Token': 1, 'turgid': 2, 'coconut-flavored': 1, 'creative': 1, 'distinctive': 1, 'incapable': 3, 'inquisitive': 2, 'oral': 1, 'Korean': 1, 'old-line': 1, 'low-level': 1, 'branch-wide': 1, 'modern': 2, 'indifferent': 1, 'Outside': 1, 'foremost': 2, 'Fundamental': 1, 'Basic': 1, 'proficient': 1, 'quarterly': 1, 'gut-churning': 1, 'central': 1, 'departmental': 2, 'Oriental': 2, 'rinky-dink': 2, 'unachievable': 1, 'remedial': 3, 'invaluable': 1, 'basic': 3, 'unequaled': 1, 'treacherous': 1, 'benign': 2, 'Creative': 1, 'literate': 1, 'frozen': 1, 'grown': 1, 'Gothic': 2, 'radiant': 1, 'vivacious': 1, 'buoyant': 1, 'administrative': 1, 'subservient': 1, 'three-piece': 1, 'affirmative': 1, 'bleak': 1, 'equal': 3, 'ineffectual': 1, 'innate': 1, 'hidden': 2, 'fond': 1, 'sawed-off': 1, 'propped-up': 1, 'coast-to-coast': 1, 'choosy': 1, 'low-brow': 1, 'high-brow': 1, 'well-honed': 1, 'uncharted': 1, 'spatial': 1, 'migratory': 1, 'unconscionable': 1, 'biographical': 1, 'myriad': 1, 'clumsy': 1, 'inexplicable': 1, 'sinister': 2, 'vodka-inspired': 1, 'five-day': 1, 'Senior': 1, 'unencumbered': 1, 'rousing': 1, 'aloof': 1, 'deadly': 3, 'charitable': 1, 'addictive': 1, 'cutesy-poo': 1, 'Happy': 1, 'sabbatical': 1, 'illiterate': 1, 'daisy': 1, 'painless': 1, 'thirty-year-old': 1, 'demeaning': 1, 'harsh': 2, 'street-corner': 1, 'bulky': 1, 'wrinkled': 1, 'hydrostatic': 1, 'inanimate': 1, 'frightful': 1, 'unreasonable': 1, 'tremulous': 1, 'prying': 1, 'unvarying': 1, 'Slowing-down': 1, 'cosmic': 1, 'all-encompassing': 1, 'heavenly': 1, 'balanced': 2, 'fading': 1, 'star-laden': 1, 'runaway': 1, 'diagonal': 1, 'shimmering': 1, 'triangular-shaped': 1, 'Dark': 1, 'lakeside': 1, 'Surprised': 1, 'Bored': 2, 'still-distant': 1, 'circular': 1, 'well-armed': 1, 'Sound': 1, 'testy': 1, 'abrupt': 2, 'ominous': 2, 'inverse': 1, 'marked': 3, 'sun-drenched': 1, 'over-ocean': 1, 'Moravian': 1, 'sun-bright': 1, 'separated': 1, 'Cretaceous': 1, 'long-extinct': 1, 'multinational': 1, 'inch-per-year': 1, 'first-born': 1, 'lazy': 1, 'absent': 2, 'unheard-of': 1, 'Absurd': 1, 'interchangeable': 1, 'physiological': 1, 'lofty': 1, 'armed': 2, 'seeming': 1, 'shedded': 1, 'midbound': 1, 'numerous': 1, 'laudatory': 2, 'bouncy': 1, 'incredulous': 3, 'super-honky': 1, 'blue-collar': 1, 'nigger-in-theprojects': 1, 'two-chromosome': 1, 'obscene': 1, 'gibbous': 1, 'blunt': 1, 'contrite': 1, 'unbroken': 1, 'abstract': 1, 'cosmological': 1, 'primate': 1, 'Ancient': 1, 'joyful': 1, 'long-gone': 1, 'psychic': 1, 'striped': 1, 'steel-engraved': 1, 'vomit': 1, 'greedy': 2, 'interesting-looking': 1, 'importantappearing': 1, 'pipal': 1, 'shy': 1, 'wham-bang': 1, '92nd': 1, 'Regimental': 1, '372nd': 2, 'tarnished': 1, 'middleweight': 1, 'amazing': 1, 'off': 1, 'new-found': 1, 'tainted': 1, 'Andalusian': 1, 'high-bulk': 1, 'witless': 1, 'soured': 1, 'nationalist': 1, 'elementary': 1, 'mere': 2, 'one-way': 1, 'enamored': 2, 'humid': 3, 'unrelenting': 1, 'constant': 2, 'luxurious': 1, 'wearisome': 1, 'fortunate': 1, 'millionth': 1, 'proverbial': 1, 'forlorn': 2, 'eldest': 2, 'greasy': 1, 'crumpled': 1, 'So-and-so': 2, 'exotic': 1, 'three-dimensional': 1, 'superb': 1, 'hard-jawed': 1, 'unpredictable': 1, 'aerodynamic': 1, 'simulated': 2, 'Hispanic': 1, 'straightforward': 1, 'four-sided': 1, 'broad-bladed': 1, 'long-haired': 1, 'Olmec': 2, 'gigantic': 1, 'crowded': 1, 'CERTAIN': 1, 'square': 2, 'INDIAN': 1, 'anger-threatening': 1, 'negro1d': 1, 'normal': 3, 'experimental': 1, 'indefinite': 1, 'crossword': 1, 'jive-left': 1, 'one-letter': 1, 'swishy': 1, 'bustling': 1, 'self-conscious': 1, 'Nubian': 1, 'stupendous': 1, 'cross-legged': 1, 'furtive': 1, 'pinkish': 1, 'yellowcolored': 1, 'dangling': 1, 'slanted-eyed': 1, 'probable': 1, 'suspect': 1, 'hackneyed': 1, 'regional': 3, 'lusterless': 1, 'whooosh': 1, 'distinguished': 1, 'whiskey-sheened': 1, 'deft': 1, 'up-to-date': 1, 'lute': 1, 'double-flute': 1, 'washed': 1, 'beaded': 1, 'ole': 1, 'patinaed': 1, 'brisk': 1, 'absolute': 1, 'two-inch': 1, 'slate-bed': 1, 'upper-class': 1, 'ignominious': 1, 'full-bodied': 1, 'brusque': 1, 'Funny': 1, 'superfeminine': 1, 'fortyeight-year-old': 1, 'black-stockinged': 1, 'significant': 1, 'Fiery': 1, 'likely': 1, 'Deep': 2, 'first-book': 1, 'sassy': 1, 'stocky': 3, 'floodlighted': 1, 'high-heeled': 1, 'do-gooding': 1, 'heart-shaped': 1, 'Muni': 1, 'unconcerned': 1, 'dainty': 1, 'cleanshaven': 1, 'needle-sharp': 1, 'grayhaired': 1, 'choral': 1, 'exaggerated': 1, 'commanding': 1, 'naval': 1, 'judicious': 1, 'individualistic': 1, 'laid-back': 1, 'belligerent': 1, 'blade-sharp': 1, 'idiotic': 1, 'Hemingwayesque': 1, 'just-out-of-the-atmosphere': 1, '80-zip': 2, 'green-bound': 1, 'actual': 1, 'Hopeless': 2, 'cruddy': 1, 'radioactive': 1, 'three-day-old': 1, 'hopeless': 2, 'genetic': 1, 'Arabic': 1, 'aghast': 1, 'crescendoing': 1, 'disgusted': 1, 'feigned': 1, 'dense': 1, 'cheap-looking': 1, 'multitudinous': 1, 'one-minute': 1, 'hearty': 1, 'unavailable': 1, 'tabloid-sized': 1, 'masterful': 1, 'foregone': 1, 'third-rank': 1, 'Kirlian': 1, 'prime-time': 1, 'evenhanded': 1, 'exquisite': 2, 'whiskey-laden': 1, 'nonseeing': 1, 'leaky': 1, 'accidental': 1, 'throwaway': 1, 'outdoor': 1, 'morose': 1, 'remembered': 1, "'cause": 1, 'Premature': 1, 'Magna': 2, 'unfocused': 1, 'unsettling': 1, 'diplomatic': 1, 'overnight': 1, 'overwhelming': 1, 'elaborate': 1, 'two-hundred-millimeter': 1, 'level': 1, 'feast': 1, 'ninth': 1, 'respectful': 2, 'accurate': 1, 'touchy': 1, 'united': 2, 'pompous': 1, 'high-class': 1, 'inappropriate': 1, 'event-proof': 1, 'month-old': 1, 'perfunctory': 1, 'cynical': 1, 'empty-handed': 1, 'newsless': 1, 'disorderly': 1, 'thirty-three-hundred-year-old': 1, 'fabulous': 1, 'canopied': 1, 'hundred-meter': 1, 'submerged': 1, 'joyous': 1, 'delicious': 2, 'utmost': 1, 'Austrian': 1, 'eighth': 1, '20th': 1, 'interrupted': 1, 'dependable': 1, 'sidelong': 1, 'First-born': 1, 'coppable': 1, 'iced': 1, 'senile': 1, 'sedate': 1, 'nerve-gas': 1, 'heavyweight': 1, 'academic': 2, 'parttime': 1, 'politic': 1, 'fraying': 1, 'Negroid': 1, 'untroubled': 1, 'rational': 1, 'elderly': 1, 'Sad': 1, 'Tired': 2, 'lilting': 1, 'tempting': 1, 'Damn': 1, 'egomaniacal': 1, 'self-confident': 1, 'sexless': 1, 'ego-stroking': 1, 'debonair': 2, 'unlisted': 1, 'cloying': 1, 'smoky': 1, 'wary': 1, 'm1chael': 1, 'headless': 1, 'Peking': 2, 'Maasi': 1, 'machine-gun': 1, 'tectonic': 1, 'putrid': 1, 'phony': 2, 'else': 2, 'fractured': 1, 'shiny': 1, 'four-to-midnight': 1, 'funereal': 1, 'gray-haired': 1, 'week-old': 1, 'chrome': 2, 'preconceived': 1, 'gleaming': 2, 'ghostly': 1, 'insecure': 1, 'wide-legged': 1, 'ragged': 1, 'sharp-eyed': 1, 'out-of-style': 1, 'shit-storm': 1, 'Nan': 4, 'innocuous-looking': 1, 'meaningless': 1, 'plastic': 1, 'stainless': 1, 'ridgeless': 1, 'silvery-green': 1, 'heated': 1, 'green-and-white-striped': 1, 'inconsequential': 1, 'boring': 1, 'missing': 1, 'digested': 1, 'two-dollar': 1, 'proletarian': 1, 'fuckable': 1, 'white-boy': 2, 'microcosmic': 1, 'self-congratulatory': 1, 'black-boy': 1, 'nonvenomous': 1, 'snare': 1, 'Moorish': 1, 'long-distance': 1, 'sprightly': 1, 'Haaaaaaa': 1, 'well-used': 1, 'five-hundred-word': 1, 'topical': 1, 'flabby': 1, 'fart-fractured': 1, 'late-working': 1, 'furious': 1, 'generational': 1, 'bloody': 1, 'material': 1, 'round': 1, 'pelvic': 1, 'surging': 1, 'thousand-year-old': 1, '8o-proof': 1, 'stunned': 1, 'fifty-five': 1, 'Only': 1, 'Fast': 1, 'commonplace': 1, 'permissible': 1, 'hushed': 1, '1sn': 1, 'postal': 1, 'back7': 1, 'peppy': 1, 'well-cut': 1, 'water-laden': 1, 'oppressive': 1, 'insolent': 4, 'pungent': 1, 'proprietary': 1, 'suggestive': 1, 'magnificent': 1, 'closed': 2, 'Insolent': 5, 'panic-stricken': 1, 'illegal': 1, 'wind-downed': 1, 'ours': 1}
Moustapha's eclipse /@1988
{'dangerous': 10, 'big': 53, 'Dangerous': 2, 'First': 3, 'chintzy-looking': 1, 'reputable': 1, 'blue': 5, 'handsome': 2, 'smart': 4, 'contemporary': 1, 'twenty-six-year-old': 1, 'old': 45, 'in-country': 1, 'such': 18, 'tremendous': 1, 'gentle': 1, 'authentic': 1, 'second': 12, 'underhanded': 1, 'happy': 8, 'convincing': 1, 'few': 20, 'first': 36, 'snaggletoothed': 1, 'labyrinthine': 1, 'original': 2, 'several': 11, 'French': 4, 'illiterate': 2, 'redoubtable': 1, 'endless': 2, 'African': 7, 'funny': 8, 'young': 15, 'eloquent': 1, 'flat': 4, 'normal': 1, 'aesthetic': 1, 'rice-white': 1, 'nasty': 2, 'interested': 6, 'steady': 7, 'hurt-looking': 1, 'distant': 2, 'same': 17, 'tired': 10, 'little': 57, 'early': 4, 'snappy': 2, 'Islamic': 1, 'faithful': 2, 'pleasant': 1, 'sad-dog': 1, 'busy': 8, 'Franco-American': 1, 'monthly': 1, 'Tall': 1, 'sick': 11, 'sweet': 9, 'vague': 1, 'sure': 17, 'mystified': 1, 'Senegalese': 2, 'Yes-M.D.-I-really-like-your-sister-but-you-see-Iam-married': 1, 'nice': 14, 'green': 10, 'vital': 1, 'yeah': 2, 'next': 23, 'nother': 1, 'I-am-in-Senegal': 1, 'indescribable': 1, 'bantam-weight': 1, 'good': 67, 'exotic': 1, 'strong': 7, 'grim-faced': 1, 'last': 17, 'married': 1, 'small': 11, 'single': 3, 'long': 24, 'delicate': 1, 'healthy': 1, 'impervious': 1, 'brown': 4, 'hot': 27, 'horn-of-plentylike': 1, 'tough': 6, 'enough': 8, 'dry': 6, 'horny': 1, 'penguinlike': 1, 'homeward': 1, 'ugly': 8, 'impressed': 1, 'slow': 14, 'dead': 14, 'Western': 2, 'eighteenth': 1, 'OK': 7, 'black': 62, 'soothing': 1, 'true': 12, 'tight': 10, 'important': 5, 'apparent': 1, 'other': 28, 'secret': 5, 'skinny': 1, 'fourth': 2, 'suspicious': 1, 'British': 1, 'fancy': 2, 'flustered': 1, 'Wolof': 9, 'relieved': 1, 'nonexistent': 1, 'American': 3, 'Nigerian': 1, 'Canadian': 1, 'mental': 2, 'serious': 6, 'useless': 1, 'familiar': 3, 'skillful': 1, 'wary': 2, 'certain': 1, 'easy': 8, 'much': 29, 'Muslim': 2, 'steamy': 1, 'fond': 2, 'flabby': 1, 'unprotec-teh': 1, 'bottom': 7, 'tubular': 1, 'uneasy': 1, 'crude': 1, 'worldly': 1, 'simple': 3, 'Many': 3, 'round': 2, 'fine': 10, 'unfastened': 1, 'many': 32, 'aware': 3, 'rickety': 1, 'free': 2, 'Russian': 1, 'uncertain': 1, 'ready': 5, 'bad': 16, 'regular': 2, 'stiff': 7, 'Human': 1, 'yellow': 6, 'parenthetical': 1, 'possible': 7, 'sudden': 7, 'huge': 6, 'Mauritanian': 1, 'hard': 20, 'loud': 9, 'angry': 4, 'fuzzy': 2, 'balanced': 1, 'soft': 6, 'Nice': 3, 'right': 20, 'nar': 5, 'mere': 1, 'drunken': 1, 'unreadable': 1, 'slight': 2, 'nodding': 1, 'sharp': 3, 'new': 11, 'cool': 7, 'Amazing': 1, 'eager': 1, 'particular': 2, 'moderate': 1, 'supercilious': 1, 'stupid': 14, 'honorable': 1, 'likely': 2, 'human': 3, 'goddamn': 11, 'poor': 14, 'complete': 1, 'disengaged': 1, 'whole': 30, 'fast': 5, 'he-no-kill-no-pain': 1, 'self-inflicted': 1, 'miraculous': 2, 'beatific': 1, 'perforated': 1, 'only': 32, 'double-barrel': 1, 'funky': 3, 'I-ain': 1, 'peculiar': 4, 'wet': 4, 'mature': 1, 'mighty': 2, 'average': 1, 'honest': 4, 'shy': 1, 'late': 6, 'wrong': 19, 'slick': 1, 'broad': 4, 'beaucoup': 1, 'sumo-fat': 1, 'permanent': 2, 'loud-talking': 1, 'natural': 3, 'refrigerator-sized': 1, 'white': 36, 'obvious': 3, 'religious': 3, 'Chinese': 1, 'different': 12, 'metaphysical': 1, 'ancient': 4, 'dainty-like': 1, 'weird': 3, 'tiny': 5, 'funny-looking': 1, 'peaceful': 1, 'Freaky': 1, 'pure': 2, 'bright': 2, 'back': 4, 'Mysterious': 1, 'red': 14, 'spiritual': 1, 'real': 41, 'low': 3, 'aggravating': 1, 'pretty-ass': 1, 'Egyptian': 1, 'high-gloss': 1, 'Little': 3, 'Same': 1, 'high': 2, 'full': 13, 'hoo-doo': 2, 'usual': 15, 'strange': 6, 'loose': 2, 'casual': 2, 'deep': 10, 'light': 2, 'Next': 3, 'hurt': 1, 'irate': 1, 'Good': 5, 'proud': 3, 'stiff-legged': 1, 'pea-brain': 1, 'crazy': 14, 'twenty-thousand-dollar-a-year': 1, 'sun-faded': 1, 'separate': 2, 'disappointed': 1, 'upset': 1, 'arthritic': 1, 'surly': 1, 'mad': 12, 'silent': 10, 'rich': 7, 'static': 3, 'peach': 2, 'dumb': 4, 'sour': 1, 'numb': 2, 'gray': 6, 'brief': 2, 'redolent': 1, 'Git-yer-dumb-assoutta-that-garden': 1, 'weightless': 1, 'raggedy-looking': 1, 'full-length': 1, 'burdensome': 1, 'favorite': 4, 'uncombable': 1, 'baggy': 1, 'birdlike': 1, 'fleeting': 1, 'ripe': 2, 'invisible': 3, 'numinous': 1, 'strident': 1, 'hyperactive': 1, 'histrionic': 1, 'goddamned': 4, 'trivial': 1, 'inevitable': 1, 'sure-really-sure': 1, 'untruthful': 1, 'untenable': 1, 'yin-yan': 2, 'undergraduate': 1, 'Black': 2, 'polite': 2, 'diffuse': 1, 'Hispanic': 1, 'Oscarwinning': 1, 'lousy': 1, 'depressed': 1, 'disapproving': 1, 'Asian': 1, 'derisive': 1, 'irascible': 1, 'antisocial': 1, 'major': 2, 'beautiful': 7, 'sleek': 1, 'Sweet': 1, 'afraid': 8, 'raspy': 1, 'unrarified': 1, 'womblike': 1, 'fat': 6, 'reborn': 2, 'flutelike': 1, 'auburn': 1, 'weekly': 1, 'blind': 7, 'warm-looking': 1, 'explosive': 1, 'unsettled': 1, 'grave': 1, 'bluish': 1, 'outside': 6, 'Day-Glo': 1, 'everpregnant': 1, 'sullen': 1, 'recorded': 1, 'enraptured': 1, 'ever-expanding': 1, 'undivided': 1, 'clear-complected': 1, 'Japanese': 1, 'muddy': 1, 'peachy-keen': 1, 'folding': 2, 'large': 1, 'quick': 8, 'Big': 29, 'fierce': 1, 'glowing': 3, 'Hard': 1, 'Nasty': 1, 'typical': 1, 'extry': 1, 'wild': 5, 'further': 1, 'thirsty': 2, 'empty': 6, 'northeast': 1, 'broke-dick': 1, 'cold': 31, 'tall': 4, 'surprised': 4, 'twenty-something': 1, 'intelligent': 1, 'entire': 5, 'twohundred-twenty-two': 1, 'scrawny': 3, 'watermelon': 1, 'sorry': 6, 'own': 15, 'exact': 1, 'threelegged': 1, 'a-scared': 1, 'stable': 1, 'three-bean': 1, 'Great': 1, 'shovel-size': 1, 'uglyyyyy': 1, 'turnt': 1, 'Six-foot': 1, 'enormous': 4, 'calm': 1, 'fair': 2, 'careful': 2, 'lucky': 4, 'pebble': 1, 'heavy': 3, 'thin': 4, 'Gambian': 1, 'lazy': 2, 'open': 14, 'personal': 4, 'seventh': 2, 'final': 2, 'silly': 1, 'sore': 1, 'dark': 7, 'curious': 4, 'scientific': 2, 'perfect': 4, 'plenty': 1, 'bitter': 4, 'cloudless': 1, 'astonish': 1, 'baobab': 4, 'present': 3, 'quiet': 11, 'overjoy': 1, 'mysterious': 2, 'Happy': 1, 'special': 2, 'great': 11, 'golden': 2, 'remarkable': 1, 'Fine': 1, 'alive': 2, 'yellowgreen': 1, 'individual': 1, 'upside-down': 1, 'east': 1, 'subtle': 2, 'hungry': 5, 'unflinching': 1, 'unwise': 1, 'obscure': 1, 'wide': 3, 'emerald': 1, 'lemon': 1, 'unblinking': 3, 'marabous': 1, 'excellent': 1, 'warm': 4, 'left': 3, 'English': 1, 'European': 1, 'incredulous': 1, 'story-telling': 1, 'able': 3, 'rid': 1, 'windy': 2, 'popular': 3, 'friendly': 4, 'sweaty': 1, 'crummy': 1, 'neat': 1, 'hellified': 1, 'realistic': 1, 'damn': 6, 'frosty': 1, 'extra': 2, 'fake': 1, 'neck-and-neck': 1, 'top': 3, 'like': 9, 'mean-looking': 1, 'fakelike': 1, 'Brilliant': 1, 'standin': 3, 'dog-lookin': 1, 'Sure': 7, 'Sharp': 3, 'silvery': 1, 'sleepylike': 1, 'prominent': 1, 'terrible': 3, 'sensitive': 2, 'son-of-a-bitch': 1, 'glad': 3, 'native': 2, 'makin': 2, 'colored': 3, 'droopy': 1, 'sad': 3, 'zombielike': 1, 'followin': 1, 'mousey': 1, 'niggery': 1, 'blond': 1, 'Damn': 3, 'scared': 1, 'front': 3, 'worried-lookin': 1, 'pitiful': 2, 'decent': 4, 'unworldly': 1, 'Top': 2, 'miserable': 1, 'three-minute': 1, 'spoon-fed': 1, 'liquid': 1, 'lambent': 1, 'orange-red': 3, 'fifth': 2, 'burned-out': 2, 'thang': 2, 'unappealing': 1, 'capable': 1, 'meaningless': 1, 'astounding': 2, 'precious': 2, 'rattled': 1, 'hollow-sounding': 1, 'worried': 2, 'singin': 2, 'inadequate': 1, 'ordinary': 1, 'computer-cleaned': 1, 'comin': 1, 'spare': 1, 'sophisticated': 1, 'presentable': 2, 'blank': 2, 'second-rate': 1, 'deaf': 2, 'big-yawn': 1, 'third-rate': 1, 'knotted-up': 1, 'criminal': 1, 'lowlife': 1, 'tense': 2, 'Chump': 1, 'hollow': 1, 'odd': 2, 'orangered': 1, 'mixed': 1, 'inner': 1, 'awful': 2, 'Tired': 1, 'screwin': 1, 'experimental': 1, 'local': 1, 'out-avant': 1, 'national': 2, 'electronic': 1, 'optimistic': 2, 'feeble': 1, 'convinced': 1, 'recognizable': 1, 'ghastly': 1, 'coked-out': 1, 'past': 2, 'theirs': 1, 'classical': 1, 'cheap': 1, 'cheapo': 1, 'ignorant': 1, 'administrative': 1, 'filthy': 1, 'private': 2, 'Sheer': 1, 'interrupted': 1, 'wealthy': 1, 'Venetian': 1, 'painful': 2, 'thirty-year-old': 1, 'pitiful-ass': 1, 'greedy': 1, 'motionless': 1, 'unrequited': 1, 'predictable': 1, 'ice-cold': 1, 'oncoming': 1, 'phenomenal': 2, 'purported': 1, 'deceased': 1, 'Similar': 1, 'all-time': 1, 'consecutive': 1, 'unknown': 1, 'straight': 2, 'elementary': 1, 'high-school-aged': 1, 'mine': 1, 'rotten': 1, 'innumerable': 1, 'allergic': 1, 'eleven-and-ahalf': 1, 'countless': 1, 'uncountable': 1, 'interminable': 1, 'filterless': 1, 'high-water': 1, 'vain': 2, 'defensive': 3, 'pointy': 1, 'valuable': 1, 'eighth': 1, 'baaad': 1, 'formal': 2, 'pathetic': 2, 'shooting': 1, 'crowded': 1, 'discreet': 1, 'ineffable': 1, 'nut-busting': 1, 'mellow': 1, 'famous': 1, 'exuberant': 1, 'mindless': 2, 'close': 1, 'timid': 1, 'herculean': 1, 'obnoxious': 1, 'Jewish': 15, 'squatty': 1, 'intricate': 1, 'third': 1, 'intimate': 1, 'sixth': 2, 'townlike': 1, 'bent': 1, 'citylike': 1, 'goofy': 1, 'Turkish': 1, 'immense': 1, 'boulevardlike': 1, 'lonely': 3, 'uncomfortable': 1, 'secular': 1, 'embarrassed-for-you': 1, 'athletic': 1, 'inside': 1, 'jealous': 1, 'tract-toting': 1, 'cultural': 1, 'deepdown': 1, 'Motown': 1, 'difficult': 2, 'specific': 1, 'unlikely': 1, 'onliest': 1, 'concerned': 1, 'cosmic': 1, 'unique': 1, 'interesting': 1, 'gargantuan': 1, 'hairy': 1, 'short': 1, 'clean': 4, 'Far-out': 1, 'naked': 2, 'intelligible': 1, 'mismatched': 1, 'dismal': 2, 'Clean': 1, 'long-haired': 1, 'freeze-dried': 1, 'Dark': 1, 'far-out': 3, 'Tight': 1, 'coy': 1, 'egalitarian': 1, 'weird-tasting': 1, 'impossible': 1, 'astonishing': 1, 'near': 1, 'seven-mile': 1, 'Mu-sugar': 1, 'Yiddish': 1, 'meshuggah': 2, 'thankful': 1, 'irritable': 1, 'warped': 1, 'protective': 1, 'Christian': 6, 'third-grader': 1, 'grotesque': 1, 'worth': 1, 'chump': 1, 'swarthy': 1, 'laughing': 1, 'pleased': 1, 'joking': 1, 'picket-fence': 1, 'gigantic': 1, 'heroic': 1, 'midfield': 1, 'bearable': 1, 'greasy': 1, 'split': 1, 'automatic': 1, 'forgiving': 1, 'second-string': 1, 'peachy': 1, 'Surprised': 1, 'peach-cheeked': 1, 'tolerant': 1, 'blueeyed': 1, 'annual': 1, 'west': 1, 'cooking': 1, 'medium-nice': 1, 'anxious': 2, 'military': 1, 'nigger-lip': 2, 'overnight': 1, 'cheap-looking': 1, 'piss-poor': 1, 'paranoid': 1, 'homely': 1, 'day-glo': 1, 'yuck-yuckyuck-we': 1, 'ridiculous': 1, 'rereally-above-all-that': 1, 'it-going': 1, 'purple': 1, 'differentest': 1, 'main': 1, 'dollar-a-meal': 1, 'impotent': 1, 'dazed': 1, 'flat-brained': 1, 'semifrustrating': 1, 'weary': 1, 'quotidian': 1, 'homey': 1, 'Multi-colored': 1, 'discombobulating': 1, 'lone': 1, 'chief': 1, 'due': 1, 'clear': 1, 'impolite': 1, 'unoccupied': 1, 'bitter-smelling': 1, 'respectable': 1, 'rainy': 1, 'slender': 2, 'else': 1, 'counter/kitchen': 1, 'full-tilt': 1, 'considerable': 1, 'Leuk-Idrissa': 1, 'tere': 2, 'spotless': 1, 'practical': 1, 'powerful': 2, 'gris': 2, 'subsequent': 1, 'schizophrenic': 1, 'oblivious': 1, 'horrifying': 2, 'believable': 1, 'corncob': 1, 'unctuous': 1, 'outward': 1, 'whipping': 1, 'incongruent': 1, 'terrific': 1, 'dopey': 1, 'Sufi': 1, 'bush': 2, 'disgusting': 1, 'expensive': 1, 'official': 2, 'anthropological': 1, 'serene': 1, 'above': 1, 'foolish': 2, 'giant': 2, 'sound': 2, 'boubous': 1, 'electrical': 1, 'occasional': 1, 'drunk': 1, 'complex': 1, 'proper': 1, 'quizzical': 1, 'Giant': 1, 'untrue': 1, 'bottomless': 1, 'rubber-coated': 1, 'gold-filled': 1, 'fruitless': 1, 'ash': 1, 'molar': 1, 'senseless': 1, 'melancholy': 1, 'suitable': 1, 'seventy-year-old': 1, 'Past': 1, 'so-called': 1, 'unwavering': 1, 'hell-fire': 2, 'muted': 1, 'twenty-pound': 1, 'domestic': 1, 'niggerlovin': 1, 'trifling': 1, 'Pregnant': 1, 'frequent': 1, 'nigger': 4, 'closed': 1, 'gettin': 1, 'vicious': 1, 'manly': 1, 'peevish': 1, 'wringin': 1, 'coarse': 1, 'nervous': 1, 'dadburn': 1, 'irregular': 1, 'blossoming': 1, 'limp': 1, 'sayin': 3, 'taut': 1, 'Goddamn': 1, 'impassive': 1, 'Real': 1, 'checkered': 1, 'stern': 1, 'good-size': 1, 'three-of-such-an-such': 1, 'frightened': 1, 'still-warm': 1, 'sticky': 1, 'sinewy': 1, 'sorrowful': 1, 'rippled': 1, 'two-tone': 1, 'dusty': 1, 'lewd': 1, 'full-growed': 2, 'dozy-eyed': 1, 'unborn': 1, 'federal': 1, 'tobacco-stained': 1, 'evil': 1, 'sable': 1, 'red-faced': 1, 'newborn': 1, 'helpless': 1, 'winded': 1, 'stillborn': 1, 'frozen': 1, 'unbelieving': 1, 'fiery': 1, 'unforgettable': 1, 'Private': 1, 'Previous': 1}
Trumbull park, a novel.@1959
{'real': 124, 'own': 60, 'rotten': 7, 'awful': 13, 'old': 114, 'open': 44, 'soft': 39, 'same': 141, 'back': 83, 'little': 223, 'special': 4, 'Rotten': 5, 'sick': 28, 'bottom': 10, 'dead': 23, 'quiet': 46, 'wet': 20, 'long': 98, 'second': 23, 'liis': 1, 'sixth': 1, 'whole': 49, 'tight': 24, 'wooden': 5, 'red': 56, 'limp': 3, 'loud': 66, 'first': 102, 'dizzy': 5, 'wooden-jagged': 1, 'big': 187, 'ready': 46, 'rear': 4, 'dark-brown': 3, 'fat': 37, 'heavy': 38, 'third': 11, 'top': 16, 'right': 138, 'hard': 84, 'every-which-way': 5, 'crazy': 26, 'thick': 27, 'rough': 15, 'other': 221, 'sweet': 9, 'blue-and': 1, 'Second': 1, 'fresh': 5, 'warm': 15, 'half': 6, 'tall': 55, 'calm': 6, 'five-year-old': 1, 'hot': 26, 'full': 39, 'Dead': 2, 'striped': 1, 'worth': 9, 'gray': 33, 'new': 49, 'faint': 5, 'white': 194, 'wrinkled': 8, 'good': 112, 'short': 37, 'pretty': 5, 'hoarse': 2, 'such': 12, 'low': 22, 'poor': 20, 'Indian': 3, 'tough': 3, 'light-brown': 5, 'smudgy': 3, 'shooting': 3, 'fearsome': 1, 'outside': 23, 'green': 23, 'bodacious': 1, 'goddamned': 17, 'weather-stained': 1, 'ramshackle': 1, 'yellowing': 1, 'many': 25, 'thin': 20, 'high': 44, 'Hush': 3, 'fourth': 4, 'young': 43, '33rd': 1, 'late': 20, 'key': 1, 'gray-headed': 2, 'screechy': 2, 'bony': 6, 'Indian-faced': 1, 'Yellow': 4, 'beautiful': 5, 'flat': 7, 'regular': 8, 'dark': 85, 'strange': 9, 'store-front': 1, 'Big': 18, 'gloomy': 5, 'pure-D': 4, 'last': 52, 'brown': 41, 'enough': 25, 'wide': 32, 'down': 3, 'Good': 10, 'particular': 7, 'early': 2, 'confused': 3, 'scared': 49, 'half-mad': 2, 'black': 76, 'frying': 1, 'weary': 1, 'broken': 12, 'wrong': 35, 'proud': 7, 'overnight': 2, 'frightening': 1, 'three-room': 1, 'raggedy': 2, 'front': 47, 'human': 4, 'restless': 4, 'chalk-and-crayon': 1, 'live': 2, 'convincing': 2, 'much': 45, 'dreary': 2, 'great': 27, 'bad': 50, 'open-end': 1, 'folk-ized': 1, 'subject': 3, 'afraid': 19, 'slim': 6, 'tired': 24, 'sudden': 13, 'singlebreasted': 3, 'youngish': 1, 'bushy-topped': 1, 'cheap': 3, 'solid': 5, '31st': 1, 'quick': 31, 'mad': 51, 'helpless': 5, 'damp': 6, 'Little': 17, 'reverse': 1, 'bald-headed': 3, 'only': 29, 'angry-like': 1, 'snappy': 5, 'unruly': 1, 'stinky': 2, 'old-time': 3, 'nervous': 12, 'covered': 1, 'bald': 6, 'tiny': 9, 'misty': 2, 'similar': 1, 'silvery': 2, 'flat-front': 1, 'brown-dirt': 1, 'yellowish-green': 1, 'far': 4, 'swamp-looking': 1, 'vacant': 9, 'Vacant': 1, 'Smooth': 2, 'serious': 14, 'skinny': 11, 'worried-looking': 1, 'two-storey': 3, 'balcony-like': 1, 'blue': 20, 'smoky': 3, 'dingy': 8, 'slat-board': 1, 'public': 10, 'opposite': 3, 'rusting': 1, 'Several': 2, 'unfixed': 1, 'sad': 18, 'narrow': 12, 'teen-age': 2, 'son-of-a-bitches': 1, 'evil': 8, 'side': 7, 'shiny': 19, 'crooked': 4, 'sing-song': 1, 'round': 5, 'hard-set': 1, 'scary': 4, 'impatient': 1, 'sorry': 33, 'reddish': 2, 'icecold': 1, 'beefy': 1, 'thick-necked': 1, 'laughing': 2, 'criminal': 2, 'safe': 6, 'extra-loud': 1, 'nearby': 1, 'smart': 13, 'wanted': 1, 'funny': 30, 'orange': 5, 'open-neck': 1, 'khaki': 1, 'busy': 9, 'disorderly': 2, 'glassy': 4, 'few': 35, 'litt!e': 1, 'extra': 8, 'slow': 14, 'steady-like': 1, 'bushy': 4, 'cold': 52, 'rookie-looking': 1, 'lonesome': 4, 'lanky': 14, 'bright': 10, 'single': 6, 'next': 56, 'Long': 1, 'happy': 18, 'deep': 41, 'fake': 1, 'Narrow': 1, 'Black-tile': 1, 'sure': 51, 'okay': 8, 'close': 15, 'Fourth': 2, 'sharp': 16, 'Outside': 3, 'big-foot': 1, 'well-fed': 1, 'pregnant': 14, 'bare': 9, 'silverish-looking': 1, 'gray-haired': 23, 'Same': 4, 'sloppy': 3, 'joint': 2, 'whiney': 2, 'revolving': 2, 'dull': 1, 'big-mouthed': 1, 'faraway': 3, 'steady': 6, 'hunnert': 1, 'doggoned': 10, 'else': 4, 'big-ass': 1, 'steel-tasting': 1, 'Sorry': 1, 'keen': 3, 'straight': 16, 'oval': 3, 'Honest': 1, 'nice': 24, 'honeybrown': 1, 'embarrassed': 3, 'wobbly': 4, 'welcome': 3, 'plenty': 1, 'large': 5, 'skinny-looking': 1, 'weak-looking': 1, 'lean-type': 1, 'strong': 12, 'tallish': 1, 'swollen': 1, 'reddish-wet': 1, 'big-little': 1, 'dryish-tired': 1, 'excited': 4, 'heavyweight': 2, 'yellow': 12, 'Goddamned': 3, 'loose': 11, 'Goddamn': 3, 'weak': 6, 'easy': 14, 'danged': 1, 'dynamiting': 1, 'funny-like': 1, 'glad': 35, 'in-and-out': 3, 'orange-red': 1, 'steel-mill': 3, 'whispery': 2, 'half-snoring': 1, 'get-up': 1, 'empty': 17, '8l': 1, 'bossy': 2, 'light': 25, 'white-uniformed': 1, 'smooth-skin': 1, 'noisy': 3, 'clean': 15, 'grown-up': 1, 'juke-box': 1, 'alive': 9, 'lushhead': 2, 'cool': 16, 'fine': 5, 'brother-and-sister-and-momma-and-daddy': 1, 'Thick': 1, 'family-if-shehadda-lived': 1, 'next-toRicky-the-youngest': 1, 'Seven-year-old': 1, 'in-between': 1, 'equal': 1, 'plump': 1, 'cripple': 1, 'next-to-Johnetta-theoldest': 1, 'mumbly': 1, 'rusty-sounding': 1, 'small': 10, 'able': 12, 'twentieth': 1, 'red-plaid': 1, 'pot-bellied': 3, 'let-out': 2, 'dry': 9, 'black-wool': 1, 'cute': 5, 'fast': 10, 'foamy': 3, 'past': 14, 'straightish': 1, 'moist': 1, 'Gardener-Bed': 1, 'cold-looking': 1, 'shallow': 1, 'pale': 3, 'clear': 13, 'smooth': 8, 'Momma': 7, 'snowy': 1, 'honest': 3, 'hungry': 7, 'ripply': 1, 'Nice': 3, 'dime-store': 1, 'muddy': 3, 'different': 16, 'fit': 1, '95th': 27, 'square': 11, 'medium-blue': 1, 'light-blue': 2, 'dainty': 1, 'darkblue': 1, 'silky-looking': 1, 'cherry-red': 1, 'rich': 5, 'Longish': 1, 'roundish': 1, 'lit-up': 1, 'free': 12, 'drunk': 10, 'business-as-usual': 1, 'worried': 17, 'husky': 3, 'Sure': 11, 'silly': 11, 'sulky': 1, 'wet-pink': 1, 'Silly': 1, 'ballpoint': 1, 'sticky': 1, 'exclusive': 1, 'swanky': 1, 'booming': 2, 'like': 6, 'three-chin': 1, '58th': 2, 'white-haired': 2, 'red-brick': 1, 'whitish': 2, 'rumpled': 1, 'youngish-looking': 1, 'dark-haired': 3, '79th': 4, 'Black': 7, 'stiff': 4, 'terrible-smelling': 1, 'half-staggered': 1, 'high-speed': 1, 'perfect': 5, 'everyday': 3, 'light-weight': 1, 'hell-bent': 1, 'harmless-looking': 1, 'Loud': 2, 'complete': 1, 'all-day-long': 1, 'touching': 2, 'flatish': 1, 'one-sided': 1, 'crew-cut': 3, 'jam-packed': 2, 'baseball-mitt-looking': 1, 'oversized': 2, 'rambunctious': 1, 'yellowish': 2, 'time-card': 1, 'hurt-pride': 1, 'go-home': 1, 'simple': 4, 'eastbound': 2, 'southbound': 2, 'dusty': 2, 'droopy': 1, 'Jailbird': 1, 'weird': 2, 'weird-looking': 1, 'narrow-faced': 1, 'blank': 4, 'round-eyed': 1, 'invisible': 2, 'roly-poly': 1, 'twisted': 4, 'pimply-faced': 1, 'horn-rimmed': 2, 'messed-up': 1, 'groovy': 2, 'natural': 10, 'shaky': 1, 'one-man': 1, 'mellow': 1, 'shaped': 1, 'sound': 6, 'Blue-white': 1, 'mine': 6, 'red-and-blue': 1, 'quiet-like': 1, 'half-way': 1, 'hellish': 1, 'blue-skinned': 1, 'Yellowish-gray': 1, 'blue-white': 8, 'angry-sounding': 1, 'whiny': 1, 'jarring': 1, 'concerned': 6, 'sleepy': 1, 'jumpy': 2, 'Glad': 3, 'citified': 1, 'bushy-haired': 2, 'carefree': 1, 'rolling': 2, 'know-it-all': 1, 'unbuttoned': 2, 'peculiar-looking': 1, 'broad': 5, 'out-of-sight-looking': 1, 'irritated': 1, 'three-six-nine': 2, 'sideway': 1, 'finishing': 1, 'famous': 4, 'private': 8, 'hung': 2, 'cherry': 1, 'ready-to-fight': 1, 'ping-pong': 1, 'screwed-up': 1, 'growly': 3, 'surprised': 6, 'pitiful': 4, "li'l": 1, 'Damn': 8, 'reckless': 2, 'hollow': 5, 'Smart': 2, 'guilty': 7, 'mashed': 3, 'tomato-and-lettuce': 1, 'ninning': 1, 'tweaky': 1, 'several': 1, 'night-time': 1, 'naughty': 1, 'deep-set': 2, 'Deep': 1, 'Bright': 2, 'wild': 7, 'economy-size': 1, 'tattle-tale': 1, 'flickering': 1, 'iron-smell': 1, 'soft-wet': 1, 'Fast': 1, 'bent': 22, 'satisfied': 2, 'economical': 1, 'thoughtless': 1, 'pleased': 2, 'hollow-jawed': 1, 'sporty': 1, 'peakish': 1, 'broke': 3, 'true': 4, 'mediumsized': 1, 'double': 3, 'half-finished': 1, 'yellow-brick': 1, 'Noontime': 1, 'driedup': 1, 'halfempty': 1, 'project-people': 1, '47th': 5, 'goofy': 4, '45th': 1, 'ashy-pale': 1, 'nippy': 1, 'blue-sleeved': 1, 'dark-skinned': 5, 'uniform': 2, 'ragged': 1, 'squatty': 2, 'likely': 6, 'bitter': 3, 'shoulder-twisting': 1, 'crude': 1, 'pained': 1, 'way-down-deep': 1, 'arm-swinging': 1, 'inside': 5, 'Cool': 2, 'care-ish': 1, 'ear-hurting': 1, 'wild-looking': 1, 'scared-mad': 1, 'ground-shaking': 1, 'stern': 2, 'undressed': 1, 'buck-naked': 1, 'upper': 1, 'salty': 3, 'squashed': 1, 'Low': 1, '43rd': 4, 'important': 5, 'fenced-in': 1, 'careful': 3, 'new-yet-old': 1, 'pink-flowered': 1, 'pasty': 1, 'walked-out': 1, 'pink': 11, 'darkened': 2, 'ivory-white': 1, 'chrome': 3, 'light-green': 1, 'heavy-looking': 1, 'edgy': 1, 'stupid': 1, '50th': 2, 'angry': 7, 'entire': 2, 'DuSable': 4, 'tickled': 1, '57th': 5, 'no-shaving': 1, 'Two-gun': 1, 'Uh-huh': 1, 'jive': 1, 'lame': 1, 'tongue-tied': 1, 'calm-like': 1, 'DuSable-Phillips': 1, 'drunken': 2, 'goddamn': 1, 'holy': 3, 'high-school-cheer': 1, 'up-rolled': 1, 'phlegmy': 1, 'dim': 2, 'nasty': 5, 'colored': 3, 'middle': 2, 'spotty': 1, 'all-night': 1, 'decent': 5, 'niggersr': 1, 'all-white': 1, 'itchy': 1, 'earnest': 1, 'slumpshouldered': 1, 'closed-in': 1, 'Christian': 1, 'upset': 4, 'sanctified': 2, 'fearful': 2, 'push-push-push': 1, 'worthwhile': 1, 'yeah': 4, 'grunt-gasp': 2, 'Son-of-a-bitching': 1, 'dirty': 8, 'half-talked': 1, 'sign-in': 2, 'mad-looking': 2, 'healthy': 2, 'olive': 2, 'disproportionate': 1, 'adverse': 1, 'coarse': 3, 'marble-looking': 1, 'ashamed': 7, 'everlasting': 3, 'armed': 1, 'squeakyvoiced': 1, 'jealous': 2, 'closed': 3, 'solemn': 3, 'feelingless-looking': 1, 'sharp-edged': 1, 'lean': 2, 'harsh': 3, 'meek': 1, 'clinched': 2, 'ugly-looking': 1, 'Jealous': 2, 'hissing': 1, 'unconcerned': 5, 'slight': 1, 'left': 6, 'off-the-wall': 2, 'relieved': 1, 'favorite': 1, 'political': 2, 'absent-minded': 1, 'Nutty': 1, 'choked-out-of-breath': 1, 'frail': 1, 'two-room': 2, 'held': 1, 'familysized': 1, 'protective': 1, 'polite': 3, 'deluxe': 1, 'whining': 1, 'confident': 1, 'toasty': 1, 'airy': 3, 'lush': 1, 'mute': 1, 'dumb': 2, 'college-looking': 1, 'daring': 2, 'toneless': 1, 'nagging': 1, 'back-and-forth': 1, 'jagged': 1, 'usual': 8, 'inner': 1, 'lightning-looking': 1, 'sunken': 2, 'certain': 8, 'round-faced': 1, 'pregnancy-puffed': 1, 'soothing': 1, 'self-conscious': 1, 'round-shouldered': 1, 'red-bordered': 1, 'olive-colored': 2, 'Indian-looking': 1, 'Tall': 1, "ol'": 4, 'nasal': 2, 'whirling': 2, 'bassest': 1, 'nighttime': 2, 'paddy': 15, 'comical': 2, 'intelligent': 1, 'big-shouldered': 1, 'infinitesimal': 1, 'square-headed': 1, 'willing': 2, 'odd': 1, 'churchy': 1, 'mi!itary': 1, 'possible': 2, 'fuzzy': 1, 'damn': 9, 'you-aU': 1, 'real-reaZ': 1, '1ll': 1, 'tilted': 4, 'permanent': 2, 'funny-cut': 1, 'Many': 4, 'American': 4, 'slick': 4, 'shrewd': 2, 'filthy': 3, 'awkward': 1, 'wing-tipped': 1, 'whipping': 1, 'eager': 2, 'empty-handed': 1, 'grateful': 1, 'shadowy': 2, 'thoughtful': 1, 'sawed-off': 2, 'ghostly': 1, 'disgusted': 5, 'aware': 1, 'half-naked': 1, 'hatless': 2, 'bogish': 1, 'bigeyed': 1, 'tally-up': 1, 'ornery': 4, 'loud-mouthed': 1, 'bundle-of-nerves': 1, 'hazy': 1, 'cold-flushed': 1, 'red-bricked': 1, 'fortress-looking': 1, 'fierce': 2, 'ferocious': 1, 'wound-clock': 1, 'niggerf': 2, 't-know-what': 1, 'grayhaired': 1, 'exciting': 2, 'echoingest': 1, 'finger-writing': 1, 'domino-looking': 1, 'lopsided': 1, '12th': 4, 'Important': 3, 'junky': 1, 'middle-sized': 1, 'Other': 3, 'baggy': 1, 'Indianhaired': 1, 'mischievous': 1, 'overt': 1, 'so-called': 3, 'single-breasted': 2, 'silky': 2, 'inadmissible': 1, 'illegal': 3, 'de-nutted': 2, 'sickening': 1, 'very': 3, 'Dirty': 1, 'perk': 2, 'taxi-cab': 1, 'precinct': 1, 'pushy': 1, "twelve-o'clock": 2, 'three-thirty': 2, 'meantempered': 1, 'blended': 2, 'comfortable': 1, 'man-sized': 1, 'gasoline-soaked': 1, 'ours': 4, 'house-shoed': 1, 'narrow-eyed': 1, 'clay-colored': 1, 'green-shaded': 1, 'Afraid': 1, 'open-collared': 1, 'creased': 1, 'chubby': 3, 'automatic': 1, 'blue-steel': 1, 'button-down-collar': 1, 'honest-to-goodness': 1, 'light-skinned': 5, 'oily': 1, 'rich-brown': 1, 'feathery': 1, 'glossy': 1, 'finger-snapping': 1, 'Hot': 2, 'curly': 2, 'happy-intime': 1, 'comic': 1, 'easy-going': 1, 'a-going': 2, 'Old': 4, 'pointed': 1, 'disgusting': 1, 'smooth-skinned': 1, 'innocent': 3, 'Ba-roooml': 1, 'broken-down': 1, 'fast-walking': 1, 'ash': 1, 'plain': 1, 'defenseless': 1, 'foolish': 2, 'terrible': 2, 'Indian-colored': 1, 'explosion-looking': 1, 'murderous': 1, 'stocky': 4, 'dressed-up': 2, 'brick-strewn': 1, 'fifth': 1, 'smashed-up': 1, 'Total': 1, 'broken-bottled': 1, 'bloody': 1, 'need-a-shave': 1, 'clenched': 1, 'not-so-big': 1, 'two-toned': 1, 'torn': 1, 'silent': 3, 'Protective': 1, 'racial': 3, 'eerie': 1, 'spontaneous': 1, 'extreme': 1, 'lamp-lit': 1, 'two-pronged': 1, 'outer': 3, 'troublesome': 1, 'good-hearted': 1, 'disruptive': 1, 'selfish': 1, 'growling': 1, 'greedy': 1, 'sstart-a-jailbreak': 1, 'lovely': 1, 'wise': 2, 'fantastic': 1, 'supposed-to-be-bad': 1, 'out-of-sight': 1, 'no-way': 1, 'I-ain': 1, 'west': 2, '35th': 1, 'all-over': 1, 'natural-born': 1, 'unsure': 1, 'vague': 1, 'ice-cold': 3, 'sickly': 1, 'plum-nelly': 1, 'slow-hard-to-get-it-out': 1, 'soft-talking': 1, 'unlit': 1, 'ddamn': 1, 'mighty': 2, 'unbelievable': 1, 'keen-featured': 1, 'suit-coat': 1, 'room-filling': 1, 'unheard': 1, 'Scared': 4, 'disappointed': 3, 'fist-fighting': 1, 'rough-looking': 1, 'uncomfortable': 2, 'uncertain': 1, 'watery': 5, 'chalky': 1, 'bluesy': 2, 'normal': 3, 'silver': 1, 'late-shift': 1, 'grating': 1, 'Next': 3, 'red-faced': 1, 'two-year-old': 2, 'four-year-old': 1, 'dangerous-looking': 1, 'fiveyear-old': 1, 'stomach-turning': 1, 'You-all': 1, 'blind': 1, 'pitch-black': 1, 'horrible': 1, 'never-ending': 1, 'giggly': 1, 'unknown': 1, 'uniformed': 1, 'insane': 1, 'bass-drum': 1, 'homely': 1, 'abominable': 1, 'unexpected': 1, 'ample': 1, 'diminutive': 1, 'unable': 2, 'umbilical': 1, 'rid': 3, 'numb': 1, 'absolute': 1, 'relative': 2, 'recent': 2, 'implicit': 1, 'satisfactory': 1, 'acute': 1, 'high-pitched': 1, '130th': 1, 'First': 1, 'polite-like': 1, 'contrary': 1, 'lonely': 3, 'mous': 1, 'school-teacherishlooking': 1, 'double-breasted': 3, 'solid-color': 1, 'responsible': 4, 'dark-green': 1, 'suspicious': 1, 'unusual': 1, 'mysterious': 1, 'frantic': 2, 'sour': 2, 'blonde': 1, 'May-lahn-juh': 1, 'Communist': 2, 'folded-up': 1, 'deafening': 1, 'academic': 1, 'magnificent': 1, 'comfortable-looking': 1, 'modern': 3, 'light-gray': 1, 'sectional': 1, 'static': 1, 'Squeezed-faced': 1, 'casual': 1, 'heroic': 1, 'pure': 1, 'fidgety': 1, 'futile': 1, 'stubby-collared': 1, 'foot-stomping': 1, 'hand-rubbing': 1, 'umm-ou-ummm': 1, 'strained': 1, 'well-dressed': 1, 'freezing-steamy': 1, 'kitchen-wet': 1, 'grim': 1, 'stubby-nosed': 1, 'brown-skinned': 1, 'distinct': 1, 'stubby': 1, 'raggedy-looking': 1, 'baleful': 1, 'foolishness-like': 1, 'harmless': 1, 'old-looking': 1, 'lifeless': 1, 'unmoving': 1, 'black-tiled': 1, 'varnished': 1, 'uncomfortable-looking': 1, 'fluffy-light': 1, 'inexpensive-looking': 1, 'face-cream': 1, 'ignorant': 1, 'loud-mouth': 1, 'Sudden': 2, 'non-Communist': 1, 'strong-looking': 1, 'rough-sounding': 1, 'Korean': 2, 'jolly': 1, 'bobby': 1, 'overseas': 1, 'dreamy': 1, 'hard-to-make': 1, '63rd': 3, 'far-off': 1, 'present': 1, 'dignified': 2, 'tormented': 1, 'sadscared': 1, 'sullen': 1, 'curious': 1, 'raw': 1, 'embarrassing': 1, 'Last': 3, 'bashful': 1, 'waterless': 1, 'foul': 1, 'you-all': 1, 'long-ago': 1, 'familiar': 1, 'stunned': 1, 'painful': 3, 'stepped-on': 1, 'blue-denim': 2, 'scalding': 1, 'stiffly-straight': 1, 'unironed': 1, 'hard-pressed': 1, 'successful': 1, 'law-enforcing': 1, 'indecent': 1, 'endless': 1, 'combined': 1, 'electric': 1, 'grizzly': 1, 'bony-handed': 1, 'shriveled-up': 1, 'bogey-man': 1, 'high-pointed': 1, 'butter-colored': 1, 'unwashed': 1, 'every-night': 1, 'unprepared': 1, 'open-collar': 1, 'pointed-toe': 1, 'teen-age-looking': 1, 'worn-out': 2, 'olive-brown': 1, 'uneven': 1, 'green-and-gray-striped': 1, 'do-nothing': 1, 'simple-ass': 1, 'fart': 1, 'rough-and-ready': 1, 'all-right': 1, 'prying': 1, 'GOING': 1, 'interested': 1, 'long-leg': 1, 'holiday-ish': 1, 'east': 1, 'two-fifteen': 1, 'asleep': 1, 'darkbrown': 1, 'pipe-organ': 1, 'glowing': 2, 'neat': 4, 'cream-stucco': 1, 'peaceful': 1, 'big-balconied': 1, 'white-robed': 1, 'red-andblack': 1, 'muscle-necked': 1, 'cataclysmic': 1, 'almighty': 2, 'hooded': 1, 'Civil': 1, 'fellow': 2, 'concrete': 1, 'mumbling': 1, 'adult': 1, 'stern-faced': 1, 'Mass': 3, 'ass-kicking': 2, 'raglan-sleeve': 1, 'red-and-black': 1, 'button-down': 1, 'sunny': 1, 'acceptable': 1, 'skinny-brim': 1, 'well-fitting': 1, 'pronounced': 1, 'unprotected': 1, 'leather-jacketed': 1, 'friendly': 3, 'unlawful': 1, 'hornrimmed': 2, 'secure': 1, 'sandy': 1, 'lining': 1, 'sharp-looking': 1, 'scrawny': 1, 'out-of-tune': 1, 'serious-looking': 1, 'foolproof': 1, 'one-shot': 1, 'reasonable': 1, 'psychological': 2, 'selective': 1, 'Selective': 1, 'individual': 1, 'prolonged': 1, 'everpresent': 1, 'main': 5, 'whooping': 1, 'nightly': 1, 'fraudulent': 2, 'Chinese': 3, 'whorish': 1, 'natural-bor': 1, 'thirty-day': 2, 'Wonder': 1, 'due': 1, 'sexy-and-at-the-sametime-sweet-and-little-girl-looking': 1, 'over-and-over-again': 1, 'fluffy': 1, 'meeaaan': 1, 'rusty-leg': 1, 'quick-like': 1, 'off-base': 1, 'eighth': 1, 'off-thewall': 1, 'notso-brave': 1, 'highschool': 1, 'Italian': 1, 'Freckle-faced': 1, 'High': 1, 'brownish-looking': 1, 'White-blue': 1, 'Happy': 1, 'unhappy': 3, 'later': 2, 'fabulous': 1, 'careless': 1, 'blurry': 1, 'half-speak': 1, 'fancy': 1, 'unsmiling': 1, 'burly': 1, 'shortsleeved': 1, 'cowardly': 1, 'humble': 2, 'unarmed': 4, 'bomb-shooting': 1, 'Put': 1, 'lucky': 1, 'cozy': 1, 'mean-looking': 1, 'leathercovered': 1, 'rightful': 1, 'good-natured': 2, 'tough-guy': 1, 'baby': 1, 'tired-looking': 1, 'spiderwide': 1, 'foggy': 1, 'lazy': 1, 'brand-new': 1, 'hippy-dippy': 3, 'dirt-proof': 1, 'jet-black': 1, 'square-topped': 1, 'same-sized': 1, 'magic': 1, 'minute': 1, 'sixtyfive': 1, 'fair': 2, 'stuck': 1, 'cubby': 1, 'dangerous': 1, 'smart-aleck': 1, '46th': 1, 'hostile': 1, 'tightly-pressed': 1, 'clumsy': 1, '22nd': 2, 'no-bread': 1, 'three-wheel': 1, 'western': 1, 'civil': 1, 'dark-blue': 1, 'riding-looking': 1, 'slit': 1, 'pearl-handled': 1, 'polished': 1, 'mixed-up': 1, 'bright-green': 1, 'brownhaired': 1, 'dim-lit': 1, 'wheel-chair': 1, 'me-too': 1, 'Six-foot-five': 1, 'shaggy': 1, 'milkycolored': 1, 'good-looking': 1, 'almost-black': 1, 'lay': 1, 'rough-lined': 1, 'knobby': 1, 'soft-looking': 1, 'downward': 1, 'sparkling': 1, 'grey': 1, 'supposed-to-be': 1, 'long-haired': 1, 'yellowlight': 1, 'spotted': 1, 'noise-picture-feeling': 1, '59th': 1, 'half-asleep': 1, 'hollow-eyed': 1, 'anxious': 1, 'Hard': 1, 'delicious': 1, 'No-obody': 2, 'Noooooooo-ooo-ooo-body': 1, 'bust-you-in-the-mouth-if-you-mess-with-me': 1, 'hip-swinging': 1, 'crinkly-haired': 1, 'thumping': 1, 'Light-brown': 1, 'Blue-denim': 1, 'Noooooo-body': 1, 'double-barreled': 1, 'westbound': 1, 'narrow-nosed': 1, 'four-thirty': 1, 'four-twenty': 1, 'northbound': 1, 'yellowed': 1, 'water-stained': 1, 'Four-thirty': 1, 'multiple': 1, 'frowned': 2, 'clank-clanking': 1, 'lickety-split': 1, 'windy': 1, 'Sick-at-the-stomach': 1, 'black-haired': 1, 'God-awful': 1, 'longblonde-haired': 1, 'Sick': 1, 'hairy': 1, 'muscle-bound-looking': 1, 'son-of-a-bitchr': 1, 'stale': 1, '104th': 1, 'cold-blooded': 3, '105th': 1, 'Kevin-Beverly': 1, 'blues-shouting': 1}
Death on the rocks /@1960
{'Lean-muscled': 1, 'mūn-frup': 1, 'obvious': 1, 'ruthless': 2, 'à': 1, 'blue-eyed': 1, 'come-hither': 1, 'cool': 2, 'blonde': 12, 'beautiful': 8, 'dangerous': 5, 'Other': 1, 'private': 7, 'dead': 28, 'cruel': 3, 'suspenseful': 1, 'international': 2, 'silken': 1, 'fast': 20, 'hot': 14, 'tough': 6, 'red': 17, 'free': 7, 'NEW': 1, 'New': 3, 'American': 7, 'real': 51, 'different': 12, 'blue': 22, 'good': 62, 'lucky': 8, 'glad': 8, 'Good': 5, 'bad': 17, 'lovely': 8, 'long': 38, 'cold': 16, 'common': 2, 'same': 39, 'deep': 17, 'little': 147, 'early': 6, 'helluva': 7, 'first': 68, 'Sure': 3, 'whole': 15, 'enough': 28, 'right': 40, 'unsolved': 1, 'skinny': 5, 'scared': 20, 'big': 71, 'loose': 8, 'low': 8, 'black': 19, 'poor': 8, 'heavy': 6, 'tight': 10, 'quick': 16, 'big-game': 3, 'horrible': 5, 'sure': 33, 'front': 8, 'angry': 2, 'crimson': 1, 'rear': 4, 'open': 38, 'red-gold': 2, 'frozen': 3, 'final': 2, 'hell-bent': 1, 'Thirty-second': 2, 'close': 16, 'top': 11, 'muddy': 2, 'other': 55, 'funeral': 1, 'fast-collecting': 1, 'own': 21, 'two-bit': 2, 'particular': 2, 'occasional': 6, 'second': 18, 'red-hot': 2, 'few': 67, 'flaming': 1, 'much': 32, 'upturned': 1, 'Cheap': 1, 'ther.v': 1, 'fourth': 1, 'late': 9, 'off-color': 1, 'flat': 13, 'afraid': 10, 'wonderful': 6, 'last': 28, 'dead-pan': 1, 'third': 6, 'great': 6, 'high': 8, 'Yellow': 1, 'funny': 21, 'young': 8, 'Real': 3, 'run-of-the-mill': 1, 'clear': 11, 'soft': 12, 'small': 29, 'personal': 2, 'Funny': 3, 'usual': 1, 'faint': 3, 'special': 2, 'fatherly': 1, 'witless': 2, 'slow': 6, 'hard': 19, 'Lucky': 3, 'unwashed': 1, 'back': 9, 'material': 2, 'spun-gold': 1, 'blind': 2, 'dirty': 3, 'tiny': 3, 'skin-deep': 1, 'full': 21, 'crazy': 6, 'sorry': 8, 'white': 15, 'biggame': 1, 'murky': 2, 'choppy': 2, 'familiar': 2, 'frightened': 2, 'clean': 4, 'old': 34, 'creamy': 2, 'safari': 3, 'two-month': 1, 'mighty': 1, 'trim': 3, 'wartime': 1, 'chief': 2, 'luscious': 2, 'shipshape': 1, 'steel-plated': 1, 'snotty-nosed': 1, 'favorite': 3, 'white-crested': 1, 'warm': 4, 'Great': 1, 'Blue': 1, 'intrepid': 1, 'Black': 2, 'eerie': 4, 'coffee-colored': 1, 'gray': 6, 'brown': 15, 'gray-green': 1, 'white-ivory': 1, 'lazy': 2, 'well-stacked': 4, 'stern': 2, 'outside': 1, 'hidden': 3, 'sharp': 6, 'nice': 7, 'true': 5, 'thankful': 3, 'four-legged': 1, 'violet-colored': 1, 'Chinese': 1, 'six-foot': 1, 'cheap': 5, 'dime-a-dozen': 1, 'vertical': 3, 'easy': 17, 'Communist': 1, 'next': 13, 'torrid': 1, 'seasick': 2, 'only': 23, 'Maltese': 1, 'Persian': 2, 'recent': 3, 'short': 15, 'rich': 3, 'sketchy': 1, 'upper': 2, 'acute': 1, 'informative': 1, 'busy': 3, 'West': 1, 'Rough': 1, 'African': 9, 'chivalrous': 1, 'heavy-caliber': 1, 'musical': 1, 'hefty': 1, 'spine-tingling': 2, 'six-bit': 1, 'cryptic': 1, 'wet': 4, 'foggy': 1, 'fat': 12, 'miniature': 2, 'stupid': 5, 'stinging': 1, 'wild': 5, 'responsible': 2, 'Honest': 2, 'okay': 6, 'nervous': 3, 'new': 19, 'half-empty': 1, 'brilliant': 1, 'smart': 6, 'certified': 2, 'dark': 19, 'double': 3, 'specific': 1, 'inquisitive': 1, 'storm-whipped': 1, 'Such': 1, 'loud': 3, 'blue-white': 6, 'perfect': 11, 'mysterious': 1, 'Long': 1, 'superstitious': 2, 'Last': 1, 'brief': 1, 'large': 2, 'many': 15, 'past': 8, 'silent': 6, 'melodramatic': 1, 'joking': 2, 'strange': 3, 'wrapt': 2, 'off': 1, 'green': 12, 'howling': 1, 'pale': 2, 'likely': 3, 'unofficial': 1, 'wrong': 14, 'reassuring': 1, 'blended': 1, 'interested': 2, 'Scared': 1, 'Tight': 2, 'sudden': 4, 'honest-to-God': 2, 'wornout': 1, 'quiet': 6, 'such': 2, 'safe': 9, 'exact': 1, 'important': 3, 'routine': 3, 'ivorytoothed': 1, 'guilty': 3, 'fake': 1, 'fresh-caught': 1, 'crooked': 1, 'small-bore': 1, 'Fast': 2, 'Hard': 2, 'half': 7, 'reddish': 1, 'Indian': 1, 'rough': 4, 'number-twelve': 2, 'harsh': 3, 'chocolatebrown': 1, 'upward': 1, 'tired': 3, 'leatherupholstered': 1, 'French': 8, 'able': 6, 'Latin-looking': 1, 'Vous': 1, 'left': 13, 'goddam': 4, 'nasty': 3, 'popular': 1, 'avez': 1, 'leetle': 2, 'political': 1, 'genuine': 1, 'German': 12, 'present': 1, 'see-sick': 1, 'hungry': 2, 'blue-gray': 1, 'ready': 12, 'bright': 9, 'yellow': 6, 'precious': 1, 'subject': 1, 'odd': 6, 'closed': 2, 'sheepish': 1, 'enlarged': 1, 'sheer': 2, 'moth-eaten': 1, 'once-lovely': 1, 'suspicious': 4, 'logical': 1, 'calm': 3, 'pleasant': 1, 'ten-million-buck': 3, 'white-fleeced': 1, 'pretty': 3, 'sore': 2, 'port': 2, 'happy': 3, 'anxious': 2, 'independent': 2, 'bored': 1, 'immigrant': 1, 'public': 1, 'seamy': 1, 'worth': 4, 'invalid': 1, 'east': 5, 'luxurious': 1, 'glowing': 2, 'frank': 1, 'startled': 1, 'unwarranted': 1, 'morbid': 1, 'straight': 6, 'deaf': 1, 'wise': 2, 'Viennese': 1, 'poisonous': 2, 'bush': 2, 'sweet': 2, 'tantalizing': 2, 'comfortable': 2, 'fruitful': 1, 'built-in': 1, 'thin': 3, 'trip-hammer': 1, 'smooth': 7, 'mine': 4, 'tropical': 6, 'gentle': 2, 'satin-smooth': 1, 'bare': 6, 'Soft': 1, 'rigid': 1, 'tense': 3, 'ripe': 1, 'fair': 1, 'cramped': 1, 'playful': 1, 'elegant': 1, 'interesting': 2, 'fresh': 5, 'uncovered': 1, 'Six-bit': 1, 'famished': 1, 'healthy': 1, 'pink': 2, 'helpless': 3, 'impish': 1, 'grateful': 1, 'dirt-and-stone': 1, 'bustling': 1, 'arable': 1, 'Spanish': 17, 'seventh': 1, 'famous': 2, 'Infamous': 1, 'concrete': 2, 'multicolored': 4, 'stash': 1, 'helter-skelter': 1, 'Next': 1, 'bald': 1, 'ice-cold': 1, 'number-three': 1, 'straggly': 1, 'deep-set': 1, 'ragged': 3, 'livid': 2, 'serious': 2, 'meringue': 1, 'weak': 6, 'stiff': 2, 'thick': 3, 'general': 3, 'lemon': 2, 'sleepy': 1, 'ugly': 5, 'fitful': 1, 'awake': 3, 'Outside': 2, 'Small': 1, 'minute': 1, 'white-handled': 1, 'gurgling': 1, 'bloody': 4, 'pasty': 1, 'terrible': 1, 'sorta': 1, 'limp': 1, 'native': 4, 'uniformed': 1, 'hopeless': 2, 'scared-to-death': 1, 'wide': 11, 'considerate': 1, 'verbal': 2, 'civil': 1, 'grisly': 1, 'naked': 2, 'oral': 1, 'mental': 2, 'natty': 1, 'untimely': 1, 'uniform': 2, 'tic': 1, 'canary': 2, 'unrespectful': 1, 'sheet-covered': 2, 'vocal': 1, 'former': 3, 'baleful': 1, 'unpleasant': 1, 'useless': 1, 'Latin': 1, 'correct': 1, 'considerable': 2, 'smug': 4, 'complete': 1, 'simple': 5, 'valid': 1, 'one-ounce': 2, 'necessary': 1, 'rotten': 6, 'Liberian': 14, 'entire': 1, 'gory': 1, 'flimsy': 1, 'white-lace': 1, 'glassy': 1, 'shaded': 1, 'strained': 1, 'damn': 1, 'fourteenth': 1, 'high-power': 1, 'regular': 1, 'available': 1, 'narrow': 5, 'sandy': 3, 'romantic': 1, 'fire-red': 1, 'scalloped': 1, 'flawless': 1, 'golden': 2, 'weird': 3, 'huge': 5, 'giant': 4, 'unromantic': 1, 'protected': 1, 'hideous': 1, 'animated': 1, 'normal': 2, 'hairlike': 1, 'man-made': 1, 'corrugated': 1, 'dark-skinned': 1, 'majestic': 1, 'ringed': 1, 'welcome': 2, 'average': 1, 'So-so': 1, 'spellbound': 1, 'varicolored': 1, 'ceremonial': 1, 'rhythmic': 1, 'leopard-skin': 1, 'careful': 1, 'y': 2, 'graceful': 3, 'whirling': 4, 'gleaming': 1, 'fine': 4, 'spinning': 2, 'tribal': 1, 'happy-go-lucky': 1, 'serene': 1, 'needle-sharp': 1, 'classy': 1, 'seeming': 1, 'plumb': 1, 'flustered': 1, 'tional': 1, 'irritated': 1, 'Dead': 2, 'gruesome': 1, 'unlucky': 1, 'alive': 5, 'solid-gold': 1, 'muscular': 1, 'excited': 1, 'suburban': 1, 'Mahseff': 1, 'one-track': 1, 'Interesting': 1, 'surprising': 1, 'separate': 2, 'different-sized': 1, 'surprised': 1, 'conceited': 1, 'handsome': 2, 'miserable': 1, 'Local': 1, 'sleek': 2, 'lonely': 2, 'Brief': 1, 'vital': 1, 'souped-up': 1, 'snappy': 4, 'jet-propelled': 2, 'whitish': 1, 'telltale': 1, 'far': 6, 'sparkling': 1, 'Chloral': 3, 'medical': 1, 'dim': 1, 'current': 1, 'So-called': 1, 'lone': 3, 'solitary': 3, 'empty': 2, 'bottom': 2, 'distilled': 1, 'crude': 1, 'single': 4, 'Norwegian': 1, 'three-fourths': 1, 'chloral': 1, 'well-cut': 1, 'joint': 2, 'sour': 1, 'Ethiopian': 1, 'effeminate': 1, 'fishing-pole': 1, 'whipping': 2, 'wicked': 2, 'weary': 2, 'sick': 2, 'neat': 1, 'one-way': 1, 'dual': 2, 'Deegbeh': 35, 'tall': 5, 'starter': 7, 'cloudless': 1, 'red-brown': 3, 'satisfied': 2, 'inner': 1, 'unlimited': 1, 'dense': 1, 'clotted': 1, 'blood-soaked': 1, 'raven-black': 1, 'gaping': 1, 'eleventh-hour': 1, 'nude': 1, 'Human': 1, 'round': 1, 'olive': 1, 'fruitless': 1, 'shallow': 2, 'parallel': 1, 'stately': 1, 'towering': 2, 'paramount': 1, 'half-dressed': 1, 'cherry-red': 1, 'mumblejumble': 1, 'goddammed': 1, 'visible': 1, 'outstretched': 1, 'human': 1, 'still-hot': 1, 'cherry': 1, 'wooden': 2, 'hearty': 1, 'middle': 2, 'local-grown': 1, 'discourteous': 1, 'accustomed': 1, 'split-second': 1, 'fading': 2, 'long-stemmed': 1, 'hooded': 1, 'impressive': 1, 'dark-green': 1, 'palm-leaf': 2, 'moonlit': 1, 'undressed': 1, 'else': 1, 'distant': 1, 'ours': 2, 'goddamnedest-looking': 1, 'yawning': 1, 'gold': 1, 'decorative': 1, 'triangular': 1, 'incessant': 1, 'horned': 1, 'technical': 1, 'golden-brown': 1, 'airborne': 1, 'dead-on': 1, 'lining': 1, 'bitter': 1, 'mad': 1, 'landing-approach': 1, 'jungle-sharpened': 1, 'taut': 2, 'prime': 1, 'Jagged': 1, 'split': 1, 'placid': 1, 'broken': 1, 'Awful': 1, 'minor': 1, 'unoiled': 1, 'curious': 1, 'phony': 1, 'lean': 1, 'possible': 1, 'shrill': 2, 'circumstantial': 1, 'squat': 2, 'certain': 1, 'foolish': 2, 'male': 2, 'twenty-dollar': 1, 'Mongolian': 1, 'pensive': 1, 'snazzy': 2, 'female': 3, 'fancy': 2, 'sixth': 1, 'close-cropped': 1, 'flowered': 1, 'ritzy': 1, 'booby': 1, 'plenty': 1, 'fatal': 2, 'airy': 1, 'rid': 1, 'ornate': 1, 'massive': 3, 'oriental': 1, 'Persian-carpeted': 1, 'Jewish': 1, 'light': 8, 'antique': 1, 'flabby': 1, 'horizontal': 1, 'deadly': 1, 'pointed': 2, 'blinding': 1, 'crafty': 2, 'pudgy': 1, 'solar': 1, 'lousy': 1, 'sticky': 2, 'covetous': 1, 'hooked': 1, 'molly-trotting': 1, 'solid': 2, 'torn': 3, 'drunk': 1, 'Clean': 1, 'busted': 1, 'two-motor': 1, 'ominous': 1, 'bent': 1, 'due': 1, 'Seventy-first': 1, 'land-side': 1, 'star-studded': 1, 'unpacked': 1, 'thirty-two-footer': 1, 'dilapidated': 1, 'pitch-black': 1, 'twinkling': 1, 'commando': 1, 'reverse': 1, 'slack': 2, 'baying': 2, 'Lead': 2, 'stone-floored': 1, 'rusty': 2, 'blued-steel': 1, 'yellow-bellied': 1, 'gold-tipped': 1, 'steady': 2, 'fanatic': 1, 'valuable': 2, 'dumb': 2, 'willing': 1, 'wellspaced': 1, 'prone': 1, 'half-wild': 1, 'extra': 1, 'magic': 1, 'greenish': 2, 'godforsaken': 1, 'Nazi': 1, 'solid-lead': 1, 'well-placed': 1, 'spare': 2, 'natural': 1, 'twin-engine': 1, 'well-oiled': 1, 'feathered': 1, 'reversible': 1, 'white-sand': 1, 'future': 1, 'half-open': 1, 'colonial': 1, 'fog-shrouded': 1, 'glass-windowed': 1, 'rambling': 1, 'Needless': 1, 'corny': 1, 'snub-nosed': 1, 'lay': 1, 'god-awful': 1, 'negative': 1, 'shabby': 1, 'glazed': 1, 'earing': 1, 'nearby': 1, 'reversed': 1, 'sickly': 1, 'coy': 1, 'impetuous': 1, 'mistaken': 1, 'Little': 3, 'several': 1, 'automatic': 1, 'cute': 1, 'insane': 1, 'naturalized': 1, 'mixed': 1, 'half-crazy': 1, 'vindictive': 1, 'slick': 1, 'sensuous': 1, 'd-did': 1, 'orange': 1, 'diving': 1, 'sulfuric': 1, 'unbroken': 1, 'lifeless': 1, 'platinum-sheathed': 1, 'triumphant': 1, 'frail': 1, 'throbbing': 1, 'unbelieving': 1, 'Same': 1, 'hurrah': 1}
The music of summer /@1992
{'serious': 9, 'beautiful': 26, 'constant': 4, 'dirty': 1, 'good': 62, 'sical': 1, 'warm': 4, 'wonderful': 14, 'Africanmerican': 1, 'upper-middle-class': 1, 'oming-of-age': 1, 'old': 60, 'romantic': 2, 'exciting': 4, 'inspiring': 1, 'new': 16, 'famous': 6, 'exhausting': 1, 'light-skinned': 2, 'true': 14, 'vivacious': 1, 'pleasant': 3, 'hot': 8, 'diferent': 1, 'ladame': 1, 'fascinating': 2, 'QMusic': 1, 'young': 36, 'economic': 1, 'own': 13, 'electronic': 1, 'sophisticated': 3, 'attractive': 2, 'darkest-skinned': 1, 'mechanical': 1, 'few': 12, 'real': 15, 'proud': 4, 'such': 17, 'last': 20, 'goddamn': 3, 'snooty': 1, 'twisted': 4, 'Impossible': 3, 'same': 36, 'much': 37, 'little': 23, 'busy': 7, 'important': 16, 'other': 49, 'high': 8, 'interesting': 5, 'full': 8, 'delighted': 2, 'irreparable': 1, 'long': 32, 'upcoming': 1, 'high-yeller': 2, 'glad': 17, 'slim': 5, 'senseless': 1, 'tall': 13, 'first': 32, "n'tgive": 1, 'empty-headed': 3, 'Fourth': 1, 'loud': 5, 'quiet': 2, 'clenched': 1, 'cold': 5, 'easy': 7, 'early': 7, 'blue': 19, 'smoky': 4, 'angry': 7, 'key-around-the-neck': 1, 'square': 2, 'mischievous': 3, 'brown': 13, 'next': 17, 'old-fashioned': 4, 'rigid': 2, 'generous': 1, 'choppy': 1, 'hard': 29, 'big': 32, 'damn': 4, 'mighty': 6, 'Sure': 7, 'Black-Is-Beautiful': 1, 'skinny': 2, 'different': 6, 'recent': 3, 'interior': 1, 'lively': 1, 'second': 7, 'black': 38, 'homely': 1, 'made-for-laughing': 1, 'white': 36, 'dimpled': 3, 'mad': 6, 'stunning': 1, 'sure': 12, 'clear': 5, 'awesome': 1, 'so-called': 1, 'rowdy': 1, 'serious-faced': 1, 'habitual': 1, 'lovely': 9, 'thick': 9, 'wide-eyed': 1, 'fatherless': 2, 'rapid': 2, 'Languid': 1, 'slow': 4, 'Lottie-looking': 1, 'smooth': 6, 'incredible': 1, 'disciplined': 1, 'opposite': 6, 'coarse': 3, 'bright': 9, 'Hard': 1, 'green': 3, 'pointless': 1, 'distant': 2, 'dreary': 1, 'wide': 9, 'red': 6, 'British': 1, 'grand': 11, 'whole': 2, 'impossible': 4, 'lanky': 2, 'handsome': 9, 'drunk': 1, 'many': 25, 'fair': 3, 'honey-blond': 1, 'able': 8, 'dressy': 1, 'down-to-earth': 1, 'Beautiful': 4, 'living-room': 1, 'successful': 1, 'wor': 1, 'poreless': 1, 'round': 2, 'enough': 6, 'straight': 2, 'thin': 5, 'golden-brown': 2, 'interracial': 1, 'curly': 2, 'sheltered': 1, 'tiny': 6, 'private': 2, 'upstate': 2, 'familiar': 1, 'Swiss': 1, 'adolescent': 2, 'amber-colored': 1, 'watery': 5, 'inner-city': 1, 'babyish': 3, 'fading': 6, 'reddish': 1, 'poor': 14, 'gray': 1, 'inner': 4, 'confused': 1, 'light': 4, 'surly': 1, 'undefined': 1, 'only': 12, 'ready': 12, 'outside': 4, 'middle': 1, 'prejudiced': 1, 'common': 2, 'happy': 16, 'darker-skinned': 1, 'obvious': 3, 'lifelong': 2, 'strong': 18, 'tired': 10, 'obsequious': 1, 'inadequate': 1, 'childish': 3, 'smart': 2, 'soft': 6, 'modern': 1, 'general': 1, 'back': 5, 'high-ceilinged': 2, 'stark': 1, 'sudden': 8, 'terrible': 3, 'broad': 9, 'malicious': 2, 'usual': 4, 'crazy': 4, 'haggard': 1, 'sooty': 2, 'Tall': 2, 'blond': 5, 'unscramble': 1, 'wrong': 8, 'unreasonable': 1, 'well-manicured': 1, 'sound': 1, 'free': 13, 'ugly': 4, 'rich': 16, 'simple-assed': 1, 'deep': 15, 'final': 1, 'overgrown': 1, 'great': 18, 'lucky': 2, 'simple': 4, 'silent': 7, 'empty': 3, 'impolite': 1, 'restless': 2, 'I-told-you-so': 3, 'Other': 3, 'fruitless': 2, 'pretty': 5, 'Lucky': 1, 'outrageous': 1, 'rough': 1, 'vague': 1, 'shared': 1, 'conscious': 2, 'married': 1, 'decent': 3, 'foster': 1, 'Bright': 1, 'civil': 2, 'operational': 1, 'smug': 2, 'special': 5, 'likely': 1, 'favorite': 3, 'proper': 1, 'a-moving': 1, 'stiff-backed': 2, 'fragile': 3, 'taut': 1, 'strange': 7, 'placid': 1, 'plain': 1, 'antique': 1, 'upright': 1, 'Sophisticated': 2, 'closed': 7, 'unblinking': 2, 'bad': 12, 'nice': 7, 'puny': 1, 'sense': 2, 'dangerous': 1, 'remarkable': 2, 'uptown': 2, 'dead': 6, 'broken-down': 1, 'snake-pit': 1, 'city-to-Cape': 1, 'kidding': 2, 'ballet': 1, 'storybook': 1, 'grim': 1, 'motionless': 1, 'endless': 2, 'sweet': 5, 'colorful': 1, 'front': 2, 'soon-to-be-setting': 1, 'Rambling': 1, 'steep': 1, 'cedar-block': 1, 'yellow': 1, 'bumper-to-bumper': 1, 'treelined': 1, 'multicolored': 1, 'narrow': 2, 'emotional': 1, 'frail': 2, 'lonesome': 1, 'Old': 2, 'far-off': 1, 'fast-moving': 1, "li'l": 4, 'stiff': 2, 'Serious': 1, 'wild': 5, 'big-time': 2, 'deserving': 1, 'welcome': 1, 'Big': 13, 'Active': 1, 'gentle': 4, 'long-stemmed': 2, 'open': 4, 'wicked': 2, 'calm': 2, 'modest': 1, 'spacious': 1, 'American': 4, 'vast': 2, 'gigantic': 1, 'wraparound': 2, 'dark': 18, 'glass-topped': 1, 'rambling': 1, 'Gleaming': 1, 'wood-burning': 1, 'evident': 1, 'large': 6, 'immense': 1, 'light-colored': 1, 'adjacent': 1, 'out-of-town': 1, 'brooding': 2, 'mysterious': 2, 'darkening': 1, 'huge': 1, 'magnificent': 2, 'glowing': 2, 'Breathtaking': 1, 'okay': 4, 'massive': 2, 'floor-to-ceiling': 1, 'sweet-faced': 1, 'French': 9, 'mild-mannered': 1, 'refreshing': 1, 'liable': 1, 'Wonderful': 2, 'middling': 2, 'blonde': 1, 'helpless': 2, 'leatherseated': 1, 'brute': 1, 'half': 1, 'ignorant': 3, 'natural': 1, 'divine': 1, 'Put': 1, 'small-minded': 1, 'blown-up': 2, 'equal': 2, 'Funny': 2, 'Damn': 2, 'low': 2, 'irritating': 1, 'impish': 1, 'condescending': 1, 'aristocratic': 2, 'English': 1, 'stocky': 1, 'too-lean': 1, 'tight': 2, 'lean': 3, 'short-limbed': 1, 'unfinished': 1, 'hungry': 2, 'Embarrassed': 1, 'present': 2, 'Lead': 1, 'past': 3, 'dining-room': 1, 'fresh': 3, 'full-time': 1, 'mixed': 1, 'stubborn': 1, 'Young': 1, 'crude': 1, 'greedy': 1, 'peasantlike': 1, 'loving': 3, 'wide-brimmed': 2, 'oversized': 2, 'uninvited': 2, 'heavy': 5, 'humble': 1, 'haughty': 1, 'nearby': 1, 'Sad': 2, 'naked': 3, 'alive': 4, 'upset': 3, 'sorry': 7, 'known': 1, 'possible': 5, 'Awful': 1, 'Good': 5, 'relieved': 4, 'evil': 2, 'beholden': 1, 'sandy': 2, 'longstemmed': 1, 'alert': 1, 'probable': 1, 'unnoticed': 2, 'daily': 1, 'expensive': 1, 'communal': 1, 'black-on-black': 1, 'joking': 2, 'anxious': 2, 'nappy': 2, 'graceful': 2, 'curly-haired': 1, 'blunt': 2, 'Great': 2, 'pretended': 1, 'certain': 2, 'threatening': 1, 'third': 2, 'surprised': 2, 'sinister': 1, 'essential': 1, 'afraid': 7, 'entire': 6, 'miserable': 2, 'difficult': 3, 'close': 1, 'short': 4, 'gaping': 1, 'Brown': 1, 'hush': 2, 'wet': 3, 'satisfied': 1, 'brief': 1, 'golden': 5, 'arrogant': 1, 'intelligent': 3, 'outer': 1, 'knowledgeable': 1, 'flat': 1, 'sensuous': 3, 'pubic': 1, 'silky': 1, 'inflamed': 1, 'shapely': 1, 'startled': 1, 'controlled': 1, 'shallow': 4, 'well-educated': 1, 'commanding': 1, 'convinced': 1, 'medical': 2, 'glib': 1, 'useless': 1, 'Willful': 1, 'bare': 4, 'jarring': 1, 'shrill': 1, 'Hot': 2, 'homesick': 2, 'salty': 1, 'awful': 2, 'two-mile': 2, 'sick': 6, 'protected': 1, 'ice-cold': 1, 'polished': 1, 'shimmering': 1, 'bruised': 1, 'lone': 1, 'ordinary': 3, 'astonished': 1, 'undauntable': 1, 'flighty': 1, 'scheming': 1, 'lush': 1, 'breasted': 1, 'small': 5, 'fat': 1, 'sleeveless': 1, 'reddish-brown': 1, 'Voluptuous': 1, 'handy': 1, 'dainty': 2, 'unruly': 1, 'feminine': 1, 'Dark': 2, 'Many': 1, 'sad': 6, 'creaking': 2, 'lilting': 1, 'unhappy': 4, 'non': 3, 'unbelievable': 1, 'chic': 1, 'lovely-looking': 1, 'perfect': 5, 'delightful': 4, 'hardworking': 1, 'queljoli': 1, 'roving': 1, 'plump': 3, 'sodden': 1, 'plush': 1, 'dry': 3, 'Such': 2, 'nough': 1, 'deep-throated': 1, 'hearty': 1, 'revolutionary': 1, 'fabulous': 1, 'idle': 1, 'fine': 5, 'hardheaded': 1, 'extreme': 1, 'limp': 1, 'total': 1, 'fierce': 1, 'boring': 1, 'Glad': 1, 'enthusiastic': 1, 'husky': 1, 'avez-vous': 1, 'impetuous': 1, 'formidable': 1, 'straightforward': 1, 'dull': 1, 'fantastic': 1, 'educational': 1, 'carefree': 1, 'irresistible': 1, 'slight': 1, 'precise': 1, 'African': 4, 'Rolling': 2, 'clean': 2, 'insignificant': 1, 'touching': 2, 'normal': 1, 'trifling': 1, 'safe': 2, 'ghostly': 1, 'expectant': 1, 'talented': 8, 'confusing': 1, 'Confused': 2, 'nonl': 2, 'native': 1, 'historical': 2, 'chere': 1, 'derisive': 1, 'pensive': 1, 'profound': 2, 'scared': 4, 'Black': 3, 'blind': 1, 'bizarre': 1, 'funny': 3, 'muscular': 2, 'prompt': 1, 'hushed': 1, 'instant': 2, 'curious': 1, 'philanthropic': 1, 'needy': 1, 'childlike': 1, 'sorrowful': 1, 'slender': 1, 'white-on-white': 2, 'unreal': 1, 'dazzling': 1, 'cool': 2, 'chrome-plated': 1, 'early-morning': 1, 'compact': 1, "c'est": 2, 'too-small': 1, 'heavyset': 1, 'undersized': 1, 'magnifique': 1, 'wide-mouthed': 1, 'sexy': 1, 'Frivolous': 1, 'fleeting': 1, 'untied': 1, 'two-piece': 1, 'occasional': 3, 'long-necked': 1, 'voluptuous': 1, 'somber': 1, 'ravenous': 2, 'wealthy': 1, 'negative': 2, 'underpaid': 1, 'quick': 1, 'docile': 2, 'desolate': 1, 'perplexed': 2, 'earth-shak': 1, 'brilliant': 2, 'unbalanced': 1, 'bitter': 1, 'jealous': 5, 'Heavy': 1, 'Amazing': 1, 'unsettled': 1, 'pouting': 1, 'gay': 1, 'tragic': 1, 'harsh': 2, 'follow-up': 1, 'unsettling': 1, 'timid': 1, 'sensual': 1, 'long-awaited': 1, 'complete': 2, 'Innocent': 1, 'interested': 1, 'Wicked': 1, 'Devilish': 1, 'precious': 2, 'virgin': 1, 'Inner-city': 1, 'utter': 1, 'shitty': 1, 'Delighted': 1, 'senior': 1, 'careful': 1, 'clawed': 1, 'unsteady': 1, 'bony': 1, 'lewd': 2, 'dearest': 1, 'ash': 1, 'hysterical': 2, 'distressed': 1, 'relaxing': 1, 'unrelenting': 1, 'expansive': 1, 'bold': 1, 'aggressive': 1, 'vulnerable': 2, 'accessible': 1, 'frightened': 2, 'bearable': 1, 'self-imposed': 1, 'giant': 2, 'Excited': 1, 'thick-growing': 1, 'lonely': 4, 'dense': 1, 'unknown': 1, 'conspiratorial': 1, 'contented': 1, 'kind': 1, 'absent': 1, 'correct': 1, 'weak': 2, 'bent': 2, 'True': 2, 'deliberate': 1, 'magic': 3, 'disappointed': 1, 'beaten': 1, 'mulatto': 1, 'moonlit': 2, 'stupid': 3, 'awake': 2, 'silly': 2, 'fast': 1, 'furtive': 1, 'unlined': 1, 'colonial': 1, 'rare': 1, 'pebble': 8, 'surrounding': 1, 'dark-haired': 1, 'indistinct': 1, 'amazing': 1, 'Strange': 2, 'pure': 1, 'aware': 1, 'Thursday-night': 1, 'reasonable': 1, 'Strong': 1, 'Desperate': 1, 'Tired': 2, 'Cursed': 1, 'diseased': 1, 'Go-go-god-goddamn': 1, 'Sick': 1, 'Rough': 2, 'Harsh': 1, 'd-d-d-do': 1, 'Wh-wh-what': 2, 'a-a-ab-about': 1, 'wh-wh-white': 1, 'y-y-y-you': 1, 'extraordinary': 1, 'hate-filled': 1, 'sullen': 1, 'Happy': 1, 'languid': 1, 'sore': 1, 'fevered': 1, 'bloody': 1, 'li-li-lie': 1, 'te-te-tel-telling': 1, 'loony': 1, 'wh-w-white': 1, 'li-li-lied': 1, 'Sa-Sa-Sarah': 1, 'i-in': 1, 'ev-ev-every': 1, 'near': 4, 'ou-ou-out': 1, 'be-be-beach': 1, 'a-a-about': 1, 'spindly': 1, 'th-th-there': 1, 'oth-other': 1, 'criminal': 2, 'As-as-ask': 1, 'W-w-we': 1, 'enraged': 1, 'weird': 1, 'ashamed': 2, 'guilty': 1, 'dark-skinned': 1, 'in-into': 1, 'P-pu-push': 1, 'da-damn': 1, 'gi-gi-gi-give': 1, 'th-ththen': 1, 'gu-guy': 1, 'gangling': 1, 'infected': 1, 'responsible': 1, 'numbing': 1, 'unbearable': 1, 'ours': 2, 'too-tragic': 1, 'never-to-be-duplicated': 1, 'tattered': 1, 'rippled': 1, 'near-tragic': 1, 'friendless': 1, 'limited': 1, 'innocent': 1, 'perpetual': 1, 'brutal': 1, 'Ordinary': 1, "j'": 1, 'restrained': 1, 'Sa-rah': 2, 'nightly': 1, 'right': 1, 'mon': 1, 'devious': 1, 'limitless': 1, 'Thursday-evening': 1, 'artistic': 1, 'doomed': 1, 'agonizing': 1, 'blighted': 1, 'no-nonsense': 1, 'petite': 2, 'award-winning': 1, 'Harlem-and': 1, 'musical': 1, 'AfricanAmerican': 1, 'brilliant-of': 1, 'so-the': 1, 'world-the': 1}
Sisters & lovers /@1994
{'able': 39, 'oval': 1, 'sure': 134, 'obvious': 11, 'sore': 8, 'crimson': 1, 'Bad': 2, 'perfect': 33, 'green': 9, 'same': 44, 'split': 1, 'sorry': 20, 'fitting': 1, 'other': 177, 'last-minute': 3, 'mass-murdering': 1, 'Spent': 1, 'late': 45, 'careful': 14, 'urgent': 5, 'flat': 7, 'good': 171, 'big': 112, 'scary': 1, 'old': 83, 'nice': 72, 'last': 104, 'sour': 3, 'single': 16, 'long': 78, 'personal': 17, 'lame': 3, 'complete': 5, 'deep': 35, 'tired': 43, 'strange': 11, 'sultry': 1, 'much': 116, 'little': 144, 'next': 78, 'Sure': 3, 'sick': 20, 'precious': 7, 'intricate': 1, 'dirty': 8, 'hard': 61, 'satin': 1, 'fancy': 6, 'front': 26, 'checkered': 1, 'beige': 3, 'so-called': 2, 'bad': 51, 'soft': 7, 'small': 43, 'black': 126, 'expensive': 7, 'nine-inch': 1, 'wooden': 1, 'stupid': 9, 'convertible': 11, 'white': 95, 'beautiful': 17, 'sexy': 10, 'cute': 20, 'mustached': 4, 'warm': 10, 'no-good': 7, 'main': 11, 'trifling': 2, 'damn': 30, 'few': 125, 'tingly': 2, 'whole': 44, 'anxious': 3, 'only': 55, 'wrong': 53, 'Good': 24, 'bottom': 11, 'unfamiliar': 1, 'no-smoking': 1, 'uneasy': 6, 'genuine': 1, 'seventh': 2, 'third': 13, 'male': 6, 'Stylish': 1, 'located': 4, 'mundane': 1, 'Sharp': 2, 'full': 11, 'decent': 22, 'twenty-four-inch': 1, 'new': 74, 'routine': 2, 'pregnant': 32, 'second': 42, 'silly': 5, 'first': 90, 'extra': 12, 'Same': 8, 'fine': 33, 'enough': 48, 'shaky': 3, 'scent': 1, 'loving': 3, 'own': 58, 'rosy': 1, 'precise': 1, 'usual': 22, 'great': 6, 'dutiful': 1, 'Chinese': 2, 'married': 16, 'top-brass': 1, 'tough': 5, 'thoughtless': 1, 'willing': 6, 'independent': 1, 'public': 4, 'such': 27, 'cold': 19, 'year-old': 1, 'good-looking': 9, 'upset': 9, 'overdue': 2, 'down': 3, 'Second': 1, 'three-year': 1, 'eighty-dollar': 1, 'necessary': 4, 'bold': 2, 'left': 4, 'measly': 2, 'upper': 5, 'two-hundred-dollar': 1, 'several': 28, 'right': 59, 'real': 18, 'smooth': 4, 'super': 4, 'Good-looking': 1, 'hot': 30, 'Big': 3, 'former': 4, 'later': 3, 'luxurious': 1, 'modern': 4, 'stately': 1, 'pleasant': 4, 'typical': 2, 'latter': 1, 'American': 6, 'many': 45, 'suburban': 1, 'slow': 1, 'retired': 1, 'careless': 3, 'smoke-filled': 1, 'embarrassed': 8, 'narrowminded': 1, 'broken': 4, 'shiny': 3, 'thirteenth': 1, 'spiteful': 1, 'double': 11, 'remote': 4, 'gleaming': 1, 'i-shaped': 1, 'fifty-two-inch': 1, 'sneaker-clad': 1, 'built-in': 1, 'cheeky': 1, 'open': 41, 'spotless': 1, 'half': 9, 'early': 25, 'well-sculpted': 1, 'six-foot': 1, 'slender': 3, 'almond-shaped': 1, 'smart': 8, 'dark': 22, 'three-inch': 2, 'thick': 9, 'tall': 18, 'shapely': 5, 'brown': 12, 'roomy': 1, 'handmade': 3, 'wide': 14, 'athletic': 1, 'physical': 6, 'terrible': 3, 'riicoe': 1, 'easy': 19, 'brief': 3, 'serious': 27, 'risky': 4, 'fair': 10, 'part-time': 10, 'senior': 9, 'top': 17, 'ready': 48, 'true': 20, 'past': 27, 'else': 9, 'awful': 6, 'interested': 13, 'successful': 11, 'tight': 10, 'hungry': 3, 'back': 30, 'visible': 2, 'blue': 5, 'eerie': 1, 'cool': 6, 'bent': 18, 'responsible': 2, 'dead': 12, 'quiet': 12, 'bright': 9, 'final': 3, 'busy': 14, 'single-family': 1, 'light': 9, 'Scorned': 1, 'low': 4, 'tense': 2, 'glowing': 2, 'different': 38, 'outside': 9, 'sharp': 6, 'two-timing': 3, 'fat': 12, 'Empty': 1, 'bare': 13, 'close': 3, 'asinine': 1, 'important': 14, 'ten-dollar': 1, 'corny': 3, 'fresh': 5, 'lucky': 15, 'muscular': 3, 'native': 1, 'rotten': 8, 'slim': 3, 'Beautiful': 3, 'total': 2, 'fast': 8, 'special': 9, 'environmental': 2, 'Southern': 2, 'funny': 23, 'broad': 2, 'unexpected': 4, 'curly': 1, 'unannounced': 2, 'half-naked': 1, 'triple': 4, 'crazy': 34, 'stand-up': 1, 'plain': 3, 'weary': 1, 'portable': 2, 'surprised': 16, 'lazy': 9, 'impossible': 15, 'independable': 1, 'wet': 9, 'yellow': 2, 'playful': 1, 'affectionate': 1, '^': 1, 'immature': 4, 'luscious': 1, 'unusual': 3, 'Hers': 1, 'dry': 3, 'golden': 1, 'red': 19, 'Next': 5, 'generous': 4, 'middle': 4, 'downright': 1, 'gloved': 1, 'live-in': 1, 'convenient': 1, 'color-blind': 1, 'muggy': 1, 'dirt-blind': 1, 'living-room': 3, 'no-cleaning': 1, 'good-for-nothing': 1, 'sloppy': 1, 'bronze-colored': 1, 'empty': 19, 'tiny': 5, 'private': 9, 'human': 1, 'loud': 8, 'onme': 14, 'groggy': 1, 'rid': 13, 'dumb': 9, 'okay': 30, 'vivid': 1, 'wild': 4, 'extended': 2, 'guilty': 2, 'previous': 3, 'sixty-fifth': 1, 'distant': 1, 'sweet': 17, 'interesting': 11, 'Little': 1, 'Last': 5, 'adult': 1, 'fried': 1, 'high': 15, 'disposable': 1, 'present': 4, 'happy': 16, 'worth': 8, 'soothing': 3, 'fourth': 6, 'familiar': 4, 'disappointed': 6, 'short': 24, 'Positive': 1, 'darn': 1, 'multicolored': 1, 'skinny': 5, 'boring': 2, 'natural': 5, 'raspberry-colored': 1, 'glad': 10, 'perpetual': 1, 'casual': 1, 'Hispanic': 4, 'Indian': 1, 'brand-new': 3, 'plenty': 2, 'Imani': 2, 'downturned': 1, 'subject': 2, 'raw': 2, 'wanted': 9, 'possible': 8, 'innocent': 4, 'fatal': 1, 'crazy-assed': 1, 'ample': 2, 'Decent': 1, 'dependable': 3, 'exaggerated': 1, 'two-year-old': 1, 'honest': 10, 'impulsive': 1, 'out': 4, 'foreign': 1, 'Old': 1, 'sly': 1, 'uppity': 2, 'majority-black': 1, 'demure': 2, 'Sexy': 1, 'blended': 1, "'cause": 1, 'untrustworthy': 1, 'pitiful': 6, 'eager': 1, 'pretty': 3, 'difficult': 11, 'poor': 6, 'simple': 10, 'cozy': 1, 'irrational': 2, 'passionate': 1, 'sad': 1, 'old-maid': 2, 'ordinary': 1, 'lousy': 3, 'jealous': 3, 'desperate': 2, 'clear': 7, 'loose': 3, 'ancient': 2, 'nonstop': 1, 'grown-up': 2, 'elementary': 1, 'club-hopping': 1, 'three-oh': 1, 'endless': 2, 'outer': 3, 'one-on-one': 1, 'wide-eyed': 2, 'emotional': 1, 'Wonder': 3, 'depressing': 5, 'da-da': 3, 'unemployed': 3, 'Single': 1, 'onday': 1, 'pure': 6, 'sixth': 2, 'homeless': 1, 'comical': 1, 'exact': 1, 'extensive': 1, 'dreamy': 1, 'meager': 2, 'plump': 2, 'hyper': 1, 'mock': 6, 'graphic': 1, 'major': 2, 'hesitant': 3, 'Busy': 1, 'angry': 4, 'curious': 3, 'exotic': 2, 'popular': 4, 'Nice': 6, 'Disgusting': 1, 'alright': 4, 'kinda': 1, 'gorgeous': 7, 'sociable': 1, 'forty-inch': 1, 'broiled': 1, 'blond': 2, 'due': 2, 'half-eaten': 1, 'disgusting': 3, 'fickle': 1, 'dogeat-dog': 1, 'impressed': 2, 'associate': 5, 'drunk': 3, 'lean': 2, 'hands-on': 1, 'pushy': 1, 'double-checking': 1, 'noticeable': 1, 'drop-dead': 3, 'Successful': 1, 'safe': 3, 'unattached': 1, 'common': 5, 'attractive': 8, 'thin': 5, 'provocative': 2, 'toxic': 1, 'wonderful': 3, 'national': 2, 'thorough': 2, 'free': 7, 'dining-room': 8, 'Damn': 17, 'french': 1, 'Hell-lo': 1, 'confident': 1, 'gray': 7, 'all-weather': 1, 'doublebreasted': 1, 'foolish': 3, 'quick': 2, 'thirsty': 1, 'iced': 2, 'far': 2, 'nervous': 3, 'geometrical': 1, 'silent': 2, 'grimy': 1, 'cooling-off': 1, 'inconvenient': 1, 'stubborn': 11, 'young': 20, 'persistent': 2, 'mature': 2, 'clinging': 1, 'three-hour': 1, 'hot-headed': 1, 'bitter': 4, 'sequined': 1, 'high-heeled': 2, 'overnight': 1, 'royal-ruby': 1, 'four-inch': 1, 'Quiet': 1, 'stinking': 1, 'embarrassing': 4, 'complicated': 4, 'compact': 1, 'conceited': 1, 'exciting': 5, 'steady': 9, 'dizzy': 2, 'straight': 6, 'gravel-covered': 1, 'wooded': 1, 'huge': 9, 'giant': 3, 'seedy': 1, 'dilapidated': 1, 'Coming': 1, 'mine': 6, 'normal': 3, 'nasty': 1, 'shabby': 1, 'famous': 1, 'Many': 3, 'bare-shouldered': 1, 'too-tight': 1, 'bushy': 1, 'opposite': 9, 'stocky': 2, 'dreary': 3, 'tipsy': 1, 'odd': 4, 'discreet': 1, 'ten-minute': 1, 'droopy-eyed': 1, 'creepy': 2, 'amusing': 1, 'female': 3, 'double-breasted': 1, 'sensible': 2, 'half-bad': 1, 'crowded': 1, 'unmistakable': 1, 'woman-towoman': 1, 'stuffy': 1, 'faint': 1, 'blind': 5, 'certain': 7, 'pasty': 1, 'unbearable': 1, 'powdery': 3, 'Rotten': 1, 'First': 5, 'Fine': 2, 'sudden': 2, 'gravelcovered': 1, 'cheerful': 1, 'her.spiked': 1, 'yeah': 2, 'useful': 1, 'apparent': 1, 'chase': 1, 'sorry-assed': 1, 'evil': 1, 'furious': 2, 'mad': 8, 'scared': 3, 'swollen': 2, 'hubby': 1, 'irate': 1, 'crappy': 1, 'pleated': 1, 'two-hour': 1, 'uncertain': 1, 'afraid': 15, 'adolescent': 1, 'thirty-one-year-old': 1, 'chronic': 2, 'solid': 1, 'large': 4, 'pink': 1, 'Sick': 1, 'frowned': 2, 'ashamed': 1, 'Real': 1, 'rare': 2, 'one-time': 1, 'hopeless': 4, 'Sorry': 3, 'abrupt': 1, 'harrowing': 1, 'thirty-nine-year-old': 1, 'corporate': 4, 'crummy': 1, 'prestigious': 3, 'Daddy': 2, 'following': 2, 'thirteen-inch': 1, 'Tired': 1, 'beat': 1, 'definite': 4, 'silken': 1, 'Such': 1, 'drastic': 1, 'bumpy': 1, 'gold-rimmed': 1, 'ivory-colored': 1, 'peach-colored': 1, 'chief': 1, 'eastern': 1, 'legal': 3, 'near': 1, 'good-paying': 1, 'side': 1, 'thirtyseven': 1, 'fierce': 2, 'Wasbingtonian': 1, 'financial': 4, 'stray': 4, 'Casual': 1, 'Gorgeous': 1, 'clean': 4, 'Worried': 1, 'diseased': 1, 'healthy': 4, 'chilly': 1, 'hind': 1, 'gold': 1, 'leisurely': 3, 'cooking': 1, 'sarcastic': 4, 'ruby': 3, 'shocked': 2, 'understandable': 1, 'cranky': 1, 'rich': 5, 'prissy': 1, 'spare': 2, 'dissimilar': 1, 'comfortable': 2, 'White': 1, 'relieved': 2, 'Needless': 1, 'matching': 1, 'dire': 1, 'unhappy': 2, 'Strange': 1, 'Black': 4, 'tart': 2, 'Asian': 2, 'trim': 1, 'romantic': 4, 'plastic': 3, 'neat': 3, 'mini': 1, 'uncluttered': 1, 'social': 4, 'hardbacked': 2, 'lone': 2, 'similar': 1, 'alert': 1, 'junior': 2, 'daytime': 1, 'sound': 5, 'grade-school': 1, 'lonely': 3, 'five-foot': 1, 'despondent': 1, 'reddish': 2, 'wispy': 1, 'frantic': 1, 'twenty-two-year-old': 1, 'diminutive': 1, 'French': 4, 'biological': 1, 'feisty': 1, 'Hard': 1, 'messy': 3, 'informal': 2, 'spontaneous': 1, 'vocal': 1, 'argumentative': 1, 'testy': 1, 'ugly': 2, 'self-destructive': 1, 'delicious': 4, 'automatic': 2, 'orange': 10, 'tenminute': 1, 'positive': 2, 'lemon': 7, 'Jamaican': 2, 'Dreadful': 1, 'African': 5, 'grubby': 1, 'reasonable': 2, 'edgy': 3, 'alive': 1, 'concerned': 1, 'federal': 3, 'slick': 2, 'Clean': 1, 'Seven-Eleven': 2, 'pointless': 1, 'rough': 3, 'wishful': 1, 'sunny': 1, 'Several': 3, 'sheer': 1, 'gold-trimmed': 1, 'homey': 1, 'Victorian': 1, 'antique': 1, 'sassy': 1, 'nappy': 3, 'surprising': 6, 'calm': 2, 'permed': 1, 'patient': 1, 'silver': 2, 'Unbelievable': 2, 'fiftyish': 1, 'underdressed': 1, 'petite': 1, 'youthful': 1, 'perk': 1, 'breathtaking': 1, 'sophisticated': 1, 'Spare': 1, 'childish': 1, 'Off-white': 1, 'unbe': 1, 'gloomy': 1, 'active': 2, 'bestdressed': 1, 'too-sweet': 1, 'Old-maid': 1, 'overweight': 7, 'stylish': 1, 'radiant': 1, 'friendly': 3, 'considerate': 2, 'pleased': 3, 'baked': 3, 'unhurried': 1, 'courteous': 1, 'shy': 4, 'awkward': 4, 'uncomfortable': 6, 'taboo': 1, 'goal-oriented': 1, 'ethnic': 4, 'Cooked': 1, 'datable': 1, 'available': 1, 'nicoe': 2, 'tasty': 1, 'True': 3, 'acceptable': 1, 'long-lasting': 1, 'levelheaded': 2, 'stable': 3, 'rational': 1, 'direct': 3, 'old-fashioned': 2, 'king-size': 2, 'Dirty': 1, 'up-front': 2, 'outdated': 1, 'intimate': 1, 'horny': 1, 'polished': 1, 'warped': 1, 'conjunct': 2, 'down-to-earth': 2, 'unpredictable': 3, 'temporary': 1, 'erratic': 2, 'thirteen-year-old': 2, 'pessimistic': 2, 'Olivia': 7, 'heady': 1, 'forgiving': 2, 'philosophical': 1, 'picky': 6, 'cheap': 3, 'depressed': 4, 'intelligent': 2, 'nice-looking': 1, 'late-night': 1, 'potential': 2, 'flirtatious': 1, 'teenage': 1, 'onnte': 4, 'longterm': 1, 'criminal': 2, 'tricky': 3, 'well-built': 1, 'fragrant': 1, 'heavy': 3, 'ruby-red': 1, 'sympathetic': 1, 'recent': 2, 'bored': 3, 'take-out': 2, 'farfetched': 1, 'despicable': 1, 'body-hugging': 1, 'stretchable': 1, 'strong': 2, 'regular': 2, 'favorite': 1, 'forty-five': 1, 'wise': 1, 'adequate': 1, 'rickety-looking': 1, 'barbecued': 1, 'narrow': 6, 't/they': 1, 'amazing': 1, 'broad-shouldered': 1, 'slimhipped': 1, 'ball-sized': 1, 'facial': 1, 'unwed': 1, 'instant': 1, 'pleasant-looking': 1, 'potbellied': 1, 'rude': 2, 'negative': 1, 'cultural': 1, 'graduate': 1, 'Ready': 2, 'midwest': 1, 'fake': 1, 'inside': 2, 'harmless': 1, 'self-satisfied': 1, 'insatiable': 1, 'bearable': 1, 'unstoppable': 1, 'suggestive': 1, 'cherry-chocolate': 3, 'filthy': 1, 'professional': 1, 'clever': 2, 'meatless': 1, 'hot-sauced': 1, 'vinegared': 1, 'teenaged': 1, 'no-count': 1, 'concrete': 1, 'Other': 2, 'obnoxious': 3, 'artificial': 8, 'anonymous': 2, 'picture-perfect': 1, 'separate': 2, 'dried-up': 1, 'hilarious': 1, 'hot-looking': 1, 'satisfied': 1, 'carpeted': 2, 'underground': 1, 'fifth': 2, 'umpteenth': 1, 'covered': 2, 'correct': 1, 'slight': 1, 'traditional': 1, 'splendid': 1, 'olive': 1, 'medical': 5, 'transmittable': 1, 'limited': 1, 'sickle': 1, 'particular': 2, 'forced': 1, 'scarce': 1, 'colorful': 1, 'disposed': 1, 'unnoticed': 2, 'greedy': 1, 'shapeless': 1, 'egg-shaped': 1, 'ridiculous': 4, 'eggshaped': 1, 'not-too-nice': 1, 'thirtyish': 1, 'invisible': 2, 'high-watered': 1, 'fanatic': 1, 'unconvinced': 1, 'laden': 1, 'nearby': 2, 'speechless': 2, 'hopeful': 2, 'lily-white': 1, 'pointed': 1, 'weird': 4, 'practical': 1, 'sane': 1, 'nagging': 1, 'calf-length': 1, 'hundredth': 1, 'worried': 6, 'grown': 2, 'absolute': 2, 'lay': 2, 'stockinged': 2, 'freezing': 1, 'mushy': 2, 'frying': 1, 'dangling': 1, 'Loose': 1, 'three-thirty': 1, 'got-damn': 1, 'phony': 1, 'goddamn': 1, 'dim-witted': 1, 'cashmere': 2, 'soggy': 1, 'Goddamn': 1, 'slippered': 1, 'exasperating': 1, 'irritable': 1, 'modest': 1, 'shaven': 1, 'Boy-Scout': 1, 'mistaken': 1, 'four-year-old': 1, 'electric': 1, 'average-looking': 1, 'familiar-looking': 1, 'Artificial': 1, 'convinced': 4, 'patent-leather': 1, 'hundred-dollar': 1, 'standard': 1, 'vital': 1, 'dark-skinned': 1, 'Caucasian': 1, 'hushed': 1, 'you-all': 1, 'thirty-fifth': 1, 'dangerous': 1, 'undependable': 1, 'snow-covered': 1, 'insane': 1, 'Girl-Scout': 1, 'eight-yearold': 1, 'obscene': 1, 'eightyear-old': 1, 'satisfactory': 1, 'inseparable': 1, 'touchy': 1, 'vague': 1, 'mysterious': 1, 'ideal': 1, 'prouder': 1, 'five-year': 1, 'civilized': 1, 'secure': 4, 'closed': 1, 'polite': 1, 'prying': 1, 'leather-gloved': 1, 'sprawling': 1, 'best-lit': 1, 'red-haired': 2, 'after-work': 1, 'half-white': 1, 'grand': 1, 'stiff': 1, 'reluctant': 2, 'astonished': 1, 'sneaky': 1, 'catty': 1, 'confused': 2, 'far-fetched': 1, 'poisonous': 1, 'feigned': 1, 'blunt': 1, 'supportive': 1, 'scheming': 3, 'prominent': 1, 'hardheaded': 1, 'suspicious': 3, 'conniving': 1, 'absurd': 1, 'hairy': 1, 'naked': 2, 'African-American': 1, 'strangest': 1, 'spic': 4, 'two-cup': 1, 'three-eighths': 2, 'wary': 1, 'original': 1, 'dangerous-looking': 1, 'empty-handed': 2, 'onniie': 1, 'northern': 1, 'snappy': 2, 'everyday': 2, 'double-checked': 1, 'Hot': 1, 'administrative': 2, 'rush-hour': 1, 'full-time': 1, 'Tall': 1, 'handwritten': 1, 'two-finger': 1, 'disappointing': 2, 'entire': 1, 'repellent': 1, 'damp': 1, 'ninethirty': 1, 'howling': 1, 'thankful': 1, 'cherrychocolate': 1, 'frozen': 1, 'spoonful': 1, 'pop-up': 1, 'iriicoe': 1, 'upstate': 1, 'fantastic': 1, 'gentle': 1, 'meticulous': 2, 'mechanical': 1, 'skeptical': 1, 'competitive': 1, 'two-and-a-half-hour': 1, 'what5': 1, 'likely': 1, 'miserable': 2, 'steep': 1, 'clunky': 1, 'bottled': 1, 'rusty': 1, 'serviceable': 1, 'worn': 1, 'Different': 1, 'banged-up': 1, 'three-legged': 1, 'official': 1, 'sisterly': 1, 'last-six': 1, 'shredded': 2, 'Long-distance': 1, 'la-la': 1, 'biweekly': 1, 'weak': 1, 'litde': 1, 'charmed': 1, 'daddy': 1, 'uncalled': 1, 'righteous': 1, 'indignant': 1, 'comfy': 1, 'greasy': 1, 'superficial': 1, 'alarmed': 1, 'meaningless': 1, 'duffel': 2, 'bloated': 1, 'tony': 1, 'crisp': 1, 'all-day': 1, 'hard-working': 1, 'faithful': 1, 'Lead': 1, 'dull': 1, 'Picky': 1, 'fold': 2, 'spineless': 1, 'Boring': 1, 'future': 1, 'bad-looking': 1, 'man-free': 1, 'worry-free': 1, 'Happy': 1, 'stark': 1}
Her own place : a novel /@1993
{'front': 41, 'ajar': 1, 'open': 17, 'novel': 2, 'real': 14, 'able': 22, 'young': 50, 'perennial': 1, 'visible': 3, 'old': 97, 'virgin': 2, 'balanced': 1, 'grand': 1, 'new': 50, 'uneven': 1, 'set-in': 1, 'ragged': 1, '0f': 1, 'Old': 3, 'empty': 11, 'favorite': 4, 'Bold': 1, 'different': 9, 'closed': 2, 'yearly': 2, 'certain': 8, 'Black': 2, 'abundant': 1, 'single': 11, 'long': 50, 'same': 26, 'seasonal': 2, 'several': 13, 'vivid': 1, 'unable': 3, 'wood-encased': 1, 'small': 36, 'final': 6, 'scuffed': 1, 'next': 39, 'old-timey': 2, 'many': 25, 'long-unused': 1, 'reliable': 4, 'grayish': 1, 'black': 26, 'shimmering': 1, 'few': 50, 'white': 42, 'sturdy': 1, 'rural': 5, 'own': 36, 'dead': 13, 'battery-powered': 1, 'quiet': 12, 'particular': 2, 'exact': 1, 'heavy': 12, 'seventh': 2, 'dreadful': 1, 'daddy': 38, 'eleventh': 1, 'hard': 27, 'popular': 1, 'Many': 1, 'nearby': 5, 'senior': 1, 'light': 8, 'Japanese': 1, 'high': 15, 'cloudy': 2, 'solo-danced': 1, 'bleak': 1, 'warm': 25, 'dark': 7, 'everyday': 2, 'handwritten': 1, 'cold': 18, 'well-worn': 2, 'frosty': 2, 'inner': 3, 'wood-stove': 1, 'tiny': 6, 'exacdy': 6, 'big': 38, 'double': 2, 'smoked': 1, 'usual': 4, 'tired': 14, 'easy': 12, 'cozy': 1, 'zootsuited': 1, 'hot': 20, 'dim': 1, 'close': 6, 'potbellied': 2, 'important': 4, 'other': 35, 'static': 1, 'routine': 1, 'fresh': 10, 'good': 95, 'proud': 9, 'poor': 21, 'serious': 11, 'sure': 39, 'prepared': 2, 'decent': 5, 'straight': 2, 'youll': 1, 'right': 29, 'ribbed': 1, 'electric': 4, 'due': 2, 'Rural': 1, 'broad': 3, 'rose-colored': 2, 'honey-beige': 1, 'brighdy': 2, 'rough': 1, 'first': 39, 'fine': 19, 'pink': 5, 'top': 4, 'golden': 2, 'only': 15, 'homemade': 3, 'proper': 6, 'handsome': 11, 'pretty': 7, 'full': 12, 'soft': 13, 'occasional': 2, 'mixed': 1, 'tall': 11, 'mighty': 7, 'good-looking': 2, 'even-set': 1, 'watchful': 2, 'four-poster': 1, 'cheerful': 6, 'blue': 8, 'glad': 10, 'brown': 8, 'wide-set': 2, 'sweet': 9, 'late': 9, 'ready': 27, 'additional': 2, 'forewarned': 1, 'early': 23, 'brownish': 1, 'noontime': 1, 'noonday': 1, 'vital': 1, 'yellow': 2, 'whole': 4, 'dry': 5, 'True': 2, 'everpopular': 1, 'true': 9, 'blotted': 1, 'botded': 1, 'cramped': 2, 'angry': 5, 'safe': 5, 'second': 8, 'third': 3, 'thin': 6, 'speechless': 2, 'stern': 1, 'Forty-fourth': 1, 'joyous': 1, 'official': 1, 'much': 55, 'drab': 1, 'helpless': 1, 'narrow': 4, 'olive': 1, 'clean': 14, 'wet': 4, 'near': 1, 'worried': 8, 'itll': 1, 'crumpled': 3, 'creased': 1, 'anxious': 8, 'fair': 2, 'afraid': 11, 'entire': 5, 'pleased': 11, 'makeshift': 2, 'wrong': 11, 'hand-rolled': 1, 'bad': 14, 'general': 2, 'stale': 1, 'short': 14, 'tilted': 1, 'out-figured': 2, 'rolled': 1, 'huge': 2, 'hard-surfaced': 1, 'shady': 1, 'last': 26, 'wide': 6, 'red': 9, 'beautiful': 7, 'speckled': 1, 'unfinished': 1, 'half-filled': 1, 'book-lined': 1, 'satin': 1, 'fancy': 15, 'flowered': 2, 'deep-rose': 1, 'respected': 1, 'matching': 2, 'back': 13, 'quick': 4, 'pale': 3, 'crooked': 3, 'uncomfortable': 2, 'fabric-draped': 1, 'wine-colored': 1, 'welldressed': 1, 'nervous': 8, 'embarrassed': 3, 'starded': 1, 'agreeable': 1, 'unpacked': 1, 'duffel': 3, 'perfect': 4, 'crisp': 3, 'trim': 2, 'boyish': 2, 'free': 11, 'damp': 2, 'clear': 11, 'alive': 7, 'natural': 2, 'great': 5, 'theirs': 1, 'longtime': 2, 'underwater': 1, 'rare': 4, 'heated': 1, 'enough': 15, 'special': 7, 'pregnant': 3, 'aware': 2, 'strange-colored': 2, 'pained': 5, 'smoke-stained': 1, 'outside': 9, 'sticky': 1, 'perfecdy': 3, 'shaped': 2, 'iron-poster': 1, 'addle-minded': 1, 'silent': 5, 'intense': 1, 'strong': 5, 'ashamed': 6, 'personal': 3, 'tear-streaked': 1, 'grown': 4, 'high-brown': 1, 'Good-looking': 1, 'crazy': 8, 'German': 1, 'extra': 4, 'ablebodied': 1, 'shell-shocked': 2, 'healthy': 1, 'fringed': 1, 'flat': 3, 'nice': 20, 'legal': 1, 'sad': 12, 'lucky': 2, 'frizzed': 1, 'sick': 21, 'rich': 4, 'green': 5, 'unopened': 1, 'tragic': 2, 'jealous': 4, 'troubling': 4, 'Low': 7, 'aged': 3, 'diabetic': 1, 'dreary': 1, 'Outside': 4, 'lonely': 9, 'limp': 2, 'drought-parched': 1, 'shoed': 1, 'plump': 1, 'down': 5, 'litde': 8, 'hungry': 15, 'ill-fitting': 1, 'windy': 1, 'gleeful': 1, 'nonworking': 2, 'weak': 4, 'well-to-do': 1, 'happy': 4, 'little': 7, 'Last': 3, 'wooden': 6, 'fourth': 1, 'unkind': 1, 'delicious': 2, 'worthless': 3, 'weekly': 3, 'wild': 6, 'solemn': 1, 'bright': 5, 'sour': 1, 'cracked-corn': 1, 'future': 2, 'hot-water': 1, 'dull': 1, 'slow-burning': 1, 'fried': 4, 'smooth': 4, 'eyelet-trimmed': 1, 'immediate': 2, 'sofdy': 6, 'rolling': 1, 'likely': 1, 'careful': 5, 'mine': 1, 'wish-filled': 1, 'shocked': 1, 'disinterested': 1, 'opposite': 2, 'rosy': 1, 'deep': 7, 'simple': 3, 'pleated': 2, 'identical': 1, 'daily': 1, 'field-fresh': 1, 'plenty': 3, 'concerned': 7, 'bare': 4, 'fast': 1, 'half-empty': 1, 'Next': 1, 'knife-sharp': 1, 'outer': 1, 'stiff': 1, 'large': 3, 'pointed': 3, 'bleeding': 1, 'dirty': 4, 'guilty': 3, 'two-year-old': 1, 'such': 9, 'sleepy': 1, 'buttered': 1, 'chilly': 1, 'feverish': 1, 'slow': 2, 'steady': 4, 'eerie': 2, 'brisk': 1, 'moonlit': 1, 'imaginary': 1, 'furious': 1, 'hush': 1, 'inflamed': 1, 'evident': 1, 'medical': 10, 'relieved': 2, 'possible': 5, 'grateful': 2, 'cooking': 2, 'Apparendy': 1, 'obvious': 2, 'bewildered': 1, 'unwilling': 1, 'key': 3, 'embroidered': 1, 'loose': 4, 'corncob': 1, 'Several': 4, 'valuable': 1, 'coastal': 1, 'well-off': 3, 'Little': 1, 'plain': 2, 'troubled': 4, 'fleeting': 1, 'civil': 2, 'Baptist': 1, 'sly': 1, 'scattered': 2, 'wifeless': 1, 'lace-trimmed': 1, 'eager': 1, 'awful': 2, 'high-test': 1, 'all-black': 1, 'lickety-split': 1, 'local': 2, 'social': 1, 'available': 2, 'surprised': 2, 'responsible': 1, 'finished': 1, 'money-paying': 1, 'uneasy': 5, 'Christian': 1, 'clipping': 1, 'painful': 2, 'busy': 7, 'mechanical': 1, 'relative': 1, 'enclosed': 1, 'regular': 1, 'distant': 1, 'current': 3, 'standing': 1, 'wonderful': 4, 'mosdy': 1, 'worthwhile': 3, 'swift': 1, 'former': 2, 'Maycie': 1, 'high-class': 2, 'brand-new': 1, 'spanking': 2, 'Housekeeping': 1, 'Good': 3, 'tongue-dampened': 1, 'long-sleeved': 1, 'thick': 2, 'overpriced': 1, 'faraway': 2, 'highclass': 1, 'satisfied': 1, 'tomato-and-onion': 1, 'swollen': 1, 'recent': 2, 'sacred': 1, 'married': 3, 'two-story': 1, 'washed-out': 1, 'moist': 1, 'cloudless': 1, 'richrich': 1, 'abrupdy': 1, 'various': 1, 'newborn': 1, 'Wonder': 2, 'quiedy': 1, 'bitter': 1, 'content': 1, 'oversized': 1, 'mock': 1, 'empty-handed': 1, 'male': 2, 'blind': 2, 'doubdess': 1, 'seventy-some': 1, 'rotten': 2, 'powerful': 1, 'brief': 2, 'Great': 1, 'twenty-dollar': 1, 'fretful': 1, 'unhappy': 2, 'thickened': 1, 'pigeon-toed': 1, 'constandy': 1, 'private': 1, 'childless': 1, 'northern': 1, 'two-car': 1, 'questionable': 1, 'successful': 1, 'varied': 1, 'wall-to-wall': 1, 'much-changed': 1, 'modest': 1, 'fashionable': 2, 'boxy': 1, 'spare': 2, 'liable': 1, 'sizable': 1, 'monthly': 1, 'left': 8, 'spoonful': 1, 'shaded': 1, 'air-conditioned': 1, 'overrated': 1, 'idle': 1, 'welcome': 2, 'fat': 2, 'Amazing': 2, 'tipsy': 1, 'odd': 3, 'part-time': 1, 'good-sized': 1, 'iced': 2, 'cosmetic': 1, 'expensive': 2, 'Canadian': 1, 'pitiful': 4, 'mournful': 2, 'loud': 1, 'dandelion': 1, 'high-powered': 1, 'mellow': 1, 'unmarried': 1, 'a-sitting': 1, 'necessary': 1, 'initial': 1, 'middle': 3, 'stylish': 1, 'precocious': 1, 'sorry': 6, 'professional': 1, 'saddened': 1, 'precious': 1, 'roguish': 1, 'smart': 3, 'missing-tooth': 1, 'Asian': 1, 'mental': 2, 'impish': 1, 'fragrant': 1, 'seven-layer': 1, 'down-home': 1, 'nasty': 1, 'ironed': 1, 'gray': 5, 'miniskirted': 1, 'sunshine-fresh': 1, 'call': 1, 'intelligent': 2, 'Strange': 1, 'front-porch': 1, 'meaningless': 1, 'seesaw': 1, 'goodlooking': 1, 'Same': 1, 'hody': 1, 'soothing': 1, 'sixtyfive-cent': 1, 'heavy-shouldered': 1, 'builtin': 1, 'taken-for-granted': 1, 'alert': 1, 'interested': 1, 'friendly': 1, 'Hot': 1, 'striking': 1, 'auburn-haired': 1, 'total': 2, 'strange': 3, 'touch-up': 1, 'blond': 2, 'curious': 3, 'pure': 1, 'foolish': 1, 'crystal-clear': 1, 'gullible': 1, 'china-blue': 1, 'you-are-so-wonderful': 1, 'normal': 2, 'comfortable': 1, 'covered': 1, 'sandy': 2, 'Adantic': 4, 'east': 1, 'riddled': 1, 'difficult': 2, 'Indian': 2, 'native': 1, 'know-it-all': 1, 'half-opened': 1, 'sharp': 2, 'curved': 1, 'honest': 3, 'insensitive': 1, 'unfair': 1, 'so-oo': 1, 'roasted': 1, 'weary': 2, 'terrible': 1, 'spic-and-span': 1, 'rude': 1, 'out-of-town': 1, 'dismissive': 1, 'annoying': 2, 'cool': 3, 'recendy': 1, 'lighdy': 1, 'generous': 1, 'Damn': 1, 'solid': 2, 'hard-pressed': 1, 'awkward': 2, 'embarrassing': 2, 'unintentional': 1, 'heavenly': 1, 'fork-tender': 1, 'impatient': 2, 'red-lipped': 1, 'patient': 1, 'alien': 1, 'home-canned': 1, 'lemon': 10, 'insulting': 1, 'deliberate': 1, 'ice-cream': 1, 'funny': 1, 'wrinkled': 1, 'colored': 1, 'present': 3, 'retired': 1, 'shordy': 1, 'African-American': 1, 'unironed': 1, 'uncombed': 1, 'funeral': 2, 'bare-legged': 1, 'five-dollar': 1, 'folding': 1, 'hairless': 1, 'five-and-tencent': 1, 'three-strand': 1, 'pearl-adorned': 1, 'drop-dead': 1, 'cute': 1, 'past': 3, 'no-socks': 1, 'gorgeous': 1, 'low': 1, 'half-dozen': 1, 'clerical': 1, 'exotic': 1, 'beaten': 1, 'huggykissy': 1, 'token': 1, 'stooped': 1, 'well-placed': 1, 'high-heeled': 1, 'puffy': 1, 'airborne': 1, 'plastic': 1, 'seedless': 1, 'tighdy': 1, 'elderly': 3, 'dumb': 2, 'full-service': 1, 'gray-haired': 2, 'taut': 1, 'well-dressed': 1, 'fake': 1, 'seven-year': 1, 'tattered': 1, 'snarled': 1, 'overstuffed': 2, 'uncut': 1, 'flawless': 1, 'mad': 1, 'cheap': 1, 'Dead': 1, 'importandy': 1, 'bottom': 1, 'twenty-one-year-old': 1, 'impending': 1, 'spry': 1, 'uncertain': 1, 'blank': 1, 'mature': 1, 'broken': 6, 'frail': 2, 'Sweet': 1, 'human': 1, 'deafening': 1, 'funnel-shaped': 1, 'sound': 2, 'left-handed': 2, 'whisding': 1, 'tasty': 1, 'slender': 1, 'bald-faced': 1, 'country-style': 1, 'disturbed': 2, 'haunted': 1, 'fragile': 2, 'confused': 5, 'rusting': 2, 'indescribable': 1, 'overwhelming': 1, 'unmarked': 1, 'rusty': 1, 'exciting': 1, 'common': 1, 'very': 3, 'oval': 1, 'unknown': 1, 'paternal': 2, 'spellbound': 1, 'historical': 1, 'lovely': 1, 'recorded': 1, 'baked': 1, 'piled-up': 1, 'shiny': 1, 'underbrush': 1, 'overgrown': 1, 'clinking': 1, 'musical': 1, 'single-handed': 1, 'surprising': 1, 'tangled': 1, 'playful': 1, 'scary': 1, 'barren': 1, 'pleasant': 1, 'starter': 2, 'eight-ounce': 1, 'neady': 1, 'well-respected': 1, 'willing': 1, 'close-knit': 1, 'respectable': 1, 'fifty-dollar': 1, 'permanent': 1, 'vacant': 1, 'fitting': 1, 'untangled': 1, 'levelheaded': 1, 'Sure': 1, 'vain': 1, 'comforting': 1, 'lazy': 1, 'tie': 1, 'worn': 2, 'unbuttoned': 1, 'pinstriped': 1, 'reserved': 1, 'thoughtful': 1, 'Smoked': 1, 'North': 1, 'streamlined': 1, 'suspicious': 1, 'earthenware': 2, 'frightened': 2, 'firm': 1, 'further': 1, 'baffling': 1, 'unusual': 2, 'physiological': 1, 'ill': 1, 'emotional': 1, 'open-minded': 1, 'competent': 1, 'prompdy': 1, 'vague': 1, 'preserved': 1, 'stupid': 1, 'Anxious': 1, 'con': 1, 'unspoken': 1, 'hushed': 1, 'deceased': 1, 'slight': 1, 'incurable': 1, 'penciled': 1, 'unnoticed': 1, 'evidendy': 1, 'else': 1, 'High': 1, 'conscious': 1, 'sudden': 1}
Autobiography of a family photo : a novel /@1995
{'prior': 1, 'coincidental': 1, 'dead': 5, 'Afro-American': 1, 'above': 2, 'electronic': 1, 'written': 1, 'novel': 1, 'actual': 1, 'mechanical': 1, 'early': 3, 'black': 37, 'hysterical': 1, 'distraught': 1, 'Dark': 4, 'inevitable': 2, 'bare-chested': 2, 'bottled': 1, 'blue': 22, 'full': 9, 'Simple': 2, 'dark': 23, 'naked': 6, 'simple': 3, 'muted': 1, 'beautiful': 22, 'unimaginable': 1, 'young': 5, 'thin-limbed': 1, 'slow': 4, 'jump-rope': 1, 'sure': 2, 'shared': 1, 'different': 15, 'fifth': 4, 'warm': 8, 'perfect': 8, 'bright': 12, 'second': 2, 'first': 17, 'white': 39, 'tiny': 21, 'visible': 1, 'silver-plated': 1, 'absent': 1, 'solemn': 1, 'Black': 1, 'hushed': 3, 'ribboned': 1, 'true': 1, 'extra': 2, 'tight': 14, 'dry': 4, 'other': 37, 'hard': 10, 'closed': 3, 'Vague': 1, 'old': 18, 'open': 6, 'bark-colored': 2, 'heavy': 8, 'hollow': 3, 'little': 44, 'Outside': 4, 'jealous': 2, 'carpeted': 1, 'big': 23, 'tinny': 1, 'dark-brown': 1, 'seven-yearold': 1, 'newborn': 2, 'yellow-brown': 2, 'pale': 17, 'Old': 1, 'wrong': 9, 'graceful': 1, 'half-white': 2, 'Beautiful': 3, 'thin': 12, 'only': 4, 'gold': 1, 'front': 6, 'obvious': 1, 'certain': 1, 'broken-down': 1, 'crazy': 8, 'brown': 24, 'torn-up': 1, 'fine': 3, 'red': 6, 'second-floor': 1, 'short': 3, 'loud': 4, 'awful': 1, 'half-rubber': 1, 'low': 5, 'top': 9, 'late': 2, 'careful': 1, 'Good': 1, 'afraid': 28, 'silvery': 1, 'easy': 4, 'whole': 5, 'like': 1, 'somber': 2, 'Wonder': 2, 'damp': 2, 'flat': 4, 'faraway': 1, 'strong': 1, 'soft': 12, 'cold': 7, 'calm': 1, 'sneaky-woman': 1, 'hot': 10, 'suspicious': 1, 'silent': 15, 'real': 7, 'good': 11, 'withered': 1, 'gray': 17, 'man-to-man': 1, 'broken': 2, 'blue-black': 2, 'nappy': 2, 'curly': 1, 'empty': 9, 'cheap': 2, 'pinkish': 1, 'slitted': 1, 'six-year-old': 1, 'long': 16, 'same': 8, 'Last': 4, 'wide': 6, 'chubby': 1, 'Heavy': 2, 'ten-year-old': 1, 'own': 27, 'quiet': 7, 'half': 3, 'next': 8, 'radiant': 1, 'ranch-housed': 1, 'hungry': 2, 'brown-gold': 1, 'super': 1, 'far': 1, 'small': 7, 'half-black': 1, 'fading': 2, 'violent': 1, 'white-deficient': 1, 'unusual': 1, 'dangerous': 2, 'Past': 1, 'left': 3, 'Narrow': 1, 'pathless': 1, 'beige': 3, 'off-colored': 1, 'green': 11, 'back': 7, 'ragged': 4, 'outside': 2, 'distant': 3, 'dull': 1, 'light': 3, 'high': 6, 'sweet': 9, 'two-family': 1, 'urban': 1, 'key': 1, 'elastic': 1, 'thick': 6, 'sorry': 2, 'nestled': 1, 'past': 4, 'half-filled': 1, 'new': 16, 'gray-green': 1, 'summery': 1, 'leatherlike': 1, 'ripe': 1, 'nice': 4, 'nonexistent': 1, 'cool': 1, 'Bright': 1, 'Blond': 1, 'Thin': 1, 'Little': 3, 'Weepy': 1, 'deep': 5, 'blond': 2, 'wild': 2, 'sparse': 1, 'Ready': 1, 'dense': 1, 'ready': 4, 'searing': 1, 'painful': 3, 'calloused': 1, 'Slow': 1, 'heated': 1, 'foreign': 1, 'much': 9, 'Expectant': 1, 'silly': 1, 'slipped': 1, 'willing': 1, 'familiar': 1, 'present': 1, 'kinky-haired': 2, 'unformed': 1, 'straight': 1, 'useless': 1, 'smelly': 1, 'brownskinned': 1, 'creative': 1, 'plastic': 2, 'Yellow-brown': 1, 'Afraid': 2, 'sudden': 4, 'greasy': 1, 'wide-eyed': 2, 'yellow': 6, 'weird': 1, 'mock': 1, 'sweet-smelling': 1, 'such': 2, 'joint': 4, 'stupid': 6, 'stupid-looking': 1, 'scared': 5, 'cupped': 1, 'private': 1, 'folding': 1, 'tall': 4, 'Precarious': 1, 'smart': 1, 'pubic': 1, 'syllable': 1, 'complicated': 1, 'Syllable': 1, 'lukewarm': 1, 'wrinkled': 2, 'blue-white': 2, 'claw-foot': 1, 'soft-speaking': 1, 'immune': 1, 'feathery': 1, 'half-cold': 1, 'dirty': 4, 'nasty': 3, 'blank': 2, 'right': 6, 'vague': 1, 'flabby': 1, 'double': 2, 'dutch': 1, 'shaky': 3, 'non-English-speaking': 1, 'unpleasant': 1, 'Free': 1, 'outdated': 1, 'ancient': 1, 'German': 1, 'preworn': 1, 'yellow-shaded': 1, 'watery': 1, 'last': 5, 'sour': 2, 'genuine': 1, 'stiff': 1, 'snappy': 1, 'yellowing': 4, 'swift-footed': 1, 'inside': 1, 'nine-year-old': 1, 'bad': 12, 'straight-back': 1, 'Catholic': 1, 'knee-high': 1, 'damn': 1, 'unforgiving': 1, 'blank-eyed': 1, 'Spanish': 3, 'darker-skinned': 1, 'sick': 2, 'undaunted': 1, 'holy': 1, 'dusty': 1, 'bilingual': 1, 'lewd': 1, 'sad': 2, 'many': 4, 'unswaddled': 1, 'glass-elevatored': 1, 'terrifying': 1, 'sandaled': 1, 'possible': 1, 'melancholy': 1, 'identical': 2, 'able': 3, 'gray-faced': 1, 'black-gritted': 1, 'sidelong': 3, 'masking-taped': 1, 'sharp': 2, 'rusting': 1, 'fragile': 3, 'vacant': 2, 'pointed': 1, 'important': 1, 'profound': 1, 'skinny': 2, 'full-out': 1, 'grand': 1, 'scratchy': 1, 'close': 5, 'else': 1, 'haunted': 1, 'flat-chested': 1, 'caramel-colored': 1, 'Tar-black': 1, 'nappy-headed': 1, 'impotent': 1, 'alive': 1, 'bloodshot': 2, 'bare': 1, 'half-hearted': 1, 'fearful': 1, 'confused': 1, 'Damn': 4, 'bottom': 1, 'dumb-ass': 1, 'black-and-blue': 1, 'mixed': 1, 'wet': 1, 'bent': 1, 'clear': 1, 'safe': 1, 'vaginal': 1, 'padded': 1, 'permanent': 1, 'blue-gold': 1, 'free': 3, 'perplexed': 1, 'okay': 4, 'single': 3, 'light-brown': 1, 'smooth': 2, 'cross-legged': 1, 'pink': 2, 'Chinese': 2, 'someplace': 1, 'wrinkly': 1, 'queasy': 1, 'virgin': 1, 'bare-legged': 1, 'Iwant': 1, 'spotted': 1, 'fat': 2, 'upset': 1, 'unconvinced': 1, 'whiter-skinned': 1, 'major': 1, 'rain-soaked': 1, 'secret': 1, 'middle': 3, 'overcast': 1, 'Merry-go-round': 1, 'firm': 1, 'brown-haired': 1, 'merrygo-round': 1, 'uncertain': 1, 'super-fine': 1, 'underwater': 1, 'brittle': 1, 'routine': 1, 'flustered': 1, 'imperceptible': 1, 'quick-footed': 1, 'fast': 1, 'snakelike': 1, 'frightened': 2, 'Other': 1, 'unsure': 1, 'sandy': 1, 'preadolescent': 1, 'giggly': 1, 'apathetic': 1, 'man-tailored': 1, 'sideways': 1, 'satin-skirted': 1, 'disappointed': 1, 'sleepy': 1, 'two-handed': 1, 'single-handed': 1, 'ceiling-to-floor': 1, 'formal': 1, 'broad-shouldered': 1, 'white-headed': 1, 'dire': 1, 'tough': 1, 'all-boy': 1, 'daring': 2, 'flair-legged': 1, 'evil': 2, 'Goddamn': 1, 'tarred-over': 1, 'nearsilent': 1, 'unused': 1, 'one-storeyed': 1, 'gray-blue': 1, 'blank-faced': 1, 'expectant': 1, 'bare-branched': 1, 'annoyed': 1, 'overdue': 1, 'automatic': 1, 'hopeful': 1, 'enough': 3, 'void': 1, 'Wondering': 1, 'common': 1, 'bloody': 2, 'Scary': 1, 'scary': 2, 'sticky': 1, 'rickety': 1, 'glorious': 1, 'tattered': 1, 'bicentennial': 1, 'reluctant': 1, 'sweaty': 1, 'blonde': 1, 'Fourth': 1, 'numb': 1, 'eerie': 1, 'nervous': 1, 'few': 3, 'chaotic': 1, 'raw': 1, 'enraged': 1, 'Frozen': 1, 'North': 1, 'invisible': 1, 'frozen': 1, 'weary': 1, 'unaware': 1, 'Unaware': 1, 'Weary': 1, 'murky': 1, 'favorite': 1, 'horizontal': 1, 'dangle': 1, 'tarnished': 1, 'long-ago': 1, 'rid': 1, 'dumb': 2, 'faint': 1, 'fractured': 1, 'misdirected': 1, 'sore': 1, 'Buy': 1, 'swollen': 1, 'special': 1, 'Jolly': 1, 'Italian': 1, 'small-looking': 1, 'Ugly': 1, 'quick': 1, 'fake': 1, 'stale': 1, 'grown-up': 1, 'angry': 1, 'unfamiliar': 1, 'massive': 1, 'beaded': 1, 'pitiful': 1, 'lowercase': 1, 'odd': 1, 'Tschichold': 3, 'outspoken': 1, 'sixteenth-century': 2, 'French': 2, 'historic': 1}
The cattle killing /@1996
{'anatomical': 1, '18th': 1, 'indebted': 1, 'Various': 1, 'Afro-American': 2, 'various': 6, 'eighteenth-century': 3, 'available': 4, 'indispensable': 1, 'other': 96, 'beautiful': 9, 'old': 53, 'tough': 2, 'tangible': 2, 'sure': 25, 'garlic': 1, 'warm': 19, 'unwritten': 1, 'last': 34, 'steep': 5, 'black': 111, 'broken-hearted': 1, 'unopened': 1, 'little': 34, 'next': 19, 'duffle': 1, 'fast-fading': 1, 'toothpaste-flecked': 1, 'many': 80, 'precious': 16, 'chargeable': 1, 'skinny': 1, 'young': 26, 'slow': 8, 'slick': 1, 'good': 47, 'own': 47, 'loud': 4, 'full': 15, 'smooth-talking': 1, 'painful': 2, 'small': 18, 'much': 36, 'enough': 20, 'pimply-faced': 1, 'sad': 7, 'smooth-faced': 1, 'red': 7, 'weird': 2, 'shiny': 1, 'nappy': 3, 'hard': 14, 'packed': 1, 'funky': 2, 'love-hate': 1, 'bad': 10, 'unnoticed': 1, 'Bad': 1, 'social': 3, 'dark': 48, 'Little': 3, 'heigh-ho': 1, 'new': 52, 'few': 24, 'fine': 10, 'bittersweet': 1, 'pop': 2, 'hip-hop': 1, 'dead': 67, 'juke-jointfor-a-night': 1, 'nasty': 3, 'trifling': 1, 'virtual': 1, 'long': 40, 'Wounded': 1, 'Last': 1, 'large': 9, 'busted': 1, 'fifteen-cent': 1, 'twentyfive-cent': 1, 'intricate': 3, 'false': 8, 'drippy': 1, 'Understand': 1, 'weak': 6, 'proud': 5, 'destitute': 3, 'Black': 7, 'Xhosa': 5, 'ancient': 12, 'convinced': 1, 'dreamless': 1, 'swollen': 3, 'European': 2, 'worthless': 1, 'evil': 15, 'elegant': 5, 'broken': 8, 'sick': 11, 'African': 68, 'desperate': 2, 'Fresh': 1, 'True': 2, 'exotic-sounding': 1, 'prophetic': 1, 'greasy': 2, 'true': 5, 'novel': 5, 'Rear-ended': 1, 'tributary': 1, 'impossible': 4, 'broad': 2, 'different': 24, 'human': 11, 'imaginary': 5, 'personal': 2, 'same': 28, 'first': 45, 'slippery': 3, 'fast': 3, 'blind-sided': 1, 'close': 4, 'nagging': 1, 'narrow': 11, 'high': 10, 'treacherous': 2, 'Italian': 2, 'Yugoslavian': 1, 'South': 1, 'Polish': 2, 'silent': 12, 'rural': 5, 'odd': 7, 'similar': 2, 'funny-talking': 1, 'Macedonian': 1, 'Ukrainian': 1, 'daring': 3, 'vast': 6, 'space-age': 1, 'short': 7, 'Mass': 2, 'unexpected': 5, 'broad-beamed': 1, 'Lithuanian': 1, 'unfamiliar': 2, 'ethnic': 1, 'thick': 8, 'consonant': 1, 'wide-cheekboned': 1, 'strange': 12, 'blue-butt': 1, 'obsolete': 1, 'Czechoslovakian': 1, 'Jewish': 1, 'Armenian': 1, 'thick-handed': 1, 'tacky': 1, 'white': 81, 'broad-browed': 1, 'earth-hugging': 1, 'clannish': 1, 'heavy-limbed': 1, 'later': 1, 'deep-eyes-alwayselsewhere': 1, 'futile': 2, 'approximate': 1, 'nigger': 1, 'hunky': 1, 'once-upon-a-time': 1, 'else': 3, 'faraway': 3, 'in-person': 1, 'public': 6, 'inarticulate': 1, 'urban': 2, 'generic': 1, 'goofy-sounding': 1, 'specific': 2, 'unformed': 1, 'senior': 1, 'indeterminate': 1, 'dangerous': 6, 'huge': 5, 'damp': 4, 'over-the-counter': 1, 'real': 20, 'Whole': 1, 'proper': 8, 'comfortable': 3, 'quiet': 26, 'industrial': 1, 'iron-rimmed': 1, 'alive': 25, 'permanent': 1, 'second': 20, 'cold': 33, 'fatal': 5, 'intimate': 5, 'wooden': 5, 'stale': 1, 'afraid': 10, 'clangorous': 1, 'utter': 8, 'interchangeable': 2, 'longgone': 1, 'distant': 5, 'untouched': 2, 'many-storied': 1, 'porous': 1, 'countless': 3, 'unbearable': 3, 'westward-flowing': 1, 'pregnant': 1, 'voracious': 2, 'unpredictable': 2, 'Iroquois': 1, 'green': 21, 'sheer': 1, 'easy': 2, 'fabled': 2, 'great': 30, 'willing': 9, 'golden': 6, 'magical': 2, 'mortal': 2, 'strong': 12, 'unlucky': 1, 'powerful': 6, 'early': 3, 'willful': 1, 'Certain': 3, 'passionate': 3, 'bodiless': 1, 'snowy': 1, 'blue': 25, 'dense': 2, 'soft': 20, 'unheard': 1, 'gray': 8, 'transparent': 3, 'clinging': 1, 'light': 28, 'pale': 13, 'filthy': 2, 'unimaginable': 2, 'Other': 1, 'empty': 6, 'familiar': 16, 'lucky': 2, 'scant': 1, 'certain': 18, 'wet': 8, 'deep': 12, 'unintelligible': 1, 'hollow': 4, 'bare': 21, 'Light': 6, 'nameless': 4, 'late-afternoon': 1, 'fiery': 5, 'invisible': 14, 'polished': 2, 'bright': 10, 'dumb': 6, 'exact': 6, 'grating': 1, 'naked': 25, 'raw': 6, 'bloody': 10, 'hooked': 1, 'bulky': 2, 'meaningless': 1, 'stark': 2, 'solid': 5, 'brutal': 4, 'worrisome': 1, 'mute': 2, 'marble-pillared': 1, 'false-tongued': 1, 'sullen': 1, 'yellow': 4, 'curious': 11, 'hot': 13, 'stupid': 2, 'helpless': 8, 'immortal': 3, 'blind': 18, 'unspoken': 4, 'open': 26, 'stiff': 4, 'undeniable': 2, 'featureless': 1, 'sudden': 5, 'desolate': 2, 'lasting': 2, 'likely': 3, 'preferable': 2, 'visible': 1, 'clenched': 1, 'unsound': 1, 'Broken': 2, 'spidery': 1, 'faint': 2, 'dull': 3, 'deadly': 6, 'gloomy': 2, 'backcountry': 1, 'able': 13, 'hungry': 3, 'Good': 7, 'mossy': 1, 'far': 7, 'startled': 1, 'Sure': 2, 'unseen': 3, 'honest': 3, 'past': 7, 'ordinary-size': 1, 'abrupt': 2, 'Anxious': 1, 'late': 10, 'grave': 3, 'outside': 4, 'clumsytongued': 1, 'carcass-shaped': 1, 'poor': 21, 'stubborn': 1, 'Endless': 1, 'deaf': 3, 'inside': 1, 'soot-stained': 1, 'sparse': 2, 'humble': 13, 'Weightless': 1, 'dangling': 1, 'separate': 10, 'contorted': 1, 'harmless': 1, 'careful': 2, 'throbbing': 2, 'injured': 2, 'complete': 2, 'enormous': 2, 'fortunate': 1, 'prying': 3, 'loose': 4, 'numerous': 5, 'spectral': 1, 'sorry': 13, 'wretched': 1, 'warped': 1, 'unmoving': 4, 'such': 23, 'peculiar': 6, 'simple': 12, 'God-fearing': 1, 'pagan': 2, 'unblinking': 2, 'Such': 2, 'doubtless': 2, 'free': 23, 'pitiful': 4, 'sole': 7, 'unpleasant': 2, 'untidy': 1, 'pleasant': 3, 'precarious': 3, 'noisy': 1, 'pungent': 3, 'frigid': 3, 'bearable': 1, 'distinct': 3, 'upside-down': 3, 'anxious': 2, 'minuscule': 1, 'prosperous': 4, 'wooded': 1, 'nether': 1, 'fecund': 1, 'ready': 5, 'temporary': 1, 'wealthy': 1, 'main': 7, 'heavy': 10, 'able-bodied': 3, 'plain': 3, 'Many': 9, 'whole': 18, 'melancholy': 2, 'stricken': 1, 'tame': 2, 'insufficient': 1, 'populated': 2, 'innocent': 7, 'unspeakable': 1, 'inner': 4, 'unfleshed': 1, 'earthly': 1, 'Full': 2, 'hearty': 1, 'tiny': 10, 'sacred': 4, 'holy': 8, 'pleased': 4, 'grand': 6, 'occasional': 1, 'everlasting': 3, 'low': 8, 'worthy': 5, 'bunioned': 1, 'far-flung': 2, 'unmarried': 1, 'modest': 5, 'impressed': 1, 'cowardly': 2, 'immune': 1, 'peaceful': 4, 'bare-bones': 1, 'long-suffering': 1, 'nearsighted': 1, 'hard-won': 1, 'preposterous': 3, 'homeless': 1, 'unwise': 1, 'content': 1, 'ample': 2, 'ignorant': 1, 'makeshift': 1, 'unhurried': 2, 'former': 2, 'sleepy': 1, 'rapid': 3, 'infinite': 4, 'terrible': 15, 'never-ending': 3, 'guilty': 1, 'inferior': 1, 'so-called': 1, 'daily': 6, 'cruel': 6, 'spare': 4, 'hostile': 2, 'soured': 1, 'tribal': 1, 'generous': 5, 'Dire': 1, 'scattered': 1, 'Breezeless': 1, 'unconverted': 1, 'flat': 8, 'sore': 2, 'Heavy': 2, 'soaked': 1, 'intense': 1, 'Fought': 1, 'dusty': 4, 'seamless': 1, 'remote': 1, 'shimmering': 2, 'usual': 5, 'Loath': 1, 'bitter': 4, 'Low-lying': 1, 'harsh': 2, 'unceasing': 1, 'prolonged': 2, 'endless': 11, 'sturdy': 1, 'sable': 4, 'subtle': 1, 'supple': 2, 'grime-crusted': 1, 'neat': 2, 'parched': 2, 'telltale': 2, 'iron-callused': 1, 'slim-waisted': 1, 'numb': 2, 'resigned': 1, 'hard-packed': 1, 'uncolorful': 1, 'Slim-backed': 1, 'Dusty': 1, 'purposeful': 1, 'giant': 5, 'fresh': 6, 'sweltering': 1, 'Soot-streaked': 1, 'clean': 6, 'Familiar': 1, 'delicate': 4, 'bruised': 1, 'cool': 5, 'rough': 5, 'battered': 1, 'indoor': 1, 'fierce': 2, 'life-size': 1, 'limp': 1, 'entire': 6, 'flesh-and-blood': 2, 'single': 6, 'vital': 1, 'cunning': 3, 'Wooden': 1, 'actual': 6, 'only': 21, 'dirty': 1, 'Dead': 3, 'helpee': 1, 'distended': 1, 'tired': 7, 'dry': 13, 'solitary': 1, 'dappled': 1, 'off': 1, 'layered': 1, 'scraggly': 1, 'unfrequented': 1, 'withered': 1, 'blameless': 1, 'cobwebbed': 1, 'east': 1, 'rocky': 1, 'adept': 1, 'wild': 9, 'navigable': 1, 'cliff-high': 1, 'customary': 1, 'useless': 4, 'Chilly': 1, 'unknown': 8, 'virgin': 1, 'impenetrable': 1, 'tight': 5, 'ox-drawn': 1, 'tree-lined': 1, 'brief': 9, 'primeval': 1, 'right': 3, 'dreamlike': 1, 'sandy': 1, 'speckled': 1, 'clear': 10, 'slobber-jowled': 1, 'black-green': 1, 'opposite': 2, 'ordinary': 4, 'smooth-pebbled': 1, 'unsteadfast': 1, 'frozen': 6, 'footsore': 1, 'tangled': 1, 'cardinal': 1, 'marshy': 1, 'graceful': 2, 'slight': 2, 'slim': 5, 'precise': 3, 'tall': 5, 'translucent': 1, 'petrified': 1, 'agile': 2, 'bald': 4, 'inadequate': 2, 'Wound': 1, 'Inappropriate': 1, 'snow-white': 1, 'frizzy': 1, 'Fuzzy': 1, 'lean-muscled': 1, 'Gleaming': 1, 'wiry': 1, 'round': 8, 'trim': 1, 'dandelion': 1, 'indistinguishable': 3, 'accurate': 1, 'instant': 3, 'final': 4, 'dreamy': 2, 'crisp': 2, 'pretend': 1, 'Spinning': 2, 'fanciful': 3, 'rich': 3, 'unmistakable': 1, 'fragile': 1, 'swannish': 1, 'prominent': 1, 'sentimental': 1, 'medical': 5, 'unlovely': 1, 'Swoonish': 1, 'bejeweled': 1, 'Useless': 1, 'foul': 5, 'hind': 1, 'frenzied': 2, 'female': 10, 'carnal': 1, 'previous': 2, 'unnatural': 5, 'hapless': 2, 'popular': 1, 'liveried': 1, 'fortressed': 1, 'stable': 1, 'shy': 5, 'dutiful': 1, 'Much': 1, 'noble': 4, 'Spare': 1, 'high-flown': 1, 'devil-sent': 1, 'fellow': 7, 'intelligible': 1, 'Cassandra-like': 1, 'rare': 2, 'servant': 5, 'bozal': 2, 'opulent': 1, 'lustrous': 1, 'commendable': 1, 'ill-fated': 1, 'loving': 5, 'pure': 2, 'squalid': 1, 'incorruptible': 1, 'phantom': 1, 'roguish': 1, 'British': 2, 'unconquerable': 1, 'fruitful': 2, 'Brown': 1, 'dire': 2, 'goatish': 1, 'Christian': 2, 'prisoner-of-war': 1, 'selfless': 1, 'murderous': 1, 'golden-haired': 1, 'fair-skinned': 1, 'privy': 1, 'sinful': 2, 'important': 1, 'mountainous': 1, 'begotten': 1, 'floating': 1, 'doomed': 1, 'unworthy': 2, 'stiff-necked': 2, 'benighted': 1, 'yawning': 1, 'precipitous': 1, 'Soundless': 1, 'unusual': 4, 'improbable': 1, 'awful': 5, 'outward': 1, 'soulwrenching': 1, 'immobile': 1, 'exhausting': 2, 'calm': 8, 'becalmed': 1, 'tragic': 1, 'dry-mouthed': 1, 'bloated': 1, 'sweet': 13, 'irresistible': 6, 'Wall-eyed': 1, 'Great': 1, 'startling': 2, 'senseless': 1, 'short-lived': 2, 'Rolling': 1, 'vicious': 2, 'infrequent': 1, 'Gentle': 1, 'glorious': 4, 'fickle': 1, 'fit': 5, 'False': 1, 'clear-seeing': 1, 'whirling': 2, 'wary': 1, 'suffocating': 1, 'abundant': 1, 'earnest': 1, 'soul-shriveling': 1, 'full-blown': 3, 'grateful': 6, 'bounteous': 2, 'uninspired': 1, 'heroic': 1, 'enthusiastic': 1, 'fair-haired': 1, 'bespectacled': 1, 'disgruntled': 1, 'Indian': 2, 'distinguishable': 1, 'special': 6, 'dour': 2, 'sallow': 1, 'thin': 5, 'extravagant': 2, 'fanatical': 1, 'spiritual': 2, 'drafty': 1, 'undisciplined': 1, 'itinerant': 1, 'shiftless': 1, 'common': 3, 'untutored': 1, 'back': 10, 'pursed-lip': 1, 'unsavory': 2, 'undiscriminating': 1, 'hypocritical': 1, 'much-needed': 1, 'religious': 3, 'bottom': 2, 'unsupported': 1, 'difficult': 3, 'uncommon': 1, 'dreadful': 1, 'unwelcome': 1, 'susceptible': 1, 'meager': 3, 'alleged': 1, 'docile': 1, 'soundless': 3, 'Large': 3, 'Simple': 1, 'casual': 1, 'Quiet': 1, 'tolerable': 1, 'thundering': 1, 'crooked': 3, 'grappling': 1, 'shaggy': 1, 'winged': 1, 'Beautiful': 2, 'Outraged': 1, 'benevolent': 1, 'African-descended': 1, 'strapping': 1, 'negative': 1, 'equal': 3, 'saintly': 1, 'brightish': 2, 'mulatto': 1, 'possible': 4, 'needy': 1, 'blended': 3, 'heartfelt': 1, 'Steady': 1, 'general': 5, 'surprised': 1, 'welcome': 4, 'Dark': 4, 'blue-gum': 1, 'absent': 2, 'happy': 7, 'Clean': 1, 'wide': 4, 'chilly': 3, 'taloned': 1, 'hideous': 1, 'lank-winged': 1, 'Entertaining': 1, 'earthshaking': 1, 'silly': 6, 'mighty': 2, 'unschooled': 1, 'scaly': 1, 'shrill': 1, 'red-eyed': 1, 'blue-black': 1, 'luxurious': 2, 'peaked': 1, 'craggy': 1, 'arrayed': 1, 'ferocious': 1, 'fantastical': 1, 'shrunken': 2, 'near': 3, 'cavernous': 2, 'stringy-haired': 1, 'accessible': 2, 'Mist-crowned': 1, 'continuous': 1, 'lazy': 1, 'glowing': 2, 'wondrous': 1, 'gaping': 1, 'dank': 1, 'uncountable': 1, 'aware': 5, 'luminous': 1, 'merciful': 4, 'sly': 1, 'forlorn': 1, 'linen-stockinged': 1, 'unstrung': 1, 'Long': 2, 'Frayed': 1, 'dismal': 1, 'tapered': 1, 'weary': 2, 'plump': 3, 'Big': 1, 'unchanging': 2, 'Polished': 1, 'sharp': 5, 'cloven': 1, 'uncontrollable': 1, 'You-all': 1, 'surly': 2, 'prime': 2, 'salty': 2, 'mad': 4, 'giddy': 2, 'blurry': 1, 'anonymous': 1, 'bluish': 2, 'hidden': 2, 'brown': 4, 'supernatural': 2, 'Ole': 1, 'lonely': 4, 'glad': 2, 'steady': 6, 'soothing': 2, 'absolute': 3, 'thousandth': 1, 'Old': 8, 'Different': 2, 'outlandish': 1, 'regular': 1, 'Limited': 1, 'dependent': 1, 'faithful': 3, 'airy': 2, 'positive': 1, 'myriad': 3, 'serious': 3, 'fragrant': 1, 'feverish': 2, 'dignified': 1, 'threshing': 1, 'middle': 2, 'scanty': 1, 'rolled': 1, 'bright-eyed': 1, 'concerned': 1, 'prostrate': 1, 'savage': 1, 'somber': 2, 'expectant': 2, 'hushed': 2, 'gentle': 7, 'unhappy': 4, 'Comforting': 1, 'strict': 1, 'stately': 1, 'Huge': 2, 'Hot': 5, 'suspicious': 1, 'big': 5, 'threatening': 2, 'moist': 2, 'sweaty': 1, 'unable': 2, 'miserable': 3, 'Suspicious': 2, 'unaware': 2, 'ours': 1, 'Slippery': 1, 'crusted': 1, 'unsteady': 1, 'drunk': 1, 'steamy': 1, 'Frozen': 1, 'Precious': 1, 'private': 8, 'urgent': 5, 'restless': 3, 'Rigid': 1, 'hissing': 2, 'ice-cold': 1, 'long-muscled': 1, 'Loud': 2, 'half': 1, 'stringy': 1, 'asleep': 2, 'close-cropped': 1, 'Moon-drenched': 1, 'ripe': 3, 'uncovered': 1, 'in-turning': 1, 'sound': 1, 'whitish': 2, 'pebbly': 1, 'curly': 1, 'sleek': 1, 'smooth': 1, 'wrinkled': 3, 'springy': 1, 'fat': 4, 'shallow': 1, 'Poker': 1, 'secretive': 1, 'sticky': 3, 'rusty': 1, 'uncluttered': 1, 'blank': 2, 'awake': 1, 'Predictable': 1, 'Slight': 1, 'invariant': 1, 'required': 1, 'predictable': 2, 'compact': 2, 'grooved': 1, 'routine': 3, 'worth': 4, 'unbound': 1, 'Same': 1, 'wadded': 1, 'elusive': 1, 'furry': 2, 'Two-legged': 1, 'Afraid': 5, 'extra': 1, 'end-of-day': 1, 'Shaggy': 1, 'lining': 2, 'end-of-fortnight': 1, 'taut': 1, 'relieved': 1, 'mottled': 2, 'inaudible': 1, 'secret': 11, 'scarlet': 1, 'tepid': 1, 'waist-deep': 1, 'squat': 2, 'near-scalding': 1, 'miniature': 2, 'milady': 3, 'grim': 2, 'ankle-deep': 1, 'awkward': 2, 'naive': 1, 'outstretched': 1, 'half-out': 1, 'Youthful': 1, 'Dreamlike': 1, 'unused': 1, 'Sound': 1, 'Pleated': 1, 'ill-fitting': 2, 'smooth-fleshed': 1, 'unlined': 1, 'ashamed': 3, 'invalid': 1, 'brisk': 1, 'Ashamed': 3, 'blunt': 2, 'perfect': 3, 'towering': 1, 'Gigantic': 1, 'gracious': 1, 'top': 4, 'brittle': 1, 'thick-veined': 1, 'big-knuckled': 1, 'particular': 2, 'bony': 1, 'freckled': 1, 'shapeless': 1, 'busy': 3, 'frequent': 1, 'negligible': 1, 'relentless': 3, 'howling': 1, 'sufficient': 1, 'Sudden': 1, 'Cunning': 1, 'Hush': 2, 'pretty': 2, 'Few': 2, 'polite': 1, 'slender': 1, 'total': 2, 'inaccessible': 1, 'dark-rimmed': 1, 'milk-white': 1, 'sane': 2, 'sovereign': 1, 'Original': 1, 'youthful': 1, 'accustomed': 2, 'empty-handed': 1, 'impersonal': 1, 'Hungry': 1, 'Empty-headed': 1, 'trippingly': 1, 'eager': 2, 'dizzying': 1, 'naval': 1, 'baited': 1, 'odious': 1, 'unsuitable': 1, 'lain': 1, 'frivolous': 1, 'intellectual': 1, 'fair': 5, 'onerous': 1, 'spotted': 1, 'ironical': 2, 'considerable': 2, 'renowned': 1, 'formal': 2, 'commemorative': 1, 'famous': 1, 'ringed': 1, 'anti-slavery': 1, 'original': 2, 'sooty': 1, 'favorite': 2, 'iron-clad': 1, 'premeditated': 1, 'Rare': 1, 'kind': 1, 'exempt': 1, 'ungrateful': 1, 'greedy': 4, 'unfair': 1, 'crusty': 1, 'indestructible': 1, 'tireless': 3, 'triple': 1, 'long-sleeved': 1, 'live': 4, 'monotonous': 1, 'sweat-stained': 1, 'scrawny': 3, 'lean': 2, 'middling': 1, 'thinnish': 1, 'Ashen': 1, 'delighted': 1, 'motionless': 3, 'captive': 1, 'Overnight': 1, 'English': 3, 'seminary': 2, 'sawdusted': 1, 'oppressive': 1, 'pink': 2, 'frightening': 2, 'gory': 2, 'heavenly': 1, 'comprehensive': 1, 'rudimentary': 1, 'cheeky': 1, 'mixed': 2, 'offal': 1, 'innumerable': 1, 'grudging': 1, 'handsome': 5, 'local': 2, 'close-mouthed': 1, 'double': 5, 'Peculiar': 1, 'bereft': 2, 'grieving': 2, 'inconsolable': 1, 'unsatisfactory': 1, 'inordinate': 1, 'miscellaneous': 1, 'powerless': 2, 'wainscoted': 1, 'unwholesome': 1, 'disreputable': 1, 'Caught': 1, 'backhanded': 1, 'gruesome': 1, 'Medical': 1, 'decent': 2, 'vile': 1, 'surgical': 1, 'unabated': 1, 'blasphemous': 1, 'underground': 1, 'ruthless': 1, 'villainous': 1, 'ribald': 1, 'profitable': 1, 'embarrassing': 1, 'depraved': 1, 'woolly': 1, 'well-intentioned': 1, 'ragged': 1, 'illegal': 1, 'unique': 2, 'rainy': 1, 'fashionable': 2, 'uncharted': 2, 'satin': 1, 'necessary': 3, 'unlit': 2, 'padded': 1, 'intrepid': 1, 'humiliating': 1, 'mutual': 2, 'canopied': 1, 'lugubrious': 1, 'dim': 1, 'Single': 1, 'good-sized': 1, 'further': 5, 'diplomatic': 1, 'coarse': 1, 'demure': 1, 'decorous': 1, 'candy-striped': 1, 'bizarre': 1, 'male': 1, 'giant-bellied': 1, 'tallish': 1, 'voluminous': 2, 'gruff': 1, 'Amazonian': 1, 'identical': 1, 'costumed': 1, 'Anglo-Saxon': 1, 'purple': 2, 'overpowering': 1, 'incontestable': 1, 'folding': 1, 'tight-lipped': 1, 'French': 1, 'excess': 1, 'matronly': 1, 'steepled': 1, 'audible': 2, 'unlikely': 1, 'ridiculous': 1, 'piteous': 1, 'conventional': 1, 'interesting': 2, 'obscene': 2, 'partial': 1, 'volatile': 1, 'bulbous-headed': 1, 'coquettish': 1, 'disciplined': 2, 'unclothed': 1, 'rattiing': 1, 'messy': 1, 'meticulous': 1, 'natural': 5, 'undivided': 1, 'smockish': 1, 'Damned': 1, 'troupe': 1, 'adhering': 1, 'flounced': 1, 'beribboned': 1, 'pleated': 1, 'protracted': 1, 'foolish': 2, 'drab': 1, 'inevitable': 2, 'metallic': 1, 'comely': 2, 'cramped': 1, 'agreed-upon': 1, 'Small': 1, 'Ready': 1, 'undistinguished': 1, 'Egyptian': 1, 'ugly': 2, 'hairy': 2, 'mean-spirited': 1, 'skewered': 1, 'naughty': 1, 'lovely': 3, 'grotesque': 1, 'elaborate': 1, 'gorgeous': 1, 'thicker-skinned': 1, 'circumstantial': 1, 'believable': 1, 'eternal': 1, 'grizzled': 2, 'consummate': 1, 'rainbowed': 2, 'monkish': 1, 'crucial': 1, 'bent': 1, 'present': 6, 'transient': 1, 'unsatisfied': 1, 'suitable': 1, 'Bloody': 2, 'colorful': 2, 'everchanging': 1, 'scalding': 1, 'Wonderful': 1, 'low-lying': 1, 'saturating': 1, 'muddy': 1, 'thirsty': 1, 'Fertile': 1, 'scorching': 1, 'drizzling': 1, 'correct': 2, 'safe': 3, 'crushed': 1, 'rolling': 1, 'life-giving': 2, 'gigantic': 2, 'Crumbling': 1, 'marvelous': 2, 'knowledgeable': 1, 'low-ceilinged': 1, 'cavelike': 1, 'chosen': 1, 'subterranean': 1, 'attractive': 1, 'full-bellied': 1, 'unprincipled': 1, 'lifelike': 1, 'palpable': 1, 'ideal': 1, 'pock-beaked': 1, 'distinguished': 2, 'unquenchable': 1, 'enchanted': 1, 'successful': 1, 'sparrow-shouldered': 1, 'flawless': 1, 'especial': 1, 'extraordinary': 1, 'keen': 1, 'valuable': 1, 'convincing': 1, 'loyal': 2, 'fleece-gated': 1, 'professional': 1, 'wrong': 9, 'nervous': 1, 'drooping': 1, 'lewd': 1, 'sensible': 1, 'Stealthy': 1, 'red-haired': 2, 'unsure': 1, 'dawnish': 1, 'musky-scented': 1, 'abed': 1, 'forceful': 1, 'unforgiving': 2, 'south': 1, 'thick-nippled': 1, 'earthen': 1, 'Worn': 1, 'frying': 1, 'Subtle': 1, 'Many-chambered': 1, 'unreal': 1, 'muscular': 1, 'whorled': 1, 'sinewy': 1, 'firm': 1, 'pearly': 1, 'raked': 1, 'unstinting': 1, 'knobby': 1, 'immaterial': 1, 'flame-haired': 1, 'harmonious': 2, 'tilted': 1, 'Loving': 1, 'fiery-haired': 1, 'Bald': 1, 'alien': 1, 'future': 1, 'ceaseless': 1, 'piss': 1, 'wounded': 4, 'tighdy': 1, 'plentiful': 2, 'acrid': 1, 'sultry': 1, 'starry': 1, 'unbroken': 2, 'brotherly': 1, 'boundless': 2, 'monstrous': 1, 'dumbfounded': 1, 'Pumpkin-colored': 1, 'Weighty': 1, 'front': 1, 'scheming': 1, 'stubby': 1, 'imminent': 1, 'shameful': 2, 'seeming': 1, 'rampant': 1, 'overarching': 1, 'active': 1, 'unhallowed': 1, 'uncertain': 1, 'unpaid-for': 1, 'rear': 1, 'resounding': 1, 'soulless': 1, 'vacant': 2, 'promised': 2, 'mincing': 1, 'frightened': 2, 'yearn': 1, 'sour': 1, 'pursed': 1, 'half-serious': 1, 'perplexed': 1, 'ponderous': 1, 'stunned': 1, 'tortured': 2, 'furious': 1, 'tropical': 1, 'sublime': 1, 'hot-air': 1, 'exciting': 1, 'Unwieldy': 1, 'aerial': 1, 'subservient': 1, 'mere': 3, 'ingenious': 1, 'scientific': 1, 'coming': 1, 'undreamed': 1, 'civic': 1, 'divine': 2, 'eastern': 1, 'sisterly': 1, 'contrived': 1, 'fitting': 1, 'mine': 5, 'doting': 1, 'curved': 1, 'flaming': 1, 'turbaned': 1, 'angry': 2, 'several': 1, 'unprotesting': 1, 'striking': 1, 'philanthropic': 1, 'paneled': 1, 'watery': 1, 'square': 1, 'virtuous': 1, 'underdressed': 1, 'gilded': 1, 'respectable': 1, 'imperious': 1, 'leering': 1, 'distorted': 2, 'aristocratic': 1, 'enlarged': 1, 'green-striped': 1, 'measured': 1, 'overwhelming': 1, 'oval-shaped': 1, 'Polite': 1, 'speechless': 1, 'rakish': 1, 'Impeccable': 1, 'respectful': 1, 'discomfited': 1, 'impatient': 1, 'forthcoming': 1, 'principled': 1, 'brash': 1, 'brilliant': 1, 'port': 1, 'rambling': 2, 'formidable': 1, 'unadulterated': 1, 'First': 1, 'noiseless': 1, 'rude': 1, 'Strange': 1, 'piratous': 1, 'surprising': 2, 'topsy-turvy': 1, 'crowded': 1, 'ill': 2, 'steadfast': 1, 'soul-wrenching': 1, 'delightful': 1, 'superficial': 1, 'ingrained': 1, 'unChristian': 1, 'exacting': 1, 'eloquent': 1, 'awash': 2, 'profound': 2, 'scurrilous': 1, 'undeclared': 1, 'responsible': 1, 'reasonable': 1, 'forthright': 1, 'clumsy': 1, 'acrimonious': 1, 'gradual': 1, 'unwavering': 1, 'extensive': 1, 'impervious': 1, 'tantamount': 1, 'flourishing': 1, 'noxious': 1, 'patient': 2, 'due': 2, 'intolerable': 1, 'brooding': 1, 'paltry': 2, 'prickly': 2, 'snappish': 1, 'good-natured': 1, 'long-time': 1, 'confident': 1, 'malicious': 1, 'pained': 1, 'wicked': 2, 'spritely': 1, 'up-tempo': 1, 'disappointed': 2, 'silken': 1, 'Sweat-soaked': 1, 'cultivatable': 1, 'lame': 1, 'raspy': 1, 'wide-eyed': 1, 'peeved': 1, 'pitiless': 1, 'middle-of-night': 1, 'smoky': 1, 'shadowy': 1, 'crude': 1, 'weathered': 2, 'wanton': 1, 'little-girl': 1, 'shared': 1, 'solemn': 1, 'manly': 1, 'oh-so-formal': 1, 'Next': 1, 'star-crossed': 1, 'initial': 1, 'loathsome': 1, 'scandalous': 1, 'prurient': 1, 'make-believe': 2, 'modern': 1, 'notable': 1, 'notorious': 1, 'immoral': 1, 'idle': 1, 'feminine': 1, 'Ariel-like': 1, 'labor-saving': 1, 'melodious': 1, 'literary': 1, 'touching': 1, 'lovable': 1, 'appropriate': 1, 'wise': 1, 'constant': 1, 'ravenous': 1, 'wearied': 1, 'abused': 1, 'tedious': 1, 'observant': 1, 'unfortunate': 1, 'Little-bitty': 1, 'compassionate': 1, 'unto': 1, 'inescapable': 1, 'sickly': 1, 'nice': 1, 'Deponent': 2, 'put': 1, 'magic': 3, 'disturbing': 1, 'creaking': 1, 'spotless': 1, 'hush': 3, 'mock': 1, 'treasured': 1, 'indulgent': 1, 'orphan': 1, 'thank-yous': 1, 'outrageous': 1, 'sumptuous': 1, 'painless': 1, 'endowed': 1, 'uncharitable': 1, 'logical': 1, 'accountable': 2, 'devoted': 1, 'rational': 1, 'unmarked': 1, 'ungentle': 1, 'unpenned': 1, 'stub-legged': 1, 'upended': 1, 'ash': 1, 'twisted': 1, 'hateful': 1, 'sweet-smelling': 1, 'searing': 1, 'crackling': 1, 'intoxicating': 1, 'pitch-black': 1, 'touchable': 1, 'unholy': 1, 'unsaid': 2, 'untouchable': 1, 'antique': 1, 'stillborn': 1, 'unimagined': 1, 'blighted': 1, 'unborn': 1, 'tainted': 1, 'wordless': 1, 'Sweet': 1, 'walnut-paneled': 1, 'cupboard-sized': 1, 'vain': 1, 'animated': 1, 'parquet-floored': 1, 'mysterious': 1, 'perpetual': 1, 'destructive': 1, 'wide-wide': 1, 'shameless': 1, 'choked-off': 1, 'perceptible': 1, 'eely': 1, 'windowless': 1, 'trapped': 1, 'magnificent': 1, 'windless': 1, 'large-souled': 1, 'sta-sta-starting': 1, 'd-d-d-day': 1, 'untold': 1, 'unaccounted': 1, 'dismayed': 1, 'unshared': 1, 'engaging': 1, 'intriguing': 1, 'Silent': 1, 'alone': 1, 'tense': 1, 'unpublished': 1, 'inexplicable': 1, 'off-the-wall': 1, 'Factual': 1, 'missionary': 1, 'Found': 1, 'spooky': 1, 'verdant': 1, 'Impossible': 1, 'Outrageous': 1, 'phenomenal': 1, 'fifty-some': 1, 'landless': 1, 'wholesale': 1, 'dispirited': 1}
Brown glass windows : a novel /@2002
{'Brown': 7, 'novel': 5, 'acid-free': 1, '5br': 1, 'American': 4, 'many': 36, 'Book/Transcontinental': 1, 'major': 8, 'grateful': 2, 'African': 9, 'funeral': 7, 'Cultural': 1, 'Western': 2, 'historical': 1, 'valuable': 1, 'much': 37, "fillmo'e": 1, 'early': 9, 'brown': 17, 'true': 7, 'sincere': 2, 'Historical': 1, 'important': 7, 'white': 91, 'clipping': 1, 'long': 74, 'cold': 7, 'unseen': 2, 'past': 7, 'gingerbread': 1, 'young': 34, 'short': 17, 'proper': 5, 'own': 42, 'warm': 7, 'full': 61, 'broke-off': 1, 'low': 8, 'wispy': 1, 'same': 30, 'concerned': 4, 'golden': 4, 'frail': 4, 'invisible': 8, 'dead': 23, 'old': 58, 'nice': 10, 'happy': 15, 'little': 70, 'whole': 31, 'freckle-faced': 1, 'busy': 8, 'pant': 1, 'other': 81, 'real': 58, 'different': 26, 'flat': 14, 'day-to-day': 1, 'crocheted': 1, 'ready': 43, 'quiet': 17, 'such': 1, 'soft': 17, 'new': 16, 'few': 56, 'back': 11, 'thin': 16, 'free': 12, 'pearl-studded': 1, 'funny': 6, 'wrong': 24, 'bustling': 1, 'angry': 4, 'safe': 4, 'eighth': 1, 'foolish': 5, 'shiny': 3, 'outer': 2, 'clear': 16, 'ripe': 1, 'certain': 3, 'last': 57, 'second': 5, 'large': 10, 'Angolan': 1, 'damp': 5, 'dense': 1, 'wary': 1, 'Portuguese': 1, 'French': 1, 'hard': 22, 'sure': 70, 'wrinkled': 1, 'uncovered': 1, 'alive': 14, 'crazy': 20, 'crumpled': 1, 'pretend': 2, 'sudden': 2, 'amazing': 2, 'beautiful': 8, 'skinny': 2, 'bold': 3, 'sharp': 6, 'dark': 17, 'thick': 23, 'black': 47, 'usual': 4, 'tall': 11, 'gangly': 1, 'fast': 8, 'straight': 7, 'light': 29, 'fitting': 1, 'high': 17, 'impressed': 2, 'frosted': 1, 'knobby': 1, 'rude': 6, 'misshaped': 1, 'gray': 10, 'strange': 4, 'strangest': 2, 'loony': 3, 'entire': 2, 'simple': 3, 'pure': 3, 'adequate': 1, 'incoming': 1, 'middle': 3, 'sour': 3, 'bulky': 1, 'dry': 13, 'wide': 7, 'just-washed': 1, 'glad': 10, 'left': 7, 'rear': 1, 'next': 52, 'dented': 1, 'close': 16, 'card-carrying': 1, 'good': 55, 'lucky': 3, 'goddamn': 5, 'Sure': 3, 'clean': 17, 'upper-crust': 1, 'easy': 16, 'alright': 18, 'big': 13, 'mighty': 2, 'thick-tipped': 1, 'bony': 2, 'bitter': 4, 'empty': 11, 'frightened': 1, 'reasonable': 1, 'small': 24, 'magic': 3, 'grave': 1, 'peaceful': 6, 'next-door': 1, 'absurd': 2, 'hot': 14, 'ridiculous': 2, 'due': 2, 'comfortable': 7, 'far': 4, 'cool': 12, 'scrawny': 2, 'wooden': 1, 'pink': 1, 'gloved': 3, 'elderly': 1, 'Damn': 5, 'pedestrian': 1, 'gentle': 4, 'two-legged': 1, 'tetched': 1, 'haired': 1, 'improper': 3, 'neat': 4, 'smooth': 9, 'front': 14, 'loose': 9, 'dandy': 1, 'popular': 1, 'married': 3, 'sheep-dogged': 1, 'ancient': 1, 'quick': 7, 'lean': 1, 'top': 14, 'unladylike': 1, 'pregnant': 4, 'loud': 17, 'balmy': 1, 'open': 18, 'green': 13, 'round': 5, 'lewd': 1, 'tawdry': 1, 'take-another-step': 1, 'right': 36, 'wise': 1, 'able': 8, 'wild': 4, 'crooked': 3, 'bleached': 1, 'excited': 1, 'swollen': 6, 'red': 18, 'interested': 2, 'tired': 10, 'fine': 14, 'sweet': 7, 'afraid': 17, 'bad': 12, 'okay': 10, 'distant': 2, 'rid': 1, 'loving': 2, 'hush': 1, 'depraved': 1, 'dispirited': 1, 'sick': 9, 'ugly': 8, 'open-mouthed': 1, 'Old': 1, 'holy': 1, 'grand': 2, 'sour-mash': 1, 'deep': 17, 'sugar-coated': 1, 'narrow': 3, 'frequent': 1, 'only': 16, 'Spit-and-polish': 1, 'musical': 1, 'fresh': 7, 'baggy': 2, 'bulbous': 1, 'heavy-handed': 1, 'bright': 10, 'kinda': 2, 'loud-assed': 1, 'obvious': 1, 'heavy': 11, 'damn': 11, 'Chinese': 4, 'Nice': 2, 'look-at-me': 1, 'collard': 1, 'vacant': 1, 'recycled': 1, 'fake': 1, 'honest': 1, 'first': 43, 'half-baked': 1, 'nearby': 1, 'mad': 3, 'likely': 1, 'one-sided': 1, 'Last': 3, 'rough': 2, 'offa': 1, 'watery': 2, 'Next': 1, 'rainy': 1, 'daily': 1, 'talented': 2, 'private': 2, 'life-cycle': 1, 'juvenile': 1, 'submerged': 1, 'public': 5, 'colored-pencil': 1, 'comforting': 1, 'unsigned': 1, 'so-so': 1, 'great': 1, 'like': 1, 'wonderful': 2, 'modern': 1, 'yellow': 8, 'pale': 3, 'sable': 1, 'smooth-skinned': 1, 'live': 1, 'jammin': 1, 'uptight': 1, 'main': 1, 'rigid': 1, 'steep': 5, 'one-word': 1, 'Real': 3, 'sorry': 19, 'half-bad': 1, 'smart': 1, 'regular': 6, 'general': 2, 'mathematical': 1, 'famous': 2, 'arched': 1, 'sultry': 1, 'ours': 4, 'leonardpulled': 1, 'brown-red': 1, 'tight': 6, 'fierce': 1, 'brandy-filled': 1, 'iron-rimmed': 1, 'double': 1, 'hand-made': 1, 'late': 7, 'impossible': 2, 'Good': 2, 'relentless': 1, 'hard-to-get-along-with': 1, 'Dawa': 20, 'chivalrous': 1, 'available': 2, 'finest-looking': 1, 'charming': 1, 'growling': 1, 'convinced': 2, 'late-today': 1, 'lonely': 1, 'venetian': 1, 'up-to-date': 1, 'blind': 3, 'full-length': 1, 'overpriced': 1, 'Jamaican': 1, 'steady': 5, 'successful': 1, 'sanitary': 1, 'headless': 1, 'and-orange-juice': 1, 'uncomfortable': 1, 'perfect': 3, 'block-long': 1, 'Victorian': 1, 'trim': 2, 'twenty-fifth': 1, 'hoarse': 1, 'deaf': 3, 'secret': 1, 'flowered': 2, 'clasped': 1, 'Happy': 1, 'Jamal': 14, 'later': 1, 'silent': 3, 'favorite': 2, 'moon-faced': 1, 'funny-style': 1, 'Black': 9, 'flattened-out': 1, 'military': 1, 'welcome-home': 1, 'squat': 1, 'whipping': 1, 'drunk': 1, 'special': 8, 'mean': 5, 'bloody': 1, 'noble': 2, 'tough': 2, 'tearless': 1, 'strong': 10, 'blood-stained': 2, 'electric': 1, 'packed': 1, 'three-story': 1, 'weak': 4, 'third-floor': 1, 'impotent': 1, 'Few': 1, 'rounded': 1, 'plaintive': 1, 'single': 3, 'folding': 3, 'rush-hour': 1, 'heeled': 1, 'henna-tipped': 1, 'latent': 1, 'glowing': 2, 'serene': 1, 'psychic': 1, 'previous': 1, 'heebie-jeebie': 1, 'keen': 1, 'automatic': 1, 'Northern': 1, 'rodent': 1, 'police-car': 1, 'semi-automatic': 1, 'full-lipped': 1, 'broad': 3, 'Small': 1, 'intense': 1, 'fleshy': 1, 'acute': 1, 'vulnerable': 1, 'garish': 1, 'blue': 7, 'fog-filled': 1, 'grassy': 2, 'sunny': 1, 'white-tipped': 1, 'dandelion': 1, 'rare': 2, 'enough': 7, 'fourth': 3, 'particular': 3, 'twin': 1, 'undersized': 1, 'fond': 1, 'red-faced': 1, 'Red': 3, 'raw': 2, 'fresh-baked': 1, 'sweaty': 1, 'foreign': 1, 'first-grade': 1, 'English': 1, 'greasy': 2, 'spicy': 1, 'Korean': 4, 'worth': 1, 'extra': 1, 'hand-me-down': 1, 'sad': 6, 'insistent': 1, 'flat-faced': 1, 'ticky-tacky': 1, 'stupid': 3, 'same-looking': 1, 'half-dressed': 1, 'stern': 1, 'starched': 1, 'chilly': 1, 'see-and-won': 1, 'tantamount': 1, 't-be-seen': 1, 'murky': 1, 'mistaken': 1, 'exasperated': 1, 'calm': 9, 'anything-you-want': 1, 'all-night-long': 1, 'boarded-up': 1, 'silly': 3, 'outdoor': 1, 'sheltered': 1, 'noisy': 2, 'puny': 1, 'wrenching': 2, 'staggering': 1, 'necessary': 2, 'law-abiding': 1, 'ass-whipping': 1, 'First': 2, 'scared': 4, 'mustached': 1, 'Large': 1, 'curtained': 1, 'confident': 1, 'unfair': 1, 'unaware': 1, 'two-inch': 1, 'sturdy': 2, 'windy': 2, 'gigantic': 1, 'shocked': 3, 'respectful-like': 1, 'furnished': 1, 'built-in': 1, 'pressed-down': 1, 'common': 5, 'daytime': 1, 'natural': 1, 'tea-filled': 1, 'sedate': 2, 'restless': 3, 'oversized': 4, 'hell-fire': 1, 'slow': 7, 'cordial': 1, 'undeclared': 1, 'stillwater-run-deep': 1, 'personal': 2, 'locked-up': 1, 'solid': 2, 'part-time': 1, 'off-work': 1, 'experienced': 1, 'third': 3, 'closed': 1, 'limp': 4, 'held': 1, 'expressive': 1, 'slim': 2, 'full-faced': 1, 'Asian': 1, 'stiff-tongued': 1, 'fruit-and-vegetable': 1, 'five-year-old': 1, 'stateside': 1, 'former': 2, 'all-night': 1, 'careful': 3, 'else': 1, 'searing': 1, 'blank': 1, 'ragged': 1, 'vicious': 1, 'shooting': 1, 'eerie': 1, 'friendly': 3, 'thirsty': 1, 'Burnt': 1, 'selfish': 1, 'haphazard': 1, 'dry-eyed': 4, 'sunken': 1, 'straight-backed': 2, 'effective': 1, 'upset': 1, 'sensible': 1, 'swaggering': 1, 'Full': 1, 'fragile': 1, 'stiff': 5, 'made-up': 2, 'blind-sided': 1, 'odd': 1, 'powdered': 1, 'presentable': 1, 'docile': 1, 'correct': 1, 'dumb': 3, 'polite': 1, 'wicked': 2, 'stale': 3, 'beige': 1, 'wet': 2, 'creamy': 1, 'shimmering': 2, 'bare': 2, 'surprised': 1, 'hungry': 1, 'thoughtful': 1, 'Bright': 1, 'wavy': 1, 'Funeral': 1, 'smoke-filled': 1, 'Civil': 1, 'recent': 1, 'fingers-in-mouth': 1, 'mean-tempered': 1, 'gaunt': 2, 'mid-dive': 1, 'various': 1, 'nine-yearold': 1, 'senior': 1, 'annual': 1, 'one-year-old': 1, 'wide-skirted': 1, 'direct': 1, 'wayward': 1, 'forthcoming': 1, 'formal': 1, 'lanky': 1, 'unerring': 1, 'shrunken': 1, 'Different': 1, 'inappropriate': 1, 'dangerous': 1, 'professional': 1, 'proud': 1, 'cloaked': 1, "M'dear": 6, 'eternal': 2, 'final': 3, 'sixteen-year-old': 1, 'brimming': 1, 'Hush': 2, 'wet-faced': 1, 'daring': 2, 'troublesome': 1, 'grim': 1, 'audible': 1, 'clear-voiced': 1, 'indefinite': 1, 'understandable': 2, 'brief': 1, 'brain-dead': 1, 'clip-top': 1, 'four-bedroom': 1, 'uncrossed': 1, 'Christian': 2, 'eyed': 1, 'pre-cise': 1, 't-know-it-or-can': 1, 'lovely': 1, 'daddy': 1, 'dapper': 1, 'ruthless': 1, 'criminal': 1, 'frozen': 1, 't-there-to-know-or-be-found': 1, 'it-ain': 1, 'gray-edged': 1, 'stiff-legged': 1, 'inevitable': 1, 'outside': 1, 'almost-finished': 1, 'relieved': 1, 'two-handed': 1, 'pointed': 1, 'clear-eyed': 1, 'sarcastic': 1, 'weak-enough': 1, 'unfinished': 1, 'overstuffed': 1, 'eldest': 1, 'hung': 1, 'Great': 1, 'Indian': 1, 'airy': 1, 'salty': 1, 'unzipped': 1, 'steamy': 1, 'broken': 2, 'purple': 3, 'familiar': 1, 'worried': 2, 'musty': 1, 'stringy': 1, 'moldy': 1, 'phantom': 1, 'hollow': 1, 'feeble': 1, 'frowned': 1, 'slight': 1, 'raunchy': 1, 'dreamless': 1, 'persistent': 2, 'plenty': 2, 'actual': 1, 'impatient': 1, 'sandy': 2, 'Hard-headed': 1, 'present': 4, 'upper': 2, 'Young': 1, 'welcome': 1, 'wanted': 1, 'oval': 1, 'complimentary': 1, 'faint': 1, 'wide-legged': 1, 'fair': 1, 'rotten': 1, 'corrupt': 1, 'clammy': 1, 'heavy-footed': 2, 'winded': 1, 'shipshape': 1, 'everything-in-order': 1, 'uneventful': 1, 'fastidious': 1, 'permanent': 1, 'Bout': 1, 'cynical': 1, 'smoky': 1, 'north': 1, 'moist': 1, 'hotel-room': 1, 'crisp': 1, 'Confederate': 1, 'silver-gray': 1, 'tiny': 2, 'New': 1, 'unofficial': 1, 'exclamation': 1, 'regimented': 1, 'one-half': 1, 'half-shut': 1, 'national': 1, 'broke-down': 1, 'Haitian': 1, 'pass-through': 2, 'great-great-grandfather': 1, 'accented': 1, 'Sorry': 1, 'unlikely': 1, 'aware': 1, 'Stupid': 1, 'millionaire': 1, 'thirteen-yearold': 1, 'repinning': 1, 'unpinning': 1, 'opening': 1, 'sweeping': 2, 'colorful': 1, 'loping': 1, 'sixth': 1, 'joint': 1, 'poor': 1, 'translucent': 1, 'Sniveling': 1, 'dim': 1, 'lonesome': 1, 'partial': 1, 'god-awful': 1, 'ignorant': 1, 'gray-haired': 1, 'sandy-haired': 1, 'round-faced': 1, 'deep-toned': 1, 'Cute': 1, 'spiked': 1, 'polished': 1, 'untied': 1, 'mismatched': 1, 'splashing': 1, 'shallow': 1, 'hellified': 1, 'taut': 1, 'hard-headed': 1, 'inside': 1, 'unkind': 1, 'willing': 1, 'numerous': 1, 'two-poet': 1, 'Tax-deductible': 1, 'literary': 1, 'rural': 1, 'human': 1, 'aesthetic': 1, 'diverse': 1, 'contemporary': 2, 'non-profit': 2, 'social': 2, 'inner-city': 1, 'unheard': 1, 'profit-driven': 1, 'MAJOR': 1, 'Vietnamese': 1, 'underserved': 1, 'possible': 1, 'intercultural': 1, 'stunning': 1, 'spiritual': 1, 'jagged-edged': 1, 'African-American': 1, 'gritty': 1, 'equal': 1, 'mystical': 1, 'powerful': 1, 'sticky': 1, 'magical-realist': 1, 'several': 1, 'modern-day': 1}
More like wrestling : a novel /@2003
{'well-known': 1, 'real': 74, 'coincidental': 1, 'dead': 42, 'fictional': 2, 'electronic': 1, 'few': 57, 'novel': 1, 'actual': 5, 'mechanical': 1, 'shiny': 11, 'relative': 1, 'lemon-glass': 1, 'random': 4, 'righteous': 3, 'opposite': 3, 'modern': 1, 'fifty-cent': 1, 'pacific': 1, 'gray': 29, 'cool': 27, 'sweaty': 6, 'fern-cloaked': 1, 'slow-motion': 1, 'Victorian': 1, 'straight': 6, 'liberal': 1, 'ugly': 4, 'bubbly': 1, 'wrong': 21, 'grimy': 3, 'bright': 18, 'sticky-floored': 1, 'second-rate': 1, 'small': 45, 'fat': 9, 'long': 72, 'cold': 26, 'snug': 1, 'meaty': 3, 'Close': 1, 'tall': 14, 'new': 72, 'yellow': 26, 'back': 1, 'brown': 45, 'first': 36, 'two-year': 1, 'natural': 10, 'fake': 15, 'dry': 20, 'childless': 1, 'laneless': 1, 'park-lined': 1, 'big': 94, 'overworked': 1, 'local': 2, 'smart': 13, 'old': 48, 'Black': 3, 'winterless': 1, 'last': 42, 'green': 35, 'apt': 2, 'enough': 22, 'other': 139, 'clannish': 1, 'right': 57, 'free': 23, 'sure': 25, 'two-bedroom': 3, 'good': 92, 'ceramic': 5, 'happy': 71, 'next': 52, 'wooden': 11, 'fine': 41, 'welcome': 2, 'high': 43, 'brilliant': 5, 'Chinese': 5, 'young': 16, 'purple': 6, 'serene': 4, 'tiny': 19, 'blue': 28, 'front': 24, 'own': 71, 'human': 2, 'obvious': 2, 'defiant': 1, 'social': 3, 'thick': 17, 'black': 70, 'kiddy': 1, 'much': 46, 'naval': 1, 'unhealthy': 2, 'dated': 1, 'hot': 30, 'close': 7, 'bossy': 1, 'white': 90, 'Next': 6, 'identical': 2, 'perfecdy': 6, 'hard': 35, 'flat': 17, 'loose': 11, 'green-smelling': 1, 'looped-together': 1, 'short': 35, 'outside': 8, 'tilted': 4, 'striped': 2, 'Want': 1, 'Indian-style': 1, 'dark': 20, 'sour': 5, 'dusty': 7, 'deep': 17, 'bullet-sized': 1, 'infrequent': 1, 'technical': 1, 'able': 11, 'broad': 6, 'Complicated': 1, 'white-brick': 1, 'elastic': 4, 'one-story': 2, 'grown': 7, 'tight': 21, 'pronounced': 1, 'electric': 10, 'huge': 19, 'odd': 6, 'perfumed': 3, 'Catholic': 2, 'invisible': 2, 'fuzzy': 3, 'crazy': 23, 'second': 42, 'white-flowered': 1, 'wayward': 1, 'hoselike': 1, 'heavy': 19, 'hazy': 4, 'swollen': 3, 'fussy': 1, 'whole': 36, 'round': 4, 'worthwhile': 1, 'Solomon-from-the-Bible': 1, 'many': 23, 'pretend': 4, 'entertaining': 1, 'highball': 2, 'Yellow': 4, 'serial': 2, 'Easy-Bake': 2, 'Red': 1, 'perfect': 9, 'Nannah': 4, 'conspiratorial': 1, 'mosdy': 5, 'eyelet': 1, 'blind': 3, 'creamed': 1, 'endless': 4, 'frightening': 1, 'constant': 2, 'neat': 9, 'part-time': 7, 'sky-dyed': 1, 'different': 40, 'ballet': 1, 'clear': 22, 'unpredictable': 2, 'same': 60, 'complete': 5, 'bv': 1, 'dizzy': 4, 'half-empty': 1, 'active': 2, 'only': 28, 'silent': 6, 'fancy': 1, 'sacred': 1, 'people-filled': 1, 'red-roofed': 1, 'low': 20, 'four-lane': 1, 'hennaed': 1, 'Olive': 1, 'friendless': 1, 'ninth-grade': 2, 'slim': 3, 'okay': 12, 'Holy': 1, 'seventh': 3, 'little': 8, 'Happy': 1, 'important': 3, 'Warm': 4, 'school-sanctioned': 1, 'knotty': 1, 'alert': 1, 'crowded': 4, 'fenced-in': 1, 'needless': 2, 'fellow': 1, 'windless': 1, 'Stupid': 4, 'junior-high-school': 2, 'rough': 6, 'ninth': 3, 'yellowy': 1, 'instandy': 2, 'nine-year-old': 1, 'slow': 12, 'normal': 21, 'bulbous': 1, 'Oblivious': 1, 'scarlet-brown': 1, 'quiet': 24, 'indistinguishable': 1, 'particular': 3, 'pure': 5, 'soft': 22, 'stiff': 8, 'rambling': 1, 'rare': 4, 'Dizzy': 1, 'elitist': 1, 'twelve-year-old': 1, 'thorough': 2, 'motionless': 3, 'stupid': 27, 'creased': 1, 'nearby': 5, 'scared': 13, 'late': 20, 'bottom': 12, 'weak': 22, 'wary': 1, 'bad': 39, 'safe': 7, 'pulsed': 1, 'bushy-haired': 1, 'dollar-sized': 1, 'tropical': 4, 'wire-rimmed': 1, 'raspy': 1, 'gaunt': 2, 'regular': 22, 'orange': 11, 'true': 25, 'finicky': 2, 'sorry': 23, 'wide': 19, 'skeletal': 1, 'Plaid-shirted': 1, 'rainbow-finned': 1, 'bald': 2, 'gnarled': 1, 'mine': 3, 'lucky': 11, 'simulated': 1, 'Tall': 2, 'shrill': 2, 'volatile': 1, 'open': 31, 'confused': 1, 'cute': 16, 'Good': 5, 'upper': 10, 'dumb': 3, 'goddamn': 7, 'we7': 1, 'numbing': 1, 'worried': 5, 'Half-dragged': 1, 'drunk': 6, 'silly': 8, 'urgent': 1, 'hysterical': 2, 'Noisy': 1, 'tangled': 1, 'possible': 7, 'one-piece': 1, 'giant': 8, 'Old': 2, 'careful': 1, 'Ungreased': 1, 'loud': 20, 'clean': 15, 'haphazard': 1, 'daytime': 2, 'body-slammed': 1, 'thin': 17, 'red': 37, 'grateful': 4, 'glad': 25, 'necessary': 2, 'skinny': 4, 'empty': 13, 'pregnant': 11, 'childish': 1, 'proud': 11, 'double': 4, 'indignant': 2, 'adult': 7, 'bloated': 2, 'sick': 32, 'weird': 6, 'Short': 1, 'too-big': 1, 'vacant': 1, 'surprised': 7, 'ragged': 6, 'greenish': 2, 'top': 9, 'Easter-egg': 1, 'iffy': 2, 'cheap': 2, 'cut-up': 1, 'junior': 2, 'suave': 1, 'muscley': 1, 'baked': 1, 'weeklong': 1, 'French': 4, 'chilly': 5, 'suspicious': 1, 'oval': 3, 'Fundamental': 1, 'yellow-walled': 1, 'visible': 4, 'left': 6, 'nice': 35, 'glossy': 3, 'tile-roofed': 1, 'dust-gray': 1, 'indoor': 1, 'wild': 11, 'barefoot': 1, 'high-school': 2, 'offby': 1, 'tired': 21, 'ankle-deep': 1, 'unfazed': 1, 'shallow': 5, 'trail-finder': 1, 'due': 2, 'sexy': 3, 'rowdy': 3, 'public': 3, 'collegiate': 1, 'confidence-boosting': 1, 'brief': 2, 'fried': 4, 'gifted': 2, 'wrinkled': 1, 'decent': 4, 'sticky': 5, 'get-a-party-started': 1, 'wild-berry': 1, 'Small': 2, 'wobbly': 4, 'warm': 28, 'twelfth': 1, 'faraway': 1, 'ashamed': 3, 'bizarre': 3, 'shivery': 2, 'Salvadoran': 1, 'elementary': 2, 'stumbling': 1, 'oven-hot': 1, 'assertive': 1, 'cautious': 2, 'jolting': 1, 'extra-compassionate': 1, 'gracious': 3, 'hungry': 8, 'world-famous': 1, 'ancient': 6, 'mature': 3, 'frustrated': 4, 'Rolling': 2, 'positive': 1, 'golden': 4, 'physical': 1, 'blurry': 3, 'orange-red': 1, 'northernmost': 1, 'familiar': 11, 'loving': 1, 'easy': 11, 'satisfied': 4, 'hilly': 1, 'long-ago': 2, 'curved': 5, 'Light': 2, 'slit': 1, 'brain-dead': 1, 'boxy': 3, 'glorious': 2, 'smooth': 10, 'exacdy': 9, 'selfish': 1, 'heartfelt': 1, 'west': 1, 'plush': 2, 'indifferent': 1, 'mesmerizing': 1, 'Big': 6, 'busy': 4, 'big-boned': 1, 'eldest': 1, 'beige': 7, 'certain': 4, 'bloody': 1, 'ladylike': 1, 'eighth': 1, 'embarrassed': 3, 'boyfriend-girlfriend': 1, 'flirtatious': 1, 'fresh': 10, 'juicy': 1, 'spiteful': 1, 'shameless': 1, 'blank': 4, 'pouty': 1, 'Tight': 3, 'Feeble': 2, 'haughty': 1, 'coppery': 1, 'cramped': 1, 'smug': 2, 'amusing': 2, 'bent': 7, 'rubbery': 1, 'built-in': 2, 'tough': 3, 'narrow': 4, 'pale': 8, 'retarded': 2, 'bitch-ass': 1, 'taut': 6, 'reluctant': 1, 'sad': 23, 'sudden': 12, 'funny': 13, 'fair': 2, 'angry': 4, 'entire': 2, 'iced': 4, 'square': 3, 'steady': 7, 'lame': 3, 'pussy-whipped': 1, 'violent': 1, 'eight-hour': 1, 'plastic': 2, 'nervous': 10, 'Cal': 4, 'starry': 1, 'pink': 13, 'great': 6, 'fantastic': 2, 'upbeat': 3, 'Chic': 1, 'extracurricular': 1, 'scrubbed': 1, 'singsong': 1, 'pleased': 3, 'Tired': 5, 'lemon': 7, 'ready': 21, 'Nostalgic': 1, 'Korean': 2, 'minor': 1, 'Blue-plaid': 1, 'unable': 1, 'unto': 1, 'steep': 5, 'appropriate': 1, 'pleated': 4, 'straightforward': 1, 'cloudy': 2, 'Other': 1, 'cinnamon-flavored': 1, 'pervasive': 1, 'inverted': 1, 'assistant': 1, 'ten-minute': 1, 'single': 4, 'red-washed': 1, 'friendly': 2, 'everv': 1, 'second-string': 1, 'rectangular': 3, 'garlic': 1, 'bland': 4, 'mute': 2, 'milky': 4, 'bumpy': 1, 'boxed': 1, 'roasted': 2, 'dull': 1, 'scorching': 1, 'worthless': 1, 'pro': 2, 'broken': 4, 'speckled': 2, 'Present': 1, 'desperate': 4, 'straight-up': 2, 'Major': 95, 'sharp': 10, 'American': 3, 'mental': 2, 'serious': 10, 'sweet': 16, 'Chilling': 2, 'female': 3, 'big-time': 1, 'full': 19, 'hefty': 1, 'extra-long': 1, 'bare': 6, 'sincere': 1, 'wiry': 2, 'Real': 4, 'hush': 1, 'fabulous': 1, 'lipsticky': 1, 'quick': 14, 'spongy': 1, 'flowered': 2, 'vast': 1, 'bluish': 1, 'ridged': 1, 'interested': 2, 'average': 2, 'stinging': 1, 'Canadian': 1, 'lone': 2, 'jellied': 1, 'collarless': 1, 'nodded': 1, 'rosy': 4, 'inky': 1, 'large': 4, 'head-on': 1, 'northern': 1, 'solid': 6, 'uncomfortable': 1, 'Curious': 1, 'rich': 3, 'bitter': 5, 'chalky': 1, 'frothy': 2, 'sofdy': 2, 'stale': 3, 'elaborate': 2, 'jealous': 4, 'crooked': 4, 'successful': 2, 'fast': 6, 'hooded': 1, 'such': 8, 'ribbonlike': 1, 'fuckin': 1, 'green-tiled': 1, 'toothpasty': 1, 'hoarse': 2, 'trifling': 1, 'loofah': 1, 'melted': 1, 'unpuff': 1, 'extra-strength': 1, 'dregs-of-the-earth': 1, 'hourly': 2, 'checkbook-sized': 1, 'filmy': 1, 'condescending': 1, 'squat': 4, 'colorless': 1, 'cubic': 1, 'impenetrable': 1, 'shatterproof': 1, 'wet': 18, 'personal': 3, 'concrete': 1, 'cunning': 1, 'phenomenal': 1, 'secondhand': 2, 'horrid': 2, 'lazy': 2, 'arid': 2, 'ordinary': 4, 'alive': 4, 'newborn': 1, 'evil': 6, 'soft-ass': 1, 'agonizing': 1, 'incurable': 1, 'expansive': 1, 'chic': 2, 'crimson': 2, 'Fluorescent': 1, 'solemn': 1, 'pristine': 2, 'succinct': 1, 'east': 4, 'sturdy': 1, 'favorite': 4, 'Latin': 1, 'flame-shaped': 1, 'Portuguese': 1, 'unburdened': 1, 'mismatched': 1, 'hollow': 3, 'Potted': 1, 'ten-second': 1, 'blocky': 1, 'salty': 3, 'interesting': 2, 'awkward': 1, 'horizontal': 2, 'everyday': 3, 'Deep': 1, 'sophisticated': 1, 'slighdy': 5, 'New': 2, 'senior': 2, 'satin': 2, 'excellent': 3, 'half-assed': 1, 'lean': 3, 'African': 3, 'unencumbered': 1, 'supple': 1, 'unflappable': 1, 'Ready': 1, 'fiery': 3, 'superior': 3, 'daily': 1, 'groomed': 1, 'casual': 2, 'delirious': 2, 'scruffy': 1, 'hundred-dollar': 1, 'dainty': 2, 'cursive': 1, 'sinewy': 1, 'roofless': 1, 'glaring': 1, 'Stretchy': 1, 'pinkie-sized': 1, 'corny': 2, 'tweedy': 1, 'damp': 6, 'private': 5, 'Comfortable': 1, 'defensive': 1, 'rude': 1, 'usual': 8, 'clued-in': 1, 'tasseled': 2, 'plain': 6, 'churchy': 1, 'detailed': 1, 'aware': 4, 'just-sanitized': 1, 'finger-wave': 1, 'Dark': 2, 'solitary': 1, 'stoic': 1, 'inflatable': 1, 'naked': 4, 'shameful': 1, 'crisp': 7, 'steamy': 3, 'lunatic': 1, 'gold': 1, 'Greek': 3, 'five-foot': 1, 'otherworldly': 1, 'genuine': 2, 'gangly': 1, 'original': 1, 'very': 3, 'past': 14, 'known': 1, 'unadorned': 1, 'enchanted': 1, 'exact': 3, 'remote': 5, 'longhaired': 4, 'moist': 2, 'nimble': 1, 'tongue-kiss': 1, 'lame-o': 1, 'tongue-tied': 1, 'jazzy': 1, 'mutual': 1, 'red-hot': 1, 'long-distance': 2, 'wristwhipping': 1, 'bulky': 4, 'thirsty': 2, 'quick-dry': 1, 'massive': 5, 'surgical': 1, 'Francisco-bought': 1, 'doubtful': 1, 'subde': 3, 'extra': 12, 'unimpressed': 1, 'trivial': 2, 'Bought': 1, 'faceless': 1, 'too-long': 1, 'absolute': 2, 'gruff': 1, 'romantic': 2, 'six-hour': 1, 'anxious': 3, 'Kingdom-like': 1, 'Secondhand': 1, 'rebel': 2, 'Lucky': 1, 'just-waxed': 1, 'raw': 8, 'early': 5, 'academic': 1, 'warped': 2, 'extended': 1, 'disturbed': 1, 'Bad': 1, 'overall': 1, 'antique': 1, 'boring': 3, 'matching': 3, 'true.T': 1, 'oblong': 2, 'silver-white': 1, 'brown-gold': 1, 'clear-cut': 1, 'round-collared': 1, 'puffy': 2, 'mother-of-pearl': 1, 'starched': 1, 'canary': 1, 'foggy': 1, 'creamy': 3, 'placid': 2, 'curly': 2, 'cordial': 1, 'Enameled': 1, 'confetti-like': 1, 'tinny': 1, 'dental': 2, 'weighty': 1, 'clunky': 1, 'sesame': 1, 'dangling': 3, 'counter': 2, 'edgy': 1, 'momentary': 1, 'shimmery': 2, 'attentive': 1, 'capped': 1, 'teary': 1, 'kind': 1, 'light': 8, 'whirlwind': 1, 'fleshy': 2, 'spotty': 1, 'insincere': 1, 'Good-natured': 1, 'Shaky': 1, 'spare': 1, 'dirty': 7, 'scandalous': 1, 'slinging-type': 1, 'occasional': 2, 'classy': 3, 'flush': 1, 'Mature': 1, 'confident': 3, 'flustered': 1, 'Nice': 3, 'sandy-covered': 1, 'First': 1, 'flimsy': 1, 'shocked': 3, 'unconscious': 1, 'breast-grabbing': 1, 'inflated': 1, 'acidic': 1, 'damn': 1, 'distinct': 1, 'Pastrami-buying': 1, 'thimble-sized': 2, 'Ch': 6, 'pulsing': 1, 'dented': 2, 'junky': 1, 'burnt': 3, 'distincdy': 1, 'insane': 2, 'overblown': 1, 'two-year-old': 1, 'indecent': 1, 'litdest': 1, 'difficult': 7, 'common': 1, 'claustrophobic': 1, 'windy': 2, 'Mongoloid': 1, 'relieved': 4, 'Faint': 1, 'thankful': 2, 'thev': 1, 'tense': 7, 'eager': 1, 'Purple-tinged': 1, 'dramatic': 4, 'Chilly': 1, 'blistering': 1, 'samiel': 1, 'wispy': 2, 'Jolly': 1, 'total': 1, 'grand': 5, 'stubborn': 1, 'choosy': 1, 'temperature-controlled': 1, 'straight-out': 1, 'whiteand-gold': 1, 'controlled': 1, 'rigid': 2, 'Damn': 1, 'longish': 2, 'rear': 3, 'unclear': 1, 'super-crisp': 1, 'silky': 3, 'imaginative': 1, 'billowy': 1, 'twice-a-month': 1, 'mandarin': 1, 'dapper': 1, 'reflective': 1, 'shared': 1, 'vain': 2, 'Mexican': 3, 'so-called': 2, 'overrun': 1, 'middle-aged': 2, 'whispery': 3, 'married': 2, 'street-level': 1, 'plump': 2, 'businesslike': 2, 'current': 1, 'minuscule': 1, 'Argentinean': 1, 'blue-green': 1, 'Herringbone': 1, 'maniacal': 1, 'manv': 1, 'robust': 1, 'gleeful': 2, 'inconceivable': 1, 'twelve-foot': 1, 'gray-brown': 1, 'Disrespectful': 1, 'unrecognizable': 1, 'bleeding': 1, 'mad': 36, 'shaven': 1, 'marked': 1, 'pulpy': 1, 'Sol-smelling': 1, 'vengeful': 1, 'yeah': 2, 'light-skinned': 1, 'typical': 2, 'old-people': 1, 'aquatic': 1, 'previous': 2, 'strong': 9, 'underwater': 1, 'ill': 1, 'glowing': 2, 'dense': 3, 'portly': 1, 'vile': 1, 'flip': 3, 'comatose': 1, 'slippery': 3, 'yellow-white': 2, 'stringy': 1, 'medical': 1, 'blowy': 1, 'Fourth': 1, 'foul': 2, 'noisy': 1, 'twanny-baby': 1, 'afraid': 4, 'centered': 1, 'twitchy': 1, 'tighdy': 2, 'flawed': 1, 'deviled': 1, 'Dense': 1, 'privy': 1, 'unbuttoned': 1, 'Absurd': 2, 'yardlong': 1, 'store-bought': 1, 'spicy': 2, 'shaky': 1, 'livid': 1, 'unzipped': 1, 'blue-black': 1, 'pebbly': 2, 'unpleasant': 1, 'droopy': 1, 'Peoplejust': 1, 'dimpled': 2, 'similar': 1, 'legal': 2, 'ridiculous': 5, 'fifth': 2, 'distorted': 1, 'old-but-not-classic': 1, 'recognizable': 1, 'cool-ass': 2, 'special': 6, 'boy-type': 1, 'unrolled': 2, 'Egg-yolk': 1, 'boastful': 1, 'inch-thick': 1, 'silvery': 1, 'mushy': 1, 'simple': 6, 'ignorant': 1, 'tragic': 2, 'streamlined': 1, 'lasting': 1, 'slick': 3, 'stretched-out': 1, 'Sax-filled': 1, 'mixed': 2, 'feminine': 1, 'Cool': 4, 'abrupt': 1, 'far-off': 1, 'nonchalant': 1, 'nude': 2, 'alone': 2, 'Bitter': 1, 'adept': 1, 'Sorry': 3, 'lighthearted': 1, 'comical': 1, 'Long': 4, 'green-brown': 1, 'fucked-up': 7, 'Brutal': 1, 'stylish': 1, 'fluffy': 1, "n'tfunny": 1, 'objective': 2, 'boiling': 1, 'contented': 1, 'convoluted': 2, 'five-pointed': 1, 'gross': 2, 'slimy': 2, 'palest': 1, 'inside': 3, 'Sharp': 1, 'black-banded': 1, 'consistent': 1, 'intimate': 1, 'Plate-glass': 1, 'multiple': 1, 'Cordial': 1, 'gorgeous': 2, 'in-and-out': 1, 'limp': 6, 'six-month-old': 1, 'witchy': 1, 'arbitrary': 1, 'joking': 1, 'Japanese': 2, 'Much': 1, 'unnecessary': 3, 'varnished': 1, 'sarcastic': 1, 'third': 4, 'mobile': 1, 'formal': 1, 'soundless': 1, 'Litde-ass': 1, 'acid-washed': 1, 'two-piece': 1, 'washable': 1, 'doggie': 1, 'deadpan': 1, 'chubby': 3, 'minimal': 1, 'ninety-six-dollar': 1, 'one-hundred-dollar': 1, 'Familiar': 1, 'right-this-way': 1, 'rangy': 1, 'domineering': 1, 'famous': 2, 'old-fashioned': 3, 'jiggly': 1, 'extra-tall': 1, 'wilting': 1, 'absendy': 1, 'fly-ass': 1, 'sexual': 1, 'crunchy': 1, 'related': 1, 'nosy': 2, 'six-person': 1, 'rhetorical': 1, 'cluttered': 1, 'two-faced': 2, 'mulatto': 1, 'Chewed-up': 1, 'out': 4, 'Italian': 2, 'charming': 1, 'ashy': 1, 'negative': 3, 'overseas': 1, 'half': 5, 'Irish': 1, 'bushy': 1, 'Quiet': 2, 'general': 2, 'foreign': 3, 'Second': 1, 'vague': 3, 'Last': 1, 'stable': 1, 'filthy': 3, 'irritated': 1, 'rosemary-olive': 1, 'rusting': 1, 'alcoholic': 1, 'treacherous': 1, 'undercover': 1, 'rambunctious': 1, 'ruby': 1, 'Tic': 1, 'backhanded': 1, 'recent': 1, 'pink-andgreen': 1, 'guilty': 3, 'dingy': 1, 'pointy': 2, 'sandaled': 1, 'short-sleeved': 1, 'traffic': 1, 'buttery': 1, 'drastic': 1, 'garbanzo-bean': 1, 'wise': 2, 'spiced': 1, 'hot-air': 1, 'prickly': 1, 'encouraging': 1, 'Mixed': 1, 'flagrant': 1, 'eyebrowless': 1, 'beefy': 1, 'mighty': 1, 'secure': 1, 'syrupy': 2, 'mistaken': 1, 'artistic': 1, 'hateful': 1, 'Babyish': 1, 'Jemima-like': 1, 'Styrofoam': 1, 'croaky': 1, 'shoulder-length': 2, 'limited': 1, 'expectant': 2, 'reddish': 1, 'confidendy': 1, 'curious': 2, 'elegant': 1, 'cupped': 1, 'French-manicured': 1, 'brutish': 1, 'watery': 1, 'fruit-eating': 1, 'swift': 1, 'unlit': 1, 'Trifling': 1, 'snapper': 1, 'rest-stealer': 1, 'Ruddy': 1, 'Burnt': 1, 'comfortable': 4, 'buffed': 1, 'worn': 1, 'opal-eyed': 1, 'Munchie-soft': 1, 'Unbelievable': 1, 'Careful': 1, 'embarrassing': 1, 'dazzling': 2, 'direcdy': 1, 'tiled': 1, 'Cologne-filled': 1, 'coarse': 1, 'twelfth-grade': 2, 'scented': 2, 'Half-turned': 1, 'uncomplicated': 1, 'basic': 2, 'lonesome': 1, 'mere': 1, 'cheerful': 1, 'teak': 1, 'unfamiliar': 1, 'earnest': 2, 'sullen': 1, 'covered': 1, 'fourteenth': 1, 'surly': 1, 'asymmetrical': 1, 'still-pristine': 1, 'necktied': 1, 'drizzly': 1, 'full-time': 1, 'imaginary': 1, 'pure-nylon': 1, 'major': 2, 'astounded': 1, 'frank': 1, 'unfaltering': 1, 'amazing': 1, 'eel-skin': 2, 'embroidered': 1, 'Moroccan': 1, 'bicentennial': 1, 'color-safe': 1, 'freezing': 1, 'twenty-foot': 1, 'Wall-to-wall': 1, 'Same': 4, 'big-screen': 1, 'good-looking': 2, 'face': 1, 'transparent': 1, 'daddy': 2, 'phlegmy': 1, 'misty': 1, 'disappointed': 2, 'olive': 3, 'old-lady': 1, 'annoyed': 1, 'depressing': 1, 'independent': 3, 'Great': 1, 'melodramatic': 1, 'Fucked-up': 1, 'wet-dreaming': 1, 'dependent': 4, 'contemptuous': 1, 'truthful': 1, 'lovely': 2, 'soggy': 1, 'mind-reading': 1, 'Solid': 2, 'lumpy': 1, 'whirling': 1, 'stocky': 3, 'whipping': 2, 'curvy': 1, 'scary': 2, 'glassy': 1, 'felt-tipped': 1, 'Meaty': 1, 'excited': 2, 'fearless': 3, 'eucalyptus': 1, 'magic': 2, 'unafraid': 1, 'tipsy': 1, 'humorless': 1, 'silver': 1, 'gruesome': 1, 'above': 1, 'Asian': 1, 'corporate': 1, 'two-story': 1, 'showy': 1, 'prestigious': 1, 'fourth': 3, 'sofa-loveseat': 1, 'ballpoint': 1, 'jaded': 1, 'nigga': 1, 'brand-new': 3, 'vivid': 2, 'eleventh': 1, 'horrible': 2, 'teenlike': 1, 'Satur-night': 1, 'uneventful': 1, 'double-decker': 1, 'by-the-lake': 1, 'kaleidoscopic': 1, 'airborne': 1, 'virgin': 1, 'frozen': 3, 'litde-ass': 1, 'getout-of-jail': 1, 'Low': 1, 'emerald': 3, 'emotional': 3, 'squash-yellow': 1, 'spellbinding': 1, 'soft-skulled': 1, 'healthy': 2, 'dreamy': 1, 'swingy': 2, 'Fourteenth': 1, 'stressed': 1, 'yellow-brick': 1, 'uneven': 2, 'woolly': 1, 'Specific': 1, 'psychic': 1, 'mystical': 1, 'shimmering': 4, 'distressing': 1, 'puddle-eved': 1, 'lighdy': 2, 'muted': 1, 'static': 2, 'beautiful': 1, 'Plump': 1, 'Hopeless': 1, 'soapy-grassy': 1, 'comforting': 1, 'queasy': 2, 'Nervous': 1, 'Decent': 1, 'responsible': 3, 'decimal': 1, 'organic': 1, 'enthusiastic': 2, 'marine': 1, 'crabby-smelling': 1, 'Hot': 4, 'ferocious': 1, 'bye-bye': 2, 'Loud': 1, 'Pseudo': 1, 'Irregular': 1, 'waist-high': 2, 'almond': 2, 'deaf': 1, 'enlarged': 1, 'handwritten': 1, 'check-cashing': 2, 'fidgety': 1, 'graduation-like': 1, 'Spanish': 1, 'worth': 1, 'outdoor': 1, 'no-more-check-cashingcenter': 1, 'professional': 1, 'forgiving': 1, 'incredible': 2, 'rock-steady': 1, 'frightened': 1, 'agricultural': 1, 'snaky-ass': 1, 'victorious': 1, 'Desperate': 1, 'tainted': 1, 'melting': 1, 'sleeveless': 1, 'moral': 1, 'immaculate': 3, 'Square-faced': 1, 'suede': 1, 'sour-cherry': 1, 'infuriating': 1, 'wicked': 1, 'calm': 1, 'two-ton': 1, 'eternal': 1, 'bossy-acting': 1, 'sleepy': 3, 'predawn': 1, 'loaded': 1, 'off-limits': 1, 'practical': 1, 'souvenir-thing': 1, 'pitiful': 3, 'dining-room': 1, 'afghan': 2, 'pretty': 1, 'numb': 1, 'High': 1, 'Brought': 1, 'adjoining': 1, 'papery': 1, 'pasty': 1, 'acrylic': 2, 'splotched': 1, 'Thick': 2, 'tepid': 1, 'smocklike': 1, 'present': 1, 'wonderful': 2, 'adventurous': 1, 'studious': 1, 'helpful': 3, 'pathetic': 1, 'humbling': 1, 'abstract': 1, 'swirly': 1, 'paralyzed': 1, 'torn-up': 1, 'unbelievable': 1, 'cynical': 1, 'conceited': 1, 'nun-nurse': 1, 'clean-ass': 1, 'clumsy': 1, 'feverish': 2, 'useless': 1, 'snooty': 1, 'Wide-eyed': 1, 'accidental': 3, 'lightning-eyed': 1, 'scarlet': 1, 'naive': 1, 'sixth-grade': 2, 'foot-tall': 1, 'faint': 1, 'spike': 1, 'self-centered': 1, 'rapid': 1, 'durable': 1, 'nonconformist': 1, 'duffel': 1, 'dazed': 1, 'Hard': 2, 'radical': 1, 'ringed': 1, 'SINGLE': 1, 'craggy': 1, 'Underground': 1, 'unhooked': 1, 'cornball': 1, 'painful': 1, 'braided': 2, 'wherewithal': 1, 'five-pound': 1, 'Asian-looking': 1, 'run-fast': 1, 'fuck': 2, 'top-notch': 1, 'upset': 5, 'nonfunctioning': 1, 'backslappy': 1, 'exciting': 1, 'scientific': 1, 'disappointing': 1, 'homesick': 1, 'buck-toothed': 1, 'unworthy': 1, 'fringed': 1, 'tired-ass': 1, 'all-the-white-man-hasleft-for-me-is-selling-crack': 1, 'disgusted': 1, 'Chumash': 1, 'red-bearded': 1, 'green-andwhite': 1, 'paced': 1, 'worthy': 1, 'shin-deep': 1, 'scratchy': 1, 'rouged': 1, 'empathetic': 1, 'dismissive': 1, 'penny-ante': 1, 'one-hour': 1, 'crossword': 2, 'horrifying': 1, 'appliance-selling-type': 1, 'seven-letter': 1, 'lay': 1, 'jam-packed': 1, 'Stygian': 2, 'stainless': 1, 'stinky': 1, 'nauseous': 1, 'raggedy': 2, 'touching': 1, 'mean': 1, 'brisdy': 2, 'convertible': 2, 'insensitive': 1, 'frail': 1, 'fluid': 1, 'needy': 1, 'Visible': 1, 'Fast': 1, 'pliant': 1, 'Inquisitive': 1, 'humid': 1, 'inner': 1, 'unlooped': 1, 'Crooked': 1, 'severe': 1, 'allergic': 1, 'proper': 2, 'four-story': 1, 'super': 2, 'dayto-day': 1, 'coffee-table': 1, 'illustrated': 2, 'down': 2, 'revolving': 2, 'oblivious': 1, 'exhilarated': 1, 'this-is-a-money-day': 1, 'main': 2, 'vibrant': 1, 'Blue': 1, 'gritty': 1, 'watchful': 1, 'Late': 1, 'two-liter': 1, 'gray-white': 1, '7-Up': 1, 'execution-style': 1, 'black-and-white': 1, 'three-way': 2, 'salt-whitened': 1, 'secret': 1, 'ashen': 1, 'Silvery': 1, 'faindy': 1, 'rippled': 1, 'slack': 1, 'paranoid': 1, 'neverfight': 1, 'dim': 1, 'SILENT': 1, 'swaggering': 1, 'hand-lettered': 1, 'recendy': 1, 'black-andblue': 1, 'super-sheer': 1, 'blacked-out': 1, 'separate': 2, 'tapered': 2, 'late-spring': 1, 'Anonymous': 1, 'double-toot': 1, 'permed': 1, 'unfocused': 1, 'funeral': 5, 'clingy': 2, 'impotent': 1, 'paper-wrapped': 1, 'flawless': 1, 'bus-stop': 1, 'jumbo': 1, 'grilled': 1, 'floury': 1, 'Giant': 1, 'a/ways': 1, 'berry': 1, 'chained': 1, 'all-you-can-eat': 1, 'celery-salted': 1, 'ever-silent': 1, 'knobby': 1, 'squishy': 1, 'disrespectful': 1, 'Found': 1, 'testy': 1, 'grassy': 1, 'Walnut-sized': 1, 'Hundred-dollar': 1, 'balled-up': 1, 'palm-sized': 1, 'false': 1, 'sepia': 1, 'grave': 2, 'polished': 1, 'Closed': 1, 'cartoony': 1, 'muddy': 1, 'next-to-nothing': 1, 'half-starved': 1, 'Dead': 3, 'grown-up': 1, 'rancid': 1, 'direct': 1, 'Half-gifted': 1, 'comfy': 1, 'iridescent': 1, 'facetious': 1, 'scholarly': 1, 'restorative': 1, 'candid': 1, 'Reliable': 1, 'grainy': 1, 'post-funeral': 1, 'ours': 1, 'tribal': 1, 'Vd': 1, 'cocky': 1, 'chirpy': 1, 'Many': 1, 'precious': 1, 'choppy': 1, 'Velvet-covered': 1, 'secondary': 1, 'specific': 1, 'heartshaped': 1, 'awed': 1, 'sodden': 1, 'outward': 1, 'various': 2, 'glassy-eyed': 1, 'motded': 1, 'gory': 1, 'scrawny': 2, 'spinning': 1, 'wide-open': 1, 'ox-drawn': 1, 'unblemished': 1, 'yourown': 1, 'hardbound': 1, 'well-drawn': 1, 'crescent': 1, 'High-waisted': 1, 'cast-off': 1, 'stunned': 1, 'unfriendly': 1, 'unattached': 1, 'trim': 1, 'sun-squinting': 1, 'Sweet': 1, 'unfair': 1, 'Born-yesterday': 1, 'sliced': 1, 'seething': 1, 'impish': 1, 'Stiff': 1, 'well-mannered': 2, 'Iforgive': 1, 'self-conscious': 1, 'degraded': 1, 'hundredth': 1, 'incapable': 1, 'vacuum-packed': 1, 'refrigerated': 1, 'sporty': 1, 'beige-green': 1, 'triumphant': 1, 'Basic': 1, 'folding': 1, 'arched': 1, 'sponge-painted': 1, 'blunt': 2, 'Bushy': 1, 'cotta-tiled': 1, 'glazed': 1, 'clanky': 1, 'glowy': 1, 'lopsided': 2, 'garish': 1, 'purple-eyed': 1, 'sheer': 1, 'red-orange': 1, 'Spinning': 1, 'jovial': 1, 'mile-long': 1, 'litde': 1, 'hurt': 1, 'pink-slashed': 1, 'Thin': 1, 'oversaturated': 1, 'experimental': 1, 'low-heeled': 1, 'Embarrassed': 1, 'half-blinded': 1, 'Pyrotechnic': 1, 'fifty-fifty': 1, 'Bright': 1, 'softbound': 1, 'primary': 1, 'heated': 1, 'fur-collared': 1, 'Virginian': 2, 'granulated': 1, 'fucked': 1, 'clever': 1, 'baby-skinned': 1, 'cream-of-wheat': 1, 'fitting-room': 1, 'blond': 2, 'notary': 1, 'youthful': 1, 'obscene': 1, 'keen': 1, 'gauzy': 1, 'widebrimmed': 1, 'wilted': 1, 'Bulb-like': 1, 'key': 4, 'LOVING': 1, 'crumpled': 1, 'reflex': 1, 'innocent': 1, 'shortsighted': 1, 'loyal': 1, 'panicky': 1, 'Scary': 1, 'Bible-school': 1, 'respectful': 1, 'open-air': 1, 'chatty': 1, 'sleepyeyed': 1, 'concerned': 1, 'erupting': 1, 'pant': 1, 'wide-brimmed': 1, 'half-stuffed': 1, 'pocked': 1, 'sequined': 1, 'sympathetic': 1, 'gummy': 1, 'tie-dyed': 1, 'still-wet': 1, 'milk-chocolate': 1, 'Monument-like': 1, 'tiring': 1, 'High-school': 1, 'three-dimensional': 1, 'three-ring': 1, 'highschool': 1, 'prideful': 1, 'neady': 1, 'blameless': 1, 'concentrated': 1, 'Olympian': 1, 'locker-room': 1, 'Told': 4, 'uh-uh': 1, 'booming': 1, 'managerial': 1, 'nine-feet': 1, 'cannonball': 1, 'deafening': 1, 'ecstatic': 1, 'disturbing': 1, 'fizzing': 1, 'Mute': 1, 'geometric': 1, 'classic': 1, 'industrial': 1, 'truckstop': 1, 'Christian': 1, 'snaky': 1, 'topless': 1, 'callused-over': 1, 'Slim': 1, 'long-dead': 1, 'sandy': 3, 'snowy': 1, 'law-abiding': 1, 'delicate': 1, 'helpless': 1, 'eighteen-wheeler': 1, 'oily': 1, 'someplace': 1, 'three-foot-tall': 1, 'herejive': 1, 'mammoth': 1, 'spreadout': 1, 'touchable': 1, 'horizonless': 1, 'merry-goround': 1, 'raythrilled': 1, 'horned': 1, 'impossible': 1, 'Alive': 1, 'mossy': 1, 'V-neck': 1, 'sun-kissed': 1, 'extraordinary': 1, 'fish-loving': 1, 'mile-high': 1, 'international': 1, 'brutal': 1, 'brisk': 1, 'half-wet': 1, 'turbulent': 1, 'pearly': 1, 'further': 1, 'danyel': 1, 'former': 2, 'best-selling': 1}
Daughter : a novel /@2003
{'Other': 5, 'Novel': 1, 'bulk': 1, 'coincidental': 1, 'dead': 24, 'Special': 1, 'whole': 25, 'special': 3, 'novel': 1, 'actual': 2, 'American': 3, 'African': 5, 'stripped-down': 1, 'front': 18, 'two-family': 1, 'Cross-legged': 1, 'clean': 20, 'old': 58, 'Black': 22, 'two-block': 1, 'small': 41, 'stiff': 4, 'second': 17, 'thick': 11, 'deep-set': 1, 'final': 2, 'surprising': 2, 'early': 7, 'light': 16, 'furious': 2, 'usable': 1, 'wild': 6, 'neat': 13, 'hard': 45, 'proper': 8, 'big': 17, 'excellent': 3, 'okay': 29, 'perfect': 9, 'last': 58, 'mild': 2, 'dusty': 2, 'crazy': 32, 'same': 36, 'usual': 10, 'little': 52, 'chaotic': 1, 'stupid': 11, 'ridiculous': 2, 'vague': 1, 'graduate': 1, 'own': 81, 'stilted': 1, 'imperceptible': 1, 'four-sentence': 1, 'cryptic': 1, 'negotiable': 1, 'upset': 2, 'courtordered': 1, 'troubled': 1, 'military': 3, 'possible': 17, 'high': 12, 'right': 42, 'intolerable': 1, 'good': 71, 'bad': 23, 'unclear': 2, 'unfair': 6, 'fake': 3, 'only': 21, 'sweet': 10, 'beautiful': 38, 'secret': 4, 'sexy': 3, 'Charming': 1, 'such': 11, 'deep': 22, 'convincing': 1, 'convinced': 5, 'brown': 10, 'fine': 25, 'sudden': 12, 'out-of-state': 1, 'generous': 1, 'brilliant': 3, 'cute': 1, 'sure': 24, 'different': 25, 'uptown': 1, 'afraid': 8, 'nice': 16, 'damn': 11, 'immobile': 2, 'first': 74, 'late-night': 1, 'fast': 8, 'wide': 20, 'great': 9, 'impressed': 1, 'young': 44, 'unfinished': 1, 'close-cropped': 1, 'brand-new': 2, 'expansive': 1, 'sixteen-foot': 1, 'squat': 2, 'glistening': 1, 'bright': 6, 'black-and-white': 1, 'shimmering': 1, 'foursome': 1, 'new': 48, 'sixteen-year-old': 2, 'enough': 10, 'beautiful-looking': 1, 'many': 37, 'dimpled': 1, 'other': 83, 'unidentifiable': 1, 'sensuous': 1, 'full': 11, 'worn': 4, 'certain': 8, 'stand-up': 1, 'long': 39, 'nervous': 3, 'black': 21, 'easy': 14, 'shapely': 1, 'tight': 18, 'theirs': 1, 'useless': 6, 'blunt': 1, 'comfortable': 12, 'stunned': 4, 'skimpy': 1, 'indistinguishable': 1, 'wet': 9, 'sticky': 1, 'foreign': 2, 'much': 42, 'minty': 1, 'foolish': 1, 'sloppy': 2, 'burnt': 2, 'shy': 4, 'clumsy': 2, 'impossible': 9, 'undressed': 1, 'calming': 1, 'Tired': 1, 'naked': 4, 'sleeveless': 1, 'instant': 1, 'next': 44, 'surprised': 3, 'silk-like': 1, 'queasy': 1, 'frivolous': 1, 'able': 23, 'murky': 1, 'unwound': 1, 'unanticipated': 1, 'warm': 9, 'ready': 12, 'virgin': 5, 'meaningful': 3, 'overcast': 1, 'delicate': 1, 'dim': 1, 'important': 5, 'broken': 2, 'wrong': 37, 'Enraged': 1, 'open': 14, 'frantic': 2, 'free': 9, 'astounded': 1, 'angry': 19, 'low': 8, 'menacing': 2, 'motionless': 3, 'silent': 10, 'unfamiliar': 3, 'initial': 3, 'whittled-down': 1, 'loving': 9, 'loud': 10, 'ashamed': 2, 'disappointed': 3, 'sorry': 16, 'unblinking': 4, 'four-hour': 1, 'upstate': 1, 'lucky': 3, 'unusual': 2, 'first-time': 1, 'helpless': 1, 'normal': 9, 'sobbing': 1, 'institutional': 1, 'human': 4, 'particular': 4, 'social': 5, 'specific': 4, 'restricted': 1, 'financial': 2, 'connected': 1, 'uninterested': 1, 'late': 18, 'proud': 9, 'complete': 3, 'intimate': 2, 'glowing': 2, 'Small': 2, 'silly': 3, 'unwelcome': 1, 'hot': 13, 'wall-shaking': 1, 'fair': 4, 'lonely': 7, 'quiet': 26, 'likely': 2, 'sharp': 3, 'rough': 3, 'terrible': 16, 'further': 1, 'limp': 3, 'blank': 3, 'alone': 1, 'several': 6, 'upright': 1, 'dangerous': 6, 'aged': 1, 'careful': 1, 'insane': 3, 'impenetrable': 1, 'false': 2, 'impermeable': 1, 'persistent': 2, 'mysterious': 1, 'alternate': 4, 'aggressive': 2, 'true': 14, 'inviolable': 1, 'passionate': 3, 'fourth': 2, 'extra-proper': 1, 'Biblical': 1, 'unknown': 3, 'steady': 7, 'beat': 1, 'third': 2, 'top': 7, 'apparent': 1, 'white': 20, 'real': 21, 'fantastic': 1, 'unable': 7, 'nasty': 4, 'missing': 2, 'few': 21, 'handy': 1, 'hollow': 3, 'disabled': 1, 'interminable': 2, 'sort-of': 1, 'past': 3, 'smart': 3, 'cold': 18, 'distant': 3, 'political': 1, 'four-room': 1, 'brief': 1, 'narrow': 4, 'inside': 4, 'weird': 1, 'glad': 4, 'Sorry': 2, 'little-girl': 1, 'sensual': 1, 'one-syllable': 1, 'trained': 1, 'cold-ass': 1, 'vulgar': 1, 'Sure': 4, 'seductive': 1, 'pregnant': 19, 'boring': 3, 'middle': 1, 'polite': 6, 'strange': 9, 'restrictive': 1, 'scared': 12, "n'tfeel": 2, 'broken-up': 1, 'dark': 7, 'left': 1, 'counterclockwise': 1, 'palpable': 1, 'premier': 1, 'desperate': 9, 'immediate': 2, 'make-believe': 2, 'urban': 1, 'weather-beaten': 1, 'tired': 8, 'physical': 4, 'transitional': 1, 'fluorescent': 1, 'brisk': 1, 'palatial': 1, 'thin': 7, 'nameless': 2, 'slow': 8, 'odd': 6, 'searing': 1, 'five-foot': 1, 'unnatural': 1, 'six-inch': 1, 'strong': 10, 'one-hundred-thirty-five-pound': 1, 'honey-colored': 1, 'current': 2, 'parallel': 1, 'clear': 17, 'amorphous': 3, 'unknowable': 3, 'abstract': 1, 'unfathomable': 1, 'bizarre': 3, 'ethic': 1, 'defenseless': 1, 'external': 1, 'unavoidable': 2, 'simple': 7, 'predictable': 2, 'tranquil': 2, 'dense': 3, 'once-upon-a-time': 3, 'cruel': 2, 'extraordinary': 4, 'violent': 4, 'evil': 1, 'immeasurable': 1, 'jagged': 1, 'careless': 1, 'nineteen-year-old': 1, 'crusty': 1, 'undistracted': 1, 'green': 8, 'gray': 4, 'bitter': 3, 'cheery': 1, 'Bitter': 1, 'stark': 2, 'pale': 3, 'futile': 2, 'mine': 8, 'responsible': 1, 'present': 3, 'large': 4, 'female': 2, 'outside': 4, 'preliminary': 1, 'aaahh': 1, 'male': 2, 'back': 10, 'Same': 1, 'ragged': 1, 'responsive': 1, 'later': 3, 'insensitive': 1, 'honest': 5, 'verbal': 1, 'tyrannical': 2, 'gentle': 5, 'Indian': 1, 'vicious': 2, 'unsettled': 3, 'tortured': 1, 'deranged': 1, 'confused': 1, 'interesting': 1, 'purple': 2, 'Sweet': 1, 'blue': 7, 'short': 7, 'Magic': 1, 'insufficient': 1, 'regular': 7, 'felt-tip': 1, 'fifty-cent': 1, 'uncomplicated': 1, 'multicolored': 1, 'wartime': 1, 'genuine': 2, 'straight': 1, 'close': 10, 'minor': 1, 'damp': 1, 'rare': 2, 'Hard': 1, 'mixed': 2, 'cool': 3, 'retired': 1, 'just-born': 1, 'soft': 5, 'messy': 5, 'bloody': 2, 'extra': 3, 'quick': 2, 'safe': 10, 'respected': 1, 'general': 2, 'jealous': 2, 'solid': 1, 'future': 1, 'handsome': 5, 'cared-for': 1, 'exciting': 3, 'single': 11, 'empty': 5, 'guilty': 2, 'bored': 1, 'above': 2, 'faceless': 2, 'strict': 5, 'obedient': 2, 'thorough': 2, 'alcoholic': 1, 'major': 1, 'stunning': 2, 'fitted': 1, 'intrusive': 1, 'tiny': 13, 'smooth': 1, 'else': 3, 'watery': 1, 'uneasy': 1, 'Nice': 1, 'annoying': 2, 'watchful': 1, 'constant': 2, 'ungrateful': 1, 'mystical': 1, 'inescapable': 1, 'disembodied': 1, 'expensive': 2, 'disharmonious': 1, 'incessant': 1, 'attractive': 2, 'dishonest': 1, 'overwhelming': 1, 'magnetic': 3, 'frightening': 2, 'weak': 1, 'stuck-up': 2, 'humble': 3, 'weekly': 1, 'confident': 2, 'decent': 4, 'malleable': 1, 'arrogant': 2, 'noticeable': 1, 'comforting': 2, 'full-blown': 1, 'welcome': 3, 'willing': 6, 'subject': 1, 'daily': 4, 'mad': 11, 'identifiable': 1, 'splintered': 2, 'wayward': 1, 'welcoming': 2, 'interested': 1, 'shocked': 3, 'studious': 1, 'embarrassed': 3, 'mean': 6, 'yellow': 2, 'sincere': 1, 'funny': 4, 'tangible': 2, 'respective': 1, 'radiant': 2, 'rapid': 1, 'disgusting': 1, 'serious': 8, 'rid': 5, 'loose': 2, 'gold': 1, 'awkward': 7, 'good-natured': 1, 'orange': 2, 'red': 4, 'endless': 2, 'defensive': 1, 'obvious': 1, 'wonderful': 3, 'rude': 2, 'illuminating': 1, 'Beautiful': 1, 'immature': 1, 'hungry': 10, 'crooked': 1, 'broad': 5, 'mother-daughter': 1, 'so-called': 2, 'hush': 1, 'unencumbered': 1, 'shredded': 1, 'near': 2, 'blown-up': 1, 'air-raided': 1, 'decipherable': 1, 'familial': 1, 'family-owned': 1, 'positioned': 1, 'entire': 6, 'grand': 1, 'undercover': 1, 'Fragmented': 1, 'wooden': 4, 'disorganized': 1, 'half': 3, 'Vietnamese': 1, 'sick': 3, 'True': 1, 'sad': 6, 'resolute': 2, 'secluded': 1, 'separate': 1, 'unstrained': 1, 'potential': 1, 'exaggerated': 1, 'curious': 1, 'family-run': 1, 'friendly': 1, 'sullen': 2, 'inconsequential': 1, 'invisible': 1, 'ancient': 2, 'vacant': 3, 'sweeping': 1, 'tutorial': 1, 'perplexed': 1, 'alive': 9, 'unnoticed': 1, 'pleasant': 1, 'rapt': 1, 'automatic': 3, 'huge': 4, 'average-sized': 1, 'brutal': 2, 'unforgiving': 1, 'isfurious': 1, 'muthafuckin': 1, 'thirteen-year-old': 1, 'Big': 2, 'recurrent': 1, 'Tight': 1, 'disrespectful': 1, 'grateful': 5, 'godlike': 1, 'singular': 1, 'unmistakable': 1, 'heavy': 6, 'definite': 2, 'pronounced': 1, 'golden': 2, 'lucid': 2, 'onlyjust': 1, 'antiwar': 1, 'excited': 3, 'spiritual': 2, 'dizzying': 1, 'greedy': 3, 'helpful': 1, 'disquieting': 1, 'blatant': 1, 'tuition-free': 1, 'better-paying': 1, 'incredible': 3, 'miserable': 1, 'innocent': 3, 'high-pitched': 1, 'parental': 1, 'compelling': 2, 'everyday': 5, 'happy': 5, 'reachable': 1, 'magic': 1, 'ramshackle': 2, 'defiant': 2, 'respectful': 1, 'unshakable': 1, 'touching': 4, 'graceful': 1, 'gangruled': 1, 'otherworldly': 1, 'populated': 1, 'opposite': 2, 'modern': 1, 'sexual': 1, 'concerned': 2, 'drug-crazed': 1, 'favorite': 2, 'split-down': 1, 'academic': 1, 'well-intentioned': 1, 'absolute': 4, 'difficult': 3, 'intricate': 1, 'Comfortable': 1, 'familiar': 6, 'three-bedroom': 2, 'twenty-five-year': 2, 'two-bathroom': 1, 'useful': 2, 'jobless': 1, 'gold-colored': 1, 'worth': 3, 'two-line': 1, 'numb': 1, 'God-fearing': 1, 'Christian': 1, 'dull': 2, 'patient': 1, 'wiry': 1, 'flat': 2, 'put': 1, 'unseen': 2, 'just-baked': 1, 'uncomfortable': 3, 'frozen': 1, 'upon-a-time-white': 1, 'hi-fi': 1, 'exasperated': 1, 'fading': 2, 'front-room': 1, 'sinful': 1, 'manageable': 1, 'momentary': 2, 'unsteady': 1, 'filled-out': 1, 'hopeful': 2, 'vital': 1, 'gold-starred': 1, 'relevant': 2, 'halfhearted': 1, 'Several': 1, 'onetime': 1, 'relative': 1, 'edgy': 1, 'anticlimactic': 1, 'supportive': 1, 'unheard': 1, 'sour': 1, 'vexed': 1, 'cut-off': 1, 'material': 2, 'professional': 1, 'earnest': 1, 'routine': 1, 'humiliating': 1, 'criminal': 2, 'goddamn': 1, 'enraged': 1, 'resounding': 1, 'consistent': 1, 'available': 2, 'unhappy': 1, 'blind': 2, 'complex': 3, 'permanent': 3, 'harsh': 3, 'cranky': 1, 'nauseous': 1, 'sleepy': 1, 'due': 3, 'uptight': 1, 'murmured': 1, 'remote': 3, 'Good': 4, 'lustful': 1, 'unappealing': 1, 'stinky': 1, 'worried': 5, 'recent': 1, 'soothing': 1, 'unusable': 1, 'requisite': 1, 'ugly': 2, 'dirty': 2, 'six-year-old': 1, 'lifeless': 1, 'parentless': 1, 'drunk': 6, 'insistent': 3, 'full-out': 1, 'barefoot': 1, 'treasured': 1, 'unpredictable': 1, 'unmanageable': 1, 'married': 2, 'abundant': 1, 'common': 3, 'twenty-five-year-old': 1, 'forced': 1, 'fancy': 1, 'beloved': 1, 'fervent': 1, 'devoid': 1, 'gorgeous': 1, 'biblical': 1, 'out-at-the-bar': 1, 'noisy': 1, 'slippery': 1, 'assistant': 2, 'two-floor': 1, 'peaceful': 1, 'lasting': 1, 'reliable': 1, 'bleak': 1, 'erudite': 1, 'ethical': 1, 'stray': 1, 'malignant': 1, 'righteous': 3, 'poor': 1, 'Deep': 1, 'erratic': 3, 'broken-down': 1, 'realistic': 1, 'concrete': 1, 'gutted-out': 2, 'Beloved': 1, 'breaking': 1, 'movable': 1, 'impregnable': 1, 'Jamaican': 1, 'morbid': 1, 'swollen': 3, 'cautious': 1, 'unspoken': 1, 'infectious': 1, 'obscure': 1, 'fouryear-old': 1, 'nighttime': 1, 'made-up': 2, 'impractical': 1, 'Unanswerable': 1, 'sympathetic': 1, 'coarse': 1, 'Unanswered': 1, 'ours': 1, 'disheveled': 2, 'ferocious': 1, 'capable': 2, 'presentable': 1, 'second-story': 1, 'childless': 2, 'unassured': 1, 'southern': 1, 'unarmed': 2, 'dry': 1, 'lemon': 1, 'outdoor': 1, 'holy': 1, 'virtual': 1, 'funeral': 5, 'lenient': 1, 'petty': 1, 'faithful': 1, 'undeclared': 1, 'polyurethaned': 1, 'gut-sprung': 1, 'uncompromising': 2, 'ninetysix': 1, 'spare': 1, 'occasional': 2, 'practical': 2, 'vile': 1, 'appropriate': 1, 'Seething': 1, 'seething': 1, 'Dawn': 4, 'overwhelmed': 1, 'fitting': 2, 'collective': 1, 'inclined': 1, 'audible': 2, 'ageless': 1, 'painful': 3, 'Amazing': 1, 'unreasonable': 1, 'unwilling': 1, 'profound': 1, 'drab': 1, 'black-and-white-tile': 1, 'slight': 1, 'mid-sized': 1, 'fractious': 1, 'required': 1, 'loath': 1, 'private': 1, 'fifth': 1, 'Careful': 1, 'satisfied': 1, 'sixth': 1, 'combined': 1, 'Annoyed': 1, 'beige': 2, 'busy': 1, 'local': 2, 'epidemic': 1, 'beleaguered': 1, 'ordinary': 1, 'terry-cloth': 2, 'Dark': 1, 'internal': 1, 'nonsensical': 1, 'sound': 1, 'seventh': 2, 'drunken': 1, 'famal': 2, 'nine-thirty': 1, 'ten-year-old': 1, 'Spanish': 2, 'unto': 1, 'worthy': 1, 'Next': 1, 'unborn': 1, 'far': 1, 'horrific': 1, 'cloudy': 1, 'self-possessed': 1, 'long-held': 1, 'seventy-eight-yearold': 1, 'rich': 2, 'one-dimensional': 1, 'taut': 1, 'tin-roofed': 1, 'prenatal': 1, 'disappointing': 1, 'conscious': 1, 'eighth': 1, 'pointless': 1, 'glorious': 2, 'straight-backed': 1, 'public': 1, 'perfunctory': 1, 'hopeless': 1, 'Innumerable': 1, 'pure': 1, 'South': 1, 'brownskinned': 1, 'adamant': 1, 'matter-of-fact': 1, 'reasonable': 1, 'up-to-date': 1, 'known': 1, 'perforated': 1, 'Few': 1, 'bare': 2, 'two-year': 1, 'basic': 1, 'Manicured': 1, 'disparate': 1, 'monumental': 1, 'legislative': 1, 'post-civil': 1, 'ash': 1, 'annoyed': 1, 'Southeast': 1, 'intense': 1, 'faraway': 1, 'romantic': 1, 'Asian': 2, 'mythic': 1, 'disjointed': 1, 'nine-year-old': 1, 'attainable': 1, 'prepared': 1, 'fearless': 1, 'hushed': 1, 'hazy': 1, 'daddy': 4, 'prying': 2, 'indignant': 1, 'inquisitive': 2, 'deadly': 1, 'pretty': 1, 'grieving': 1, 'Concerned': 1, 'darn': 1, 'twelve-week': 1, 'rival': 1, 'frustrated': 1, 'medical': 1, 'armed': 1, 'elderly': 1, 'off-duty': 1, 'lukewarm': 1, 'total': 1, 'closed': 1, 'individual': 1, 'distinguishable': 1, 'sneaky': 1, 'unformed': 1, 'unique': 1, 'unaddressed': 1, 'unrewarded': 1, 'unlabeled': 1, 'intelligent': 1, 'all-white': 1, 'eight-foot': 1, 'fresh': 1, 'main': 3, 'newfound': 1, 'correctional': 1, 'dilapidated': 1, 'Many': 1, 'reckless': 1, 'minimum': 1, 'former': 1, 'forty-foot': 1, 'barren': 2, 'fifty-five-year-old': 1, 'natural': 2, 'vast': 1, 'reprehensible': 1, 'boundless': 1, 'frenzied': 1, 'sustained': 1, 'uniform': 1, 'aware': 3, 'disfigured': 1, 'awful': 1, 'sane': 1, 'portable': 1, 'luminous': 1, 'unimaginable': 1, 'joyous': 1, 'ninth': 1, 'bloated': 1, 'methodical': 1, 'awash': 2, 'encouraged': 1, 'seventeen-year-old': 2, 'wise': 1, 'ignorant': 1, 'french': 1, 'Victorious': 1, 'numerous': 1, 'victorious': 1, 'powdered': 2, 'soggy': 1, 'windowless': 1, 'uncertain': 1, 'infamous': 1, 'no-good': 1, 'truthful': 2, 'twisted': 1, 'legal': 1, 'scattered': 1, 'various': 2, 'blinding': 1, 'hidden': 1, 'mother-child': 1, 'creative': 1, 'exact': 1, 'precise': 1, 'bent': 1, 'in-a-lifetime': 1, 'essential': 1, 'hyperbolic': 1}
Drama queen /@2003
{'prior': 1, 'brief': 1, 'beautiful': 37, 'loving': 3, 'hard': 18, 'such': 7, 'easy': 7, 'little': 47, 'first': 49, 'right': 35, 'extended': 1, 'unappreciated': 1, 'own': 25, 'particular': 2, 'official': 1, 'true': 2, 'Full': 1, 'naive': 2, 'warm': 5, 'crazy': 26, 'new': 33, 'much': 28, 'whole': 11, 'magic': 1, 'grateful': 7, 'inevitable': 2, 'funny': 16, 'good': 85, 'ruthless': 1, 'pro-bono': 1, 'local': 2, 'overnight': 1, 'rugged': 1, 'small': 31, 'same': 23, 'senior': 1, 'past': 13, 'sleepy': 2, 'intellectual': 1, 'entire': 16, 'shocked': 4, 'regular': 4, 'dark': 12, 'exact': 2, 'second': 12, 'thick': 11, 'few': 46, 'western': 1, 'mechanical': 1, 'female': 6, 'sure': 39, 'wrong': 47, 'big': 38, 'scalding': 1, 'full': 27, 'quiet': 8, 'upper': 1, 'heavy': 2, 'extra': 6, 'hot': 8, 'light': 7, 'high': 6, 'burnt': 1, 'only': 22, 'crumpled': 1, 'apparent': 1, 'other': 78, 'physical': 2, 'glad': 15, 'duffel': 1, 'throbbing': 1, 'drunk': 3, 'swollen': 1, 'great': 11, 'red': 13, 'ready': 54, 'stupid': 3, 'bald': 4, 'similar': 1, 'ant': 1, 'present': 1, 'smart': 5, 'Lonely': 5, 'startling': 2, 'double': 6, 'single': 4, 'black': 11, 'man-less': 1, 'convinced': 2, 'attractive': 4, 'enthused': 1, 'inside': 1, 'broken': 2, 'bad': 22, 'okay': 70, 'old': 12, 'shortcropped': 1, 'curvaceous': 1, 'brown': 4, 'confused': 1, 'athletic': 1, 'dimpled': 1, 'pretty': 5, 'nice': 21, 'long': 21, 'familiar': 4, 'next': 52, 'Happy': 8, 'quick': 10, 'fake': 3, 'mad': 30, 'sick': 10, 'Damn': 9, 'sexy': 8, 'weak': 3, 'safe': 5, 'green': 3, 'damn': 3, 'jealous': 4, 'uncommitted': 1, 'cordless': 4, 'serious': 7, 'wild': 1, 'young': 9, 'real': 23, 'cute': 12, 'interested': 4, 'happy': 15, 'fancy-free': 1, 'free': 4, 'last': 35, 'nonchalant': 1, 'deep': 25, 'early': 4, 'busy': 6, 'noticeable': 2, 'self-conscious': 1, 'fine': 30, 'disturbing': 1, 'Wonder': 1, 'Beautiful': 13, 'distant': 3, 'low': 2, 'usual': 2, 'dead': 7, 'alright': 3, 'well-known': 2, 'tilted': 2, 'alternative': 1, 'steady': 1, 'cooking': 1, 'cluttered': 2, 'south': 1, 'enough': 10, 'intelligent': 4, 'sensual': 2, 'glossy': 1, 'male': 3, 'blue': 11, 'lucky': 6, 'loud': 6, 'manicured': 2, 'sorry': 31, 'dim': 2, 'top': 6, 'impressed': 3, 'huge': 11, 'simple': 2, 'delicious': 1, 'silly': 1, 'large': 5, '32-inch': 1, 'sectional': 1, 'sunken': 1, 'gorgeous': 5, 'African': 2, 'further': 1, 'king-sized': 1, 'favorite': 3, 'flat': 2, 'far': 1, 'grand': 2, 'historical': 1, 'Nice': 8, 'separate': 1, 'harmless': 1, 'beige': 1, 'worth': 5, 'several': 6, 'white': 15, 'longstemmed': 1, 'elaborate': 2, 'impeccable': 1, 'empty': 10, 'Sweet': 1, 'fresh': 2, 'garlic': 1, 'tasty': 1, 'witty': 1, 'strawberry-topped': 1, 'fabulous': 1, 'formal': 1, 'culinary': 2, 'soft': 5, 'cold': 11, 'paranoid': 2, 'supple': 1, 'magnificent': 1, 'Ready': 2, 'Sorry': 1, 'comfortable': 6, 'conscious': 2, 'bent': 5, 'onion': 1, 'embarrassed': 3, 'thin': 1, 'circular': 1, 'left': 2, 'certain': 2, 'gentle': 1, 'special': 5, 'firm': 1, 'amazing': 1, 'arched': 2, 'alluring': 1, 'back': 9, 'mental': 5, 'sweet': 3, 'slow': 4, 'late': 6, 'Good': 7, 'sexual': 2, 'handy': 1, 'unprotected': 1, 'nosy': 1, 'no-good': 1, 'tired': 15, 'third': 3, 'casual': 1, 'complete': 1, 'varied': 1, 'worried': 4, 'spare': 2, 'diva-fied': 1, 'funky': 3, 'short': 7, 'public': 1, 'Bout': 1, 'comic': 1, 'Cute': 2, 'husky': 1, 'ok': 1, 'pregnant': 26, 'pink': 7, 'important': 1, 'Go-Go': 2, 'raggedy': 1, 'emotional': 2, 'plastic': 4, 'depressed': 3, 'horrid': 1, 'Ten-fifteen': 1, 'available': 1, 'possible': 5, 'foolproof': 1, 'vaginal': 1, 'odd': 1, 'uncomfortable': 3, 'positive': 1, 'many': 7, 'able': 6, 'due': 11, 'stunned': 4, 'one-night': 4, 'surprised': 3, 'scared': 1, 'unplanned': 2, 'sisterly': 1, 'irresponsible': 2, 'rid': 3, 'relieved': 2, 'Senior': 1, 'routine': 1, 'cordial': 1, 'irritated': 1, 'lavish': 1, 'mine': 4, 'raw': 1, 'rational': 1, 'prime': 2, 'front': 8, 'Next': 2, 'deceitful': 1, 'pleased': 3, 'skinned': 1, 'goddamn': 1, 'furious': 3, 'unable': 1, 'polite': 2, 'calm': 4, 'motionless': 1, 'final': 5, 'rough': 1, 'disrespectful': 1, 'respectable': 3, 'proud': 8, 'grown': 2, 'fifteen-year-old': 1, 'facial': 1, 'perfect': 12, 'sound': 2, 'unemployed': 1, 'married': 3, 'honest': 2, 'decent': 3, 'wet': 3, 'remote': 1, 'expensive': 2, 'open': 15, 'tall': 4, 'cool': 16, 'suspicious': 2, 'strange': 2, 'callous': 1, 'broad': 1, 'natural': 4, 'responsible': 1, 'outta': 1, 'pathetic': 2, 'different': 8, 'stressed': 2, 'well-worn': 1, 'elderly': 1, 'occasional': 1, 'key': 4, 'Several': 1, 'former': 1, 'located': 1, 'dark-skinned': 1, 'additional': 2, 'differential': 1, 'concerned': 1, 'ninety-day': 1, 'fat': 7, 'petite': 1, 'remembered': 1, 'street-smart': 1, 'sneaky': 1, 'glowing': 2, 'hyped': 1, 'Other': 1, 'fierce': 1, 'incredible': 1, 'tank-like': 1, 'adoring': 1, 'nauseous': 1, 'disappointed': 2, 'Big': 2, 'sudden': 5, 'chocolate': 2, 'opposite': 3, 'engrossing': 1, 'clad': 1, 'daring': 1, 'total': 1, 'straight': 3, 'relevant': 1, 'close': 2, 'professional': 1, 'gooey': 1, 'grilled': 1, 'baked': 1, "ol'": 1, 'nother': 1, 'stable': 3, 'encouraging': 1, 'birthing': 1, 'genuine': 1, 'digital': 1, 'personal': 1, 'electrical': 1, 'joint': 2, 'everyday': 1, 'healthy': 2, 'Fourth': 4, 'else': 3, 'afraid': 1, 'poor': 1, 'striped': 1, 'sleeveless': 2, 'vain': 2, 'twisted': 1, 'live': 2, 'well-decorated': 1, 'frying': 1, 'merry': 1, 'heavy-set': 1, 'gay': 1, 'excellent': 1, 'tight': 4, 'dry': 2, 'current': 1, 'frozen': 2, 'Cool': 1, 'psychotic': 1, 'massive': 1, 'colorful': 1, 'outside': 6, 'bright': 2, 'predictable': 1, 'plump': 1, 'wan': 2, 'Quit': 4, 'average': 1, 'frosted': 1, 'strong': 5, 'sinful': 1, 'unannounced': 1, 'sad': 2, 'flirtatious': 1, 'excited': 1, 'overwhelming': 1, 'rotten': 1, 'Old': 1, 'upset': 3, 'friendly': 1, 'original': 2, 'fitting': 2, 'cornball': 2, 'clean': 3, 'eternal': 1, 'ugly': 2, 'denim': 1, 'hundred-dollar': 2, 'childless': 1, 'private': 2, 'unexpected': 1, 'guest': 1, 'ashamed': 2, 'secret': 1, 'compatible': 1, 'trim': 2, 'absent': 1, 'correct': 2, 'fast': 3, 'yeah': 1, 'pitiful': 1, 'hungry': 4, 'Tired': 2, 'miserable': 2, 'Miserable': 1, 'yellow': 1, 'welcoming': 1, 'surprising': 1, 'classical': 1, 'True': 1, 'trifling': 3, 'obnoxious': 1, 'wicked': 1, 'evil': 1, 'hurtful': 1, 'rolling': 1, 'watery': 1, 'terminal': 1, 'pre-registered': 1, 'appropriate': 1, 'active': 3, 'False': 2, "li'l": 1, 'comfy': 1, 'future': 1, 'mean': 1, 'Enjoy': 1, 'careful': 1, 'false': 1, 'epidural': 1, 'splitting': 1, 'wide': 1, 'Little': 3, 'umbilical': 2, 'tiny': 5, 'pro': 1, 'corny': 1, 'precious': 3, 'worthy': 1, 'thankful': 1, 'crabby': 1, 'elegant': 1, 'alleged': 1, 'cheerful': 1, 'fancy': 1, 'Sure': 2, 'Quiet': 1, 'significant': 1, 'willing': 3, 'confusing': 1, 'foggy': 1, 'faint': 1, 'frustrated': 3, 'flattered': 1, 'call': 1, 'loose': 1, 'angry': 1, 'Understand': 1, 'attentive': 1, 'scheming': 1, 'retarded': 1, 'relative': 1, 'intense': 2, 'plenty': 1, 'specific': 1, 'productive': 1, 'successful': 2, 'unscheduled': 1, 'handwritten': 1, 'ten-thirty': 1, 'chubby': 1, 'pre-pregnancy': 1, 'festive': 1, 'well-rounded': 1, 'undressed': 2, 'naked': 2, 'steamy': 1, 'fluffy': 1, 'prepared': 2, 's-l-o-w': 1, 'compact': 1, 'Chinese': 2, 'sheer': 1, 'post-shopping': 1, 'weird': 1, 'dazed': 1, 'revolving': 1, 'verbatim': 1, 'smooth': 2, 'eventful': 1, 'whining': 2, 'Long': 2, 'hateful': 2, 'tripping': 1, 'foolish': 1, 'dumb': 4, 'mindful': 2, 'content': 1, 'feisty': 1, 'musical': 1, 'gold': 1, 'heart-shaped': 1, 'cashmere': 1, 'proper': 1, 'bottom': 2, 'off': 1, 'multi-purpose': 1, 'awesome': 1, 'persistent': 1, 'strapped': 1, 'unique': 1, 'major': 1, 'later': 2, 'oriental': 1, 'erotic': 1, 'painful': 1, 'nude': 1, 'unknown': 1, 'feverish': 1, 'gotdamn': 1, 'uneducated': 1, 'wonderful': 2, 'so-called': 1, 'Corporate': 1, 'threatening': 3, 'toll-free': 1, 'unfortunate': 1, 'federal': 1, 'muscular': 1, 'operative': 1, 'nasty': 2, 'dangerous': 1, 'forlorn': 1, 'livid': 1, 'handsome': 1, 'adjoining': 1, 'faithful': 1, 'comforting': 1, 'hush-hush': 1, 'common': 1, 'valid': 1, 'shadowy': 1, 'slim': 1, 'paramedic': 1, 'clear': 1, 'foreign': 1, 'intensive': 1, 'solemn': 1, 'critical': 2, 'Korean': 1, 'nearby': 1, 'Typical': 1, 'terrible': 1, 'me-time': 1, 'hard-working': 1, 'part-time': 1, 'drama-filled': 2, 'permanent': 1, 'deserving': 1, 'ignorant': 1, 'unavailable': 1, 'hectic': 1, 'Bad': 1, 'personalized': 1, 'crowded': 1, 'dumbfounded': 1, 'firstborn': 1, 'forceful': 1, 'piercing': 1, 'double-checked': 1, 'momentous': 1, 'Oriental': 1, 'sleep-like': 1, 'paced': 1, 'satisfied': 1}
A short walk /@2006
{'Short': 17, 'Classic': 1, 'critical': 5, 'electronic': 1, 'brief': 3, 'blue': 40, 'good': 165, 'work-hardened': 1, 'strong': 18, 'keen': 3, 'comforting': 1, 'brown': 34, 'dull': 3, 'velvety': 2, 'lean': 10, 'fried': 2, 'white': 293, 'great': 31, 'other': 158, 'glory-covered': 1, 'speckled': 1, 'big': 48, 'own': 83, 'comfortable': 5, 'bushy': 3, 'nice': 31, 'stand-up': 1, 'long': 40, 'thick': 5, 'same': 46, 'black': 165, 'new': 59, 'much': 56, 'little': 98, 'dopted': 1, 'kinda': 2, 'well-off': 6, 'many': 58, 'light': 15, 'free': 43, 'four-eyed': 1, 'sweet': 37, 'short': 29, 'dead': 35, 'rude': 9, 'old': 78, 'bringin': 2, 'easy': 20, 'next': 42, 'fine': 41, 'cripple': 3, 'able': 26, 'hard': 72, 'tiny': 3, 'fresh': 17, 'wrong': 40, 'weak': 8, 'ready': 45, 'half': 5, 'alive': 12, 'hollow': 3, 'Sure': 7, 'hot': 33, 'wooden': 9, 'salty': 2, 'skinny': 1, 'purple': 12, 'long-legged': 1, 'graceful': 1, 'clear': 13, 'limp': 2, 'warm': 5, 'threadbare': 2, 'silvery': 2, 'gaunt': 1, 'sharp': 4, 'Unbleached': 1, 'righteous': 1, 'last': 56, 'thricepatched': 1, 'live': 8, 'friendly': 7, 'tall': 14, 'cool': 4, 'tight': 10, 'hand-me-down': 1, 'Sad-faced': 1, 'several': 8, 'narrow': 10, 'golden': 12, 'black-edged': 1, 'red-brown': 1, 'coeur': 1, 'refreshing': 1, 'quiet': 17, 'storybook': 1, 'bright': 11, 'small': 28, 'dusty': 3, 'fat': 7, 'Indian': 7, 'few': 57, 'pink': 13, 'straight': 8, 'sad': 13, 'French': 5, 'rickety': 4, 'high': 36, 'red': 32, 'snowy': 3, 'proper': 8, 'responsible': 4, 'low': 12, 'gurgling': 1, 'worth': 2, 'muckty-muck': 1, 'fast': 6, 'sorry': 26, 'dry-long-so': 2, 'thin': 4, 'sole': 1, 'familiar': 5, 'fuzzy': 1, 'Dog-nanny': 1, 'dumb': 10, 'lovely': 25, 'poor': 55, 'bountiful': 1, 'grown': 7, 'wide': 12, 'dognanny': 1, 'sorrowful': 1, 'grudging': 1, 'left': 10, 'smart': 8, 'open': 36, 'mute': 1, 'grand': 10, 'varnished': 1, 'fortyfive': 1, 'delicate': 3, 'Iess-than-comfortable': 1, 'snaggletoothed': 1, 'dry': 10, 'right': 50, 'beautiful': 16, 'immaculate': 2, 'near-yet-far-away': 1, 'scalding': 1, 'peaceful': 2, 'bad': 31, 'hoarse': 1, 'mysterious': 6, 'sound': 6, 'fortunate': 3, 'weatherbeaten': 2, 'givin': 2, 'wild': 17, 'newspaper-wrapped': 1, 'satin': 4, 'minstrel': 2, 'gray': 13, 'yellow': 9, 'mulatto': 3, 'agate': 2, 'First': 4, 'secret': 9, 'unreasonable': 1, 'crowded': 2, 'such': 45, 'daily': 6, 'bewildered': 2, 'perpetual': 1, 'dark': 38, 'pained': 1, 'humble': 8, 'worldly': 2, 'crumpled': 2, 'seye': 1, 'resigned': 1, 'secondhand': 3, 'inner': 2, 'gnarled': 1, 'inferior': 1, 'fearful': 3, 'sin-debt': 1, 'stiff': 2, 'cold': 13, 'everlasting': 1, 'grim': 2, 'floral': 1, 'early': 15, 'stupid': 3, 'lonesome': 11, 'young': 46, 'future': 7, 'loving': 5, 'pregnant': 6, 'distant': 4, 'deep': 15, 'relieved': 2, 'separate': 11, 'first': 88, 'past': 17, 'blind': 4, 'only': 33, 'dispossessed': 1, 'giant': 2, 'silent': 7, 'lonely': 8, 'blocked-a': 1, 'sing-song': 1, 'full': 50, 'tidal': 1, 'cross-a': 2, 'bare': 4, 'soothing': 4, 'special': 16, 'Dull': 1, 'hungry': 13, 'strapping': 1, 'perfect': 11, 'heavy': 9, 'extra': 10, 'sin-a': 2, 'forgive-a': 1, 'white-gloved': 1, 'yellowed': 1, 'ten-year-old': 1, 'knotted': 1, 'rehearsed': 1, 'four-year-old': 1, 'cobblestoned': 1, 'hop-up-anddown-on-the-curbstone': 1, 'triumphant': 2, 'pale': 7, 'private': 19, 'mystified': 1, 'glad': 45, 'proud': 10, 'yay-men': 1, 'ashamed': 15, 'happy': 14, 'weary': 11, 'solid': 3, 'minute': 1, 'leafy': 1, 'large': 27, 'perfumed': 2, 'Good': 9, 'afraid': 15, 'heavyhanded': 1, 'public': 13, 'slack': 1, 'mean': 7, 'rich': 17, 'cruel': 5, 'red-faced': 1, 'mother-of-pearl': 2, 'double': 15, 'overpressed': 1, 'damp': 3, 'orange': 5, 'show-off': 1, 'true': 23, 'roasted': 1, 'celluloid': 1, 'natural': 7, 'busy': 6, 'mad': 14, 'year-a': 1, 'seedy': 1, 'noisy': 3, 'broad': 2, 'eight-piece': 1, 'scary': 3, 'noonday': 1, 'ole': 1, 'second': 17, 'gut-bucket': 1, 'slick': 5, 'baggy': 1, 'tinkling': 1, 'dandy': 1, 'big-knuckled': 1, 'foot-patting': 1, 'Black': 37, 'ruckstafructious': 1, 'taut': 1, 'suggestive': 2, 'Mandy-the-cook': 1, 'east': 2, 'false': 7, 'slow': 7, 'well-press': 1, 'nigh': 2, 'elevated': 3, 'casual': 5, 'sparkling': 5, 'gleaming': 2, 'famous': 6, 'jeweled': 5, 'top': 19, 'fancy': 6, 'flat': 10, 'whirling': 2, 'disinterested': 2, 'well-todo': 1, 'solemn': 3, 'well-to-do': 18, 'jangling': 1, 'laughing': 1, 'side': 1, 'professional': 5, 'magnificent': 3, 'assorted': 1, 'rear': 2, 'Rear': 1, 'hushed': 4, 'silky': 2, 'over-powdered': 1, 'shapely': 1, 'tolerant': 1, 'back': 35, 'tawdry': 2, 'half-amused': 1, 'benevolent': 1, 'goodly': 1, 'certain': 11, 'interested': 8, 'polite': 5, 'fancy-women': 3, 'Irish': 11, 'after-dinner': 1, 'close': 12, 'broad-brimmed': 1, 'funny': 5, 'subtle': 1, 'well-to-do-white-folks': 1, 'moneyed': 1, 'pleased': 4, 'outright': 2, 'hopeful': 2, 'Little': 3, 'promising': 1, 'Prosperous': 1, 'strutting': 1, 'high-stepping': 1, 'bottom': 1, 'beloved': 4, 'no-applause-please': 1, 'steady': 7, 'off-again': 1, 'knee-length': 1, 'Bland': 2, 'festive': 1, 'darktown': 1, 'on-and': 1, 'immortal': 1, 'Dark': 3, 'Ross-a-jass': 5, 'sure': 27, 'far-off': 1, 'prone': 1, 'ferocious': 1, 'fat-bellied': 1, 'final': 8, 'bent': 5, 'whole': 10, 'shy': 4, 'double-aisled': 1, 'metallic': 3, 'twinkling': 1, 'huge': 8, 'fierce': 2, 'coon': 1, 'coon-stew': 1, 'compassionate': 1, 'Fine': 1, 'crude': 2, 'soft': 7, 'patched': 1, 'general': 11, 'shimmering': 1, 'wicked': 5, 'rare': 5, 'crimped': 1, 'fluffy': 1, 'Many': 9, 'gracious': 1, 'evil': 5, 'African': 48, 'ugly': 6, 'uppity': 2, 'exotic': 1, 'thoughtful': 2, 'restful': 3, 'lively': 2, 'plenty': 8, 'simple': 1, 'useful': 1, "n'tcha": 5, 'sunreddened': 1, 'scathing': 1, 'trompled': 1, 'half-eaten': 1, 'timid': 1, 'stoney-eyed': 1, 'loud': 7, 'respectful': 2, 'four-foot': 1, 'untouched': 3, 'scornful': 9, 'poor-white': 1, 'vain': 1, 'life-size': 1, 'outside': 10, 'well-pitched': 1, 'middle': 6, 'equal': 5, 'patriotic': 3, 'faint': 7, 'quick': 5, 'Confederate': 1, 'American': 44, 'pretend': 3, 'watchful': 2, 'melancholy': 1, 'cute': 5, 'late': 15, 'cranky': 3, 'Heavyhearted': 1, 'safe': 5, 'tired': 6, 'strange': 10, 'drunk': 13, 'poke-bonnet': 1, 'Sullen': 1, 'explanatory': 1, 'unhappy': 2, 'sick': 14, 'torn': 2, 'angry': 16, 'unexpected': 1, 'impatient': 2, 'Rossa-jass': 1, 'Sober': 2, 'real': 12, 'bloodstained': 1, 'willin': 6, 'Glad': 3, 'comic': 2, 'injured': 3, 'bloody': 9, 'high-pitched': 1, 'very': 3, 'neat': 6, 'two-burner': 1, 'direct': 3, 'Happy': 2, 'Such': 2, 'fourth': 6, 'rotten': 2, 'rusting': 1, 'healthy': 2, 'fast-growing': 1, 'four-room': 2, 'inside': 3, 'helter-skelter': 1, 'washin': 2, 'bleached': 2, 'round': 7, 'seasoned': 1, 'possible': 5, 'sassy': 1, 'fit': 1, 'clean': 27, 'sunny': 1, 'worn': 2, 'pain-ridden': 1, 'neatly-made': 1, 'elderly': 4, 'yall': 4, 'precious': 3, 'plentiful': 1, 'terrible': 11, 'nough': 3, 'grubby': 1, 'decent': 9, 'unquestioning': 1, 'wise': 5, 'hem-sewing': 1, 'stubborn': 3, 'Italian': 2, 'ruddy': 1, 'visible': 2, 'scant': 1, 'human': 3, 'flyspecked': 1, 'bearded': 1, 'green': 17, 'split-back': 1, 'German': 3, 'coverless': 1, 'medical': 1, 'monster-headed': 1, 'Complete': 2, 'dirty': 6, 'gold-leaf': 1, 'present': 18, 'genteel': 2, 'fifty-cent': 2, 'split': 1, 'blue-back': 1, 'intellectual': 5, 'damaged': 2, 'fancy-speaking': 1, 'valuable': 1, 'kind': 5, 'generous': 4, 'hesitant': 1, 'sympathetic': 1, 'True': 6, 'Excellent': 1, 'important': 13, 'empty': 7, 'odd': 1, 'miscellaneous': 1, 'stunned': 1, 'blank': 1, 'toppa': 1, 'nother': 1, 'weightless': 1, 'cultural': 3, 'inspirational': 2, 'social': 12, 'rash': 2, 'grave': 2, 'finishing': 1, 'regular': 5, 'high-up': 1, 'Midsummer': 2, 'Certain': 2, 'bleak': 1, 'normal': 2, 'unusual': 3, 'political': 9, 'pre-arranged': 1, 'prosperous': 8, 'eager': 5, 'hand-tailored': 1, 'maiden': 2, 'independent': 3, 'Overseas': 1, 'different': 18, 'all-white': 1, 'monthly': 6, 'conservative': 1, 'constant': 6, 'grieved': 1, 'intact': 1, 'squashed': 1, 'exclamation': 1, 'unfortunate': 1, 'popular': 3, 'gentle': 4, 'attention-getting': 1, 'complicated': 1, 'carpet-covered': 1, 'Kojie': 4, 'circular': 1, 'ripe': 1, 'stormy': 1, 'earthward': 1, 'thankful': 3, 'elusive': 1, 'imaginary': 2, 'troubled': 1, 'lettum': 1, 'purple-velvet': 1, 'hostile': 2, 'Outside': 2, 'upward': 1, 'brash': 2, 'oughta': 1, 'hung': 1, 'loaded': 1, 'nasty': 4, 'wounded': 1, 'crazy': 16, 'unchained': 3, 'rusty': 2, 'main': 3, 'rural': 2, 'fiery': 2, 'needy': 1, 'awful': 6, 'overseas': 2, 'Further': 4, 'practical': 3, 'Christian': 7, 'eighth': 3, 'missionary': 1, 'earthly': 1, 'lowcut': 4, 'wavy': 1, 'benighted': 1, 'Chinese': 8, 'highpriced': 1, 'Hard': 7, 'distinct': 1, 'Japanese': 3, 'stale': 3, 'filthy': 2, 'musical': 2, 'front': 12, 'homeless': 2, 'barefoot': 1, 'wet': 10, 'naked': 10, 'miss-meal': 1, 'playin': 2, 'careful': 5, 'forty-year': 1, 'virgin': 4, 'gettin': 6, 'Squeeze-gut': 6, 'soapy': 1, 'wonderin': 1, 'fair': 5, 'sickly': 1, 'sayin': 2, 'Ole': 1, 'tough': 6, 'knock-off': 1, 'talcum-faced': 1, 'profitable': 1, 'tempting': 1, 'git-box': 1, 'Damn': 4, 'sociable': 1, 'Renegade': 1, 'entire': 2, 'damn': 7, 'bitter': 5, 'understandin': 1, 'red-shaded': 1, 'Looli': 40, 'dead-end': 1, 'Stray': 1, 'splitting': 1, 'pierced': 1, 'red-hot': 1, 'weekly': 2, 'ever-hungry': 1, 'laden': 4, 'fightin': 1, 'legal': 13, 'welcome': 5, 'motherless': 1, 'thirsty': 2, 'gray-eyed': 1, 'vinegar-and-water': 1, 'clever': 1, 'short-handed': 1, 'unbearable': 1, 'ill': 2, 'fitting': 4, 'starchy': 1, 'various': 2, 'hopeless': 1, 'lucky': 2, 'empty-handed': 4, 'grateful': 5, 'offa': 1, 'sweaty': 3, 'shameful': 2, 'illegal': 5, 'tantalizing': 1, 'fragile': 1, 'scarlet': 1, 'fruit-filled': 1, 'brown-paper-and-vinegar': 1, 'potted': 2, 'good-news': 1, 'serious': 4, 'dependable': 2, 'palm-leaf': 1, 'distinguished': 2, 'dignified': 3, 'Christ-like': 1, 'dyin': 4, 'fearin': 1, 'well-fixed': 1, 'hunch-shouldered': 1, 'performin': 1, 'Several': 5, 'worthwhile': 1, 'cane-back': 1, 'mortal': 3, 'handsome': 9, 'wearin': 5, 'stern': 4, 'raspy': 1, 'seamless': 1, 'sinful': 2, 'mighty': 4, 'chalk-striped': 1, 'Ah-yah-yah': 3, 'speechless': 1, 'unable': 3, 'holy': 5, 'hush': 1, 'Yah-yah': 1, 'wavin': 2, 'rough': 7, 'enough': 16, 'holdin': 2, 'childish': 1, 'five-room': 5, 'bein': 4, 'put': 1, 'funeral': 2, 'cautious': 3, 'Other': 4, 'wrung-out': 1, 'tuck-tail': 4, 'uneasy': 4, 'silly': 3, 'full-time': 4, 'paregoric': 5, 'favorite': 3, 'mine': 2, 'gold-fill': 1, 'smooth': 4, 'selfish': 1, 'harsh': 2, 'White-only': 1, 'lemon': 2, 'theirs': 2, 'cryin': 1, 'lowdown': 1, 'mean-lookin': 1, 'crooked': 3, 'redblooded': 1, 'somethin': 1, 'nigga': 18, 'wooded': 1, 'gold': 3, 'rinse': 1, 'likely': 5, 'opposite': 6, 'salt-and-pepper': 1, 'shiny': 4, 'wild-ass': 1, 'slight': 1, 'long-sleeved': 1, 'sandy': 1, 'Gold-eyes': 7, 'captive': 1, 'sa-matta': 1, 'puny': 1, 'armed': 2, 'Decent': 1, 'supportin': 2, 'Yall': 1, 'strict': 1, 'showin': 1, 'wonderful': 2, 'single': 5, 'womanish': 1, 'nightly': 1, 'foldin': 1, 'midwife/nurse': 1, 'helpin': 1, 'twin': 1, 'half-moon': 1, 'magic': 4, 'Affikan': 1, 'humpback': 1, 'seventy-yearold': 1, 'daring': 2, 'bold': 2, 'tailor-made': 1, 'striped': 3, 'shell-framed': 1, 'particular': 10, 'doin': 4, 'wellfurnished': 1, 'baked': 2, 'pre': 1, 'sensitive': 2, 'packed': 4, 'fond': 4, 'recent': 1, 'immediate': 3, 'striking': 1, 'oval': 1, 'moustached': 1, 'former': 1, 'sorta': 2, 'picky': 2, 'flowered': 3, 'fourteen-carat': 1, 'genuine': 1, 'married': 7, 'smoked': 3, 'concerned': 2, 'over-stuffed': 1, 'sudden': 2, 'sit-up': 1, 'frightened': 1, 'spotless': 1, 'Kojie-daddy': 8, 'drunken': 1, 'hardened': 2, 'bawdy': 1, 'starched': 3, 'unspoiled': 2, 'jealous': 7, 'burnable': 1, 'handy': 1, 'flush': 1, 'pretty': 7, 'icky': 1, 'shortsleeved': 1, 'unnatural': 2, 'innocent': 2, 'thirdhand': 1, 'love-cherry': 1, 'enjoyin': 1, 'musta': 1, 'Great': 3, 'just': 2, 'mountain-top': 1, 'over': 4, 'daddy': 2, 'Second': 2, 'Sweet': 4, 'heartfelt': 1, 'Next': 2, 'one-fifty': 1, 'unpleasant': 1, 'good-natured': 1, 'silver': 1, 'three-fourths': 1, 'ricky-ticky': 1, 'Large': 1, 'colored': 1, 'street-repairing': 1, 'black-and-white-striped': 1, 'one-word': 1, 'dizzy': 3, 'mule-drawn': 1, 'better-lookin': 1, 'cloudy': 1, 'servin': 1, 'surprised': 2, 'guilty': 2, 'call': 3, 'held-back': 1, 'low-rate': 1, 'smug': 1, 'amusing': 1, 'Dirty': 2, 'almost-finished': 1, 'Nasty': 1, 'nasty-mouthed': 1, 'loose': 7, 'beaded': 3, 'brandied': 1, 'unkept': 1, 'decaying': 1, 'knowin': 3, 'callin': 2, 'lanky': 1, 'Vilets': 1, 'Big': 2, 'well-cut': 1, 'comin': 5, 'thirteen-year-old': 2, 'coffee-and-cream': 1, 'plump': 2, 'blowin': 1, 'overhead': 1, 'gritty': 1, 'jobless': 1, 'sizable': 1, 'Hush': 2, 'revolving': 1, 'three-piece': 1, 'beveled': 1, 'overstuffed': 1, 'dark-red': 1, 'tasselled': 1, 'abloom': 1, 'matching': 1, 'Oriental': 4, 'cut-glass': 2, 'bookish': 1, 'Illegal': 1, 'doubtful': 1, 'dinin-car': 1, 'theatrical': 6, 'house-rent': 3, 'full-grown': 1, 'select': 1, 'common': 4, 'sincere': 1, 'wideopen': 1, 'anxious': 1, 'elegant': 3, 'respectable': 4, 'knife-sharp': 1, 'Plump': 1, 'top-class': 1, 'cutthroat': 1, 'shoe-parlor': 1, 'overnight': 2, 'eight-thirty': 1, 'raw': 3, 'mellow': 1, 'engraved': 1, 'highball': 1, 'Cuban': 5, 'wealthy': 2, 'machine-made': 1, 'ladylike': 2, 'cavalier': 1, 'motherly': 1, 'girlish': 1, 'Nappy': 22, 'portly': 2, 'senior': 2, 'Canadian': 1, 'pomaded': 1, 'Protective': 2, 'blue-and-gold': 2, 'woolen': 1, 'talkin': 1, 'followin': 1, 'Bought': 1, 'intelligent': 1, 'one-way': 1, 'sensible': 1, 'finer': 2, 'wanta': 4, 'pure': 2, 'Soft': 1, 'aheada': 1, 'Five-card': 1, 'five-card': 2, 'dead-serious': 1, 'true-blue': 1, 'seven-card': 1, 'restless': 2, 'Tough': 1, 'sore': 5, 'shamefaced': 1, 'Stringy-haired': 1, 'shocked': 1, 'straightforward': 3, 'honest': 2, 'annoyed': 2, 'tender-hearted': 1, 'horse-drawn': 2, 'hand-drawn': 1, 'curious': 2, 'interestin': 1, 'ruthless': 1, 'ordinary': 2, 'sugary': 1, 'mah-jong': 1, 'puffed': 1, 'purgatory': 1, 'oriental': 1, 'eternal': 1, 'blueand-white': 1, 'gold-andwhite': 1, 'blue-and-white': 2, 'transparent': 1, 'sliced': 2, 'Calypso': 2, 'closed': 4, 'turned-back': 1, 'trimmin': 1, 'open-air': 1, 'uptown': 3, 'jagged': 1, 'goldy-brown': 1, 'further': 2, 'due': 4, 'after-hour': 1, 'all-round': 1, 'shortsighted': 1, 'terse': 1, 'Wonder': 2, 'British': 8, 'sober': 2, 'surgical': 1, 'fanatic': 1, 'perky': 1, 'after-hours': 1, 'unscarred': 1, 'three-room': 1, 'unprepared': 1, 'gaping': 2, 'trained': 1, 'cardtable': 1, 'handwritten': 4, 'magical': 1, 'Same': 1, 'ambitious': 2, 'racist': 9, 'electric': 3, 'crimpy': 1, 'center-parted': 1, 'remembered': 1, 'clannish': 1, 'crinkly': 1, 'undue': 1, 'hand-counted': 1, 'crisp': 3, 'wiry': 1, 'awkward': 1, 'trashy': 2, 'foolish': 4, 'tattered': 3, 'two-page': 1, 'surefire': 1, 'well-dressed': 2, 'Danish': 1, 'outer': 2, 'well-known': 1, 'necessary': 2, 'braided': 1, 'surly': 1, 'hard-earned': 1, 'intense': 1, 'mischievous': 1, 'ignorant': 2, 'vigorous': 1, 'irrepressible': 1, 'Long': 2, 'black-white': 1, 'mere': 1, 'flimsy': 1, 'milk-and-water': 1, 'universal': 3, 'content': 1, 'Congolese': 1, 'cowardly': 1, 'shabby': 2, 'national': 4, 'greasy': 1, 'commercial': 1, 'primitive': 1, 'Full': 1, 'seafaring': 1, 'British-registered': 3, 'worried': 4, 'American-registered': 1, 'foolin': 1, 'marital': 1, 'ours': 2, 'fish-hook': 3, 'plumed': 1, 'correct': 1, 'cross-legged': 1, 'Star': 2, 'hand-painted': 2, 'embroidered': 3, 'white-onwhite': 1, 'Spanish': 1, 'hand-knotted': 1, 'impossible': 6, 'labored': 1, 'pompous': 1, 'expensive': 2, 'airish': 1, 'eight-button': 1, 'mannish': 1, 'takin': 4, 'touchous': 2, 'hurtful': 1, 'endless': 2, 'eight-man': 1, 'standin': 2, 'Countless': 1, 'turned-out': 1, 'yellow-brown': 1, 'lookin': 2, 'rattlin': 1, 'organizational': 2, 'Jamaican': 2, 'half-stuffed': 1, 'invincible': 1, 'good-sized': 1, 'forgivin': 1, 'clawfoot': 1, 'la-la': 1, 'roomy': 1, 'Fast': 1, 'unbuttoned': 1, 'uniform': 1, 'hull': 1, 'tiresome': 1, 'official': 1, 'swollen': 1, 'custom-made': 1, 'one-piece': 1, 'high-fashion': 1, 'irritated': 1, 'exertin': 1, 'tape-covered': 1, 'attendant': 8, 'female': 9, 'unpack': 1, 'assistant': 1, 'chronic': 1, 'dependent': 1, 'recruitin': 1, 'clawfooted': 1, 'buttonless': 1, 'blue-lace': 2, 'gold-framed': 2, 'formal': 4, 'English': 1, 'joyful': 3, 'so-be-its': 1, 'Ibo': 1, 'delicious': 1, 'staunch': 1, 'frequent': 1, 'impressive': 2, 'meltin': 1, 'rain-clean': 1, 'tropical': 1, 'slim': 1, 'windswept': 1, 'lightcomplexioned': 1, 'canopied': 1, 'mannerly': 1, 'uncomfortable': 4, 'stingy': 2, 'Last': 3, 'wireless': 1, 'uniformed': 1, 'half-closed': 1, 'classy': 2, 'thirty-five': 1, 'ragged': 2, 'perk': 1, 'perfumey': 1, 'religious': 1, 'ice-cold': 1, 'downtrodden': 2, 'Catholic': 4, 'losin': 2, 'back-to-Africa': 1, 'UNIA': 2, 'cuttin': 2, 'pessary': 1, 'spendin': 1, 'flashy': 1, 'white-uniformed': 1, 'desperate': 1, 'thirty-mile': 1, 'High': 1, 'unopened': 1, 'lynch': 1, 'military': 1, 'Mendocal': 1, 'domed': 1, 'else': 3, 'star-spangled': 1, 'Female': 2, 'presidential': 1, 'pitiful': 1, 'sleek': 3, 'hand-pump': 1, 'third-class': 2, 'privileged': 1, 'minor': 1, 'sun-kissed': 1, 'muddy': 1, 'big-boned': 1, 'homely': 1, 'dirtpoor': 1, 'maritime': 1, 'plank': 2, 'Pregnant': 1, 'ostrich': 2, 'provisional': 1, 'fashionable': 1, 'straightened': 1, 'stylish': 1, 'Nationalist': 3, "'till": 1, 'expectant': 1, 'helpless': 4, 'moony': 1, 'dangerous': 2, 'rid': 1, 'bottled': 1, 'broke': 4, 'careless': 1, 'Deep': 1, 'bead-fringe': 1, 'gas-burning': 1, 'close-mouthed': 1, 'motherly-looking': 1, 'third': 4, 'pleated': 1, 'pleasant-faced': 1, 'blunt': 1, 'wraparound': 2, 'placin': 1, 'pointed': 1, 'clinking': 1, 'unbuckled': 1, 'time-step': 1, 'Third': 1, 'pleasant': 1, 'knobby': 1, 'painful': 1, 'calm': 3, 'blue-striped': 1, 'fault-finding': 1, 'stretcher-table': 1, 'rubber-soled': 1, 'rolling': 1, 'heavy-set': 1, 'Fiery': 1, 'Extreme': 1, 'brimless': 1, 'thigh-high': 1, 'pungent': 1, 'Protestant': 1, 'tingling': 1, 'glaring': 1, 'blood-lined': 1, 'ribboned': 2, 'express': 1, 'black-and-blue': 1, 'gauze-wrapped': 1, 'beribboned': 1, 'carefree': 1, 'premature': 2, 'commonplace': 1, 'brass-ass': 1, 'Bad': 1, 'fading': 2, 'high-handed': 2, 'dim': 1, 'willing': 3, 'moral': 1, 'gruesome': 1, 'individual': 3, 'plain': 3, 'burnt': 1, 'carryin': 2, 'Attendant': 1, 'post-partum': 1, 'okay': 3, 'old-timey': 1, 'Loving': 1, 'steel-cut': 1, 'papered': 1, 'quilted': 1, 'walkin': 3, 'stark': 1, 'marsh': 1, 'sand-and-water': 1, 'beachfront': 1, 'shrimp': 1, 'attractive': 2, 'fenced-in': 1, 'vine-covered': 1, 'becomin': 1, 'down-to-earth': 1, 'on-and-off': 1, 'bottled-in-bond': 1, 'Whistle-and-lemon': 1, 'hole-in-the-wall': 1, 'darkie': 1, 'cheap': 1, 'starchfilled': 1, 'subject': 2, 'hair-straightening': 1, 'fellow': 1, 'icicle': 1, 'no-contest': 1, 'backbreaking': 1, 'Fourth': 1, 'perfect-matched': 1, 'pince-nez': 1, 'undyed': 1, 'hard-boiled': 1, 'wellto-do': 1, 'sleek-looking': 1, 'stout': 1, 'dingy': 1, 'above': 1, 'upper': 3, 'outward': 1, 'eatin': 1, 'brown-skinned': 1, 'bunioned': 1, 'metal-spouted': 1, 'first-class': 7, 'Hot': 1, 'unflinching': 1, 'bloodshot': 1, 'bereaved': 1, 'nonstop': 1, 'gold-tipped': 2, 'hash': 1, 'ater': 1, 'helluva': 1, 'balledup': 1, 'Elevated': 1, 'Warm': 1, 'naughty': 1, 'Buck-naked': 1, 'Well-to-do': 2, 'thirty-two-dollar': 1, 'clammy': 1, 'moist': 1, 'kewpie': 1, 'good-looking': 1, 'monogrammed': 1, 'acceptable': 1, 'Clean': 2, 'broken': 2, 'half-filled': 1, 'smelly': 1, 'brown-crusted': 1, 'unbleached': 1, 'stagnant': 1, 'three-by-four': 1, 'Week-time': 1, 'broken-runged': 1, 'battered': 1, 'horsehair': 1, 'cheatin': 1, 'begrudging': 1, 'rousing': 1, 'cheap-rent': 1, 'mixed': 2, 'right-hand': 1, 'nationalist': 5, 'stony': 1, 'unsheltered': 1, 'grievous': 2, 'innermost': 1, 'deserving': 1, 'broken-down': 1, 'family-wise': 1, 'related': 1, 'leechin': 1, 'ungrateful': 1, 'relative': 1, 'risky': 2, 'fulla': 1, 'unknown': 2, 'far': 1, 'Good-lookin': 1, 'part-time': 2, 'aggravated': 1, 'Communist': 7, 'sporty': 1, 'yellowy': 1, 'talented': 1, 'prosperous-lookin': 1, 'fine-lookin': 1, 'trim': 1, 'shilly-shally': 1, 'nigger': 1, 'abrupt': 1, 'heavyset': 1, 'middleaged': 1, 'male': 14, 'heartsick': 1, 'foreign': 1, 'fascist': 2, 'condensed': 1, 'distressful': 1, 'hungry-ass': 1, 'scab': 2, 'big-behinded': 1, 'Sly': 3, 'white-headed': 1, 'lousy': 2, 'dolly': 1, 'stringy-haired': 1, 'fake': 1, 'steam-pressin': 1, 'proletarian': 1, 'greedy': 2, 'Muslim': 1, 'socio-economic': 1, 'outta': 2, 'mean-ass': 1, 'funny-lookin': 1, 'Strange': 1, 'elastic': 1, 'scared': 3, 'dimly-lit': 1, 'down-home': 1, 'watery': 1, 'burly': 1, 'big-eyed': 1, 'undressed': 1, 'sufficient': 1, 'exact': 1, 'interim': 1, 'able-bodied': 1, 'groovy': 2, 'unemployed': 2, 'law-abidin': 1, 'darkfaced': 1, 'destitute': 1, 'blonde': 1, 'legitimate': 1, 'illegitimate': 1, 'Hungarian': 1, 'fringed': 1, 'lady-lookin': 1, 'merry': 1, 'homemade': 1, 'Democratic': 2, 'kindsa': 1, 'hundred-proof': 1, 'brown-soaped': 1, 'ten-dollar': 1, 'spiritual': 1, 'redheaded': 1, 'flip': 1, 'Selfish': 1, 'Close': 1, 'lone': 1, 'bleedin': 1, 'plus': 1, 'six-room': 1, 'soundproof': 1, 'spacious': 1, 'firstclass': 1, 'bigtime': 1, 'jumpy': 1, 'platonic': 3, 'smalltime': 1, 'active': 1, 'Civil': 1, 'forgetful': 1, 'mosdy': 1, 'Lowdown': 1, 'chauffeured': 1, 'goin': 1, 'brown-skin': 1, 'First-class': 1, 'fretful': 1, 'gorgeous': 1, 'nooky': 1, 'reasonable': 1, 'squeamish': 1, 'Mexican': 1, 'put-together': 1, 'Loud': 1, 'rugged': 1, 'gaudy': 1, 'shinola': 1, 'spiked': 1, 'slender': 1, 'Rhinestone': 1, 'superior': 1, 'middle-aged': 1, 'floor-length': 1, 'black-velvet': 2, 'Hefty': 1, 'patient': 1, 'honorable': 1, 'hard-headed': 1, 'Twenty-sixth': 1, 'noble': 1, 'Western': 2, 'well-worn': 1, 'kingly': 1, 'arrogant': 1, 'Anglo-Saxon': 1, 'high-brown': 1, 'native': 1, 'thorny': 1, 'disrespectful': 2, 'firm': 1, 'unlimited': 1, 'white-owned': 1, 'desirable': 1, 'renegade': 1, 'percent': 1, 'faithful': 2, 'mental': 2, 'double-decker': 1, 'Government-inspected': 1, 'enlarged': 1, 'fold-over': 1, 'Sorry': 1, 'deep-dish': 1, 'iced': 2, 'deep-down': 1, 'three-diamond': 1, 'frilly': 1, 'squarefooted': 1, 'youthful': 1, 'twentieth-century': 1, 'surrogate': 1, 'successful': 2, 'fourteen-year-old': 1, 'adult': 6, 'novel': 17, 'teen': 1, 'later': 1, 'unbelievable': 1, 'twentieth': 5, 'replete': 1, 'juvenile': 1, 'disappointing': 1, 'mid': 1, 'civil': 2, 'caustic': 1, 'afresh': 1, 'derivative': 1, 'veritable': 1, 'high-top': 1, 'cartoonlike': 1, 'European': 3, 'parallel': 1, 'literary': 6, 'adjacent': 1, 'domestic': 3, 'dramatic': 1, 'maternal': 2, 'unsentimental': 2, 'urban': 2, 'fictional': 2, 'realistic': 2, 'third-grade': 1, 'convincing': 2, 'off-Broadway': 2, 'imaginative': 1, 'preeminent': 1, 'anthologized': 1, 'brilliant': 1, 'concurrent': 1, 'aesthetic': 2, 'eleven-year': 1, 'exceptional': 2, 'complected': 1, 'male-inscribed': 1, 'interracial': 3, 'stereotypical': 1, 'limited': 2, 'Giant': 1, 'one-act': 1, 'antimiscegenation': 1, 'prominent': 1, 'financial': 1, 'female-centered': 3, 'thematic': 1, 'major': 1, 'female-inscribed': 1, 'ten-year': 1, 'adept': 1, 'emphatic': 2, 'patriarchal': 2, 'liberating': 1, 'disruptive': 1, 'racial': 8, 'powerful': 1, 'constructive': 1, 'real-life': 1, 'biological': 3, 'cross-gender': 1, 'sexist': 1, 'intraracial': 1, 'lowermiddle-class': 1, 'authentic': 1, 'Eurocentric': 1, 'cross-class': 1, 'self-hatred': 1, 'economic': 3, 'psychic': 2, 'class-conscious': 1, 'uneducated': 1, 'crystal': 1, 'romantic': 1, 'ideological': 1, 'sexual': 25, 'intimate': 1, 'emotional': 3, 'Male': 1, 'subsequent': 1, 'loveless': 2, 'inaugural': 1, 'adoptive': 3, 'adolescent': 2, 'two-month': 1, 'colloquial': 1, 'spontaneous': 1, 'omniscient': 2, 'Blended': 1, 'present-tense': 2, 'twentynine': 1, 'reallife': 1, 'live-in': 2, 'historical': 4, 'personal': 4, 'temporal': 1, 'significant': 2, 'fifteen-year-old': 1, 'segmented': 1, 'narrative': 3, 'southern': 1, 'white-male': 1, 'subordinate': 1, 'nonwhite': 3, 'feminist': 3, 'unstable': 1, 'ironical': 1, 'newborn': 1, 'goneto-glory': 1, 'upper-class': 2, 'fifth': 2, 'well-pressed': 1, 'virulent': 1, 'not-so-tall': 1, 'discretionary': 1, 'sexualized': 1, 'external': 1, 'dominant': 3, 'available': 2, 'lower-class': 1, 'play-acting': 1, 'injurious': 1, 'white-spearheaded': 1, 'potential': 1, 'refined': 1, 'voiceless': 1, 'gifted': 1, 'red-blooded': 1, 'wary': 1, 'restricted': 1, 'consensual': 1, 'industrious': 1, 'recurrent': 1, 'physical': 2, 'ocular': 1, 'out-of-body': 1, 'humiliating': 2, 'conjugal': 2, 'mundane': 1, 'cock-teasing': 1, 'obligatory': 1, 'undesirable': 1, 'chief': 1, 'autonomous': 1, 'sociopolitical': 1, 'blatant': 1, 'ardent': 1, 'committed': 1, 'unborn': 1, 'exclusive': 1, 'troupe': 1, 'five-year-old': 1, 'crucial': 1, 'glowing': 1, 'homosexual': 1, 'unsatisfying': 1, 'Sisterly': 1, 'New': 2, 'female-identified': 1, 'sittin': 1, 'working-class': 1, 'leftist': 1, 'thirty-year': 1, 'sweeping': 1, 'myriad': 1, 'Present': 1, 'Novel': 1, 'Critical': 1, 'nonprofit': 1, 'twenty-first': 1, 'absent': 1, 'contemporary': 1, 'underrepresented': 1, 'educational': 3, 'complete': 1, 'international': 1, 'underserved': 1, 'INDOMITABLE': 1, 'RURAL': 1, 'diverse': 1, 'celebrated': 1, 'associate': 1, 'abusive': 1, 'promised': 1, 'foster': 2, 'indomitable': 1, 'picaresque': 1}
A lova' like no otha' /@2003
{'coincidental': 1, 'dead': 2, 'such': 14, 'Young': 1, 'unsold': 1, 'Worthy': 5, 'actual': 1, 'American': 1, 'aware': 2, 'other': 80, 'African': 1, 'proud': 7, 'much': 47, 'Wrong': 1, 'able': 32, 'extended': 1, 'angry': 12, 'certain': 4, 'happy': 26, 'satisfied': 1, 'new': 22, 'little': 28, 'bitter': 3, 'whole': 12, 'fleshly': 1, 'novel': 2, 'many': 32, 'real': 17, 'own': 26, 'great': 44, 'former': 3, 'high': 10, 'Good': 9, 'entire': 4, 'perfect': 19, 'eerie': 1, 'thick': 4, 'first': 64, 'latter': 1, 'important': 14, 'outdoor': 3, 'sick': 7, 'beautiful': 27, 'weird': 1, 'sure': 93, 'good': 87, 'same': 37, 'deep': 25, 'close': 6, 'overwhelming': 2, 'Next': 1, 'late': 7, 'stressful': 1, 'adjoining': 1, 'joking': 1, 'tired': 8, 'cool': 8, 'few': 54, 'fiftyyear-old': 1, 'red': 8, 'wild': 4, 'future': 1, 'black': 8, 'drunk': 4, 'extra': 2, 'middle-of-the-night': 1, 'favorite': 5, 'previous': 3, 'popular': 1, 'main': 2, 'prospective': 1, 'official': 1, 'light-skinned': 2, 'fine': 33, 'welcome': 2, 'senior': 2, 'top': 4, 'only': 34, 'insistent': 4, 'carefree': 1, 'layered': 1, 'Apparendy': 1, 'cute': 1, 'unable': 9, 'awesome': 10, 'five-foot': 1, 'mixed': 2, 'mingled': 1, 'five-inch': 1, 'husky': 2, 'brown': 8, 'good-looking': 1, 'barbecued': 1, 'virginal': 1, 'clear': 4, 'ready': 34, 'hot': 9, 'enough': 8, 'violent': 2, 'white': 22, 'brilliant': 2, 'full-length': 1, 'panty': 1, 'satin': 4, 'blue': 9, 'strong': 16, 'last': 43, 'plastic': 1, 'enormous': 3, 'silent': 8, 'special': 19, 'emotional': 3, 'misty': 1, 'four-foot': 1, 'bridal': 3, 'serious': 11, 'big': 27, 'regular': 1, 'old': 10, 'long': 27, 'wide-eyed': 1, 'true': 17, 'concerned': 1, 'private': 6, 'front': 21, 'okay': 50, 'unironed': 1, 'small': 15, 'extra-long': 1, 'whiny': 1, 'acrylic': 1, 'tacky': 1, 'myriad': 1, 'Dev-yn': 1, 'pregnant': 12, 'frightened': 2, 'foreign': 1, 'sorry': 32, 'open': 23, 'soothing': 3, 'mental': 1, '5-foot': 1, 'loving': 3, 'gentle': 3, '115-pound': 1, 'sincere': 3, 'left': 7, 'bobby': 1, 'dark': 11, 'gray': 1, 'hysterical': 2, 'several': 19, 'past': 13, 'muddy': 3, 'elegant': 4, 'ugly': 2, 'curly': 1, 'flat': 2, 'frantic': 2, 'right': 25, 'tattered': 1, 'dirty': 1, 'empty': 8, 'steady': 2, 'wet': 8, 'second': 14, 'next': 45, 'wide': 17, 'free': 9, 'grateful': 9, 'inward': 1, 'difficult': 11, 'nearby': 1, 'fair': 2, 'damp': 1, 'afraid': 5, 'ragged': 1, 'young': 8, 'comfortable': 5, 'dusty': 1, 'brief': 3, 'five-year-old': 1, 'sad': 9, 'stunned': 4, 'simple': 5, 'terrible': 6, 'glad': 29, 'bad': 28, 'nodded': 1, 'Sure': 4, 'frightening': 1, 'swollen': 2, 'tangled': 1, 'True': 1, 'fake': 2, 'very': 2, 'shattered': 1, 'hard': 17, 'horrifying': 1, 'Devyn': 10, 'presentable': 1, 'wooden': 1, 'unholy': 1, 'crazy': 26, 'stupid': 11, 'windowless': 1, 'petite': 2, 'day-old': 1, 'final': 10, 'tight': 9, 'tiny': 6, 'juicy': 1, 'nice': 10, 'foolish': 2, 'confident': 6, 'red-shirt': 1, '40,000-a-year': 1, 'pro': 3, 'constant': 3, 'mine': 6, 'frozen': 3, 'daring': 1, 'outside': 7, 'duffel': 5, 'hopeless': 1, 'unbearable': 3, 'wrong': 28, 'cold': 15, 'precious': 8, 'soft': 8, 'fragile': 2, 'further': 5, 'warm': 5, 'baby-sitting': 1, 'hungry': 1, 'different': 13, 'sweet': 10, 'unsettling': 1, 'free-agent': 1, 'naughty': 1, 'positive': 3, 'well-toned': 1, 'sandy': 1, 'romantic': 8, 'valuable': 1, 'safe': 5, 'cordless': 2, 'tear-free': 1, 'hesitant': 2, 'off': 2, 'scary': 2, 'following': 1, 'strange': 5, 'straight': 1, 'rude': 2, 'refreshing': 1, 'successful': 2, 'Deep': 1, 'depressed': 4, 'capable': 1, 'oppressive': 1, 'silly': 1, 'clean': 5, 'quiet': 6, 'ashamed': 1, 'obvious': 4, 'untouched': 4, 'frustrated': 1, 'disappointed': 2, 'upset': 3, 'mad': 7, 'verbal': 1, 'funky': 1, 'thankful': 8, 'blind': 2, 'arrogant': 2, 'Red-hot': 1, 'full': 13, 'tough': 5, 'turbulent': 1, 'interrupted': 1, 'third': 8, 'yellow': 1, 'sly': 2, "'cause": 4, 'unusual': 1, 'dumb': 2, 'worried': 2, 'vulnerable': 3, 'plumb': 1, 'Alonzo': 1, 'eager': 3, 'exasperating': 1, 'familiar': 4, 'human': 5, 'twenty-third': 1, 'sinful': 1, 'heavy': 8, 'short': 4, 'closed': 5, 'weak': 7, 'peaceful': 1, 'glazed': 1, 'remote': 1, 'unworthy': 1, 'mindless': 1, 'weary': 5, 'wretched': 1, 'cookless': 1, 'salty': 1, 'splain': 1, 'general': 2, 'surprised': 7, 'busy': 6, 'sexy': 3, 'aggressive': 2, 'pitiful': 2, 'spotless': 1, 'stressed': 3, 'Empty': 1, 'intimate': 6, 'spare': 1, 'normal': 1, 'loud': 7, 'shocked': 1, 'casual': 2, 'classified': 1, 'healthy': 5, 'ridiculous': 1, 'interesting': 1, 'friendly': 1, 'unpacked': 1, 'awful': 1, 'mechanic': 1, 'worth': 1, 'appropriate': 3, 'sudden': 5, 'First': 1, 'naive': 5, 'dumbfounded': 1, 'tilted': 5, 'decisive': 1, 'embarrassed': 1, 'green': 2, 'Twenty-third': 2, 'back': 2, 'virgin': 5, 'pure': 8, 'poor': 2, 'unfair': 2, '77ns': 1, 'muscular': 4, 'pleased': 1, 'fast': 2, 'inner': 1, 'huge': 6, 'cloudy': 1, 'Great': 2, 'grand': 3, 'mighty': 1, 'humble': 1, 'melted': 1, 'wonderful': 8, 'sticky': 1, 'sharp': 1, 'nosy': 1, 'Last': 5, 'broken': 2, 'Other': 1, 'rational': 1, 'generous': 1, 'Long': 1, 'known': 1, 'single': 4, 'slow': 2, 'Due': 1, 'make-believe': 1, 'available': 5, 'possible': 4, 'smooth': 1, 'stuffy': 1, 'ours': 1, 'honest': 6, 'airborne': 1, 'kinda': 1, 'oval': 1, 'unclear': 1, 'unsure': 2, 'temporary': 5, 'furnished': 2, 'secure': 2, 'routine': 1, 'quick': 6, 'excited': 7, 'amusing': 1, 'incredible': 5, 'significant': 3, 'fancy': 1, 'rental': 1, 'rich': 2, 'snooty': 2, 'common': 2, 'convinced': 1, 'jealous': 6, 'snobby': 1, 'Tuxedoed': 1, 'expensive': 1, 'Nice': 2, 'brown-skinned': 1, 'sugary': 1, 'exclusive': 1, 'plain': 1, 'pleasant': 1, 'Defensive': 2, 'forced': 1, 'playful': 1, 'professional': 6, 'irritated': 1, 'seventeen-week': 1, 'gloomy': 1, 'starter': 2, 'revolving': 1, 'careful': 4, 'phenomenal': 1, 'selfish': 3, 'social': 1, 'supportive': 1, 'dry': 1, 'luscious': 1, 'relieved': 3, 'hazy': 2, 'fourth': 1, 'solid': 3, 'responsible': 2, 'eighty-yard': 1, 'Several': 3, 'low-cut': 1, 'sore': 1, 'voluptuous': 1, 'innocent': 6, 'total': 3, 'tremendous': 2, 'attractive': 1, 'amazing': 8, 'gorgeous': 8, 'affectionate': 2, 'whirlwind': 3, 'easygoing': 1, 'notepad': 1, 'public': 4, 'interested': 3, 'personal': 6, 'nervous': 4, 'terrific': 1, 'formal': 2, 'major': 1, 'chic': 1, 'local': 2, 'look-alike': 1, 'ecstatic': 2, 'sharp-tongued': 1, 'white-and-gold': 1, 'body-fitting': 1, 'fantastic': 3, 'inspirational': 1, 'Raging': 1, 'due': 2, 'seventh': 1, 'modest': 1, 'unbeatable': 1, 'uneasy': 1, 'rough': 4, 'judgmental': 3, 'funny': 1, 'secret': 1, 'Christian': 5, 'defensive': 1, 'high-and-mighty': 1, 'plenty': 1, 'horrible': 3, 'speechless': 1, 'mean': 1, 'cruel': 1, 'desperate': 5, 'physical': 8, 'spiritual': 6, 'slippery': 1, 'rough-looking': 1, 'iced': 1, 'homeless': 1, 'pale': 1, 'merciful': 1, 'circular': 1, 'jobless': 1, 'medicated': 1, 'electric': 1, 'evident': 1, 'impure': 1, 'early': 2, 'Similar': 1, 'naked': 4, 'heated': 1, 'bare': 1, 'dangerous': 2, 'threethirty': 1, 'repetitive': 1, 'furious': 1, 'irreparable': 1, 'sexual': 3, 'female': 3, 'famous': 1, 'recorded': 1, 'dramatic': 2, 'unfamiliar': 3, 'motherly': 1, 'Bitter': 1, 'uncomfortable': 1, 'separate': 1, 'natural': 2, 'active': 3, 'stormy': 1, 'unexpected': 3, 'male-female': 1, 'shaky': 2, 'light': 2, 'heavenly': 3, 'insignificant': 1, 'top-notch': 1, 'motivational': 1, 'offensive': 1, 'usual': 2, 'depressing': 1, 'five-by-seven': 1, 'initial': 1, 'continued': 1, 'rotten': 1, 'pigheaded': 1, 'morbid': 1, 'rocky': 1, 'centerfold': 1, 'girlie': 1, 'overhead': 1, 'whipping': 1, 'complete': 1, 'blond': 3, 'inflatable': 1, 'Many': 1, 'random': 1, 'rid': 1, 'polite': 1, 'horrific': 1, 'earthly': 1, 'two-bedroom': 2, 'mother-daughter': 1, 'excruciating': 1, 'Soft': 1, 'lame': 2, 'hollow': 1, 'medical': 1, 'run-down': 1, 'miserable': 1, 'comforting': 2, 'nauseated': 1, 'blank': 1, 'alive': 5, 'visual': 1, 'Terrible': 1, 'impressed': 1, 'fourteenth': 1, 'current': 1, 'various': 1, 'painful': 1, 'memorable': 1, 'ordinary': 1, 'dull': 1, 'solitary': 1, 'lonely': 3, 'adoptive': 1, 'hopeful': 2, 'bimbo-looking': 1, 'toothy': 2, 'bouncy': 1, 'neat': 1, 'droopy': 1, 'foster': 2, 'Little': 1, 'lovely': 1, 'harsh': 1, 'oblivious': 1, 'interracial': 1, 'purple': 1, 'phony': 2, 'clueless': 1, 'green-skinned': 1, 'goofy': 1, 'sunny': 1, 'bright': 1, 'accurate': 1, 'identical': 1, 'pro-bound': 1, 'lar': 1, 'civic': 1, 'botched': 1, 'cheerful': 1, 'helpful': 1, 'adorable': 1, 'adamant': 1, 'Late': 1, 'hard-pressed': 1, 'frail': 3, 'cross-country': 1, 'thin': 1, 'bittersweet': 1, 'talented': 1, 'glassy': 1, 'wistful': 1, 'unfocused': 1, 'paper-thin': 1, 'endless': 1, 'subject': 1, 'traditional': 1, 'frigid': 1, 'unending': 1, 'calm': 1, 'ultimate': 4, 'shiny': 1, 'marvelous': 1, 'awash': 1, 'rhythmic': 1, 'well-practiced': 1, 'deft': 1, 'sensuous': 1, 'irritating': 1, 'abiding': 1, 'cocky': 1, 'red-rimmed': 1, 'scared': 1, 'jagged': 1, 'deafening': 1, 'uncertainly': 1, 'gaping': 1, 'so-called': 1, 'severe': 2, 'tear-filled': 1, 'intensive': 1, 'premature': 1, 'Devyn-Aisha': 1, 'erratic': 1, 'moral': 1, 'hushed': 1, 'black-and-white': 1, 'criminal': 1, 'particular': 1, 'outstanding': 1, 'hush': 1, 'direct': 1, 'ethical': 1, 'lucrative': 1, 'exasperated': 1, 'rubbish': 1, 'heinous': 1, 'pesky': 1, 'easy': 5, 'countless': 1, 'financial': 1, 'frustrating': 1, 'willing': 2, 'proven': 1, 'pregame': 1, 'off-the-field': 1, 'guilty': 1, 'fifth': 1, 'horrendous': 1, 'fiftieth': 1, 'anxious': 2, 'foggy': 1, 'grim': 2, 'dreadful': 1, 'helpless': 1, 'bent': 1, 'distressed': 1, 'unsmiling': 1, 'white-coated': 1, 'double': 1, 'Cruciate': 2, 'similar': 1, 'play-off': 1, 'R-rated': 1, 'damaging': 1, 'entertaining': 1, 'watery': 1, 'dishonest': 1, 'critical': 1, 'unique': 1, 'dejected': 1, 'fabulous': 1, 'tearful': 1, 'headstrong': 1, 'prenatal': 1, 'joint': 1, 'false': 2, 'Christ-centered': 1, 'Chinese': 1, 'take-out': 1, 'orange': 1, 'full-blown': 1, 'Swiss': 1, 'magical': 1, 'stunning': 1, 'red-and-black': 1, 'bustling': 1, 'slim': 1, 'truthful': 1, 'fellow': 1, 'glowing': 1, 'radiant': 1, 'four-hundredpound': 1, 'soldout': 1, 'yeah': 1, 'mischievous': 1, 'faithful': 1, 'impossible': 1, 'handsome': 1, 'persistent': 1, 'four-year': 1, 'twelve-million-dollar': 1, 'near': 1, 'pressured': 1, 'sacred': 1, 'godly': 3, 'Unbelievable': 1, 'quaint': 1, 'tea-length': 1, 'banana-creme-filled': 1, 'soon-to-be': 1, 'sparkling': 2, 'proclaimed': 1, 'typical': 1, 'cranky': 1, 'Special': 1, 'exuberant': 1, 'giddy': 1, 'uniform': 1, 'breathtaking': 1, 'tall': 1, 'crisp': 1, 'large': 2, 'hubby': 1, 'bubbly': 1, 'star-filled': 1, 'male': 1, 'Unable': 1, 'pear-shaped': 1, 'breathless': 1, 'creased': 1, 'worthy': 1, 'covered': 1, 'east': 1, 'fairy-tale': 1, 'party-planning': 1, 'holy': 1, 'bummed': 1, 'all-star': 1, 'Outside': 1, 'spectacular': 1, 'rooted': 1, 'unchanging': 1, 'unfaithful': 1, 'disastrous': 1, 'acceptable': 1, 'unforeseen': 1, 'unfortunate': 1, 'compassionate': 1, 'prone': 1, 'opposite': 1, 'flawed': 1, 'sensitive': 1, 'alert': 1, 'annual': 1, 'average': 1, 'hurtful': 1, 'not-so-faithful': 1, 'Real': 3, 'lifelong': 1, 'Irom': 2, 'loyal': 1, 'SPECIAL': 1}
Blood in my eye@1972
{'Pan-American': 1, 'Black': 53, 'Future': 1, 'unjust': 2, 'black': 71, 'Communist': 2, 'grave': 2, '7th': 5, 'blank': 3, 'cold': 5, 'extra': 2, 'few': 23, 'purposeful': 2, 'constant': 4, 'young': 4, 'revolutionary': 134, 'juvenile': 1, 'psychic': 1, 'perfect': 10, 'central': 8, 'second': 6, 'heavy': 15, 'characteristic': 2, 'indeterminate': 1, 'only': 33, 'solitary': 5, 'moral': 1, 'human': 9, 'entire': 9, 'bad': 2, 'criminal': 2, 'repressive': 11, 'social': 39, 'permanent': 3, 'maximum': 2, 'same': 41, 'new': 91, 'totalitarian': 15, 'Big': 2, 'special': 13, 'many': 28, 'military': 53, 'possible': 26, 'punitive': 1, 'other': 83, 'dangerous': 9, 'real': 39, 'good': 9, 'own': 46, 'warm': 1, 'various': 17, 'wet': 1, 'stiff': 1, 'racial': 4, 'infamous': 1, 'enormous': 1, 'Many': 4, 'willing': 8, 'depressing': 1, 'coincidental': 1, 'loud': 3, 'uptight': 1, 'Marxian': 4, 'Special': 1, 'major': 8, 'ready': 4, 'plastic': 1, 'grim': 1, 'final': 9, 'next': 12, 'whole': 37, 'white': 25, 'justifiable': 2, 'certain': 14, 'total': 14, 'extraordinary': 1, 'concrete': 5, '16th': 1, 'cheerful': 1, 'daring': 2, 'suicidal': 3, 'general': 25, 'true': 21, 'close': 3, 'free': 10, 'beautiful': 4, 'sub-machine': 2, 'dead': 11, 'proud': 3, 'last': 23, 'long': 13, 'judicial': 2, 'crystal-clear': 1, 'intolerable': 1, 'raucous': 1, 'sadistic': 1, 'poor': 6, 'individual': 11, 'Untold': 1, 'large': 12, 'ofiicial': 1, 'critical': 7, 'armored': 9, 'unclaimed': 1, 'Russian': 2, 'anonymous': 2, 'colonial': 4, 'present': 37, 'incontrovertible': 2, 'national': 23, 'political': 113, 'early': 20, 'fascist': 79, 'sincere': 4, 'enough': 10, 'confused': 3, 'love-inspired': 1, 'great': 24, 'left-wing': 3, 'Anglo-Saxon': 6, 'independent': 5, 'Reluctant': 1, 'Africanized': 1, 'East': 2, 'so-called': 5, 'right-wing': 7, 'Westernized': 1, 'old': 49, 'main': 4, 'sheer': 6, 'annoying': 1, 'socialistic': 2, 'ary': 1, 'original': 4, 'aware': 7, 'Fictional': 1, 'sick': 3, 'African': 11, 'economic': 66, 'assorted': 1, 'dialectical': 2, 'despondent': 1, 'unfair': 2, 'egalitarian': 3, 'little': 17, 'Peking': 1, 'several': 6, 'honest': 9, 'unique': 7, 'wise': 2, 'relative': 5, 'due': 5, 'future': 5, 'subjective': 3, 'expedient': 1, 'illogical': 2, 'definable': 1, 'geopolitical': 1, 'first': 23, 'foreign': 11, 'valid': 7, 'staggering': 1, 'important': 10, 'faint-hearted': 1, 'capitalist': 35, 'honorable': 1, 'menial': 1, 'odd-job': 1, 'civil': 9, 'subsistence-wage': 1, 'industrial': 38, 'premature': 1, 'small': 20, 'complete': 11, 'conjectural': 1, 'formidable': 2, 'ready-made': 2, 'antiquated': 1, 'governmental': 2, 'advanced': 5, 'popular': 8, 'successful': 11, 'simple': 8, 'greed-confused': 1, 'ultimate': 9, 'extraneous': 3, 'cautious': 1, 'ill-fed': 1, 'proper': 8, 'necessary': 17, 'bold': 3, 'corporate': 9, 'urban': 26, 'conscious': 9, 'modern': 14, 'loveinspired': 1, 'aggressive': 10, 'ill-housed': 1, 'personal': 5, 'cool': 2, 'ill-clothed': 1, 'audacious': 1, 'fundamental': 7, 'violent': 15, 'disdainful': 1, 'imperative': 1, 'Fourth': 1, 'socialist': 17, 'desperate': 4, 'effective': 11, 'numerical': 3, 'productive': 16, 'historical': 16, 'practical': 5, 'theoretical': 6, 'long-range': 3, 'principal': 13, 'relevant': 3, 'rigid': 2, 'meaningless': 8, 'Yankee-style': 1, 'committed': 2, 'likely': 2, 'Long-range': 1, 'communist': 2, 'left': 5, 'threatening': 1, 'collective': 10, 'distant': 1, 'precise': 3, 'international': 27, 'liberal-left': 1, 'vicious': 2, 'disorganized': 1, 'flagrant': 1, 'thunderous': 1, 'hard': 7, 'retaliatory': 3, 'big': 4, 'joint': 2, 'selective': 4, 'accurate': 1, 'overwhelming': 1, 'intellectual': 7, 'physical': 7, 'unable': 1, 'dogmatic': 1, 'short': 8, 'correct': 6, 'unknown': 2, 'anti-establishment': 4, 'fearless': 1, 'impatient': 1, 'fifteen': 1, 'positive': 16, 'New': 1, 'applicable': 2, 'broad': 3, 'extensive': 1, 'lofty': 1, 'spontaneous': 4, 'liberalist': 1, 'intoan': 1, 'successive': 1, 'secret': 7, 'mass': 1, 'obvious': 6, 'superior': 2, 'biological-existential': 1, 'irresponsible': 2, 'typical': 3, 'worthless': 2, 'false': 7, 'imperialist': 6, 'uncharacteristic': 1, 'favorable': 1, 'rich': 1, 'public': 10, 'contented': 2, 'Private': 2, 'catastrophic': 1, 'right': 8, 'further': 9, 'different': 10, 'particular': 13, 'unconscious': 4, 'double': 1, 'nervous': 4, 'tear-gas': 1, 'demented': 3, '50th': 1, 'tactical': 6, 'residential': 1, '13-round': 1, 'stupid': 3, 'snubbed-nosed': 1, 'fantastic': 2, 'visible': 2, 'five-hour': 1, 'anti-tank': 5, 'Long': 2, 'high-power': 1, 'dismayed': 1, 'front': 7, 'frightened': 3, 'smart': 1, 'bullet-proof': 1, 'super-secret': 2, 'unaffected': 1, 'such': 35, 'ammo-equipped': 1, 'separate': 8, 'prudent': 1, 'classical': 6, 'able': 16, 'unrighteous': 1, 'solid': 3, 'slight': 1, 'strong': 10, 'comical': 1, 'secondary': 2, 'lateral': 1, '12-gauge': 1, 'armor-piercing': 2, 'massive': 18, 'faceless': 3, 'universal': 2, 'lightning-swift': 1, 'degenerative': 1, 'material': 1, 'nameless': 4, 'cowardly': 2, 'uncommitted': 1, 'common': 8, 'reflex': 1, 'Vietnamese': 6, 'complex': 10, 'huge': 12, 'rightful': 2, 'hungry': 2, 'Double': 1, 'acceptable': 2, 'objective': 13, 'depressed': 2, 'west-side': 1, 'ragged': 1, 'unhappy': 1, 'unemployed': 2, 'disgusted': 1, 'omnipotent': 3, 'foul': 1, 'tractable': 1, 'ideal': 2, 'clandestine': 5, 'lynch-example': 1, 'righteous': 2, 'milder': 1, 'scum-swilling': 1, 'unimportant': 1, 'idealistic': 3, 'clear': 11, 'inferior': 2, 'reformist': 5, 'educational': 4, 'judicious': 1, 'mud-slinging': 1, 'Union-hall': 1, 'materialist': 2, 'electoral': 4, 'demagogic': 1, 'fancy-dress': 1, 'Wretched': 1, 'full': 9, 'unexpected': 1, 'middle': 6, 'key': 5, 'undivided': 1, 'contradictory': 4, 'blood-soaked': 1, 'two-hundred-yearold': 1, 'heedless': 1, 'counterproductive': 2, 'conditional': 1, 'ideological': 10, 'equal': 2, 'exclusive': 5, 'fiight': 1, 'urinesteeped': 1, 'overall': 8, 'monumental': 1, 'corresponding': 7, 'familiar': 2, 'intensive': 5, 'impossible': 13, 'normal': 5, 'always-to-be-expected': 1, 'ective': 1, 'toothless': 1, 'much': 9, 'natural': 11, 'Incredible': 1, 'clique': 2, 'Cuban': 1, 'slow': 1, 'Monthly': 1, 'angry': 2, 'romantic': 1, 'panic-stricken': 2, 'strategic': 4, 'careless': 1, 'Common': 1, 'raw': 6, 'no-knock': 1, 'mobile': 3, 'potential': 8, 'reliable': 1, 'logistic': 2, 'sure': 3, 'underground': 4, 'organizational': 5, 'traditional': 13, 'eflicient': 3, 'capable': 4, 'armed': 16, 'irate': 1, 'reactionary': 8, 'old-guard': 1, 'overreactionary': 1, 'hydrocyanic': 1, 'high-powered': 1, 'deadly': 2, 'European': 4, 'noxious': 1, 'automatic': 5, 'unafraid': 1, 'professional': 2, 'internal': 7, 'limited': 3, 'unified': 2, 'exact': 2, 'established': 13, 'afraid': 1, 'impenetrable': 1, 'anti-labor': 2, 'automotive': 1, 'terrorist': 3, 'impervious': 1, 'logical': 7, 'utmost': 2, 'active': 2, 'tight': 1, 'loyal': 1, 'sectarian': 1, 'formative': 1, 'narrow': 2, 'high': 4, 'intelligent': 3, 'agricultural': 16, 'shallow': 1, 'average': 5, 'murderous': 2, 'nationalist': 3, 'cultural': 8, 'strung-up': 1, 'compatible': 1, 'above-ground': 1, 'local': 6, 'oral': 2, 'subtle': 4, 'problem-solving': 1, 'cynical': 1, 'expeditionary': 2, 'counter-Kluxist': 1, 'alive': 7, 'blind': 3, 'sleepy': 1, 'ugly': 3, 'explosive': 1, 'favorite': 2, 'martial': 2, 'surprising': 1, 'protracted': 2, 'swift': 1, 'day-to-day': 2, 'flawless': 2, 'nice': 1, 'polite': 1, 'realistic': 12, 'absolute': 3, 'self-possessed': 1, 'Terrible': 1, 'clean': 1, 'slim': 1, 'politicaleconomic': 1, 'Economic': 1, 'uncivilized': 1, 'home-brewed': 1, 'fast': 1, 'quick': 1, 'sad': 1, 'complementary': 1, 'pervasive': 2, 'ultra-aggressive': 1, 'destructive': 8, 'nost': 1, 'psychological': 2, 'ween': 1, 'healthy': 3, 'built-in': 2, 'neutral': 5, 'serious': 13, 'hidden': 5, 'pivotal': 1, 'receptive': 2, 'simplistic': 1, 'axiomatic': 1, 'welldeveloped': 1, 'ridiculous': 2, 'postal': 2, 'absurd': 2, 'Surplus': 1, 'surplus': 4, 'desirable': 2, 'ruling-class': 4, 'military-corporate': 1, 'right-to-work': 1, 'government-controlled': 1, 'anti-Nixon': 1, 'classic': 6, 'reachable': 1, 'unguarded': 1, 'ponderous': 2, 'corporate-militarypolice': 1, 'defensive': 2, 'ever-present': 1, 'protective': 5, 'systematic': 1, 'majesty': 1, 'erent': 2, 'slimy': 1, 'Indo-Chinese': 2, 'self-impelled': 1, 'helpless': 2, 'splendid': 1, 'mechanized': 8, 'self-contained': 1, 'unforeseen': 1, 'outstanding': 1, 'fragmented': 1, 'usual': 5, 'incapable': 1, 'American': 1, 'oflicial': 3, 'endless': 2, 'North': 1, 'rural': 1, 'substantial': 1, 'abstract': 1, 'sequential': 2, 'intangible': 1, 'open': 8, 'decisive': 2, 'related': 4, 'fixed': 2, 'connected': 1, 'interrelated': 1, 'rapid': 1, 'venerated': 1, 'alert': 1, 'fancied': 1, 'dreadful': 1, 'past': 2, 'definite': 3, 'inevitable': 2, 'forceful': 1, 'harmless': 2, 'idiotic': 1, 'inclusive': 1, 'imminent': 2, 'Third': 1, 'genocidal': 1, 'weaponless': 1, 'contrary': 1, 'spectacular': 2, 'haphazard': 1, 'easy': 5, 'dependent': 4, 'hit-and-run': 1, 'invulnerable': 2, 'very': 8, 'indigent': 1, 'industrial-military': 1, 'well-planned': 1, 'impregnable': 1, 'single': 6, 'tional': 1, 'passive': 1, 'working-class': 7, 'ordinary': 5, 'sweeping': 1, 'vulnerable': 4, 'imperialistic': 1, 'bureaucratic': 4, 'efficient': 2, 'booby': 2, 'safe': 4, 'quasi-secret': 1, 'minimum': 3, 'aboveground': 2, 'sympathetic': 1, 'weak': 3, 'stage-two': 1, 'numberless': 1, 'persistent': 1, 'innocent': 3, 'indistinguishable': 1, 'beleaguered': 1, 'senseless': 1, 'known': 1, 'Mao-Che-style': 1, 'interstate': 1, 'pig-oriented': 1, 'sufficient': 2, 'mighty': 2, 'provincial': 2, 'orderly': 1, 'basic': 7, 'sizable': 3, 'counter-terrorist': 1, 'untenable': 1, 'Uruguayan': 2, 'crude': 1, 'imperial': 3, 'global': 1, 'French': 4, 'primary': 5, 'located': 2, 'outlying': 1, 'immediate': 3, 'interior': 1, 'vital': 4, 'fair': 1, 'commercial': 3, 'suspect': 1, 'elusive': 2, 'useless': 2, 'industrially-based': 2, 'undeveloped': 2, 'built-up': 1, 'creative': 2, 'wellplaced': 1, 'invincible': 1, 'city-based': 2, 'liquid': 1, 'musical': 1, 'ten-cent': 1, 'costly': 1, 'prolonged': 2, 'portable': 2, 'ubiquitous': 2, 'rightoriented': 1, 'right-oriented': 2, 'wrong': 2, 'nationalistic': 5, 'clear-cut': 3, 'ultra-right': 1, 'retired': 1, 'federal': 2, 'Outright': 1, 'conflicting': 1, 'state-controlled': 3, 'Top-heavy': 1, 'conservative': 6, 'petit-bourgeois': 2, 'inverted': 1, 'stagnant': 1, 'top-heavy': 2, 'atavistic': 2, 'Keynesian': 1, 'quasi-social': 1, 'apparent': 4, 'cyclic': 1, 'eight-hour': 1, 'faulty': 1, 'Simple': 2, 'ours': 3, 'routine': 1, 'extemporaneous': 1, 'rare': 1, 'Cyclic': 1, 'wild': 2, 'better-educated': 1, 'four-wheel': 1, 'Heavy': 1, 'ordinary-looking': 1, 'expendable': 2, 'civilian-type': 1, 'vacant': 1, 'nonperishable': 1, 'available': 4, 'light': 2, 'gifted': 1, 'commerciallooking': 1, 'initial': 1, 'thorough': 1, 'Autonomous': 1, 'private': 14, 'bulletproof': 1, 'dark': 2, 'eventual': 1, 'Military': 2, 'airtight': 1, 'sickle-cell': 1, 'dual': 3, 'dental': 1, 'daily': 1, 'medical': 4, 'adequate': 1, 'empty': 6, 'deep': 4, 'brown': 2, 'despotic': 1, 'unreasoning': 1, 'injurious': 1, 'isolationist': 1, 'expansionist': 1, 'unrealistic': 1, 'hostile': 1, 'congressional': 1, 'financial': 7, 'vast': 2, 'powerful': 2, 'side-thrust': 1, 'damnable': 1, 'quick-draw': 1, 'flying': 1, 'harmonious': 1, 'double-edged': 1, 'super': 1, 'third': 6, 'hypothetical': 1, 'inner': 2, 'Anglo-Western': 1, '40-ton': 1, 'sound': 1, 'Recent': 1, 'technological': 1, 'covert': 1, 'stilted': 1, 'sterile': 1, 'tiny': 3, 'oppressed': 11, 'Swedish': 1, 'Socialist': 1, 'Strained': 1, 'Chilean': 2, 'obituary': 1, 'tortured': 1, 'countless': 2, 'liberal': 1, 'latent': 3, 'convinced': 1, 'predictable': 2, 'united': 5, 'liberating': 2, 'prevailing': 1, 'theirs': 1, 'determined': 1, 'autonomous': 2, 'antiestablishment': 1, 'fighting': 1, '155-mm': 1, 'antecedent': 1, 'self-propelled': 1, 'twenty-five': 1, 'short-term': 6, 'electrical': 1, 'powerless': 2, 'Effective': 1, 'dull': 1, 'super-technological': 2, 'indirect': 2, 'ten-to-one': 1, 'direct': 3, 'degenerate': 4, 'counterpositive': 1, 'life-support': 2, 'vain': 1, 'offensive': 1, 'thinned-out': 1, 'timely': 1, 'appropriate': 1, 'nonproductive': 1, 'thin': 1, 'have-not': 1, 'mechanical': 1, 'close-range': 1, 'oneto-one': 1, 'Total': 2, 'obsolete': 1, 'attractive': 1, 'diseased': 3, 'Democratic': 2, 'uniformed': 2, 'unintelligible': 1, 'socio-political': 5, 'beneficial': 1, 'establishment-conditioning': 1, 'hierarchical': 1, 'giant': 4, 'remarkable': 1, 'decadent': 4, 'Western': 12, 'irrefutable': 1, 'flexible': 2, 'corporative': 7, 'outrageous': 1, 'content': 1, 'inbred': 1, 'mental': 1, 'mad': 1, 'monitored': 1, 'infantry': 1, 'careful': 1, 'tax-supported': 1, 'pre-ordered': 1, 'institutional': 2, 'stratified': 1, 'scientific': 3, 'altruistic': 1, 'actual': 3, 'red': 1, 'taxexempt': 1, 'Similar': 1, 'Vital': 2, 'quarter-million': 1, 'populous': 1, 'official': 2, 'one-half': 1, 'poison-gas': 1, 'first-degree': 1, 'triple': 1, 'well-studied': 1, 'expert': 1, 'diflerent': 1, 'calculated': 2, 'alleged': 1, 'non-inmate': 1, 'race-sensitized': 1, 'defined': 2, 'inquisitional': 1, 'multiple': 1, 'privileged': 3, 'damaging': 2, 'striking': 2, 'preventive': 1, 'calculable': 1, 'mild': 5, 'significant': 9, 'aloof': 1, 'artificial': 1, 'synonymous': 1, 'centralized': 2, 'female': 1, 'totalitarianauthoritarian': 1, 'ingrained': 2, 'reckless': 1, 'mindless': 3, 'Compulsive': 1, 'pathogenic': 1, 'obsessional': 1, 'attitudinal': 1, 'abject': 1, 'macabre': 1, 'psychopathic': 3, 'flash': 1, 'socalled': 1, 'bourgeois': 5, 'inward': 1, 'preliminary': 1, 'Further': 1, 'vested': 1, 'elated': 1, 'Unitary': 1, 'authoritarian': 16, 'genuine': 3, 'reconcilable': 1, 'unitarian': 6, 'progressive': 6, 'Other': 1, 'legitimatized': 1, 'extended': 2, 'disproportionate': 1, 'responsible': 1, 'fortuitous': 1, 'wealthy': 1, 'nonsectarian': 1, 'unequal': 1, 'institutionalized': 2, 'organized': 1, 'psycho-social': 12, 'closed': 6, 'legal': 4, 'sophisticated': 2, 'underlying': 1, 'Working': 1, 'hypocritical': 1, 'similar': 1, 'steel-enclosed': 1, 'Official': 1, 'socio-economic': 7, 'restrained': 1, 'tenuous': 1, 'terminal': 1, 'legitimate': 1, 'overt': 2, 'consistent': 1, 'world-wide': 3, 'partisan': 4, 'disciplined': 1, 'consciousness-raising': 1, 'behavioral': 2, 'principled': 2, 'racist': 5, 'impotent': 1, 'self-satisfied': 1, 'bitter': 2, 'self-interdicting': 2, 'minimal': 1, 'Mexican-American': 1, 'faithful': 1, 'indomitable': 1, 'unpredictable': 1, 'scientific-socialist': 3, 'intense': 2, 'formal': 1, 'minor': 2, 'unexplained': 1, 'essential': 3, 'concentric': 1, 'remote': 2, 'fifty': 3, 'Italian': 5, 'replete': 1, 'anti-immigrant': 1, 'ex-military': 1, 'business-as-usual': 1, 'anti-Catholic': 1, 'German': 6, 'former': 2, 'Corporative': 1, 'technical': 1, 'proven': 1, 'minute': 1, 'awesome': 1, 'capitalistic': 2, 'gross': 1, 'existential': 1, 'extreme': 6, 'Fascist': 2, 'refined': 2, 'distributive': 1, 'lowly': 1, 'controlled': 3, 'fortified': 1, 'short-sighted': 1, 'vague': 2, 'apolitical': 1, 'unnecessary': 2, 'lengthy': 1, 'Nietzschean-Hegelian': 1, 'organic': 1, 'cohesive': 1, 'communal': 3, 'contra-positive': 10, 'city-wide': 1, 'occupying': 1, 'subject': 10, 'eco-sociological': 2, 'nation-wide': 1, 'party-line': 1, 'complicated': 2, 'illegal': 1, 'lawless': 1, 'strange': 2, 'morbid': 3, 'tial': 1, 'recognizable': 1, 'anti-personnel': 1, 'doomed': 2, 'forced': 2, 'conclusive': 1, 'incumbent': 1, 'defeatest': 1, 'severe': 1, 'detailed': 1, 'brilliant': 2, 'Pure': 1, 'Mass': 2, 'defeatist': 1, 'overanalytical': 1, 'antisocialist': 3, 'Important': 1, 'opposite': 2, 'inclined': 1, 'electronic': 1, 'semantic': 1, 'functional': 1, 'geo-political': 1, 'brutal': 1, 'probable': 1, 'frustrated': 1, 'contextual': 1, 'centralist': 2, 'British': 1, 'mortal': 1, 'Whole': 1, 'Latin': 2, 'state-supported': 1, 'colonial-community': 1, 'anti-class': 1, 'non-Marxists': 1, 'distinct': 1, 'Korean': 1, 'fascist-corporative': 1, 'anti-imperialist': 1, 'precipitous': 1, 'eflective': 1, 'counterrevolutionary': 1, 'mature': 1, 'Civil': 6, 'democratic': 5, 'dispersed': 1, 'predominant': 1, 'identical': 1, 'anticapitalist': 3, 'pronounced': 2, 'fifty-five': 1, 'participatory': 1, 'stricken': 1, 'phoenixlike': 1, 'competitive': 2, 'International': 2, 'ever-increasing': 1, 'uncontrollable': 1, 'vacuous': 1, 'regional': 2, 'Traditional': 1, 'deranged': 1, 'traumatic': 1, 'objectively-its': 1, 'prime': 1, 'Hegelian': 1, 'super-nationalist': 1, 'Spanish': 1, 'syndicalist': 1, 'anti-communist': 1, 'subversive': 1, 'sensational': 1, 'elitist': 2, 'instrumental': 1, 'biting': 1, 'top': 1, 'liberaldemocratic': 1, 'anti-fascist': 1, 'spiritualistic': 1, 'pseudo-intellectual': 1, 'mid-nineteenth': 1, 'ancient': 1, 'primitive': 2, 'distinctive': 1, 'ethical': 1, 'finished': 1, 'twentieth': 1, 'two-sided': 1, 'three-sided': 1, 'nation-state': 4, 'substructural': 1, 'difficult': 2, 'marginal': 3, 'unabated': 1, 'sharp': 1, 'overtraditionalist': 1, 'fatal': 1, 'brief': 1, 'regenerative': 1, 'unreasonable': 1, 'invisible': 3, 'out-of-power': 1, 'large-scale': 1, 'dominant': 1, 'respective': 1, 'parasitic': 1, 'middle-class': 1, 'rapacious': 1, 'illegitimate': 1, 'following': 2, 'Several': 1, 'industrial-traditionalist': 1, 'State-protected': 1, 'constitutional': 1, 'parliamentary': 1, 'antithesis': 1, 'alarmed': 1, 'agrarian': 1, 'insecure': 3, 'norther': 1, 'unrewarding': 1, 'papal': 1, 'archaic': 1, 'lower-middle': 1, 'upward': 3, 'counter-positive': 1, 'singular': 1, 'junior': 1, 'populistic': 1, 'misleading': 1, 'neo-colonial': 3, 'Capitalist': 1, 'disguised': 2, 'proletarian': 2, 'revere': 1, 'deflated': 1, 'inflationary': 6, 'aimless': 1, 'preexisting': 2, 'balanced': 1, 'untapped': 1, 'deflationary': 1, 'postwar': 1, 'late': 1, 'Real': 2, 'owned': 1, 'annual': 2, 'Small': 1, 'standardized': 1, 'quasi-government': 1, 'low': 2, 'influenced': 1, 'cheap': 1, 'ritualistic': 1, 'ultra-nationalistic': 1, 'supple': 1, 'domestic': 1, 'imitative': 4, 'inflexible': 1, 'Brazilian': 1, 'dualistic': 1, 'Belgian': 1, 'responsive': 1, 'corrugated': 1, 'vacation-resort': 1, 'plush': 1, 'rightist': 2, 'disease-infested': 1, 'glaring': 1, 'war-swollen': 1, 'unsound': 1, 'regulatory': 1, 'spasmodic': 1, 'Inflationary': 1, 'indigenous': 1, 'forcible': 1, 'Anglo-Amerikan': 1, 'Rigorous': 1, 'stringent': 1, 'military-industrial': 1, 'regime-sponsored': 1, 'death-directed': 1, 'industrial-military-based': 1, 'lower-class': 1, 'attendant': 1, 'diplomatic': 1, 'suppressive': 1, 'peak': 1, 'Nazi': 1, 'congratulatory': 1, 'White-type': 1, 'profound': 1, 'sordid': 1, 'mutual-aid': 1, 'I-Iis': 1, 'elites/corporative': 1, 'nineteenth': 2, 'co-optive': 2, 'twisted': 1, 'localized': 1, 'laissez': 1, 'broken': 1, 'mellifluous': 1, 'fourth': 1, 'diverse': 1, 'Republican': 1, 'Bourgeois': 1, 'telescopic': 1, 'transcontinental': 1, 'guilty': 2, 'irrational': 1, 'barefooted': 1, 'pointed': 1, 'animated': 1, 'biopathic': 1, 'biophysical': 2, 'inherent': 1, 'unrivaled': 1, 'upperclass': 1, 'illusory': 1, 'vernacular': 1, 'Marxist': 1, 'debased': 1, 'fearful': 1, 'deficit': 1, 'military-industrial-complex-based': 1, 'anti-Chinese': 1, 'compulsive': 2, 'antiblack': 1, 'pathetic': 1, 'opinion-molding': 1, 'constructive': 1, 'unaware': 1, 'fascist-type': 1, 'interested': 1, 'secure': 3, 'circumstantial': 1, 'regime-ruling': 1, 'outside': 1, 'associate': 1, 'additional': 1, '113th': 1, 'skilled': 1, 'dirty': 1, 'enforced': 1, 'reasonable': 1, 'communistic': 2, 'faint': 1, 'machine-gun': 1, 'harsh': 1, 'look-alike': 2, 'civic': 2, 'sweet': 1, 'casual': 1, 'supposed': 1, 'uneconomic': 1, 'historical/biological': 1, 'antagonistic': 1, 'nondiseased': 1, 'oppressive': 7, 'imaginable': 1, 'First': 1, 'unlettered': 1, 'inadequate': 1, 'silent': 1, 'partial': 1, 'run-down': 1, 'Built-in': 1, 'uncouth': 1, 'blue-collar': 1, 'well-off': 1, 'selfcongratulatory': 1, 'tal': 1, 'excessive': 1, 'anticommunal': 1, 'magnificent': 2, 'silly': 1, 'inseparable': 1, 'Female': 1, 'social-economic': 1, 'psychosocial': 1, 'rational': 1, 'savage': 1, 'cultural-nationalist': 1, 'anti-people': 1, 'uncertain': 1, 'negative': 2, 'pre-slavery': 1, 'nonexistent': 1, 'academic': 1, 'obscure': 1, 'static': 1, 'previous': 1, 'Conservative': 1, 'cooperative': 1, 'naked': 1, 'fervent': 1, 'artless': 1, 'unitary': 1, 'coercive': 1, 'indulgent': 1, 'contrived': 1, 'unconditional': 1, 'military-strike': 1, 'convenient': 1, 'enemy-state': 1, 'exemplary': 1, 'scurrilous': 1, 'overworked': 1, 'respected': 1, 'profane': 1, 'dedicated': 1, 'unreasoned': 1, 'bastardized': 1, 'legendary': 3, 'field': 1, 'terrible': 1, 'five': 3, 'cold-blooded': 1, 'superman': 2, 'happy': 1, 'later': 1, 'rid': 1, 'incredible': 1, 'tired': 2}
The flagellants /@1987
{'independent': 4, 'own': 46, 'stormy': 2, 'extraordinary': 1, 'concrete': 2, 'first': 36, 'detailed': 1, 'stylized': 1, 'unique': 1, 'brilliant': 4, 'Other': 1, 'Black': 15, 'unborn': 3, 'impressive': 1, 'literary': 5, 'Polite': 9, 'late': 7, 'Free': 1, 'Maya': 1, 'second': 13, 'acclaimed': 1, 'black': 115, 'successful': 2, 'Christian': 2, 'new': 29, 'famous': 3, 'early': 1, 'several': 5, 'thematic': 2, 'satirical': 1, 'novel': 31, 'American': 18, 'French': 5, 'reminiscent': 3, 'technical': 1, 'narrative': 3, 'familiar': 10, 'dialogic': 1, 'good': 79, 'daring': 4, 'bad': 9, 'dialectical': 1, 'self-conscious': 2, 'central': 6, 'mixed': 1, 'stylistic': 3, 'Caged': 1, 'playful': 3, 'many': 27, 'wise': 6, 'racist': 2, 'sexist': 1, 'sensitive': 3, 'real': 14, 'clear': 3, 'inferior': 2, 'troublesome': 1, 'marked': 3, 'universal': 4, 'unworthy': 1, 'infamous': 2, 'instrumental': 1, 'true': 21, 'white': 71, 'chained': 1, 'uncastrated': 1, 'stunning': 3, 'proper': 3, 'present': 3, 'unusual': 3, 'so-called': 3, 'white-washed': 1, 'such': 28, 'social': 12, '20th-century': 1, 'racial': 21, 'naked': 1, 'general': 3, 'positive': 1, 'important': 5, 'historic': 3, 'textual': 1, 'likely': 4, 'minimal': 2, 'fictive': 2, 'verbal': 1, 'postmodern': 1, 'human': 14, 'meditative': 1, 'confusing': 2, 'contemporary': 3, 'Western': 1, 'urban': 2, 'tremendous': 2, 'personal': 17, 'easy': 4, 'acute': 1, 'passive': 2, 'Such': 1, 'stark': 3, 'free': 28, 'active': 2, 'spiritual': 1, 'partial': 1, 'polar': 1, 'erotic': 4, 'different': 6, 'full': 13, 'numbed': 2, 'psychological': 4, 'sadomasochistic': 1, 'prefatory': 1, 'sadistic': 1, 'sexual': 5, 'transformative': 1, 'distinctive': 1, 'tempestuous': 2, 'complicated': 2, 'emotional': 6, 'possible': 9, 'other': 85, 'religious': 2, 'ideal': 3, 'incomplete': 1, 'courageous': 2, 'psychic': 1, 'blue-gray': 3, 'necessary': 10, 'recollected': 1, 'autonomous': 1, 'direct': 5, 'same': 57, 'depressed': 1, 'dependent': 2, 'distressed': 1, 'turbulent': 2, 'great': 11, 'entire': 6, 'old': 53, 'great-granddaughter': 1, 'allegorical': 3, 'selective': 1, 'traditional': 4, 'oblique': 1, 'tall': 11, 'principal': 1, 'tenuous': 1, 'third-person': 1, 'domestic': 5, 'female': 5, 'impossible': 7, 'similar': 1, 'biblical': 2, 'grandmotherly': 1, 'experiential': 2, 'limited': 1, 'Afro-American': 8, 'anecdotal': 2, 'public': 7, 'grandfatherly': 1, 'difficult': 6, 'maledominated': 1, 'male': 9, 'subtextual': 1, 'didactic': 1, 'feminine': 1, 'elderly': 1, 'rational': 3, 'later': 1, 'Invisible': 1, 'futile': 2, 'chaste': 1, 'imperfectible': 2, 'great-grandmother': 3, 'dark': 13, 'permanent': 3, 'great-grandi': 1, 'communicative': 3, 'large': 2, 'fundamental': 4, 'basic': 6, 'evil': 10, 'entangled': 5, 'essential': 3, 'iridescent': 3, 'interior': 1, 'additional': 2, 'glazed': 2, 'poisonous': 1, 'green': 15, 'little': 34, 'blackish-red': 2, 'young': 8, 'plumb': 2, 'masochistic': 1, 'old-time': 1, 'life-threatening': 1, 'cockeyed': 2, 'Strict': 1, 'willful': 5, 'attractive': 1, 'chalked': 2, 'past': 10, 'former': 4, 'punitive': 1, 'Southern': 3, 'physical': 7, 'stereotyped': 4, 'familial': 1, 'magnificent': 4, 'tangible': 2, 'economic': 3, 'comprehensive': 1, 'bloody': 9, 'absolute': 4, 'symbolic': 2, 'figurative': 1, 'mythic': 1, 'docile': 1, 'irrelevant': 1, 'heroic': 2, 'infected': 2, 'thorough-bred': 1, 'distinct': 4, 'separate': 4, 'dreaded': 1, 'hypocritical': 2, 'effete': 4, 'eloquent': 2, 'nocturnal': 2, 'desperate': 2, 'circular': 2, 'negative': 5, 'impotent': 5, 'gross': 3, 'popular': 1, 'aberrant': 1, 'aggressive': 3, 'sociological': 2, 'actual': 3, 'enduring': 3, 'arrogant': 1, 'standard': 3, 'loving': 7, 'ready': 13, 'immediate': 7, 'creative': 5, 'ignorant': 7, 'contriving': 2, 'constructive': 3, 'red-tail': 2, 'high': 12, 'inevitable': 1, 'liquid': 2, 'rhetorical': 1, 'analytical': 2, 'paradoxical': 2, 'duplicated': 1, 'wrong': 14, 'undisciplined': 2, 'weak': 5, 'self-recriminating': 1, 'incapable': 6, 'warped': 6, 'twentieth-century': 1, 'conventional': 1, 'intact': 3, 'indirect': 1, 'ready-made': 3, 'unable': 11, 'idealized': 1, 'whole': 20, 'perplexing': 2, 'antiheroic': 1, 'civil': 9, 'constitutional': 5, 'convenient': 1, 'contagious': 1, 'daily': 21, 'unconscious': 2, 'genuine': 1, 'equal': 21, 'inappropriate': 1, 'distressing': 1, 'self-inflicted': 1, 'private': 8, 'recent': 4, 'counterproductive': 1, 'individual': 2, 'intimate': 2, 'flawed': 1, 'brutal': 1, 'dead': 13, 'pleased': 3, 'critical': 2, 'ambivalent': 1, 'questionable': 1, 'few': 11, 'AfroAmerican': 1, 'abstract': 5, 'degrading': 1, 'certain': 1, 'present-day': 1, 'unqualified': 2, 'honest': 5, 'only': 17, 'finished': 1, 'thoughtful': 1, 'Young': 2, 'First': 2, 'POLITE': 1, 'Novel': 1, 'quiet': 13, 'initial': 5, 'big': 17, 'mournful': 2, 'bold': 2, 'Long': 2, 'stationary': 3, 'moaning': 1, 'Matisse-like': 1, 'last': 39, 'long': 17, 'low': 6, 'common': 17, 'ancient': 4, 'tired': 2, 'yellow': 13, 'brown': 9, 'infinite': 5, 'supple': 1, 'smiling-faced': 1, 'empty': 6, 'hard': 13, 'straw': 1, 'beloved': 1, 'fragile': 5, 'sound': 3, 'capable': 8, 'rough': 2, 'sentimental': 3, 'hot': 8, 'maniacal': 3, 'satin-robed': 1, 'blue': 8, 'Good': 11, 'unknown': 4, 'crude': 1, 'ecstatic': 2, 'tearful': 1, 'pristine': 1, 'powerful': 1, 'chromatic': 1, 'singsong': 1, 'tear-stained': 1, 'false': 1, 'unto': 5, 'uncomfortable': 2, 'raucous': 1, 'perfect': 6, 'open': 16, 'dazzling': 2, 'wooden': 2, 'kingly': 1, 'wide': 3, 'able': 38, 'erect': 1, 'flesh-and-blood': 1, 'endowed': 2, 'intuitive': 3, 'digested': 1, 'ice-cold': 1, 'unembarrassed': 1, 'wet': 10, 'flung': 1, 'spasmodic': 1, 'hollow': 1, 'calm': 4, 'petrified': 1, 'virgin': 4, 'single': 14, 'formidable': 1, 'baptismal': 1, 'wretched': 4, 'multicolored': 1, 'luminous': 2, 'uninhabited': 1, 'Several': 2, 'tortured': 1, 'lifeless': 3, 'poor': 11, 'happy': 4, 'vacant': 4, 'self-appointed': 3, 'grassless': 1, 'wild': 9, 'dirty': 5, 'unconquerable': 1, 'never-never': 1, 'run-down': 1, 'incensed': 1, 'mangy': 1, 'short': 6, 'rich': 6, 'make-believe': 2, 'Broken': 1, 'Ancient': 1, 'vagrant': 1, 'descriptive': 1, 'fresh': 2, 'greased': 3, 'comic-strip': 1, 'festering': 1, 'worrisome': 1, 'moist': 1, 'empty-pocketed': 1, 'striking': 1, 'nighttime': 4, 'prayerful': 1, 'glistening': 1, 'hysterical': 9, 'pitch-and-red': 1, 'muted': 1, 'rock-bottom': 1, 'red': 14, 'unidentifiable': 1, 'blond': 6, 'pale': 3, 'beautiful': 19, 'funny': 4, 'dwelled': 1, 'high-strung': 1, 'unreal': 1, 'luscious-looking': 1, 'deep': 4, 'double-dip': 1, 'close': 2, 'stale': 3, 'indelible': 3, 'right': 10, 'unsolved': 1, 'zooming': 1, 'self-destroying': 1, 'glad': 12, 'fleeting': 1, 'blood-red': 1, 'limp': 1, 'delighted': 1, 'softhearted': 1, 'innocent': 7, 'utter': 6, 'plenty': 1, 'drunk': 8, 'out-and-out': 1, 'intelligent': 5, 'cheap': 7, 'handsome': 1, 'bottom': 1, 'enough': 11, 'violent': 2, 'dynamic': 5, 'loose': 3, 'frightened': 2, 'warm': 6, 'tickled': 1, 'delightful': 2, 'grand': 5, 'mysterious': 3, 'heavyweight': 1, 'cold': 15, 'misleading': 1, 'grown': 1, 'back': 5, 'nostalgic': 2, 'European': 1, 'Bottom': 2, 'outstretched': 2, 'vengeful': 1, 'alive': 3, 'next': 16, 'perpendicular': 1, 'earthly': 1, 'jealous': 3, 'sole': 3, 'disparate': 2, 'tragic': 3, 'suspicious': 1, 'philanthropic': 2, 'god-forsaken': 1, 'gigantic': 3, 'conical': 1, 'painful': 3, 'fruity': 1, 'penitent': 1, 'spontaneous': 5, 'yellow-orange': 2, 'ragged-edged': 1, 'imperative': 1, 'aimless': 1, 'myriad': 2, 'therapeutic': 1, 'seedy': 1, 'decorative': 1, 'flat': 5, 'competitive': 1, 'dispassionate': 1, 'retributive': 1, 'diabolical': 1, 'beaten': 2, 'indisputable': 2, 'slothful': 1, 'hot-aired': 1, 'cigarette-lighting': 1, 'cathartic': 1, 'threaded': 1, 'labyrinthine': 1, 'original': 6, 'mouthful': 1, 'sorry': 7, 'divine': 6, 'distrustful': 1, 'Everyday': 1, 'willing': 4, 'contemptuous': 2, 'dreamed-of-one-morning': 1, 'democratic': 3, 'dogmatic': 1, 'puny': 1, 'hopeful': 1, 'lovely': 3, 'transient': 1, 'privileged': 3, 'prefabricated': 1, 'constant': 7, 'Honest': 1, 'resilient': 1, 'submissive': 1, 'aware': 2, 'foul-mouthed': 1, 'slobbering': 1, 'formless': 2, 'looking-glass': 3, 'poetic': 3, 'afraid': 11, 'infernal': 3, 'total': 7, 'perpetual': 1, 'final': 9, 'soothing': 1, 'natural': 9, 'thankful': 3, 'hand-me-down': 1, 'substandard': 1, 'hoary': 1, 'matted': 1, 'inadequate': 1, 'virulent': 1, 'combustible': 1, 'snaggled': 1, 'versed': 1, 'lopsided': 1, 'manly': 1, 'dizzying': 1, 'rehearsed': 1, 'gate-mouthed': 1, 'pointed': 3, 'savage': 2, 'mad': 4, 'blackbird': 2, 'bantam-cock': 2, 'ashen': 1, 'god-awful': 1, 'gaudy': 2, 'eerie': 1, 'instant': 2, 'cool': 5, 'radiant': 2, 'light': 6, 'unattainable': 2, 'poignant': 2, 'coming-home-now': 1, 'featherless': 1, 'horizontal': 1, 'nine-one-four': 1, 'upside-down': 2, 'hide-and-seek': 1, 'old-fogy': 1, 'hideous': 4, 'inhuman': 1, 'smoky': 1, 'much': 18, 'vestigial': 1, 'stupid': 9, 'cowardly': 2, 'cinematic': 1, 'silly': 1, 'foolish': 3, 'green-backed': 1, 'unofficial': 1, 'part-time': 1, 'crowded': 1, 'glorified': 1, 'square': 4, 'characterless': 1, 'unfit': 1, 'poetry-and-jazz': 1, 'weird': 2, 'scared': 1, 'mock': 1, 'charming': 1, 'wonderful': 2, 'crazy': 21, 'everlasting': 3, 'thick': 3, 'enormous': 1, 'back-fence': 1, 'brink-of-war': 1, 'pathetic': 2, 'hurt': 1, 'Wonder': 2, 'interstate': 1, 'hot-time': 1, 'next-door': 2, 'nailed-to-the-heights': 1, 'cruel': 3, 'Funny': 1, 'surprised': 2, 'portable': 1, 'across-the-hall': 1, 'head-to-toe': 1, 'sepia-toned': 1, 'nasal': 1, 'comfortable': 3, 'ornate': 1, 'indistinct': 1, 'Little': 3, 'Spanish': 2, 'phony-time': 1, 'fellow': 4, 'cozy': 1, 'amusing': 1, 'freedom-fight': 1, 'broken': 1, 'lush': 2, 'God-realizing': 1, 'slow': 1, 'S-rate': 1, 'syrupy': 1, 'wet-eyed': 1, 'heavy': 4, 'onepointed': 1, 'sad': 2, 'responsible': 7, 'cryingest': 1, 'soft': 4, 'mighty': 2, 'fast': 2, 'major': 1, 'sick': 18, 'trifling': 2, 'simple': 3, 'simpering': 1, 'faint': 1, 'undynamic': 1, 'unwholesome': 1, 'self-indulgent': 2, 'neon-lit': 1, 'money-hungry': 2, 'guilt-infested': 1, 'inward': 1, 'whirling': 1, 'respective': 2, 'simple-minded': 1, 'solitary': 1, 'stoned': 1, 'appreciative': 2, 'revolving': 1, 'fancy': 4, 'aesthetic': 3, 'green-metal': 1, 'simultaneous': 1, 'conscious': 5, 'aromatic': 2, 'cooking': 1, 'complete': 10, 'bare': 3, 'twenty-year': 1, 'valid': 3, 'minor': 2, 'ugly': 1, 'serious': 3, 'impenetrable': 2, 'fabulous': 1, 'convincing': 1, 'unwrapped': 1, 'polluted': 1, 'convinced': 3, 'provincial': 2, 'predetermined': 2, 'Buddhistic': 1, 'drunken': 2, 'prosaic': 1, 'gleeful': 1, 'hard-earned': 4, 'filthy': 2, 'clever': 3, 'compassionate': 2, 'saccharine': 2, 'bizarre': 3, 'contrived': 1, 'definite': 5, 'fake': 2, 'disciplined': 2, 'sour': 2, 'key': 1, 'objective': 1, 'tactile': 1, 'dizzy': 1, 'alcoholic': 4, 'smeared': 2, 'chaotic': 3, 'existent': 1, 'open-air': 1, 'two-bit': 1, 'insulting': 2, 'classic': 4, 'boisterous': 1, 'plagiaristic': 1, 'outlandish': 1, 'hummed': 1, 'homeless': 2, 'junky': 1, 'unbelievable': 2, 'genealogical': 1, 'off-the-wall': 1, 'scanty': 1, 'decent': 3, 'Indian': 1, 'tubercular-looking': 1, 'repellent': 2, 'sudden': 3, 'terrible': 1, 'primal': 1, 'white-jacketed': 1, 'soulful': 3, 'esoteric': 3, 'expiatory': 1, 'nasty': 2, 'nice': 6, 'vile': 2, 'tribal-time': 1, 'Korean': 1, 'Japanese': 1, 'unprepared': 1, 'thick-headed': 1, 'absurd': 5, 'interested': 6, 'legendary': 2, 'delicate': 2, 'logical': 1, 'airtight': 1, 'egotistical': 1, 'sweet': 11, 'recipient': 1, 'experienced': 2, 'historical': 5, 'worth': 2, 'virile': 1, 'hieroglyphic': 1, 'bureaucratic': 1, 'pitiful': 3, 'defunct': 2, 'front-porch': 1, 'miserable': 4, 'aristocratic': 1, 'sleazy': 1, 'slavery-time': 1, 'paltry': 1, 'temporal': 1, 'token': 3, 'oppressive': 2, 'ten-dollar': 1, 'foul': 4, 'huge': 2, 'intense': 3, 'thorough': 2, 'parasitic': 1, 'worthless': 2, 'unsaintly': 1, 'putrid': 2, 'golden': 2, 'embedded': 1, 'mere': 1, 'fair': 2, 'vague': 2, 'interracial': 1, 'unresolvable': 1, 'upholstered': 1, 'eternal': 4, 'ash': 1, 'worldly': 1, 'innate': 3, 'lachrymose': 1, 'unmanifested': 2, 'three-dimensional': 1, 'well-disciplined': 1, 'nervous': 1, 'damn': 1, 'sculptured': 1, 'Penitent': 1, 'venomous': 1, 'synonymous': 3, 'focal': 1, 'ceremonial': 1, 'customary': 2, 'qualitative': 5, 'majestic': 1, 'bewildered': 1, 'complimentary': 1, 'unholy': 1, 'awake': 2, 'homegrown': 1, 'devoid': 3, 'foreign': 2, 'accented': 1, 'unquiet': 1, 'professional': 2, 'stealthy': 1, 'hermetic': 1, 'sure': 3, 'embossed': 1, 'regular': 2, 'hard-rock': 1, 'unequal': 2, 'intentional': 1, 'nested': 1, 'worthwhile': 1, 'uncatholic': 1, 'prismatic': 2, 'splendid': 1, 'weekly': 1, 'iconoclastic': 1, 'phantom': 2, 'orange': 5, 'premature': 2, 'breathless': 1, 'glorious': 3, 'blinkless': 1, 'begrudging': 1, 'succulent': 1, 'wanted': 1, 'unfastened': 1, 'salty': 4, 'Instinctive': 1, 'jubilant': 1, 'early-morning': 1, 'mechanical': 4, 'messianic': 1, 'routine': 2, 'merciful': 2, 'self-pitying': 2, 'pupilless': 1, 'sienna-lit': 1, 'cyclopian': 1, 'straight-set': 1, 'lean': 1, 'relative': 3, 'oblivious': 2, 'naive': 2, 'theatrical': 1, 'scholastic': 1, 'smoked': 1, 'big-eyed': 1, 'uncommon': 1, 'upward': 1, 'soft-talking': 1, 'amateur': 2, 'hungry': 2, 'Sagittarian': 1, 'fiery': 1, 'colorless': 2, 'thoroughbred': 1, 'triumphant': 1, 'dandy': 1, 'reality-stamped': 1, 'discordant': 1, 'fine': 7, 'convertible': 2, 'respectable': 1, 'cashmere': 1, 'finger-pointing': 1, 'capitalistic': 1, 'industrial': 1, 'indistinguishable': 2, 'impatient': 2, 'one-night': 1, 'chronic': 2, 'heinous': 2, 'average': 1, 'blatant': 1, 'elusive': 3, 'moral': 2, 'star-spangled': 1, 'unskilled': 1, 'intangible': 1, 'collective': 2, 'cal': 1, 'grass-roots': 1, 'uncontested': 1, 'ballot-box': 1, 'ultimate': 3, 'Caucasian': 1, 'perceptible': 1, 'statistical': 1, 'intrinsic': 2, 'skilled': 1, 'suitable': 2, 'natural-born': 1, 'interpretive': 1, 'tadpole-eyed': 1, 'quiescent': 2, 'consecutive': 1, 'farcical': 1, 'fifth-rate': 1, 'unpackageable': 1, 'unilateral': 1, 'contributive': 1, 'promised': 1, 'timeworn': 1, 'chronological': 1, 'fugitive': 1, 'equitable': 1, 'front': 1, 'local': 3, 'rental': 2, 'color-blind': 1, 'national': 2, 'small': 3, 'unsubstantial': 1, 'armless': 3, 'deluded': 1, 'propagandistic': 1, 'typical': 1, 'as-it-ought-to-be': 1, 'steel-pillared': 1, 'riveting': 2, 'subservient': 1, 'bubbly': 1, 'kaleidoscopic': 1, 'strong': 2, 'solicitous': 1, 'undiscovered': 1, 'niggah': 1, 'angry': 2, 'unaltered': 1, 'puffy': 2, 'conducive': 2, 'endless': 4, 'identical': 2, 'giant': 2, 'weak-hearted': 1, 'favorite': 3, 'careful': 4, 'unctuous': 1, 'scented': 1, 'Fifth': 1, 'magic': 2, 'fallow': 1, 'beneficial': 1, 'twinkling': 1, 'belching': 1, 'hefty': 1, 'freedom-fighting': 1, 'daffy': 1, 'silken': 1, 'meager': 1, 'snotty': 1, 'bearded': 5, 'greasy': 2, 'available': 2, 'quick': 4, 'frothy': 2, 'monied': 1, 'spotty': 1, 'romantic': 1, 'recessed': 1, 'expeditious': 1, 'scurrying-to-work': 1, 'gritty': 1, 'opaque': 2, 'nomadic': 1, 'powdered': 1, 'fast-moving': 2, 'prepared': 3, 'heartless': 1, 'enlarged': 1, 'swine-natured': 2, 'fat': 2, 'greedy': 1, 'sticky': 2, 'callous': 1, 'nauseous': 1, 'hell-burning': 1, 'speckled': 1, 'squashed': 1, 'immaculate': 1, 'efficient': 4, 'funky': 2, 'dingy': 1, 'rancid': 1, 'gritty-eyed': 1, 'poor-grade': 1, 'lascivious': 2, 'motionless': 1, 'straight': 2, 'showtime': 1, 'uneatable': 1, 'Damn': 4, 'lay': 1, 'tepid': 1, 'slopical': 1, 'tropical': 1, 'left': 1, 'holy': 4, 'rusting': 1, 'unspoken': 1, 'laughing-gassed': 1, 'properfitting': 1, 'shameful': 1, 'forgivable': 1, 'devilish': 2, 'synchronous': 1, 'moldy': 3, 'burnt': 1, 'freewheeling': 1, 'unclaimed': 1, 'neat': 2, 'Unsuitable': 1, 'obvious': 5, 'get-well': 1, 'humane': 2, 'unthinkable': 1, 'Common': 1, 'vital': 2, 'recurrent': 1, 'mutinous': 1, 'accustomed': 3, 'immune': 1, 'loud': 2, 'Unclaimed': 1, 'Puffy': 1, 'self-seeking': 1, 'antecedent': 1, 'unopened': 2, 'flaccid': 1, 'primordial': 1, 'dissonant': 2, 'misanthropic': 1, 'swaggering': 1, 'exquisite': 2, 'tight-bottom': 1, 'superior': 5, 'edible': 1, 'accidental': 1, 'miraculous': 2, 'luscious': 1, 'rightful': 1, 'softened': 1, 'satin': 1, 'saturated': 1, 'nondescript': 2, 'heart-fluttering': 1, 'enigmatic': 1, 'virtuous': 1, 'Chrisdy': 1, 'infantile': 2, 'sentient': 1, 'abrupt': 1, 'facile': 1, 'Self-denial': 1, 'defensive': 2, 'smileless': 1, 'dark-skinned': 1, 'unsolvable': 1, 'gentle': 1, 'freakish': 2, 'fleshly': 1, 'passionate': 1, 'leather-scented': 1, 'wishful': 2, 'forlorn': 1, 'challenging': 1, 'dictatorial': 1, 'moody': 1, 'mind-mirrored': 1, 'problematic': 1, 'heretic': 1, 'embryonic': 2, 'ethereal': 2, 'fortunate': 2, 'fitting': 1, 'mental': 1, 'guinea-hen': 1, 'unrelenting': 2, 'kinesthetic': 1, 'godlike': 1, 'quixotic': 1, 'elevated': 1, 'wordless': 1, 'unlikely': 1, 'long-ago': 1, 'inspired': 1, 'lonely': 1, 'guilty': 3, 'what-that-is-asunder': 1, 'unclothed': 1, 'used-to-be': 1, 'comforting': 1, 'communal': 2, 'irrational': 1, 'by-the-hour': 1, 'narcotic': 1, 'undefiled': 2, 'big-time': 1, 'trumped-up': 1, 'exasperating': 1, 'gay': 3, 'paroled': 1, 'pensive': 1, 'frustrating': 1, 'fictitious': 1, 'noctambulistic': 1, 'lowered-eyelid': 1, 'hind': 1, 'further': 3, 'coming': 1, 'Impatient': 1, 'permissible': 1, 'ashamed': 3, 'frantic': 2, 'platonic': 1, 'Last': 1, 'stacked-deck': 1, 'Unaware': 1, 'blind': 3, 'devil-will-get-you': 1, 'nameless': 1, 'puritanical': 1, 'maudlin': 1, 'lasting': 2, 'pure': 3, 'self-styled': 1, 'pleasant': 2, 'coincidental': 1, 'awesome': 1, 'Loud': 1, 'exact': 1, 'outspoken': 2, 'lilywhite': 1, 'pastoral': 1, 'ill-founded': 1, 'optic': 1, 'Hippocratic': 1, 'war-relief': 1, 'street-corner': 3, 'irresistible': 2, 'excessive': 2, 'outside': 2, 'riotous': 1, 'demonstrative': 1, 'fateful': 1, 'might-and-right': 1, 'unready': 4, 'exotic': 3, 'self-protective': 2, 'nonviolent': 2, 'classless': 1, 'downtrodden': 1, 'superb': 1, 'touching': 2, 'superhuman': 1, 'pink-faced': 1, 'blue-eyed': 3, 'vindictive': 1, 'fighting-hearted': 1, 'yawning': 1, 'revolutionary': 1, 'atomic': 1, 'attuned': 2, 'renowned': 2, 'world-wide': 3, 'vast': 1, 'brute': 2, 'immutable': 1, 'related': 2, 'gray': 2, 'aggravating': 1, 'Protestant': 1, 'dangerous': 1, 'worthy': 2, 'lunch-hour': 1, 'carry-out': 1, 'needed': 1, 'distasteful': 1, 'vexing': 1, 'plain': 5, 'sable': 1, 'know-it-all': 1, 'Russian': 1, 'slick': 1, 'clairvoyant': 1, 'genteel': 1, 'overdressed': 1, 'relieved': 1, 'hypothetical': 1, 'unregistered': 1, 'neurotic': 2, 'pink': 1, 'banal': 3, 'confused': 2, 'long-trousers': 1, 'avant-garde': 1, 'subjective': 2, 'instinctive': 1, 'secondary': 1, 'haloed': 1, 'hushed': 1, 'modish': 1, 'lame': 1, 'one-dimensioned': 1, 'untold': 1, 'eye-opening': 1, 'store-bought': 1, 'liberal': 2, 'black-mouthed': 1, 'flimsy': 3, 'cynical': 1, 'wrinkled': 2, 'kindhearted': 1, 'Dilapidated': 1, 'unaroused': 1, 'immigrant': 1, 'sober': 1, 'newfangled': 1, 'veritable': 1, 'non-negotiable': 1, 'seeming': 2, 'boyish': 1, 'Slanderous': 1, 'duty-bound': 2, 'dispossessed': 1, 'golden-studded': 1, 'toothed': 1, 'floor-size': 1, 'certified': 1, 'tail-wagging': 1, 'unspeakable': 1, 'prepaid': 1, 'undisturbed': 1, 'Human': 1, 'periodic': 2, 'inaudible': 1, 'double-duty': 1, 'government-inspected': 1, 'celibate': 1, 'punctual': 1, 'decadent': 1, 'yellowed': 1, 'childish': 2, 'spotted': 1, 'apple-green': 1, 'family-care': 1, 'remote': 2, 'unclean': 1, 'friendly': 1, 'pro-': 1, 'white-haired': 1, 'oral': 3, 'satanic': 1, 'manual': 2, 'wholesome': 2, 'undivided': 2, 'compulsory': 1, 'geographical': 1, 'mathematical': 1, 'illiberal': 1, 'rhythmical': 1, 'klannish': 1, 'slight': 1, 'gaping': 2, 'prone': 2, 'self-protecting': 1, 'whipping': 2, 'daytime-sleeping': 1, 'formal': 1, 'absentee': 1, 'head-shielding': 1, 'overdue': 1, 'incompetent': 1, 'trenchant': 1, 'unstrung': 1, 'unimpeachable': 1, 'mealymouthed': 1, 'unrewarding': 1, 'clean': 2, 'undismayed': 1, 'self-forgiving': 1, 'pharisaical': 1, 'capricious': 1, 'wilted': 1, 'Cool': 2, 'never-ending': 1, 'unengaging': 1, 'deserving': 1, 'unendurable': 1, 'impermanent': 1, 'graphic': 1, 'waterproof': 1, 'jolly': 1, 'seasonal': 1, 'audible': 3, 'unseen': 1, 'illiterate': 2, 'subtle': 1, 'noisy': 1, 'Byzantine': 10, 'barbed-wire': 1, 'dense': 1, 'needy': 1, 'round-table': 1, 'timeless': 1, 'Red-feathered': 1, 'self-help': 1, 'in-out': 1, 'u-li': 1, 'intellectual': 1, 'honorable': 2, 'regional': 1, 'bamboo': 1, 'matriarch-propagating': 1, 'bird-faced': 1, 'embroidered': 1, 'underground': 3, 'vegetarian': 1, 'blue-veined': 1, 'balanced': 1, 'still-standing': 1, 'Utopian': 1, 'austere': 1, 'musty': 2, 'wiry': 1, 'rigid': 1, 'Virgoan': 1, 'rampant': 1, 'devoted': 2, 'elegant': 1, 'cow-posturing': 1, 'airless': 1, 'middy-bloused': 1, 'fat-headed': 1, 'lonesome': 1, 'perennial': 1, 'leisurely': 1, 'dualistic': 1, 'suffocating': 1, 'acceptable': 1, 'middle': 1, 'adult': 2, 'dolly': 1, 'altered': 1, 'fishy-eyed': 1, 'unutterable': 1, 'hesitant': 1, 'up-and-down': 1, 'timid': 1, 'gawky': 1, 'polysyllable': 1, 'incredible': 3, 'Ambitious': 1, 'decaying': 1, 'satin-lined': 1, 'marginal': 1, 'scheming': 3, 'pleated': 1, 'untried': 1, 'clumsy': 1, 'sly': 1, 'odious': 1, 'useless': 1, 'sympathetic': 3, 'Nubian': 1, 'Heartless': 1, 'strapping': 1, 'withered': 1, 'unasked': 1, 'unforgettable': 1, 'resonant': 1, 'sponge-bottomed': 1, 'frozen': 1, 'lackluster': 1, 'omniscient': 1, 'head-on': 1, 'sedentary': 1, 'taciturn': 2, 'extended': 1, 'unsolicited': 1, 'commensurate': 1, 'monthly': 2, 'well-known': 1, 'thigh-spreading': 1, 'retired-to-the-den': 1, 'scrawny-legged': 1, 'frustrated': 3, 'thingactual': 1, 'shackled': 1, 'unconditional': 1, 'secret': 1, 'in-the-moment': 1, 'hasty': 1, 'unmentioned': 1, 'live': 1, 'paunchy': 1, 'sequestered': 1, 'Ineffectual': 1, 'heartbroken': 1, 'grammatical': 1, 'lofty': 1, 'white-faced': 1, 'irretrievable': 1, 'elliptical': 1, 'dry': 1, 'profound': 1, 'pretentious': 1, 'unperforated': 1, 'unfilled': 1, 'expedient': 1, 'unremovable': 1, 'lock': 1, 'uniformed': 2, 'rednecked': 1, 'unbailed': 1, 'unscrewed': 1, 'big-business': 1, 'white-housed': 1, 'double-jointed': 1, 'incessant': 1, 'insignificant': 2, 'food-particle': 1, 'Lilliputian': 1, 'close-range': 1, 'fey-living': 1, 'exclusive': 1, 'Telepathic': 1, 'weary': 1, 'piquant': 1, 'Hush': 1, 'ginkgo': 1, 'Concrete': 1, 'native': 1, 'abysmal': 1, 'crabby': 1, 'coming-back-home': 1, 'jarring': 1, 'funereal': 1, 'Judaeo-Christian': 1, 'paranoiac-schizophrenic': 1, 'kissproof': 1, 'mythical': 2, 'lustful': 2, 'rhythmic': 1, 'Jimson': 5, 'safe': 2, 'not-too-dear': 1, 'blackeyed': 1, 'splintered': 1, 'beat': 1, 'fruit-luscious': 1, 'tranquil': 1, 'Dark': 1, 'dumfounded': 1, 'lackadaisical': 1, 'unfamiliar': 1, 'Frenzied': 1, 'ineffectual': 1, 'tree-of-life': 1, 'bleeding': 4, 'noncutting': 1, 'incoherent': 1, 'sirenless': 1, 'trite': 1, 'hemorrhaging': 1, 'motorless': 1, 'wheelless': 1, 'ridiculous': 2, 'unfair': 1, 'syphilitic': 1, 'ambiguous': 1, 'fluorescent': 1, 'caged': 1, 'unheeded': 1, 'deaf-mute': 1, 'sightless': 1, 'welcome': 2, 'cultural': 3, 'guilt-ridden': 1, 'unbending': 1, 'hermit': 1, 'involuntary': 2, 'Political': 1, 'visual': 1, 'repentant': 1, 'languid': 1, 'self-created': 1, 'syncopated': 1, 'law-abiding': 1, 'massive': 1, 'smug': 1, 'captivating': 1, 'sophisticated': 1, 'peace-loving': 1, 'reverent': 1, 'love-thy-neighbor-as-thyself': 1, 'assertive': 1, 'geometric': 1, 'smooth': 1, 'cylindrical': 1, 'perk': 1, 'imaginary': 1, 'snow-white': 3, 'triangular': 1, 'plush': 1, 'mesmerizing': 1, 'Plain': 1, 'strange': 1, 'textured': 1, 'round': 1, 'lone': 1, 'spiked': 2, 'bewildering': 1, 'syllable': 1, 'unbor': 1, 'Irritated': 1, 'raggedy': 3, 'near': 1, 'Stricken': 1, 'Happy': 1, 'handmade': 1, 'secondhand': 1, 'busy': 4, 'undeserving': 1, 'fruitless': 1, 'homogeneous': 1, 'yearly': 1, 'fearful': 1, 'international': 2, 'faultless': 1, 'monopolistic': 1, 'inalienable': 1, 'fastidious': 1, 'methodical': 2, 'flush': 1, 'Parisian': 1, 'peaceful': 2, 'unoccupied': 1, 'garish': 1, 'slugged': 1, 'broad': 4, 'factory-working': 1, 'saintly': 1, 'unlaced': 1, 'dime-store-powdered': 1, 'black-cherry-lipped': 1, 'unemployed': 1, 'motherly': 1, 'obese': 1, 'smart': 5, 'stinking': 1, 'goddamn': 4, 'celluloid': 1, 'goddamned': 2, 'interesting': 1, 'crocheted': 1, 'keyholed': 1, 'hard-winded': 1, 'invalid': 1, 'embarrassed': 1, 'theirs': 1, 'party-going': 1, 'stagnant': 1, 'spineless': 1, 'untrackable': 1, 'authentic': 1, 'long-last': 1, 'olive': 1, 'second-class': 1, 'derelict': 4, 'hung-over': 1, 'rank': 1, 'cruddy': 1, 'bleached': 1, 'unwashed': 1, 'sweaty': 2, 'porous': 1, 'still-fresh': 1, 'particular': 1, 'coarse': 1, 'imperial': 1, 'English': 1, 'reflex': 1, 'stubby': 1, 'Sure': 1, 'clod-hopping': 1, 'walkless': 1, 'overgrown': 1, 'frosted': 1, 'telepathic': 1, 'Awe-struck': 1, 'unlit': 1, 'simulated': 2, 'dimensional': 1, 'facetious': 1, 'somber': 1, 'administrative': 2, 'do-gooder': 1, 'heterogeneous': 1, 'left-off': 1, 'urgent': 2, 'withholding-tax': 1, 'unrelated': 1, 'Glad': 1, 'biographical': 1, 'brief': 1, 'predominant': 1, 'located': 1, 'small-scale': 1, 'jaunty': 1, 'singular': 2, 'yelloweyed': 1, 'custom-fit': 1, 'departmental': 1, 'American-born': 1, 'air-conditioned': 1, 'orderly': 2, 'pronounced': 1, 'cocky': 1, 'smocked': 1, 'conceptual': 1, 'closed': 1, 'Understand': 1, 'cartographic': 1, 'Second': 1, 'good-luck': 1, 'visible': 1, 'temporary': 1, 'admirable': 1, 'baggy-pants': 1, 'starry-eyed': 1, 'green-horned': 1, 'keypunched': 1, 'subversive': 1, 'far-fetched': 1, 'data-processed': 1, 'monotonous': 1, 'unsung': 1, 'polished-brass': 1, 'desolate': 1, 'affluent': 1, 'practical': 1, 'trophy-lugging': 1, 'blackhaired': 1, 'misguided': 1, 'clothed': 1, 'galvanic': 1, 'advertised': 1, 'shallow': 1, 'unconvertible': 1, 'indefinable': 1, 'unhung': 1, 'Infinite': 1, 'inviolate': 1, 'foggy': 1, 'taut': 1, 'Strong': 1, 'flesh-hungry': 1, 'memoried': 1, 'sterile': 1, 'characteristic': 1, 'seed-flung': 1, 'prostrate': 1, 'wet-mouthed': 1, 'ever-loving': 1, 'rainy': 1, 'Spike-shaped': 1, 'minute': 1, 'unsoluble': 1, 'consummate': 1, 'harsh': 1, 'down-and-out': 1, 'melancholy': 1, 'egocentric': 1, 'mundane': 1, 'irrevocable': 1, 'not-having': 1, 'content': 1, 'low-life': 1, 'unending': 1, 'previous': 1, 'mutual': 1, 'erratic': 1, 'oratorical': 1, 'restrictive': 1, 'instructive': 1, 'vain': 2, 'lucky': 1, 'Catholic': 1, 'selfish': 1, 'insane': 2, 'bigoted': 1, 'Rheba-static': 1, 'green-eyed': 1, 'fascinating': 1, 'magnetic': 1, 'boring': 1, 'blueeyed': 1, 'unpardoned': 1, 'feeble': 1, 'resigned': 1, 'rid': 1, 'homosexual': 1, 'psychotic': 1, 'three-letter': 1, 'unnoticed': 1, 'bisexual': 1, 'deflorated': 1, 'educational': 1, 'auto-suggested': 1, 'political': 3, 'asphyxiated': 1, 'progressive': 1, 'asexual': 1, 'nationwide': 1, 'crusty': 1, 'atrophied': 1, 'poetical': 1, 'Domestic': 1, 'Union-saving': 1, 'mammy-made': 1, 'folkloric': 1, 'upper': 1, 'steady': 1, 'patience-practicing': 1, 'perceptive': 2, 'exaggerated': 1, 'matriarchal': 2, 'twofold': 1, 'proud': 1, 'respectful': 1, 'occidental': 1, 'agonizing': 1, 'mute': 1, 'superman': 1, 'far-reaching': 1, 'affectionate': 1, 'sleepy': 1, 'lazy': 1, 'imperturbable': 1, 'incestuous': 1, 'summer-long': 1, 'incapacitated': 1, 'unwilling': 1, 'Exempt': 1, 'envious': 1, 'perverse-minded': 1, 'self-centered': 1, 'undesirable': 1, 'flashy': 1, 'masturbating': 1, 'Entertaining': 1, 'cryptic': 1, 'continental': 2, 'hour-by-hour': 1, 'alone': 1, 'high-styled': 1, 'unadulterated': 1, 'fashionable': 1, 'blissful': 1, 'unintelligent': 1, 'disdainful': 1, 'rabid': 1, 'reasonable': 1, 'literate': 1, 'spirited': 1, 'extinct': 1, 'strategic': 1, 'Coming': 1, 'irreverent': 1, 'diminutive': 1, 'authoritative': 1, 'unreasonable': 2, 'coveted': 1, 'dominant': 1, 'overbearing': 1, 'lion-hearted': 1, 'militant': 2, 'sensible': 1, 'anxietyhatched': 1, 'castrated': 2, 'isolate': 1, 'unshrouded': 1, 'normal': 1, 'fragmented': 2, 'childlike': 1, 'melting': 1, 'synthetic': 1, 'night-lit': 1, 'offensive': 1, 'ice-cube': 1, 'crazed': 1, 'judo': 2, 'laughing': 2, 'flaky': 1, 'flesh-colored': 1, 'stereophonic': 1, 'pendulous': 1, 'steel-wool': 1, 'Unable': 1, 'narrow': 1, 'streamlined': 1, 'buttered': 1, 'conscientious': 1, 'perfumed': 2, 'womanish': 1, 'avaricious': 1, 'Sanskrit': 2, 'overhear': 1, 'lunatic': 1, 'chilling': 1, 'unparked': 1, 'bright': 2, 'all-night': 1, 'nutty': 1, 'daytime': 1, 'unaccountable': 1, 'foreign-soiled': 1, 'disciplineminded': 1, 'nightly': 1, 'satisfied': 1, 'covetous': 1, 'anxious': 1, 'fire-escape': 1, 'blue-black': 1, 'olfactory': 1, 'prevaricating': 1, 'halffinished': 1, 'mouth-hanging': 1, 'bedded-down': 1, 'heliocentric': 1, 'furious': 1, 'harmless': 1, 'affable': 1, 'despicable': 1, 'courteous': 1, 'purposeful': 1, 'asymmetrical': 1, 'impure': 1, 'frostbitten': 1, 'toothpasty': 1, 'dignified': 1, 'blinded': 1, 'Abyssinian': 2, 'reassuring': 1, 'worldtraveled': 1, 'shimmering': 1, 'gaseous': 1, 'healthy': 1, 'milk-white': 1, 'beer-drinking': 1, 'dime-store-wigged': 1, 'infectious': 1, 'uncompleted': 1, 'kohl-eyed': 1, 'oblong': 1, 'first-come-firstserved': 1, 'clamoring': 1, 'civilian': 1, 'involuted': 1, 'Entranced': 1, 'hooded': 1, 'indigestible': 1, 'diaphanous': 1, 'neophyte': 1, 'long-legged': 1, 'vertiginous': 1, 'hard-breathing': 1, 'head-shattering': 1, 'tornto-pieces-looking': 1, 'married': 1, 'prickly': 1, 'safe-at-last': 1, 'dog-natured': 1, 'offended-sounding': 1, 'two-faced': 1, 'romance-spouting': 1, 'sensual': 1, 'silkcovered': 1, 'sharp': 1, 'errant': 1, 'light-colored': 1, 'funny-looking': 1, 'striped': 1, 'shaded': 1, 'entrenched': 1, 'dog-tired': 1, 'chartered': 1, 'plaid': 1, 'outdated': 1, 'colored': 2, 'hopeless': 1, 'antediluvian': 1, 'ascetic': 1, 'egomaniacal': 1, 'self-imposed': 1, 'well-dressed': 1, 'legitimate': 1, 'reactionary': 1, 'death-wish': 1, 'undisclosed': 1, 'nonsynthetic': 1, 'Sanskrit-disciplined': 1, 'bed-linen': 1, 'unvalued': 1, 'Sick': 1, 'commendable': 1, 'Italian': 1, 'British': 1, 'Democratic': 1, 'associate': 1, 'Dutch': 1, 'scathing': 1, 'psychical': 1, 'sensory': 1, 'lyrical': 1, 'aspiring': 1, 'rhapsodic': 1, 'evocative': 1, 'ambitious': 1, 'rare': 1, 'modern-day': 1}
The workers.@1969
{'prior': 1, 'dead': 30, 'fictional': 1, 'electronic': 1, 'written': 1, 'mechanical': 16, 'due': 6, 'glowing': 2, 'unpredictable': 1, 'afraid': 14, 'new': 44, 'yellowface': 1, 'vulnerable': 1, 'unaware': 1, 'rampant': 2, 'inconstant': 1, 'static': 10, 'panelled': 1, 'resounding': 1, 'Flexible': 1, 'efficient': 4, 'instinctive': 1, 'fifth': 4, 'Dexterous': 3, 'Temporary': 1, 'old': 38, 'last': 34, 'flexible': 2, 'single': 4, 'drapery-covered': 1, 'commercial': 4, 'dormant': 1, 'unpremeditated': 1, 'white': 14, 'fitting': 3, 'great': 17, 'Classified': 1, 'precarious': 1, 'dirty': 7, 'slow': 3, 'damp': 1, 'empty': 7, 'corrective': 7, 'loose': 6, 'angry': 6, 'temporary': 5, 'total': 4, 'thick': 9, 'brief': 1, 'several': 11, 'many': 32, 'elderly': 1, 'other': 48, 'familiar': 6, 'Intriguing': 1, 'wrong': 26, 'human': 10, 'quiet': 10, 'large-framed': 1, 'open': 9, 'gaudy': 1, 'common': 1, 'significant': 4, 'unshaven': 2, 'embarrassed': 4, 'automible': 1, 'important': 14, 'eccentric': 3, 'able': 17, 'rid': 4, 'uptown': 7, 'contrary': 1, 'Uptown': 1, 'easy': 3, 'free': 28, 'broken': 1, 'professional': 2, 'sure': 20, 'thoughtful': 2, 'dependentlooking': 1, 'fellow': 4, 'worthy': 2, 'distinctive': 1, 'whole': 10, 'special': 7, 'young': 13, 'Brilliant': 1, 'good': 93, 'glad': 12, 'strong': 10, 'same': 37, 'poor': 4, 'next': 12, 'sorry': 24, 'generous': 3, 'beautiful': 7, 'suspicious': 1, 'fair': 3, 'real': 19, 'Large': 1, 'smart': 8, 'certain': 11, 'ordinary': 3, 'strange': 7, 'nonprofessional': 1, 'thankful': 1, 'large': 14, 'cheerful': 3, 'first': 26, 'bad': 21, 'natural': 4, 'right': 26, 'ready': 12, 'few': 9, 'drunk': 11, 'extra': 10, 'grateful': 3, 'unsteady': 1, 'Good': 26, 'present': 4, 'second': 8, 'little': 37, 'straight': 1, 'marked': 1, 'tortured': 1, 'black': 9, 'profane': 1, 'Sure': 4, 'electric': 3, 'gifted': 1, 'striking': 20, 'revolving': 1, 'own': 37, 'personal': 5, 'work-bound': 1, 'yawnlike': 1, 'short': 2, 'charming': 2, 'left': 1, 'opposite': 2, 'abundant': 1, 'alive': 11, 'small': 4, 'blanket-covered': 1, 'Christian': 1, 'seeing-eye': 1, 'quick': 3, 'blind': 2, 'myriad': 1, 'red': 6, 'Competent': 1, 'perceptive': 3, 'unsettled': 1, 'visible': 3, 'stagnant': 4, 'inefficient': 1, 'cold': 12, 'ice-blue': 3, 'undecided': 1, 'Rotten': 1, 'brash': 1, 'dexterous': 14, 'muted': 1, 'muddy': 2, 'urgent': 6, 'reluctant': 1, 'satisfied': 3, 'suggestive': 1, 'sand-fringed': 1, 'dull': 1, 'Yellow-helmeted': 1, 'hot': 7, 'standoffish': 1, 'ruddy-skinned': 1, 'light': 4, 'undefined': 1, 'forceful': 1, 'lazy': 1, 'useless': 2, 'Embarrassed': 1, 'warm': 8, 'indicative': 2, 'blank': 1, 'self-critical': 1, 'third': 6, 'nimble': 5, 'five-minute': 1, 'inner': 5, 'high': 3, 'vagrant': 2, 'employable': 1, 'such': 9, 'practical': 2, 'idle': 2, 'anxious': 6, 'arrogant': 1, 'mere': 1, 'analytical': 1, 'Steady': 2, 'aggressive': 2, 'beggarly': 1, 'cool': 2, 'faithful': 6, 'insistent': 1, 'follow-up': 1, 'wild': 5, 'ceremonial': 1, 'loving': 6, 'absent': 2, 'verbatim': 1, 'Restless': 1, 'howling': 1, 'useful': 1, 'Other': 2, 'fresh': 2, 'crowded': 1, 'unusual': 3, 'uneasy': 2, 'inappropriate': 2, 'much': 69, 'available': 2, 'surprised': 5, 'unhappy': 1, 'routine': 1, 'sole': 5, 'late': 23, 'correct': 1, 'full': 10, 'Beautiful': 2, 'mild': 2, 'bright': 4, 'startling': 2, 'career-woman': 1, 'ugly': 4, 'hungry': 5, 'favorite': 1, 'bothersome': 1, 'long': 25, 'brown': 4, 'fine': 9, 'Sweet': 2, 'big': 11, 'voracious': 1, 'restless': 7, 'meticulous': 2, 'possible': 4, 'heavy': 3, 'puffy-eyed': 1, 'sleepy-eyed': 1, 'secret': 2, 'hard': 20, 'uncovered': 1, 'perfect': 4, 'middle-aged': 1, 'informal': 1, 'Hardened': 1, 'Loose': 1, 'busy': 23, 'one-page': 1, 'adjacent': 2, 'front': 21, 'Powerful': 1, 'commerical': 1, 'Fine': 2, 'green': 10, 'gray': 6, 'final': 1, 'back': 6, 'Bottled': 1, 'drab': 1, 'sick': 15, 'only': 27, 'funny': 6, 'communicative': 1, 'enough': 6, 'ten-second': 1, 'Sub-total': 2, 'one-legged': 1, 'husky': 1, 'repetitive': 1, 'Exact': 1, 'constant': 2, 'unable': 1, 'necessary': 4, 'silver': 1, 'Bad': 1, 'underpaid': 1, 'rough': 5, 'lowly': 3, 'fluent': 1, 'unemployed': 1, 'deaf': 1, 'mobile': 1, 'outer': 2, 'intact': 2, 'slight': 1, 'funning': 1, 'permanent': 5, 'appropriate': 4, 'year-round': 1, 'Weird': 1, 'thin': 3, 'vain': 3, 'similar': 1, 'excellent': 1, 'humane': 1, 'lifeless': 1, 'migrant': 1, 'calm': 1, 'frightening': 1, 'dangerous': 1, 'cupped': 1, 'domestic': 3, 'solid': 3, 'lucky': 4, 'twenty-degree': 1, 'introspective': 1, 'nice': 22, 'ungrateful': 2, 'worth': 3, 'eligible': 1, 'worthwhile': 1, 'whirlpool': 1, 'interested': 10, 'amusing': 2, 'serious': 7, 'glass-enclosed': 1, 'wellpreserved': 1, 'twentyfive': 2, 'Middle-aged': 1, 'usual': 4, 'lousy': 2, 'ille': 1, 'crazy': 2, 'tired': 10, 'Human': 1, 'soft': 4, 'outside': 2, 'early': 3, 'assistant': 1, 'fast': 4, 'clerical': 1, 'decent': 2, 'Strange': 1, 'mine': 1, 'next-door': 1, 'braided': 1, 'healthy': 2, 'appetizing': 1, 'terrible': 4, 'sub-total': 1, 'shoeshine': 1, 'innumerable': 1, 'humdrum': 1, 'strong-spirited': 1, 'sad': 3, 'Next': 2, 'intelligent': 2, 'Vital': 1, 'self-sufficient': 1, 'Total': 1, 'anesthetized': 1, 'control': 1, 'mad': 5, 'respectable': 2, 'sweet': 5, 'funeral': 3, 'self-operating': 1, 'Great': 2, 'modern': 1, 'adventurous': 1, 'recorded': 1, 'lonely': 4, 'chocolate-scented': 1, 'yellow': 10, 'radiant': 1, 'clinging': 2, 'entertaining': 1, 'tangible': 2, 'impossible': 1, 'massive': 1, 'rubbish': 2, 'mischievous': 3, 'high-rise': 1, 'unseen': 1, 'wooden': 5, 'thicktoothed': 1, 'different': 4, 'mortal': 1, 'distant': 2, 'subtle': 2, 'amputated': 1, 'scary': 2, 'public': 3, 'greedy': 1, 'simple': 1, 'bare': 2, 'positive': 3, 'harsh': 2, 'curly': 1, 'clever': 7, 'tremendous': 1, 'tall': 1, 'convinced': 1, 'boyish': 1, 'alert': 1, 'loud': 2, 'related': 1, 'swollen': 1, 'pitiful': 1, 'out-of-town': 1, 'equal': 4, 'startled': 1, 'clean': 5, 'unauthorized': 1, 'weather-beaten': 1, 'realistic': 3, 'Old': 2, 'blue': 2, 'moderate': 1, 'near': 2, 'excess': 1, 'known': 1, 'incoherent': 1, 'discreet': 3, 'regular': 3, 'delicate': 1, 'sudden': 6, 'Overwhelming': 12, 'wet': 2, 'co-representative': 1, 'dry': 3, 'overwhelming': 1, 'all-around': 1, 'ashamed': 1, 'versatile': 1, 'proud': 8, 'abrupt': 3, 'Hälſäliläliliğliftliftliftliftli': 1, 'liquid': 2, 'uncomfortable': 1, 'conscientious': 1, 'pleased': 6, 'well-groomed': 1, 'Nice': 5, 'Last': 1, 'superior': 4, 'unsealed': 1, 'Glad': 1, 'undignified': 1, 'rude': 1, 'outgoing': 1, 'honest': 1, 'wise': 1, 'Ready': 2, 'mean': 1, 'numerous': 1, 'typographical': 1, 'guilty': 9, 'awful': 2, 'valuable': 2, 'chief': 1, 'diplomatic': 1, 'nervous': 3, 'modest': 2, 'stupendous': 1, 'dignified': 1, 'pleasant': 2, 'twenty-fifth': 1, 'gilded': 1, 'willing': 2, 'inhumane': 1, 'rapid': 1, 'derelict': 5, 'Scary': 2, 'coin-return': 1, 'frail': 1, 'ashen': 1, 'never-ending': 1, 'quarrelsome': 1, 'moody': 1, 'facial': 1, 'Wondering': 1, 'Solemn': 1, 'malicious': 1, 'sullen': 1, 'orderly': 1, 'ill': 1, 'aware': 4, 'private': 1, 'majestic': 1, 'unheeded': 1, 'sedate': 1, 'former': 1, 'darkening': 1, 'rainy': 1, 'ice-cold': 1, 'Semi-full': 1, 'fertile': 1, 'fleshy': 1, 'sash': 1, 'better-dress': 1, 'Rainy': 1, 'unfulfilled': 1, 'tight': 1, 'jealous': 3, 'ice-black': 1, 'Singing': 2, 'slim': 2, 'self-conscious': 1, 'dark-haired': 1, 'animated': 1, 'immodest': 1, 'reflex': 1, 'sound': 1, 'comforting': 2, 'unfair': 1, 'unfeeling': 1, 'ash': 4, 'difficult': 2, 'Half-empty': 1, 'black-stemmed': 1, 'phantom': 1, 'handsome': 1, 'faraway': 2, 'repetitious': 1, 'hard-working': 1, 'head': 1, 'elevated': 1, 'gentle': 1, 'pushy': 1, 'flag-draped': 1, 'seaworthy': 1, 'loyal': 1, 'ardent': 1, 'bleeding': 1, 'remarkable': 2, 'fantastic': 2, 'talkative': 1, 'interesting': 4, 'careful': 2, 'Dead': 1, 'peaceful': 2, 'rich': 3, 'expensive': 2, 'seven-hour': 1, 'dizzy': 1, 'particular': 2, 'well-off': 1, 'safe': 7, 'happy': 3, 'worried': 5, 'capable': 4, 'financial': 1, 'close': 1, 'bald': 1, 'heavy-set': 1, 'purple': 1, 'retired': 1, 'steady': 2, 'bereft': 1, 'overjoyed': 1, 'chopped-up': 1, 'popular': 1, 'nostalgic': 1, 'we-we': 1, 'frightened': 2, 'wanted': 1, 'much-desired': 1, 'specific': 4, 'unsanitary': 1, 'responsible': 3, 'silly': 2, 'Alma': 7, 'weird': 1, 'thirsty': 2, 'sly': 1, 'dark': 1, 'weighted': 1, 'unruly': 1, 'bottom': 2, 'Prospective': 1, 'ancient': 1, 'built-in': 1, 'INSUFFICIENT': 2, 'COMPUTER-AIDED': 2, 'pre-mix': 1, 'Pre-mix': 1, 'fascinating': 4, 'key': 4, 'Bright': 1, 'imaginable': 1, 'brilliant': 1, 'plastic': 2, 'star-struck': 1, 'irregular': 1, 'profound': 1, 'parallel': 1, 'burned-out': 1, 'technical': 2, 'hard-to-reach': 1, 'problem-solving': 1, 'so-called': 2, 'eventual': 1, 'Federal': 1, 'YOUR': 3, 'STOP-the': 1, 'endless': 1, 'DRY': 1, 'future': 2, 'proper': 1, 'upset': 2, 'essary': 1, 'blood-stained': 1, 'once-tight': 1, 'stunned': 1, 'colorless': 2, 'taut': 2, 'clear': 2, 'entire': 2, 'helpful': 1, 'antic': 1, 'Empty': 1, 'cross': 1, 'rare': 1, 'over-anxious': 1, 'polite': 1, 'complicated': 4, 'sticky': 1, 'curious': 2, 'magic': 2, 'automatic': 1, 'nine-to-five': 2, 'Funny': 1, 'true': 6, 'flirtatious': 1, 'meaningful': 4, 'giant': 1, 'sixth': 2, 'normal': 2, 'immediate': 1, 'Ironic': 1, 'she-God': 1, 'snobbish': 1, 'apparent': 2, 'longterm': 1, 'marvellous': 1, 'irresponsible': 1, 'God-given': 1, 'drawn-out': 1, 'confident': 1, 'no-nonsense': 2, 'foregone': 1, 'electrical': 1, 'impatient': 1, 'scarce': 1, 'heartless': 1, 'incapable': 1, 'secure': 1, 'cooking': 1, 'Yellow': 1, 'Heavy': 1, 'gaping': 1, 'Several': 1, 'hollow': 1, 'fickle-minded': 1, 'fearful': 1, 'second-hand': 1, 'content': 4, 'musty': 1, 'deceased': 1, 'attractive': 2, 'round-shouldered': 1, 'unpleasant': 1, 'thriving': 1, 'one-hundred-dollar': 1, 'ajar': 1, 'stiff': 1, 'soothing': 1, 'petrified': 1, 'fourth': 1, 'angered': 1, 'scant': 1, 'breathless': 1, 'definite': 1, 'rolling': 1, 'noble': 1, 'unsentimental': 1, 'tremulous': 1, 'ignoble': 1, 'Ignoble': 1, 'innocent': 5, 'dependent': 1, 'ridiculous': 2, 'cruel': 2, 'deserving': 1, 'uniform': 1, 'petty': 2, 'married': 1, 'candle-lit': 1, 'restive': 1, 'likely': 2, 'critical': 1, 'dramatic': 2, 'wonderful': 2, 'embarrassing': 1, 'merciful': 1, 'sentimental': 4, 'patient': 1, 'red-faced': 1, 'hushed': 2, 'eerie': 1, 'sympathetic': 1, 'disappointing': 1, 'eager': 1, 'scroll-like': 1, 'grown-up': 1, 'long-range': 1, 'odd': 1, 'catchy': 1, 'main': 2, 'decisive': 1, 'Innocent': 1, 'irrelevant': 1, 'ethical': 1, 'romantic': 1, 'advantageous': 1, 'forthcoming': 1, 'well-intentioned': 1, 'pretentious': 1, 'going-away': 1, 'else': 1, 'mediocre': 1, 'intangible': 1, 'technological': 1, 'desperate': 4, 'compatible': 2, 'caressive': 2, 'delicious': 1, 'huge': 1, 'life-size': 1, 'hush': 1, 'foolish': 1, 'pinched': 1, 'superficial': 1, 'vital': 1, 'deep': 1, 'liberated': 4, 'Rolling': 1, 'weary': 1, 'firm': 3, 'unjust': 1, 'True': 1, 'creative': 1, 'powerful': 1, 'violent': 1, 'prime': 2, 'calloused': 1, 'DUE': 1, 'AS': 1}
Clotel; or, The president's daughter : a narrative of slave life in the United States /@1984
{'short': 29, 'global': 1, 'new': 34, 'self-evident': 2, 'Kt': 1, 'mttiteni': 1, 'certain': 9, 'endowed': 3, 'equal': 8, 'American': 42, 'inalienable': 5, 'British': 11, 'lawful': 2, 'entire': 8, 'perfect': 10, 'runaway': 20, 'common': 13, 'thirtyone': 1, 'first': 64, 'several': 28, 'white': 78, 'wise': 2, 'good': 67, 'own': 93, 'brutal': 3, 'pious': 7, 'solemn': 4, 'bare': 1, 'true': 20, 'prudent': 1, 'great': 70, 'high': 25, 'physical': 3, 'similar': 5, 'public': 20, 'main': 3, 'lively': 2, 'sufficient': 3, 'mechanical': 1, 'YOUNG': 1, 'FREE': 1, 'NEGRO': 2, 'TRITE': 1, 'HAPPY': 1, 'late': 8, 'aristocratic': 1, 'mute': 2, 'dumb': 1, 'indignant': 2, 'near': 6, 'whoso': 1, 'beautiful': 23, 'able': 12, 'favourable': 6, 'young': 105, 'unfeeling': 4, 'fertile': 1, 'rich': 5, 'old': 73, 'beloved': 7, 'heart-rending': 1, 'utter': 3, 'cruel': 11, 'tortured': 1, 'cold': 13, 'poor': 59, 'few': 37, 'much': 46, 'early': 15, 'bitter': 4, 'medical': 3, 'harsh': 3, 'other': 107, 'fugitive': 40, 'real': 9, 'inhuman': 2, 'bad': 13, 'severe': 4, 'ferocious': 2, 'heartless': 1, 'such': 58, 'tyrannical': 1, 'satisfied': 6, 'aware': 8, 'inveterate': 1, 'different': 6, 'limited': 1, 'adjoining': 4, 'hidden': 1, 'peculiar': 6, 'uncommon': 1, 'same': 57, 'strange': 6, 'under-steward': 1, 'chained': 9, 'strict': 2, 'last': 63, 'small': 15, 'large': 37, 'wide': 2, 'overwhelming': 2, 'human': 31, 'displeased': 2, 'grey': 5, 'numerous': 4, 'long': 35, 'second': 11, 'weary': 7, 'skilled': 2, 'present': 11, 'little': 72, 'whole': 32, 'round': 3, 'worthless': 4, 'former': 12, 'blind': 9, 'unable': 5, 'impossible': 3, 'warm': 7, 'frantic': 1, 'next': 31, 'free': 90, 'only': 33, 'fellow-creature': 1, 'wild': 7, 'sensitive': 1, 'civilised': 4, 'vain': 12, 'grievous': 3, 'gentle': 3, 'paltry': 1, 'vile': 1, 'Christian': 19, 'enough': 6, 'kind': 2, 'helpless': 1, 'stricken': 2, 'piteous': 1, 'striking': 3, 'dead': 15, 'alive': 5, 'breathless': 1, 'evident': 2, 'broken': 4, 'repugnant': 2, 'silent': 10, 'revolting': 1, 'indescribable': 1, 'fair': 9, 'sensual': 1, 'grave': 3, 'absent': 3, 'bright': 9, 'unwilling': 1, 'simple': 1, 'fast': 7, 'untarnished': 1, 'democratic': 4, 'republican': 1, 'handcuffed': 1, 'sure': 12, 'infernal': 1, 'omnipotent': 1, 'religious': 23, 'heavenly': 6, 'tearless': 1, 'deep': 17, 'signless': 1, 'sad': 13, 'unimpressionable': 1, 'ready': 19, 'dark': 18, 'well-nigh': 1, 'heavy': 7, 'lone': 1, 'daytime': 1, 'active': 1, 'future': 5, 'mystic': 1, 'peaceful': 1, 'convenient': 1, 'nigh': 1, 'night-time': 1, 'everlasting': 1, 'happy': 12, 'gloomy': 2, 'affectionate': 4, 'many': 68, 'desolate': 4, 'True': 9, 'winter-time': 1, 'strong': 12, 'deadly': 5, 'attractive': 2, 'dry': 2, 'east': 1, 'possible': 10, 'sweet': 7, 'solitary': 6, 'additional': 5, 'third': 7, 'broad-brimmed': 2, 'glowing': 1, 'pro-slaving': 1, 'big': 7, 'covered': 3, 'apprehensive': 1, 'sick': 8, 'benevolent': 5, 'blood-clotted': 1, 'glad': 9, 'anxious': 12, 'local': 1, 'bar-room': 1, 'newly-christened': 1, 'willing': 6, 'afraid': 9, 'considerable': 3, 'faint': 4, 'right': 10, 'nice': 2, 'interesting': 5, 'to-night': 2, 'safe': 4, 'Such': 11, 'cheap': 2, 'neighbouring': 5, 'previous': 9, 'immediate': 8, 'opposite': 6, 'principal': 3, 'clean': 3, 'Fashionable': 1, 'extensive': 2, 'annoying': 1, 'scarce': 2, 'dull': 2, 'red': 5, 'laughing': 1, 'promissory': 1, 'thriving': 1, 'payable': 1, 'dizzy': 2, 'suspicious': 1, 'Few': 2, 'sleepless': 2, 'fitting': 1, 'fourth': 2, 'Western': 2, 'rival': 2, 'sound': 2, 'back': 8, 'latter': 17, 'apparent': 1, 'moral': 10, 'Anti-Slavery': 5, 'abundant': 1, 'national': 6, 'personal': 7, 'prevalent': 1, 'intimate': 3, 'intellectual': 1, '10th': 2, 'noble': 9, 'following': 3, 'worthy': 2, 'crushed': 2, 'talented': 1, 'distinguished': 6, 'Great': 6, 'English': 3, 'desirable': 1, 'advantageous': 1, 'general': 13, 'liable': 4, 'secure': 3, 'African': 7, '18th': 1, 'uncompromising': 1, 'adverse': 1, 'esteemed': 1, 'star-spangled': 2, 'enslaved': 2, 'horrible': 1, 'marked': 3, 'four-footed': 1, 'marketable': 2, 'Coloured': 1, 'inferior': 2, 'so-called': 2, 'conscious': 3, 'flattering': 1, 'brief': 2, 'very': 3, 'profound': 3, 'literary': 6, 'hearty': 5, 'influential': 2, 'honourable': 2, 'provincial': 1, 'welcome': 3, 'close': 3, 'baleful': 1, 'touching': 2, 'sacred': 6, 'wicked': 4, 'uftnost': 1, 'immortal': 3, 'divine': 1, 'earthly': 3, 'oppressed': 5, 'vast': 5, 'righteous': 2, 'enthusiastic': 2, 'High': 2, 'token': 2, 'respectable': 4, 'odious': 2, 'cordial': 2, 'abominable': 1, 'excellent': 3, 'honorary': 1, 'spontaneous': 1, 'generous': 2, 'preferable': 1, 'insuperable': 1, 'serviceable': 1, '6th': 4, 'social': 11, 'uncongenial': 1, 'creditable': 1, 'novel': 1, 'evil': 6, 'remarkable': 5, 'down-trodden': 1, 'manly': 1, 'extraordinary': 1, 'injured': 4, 'unworthy': 1, 'capable': 3, 'Last': 2, 'amusing': 4, 'hideous': 3, 'self-educated': 1, 'else': 1, 'superior': 5, 'practical': 2, 'fellow': 6, 'senseless': 2, 'absolute': 3, 'impious': 2, 'intelligent': 5, 'cxigeant': 1, 'assiduous': 1, 'Chinese': 1, 'useful': 3, 'rapid': 3, 'whip-scarred': 1, 'Fugitive': 3, 'proud': 6, 'educational': 1, 'distant': 6, 'infamous': 2, 'dependent': 1, 'obedient': 2, 'clear': 6, 'native': 15, 'fearful': 3, 'degraded': 3, 'black': 36, 'prominent': 3, 'dismal': 4, 'mulatto': 10, 'immoral': 2, 'subject': 5, 'unrecognised': 3, 'unusual': 3, 'unknown': 9, 'unanimous': 1, 'uneasy': 3, 'depraved': 1, 'sensible': 1, 'important': 3, 'involuntary': 1, 'above': 4, 'prosperous': 3, 'mere': 7, 'invisible': 1, 'slight': 2, 'advisable': 1, 'creative': 1, 'delicate': 1, 'complete': 3, 'incalculable': 2, 'parental': 1, 'fond': 2, 'chaste': 1, 'finely-dressed': 1, 'healthy': 3, 'rare': 7, 'able-bodied': 2, 'Many': 5, 'prolific': 1, 'fascinating': 1, 'extravagant': 1, 'prime': 3, 'aged': 2, 'prepossessing': 1, 'extra': 3, 'later': 1, 'comparative': 1, 'fresh': 10, 'favourite': 4, 'tropical': 2, 'delighted': 4, 'wealthy': 2, 'attentive': 3, 'twenty-second': 1, 'wet': 1, 'graceful': 5, 'pure': 5, 'blank': 1, 'valuable': 6, 'tall': 16, 'relative': 2, 'Real': 1, 'fancy': 2, 'trustworthy': 3, 'virtuous': 1, 'rough': 5, 'improved': 1, 'devoted': 2, 'continual': 1, 'Southern': 1, 'due': 4, 'heart-string': 1, 'exalted': 2, 'God-ordained': 1, 'Untutored': 1, 'keen': 2, 'successful': 1, 'heartrending': 2, 'indifferent': 2, 'thick': 4, 'low': 13, 'servant': 11, 'woolly': 2, 'strong-looking': 1, 'potato-digging': 1, 'corn-planting': 1, 'dangerous': 4, 'dense': 4, 'disabled': 1, 'silver': 1, 'redeeming': 1, 'fine': 12, 'excited': 5, 'cool': 2, '3-ou': 1, 'trusty': 1, 'thin-faced': 1, 'serious': 1, 'ruthless': 2, 'fettered': 1, 'upper': 4, 'grim': 1, 'supper-table': 1, 'potent': 1, 'wily': 1, 'peerless': 1, 'fiend-like': 1, 'hereditary': 1, 'grim-visaged': 1, 'sagacious': 2, 'temporary': 1, 'tortuous': 1, 'bushy': 2, 'faithful': 4, 'jealous': 1, 'momentary': 1, 'thirsty': 1, 'hungry': 1, 'desperate': 3, 'scent': 1, 'substantial': 1, 'wonderful': 3, 'relentless': 1, 'astonishing': 1, 'jaded': 1, 'ceaseless': 3, 'quick': 5, 'straight': 2, 'irregular': 1, 'Vain': 1, 'unmoved': 1, 'unpardonable': 1, 'burnt': 3, 'hog-bed': 1, 'Numerous': 1, 'superhuman': 1, 'sharp': 3, 'painful': 5, 'daily': 6, 'square': 2, 'Viy': 1, 'vxnstiint': 1, 'rebellious': 1, 'various': 5, 'harmonious': 1, 'tasteful': 1, 'verdant': 1, 'rural': 2, 'loving': 2, 'unexpected': 2, 'majestic': 1, 'oriental': 1, 'outward': 3, 'accordant': 1, 'fragile': 1, 'lavish': 1, 'pleasant': 3, 'gothic': 1, 'hill-side': 1, 'poetic': 2, 'unabjp': 1, 'secluded': 4, 'plaintive': 2, 'mutual': 1, 'single': 8, 'legal': 1, 'appropriate': 1, 'Happy': 2, 'proscribed': 1, 'inexpressible': 1, 'first-born': 1, 'docile': 1, 'vague': 1, 'sheltered': 1, 'timid': 2, 'popular': 2, 'marvellous': 1, 'political': 7, 'worldly': 1, 'unavoidable': 1, 'silken': 1, 'unmingled': 1, 'light': 1, 'unfettered': 1, 'accustomed': 3, 'blue': 3, 'inexpressive': 1, 'ardent': 2, 'inward': 1, 'flat': 1, 'slave-trader': 1, 'brute': 1, 'dejected': 2, 'furrowed': 1, 'swarthy': 1, 'pale': 6, 'red-faced': 1, 'expressive': 1, 'devoid': 1, 'maid-servant': 2, 'bewildered': 1, 'unharness': 1, 'Fortunate': 1, 'circuitous': 1, 'satisfactory': 1, 'potater-digging': 1, 'doubtless': 2, 'noisome': 1, 'misty': 1, 'loud': 4, 'sickly': 1, 'slave-consuming': 1, 'particular': 4, 'unheeded': 1, 'unheard': 1, 'precise': 1, 'hot': 7, 'hysteric': 1, 'glorious': 6, 'snug': 1, 'brilliant': 1, 'neat': 2, 'overworked': 2, 'pretended': 1, 'unshorn': 1, 'modern': 1, 'tutted': 1, 'natural': 3, 'splendid': 4, 'artificial': 1, 'independent': 1, 'wrong': 12, 'voluntary': 1, 'arbitrary': 1, 'restricted': 1, 'gregarious': 1, 'positive': 1, 'further': 5, 'inconsistent': 3, 'domestic': 3, 'broad': 2, 'civil': 1, 'easy': 3, 'drunk': 1, 'proper': 5, 'nineteenth': 1, 'pleased': 3, 'regular': 2, 'insecure': 1, 'manifest': 2, 'confident': 3, 'disinterested': 1, 'enlarged': 2, 'limitless': 1, 'sorry': 2, 'unrequited': 1, 'missionary': 5, 'unto': 10, 'one-horse': 1, 'sea-faring': 1, 'Dutch': 2, 'shaded': 3, 'half-German': 1, 'squatty': 1, 'careful': 2, 'diligent': 1, 'idle': 1, 'rugged': 1, 'difficult': 2, 'sinful': 2, 'unhappy': 2, 'hurtful': 1, 'hard': 7, 'necessary': 2, 'innocent': 4, 'needful': 1, 'thankful': 1, 'past': 5, 'sonorous': 1, 'barbarous': 2, 'interested': 1, 'ignorant': 7, 'fortunate': 3, 'benighted': 1, 'slow': 2, 'eye-servant': 2, 'sullen': 1, 'to-day': 2, 'whipping': 1, 'dibble': 1, 'tough': 2, 'slave-holding': 1, 'humane': 1, 'eldest': 1, 'stable': 1, 'four-legged': 1, 'hard-headed': 1, 'forgetful': 1, 'Divine': 1, 'drunken': 1, 'loathsome': 1, 'univarsaly': 1, 'good-for-no': 1, 'bodied': 1, 'youto': 1, 'onpleasant': 1, 'revolving': 1, 'timely': 1, 'ours': 3, 'interrupted': 1, 'individual': 2, 'hostile': 2, 'honest': 7, 'terrible': 1, 'lonely': 3, 'full': 12, 'glossy': 2, 'ashamed': 2, 'usual': 2, 'audible': 1, 'heart-broken': 1, 'luxuriant': 2, 'Old': 8, 'henceforth': 1, 'selfish': 1, 'dearest': 1, 'miserable': 2, 'spare': 1, 'soothing': 2, 'death-pang': 1, 'Gothic': 1, 'bent': 1, 'impassioned': 2, 'deficient': 1, 'angry': 2, 'mild': 2, 'friendly': 1, 'worshipping': 1, 'dreary': 4, 'unseen': 1, 'guileless': 1, 'polite': 1, 'wintry': 1, 'lovely': 2, 'earnest': 3, 'unutterable': 1, 'fierce': 3, 'unprepared': 1, 'green': 4, 'friendless': 1, 'private': 5, 'unavailable': 1, 'foreign': 2, 'avowed': 1, 'poetical': 2, 'superlative': 1, 'beneficial': 1, 'eminent': 2, 'men-ste': 1, 'downward': 1, 'profitable': 1, 'persuasive': 2, 'wont': 1, 'unmarried': 2, 'monstrous': 1, 'thoughtless': 1, 'sanguine': 2, 'utmost': 6, 'precious': 1, 'uttermost': 1, 'life-long': 1, 'unbroken': 1, 'fervent': 1, 'perishing': 1, 'eighth': 1, 'unsearchable': 1, 'rightlv': 1, 'gracious': 1, 'unreasonable': 1, 'guilty': 1, 'reasonable': 2, 'mad': 2, 'disobedient': 1, 'internal': 1, 'familiar': 2, 'unholy': 1, 'every-day': 1, 'profane': 2, 'explicit': 1, 'ungodly': 4, 'lawless': 1, 'scathing': 1, 'disciplinable': 1, 'awful': 1, 'perjured': 1, 'anti-slavery': 1, 'accredited': 1, 'theological': 1, 'laudable': 1, 'essential': 1, 'tremendous': 1, 'fundamental': 1, 'unrepented': 1, 'winning': 1, 'self-possessed': 1, 'inherent': 1, 'gross': 1, 'Modest': 1, 'galling': 1, 'he.had': 1, 'anatomical': 1, 'respective': 1, 'incurable': 3, 'By-theby': 1, 'comely': 1, 'smooth': 1, 'polished': 1, 'droll': 1, 'sii.glo': 1, 'shiny': 1, 'married': 4, 'suspectible': 1, 'insensible': 2, 'well-dressed': 1, 'light-coloured': 1, 'unmistakeable': 1, 'Black': 1, 'lar': 1, 'folding': 1, 'indispensable': 1, 'ill': 2, 'frightened': 1, 'hi3': 1, 'clothed': 1, 'clever': 1, 'non-slaveholder': 1, 'far': 5, 'Keligious': 1, 'mighty': 4, 'full-blooded': 3, 'Agreeable': 1, 'smart': 1, 'conversational': 1, 'child-like': 1, 'sore': 1, 'eager': 2, 'famished': 1, 'gaunt': 1, 'nasty': 1, 'Indian': 1, 'priceless': 1, 'contented': 1, 'witty': 1, 'elated': 1, 'unsuccessful': 2, 'coarse': 1, 'calming': 1, 'Unhappy': 1, 'yellow': 3, 'befo-e': 1, 'oppressive': 3, 'care-worn': 1, 'tedious': 1, 'German': 2, 'horrid': 1, 'unprincipled': 2, 'perfidious': 1, 'ordinary': 2, 'intoxicating': 3, 'deaf': 2, 'insidious': 1, 'handsome': 2, 'left': 1, 'unfaithful': 1, 'fullblooded': 1, 'characteristic': 1, 'ere': 1, 'extreme': 2, 'primary': 1, 'eloquent': 1, 'intolerable': 2, 'wid': 1, 'heartfelt': 1, 'prejudiced': 1, 'unthinke': 1, 'reverenced': 1, 'respected': 1, 'live': 2, 'orphan': 1, 'ungrateful': 1, 'express': 1, 'grateful': 4, 'musical': 1, 'welkin': 1, 'impromptu': 1, 'younar': 1, 'Young': 1, 'nnd': 1, 'dining-room': 1, 'dignified': 3, 'net': 1, 'half': 1, 'unguarded': 1, 'deceased': 3, 'ethereal': 1, 'rational': 1, 'unjust': 2, 'dishonest': 1, 'broiling': 1, 'naked': 1, 'desired': 1, 'fiendish': 1, 'degrading': 1, 'unremitting': 1, 'perpetual': 2, 'boisterous': 1, 'mularter': 1, 'endless': 1, 'probable': 4, 'fraught': 1, 'supernatural': 1, 'high-sounding': 1, 'Northern': 2, 'sole': 1, 'liberating': 1, 'tight-fisted': 1, 'congenial': 1, 'theirs': 1, 'revolutionary': 1, 'indebted': 2, 'hazardous': 1, 'formidable': 1, 'praiseworthy': 1, 'General': 1, 'northern': 1, 'gradual': 1, 'Long': 2, 'available': 1, 'temperate': 2, 'unoffending': 1, 'double': 1, 'incessant': 1, 'fat': 1, 'adjacent': 1, 'respectful': 1, 'open': 5, 'palpitating': 1, 'hrandy': 1, 'full-bodied': 1, 'invalid': 3, 'treated': 1, 'critical': 2, 'stringent': 2, 'unwelcome': 1, 'womanly': 1, 'strapping': 1, 'restless': 1, 'mysterious': 2, 'Spanish': 2, 'tired': 1, 'enormous': 1, 'capacious': 2, 'withering': 1, 'bold': 3, 'attributable': 2, 'celebrated': 2, 'astonished': 2, 'apt': 1, 'off-hand': 2, 'Afraid': 1, 'first-class': 1, 'hundred-weight': 1, 'thirtyseven': 2, 'luggage-van': 1, 'suitable': 1, 'awkward': 1, 'constitutional': 3, 'illustrious': 2, 'laborious': 1, 'official': 1, 'crisp': 1, 'industrious': 2, 'acute': 1, 'orthodox': 1, 'venerable': 2, 'unpaid': 2, 'socalled': 1, 'Jewish': 1, 'Baptist': 2, 'hen-coop': 1, 'denunciatory': 1, 'obnoxious': 1, 'despotic': 3, 'Ethiopian': 1, 'uncontrolled': 1, 'Caucasian': 1, 'European': 1, 'grand': 4, 'eternal': 2, 'separate': 1, 'sovereign': 1, 'inevitable': 1, 'mournful': 3, 'muttering': 1, 'desolated': 2, 'classic': 1, 'Roman': 1, 'triumphal': 1, 'special': 2, 'firm': 1, 'Catholic': 1, 'slaveholding': 2, 'May-flower': 2, 'law-abiding': 1, 'occidental': 1, 'constitution-making': 1, 'rock-defended': 1, 'iron-bound': 1, 'western': 1, 'melancholy': 3, 'weatherbeaten': 1, 'unpitying': 1, 'law-sustaining': 1, 'unmixed': 1, 'fleshcutting': 1, 'blish': 1, 'rakish': 1, 'historical': 1, 'labour-honouring': 1, 'plain': 2, 'shocking': 1, 'parallel': 1, 'by-gone': 1, 'humnn': 1, 'irrefragable': 1, 'unspotted': 1, 'exact': 1, 'false': 2, 'coloured': 1, 'singular': 2, 'peaceable': 2, 'contemptible': 1, 'emancipated': 3, 'uncertain': 1, 'feeble': 1, 'profligate': 1, 'vicious': 3, 'emaciated': 1, 'lonesome': 1, 'ill-treated': 1, 'stately': 1, 'Deep': 1, 'breaking': 1, 'powerless': 1, 'insensate': 1, 'motionless': 1, 'free-born': 1, 'hypocritical': 1, 'damning': 1, 'dim': 2, 'Italian': 4, 'unpleasant': 1, 'stage-coach': 1, 'high-heeled': 1, 'Tired': 1, 'genuine': 1, 'farmer-looking': 1, 'slim': 1, 'sunny': 1, 'pule': 1, 'spectacled': 3, 'presidential': 1, 'elderly': 3, 'uneducated': 1, 'Juvinal': 1, 'Rising': 1, 'Female': 1, 'brown': 1, 'rabid': 1, 'first-rate': 1, 'temperance': 1, 'corned': 1, 'hollow': 1, 'teetotal': 1, 'unbounded': 1, 'mum': 1, 'bankrupt': 1, 'occasional': 2, 'habitual': 2, 'academic': 1, 'vigorous': 1, 'elegant': 1, 'bloated': 1, 'spurious': 1, 'holy': 4, 'featured': 1, 'ascendant': 1, 'Iused': 1, 'orderly': 1, 'wooden': 1, 's.he': 1, 'likely': 2, 'breezy': 1, 'grizzly': 1, 'pursuant': 1, 'quiet': 2, 'lithe': 1, 'famous': 1, 'ample': 1, 'sinewy': 1, 'Fourth': 1, 'uu': 1, 'wary': 1, 'inclined': 1, 'victorious': 1, 'sundry': 1, 'ghastly': 1, 'Attakapas': 5, 'lean': 1, 'unamiable': 1, 'sly': 1, 'partial': 1, '4he': 1, 'mortal': 1, 'hoarse': 1, 'Null': 1, 'doubtful': 1, 'bloody': 1, 'magic': 1, 'furious': 1, 'marriageable': 1, 'frightful': 1, 'destructive': 1, 'key': 1, 'inflamed': 1, 'mucous': 1, 'repulsive': 1, 'Fiery': 1, 'southern': 2, 'useless': 1, 'Blue': 1, 'infected': 2, 'fetid': 1, 'unburied': 1, 'yellowish': 1, 'unacquainted': 1, 'rude': 1, 'separated': 1, 'impending': 1, 'youthful': 1, 'reverential': 1, 'remote': 1, 'convinced': 1, 'hasty': 1, 'intense': 1, 'confused': 2, 'heart-piercing': 1, 'dreadful': 1, 'bitterand': 1, 'unvarnished': 1, 'imperturbable': 1, 'Anglo-Saxon': 1, 'incoming': 1, 'suicidal': 1, 'consequent': 1, 'insurrectionary': 2, 'Aware': 1, 'vindictive': 1, 'known': 1, 'watchful': 2, 'stern': 1, 'Dismal': 1, 'savage': 1, 'sanguinary': 1, 'oblique': 1, 'turbulent': 1, 'uncheered': 1, 'hopeless': 2, 'endurance': 1, 'merciless': 2, 'appalling': 1, 'unconquerable': 1, 'noisy': 1, 'improbable': 1, 'threatening': 1, 'ribald': 1, 'foamy': 1, 'Virginian': 1, 'narrow': 1, 'heroic': 2, 'Hungarian': 1, 'current': 1, 'Turkish': 1, 'merciful': 1, 'outstretched': 1, 'adown': 1, 'Faint': 1, 'wretched': 2, 'weak': 1, 'hallowed': 1, 'ostensible': 1, 'unhallowed': 1, 'ill-fated': 1, 'Grecian': 1, 'unfortunate': 1, 'soft': 1, 'thin': 1, 'lasting': 2, 'meritorious': 1, 'con': 1, 'fiery': 1, 'doomed': 1, 'final': 1, 'unhurt': 1, 'criminal': 1, 'trifling': 1, 'heathenish': 1, '4th': 1, 'Sad': 1, 'traditionary': 1, 'tearful': 1, 'sorrowing': 1, 'ignominious': 1, 'terrific': 1, 'inflexible': 1, 'secret': 1, 'front': 4, 'outside': 1, 'fanner-looking': 1, 'straight-collared': 1, 'broadbrimmed': 1, 'corresponding': 1, 'search-warrant': 1, 'triumphant': 1, 'female': 1, 'night-school': 1, 'collared': 1, 'laden': 1, 'varied': 1, 'busy': 1, 'half-buried': 1, 'death-like': 1, 'crowded': 1, 'petulant': 1, 'grave-yard': 1, 'trodden': 1, 'superb': 1, 'magnificent': 1, 'monkish': 1, 'crimson': 1, 'old-fashioned': 1, 'sumptuous': 1, 'antique': 1, 'unbuttoned': 1, 'dreamy': 1, 'marble-like': 1, 'related': 2, 'mingled': 1, 'matrimonial': 1, 'long-haired': 1, 'rippled': 1, 'reluctant': 1, 'sincere': 1, 'unobserved': 1, 'French': 1, 'Devenant': 4, 'Presbyterian': 1}
Fever : twelve stories /@1990
{'Strange': 1, 'majestic': 2, 'powerful': 2, 'recent': 1, 'fifth': 1, 'acclaimed': 1, 'first': 36, 'CONTEMPORARY': 1, 'other': 66, 'invaluable': 1, 'Little': 21, 'blue': 14, 'good': 57, 'big': 25, 'Small': 1, 'loud': 8, 'gaunt': 2, 'perfect': 7, 'just-right': 1, 'middle': 1, 'green': 15, 'small': 11, 'heavy': 6, 'little': 64, 'white': 63, 'compact': 1, 'young': 13, 'empty': 8, 'grassy': 1, 'visible': 4, 'regular': 2, 'Long': 2, 'long': 41, 'low': 5, 'black': 74, 'gray': 12, 'beat': 1, 'hollow': 3, 'fine': 7, 'braless': 1, 'lean': 1, 'flattened-out': 1, 'right': 13, 'sweet': 15, 'bald': 2, 'favorite': 4, 'syrupy': 1, 'unpredictable': 1, 'warm': 5, 'last': 32, 'coarse': 1, 'dark': 42, 'peculiar': 2, 'ash': 1, 'crazy': 10, 'cold': 13, 'strange': 8, 'bitter': 4, 'next': 27, 'deadly': 6, 'enough': 11, 'only': 11, 'dirty': 6, 'front': 8, 'unbroken': 2, 'freedom-dying': 1, 'old': 60, 'nice': 9, 'dumb': 2, 'goddamn': 3, 'sweaty': 2, 'yellow': 6, 'Same': 1, 'whole': 29, 'freedom-marching': 1, 'half-naked': 1, 'serious': 3, 'foul': 5, 'funeral': 2, 'subject': 4, 'wrong': 6, 'dead': 54, 'mean': 1, 'bad': 23, 'sorry-ass': 1, 'Funning': 1, 'deep': 5, 'North': 1, 'fair': 2, 'square': 2, 'steady': 7, 'new': 29, 'chump': 3, 'blind': 17, 'lone': 1, 'foul-shot': 1, 'real': 25, 'steadying': 1, 'ready': 10, 'clean': 8, 'funning': 1, 'tired': 7, 'damn': 3, 'hot': 15, 'high': 15, 'hard': 15, 'Sorry': 3, 'short': 7, 'else': 5, 'left': 6, 'quiet': 14, 'joint': 1, 'Quiet': 3, 'silly': 2, 'jumping-jack': 1, 'quick': 4, 'light-in-the-ass': 1, 'sudden': 4, 'rusty': 3, 'Good': 3, 'Great': 1, 'lame': 1, 'beautiful': 5, 'sure': 11, 'own': 30, 'clear': 4, 'sickle': 1, 'strong': 10, 'ordinary': 2, 'worth': 2, 'Interesting': 1, 'Nice': 1, 'hardheaded': 1, 'fading': 1, 'radiant': 1, 'narrow': 5, 'many': 33, 'possible': 5, 'sheltered': 1, 'immaculate': 1, 'secluded': 1, 'leaded': 1, 'solitary': 4, 'overloaded': 1, 'clean-cut': 1, 'neat': 4, 'patched-together': 1, 'fresh': 3, 'different': 13, 'stockinged': 2, 'Fresh': 1, 'puffy': 1, 'permanent': 2, 'rusted-out': 1, 'naked': 12, 'folding': 2, 'few': 19, 'German': 2, 'ramshackle': 1, 'ginger-colored': 1, 'frail': 3, 'slapdash': 1, 'silent': 3, 'stout': 1, 'dim-shouldered': 1, 'stormy': 1, 'slight': 1, 'unconnected': 1, 'open': 17, 'alive': 9, 'steep': 2, 'weather-beaten': 1, 'hopeless': 3, 'sprawled': 1, 'Enormous': 1, 'separate': 1, 'large': 7, 'hurry-up': 1, 'sooty': 2, 'wide': 9, 'swaybacked': 1, 'suburban': 3, 'patient': 1, 'Self-sufficient': 1, 'pale': 5, 'dangerous': 5, 'huge': 8, 'damp': 4, 'tiny': 7, 'tame': 3, 'mistaken': 1, 'Understand': 1, 'afraid': 7, 'peaceful': 2, 'leisurely': 1, 'prepared': 1, 'smallish': 1, 'free': 8, 'Hush': 1, 'useless': 1, 'frantic': 1, 'crook-ended': 1, 'stupid': 5, 'French': 5, 'humped': 2, 'conscientious': 1, 'lucky': 6, 'Damned': 1, 'silky': 2, 'crook-tailed': 1, 'round': 8, 'tight': 7, 'straight': 4, 'busy': 4, 'trim': 1, 'firm': 3, 'athletic': 1, 'important': 3, 'past': 18, 'rainy': 2, 'momentary': 1, 'professional': 1, 'odd': 1, 'cooped-up': 1, 'alert': 2, 'hello-how-are-you': 1, 'locked-in': 1, 'Silly': 2, 'complete': 12, 'nude': 1, 'famous': 2, 'bare': 12, 'special': 5, 'gloomy': 1, 'fenced': 1, 'high-stepping': 1, 'unto': 1, 'shortish': 1, 'invisible': 8, 'unobtrusive': 1, 'Black': 12, 'high-five': 1, 'sufficient': 1, 'tall': 6, 'cool': 7, 'accidental': 1, 'frosty': 1, 'available': 13, 'actual': 1, 'punch-clock': 1, 'presidential': 1, 'gingerbread': 1, 'clumsy': 2, 'unfinished': 1, 'private': 4, 'flat': 4, 'frosted': 1, 'pungent': 1, 'casual': 1, 'mixed': 1, 'wet': 8, 'early': 7, 'fourteen-year-old': 1, 'plump': 2, 'Cool': 1, 'glorious': 2, 'fancy': 1, 'comfortable': 2, 'wary': 2, 'striped': 1, 'shocked': 1, 'OK': 3, 'mismatched': 1, 'true': 5, 'elasticized': 1, 'noticeable': 1, 'clownish': 1, 'broad': 4, 'undue': 1, 'hidden': 2, 'fuzzy': 1, 'stiff': 2, 'demure': 1, 'same': 20, 'tar-baby': 1, 'much': 16, 'gangly': 1, 'bulky': 2, 'close': 1, 'aware': 5, 'girlish': 1, 'upright': 1, 'yawning': 1, 'lazy': 2, 'subtle': 4, 'awkward': 2, 'stuttering': 1, 'wonderful': 1, 'prone': 1, 'rear': 1, 'single': 3, 'paler': 2, 'rubbery': 1, 'useful': 2, 'wooden': 5, 'modest': 1, 'light': 23, 'limber': 1, 'oval': 2, 'late': 6, 'outside': 5, 'pubic': 2, 'certain': 7, 'pouty': 1, 'Different': 1, 'difficult': 2, 'baying': 1, 'ragged': 2, 'pearly': 1, 'rare': 3, 'loose': 2, 'whither': 1, 'Dead': 2, 'orchid': 4, 'jive': 1, 'bushy': 3, 'Worried': 1, 'brown-eyed-handsomeman': 1, 'upper': 3, 'obby': 1, 'fabled': 1, 'crusty': 3, 'downhome': 1, 'faraway': 1, 'Wondering': 1, 'stomped-down': 1, 'far-flung': 1, 'dusky': 1, 'strange-sounding': 1, 'red': 10, 'pitiful': 3, 'shiny': 8, 'mutual': 1, 'decent': 5, 'thick': 8, 'outrageous': 2, 'curious': 3, 'efficient': 1, 'creaking': 1, 'distant': 2, 'humming': 1, 'asthmatic': 1, 'brisk': 2, 'troubled': 1, 'clamorous': 1, 'funny': 5, 'ribbed': 1, 'Springy': 1, 'doomed': 2, 'gleaming': 3, 'symmetrical': 2, 'ersatz': 1, 'countless': 1, 'bent': 1, 'swarthy': 2, 'shocking': 2, 'scrubbed': 1, 'Bald': 1, 'routine': 1, 'selfish': 1, 'cruel': 1, 'ungentlemanly': 1, 'unseemly': 1, 'sad': 2, 'skeletal': 2, 'endless': 3, 'derelict': 1, 'splay-foot': 1, 'twelfth': 1, 'safe': 4, 'maintained': 1, 'fat': 7, 'raw': 1, 'errant': 1, 'dry': 9, 'muted': 1, 'prime': 2, 'sick': 17, 'hatless': 1, 'female': 1, 'razor-edged': 1, 'smoky': 1, 'weak': 7, 'full': 4, 'grand': 2, 'fellow': 3, 'twin': 3, 'Extra': 1, 'live': 1, 'frozen': 2, 'scrawny': 2, 'unshaven': 1, 'excess': 1, 'golden': 3, 'First': 1, 'precious': 2, 'filthy': 3, 'harmless': 1, 'slow': 5, 'barbed-wire': 1, 'rich': 7, 'insubstantial': 1, 'half': 2, 'shambling': 1, 'ashamed': 1, 'whipping': 3, 'ox-eyed': 1, 'unburied': 1, 'Sick': 1, 'vast': 1, 'super': 1, 'watery': 2, 'second': 3, 'burly': 1, 'instant': 1, 'musty': 1, 'faint': 2, 'gwan': 1, 'rolled': 1, 'Many': 6, 'striking': 1, 'angry': 1, 'spotted': 1, 'dusty': 1, 'comprehend': 1, 'surprised': 2, 'sorry': 7, 'terrible': 8, 'astounded': 2, 'solid': 2, 'bottom': 2, 'slim': 1, 'soft': 9, 'numbing': 2, 'Last': 2, 'magnetic': 1, 'blinding': 1, 'Unimaginable': 1, 'shabby': 1, 'brown': 7, 'sugary': 1, 'New': 1, 'extravagant': 1, 'constant': 3, 'one-on-one': 1, 'slick': 1, 'Israeli': 2, 'sharp': 2, 'Egyptian': 1, 'fast': 4, 'burnt': 3, 'cloudless': 1, 'shared': 1, 'eastern': 1, 'Yiddish': 1, 'chatty': 1, 'bright': 7, 'poor': 14, 'foreign': 2, 'irresponsible': 1, 'skittish': 1, 'archetypal': 1, 'European': 1, 'Jewish': 2, 'guttural': 1, 'swift': 1, 'American': 3, 'thin': 6, 'stale': 1, 'stark': 2, 'impossible': 1, 'innocent': 3, 'Unhappy': 1, 'happy': 8, 'shimmering': 3, 'easy': 9, 'Happy': 1, 'calm': 2, 'unhappy': 3, 'jealous': 5, 'squat': 2, 'underwater': 2, 'Arab': 1, 'respectable': 1, 'ugly': 2, 'Other': 2, 'serene': 1, 'godlike': 1, 'human': 3, 'privy': 1, 'homing': 1, 'painted': 1, 'tufted': 1, 'downy': 1, 'Hot': 5, 'jowly': 1, 'brutal': 1, 'polished': 1, 'immaterial': 1, 'hipped': 1, 'Exotic': 1, 'utter': 1, 'various': 2, 'rattletrap': 1, 'square-cornered': 1, 'enormous': 1, 'stainless': 1, 'material': 1, 'absolute': 2, 'natural': 2, 'cantilevered': 1, 'teak': 1, 'previous': 2, 'ripe': 1, 'heartbroken': 1, 'drowsy': 1, 'novel': 1, 'mine': 2, 'handsome': 1, 'undistinguished': 1, 'diapered': 1, 'wounded': 1, 'universal': 3, 'ancient': 4, 'inner': 1, 'great': 6, 'cheap': 2, 'Haitian': 1, 'Jamaican': 1, 'bright-colored': 1, 'national': 1, 'lively': 1, 'adopted': 1, 'second-story': 1, 'Slim': 1, 'six-pointed': 1, 'day-by-day': 1, 'luminous': 1, 'automatic': 1, 'sleek': 3, 'uncomplaining': 1, 'sensuous': 2, 'precise': 1, 'expensive': 1, 'sticky': 4, 'ripening': 1, 'purring': 1, 'military': 1, 'digital': 1, 'putrid': 1, 'melted': 1, 'wise': 1, 'lonely': 2, 'stunned': 1, 'syllable': 1, 'manicured': 1, 'express': 1, 'weary': 2, 'old-fashioned': 2, 'merciful': 2, 'Past': 1, 'wrinkled': 1, 'iridescent': 1, 'Blue': 1, 'fruity': 1, 'husky': 1, 'vermilion': 1, 'wild': 2, 'hollow-eyed': 1, 'Talmudic': 1, 'crisp': 4, 'pampered': 2, 'three-piece': 1, 'future': 1, 'responsible': 1, 'such': 8, 'reverse': 1, 'stamped': 1, 'potential': 2, 'theirs': 1, 'gravelly': 1, 'prosperous': 1, 'forty-year-old': 1, 'gray-toned': 1, 'everyday': 1, 'fond': 1, 'inside': 2, 'chubby': 1, 'gorgeous': 1, 'secret': 3, 'prying': 2, 'tasty': 1, 'tin-can': 1, 'flat-topped': 1, 'wire-spoked': 1, 'spare': 2, 'dreamy': 3, 'linen-covered': 1, 'magic': 3, 'boy-king': 1, 'myopic': 1, 'blank': 3, 'flash-forward': 1, 'grainy': 1, 'man-made': 1, 'centered': 2, 'arbitrary': 1, 'conscious': 1, 'finite': 1, 'organic': 2, 'dominant': 1, 'linear': 1, 'visual': 1, 'disjunctive': 2, 'classical': 1, 'infinite': 4, 'mechanical': 1, 'identical': 1, 'chronological': 1, 'perceptive': 1, 'literary': 3, 'cultural': 1, 'Russian': 1, 'fragmentary': 2, 'entire': 3, 'well-aimed': 1, 'unstable': 1, 'literate': 1, 'occasional': 5, 'reductive': 1, 'grim': 1, 'implicit': 1, 'sultry': 2, 'unremarked': 1, 'several': 5, 'vagrant': 1, 'remarkable': 2, 'Latin': 2, '=': 1, 'Hebrew': 1, 'common': 2, 'simple': 4, 'opaque': 2, 'daddy': 4, 'plain': 1, 'original': 2, 'gran': 1, 'ermudder': 1, 'disproportionate': 1, 'necessary': 2, 'so-called': 3, 'Short': 1, 'situational': 1, 'unpaginated': 1, 'intentional': 1, 'Unpublished': 1, 'static': 2, 'narrative': 2, 'twentieth': 1, 'fictive': 2, 'contingent': 1, 'dramatic': 1, 'unmistakable': 2, 'fictional': 1, 'unbalanced': 1, 'forthcoming': 1, 'irrelevant': 1, 'independent': 1, 'phallic': 1, 'virgin': 1, 'immanent': 1, 'spray-paint': 1, 'uncatchable': 1, 'external': 2, 'wrinkly': 1, 'notorious': 1, 'biological': 1, 'desperate': 4, 'premeditated': 1, 'criminal': 1, 'yeah': 1, 'double-columned': 1, 'suspicious': 1, 'Swedish': 1, 'main': 1, 'personal': 3, 'underhanded': 1, 'straightforward': 1, 'canny': 2, 'evil': 6, 'dogshit': 1, 'fierce': 1, 'avant-garde': 1, 'charming': 1, 'Afro-American': 1, 'chic': 1, 'awful': 4, 'creative': 1, 'bated': 1, 'complicated': 1, 'divine': 2, 'furious': 1, 'inveterate': 2, 'fiery': 1, 'present': 7, 'anti': 1, 'local': 2, 'dig-thin': 1, 'traditional': 1, 'startling': 1, 'redheaded': 1, 'multilayered': 1, 'non-novel': 1, 'stylish': 1, 'sincere': 1, 'downtrodden': 1, 'ambitious': 1, 'dim': 2, 'two-lane': 1, 'seamed': 1, 'black-green': 1, 'weather-cracked': 1, 'welcome': 3, 'tire-size': 1, 'five-gallon': 1, 'orderly': 1, 'Clean': 2, 'Hopeless': 3, 'cockeyed': 1, 'Indian': 2, 'sewn-in': 1, 'extra': 1, 'foolish': 3, 'long-haired': 1, 'mad': 4, 'holy': 2, 'nonstop': 2, 'particular': 1, 'opposite': 2, 'grateful': 2, 'cute': 1, 'worried': 1, 'hardscrabble': 1, 'daring': 2, 'corrugated': 1, 'skimpy': 1, 'sober': 1, 'humiliating': 1, 'middle-aged': 1, 'third': 1, 'tin-roofed': 1, 'boyish': 1, 'helter-skelter': 1, 'blond': 1, 'full-scale': 1, 'wily': 1, 'fruit-and-flower': 1, 'wee': 2, 'Sure': 2, 'whiny': 1, 'tacky': 1, 'sunken': 1, 'mashed-potato': 1, 'sexy': 1, 'two-step': 1, 'graceful': 1, 'red-handed': 1, 'interested': 1, 'mighty': 1, 'cunning': 1, 'godawful': 2, 'no-name': 1, 'bloody': 7, 'sneaky': 1, 'pitch-black': 1, 'scared': 4, 'bandy-legged': 1, 'yellow-cake': 1, 'top': 1, 'Much': 1, 'skinny': 2, 'nasty': 4, 'trifling': 1, 'call': 1, 'sassy': 1, 'scalding': 2, 'proud': 5, 'bleached': 1, 'tough': 1, 'whiskey-head': 1, 'Thick': 2, 'crispy': 1, 'frying': 1, 'mellow': 1, 'Number-one': 1, 'grown': 3, 'sound': 3, 'lead': 1, 'low-down': 1, 'bluesy': 1, 'slow-motion': 1, 'three-thirty': 1, 'crowded': 1, 'starched': 1, 'one-night': 1, 'la-di-da': 1, 'treacly': 1, 'smooth': 6, 'wobbly': 1, 'high-butt': 1, 'padded': 1, 'commercial': 1, 'Available': 1, 'Big': 23, 'formal': 1, 'elegant': 1, 'African': 4, 'intricate': 1, 'sparse': 1, 'Unanimous': 1, 'Brown': 1, 'taut': 2, 'dangling': 1, 'sightless': 1, 'four-foot-tall': 1, 'Annoyed': 1, 'mortal': 2, 'Hard': 2, 'Pitiless': 1, 'normal': 7, 'paper-thin': 1, 'three-dimensional': 1, 'double': 1, 'Dizzy': 1, 'Figure-ground': 1, 'Chinese': 1, 'withering': 1, 'trained': 1, 'unplayed': 1, 'nappy': 2, 'saucer-eyed': 1, 'hard-as-theworld': 1, 'sour': 3, 'tasseled': 1, 'fringed': 2, 'lemon': 1, 'Shapeless': 1, 'seven-year-old': 1, 'woolly': 1, 'unfailing': 1, 'snowy': 1, 'fringy': 1, 'gut-bucket': 1, 'joyful': 1, 'meaty': 1, 'black-eyed': 1, 'Giant': 1, 'fabulous': 1, 'misbegotten': 1, 'honey-colored': 1, 'high-stepper': 1, 'unsteady': 1, 'crimson': 1, 'Starched': 1, 'DN': 1, 'brand-new': 1, 'curly': 1, 'purple': 1, 'clickclack': 1, 'pink': 1, 'gloved': 1, 'busted-up': 2, 'promising': 1, 'broken': 2, 'forgiving': 1, 'mashed': 1, 'Wicked': 1, 'stuck-up': 1, 'cut-off': 1, 'snotty-looking': 1, 'Nasty': 1, 'east': 1, 'liquid': 2, 'plumb': 1, 'Formal': 1, 'pretty': 1, 'spraddle-legged': 1, 'able': 3, 'miserable': 2, 'rheumatic': 1, 'bumpty-bump': 1, 'Pup-pup': 11, 'runned-over': 1, 'sorrowful': 1, 'healthy': 1, 'pinched-nosed': 1, 'self-respecting': 1, 'polka': 1, 'Want': 1, 'orange': 1, 'Kewpie-doll': 1, 'Rolling': 1, 'willing': 4, 'Busy': 2, '0te': 1, 'stubborn': 1, 'I-told-you-so': 1, 'after-hours': 1, 'Italian': 1, 'whorish': 1, 'undercover': 1, 'crushed': 1, 'mini': 1, 'careful': 1, 'fuddy-duddy': 1, 'blue-eyed': 1, 'polite': 1, 'lovely': 1, 'liable': 1, 'Real': 1, 'Hootchy-gootchy': 1, 'courageous': 1, 'barren': 1, 'centrical': 1, 'libelous': 1, 'unselfish': 1, 'rural': 1, 'acceptable': 1, 'general': 4, 'low-lying': 1, 'weightless': 1, 'Yellow': 2, 'virulent': 1, 'preferable': 1, 'similar': 2, 'tropical': 3, 'subtropical': 2, 'fatal': 2, 'infectious': 2, 'fixed': 2, 'acute': 1, 'violent': 2, 'filterable': 1, 'winged': 2, 'dandy': 1, 'severe': 1, 'Swahili': 1, 'breakbone': 1, 'tethered': 1, 'fevered': 1, 'akin': 1, 'chained': 1, 'splintery': 1, 'Greek': 1, 'unpleasant': 1, 'Noxious': 1, 'underground': 1, 'unpaved': 2, 'stagnant': 2, 'temporary': 1, 'pleasant': 1, 'soggy': 1, 'precarious': 1, 'True': 1, 'hellish': 1, 'sluggish': 1, 'infected': 4, 'vital': 2, 'ubiquitous': 1, 'unforgiving': 1, 'cobbled': 1, 'familiar': 3, 'tunnellike': 1, 'comical': 1, 'torpid': 1, 'spoon': 2, 'dank': 1, 'silken': 1, 'scalloped': 1, 'contorted': 1, 'nameless': 1, 'yellowed': 1, 'proper': 3, 'wizened': 1, 'Putrid': 2, 'overgrown': 1, 'speckled': 1, 'palpable': 2, 'tidal': 1, 'light-headed': 1, 'delirious': 1, 'unsaved': 1, 'Dazed': 1, 'unclean': 1, 'intimate': 1, 'incorruptible': 1, 'ignorant': 1, 'idle': 1, 'vicious': 2, 'Piteous': 1, 'helpless': 1, 'unrecognizable': 1, 'nauseating': 2, 'benighted': 1, 'sable': 2, 'shaggy': 1, 'intense': 1, 'unfathomable': 1, 'glistening': 6, 'dissolute': 1, 'sparkling': 1, 'unnameable': 1, 'wretched': 1, 'murky': 1, 'imperious': 1, 'wintry': 1, 'brackish': 1, 'sinful': 1, 'geometrical': 1, 'rough': 1, 'angled': 1, 'honeyed': 1, 'perpendicular': 1, 'dagger-toothed': 1, 'nonwhite': 1, 'unloaded': 1, 'foursquare': 1, 'dour': 1, 'blood-soaked': 1, 'ceaseless': 1, 'haughty': 1, 'third-generation': 1, 'expedient': 1, 'destitute': 1, 'fearful': 2, 'ironical': 1, 'proclaimed': 1, 'unreliable': 1, 'uncertain': 1, 'empty-handed': 1, 'wide-eyed': 1, 'dismal': 1, 'oppressive': 2, 'layered': 2, 'mock': 1, 'prisoner-of-war': 1, 'naught': 1, 'untended': 1, 'doleful': 1, 'unable': 3, 'bizarre': 1, 'red-bearded': 1, 'shallow': 1, 'rolling': 1, 'pedestrian': 1, 'Deveze': 1, 'cumbersome': 1, 'daily': 1, 'Stolid': 1, 'polluted': 1, 'corrupted': 2, 'mortified': 1, 'undiscovered': 1, 'overfastidious': 1, 'thousandth': 1, 'noxious': 2, 'bloated': 1, 'intact': 2, 'unremarkable': 4, 'crystal-clear': 1, 'jaunty': 1, 'basal': 1, 'mettlesome': 1, 'cerebrospinal': 1, 'Multiple': 1, 'Christian': 1, 'fibrous': 1, 'normal-appearing': 1, 'linen-draped': 1, 'sumptuous': 1, 'cerebral': 1, 'meaty-red': 1, 'never-ending': 1, 'parathyroid': 1, 'ano-rectal': 1, 'gross': 1, 'epicardial': 1, 'uniform': 1, 'veriform': 1, 'cranial': 1, 'delicate': 1, 'pleural': 1, 'vocal': 1, 'auricular': 1, 'endocardial': 1, 'hyoid': 1, 'regal': 1, 'fit': 1, 'correct': 1, 'medical': 1, 'unbearable': 1, 'frightful': 1, 'humbler': 1, 'Jaundiced': 1, 'exact': 1, 'pained': 1, 'eternal': 2, 'outspoken': 1, 'jointed': 1, 'canopied': 1, 'servant': 1, 'opulent': 1, 'Ancient': 1, 'savaged': 1, 'earthly': 2, 'lifesaving': 1, 'closed': 1, 'abused': 1, 'lifelong': 1, 'worn': 1, 'functionary': 1, 'wicked': 1, 'Municipal': 1, 'loyal': 2, 'creased': 1, 'negligible': 1, 'soulless': 1, 'Nubian': 1, 'steadfast': 3, 'unnatural': 1, 'swollen-jointed': 1, 'nonsensical': 1, 'spineless': 1, 'long-suffering': 1, 'goiterknobbed': 1, 'foamy': 1, 'mindless': 1, 'murderous': 1, 'Sangrado': 1, 'doggy': 4, 'well-spoken': 1, 'Bad': 1, 'significant': 1, 'well-mannered': 1, 'sturdy': 1, 'blackcoated': 1, 'unjust': 1, 'lizardy': 1, 'painful': 1, 'leaky': 1, 'golden-haired': 1, 'sleepy': 1, 'boundless': 1, 'ill': 1, 'cautious': 1, 'sacred': 1, 'sweeping': 1, 'well-founded': 1, 'vain': 1, 'limbed': 1, 'unborn': 1, 'someplace': 1, 'Bitter': 1, 'fitting': 1, 'gimpy': 1, 'sinuous': 1, 'mountainous': 1, 'shadowy': 1, 'far': 1, 'fetid': 1, 'Faint': 1, 'bemused': 1, 'unattended': 1, 'nearby': 1, 'southern': 2, 'funky': 1, 'earthen': 1, 'fishy': 1, 'White': 1, 'gradual': 1, 'loamy': 1, 'high-pitched': 1, 'Dismal': 1, 'domestic': 1, 'married': 1, 'disruptive': 1, 'miniature': 1, 'extreme': 1, 'immense': 1, 'appropriate': 2, 'Private': 1, 'intelligent': 1, 'stunning': 1, 'poignant': 1, 'part-time': 1, 'erotic': 1, 'full-time': 1, 'compelling': 1, 'restless': 1, 'above': 1, 'drunk': 1, 'handy': 1, 'ultimate': 1, 'phenomenal': 1, 'lethal': 1, 'Prize-winning': 1, 'due': 2, 'unvvuasi-j': 1, 'disturbing': 1, 'lyrical': 1, 'interacial': 1, 'heroic': 1, 'intoxicating': 1, 'keen': 1, 'TOP': 1}
Furlough from hell : a fantasy /@1963
{'reserved': 1, 'short': 5, 'critical': 2, 'whole': 20, 'right': 6, 'loving': 3, 'analogous': 1, 'moral': 2, 'subsequent': 2, 'spiritual': 12, 'independent': 1, 'fanciful': 1, 'coexistent': 1, 'vast': 7, 'necessary': 5, 'inherent': 1, 'consuming': 1, 'conceivable': 1, 'various': 2, 'hostile': 2, 'dependent': 1, 'emblematic': 2, 'natural': 6, 'immortal': 11, 'contemporaneous': 1, 'light': 7, 'past': 4, 'continuous': 1, 'different': 9, 'immediate': 1, 'superior': 3, 'entire': 12, 'inferior': 3, 'gradual': 3, 'single': 5, 'equal': 11, 'related': 4, 'individual': 7, 'instantaneous': 1, 'progressive': 1, 'specific': 3, 'evident': 1, 'chaotic': 1, 'special': 3, 'dry': 4, 'miraculous': 1, 'other': 71, 'primary': 1, 'only': 18, 'Other': 2, 'solid': 2, 'flat': 2, 'elevated': 1, 'upper': 1, 'hollow': 1, 'intermediate': 1, 'subterranean': 1, 'coterminous': 1, 'philosophical': 1, 'susceptible': 1, 'immense': 1, 'free': 20, 'sinister': 3, 'sordid': 1, 'lazy': 1, 'oblivious': 1, 'never-failing': 1, 'emancipated': 1, 'one-day': 1, 'good': 35, 'stupendous': 2, 'dead': 22, 'loquacious': 1, 'anticipated': 1, 'eighty-fiveyear-old': 1, 'disastrous': 2, 'old': 16, 'restless': 1, 'such': 26, 'uneasy': 1, 'soft': 1, 'long': 12, 'blackish': 1, 'same': 25, 'black': 78, 'Funny': 1, 'usual': 2, 'gray': 1, 'easy': 2, 'strange': 2, 'dreadful': 1, 'little': 19, 'dismal': 1, 'indolent': 1, 'south': 3, 'upset': 3, 'lonesome': 2, 'electric': 1, 'subject': 5, 'talkative': 2, 'noisy': 1, 'real': 4, 'careful': 1, 'sure': 7, 'warm': 2, 'outside': 2, 'crowded': 2, 'bad': 60, 'quiet': 3, 'sleepless': 1, 'few': 12, 'forced': 2, 'first': 45, 'Good-by': 1, 'several': 5, 'beauteous': 1, 'many': 51, 'serious': 4, 'deceitful': 1, 'drunken': 1, 'frightened': 1, 'weak': 2, 'pungent': 1, 'excited': 1, 'strong': 7, 'utter': 2, 'exact': 2, 'nervous': 1, 'senseless': 2, 'uncontrollable': 1, 'tall': 4, 'drunk': 3, 'early': 1, 'front': 1, 'conceited': 1, 'clean': 2, 'nasty': 3, 'unconscious': 1, 'significant': 2, 'phenomenal': 3, 'devilish': 6, 'thin': 2, 'fantastic': 5, 'mortal': 10, 'responsible': 6, 'slight': 1, 'so-called': 17, 'tearless': 1, 'trained': 4, 'interim': 1, 'powerful': 22, 'simple': 1, 'hot': 2, 'utopian': 7, 'kind': 1, 'earthly': 7, 'great': 29, 'located': 2, 'constant': 3, 'filthy': 13, 'wrong': 6, 'own': 32, 'fiery': 1, 'searing': 1, 'ironic': 1, 'fearful': 1, 'watery': 1, 'last': 17, 'dark': 3, 'married': 1, 'fatal': 1, 'deep': 3, 'intimate': 2, 'flaming': 2, 'cavernous': 1, 'original': 2, 'enough': 7, 'rapid': 3, 'loud': 2, 'molten': 1, 'intense': 2, 'perfect': 10, 'fellow': 4, 'sinful': 7, 'satisfied': 1, 'next': 9, 'surprised': 1, 'sudden': 3, 'sweet': 3, 'unbelievable': 2, 'Good': 1, 'clear': 1, 'fleeting': 1, 'English': 4, 'lavish': 1, 'damn': 1, 'Goddamn': 2, 'incomparable': 2, 'red': 7, 'frightening': 3, 'human': 20, 'hellish': 1, 'finishing': 1, 'second': 8, 'dastardly': 2, 'heavy': 5, 'new': 15, 'much': 14, 'Asian': 1, 'white': 63, 'all-powerful': 2, 'indefinite': 1, 'vain': 2, 'deadening': 1, 'depressed': 2, 'jet-black': 2, 'horrid': 2, 'ugly': 3, 'weird': 1, 'mine': 1, 'certain': 11, 'open': 4, 'awake': 1, 'true': 20, 'unhappy': 1, 'imaginable': 1, 'devastating': 6, 'demonic': 1, 'interested': 6, 'general': 8, 'twelve-year-old': 1, 'good-looking': 1, 'glum': 1, 'ordinary': 4, 'common': 9, 'ours': 1, 'high': 15, 'vivid': 1, 'recipient': 1, 'Chinese': 4, 'abrupt': 1, 'scared': 1, 'incredible': 2, 'devious': 9, 'full': 6, 'nice': 2, 'intoxicated': 2, 'ghastly': 1, 'appointed': 1, 'magnificent': 1, 'superhuman': 1, 'prophetic': 1, 'pellucid': 1, 'personal': 3, 'everlasting': 1, 'angelic': 2, 'transparent': 1, 'ultimate': 5, 'splendid': 1, 'evil': 6, 'rational': 1, 'golden': 1, 'able': 7, 'heavenly': 5, 'invisible': 1, 'pious': 1, 'unworthy': 1, 'possible': 9, 'utmost': 2, 'celestial': 1, 'bottomless': 2, 'harmless': 1, 'harmonious': 1, 'arid': 1, 'private': 6, 'holy': 2, 'twofold': 1, 'rebel': 1, 'terrestial': 1, 'creative': 2, 'massive': 1, 'well-trained': 2, 'bodily': 1, 'former': 2, 'intelligent': 8, 'female': 2, 'godless': 1, 'male': 1, 'sixth': 1, 'positive': 1, 'Jewish': 7, 'divine': 2, 'applicable': 1, 'active': 2, 'indestructible': 1, 'naked': 2, 'extensive': 2, 'mature': 1, 'continual': 1, 'suitable': 1, 'intellectual': 2, 'interesting': 1, 'remarkable': 2, 'fair': 1, 'unto': 1, 'humble': 2, 'antediluvian': 1, 'brief': 1, 'obscure': 1, 'Adamite': 1, 'false': 4, 'pre-Adamite': 1, 'Canaanite': 1, 'grievous': 2, 'hopeless': 1, 'ancient': 1, 'distinct': 1, 'capable': 2, 'fleshly': 1, 'violent': 2, 'sunken': 1, 'huge': 6, 'domestic': 1, 'proper': 1, 'loose': 4, 'convenient': 1, 'effective': 1, 'solemn': 1, 'half': 2, 'alive': 2, 'small': 4, 'watertight': 1, 'marine': 1, 'third': 2, 'enormous': 5, 'ample': 1, 'stable': 1, 'inside': 1, 'precious': 1, 'fresh': 1, 'seventeenth': 1, 'righteous': 1, 'seventh': 1, 'plain': 2, 'burnt': 1, 'agricultural': 2, 'Egyptian': 2, 'unfailing': 1, 'adjective': 1, 'Hamitic': 1, 'dutiful': 1, 'uttermost': 1, 'awful': 2, 'twentyfive': 1, 'hypocritical': 3, 'mental': 1, 'outer': 10, 'tiny': 2, 'deafening': 1, 'Psychological': 1, 'beautiful': 7, 'odd': 1, 'canine': 1, 'pointed': 1, 'American': 55, 'aware': 2, 'antique': 1, 'insidious': 7, 'charming': 1, 'ashamed': 1, 'requisite': 1, 'poor': 16, 'attractive': 1, 'wide': 1, 'southern': 23, 'northern': 11, 'democratic': 11, 'selfish': 3, 'proud': 2, 'naturalized': 2, 'rich': 3, 'exceptional': 1, 'unwilling': 1, 'Fourteenth': 1, 'Several': 1, 'racial': 3, 'quick': 1, 'illiterate': 3, 'military': 1, 'striking': 1, 'secret': 3, 'poll': 1, 'federal': 14, 'successful': 6, 'Many': 12, 'French': 2, 'contemptuous': 1, 'Civil': 3, 'ignominious': 1, 'adverse': 3, 'present': 7, 'psychological': 1, 'satanic': 2, 'local': 5, 'prejudiced': 4, 'anti-black': 4, 'medical': 2, 'corrupt': 2, 'all-snow': 3, 'prosperous': 1, 'Real': 1, 'rotten': 2, 'law-abiding': 3, 'international': 2, 'all-white': 1, 'Irish': 2, 'dishonest': 1, 'call': 1, 'cancerous': 2, 'teen-age': 1, 'almighty': 1, 'communist': 1, 'big-time': 3, 'wonderful': 3, 'ravishing': 1, 'public': 6, 'low-rated': 1, 'continental': 1, 'systematic': 1, 'live': 1, 'ungracious': 1, 'Soviet': 1, 'narcotic': 1, 'antiblack': 1, 'far-sighted': 2, 'hungry': 2, 'well-known': 1, 'Hitlerite': 1, 'guilty': 3, 'continued': 1, 'ironical': 2, 'undemocratic': 1, 'foreign': 1, 'German': 1, 'far-reaching': 1, 'mighty': 1, 'die-hard': 1, 'honest': 1, 'willing': 1, 'African': 6, 'all-black': 4, 'economic': 8, 'anti-snow': 1, 'inhuman': 11, 'anti-white': 1, 'yearly': 1, 'above': 1, 'protective': 2, 'sixteenth': 1, 'millionaire': 1, 'skunky': 2, 'token': 1, 'sincere': 3, 'deadly': 1, 'fortunate': 2, 'slanderous': 1, 'extreme': 1, 'due': 5, 'high-ranking': 1, 'barbarian': 1, 'junior': 1, 'unlucky': 1, 'bigtime': 1, 'low': 5, 'unfair': 3, 'lousy': 2, 'content': 1, 'insignificant': 1, 'basic': 1, 'pathetic': 1, 'dirty': 1, 'spotless': 1, 'brain-washed': 3, 'unclean': 2, 'embarrassing': 1, 'trivial': 1, 'anti-American': 1, 'inevitable': 4, 'impossible': 5, 'dumb': 2, 'home-made': 2, 'yellow': 1, 'brown': 1, 'back-side': 1, 'frequent': 1, 'young': 6, 'number-one': 1, 'lucky': 1, 'native': 3, 'brotherly': 1, 'daily': 1, 'so-called-civilized': 1, 'derogatory': 2, 'sepia': 2, 'glorious': 1, 'normal': 4, 'wintry': 1, 'lovely': 2, 'squalid': 2, 'simple-minded': 2, 'weary': 3, 'egotistical': 1, 'jealous': 2, 'wise': 4, 'marvelous': 1, 'amorous': 1, 'pregnant': 1, 'sunburned': 1, 'colored': 3, 'shrewd': 4, 'envious': 1, 'brown-skinned': 1, 'festal': 1, 'coal-dust': 1, 'omnipotent': 3, 'honorable': 1, 'spirited': 1, 'spellbound': 1, 'six-foot': 1, 'speechless': 1, 'unexpected': 1, 'promiscuous': 1, 'twenty-twenty': 1, 'unusual': 1, 'shiftless': 1, 'commanding': 1, 'innocent': 1, 'social': 6, 'ignorant': 2, 'close': 2, 'enjoyable': 1, 'blind': 1, 'unsolved': 1, 'scientific': 1, 'homosexual': 1, 'obvious': 1, 'undressed': 1, 'insane': 1, 'next-door': 1, 'double': 1, 'sexual': 1, 'heinous': 1, 'statutory': 1, 'spiked': 1, 'non-black': 1, 'good-natured': 1, 'excellent': 1, 'hidden': 2, 'acknowledged': 1, 'happy': 1, 'English-speaking': 1, 'abnormal': 2, 'uninhibited': 1, 'nigger': 1, 'hissing': 1, 'big': 13, 'perfidious': 3, 'fat': 1, 'grotesque': 1, 'Communist': 6, 'tough': 1, 'Innocent': 1, 'integrated': 1, 'black-and-tan': 1, 'lone': 1, 'alert': 1, 'ripe': 1, 'stinking': 1, 'uncouth': 1, 'profitable': 1, 'chitterling': 1, 'legitimate': 1, 'elated': 1, 'disgusting': 1, 'opportune': 3, 'pure': 1, 'free-born': 1, 'unwanted': 2, 'future': 6, 'afraid': 4, 'heartfelt': 1, 'submissive': 2, 'cold': 3, 'atomic': 2, 'arch': 1, 'average': 4, 'Japanese': 1, 'wild': 1, 'abused': 1, 'correct': 2, 'law-made': 1, 'vicious': 4, 'feathered': 2, 'materialistic': 1, 'sit-in': 5, 'educational': 4, 'complete': 6, 'wholesale': 1, 'disappointed': 1, 'freakish': 1, 'middle': 6, 'modern': 6, 'stupid': 1, 'savage': 1, 'brilliant': 1, 'anti-civil': 2, 'socialist': 1, 'race-riot': 1, 'anti-union': 1, 'all-antiblack': 1, 'anti-Communist': 1, 'all-hypocrital': 1, 'all-un-American': 1, 'climacteric': 1, 'smart': 2, 'retired': 1, 'capitalistic': 2, 'unknown': 1, 'main': 2, 'all-antilabor': 1, 'ex-President': 1, 'unethical': 3, 'crucial': 1, 'Federal': 1, 'all-slanderous': 1, 'anti-race': 1, 'anti-democratic': 1, 'like': 1, 'malignant': 1, 'musical': 1, 'courageous': 1, 'detrimental': 1, 'civil': 1, 'Afro-American': 1, 'Top': 1, 'national': 1, 'outspoken': 3, 'anti-labor': 1, 'final': 3, 'snaky': 1, 'militant': 2, 'antieverything': 1, 'Certain': 3, 'labor-union': 1, 'top': 4, 'putrid': 1, 'treacherous': 1, 'interracial': 1, 'silent': 2, 'disappointing': 1, 'burly': 2, 'cry-baby': 1, 'ball-playing': 1, 'available': 1, 'crooked': 2, 'God-given': 1, 'fabulous': 3, 'traitorous': 1, 'loaded': 1, 'unfaithful': 1, 'dilapidated': 2, 'taxpaying': 1, 'open-and-shut': 1, 'cold-blooded': 1, 'brutal': 1, 'Harrison-Halsted': 3, 'political': 2, 'sickening': 1, 'unsavory': 1, 'similar': 2, 'favorable': 1, 'particular': 1, 'city-wide': 1, 'respected': 1, 'ill': 1, 'British': 4, 'ruthless': 1, 'nigh': 2, 'Due': 1, 'total': 2, 'eternal': 1, 'mystical': 1, 'freedom-seeking': 1, 'Roman': 2, 'deceased': 1, 'major': 1, 'scandalous': 1, 'central': 1, 'back-breaking': 1, 'Christian': 1, 'Belgian': 1, 'impious': 2, 'frightful': 3, 'non-freedom': 2, 'dogmatic': 1, 'Healthy': 1, 'resentful': 1, 'unseeable': 1, 'decent': 2, 'enthusiastic': 1, 'hygienic': 1, 'diseased': 1, 'non-equality': 1, 'contented': 1, 'unapproachable': 1, 'bloody': 2, 'unshadowable': 1, 'untouchable': 4, 'non-touchability': 1, 'equitable': 1, 'death-dealing': 1, 'God-fearing': 1, 'sublime': 1, 'extinct': 1, 'barren': 1, 'lunar': 2, 'rugged': 1, 'terrestrial': 1, 'rocky': 1, 'thitherto': 1, 'disobedient': 2, 'potent': 1, 'destructive': 2, 'cruel': 1, 'tremendous': 1, 'terrific': 1, 'liberated': 1, 'blasting': 1, 'minor': 1, 'lawless': 1, 'glowing': 1, 'blood-red': 1, 'used-to-be': 1, 'tic': 1, 'matchless': 1, 'primeval': 1, 'swift': 1, 'Cuban': 4, 'below-living': 1, 'hard': 3, 'nonwhite': 1, 'fanatic': 1, 'cunning': 1, 'man-made': 1, 'stored-up': 1, 'rigged-up': 1, 'unemployed': 9, 'okay': 2, 'legislative': 1, 'valid': 1, 'inane': 1, 'measly': 2, 'forty-dollar': 1, 'meager': 2, 'large': 7, 'stingy': 1, 'delighted': 1, 'crimson': 2, 'messy': 1, 'underpaid': 1, 'outrageous': 1, 'rebellious': 1, 'unseen': 3, 'financial': 2, 'minimum': 1, 'capitalist': 6, 'Democratic': 2, 'Republican': 2, 'humbling': 1, 'grade-school': 1, 'sun-tanned': 1, 'moronic': 1, 'handsome': 2, 'glad': 1, 'ready': 2, 'sadistic': 2, 'unmitigated': 1, 'obsolete': 1, 'Italian': 1, 'Polish': 1, 'conniving': 1, 'unalienable': 1, 'endowed': 1, 'thieving': 1, 'manmade': 1, 'Mortal': 1, 'unmatchable': 1, 'race-hate': 1, 'Man-made': 1, 'troubled': 1, 'unjust': 1, 'unarmed': 1, 'Passive': 1, 'gifted': 1, 'Catholic': 3, 'Frightening': 1, 'inescapable': 1, 'tenacious': 2, 'worth': 2, 'back': 3, 'long-wanted': 1, 'presidential': 1, 'united': 1, 'unequal': 1, 'ninetyfive': 1, 'further': 1, 'unable': 1, 'colonial': 1, 'nineteenth': 2, 'contrary': 2, 'industrial': 5, 'dominant': 1, 'commercial': 2, 'important': 3, 'fourth': 1, 'twentieth': 1, 'favorite': 1, 'godly': 1, 'notable': 1, 'famous': 1, 'promised': 1, 'rid': 2, 'peaceful': 1, 'foregoing': 1, 'hallowed': 1, 'green': 1, 'pursuance': 1, 'historic': 1, 'identical': 1, 'race-hating': 1, 'separate': 1, 'inadequate': 2, 'abominable': 1, 'unimproved': 1, 'reasonable': 1, 'resonant': 1, 'unspeakable': 2, 'sound': 2, 'congested': 1, 'unique': 1, 'outdoor': 1, 'commendable': 1, 'noteworthy': 1, 'even-handed': 1, 'religious': 2, 'icapped': 1, 'adequate': 2, 'unsuited': 1, 'disreputable': 1, 'rural': 5, 'crude': 1, 'rough': 2, 'one-room': 1, 'characteristic': 1, 'weatherboard': 2, 'complex': 1, 'high-priced': 1, 'chief': 1, 'fertile': 1, 'licensed': 1, 'square': 1, 'friendly': 7, 'inestimable': 1, 'profound': 1, 'nativeborn': 1, 'political-social': 1, 'fine': 1, 'fraternal': 1, 'eightstory': 1, 'monumental': 1, 'civilizing': 1, 'Spanish-American': 1, 'seperate': 1, 'Spanish': 1, 'sad': 1, 'unprovided': 1, 'imperative': 1, 'elementary': 1, 'doubtless': 1, 'aforementioned': 1, 'substantial': 1}
Let noon be fair: unabridged.@1969
{'subsequent': 1, 'prior': 1, 'similar': 1, 'other': 193, 'First': 1, 'insistent': 3, 'blue-green': 3, 'damp': 10, 'blue': 37, 'big': 64, 'clear': 5, 'copper-coloured': 1, 'old': 236, 'watery': 1, 'lacelike': 1, 'green': 29, 'three-cornered': 4, 'wet': 8, 'long': 122, 'delicate': 3, 'black': 128, 'double-bladed': 1, 'moist': 1, 'yellow': 21, 'early': 23, 'bare': 17, 'brown': 42, 'soothing': 1, 'half-sprawled': 1, 'fifteen-year-old': 4, 'lean': 5, 'pink': 7, 'yellow-gold': 2, 'white': 82, 'great': 40, 'high': 42, 'butter-coloured': 1, 'thatched': 12, 'lay': 3, 'fresh': 7, 'fearsome': 1, 'warm': 29, 'Mexican': 111, 'clean': 15, 'slim': 13, 'yellow-sanded': 1, 'coarse': 2, 'soft': 14, 'modern': 20, 'fat': 22, 'taut': 2, 'low': 25, 'heavy': 18, 'deep': 16, 'frozen': 2, 'few': 48, 'hot': 39, 'large': 61, 'wooden': 21, 'blonde': 13, 'straight': 22, 'red-polished': 1, 'American': 77, 'broad-brimmed': 1, 'thin': 15, 'salty': 1, 'slimlegged': 1, 'rocky': 3, 'frond-covered': 1, 'rich': 32, 'last': 76, 'open': 71, 'present-day': 1, 'unpainted': 1, 'small': 105, 'world-recognized': 1, 'strange': 14, 'tall': 34, 'little': 326, 'rough': 8, 'next': 75, 'several': 34, 'Next': 8, 'serious': 12, 'beautiful': 85, 'even-tempered': 1, 'effusive': 1, 'irritated': 4, 'charming': 3, 'slight': 4, 'coming': 2, 'such': 18, 'difficult': 2, 'unspoiled': 2, 'dry': 8, 'right': 19, 'broken': 7, 'neady': 1, 'constant': 3, 'proper': 4, 'handsome': 39, 'ornate': 1, 'dark': 30, 'occasional': 5, 'Spanish': 31, 'swan-necked': 2, 'knotted': 1, 'Indian': 76, 'sophisticated': 2, 'baffled': 1, 'only': 34, 'rainy': 3, 'prosperous': 1, 'fist-sized': 1, 'outer': 3, 'young': 119, 'empty': 24, 'private': 23, 'open-air': 3, 'coloured': 2, 'earthen': 7, 'outside': 13, 'wealthy': 10, 'particular': 2, 'main': 8, 'grey-haired': 4, 'various': 8, 'general': 18, 'foot-worn': 1, 'prominent': 4, 'cool': 7, 'concrete': 8, 'stray': 2, 'wide': 10, 'many': 64, 'red-tiled': 3, 'unscheduled': 1, 'dependable': 1, 'reddened': 1, 'broad': 8, 'Good': 16, 'high-cheekboned': 1, 'stern': 3, 'superior': 1, 'five-gallon': 1, 'grey': 26, 'uneven': 2, 'hooked': 2, 'shallow': 1, 'Mayan': 1, 'light': 13, 'Old': 28, 'ejidal': 3, 'own': 62, 'severe': 8, 'strong': 8, 'proportioned': 1, 'gentle': 10, 'much': 58, 'drunk': 64, 'lightest-skinned': 1, 'smooth': 3, 'weak': 3, 'paunchy': 1, 'beaded': 1, 'thick': 6, 'twin': 2, 'ancient': 14, 'complete': 6, 'varied': 1, 'third': 10, 'silly': 6, 'clawlike': 3, 'red': 64, 'hind': 1, 'huge': 54, 'welcoming': 3, 'good': 123, 'fleeting': 2, 'full': 34, 'rear': 3, 'pronged': 1, 'live': 4, 'back': 28, 'crisp': 2, 'barefooted': 7, 'emerald-green': 1, 'wicker-wrapped': 1, 'oval': 5, 'silent': 9, 'eighteen-year-old': 2, 'loud': 11, 'braided': 3, '5ne': 1, 'tortured': 2, 'bitter': 3, 'Outside': 5, 'flat': 4, 'front': 38, 'loose': 20, 'crude': 4, 'authentic': 2, 'burnished': 1, 'same': 48, 'famous': 2, 'true': 12, 'battered': 5, 'redtile': 1, 'past': 16, 'classical': 2, 'amazing': 1, 'ugly': 11, 'cheap': 23, 'Biblical': 1, 'limp': 5, 'reddish': 1, 'second': 25, 'top': 7, 'stooped': 1, 'bony': 1, 'German': 11, 'first': 81, 'blond': 19, 'vivid': 2, 'yellowed': 5, 'sensitive': 5, 'vast': 1, 'short': 16, 'chunky': 1, 'thoughtful': 3, 'striped': 3, 'sharp': 6, 'square': 8, 'bronzed': 2, 'one-room': 3, 'tight': 9, 'French': 15, 'wavy': 4, 'neat': 3, 'Fresh': 3, 'red-tile': 4, 'Fine': 2, 'well-to-do': 2, 'well-worn': 1, 'new': 81, 'disappointed': 1, 'shiny': 9, 'artificial': 1, 'crooked': 3, 'favourite': 15, 'Pure': 2, 'entire': 5, 'tortuous': 3, 'comic': 1, 'bright': 7, 'plastic': 1, 'varnished': 1, 'legal': 3, 'happy': 27, 'sexual': 6, 'floral': 4, 'corpselike': 1, 'fine': 22, 'illustrated': 1, 'iron-barred': 1, 'pale': 15, 'belt-length': 1, 'dirty': 22, 'late': 16, 'satin': 2, 'overstuffed': 1, 'embroidered': 4, 'restless': 5, 'ceramic': 1, 'grim': 5, 'tight-fitting': 4, 'fangtoothed': 1, 'rock-strewn': 1, 'naked': 4, 'special': 15, 'important': 7, 'elderly': 10, 'thatch-roofed': 5, 'shy': 8, 'clipping': 2, 'dusty': 4, 'Deep': 1, 'Japanese': 4, 'aged': 4, 'careful': 4, 'sure': 10, 'wrinkled': 6, 'glad': 10, 'seven-year-old': 1, 'expensive': 10, 'embarrassed': 4, 'confused': 1, 'mental': 2, 'identical': 2, 'fist-large': 1, 'lonesome': 7, 'interesting': 7, 'native': 14, 'pure': 5, 'crazy': 10, 'brown-black': 2, 'ample': 3, 'upturned': 4, 'narrow': 5, 'secret': 13, 'hidden': 3, 'Young': 1, 'Unhappy': 3, 'humble': 7, 'dreadful': 2, 'playful': 1, 'enough': 12, 'humorous': 1, 'hard': 18, 'wrong': 12, 'afraid': 12, 'upper': 3, 'macho': 5, 'nude': 11, 'rapid': 2, 'unforgiving': 1, 'canopied': 1, 'stupid': 4, 'Much': 4, 'outlying': 1, 'wild': 4, 'impossible': 3, 'vain': 2, 'half-open': 1, 'closed': 2, 'dead': 21, 'proud': 10, 'numerous': 1, 'bewildered': 1, 'pained': 1, 'Quiet': 1, 'unbalanced': 1, 'worried': 1, 'sorry': 20, 'half-darkened': 1, 'hungry': 11, 'well-defined': 2, 'unable': 5, 'sacred': 5, 'silver': 3, 'melon-hard': 1, 'usual': 3, 'servant': 10, 'cut-glass': 2, 'blue-black': 1, 'quiet': 13, 'norteamericano': 1, 'unconcerned': 1, 'dim': 11, 'Little': 67, 'inner': 5, 'extreme': 1, 'Other': 5, 'rusty': 1, 'holy': 43, 'longdrawn': 1, 'ten-year-old': 1, 'bent': 6, 'divine': 1, 'upright': 3, 'useless': 3, 'opposite': 3, 'three-hundred-room': 1, 'shaded': 1, 'uncontrollable': 1, 'worth': 4, 'green-shaded': 1, 'whole': 18, 'deathlike': 1, 'incongruous': 2, 'autumnal': 1, 'regular': 2, 'solemn': 4, 'elevated': 2, 'cold': 15, 'Hot': 2, 'curly': 13, 'sensual': 3, 'Handsome': 2, 'high-heeled': 1, 'squat': 2, 'kissable': 1, 'bad': 22, 'far': 3, 'tile-floored': 1, 'free': 23, 'waxen': 1, 'real': 4, 'enlarged': 2, 'stiff': 6, 'swampy': 1, 'rid': 4, 'fancy': 7, 'abundant': 1, 'delicious': 6, 'Hers': 2, 'Pleased': 2, 'comfortable': 1, 'assistant': 1, 'later': 1, 'peaceful': 1, 'smart': 3, 'additional': 4, 'ambitious': 1, 'poor': 43, 'face-down': 1, 'Many': 10, 'foolish': 2, 'sweet': 21, 'unclaimed': 1, 'clever': 5, 'Clever': 1, 'diffident': 1, 'hungry-looking': 1, 'nice': 25, 'laden-down': 1, 'raw': 12, 'twelve-year-old': 2, 'blind': 10, 'extended': 3, 'familiar': 3, 'convenient': 1, 'daytime': 1, 'weary': 6, 'devout': 3, 'virgin': 8, 'double': 4, 'Flower-garlanded': 1, 'triumphant': 1, 'minor': 4, 'angry': 21, 'Want': 3, 'safe': 2, 'good-looking': 13, 'faithful': 4, 'muddy': 1, 'giant': 3, 'purple': 14, 'heavenly': 1, 'Crude': 1, 'neighbouring': 2, 'swordlike': 1, 'heady': 3, 'sisal': 1, 'perfumed': 6, 'radiant': 1, 'half-welled': 1, 'wise': 4, 'different': 18, 'unlit': 1, 'Illegal': 1, 'certain': 3, 'many-sided': 1, 'planned': 1, 'twenty-five-year-old': 1, 'damaging': 1, 'shined': 1, 'formal': 3, 'illegal': 2, 'columned': 2, 'wonderful': 17, 'federal': 2, 'thumbnail': 1, 'remembered': 1, 'eligible': 1, 'chained': 2, 'lone': 2, 'customary': 2, 'red-faced': 2, 'English': 11, 'Several': 3, 'fourth': 3, 'two-day': 1, 'bighearted': 1, 'short-time': 1, 'fair': 4, 'rural': 1, 'unusual': 1, 'public': 5, 'latticed': 2, 'priestly': 5, 'common': 2, 'monotonous': 2, 'original': 2, 'naive': 1, 'multicoloured': 1, 'ashamed': 9, 'easy': 7, 'fake': 2, 'lowered': 3, 'golden': 8, 'invisible': 1, 'sacramental': 2, 'eternal': 1, 'sick': 13, 'lazy': 4, 'too-drunk': 1, 'sober': 3, 'anti-Catholic': 1, 'half-pretty': 1, 'outgoing': 2, 'blonde-lashed': 1, 'too-big': 1, 'Plain': 1, 'friendly': 14, 'light-skinned': 2, 'plain': 5, 'mud-coloured': 1, 'nasty': 1, 'decent': 4, 'staggering': 2, 'moonlike': 1, 'graceful': 7, 'Catholic': 11, 'coming-out': 3, 'gold-embossed': 1, 'shapely': 1, 'Ashamed': 1, 'colourful': 6, 'melodious': 3, 'romantic': 3, 'crowning': 1, 'misty': 2, 'steamy': 1, 'cold-creamed': 1, 'excellent': 4, 'necessary': 7, 'unperturbed': 1, 'social': 5, 'daily': 11, 'deathbed': 1, 'key': 5, 'ninepound': 1, 'devoted': 2, 'entertaining': 3, 'thatched-roofed': 1, 'tropical': 5, 'three-mile-long': 1, 'tilted': 4, 'marked': 3, 'ordinary': 1, 'redheaded': 9, 'flaming': 3, 'lengthwise': 1, 'Goodbyegoodbyenicetohavehadyouonthetripandapleasant': 1, 'anxious': 1, 'portable': 1, 'military': 3, 'powder-blue': 1, 'youngish': 1, 'youthful': 2, 'regal': 1, 'matronly': 2, 'monogrammed': 1, 'middle-aged': 7, 'wispy': 3, 'early-morning': 1, 'stoutish': 1, 'sharp-featured': 1, 'girlish': 2, 'petite': 4, 'seventy-year-old': 1, 'bald': 7, 'three-step': 1, 'pastel-pink': 1, 'local': 2, 'blue-veined': 1, 'unfriendly': 1, 'open-faced': 1, 'considerable': 1, 'white-haired': 2, 'plump': 3, 'Russian': 3, 'adjoining': 2, 'precise': 3, 'deadly': 1, 'sandy': 5, 'curtained': 2, 'straight-pointed': 2, 'electric': 3, 'broad-shouldered': 1, 'coconut-burdened': 1, 'mischievous': 1, 'current': 1, 'open-balconied': 1, 'inward': 1, 'ready': 15, 'mixed': 5, 'simple': 5, 'postured': 2, 'reclining': 1, 'Horrible': 2, 'powdered': 1, 'gringo-owned': 1, 'cobblestoned': 3, 'furious': 2, 'barrel-shaped': 1, 'genteel': 1, 'Rare': 1, 'whisky-sour': 1, 'mobile': 1, 'retired': 1, 'inexpensive': 1, 'low-income': 1, 'lowly': 1, 'derisive': 1, 'gracious': 1, 'pretentious': 3, 'French-fried': 1, 'separate': 3, 'energetic': 1, 'vigorous': 1, 'lukewarm': 1, 'close-cropped': 2, 'bottled': 1, 'garlic': 1, 'flame-coloured': 1, 'pink-cheeked': 1, 'offended': 1, 'strong-faced': 2, 'fiery-hot': 1, 'white-faced': 1, 'fluent': 1, 'half-empty': 2, 'fried': 5, 'slow': 9, 'drunken': 5, 'lank': 1, 'interested': 11, 'uninvited': 1, 'unsteadily': 2, 'intricate': 1, 'good-natured': 1, 'redheeled': 1, 'Latin-American': 3, 'musical': 2, 'immediate': 2, 'unfamiliar': 1, 'pleasant': 5, 'nondancing': 1, 'oblivious': 1, 'late-to-bed': 1, 'whirling': 2, 'pleased': 7, 'unnatural': 2, 'perpetual': 1, 'balconied': 3, 'seventyyear-old': 1, 'brief': 3, 'black-curled': 1, 'old-fashioned': 6, 'Jewish': 3, 'dimpled': 2, 'darkened': 6, 'horrible': 4, 'amorous': 1, 'ceaseless': 1, 'mescal': 6, 'teen-year-old': 1, 'secondhand': 1, 'able': 10, 'deep-sea': 7, 'bold': 3, 'outward': 2, 'weathered': 1, 'Seventeen-year-old': 1, 'hermit': 1, 'two-year-old': 1, 'worn': 6, 'tousled': 1, 'knee-length': 2, 'chinless': 3, 'liquid': 1, 'unknown': 1, 'remote': 1, 'amusing': 1, 'taking-you-into-my-confidence-old-boy': 1, 'flowered': 2, 'jelly': 1, 'periodic': 1, 'jealous': 1, 'generous': 3, 'tipsy': 1, 'courtly': 3, 'sharp-faced': 1, 'elegant': 7, 'inspired': 1, 'recent': 4, 'indignant': 1, 'curious': 6, 'various-sized': 1, 'aware': 5, 'willing': 4, 'eloquent': 1, 'unsteady': 2, 'comical': 1, 'drooping': 1, 'male': 7, 'typewritten': 1, 'phlegmy': 2, 'evil': 2, 'full-length': 1, 'surf-fishing': 1, 'rabbit-hunting': 1, 'three-cornered-sail': 1, 'undulating': 1, 'boyish': 5, 'contemptuous': 1, 'unrelieved': 1, 'Tropical': 34, 'cheerful': 5, 'riotous': 1, 'scorching': 1, 'halting': 1, 'unrelenting': 1, 'polite': 6, 'adopted': 1, 'mad': 6, 'momentary': 1, 'dry-eyed': 1, 'convinced': 1, 'dreamy': 1, 'natural': 2, 'infrequent': 1, 'attentive': 2, 'pulled-together': 1, 'solicitous': 1, 'unasked': 1, 'sentimental': 2, 'mighty': 1, 'nearby': 3, 'seventeen-hour': 1, 'fit': 2, 'untrained': 1, 'toothless': 3, 'sunlit': 2, 'pastel-coloured': 1, 'wicker-bottomed': 1, 'grass-roofed': 1, 'twenty-year-old': 1, 'flowery': 1, 'inscrutable': 2, 'sensible': 1, 'unblinking': 1, 'cynical': 2, 'civil': 2, 'lavish': 3, 'mellow': 1, 'gay': 5, 'sad': 16, 'whitefrosted': 1, 'purposeful': 1, 'funeral': 1, 'hush': 4, 'crumpled': 2, 'Farmers-and': 1, 'contrary': 1, 'perfect': 6, 'final': 4, 'round-bellied': 1, 'ting-aIing-a-ling': 1, 'twenty-five': 1, 'mirthful': 1, 'apoplectic': 1, 'ting-a-ling-aling': 1, 'personal': 3, 'passable': 1, 'pick-up': 2, 'married': 6, 'boisterous': 1, 'ting-a-Iing-a-ling': 1, 'tough': 2, 'unreadable': 2, 'fellow': 7, 'monthly': 3, 'half-human': 1, 'half-animal': 1, 'fifth': 2, 'normal': 2, 'swollen': 3, 'seaworthy': 1, 'wide-set': 2, 'disturbed': 2, 'brutal': 1, 'well-screened': 1, 'painted': 1, 'aloof': 2, 'European': 3, 'far-off': 2, 'throbbing': 4, 'mature': 1, 'all-consuming': 1, 'gallant': 1, 'responsible': 2, 'diplomatic': 1, 'permanent': 2, 'successful': 1, 'lemon': 7, 'shell-rimmed': 1, 'adult': 4, 'available': 2, 'welcome': 2, 'attractive': 14, 'Adult': 1, 'iced': 4, 'enthusiastic': 2, 'valuable': 2, 'Protestant': 2, 'terrible': 3, 'funny': 8, 'lopsided': 1, 'powerful': 1, 'twenty-first': 1, 'cupped': 3, 'Happy': 1, 'lovely': 14, 'fantastic': 3, 'Big': 3, 'close': 7, 'seventeenyear-old': 1, 'boastful': 1, 'tiny': 7, 'unexpected': 1, 'sonl': 1, 'change-of-life': 1, 'immense': 1, 'following': 1, 'paltry': 1, 'sinful': 2, 'notable': 1, 'unlighted': 1, 'bored': 4, 'joking': 3, 'ash': 2, 'saintly': 5, 'tiled': 6, 'Un-huh': 6, 'dull': 5, 'fierce': 2, 'rebozo-wrapped': 1, 'outraged': 2, 'tired': 3, 'audible': 1, 'scrubbed': 2, 'Real': 1, 'startled': 1, 'pointed': 1, 'unshaven': 1, 'menial': 3, 'beloved': 4, 'gentlemanly': 1, 'typical': 5, 'womanly': 1, 'hand-sized': 1, 'quick': 3, 'three-legged': 1, 'little-bird': 1, 'human': 3, 'obvious': 1, 'sliced': 1, 'olive': 2, 'moon-shaped': 2, 'appealing': 1, 'Huge': 1, 'uninhibited': 1, 'yellowish': 2, 'reliable': 1, 'present': 10, 'pregnant': 9, 'guilty': 1, 'relative': 2, 'mere': 3, 'unwelcome': 1, 'Impossible': 1, 'honest': 6, 'future': 1, 'previous': 4, 'sterile': 1, 'helpless': 1, 'Wonderful': 4, 'appreciative': 1, 'sad-looking': 1, 'pretended': 1, 'excited': 2, 'mysterious': 1, 'moth-eaten': 2, 'Honourable': 1, 'accustomed': 1, 'content': 1, 'ignorant': 2, 'endless': 2, 'bended': 2, 'marvellous': 1, 'ageing': 1, 'disturbing': 1, 'arched': 3, 'clearwashed': 1, 'taffy-coloured': 1, 'ragged-brimmed': 1, 'speckled': 1, 'fashionable': 4, 'Concrete': 1, 'red-paint': 1, 'calloused': 2, 'automobiletyre': 1, 'lonely': 10, 'shameful': 1, 'positive': 1, 'not.hungry': 1, 'flickering': 1, 'lush': 1, 'fitful': 1, 'marble-topped': 2, 'so-so': 1, 'steady': 4, 'servile': 2, 'idle': 1, 'greying': 4, 'medieval': 1, 'impassive': 1, 'cut-up': 1, 'unloaded': 2, 'after-dinner': 1, 'thin-stemmed': 1, 'surprising': 3, 'dried-up': 1, 'cramped': 2, 'sore': 1, 'late-night': 2, 'burro-back': 1, 'veinte': 1, 'ragged': 12, 'suckling': 1, 'refried': 1, 'diced': 1, 'well-equipped': 1, 'one-two': 2, 'awful': 6, 'long-stemmed': 3, 'life-sized': 1, 'plaster-slick': 1, 'nimble': 1, 'linen-covered': 1, 'raftered': 1, 'buttered': 1, 'brand-new': 3, 'this-year': 1, 'genuine': 3, 'white-wall': 1, 'balloonlike': 1, 'colonial': 2, 'mariachi': 1, 'seminary': 1, 'red-amber-green': 1, 'poked-out': 1, 'false': 2, 'half-filled': 1, 'bottom': 5, 'baby-white': 1, 'malicious': 3, 'ashy-grey': 1, 'grotesque': 4, 'frightening': 1, 'muy': 2, 'Wretched': 1, 'veintes': 1, 'Unable': 1, 'Whorish': 3, 'block-square': 1, 'disgusted': 1, 'soapy': 1, 'slender': 1, 'awkward': 2, 'alma': 1, 'staggered': 1, 'Soledad': 3, 'noisy': 3, 'polished': 4, 'Beautiful': 5, 'tattoolike': 1, 'official': 1, 'fitting': 1, 'low-slung': 1, 'little-boy': 2, 'okay': 2, 'Detailed': 1, 'pencil-thin': 1, 'winglike': 1, 'Spanish-language': 2, 'standard': 1, 'laden': 2, 'numberless': 1, 'faceless': 1, 'promising': 1, 'distant': 1, 'first-class': 1, 'utmost': 1, 'overnight': 1, 'spotted': 1, 'offshore': 1, 'near': 2, 'slippery': 1, 'side': 2, 'asleep': 1, 'unspoken': 1, 'likeable': 2, 'low-placed': 1, 'conciliatory': 1, 'busy': 2, 'nagging': 1, 'mellower': 1, 'explosive': 1, 'milky-white': 1, 'half': 9, 'pulque': 3, 'alcoholic': 4, 'equal': 2, 'frying': 1, 'stale': 2, 'half-mixed': 1, 'pallid': 1, 'palmroofed': 1, 'contented': 2, 'hurt': 1, 'insane': 3, 'sacrilege': 1, 'Lovely': 2, 'fatty-fatty': 1, 'extra': 2, 'grizzly': 1, 'goddamn': 11, 'worn-out': 1, 'implicit': 1, 'stubby': 2, 'very': 3, 'illustrator-pimps': 1, 'half-upright': 1, 'flimsy': 1, 'leisurely': 2, 'nervous': 6, 'unrented': 2, 'displeased': 1, 'marcelled': 2, 'diagonal': 1, 'sweaty': 2, 'water-bottling': 1, 'of-my': 1, 'put-together': 2, 'overburdened': 1, 'book-keeping': 1, 'luxurious': 1, 'crownlike': 1, 'crowded': 2, 'first-night': 2, 'expectant': 1, 'loyal': 2, 'left': 1, 'unrevealed': 1, 'gaudy': 3, 'deft': 1, 'brilliant': 1, 'Latin': 1, 'niaa': 1, 'five-piece': 1, 'poetic': 1, 'twenty-three-year-old': 2, 'childlike': 1, 'idealized': 1, 'motherly': 1, 'American-style': 2, 'visible': 1, 'frightened': 1, 'English-speaking': 2, 'savvy': 1, 'Frozen': 1, 'dour': 4, 'horn-rimmed': 2, 'actual': 2, 'cut-rate': 1, 'Special': 1, 'straggly': 1, 'Sinewy': 1, 'sleepy': 3, 'blue-and-white': 1, 'Sure': 2, 'run-down': 1, 'unseeing': 1, 'unresponding': 1, 'fatherly': 1, 'Soft-boiled': 1, 'hairy': 3, 'timid': 1, 'burlesque': 1, 'English-language': 3, 'shoeshine': 2, 'street-and-beach': 1, 'knobbly': 1, 'routine': 1, 'sliplike': 3, 'languid': 1, 'occupied': 1, 'escorted': 1, 'liberated': 1, 'guttural': 2, 'outdoor': 8, 'Mongolian': 1, 'pretty': 6, 'bare-footed': 2, 'unconscious': 1, 'wet-mouthed': 1, 'la-dy': 1, 'piteous': 1, 'inch-long': 1, 'intelligent': 4, 'round-faced': 1, 'three-year-old': 2, 'Otomi': 1, 'vulgar': 1, 'inside': 1, 'Blond': 1, 'fast': 2, 'uncertain': 2, 'Sweet': 12, 'dramatic': 3, 'silky': 2, 'agile': 1, 'instantaneous': 1, 'worn-faced': 1, 'drab': 1, 'pyjama-like': 1, 'Viennese-style': 1, 'flashy': 1, 'puppetlike': 1, 'Past': 1, 'amputated': 1, 'gullible': 1, 'turned-up': 2, 'midget': 1, 'much-creased': 1, 'well-off': 1, 'frail': 2, 'low-cut': 2, 'broke': 1, 'disastrous': 1, 'witty': 2, 'Thin': 1, 'sleeveless': 1, 'flush': 1, 'unfortunate': 1, 'black-trousered': 1, 'white-coated': 2, 'prayerlike': 1, 'folding': 3, 'sightless': 1, 'like': 1, 'mud-caked': 2, 'lateral': 1, 'red-painted': 1, 'lettered': 1, 'surprised': 1, 'unaware': 1, 'long-drawn': 2, 'massaging': 1, 'stockinged': 1, 'body-building': 1, 'masculine': 1, 'square-faced': 1, 'strong-nosed': 1, 'Herculean': 1, 'sheer': 1, 'escapist': 1, 'discreet': 3, 'sour': 4, 'naughty': 2, 'green-eyed': 1, 'unpleasant': 1, 'well-born': 1, 'sinister': 1, 'Long': 1, 'imaginary': 2, 'Glad': 1, 'thirty-five-year-old': 1, 'depressed': 3, 'blond-blond': 1, 'air-conditioning': 1, 'electrical': 2, 'smoked': 1, 'convertible': 3, 'seven-yearold': 1, 'air-conditioned': 2, 'GOOD': 1, 'potbellied': 1, 'boothlike': 1, 'unwanted': 1, 'unidentified': 1, 'rare': 4, 'straightnosed': 1, 'uncomfortable': 2, 'paved': 2, 'four-lane': 4, 'intense': 2, 'motionless': 1, 'skinny': 5, 'blood-veined': 1, 'mud-clotted': 1, 'inclined': 1, 'bandaged': 1, 'hand-licking': 1, 'cuplike': 1, 'faint': 2, 'pitiful': 1, 'damn': 3, 'Goddamn': 2, 'childish': 1, 'intimate': 1, 'hysterical': 1, 'enjoyable': 1, 'rimmed': 1, 'rotten': 1, 'touchy': 1, 'merry': 1, 'educational': 1, 'glass-bottomed': 2, 'unemployed': 1, 'subject': 1, 'civic': 1, 'still-open': 1, 'orange': 3, 'popular': 4, 'meagre': 1, 'pyjamalike': 2, 'candy-striped': 1, 'perpendicular': 1, 'yellow-brown': 1, 'hooded': 2, 'ascetic': 1, 'soft-to-the-touch': 1, 'high-walled': 1, 'sceptical': 1, 'irritating': 1, 'lively': 2, 'prison-like': 1, 'downcast': 1, 'Cool': 1, 'jewelled': 1, 'Small': 3, 'candlelike': 1, 'cloistered': 1, 'softly': 1, 'emaciated': 1, 'sainted': 1, 'healthy': 1, 'scuffed': 1, 'impoverished': 2, 'pious': 1, 'dignified': 2, 'vengeful': 1, 'sudsy': 1, 'sudden': 3, 'crusty': 1, 'salt-eroded': 1, 'unused': 1, 'tin-roofed': 1, 'quivering': 2, 'faraway': 1, 'uncontrolled': 1, 'half-grown': 1, 'platinum-haired': 1, 'insignificant': 1, 'frivolous': 1, 'hearty': 2, 'thick-stemmed': 1, 'plastic-coloured': 1, 'chartered': 2, 'red-and-white': 3, 'winecoloured': 1, 'bell-shaped': 1, 'stately': 1, 'high-backed': 3, 'elbow-length': 1, 'mutual': 2, 'Expensive': 1, 'needle-thin': 1, 'resplendent': 1, 'metallic': 1, 'gold': 2, 'night-black': 1, 'inch-wide': 1, 'crimson': 2, 'Dazzling': 1, 'blank': 1, 'booming': 1, 'aglow': 1, 'pastoral': 2, 'countless': 1, 'overall': 1, 'black-robed': 1, 'ballet': 2, 'ghostly': 1, 'profane': 1, 'unopened': 1, 'Defenceless': 1, 'garish': 1, 'Tizoc': 4, 'mechanical': 1, 'uhshelled': 1, 'yearly': 1, 'preliminary': 1, 'traditional': 2, 'amber-coloured': 1, 'year-end': 1, 'upended': 1, 'foreign': 1, 'stingy': 1, 'total': 2, 'life-size': 1, 'middle': 1, 'desperate': 1, 'joyous': 2, 'I-want': 1, 'sickly-sweet': 1, 'precious': 2, 'Italian': 4, 'embossed': 1, 'yellow-and-white': 1, 'hoarse': 1, 'grand': 2, 'unsophisticated': 1, 'half-forgotten': 1, 'off-colour': 1, 'rolled': 1, 'hard-on': 1, 'hash': 1, 'half-boozy': 1, 'Funny': 1, 'unpretentious': 1, 'unkind': 1, 'amiable': 1, 'political': 2, 'self-appointed': 1, 'Communist': 2, 'sincere': 2, 'excess': 1, 'British': 2, 'homosexual': 2, 'terrific': 2, 'obedient': 1, 'objective': 1, 'unlikely': 1, 'emotional': 1, 'abrupt': 1, 'prune-wrinkled': 1, 'deep-set': 1, 'redtiled': 1, 'sun-warmed': 1, 'tragic': 1, 'beige': 1, 'twisted': 1, 'honeycoloured': 1, 'crew-cut': 1, 'Boyish': 1, 'six-week': 1, 'squint-closed': 1, 'Morning-coloured': 1, 'dangerous': 1, 'laborious': 1, 'soft-winged': 1, 'paintstained': 1, 'hideous': 2, 'bald-headed': 2, 'brim-full': 1, 'wrought-iron': 1, 'frank': 1, 'outspoken': 1, 'unmarried': 1, 'affectionate': 1, 'nominal': 1, 'finishing': 2, 'heated': 1, 'Acapulco-style': 1, 'open-necked': 2, 'talented': 1, 'darkbrown': 1, 'overjovial': 1, 'patent-leather': 1, 'overweight': 2, 'grown': 1, 'overfriendly': 1, 'blonde-gold': 1, 'bloodshot': 1, 'royal': 1, 'blustering': 3, 'calico': 1, 'delighted': 1, 'affable': 2, 'teen-age': 1, 'erstwhile': 1, 'abject': 1, 'exclamation': 1, 'else': 1, 'mouth-turned-down': 1, 'sad-faced': 1, 'vacant': 1, 'knife-cut': 1, 'second-class': 1, 'bump-and-grind': 1, 'poodle-dog': 1, 'half-ballet': 1, 'willowy': 1, 'apparent': 1, 'masculine-looking': 1, 'sly': 1, 'overhead': 1, 'heavyjowled': 1, 'third-filled': 1, 'wooded': 1, 'Rondevous': 1, 'anguished': 1, 'alive': 1, 'well-formed': 2, 'wallto-wall': 1, 'international': 2, 'privileged': 2, 'fat-assed': 1, 'ice-cold': 1, 'frustrated': 1, 'unhappy': 1, 'clad': 2, 'weekly': 1, 'brown-paper': 2, 'not-so-beautiful': 1, 'four-cent': 1, 'religious': 8, 'weird': 1, 'glowing': 1, 'husky': 2, 'fourteen-year-old': 1, 'shapeless': 1, 'ringed': 1, 'crayoned': 1, 'vehement': 1, 'threecornered': 1, 'doglike': 1, 'straight-backed': 1, 'grave': 1, 'silvery': 1, 'ostrich': 1, 'hourly': 1, 'mistaken': 1, 'seventh': 1, 'shabby': 1, 'Parlez-vous': 1, 'valet': 1, 'wall-to-wall': 1, 'long-distance': 1, 'daring': 2, 'middleaged': 1, 'senior': 1, 'three-bedroom': 1, 'half-quizzical': 1, 'female': 3, 'True': 2, 'telegrammed': 1, 'casual': 3, 'initialled': 1, 'well-stocked': 1, 'frequent': 1, 'Mexican-Indian': 1, 'hefty': 2, 'black-black': 1, 'Polish': 1, 'Irish': 2, 'three-four-seven': 1, 'frothy': 1, 'tightest-fitting': 1, 'gringo-type': 1, 'unchained': 1, 'platinum-blond': 1, 'ineffectual': 1, 'straw-bottomed': 1, 'halfmusical': 1, 'half-eaten': 2, 'viente': 1, 'half-uneaten': 1, 'Bartolo': 16, 'brittle': 1, 'glass-bottom': 1, 'mine': 1, 'innocent': 1, 'lame': 2, 'cry-baby': 1, 'bush': 1, 'un': 1, 'tense': 1, 'bubbly': 2, 'nine-year-old': 1, 'zippered': 1, 'jaunty': 2, 'purple-flamed': 1, 'sweet-smelling': 1, 'majestic': 1, 'browned': 1, 'record': 1, 'respected': 1, 'moral': 1, 'prayerful': 1, 'flower-decked': 1, 'fringed': 1, 'salt-stained': 1, 'splendid': 2, 'Such': 2, 'unrestrained': 1, 'annoyed': 1, 'shrewd': 1, 'drastic': 1, 'Various': 1, 'pink-faced': 1, 'flower-gardened': 1, 'theirs': 1, 'snotty': 1, 'hunger-swollen': 1, 'thatched-roof': 2, 'half-submerged': 1, 'heelless': 2, 'puffed': 1, 'flirtatious': 2, 'related': 2, 'festive': 1, 'candlelit': 1, 'hi-fi': 1, 'flower-vased': 1, 'gowned': 1, 'tulip-shaped': 1, 'bloated': 1, 'net': 1, 'incredulous': 1, 'compassionate': 2, 'black-hooded': 1, 'unoccupied': 1, 'charitable': 1, 'unaccountable': 1, 'deluxe': 1, 'Brilliant': 1, 'never-to-be-forgotten': 1, 'Informal': 1, 'principal': 1, 'gilded': 1, 'single': 2, 'Additional': 1, 'uncontaminated': 1, 'sullen': 1, 'patient': 2, 'Indiansliced': 1, 'scrawny-necked': 1, 'dirt-floor': 1, 'rumpled': 2, 'bird-watching': 1, 'gossipy': 1, 'Unwilling': 1, 'Great': 1, 'self-sufficient': 1, 'listless': 1, 'spare': 1, 'Few': 1, 'sexless': 1, 'dedicated': 1, 'laughing': 1, 'celestial': 1, 'nightly': 1, 'potted': 1, 'nightgown': 1, 'twelve-storey': 1, 'Noisy': 1, 'greasy': 1, 'unstrapped': 1, 'faucet': 1, 'MEXICAN': 1, 'LUXURIOUS': 1, 'temporary': 1, 'crushed': 1, 'PAMPERED': 1, 'extravagant': 2, 'Canadian': 1, 'intellectual': 1, 'delightful': 1, 'glamorous': 1, 'fond': 1, 'jere': 1, 'portly': 1, 'well-trained': 1, 'civilized': 1, 'glib-tongued': 1, 'unrolled': 1, 'artistic': 3, 'exact': 1, 'India-ink': 1, 'fresh-water': 1, 'millionaire': 1, 'friend-to-everybody': 1, 'tantalizing': 1, 'firstclass': 1, 'plush': 1, 'printlike': 1, 'preserved': 1, 'Double': 1, 'two-month': 1, 'Kewpie-doll': 1, 'perverse': 1, 'Votive': 1, 'miserable': 3, 'Symphonic': 1, 'uniformed': 1, 'fabulous': 2, 'furnished': 1, 'two-way': 1, 'oncoming': 2, 'speeding': 1, 'calming': 1, 'out-of-line': 1, 'fractured': 1, 'shrill': 1, 'seaside': 1, 'shell-domed': 1, 'two-bedroomed': 1, 'thendifferent': 1, 'underwater': 1, 'individual': 1, 'two-year': 1, 'exhilarating': 1, 'major': 2, 'preparatory': 1, 'liberal': 1, 'second-year': 2, 'magic': 1, 'internal': 1, 'autonomous': 1, 'first-year': 1, 'cognizant': 1, 'jovial': 1, 'Brazilian': 1, 'long-drawn-out': 1, 'silly-looking': 1, 'sleek': 1, 'sympathetic': 1, 'appropriate': 1, 'raucous': 1, 'Dignified': 1, 'brotherly': 1, 'aghast': 1, 'second-floor': 2, 'army-style': 1, 'further': 1, 'regrettable': 1, 'German-looking': 1, 'Brown': 1, 'lock-up': 1, 'grass-woven': 2, 'ungrateful': 1, 'mingled': 1, 'straw-woven': 1, 'governmental': 1, 'easygoing': 1, 'pampered': 1, 'Lucky': 1, 'little-girl': 1, 'recorded': 1, 'possible': 1, 'scattered': 1, 'exaggerated': 1, 'paper-thin': 1, 'blended': 1, 'rebellious': 1, 'round': 1, 'eager': 1, 'captive': 1, 'five-hundred-peso': 1, 'muscular': 1, 'panicky': 1, 'unstrung': 1, 'realistic': 1, 'WONT': 2, 'direct': 1, 'bizarre': 1, 'seventeen-year-old': 1, 'novel': 3, 'unprincipled': 1, 'cash-register': 1, 'debased': 1, 'savage': 1, 'comparative': 1, 'unputdownable': 1, 'GREAT': 1, 'runaway': 1, 'sex-mad': 1, 'orgiastic': 1, 'supercharged': 1, 'cheque/postal': 1, 'GOLDEN': 1, 'Obtainable': 1, 'POPULAR': 1, 'illus': 4, 'panoramic': 1, 'neon-lit': 1, 'jaded': 1, 'newsweek': 1, 'torrid': 1}
[Works]@1950
{'Scarlet': 21, 'ponderous': 5, 'timbered': 1, 'steeple-crowned': 3, 'human': 66, 'old': 146, 'virgin': 2, 'bearded': 3, 'practical': 2, 'beetle-browed': 1, 'gray': 21, 'sad-colored': 2, 'congregated': 1, 'new': 40, 'first': 37, 'oaken': 3, 'Certain': 1, 'wooden': 6, 'gloomy': 6, 'antique': 7, 'other': 134, 'youthful': 4, 'sweet': 5, 'moral': 18, 'wild': 42, 'fair': 18, 'rose-bush': 2, 'gigantic': 4, 'stern': 18, 'present': 15, 'such': 105, 'alive': 11, 'fragile': 1, 'unsightly': 2, 'delicate': 8, 'black': 32, 'congenial': 1, 'deep': 35, 'strange': 42, 'token': 20, 'much': 37, 'early': 14, 'inauspicious': 2, 'kind': 5, 'overgrown': 1, 'civilized': 2, 'sainted': 2, 'ugly': 7, 'undutiful': 1, 'good': 92, 'short': 12, 'civil': 3, 'anticipated': 1, 'sluggish': 2, 'riotous': 1, 'certain': 20, 'public': 40, 'legal': 2, 'grim': 6, 'iron-clamped': 2, 'Antinomian': 1, 'same': 56, 'Indian': 16, 'heterodox': 1, 'large': 12, 'idle': 3, 'petrified': 2, 'bitter-tempered': 2, 'white': 23, 'vagrant': 1, 'later': 2, 'identical': 2, 'penal': 2, 'refined': 3, 'prison-door': 3, 'broad': 7, 'far-off': 2, 'own': 135, 'well-developed': 1, 'native': 17, 'man-like': 1, 'awful': 10, 'bright': 21, 'peculiar': 13, 'unsuitable': 1, 'cold': 11, 'unsubstantial': 1, 'several': 7, 'successive': 2, 'venerable': 11, 'physical': 12, 'young': 54, 'merciful': 7, 'autumnal': 2, 'heathenish': 1, 'naughty': 8, 'third': 5, 'God-fearing': 1, 'mature': 1, 'paler': 2, 'hot': 5, 'hard-featured': 1, 'worshipful': 6, 'vivid': 9, 'Hush': 5, 'self-constituted': 1, 'darksome': 3, 'pitiless': 1, 'left': 2, 'grisly': 3, 'open': 24, 'final': 5, 'official': 2, 'little': 176, 'dismal': 7, 'whole': 37, 'natural': 13, 'wholesome': 5, 'motherly': 3, 'free': 12, 'lady-like': 2, 'beautiful': 13, 'sensitive': 11, 'fantastic': 7, 'abashed': 1, 'disastrous': 2, 'marked': 6, 'perfect': 6, 'dimmed': 1, 'abundant': 1, 'last': 34, 'dark': 37, 'glossy': 2, 'sumptuary': 2, 'tall': 4, 'true': 27, 'haughty': 4, 'fine': 3, 'indescribable': 3, 'feminine': 2, 'fitting': 2, 'elaborate': 3, 'red': 20, 'gorgeous': 5, 'picturesque': 3, 'impressed': 3, 'desperate': 7, 'female': 2, 'iron-visaged': 1, 'mine': 14, 'embroidered': 13, 'godly': 8, 'rich': 22, 'painful': 1, 'ordinary': 7, 'rheumatic': 1, 'worthy': 10, 'dainty': 1, 'scarlet': 102, 'eager': 3, 'marvelous': 4, 'effectual': 3, 'serene': 1, 'ignominious': 7, 'unkindly-visaged': 1, 'meridian': 1, 'righteous': 2, 'traditionary': 1, 'them-an': 1, 'historical': 1, 'curious': 3, 'western': 1, 'irregular': 2, 'great': 53, 'stern-browed': 1, 'flagrant': 1, 'ideal': 1, 'sacred': 13, 'illustrious': 1, 'Papist': 1, 'common': 16, 'sinless': 2, 'tight': 1, 'manifest': 4, 'devilish': 1, 'many': 64, 'terrible': 13, 'fellow-creature': 1, 'intolerable': 3, 'grave': 6, 'dignified': 4, 'solemn': 18, 'popular': 3, 'social': 9, 'general': 9, 'individual': 7, 'heavy': 16, 'shrill-voiced': 1, 'scornful': 2, 'passionate': 6, 'contorted': 1, 'enough': 5, 'unhappy': 7, 'rigid': 9, 'impulsive': 2, 'corrupt': 3, 'venomous': 1, 'somber': 11, 'unrelenting': 2, 'poverty-stricken': 1, 'subsequent': 6, 'domestic': 6, 'leaden': 1, 'similar': 6, 'instinctive': 4, 'decayed': 1, 'phantasmagoric': 2, 'full': 25, 'childish': 10, 'half-obliterated': 1, 'entire': 5, 'immaterial': 2, 'Western': 1, 'miserable': 17, 'trifling': 1, 'cruel': 2, 'spectral': 2, 'roughly-hewn': 1, 'happy': 10, 'bitter': 9, 'paternal': 4, 'conspicuous': 1, 'disdainful': 1, 'mad': 3, 'active': 4, 'intricate': 2, 'womanly': 1, 'bald': 1, 'huge': 2, 'glowing': 3, 'rude': 8, 'green': 7, 'gentle': 4, 'ancient': 5, 'bleared': 2, 'old-fashioned': 1, 'quaint': 3, 'anxious': 6, 'narrow': 3, 'thin': 4, 'girlish': 1, 'stricken': 1, 'scholar-like': 4, 'heedful': 1, 'Next': 1, 'time-worn': 1, 'pale': 18, 'real': 15, 'remarkable': 9, 'heterogeneous': 2, 'aged': 8, 'slight': 5, 'intense': 9, 'severe': 5, 'universal': 3, 'small': 22, 'careless': 1, 'relieved': 2, 'furrowed': 1, 'evident': 2, 'discerning': 3, 'infrequent': 2, 'mental': 2, 'savage': 8, 'exterVnal': 1, 'convulsive': 3, 'imperceptible': 2, 'single': 7, 'keen': 1, 'poor': 37, 'powerful': 10, 'next': 13, 'brief': 6, 'bent': 5, 'penetrative': 1, 'courteous': 1, 'formal': 2, 'evil': 18, 'inward': 4, 'grevious': 1, 'necessary': 2, 'long': 41, 'a-wanting': 1, 'wise': 13, 'vain': 12, 'visible': 7, 'guilty': 18, 'bold': 2, 'few': 21, 'communicative': 1, 'sad': 26, 'sin-born': 2, 'ceremonial': 2, 'Hearken': 1, 'hard': 12, 'loud': 3, 'matronly': 3, 'quiet': 16, 'mid-day': 3, 'conscious': 13, 'audible': 1, 'Dreadful': 1, 'ill': 3, 'chief': 2, 'lay': 2, 'eldest': 1, 'grizzled': 2, 'shaded': 1, 'easy': 4, 'virtuous': 1, 'genial': 2, 'famous': 4, 'capable': 9, 'unadulterated': 1, 'engraved': 1, 'divine': 6, 'eminent': 6, 'doubtless': 7, 'right': 3, 'intellectual': 10, 'authoritative': 1, 'Good': 5, 'English': 2, 'grievous': 4, 'reverend': 1, 'privileged': 1, 'very': 6, 'upright': 2, 'striking': 3, 'momentous': 3, 'silent': 7, 'vast': 10, 'shadowy': 6, 'tremulous': 9, 'childlike': 2, 'apt': 4, 'nervous': 5, 'half-frightened': 1, 'dewy': 2, 'simple': 9, 'lofty': 6, 'brown': 5, 'Such': 11, 'impending': 1, 'melancholy': 10, 'high': 23, 'apprehensive': 1, 'religious': 9, 'inevitable': 9, 'mistaken': 1, 'pleased': 1, 'direct': 2, 'half': 8, 'vacant': 4, 'lowly': 2, 'earthly': 18, '^': 7, 'broken': 7, 'impracticable': 2, 'heavenly': 5, 'prepared': 1, 'infernal': 3, 'Wondrous': 1, 'second': 2, 'branded': 1, 'weary': 4, 'troubled': 4, 'gifted': 3, 'continual': 5, 'lurid': 6, 'animal': 1, 'latter': 22, 'constant': 8, 'forcible': 2, 'professional': 12, 'familiar': 19, 'impossible': 6, 'singular': 10, 'maternal': 2, 'medicinal': 1, 'Christian': 7, 'half-frenzied': 1, 'random': 1, 'prison-keeper': 1, 'trundle-bed': 1, 'convenient': 1, 'peremptory': 1, 'soothing': 3, 'medical': 7, 'characteristic': 5, 'amenable': 2, 'suitable': 4, 'comparative': 2, 'potent': 7, 'Foolish': 2, 'reasonable': 2, 'innocent': 4, 'satisfied': 2, 'Wouldst': 2, 'profound': 7, 'further': 12, 'yonder': 9, 'slow': 5, 'slumbering': 1, 'involuntary': 5, 'earnest': 5, 'live': 3, 'tempestuous': 3, 'shallow': 2, 'call': 1, 'hungry': 2, 'True': 4, 'frank': 1, 'married': 1, 'feigned': 1, 'only': 17, 'false': 11, 'sayest': 1, 'prying': 2, 'cheerless': 1, 'wrong': 8, 'lonely': 14, 'invisible': 2, 'warm': 10, 'unnatural': 2, 'balanced': 1, 'outward': 15, 'self-relying': 1, 'wrinkled': 3, 'bewildered': 3, 'secret': 18, 'hideous': 4, 'afraid': 5, 'dead': 16, 'unknown': 8, 'Black': 15, 'faithless': 1, 'daily': 8, 'vital': 2, 'reckless': 2, 'morbid': 10, 'separate': 1, 'combative': 1, 'unattended': 2, 'sick': 8, 'alien': 1, 'pure': 11, 'inscrutable': 2, 'remote': 4, 'sinful': 16, 'theeeneral': 1, 'obscure': 5, 'European': 3, 'restrictive': 1, 'honorable': 5, 'irresistible': 3, 'rural': 2, 'life-long': 3, 'galling': 1, 'joint': 1, 'unrecognized': 1, 'fatal': 3, 'uncongenial': 1, 'inmost': 5, 'foreign': 3, 'stainless': 2, 'dreary': 13, 'endless': 1, 'ghost-like': 1, 'lonesome': 3, 'thatched': 1, 'saint-like': 3, 'mystic': 3, 'forest-covered': 1, 'nigh': 2, 'contagious': 1, 'scrubby': 1, 'sterile': 1, 'close': 10, 'inquisitorial': 1, 'sable': 4, 'spiritual': 23, 'snowy': 2, 'thriving': 1, 'well-conducted': 1, 'stately': 5, 'Deep': 1, 'plebeian': 2, 'imaginative': 2, 'curiously': 1, 'emblematic': 1, 'Puritanic': 3, 'frequent': 5, 'fanciful': 1, 'ascetic': 1, 'ready': 6, 'intangible': 2, 'sufficient': 3, 'worthless': 1, 'requited': 1, 'ever-relentless': 1, 'military': 7, 'fictitious': 1, 'Much': 2, 'exquisite': 4, 'steadfast': 2, 'probable': 1, 'coarse': 3, 'genuine': 4, 'rare': 3, 'doubtful': 4, 'Oriental': 1, 'superfluous': 1, 'airy': 5, 'voluptuous': 1, 'horrible': 6, 'forgiving': 1, 'sole': 4, 'crimson': 8, 'elevated': 2, 'defenceless': 1, 'rough': 4, 'ulcerated': 1, 'subtile': 2, 'accustomed': 5, 'vague': 6, 'ever-active': 3, 'wintry': 1, 'mingled': 1, 'undying': 1, 'distinct': 5, 'cool': 1, 'contrived': 2, 'innumerable': 1, 'wide': 10, 'shrill': 1, 'solitary': 3, 'momentary': 5, 'sympathetic': 2, 'fancy': 2, 'loathsome': 1, 'shocked': 1, 'bad': 4, 'dreadful': 4, 'irreverent': 3, 'callous': 1, 'insidious': 1, 'unsunned': 1, 'electric': 1, 'mere': 4, 'maiden': 3, 'mortal': 13, 'redhot': 1, 'grotesque': 3, 'fellow-mortal': 1, 'reluctant': 4, 'terrific': 3, 'vulgar': 3, 'faint': 4, 'night-time': 4, 'modern': 5, 'tiny': 1, 'dishonored': 1, 'expressive': 1, 'lovely': 2, 'immortal': 3, 'unimpassioned': 1, 'brilliant': 9, 'proper': 5, 'rustic': 1, 'peasant-baby': 1, 'faultless': 1, 'untried': 1, 'wild-flower': 1, 'absolute': 2, 'infinite': 4, 'untempered': 1, 'jintne': 1, 'fiery': 2, 'clear': 4, 'defiant': 1, 'unborn': 1, 'various': 9, 'difficult': 5, 'bodily': 12, 'inner': 3, 'impassioned': 1, 'whirlwind': 1, 'intelligent': 3, 'strict': 3, 'calculable': 1, 'Scriptural': 2, 'inexplicable': 2, 'glimmering': 2, 'undue': 1, 'malicious': 1, 'Physical': 1, 'perverse': 3, 'harsh': 3, 'Mindful': 1, 'actual': 4, 'baffling': 1, 'gusty': 1, 'sure': 5, 'bewildering': 1, 'safe': 2, 'unsympathizing': 2, 'delusive': 1, 'unintelligent': 1, 'delicious': 2, 'incapable': 2, 'bird-like': 2, 'emblem-arm': 1, 'grassy': 2, 'imitative': 1, 'entangled': 1, 'ever-ready': 1, 'sportive': 5, 'puny': 1, 'inviolable': 1, 'infantile': 1, 'unquiet': 3, 'fitful': 4, 'unlikeliest': 1, 'fierce': 8, 'intolerant': 2, 'creative': 1, 'intelligible': 1, 'outlandish': 1, 'unearthly': 2, 'inalienable': 1, 'incoherent': 1, 'feverish': 1, 'northern': 1, 'adverse': 1, 'wonderful': 3, 'imaginary': 2, 'visionary': 2, 'hostile': 1, 'preternatural': 4, 'armed': 1, 'observable': 1, 'rapid': 3, 'sprite-like': 1, 'calm': 9, 'aware': 4, 'fond': 3, 'sudden': 7, 'unutwterable': 1, 'odd': 3, 'big': 4, 'tortured': 6, 'clasped': 1, 'Many': 3, 'unsearchable': 1, 'freakish': 2, 'unaccountable': 3, 'fiend-like': 2, 'elvish': 3, 'humorsome': 1, 'hush': 3, 'Heavenly': 3, 'elfish': 4, 'foul': 3, 'monkish': 2, 'Catholic': 1, 'hellish': 2, 'wicked': 6, 'influential': 1, 'ultimate': 1, 'important': 3, 'former': 14, 'harmless': 3, 'imperious': 3, 'ludicrous': 2, 'legislative': 1, 'Little': 8, 'pristine': 2, 'unequal': 1, 'intrinsic': 1, 'busy': 2, 'luxuriant': 3, 'Full': 1, '=': 2, 'passloilate': 1, 'endowed': 3, 'pallid': 1, 'concepjionsassumed': 1, 'unpremeditated': 1, 'akin': 2, 'scorched': 1, 'cabalistic': 1, 'half-fledged': 1, 'dauntless': 1, 'aslant-wise': 1, 'sunny': 8, 'threatening': 2, 'double': 1, 'cheery': 2, 'joyful': 1, 'extant': 1, 'sorrowful': 1, 'mossgrown': 1, 'wide-open': 1, 'hereditary': 4, 'arched': 2, 'customary': 2, 'blue': 2, 'bond-servant': 2, 'free-born': 1, 'durable': 1, 'center-table': 1, 'substantial': 2, 'different': 5, 'recent': 2, 'Elizabethan': 2, 'casual': 6, 'embowed': 1, 'frothy': 1, 'spacious': 1, 'gilded': 1, 'skilful': 1, 'ancestral': 1, 'polished': 1, 'gleaming': 1, 'closely-shaven': 1, 'half-mythological': 1, 'ornamental': 1, 'hopeless': 2, 'prominent': 2, 'plain': 3, 'immature': 1, 'utter': 4, 'quick': 2, 'mobile': 2, 'frost-bitten': 1, 'purple': 1, 'antiquated': 1, 'loose': 1, 'naturalized': 1, 'foremost': 2, 'elderly': 2, 'utmost': 6, 'private': 3, 'comfortable': 2, 'pastoral': 1, 'wont': 2, 'unreserved': 1, 'legitimate': 2, 'past': 13, 'physic': 1, 'like': 2, 'longestablished': 1, 'selfsame': 2, 'late': 4, 'golden': 11, 'merry': 7, 'due': 8, 'favorite': 2, 'tropical': 1, 'disciplined': 1, 'upper': 4, 'astonished': 1, 'eternal': 4, 'grandfatherly': 1, 'temporal': 1, 'unaccustomed': 6, 'clad': 1, 'arm-chair': 1, 'misshapen': 2, 'Old': 3, 'pious': 8, 'celebrated': 1, 'inopportune': 1, 'amiss': 2, 'mayest': 1, 'near': 2, 'ungracious': 1, 'unacquainted': 1, 'thorough': 1, 'future': 3, 'millionfold': 1, 'unkind': 1, 'indefeasible': 1, 'careworn': 1, 'interrupted': 1, 'hollow': 3, 'emaciated': 4, 'unthought': 1, 'unhallowed': 1, 'holy': 15, 'ever-recurring': 1, 'stated': 1, 'unobtrusive': 1, 'weighty': 2, 'long-sought': 1, 'flighty': 1, 'ill-omened': 1, 'cheerful': 3, 'shrewd': 2, 'profane': 1, 'triumphant': 4, 'authentic': 2, 'parable': 2, 'travel-worn': 1, 'previous': 3, 'perilous': 2, 'unspotted': 1, 'desirable': 5, 'intimate': 3, 'Unknown': 1, 'trodden': 3, 'noble': 2, 'chirurgical': 1, 'wondrous': 1, 'occasional': 3, 'habitual': 2, 'Skillful': 1, 'heavenly-ordained': 1, 'exemplary': 3, 'far-fetched': 1, 'fervent': 1, 'parochial': 1, 'untutored': 1, 'feeble': 9, 'avowed': 2, 'scrupulous': 1, 'scientific': 1, 'fit': 3, 'Indicative': 1, 'hidden': 6, 'absurd': 3, 'iid': 1, 'imminent': 1, 'supernatural': 2, 'valueless': 1, 'German': 1, 'sensible': 4, 'miraculous': 4, 'importunate': 2, 'favorable': 1, 'opportune': 1, 'providential': 1, 'strong': 11, 'despondent': 1, 'friendly': 5, 'content': 1, 'interested': 1, 'Youthful': 1, 'mysterious': 7, 'moderate': 1, 'saintly': 2, 'fresh': 1, 'sensual': 1, 'essential': 5, 'reverential': 2, 'lamp-light': 1, 'musty': 1, 'liberal': 1, 'cautious': 2, 'intrusive': 3, 'likely': 2, 'unuttered': 1, 'Few': 1, 'inarticulate': 2, 'personal': 2, 'transparent': 1, 'nameless': 2, 'benevolent': 1, 'sagacious': 1, 'experienced': 1, 'priestly': 1, 'unsavory': 1, 'devoted': 2, 'possible': 3, 'serious': 2, 'parchment-bound': 1, 'hung': 1, 'front': 1, 'unfaded': 1, 'mutual': 6, 'incurious': 1, 'complete': 1, 'respective': 1, 'noontide': 1, 'Protestant': 2, 'obvious': 2, 'sober': 1, 'unerring': 1, 'uninstructed': 1, 'enlarged': 1, 'valuable': 2, 'tative': 1, 'especial': 3, 'diffused': 1, 'sore': 5, 'diabolical': 1, 'unshaken': 1, 'sooty': 2, 'secure': 1, 'desirous': 1, 'ominous': 2, 'equal': 2, 'geometrical': 1, 'ghastly': 6, 'air-drawn': 1, 'light': 10, 'hill-side': 1, 'precious': 4, 'sympathizing': 1, 'suspicious': 1, 'premeditated': 1, 'wary': 3, 'rubbish': 1, 'startled': 5, 'liable': 2, 'invaluable': 1, 'dim': 6, 'inimical': 1, 'intuitive': 1, 'watchful': 3, 'flabby': 1, 'unspoken': 1, 'inanimate': 1, 'unutterable': 3, 'needful': 2, 'death-bed': 4, 'polluted': 3, 'completest': 2, 'Divine': 1, 'wretched': 9, 'filthy': 1, 'speckled': 1, 'be-v': 1, 'new-fallen': 1, 'unclean': 1, 'usual': 2, 'penitential': 1, 'irrelevant': 1, 'adjacent': 1, 'flat': 1, 'weak': 3, 'summer-time': 1, 'mixed': 1, 'prickly': 2, 'armorial': 3, 'unseasonable': 1, 'well-skilled': 1, 'owned': 1, 'bygone': 2, 'discoverable': 1, 'extravagant': 3, 'Busy': 1, 'unaltered': 1, 'concentrated': 1, 'low': 5, 'appropriate': 2, 'white-cheeked': 2, 'hurrieth': 1, 'remorseful': 2, 'unseemly': 1, 'successful': 3, 'frantic': 1, 'besought': 2, 'somniferous': 1, 'unwonted': 3, 'extraordinary': 1, 'mighty': 7, 'black-letter': 1, 'latent': 1, 'passionless': 1, 'unfortunate': 3, 'ineffectual': 1, 'shy': 3, 'celestial': 7, 'odious': 1, 'interior': 2, 'indifferent': 1, 'external': 3, 'willing': 2, 'phantom': 3, 'doctrinal': 1, 'forlorn': 2, 'solid': 5, 'infectingjug': 1, 'efficacious': 1, 'fellow-clergymen': 1, 'Unable': 1, 'abstruse': 1, 'unamiable': 2, 'upward': 3, 'respectable': 2, 'afar': 1, 'apostolic': 1, 'persuasive': 2, 'ethereal': 4, 'clerical': 4, 'theirs': 1, 'accursed': 1, 'rugged': 2, 'acceptable': 1, 'High': 1, 'devoid': 3, 'shadowlike': 1, 'inconceivable': 1, 'unimaginable': 1, 'subtle': 2, 'trans': 1, 'self-condemning': 1, 'simultaneous': 1, 'above': 2, 'vile': 1, 'deadly': 6, 'seli-acknowledged': 1, 'horrid': 1, 'looking-glass': 1, 'corrupted': 1, 'bloody': 1, 'sorrow-laden': 1, 'white-bearded': 1, 'diabolic': 1, 'leathern-bound': 1, 'brazen-clasped': 1, 'misty': 1, 'impalpable': 2, 'square': 2, 'unspeakable': 1, 'ghostly': 1, 'untrue': 1, 'Tfie': 1, 'standing': 1, 'dank': 1, 'weather-stained': 1, 'unvaried': 1, 'east': 1, 'expectant': 1, 'poisonous': 4, 'heaven-defying': 2, 'naked': 1, 'wakeful': 1, 'iron-nerved': 1, 'inextricable': 1, 'frightful': 3, 'discontented': 1, 'multitudinous': 2, 'drowsy': 1, 'latticed': 1, 'distant': 2, 'long-hidden': 1, 'radiant': 2, 'mill-stone': 1, 'able': 5, 'half-crazed': 1, 'stiff': 1, 'pleasant': 2, 'humorous': 2, 'herable': 1, 'muddy': 1, 'vaguely-defined': 1, 'disturbed': 2, 'eastern': 1, 'defunct': 1, 'horror-stricken': 2, 'glorified': 2, 'night-gear': 1, 'decorous': 1, 'frozen': 2, 'eTectric': 1, 'tumultuous': 1, 'acute': 3, 'herj': 1, 'familial': 1, 'dense': 2, 'gable': 1, 'immense': 1, 'prefigured': 1, 'worn': 3, 'meteoric': 2, 'self-contemplative': 1, 'expansive': 1, 'majestic': 8, 'psychological': 1, 'mense': 1, 'dull': 2, 'after-thought': 1, 'careful': 2, 'erudite': 1, 'amusing': 1, 'mock': 2, 'replete': 1, 'nignt': 1, 'straitly': 1, 'nerveless': 2, 'knewest': 1, 'Worthy': 1, 'scurrious': 1, 'foolish': 3, 'confused': 1, 'blind': 1, 'standard': 1, 'helpless': 2, 'requital': 2, 'blameless': 1, 'original': 2, 'rightful': 1, 'broidered': 2, 'inexhaustible': 1, 'self-devoted': 2, 'bitter-hearted': 1, 'fast': 2, 'faithful': 1, 'darkened': 2, 'despotic': 1, 'benign': 1, 'Able': 1, 'sour': 2, 'helpful': 2, 'resolute': 1, 'graceful': 1, 'red-hot': 2, 'repulsive': 1, 'bare': 2, 'statue-like': 2, 'crushed': 2, 'magic': 5, 'transfigured': 1, 'dared': 1, 'negative': 1, 'preliminary': 2, 'opposite': 2, 'worth': 1, 'regular': 1, 'fearful': 2, 'behoped': 1, 'auspicious': 1, 'healthy': 1, 'insurmountable': 1, 'inadequate': 2, 'retired': 1, 'griped': 1, 'mid-leg': 1, 'glistening': 3, 'fragmomentary': 1, 'moist': 1, 'tangled': 1, 'yester-eve': 1, 'studious': 2, 'wiry': 1, 'remembered': 2, 'glad': 6, 'oni': 1, 'perpetual': 1, 'peaceful': 2, 'thoughtful': 4, 'unable': 2, 'priceless': 1, 'typical': 1, 'malignant': 1, 'blighted': 1, 'deleterious': 1, 'sudScarlet': 1, 'sedulous': 1, 'lukewarm': 1, 'barren': 1, 'long-past': 1, 'nuptial': 1, 'crooked': 1, 'unreal': 1, 'unattainable': 2, 'snow-flakes': 1, 'elf-child': 2, 'child-like': 1, 'capricious': 1, 'acrid': 1, 'sturdy': 1, 'unflinching': 1, 'disagreeable': 1, 'petulant': 1, 'uncontrollable': 1, 'innate': 1, 'dreamy': 1, 'unripe': 1, 'sterling': 1, 'asleep': 2, 'Silly': 1, 'tomb-like': 1, 'bethought': 1, 'supper-time': 1, 'wooded': 1, 'undisguised': 1, 'meditative': 1, 'ulterior': 1, 'penitent': 1, 'imputed': 1, 'neighboring': 1, 'imperfect': 1, 'primeval': 1, 'inconvenient': 1, 'predominant': 1, 'metallic': 1, 'never-failing': 1, 'untransmitted': 1, 'reflex': 1, 'ugly-tempered': 1, 'aweary': 1, 'giant': 1, 'leaf-strewn': 2, 'smooth': 2, 'sparkling': 1, 'preceding': 1, 'streamlet': 1, 'never-ceasing': 1, 'current': 2, 'well-spring': 1, 'else': 1, 'iniquired': 1, 'silly': 1, 'tiresome': 1, 'stray': 2, 'mournful': 3, 'prophetic': 1, 'unintelligible': 2, 'lightsome': 1, 'definite': 1, 'vivacious': 1, 'positive': 1, 'passive': 1, 'clouded': 1, 'disembodied': 1, 'unexpressed': 1, 'brooding': 1, 'breathless': 2, 'awe-stricken': 2, 'wonted': 2, 'intimatley': 1, 'brutal': 1, 'iruseciet': 1, 'long-restrained': 1, 'Happy': 2, 'irritated': 1, 'responsible': 1, 'authorized': 1, 'malevolent': 1, 'tolerable': 1, 'magnetic': 2, 'preferable': 1, 'enfeebled': 1, 'temporary': 1, '\\': 4, 'sorrow-stricken': 1, 'accountable': 1, 'mossy': 4, 'instant': 1, 'iNrscarlet': 1, 'shattered': 1, 'withered': 3, 'conscience-stricken': 1, 'yellow': 4, 'Wretched': 1, 'unfaithful': 1, 'powerless': 2, 'boundless': 1, 'renowned': 2, 'judicial': 1, 'wTld': 1, 'thiTihscrutable': 1, 'unhealed': 1, 'feiogle': 1, 'stealthy': 1, 'unforgotten': 1, 'flickering': 1, 'exhilarating': 2, 'ill-fated': 1, 'devotional': 1, 'sorrow-blackened': 1, 'unredeemed': 1, 'unchristianized': 1, 'afrmade': 1, 'mysel': 1, 'lawless': 1, 'irrevocable': 1, 'heathen': 1, 'deatlf-like': 1, 'Somber': 1, 'bright-appareled': 1, 'choleric': 1, 'improbable': 2, 'sharp': 2, 'grassy-margined': 1, 'nymph-child': 1, 'manvCan': 1, 'splendid': 1, 'tolerant': 1, 'foregone': 1, 'hieroglyphic': 1, 'skilled': 1, 'awe': 1, 'tantalizing': 1, 'indistinct': 2, 'impressive': 2, 'honey-sweet': 1, 'dearest': 1, 'baby-like': 1, 'flower-girdled': 1, 'unreasonable': 1, 'angry': 1, 'cankered': 1, 'pointed': 1, 'seemly': 1, 'hateful': 1, 'midocean': 1, 'withering': 1, 'fading': 3, 'dangerous': 1, 'fateful': 1, 'unwelcome': 1, 'embarrassed': 1, 'overburdened': 1, 'eligible': 1, 'fourth': 1, 'questionable': 2, 'Spanish': 5, 'precise': 1, 'unperformed': 1, 'fortunate': 3, 'self-enlisted': 1, 'obtrusive': 1, 'Sad': 1, 'well-known': 1, 'irrefragable': 1, 'unweariable': 1, 'uncouth': 1, 'considerable': 3, 'clinging': 1, 'pain-wrinkled': 1, 'cast-off': 1, 'adequate': 1, 'patriarchal': 2, 'excellent': 1, 'inferior': 1, 'total': 1, 'intentional': 1, 'blasphemous': 1, 'hoary-headed': 1, 'aught': 1, 'fragrant': 1, 'devout': 1, 'ashy': 1, 'attentive': 1, 'beloved': 1, 'pithy': 1, 'storied': 1, 'heaven-breathing': 1, 'unanswerable': 1, 'transitory': 2, 'swollen': 1, 'arch-fiend': 1, 'buckramed': 1, 'improper': 1, 'drunken': 1, 'dissolute': 1, 'grand': 2, 'forborne': 1, 'reputed': 1, 'unworthy': 1, 'satisfactory': 1, 'round': 2, 'velveted': 1, 'proud': 3, 'starched': 2, 'daytime': 1, 'imperative': 1, 'unfinished': 1, 'UluTal': 1, 'gratuitous': 1, 'unprovoked': 1, 'infectious': 1, 'tapestried': 1, 'inky': 1, 'deliberate': 1, 'perverted': 1, 'speechless': 1, 'confident': 1, 'requisite': 2, 'half-envious': 1, 'flitting': 1, 'deserving': 1, 'vigorous': 1, 'unsolved': 1, 'ravenous': 1, 'winged': 1, 'written': 2, 'bedazzled': 1, 'immeasurable': 1, 'NEW': 1, 'corresponding': 1, 'cordial': 2, 'unseen': 1, 'intensest': 1, 'many-hued': 1, 'eventful': 1, 'restless': 3, 'piercing': 2, 'birdlike': 1, 'varied': 1, 'play-day': 1, 'ugly-eyed': 1, 'v/ith': 1, 'Sabbath-day': 1, 'allowable': 1, 'joyous': 1, 'grown': 1, 'festal': 1, 'magnificient': 1, 'theatrical': 1, 'annual': 1, 'effective': 1, 'mirthful': 2, 'colorless': 1, 'legendary': 1, 'political': 3, 'royal': 1, 'consecrated': 1, 'joyless': 1, 'immediate': 1, 'national': 1, 'honest': 1, 'sun-blackened': 1, 'rough-looking': 1, 'incomplete': 1, 'gaping': 1, 'sea-faring': 2, 'deer-skin': 1, 'inflexible': 1, 'broad-brimmed': 1, 'disreputable': 1, 'reputable': 1, 'gallant': 1, 'jolly': 1, 'seafaring': 1, 'unfavorable': 1, 'nautical': 1, 'showy': 1, 'disposed': 1, 'bustling': 1, 'contiguous': 1, 'heroic': 1, 'startling': 1, 'practicable': 1, 'mercenary': 1, 'martial': 1, 'corporate': 1, 'massive': 1, 'honorary': 1, 'Low': 1, 'aspiring': 1, 'long-tried': 1, 'ashamed': 1, 'primitive': 1, 'sovereign': 1, 'longcontinued': 1, 'unconscious': 1, 'lifeless': 1, 'uncommon': 1, 'angelic': 1, 'abstracted': 1, 'uneasy': 1, 'huTworld': 1, 'yeherable': 1, 'known': 1, 'triple': 1, 'Hebrew': 1, 'principal': 1, 'gold-headed': 1, 'church-member': 1, 'awestricken': 1, 'infirm': 1, 'weird': 1, 'mdistinguishable': 1, 'vocal': 1, 'desolate': 3, 'commanding': 1, 'ill-defined': 1, 'diffuse': 1, 'progressive': 1, 'smitten': 1, 'indefatigable': 1, 'humming-bird': 1, 'inclined': 1, 'erratic': 1, 'swarthy-cheeked': 1, 'undulating': 1, 'exaggerated': 1, 'black-a-visaged': 1, 'hump-shouldered': 1, 'itable': 1, 'subject': 1, 'well-acquainted': 1, 'hnal': 1, 'snake-like': 1, 'compassionate': 1, 'worn-out': 1, 'forthcoming': 1, 'trie': 1, 'cunning': 1, 'scorching': 1, 'admirable': 1, 'eloquent': 1, 'SCARLET': 1, 'gross': 1, 'half-hushed': 1, 'glorious': 1, 'untimely': 1, 'special': 2, 'Jewish': 1, 'symphonious': 1, 'additional': 1, 'irrepresible': 1, 'deathlike': 1, 'blended': 1, 'well-remembered': 1, 'weather-darkened': 1, 'perplexed': 1, 'nether': 1, 'inactive': 1, 'undisclosed': 1, 'tearful': 1, 'fathomless': 1, 'inVmost': 1, 'blank': 1, 'ministerial': 1, 'Pearls': 1, 'everlasting': 1, 'futile': 1, 'foregoing': 2, 'conjectural': 1, 'new-born': 1, 'stubborn': 1, 'nugatory': 1, 'undesirable': 1, 'verbal': 1, 'contemporary': 1, 'systematic': 1, 'sin-stained': 1, 'wilting': 1, 'dividual': 1, 'marriageable': 1, 'dependent': 1, 'material': 1, 'shapeless': 1, 'long-forsaken': 1, 'decaying': 1, 'changed': 1, 'shadow-like': 1, 'unyielded': 1, 'selfish': 1, 'unsought': 1, 'lavish': 1, 'unvalued': 1, 'sober-hued': 1, 'mindful': 1, 'lifelong': 1, 'ripe': 1, 'sunken': 2}
The children of Sisyphus /@1964
{'novel': 1, 'wild': 8, 'human': 17, 'hasty': 2, 'measureless': 1, 'reasonable': 1, 'absurd': 4, 'virgin': 1, 'delicate': 4, 'much': 36, 'irrational': 1, 'other': 105, 'dirty': 24, 'empty': 7, 'grey': 7, 'unknown': 3, 'open': 20, 'long': 64, 'boisterous': 1, 'everlasting': 2, 'unthinkable': 2, 'black': 119, 'strange': 36, 'lousy': 2, 'bizarre': 1, 'dismal': 1, 'dreary': 4, 'restrained': 5, 'wooden': 11, 'wretched': 12, 'worthless': 3, 'wide': 16, 'colourful': 1, 'prolonged': 1, 'narrow': 13, 'hoary': 3, 'uneventful': 1, 'Syrian': 1, 'impure': 1, 'gold': 2, 'rid': 8, 'hard': 20, 'rectangular': 1, 'hardened': 1, 'big': 21, 'scalding': 1, 'full': 26, 'silver': 1, 'majestic': 3, 'nice': 10, 'massive': 2, 'Black': 5, 'chi-chi': 1, 'Good-luck': 1, 'vile': 2, 'naked': 19, 'dank': 1, 'gleaming': 9, 'difficult': 9, 'little': 196, 'cod-fish': 7, 'brown': 51, 'musty': 4, 'gay': 1, 'unseen': 6, 'ghastly': 6, 'large': 43, 'ragged': 8, 'satanic': 1, 'many': 19, 'gracious': 2, 'white': 102, 'stale': 6, 'red': 37, 'murky': 2, 'young': 15, 'fierce': 4, 'silent': 8, 'different': 16, 'present': 7, 'relentless': 1, 'clammy': 2, 'mute': 2, 'tenacious': 1, 'middle': 6, 'revivalist': 2, 'meagre': 8, 'cruel': 6, 'pregant': 1, 'indifferent': 1, 'low': 6, 'Monday-morning': 1, 'vacant': 2, 'Last': 1, 'swollen': 2, 'freakish': 3, 'tough': 8, 'guttural': 2, 'nearby': 8, 'meaningless': 2, 'mad': 9, 'hungry': 13, 'desperate': 4, 'sure': 34, 'front': 12, 'despairing': 1, 'unusual': 1, 'terrifying': 2, 'dark': 29, 'stiff': 5, 'Deep': 2, 'third': 11, 'tall': 27, 'sharp-starch-pressed': 1, 'first': 40, 'rebellious': 1, 'weary': 1, 'thin': 5, 'great': 39, 'curried': 1, 'favourite': 7, 'pregnant': 9, 'own': 39, 'nasty': 6, 'Several': 9, 'second': 8, 'niggering': 1, 'nude': 1, 'half-drunk': 1, 'welcome': 1, 'several': 13, 'stark': 3, 'ugly': 5, 'whitish': 2, 'seedy': 1, 'slow': 7, 'tiny': 2, 'juicy': 2, 'grimy': 1, 'weak': 6, 'dual': 1, 'left': 19, 'enclosed': 2, 'miserable': 3, 'old': 75, 'opposite': 8, 'bright': 9, 'thick': 10, 'thorny': 2, 'atrophic': 1, 'healthy': 1, 'love-bush': 1, 'slutty': 1, 'hollow': 1, 'aloof': 2, 'tangled': 1, 'Tall': 2, 'half-naked': 1, 'luxurious': 1, 'derelict': 1, 'fe': 31, 'afraid': 24, 'Rastafarian': 2, 'aristocratic': 1, 'unwilling': 1, 'remote': 5, 'common': 4, 'same': 40, 'inflated': 1, 'dreadful': 3, 'few': 57, 'scorching': 1, 'dry': 14, 'well-built': 2, 'vacuous': 2, 'unkempt': 1, 'Ragged': 2, 'inhuman': 1, 'rotten': 5, 'awesome': 2, 'bad': 15, 'unaffected': 2, 'top-heavy': 1, 'small': 17, 'raw': 9, 'deep': 21, 'privileged': 2, 'American': 5, 'sallow': 1, 'yellowbrown': 1, 'luscious': 2, 'Old': 3, 'cynical': 2, 'mournful': 2, 'angry': 9, 'entire': 1, 'rich': 11, 'such': 32, 'unmindful': 1, 'new': 19, 'Long-mouth': 1, 'stupid': 13, 'Big': 5, 'right': 20, 'crafty': 3, 'sensitive': 1, 'familiar': 8, 'fantastic': 3, 'good': 72, 'graceful': 2, 'macabre': 1, 'undulated': 1, 'crab-like': 2, 'public': 5, 'infernal': 1, 'bewildered': 3, 'perpetual': 2, 'towering': 1, 'impatient': 1, 'heavy': 18, 'frozen': 1, 'simple': 5, 'sanitary': 1, 'capable': 2, 'whole': 20, 'last': 46, 'pained': 4, 'Special': 4, 'past': 12, 'bitchy': 2, 'funny': 5, 'domestic': 3, 'dry-weather': 1, 'else': 1, 'strong': 13, 'twisted': 2, 'usual': 7, 'round': 12, 'diabolic': 1, 'annoyed': 1, 'later': 4, 'odd': 6, 'broad': 9, 'clear': 11, 'proud': 11, 'glazed': 2, 'ashamed': 4, 'extra': 3, 'Same': 2, 'narcotic': 1, 'upright': 3, 'moonlight': 1, 'terrible': 9, 'alien': 4, 'vague': 5, 'incredible': 4, 'unto': 3, 'ready': 24, 'childish': 2, 'proof': 1, 'sneaky': 2, 'unashamed': 1, 'call': 3, 'oly': 4, 'only': 32, 'purple': 9, 'intense': 4, 'Want': 1, 'net': 1, 'double': 1, 'palpitating': 1, 'fading': 2, 'numbing': 1, 'moist': 4, 'delicious': 2, 'prostrate': 1, 'lazy': 1, 'hesitant': 1, 'soft': 13, 'complete': 20, 'mulatto': 3, 'faithful': 4, 'well-flattened': 1, 'possible': 6, 'wise': 7, 'irritated': 3, 'mystic': 4, 'unnecessary': 1, 'pungent': 3, 'slight': 5, 'childlike': 1, 'famous': 2, 'unable': 5, 'glad': 3, 'Good': 7, 'indicative': 1, 'Man-man': 1, 'stinking': 3, 'true': 33, 'bent': 3, 'sorry': 8, 'striking': 1, 'mek': 4, 'hung': 1, 'smelly': 1, 'private': 1, "ol'": 2, 'daring': 4, 'patchy': 1, 'creaky': 1, 'withered': 3, 'greyish-brown': 1, 'poor': 22, 'precise': 1, 'easy': 6, 'spare': 2, 'indispensable': 1, 'lean': 1, 'merciless': 3, 'suspicious': 3, 'sidelong': 3, 'beady': 2, 'crooked': 2, 'quiet': 8, 'steady': 1, 'live': 14, 'good-humoured': 1, 'sudden': 13, 'First': 1, 'sweet': 23, 'able': 8, 'solid': 2, 'scandalous': 3, 'normal': 3, 'outside': 20, 'dat': 6, 'blank': 4, 'tickling': 1, 'highpitched': 1, 'sneering': 2, 'sarcastic': 1, 'rigid': 2, 'mock': 4, 'uncomfortable': 1, 'dried-up': 1, 'donkey-cart': 1, 'social': 1, 'bloody': 2, 'sailor-man': 1, 'respectable': 3, 'serious': 8, 'fresh': 5, 'piss-pot': 1, 'Careful': 2, 'straight': 3, 'mysterious': 6, 'faint': 4, 'dangerous': 1, 'indent': 1, 'blue': 18, 'vast': 10, 'warm': 5, 'dignified': 2, 'deceptive': 2, 'shanty': 2, 'green': 24, 'wet': 3, 'ankle-deep': 1, 'uncombed': 1, 'woolly': 2, 'calm': 13, 'wiry': 4, 'seductive': 1, 'golden': 3, 'selfish': 2, 'mean': 3, 'penitent': 2, 'despaired': 1, 'god-brother': 8, 'mighty': 9, 'Certain': 1, 'oblong': 1, 'Hush': 1, 'laudable': 1, 'loose': 7, 'painful': 5, 'bombo-hole': 1, 'cold': 4, 'quick': 13, 'contorted': 2, 'sooty': 1, 'useless': 2, 'wrong': 10, 'short': 18, 'condescending': 1, 'stocky': 2, 'half': 4, 'wicked': 8, 'sharp': 4, 'commanding': 4, 'infected': 1, 'submissive': 1, 'dis': 4, 'evil': 11, 'east': 4, 'brownish': 1, 'neat': 2, 'queer-looking': 1, 'clean': 8, 'holy': 31, 'interested': 3, 'national': 2, 'Ethiopian': 2, 'shaped': 3, 'floral': 3, 'next': 15, 'swift': 2, 'extreme': 2, 'burnt': 1, 'knowledgeable': 3, 'naive': 2, 'child-like': 1, 'handsome': 1, 'respectful': 2, 'paternal': 1, 'severe': 3, 'final': 9, 'sad': 5, 'filthy': 2, 'horrible': 1, 'subtle': 5, 'superior': 2, 'smart': 1, 'crude': 1, 'Economic': 1, 'cry-cry': 1, 'cunning': 3, 'important': 3, 'parched': 2, 'single': 2, 'crisp': 1, 'latter': 2, 'anxious': 4, 'olive': 7, 'high': 7, 'trance-like': 1, 'secret': 3, 'detrimental': 1, 'meditative': 1, 'distant': 5, 'ancient': 1, 'deep-deep': 1, 'seeming': 2, 'independent': 2, 'Pure': 1, 'half-lunatic': 1, 'concrete': 6, 'seasoned': 1, 'real': 14, 'street-lamp': 1, 'main': 8, 'mild': 5, 'innumerable': 4, 'Strange': 1, 'unmolested': 1, 'resentful': 2, 'Conscious': 1, 'conscious': 9, 'acclaimed': 1, 'Happy': 1, 'tight': 4, 'perplexing': 1, 'very': 6, 'fond': 2, 'Clay-red': 1, 'determined': 1, 'unsatisfying': 1, 'taut': 1, 'damp': 4, 'other-worldly': 1, 'worth': 2, 'latent': 1, 'heart-stilling': 1, 'eager': 2, 'soul-stirring': 1, 'astral': 1, 'fervent': 2, 'dreamy': 3, 'bestial': 1, 'absolute': 1, 'ethereal': 3, 'gloomy': 1, 'leathery-like': 1, 'proper': 5, 'dead': 17, 'awful': 1, 'barren': 5, 'gritty': 1, 'joyful': 3, 'withering': 1, 'responsible': 5, 'salt-fish': 3, 'yellow': 3, 'Hungry': 1, 'unsuccessful': 1, 'metaphysical': 1, 'uneasy': 2, 'gaudy': 1, 'Wonderful': 2, 'light': 6, 'theological': 1, 'serene': 4, 'sacred': 7, 'pretty': 5, 'hoarse': 1, 'pure': 9, 'gentle': 5, 'happy': 18, 'folding': 2, 'quaint': 1, 'kind': 3, 'sick': 5, 'unutterable': 1, 'Complete': 1, 'initial': 2, 'esoteric': 2, 'compelling': 2, 'vital': 2, 'petrified': 5, 'tragic': 3, 'bitter-sweet': 1, 'lardish': 1, 'amorphous': 1, 'innocent': 1, 'plaintive': 2, 'eternal': 6, 'numb': 1, 'Funny': 1, 'snaky': 1, 'wistful': 3, 'slippery': 1, 'unmoving': 3, 'beautiful': 7, 'sturdy': 1, 'wire-meshed': 1, 'smooth': 6, 'safe': 6, 'modern': 1, 'possessive': 1, 'whitewashed': 1, 'cosy': 1, 'unbelievable': 3, 'Civilized': 1, 'Fresh': 1, 'ripe': 1, 'yabah': 1, 'longlasting': 1, 'civilized': 15, 'hard-doe': 1, 'saliva-dripping': 1, 'make-believe': 1, 'meaningful': 2, 'tortured': 1, 'cooking': 1, 'instant': 4, 'curious': 4, 'staple': 1, 'flush': 1, 'former': 2, 'careful': 4, 'hissing': 1, 'slushy': 1, 'comforting': 1, 'boiling': 1, 'helpful': 1, 'startled': 3, 'bitter': 3, 'hot': 12, 'slimy': 5, 'persistent': 2, 'considerable': 2, 'frustrated': 1, 'haughty': 1, 'defensive': 1, 'paved': 1, 'unconscious': 1, 'genuine': 1, 'fat': 5, 'droopy': 1, 'assumed': 1, 'condensed': 1, 'natural': 2, 'embarrassed': 3, 'emotional': 1, 'impending': 1, 'motor-bike': 3, 'glowing': 2, 'overfond': 1, 'prying': 1, 'gaping': 7, 'numerous': 3, 'brooding': 1, 'sheer': 6, 'mean-looking': 1, 'tough-looking': 1, 'sinewy': 1, 'sunken': 1, 'perforated': 1, 'treacherous': 5, 'deep-felt': 1, 'censorious': 1, 'cheap': 1, 'flat': 7, 'truculent': 1, 'fleeting': 1, 'malicious': 2, 'domineering': 3, 'sufficient': 1, 'stubby': 1, 'rimless': 1, 'Sure': 1, 'pointed': 3, 'high-pitched': 1, 'enough': 6, 'busted': 1, 'confused': 2, 'vindictive': 1, 'further': 1, 'Anglican': 6, 'sour-faced': 1, 'loud': 18, 'Different': 1, 'stumpy': 1, 'frightening': 5, 'peculiar': 1, 'wash-tub': 1, 'high-handed': 1, 'strained': 1, 'heated': 2, 'Christian': 2, 'Many': 3, 'positive': 1, 'intent': 1, 'semi-transparent': 1, 'chamber-pot': 3, 'convincing': 1, 'dumbwitted': 1, 'uncertain': 3, 'careless': 3, 'inquisitive': 1, 'sinister': 1, 'bad-woman': 1, 'soap-sudded': 1, 'hidin': 2, 'late': 7, 'rolly-polly': 1, 'grand': 3, 'remarkable': 3, 'displaced': 1, 'astonished': 2, 'hysterical': 1, 'forthcoming': 1, 'disgraceful': 1, 'abnormal': 1, 'oblivious': 1, 'howling': 1, 'bull-necked': 1, 'inferior': 2, 'fellow': 4, 'blatant': 1, 'dan': 4, 'certain': 11, 'successful': 1, 'peppery': 2, 'divine': 7, 'elementary': 2, 'far-off': 1, 'half-smiling': 1, 'willin': 2, 'transfixed': 1, 'far-far': 5, 'promised': 1, 'greying': 1, 'reflective': 1, 'spellbound': 1, 'awkward': 1, 'unperturbed': 1, 'Oly': 2, 'free': 8, 'decrepit': 1, 'washed-up': 3, 'married': 3, 'hushed': 1, 'fidgety': 2, 'ridiculous': 3, 'venomous': 1, 'overdue': 1, 'cloying': 1, 'huge': 3, 'rusty': 2, 'Jamaican': 4, 'sickening': 2, 'sweaty': 2, 'office-bound': 1, 'pitiful': 1, 'curly': 2, 'secondary': 2, 'illiterate': 1, 'due': 3, 'English': 2, 'funny-funny': 1, 'dutty-ground': 1, 'big-big': 3, "T'ief": 1, 'grave': 2, 'wid': 2, 'plenty': 1, 'obeah-man': 2, 'sweet-sweet': 1, 'ominous': 1, 'menacing': 1, 'rass-hole': 1, 'restless': 1, 'decent': 2, 'frantic': 2, 'uncared': 1, 'unwanted': 1, 'temporary': 1, 'abhorred': 1, 'ambitious': 2, 'Sensitive': 1, 'hypocritical': 2, 'frequent': 2, 'depressing': 1, 'two-storey': 2, 'loving': 2, 'crimson': 1, 'negative': 2, 'pleased': 1, 'particular': 1, 'big-jawed': 1, 'bare': 6, 'separate': 2, 'clumsy': 1, 'bald': 5, 'female': 2, 'exasperated': 1, 'half-rotten': 1, 'John-crow': 1, 'booming': 1, 'unfavourable': 2, 'bony': 2, 'brown-skinned': 2, 'middleclass': 2, 'reckless': 1, 'unemployed': 2, 'religious': 1, 'impossible': 3, 'wonderful': 8, 'beloved': 2, 'under-privileged': 1, 'liable': 1, 'egg-shell': 1, 'bottom': 1, 'civil': 9, 'night-time': 1, 'expectant': 1, 'ice-water': 1, 'jeesy-tail': 1, 'clerical': 1, 'eye-water': 1, 'nose-noght': 1, 'instinctive': 1, 'nervous': 4, 'civil-servant': 1, 'corporal': 2, 'opportunistic': 1, 'helmeted': 2, 'rear': 1, 'pigeon-chested': 1, 'upper': 3, 'ambivalent': 2, 'tear-gas': 4, 'mesh-wired': 1, 'seething': 2, 'puritanical': 1, 'bold': 1, 'junior': 1, 'well-groomed': 2, 'honourable': 6, 'contented': 3, 'back': 13, 'vicious': 2, 'sympathetic': 1, 'almighty': 3, 'armoured': 1, 'jubilant': 1, 'delightful': 1, 'wry': 1, 'exalted': 1, 'Elegant': 1, 'deliberate': 2, 'unruly': 1, 'helpless': 3, 'elderly': 1, 'God-damn': 1, 'True': 1, 'destructive': 1, 'confident': 6, 'collective': 1, 'unintelligible': 1, 'hostile': 2, 'venerable': 1, 'scared': 1, 'rude': 1, 'close': 3, 'spirited': 1, 'insolent': 1, 'frightened': 5, 'baffled': 1, 'fourth': 1, 'uninvited': 1, 'top': 8, 'spiritual': 2, 'soft-like': 1, 'special': 5, 'aware': 7, 'undernourished': 1, 'vain': 1, 'conical': 1, 'brute': 1, 'foul': 1, 'hateful': 1, 'unclean': 1, 'Italian': 2, 'regal': 1, 'froth-spattered': 1, 'bandy-legged': 1, 'visible': 1, 'unexploded': 1, 'clangorous': 1, 'Invincible': 1, 'fictitious': 1, 'eleventh': 1, 'takeneth': 1, 'devout': 3, 'down-trodden': 1, 'illegal': 2, 'endless': 4, 'frail': 1, 'futile': 1, 'pathetic': 1, 'multi-racial': 2, 'unperverted': 1, 'unrestrained': 1, 'colonial': 1, 'brown-skin': 1, 'witty': 1, 'flustered': 1, 'polite': 1, 'capitalist': 1, 'hush': 3, 'tumultuous': 1, 'surprised': 2, 'Mental': 1, 'guilty': 1, 'molten': 2, 'excruciating': 3, 'Unbelievable': 2, 'blithing': 1, '27th': 1, 'enthusiastic': 1, 'future': 2, 'overjoyed': 1, 'formal': 1, 'rheumy': 1, 'cautious': 1, 'tilted': 1, 'residential': 1, 'affected': 1, 'encouraged': 1, 'Heavy': 1, 'fifth': 1, 'key': 1, 'duppy': 1, 'early': 2, 'foolish': 1, 'tedious': 1, 'sore': 1, 'comfortable': 2, 'austere': 5, 'navy-blue': 2, 'irascible': 1, 'slender': 1, 'olive-skinned': 1, 'mixed': 1, 'humble': 3, 'Sound': 3, 'irritable': 1, 'Clean': 1, 'pink': 3, 'Such': 1, 'secure': 1, 'southern': 1, 'unstraightened': 1, 'lovely': 1, 'Nice': 1, 'powdered': 1, 'velvet-green': 1, 'blue-green': 1, 'spikey': 1, 'pear-shaped': 1, 'cool': 2, 'almond': 1, 'western': 2, 'slim': 2, 'brisk': 1, 'wavy': 2, 'pale': 1, 'intricate': 1, 'three-piece': 1, 'oblong-shaped': 1, 'humiliating': 1, 'square': 1, 'spotless': 1, 'expensive': 1, 'rare': 1, 'dining-table': 1, 'dining-room': 2, 'Persian': 1, 'whining': 1, 'stereophonic': 1, 'well-carved': 1, 'outfe': 1, 'lower-class': 1, 'gran': 1, 'inexplicable': 1, 'unifying': 1, 'convinced': 2, 'light-skinned': 3, 'unbearable': 2, 'drab': 1, 'exotic': 2, 'prepared': 2, 'conspicuous': 1, 'better-looking': 1, 'brainy': 1, 'stray': 3, 'red-light': 2, 'available': 1, 'literal': 1, 'sailor-men': 2, 'sordid': 1, 'fair': 2, 'mangy': 1, 'permanent': 1, 'eerie': 2, 'disinfectant': 1, 'scheming': 1, 'wholesale': 1, 'expensive-looking': 1, 'Chinese': 1, 'perfect': 3, 'pretty-boy': 1, 'tired': 3, 'Indian': 1, 'amusing': 1, 'disappointed': 3, 'amazing': 1, 'hairy': 1, 'powerful': 6, 'sailor-boy': 1, 'pouting': 1, 'half-closed': 1, 'drunk': 3, 'Star-spangled': 1, 'dance-hall': 1, 'five-dollar': 1, 'semi-nude': 1, 'known': 1, 'drunken': 1, 'fishy': 1, 'rass-clate': 1, 'major': 1, 'blind': 1, 'shrill': 4, 'active': 1, 'off': 3, 'bearded': 1, 'unending': 2, 'arid': 5, 'hemmed-in': 1, 'alive': 1, 'dusty': 2, 'squalid': 1, 'greedy': 2, 'rickety': 1, 'greenish-grey': 1, 'irregularly': 1, 'rough': 2, 'upside-down': 1, 'greenish': 1, 'blasphemous': 1, 'zinc-and-barrel': 1, 'irregular': 1, 'profound': 1, 'hooped': 1, 'solitary': 2, 'electric': 2, 'backless': 1, 'consecrated': 2, 'molasses-like': 1, 'syrupy': 1, 'earthen': 1, 'nice-nice': 1, 'total': 1, 'starched': 1, 'bumpy': 1, 'fast': 2, 'nauseating': 1, 'Dreamy': 1, 'shaven': 1, 'necessary': 2, 'fixed': 1, 'firm': 1, 'desolate': 1, 'forlorn': 1, 'Sweet': 1, 'Free': 1, 'Barren': 1, 'far': 2, 'Little': 2, 'Endless': 1, 'Bright': 1, 'Remote': 1, 'merciful': 1, 'blissful': 2, 'outstretched': 1, 'rhapsodic': 1, 'mystical': 1, 'gurgling': 1, 'motionless': 1, 'Useless': 1, 'untormented': 1, 'plain': 3, 'furtive': 1, 'glum': 1, 'uncanny': 1, 'balmy': 2, 'ordinary': 4, 'troubled': 1, 'illegitimate': 1, 'de': 4, 'animal': 1, 'Long': 1, 'Twenty-ninth': 1, 'downward': 1, 'unaware': 1, 'adjoining': 1, 'twenty-sixth': 1, 'pubic': 1, 'lemony': 1, 'lilting': 1, 'balming': 1, 'stifled': 1, 'calico-bound': 1, 'forty-second': 1, 'ninth': 2, 'immense': 1, 'bush': 2, 'Consecrated': 1, 'Twenty-fourth': 1, 'dense': 1, 'twice': 1, 'solemn': 4, 'Twenty-third': 1, 'sour-sweet': 2, 'glorious': 1, 'insane': 1, 'deaf': 1, 'unabashed': 1, 'armour-bearer': 2, 'baptismal': 1, 'closed': 1, 'indistinguishable': 1, 'white-clad': 1, 'unselfish': 1, 'pious': 1, 'tortuous': 1, 'unmolesting': 1, 'stately': 1, 'sparkling': 2, 'radiant': 1, 'idle': 2, 'palatial': 1, 'aimless': 1, 'indefinable': 1, 'utter': 1, 'Refreshing': 1, 'angelic': 1, 'conch-shell': 1, 'melancholy': 1, 'shy': 1, 'thatched': 1, 'frenzied': 1, 'Wondering': 1, 'ecstatic': 1, 'sterile': 1, 'overwhelming': 1, 'sound': 1, 'senior': 1, 'petrifying': 1, 'devoid': 1, 'stiffled': 1, 'foamy': 1, 'dizzy': 1, 'god-like': 2, 'thrilling': 1, 'enmeshed': 1, 'overwhelmed': 2, 'soothing': 1, 'shocking': 1, 'anti-clockwise': 1, 'ticklish': 1, 'infinite': 1, 'striped': 1, 'grating': 1, 'harsh': 1, 'unfurnished': 1, 'unlikely': 1, 'incapable': 1, 'sensible': 1, 'willing': 1, 'recent': 1, 'tongue-licked': 1, 'rugged': 1, 'unwashed': 1, 'dog-eared': 1, 'Primary': 1, 'spontaneous': 1, 'spiteful': 1, 'Tense': 1, 'trampled': 1, 'crumpled': 1, 'Mass': 1, 'Twenty-seventh': 1, 'letter-writing': 1, 'loud-loud': 1, 'cock-sure': 1, 'unconvinced': 1, 'forced': 1, 'sleepy': 1, 'brilliant': 1, 'armed': 1, 'afar': 1, 'grappling': 1, 'bland': 1, 'parted': 2, 'scaly': 2, 'lucky': 1, 'bluish': 1, 'dark-brown': 2, 'elated': 2, 'Next': 1, 'sole': 1, 'Deep-deep': 1, 'eastern': 1, 'orange-flamed': 1, 'rustic': 1, 'fertile': 1, 'redseamed': 1, 'friendly': 1, 'mellow': 1, 'fluent': 1, 'steel-grey': 1, 'undulating': 1, 'silty': 1, 'bloated': 1, 'standard': 1, 'gross': 1, 'premature': 1, 'open-mouthed': 1, 'unfortunate': 1, 'half-dead': 1, 'splendid': 1, 'tinkling': 1, 'left-about': 1, 'smart-like': 1, 'motor-car': 1, 'weekly': 1, 'moon-drenched': 1, 'nimble': 1, 'low-low': 1, 'merry': 1, 'fearful': 1, 'heinous': 1, 'Large': 1, 'aghast': 1, 'male': 1, 'Outside': 1, 'monstrous': 1, 'subordinate': 1, 'urgent': 1, 'crazy': 2, 'Holy': 1, 'dark-blue': 2, 'unthinking': 1, 'supreme': 1, 'unreal': 1, 'hidden': 1, 'comic': 2, 'unquenched': 1, 'inner': 1, 'Past': 1, 'chromed': 1, 'bottomless': 1, 'farcical': 1, 'soulconsuming': 1, 'laughable': 1}</code></pre>
</div>
</div>
<div class="cell">
<div class="sourceCode cell-code" id="cb10"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb10-1"><a href="#cb10-1" aria-hidden="true" tabindex="-1"></a>year_to_word_count <span class="op">=</span> {}</span>
<span id="cb10-2"><a href="#cb10-2" aria-hidden="true" tabindex="-1"></a>year_to_word_count[<span class="dv">20</span>] <span class="op">=</span> {}</span>
<span id="cb10-3"><a href="#cb10-3" aria-hidden="true" tabindex="-1"></a>year_to_word_count[<span class="dv">21</span>] <span class="op">=</span> {}</span>
<span id="cb10-4"><a href="#cb10-4" aria-hidden="true" tabindex="-1"></a><span class="cf">for</span> b, wc <span class="kw">in</span> book_to_word_count.items():</span>
<span id="cb10-5"><a href="#cb10-5" aria-hidden="true" tabindex="-1"></a> year_of_book <span class="op">=</span> b.split(<span class="st">'@'</span>)[<span class="dv">1</span>]</span>
<span id="cb10-6"><a href="#cb10-6" aria-hidden="true" tabindex="-1"></a> year_of_book_prefix <span class="op">=</span> <span class="bu">int</span>(year_of_book[:<span class="dv">2</span>])</span>
<span id="cb10-7"><a href="#cb10-7" aria-hidden="true" tabindex="-1"></a> <span class="cf">if</span> year_of_book_prefix <span class="op">==</span> <span class="dv">19</span>:</span>
<span id="cb10-8"><a href="#cb10-8" aria-hidden="true" tabindex="-1"></a> year_to_word_count[<span class="dv">20</span>] <span class="op">=</span> {k: wc.get(k, <span class="dv">0</span>) <span class="op">+</span> year_to_word_count[<span class="dv">20</span>].get(k, <span class="dv">0</span>) <span class="cf">for</span> k <span class="kw">in</span> <span class="bu">set</span>(wc) <span class="op">|</span> <span class="bu">set</span>(year_to_word_count[<span class="dv">20</span>])}</span>
<span id="cb10-9"><a href="#cb10-9" aria-hidden="true" tabindex="-1"></a> <span class="cf">elif</span> year_of_book_prefix <span class="op">==</span> <span class="dv">20</span>:</span>
<span id="cb10-10"><a href="#cb10-10" aria-hidden="true" tabindex="-1"></a> year_to_word_count[<span class="dv">21</span>] <span class="op">=</span> {k: wc.get(k, <span class="dv">0</span>) <span class="op">+</span> year_to_word_count[<span class="dv">21</span>].get(k, <span class="dv">0</span>) <span class="cf">for</span> k <span class="kw">in</span> <span class="bu">set</span>(wc) <span class="op">|</span> <span class="bu">set</span>(year_to_word_count[<span class="dv">21</span>])}</span>
<span id="cb10-11"><a href="#cb10-11" aria-hidden="true" tabindex="-1"></a> <span class="cf">else</span>:</span>
<span id="cb10-12"><a href="#cb10-12" aria-hidden="true" tabindex="-1"></a> <span class="bu">print</span>(<span class="st">"Invalid book year:"</span> <span class="op">+</span> year_of_book)</span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
</div>
<div class="cell" data-outputid="b719b614-2e19-4dba-f022-4562567a41a3">
<div class="sourceCode cell-code" id="cb11"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb11-1"><a href="#cb11-1" aria-hidden="true" tabindex="-1"></a><span class="co"># printing</span></span>
<span id="cb11-2"><a href="#cb11-2" aria-hidden="true" tabindex="-1"></a><span class="cf">for</span> year, wc <span class="kw">in</span> year_to_word_count.items():</span>
<span id="cb11-3"><a href="#cb11-3" aria-hidden="true" tabindex="-1"></a> <span class="bu">print</span>(year)</span>
<span id="cb11-4"><a href="#cb11-4" aria-hidden="true" tabindex="-1"></a> <span class="bu">print</span>(wc)</span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
<div class="cell-output cell-output-stdout">
<pre><code>20
{'diminutive': 3, 'Ba-roooml': 1, 'finger-writing': 1, 'marine': 6, 'two-story': 1, 'Wicked': 2, 'adopted': 2, 'unavoidable': 1, 'bouncy': 1, 'over-and-over-again': 1, 'rapid': 21, 'Barren': 1, 'lifeless': 7, 'Fifth': 1, 'gaseous': 1, 'undisclosed': 2, 'hidin': 2, 'lamp-lit': 1, 'French-fried': 1, 'flattered': 2, 'black-gritted': 1, 'diflerent': 1, 'year-old': 1, 'khaki-clad': 1, 'strident': 1, 'strung-up': 1, 'Adamite': 1, 'monkish': 4, 'Hell-lo': 1, 'gold-filled': 1, 'Fast': 4, 'forcible': 3, 'five-piece': 1, 'slow': 108, 'ting-aIing-a-ling': 1, 'finished': 1, 'frightening': 19, 'simultaneous': 2, 'unbending': 1, 'whiter-skinned': 1, 'Gleaming': 2, 'tere': 2, 'bodacious': 1, 'animal': 2, 'tribal': 2, 'unequal': 5, 'loose': 82, 'moonlit': 4, 'big-foot': 1, 'uncharitable': 1, 'pleased': 55, 'overbearing': 1, 'phoenixlike': 1, 'hospitable': 1, 'fullblooded': 1, 'devil-will-get-you': 1, 'translucent': 1, 'buff-colored': 1, 'candlelike': 1, 'clinching': 1, '50th': 3, 'highpitched': 1, 'tasteful': 1, 'Mauritanian': 1, 'feder1co': 1, 'reddened': 1, 'appreciative': 3, 'myriad': 7, 'hardscrabble': 1, 'grayuniformed': 1, 'contriving': 2, 'ethnocentric': 1, 'palatable': 1, 'intriguing': 1, 'exotic': 10, 'open-balconied': 1, 'dainty-like': 1, 'overarching': 1, 'Sharp': 6, 'bird-faced': 1, 'exacting': 1, 'Long-range': 1, 'labor-union': 1, 'twenty-fifth': 1, 'chitterling': 1, 'attendant': 3, 'Wooden': 1, "c'est": 2, 'Remote': 1, 'illustrator-pimps': 1, 'fiery-haired': 1, 'swamp-looking': 1, 'scurrying-to-work': 1, 'high-brown': 1, 'outward': 22, 'hard-featured': 1, 'incontrovertible': 3, 'riotous': 4, 'cloudy': 6, 'regime-ruling': 1, 'twenty-four-inch': 1, 'scornful': 2, 'law-sustaining': 1, 'surf-fishing': 1, 'off-thewall': 1, 'baggy-pants': 1, 'open-necked': 2, 'softlike': 1, 'footsore': 1, 'gu-guy': 1, 'recipient': 3, 'Communist': 15, 'manmade': 1, 'intimidating': 1, 'square-cornered': 1, 'chinless': 3, 'coveted': 1, 'squalid': 4, 'in-turning': 1, 'bleached': 2, 'everchanging': 1, 'Judaeo-Christian': 1, 'lime-filled': 1, 'Tschichold': 3, 'v/ith': 1, 'unattended': 3, 'mean': 11, 'eye-water': 1, 'stable': 8, 'graceful': 25, 'reality-stamped': 1, 'reticent': 2, 'multicoloured': 1, 'shitless': 2, 'hard-doe': 1, 'tickling': 1, 'grubby': 1, 'vulnerable': 15, 'unpainted': 1, 'enclosed': 3, 'missing': 1, 'numbing': 4, '31st': 1, 'unperverted': 1, 'Git-yer-dumb-assoutta-that-garden': 1, 'sainted': 3, 'Pure': 4, 'pop': 2, 'in-the-moment': 1, 'mind-mirrored': 1, 'melon-hard': 1, 'Unimaginable': 1, 'fluorescent': 1, 'single-family': 1, 'sandy': 15, 'spoonful': 2, 'slaveholding': 2, 'dumb': 45, 'book-people': 1, 'noisy': 12, 'man-tailored': 1, 'sweet': 193, 'plumblue': 1, 'long-forgotten': 1, 'ping-pong': 1, 'leatherupholstered': 1, 'rusting': 5, 'dark-skinned': 10, 'well-honed': 1, 'three-sided': 1, 'lightheaded': 1, 'headless': 1, 'arthritic': 1, 'connected': 1, 'well-to-do': 3, 'eee-normous': 1, 'giddy': 5, 'absurd': 15, 'imminent': 6, 'ill-treated': 1, 'earthly': 32, 'rousing': 1, 'self-impelled': 1, 'cobwebbed': 1, 'high-bulk': 1, 'cracked-corn': 1, 'high-gloss': 1, 'commendable': 3, 'ponderous': 8, 'disobedient': 3, 'well-off': 6, 'suckling': 1, 'covered': 7, 'imperious': 8, 'reachable': 1, 'subterranean': 3, 'numinous': 1, 'umbilical': 1, 'unceasing': 1, 'unstinting': 1, 'positive': 30, 'tract-toting': 1, 'worth': 53, 'powder-blue': 1, 'sin-stained': 1, 'ex-President': 1, 'bilingual': 1, 'domineering': 3, 'American': 261, 'sneaky': 7, 'all-antilabor': 1, 'high': 306, 'celluloid': 1, 'luscious': 6, 'one-day': 1, 'half-drunk': 1, 'Far-out': 1, 'gaudy': 7, 'mobile': 9, 'spun-gold': 1, 'busted-up': 2, 'Interesting': 4, 'law-enforcing': 1, 'offshore': 1, 'rusty-sounding': 1, 'gray-toned': 1, 'weather-cracked': 1, 'east': 18, 'carpeted': 6, 'unaffected': 3, 'disgraceful': 4, 'familysized': 1, 'suspicious': 32, 'unto': 21, 'Hers': 3, 'military-strike': 1, 'tenminute': 1, 'sloe-eyed': 1, 'determined': 2, 'affirmative': 1, 'death-like': 1, 'midocean': 1, 'butter-coloured': 1, 'unimagined': 1, 'following': 8, 'by-gone': 1, 'state-supported': 1, 'contiguous': 1, 'rusty': 12, 'near-scalding': 1, 'onerous': 1, 'Exact': 1, 'rattletrap': 1, '47th': 5, 'starry': 1, 'ordinary-size': 1, 'rakish': 3, 'human': 202, 'later': 19, 'secret': 84, 'stricken': 5, 'great-grandmother': 3, 'broken': 60, 'distressed': 6, 'square-headed': 1, 'political': 143, 'damaging': 3, 'ammo-equipped': 1, 'white-coated': 2, 'quick-footed': 1, 'free-born': 3, 'gold': 8, 'organizational': 5, 'Spinning': 2, 'skinny-looking': 1, 'Noooooo-body': 1, 'greenish-grey': 1, 'unhurried': 3, 'left-handed': 3, 'layered': 3, 'fickle-minded': 1, 'brazen-clasped': 1, 'Macedonian': 1, 'Overnight': 1, 'cool': 91, 'cosy': 1, 'vaginal': 1, 'similar': 27, 'esoteric': 5, 'smooth-pebbled': 1, 'piss': 1, 'stately': 11, 'unspoiled': 2, 'sprawled': 1, 'summer-time': 1, 'consciousness-raising': 1, 'Thursday-evening': 1, 'two-cup': 1, 'Unclaimed': 1, 'round': 48, 'five-minute': 2, 'yellow-and-white': 1, 'early-morning': 3, 'LUXURIOUS': 1, 'freedom-marching': 1, 'turned-out': 2, 'four-thirty': 2, 'Infinite': 1, 'undisciplined': 3, 'Peculiar': 1, 'seed-flung': 1, 'Yankee-style': 1, 'versed': 1, 'half-naked': 5, 'marshy': 1, 'muggy': 1, 'fiery': 12, 'tarnished': 2, 'narrow': 77, 'rebel': 1, 'foreign': 27, 'complex': 12, 'thirtyish': 1, 'favorite': 40, 'nonblack': 1, 'doctrinal': 1, 'trampled': 1, 'Positive': 1, 'womanish': 1, 'furnished': 2, 'Frozen': 3, 'heretic': 1, 'mitigating': 1, 'streamlet': 1, 'temporary': 15, 'dependent': 12, 'full-time': 4, 'regal': 3, 'indefinite': 2, 'hard-to-reach': 1, 'First': 17, 'nigger': 9, 'diplomatic': 5, 'untried': 2, 'smocked': 1, 'green-eyed': 2, 'frizzed': 1, 'cavelike': 1, 'Gaelic': 1, 'riicoe': 1, 'coterminous': 1, 'corporative': 7, 'unpremeditated': 2, 'brink-of-war': 1, 'Unhappy': 5, 'humdrum': 1, 'untold': 2, 'narrative': 5, 'dawnish': 1, 'bird-watching': 1, 'te-te-tel-telling': 1, 'unmixed': 1, 'rental': 2, 'back-breaking': 1, 'vour': 1, 'White-blue': 1, 'braided': 4, 'automible': 1, 'superficial': 4, 'upperclass': 1, 'slave-holding': 1, 'soulless': 2, 'obby': 1, 'prudent': 2, 'off': 6, 'orthodox': 1, 'finger-pointing': 1, 'Vital': 3, 'deflorated': 1, 'gritty': 2, 'roly-poly': 1, 'printlike': 1, 'underpaid': 3, 'administrative': 6, 'exaggerated': 5, 'instant': 16, 'hand-me-down': 1, 'chronic': 4, 'pretty-ass': 1, 'overloaded': 1, 'fortressed': 1, 'temperate': 4, 'thatched-roofed': 1, 'pale': 89, 'faulty': 1, 'nuptial': 1, 'sublime': 2, 'conspicuous': 2, 'uniformed': 9, 'Ariel-like': 1, 'angry-like': 1, 'breezy': 1, 'gimlet': 1, 'confused': 26, 'next-door': 4, 'all-day': 1, 'traumatic': 1, 'judo': 2, 'self-critical': 1, 'freckled': 1, 'closed': 34, 'esteemed': 1, 'austere': 6, 'Sinewy': 1, 'corpselike': 1, 'Asian': 6, 'mescal': 6, 'Yellow': 8, 'puzzling': 2, 'top-brass': 1, 'six-for-five': 1, 'unconvertible': 1, 'bothersome': 1, 'out-of-town': 3, 'loquacious': 1, 'uttermost': 2, 'distraught': 2, 'Inner-city': 1, 'varied': 4, 'blue-veined': 2, 'distasteful': 1, 'socio-political': 5, 'apathetic': 1, 'tortuous': 5, 'tornto-pieces-looking': 1, 'half-buried': 1, 'seasick': 2, 'verdant': 2, 'flawed': 1, 'cynical': 7, 'spiritualistic': 1, 'regime-sponsored': 1, 'datable': 1, 'outstretched': 8, 'By-theby': 1, 'yellow-orange': 2, 'sun-warmed': 1, 'bated': 1, 'non-negotiable': 1, 'snake-pit': 1, 'trip-hammer': 1, 'quizzical': 2, 'State-protected': 1, 'messianic': 1, 'horned': 1, 'whiskey-sheened': 1, 'fancied': 1, 'heelless': 2, 'vinegared': 1, 'waterless': 1, 'half-opened': 1, 'garlic': 2, 'inflexible': 2, 'faceless': 10, 'trite': 1, 'starboard': 1, 'small-scale': 1, 'feminine': 6, 'seven-layer': 1, 'Slight': 1, 'Rigorous': 1, 'Peking': 3, 'stray': 11, 'port': 3, 'shot-up': 1, 'vomit': 1, 'damn': 66, 'congested': 1, 'shiny': 44, 'folk-ized': 1, 'unbalanced': 3, 'feathered': 3, 'obsessional': 1, 'chocolate-scented': 1, '13-round': 1, 'Stupid': 3, 'trivial': 2, 'meshuggah': 2, 'soundless': 4, 'yellowing': 5, 'green-bound': 1, 'bang-up': 1, 'scrupulous': 1, 'blackcoated': 1, 'three-fourths': 1, 'four-to-midnight': 1, 'insuperable': 1, 'moist': 14, 'diffused': 1, 'career-woman': 1, 'weird-tasting': 1, 'nationwide': 2, 'bright-green': 1, 'hard-jawed': 1, 'Skinny': 1, 'jump-rope': 1, 'careless': 10, 'thick-nippled': 1, 'assistant': 2, 'call': 7, 'Moon-drenched': 1, 'gullible': 3, 'foggy': 4, 'thick-stemmed': 1, 'blood-red': 2, 'degraded': 3, 'moth-eaten': 3, 'darkblue': 1, 'aforementioned': 1, 'Holy': 4, 'preceding': 1, 'search-warrant': 1, 'striking': 36, 'central': 16, 'Newborn': 1, 'unimportant': 1, 'stiff-necked': 2, 'unwelcome': 4, 'un': 1, 'fitted': 1, 'fanciful': 5, 'defensive': 8, 'old-fogy': 1, 'th-ththen': 1, 'bland': 3, 'worried-lookin': 1, 'dimmed': 1, 'atrophied': 1, 'homemade': 3, 'industrial-military-based': 1, 'Warm': 1, 'Further': 1, 'snotty-nosed': 1, 'fifteen-cent': 2, 'three-oh': 1, 'shell-rimmed': 1, 'sturdy': 8, 'new-found': 1, 'grevious': 1, 'sawdusted': 1, 'polished-brass': 1, 'bedded-down': 1, 'lawless': 4, 'narrowminded': 1, 'half-dead': 1, 'MEXICAN': 1, 'pinched-nosed': 1, 'replete': 2, 'idealistic': 3, 'Socialist': 1, 'hate-filled': 1, 'succulent': 1, 'elderly': 27, 'avez-vous': 1, 'expressionless': 3, 'offended': 1, 'church-member': 1, 'Rising': 1, 'civilised': 4, 'whooosh': 1, 'outbound': 1, 'unmoved': 1, 'weatherboard': 2, 'unweariable': 1, 'dwelled': 1, 'ungentle': 1, 'maternal': 2, 'paired': 1, 'one-minute': 1, 'industrial': 45, 'contrary': 6, 'deceased': 7, 'clawed': 1, 'Rambling': 1, 'careful': 69, 'symmetrical': 2, 'pink-flowered': 1, 'humid': 3, 'stunned': 7, 'deadly': 32, 'man-sized': 1, 'uneconomic': 1, 'gold-rimmed': 2, 'highclass': 1, 'bell-shaped': 1, 'svelte': 1, 'defeatist': 1, 'refined': 2, 'qualitative': 5, 'big-shouldered': 1, 'Hitlerite': 1, 'priceless': 2, 'up-to-date': 1, 'star-spangled': 4, 'fifteen-mile-long': 1, 'romance-spouting': 1, 'laden': 4, 'time-worn': 1, 'snarled': 1, 'communal': 6, 'niggerlovin': 1, 'word-by-word': 1, 'erotic': 5, 'tomb-like': 1, 'unpretentious': 1, 'diffident': 1, 'autumnal': 3, 'uncharted': 3, 'anti-Communist': 1, 'Effective': 1, 'unfocused': 1, 'frying': 7, 'Languid': 1, 'nondancing': 1, 'sufficient': 11, 'congressional': 1, 'rass-clate': 1, 'see-sick': 1, 'baaad': 1, 'Pup-pup': 11, 'finite': 1, 'ancient': 61, 'earnest': 10, 'home-made': 2, 'never-to-be-forgotten': 1, 'quasi-social': 1, 'walk-in': 1, 'Oly': 2, 'vast': 56, 'small-time': 2, 'sailor-man': 1, 'Woweee': 1, 'Embarrassed': 2, 'disinfectant': 1, 'Caucasian': 3, 'unerring': 1, 'delightful': 12, 'Pleated': 1, 'uncheered': 1, 'pebbly': 1, 'rich-brown': 1, 'storm-whipped': 1, 'self-pitying': 2, 'God-ordained': 1, 'ill-housed': 1, 'leatherlike': 1, 'pursed-lip': 1, 'unclinching': 1, 'Bright': 7, 'stern-faced': 1, 'uncharacteristic': 1, 'face-down': 1, 'amber-colored': 1, 'Unanimous': 1, 'stockinged': 5, 'bulky': 6, 'contingent': 1, 'exterVnal': 1, 'supper-table': 1, 'overdressed': 1, 'danged': 1, 'crusted': 1, 'sectioned-eight': 1, 'Gentle': 1, 'wainscoted': 1, 'seminary': 3, 'dour': 7, 'antiquated': 2, 'materialistic': 1, 'Ugly': 1, 'unschooled': 1, 'orderly': 6, 'cross': 1, 'cupboard-sized': 1, 'gangling': 1, 'funning': 2, 'lushhead': 2, 'three-thirty': 4, 'narrow-eyed': 1, 'Restless': 2, 'man-to-man': 1, 'heavy-caliber': 1, 'blank': 26, 'south': 4, 'thirtyseven': 3, 'electric-train': 1, 'hash': 1, 'unfleshed': 1, 'singular': 17, 'Chink': 5, 'disgruntled': 2, 'assiduous': 1, 'prison-keeper': 1, 'Dazzling': 1, 'mek': 4, 'hello-how-are-you': 1, 'half-quizzical': 1, 'twentieth-century': 1, 'saintly': 9, 'frustrated': 7, 'tubular': 1, 'sickly': 6, 'suit-coat': 1, 'naturalized': 5, 'dispossessed': 1, 'uptight': 1, 'moderate': 3, 'two-family': 1, 'uncouth': 3, 'fist-fighting': 1, 'preconceived': 1, 'ingrown': 1, 'lion-hearted': 1, 'sawed-off': 3, 'anthropological': 1, 'capacious': 2, 'broad-bladed': 1, 'one-on-one': 2, 'glistening': 10, 'swollen': 17, 'minute': 4, 'rattled': 1, 'tongue-licked': 1, 'camp-like': 1, 'Simple': 5, 'unprotected': 1, 'awash': 3, 'cobbled': 1, 'Honest': 5, '5ne': 1, 'imperceptible': 3, 'as-it-ought-to-be': 1, 'simplistic': 1, 'huggykissy': 1, 'incensed': 1, 'constructive': 4, 'ladame': 1, 'Sheer': 1, 'needy': 3, 'Few': 8, 'Neat': 5, 'lurid': 6, 'authoritative': 2, 'Virginian': 1, 'rough-and-ready': 1, 'veritable': 1, '43rd': 4, 'straw-woven': 1, 'cosmetic': 1, 'Southern': 7, 'uncalled': 1, 'Hegelian': 1, 'monumental': 2, 'white-fur': 1, 'mindful': 1, 'grass-turned': 1, 'non-black': 1, 'Skillful': 1, 'grappling': 2, 'Cuban': 5, 'summer-long': 1, 'mid-term': 1, 'forty-inch': 1, 'Biblical': 1, 'Six-bit': 1, '20th-century': 1, 'tongue-tied': 1, 'screwy': 1, 'realistic': 19, 'wash-tub': 1, 'three-strand': 1, 'Indian': 112, 'bark-colored': 2, 'bleeding': 6, 'tiresome': 2, 'belligerent': 1, 'humane': 4, 'torn': 6, 'mortified': 1, 'slow-burning': 1, 'death-wish': 1, 'twenty-dollar': 2, 'maiden': 4, 'chamber-pot': 3, 'topsy-turvy': 1, 'illustrious': 3, 'mediumsized': 1, 'bighearted': 1, 'drippy': 1, 'unabjp': 1, 'snare': 1, 'mock': 20, 'redhot': 1, 'dead': 421, 'perennial': 2, 'ranch-housed': 1, 'Squeezed-faced': 1, 'sane': 4, 'little-bird': 1, 'rice-white': 1, 'unsentimental': 1, 'sudden': 107, 'key': 24, 'candlelit': 1, 'damning': 1, 'Islamic': 1, 'intolerable': 8, 'sad-dog': 1, 'growly': 3, 'irrefutable': 1, 'full-blown': 5, 'unutwterable': 1, 'chummy': 1, 'deadening': 1, 'Untold': 1, 'freewheeling': 1, 'supposed-to-be': 1, 'sanguine': 2, 'meek': 1, 'choked-off': 1, 'long-forsaken': 1, 'steel-wool': 1, 'unquenched': 1, 'embarrassing': 12, 'dibble': 1, 'impolite': 2, 'balcony-like': 1, 'biological': 2, 'Ordinary': 2, 'puffy-eyed': 1, 'three-star': 1, 'Strained': 1, 'shoulder-twisting': 1, 'catchy': 1, 'unpaginated': 1, 'unexploded': 1, 'vicious': 17, 'unheeded': 3, 'sweltering': 1, 'black-curled': 1, 'known': 6, 'forty-dollar': 1, 'spinning': 2, 'incontestable': 1, 'lilywhite': 1, 'saint-like': 3, 'fifteen-minute': 1, 'bad-luck': 1, 'sore': 42, 'electrical': 5, 'curious': 67, 'metered': 1, 'ankle-deep': 2, 'toothpasty': 1, 'attributable': 2, 'instantaneous': 3, 'startling': 8, 'Healthy': 1, 'thendifferent': 1, 'fighting': 1, 'cheque/postal': 1, 'lightsome': 1, 'half-speak': 1, 'Nubian': 3, 'aware': 75, 'Blue': 3, 'incoming': 1, 'obese': 1, 'suborbital': 1, 'petite': 7, 'abnormal': 3, 'immigrant': 2, 'unrespectful': 1, 'cabalistic': 1, 'Worthy': 1, 'Ineffectual': 1, 'second-floor': 3, 'monopolistic': 1, 'upcountry': 1, 'visionary': 2, 'grievous': 9, 'bicentennial': 1, 'walked-out': 1, 'altruistic': 1, 'adjacent': 5, 'stupid-looking': 1, 'slipped': 1, 'racial': 41, 'odd-shaped': 1, 'tasty': 3, 'Thick': 3, 'profligate': 1, 'tight-lipped': 1, 'Mu-sugar': 1, 'grandfatherly': 2, 'playful': 8, 'terrible-smelling': 1, 'average': 13, 'sirenless': 1, 'unseasonable': 1, 'limp': 19, 'anti-imperialist': 1, 'living-room': 4, 'softly': 1, 'malevolent': 3, 'shoeshine': 3, 'scorched': 1, 'prickless': 1, 'privileged': 11, 'incurious': 1, 'worried': 48, 'indefatigable': 1, 'Singing': 2, 'seventeenyear-old': 1, 'surprising': 16, 'materialist': 2, 'goodlooking': 1, 'sparrow-shouldered': 1, 'Same': 24, 'cream-stucco': 1, 'uncomfortable-looking': 1, 'rose-colored': 2, 'flatish': 1, 'vocal': 4, 'compelling': 3, 'nationalistic': 5, 'zootsuited': 1, 'familial': 2, 'long-restrained': 1, 'liis': 1, 'Maya': 1, 'wooden': 73, 'packed': 3, 'wide-set': 4, 'enemy-state': 1, 'half-German': 1, 'May-flower': 2, 'sibilant': 1, 'wont': 3, 'baited': 1, 'boubous': 1, 'even-set': 1, 'appalling': 1, 'yellow-gray': 1, 'high-watered': 1, 'Kirlian': 1, 'hi3': 1, 'explicit': 1, 'brash': 2, 'preserved': 2, 'canny': 2, 'shameful': 5, 'nonstop': 3, 'unsolved': 5, 'unadulterated': 3, 'thiTihscrutable': 1, 'gradual': 6, 'inside': 17, 'valueless': 1, 'infinitesimal': 1, 'bluesy': 3, 'unoffending': 1, 'adjective': 1, 'unworldly': 1, 'undigested': 1, 'cryptic': 2, 'Psychological': 1, 'ragged': 34, 'coming-home-now': 1, 'no-socks': 1, 'decaying': 2, 'ignominious': 10, 'comical': 6, 'masculine': 2, 'worn-out': 4, 'unguarded': 2, 'hoarse': 5, 'frank': 3, 'ancestral': 1, 'wide': 149, 'vivacious': 3, 'stubby-nosed': 1, 'infantile': 3, 'selfish': 11, 'dogshit-covered': 1, 'chosen': 1, 'tethered': 1, 'stocky': 12, 'fading': 17, 'Rastafarian': 2, 'baleful': 3, 'head-shielding': 1, 'certified': 3, 'supercilious': 1, 'taciturn': 2, 'onme': 14, 'bony': 11, 'Weepy': 1, 'low-life': 1, 'droopy': 3, 'whoso': 1, 'doomed': 8, 'uneasy': 33, 'loose-fitting': 1, 'nailed-to-the-heights': 1, 'antagonistic': 3, 'glass-bottom': 1, 'never-failing': 2, 'thunderous': 1, 'herculean': 1, 'breaking': 2, 'Similar': 2, 'liberalist': 1, 'AS': 1, 'Yes-M.D.-I-really-like-your-sister-but-you-see-Iam-married': 1, 'triangular': 2, 'unfaded': 1, 'peaceful': 20, 'civil-servant': 1, 'anti-fascist': 1, 'Lottie-looking': 1, 'uninvited': 4, 'terrestial': 1, 'whitefrosted': 1, 'unfaithful': 3, 'two-year': 1, 'logical': 10, 'constant': 37, 'deafening': 4, 'Hälſäliläliliğliftliftliftliftli': 1, 'nonl': 2, 'gaping': 14, 'Able': 1, 'crummy': 2, 'shaky': 7, 'oversized': 5, 'pitiful': 34, 'thigh-spreading': 1, 'pained': 14, 'wild-eyed': 1, 'important': 129, 'auburn': 1, 'care-ish': 1, 'unreal': 8, 'conscious': 47, 'hide-and-seek': 1, 'flabby': 6, 'hermetic': 1, 'sharp-eyed': 1, 'Good': 188, 'Fugitive': 3, 'two-finger': 1, 'Temporary': 1, 'unsuitable': 2, 'neutral': 8, 'fifty-dollar': 1, 'utopian': 7, 'scanty': 2, 'ever-recurring': 1, 'legitimatized': 1, 'fearful': 24, 'uncongenial': 2, 'Stealthy': 1, 'big-business': 1, 'postal': 3, 'patinaed': 1, 'dreamed-of-one-morning': 1, 'big-eyed': 1, 'military-corporate': 1, 'well-liked': 1, 'provincial': 6, 'almighty': 6, 'half-staggered': 1, 'leaky': 3, 'Forty-fourth': 1, 'Ninety-fifth': 1, 'civilian': 2, 'flaming': 7, 'exceptional': 4, 'dignified': 17, 'reverential': 3, 'circumspect': 1, 'three-letter': 1, 'optic': 1, 'broken-bottled': 1, 'flower-girdled': 1, 'Mahseff': 1, 'halfmusical': 1, 'slobber-jowled': 1, 'sacramental': 2, 'DuSable-Phillips': 1, 'ugly-eyed': 1, 'woeful': 1, 'radiant': 11, 'honey-colored': 2, 'velveted': 1, 'old-looking': 1, 'experimental': 2, 'blackeyed': 1, 'slender': 13, 'agile': 3, 'civilizing': 1, 'indelicate': 1, 'n1ggah': 1, 'sepia-toned': 1, 'erudite': 1, 'blue-skinned': 1, 'shadowy': 10, 'unauthorized': 1, 'sad-looking': 1, 'sordid': 3, 'abundant': 6, 'homeless': 4, 'automatical': 1, 'same-sized': 1, 'consuming': 1, 'statistical': 1, 'necessary': 67, 'seven-mile': 1, 'bar-room': 1, 'Sanskrit': 2, 'unlisted': 1, 'content': 11, 'unripe': 1, 'friend-to-everybody': 1, 'undivided': 5, 'unnecessary': 5, 'kinesthetic': 1, 'covetous': 2, 'unethical': 3, 'inestimable': 1, 'soft-wet': 1, 'benevolent': 9, 'senior': 18, 'final': 63, 'unconscious': 11, 'Shaggy': 1, 'inadmissible': 1, 'bruised': 2, 'hot-aired': 1, 'sliced': 1, 'fashionable': 10, 'tightest-fitting': 1, 'far-off': 7, 'gibbous': 1, 'beloved': 19, 'patriarchal': 2, 'unwarranted': 1, 'unlaced': 1, 'humming-bird': 1, 'Burnt': 1, 'tutted': 1, 'sultry': 4, 'ideological': 10, 'white-handled': 1, 'Sufi': 1, 'dappled': 1, 'effete': 4, 'three-minute': 1, 'taut': 17, 'magnifique': 1, 'innocent': 59, 'goofy-sounding': 1, 'brownskinned': 1, 'unhappy': 40, 'swollen-jointed': 1, 'South': 2, 'amenable': 2, 'appetizing': 1, 'broad': 95, 'scent': 2, 'WONT': 2, 'sideways': 1, 'Kewpie-doll': 2, 'Jagged': 1, 'evident': 7, 'pink': 42, 'unmentioned': 1, 'receptive': 3, 'twenty-six-year-old': 1, 'duffel': 5, 'Long': 14, 'soul-wrenching': 1, 'self-possessed': 2, 'squeakyvoiced': 1, 'bulletproof': 3, 'logistic': 2, 'majestic': 19, 'fierce': 28, 'low-brow': 1, 'polar': 1, 'marginal': 4, 'immense': 10, 'exasperated': 2, 'fascist-type': 1, 'overanalytical': 1, 'hoary': 4, 'debonair': 2, 'sparkling': 9, 'merciful': 18, 'whitish': 7, 'crucial': 2, 'decayed': 1, 'brilliant': 28, 'black-and-blue': 1, 'dank': 4, 'unobserved': 1, 'Soviet': 1, 'twin': 7, 'seven-year': 1, 'gray-headed': 2, 'not-so-big': 1, 'irregularly': 1, 'interior': 7, 'incessant': 3, 'godlike': 3, 'quotidian': 1, 'undergraduate': 1, 'untransmitted': 1, 'good-for-nothing': 1, 'theatrical': 5, 'quiet': 262, 'prevailing': 1, 'Mass': 8, 'toneless': 1, 'primitive': 3, 'silver': 10, 'anti-Catholic': 2, 'plugged-in': 1, 'squashed': 2, 'front': 265, 'uglyyyyy': 1, 'broad-browed': 1, 'ten-dollar': 5, 'big-little': 1, 'isolationist': 1, 'tattle-tale': 1, 'polished': 12, 'red-tiled': 3, 'harmonious': 5, 'circular': 3, 'silvery': 7, 'meditative': 3, 'chain-smoking': 1, 'threadbare': 1, 'racist': 7, 'thirty-nine-year-old': 1, 'floral': 7, 'prominent': 13, 'creepy': 2, 'oblong-shaped': 1, 'pasty': 3, 'disagreeable': 1, 'Civilized': 1, 'satisfactory': 5, 'tempting': 2, 'Twenty-third': 1, 'mi!itary': 1, 'ritualistic': 1, 'shrunken': 2, 'gross': 8, 'owned': 2, 'calculated': 2, 'sabbatical': 1, 'self-operating': 1, 'street-corner': 4, 'taxpaying': 1, 'ant': 1, 'legal': 18, 'cooperative': 2, 'offal': 1, 'listless': 1, 'one-ounce': 2, 'Number-one': 1, 'female': 43, 'top-heavy': 3, 'tearful': 3, 'ective': 1, 'gut-churning': 1, 'awkward': 19, 'painted': 2, 'tantamount': 1, 'leathery-like': 1, 'poetic': 7, 'ageing': 1, 'hungry-looking': 1, 'bomb-shooting': 1, 'DRY': 1, 'rhythmical': 1, 'unvalued': 2, 'skeletal': 2, 'darn': 1, '0te': 1, 'annoying': 4, 'self-contained': 1, 'oflicial': 3, 'rebozo-wrapped': 1, 'old-line': 1, 'over-the-counter': 1, 'Gardener-Bed': 1, 'egg-shaped': 1, 'MYSELF': 3, 'recorded': 4, 'half-crazy': 1, 'orange-brown': 1, 'brittle': 6, 'populous': 1, 'two-pronged': 1, 'Built-in': 1, 'wooden-jagged': 1, 'servile': 2, 'death-pang': 1, 'anonymous': 5, 'African-descended': 1, 'sonl': 1, 'icecold': 1, 'grandmotherly': 1, 'walnut-paneled': 1, 'Indian-faced': 1, 'ethnic': 11, 'buggering': 1, 'banal': 3, 'self-centered': 3, 'squat': 8, 'soft-to-the-touch': 1, 'parental': 1, 'slow-hard-to-get-it-out': 1, 'spic': 4, 'indomitable': 1, 'paranoiac-schizophrenic': 1, 'methodical': 2, 'overrated': 1, 'five-day': 1, 'dared': 1, 'trophy-lugging': 1, '28l': 1, 'serene': 8, 'refrigerator-sized': 1, 'perplexed': 5, 'freakish': 8, 'smug': 7, 'odious': 5, 'teenaged': 1, 'oni': 1, 'covert': 3, 'super-technological': 2, 'fretful': 3, 'two-piece': 1, 'Absurd': 1, 'business-as-usual': 2, 'happy': 192, 'half-ballet': 1, 'opposite': 55, 'lightning-fast': 1, 'level': 1, 'lonesome': 20, 'high-walled': 1, 'multicolored': 10, 'bantam-cock': 2, 'old-guard': 1, 'innate': 5, 'hardened': 1, 'physical': 43, 'thinnish': 1, 'unredeemed': 1, 'tallish': 2, 'grimy': 2, 'irretrievable': 1, 'scuffed': 3, 'live': 32, 'invulnerable': 2, 'God-realizing': 1, 'orange-red': 4, 'varnished': 2, 'one-storeyed': 1, 'sluggish': 5, 'money-making': 1, 'impersonal': 2, 'tranquil': 1, 'four-sided': 1, 'five-gallon': 2, 'static': 21, 'two-line': 1, 'interchangeable': 3, 'green-striped': 1, 'mossy': 5, 'histrionic': 1, 'conch-shell': 1, 'unrevealed': 1, 'plenty': 11, 'miscellaneous': 1, 'flesh-and-blood': 3, 'spoon-fed': 1, 'discombobulating': 1, 'Canopic': 2, 'softhearted': 1, 'peak': 1, 'fishing-pole': 1, 'Viy': 1, 'restricted': 1, 'mustached': 4, 'sical': 1, 'foolproof': 1, 'carcass-shaped': 1, 'profitable': 3, 'unnatural': 11, 'distilled': 1, 'ascendant': 1, 'pulque': 3, 'screwed-up': 1, 'Deveze': 1, 'ashy-grey': 1, 'dualistic': 2, 'unattractive': 3, 'lucky': 57, 'Invincible': 1, 'inhumane': 1, 'intensest': 1, 'deceptive': 4, 'flowered': 5, 'love-thy-neighbor-as-thyself': 1, 'queer-looking': 1, 'experiential': 2, 'unbound': 1, 'simple-minded': 3, 'cast-off': 1, 'two-lane': 1, 'semi-transparent': 1, 'Slowing-down': 1, 'stage-coach': 1, 'fey-living': 1, 'illegitimate': 2, 'Agreeable': 1, 'hoary-headed': 1, 'long-time': 1, 'geometrical': 3, 'meridian': 1, 'pregant': 1, 'unvaried': 1, 'gratifying': 1, 'unremovable': 1, 'intense': 29, 'four-poster': 1, 'Fantastic': 5, 'cheeky': 2, 'indulgent': 2, 'sinful': 30, 'fabled': 3, 'drop-dead': 4, 'scandalous': 5, 'rhetorical': 2, 'blonde': 31, 'faraway': 15, 'phantasmagoric': 2, 'paneled': 2, 'Hot': 21, 'fat-assed': 1, 'tic': 2, 'wellplaced': 1, 'ambiguous': 1, 'Vacant': 1, 'shanty': 3, 'cognizant': 1, 'Caged': 1, 'funereal': 2, 'dimensional': 1, 'circumstantial': 3, 'life-sized': 1, 'sculptured': 1, 'protracted': 3, 'ostrich': 1, 'classy': 1, 'devoted': 10, 'ill-defined': 1, 'third-filled': 1, 'five-year': 1, 'crazed': 1, 'fiight': 1, 'crescendoing': 1, 'compatible': 3, 'unrepented': 1, 'Morning-coloured': 1, 'hapless': 3, 'loud-mouthed': 1, 'reborn': 2, 'oppressive': 16, 'Prize-winning': 1, 'profound': 20, 'pouting': 2, 'virtual': 1, 'personal': 86, 'gangly': 1, 'Special': 7, 'clamorous': 1, 'void': 1, 'contented': 10, 'touching': 10, 'pussy': 2, 'weird': 23, 'lusterless': 1, 'empty': 168, 'shordy': 1, 'intact': 8, 'neo-colonial': 3, 'finger-snapping': 1, 'prissy': 1, 'pregnant': 80, 'quick': 140, 'hundredth': 1, 'black-stemmed': 1, 'full-bellied': 1, 'uncared': 1, 'swelled-up': 1, 'phony': 5, 'iron-clad': 1, 'invincible': 1, 'burnt': 10, 'Gullian': 12, 'ribbed': 2, 'two-inch': 1, 'insecure': 5, 'Two-two-two': 1, 'participatory': 1, 'soft-speaking': 1, 'Huge': 3, 'fraught': 1, 'welkin': 1, 'unswaddled': 1, 'shipshape': 1, 'strange': 212, 'Passive': 1, 'welldressed': 1, 'Dismal': 2, 'day-by-day': 1, 'expert': 1, 'witless': 3, 'unformed': 2, 'awe-stricken': 2, 'left': 85, 'iNrscarlet': 1, 'colorful': 6, 'mettlesome': 1, 'inanimate': 2, 'Ethiopian': 4, 'he.had': 1, 'mesh-wired': 1, 'well-tailored': 1, 'damnable': 1, 'indelible': 3, 'lank': 1, 'pallid': 2, 'sour-faced': 1, 'diligent': 2, 'stored-up': 1, 'khaki': 1, 'conflicting': 1, 'unfulfilled': 1, 'hollow-sounding': 1, 'ivory-colored': 1, 'unsmiling': 1, 'serious-faced': 1, 'miniature': 5, 'pretty-boy': 2, 'self-inflicted': 2, 'International': 2, 'self-educated': 1, 'looking-glass': 4, 'long-suffering': 2, 'Chrisdy': 1, 'tear-streaked': 1, 'real': 522, 'foursquare': 1, 'joyful': 6, 'polluted': 5, 'mischievous': 9, 'disparate': 3, 'western': 6, 'petty': 3, 'devout': 7, 'Infamous': 1, 'unprotec-teh': 1, 'charmed': 1, 'constitutional': 9, 'Utopian': 1, 'overreactionary': 1, 'staggering': 6, 'gray-blue': 1, 'discouraging': 1, 'passionate': 11, 'rightful': 5, 'meringue': 1, 'well-mannered': 2, 'subject': 33, 'express': 2, 'immortal': 20, 'pointed-toe': 1, 'willin': 2, 'faultless': 2, 'two-and-a-half-hour': 1, 'trundle-bed': 1, 'doting': 1, 'superlative': 1, 'Nan': 4, 'guileless': 1, 'tractable': 1, 'contrived': 5, 'flaky': 1, 'magnificent': 2, 'difficult': 59, 'tighdy': 2, 'full-faced': 2, 'outside': 121, 'integrated': 1, 'Coloured': 1, 'choked-out-of-breath': 1, 'untruthful': 1, 'self-enlisted': 1, 'fortified': 1, 'transient': 2, 'supernatural': 5, 'intrusive': 3, 'hrandy': 1, 'boyish': 10, 'dewy': 2, 'scarce': 7, 'flimsy': 5, 'open-faced': 1, 'baying': 3, 'chalk-and-crayon': 1, 'know-it-all': 3, 'terminal': 3, 'under-privileged': 1, 'interpretive': 1, 'Christian': 47, 'wound-clock': 1, 'scurrious': 1, 'swaggering': 1, 'meteoric': 2, 'poreless': 1, 'friendly': 59, 'preventive': 1, 'stiff-legged': 1, 'shattered': 2, 'ille': 1, 'unappealing': 1, 'be-v': 1, '105th': 1, 'NEW': 2, 'Factual': 1, 'dim-lit': 1, 'foot-worn': 1, 'bitter-sweet': 1, 'like': 23, 'womanly': 3, 'dejected': 4, 'aghast': 3, 'humbling': 1, 'French': 70, 'crispy': 1, 'watermelon': 1, 'seamless': 1, 'nagging': 6, 'viente': 1, 'groggy': 2, 'unmitigated': 1, 'cold': 326, 'lusty': 1, 'tempestuous': 5, 'Northern': 5, 'double-barreled': 1, 'severe': 27, 'hesitant': 6, 'loony': 1, 'sofdy': 6, 'hyperactive': 1, 'superior': 27, 'callous': 2, 'brutal': 15, 'migrant': 1, 'sleeveless': 2, 'disembodied': 2, 'half-rubber': 1, 'delighted': 14, 'unboarded': 1, 'somniferous': 1, 'iriicoe': 1, 'Day-Glo': 1, 'Senegal': 1, 'ill-at-ease': 1, 'abominable': 3, 'self-appointed': 4, 'golden': 53, 'adhering': 1, 'grayhaired': 2, 'knee-length': 2, 'unlikeliest': 1, 'immutable': 1, 'sixtyfive': 1, 'beautiful': 301, 'weighted': 1, 'cry-cry': 1, 'ludicrous': 3, 'fiftieth': 1, 'nonworking': 2, 'warm': 190, 'select': 2, 'shimmering': 9, 'growing-up': 1, 'hit-and-run': 1, 'literal': 1, 'bitter': 48, 'theeeneral': 1, 'intelligible': 3, 'northbound': 2, 'lunatic': 1, 'thick': 120, 'subversive': 2, 'hunnert': 1, 'benched': 1, 'technological': 2, 'adjoining': 8, 'immobile': 1, 'wizened': 1, 'half-upright': 1, 'jive-left': 1, 'Sa-rah': 2, 'glass-topped': 1, 'premature': 4, 'impassioned': 3, 'uncomfortable': 24, 'large': 251, 'Stolid': 1, 'unyielding': 1, 'heterodox': 1, 'coming-out': 3, 'ready-made': 5, 'intoxicated': 2, 'mulatto': 15, 'white-haired': 6, 'crackling': 2, 'God-fearing': 3, 'undaunted': 1, 'noncutting': 1, 'Unknown': 1, 'untouched': 3, 'slopical': 1, 'thirty-fifth': 1, 'jungle-sharpened': 1, 'open-end': 1, 'pig-oriented': 1, 'half-asleep': 1, 'brusque': 1, 'shared': 5, 'dumb-ass': 1, 'seven-year-old': 2, 'intermediate': 1, 'sub-machine': 2, 'strange-colored': 2, 'inexpressive': 1, 'helmeted': 2, 'winecoloured': 1, 'third': 99, 'constandy': 1, 'gate-mouthed': 1, 'cooking': 11, 'slat-board': 1, 'ole': 1, 'wobbly': 7, 'Springy': 1, 'rigid': 17, 'matronly': 6, 'soon-to-be-setting': 1, 'impatient': 11, 'cartographic': 1, 'dynamiting': 1, 'chartered': 3, 'head': 1, 'sheltered': 3, 'deceitful': 1, 'timbal': 1, 'late-shift': 1, 'dutch': 1, 'automotive': 1, 'half-smiling': 1, 'self-serving': 1, 'seli-acknowledged': 1, 'chivalrous': 1, 'God-awful': 1, 'heartrending': 2, 'a-going': 2, 'famous': 44, 'festive': 1, 'cardinal': 1, 'local': 31, 'barren': 9, 'warm-looking': 1, 'naval': 2, 'hnal': 1, 'expensive': 32, 'proficient': 1, 'tangible': 6, 'satin-robed': 1, 'Deponent': 2, 'play-day': 1, 'contemporary': 5, 'chopped-up': 1, 'indecent': 1, 'punitive': 2, 'twin-engine': 1, 'zippered': 1, 'so-so': 1, 'jaded': 2, 'Human': 5, 'plagiaristic': 1, 'supreme': 1, 'troubling': 4, 'brown-gold': 1, 'forgiving': 6, 'mystified': 1, 'snake-like': 1, 'willful': 6, 'unhurt': 1, 'longdrawn': 1, 'big-boned': 1, 'urinesteeped': 1, 'unseeable': 1, 'brainy': 1, 'soapy': 3, 'fast-fading': 1, 'dangerous': 59, '\\': 4, 'unconquerable': 3, 'gawky': 1, 'Cunning': 1, 'aglow': 1, 'well-oiled': 1, 'flexible': 2, 'gas-fume': 1, 'Latin-American': 3, 'Creative': 1, 'ting-a-ling-aling': 1, 'screwin': 1, 'unabated': 2, 'bejeweled': 1, 'rural': 22, 'high-stepper': 1, 'hygienic': 1, 'well-trained': 3, 'token': 33, 'unquiet': 4, 'two-storied': 1, 'Much': 11, 'wanted': 12, 'noctambulistic': 1, 'victorious': 1, 'docile': 5, 'fulla': 1, 'botded': 1, 'imaginary': 16, 'broidered': 2, 'Capitalist': 1, 'contextual': 1, 'pursuant': 1, 'à': 1, 'stubby': 7, 'metallic': 4, 'dance-hall': 1, 'sponge-bottomed': 1, 'unkempt': 1, 'Bitter': 1, 'red-and-black': 1, 'preworn': 1, 'constitution-making': 1, 'rippled': 3, 'velvet-green': 1, 'bedazzled': 1, 'silly-looking': 1, 'beauteous': 1, 'malignant': 3, 'Large': 6, 'magnanimous': 1, 'short-lived': 2, 'editorial-publishing-literary': 1, 'skin-deep': 1, 'splintered': 4, 'venerable': 14, 'two-car': 1, 'blackwhite': 1, 'out-of-line': 1, 'childlike': 6, 'poignant': 3, 'molten': 3, 'humorous': 3, 'finely-dressed': 1, 'Coming': 2, 'mariachi': 1, 'fresh-water': 1, 'American-born': 1, 'coppable': 1, 'clenched': 6, 'deep-deep': 1, 'slimy': 6, 'boulevardlike': 1, 'anti-white': 1, 'irritating': 2, 'grisly': 4, 'instrumental': 3, 'scarlet': 103, 'tonal': 1, 'black-robed': 1, 'niggerf': 2, 'egocentric': 1, 'sleek': 11, 'dollar-a-meal': 1, 'sidelong': 7, 'unequaled': 1, 'la-la': 1, 'ever-expanding': 1, 'seamy': 1, 'glorified': 3, 'wee': 2, 'foolishness-like': 1, 'anti-snow': 1, 'unsettled': 3, 'grim-visaged': 1, 'followin': 1, 'attuned': 2, 'seperate': 1, 'blue-sleeved': 1, 'hard-surfaced': 1, 'verbatim': 1, 'Novel': 1, 'requited': 1, 'synthetic': 1, 'overlarge': 1, 'shallow': 18, 'this-year': 1, 'family-if-shehadda-lived': 1, 'rambunctious': 1, 'soap-sudded': 1, 'festal': 2, 'uninspired': 1, 'animated': 4, 'so-the': 1, 'blue-white': 16, 'seemly': 1, 'anti-American': 1, 'handwritten': 3, 'dissolute': 2, 'organic': 3, 'accusatory': 1, 'by-the-hour': 1, 'Original': 1, 'peevish': 1, 'dirt-floor': 1, 'extinct': 2, 'deathlike': 2, 'Irish': 10, 'surging': 1, 'written': 4, 'well-conducted': 1, 'heigh-ho': 1, 'immune': 5, 'polite': 23, 'armless': 3, 'weathered': 4, 'Hopeless': 5, 'elaborate': 5, 'moaning': 1, 'unclaimed': 3, 'untended': 1, 'sad-faced': 1, 'Dusty': 1, 'all-antiblack': 1, 'fighting-hearted': 1, 'tame': 5, 'dispersed': 1, 'centralized': 2, 'red-bordered': 1, 'unrequited': 2, 'melodious': 4, 'creaking': 4, 'sleazy': 1, 'ratty': 1, 'undulating': 3, 'primordial': 1, 'award-winning': 1, 'new': 785, 'pious': 18, 'counter-Kluxist': 1, 'riddled': 2, 'unloaded': 5, 'runned-over': 1, 'kaleidoscopic': 1, 'indigestible': 1, 'bumpy': 2, 'offhand': 1, 'molasses-like': 1, 'inch-long': 1, 'biting': 1, 'bare-bones': 1, 'guinea-hen': 1, 'cherry-red': 2, 'figurative': 1, 'sumptuary': 2, 'payable': 1, 'Magna': 2, 'multitudinous': 3, 'flat-brained': 1, 'Extra': 1, 'Faint': 2, 'first': 23, 'abstracted': 1, 'Enormous': 1, 'lavish': 7, 'Decent': 1, 'sacred': 37, 'nimble-fingered': 1, 'herable': 1, 'ever-increasing': 1, 'leathercovered': 1, 'Rotten': 8, 'short-time': 1, 'long-distance': 2, 'bizarre': 8, 'tough-guy': 2, 'banged-up': 1, '0f': 1, 'silky': 8, 'unwavering': 2, 'cheapo': 1, 'unmistakeable': 1, 'seasonal': 3, 'two-chromosome': 1, 'ceiling-to-floor': 1, 'acrimonious': 1, 'cooped-up': 1, 'better-dress': 1, 'raftered': 1, 'Noxious': 1, 'itinerant': 1, 'moral': 34, 'redolent': 1, 'draped': 1, 'self-destructive': 1, 'third-base': 1, 'everpopular': 1, 'white-faced': 2, 'Monthly': 2, 'predetermined': 2, 'extravagant': 10, 'ours': 17, 'unsolvable': 1, 'dependable': 5, 'iron-clamped': 2, 'expatriate': 1, 'Blue-white': 1, 'divine': 28, 'eight-pound': 1, 'Parker-like': 1, 'bored': 13, 'optimistic': 2, 'pelvic': 1, 'longcontinued': 1, 'contemporaneous': 1, 'out-holler': 1, 'lanky': 16, 'Refreshing': 1, 'slack': 2, 'Strange': 15, 'well-armed': 1, 'uppity': 2, 'embroidered': 19, 'unjust': 7, 'inexpressible': 1, 'non-touchability': 1, 'lame': 9, 'unstable': 1, 'loud-loud': 1, 'unyielded': 1, 'wifeless': 1, 'jam-packed': 2, 'white-headed': 1, 'enslaved': 2, 'deer-skin': 1, 'cunning': 18, 'sisal': 1, 'weak-hearted': 1, 'plush': 4, 'loud': 169, 'Noisy': 1, 'let-out': 2, 'burned': 1, 'Danish': 1, 'one-two': 2, 'man-free': 1, 'elfish': 4, 'broke': 6, 'errant': 2, 'white-bearded': 1, 'clammy': 2, 'Spent': 1, 'attentive': 8, 'underbrush': 1, 'self-interdicting': 2, 'four-wheel': 1, 'heavyjowled': 1, 'practical': 14, 'blind': 84, 'wicker-bottomed': 1, 'scaly': 3, 'satisfied': 24, 'tiled': 8, 'psychological': 11, 'Sound': 5, 'sleepy-eyed': 1, 'permanent': 23, 'flighty': 2, 'get-up': 1, 'vermilion': 1, 'Syllable': 1, 'seventeen-year-old': 1, 'unuttered': 1, 'strong-looking': 2, 'petrifying': 1, 'doubtless': 12, 'snubbed-nosed': 1, 'unspoken': 10, 'sunlit': 2, 'to-day': 2, 'flash': 1, 'awestricken': 1, 'fiveyear-old': 1, 'deep-sea': 7, 'tional': 2, 'long': 911, 'ashen': 2, 'untoward': 3, 'accurate': 3, 'red-paint': 1, 'anti-labor': 3, 'microcosmic': 1, 'alma': 2, 'rehearsed': 1, 'long-lasting': 1, 'natural': 87, 'small': 449, 'subjective': 5, 'stage-two': 1, 'top': 95, 'wintry': 4, 'clod-hopping': 1, 'economical': 1, 'redheeled': 1, 'TIRED': 1, 'parallel': 3, 'irritated': 12, 'mild-mannered': 1, 'pronged': 1, 'hell-bent': 2, 'impossible': 78, 'ash': 20, 'graphic': 2, 'scrubby': 1, 'smooth': 57, 'flame-haired': 1, 'clique': 2, 'pleural': 1, 'shaggy': 3, 'y': 2, 'ready': 332, 'fast-walking': 1, 'rubbery': 1, 'upturned': 5, 'essential': 14, 'heroic': 9, 'vxnstiint': 1, 'fenced-in': 1, 'Past': 5, 'ministerial': 1, 'unskilled': 1, 'all-over': 1, 'inevitable': 23, 'mythical': 2, 'early': 179, 'harmless-looking': 1, 'mellifluous': 1, 'drunken': 19, 'eyelet-trimmed': 1, 'scrawny-legged': 1, 'goddamn': 65, 'tarred-over': 1, 'wrapt': 2, 'sheepish': 1, 'miraculous': 9, 'Hush': 14, 'smooth-working': 1, 'self-constituted': 1, 'penitent': 4, 'square-topped': 1, 'radical': 1, 'Last': 32, 'unsuccessful': 3, 'Black': 147, 'you-aU': 1, 'paternal': 8, 'caramel-colored': 1, 'you-are-so-wonderful': 1, 'straightforward': 3, 'brick-strewn': 1, 'charming': 8, 'Inflationary': 1, 'uncontaminated': 1, 'ten-year-old': 2, 'Swoonish': 1, 'tally-up': 1, 'double-breasted': 4, 'anti-union': 1, 'infantry': 1, 'aerial': 1, 'whining': 2, 'downright': 1, 'nipped-in': 1, 'monthly': 9, 'gritty-eyed': 1, 'blood-clotted': 1, 'entire': 86, 'disastrous': 5, 'extreme': 15, 'naked': 91, 'linen-covered': 2, 'antisocial': 1, 'non-Marxists': 1, 'frothy': 4, 'sorry-assed': 1, 'sudsy': 1, 'precocious': 1, 'Un-huh': 6, 'thirteenth': 1, 'beardless': 1, 'undulated': 1, 'lardish': 1, 'mangy': 2, 'hour-by-hour': 1, 'acclaimed': 3, 'Kindred': 1, 'signless': 1, 'serviceable': 2, 'professional': 24, 'involuted': 1, 'sloppy-looking': 1, 'self-addressed': 1, 'speeding': 1, 'antiartistic': 1, 'adequate': 7, 'corporate-militarypolice': 1, 'Boring': 1, 'responsive': 1, 'unhung': 2, 'daytime-sleeping': 1, 'illus': 4, 'woman-towoman': 1, 'sincere': 11, 'rival': 3, 'chalky': 1, 'total': 40, 'washed-out': 1, 'Self-denial': 1, 'sour': 26, 'devil-sent': 1, 'four-legged': 2, 'weather-darkened': 1, 'threatless': 1, 'begotten': 1, 'grassless': 1, 'ten-thousand-mile': 1, 'stern-browed': 1, 'myopic': 1, 'haloed': 1, 'cankered': 1, 'deathbed': 1, 'Untutored': 1, 'Nutty': 1, 'untormented': 1, 'roasted': 1, '46th': 1, 'unlimited': 1, 'cinematic': 1, 'plentiful': 2, 'straightnosed': 1, 'pencil-thin': 1, 'boy-king': 1, 'well-cut': 2, 'resentful': 3, 'girlish': 4, 'surgical': 1, 'mumbling': 1, 'poetry-and-jazz': 1, 'traditionary': 2, 'ballot-box': 1, 'sideway': 1, 'kind': 19, 'Wall-eyed': 1, 'mass': 1, 'inverted': 1, 'two-headed': 1, 'thirty-one-year-old': 1, 'gloomy': 18, 'two-month': 2, 'crook-ended': 1, 'chic': 2, 'nice-nice': 1, 'fortyeight-year-old': 1, 'desolate': 12, 'PAMPERED': 1, 'rusted-out': 1, 'wilted': 1, 'chase': 1, 'fortified': 1, 'pyjamalike': 2, 'tweaky': 1, 'Swahili': 1, 'hippy-dippy': 3, 'luggage-van': 1, 'formidable': 8, 'like-minded': 1, 'Buy': 1, 'unfrothed': 1, 'fiendish': 1, 'half-empty': 4, 'onnte': 4, 'fastidious': 1, 'hairy': 9, 'Dangerous': 2, 'golden-haired': 2, 'proud': 96, 'fear-stink': 1, 'informal': 3, 'inbound': 1, 'conceited': 3, 'fabric-draped': 1, 'sprawling': 1, 'sad-colored': 2, 'muscular': 8, 'unrivaled': 1, 'feiogle': 1, 'hard-guy': 1, '6th': 4, 'unchained': 1, 'generic': 1, 'mass-murdering': 1, 'button-down-collar': 1, 'dimpled': 5, 'derisive': 3, 'habitual': 5, 'migratory': 1, 'little-boy': 2, 'sixty-fifth': 1, 'miniskirted': 1, 'end-of-fortnight': 1, 'costless': 1, 'patchy': 1, 'irregular': 7, 'clay-colored': 1, 'Serious': 1, 'loud-mouth': 1, 'economic': 79, 'many-storied': 1, 'Chump': 1, 'meritorious': 1, 'brain-washed': 3, 'wish-filled': 1, 'run-of-the-mill': 1, 'mellow': 7, 'unrented': 2, 'dining-table': 1, 'neck-and-neck': 1, 'undynamic': 1, 'lateral': 2, 'mystical': 3, 'big-time': 6, 'ineffable': 1, 'still-standing': 1, 'greasy': 12, 'clotted': 1, 'pretentious': 5, 'straight-pointed': 2, 'blue-denim': 2, 'all-powerful': 2, '33rd': 1, 'foster': 1, 'tireless': 3, 'summery': 1, 'singsong': 1, 'pointed': 18, 'large-souled': 1, 'outlying': 2, 'grainy': 1, 'patent-leather': 2, 'self-satisfied': 1, 'li-li-lie': 1, 'GOING': 1, 'no-knock': 1, 'sweeping': 4, 'smart-like': 1, 'brilliant-of': 1, 'future': 34, 'breasted': 1, 'aught': 1, 'smooth-fleshed': 1, 'lay': 11, 'prepared': 11, 'inexhaustible': 1, 'threecornered': 1, 'diferent': 1, 'long-awaited': 1, 'iconoclastic': 1, 'lewd': 5, 'foregone': 3, 'catastrophic': 1, 'effeminate': 1, 'money-grubbing': 1, 'hundred-dollar': 1, 'Six-foot-five': 1, 'bunioned': 1, 'prepossessing': 1, 'd-d-d-do': 1, 'remorseful': 2, 'godforsaken': 2, 'Loving': 1, 'fanner-looking': 1, 'frosty': 5, 'ultra-right': 1, 'diaphanous': 1, 'mystic': 8, 'Japanese': 18, 'cantilevered': 1, 'deatlf-like': 1, 'sexy-and-at-the-sametime-sweet-and-little-girl-looking': 1, 'resilient': 2, 'crimson': 17, 'well-spring': 1, 'snappy': 14, 'long-hidden': 1, 'Chloral': 3, 'acrid': 2, 'bent': 81, 'propagandistic': 1, 'shapeless': 4, 'Bourgeois': 1, 'ungracious': 2, 'not-too-dear': 1, 'legit': 1, 'foot-high': 1, 'dry-mouthed': 1, 'undistinguished': 2, 'Giant': 2, 'finishing': 4, 'naught': 1, 'Available': 1, 'preexisting': 2, 'own': 902, 'youngish-looking': 2, 'three-mile-long': 1, 'federal': 22, 'niggersr': 1, 'six-year-old': 1, 'soft-looking': 1, 'accessible': 4, 'Deep': 8, 'twenty-five': 3, 'thousand-year-old': 1, 'illiterate': 9, 'vaguely-defined': 1, 'soot-stained': 1, 'impracticable': 2, 'mesmerizing': 1, 'all-snow': 3, 'God-damn': 1, 'booby': 3, 'seesaw': 1, 'dilapidated': 4, 'contributive': 1, 'Mortal': 1, 'Fascist': 2, 'long-muscled': 1, 'short-limbed': 1, 'stubby-collared': 1, 'Solemn': 1, 'smooth-skin': 1, 'unalienable': 1, 'shit-storm': 1, 'outer': 26, 'flirtatious': 4, 'subordinate': 1, 'solemn': 38, 'scrawny': 9, 'emaciated': 6, 'double-bladed': 1, 'magnificient': 1, 'poetical': 3, 'city-based': 2, 'submissive': 4, 'stagnant': 8, 'glass-bottomed': 2, 'raven-black': 1, 'iniquired': 1, 'honourable': 8, 'thousand-dollar': 1, 'atrophic': 1, 'snaggletoothed': 1, 'transfixed': 1, 'Happy': 14, 'royal-ruby': 1, 'likeable': 2, 'lifelike': 1, 'commerciallooking': 1, 'insensate': 1, 'black-trousered': 1, 'galvanic': 1, 'far': 33, 'counterrevolutionary': 1, 'newborn': 5, 'deep-eyes-alwayselsewhere': 1, 'off-the-wall': 4, 'uncatholic': 1, 'ever-relentless': 1, 'sticky': 20, 'death-directed': 1, 'prune-wrinkled': 1, 'nonsensical': 1, 'local-grown': 1, 'overfastidious': 1, 'broad-brimmed': 4, 'wartime': 1, 'gruesome': 2, 'Moravian': 1, 'heart-shaped': 1, 'well-aimed': 1, 'duffle': 1, 'soulwrenching': 1, 'floodlighted': 1, 'sixteenth': 1, 'stifled': 1, 'light': 193, 'unbailed': 1, 'Unaware': 2, '35th': 1, 'big-league': 1, 'I-ain': 2, 'guilty': 68, 'oratorical': 1, 'potential': 12, 'd-did': 1, 'scant': 2, 'harsh': 23, 'never-ceasing': 1, 'clear-cut': 4, 'dried-up': 3, 'seaworthy': 2, 'pharisaical': 1, 'bozal': 2, 'brisk': 6, 'dizzy': 17, 'fart': 1, 'servant': 27, 'winglike': 1, 'cubby': 1, 'appointed': 1, 'desperate': 41, 'phallic': 1, 'engaging': 1, 'masterful': 1, 'smeared': 2, 'tilted': 16, 'wire-spoked': 1, 'Lilliputian': 1, 'unpleasant': 8, 'good-paying': 1, 'peculiar': 34, 'blonde-gold': 1, 'eight-hour': 1, 'superfeminine': 1, 'fair-skinned': 1, 'contagious': 2, 'incompetent': 1, 'seven-hour': 1, 'retired-to-the-den': 1, 'painless': 2, 'special': 144, 'taffy-coloured': 1, 'juke-box': 1, 'flung': 1, 'mayest': 1, 'sharpened': 1, 'yeherable': 1, 'nasty': 46, 'closed-in': 1, 'nine-to-five': 2, 'mighty': 50, 'unmolested': 2, 'even-tempered': 1, 'wood-burning': 1, 'undisguised': 1, 'talkative': 3, 'stern': 30, 'pinstriped': 1, 'soft-like': 1, 'five-dollar': 3, 'ballpoint': 1, 'Olivia': 7, 'virgin': 23, 'glib-tongued': 1, 'junky': 2, 'Hemingwayesque': 1, 'twenty-second': 1, 'modern-day': 1, 'selfcongratulatory': 1, 'calf-length': 1, 'home-brewed': 1, 'homogeneous': 1, 'fold': 2, 'swan-necked': 2, 'thatched-roof': 2, 'African': 132, 'fellow-creature': 2, 'daring': 24, 'straw': 1, 'hard-won': 1, 'imperfect': 1, 'nativeborn': 1, 'interesting': 44, 'make-believe': 5, 'typical': 13, 'Hootchy-gootchy': 1, 'hazardous': 1, 'boundless': 5, 'Due': 1, 'second-hand': 1, 'facial': 2, 'arm-chair': 1, 'agreed-upon': 1, 'skeptical': 1, 'tunnellike': 1, 'unbroken': 7, 'post-Catherine': 1, 'Frenzied': 1, 'manicured': 1, 'bittersweet': 2, 'long-last': 1, 'apoplectic': 1, 'peppy': 1, 'Egyptian': 11, 'purplish': 1, 'unrealistic': 1, 'selfevident': 1, 'individual': 37, 'gray': 160, 'gorgeous': 18, 'Heavenly': 3, 'favorable': 4, 'predictable': 5, 'republican': 1, 'afterclass': 1, 'pernicious': 1, 'profuse': 1, 'Domestic': 1, 'ramshackle': 2, 'telltale': 3, 'four-day': 1, 'Everyday': 1, 'farfetched': 1, 'sure': 609, 'goddamned': 23, 'pitch-and-red': 1, 'rumpled': 4, 'salt-fish': 3, 'unrighteous': 1, 'fleece-gated': 1, 'dutty-ground': 1, 'socialist': 19, 'nested': 1, 'moody': 2, 'Africanmerican': 1, 'Suspicious': 2, 'thick-headed': 1, 'custom-fit': 1, 'faithful': 27, 'middle-aged': 9, 'black-wool': 1, 'nymph-child': 1, 'hard-earned': 4, 'bastardized': 1, 'baggy': 2, 'saliva-dripping': 1, 'Fine': 10, 'ghostly': 5, 'Democratic': 7, 'Maasi': 1, 'dandy': 2, 'harrowing': 1, 'persistent': 5, 'death-bed': 4, 'unbelieving': 2, 'dreamy': 14, 'norther': 1, 'righteous': 9, 'hearty': 11, 'jagged': 2, 'overhead': 2, 'immodest': 1, 'Ironic': 3, 'sexy': 14, 'remedial': 3, 'pastel-pink': 1, 'gory': 4, 'late-night': 3, 'burro-back': 1, 'lank-winged': 1, 'tightly-pressed': 1, 'me-too': 1, 'dedicated': 2, 'dirty': 135, 'yearly': 5, 'anti-communist': 1, 'defunct': 3, 'high-ceilinged': 2, 'halffinished': 1, 'Spike-shaped': 1, 'unintelligent': 2, 'indefinable': 2, 'nineteenth': 7, 'ethical': 2, 'chromatic': 1, 'Corporative': 1, 'second-string': 1, 'smitten': 1, 'warped': 11, 'inscrutable': 4, 'halting': 1, 'watery': 18, 'immanent': 1, 'factory-working': 1, 'marcelled': 2, 'amber-coloured': 1, 'monied': 1, 'cxigeant': 1, 'aggressive': 16, 'Swiss': 1, 'unattainable': 4, 'well-screened': 1, 'all-hypocrital': 1, 'odd-job': 1, 'lukewarm': 4, 'deluxe': 3, 'sleepy': 17, 'parttime': 1, 'Dead': 11, 'Complete': 1, 'up-front': 2, 'race-sensitized': 1, 'sienna-lit': 1, 'keyholed': 1, 'favourite': 26, 'expedient': 3, 'linear': 2, 'two-bedroomed': 1, 'tangled': 5, 'monstrous': 5, 'gallant': 2, 'pre-slavery': 1, 'Adantic': 4, 'just-right': 1, 'Africanized': 1, 'venerated': 1, 'misbegotten': 1, 'doggy': 4, 'Devoted': 1, 'crappy': 1, '11y': 1, 'Big': 128, 'unprincipled': 4, 'memoried': 1, 'one-half': 1, 'curiously': 1, 'solid-lead': 1, 'blossoming': 1, 'communist': 3, 'Damn': 43, 'yonder': 9, 'unthinking': 1, 'conceptual': 1, 'split': 3, 'reputable': 2, 'thang': 2, 'acceptable': 8, 'paler': 4, 'Clay-red': 1, 'offensive': 3, 'godless': 2, 'doggoned': 10, 'homosexual': 5, 'relative': 23, 'wet-mouthed': 2, 'beholden': 1, 'tepid': 2, 'Bottled': 1, 'seventy-some': 2, 'much-creased': 1, 'honeycoloured': 1, 'out': 4, 'throwaway': 1, 'humorsome': 1, 'short-term': 6, 'infrequent': 4, 'half-frenzied': 1, 'marvellous': 3, 'rightoriented': 1, 'lovely-looking': 1, 'Protective': 1, 'fog-shrouded': 1, 'valuable': 19, 'hooked': 4, 'Recent': 1, 'Rare': 3, 'creased': 3, 'fifty-five': 1, 'flagrant': 1, 'dadburn': 1, 'anecdotal': 2, 'dreadful': 15, 'overgrown': 5, 'rock-bottom': 1, 'love-hate': 1, 'associate': 7, 'coincidental': 3, 'Muslim': 4, 'sedulous': 1, 'advisable': 1, 'worthwhile': 6, 'symbolic': 2, 'unflinching': 2, 'stringy-haired': 1, 'red-and-blue': 1, 'Mysterious': 1, 'P-pu-push': 1, 'first-book': 1, 'Sweet': 18, 'pithy': 1, 'quarter-million': 1, 'glass-enclosed': 1, 'astounding': 2, 'vacant': 26, 'self-respecting': 2, 'English-speaking': 3, 'cloying': 2, 'needle-sharp': 2, 'disjointed': 2, 'black-boy': 1, 'ground-shaking': 1, 'senseless': 9, 'flair-legged': 1, 'all-time': 1, 'four-cent': 1, 'serious-looking': 1, 'unfinished': 4, 'courageous': 6, 'five-foot': 1, 'bare-branched': 1, 'rotten': 38, 'fictional': 2, 'disabled': 1, 'm1chael': 1, 'traitorous': 1, 'skunky': 2, 'Noontime': 1, 'artless': 1, 'coquettish': 1, 'apprehensive': 3, 'bygone': 2, 'love-inspired': 1, 'tousled': 1, 'buckramed': 1, 'double-jointed': 1, 'foremost': 4, 'phenomenal': 7, 'egg-shell': 1, 'responsible': 37, 'diagonal': 2, 'precise': 20, 'glossy': 5, 'eighteen-year-old': 2, 'stuck': 1, 'barefooted': 8, 'defeatest': 1, 'twenty-something': 1, 'deflationary': 1, 'artistic': 11, 'insistent': 7, 'Momma': 7, 'worry-free': 1, 'grand': 58, 'long-drawn-out': 1, 'world-recognized': 1, 'fond': 12, 'QMusic': 1, 'incapable': 14, 'dreamlike': 2, 'dinky': 1, 'overdue': 6, 'wringin': 1, 'Yeah-ah': 1, 'Weighty': 1, 'double-flute': 1, 'jive': 7, 'reddish': 7, 'bearable': 5, 'emblematic': 3, 'full-growed': 2, 'celestial': 9, 'Hearken': 1, 'star-laden': 1, 'half-hearted': 1, 'eventful': 1, 'prisoner-of-war': 2, 'coal-dust': 1, 'compulsive': 2, 'right-oriented': 2, 'Housekeeping': 1, 'Korean': 5, 'undeveloped': 2, 'Fundamental': 1, 'pimply-faced': 2, 'tropical': 21, 'arched': 5, 'compulsory': 1, 'hard-pressed': 2, 'discourteous': 1, 'nigger-in-theprojects': 1, 'misguided': 1, 'overtraditionalist': 1, 'syncopated': 1, 'babyish': 3, 'geometric': 1, 'principled': 3, 'Smart': 5, 'flesh-colored': 1, 'rowdy': 1, 'twisted': 16, 'insensitive': 1, 'hand-licking': 1, 'round-table': 1, 'house-shoed': 1, 'greyish-brown': 1, 'hacked-up': 1, 'facile': 1, 'fictive': 4, 'neady': 2, 'novel': 92, 'bitter-tempered': 2, 'oval': 12, '16th': 1, 'iruseciet': 1, 'new-yet-old': 1, 'nine-one-four': 1, 'refreshing': 1, 'coercive': 1, 'rock-defended': 1, 'oaken': 3, 'withering': 5, 'repellent': 3, 'sinewy': 4, 'consular': 1, 'Haitian': 1, 'slanderous': 1, 'shaped': 6, 'prosaic': 1, 'nine-year-old': 3, 'middleweight': 1, 'fatherless': 2, 'false': 38, 'enduring': 3, 'needed': 1, 'tufted': 1, 'unilateral': 1, 'twentieth': 4, 'unsearchable': 2, 'sweet-smelling': 3, 'face-cream': 1, 'coked-out': 1, 'sable': 12, 'Casual': 1, 'floating': 1, 'anticipated': 2, 'extant': 1, 'Interracial': 1, 'Active': 1, 'eleventh-hour': 1, 'one-act': 1, 'minimum': 4, 'one-track': 1, 'two-fifteen': 1, 'nosiest': 1, 'perforated': 2, 'socio-economic': 7, 'fifty-dollar-a-week': 1, 'despondent': 3, 'too-drunk': 1, 'gi-gi-gi-give': 1, 'Leuk-Idrissa': 1, 'tative': 1, 'Wouldst': 2, 'jacked-up': 1, 'bumper-to-bumper': 1, 'aqualithic': 1, 'two-tone': 1, 'unimpeachable': 1, 'Kt': 1, 'anti-civil': 2, 'TOP': 1, 'marble-looking': 1, 'Understand': 3, 'antiblack': 2, 'Manhattan-bound': 1, 'villainous': 1, 'clandestine': 5, 'quarrelsome': 1, 'proof': 1, 'musical': 10, 'entrenched': 1, 'sstart-a-jailbreak': 1, 'relieved': 21, 'experienced': 3, 'lining': 4, 'dazzling': 6, 'ulcerated': 1, 'depreciatory': 1, 'unpaved': 2, 'worn-faced': 1, 'one-dimensional': 1, 'populated': 2, 'blanket-covered': 1, 'drafty': 1, 'klannish': 1, 'strong': 162, 'teen-age': 4, 'recent': 26, 'aweary': 1, 'vile': 8, 'all-consuming': 1, 'seedy': 3, 'prospective': 1, 'side-thrust': 1, 'strong-spirited': 1, 'cautious': 9, 'work-filled': 1, 'booming': 5, 'unthought': 1, 'inexpensive': 2, 'straw-bottomed': 1, 'picky': 6, 'unaccounted': 1, 'anti-Chinese': 1, 'honeybrown': 1, 'snug': 1, 'contorted': 5, 'Arabic': 1, 'irrevocable': 2, 'interim': 1, 'perfunctory': 1, 'wild-flower': 1, 'Persian': 3, 'judicious': 2, 'baby': 1, 'dandelion': 2, 'rose-bush': 2, 'midnight-to-dawn': 1, 'powdered': 4, 'Presbyterian': 1, 'right-to-work': 1, 'wadded': 1, 'preadolescent': 1, 'tonic': 2, 'fruit-and-flower': 1, 'rickety-looking': 1, 'reverenced': 1, 'Mist-crowned': 1, 'Picky': 1, 'unshorn': 1, 'Baptist': 3, 'razor-edged': 1, 'vital': 19, 'fatal': 16, 'silly': 51, 'introspective': 1, 'majority-black': 1, 'Girl-Scout': 1, 'broken-headed': 1, 'Elizabethan': 2, 'unfastened': 2, 'well-nigh': 1, 'gothic': 1, 'gravelcovered': 1, 'chrome': 5, 'fashion-model': 1, 'socalled': 2, 'up-tempo': 1, 'undefined': 2, 'white-on-white': 2, 'mouth-hanging': 1, 'whorish': 2, 'potent': 10, 'Boyish': 1, 'second-rate': 2, 'untroubled': 1, 'two-day': 1, 'Unwilling': 1, 'accountable': 3, 'altered': 2, 'adamant': 3, 'hyper': 1, 'Lovely': 3, 'school-teacherishlooking': 1, 'burned-out': 3, 'crass': 1, 'subliminal': 1, 'short': 236, 'usual': 108, 'fiftyish': 1, 'balming': 1, 'splay-foot': 1, 'second': 273, 'rookie-looking': 1, 'cruel': 37, 'civil': 47, 'uhshelled': 1, 'horrifying': 2, 'poll': 1, 'blinding': 2, 'idiotic': 2, 'sizable': 4, 'ecstatic': 5, 'exhausting': 3, 'big-knuckled': 1, 'thriving': 3, 'high-heeled': 6, 'Yugoslavian': 1, 'nonlook': 1, 'two-hundred-yearold': 1, 'well-respected': 1, 'uncommon': 5, 'sly': 11, 'cancerous': 3, 'ubiquitous': 3, 'cultural': 20, 'idle': 13, 'shadowlike': 1, 'enfeebled': 1, 'critical': 14, 'heavenly-ordained': 1, 'unidentified': 1, 'funny-cut': 1, 'maximum': 2, 'GOOD': 1, 'Man-man': 1, 'interesting-looking': 1, 'lickety-split': 2, 'first': 981, 'hung-over': 1, 'deaf-mute': 1, 'razor-sharp': 1, 'no-nonsense': 3, 'wakeful': 1, 'pervasive': 2, 'hen-coop': 1, 'salty': 11, 'lean-muscled': 1, 'antic': 1, 'half-obliterated': 1, 'Sensitive': 1, 'anti-people': 1, 'cold-creamed': 1, 'exempt': 1, 'informative': 1, 'accursed': 1, 'half-open': 2, 'tin-can': 1, 'filmic': 1, 'westbound': 1, 'inherent': 6, 'hog-bed': 1, 'hermit': 2, 'three-bean': 1, 'Gigantic': 1, 'welcoming': 3, 'enamored': 2, 'bust-you-in-the-mouth-if-you-mess-with-me': 1, 'nost': 1, 'anti-Semitic': 1, 'whiskey-head': 1, 'stub-legged': 1, 'fruity': 2, 'darksome': 3, 'third-generation': 1, 'dreamfed': 1, 'inexplicable': 5, 'pivotal': 1, 'loud-talking': 1, 'clear-complected': 1, 'Polite': 10, 'NEGRO': 2, 'fearless': 1, 'chubby': 6, 'motorless': 1, 'undersized': 1, 'wild-looking': 1, 'familiar': 101, 'flesh-hungry': 1, 'backhanded': 1, 'linen-stockinged': 1, 'undreamed': 2, 'Scriptural': 2, 'thirty-year-old': 2, 'progressive': 10, 'heavy-headed': 1, 'breeze-blown': 1, 'curried': 1, 'general': 94, 'forty-second': 1, 'twinkling': 2, 'Andalusian': 1, 'irresponsible': 5, 'Instinctive': 1, 'half-uneaten': 1, 'blue-and': 1, 'eminent': 8, 'southern': 30, 'unholy': 3, 'burnished': 1, 'humiliating': 3, 'night-gear': 1, 'Motown': 1, 'Middle-aged': 1, 'whimsical': 1, 'Surprised': 2, 'wretched': 29, 'longgone': 1, 'brief': 38, 'disappointed': 22, 'peasant-baby': 1, 'dog-ass': 1, 'exuberant': 2, 'noxious': 4, 'starry-eyed': 1, 'labor-saving': 1, 'diving': 1, 'recollected': 1, 'butter-colored': 1, 'surprise-like': 1, 'isolate': 1, 'iron-callused': 1, 'Exempt': 1, 'postmodern': 1, 'small-looking': 1, 'ceaseless': 7, 'fleeting': 12, 'grating': 3, 'grease-stained': 1, 'disorderly': 4, 'Iroquois': 1, 'Lithuanian': 1, 'bespectacled': 1, 'blotted': 1, 'overhear': 1, 'regional': 6, 'regrettable': 1, 'occidental': 2, 'ardent': 3, 'embryonic': 2, 'plastic': 11, 'soulful': 3, 'degenerate': 4, 'cobblestoned': 3, 'masking-taped': 1, 'jarring': 3, 'no-smoking': 1, 'wrinkled': 29, 'insolent': 5, 'sin-born': 2, 'masculine-looking': 1, '3-ou': 1, 'admirable': 2, 'considerate': 4, 'dirt-blind': 1, 'strong-nosed': 1, 'blueeyed': 2, 'blunt': 6, 'grateful': 21, 'four-inch': 1, 'semi-nude': 1, 'unbor': 1, 'matrimonial': 1, 'lace-trimmed': 1, 'potater-digging': 1, 'sea-food': 1, 'Italian': 43, 'street-lamp': 1, 'unvvuasi-j': 1, 'darkened': 14, 'pro-slaving': 1, 'might-and-right': 1, 'penguinlike': 1, 'slumbering': 1, 'ornery': 4, 'able-bodied': 5, 'pre-ordered': 1, 'two-bit': 3, 'prouder': 1, 'recessed': 1, 'perverse': 4, 'easygoing': 2, 'colored': 13, 'lightning-looking': 1, 'honey-beige': 1, 'self-protecting': 1, 'close-cropped': 4, 'typographical': 1, 'rhythmic': 2, 'all-boy': 1, 'frosted': 2, 'sweat-stained': 1, 'privy': 2, 'clinking': 2, 'Mexican-Indian': 1, 'Afro-Russian': 1, 'god-forsaken': 1, 'pinkish': 2, 'hurrieth': 1, 'black-hooded': 1, 'psycho-social': 12, 'inconsolable': 1, 'Cassandra-like': 1, 'Free': 3, 'twenty-pound': 1, 'rabbit-hunting': 1, 'ther.v': 1, 'willowy': 1, 'deserving': 4, 'unworthy': 6, 'healthy': 23, 'bulletin-board': 1, 'Twenty-ninth': 1, 'Total': 4, 'eligible': 4, 'ridgeless': 1, 'green-backed': 1, 'ghost-like': 1, 'wood-encased': 1, 'sterling': 1, 'Cultural': 1, 'green-metal': 1, 'unoccupied': 4, 'chrome-plated': 1, 'unremarked': 1, 'one-shot': 2, 'forborne': 1, 'retired': 7, 'abysmal': 1, 'golden-studded': 1, 'contemplative': 1, 'befo-e': 1, 'hard-working': 2, 'sprite-like': 1, 'cold-looking': 1, 'German': 44, 'Soot-streaked': 1, 'pock-beaked': 1, 'intellectual': 26, 'ball-playing': 1, 'queljoli': 1, 'lit-up': 1, 'thoroughbred': 1, 'comfortable': 30, 'mercenary': 1, 'black-a-visaged': 1, 'motor-car': 1, 'airtight': 2, 'invariant': 1, 'sequined': 1, 'nar': 5, 'disguised': 2, 'distorted': 2, 'spacious': 3, 'eely': 1, 'trance-like': 1, 'what-that-is-asunder': 1, 'turbulent': 4, 'interested': 84, 'yawning': 4, 'one-way': 2, 'Roman': 10, 'inky': 2, 'unironed': 2, 'race-hating': 1, 'back7': 1, 'rapacious': 1, 'resigned': 2, 'sadscared': 1, 'white-boy': 2, 'one-bedroom': 1, 'traceable': 1, 'dual': 6, 'fathomless': 1, 'basal': 1, 'Union-saving': 1, 'Catholic': 19, 'fine-woven': 1, 'folk': 3, 'solitary': 25, 'balloonlike': 1, 'wor': 1, 'loamy': 1, 'letter-writing': 1, 'snow-flakes': 1, 'insurmountable': 1, 'fuddy-duddy': 1, 'meager': 9, 'unpredictable': 9, 'seventeen-hour': 1, 'wet-pink': 1, 'bashful': 6, 'pear-shaped': 1, 'disreputable': 3, 'Rondevous': 1, 'intangible': 5, 'paltry': 5, 'influenced': 1, 'allergic': 1, 'gravel-covered': 1, 'melancholy': 19, 'stubborn': 15, 'unitarian': 6, 'Fought': 1, 'dissonant': 2, 'erent': 2, 'fascinating': 10, 'incoherent': 3, 'close-mouthed': 1, 'proto-ancient': 1, 'what5': 1, 'boxy': 1, 'Concrete': 2, 'Smoked': 1, 'anti-black': 4, 'self-devoted': 2, 'peakish': 1, 'standoffish': 1, 'Weightless': 1, 'bitter-hearted': 1, 'earth-hugging': 1, 'blinkless': 1, 'sundry': 1, 'inflationary': 6, 'Wretched': 3, 'virulent': 2, 'li-li-lied': 1, 'roundish': 1, 'kissable': 1, 'saccharine': 2, 'nonchalant': 2, 'inconsequential': 1, 'transparent': 5, 'additional': 18, 'unsatisfying': 1, 'apologetic': 5, 'obvious': 49, 'unforeseen': 1, 'flashy': 4, 'terrific': 9, 'parathyroid': 1, 'Incredible': 3, 'mini': 2, 'winged': 4, 'touchable': 1, 'nonexistent': 5, 'self-indulgent': 2, 'out-of-home': 1, 'geriatric': 1, 'yellow-brown': 3, 'Jimson': 5, 'fragmentary': 2, 'Plain': 2, 'heaven-breathing': 1, 'chilling': 2, 'gold-tipped': 1, 'tiny': 97, 'hellified': 1, 'comprehensive': 2, 'dopey': 1, 'she-God': 1, 'sneaky-woman': 1, 'wind-downed': 1, 'knife-cut': 1, 'law-made': 1, 'fellow': 41, 'Tizoc': 4, 'confidential-like': 1, 'totalitarianauthoritarian': 1, 'fuckable': 1, 'Precious': 1, 'high-toned': 1, 'condescending': 2, 'pitch-black': 4, 'capitalist': 44, 'frizzy': 1, 'magic': 32, 'livid': 2, 'unwanted': 4, 'blurry': 2, 'active': 20, 'sunshine-fresh': 1, 'off-hand': 2, 'ice-cream': 1, 'apostolic': 1, 'dreaded': 1, 'cheerless': 1, 'prefatory': 1, 'everpregnant': 1, 'targetable': 1, 'rightist': 2, 'shrill': 10, 'dog-lookin': 1, 'ego-stroking': 1, 'fanatical': 1, 'party-going': 1, 'unnamed': 1, 'ravenous': 4, 'merry': 11, 'narrow-nosed': 1, 'gusty': 1, 'tenacious': 3, 'ox-eyed': 1, 'shy': 25, 'entangled': 6, 'lachrymose': 1, 'clumsy': 7, 'Light': 10, 'ruling-class': 4, 'unsupported': 1, 'gruff': 4, 'jeesy-tail': 1, 'clangorous': 2, 'comely': 3, 'fearsome': 2, 'Armenian': 1, 'white-lace': 1, 'sign-in': 2, 'sulfuric': 1, 'bad': 462, 'external': 5, 'ginger-colored': 1, 'bronze-colored': 1, 'Vous': 1, 'Talmudic': 1, 'scathing': 2, 'risky': 4, 'fantastic': 26, 'elementary': 7, 'bankrupt': 1, 'Desperate': 1, 'flaccid': 2, 'inbred': 1, 'magnetic': 4, 'disheveled': 1, 'Rigid': 1, 'rush-hour': 1, 'glowing': 23, 'tight-bottom': 1, 'noontide': 1, 'excess': 4, 'undignified': 1, 'air-conditioned': 6, 'lemony': 1, 'jumping-jack': 1, 'molar': 1, 'hateful': 3, 'rimless': 1, 'hurt': 3, 'bell-bottomed': 1, 'Funny': 11, 'rough': 64, 'precinct': 2, 'mysel': 1, 'neat': 40, 'west-side': 1, 'Puffy': 1, 'galling': 2, 'picket-fence': 1, 'half-rotten': 1, 'visible': 33, 'stretchable': 1, 'puffy': 5, 'illusory': 1, 'chilly': 8, 'dismissive': 1, 'unrecognizable': 2, 'haggard': 1, 'wood-paneled': 1, 'Albigensian': 1, 'dining-room': 12, 'male': 32, 'iced-over': 1, 'down-trodden': 2, 'Medical': 1, 'second-year': 2, 'Loose': 2, 'inspired': 2, 'low': 137, 'incestuous': 2, 'secondary': 9, 'well-intentioned': 2, 'captive': 2, 'powerless': 10, 'steadying': 2, 'flame-coloured': 1, 'continuous': 2, 'bodied': 1, 'colourful': 7, 'angry': 117, 'unwashed': 4, 'fluffy-light': 1, 'normal-appearing': 1, 'dutiful': 3, 'sexist': 1, 'big-yawn': 1, 'fast-moving': 4, 'uniform': 7, 'black-mouthed': 1, 'HAPPY': 1, 'Brief': 1, 'spineless': 3, 'air-conditioning': 1, 'spritely': 1, 'Good-looking': 3, 'much-changed': 1, 'irrepresible': 1, 'matriarch-propagating': 1, 'dew-spilled': 1, 'alert': 11, 'gran': 2, 'lady-like': 2, 'hysteric': 1, 'stilted': 1, 'lower-middle': 1, 'sorry-ass': 1, 'spellbound': 4, 'anti-establishment': 4, 'canary': 11, 'non': 3, 'round-bellied': 1, 'military-industrial': 1, 'mttiteni': 1, 'restive': 1, 'wornout': 1, 'old-time': 4, 'fraying': 1, 'sociable': 2, 'bestdressed': 1, 'sea-faring': 3, 'inescapable': 2, 'numberless': 2, 'fraternal': 1, 'high-flown': 1, 'inseparable': 2, 'seductive': 2, 'first-born': 2, 'seventy-five': 2, 'synonymous': 4, 'mense': 1, 'unpardonable': 1, 'marble-pillared': 1, 'grime-crusted': 1, 'dogshit-littered': 1, 'indoor': 1, 'three-day-old': 1, 'rocky': 6, 'touch-up': 1, 'prevaricating': 1, 'cozy': 6, 'new-fallen': 1, 'imperative': 5, 'Evil-eyed': 1, 'asphyxiated': 1, 'sympathetic': 13, 'Soft': 1, 'ice-black': 1, 'low-moaning': 1, 'bombo-hole': 1, '29th': 1, 'caressive': 2, 'dialectical': 3, 'bestial': 1, 'wearied': 1, 'dangerous-looking': 2, 'peaceable': 2, 'industrial-military': 1, 'hundred-meter': 1, 'Only': 1, 'depthless': 1, 'close-knit': 1, 'clickclack': 1, 'two-man': 1, 'original': 26, 'shaded': 10, 'handmade': 4, 'dainty': 5, 'nation-wide': 1, 'spanking': 2, 'predominant': 3, 'artificial': 11, 'calm-like': 1, 'First-born': 1, 'expansive': 2, 'steamy': 3, 'awesome': 10, 'steel-engraved': 1, 'fantastical': 1, 'Otomi': 1, 'immoral': 3, 'nearsighted': 1, 'set-in': 1, 'equitable': 2, 'longlasting': 1, 'steel-pillared': 1, 'tieless': 1, 'beneficial': 1, 'half-submerged': 1, 'tyrannical': 1, 'balconied': 3, 'punch-clock': 1, 'thitherto': 1, 'great-grandi': 1, 'plaid': 3, 'easy-going': 1, 'pre-Cambrian': 1, 'satin': 6, 'slutty': 1, 'preferable': 5, 'efficacious': 1, 'despaired': 1, 'ravishing': 1, 'distinctive': 4, 'Anglo-Amerikan': 1, 'unlovely': 1, 'anticapitalist': 3, 'equal': 59, 'shell-domed': 1, 'indigent': 1, 'slimlegged': 1, 'bitter-smelling': 1, 'recognizable': 2, 'slovenly': 1, 'cathartic': 1, 'care-worn': 1, 'deficit': 1, 'convertible': 17, 'romantical': 3, 'long-past': 1, 'various-sized': 1, 'probable': 8, 'seventy-year-old': 2, 'passable': 1, 'sixtyfive-cent': 1, 'indent': 1, 'undernourished': 1, 'unoiled': 1, 'blue-eyed': 7, 'suffocating': 2, 'meaty-red': 1, 'outdated': 3, 'establishment-conditioning': 1, 'square-faced': 1, 'fuckedup': 1, 'zooming': 1, 'Marxist': 1, 'cherry': 2, 'insufficient': 1, 'aged': 20, 'excruciating': 3, 'decadent': 5, 'assorted': 2, 'centrical': 1, 'hung': 4, 'parenthetical': 1, 'submerged': 1, 'totalitarian': 15, 'locked-in': 1, 'antecedent': 2, 'six-bit': 1, 'love-bush': 1, 'expectant': 7, 'concentric': 2, 'half-crazed': 1, 'scented': 2, 'hurt-pride': 1, 'glimmering': 2, 'knee-high': 1, 'Good-by': 1, 'firm': 12, 'massaging': 1, 'worrisome': 2, 'tulip-shaped': 1, 'unquenchable': 1, 'black-black': 1, 'dramatic': 6, 'ever-active': 3, 'wavy': 6, 'endowed': 12, 'indignant': 7, 'magical': 4, 'above-ground': 1, 'prison-like': 1, 'domestic': 27, 'pivot': 2, 'milder': 1, 'talented': 10, 'slim-waisted': 1, 'black-eyed': 1, '10th': 2, 'comprehend': 1, 'subtropical': 2, 'foul-shot': 1, 'jaundiced': 1, 'joking': 8, 'peremptory': 2, 'genetic': 1, 'Tense': 1, 'satirical': 1, 'two-timing': 3, 'flawless': 2, 'moonlike': 1, 'stinky': 2, 'old-timey': 2, 'primate': 1, 'oming-of-age': 1, 'inmost': 5, 'ten-cent': 1, 'first-night': 2, 'genteel': 2, 'exciting': 17, 'worthy': 21, 'overwhelmed': 2, 'pink-faced': 2, 'slick': 16, 'ashamed': 64, 'irate': 3, 'unsigned': 1, "twelve-o'clock": 2, 'rubber-soled': 1, 'scattered': 5, 'powerful': 61, 'far-reaching': 2, '20th': 1, 'malicious': 10, 'hubby': 1, 'virile': 1, 'tolerant': 4, 'well-developed': 1, 'life-long': 4, 'Jailbird': 1, 'Seventeen-year-old': 1, 'dark-green': 2, 'sun-struck': 1, 'arch': 1, 'tentative': 2, 'intentional': 3, 'center-table': 1, 'Mao-Che-style': 1, 'likely': 31, 'safari': 3, 'understandable': 1, 'unified': 2, 'melodramatic': 1, 'toasty': 1, 'suspenseful': 1, 'jere': 1, 'revolting': 1, 'noticeable': 2, 'veriform': 1, 'slippered': 1, 'queer-shaped': 1, 'lacelike': 1, 'partisan': 4, 'well-known': 5, 'life-threatening': 1, 'agreeable': 1, 'jumpy': 2, 'puffed': 1, 'big-big': 3, 'chief': 8, 'Tangled': 1, 'standard': 9, 'Sad': 5, 'eTectric': 1, 'baobab': 4, 'untrue': 2, 'conducive': 2, 'rolling': 6, 'hurtful': 1, 'enciphered': 1, 'veintes': 1, 'thirty-five-year-old': 1, 'sweet-faced': 1, 'absolute': 22, 'office-bound': 1, 'red-brick': 1, 'peasantlike': 1, 'Needless': 2, 'politic': 1, 'purring': 1, 'pretended': 3, 'overfriendly': 1, 'illiberal': 1, 'indescribable': 6, 'dime-store': 1, 'all-right': 1, 'tear-stained': 1, 'cavernous': 3, 'coloured': 3, 'Man-made': 1, 'dizzying': 2, 'weightless': 2, 'half': 55, 'easy': 166, 'seven-yearold': 2, 'two-year-old': 5, 'timbered': 1, 'white-crested': 1, 'overworked': 3, 'impure': 2, 'poor': 353, 'Nigerian': 2, 'uninhabited': 1, 'threatening': 9, 'Olmec': 2, 'quasi-government': 1, 'half-mythological': 1, 'stated': 1, 'ironical': 5, 'wh-w-white': 1, 'waxen': 1, 'gingerbread-brown': 1, 'prestigious': 3, 'Frivolous': 1, 'city-to-Cape': 1, 'extensive': 9, 'Poker': 1, 'pedestrian': 2, 'broiling': 1, 'pearl-handled': 1, 'Full': 3, 'bump-and-grind': 1, 'neighbouring': 7, 'cripple': 1, 'orgiastic': 1, 'masochistic': 1, 'red-painted': 1, 'internal': 9, 'vagrant': 5, 'Handsome': 2, 'Outside': 22, 'Excited': 1, 'thorny': 2, 'two-hundred-millimeter': 1, 'bluish': 4, 'monogrammed': 1, 'parted': 2, 'formative': 1, 'third-rank': 1, 'proven': 1, 'wet-eyed': 1, 'stillborn': 2, 'elites/corporative': 1, 'inopportune': 1, 'unresolvable': 1, 'high-class': 3, 'good-sized': 2, 'better-educated': 1, 'bond-servant': 2, 'detrimental': 2, 'cry-baby': 2, 'inclined': 4, 'blackish': 1, 'spic-and-span': 1, 'splintery': 1, 'ultra-nationalistic': 1, 'tuneless': 1, 'tectonic': 1, 'cha-chacha-ing': 1, 'Dreamlike': 1, 'redseamed': 1, 'classical': 11, 'Republican': 5, 'leprous': 1, 'anxious': 59, 'eldest': 4, 'gracious': 12, 'bureaucratic': 5, 'dim-witted': 1, 'absent': 13, 'impregnable': 1, '130th': 1, 'weak-looking': 1, 'little': 1961, 'blighted': 3, 'westward-flowing': 1, 'whitewashed': 1, 'late': 209, 'six-foot-eight-inch': 1, 'french': 1, 'middy-bloused': 1, 'coastal': 1, 'tired': 196, 'medium-nice': 1, 'Lean-muscled': 1, 'institutional': 2, 'unruly': 4, 'god-brother': 8, 'long-haired': 5, 'Oriental': 3, 'lock': 1, 'reddish-wet': 1, 'startled': 16, 'motherly': 5, 'bleary': 2, 'oral': 7, 'fluent': 3, 'Off-white': 1, 'self-hatred': 1, 'arrayed': 1, 'steady-like': 1, 'fair': 74, 'effective': 15, 'Jealous': 2, 'continual': 7, 'large-framed': 1, 'got-damn': 1, 'dagger-toothed': 1, 'pastel-coloured': 1, 'round-faced': 2, 'ashy': 1, 'thank-yous': 1, 'high-styled': 1, 'uncanny': 1, 'virtuous': 4, 'conspiratorial': 1, 'too-tight': 1, 'untied': 1, 'quiet-like': 1, 'unearthly': 2, 'rolly-polly': 1, 'fast': 80, 'mysterious': 30, 'child-like': 3, 'iron-visaged': 1, 'coed-professor': 1, 'consummate': 3, 'egotistical': 2, 'piled-up': 1, 'swannish': 1, 'True': 27, 'ninetyfive': 1, 'direct': 18, 'gifted': 6, 'spirited': 3, 'hopeless': 17, 'mousey': 1, 'Comforting': 1, 'penitential': 1, 'inane': 1, 'come-hither': 1, 'dressed-up': 2, 'shoed': 1, 'Young': 5, 'wrought-iron': 1, 'iambic': 1, 'unmatchable': 1, 'unaware': 8, 'balmy': 2, 'savage': 15, 'broke-dick': 1, 'gurgling': 2, 'many-sided': 1, 'blackbird': 2, 'climacteric': 1, 'prejudiced': 6, 'existent': 1, 'oval-shaped': 1, 'fart-fractured': 1, 'star-crossed': 1, 'darkest-skinned': 1, 'horrid': 4, 'High': 6, 'seeing-eye': 1, 'past': 171, 'gray-green': 3, 'satanic': 4, 'mad': 134, 'horizontal': 3, 'unpackageable': 1, 'shit-smelling': 1, 'seventyyear-old': 1, 'Swedish': 2, 'cuplike': 1, 'cashmere': 3, 'ass-kicking': 2, 'untrained': 1, 'fatty-fatty': 1, 'whirling': 13, 'Indian-looking': 1, 'bang-bang': 1, 'assumed': 1, 'okay': 182, 'INDIAN': 1, 'arch-fiend': 1, 'teetotal': 1, 'trapped': 1, 'triumphant': 9, 'snaky': 2, 'steel-grey': 1, 'whisky-sour': 1, 'twentyfive-cent': 1, 'carefree': 2, 'tough': 69, 'cerebrospinal': 1, 'head-shattering': 1, 'smoky': 12, 'fishy-eyed': 1, 'slimhipped': 1, 'we-we': 1, 'taking-you-into-my-confidence-old-boy': 1, 'notable': 3, 'keypunched': 1, 'revolving': 6, 'long-unused': 1, 'platinum-haired': 1, 'uncomplaining': 1, 'good-size': 1, 'Certain': 8, 'high-handed': 1, 'no-name': 1, 'anger-threatening': 1, 'grotesque': 10, 'West': 4, 'feisty': 1, 'conscience-stricken': 1, 'thyroidal': 1, 'thick-veined': 1, 'strategic': 6, 'handy': 5, 'ou-ou-out': 1, 'merrygo-round': 1, 'rheumatic': 2, 'stationary': 3, 'wham-bang': 1, 'steady': 54, 'medium-blue': 1, 'authentic': 6, 'button-down': 1, 'overjoyed': 2, 'solar': 1, 'Tfie': 1, 'battleship-gray': 1, 'beaded': 3, 'unpaid': 2, 'Clean': 8, 'furrowed': 2, 'Whole': 4, 'quaint': 5, 'unflappable': 1, 'uneatable': 1, 'thicktoothed': 1, 'olive-skinned': 1, '59th': 1, 'evil-eyed': 1, 'discordant': 1, 'clad': 3, 'speechless': 7, 'disturbed': 8, 'self-conscious': 5, 'periodic': 3, 'dusky': 1, 'fresh': 91, 'AfroAmerican': 1, 'one-horse': 1, 'faint-hearted': 1, 'courtly': 3, 'marabous': 1, 'undecided': 1, 'take-out': 2, 'laid-back': 1, 'self-confident': 1, 'teeny': 1, 'Dignified': 1, 'olive-colored': 2, 'nig-gah': 1, 'patience-practicing': 1, 'ideal': 8, 'conservative': 9, 'impressive': 4, 'unshaken': 1, 'humming': 4, 'pinched': 1, 'battery-powered': 1, 'blithing': 1, 'half-way': 1, 'off-colour': 1, 'dim-shouldered': 1, 'lock-up': 1, 'solicitous': 4, 'providential': 1, 'vacation-resort': 1, 'mean-spirited': 1, 'Hebrew': 3, 'fragmomentary': 1, 'embarrassed-for-you': 1, 'fuzzy': 5, 'stinging': 2, 'niggery': 1, '^': 8, 'bogish': 1, 'concepjionsassumed': 1, 'cocky': 4, 'plaintive': 4, 'sportive': 5, 'comin': 1, 'muy': 2, 'trumped-up': 1, 'nignt': 1, 'white-housed': 1, 'alarmed': 2, 'once-tight': 1, 'sanctified': 2, 'scared-to-death': 1, 'six-pointed': 1, 'Seven-Eleven': 2, 'fake': 11, 'King-Shuttlesworth': 1, 'Jolly': 1, 'stoned': 1, 'overnight': 6, 'ex-jazz': 1, 'frivolous': 2, 'funnel-shaped': 1, 'unwilling': 7, 'half-hushed': 1, 'complicated': 14, 'beglassed': 1, 'backless': 1, 'sedate': 2, 'back-and-forth': 1, 'two-toned': 1, 'yester-eve': 1, 'thematic': 2, 'thumbnail': 1, 'extemporaneous': 1, 'neurotic': 2, 'number-three': 1, 'prurient': 1, 'recurrent': 1, 'inverse': 1, 'la-dy': 1, 'disdainful': 4, 'obsolete': 4, 'Xhosa': 5, 'terrorist': 3, 'three-of-such-an-such': 1, 'maudlin': 1, 'long-sought': 1, 'mismatched': 2, 'loving': 33, 'millionfold': 1, 'downhome': 1, 'scared': 116, 'unaroused': 1, 'fringed': 4, 'dreary': 32, 'historic': 5, 'stupid': 87, 'clear': 131, 'far-fetched': 3, 'appropriate': 12, 'Pan-American': 1, 'high-test': 1, 'mixed': 21, 'week-old': 1, 'lowly': 7, 'ruthless': 6, 'glazed': 5, 'delirious': 2, 'proportioned': 1, 'open-ended': 1, 'unsubstantial': 2, 'long-legged': 2, 'boisterous': 4, 'smoked': 4, 'three-wheel': 1, 'deepdown': 1, 'dominant': 4, 'henceforth': 1, 'absentee': 1, 'preposterous': 3, 'diapered': 1, 'univarsaly': 1, 'domino-looking': 1, 'awful': 68, 'sharp': 80, 'bodiless': 1, 'double-duty': 1, 'eastbound': 2, 'Two-gun': 1, 'hundred-weight': 1, 'never-never': 1, 'awe': 1, 'sickening': 4, 'guttural': 5, 'studious': 2, 'thick-growing': 1, 'observable': 1, 'vegetarian': 1, 'long-gone': 1, 'voluminous': 2, 'inadequate': 10, 'hot': 315, 'LAST': 1, 'Twenty-fourth': 1, 'upstate': 3, 'silk-and-gold': 1, 'injured': 6, 'passloilate': 1, 'haphazard': 1, 'biblical': 2, 'purple': 30, 'conjunct': 2, 'next-to-Johnetta-theoldest': 1, 'disease-infested': 1, 'conditional': 1, 'wanton': 1, 'orange': 28, 'heart-rending': 1, 'self-relying': 1, 'other-worldly': 1, 'Frightening': 1, 'unaltered': 2, 'testy': 2, 'nostalgic': 3, 'airborne': 2, 'haunted': 2, 'sharp-faced': 1, 'frail': 13, 'majesty': 1, 'well-worn': 3, 'snotty': 2, 'unfailing': 2, 'epidemic': 1, 'supportive': 1, 'many-hued': 1, 'still-hot': 1, 'Abyssinian': 2, 'humped': 2, 'red-plaid': 1, 'inexpensive-looking': 1, 'colorless': 5, 'still-warm': 1, 'unutterable': 6, 'pain-wrinkled': 1, 'imaginative': 2, 'outdoor': 10, 'spry': 1, 'unmarried': 5, 'bushy-haired': 2, 'remote': 20, 'secure': 15, 'underlying': 1, 'low-rated': 1, 'leather-gloved': 1, 'blasphemous': 3, 'savvy': 1, 'STOP-the': 1, 'juvenile': 1, 'Canaanite': 1, 'citified': 1, 'late-working': 1, 'unchristianized': 1, 'lackluster': 2, 'interacial': 1, 'non-equality': 1, 'afrmade': 1, 'loathsome': 3, 'whispery': 2, 'outstanding': 1, 'unromantic': 1, 'snub-nosed': 1, 'weather-stained': 2, 'brown': 272, 'intoan': 1, 'concerted': 1, 'sans': 1, 'luminous': 5, 'mammy-made': 1, 'impenetrable': 4, 'consistent': 1, 'Funning': 1, 'y-y-y-you': 1, 'sociological': 3, 'boastful': 1, 'regulatory': 1, 'steel-enclosed': 1, 'stealthy': 2, 'burly': 4, 'White': 5, 'crownlike': 1, 'swift': 9, 'Fortunate': 1, 'eighteen-month-old': 1, 'convenient': 8, 'd-d-d-day': 1, 'matriarchal': 2, 'peeved': 5, 'non-novel': 1, 'subsidized': 1, 'split-second': 1, 'restless': 42, 'slitted': 1, 'supernormal': 1, 'nugatory': 1, 'lightning-swift': 1, 'prickly': 6, 'psychotic': 1, 'ugly-tempered': 1, 'classless': 1, 'time-card': 1, 'unexpected': 15, 'non-slaveholder': 1, 'deep-throated': 1, 'ersatz': 1, 'Polished': 1, 'fourth-rank': 1, 'vodka-inspired': 1, 'clank-clanking': 1, 'overburdened': 2, 'sand-fringed': 1, 'thatch-roofed': 5, 'glass-windowed': 1, 'calloused': 4, 'pugnacious': 1, 'holy': 115, 'sixteenth-century': 2, 'enough': 251, 'marvelous': 19, 'authorized': 1, 'Turkish': 2, 'conversational': 1, 'established': 14, 'saucer-eyed': 1, 'rigged-up': 1, 'verbal': 4, 'Twenty-seventh': 1, 'multilayered': 1, 'commensurate': 1, 'successive': 4, 'far-sighted': 2, 'untarnished': 1, 'combined': 1, 'gay': 15, 'exquisite': 8, 'cylindrical': 1, 'mud-clotted': 1, 'missionary': 6, 'froth-spattered': 1, 'stomach-turning': 1, 'flourishing': 1, 'pretend': 1, 'unofficial': 4, 'scary': 10, 'withholding-tax': 1, 'piteous': 3, 'melting': 1, 'upside-down': 7, 'freckle-faced': 1, 'cursed': 1, 'abrupdy': 1, 'deaf': 11, 'all-weather': 1, 'indebted': 3, 'joyous': 5, 'fifty-some': 1, 'Previous': 1, 'large-scale': 1, 'plain': 42, 'dental': 1, 'Two-legged': 1, 'crystal-clear': 3, 'frightful': 9, 'sex-mad': 1, 'upper-class': 1, 'showtime': 1, 'hideous': 15, 'plaster-slick': 1, 'occupied': 2, 'baseball-mitt-looking': 1, 'sequestered': 1, 'twenty-first': 1, 'rusty-leg': 1, 'Chilly': 1, 'fellow-mortal': 1, 'outfe': 1, 'paradoxical': 2, 'non-inmate': 1, 'Figure-ground': 1, 'Wonderful': 10, 'hysterical': 14, 'solid-gold': 1, 'four-footed': 1, 'untouchable': 5, 'wild': 134, 'preparatory': 1, 'uu': 1, 'backcountry': 1, 'unspecific': 1, 'fortuitous': 1, 'middle-class': 1, 'swarthy-cheeked': 1, 'multiple': 3, 'big-mouthed': 1, 'honest-to-goodness': 1, 'heavy-shouldered': 1, 'cloudless': 4, 'bloated': 6, 'political-social': 1, 'Haaaaaaa': 1, 'unreliable': 2, 'war-relief': 1, 'rainy': 9, 'friendless': 2, 'ample': 10, 'inVmost': 1, 'self-protective': 2, 'hushed': 13, 'wan': 6, 'deflated': 1, 'freezing-steamy': 1, 'proper': 64, 'unscrewed': 1, 'specific': 12, 'funny-like': 1, 'cleanshaven': 1, 'planned': 1, 'high-rise': 2, 'downy': 1, 'above': 11, 'DN': 1, 'liberaldemocratic': 1, 'ajar': 2, 'demeaning': 1, 'decorous': 2, 'midget': 2, 'ninning': 1, 'Prime': 2, 'mingled': 3, 'astonish': 1, 'repetitious': 1, 'whirlwind': 2, 'blended': 9, 'remarkable': 29, 'laudatory': 2, 'lengthwise': 1, 'unfortunate': 7, 'first-degree': 1, 'yin-yan': 2, 'iron-smell': 1, 'quick-draw': 1, 'turbaned': 1, 'race-related': 1, 'hardbacked': 2, 'outlandish': 3, 'next': 567, 'permissible': 2, 'vexing': 1, 'five-hundred-word': 1, 'transfigured': 1, 'stomped-down': 1, 'artificial': 1, 'unimproved': 1, 'probed': 1, 'bucolic': 1, 'taboo': 1, 'wind-seared': 1, 'brownish': 2, 'pet': 2, 'olfactory': 1, 'Bald': 2, 'Fiery': 2, 'mature': 8, 'laughing': 7, 'landless': 1, 'soothing': 18, 'reconcilable': 1, 'lustful': 2, 'housekeeping': 1, 'Mayan': 1, 'ambivalent': 3, 'acerbic': 1, 'lily-white': 1, 'sequential': 2, 'side': 10, 'heavy-set': 1, 'go-home': 1, 'twenty-degree': 1, 'song-and-dance': 1, 'ill-omened': 1, '18th': 2, 'used-to-be': 2, 'observant': 1, 'I-told-you-so': 4, 'Civil': 13, 'superfluous': 1, 'stylized': 1, 'wiry': 7, 'counter-terrorist': 1, 'suicidal': 4, 'annual': 7, 'limited': 7, 'red-handed': 1, 'claw-foot': 1, 'Cretaceous': 1, 'faint': 34, 'prefabricated': 1, 'one-page': 1, 'unblinking': 9, 'absent-minded': 3, 'even-handed': 1, 'combustible': 1, 'God-given': 2, 'discerning': 3, 'twenty-two-year-old': 1, 'explosion-looking': 1, 'noonday': 1, 'intimatley': 1, 'shady': 1, 'laborious': 2, 'world-wide': 6, 'Longish': 1, 'bandy-legged': 2, 'cut-glass': 2, 'slobbering': 1, 'long-wanted': 1, 'much': 863, 'sanitary': 1, 'Terrible': 3, 'night-school': 1, 'agricultural': 18, 'unbearable': 9, 'unwholesome': 2, 'candy-striped': 2, 'too-lean': 1, 'high-backed': 3, 'FREE': 1, 'curly-haired': 3, 'fine': 196, 'hands-on': 1, 'walkless': 1, 'Westernized': 1, 'silvery-green': 1, 'three-six-nine': 2, 'unsound': 2, 'landscaped': 1, 'leathern-bound': 1, 'vague': 24, 'dead-on': 1, 'radioactive': 1, 'New': 7, 'reverent': 1, 'juke-jointfor-a-night': 1, 'chatty': 1, 'a-sitting': 1, 'swampy': 1, 'impetuous': 2, 'veinte': 1, 'unnameable': 1, 'relentless': 8, 'so-called-civilized': 1, 'uncombed': 2, 'panoramic': 1, 'tasseled': 1, 'unharness': 1, 'adown': 1, 'Sangrado': 1, 'mathematical': 1, 'raglan-sleeve': 1, 'Natural': 3, 'revivalist': 2, 'palmroofed': 1, 'no-shaving': 1, 'notso-brave': 1, 'Belgian': 2, 'multi-racial': 2, 'unencumbered': 1, 'crowning': 1, 'crusty': 7, 'heartless': 4, 'lush': 8, 'built-in': 6, 'modern': 59, 'expendable': 3, 'maintained': 1, 'cooling': 2, 'unabashed': 1, 'piercing': 2, 'smudgy': 3, 'vindictive': 4, 'unthinkable': 3, 'Unmityof': 1, 'open-collar': 1, 'corncob': 2, 'left-wing': 3, 'taxi-light': 1, 'five-hour': 1, 'implacable': 3, 'childish': 20, 'spine-tingling': 2, 'obedient': 3, 'watchful': 9, 'social': 91, 'Neolithic': 1, 'browned': 1, 'high-five': 1, 'white-fleeced': 1, 'grass-covered': 1, 'growling': 1, 'helpless': 33, 'situational': 1, 'Rheba-static': 1, 'doublebreasted': 1, 'open-and-shut': 1, 'last-minute': 5, '79th': 4, 'exasperating': 2, 'asleep': 15, 'egomaniacal': 2, 'eight-yearold': 1, 'live-in': 1, 'identical': 13, 'folding': 15, 'stacked-deck': 1, 'latent': 6, 'seafaring': 1, 'pleated': 5, 'black-white': 1, 'definite': 3, 'shortish': 1, 'all-black': 5, 'Cute': 1, 'three-hundred-room': 1, 'Rural': 1, 'transformative': 1, 'umpteenth': 1, 'unaccountable': 5, 'funny-looking': 2, 'tomato-and-onion': 1, 'mad-looking': 2, 'mud-caked': 2, 'Marxian': 4, 'frantic': 15, 'Sudden': 4, 'abstruse': 1, 'sweaty': 11, 'voluptuous': 2, 'heavy-limbed': 1, 'unclean': 6, 'black-stockinged': 1, 'Scary': 3, 'disapproving': 1, 'nattily': 1, 'high-pointed': 1, 'extraordinary': 6, 'unshrouded': 1, 'stupendous': 4, 'cheap-looking': 2, 'financial': 7, 'complementary': 1, 'weary': 40, 'room-filling': 1, 'undying': 1, 'pre-mix': 1, 'Vietnamese': 6, 'god-like': 2, 'prior': 3, 'contemptuous': 4, 'mournful': 14, 'lovely': 50, 'itable': 1, '22nd': 2, 'midwest': 1, 'fraudulent': 2, 'inefficient': 1, 'agonizing': 2, 'misdirected': 1, 'panelled': 1, 'unforgiving': 5, 'seamed': 1, 'beaten': 4, 'inaudible': 2, 'hyphenated': 1, 'inactive': 1, 'calm': 58, 'crazy-eyed': 1, 'Reluctant': 1, 'race-riot': 1, 'ferocious-looking': 1, 'mous': 1, 'ordinary-looking': 1, 'third-person': 1, 'poodle-dog': 1, 'careworn': 1, 'unstrung': 3, 'swine-natured': 2, 'infertile': 1, 'funny': 149, 'darkening': 4, 'long-leg': 1, 'liberal': 13, 'rabid': 2, 'cruddy': 2, 'secretive': 1, 'Powerful': 1, 'overall': 10, 'Regimental': 1, 'indispensable': 3, 'stooped': 2, 'decisive': 3, 'unique': 12, 'infectious': 4, 'dogshit': 1, 'diverse': 1, 'flattering': 1, 'citylike': 1, 'open-collared': 1, 'troubled': 12, 'plastic-coloured': 1, 'Dazed': 1, 'triumphal': 1, 'sunburned': 1, 'hot-air': 1, 's.he': 1, 'singlebreasted': 3, 'unthinke': 1, 'da-da': 3, 'dense': 14, 'regular': 35, 'intricate': 14, 'Symphonic': 1, 'undiscriminating': 1, 'hydrostatic': 1, 'therapeutic': 1, 'blish': 1, 'newly-christened': 1, 'skillful': 1, 'well-groomed': 3, 'obsequious': 2, 'flash-forward': 1, 'reclining': 1, 'brown-haired': 1, 'Harsh': 1, 'built-up': 1, 'reflex': 3, 'poisonous': 9, 'reassuring': 2, 'Nazi': 2, 'Smooth': 2, 'handsome': 79, 'primary': 9, 'crocheted': 1, 'importandy': 1, 'silver-plated': 1, 'Narrow': 2, 'deep': 284, 'Indian-colored': 1, 'vacuous': 3, 'pseudo-intellectual': 1, 'Jewish': 57, 'reverend': 1, 'sick': 208, 'sensitive': 23, 'crooked-mouth': 1, 'GREAT': 1, 'he-no-kill-no-pain': 1, 'towering': 4, 'noiseless': 1, 'indisputable': 2, 'three-inch': 2, 'uncompleted': 1, 'half-snoring': 1, 'Consecrated': 1, 'eye-servant': 2, 'Sorry': 14, 'antiheroic': 1, 'parochial': 1, 'amateur': 3, 'atrocious': 1, 'ascetic': 3, 'bass-drum': 1, 'sheet-covered': 2, 'Breezeless': 1, 'passive': 4, 'gingerbread': 1, 'familiar-looking': 1, 'competent': 1, 'blue-black': 5, 'mashed': 4, '40-ton': 1, 'pigeon-toed': 1, 'syphilitic': 1, 'sacrilege': 1, 'half-wild': 1, 'undue': 2, 'inhuman': 15, 'crab-like': 2, 'pushy': 4, 'fair-haired': 1, 'pronounced': 5, 'ordinary': 45, 'bleak': 2, 'sub-branch': 1, 'silkcovered': 1, 'maid-servant': 2, 'self-evident': 2, 'undeniable': 2, 'ice-water': 1, 'yellowgreen': 1, 'eleventh': 2, 'imperturbable': 2, 'sooty': 8, 'lasting': 6, 'Crumbling': 1, 'unfilled': 1, 'windowless': 1, 'tacky': 2, 'duplicated': 1, 'theft-plagued': 1, 'unstraightened': 1, 'Stoic': 1, 'black-on-black': 1, 'reversible': 1, 'sixth': 9, 'self-created': 1, 'adult': 9, 'minimal': 3, 'momentous': 4, 'snide': 1, 'Virgoan': 1, 'five-year-old': 1, 'tabloid-sized': 1, 'bandaged': 1, 'horrible': 21, 'descriptive': 1, 'incomparable': 2, 'misshapen': 2, 'four-year-old': 2, 'coming-back-home': 1, 'half-animal': 1, 'flower-vased': 1, 'nauseating': 3, 'earing': 1, 'trippingly': 1, 'prayerful': 2, 'Different': 6, 'do-gooder': 1, 'blue-and-white': 1, 'nighttime': 7, 'homegrown': 1, 'flat-front': 1, 'exhilarating': 3, 'insatiable': 1, 'bisexual': 1, 'dumpy': 1, 'nigguh': 3, 'masturbating': 1, 'No-obody': 2, 'big-ass': 1, 'tight-fisted': 1, 'Anglo-Saxon': 11, 'keen': 11, 'happy-intime': 1, 'UluTal': 1, 'helpful': 5, 'da-damn': 1, 'mumblejumble': 1, 'digested': 2, 'light-skinned': 12, 'Familiar': 1, 'sadomasochistic': 1, 'S-rate': 1, 'maniacal': 3, 'two-motor': 1, 'melted': 1, 'simple': 90, 'norteamericano': 1, 'oncoming': 3, 'grooved': 1, 'unsaid': 2, 'windless': 1, 'brotherly': 3, 'troublesome': 4, 'birdlike': 2, 'Deaf': 1, 'tormented': 1, 'platonic': 1, 'beaucoup': 1, 'doglike': 1, 'uncivilized': 1, 'blue-butt': 1, 'rubbish': 4, 'thirty-day': 2, 'common': 90, 'various': 61, 'occupying': 1, 'tense': 13, 'unfathomable': 1, 'geological': 1, 'young': 642, 'steel-plated': 1, 'actual': 22, 'colonial-community': 1, 'change-of-life': 1, 'sour-sweet': 2, 'passionless': 1, 'aimless': 3, 'nondescript': 2, 'jubilant': 2, 'Unitary': 1, 'red-gold': 2, 'pagan': 2, 'black-haired': 1, 'in-country': 1, 'every-night': 1, 'riveting': 2, 'voluntary': 1, 'sorrow-laden': 1, 'forewarned': 1, 'voracious': 3, 'white-ivory': 1, 'pristine': 4, 'fugitive': 43, 'Clever': 1, 'defenseless': 1, 'Thin': 2, 'Indicative': 1, 'Mongolian': 2, 'grudging': 1, 'conscientious': 3, 'eighty-dollar': 1, 'tadpole-eyed': 1, 'Dial': 1, 'committed': 2, 'Gooney': 1, 'mdistinguishable': 1, 'beneficial': 2, 'Vague': 1, 'terrifying': 5, 'piquant': 1, 'timely': 2, 'Muni': 1, 'flagging': 1, 'juicy': 3, 'way-down-deep': 1, 'near-tragic': 1, 'nigh': 5, 'bobby': 1, 'wide-wide': 1, 'Catalan': 7, 'fixed': 4, 'sprightly': 1, 'vulgar': 4, 'branded': 1, 'longblonde-haired': 1, 'downward': 3, 'fancy-dress': 1, 'back-to-work': 1, 'store-front': 1, 'foreign-soiled': 1, 'money-hungry': 2, 'Senior': 1, 'Little-bitty': 1, 'huTworld': 1, 'coconut-flavored': 1, 'thankful': 11, 'still-rumpled': 1, 'required': 1, 'unsung': 1, 'socialistic': 2, 'perplexing': 3, 'shovel-size': 1, 'treacly': 1, 'skilful': 1, 'devilish': 10, 'perceptive': 6, 'feast': 1, 'portly': 1, 'Many-chambered': 1, 'hilarious': 1, 'antediluvian': 2, 'infinite': 20, 'located': 12, 'Maltese': 1, 'sliplike': 3, 'amusing': 11, 'John-crow': 1, 'grade-school': 2, 'hard-boiled': 1, 'available': 41, 'creative': 15, 'collective': 21, 'elusive': 6, 'parquet-floored': 1, 'liberating': 3, 'safe-at-last': 1, 'fascist-corporative': 1, 'Rolling': 5, 'sharp-featured': 1, 'landing-approach': 1, 'guilt-infested': 1, 'guilt-ridden': 1, 'fist-large': 1, 'light-weight': 1, 'vain': 44, 'big-jawed': 1, 'abstract': 7, 'eflective': 1, 'involuntary': 8, 'rational': 9, 'worried-looking': 1, 'anatomical': 2, 'worldtraveled': 1, 'stiffly-straight': 1, 'untangled': 1, 'tial': 1, 'bright-eyed': 2, 'haughty': 8, 'advantageous': 4, 'Thirty-second': 2, 'fire-red': 1, 'sinuous': 1, 'half-pretty': 1, 'hemorrhaging': 1, 'stuffy': 1, 'desirous': 1, 'Caught': 1, 'gut-bucket': 1, 'undefiled': 2, 'sarcastic': 5, 'lopsided': 3, 'blonde-lashed': 1, 'wondrous': 3, 'surplus': 4, 'well-sculpted': 1, 'one-sided': 1, 'underwater': 6, 'hemmed-in': 1, 'GOLDEN': 1, 'discoverable': 1, 'Beautiful': 20, 'matchless': 1, 'deep-felt': 1, 'Good-luck': 1, 'pleasurable': 2, 'wrong': 307, 'armed': 21, 'wraparound': 2, 'unexplained': 1, 'bold': 21, 'objective': 16, 'nerveless': 2, 'beat-up': 1, 'fresh-looking': 1, 'government-inspected': 1, 'one-man': 1, 'reflex': 1, 'mularter': 1, 'tot-ctt': 1, 'amiss': 2, 'unafraid': 1, 'skittish': 1, 'insubstantial': 1, 'uncelebrated': 1, 'kingly': 1, 'full-scale': 1, 'social-economic': 1, 'grammatical': 1, 'horn-rimmed': 4, 'newsweek': 1, 'Pregnant': 1, 'co-representative': 1, 'Somber': 1, 'continental': 3, 'competitive': 4, 'Six-foot': 1, 'Blue-denim': 1, 'native': 60, 'fiftyfive': 1, 'coffee-colored': 1, 'smashed-up': 1, 'watertight': 1, 'anti': 1, 'stereotyped': 4, 'son-of-a-bitches': 1, 'first-year': 1, 'gargantuan': 1, 'clothed': 2, 'iron-bound': 1, 'fifty-five': 1, 'freckled-face': 1, 'wistful': 3, 'lifelong': 4, 'perfecdy': 3, 'indestructible': 2, 'family-care': 1, 'close-range': 2, 'hush': 19, 'depraved': 2, 'premeditated': 3, 'half-fledged': 1, 'cheap': 57, 'Flower-garlanded': 1, 'lower-class': 2, 'desirable': 9, 'thundering': 1, 'loaded': 3, 'flat': 84, 'Hamitic': 1, 'functionary': 1, 'Insolent': 5, 'nigger-lip': 2, 'respectable': 19, 'accredited': 1, 'Surplus': 1, 'Fashionable': 1, 'rugged': 5, 'confusing': 5, 'trie': 1, 'Adult': 1, 'six-week': 1, 'eightyear-old': 1, 'red-bearded': 1, 'reductive': 1, 'throbbing': 7, 'torpid': 1, 'ano-rectal': 1, 'beatific': 1, 'lain': 1, 'six-month': 2, 'repetitive': 1, 'raw': 44, 'dog-tired': 2, 'cold-blooded': 5, 'measly': 4, 'measured': 1, 'scalding': 5, 'Political': 1, 'centered': 2, 'Delighted': 1, 'nonproductive': 1, 'hunger-swollen': 1, 'mill-stone': 1, 'syndicalist': 1, 'baptismal': 2, 'disturbing': 4, 'one-night': 2, 'shlumping': 2, 'silent': 118, 'dastardly': 2, 'hody': 1, 'hornrimmed': 2, 'tough-looking': 1, 'rid': 46, 'antithesis': 1, 'low-ceilinged': 1, 'amorous': 2, 'broken-hearted': 1, 'Imani': 2, 'IRRITABLE': 1, 'Careful': 2, 'sanguinary': 1, 'languid': 5, 'present-day': 3, 'Broken': 3, 'unsanitary': 1, 'screechy': 2, 'different': 280, 'prosperous': 10, 'ultra-aggressive': 1, 'diffuse': 2, 'indigenous': 1, 'suitable': 10, 'singin': 2, 'substandard': 1, 'jewelled': 1, 'nationalist': 4, 'Alma': 7, 'keener': 1, 'fifth': 20, 'Private': 4, 'impervious': 3, 'unremarkable': 4, 'Wrong': 1, 'goal-oriented': 1, 'Parlez-vous': 1, 'concrete': 29, 'in-person': 1, 'bantam-weight': 1, 'Franco-American': 1, 'mortal': 31, 'ingenious': 1, 'late-to-bed': 1, 'incumbent': 1, 'high-hat': 1, 'Fictional': 1, 'fourteen-year-old': 2, 'buck-naked': 1, 'industrial-traditionalist': 1, 'pipe-organ': 1, 'broad-beamed': 1, 'abhorred': 1, 'apparent': 10, 'nearby': 29, 'navigable': 1, 'pastoral': 4, 'wee-wee': 1, 'Polish': 5, 'thirty-two-footer': 1, 'feathery': 2, 'inalienable': 7, 'half-black': 1, 'biweekly': 1, 'Predictable': 1, 'buoyant': 1, 'asymmetrical': 1, 'three-way': 1, 'fourteenth': 2, 'barrel-shaped': 1, 'definable': 1, 'youto': 1, 'inappropriate': 4, 'prime-time': 1, 'red-and-white': 3, 'goddamnedest-looking': 1, 'I-want': 1, 'misleading': 2, 'butter-rich': 1, 'comfortable-looking': 1, 'particular': 47, 'Italian-Austrian': 1, 'bewildered': 12, 'Yellowish-gray': 1, 'cominaround': 1, 'punchy': 1, 'double-edged': 1, 'five-thousand-dollar': 1, 'slim': 40, 'two-mile': 2, 'next-toRicky-the-youngest': 1, 'liveried': 1, 'feigned': 3, 'Yellow-brown': 1, 'automatic': 14, 'unsolicited': 1, 'dogeat-dog': 1, 'Competent': 1, 'unreserved': 1, 'milky-white': 1, 'concentrated': 1, 'firstclass': 1, 'miserable': 50, 'sit-in': 5, 'stormy': 3, 'full-blooded': 3, 'worthless': 16, 'unsatisfied': 1, 'needle-thin': 1, 'stone-floored': 1, 'too-big': 1, 'Expensive': 1, 'branch-wide': 1, 'single-breasted': 2, 'Divine': 2, 'bronzed': 2, 'cheerful': 22, 'Local': 1, 'hairless': 1, 'Official': 1, 'circuitous': 1, 'Black-tile': 1, 'YOUR': 3, 'vigorous': 4, 'down-and-out': 1, 'heathenish': 2, 'suppressive': 1, 'well-studied': 1, 'thieving': 1, 'POLITE': 1, 'agrarian': 1, 'Devenant': 4, 'uncolorful': 1, 'sub-total': 1, 'Deegbeh': 35, 'scholar-like': 4, 'halfempty': 1, 'Son-of-a-bitching': 1, 'three-legged': 2, 'exact': 21, 'uneventful': 1, 'eleven-and-ahalf': 1, 'collared': 1, 'manvCan': 1, 'half-serious': 1, 'peppery': 2, 'Invisible': 1, 'hunky': 1, 'thirty-three-hundred-year-old': 1, 'half-out': 1, 'mid-leg': 1, 'Afraid': 11, 'pupilless': 1, 'Dutch': 4, 'rattiing': 1, 'Damned': 3, 'dark-haired': 5, 'all-around': 1, 'lugubrious': 1, 'attractive': 37, 'nonperishable': 1, 'yellow-shaded': 1, 'principal': 19, 'Sanskrit-disciplined': 1, 'sharp-starch-pressed': 1, 'redtile': 1, 'whiskey-laden': 1, 'staple': 1, 'parchment-bound': 1, 'half-cold': 1, 'year-round': 1, 'loose-limbed': 1, 'unputdownable': 1, 'French-Italian': 1, 'OK': 10, 'Pearls': 1, 'tobacco-stained': 1, 'short-striding': 1, 'story-telling': 1, 'outrageous': 6, 'Classified': 1, 'evidendy': 1, 'eye-opening': 1, 'two-hour': 2, 'eager': 35, 'Cursed': 1, 'kindhearted': 1, 'straight-backed': 1, 'eggshaped': 1, 'slanted-eyed': 1, 'queasy': 1, 'good-for-no': 1, 'promiscuous': 1, 'good-humoured': 1, 'stark': 12, 'not-so-beautiful': 1, 'spindly': 1, 'nimble': 7, 'condensed': 1, 'unwed': 1, 'king-size': 2, 'in-and-out': 3, 'low-lying': 2, 'red-polished': 1, 'filterable': 1, 'ablebodied': 1, 'sorrowing': 1, 'Multiple': 1, 'truthful': 1, 'wide-legged': 1, 'Amazing': 4, 'opportune': 4, 'plump': 18, 'unmarked': 2, 'half-closed': 1, 'undressed': 4, 'sparse': 4, 'shrewd': 9, 'builtin': 1, 'nomadic': 1, 'postwar': 1, 'half-dozen': 1, 'picturesque': 3, 't/they': 1, 'faucet': 1, 'clinched': 2, 'wilting': 1, 'sky-blue': 1, 'straggly': 2, 'pursuance': 1, 'trusty': 1, 'gossipy': 1, 'Afro-Cuban': 1, 'crafty': 5, 'sweet-sweet': 1, 'clipping': 4, 'abject': 2, 'aberrant': 1, 'light-brown': 6, 'enjoyable': 2, 'stratified': 1, 'ominous': 6, 'saddened': 1, 'youthful': 11, 'barbecued': 1, 'dissident': 1, 'eighteenth-century': 3, 'world-the': 1, 'alcoholic': 8, 'de-nutted': 2, 'clouded': 1, 'peachy': 1, 'redeeming': 1, 'unsaintly': 1, 'glorious': 20, 'crinkly-haired': 1, 'intrepid': 3, 'pathetic': 7, 'unsaved': 1, 'electoral': 4, 'spraddle-legged': 1, 'few': 672, 'Glad': 12, 'wide-mouthed': 1, 'pebble': 9, 'Next': 39, 'Overwhelming': 12, 'minuscule': 1, 'self-forgiving': 1, 'grunt-gasp': 2, 'unavailable': 2, 'dull': 23, 'souped-up': 1, 'fragile': 18, 'courteous': 4, 'Ragged': 2, 'interracial': 5, '57th': 5, 'rutted': 1, "ol'": 9, 'double': 43, 'unpaid-for': 1, 'Whorish': 3, 'straitly': 1, 'extraneous': 3, 'automobiletyre': 1, 'stunning': 6, 'enforced': 1, 'choral': 1, 'mid-nineteenth': 1, 'minor': 12, 'Routine': 1, 'fevered': 4, 'brownhaired': 1, 'two-sided': 1, 'tickled': 2, 'sexless': 2, 'whipping': 14, 'self-destroying': 1, 'bereft': 4, 'nigger-black': 1, 'hostile': 14, 'strong-faced': 2, 'breathtaking': 1, '80-zip': 2, 'a-scared': 1, 'jowly': 1, 'blue-steel': 1, 'musty': 10, 'sayest': 1, 'ultimate': 20, 'makin': 2, 'soul-shriveling': 1, 'quiescent': 2, 'comfy': 1, 'rereally-above-all-that': 1, 'yellow-gold': 2, 'middle-sized': 1, 'properfitting': 1, 'ceramic': 1, 'analogous': 1, 'rudimentary': 1, 'Innocent': 4, 'rampant': 5, 'Tired': 7, 'knotted': 1, 'giant-bellied': 1, 'well-born': 1, 'unlit': 7, 'Norwegian': 1, 'half-white': 3, 'off-color': 1, 'synchronous': 1, 'rustic': 2, 'honey-blond': 1, 'uncombable': 1, 'numbed': 2, 'chromed': 1, 'arable': 1, 'block-square': 1, 'held': 1, 'after-dinner': 1, 'Flexible': 1, 'amazing': 5, 'congratulatory': 3, 'white-wall': 1, 'lamp-light': 1, 'not.hungry': 1, 'tantalizing': 4, 'twentyfive': 3, 'wicker-wrapped': 1, 'umm-ou-ummm': 1, 'tapered': 1, 'thatched': 14, 'sassy': 3, 'rain-soaked': 1, 'Buddhistic': 1, 'Starched': 1, 'Sagittarian': 1, 'light-green': 1, 'British': 27, 'Irritated': 1, 'ball-sized': 1, 'crisp': 19, 'Keynesian': 1, 'de': 4, 'mechanical': 29, 'omnipotent': 7, 'forced': 6, 'breakbone': 1, 'nonwhite': 7, 'upward': 9, 'improved': 1, 'self-congratulatory': 1, 'leather-scented': 1, 'cosmic': 2, 'dry-weather': 1, 'opportunistic': 1, 'weekly': 7, 'negro1d': 1, 'precious': 42, 'Impeccable': 1, 'geopolitical': 1, 'high-sounding': 1, 'tall': 239, 'dreamless': 1, 'indistinct': 4, 'hardheaded': 3, 'fixed': 2, 'restful': 1, 'peculiar-looking': 1, 'night-lit': 1, 'uncertain': 20, 'ribboned': 1, 'one-letter': 1, 'ice-cold': 10, 'salt-stained': 1, 'unfamiliar': 6, 'Viennese-style': 1, 'fettered': 1, 'unselfish': 2, 'gold-trimmed': 1, 'Scotch-Irish': 2, 'thin-stemmed': 1, 'bended': 2, 'semantic': 2, 'annoyed': 13, 'ineffectual': 4, 'unanimous': 1, 'criminal': 11, 'out-of-sight': 1, 'huge': 131, 'one-legged': 1, 'thirtyone': 1, 'disgusting': 14, 'steepled': 1, 'neighboring': 1, 'unscheduled': 1, 'corny': 5, 'yellow': 112, 'uncontrollable': 5, 'anti-class': 1, 'paddy': 15, 'sta-sta-starting': 1, 'very': 42, 'supercharged': 1, 'nude': 19, 'light-headed': 1, 'wire-meshed': 1, 'unkindly-visaged': 1, 'someplace': 2, 'celebrated': 3, 'cramped': 7, 'reminiscent': 3, 'sceptical': 1, 'oly': 4, 'paper-thin': 2, 'ripe': 11, 'newfangled': 1, 'arbitrary': 2, 'dexterous': 14, 'nother': 1, "'cause": 2, 'unifying': 1, 'archetypal': 1, 'soft-talking': 2, 'supposed-to-be-bad': 1, 'Ninety-sixth': 1, 'Strict': 1, 'dismayed': 2, 'concerned': 18, 'Rough': 3, 'martial': 3, 'infernal': 8, 'rosy': 2, 'tingly': 2, 'far-far': 5, 'Keligious': 1, 'flowery': 1, 'snaggled': 1, 'interrupted': 4, 'forthcoming': 5, 'eight-ounce': 1, 'brother-and-sister-and-momma-and-daddy': 1, 'low-level': 1, 'energetic': 1, 'related': 18, 'Frayed': 1, 'sunken': 7, 'marble-topped': 2, 'productive': 16, 'well-formed': 2, 'handcuffed': 1, 'false-tongued': 1, 'teen-age-looking': 1, 'shredded': 2, 'mealymouthed': 1, 'Stylish': 1, 'falling-down': 1, 'ungodly': 4, 'convincing': 7, 'tearless': 2, 'Grecian': 1, 'wishful': 3, 'Long-mouth': 1, 'well-acquainted': 1, 'hydrocyanic': 1, 'Slim': 1, 'irresistible': 12, 'irrefragable': 2, 'nonvenomous': 1, 'gray-colored': 1, 'dauntless': 1, 'Apparendy': 1, 'ten-million-buck': 3, 'departmental': 3, 'incongruent': 1, 'gentle': 49, 'half-welled': 1, 'Dizzy': 1, 'leaden': 1, 'daffy': 1, 'filterless': 1, 'chaotic': 5, 'laughable': 1, 'capable': 40, 'streamlined': 2, '92nd': 1, 'disorganized': 1, 'violet-colored': 1, 'tongue-dampened': 1, 'underground': 11, 'featherless': 1, 'extra': 59, 'well-planned': 1, 'enraged': 2, 'jelly': 1, 'unfavourable': 2, 'Ashen': 1, 'gilded': 4, 'heliocentric': 1, 'dark-brown': 6, 'philanthropic': 4, 'expressive': 2, 'pathless': 1, 'valet': 1, 'fruit-luscious': 1, 'Wh-wh-what': 2, 'pessimistic': 2, 'low-down': 1, 'impoverished': 3, 'west': 3, 'floor-to-ceiling': 1, 'white-uniformed': 1, 'inimical': 1, 'global': 2, 'horny': 2, 'three-cornered-sail': 1, 'unfit': 2, 'every-which-way': 5, 'slave-trader': 1, 'canine': 1, 'Awe-struck': 1, 'fragmented': 4, 'Bold': 1, 'wealthy': 18, 'shadow-like': 1, 'East': 2, 'all-un-American': 1, 'deficient': 1, 'wicked': 29, 'blank-eyed': 1, 'eternal': 21, 'proscribed': 2, 'grass-woven': 2, 'Cyclic': 1, 'half-darkened': 2, 'jointed': 1, 'spiteful': 3, 'nestled': 1, 'genial': 2, 'Multi-colored': 1, 'ripply': 1, 'wTld': 1, 'counter-positive': 1, 'last': 774, 'day-old': 1, 'yellow-sanded': 1, 'fleshly': 2, 'midfield': 1, 'afraid': 244, 'substantial': 6, 'stingy': 2, 'entertaining': 4, 'put': 1, 'Indo-Chinese': 2, 'unreasonable': 7, 'phlegmy': 3, 'torn-up': 1, 'wonderful': 86, 'la-di-da': 1, 'amputated': 2, 'five': 3, 'ambitious': 5, 'unforgotten': 1, 'Arab': 3, 'compassionate': 6, 'clamoring': 1, 'overjoy': 1, 'spiderwide': 1, 'hooded': 6, 'spurious': 1, "n'tgive": 1, 'searing': 3, 'Fertile': 1, 'soul-stirring': 1, 'armour-bearer': 2, 'braless': 1, 'not-having': 1, 'straight': 76, 'hard-as-theworld': 1, 'nappy': 12, 'vivid': 14, 'eerie': 15, 'furtive': 3, 'substructural': 1, 'depressed': 16, 'college-looking': 1, 'British-made': 1, 'unpenned': 1, 'bloodshot': 4, 'saturated': 1, 'ill': 11, 'proletarian': 3, 'durable': 1, 'Sexy': 1, 'red-faced': 6, 'hollow-jawed': 1, 'leisurely': 14, 'sorry': 258, 'exclamation': 1, 'lowered-eyelid': 1, 'airless': 1, 'well-spoken': 1, 'Blond': 2, 'steep': 10, 'polysyllable': 1, 'hell-burning': 1, 'derogatory': 2, 'iced': 9, 'busted': 3, 'uncut': 1, 'hummed': 1, 'punctual': 1, 'theoretical': 6, 'straight-set': 1, 'rough-lined': 1, 'niaa': 1, 'inch-per-year': 1, 'need-a-shave': 1, 'uftnost': 1, 'ornamental': 1, '113th': 1, 'dirt-proof': 1, 'sulky': 1, 'aboveground': 2, 'self-sufficient': 2, 'rough-sounding': 1, 'Canadian': 3, 'outspoken': 8, 'longtime': 2, 'four-twenty': 1, 'ginkgo': 1, 'leopard-skin': 1, 'egalitarian': 4, 'Steady': 3, 'right': 525, 'effectual': 3, 'invisible': 43, 'statue-like': 2, 'dryish-tired': 1, 'undismayed': 1, 'white-sand': 1, 'General': 1, 'ill-founded': 1, 'wall-to-wall': 3, 'high-yeller': 2, 'seventeenth': 1, 'unvarnished': 1, 'Anglo-Western': 1, 'untimely': 2, 'pick-up': 2, 'full-out': 1, 'middle': 42, 'unseeing': 1, 'inflexible': 1, 'indeterminate': 2, 'machine-gun': 2, 'glib': 1, 'sadistic': 4, 'stoutish': 1, 'impious': 4, 'flower-gardened': 1, 'good-natured': 5, 'smockish': 1, 'wellspaced': 1, 'splendid': 15, 'three-piece': 3, 'inviolate': 1, 'leather-jacketed': 1, 'storied': 1, 'store-bought': 1, 'proverbial': 1, 'rich': 160, 'several': 193, 'Unmarked': 12, 'African-American': 2, 'quarterly': 1, 'Thursday-night': 1, 'blood-soaked': 3, 'freedom-fight': 1, 'rheumy': 1, 'brute': 7, 'classic': 12, 'silty': 1, 'checkered': 2, 'near': 28, 'theological': 2, 'wordless': 2, 'expiatory': 1, 'morbid': 14, 'little-girl': 2, 'home-canned': 1, 'wide-eyed': 7, 'natural-bor': 1, 'scrubbed': 3, 'city-wide': 2, 'Penitent': 1, 'cutesy-poo': 1, 'military-industrial-complex-based': 1, 'cleated': 1, 'tear-filled': 1, 'low-placed': 1, 'light-blue': 2, 'astonishing': 2, 'spotty': 2, 'considerable': 16, 'Detailed': 1, 'Polish-German': 1, 'silken': 6, 'grown': 17, 'flustered': 4, 'messy': 5, 'freedom-seeking': 1, 'Mindful': 1, 'welldeveloped': 1, 'ev-ev-every': 1, 'drunk-sick': 1, 'Boeing-produced': 1, 'Ethnic': 1, 'cerebral': 1, 'Telepathic': 1, 'turgid': 2, 'erstwhile': 1, 'perfect': 142, 'second-class': 2, 'rainbowed': 2, 'wayward': 1, 'knowledgeable': 6, 'grassy-margined': 1, 'underslung': 1, 'purposeful': 5, 'interstate': 2, 'hell-fire': 2, 'downtrodden': 2, 'cherrychocolate': 1, 'homely': 4, 'oblong': 2, 'phantom': 7, 'addle-minded': 1, 'four-foot-tall': 1, 'horror-stricken': 2, 'enthusiastic': 8, 'Long-distance': 1, 'paved': 3, 'YOUNG': 2, 'fertile': 4, 'antisocialist': 3, 'ere': 1, 'shiftless': 2, 'slate-bed': 1, 'bullet-spewing': 1, 'completest': 2, 'prime': 12, 'redtiled': 1, 'honest': 59, 'unendurable': 1, 'Slim-backed': 1, 'quick-brained': 1, 'prone': 4, 'musky-scented': 1, 'temperance': 1, 'green-and-red-trimmed': 1, 'physic': 1, 'spatial': 1, 'prepaid': 1, 'perilous': 2, 'sadlike': 1, 'distant': 45, 'neophyte': 1, 'featured': 1, 'traditional': 25, 'liberated': 6, 'angled': 1, 'angelic': 4, 'thoughtful': 13, 'potted': 1, 'Latin': 8, 'Additional': 1, 'bright-appareled': 1, 'first-year-and-a-half': 1, 'benign': 3, 'craggy': 1, 'deliberate': 5, 'placid': 2, 'Compulsive': 1, 'tired-looking': 1, 'slumpshouldered': 1, 'midbound': 1, 'youngish': 3, 'drunk': 159, 'part-time': 15, 'Jamaican': 7, 'Stricken': 1, 'unshared': 1, 'Put': 2, 'politicaleconomic': 1, 'angered': 2, 'legendary': 6, 'audacious': 1, 'Unthinkable': 1, 'Physical': 1, 'grieving': 2, 'justifiable': 2, 'stiff': 53, 'Primary': 1, 'illegal': 10, 'black-and-tan': 1, 'unhallowed': 3, 'unsteady': 6, 'diabolic': 2, 'Unbelievable': 4, 'clerical': 7, 'mistaken': 6, 'full-service': 1, 'redheaded': 10, 'shackled': 1, 'squint-closed': 1, 'biophysical': 2, 'sisterly': 2, 'individualistic': 1, 'Municipal': 1, 'weighty': 2, 'prostrate': 3, 'elvish': 3, 'exacdy': 6, 'Lousy': 2, 'gringo-owned': 1, 'hurry-up': 1, 'blond-blond': 1, 'spidery': 1, 'inch-wide': 1, 'tie': 1, 'sun-tanned': 1, 'maledominated': 1, 'repugnant': 2, 'refreshed': 1, 'conjectural': 2, 'Tall': 8, 'corresponding': 9, 'Hippocratic': 1, 'bare': 104, 'accidental': 3, 'intrinsic': 3, 'bare-legged': 2, 'shriveled-up': 1, 'rebellious': 4, 'perfumed': 8, 'high-pitched': 3, 'Uptown': 1, 'unseemly': 3, 'educational': 13, 'sovereign': 3, 'mountainous': 3, 'refried': 1, 'unlawful': 1, 'prideful': 1, 'parable': 2, 'shameless': 2, 'still-fresh': 1, 'Deep-deep': 1, 'battered': 10, 'heedless': 1, 'characterless': 1, 'argumentative': 1, 'different-sized': 1, 'married': 46, 'ostensible': 1, 'uninstructed': 1, 'imperialist': 6, 'baby-like': 1, 'ethereal': 10, 'ironic': 1, 'creamy': 2, 'piratous': 1, 'spiked': 3, 'keen-featured': 1, 'much-desired': 1, 'clownish': 1, 'breathless': 7, 'eat-in': 1, 'grizzled': 4, 'blustering': 3, 'armorial': 3, 'wallto-wall': 1, 'bassest': 1, 'massive': 34, 'Four-thirty': 1, 'noble': 18, 'coming-home': 1, 'blatant': 2, 'TRITE': 1, 'respected': 5, 'corroborating': 2, 'cliff-high': 1, 'droopy-eyed': 1, 'knife-sharp': 1, 'small-bore': 1, 'Harlem-and': 1, 'eloquent': 7, 'all-day-long': 1, 'clean': 131, 'solid': 48, 'Fresh': 7, 'uncluttered': 2, 'proprietary': 1, 'soft': 201, 'corrupt': 5, 'duty-bound': 2, 'ddamn': 1, 'Common': 2, 'ary': 1, 'orange-flamed': 1, 'congregated': 1, 'inward': 9, 'incomplete': 2, 'chronological': 2, 'ripening': 1, 'fecund': 1, 'Goddamn': 35, 'pulled-together': 1, 'hopeful': 8, 'adverse': 6, 'undeclared': 1, 'open': 444, 'prompt': 1, 'Outraged': 1, 'subtile': 2, 'presentable': 2, 'shit-stained': 1, 'believable': 2, 'Soundless': 1, 'perpetual': 11, 'thorough': 7, 'disciplined': 7, 'drastic': 4, 'instinctive': 8, 'accented': 1, 'rear': 15, 'Matisse-like': 1, 'wing-tipped': 1, 'puritanical': 2, 'black-and-white': 1, 'son-of-a-bitchr': 1, 'monotonous': 4, 'unprovoked': 1, 'hard-winded': 1, 'lilting': 3, 'fried': 10, 'romantic': 16, 'laughing-gassed': 1, 'porous': 2, 'snow-white': 4, 'Found': 1, 'inner-city': 1, 'fervent': 5, 'satiny': 1, 'funny-funny': 1, 'heart-piercing': 1, 'trusting': 2, 'detailed': 2, 'red-bricked': 1, 'puppetlike': 1, 'secular': 1, 'getting-up': 1, 'body-building': 1, 'contemptible': 1, 'contrite': 2, 'intensive': 5, 'belt-length': 1, 'anguished': 1, 'right-hand': 3, 'worshipping': 1, 'goddam': 4, 'challenging': 2, 'pureblooded': 1, 'thousandth': 2, 'unanswerable': 1, 'iron-barred': 1, 'resounding': 2, 'civic': 4, 'Harrison-Halsted': 3, 'three-room': 2, 'nose-noght': 1, 'anti-personnel': 1, 'strangest': 1, 'unwonted': 3, 'Disgusting': 1, 'rude': 16, 'Wolof': 9, 'after-work': 1, 'Dreamy': 1, 'coconut-burdened': 1, 'brackish': 1, 'double-checking': 1, 'antiaircraft': 1, 'dissimilar': 1, 'broader-type': 1, 'cut-up': 1, 'formless': 3, 'efficient': 11, 'corporal': 2, 'consecutive': 2, 'man-made': 3, 'envious': 7, 'differentest': 1, 'only': 478, 'awake': 9, 'unremitting': 1, 'conventional': 2, 'tributary': 1, 'water-stained': 1, 'inconstant': 1, 'white-hot': 1, 'asthmatic': 1, 'soft-winged': 1, 'double-checked': 1, '4he': 1, 'hissing': 6, 'high-priced': 1, 'Conscious': 1, 'scratchy': 1, 'foul': 22, 'hoo-doo': 2, 'male-descended': 2, 'helter-skelter': 2, 'lazy': 31, 'nearsilent': 1, 'hurt-looking': 1, 'imaginable': 4, 'iron-nerved': 1, 'high-ranking': 1, 'crude': 15, 'Amer-Indian': 1, 'fragrant': 4, 'junior': 5, 'all-white': 3, 'rare': 32, 'inconceivable': 1, 'body-hugging': 1, 'sinless': 2, 'instructive': 1, 'immature': 5, 'muscle-bound-looking': 1, 'requisite': 3, 'ringed': 4, 'pampered': 3, 'empty-pocketed': 1, 'Boy-Scout': 1, 'light-colored': 2, 'creditable': 1, 'exemplary': 4, 'unbe': 1, 'soggy': 4, 'high-speed': 1, 'astral': 1, 'uncontrolled': 2, 'foamy': 6, 'seaside': 1, 'quick-like': 1, 'Spare': 2, 'unaccustomed': 6, 'clumsytongued': 1, 'emerald-green': 1, 'iron-poster': 1, 'bethought': 1, 'authoritarian': 16, 'postured': 2, 'ill-fitting': 3, 'praiseworthy': 1, 'well-fed': 2, 'Herculean': 1, 'ejidal': 3, 'brooding': 9, 'trustworthy': 3, 'year-end': 1, 'scientific-socialist': 3, 'eighty-fiveyear-old': 1, 'peach-colored': 1, 'free-lance': 1, 'mutual': 22, 'bustling': 3, 'literate': 3, 'scum-swilling': 1, 'timid': 6, 'excited': 14, 'over-ocean': 1, 'fakelike': 1, 'unsavory': 4, 'darkbrown': 2, 'thoughtless': 3, 'washed-up': 3, 'approximate': 1, 'curtained': 2, 'meagre': 9, 'bumpty-bump': 1, 'united': 8, 'leetle': 2, 'certain': 164, 'twenty-year': 1, 'palpable': 5, 'mangled': 1, 'suspectible': 1, 'consequent': 1, 'almond-shaped': 1, 'number-one': 1, 'nightgown': 1, 'secluded': 6, 'spotted': 9, 'untutored': 2, 'possible': 125, 'Limited': 1, 'whip-scarred': 1, 'n1g-gah': 1, 'organized': 1, 'Hardened': 1, 'unlighted': 1, 'slapdash': 1, 'double-barrel': 1, 'Hispanic': 6, 'heavyweight': 4, 'long-necked': 1, 'hazy': 3, 'five-hundred-peso': 1, 'shined': 1, 'not-too-nice': 1, 'underhanded': 2, 'unrelieved': 1, 'lowlife': 1, 'two-storey': 5, 'unlikely': 5, 'insurrectionary': 2, 'hot-headed': 1, 'tree-of-life': 1, 'Semi-full': 1, 'promissory': 1, 'daytime': 7, 'Brilliant': 3, 'gray-haired': 26, 'countless': 9, 'standing': 2, 'copper-coloured': 1, 'third-rate': 1, 'indirect': 4, 'pot-bellied': 3, 'pure': 50, 'hipped': 1, 'Devilish': 1, 'salt-eroded': 1, 'white-deficient': 1, 'winning': 1, 'unrarified': 1, 'unamiable': 3, 'reasonable': 15, 'tomato-and-lettuce': 1, 'Ashamed': 4, 'close': 103, 'three-year': 1, 'transcontinental': 1, 'nondiseased': 1, '8o-proof': 1, 'mechanized': 8, 'affectionate': 7, 'starded': 1, 'gratuitous': 1, 'drowsy': 3, 'pea-brain': 1, 'unconcerned': 8, 'peace-loving': 1, 'militant': 9, 'anti-democratic': 1, 'flat-chested': 1, 'rimmed': 2, 'opinion-molding': 1, 'undeserving': 1, 'troupe': 1, 'immeasurable': 1, 'Slick': 1, 'psychical': 1, 'yearn': 1, 'foot-stomping': 1, 'Unable': 3, 'merciless': 5, 'after-thought': 1, 'two-dollar': 1, 'cowardly': 7, 'boothlike': 1, 'disengaged': 1, 'fouled-up': 1, 'convulsive': 3, 'unfair': 9, 'book-keeping': 1, 'material': 6, 'sightless': 4, 'oriental': 2, 'priestly': 6, 'chere': 1, 'depressing': 7, 'foolish': 28, 'blood-and-power': 1, 'fruitful': 3, 'working-class': 7, 'up-and-down': 1, 'limber': 1, 'jet-propelled': 2, 'Basic': 1, 'blue-collar': 2, 'hot-looking': 1, 'nippy': 1, 'DUE': 1, 'fire-escape': 1, 'excellent': 15, 'long-range': 4, 'a-a-about': 1, 'influential': 3, 'forty-year-old': 1, 'aloof': 6, '7th': 5, 'inquisitive-like': 1, 'susceptible': 2, 'fluffy': 1, 'Joking': 1, 'twofold': 2, 'sodden': 2, 'behoped': 1, 'whooping': 1, 'lizardy': 1, 'Fuzzy': 1, 'prison-door': 3, 'promised': 5, 'half-dressed': 1, 'Crude': 1, 'commando': 1, 'have-not': 1, 'initialled': 1, 'May-lahn-juh': 1, 'padded': 3, 'ferocious': 4, 'Confused': 2, 'exorbitant': 1, 'historical': 31, 'Military': 2, 'proclaimed': 1, 'dozy-eyed': 1, 'glum': 2, 'gold-embossed': 1, 'beggarly': 1, 'milk-white': 2, 'menacing': 2, 'dormant': 2, 'delicious': 22, 'far-flung': 3, 'Seventy-first': 1, 'wholesale': 3, 'As-as-ask': 1, 'out-of-power': 1, 'epicardial': 1, 'well-skilled': 1, 'upholstered': 1, 'blown-up': 2, 'twenty-thousand-dollar-a-year': 1, 'Unlisted': 1, 'ugly': 65, 'paunchy': 2, 'sensuous': 6, 'stiffled': 1, 'tremulous': 11, 'elegant': 16, 'open-minded': 1, 'peach': 2, 'fat': 138, 'gable': 1, 'sunscorched': 1, 'standardized': 1, 'law-abiding': 5, 'fat-headed': 1, 'fiend-like': 3, 'invalid': 7, 'affluent': 1, 'spasmodic': 2, 'do-gooding': 1, 'chaste': 2, 'incorruptible': 2, 'Attakapas': 5, 'after-hours': 1, 'in-between': 2, 'real-reaZ': 1, 'else': 38, 'smooth-talking': 1, 'hatless': 3, 'ingrained': 3, 'upper-middle-class': 1, 'protected': 2, 'Chilean': 2, 'Awful': 2, 'overpriced': 1, 'unstoppable': 1, 'pule': 1, 'cultivatable': 1, 'Voluptuous': 1, 'round-eyed': 1, 'northern': 16, 'cut-off': 1, 'furry': 2, 'mild': 20, 'jintne': 1, 'censorious': 1, 'leaf-strewn': 2, 'skinny': 37, 'Iused': 1, 'thin': 111, 'Honourable': 1, 'hyoid': 1, 'overjovial': 1, 'wine-colored': 1, 'long-trousers': 1, 'red-tile': 4, 'faithless': 1, 'untrackable': 1, 'happy-go-lucky': 1, 'cataclysmic': 1, 'arid': 6, 'three-hour': 2, 'correct': 24, 'unshadowable': 1, 'spectacular': 3, 'daddy': 43, 'Empty-headed': 1, 'uninhibited': 2, 'negative': 16, 'light-in-the-ass': 1, 'sexual': 18, 'preliminary': 4, 'sun-blackened': 1, 'Ancient': 3, 'oblique': 5, 'extry': 1, 'godawful': 3, 'diabetic': 1, 'inconvenient': 2, 'coy': 2, 'white-cheeked': 2, 'eflicient': 3, 'army-style': 1, 'choppy': 3, 'scrawny-necked': 1, 'platinum-sheathed': 1, 'softened': 1, 'charitable': 2, 'leering': 1, 'dubious': 1, 'unburied': 3, 'nice-smelling': 1, 'ten-second': 1, 'data-processed': 1, 'unscramble': 1, 'good-hearted': 1, 'Underground': 1, 'hypocritical': 10, 'unmingled': 1, 'homing': 1, 'financial': 9, 'high-school-aged': 1, 'burlesque': 1, 'goofy': 5, 'especial': 4, 'smelly': 4, 'modest': 14, 'undiscovered': 2, 'hind': 4, 'tedious': 3, 'Asian-Hispanic-Amer-Indian-Afro-American': 1, 'luxurious': 7, 'willing': 57, 'blue-gum': 1, 'rass-hole': 1, 'evocative': 1, 'chalked': 2, 'injurious': 1, 'sensational': 1, 'donkey-cart': 1, 'nough': 1, 'calico': 1, 'dishonest': 2, 'mediocre': 3, 'double-dip': 1, 'full': 312, 'high-stepping': 1, 'blind-sided': 1, 'panicky': 2, 'bushy-topped': 1, 'undercover': 1, 'spontaneous': 14, 'renowned': 5, 'con': 2, 'grayish': 1, 'nutty': 1, 'unmistakable': 4, 'INSUFFICIENT': 2, 'muscle-necked': 1, 'curly': 25, 'mottled': 3, 'mean-looking': 3, 'clear-seeing': 1, 'forlorn': 7, 'unachievable': 1, 'perfidious': 4, 'bottomless': 4, 'sallow': 2, 'swarthy': 4, 'affected': 1, 'generational': 1, 'be-be-beach': 1, 'unconvinced': 3, 'murderous': 6, 'moldy': 3, 'unmoving': 8, 'Christmas-y': 1, 'sun-filled': 1, 'daisy': 1, 'safe': 75, 'middle-of-night': 1, 'perk': 4, 'elliptical': 1, 'half-human': 1, 'upended': 2, 'makeshift': 3, 'independent': 17, 'Union-hall': 1, 'unfettered': 1, 'welcome': 26, 'Yellow-helmeted': 1, 'residential': 2, 'DuSable': 4, 'asexual': 1, 'crushed': 7, 'ex-military': 1, 'winter-time': 1, 'uh-huh': 1, 'grizzly': 3, 'uncountable': 2, 'hump-shouldered': 1, 'insular': 1, 'kissproof': 1, 'retributive': 1, 'inquisitional': 1, 'bonehead': 1, 'advertised': 1, 'Low-lying': 1, 'inaccessible': 1, 'lascivious': 2, 'palatial': 1, 'bloody': 42, 'unreasoning': 1, 'gris': 2, 'indolent': 1, 'protective': 10, 'olive': 15, 'made-up': 1, 'fringy': 1, 'definite': 12, 'comforting': 9, 'pitiless': 2, 'perjured': 1, 'dispassionate': 2, 'picture-perfect': 1, 'gentlemanly': 1, 'sporty': 2, 'Selective': 1, 'Persian-carpeted': 1, 'beat': 4, 'dangling': 4, 'Mexican': 113, 'diseased': 6, 'respectful': 7, 'well-fitting': 1, 'Goodbyegoodbyenicetohavehadyouonthetripandapleasant': 1, 'meantempered': 1, 'jittery': 1, 'winter-slicked': 1, 'Horrible': 2, 'china-blue': 1, 'pressing': 1, 'tear-gas': 5, 'twelve-year-old': 3, 'Worn': 1, 'So-and-so': 2, 'runaway': 22, 'oh-so-formal': 1, "li'l": 5, 'Protestant': 7, 'hollow': 24, 'reputed': 1, 'mindless': 6, 'heavy-looking': 1, 'utmost': 18, 'eastern': 7, 'you-all': 2, 'nether': 2, 'stuck-up': 1, 'derelict': 11, 'private': 126, 'cross-legged': 2, 'goddammed': 1, 'infamous': 5, 'out-avant': 1, 'Low': 9, 'huge-bladed': 1, 'hard': 455, 'unseen': 17, 'worshipful': 6, 'once-upon-a-time': 1, 'everyday': 9, 'nerve-gas': 1, 'unmindful': 1, 'deep-rose': 1, 'hip-length': 1, 'zombielike': 1, 'cash-register': 1, 'sunny': 13, 'unctuous': 2, 'Wondering': 4, 'Rainy': 1, 'airy': 12, 'untrustworthy': 1, 'clawlike': 3, 'polite-like': 1, 'floor-size': 1, 'Mexican-American': 1, 'frequent': 15, 'aerodynamic': 1, 'untidy': 1, 'generous': 23, 'unqualified': 2, 'adventurous': 1, 'beribboned': 1, 'facetious': 1, 'overfond': 1, 'preternatural': 4, 'tal': 1, 'silverish-looking': 1, '58th': 2, 'tortured': 15, 'heart-string': 1, 'terrestrial': 1, 'baby-white': 1, 'Top-heavy': 1, 'ironed': 1, 'three-storied': 1, 'tile-floored': 1, 'questionable': 4, 'wellpreserved': 1, 'lean-type': 1, 'puny': 3, 'crew-cut': 4, 'heedful': 1, 'reactionary': 9, 'last-six': 1, 'telescopic': 1, 'lunch-hour': 1, 'ivory-white': 1, 'Autonomous': 1, 'half-grown': 1, 'bullet-proof': 1, 'life-size': 3, 'honorary': 2, 'discontented': 2, 'whisperingly': 1, 'dat': 6, 'Mar-teen': 1, 'significant': 8, 'white': 1200, 'water-bottling': 1, 'Short': 2, 'almond': 1, 'fast-collecting': 1, 'inquisitive': 4, 'popular': 38, 'corned': 1, 'unheard': 3, 'Jaundiced': 1, 'amiable': 2, 'upcoming': 1, 'defiant': 2, 'occasional': 31, 'crook-tailed': 1, 'best-lit': 1, 'psychopathic': 3, 'lithe': 1, 'Wounded': 1, 'sober-hued': 1, 'bony-handed': 1, 'yellowbrown': 1, 'edible': 1, 'farcical': 2, 'penciled': 1, 'shedded': 1, 'poison-gas': 1, 'super-secret': 2, 'high-butt': 1, 'helluva': 11, 'winded': 1, 'scurrilous': 2, 'swishy': 1, 'triangular-shaped': 1, 'heinous': 4, 'yabah': 1, 'ignorant': 27, 'Sub-total': 2, 'tattoolike': 1, 'endocardial': 1, 'farmer-looking': 1, 'disgusted': 12, 'soulconsuming': 1, 'average-looking': 1, 'field-fresh': 1, 'transitory': 4, 'Unpublished': 1, 'Silly': 4, 'hard-to-make': 1, 'archaic': 1, 'murky': 6, 'riding-looking': 1, 'congenital': 1, 'Traditional': 1, 'libelous': 1, 'taxexempt': 1, 'middleclass': 2, 'Farmers-and': 1, 'final': 9, 'trim': 10, 'inexorable': 1, 'appealing': 1, 'impending': 5, 'foregoing': 3, 'degrading': 2, 'nonsectarian': 1, 'unforgettable': 2, 'I-Iis': 1, 'pitiful-ass': 1, 'downcast': 2, 'ass-end': 1, 'tight': 136, 'dry': 94, 'snapped': 1, 'polka': 1, 'petit-bourgeois': 2, 'amorphous': 1, 'much-needed': 1, 'perverted': 1, 'abashed': 1, 'humbler': 1, 'uncatchable': 1, 'attitudinal': 1, 'indifferent': 6, 'weak': 74, 'Star-spangled': 1, 'repulsive': 2, 'chintzy-looking': 1, 'funeral': 10, 'importantappearing': 1, 'reckless': 7, 'implicit': 4, 'unfriendly': 1, 'raggedy-looking': 2, 'hard-on': 1, 'Acapulco-style': 1, 'jolly': 3, 'ever-loving': 1, 'made-for-laughing': 1, 'white-robed': 1, 'dis': 4, 'inflated': 1, 'abusive': 1, 'lakeside': 1, 'onpleasant': 1, 'untempered': 1, 'Indiansliced': 1, 'glaring': 1, 'homesick': 2, 'run-down': 3, 'raucous': 4, 'wrinkly': 2, 'late-afternoon': 1, 'further': 43, 'civilian-type': 1, 'Yiddish': 3, 'communicative': 5, 'star-struck': 1, 'measureless': 1, 'Anglican': 6, 'geographical': 1, 'doleful': 1, 'incurable': 4, 'CONTEMPORARY': 1, 'Pre-mix': 1, 'formal': 15, 'Wondrous': 1, 'institutionalized': 2, 'CERTAIN': 1, 'prevalent': 1, 'stylish': 5, 'high-brow': 1, 'blasting': 1, 'environmental': 2, '1ll': 1, 'heated': 6, 'Aware': 1, 'gowned': 1, 'Brown': 6, 'systematic': 3, 'yellow-brick': 1, 'smooth-skinned': 1, 'pretty': 43, 'biopathic': 1, 'blued-steel': 1, 'nice': 368, 'sepia': 2, 'presidential': 3, 'unlined': 3, 'heartbroken': 2, 'mūn-frup': 1, 'Lead': 4, 'fifteen': 1, 'impermanent': 1, 'half-mad': 2, 'sorta': 1, 'dialogic': 1, 'yawnlike': 1, 'hieroglyphic': 2, 'unpacked': 3, 'disproportionate': 3, 'sissy': 1, 'needful': 3, 'still-open': 1, 'sharp-edged': 1, 'senile': 1, 'millionaire': 2, 'springy': 1, 'blond': 49, 'dependentlooking': 1, 'old-fashioned': 20, 'whiny': 2, 'provocative': 2, 'a-wanting': 1, 'sickle-cell': 1, 'liberal-left': 1, 'distressing': 1, 'hand-sized': 1, 'messed-up': 1, 'wheel-chair': 1, 'ridiculous': 17, 'abed': 1, 'Red-feathered': 1, 'drawn-out': 1, 'blood-stained': 1, 'Kevin-Beverly': 1, 'uneducated': 1, 'wide-cheekboned': 1, 'horrendous': 3, 'mental': 14, 'defined': 2, 'milady': 3, 'overcast': 2, 'ten-to-one': 1, 'high-powered': 2, 'Subtle': 1, 'fishy': 2, 'monitored': 1, 'twenty-five-footer': 1, 'peach-cheeked': 1, 'driedup': 1, 'allegorical': 3, 'strict': 6, 'triple': 11, 'distinguishing': 1, 'well-dressed': 4, 'industrious': 2, 'strained': 3, 'wet': 102, 'red-amber-green': 1, 'runty': 1, 'evasive': 1, 'serious': 153, 'off-base': 1, 'cloven': 1, 'nonseeing': 1, 'true': 271, 'sneaker-clad': 1, 'brown-black': 2, 'Freaky': 1, 'pop-up': 1, 'roomy': 1, 'to-night': 2, 'propped-up': 1, 'well-disciplined': 1, 'anti-immigrant': 1, 'Chinese': 23, 'devotional': 1, 'honeyed': 1, 'unperturbed': 2, 'nicoe': 2, 'Heavy': 8, 'atomic': 3, 'third-grader': 1, 'enlarged': 9, 'skilled': 6, 'Little': 139, 'three-step': 1, 'stamped': 2, 'limbed': 1, 'earthenware': 2, 'eventual': 3, 'complimentary': 1, 'wooded': 4, 'joyless': 1, 'leery': 6, 'niggah': 2, 'Informal': 1, 'restrained': 7, 'stylistic': 3, 'unintentional': 1, 'thorough-bred': 1, 'localized': 1, 'Liberian': 14, 'narcotic': 3, 'filthy': 45, 'anti-clockwise': 1, 'genocidal': 1, 'Impatient': 1, 'round-shouldered': 2, 'treasured': 1, 'washed': 1, 'terrible': 101, 'unconscionable': 1, 'dime-store-wigged': 1, 'overweight': 9, 'due': 49, 'alright': 4, 'distinguishable': 1, 'all-encompassing': 1, 'townlike': 1, 'unchanging': 2, 'medicinal': 1, '12-gauge': 1, 'tattered': 4, 'enormous': 18, 'discomfited': 1, 'innumerable': 8, 'insensible': 2, 'sketchy': 1, 'wide-brimmed': 2, 'fallow': 1, 'bogey-man': 1, 'freedom-dying': 1, 'expeditionary': 2, 'end-of-day': 1, 'daily': 60, 'geo-political': 1, 'physiological': 2, 'Working': 4, 'heart-stilling': 1, 'nnd': 1, 'bigoted': 2, 'cut-rate': 1, 'Goddamned': 4, 'out-of-style': 1, 'rectangular': 1, 'folkloric': 1, 'evenhanded': 1, 'Wonder': 11, 'separate': 39, 'sensory': 1, 'labyrinthine': 2, 'auspicious': 1, 'country-style': 1, 'ragged-edged': 1, 'corrective': 7, 'anticommunal': 1, 'deleterious': 1, 'Breathtaking': 1, 'steel-tasting': 1, 'wise': 61, 'glamorous': 2, 'permed': 1, 'gleeful': 3, 'many': 747, 'controlled': 4, 'dark-rimmed': 1, 'yuck-yuckyuck-we': 1, 'five-and-tencent': 1, 'down-to-earth': 3, 'yellowface': 1, 'Victorian': 1, 'manly': 6, 'whorled': 1, 'undemocratic': 1, 'cohesive': 1, 'semifrustrating': 1, 'innocuous-looking': 1, 'famished': 2, 'major': 25, 'stiff-backed': 2, 'sudScarlet': 1, 'futile': 7, 'disciplinable': 1, 'tumultuous': 2, 'emotional': 12, 'You-all': 2, 'present': 146, 'prismatic': 2, 'impromptu': 1, 'stuttering': 1, 'greying': 5, 'clean-cut': 1, 'cloistered': 1, 'limitless': 3, 'decent': 70, 'rednecked': 1, 'pursed': 1, 'ready-to-fight': 1, 'taloned': 1, 'quixotic': 1, 'joint': 20, 'lengthy': 2, 'unprepared': 5, 'life-support': 2, 'unable': 46, 'Pitiless': 1, 'still-distant': 1, 'revere': 1, 'advanced': 7, 'affricative': 2, 'motionless': 20, 'fractured': 3, 'itchy': 1, 'well-stocked': 1, 'perceptible': 2, 'leaded': 1, 'unsteadily': 2, 'naive': 6, 'blue-green': 5, 'frenzied': 5, 'anti-slavery': 2, 'kitchen-wet': 1, 'drooping': 2, 'bodily': 13, 'mashed-potato': 1, 'roughly-hewn': 1, 'land-side': 1, 'eighteenth': 1, 'unlucky': 3, 'below-living': 1, 'wonted': 2, 'prolific': 1, 'unrewarding': 2, 'civilized': 20, 'broad-shouldered': 3, 'dirt-and-stone': 1, 'party-line': 1, 'naughty': 16, 'flower-decked': 1, 'potbellied': 4, 'adolescent': 5, 'asinine': 1, 'ballet': 4, 'overt': 4, 'objectively-its': 1, 'Spanish-American': 1, 'twenty-sixth': 1, 'herj': 1, 'ruby': 3, 'bird-like': 2, 'black-cherry-lipped': 1, 'requital': 2, 'unpitying': 1, 'impish': 3, 'tricky': 3, 'stand-up': 1, 'Premature': 1, 'Defenceless': 1, 'philosophical': 2, 'Moorish': 1, 'sensible': 11, 'tolerable': 2, 'sleepylike': 1, 'mum': 1, 'hollow-eyed': 2, 'seventh': 10, 'despairing': 1, 'hurrah': 1, 'resplendent': 1, 'great-granddaughter': 1, 'supper-time': 1, 'conical': 2, 'obscure': 8, '150-millimeter': 1, 'project-people': 1, 'uncompromising': 1, 'vengeful': 4, 'excessive': 3, 'avaricious': 1, 'inquisitorial': 1, 'emblem-arm': 1, 'sonny-boy': 1, 'shitty': 3, 'blue-gray': 4, 'hip-swinging': 1, 'overstuffed': 3, 'rattrap': 1, 'iridescent': 4, 'tin-roofed': 2, 'Noooooooo-ooo-ooo-body': 1, 'cream-colored': 1, 'sedentary': 1, 'governmental': 3, 'meeaaan': 1, 'Anxious': 2, 'brand-new': 12, 'unacquainted': 2, 'one-dimensioned': 1, 'hellish': 5, 'uptown': 12, 'stinking': 6, 'incapacitated': 1, 'inferior': 13, 'cupped': 5, 'wearisome': 1, 'Wound': 1, 'yellowish-green': 1, 'escapist': 1, 'invaluable': 3, 'ceremonial': 5, 'beleaguered': 1, 'clearwashed': 1, 'front-porch': 2, 'unexpressed': 1, 'nonsynthetic': 1, 'red': 335, 'mundane': 2, 'dime-a-dozen': 1, 'Other': 30, 'outa': 4, 'open-mouthed': 1, 'lightcolored': 1, 'pendulous': 1, 'acknowledged': 1, 'nocturnal': 2, 'all-night': 2, 'ungrateful': 5, 'digital': 1, 'Sophisticated': 2, 'burdensome': 1, 'stale': 19, 'record': 1, 'Annoyed': 1, 'dividual': 1, 'hefty': 5, 'indistinguishable': 8, 'Future': 1, 'thin-limbed': 1, 'spray-paint': 1, 'low-wattage': 1, 'swift-footed': 1, 'forgivable': 1, 'insane': 13, 'unengaging': 1, 'panic-stricken': 3, 'money-paying': 1, 'astounded': 3, 'manifest': 6, 'middleaged': 2, 'gettin': 1, 'tenuous': 2, 'across-the-hall': 1, 'six-foot': 3, 'work-bound': 1, 'vertiginous': 1, 'unusual': 30, 'half-mixed': 1, 'Double': 2, 'a-moving': 1, 'meaty': 1, 'heterogeneous': 3, 'windy': 5, 'open-neck': 1, 'armor-piercing': 2, 'technical': 5, 'hot-sauced': 1, 'tidal': 1, 'ugly-looking': 1, 'showy': 1, 'double-columned': 1, 'marriageable': 2, 'churchy': 1, 'Hazy': 1, 'contradictory': 4, 'three-eighths': 2, 'hip-hop': 1, 'nine-inch': 1, 'green-and-white-striped': 1, 'imperialistic': 1, 'unpublished': 1, 'sandaled': 1, 'purported': 1, 'ritzy': 1, 'unrolled': 1, 'drought-parched': 1, 'homeward': 1, 'Modest': 1, 'Weird': 3, 'Bottom': 2, '12th': 4, 'cooling-off': 1, 'ashy-pale': 1, 'candle-lit': 1, 'half-talked': 1, 'nut-busting': 1, 'parched': 4, 'heathen': 1, 'shambling': 1, 'all-slanderous': 1, 'bearded': 10, 'unchanged': 4, 'brown-dirt': 1, 'curved': 2, 'imputed': 1, 'natty': 1, 'smoke-stained': 1, 'eighth': 6, 'square': 36, 'cultural-nationalist': 1, 'unvarying': 1, 'down': 11, 'tax-supported': 1, 'superhuman': 3, 'volatile': 1, 'sun-faded': 1, 'high-strung': 1, 'vernacular': 1, 'surrogate': 1, 'reddish-brown': 1, 'off-colored': 1, 'three-chin': 1, 'frozen': 21, 'such': 538, 'laden-down': 1, 'small-minded': 1, 'endless': 48, 'rolled': 4, 'cyclic': 1, 'low-income': 1, 'untapped': 1, 'dime-store-powdered': 1, 'modish': 1, 'Brazilian': 2, 'cow-posturing': 1, 'armoured': 1, 'functional': 1, 'unspeakable': 7, 'bulbous-headed': 1, 'auto-suggested': 1, 'timeworn': 1, 'customary': 7, 'marble-like': 1, 'thin-faced': 1, 'frigid': 3, 'pre-Adamite': 1, 'useful': 7, 'Coo-tie': 1, 'barbarian': 1, 'trifling': 10, 'irrelevant': 4, 'empty-handed': 7, 'Unwieldy': 1, 'folded-up': 1, 'mere': 23, 'two-step': 1, 'toothless': 4, 'trodden': 4, 'earth-shak': 1, 'Several': 26, 'great': 506, 'air-drawn': 1, 'Fine-looking': 1, 'three-four-seven': 1, 'toxic': 1, 'half-filled': 3, 'bottom': 50, 'dogmatic': 3, 'black': 1358, 'sneering': 2, 'exalted': 3, 'alive': 117, 'once-lovely': 1, 'textual': 1, 'sumptuous': 3, 'acute': 8, 'long-sleeved': 2, 'truculent': 1, 'industrially-based': 2, 'silky-looking': 1, 'Secret': 1, 'twelve-storey': 1, 'good': 1690, 'fitting': 14, 'twenty-three-year-old': 2, 'mossgrown': 1, 'obligatory': 1, 'harmless': 12, 'ignoble': 1, 'thirsty': 7, 'White-type': 1, 'sober': 12, 'one-room': 4, 'surrounding': 1, 'sorrow-blackened': 1, 'insidious': 12, 'immaculate': 2, 'paroled': 1, 'parliamentary': 1, 'dressy': 2, 'inordinate': 1, 'German-looking': 1, 'witty': 4, 'strange-sounding': 1, 'slave-consuming': 1, 'storybook': 1, 'snotty-looking': 1, 'get-well': 1, 'Spanish': 114, 'water-laden': 1, 'closely-shaven': 1, 'Expectant': 1, 'counter/kitchen': 1, 'diced': 1, 'satin-smooth': 1, 'peachy-keen': 1, 'prying': 11, 'unfrequented': 1, 'venomous': 3, 'club-hopping': 1, 'too-small': 1, 'unsympathizing': 2, 'unwrapped': 1, 'moon-drenched': 1, 'coin-return': 1, 'full-tilt': 1, 'destructive': 13, 'mumbly': 1, 'alien': 7, 'flickering': 3, 'problematic': 1, 'coming': 5, 'anxietyhatched': 1, 'shrill-voiced': 1, 'hardworking': 1, 't-know-what': 1, 'kinky-haired': 2, 'Vain': 1, 'antieverything': 1, 'grown-up': 5, 'populistic': 1, 'Monday-morning': 1, 'one-hundred-dollar': 1, 'perpendicular': 3, 'low-low': 1, 'dismal': 17, 'of-my': 1, 'obituary': 1, 'temporal': 2, 'skimpy': 1, 'whiney': 2, 'ever-ready': 1, 'cranky': 1, 'tight-fitting': 4, 'Various': 2, 'rough-looking': 2, 'distributive': 1, 'net': 3, 'hunkydory': 1, 'bundle-of-nerves': 1, 'inconsistent': 3, 'persuasive': 4, 'basic': 17, 'ribald': 2, 'dumbwitted': 1, 'escorted': 1, 'unconnected': 2, 'downturned': 1, 'weather-beaten': 2, 'legislative': 2, 'primal': 1, 'ox-drawn': 1, 'yellowish': 5, 'palpitating': 2, 'key-around-the-neck': 1, 'Black-Is-Beautiful': 1, 'Inappropriate': 1, 'latter': 47, 'chargeable': 1, 'sound': 37, 'parasitic': 2, 'steeple-crowned': 3, 'symptomatic': 2, 'practicable': 1, 'religious': 58, 'worldly': 3, 'sophisticated': 10, 'upper-level': 1, 'unbounded': 1, 'tree-lined': 1, 'valid': 12, 'dark': 477, 'distrustful': 1, 'surly': 5, 'Ole': 3, 'refined': 3, 'unwritten': 1, 'god-awful': 2, 'green-and-gray-striped': 1, 'consonant': 1, 'Nasty': 15, 'beefy': 1, 'inarticulate': 3, 'affable': 3, 'demure': 5, 'unsatisfactory': 1, 'angry-sounding': 1, 'Hungry': 2, 'elastic': 2, 'demonic': 1, 'conniving': 2, 'unrelenting': 7, 'smart': 74, 'embarrassed': 58, 'mythic': 1, 'big': 881, 'caged': 1, 'flagrant': 1, 'sloppy': 5, 'spit-and-gum-stained': 1, 'exclusive': 8, 'Foolish': 2, 'Formal': 1, 'left-about': 1, 'bourgeois': 5, 'inveterate': 3, 'Maycie': 1, 'bug-eyed': 3, 'coexistent': 1, 'unsophisticated': 1, 'sole': 21, 'broken-down': 5, 'nonviolent': 2, 'well-manicured': 1, 'gringo-type': 1, 'sinister': 8, 'chi-chi': 1, 'Greek': 9, 'POPULAR': 1, 'twenty-twenty': 1, 'savaged': 1, 'starter': 10, 'mine': 49, 'wrathful': 1, 'brim-full': 1, 'no-bread': 1, 'inner': 37, 'sectional': 1, 'embowed': 1, 'short-sighted': 1, 'sun-bright': 1, 'ragged-brimmed': 1, 'Loud': 5, 'matted': 1, 'subtle': 26, 'mud-coloured': 1, 'well-stacked': 4, 'repressive': 11, 'patched-together': 1, 'unfeeling': 5, 'unbuttoned': 4, 'garish': 2, 'illogical': 2, 'alleged': 2, 'crowded': 13, 'heartfelt': 3, 'revolutionary': 141, 'itll': 1, 'self-condemning': 1, 'gloved': 2, 'half-sprawled': 1, 'stumpy': 1, 'natural-born': 2, 'sad': 150, 'Old': 70, 'smileless': 1, 'flounced': 1, 'ivorytoothed': 1, 'manual': 2, 'obscene': 5, 'catty': 1, 'gray-faced': 1, 'slight': 35, 'conceivable': 2, 'skewered': 1, 'Worried': 2, 'touchy': 3, 'self-seeking': 1, 'opaque': 4, 'blinded': 1, 'spotless': 6, 'royal': 3, 'well-defined': 2, 'Puritanic': 3, 'elf-child': 2, 'would-be': 1, 'vertical': 3, 'strapping': 3, 'forty-buck': 1, 'mosdy': 1, 'rank': 1, 'clever': 28, 'unlettered': 1, 'quiedy': 1, 'thick-handed': 1, 'flitting': 1, 'vibrant': 3, 'humble': 28, 'slushy': 1, 'impotent': 8, 'peerless': 1, 'Artificial': 1, 'Negroid': 1, 'surprised': 66, 'yellowcolored': 1, 'Great': 18, 'red-lipped': 1, 'military': 67, 'nice-looking': 1, 'sheer': 22, 'dan': 4, 'peaked': 2, 'super': 21, 'do-nothing': 1, 'dog-eared': 1, 'roving': 1, 'onday': 1, 'cosmological': 1, 'accustomed': 15, 'inartistic': 1, 'onepointed': 1, 'wideopen': 1, 'green-horned': 1, 'coarse': 16, 'lute': 1, 'giggly': 2, 'lofty': 9, 'matching': 3, 'economy-size': 1, 'Tough': 2, 'self-contemplative': 1, 'akin': 3, 'loyal': 12, 'unbelievable': 9, 'poor-grade': 1, 'over-anxious': 1, 'blue-gold': 1, 'middling': 3, 'pointy': 1, 'funky': 8, 'ill-fed': 1, 'Parisian': 1, 'good-luck': 1, 'existential': 3, 'undisturbed': 1, 'scared-mad': 1, 'fit': 12, 'good-time': 1, 'selective': 6, 'magnificent': 11, 'onniie': 1, 'Be-bop': 1, 'castrated': 2, 'ageless': 2, 'numerical': 3, 'quick-tempered': 1, 'Gambian': 1, 'lousy': 30, 'overwhelming': 8, 'precipitous': 3, 'red-haired': 5, 'white-jacketed': 1, 'unashamed': 1, 'maddening': 1, 'emancipated': 4, 'distended': 1, 'womblike': 1, 'mucous': 1, 'Oscarwinning': 1, 'dynamic': 5, 'blues-shouting': 1, 'unattached': 1, 'dispensable': 2, 'loveinspired': 1, 'uncontested': 1, 'unembarrassed': 1, 'aggravating': 2, 'universal': 13, 'infirm': 1, 'cryingest': 1, 'lawful': 2, 'Nietzschean-Hegelian': 1, 'unintelligible': 5, 'frightened': 43, 'full-length': 3, 'Tight': 3, 'Dilapidated': 1, 'fabulous': 10, 'seasoned': 1, 'whole': 445, '4th': 1, 'fleshcutting': 1, 'AfricanAmerican': 1, 'rubber-coated': 1, 'consecrated': 3, 'incalculable': 2, 'steadfast': 6, 'supple': 4, 'extended': 9, 'Bad': 11, 'centralist': 2, 'push-push-push': 1, 'tactile': 1, 'marked': 19, 'blue-collared': 1, 'berubbered': 1, 'recendy': 1, 'grey': 39, 'Hungarian': 1, 'partial': 5, 'pointless': 2, 'taken-for-granted': 1, 'iron-rimmed': 1, 'sterile': 5, 'unkind': 3, 'grim-faced': 1, 'unmanifested': 2, 'Unsuitable': 1, 'bush': 8, 'unrestrained': 2, 'casual': 21, 'straight-collared': 1, 'die-hard': 1, 'suspect': 2, 'didactic': 1, 'icapped': 1, 'well-placed': 2, 'analytical': 3, 'corn-planting': 1, 'confident': 18, 'whither': 1, 'cockeyed': 3, 'frostbitten': 1, 'black-tiled': 1, 'liquid': 9, 'misty': 8, 'lovey-dovey': 2, 'bubbly': 3, 'devious': 10, 'noteworthy': 1, 'echoingest': 1, 'unsure': 3, 'weatherbeaten': 1, 'undutiful': 1, 'anti-tank': 5, 'a-a-ab-about': 1, 'fe': 31, 'chump': 4, 'Third': 2, 'wounded': 5, 'fifty-two-inch': 1, 'Cool': 6, 'black-green': 2, 'litt!e': 1, 'other': 1938, 'niggering': 1, 'hallowed': 2, 'sh-h': 1, 'sympathizing': 1, 'belching': 1, 'simulated': 4, 'bed-linen': 1, 'apolitical': 1, 'out-of-tune': 1, 'mouth-turned-down': 1, 'incredible': 14, 'subtextual': 1, 'spoon': 2, 'wry': 1, 'Sa-Sa-Sarah': 1, 'big-game': 3, 'flag-draped': 1, 'bald': 28, 'featureless': 1, 'Freckle-faced': 1, 'stainless': 4, 'out-of-sight-looking': 1, 'long-drawn': 2, 'snakelike': 1, 'Important': 4, 'becalmed': 1, 'half-envious': 1, 'alone': 2, 'Juvinal': 1, 'twin-mounted': 1, 'space-age': 1, 'athletic': 3, 'number-twelve': 2, 'disposable': 1, 'trans': 1, 'anti-race': 1, 'two-hundred-dollar': 1, 'flattened-out': 1, 'edgy': 5, 'Headless': 1, 'legitimate': 5, 'embedded': 1, 'blank-faced': 1, 'perverse-minded': 1, 'congenial': 2, 'Czechoslovakian': 1, 'unperformed': 1, 'scientific': 3, 'dishonored': 1, 'roguish': 2, 'snow-covered': 1, 'hairlike': 1, 'heaven-defying': 2, 'half-covered': 1, 'devastating': 7, 'main': 65, 'impressed': 10, 'Real': 14, 'shooting': 7, 'incipient': 1, 'Accustomed': 1, 'Dreadful': 2, 'ticklish': 1, 'toothpaste-flecked': 1, 'adept': 1, 'counterpositive': 1, 'teak': 1, 'carnal': 1, 'menial': 4, 'drizzling': 1, 'violent': 26, 'ill-clothed': 1, 'perishing': 1, 'bemused': 2, 'unwise': 2, 'macho': 5, 'avant-garde': 2, 'W-w-we': 1, 'lettered': 1, 'shaven': 3, 'pubic': 5, 'fascist': 79, 'rubbermetallic': 1, 'calculable': 2, 'Soledad': 3, 'yellow-bellied': 1, 'tail-wagging': 1, 'orangered': 1, 'bone-dry': 1, 'armored': 9, 'sense': 4, 'carry-out': 1, 'spooky': 2, 'unresponding': 1, 'unpardoned': 1, 'slippery': 6, 'mirthful': 3, 'so-called': 40, 'slothful': 1, 'elbow-length': 1, 'plum-nelly': 1, 'well-educated': 1, 'lovable': 2, 'unitary': 1, 'raggedy': 5, 'Want': 12, 'motor-bike': 3, 'stash': 1, 'selfsame': 2, 'decrepit': 1, 'Federal': 2, 'them-an': 1, 'thicker-skinned': 1, 'self-propelled': 1, 'Busy': 4, 'one-time': 1, 'bitterand': 1, 'Ready': 9, 'almost-black': 1, 'anti-Nixon': 1, 'Byzantine': 10, 'noisome': 1, 'Thelonious': 1, 'brown-paper': 2, 'Native': 3, 'knotted-up': 1, 'swaybacked': 1, 'Dumb': 2, 'Loath': 1, 'fenced': 1, 'blameless': 2, 'marketable': 2, 'hard-set': 1, 'characteristic': 10, 'goiterknobbed': 1, 'superman': 3, 'Sardinian': 1, 'comic': 4, 'inept': 1, 'subtly': 1, 'heavy': 216, 'costly': 2, 'elasticized': 1, 'theirs': 12, 'unarmed': 5, 'vestigial': 1, 'threshing': 1, 'green-shaded': 2, 'out-figured': 2, 'bossy': 2, 'busy': 102, 'Scorned': 1, 'possessive': 1, 'gray-skinned': 1, 'Female': 2, 'brown-skin': 1, 'aslant-wise': 1, 'Old-maid': 1, 'somber': 19, 'drapery-covered': 1, 'giant': 32, 'Obtainable': 1, 'balanced': 7, 'fetid': 3, 'red-andblack': 1, 'Exotic': 1, 'Syrian': 1, 'reflective': 1, 'in-into': 1, 'whirlpool': 1, 'hill-side': 2, 'spare': 22, 'unrecognised': 3, 'glassy': 5, 'Such': 37, 'urgent': 24, 'right-wing': 7, 'doubtful': 7, 'ting-a-Iing-a-ling': 1, 'left-off': 1, 'fellow-clergymen': 1, 'greased': 3, 'lead': 2, 'cedar-block': 1, 'salt-and-pepper': 1, 'Western': 24, 'judicial': 3, 'old-maid': 2, 'corporate': 15, 'gravelly': 1, 'Slanderous': 1, 'desultory': 1, 'nappy-headed': 1, 'typewritten': 1, 'nightly': 7, 'unsuited': 1, 'Amazonian': 1, 'Tropical': 34, 'ever-present': 2, 'gigantic': 12, 'zinc-and-barrel': 1, 'Youthful': 2, 'enigmatic': 1, 'selfconscious': 1, 'state-controlled': 3, 'unnoticed': 7, 'Sweat-soaked': 1, 'Strong': 3, 'levelheaded': 3, 'elitist': 2, '104th': 1, 'new-born': 1, 'crayoned': 1, 'longterm': 2, 'boring': 5, 'empty-headed': 3, 'Dexterous': 3, 'fortress-looking': 1, 'unadorned': 1, 'allowable': 1, 'purple-flamed': 1, 'knobbly': 1, 'wheelless': 1, 'fibrous': 1, 'wary': 11, 'greed-confused': 1, 'wh-wh-white': 1, 'fateful': 2, 'patient': 8, 'expansionist': 1, 'horn-of-plentylike': 1, 'inextricable': 1, 'Quiet': 7, 'satin-skirted': 1, 'sorrow-stricken': 1, 'Marvelous': 3, 'iid': 1, 'every-day': 1, 'unready': 4, 'retaliatory': 3, 'communistic': 2, 'nation-state': 4, 'irrational': 5, 'Afro-American': 13, 'well-used': 1, 'embittered': 1, 'Piteous': 1, 'bigtime': 1, 'Nice': 34, 'flying': 1, 'no-cleaning': 1, 'feverish': 6, 'holiday-ish': 1, 'prefigured': 1, 'avez': 1, 'changed': 1, 'portable': 8, 'Venetian': 2, 'furious': 17, 'Russian': 10, 'putrid': 5, 'tragic': 11, 'cock-sure': 1, 'twelfth': 2, 'hasty': 5, 'genuine': 18, 'dangle': 1, 'reverse': 3, 'sayin': 3, 'unknown': 44, 'unshaven': 5, 'Endless': 2, 'first-rate': 3, 'English-language': 3, 'red-light': 2, 'antipasto': 2, 'forceful': 6, 'hard-headed': 1, 'imperfectible': 2, 'fidgety': 3, 'Economic': 2, 'nominal': 1, 'three-cornered': 4, 'neon-lit': 2, '63rd': 3, 'slugged': 1, 'flawless': 3, 'Weary': 1, 'antique': 13, 'bigeyed': 1, '95th': 27, 'commercial': 12, 'two-faced': 1, 'extra-loud': 1, 'self-imposed': 2, 'American-style': 2, 'withered': 10, 'European': 25, 'windward': 1, 'multinational': 1, 'clunky': 1, 'unopened': 5, 'grave': 18, 'clasped': 1, 'painful': 30, 'scalloped': 2, 'Mental': 1, 'incongruous': 3, 'clairvoyant': 1, 'saturating': 1, 'nasal': 3, 'quivering': 2, 'engraved': 2, 'sumo-fat': 1, 'long-extinct': 1, 'Ukrainian': 1, 'psychic': 3, 'slow-motion': 1, 'lyrical': 3, 'ear-hurting': 1, 'dictatorial': 1, 'deluded': 1, 'solo-danced': 1, 'mushy': 2, 'poverty-stricken': 1, 'reformist': 5, 'commemorative': 1, 'teenage': 1, 'pigeon-chested': 1, 'follow-up': 2, 'Cheap': 1, 'unChristian': 1, 'unimpassioned': 1, 'non-Communist': 1, 'choleric': 1, 'abrupt': 11, 'fruitless': 5, 'fifty': 3, 'bull-necked': 1, 'democratic': 23, 'lively': 7, 'remembered': 4, 'oppressed': 16, 'soft-swelling': 1, 'computer-cleaned': 1, 'frustrating': 1, 'medical': 42, 'crabby': 1, 'licensed': 1, 'snazzy': 4, 'palm-leaf': 2, 'public': 133, 'woolly': 6, 'Bored': 2, 'contra-positive': 10, 'hypothetical': 2, 'unsettling': 2, 'lushing': 1, 'Slippery': 1, 'obeah-man': 2, 'unhealed': 1, 'beer-drinking': 1, 'spiritual': 41, 'taxi-cab': 1, 'ulterior': 1, 'well-flattened': 1, 'poked-out': 1, '8l': 1, 'white-clad': 1, 'Rear-ended': 1, 'Heartless': 1, 'counterproductive': 3, 'piss-pot': 1, 'dolichocephalic': 1, 'unconditional': 2, 'beetle-browed': 1, 'snowy': 7, 'lunar': 2, 'dazed': 1, 'half-frightened': 1, 'dearest': 3, 'Ambitious': 1, 'cumbersome': 1, 'Static': 1, 'swordlike': 1, 'nauseous': 1, 'devoid': 10, 'bewildering': 2, 'color-blind': 2, 'sectarian': 1, 'raspy': 2, 'axiomatic': 1, 'forty-five': 1, 'Dirty': 3, 'first-come-firstserved': 1, 'biological-existential': 1, 'thirteen-inch': 1, 'fourth': 28, 'bounteous': 2, 'grass-roots': 1, 'unstrapped': 1, 'pathogenic': 1, 'twenty-one-year-old': 1, 'better-looking': 2, 'star-studded': 1, 'Illegal': 1, 'nonprofessional': 1, 'comparative': 4, 'prolonged': 6, 'Useless': 2, 'pellucid': 1, 'biographical': 2, 'successful': 42, 'speckled': 6, 'half-eaten': 3, 'focal': 1, 'ermudder': 1, 'antiestablishment': 1, 'Commercial': 1, 'versatile': 1, 'Straight': 1, 'ofiicial': 1, 'SCARLET': 1, 'ungentlemanly': 1, 'unregistered': 1, 'navy-blue': 2, 'commonplace': 1, 'uncastrated': 1, 'bright': 160, 'chunky': 1, 'second-story': 1, 'fresh-caught': 1, 'grey-haired': 4, 'mute': 9, 'self-recriminating': 1, 'treelined': 1, 'Spanish-language': 2, 'Sure': 149, 'pyjama-like': 1, 'lifesaving': 1, 'commanding': 8, 'inflamed': 3, 'griped': 1, 'resolute': 1, 'deranged': 1, 'professorial': 1, 'muttering': 1, 'COMPUTER-AIDED': 2, 'felonious': 1, 'crooked': 21, 'teasing-like': 1, 'vehement': 1, 'Gorgeous': 1, 'arm-swinging': 1, 'twenty-year-old': 1, 'Token': 1, 'scraggly': 1, 'snooty': 1, 'northeast': 1, 'dingy': 9, 'ornate': 3, 'plumb': 4, 'high-water': 1, 'cheery': 2, 'promising': 2, 'irreverent': 4, 'well-remembered': 1, 'earthen': 10, 'unperforated': 1, 'reliable': 6, 'choosy': 1, 'Top': 4, 'illustrated': 1, 'overseas': 3, 'stepped-on': 1, 'rambling': 4, 'cute': 44, 'well-equipped': 1, 'Many': 66, 'stamped-tin': 1, 'Votive': 1, 'delusive': 1, 'life-giving': 2, 'tire-size': 1, 'wispy': 4, 'superb': 3, 'paramount': 1, 'expeditious': 1, 'festering': 1, 'down-home': 1, 'indicative': 3, 'beige': 8, 'nervous': 71, 'tipsy': 3, 'day-to-day': 2, 'lone': 15, 'single': 113, 'man-like': 1, 'prophetic': 3, 'well-built': 3, 'Fourth': 7, 'simple-assed': 1, '27th': 1, 'mouthful': 1, 'cal': 1, 'demented': 3, 'Wasbingtonian': 1, 'shocking': 5, 'lethal': 1, 'erratic': 4, 'smallish': 1, 'primeval': 3, 'light-gray': 1, 'cranial': 1, 'Silent': 2, 'well-founded': 1, 'enmeshed': 1, 'intoxicating': 5, 'astonished': 9, 'clannish': 1, 'schizophrenic': 1, 'relevant': 3, 'coast-to-coast': 2, 'apple-green': 1, 'mon': 1, 'Scarlet': 21, 'Empty': 3, 'sewn-in': 1, "j'": 1, 'fickle': 2, 'standin': 3, 'corduroy': 1, 'solid-color': 1, 'onliest': 1, 'Outrageous': 1, 'ghastly': 15, 'former': 55, 'costumed': 1, 'event-proof': 1, 'damp': 37, 'unsightly': 2, 'freezing': 2, 'too-sweet': 1, 'unsealed': 1, '372nd': 2, 'greenish': 4, 'moon-shaped': 2, 'suburban': 5, 'thingactual': 1, 'grass-roofed': 1, 'Entranced': 1, 'trenchant': 1, 'fanatic': 3, 'desired': 1, 'humnn': 1, 'official': 13, 'heavenly': 21, 'unparked': 1, 'chained': 13, 'favourable': 6, 'fundamental': 12, 'bad-woman': 1, 'kittenish': 1, 'blue': 235, 'pink-cheeked': 1, 'Soft-boiled': 1, 'three-card': 1, 'Merry-go-round': 1, 'tinny': 1, 'same': 862, 'enraptured': 1, 'longstemmed': 1, 'metaphysical': 2, 'embossed': 2, 'imperial': 5, 'upper': 33, 'light-coloured': 1, 'Papist': 1, 'compact': 5, 'howling': 5, 'employable': 1, 'fatherly': 2, 'luxuriant': 5, 'feelingless-looking': 1, 'shapely': 7, 'hard-breathing': 1, 'bottled': 3, 'addictive': 1, 'control': 1, 'race-hate': 1, 'jealous': 42, 'distinguished': 9, 'odd': 39, 'Willful': 1, 'drab': 5, 'gleaming': 18, 'avowed': 3, 'nodding': 1, 'no-count': 1, 'meticulous': 5, 'independable': 1, 'apt': 5, 'penal': 2, 'boiling': 1, 'simpering': 1, 'Viennese': 1, 'knobby': 2, 'wade-in': 1, 'omniscient': 1, 'flush': 3, 'book-lined': 1, 'fiery-hot': 1, 'insignificant': 5, 'zebraic': 1, 'unfavorable': 1, 'yellowlight': 1, 'heady': 5, 'I-am-in-Senegal': 1, 'olive-brown': 1, 'brighdy': 2, 'discreet': 10, 'petulant': 2, 'snobbish': 1, 'red-eyed': 1, 'interrelated': 1, 'super-nationalist': 1, 'unprotesting': 1, 'self-styled': 1, 'unidentifiable': 1, 'obnoxious': 5, 'long-dead': 1, 'inclusive': 1, 'milkycolored': 1, 'unasked': 2, 'North': 4, 'impassive': 2, 'oneto-one': 1, 'smoke-filled': 1, 'insulting': 3, 'pensive': 9, 'reversed': 1, 'ice-blue': 3, 'quick-dying': 1, 'rock-strewn': 1, 'long-stemmed': 6, 'orphan': 2, 'latticed': 3, 'ruddy-skinned': 1, 'bad-looking': 1, 'Sick-at-the-stomach': 1, 'penetrative': 1, 'lowercase': 1, 'restrictive': 2, 'combative': 1, 'cordial': 6, 'honey-sweet': 1, 'meaningful': 7, 'mutual-aid': 1, 'desolated': 2, 'immediate': 27, 'indefeasible': 1, 'longestablished': 1, 'hard-rock': 1, 'millionth': 1, 'inauspicious': 2, 'pleasant': 33, 'kinda': 1, 'linen-draped': 1, 'three-bedroom': 1, 'ill-fated': 3, 'threaded': 1, 'subsequent': 10, 'long-striding': 1, 'Bartolo': 16, 'dry-eyed': 1, 'debased': 3, 'hereditary': 5, 'Seven-year-old': 1, 'mud-slinging': 1, 'irreparable': 1, 'genealogical': 1, 'everlasting': 14, 'tubercular-looking': 1, 'bald-faced': 1, 'raked': 1, 'stringy': 1, 'groovy': 2, 'frost-bitten': 1, 'Austrian': 1, 'tribal-time': 1, 'profane': 6, 'ninth': 3, 'late-eighteenth-century': 1, 'men-ste': 1, 'pleasant-looking': 1, 'selfless': 2, 'quasi-secret': 1, 'Arab-Iberian': 1, 'toothed': 1, 'bare-shouldered': 1, 'stringent': 3, 'Dire': 1, 'mincing': 1, 'disjunctive': 2, 'pearly': 2, 'mixed-up': 1, 'Small': 7, 'death-dealing': 1, 'high-school-cheer': 1, 'Gothic': 3, 'unplayed': 1, 'narrow-faced': 1, 'outgoing': 3, 'irascible': 2, 'negligible': 2, 'denunciatory': 1, 'Hard': 11, 'Senegalese': 2, 'self-shrink': 1, 'two-handed': 1, 'assertive': 1, 'unused': 3, 'big-balconied': 1, 'feeble': 12, 'defenceless': 1, 'aesthetic': 4, 'dusty': 15, 'enchanted': 1, 'super-honky': 1, 'rinky-dink': 2, 'distinct': 19, 'telegrammed': 1, 'despicable': 4, 'Sick': 5, 'nautical': 1, 'half-bad': 1, 'gaunt': 6, 'displaced': 1, 'twenty-foot': 1, 'pro-': 1, 'unprovided': 1, 'improbable': 4, 'disrespectful': 2, 'scholastic': 1, 'rightlv': 1, 'impalpable': 2, 'squatty': 4, 'wood-stove': 1, 'just-out-of-the-atmosphere': 1, 'electric': 26, 'sure-really-sure': 1, 'quick-striding': 1, 'pregnancy-puffed': 1, 'subsistence-wage': 1, 'doubdess': 1, 'evil': 90, 'oth-other': 1, 'begrudging': 1, 'travel-worn': 1, 'sagacious': 3, 'Voice-print': 1, 'able': 248, 'hot-water': 1, 'barbed-wire': 2, 'finished': 2, 'eightstory': 1, 'Former': 1, 'unemployed': 19, 'yellowed': 8, 'interminable': 1, 'problem-solving': 2, 'pungent': 9, 'numb': 8, 'applicable': 3, 'blade-sharp': 1, 'eccentric': 3, 'redoubtable': 1, 'so-oo': 1, 'piss-poor': 1, 'chocolatebrown': 1, 'useless': 22, 'dim': 30, 'operational': 1, 'cigarette-lighting': 1, 'hard-packed': 1, 'freeze-dried': 1, 'urban': 31, 'imitative': 5, 'gold-headed': 1, 'lustrous': 1, 'shocked': 10, 'sash': 1, 'uneven': 4, 'darker-skinned': 2, 'wily': 2, 'Half-empty': 1, 'dog-natured': 1, 'False': 1, 'treacherous': 9, 'reluctant': 10, 'essary': 1, 'litde': 9, 'war-swollen': 1, 'barbarous': 2, 'staggered': 1, 'underdressed': 2, 'Fourteenth': 2, 'powdery': 3, 'oblivious': 7, 'impulsive': 3, 'atavistic': 2, 'unborn': 7, 'wide-open': 1, 'bleared': 2, 'fancy': 48, 'unsteadfast': 1, 'creaky': 1, 'ten-minute': 1, 'capitalistic': 5, 'infectingjug': 1, 'low-slung': 1, 'waist-deep': 2, 'immaterial': 4, 'flat-topped': 1, 'unclothed': 2, 'shabby': 6, 'adjectiveless': 1, 'phony-time': 1, 'lackadaisical': 1, 'benighted': 3, '=': 13, 'scorching': 4, 'i-shaped': 1, 'Light-brown': 1, 'statutory': 1, 'Single': 3, 'encouraged': 1, 'forthright': 1, 'prompdy': 1, 'Uh-huh': 3, 'low-cut': 2, 'her.spiked': 1, 'upset': 31, 'smooth-faced': 1, 'tapestried': 1, 'lynch-example': 1, 'intent': 2, 'tandem': 1, 'audible': 8, 'missing-tooth': 1, 'flexible': 2, 'behavioral': 2, 'delicate': 31, 'relaxing': 1, 'lighdy': 1, 'treated': 1, 'highschool': 1, 'better-class': 1, 'sorrowful': 5, 'ding': 1, 'twohundred-twenty-two': 1, 'earthshaking': 1, 'Ignoble': 1, 'erect': 1, 'dig-thin': 1, 'Elegant': 1, 'torrid': 2, 'thirteen-year-old': 2, 'leatherseated': 1, 'greedy': 15, 'spectral': 3, 'red-hot': 4, 'cod-fish': 7, 'fifth-rate': 1, 'meaningless': 15, 'syrupy': 3, 'spikey': 1, 'supposed': 1, 'month-old': 1, 'heart-fluttering': 1, 'calming': 2, 'jovial': 2, 'inspiring': 1, 'thick-necked': 1, 'pure-D': 4, 'Successful': 1, 'textured': 1, 'utter': 26, 'outa-town': 1, 'youll': 1, 'stout': 2, 'disruptive': 2, 'baffled': 2, 'ruby-red': 1, 'Null': 1, 'Impossible': 5, 'back': 302, 'hackneyed': 1, 'labour-honouring': 1, 'stereophonic': 2, 'captivating': 1, 'diabolical': 2, 'gimpy': 1, 'wholesome': 7, 'paintstained': 1, 'pompous': 1, 'Uruguayan': 2, 'muddy': 11, 'rhapsodic': 2, 'day-glo': 1, 'yelloweyed': 1, 'soaked': 1, 'dumfounded': 2, 'half-forgotten': 1, 'orchid': 4, 'beady': 2, 'trained': 5, 'inviolable': 1, 'unending': 6, 'warrior-ready': 1, 'Go-go-god-goddamn': 1, 'teen-year-old': 1, 'brightish': 2, 'bare-chested': 2, 'swanky': 1, 'sentimental': 11, 'pipal': 1, 'hand-rubbing': 1, 'knewest': 1, 'non-English-speaking': 1, 'turnt': 1, 'grave-yard': 1, 'no-way': 1, 'colonial': 10, 'waterproof': 1, 'resonant': 2, 'noontime': 1, 'sonorous': 1, 'untenable': 2, 'always-to-be-expected': 1, 'grim': 18, 'striped': 8, 'Conservative': 1, 'scientific': 5, 'penis-sized': 1, 'undauntable': 1, 'Entertaining': 2, 'takeneth': 1, 'emerald': 1, 'Second': 3, 'richrich': 1, 'regenerative': 1, 'Bloody': 2, 'tart': 2, 'Iwant': 1, 'freedom-fighting': 1, 'half-finished': 1, 'starched': 7, 'straight-back': 2, 'two-room': 2, 'i-in': 1, 'vested': 1, 'smiling-faced': 1, 'goatish': 1, 'brown-skinned': 4, 'unfixed': 1, 'Pumpkin-colored': 1, 'auburn-haired': 1, 'molly-trotting': 1, 'head-to-toe': 1, 'hidden': 27, 'disinterested': 2, 'Precarious': 1, 'disappointing': 5, 'Numerous': 1, 'decibel': 1, 'full-bodied': 2, 'accordant': 1, 'self-help': 1, 'eco-sociological': 2, 'duppy': 1, 'improper': 1, 'macabre': 2, 'high-cheekboned': 1, 'seedless': 1, '45th': 1, 'crazy-assed': 1, 'raspberry-colored': 1, 'dark-blue': 3, 'syllable': 3, 'literary': 49, 'tar-baby': 1, 'visual': 3, 'sailor-boy': 1, 'forgetful': 1, 'soured': 2, 'prayerlike': 1, 'upright': 10, 'brown-eyed-handsomeman': 1, 'dumbfounded': 1, 'fork-tender': 1, 'crumpled': 7, 'luscious-looking': 1, 'crossword': 1, 'atomic-testing': 1, 'paranoid': 1, 'anesthetized': 1, 'look-alike': 2, 'psychosocial': 1, 'never-to-be-duplicated': 1, 'elated': 7, 'routine': 20, 'night-time': 7, 'confidential': 1, 'forest-covered': 1, 'unannounced': 2, 'chirurgical': 1, 'lowered': 3, 'wid': 3, 'blood-veined': 1, 'lightest-skinned': 1, 'baffling': 2, 'self-satisfied': 1, 'everpresent': 1, 'normal': 48, 'muted': 9, 'aspiring': 2, 'broiled': 1, 'Daddy': 2, 'symphonious': 1, 'childless': 1, 'ninepound': 1, 'heavyset': 1, 'aristocratic': 6, 'disciplineminded': 1, 'blackish-red': 2, 'complete': 96, 'outraged': 4, 'national': 49, 'smisshy-smasshy': 1, 'meatless': 1, 'effusive': 1, 'high-power': 2, 'ninethirty': 1, 'noise-picture-feeling': 1, 'gregarious': 1, 'demonstrative': 1, 'cold-flushed': 1, 'endurance': 1, 'red-tail': 2, 'field': 1, 'threelegged': 1, 'sharp-looking': 1, 'corrupted': 3, 'So-so': 1, 'chloral': 1, 'upraised': 1, 'elevated': 7, 'Intriguing': 1, 'husky': 11, 'droll': 1, 'lemon': 28, 'night-black': 1, 'honorable': 13, 'fleshless': 1, 'unrecognized': 1, 'twice': 1, 'ween': 1, 'w1th': 1, 'auricular': 1, 'sun-drenched': 1, 'single-handed': 2, 'glass-elevatored': 1, 'frond-covered': 1, 'pearl-adorned': 1, 'moronic': 1, 'bald-headed': 7, 'foul-mouthed': 1, 'homey': 2, 'corrugated': 3, 'Anti-Slavery': 5, 'nameless': 16, 'unspotted': 2, 'subservient': 3, 'sharpest-dressed': 1, 'u-li': 1, 'hooped': 1, 'uncommitted': 1, 'twenty-five': 1, 'rickety': 3, 'secondhand': 2, 'Scared': 7, 'precarious': 5, 'twenty-five-year-old': 1, 'crazy': 198, 'half-lunatic': 1, 'up-rolled': 1, 'food-particle': 1, 'incredulous': 5, 'comic-strip': 1, 'half-boozy': 1, 'Sabbath-day': 1, 'Dark': 14, 'bop-playing': 1, 'explosive': 5, 'simple-ass': 1, 'whisding': 1, 'unreasoned': 1, 'lean': 27, 'ice-cube': 1, '155-mm': 1, 'never-ending': 7, 'undependable': 1, 'sickly-sweet': 1, 'hand-rolled': 1, 'unfurnished': 1, 'skinny-brim': 1, 'open-air': 4, 'sii.glo': 1, 'celibate': 1, 'dead-pan': 1, 'co-optive': 2, 'historical/biological': 1, 'tactical': 6, 'mutinous': 1, 'gasoline-soaked': 1, 'seven-thousand-word': 1, 'Tar-black': 1, 'sickle': 3, 'besought': 2, 'out-and-out': 1, 'previous': 32, 'sensual': 7, 'crooked-mouthed': 1, 'hi-fi': 1, 'tony': 1, 'unobtrusive': 2, 'mothlike': 1, 'longish': 1, 'intimate': 20, 'autonomous': 4, 'academic': 5, 'jaunty': 4, 'satin-lined': 1, 'non-freedom': 2, 'lar': 1, 'Prospective': 1, 'numerous': 15, 'calico-bound': 1, 'black-letter': 1, 'arrogant': 5, "T'ief": 1, 'capricious': 2, 'despotic': 5, 'in-out': 1, 'brass-trimmed': 1, 'party-pretty': 1, 'mousy': 1, 'unimaginable': 7, 'red-brown': 3, 'infected': 10, 'unheard-of': 2, 'Antinomian': 1, 'misanthropic': 2, 'first-class': 2, 'worn': 16, 'yeah': 17, 'sentient': 1, 'superstitious': 2, 'deep-set': 4, 'Cooked': 1, 'papal': 1, 'expensive-looking': 1, 'fifteen-year-old': 4, 'back-fence': 1, 'scheming': 12, 'oily': 1, 'heart-broken': 1, 'lambent': 1, 'broadbrimmed': 1, 'kidding': 3, 'pouty': 1, 'aromatic': 2, 'unsoluble': 1, 'three-dimensional': 3, 'petrified': 10, 'separated': 2, 'frowned': 5, 'India-ink': 1, 'suggestive': 3, 'fortunate': 12, 'jet-black': 3, 'Shapeless': 1, 'green': 219, 'cyclopian': 1, 'good-looking': 31, 'unreadable': 3, 'exotic-sounding': 1, 'bushy': 10, 'unrelated': 1, 'well-carved': 1, 'bare-footed': 2, 'younar': 1, 'super-fine': 1, 'convinced': 17, 'smart-aleck': 1, 'Indianhaired': 1, 'destitute': 4, 'weird-looking': 1, 'glad': 184, 'yellow-cake': 1, 'liable': 10, 'abused': 4, 'Double-mugged': 1, 'helpee': 1, 'hot-time': 1, 'thumping': 1, 'funny-talking': 1, 'demagogic': 1, 'tinkling': 1, 'weaponless': 1, 'slavery-time': 1, 'opulent': 2, 'timeless': 1, 'long-ago': 3, 'Slow': 1, 'kohl-eyed': 1, 'newsless': 1, 'franatic': 1, 'sailor-men': 2, 'th-th-there': 1, 'black-boxed': 1, 'seeming': 7, 'thrilling': 2, 'fitful': 6, 'continued': 1, 'spectacled': 3, 'fleshy': 1, 'canopied': 4, 'blackhaired': 1, 'respective': 5, 'laissez': 1, 'unimpressionable': 1, 'thinned-out': 1, 'bamboo': 1, 'shell-shocked': 2, 'dispirited': 1, 'platinum-blond': 1, 'sullen': 13, 'mellower': 1, 'sleepless': 3, 'varicolored': 1, 'buttered': 3, 'taupe-colored': 1, 'unapproachable': 1, 'significant': 9, 'telepathic': 1, 'tremendous': 12, 'dire': 4, 'Basque': 1, 'no-good': 7, 'snappish': 2, 'fist-sized': 1, 'bright-colored': 1, 'honest-to-God': 3, 'old': 1484, 'medieval': 4, 'hierarchical': 1, 'commerical': 1, 'current': 8, 'Self-sufficient': 1, 'Pleased': 4, 'Putrid': 2, 'back-side': 1, 'seething': 2, 'topical': 1, 'unsunned': 1, 'unmolesting': 1, 'degenerative': 1, 'grassy': 4, 'graduate': 4, 'turned-up': 2, 'brownish-looking': 1, 'unconverted': 1, 'encouraging': 1, 'steel-mill': 3, 'shortsleeved': 1, 'notorious': 3, 'southbound': 2, 'irritable': 5, 'splayed': 1, 'cherry-chocolate': 3, 'it-going': 1, 'rancid': 1, 'So-called': 1, 'mid-day': 3, 'baked': 4, 'international': 35, 'biggame': 1, 'offended-sounding': 1, 'pussy-particular': 1, 'thickened': 1, 'Orthodox': 1, 'three-year-old': 2, 'tainted': 2, 'four-lane': 4, 'fangtoothed': 1, 'conclusive': 1, 'too-tragic': 1, 'moonlight': 1, 'hourly': 1, 'Israeli': 6, 'government-controlled': 1, 'conciliatory': 1, '1sn': 1, 'flutelike': 1, 'free': 328, 'intolerant': 2, 'long-tried': 1, 'blissful': 3, 'lonely': 74, 'columned': 2, 'word-directed': 1, 'unsought': 1, 'bitchy': 2, 'potato-digging': 1, 'displeased': 3, 'golden-brown': 4, 'street-and-beach': 1, 'random': 2, 'decorative': 2, 'godly': 9, 'intuitive': 4, 'put-together': 2, 'son-of-a-bitch': 1, 'fictitious': 3, 'uncovered': 3, 'morose': 1, 'transmittable': 1, 'plebeian': 2, 'slit': 1, 'repentant': 2, 'two-way': 1, 'millionyear-old': 1, 'gwan': 1, 'sing-song': 1, 'far-out': 3, 'under-steward': 1, 'going-away': 1, 'clinging': 5, 'straightish': 1, 'white-washed': 1, 'Militant': 1, 'deft': 2, 'dolly': 1, 'English': 37, 'Latin-looking': 1, 'overpowering': 1, 'sugary': 1, 'disposed': 2, 'head-on': 1, 'pudgy': 1, 'laudable': 2, 'intelligent': 44, 'scroll-like': 1, 'Lucky': 6, 'idealized': 2, 'reserved': 3, 'momentary': 8, 'obtrusive': 1, 'afar': 2, 'Outright': 1, 'undesirable': 2, 'initial': 11, 'electronic': 8, 'hungry': 101, 'importunate': 2}
21
{'lustful': 1, 'matter-of-fact': 1, 'marine': 1, 'two-story': 1, 'curvaceous': 1, 'Complicated': 1, 'robust': 1, 'unavoidable': 2, 'bouncy': 1, 'rapid': 2, 'lifeless': 1, 'soldout': 1, 'flattered': 1, 'horrific': 2, 'side': 1, 'heavy-set': 2, 'full-lipped': 1, 'clanky': 1, 'wall-shaking': 1, 'RURAL': 1, 'unknowable': 3, 'Fast': 2, 'slow': 40, 'jumbo': 1, 'frightening': 4, 'lucid': 2, 'crystal': 1, 'chocolate': 2, 'extra-strength': 1, 'Civil': 2, 'goin': 1, 'tribal': 1, 'girlie': 1, 'wiry': 4, 'loose': 30, 'Ch': 6, 'annual': 2, 'limited': 3, 'faint': 10, 'pleased': 11, 'eight-man': 1, 'unblinking': 4, 'firstborn': 1, 'translucent': 1, 'noonday': 1, 'brimless': 1, 'myriad': 2, 'strawberry-topped': 1, 'exotic': 1, 'female-inscribed': 1, 'cut-glass': 2, 'Sharp': 1, 'much': 256, 'Terrible': 1, 'sanitary': 1, 'twenty-fifth': 1, 'agricultural': 1, 'attendant': 8, 'lemon-glass': 1, 'unbearable': 4, 'airish': 1, 'Mature': 1, 'unfazed': 1, 'well-toned': 1, 'fine': 184, 'uninterested': 1, 'high-brown': 1, 'outward': 2, 'vague': 4, 'New': 5, 'chatty': 1, 'cloudy': 5, 'scornful': 9, 'blue-back': 1, 'relentless': 1, 'eatin': 1, 'tasseled': 2, 'Communist': 7, 'mathematical': 1, 'bleached': 3, 'moustached': 1, 'unencumbered': 2, 'mean': 21, 'crusty': 1, 'built-in': 3, 'French-manicured': 1, 'modern': 3, 'playin': 2, 'wellfurnished': 1, 'stable': 4, 'conjugal': 2, 'graceful': 2, 'piercing': 1, 'grubby': 1, 'vulnerable': 4, 'hilly': 1, 'missing': 2, 'numbing': 1, 'childish': 2, 'obedient': 2, 'watchful': 4, 'social': 23, 'intraracial': 1, 'street-smart': 1, 'helpless': 7, 'growling': 1, 'heavyhanded': 1, 'exasperating': 1, 'beachfront': 1, 'fluorescent': 1, 'blood-lined': 1, 'sandy': 7, 'Kingdom-like': 1, 'dumb': 22, 'noisy': 7, 'sweet': 83, 'live-in': 2, 'identical': 3, 'candid': 1, 'folding': 4, 'goneto-glory': 1, 'latent': 1, 'seafaring': 1, 'rusting': 2, 'pleated': 5, 'dark-skinned': 1, 'classified': 1, 'black-white': 1, 'Cute': 3, 'headless': 1, 'connected': 1, 'giddy': 1, 'well-to-do': 18, 'absurd': 2, 'rousing': 1, 'earthly': 2, 'penny-ante': 1, 'innermost': 1, 'well-off': 6, 'covered': 2, 'round-collared': 1, 'frantic': 4, 'reachable': 1, 'five-card': 2, 'umbilical': 2, 'sweaty': 10, 'shinola': 1, 'voluptuous': 1, 'positive': 5, 'worth': 13, 'stony': 1, 'Scary': 1, 'Iforgive': 1, 'Crooked': 1, 'extraordinary': 5, 'domineering': 1, 'American': 55, 'sneaky': 2, 'high': 124, 'celluloid': 1, 'luscious': 1, 'weary': 16, 'Fluorescent': 1, 'gaudy': 1, 'Vietnamese': 2, 'mobile': 1, 'prior': 1, 'contemptuous': 1, 'lovely': 29, 'unburdened': 1, 'checkbook-sized': 1, 'bitch-ass': 1, 'east': 7, 'denim': 1, 'agonizing': 1, 'unforgiving': 1, 'milky': 4, 'suspicious': 3, 'unto': 2, 'two-legged': 1, 'knowin': 3, 'sexualized': 1, 'mean-lookin': 1, 'hoselike': 1, 'sixteen-foot': 1, 'gray-white': 1, 'calm': 18, 'underrepresented': 1, 'following': 1, 'rusty': 2, 'Chic': 1, 'pre': 1, 'Alive': 1, 'starry': 1, 'human': 15, 'secret': 17, 'funny': 45, 'later': 7, 'bullet-sized': 1, 'liberal': 1, 'broken': 14, 'distressed': 1, 'overall': 1, 'damaging': 1, 'decisive': 1, 'political': 10, 'white-coated': 1, 'dyin': 4, 'unique': 3, 'infectious': 1, 'gold': 6, 'sin-debt': 1, 'organizational': 2, 'Spinning': 1, 'funny-style': 1, 'diverse': 2, 'layered': 1, 'troubled': 2, 'hot-air': 1, 'losin': 2, 'cool': 70, 'vaginal': 1, 'similar': 3, 'dense': 7, 'regular': 45, 'intricate': 1, 'unspoiled': 2, 'round': 16, 'hand-tailored': 1, 'preeminent': 1, 'Enjoy': 1, 'two-poet': 1, 'reflex': 1, 'fly-ass': 1, 'unbleached': 1, 'turned-out': 1, 'handsome': 16, 'primary': 1, 'crocheted': 1, 'perfumey': 1, 'male-female': 1, 'deep': 121, 'profit-driven': 1, 'sick': 75, 'sensitive': 3, 'fiery': 5, 'narrow': 21, 'rebel': 2, 'foreign': 9, 'complex': 3, 'favorite': 19, 'alternative': 1, 'work-hardened': 1, 'womanish': 1, 'old-people': 1, 'sheep-dogged': 1, 'musta': 1, 'Sorry': 8, 'furnished': 3, 'topless': 1, 'good-news': 1, 'woolen': 1, 'brandy-filled': 1, 'temporary': 5, 'gingerbread': 1, 'dependent': 5, 'full-time': 5, 'blue-black': 1, 'indefinite': 1, 'rock-steady': 1, 'First': 8, 'lowermiddle-class': 1, 'nigger': 1, 'Dawa': 20, 'undue': 1, 'pronounced': 2, 'ordinary': 8, 'bleak': 2, 'High-school': 1, '32-inch': 1, 'Red-hot': 1, 'fifty-cent': 4, 'eleventh': 1, 'lasting': 2, 'Olympian': 1, 'narrative': 3, 'skinned': 1, 'rental': 1, 'windowless': 2, 'tacky': 1, 'braided': 3, 'one-piece': 2, 'sixth': 2, 'adult': 13, 'off': 3, 'minimal': 1, 'hand-drawn': 1, 'gritty': 3, 'sandy-covered': 1, 'momentous': 1, 'fifty-five-year-old': 1, 'instandy': 2, 'five-year-old': 3, 'horrible': 5, 'bountiful': 1, 'exaggerated': 1, 'hand-me-down': 2, 'instant': 1, 'chronic': 1, 'four-year-old': 1, 'unusable': 1, 'distressful': 1, 'hop-up-anddown-on-the-curbstone': 1, 'Different': 1, 'blue-and-white': 2, 'pale': 22, 'nighttime': 1, 'neverfight': 1, 'uniformed': 1, 'tea-filled': 1, 'confused': 3, 'Anglo-Saxon': 1, 'next-door': 1, 'blocked-a': 1, 'keen': 5, 'helpful': 5, 'closed': 11, 'Unanswerable': 1, 'danyel': 1, 'twice-a-month': 1, 'Asian': 4, 'light-skinned': 3, 'Yellow': 4, 'Familiar': 1, 'Jemima-like': 1, 'maniacal': 1, 'by-the-lake': 1, 'varied': 1, 'melted': 2, 'simple': 24, 'unhooked': 1, 'windless': 1, 'troublesome': 1, 'uncomplicated': 2, 'British-registered': 3, 'platonic': 3, 'flawed': 2, 'rubbish': 1, 'cynical': 2, 'common': 16, 'various': 8, 'tense': 7, 'unfathomable': 1, 'foot-tall': 1, 'young': 157, 'restorative': 1, 'actual': 9, 'straight-out': 1, 'virginal': 1, 'horned': 1, 'three-ring': 1, 'blueand-white': 1, 'unanticipated': 1, 'heartsick': 1, 'loveless': 2, 'hyped': 1, 'milk-and-water': 1, 'garlic': 2, 'faceless': 3, 'pristine': 2, 'defenseless': 1, 'feminine': 1, 'Thin': 1, 'grudging': 1, 'Comfortable': 2, 'laneless': 1, 'committed': 1, 'stray': 1, 'damn': 33, 'shiny': 19, 'juicy': 2, 'Whistle-and-lemon': 1, 'just-sanitized': 1, 'bobby': 1, 'nigh': 2, 'opal-eyed': 1, 'vulgar': 1, 'Stupid': 5, 'mannish': 1, 'trivial': 2, 'Mandy-the-cook': 1, 'hand-made': 1, 'thirty-year': 1, 'soundless': 1, 'aggravated': 1, 'brown-soaped': 1, 'three-fourths': 1, 'moist': 4, 'Senior': 1, 'careless': 2, 'thankful': 14, 'steel-cut': 1, 'metal-spouted': 1, 'eyelet': 1, 'required': 1, 'assistant': 4, 'call': 4, 'weeklong': 1, 'rain-clean': 1, 'foggy': 3, 'held-back': 1, 'degraded': 1, 'unkept': 1, 'portly': 3, 'Holy': 1, 'located': 1, 'body-slammed': 1, 'amusing': 4, 'hard-boiled': 1, 'available': 12, 'creative': 1, 'collective': 1, 'elusive': 1, 'striking': 1, 'liberating': 1, 'leonardpulled': 1, 'Rolling': 2, 'unwelcome': 1, 'yellow-white': 2, 'big-behinded': 1, 'fitted': 1, 'vain': 5, 'defensive': 3, 'abstract': 2, 'eight-foot': 1, 'rational': 2, 'bland': 4, 'blistering': 1, 'after-hour': 1, 'homemade': 1, 'neatly-made': 1, 'Warm': 5, 'Further': 4, 'haughty': 1, 'sturdy': 3, 'stuffy': 1, 'tear-free': 1, 'gut-bucket': 1, 'sarcastic': 2, 'tawdry': 3, 'lopsided': 2, 'direcdy': 1, 'one-sided': 1, 'underwater': 1, 'Beautiful': 14, 'replete': 1, 'Moroccan': 1, 'Tax-deductible': 1, 'wrong': 197, 'elderly': 7, 'armed': 3, 'wraparound': 2, 'Yall': 1, 'softbound': 1, 'no-applause-please': 1, 'bold': 5, 'retarded': 3, 'objective': 2, 'old-lady': 1, 'deadpan': 1, 'felt-tipped': 1, 'Ross-a-jass': 5, 'Mendocal': 1, 'maternal': 2, 'sleek-looking': 1, 'unafraid': 1, 'industrial': 1, 'Congolese': 1, 'careful': 15, 'kingly': 1, 'Sullen': 1, 'humid': 1, 'stunned': 14, 'deadly': 1, 'aquatic': 1, 'Rear': 1, 'Pregnant': 1, 'cream-of-wheat': 1, 'talcum-faced': 1, 'dated': 1, 'native': 1, 'up-to-date': 2, 'star-spangled': 1, 'laden': 4, 'almost-finished': 2, 'erotic': 1, 'shatterproof': 1, 'unfocused': 2, 'frying': 1, 'wistful': 1, 'lifelong': 1, 'perfecdy': 6, 'Funeral': 1, 'sufficient': 1, 'famal': 2, 'hush': 5, 'depraved': 1, 'cheap': 3, 'ancient': 9, 'earnest': 3, 'clued-in': 1, 'lower-class': 1, 'desirable': 1, 'soapy-grassy': 1, 'loaded': 2, 'adorable': 1, 'flat': 47, 'front-room': 1, 'vast': 2, 'supportin': 2, 'rodent': 1, 'Embarrassed': 1, 'respectable': 7, 'unerring': 1, 'rugged': 2, 'street-level': 1, 'confusing': 1, 'pebbly': 2, 'locker-room': 1, 'red-bearded': 1, 'hem-sewing': 1, 'acidic': 1, 'Bright': 2, 'throbbing': 1, 'out-of-state': 1, 'bulky': 5, 'repetitive': 1, 'raw': 14, 'scalding': 2, 'centered': 1, 'machine-made': 1, 'too-long': 1, 'disturbing': 2, 'one-night': 4, 'silent': 34, 'out-of-body': 1, 'rid': 11, 'bottled-in-bond': 1, 'blank': 10, 'south': 1, 'Close': 2, 'gold-framed': 2, 'hash': 1, 'singular': 1, 'Careful': 2, 'diva-fied': 1, 'Mongoloid': 1, 'different': 130, 'looped-together': 1, 'prosperous': 8, 'Vilets': 1, 'dimly-lit': 1, 'see-and-won': 1, 'twentieth-century': 1, 'nationalist': 5, 'frustrated': 9, 'fifth': 6, 'sickly': 1, 'dispossessed': 1, 'Wrong': 1, 'two-family': 1, 'uptight': 2, 'exertin': 1, 'vacuum-packed': 1, 'Innumerable': 1, 'billowy': 1, 'two-block': 1, 'concrete': 2, 'mortal': 3, 'glistening': 1, 'swollen': 16, 'minute': 1, 'Unbleached': 1, 'fourteen-year-old': 1, 'unprotected': 1, 'awash': 3, 'one-year-old': 1, 'apparent': 2, 'nearby': 8, 'imperceptible': 1, 'teary': 1, 'Tuxedoed': 1, 'mother-daughter': 2, 'sleep-like': 1, 'asymmetrical': 1, 'constructive': 1, 'three-way': 2, 'fourteenth': 2, 'needy': 2, 'Egg-yolk': 1, 'Few': 2, 'inappropriate': 1, 'Virginian': 2, 'veritable': 1, 'same-looking': 1, 'particular': 23, 'monumental': 1, 'bewildered': 2, 'perfect-matched': 1, 'frilly': 1, 'mindful': 2, 'respectful-like': 1, 'shortsighted': 2, 'Cuban': 5, 'slim': 8, 'Biblical': 1, 'automatic': 4, 'tongue-tied': 1, 'concentrated': 1, 'realistic': 3, 'rash': 2, 'run-fast': 1, 'SILENT': 1, 'firstclass': 1, 'stormy': 2, 'miserable': 4, 'terry-cloth': 2, 'boarded-up': 1, 'Indian': 9, 'mule-drawn': 1, 'worthless': 1, 'bleeding': 1, 'tiresome': 1, 'raunchy': 1, 'too-big': 1, 'Potted': 1, 'torn': 2, 'deviled': 1, 'maiden': 2, 'unhealthy': 2, 'cheerful': 3, 'five-pointed': 1, 'stereotypical': 1, 'pince-nez': 1, 'vigorous': 1, 'fuck': 2, 'dead': 133, 'sane': 1, 'unsentimental': 2, 'sudden': 38, 'key': 8, 'intolerable': 1, 'full-blown': 2, 'jeweled': 5, 'cool-ass': 2, 'exact': 7, 'uneventful': 2, 'Rhinestone': 1, 'appliance-selling-type': 1, 'family-owned': 1, 'embarrassing': 1, 'Asian-looking': 1, 'biological': 3, 'unbeatable': 1, 'correctional': 1, 'attractive': 9, 'four-room': 3, 'vicious': 3, 'sandy-haired': 1, 'creamed': 1, 'known': 3, 'spinning': 1, 'Ten-fifteen': 1, 'tongue-kiss': 1, 'flame-shaped': 1, 'sore': 6, 'unrewarded': 1, 't-there-to-know-or-be-found': 1, 's-l-o-w': 1, 'electrical': 1, 'curious': 5, 'ankle-deep': 1, 'toothpasty': 1, 'milk-chocolate': 1, 'renegade': 1, 'SINGLE': 1, 'lucrative': 1, 'startling': 2, 'eager': 9, 'pink-slashed': 1, 'straight-backed': 3, 'blue-lace': 2, 'queasy': 3, 'aware': 10, 'Blue': 1, 'incoming': 1, 'Mixed': 1, 'petite': 3, 'comatose': 1, 'stark': 3, 'Nostalgic': 1, 'nimble': 1, 'condensed': 1, 'performin': 1, 'Worthy': 5, 'check-cashing': 2, 'mammoth': 1, 'in-and-out': 1, 'look-at-me': 1, 'grievous': 2, 'tired-ass': 1, 'truthful': 4, 'bicentennial': 1, 'moon-faced': 1, 'wide-legged': 1, 'Amazing': 1, 'adjacent': 1, 'plump': 5, 'half-closed': 1, 'undressed': 4, 'racial': 8, 'bimbo-looking': 1, 'tasty': 1, 'Thick': 2, 'playful': 1, 'average': 4, 'limp': 15, 'wilting': 1, 'brutish': 1, 'needless': 2, 'Born-yesterday': 1, 'clipping': 1, 'privileged': 1, 'worried': 22, 'surprising': 3, 'Same': 6, 'double-decker': 2, 'youthful': 2, 'rooted': 1, 'barbecued': 1, 'alcoholic': 2, 'sin-a': 2, 'glorious': 4, 'ladylike': 3, 'compelling': 2, 'familial': 1, 'pathetic': 3, 'red-rimmed': 1, 'few': 291, 'Glad': 3, 'fortyfive': 1, 'Next': 13, 'dopted': 1, 'minuscule': 1, 'wooden': 26, 'unavailable': 1, 'dull': 7, 'fragile': 4, 'packed': 5, 'interracial': 4, 'me-time': 1, 'UNIA': 2, "ol'": 1, 'double': 27, 'not-so-tall': 1, 'breast-grabbing': 1, 'stunning': 4, 'Bland': 2, 'vinegar-and-water': 1, 'minor': 3, 'nine-yearold': 1, 'two-bathroom': 1, 'dinin-car': 1, 'nonprofit': 1, 'brash': 2, 'shameful': 3, 'whipping': 4, 'nonstop': 1, 'hostile': 2, 'breathtaking': 1, 'inside': 12, 'musty': 1, 'wellto-do': 1, 'ultimate': 4, 'notary': 1, 'comfy': 2, 'cryptic': 1, 'twenty-five-year': 2, 'ragged': 11, 'Brought': 1, 'decaying': 1, 'white-tipped': 1, 'ceramic': 5, 'finicky': 2, 'comical': 1, 'still-pristine': 1, 'hoarse': 4, 'frank': 1, 'wide': 76, 'sunreddened': 1, 'Tired': 8, 'three-foot-tall': 1, 'knotted': 1, 'nosy': 4, 'unlit': 1, 'Stringy-haired': 1, 'motivational': 1, 'eighty-yard': 1, 'selfish': 6, 'stocky': 3, 'fading': 4, 'held': 1, 'after-dinner': 1, 'spreadout': 1, 'amazing': 12, 'patriotic': 3, 'predawn': 1, 'stoney-eyed': 1, 'usable': 1, 'bony': 2, 'face': 1, 'tantalizing': 1, 'droopy': 2, 'tapered': 2, 'uneasy': 6, 'sassy': 1, 'true.T': 1, 'British': 8, 'Similar': 1, 'breaking': 1, 'spellbinding': 1, 'unzipped': 2, 'crisp': 12, 'mechanical': 2, 'rapt': 1, 'forced': 2, 'nonwhite': 3, 'upward': 1, 'seventy-eight-yearold': 1, 'peaceful': 10, 'broke-down': 1, 'Closed': 1, 'fern-cloaked': 1, 'precious': 15, 'weekly': 3, 'unfaithful': 1, 'two-year': 2, 'tall': 44, 'constant': 13, 'deafening': 2, 'wild-ass': 1, 'fouryear-old': 1, 'dreamless': 1, 'gaping': 3, 'coffee-table': 1, 'restful': 3, 'shaky': 3, 'surefire': 1, 'Buck-naked': 1, 'oversized': 4, 'ass-whipping': 1, 'pitiful': 7, 'everv': 1, 'pained': 1, 'blue-and-gold': 2, 'important': 43, 'helpin': 1, 'clueless': 1, 'conscious': 3, 'uncertain': 1, 'ribboned': 2, 'ice-cold': 1, 'northernmost': 1, 'unfamiliar': 7, 'starchy': 1, 'annoyed': 4, 'Good': 36, 'counterclockwise': 1, 'blocky': 1, 'criminal': 4, 'huge': 48, 'disgusting': 1, 'fearful': 3, 'off-the-field': 1, 'unscheduled': 1, 'corny': 3, 'yellow': 47, 'Dawn': 4, 'big-eyed': 1, 'wrung-out': 1, 'very': 8, 'dead-serious': 1, 'nude': 3, 'thirty-two-dollar': 1, 'dead-end': 1, 'ruddy': 1, 'nasty-mouthed': 1, 'someplace': 1, 'exceptional': 2, 'celebrated': 1, 'caustic': 1, 'cramped': 1, 'paper-thin': 1, 'ripe': 2, 'dignified': 3, 'arbitrary': 1, 'nother': 2, "'cause": 4, 'floor-length': 1, 'soft-ass': 1, 'bead-fringe': 1, 'prenatal': 2, 'nine-feet': 1, 'concerned': 11, 'two-liter': 1, 'rosy': 4, 'sittin': 1, 'radiant': 3, 'honey-colored': 1, 'Chumash': 1, 'cordless': 6, 'interrupted': 1, 'experimental': 1, 'forthcoming': 1, 'slender': 1, 'related': 2, 'third-floor': 1, 'Bout': 2, 'sunken': 2, 'productive': 1, 'groomed': 1, 'erudite': 1, 'shadowy': 1, 'police-car': 1, 'ethic': 1, 'split-back': 1, 'shoulder-length': 2, "n'tfunny": 1, 'medicated': 1, 'abundant': 1, 'motherless': 1, 'homeless': 3, 'buttonless': 1, 'shredded': 1, 'necessary': 6, 'convincing': 3, 'muthafuckin': 1, 'tearless': 1, 'yall': 4, 'papery': 1, 'green-brown': 1, 'big-screen': 1, 'content': 2, 'Midsummer': 2, 'unnecessary': 3, 'Slim': 1, 'impermeable': 1, 'moneyed': 1, 'benevolent': 1, 'senior': 8, 'Apparendy': 1, 'trompled': 1, 'average-sized': 1, 'final': 28, 'unconscious': 1, 'Classic': 1, 'Tic': 1, 'hole-in-the-wall': 1, 'sliced': 3, 'fizzing': 1, 'gentle': 17, 'in-a-lifetime': 1, 'Dizzy': 1, 'fashionable': 1, 'interestin': 1, 'far-off': 2, 'beloved': 5, 'confidence-boosting': 1, 'chaotic': 1, 'patriarchal': 2, 'capable': 3, 'Burnt': 2, 'streamlined': 1, 'ideological': 1, 'sultry': 1, 'super-sheer': 1, 'disorganized': 1, 'fine-lookin': 1, 'taut': 9, 'fruit-filled': 1, 'muckty-muck': 1, 'innocent': 12, 'extra': 34, 'barefoot': 3, 'enraged': 1, 'brownskinned': 1, 'unhappy': 3, 'half-assed': 1, 'muscley': 1, 'South': 1, 'back-to-Africa': 1, 'broad': 17, 'expressive': 1, 'evident': 1, 'pink': 34, 'marsh': 1, 'lettum': 1, 'duffel': 7, 'mother-child': 1, 'Long': 9, 'self-possessed': 1, 'west': 1, 'white-uniformed': 1, 'fierce': 4, 'paper-wrapped': 1, 'chauffeured': 1, 'exasperated': 3, 'sparkling': 7, 'merciful': 1, 'wealthy': 2, 'half-stuffed': 2, 'crucial': 1, 'subde': 3, 'brilliant': 11, 'black-and-blue': 1, 'cutthroat': 1, 'wicked': 9, 'eternal': 5, 'twin': 2, 'disfigured': 1, 'spiteful': 1, 'jiggly': 1, 'incessant': 1, 'godlike': 1, 'last': 291, 'theatrical': 6, 'quiet': 98, 'undyed': 1, 'day-old': 1, 'granulated': 1, 'fleshly': 1, 'primitive': 1, 'silver': 2, 'afraid': 50, 'gold-starred': 1, 'over-powdered': 1, 'squashed': 1, 'we7': 1, 'stingy': 2, 'opening': 1, 'entertaining': 2, 'put': 2, 'front': 97, 'ten-dollar': 1, 'unreasonable': 2, 'family-wise': 1, 'grilled': 2, 'phlegmy': 1, 'four-hundredpound': 1, 'polished': 2, 'torn-up': 1, 'circular': 3, 'wonderful': 19, 'party-planning': 1, 'silvery': 3, 'ambitious': 2, 'so-be-its': 1, 'compassionate': 2, 'threadbare': 2, 'mechanic': 1, 'racist': 9, 'floral': 1, 'prominent': 1, 'hooded': 1, 'searing': 2, 'pasty': 1, 'hand-counted': 1, 'hennaed': 1, 'tempting': 1, 'Twenty-third': 2, 'moony': 1, 'Vd': 1, 'straight': 26, 'shrunken': 1, 'gross': 2, 'vivid': 2, 'eerie': 2, 'Feeble': 2, 'depressed': 7, 'bloodshot': 1, 'six-person': 1, 'ant': 1, 'legal': 16, 'ill': 3, 'proletarian': 1, 'durable': 1, 'otherworldly': 2, 'pure-nylon': 1, 'red-faced': 2, 'Miserable': 1, 'yellow-walled': 1, 'sorry': 147, 'exclamation': 2, 'female': 23, 'scholarly': 1, 'steep': 10, 'tearful': 1, 'iced': 7, 'Olive': 1, 'awkward': 9, 'tantamount': 1, 'Herringbone': 1, 'splotched': 1, 'loud-assed': 1, 'tuck-tail': 4, 'bawdy': 1, 'jagged-edged': 1, 'skeletal': 1, 'darn': 1, 'annoying': 2, 'infuriating': 1, 'super-crisp': 1, 'play-off': 1, 'confetti-like': 1, 'red-washed': 1, 'Canadian': 2, 'onion': 1, 'five-inch': 1, 'recorded': 1, 'nooky': 1, 'dognanny': 1, 'Seething': 1, 'holdin': 2, 'right': 245, 'invisible': 11, 'on-and': 1, 'wrenching': 2, 'dapper': 2, 'baby-skinned': 1, 'full-out': 1, 'middle': 10, 'self-centered': 1, 'squat': 7, 'celery-salted': 1, 'parental': 1, 'Book/Transcontinental': 1, 'indomitable': 1, 'methodical': 1, 'lowcut': 4, 'gas-burning': 1, 'serene': 5, 'bv': 1, 'good-natured': 2, 'perplexed': 1, 'smug': 3, 'class-conscious': 1, 'unmanageable': 1, 'three-piece': 1, 'fretful': 1, 'two-piece': 1, 'Absurd': 2, 'happy': 146, 'store-bought': 1, 'opposite': 15, 'rich': 24, 'gangruled': 1, 'lonesome': 13, 'several': 40, 'multicolored': 1, 'tiring': 1, 'hardened': 2, 'physical': 17, 'African-American': 1, 'sponge-painted': 1, 'grimy': 3, 'live': 11, 'roofless': 1, 'leftist': 1, 'classic': 1, 'near': 3, 'orange-red': 1, 'varnished': 2, 'stressful': 1, 'morbid': 2, 'little-girl': 1, 'wide-eyed': 1, 'overpressed': 1, 'tranquil': 2, 'static': 2, 'two-line': 1, 'scrubbed': 1, 'foot-patting': 1, 'tear-filled': 1, 'mossy': 1, 'spotty': 1, 'turned-back': 1, 'grown': 16, 'plenty': 12, 'high-top': 1, 'flustered': 1, 'miscellaneous': 1, 'messy': 5, 'sky-dyed': 1, 'restricted': 2, 'mustached': 1, 'premier': 1, 'foolproof': 1, 'profitable': 1, 'well-fixed': 1, 'unnatural': 3, 'Twenty-sixth': 1, 'stripped-down': 1, 'perfect': 63, 'wayward': 3, 'seventy-yearold': 1, 'venetian': 1, 'mind-reading': 1, 'off-duty': 1, 'lucky': 25, 'downtrodden': 2, 'hell-fire': 1, 'flowered': 7, 'homely': 1, 'oblong': 2, 'phantom': 1, 'enthusiastic': 2, 'highpriced': 1, 'cast-off': 1, 'fairy-tale': 1, 'stateside': 1, 'cardtable': 1, 'illegitimate': 1, 'red-blooded': 1, 'prime': 2, 'honest': 16, 'prone': 2, 'intense': 5, 'sinful': 5, 'distant': 12, 'scandalous': 1, 'rhetorical': 1, 'blonde': 1, 'faraway': 2, 'sharp-tongued': 1, 'tie-dyed': 1, 'traditional': 1, 'Hot': 5, 'raythrilled': 1, 'thoughtful': 3, 'potted': 2, 'Latin': 1, 'headstrong': 1, 'craggy': 1, 'placid': 2, 'inaugural': 1, 'drunk': 33, 'kindsa': 1, 'gold-colored': 1, 'part-time': 11, 'Jamaican': 4, 'ostrich': 2, 'classy': 5, 'better-lookin': 1, 'compatible': 1, 'reallife': 1, 'grieving': 1, 'slighdy': 5, 'oppressive': 1, 'stiff': 19, 'illegal': 5, 'splain': 1, 'well-pitched': 1, 'unsteady': 1, 'profound': 1, 'ten-year': 1, 'virtual': 1, 'personal': 16, 'Unbelievable': 2, 'understandin': 1, 'gangly': 2, 'sticky-floored': 1, 'mistaken': 2, 'redheaded': 1, 'Special': 2, 'sisterly': 1, 'contented': 1, 'touching': 5, 'forty-foot': 1, 'weird': 9, 'empty': 54, 'weighty': 1, 'faindy': 1, 'uncertainly': 1, 'intact': 1, 'finest-looking': 1, 'exacdy': 9, 'newfound': 1, 'pregnant': 78, 'quick': 44, 'not-so-faithful': 1, 'perky': 1, 'Peoplejust': 1, 'hundredth': 1, 'extra-compassionate': 1, 'Tall': 2, 'phony': 2, 'bare': 15, 'invincible': 1, 'Argentinean': 1, 'burnt': 7, 'accidental': 3, 'high-and-mighty': 1, 'fish-loving': 1, 'two-inch': 1, 'perfumed': 5, 'high-pitched': 2, 'fingers-in-mouth': 1, 'educational': 3, 'lightning-eyed': 1, 'prideful': 1, 'negotiable': 1, 'shipshape': 1, 'strange': 30, 'shameless': 1, 'puddle-eved': 1, 'traffic': 1, 'just': 2, 'battered': 1, 'unformed': 1, 'left': 33, 'funny-lookin': 1, 'ever-silent': 1, 'colorful': 2, 'unsold': 1, 'married': 17, 'execution-style': 1, 'abiding': 1, 'plus': 1, 'anticlimactic': 1, 'terse': 1, 'creamy': 4, 'Brutal': 1, 'middle-of-the-night': 1, 'upbeat': 3, 'spiked': 2, 'Quit': 4, 'unsmiling': 1, 'breathless': 1, 'everything-in-order': 1, 'real': 205, 'acid-washed': 1, 'joyful': 3, 'massive': 6, 'noble': 3, 'mischievous': 2, 'blatant': 2, 'disparate': 1, 'unplanned': 2, 'respected': 1, 'Stretchy': 1, 'western': 1, 'petty': 1, 'park-lined': 1, 'knife-sharp': 1, 'kewpie': 1, 'cross-country': 1, 'staggering': 1, 'passionate': 3, 'segmented': 1, 'clean': 87, 'solid': 15, 'well-mannered': 2, 'subject': 4, 'alluring': 1, 'exhilarated': 1, 'express': 1, 'immortal': 1, 'willin': 6, 'soft': 64, 'corrupt': 1, 'Nationalist': 3, 'no-more-check-cashingcenter': 1, 'inward': 1, 'Five-card': 1, 'showin': 1, 'teen': 1, 'hopeful': 6, 'out-at-the-bar': 1, 'undeclared': 2, 'difficult': 21, 'Bought': 2, 'fluid': 1, 'tighdy': 2, 'open': 137, 'outside': 36, 'full-faced': 1, 'presentable': 3, 'splitting': 2, 'perpetual': 1, 'intrusive': 1, 'thorough': 4, 'flimsy': 2, 'Munchie-soft': 1, 'drastic': 1, 'accented': 1, 'rear': 6, 'fightin': 1, 'pinkie-sized': 1, 'terminal': 1, 'MAJOR': 1, 'Christian': 16, 'black-and-white': 3, 'swaggering': 2, 'welcome-home': 1, 'erupting': 1, 'get-a-party-started': 1, 'thricepatched': 1, 'friendly': 15, 'fried': 6, 'romantic': 12, 'stiff-legged': 1, 'red-shaded': 1, 'shattered': 1, 'unappealing': 1, 'Enraged': 1, 'Found': 1, 'flip': 4, 'sixth-grade': 2, 'inner-city': 1, 'fervent': 1, 'bridal': 3, 'yardlong': 1, 'tape-covered': 1, 'unblemished': 1, 'detailed': 1, 'like': 1, 'dejected': 1, 'humbling': 1, 'French': 10, 'unpinning': 1, 'recruitin': 1, 'seamless': 1, 'Sad-faced': 1, 'half-blinded': 1, 'pesky': 1, 'Told': 4, 'intensive': 2, 'drug-crazed': 1, 'cold': 90, 'Northern': 1, 'severe': 3, 'hesitant': 3, 'crescent': 1, 'loony': 3, 'right-hand': 1, 'sofdy': 2, 'Half-gifted': 1, 'superior': 4, 'resounding': 1, 'cheatin': 1, 'callous': 1, 'blowin': 1, 'brutal': 3, 'sleeveless': 4, 'disembodied': 1, 'civic': 1, 'hand-knotted': 1, 'three-room': 1, 'strangest': 2, 'foolin': 1, 'man-less': 1, 'jammin': 1, 'paramedic': 1, 'rude': 20, 'golden': 22, 'twelve-week': 1, 'cut-up': 1, 'bossy-acting': 1, 'knee-length': 1, 'Confederate': 2, 'beautiful': 127, 'Concerned': 1, 'placin': 1, 'fiftieth': 1, 'sociopolitical': 1, 'warm': 59, 'select': 1, 'shimmering': 8, 'only': 154, 'bitter': 20, 'jangling': 1, 'double-checked': 1, 'lunatic': 1, 'thick': 71, 'inspirational': 3, 'scratchy': 1, 'green-andwhite': 1, 'foul': 2, 'adjoining': 3, 'immobile': 2, 'helter-skelter': 1, 'lazy': 2, 'premature': 3, 'Bulb-like': 1, '5-foot': 1, 'uncomfortable': 13, 'strutting': 1, 'large': 52, 'crude': 2, 'cluttered': 3, 'longhaired': 4, 'anything-you-want': 1, 'all-white': 2, 'junior': 2, 'collard': 1, 'mulatto': 4, 'rare': 13, 'inconceivable': 1, 'humpback': 1, 'God-fearing': 1, 'immature': 1, 'clear-voiced': 1, 'requisite': 1, 'ringed': 1, 'boy-type': 1, 'untouched': 7, 'soggy': 2, 'shared': 1, 'trashy': 2, 'third': 24, "M'dear": 6, 'cooking': 1, 'ole': 1, 'nine-thirty': 1, 'blacked-out': 1, 'wobbly': 4, 't-be-seen': 1, 'rigid': 3, 'right-this-way': 1, 'impatient': 3, 'chirpy': 1, 'purple-eyed': 1, 'bustling': 2, 'mutual': 1, 'timid': 1, 'excited': 14, 'sheltered': 1, 'deceitful': 1, 'boyfriend-girlfriend': 1, 'curtained': 1, 'pearl-studded': 1, 'chivalrous': 1, 'certain': 32, 'Cross-legged': 1, 'semi-automatic': 1, 'knock-off': 1, 'famous': 11, 'Irregular': 1, 'ninetysix': 1, 'palpable': 1, 'festive': 2, 'Ungreased': 1, 'local': 8, 'fiftyyear-old': 1, 'barren': 2, 'nineteen-year-old': 1, 'naval': 1, 'secluded': 1, 'expensive': 7, 'tangible': 2, 'possible': 39, 'backbreaking': 1, 'cannonball': 1, 'chalk-striped': 1, 'contemporary': 3, 'hazy': 7, 'indecent': 1, 'pant': 2, 'Late': 2, 'Yah-yah': 1, 'underserved': 2, 'jaded': 1, 'so-so': 1, 'brown-gold': 1, 'forgiving': 1, 'mystified': 1, 'unlikely': 1, 'nonfunctioning': 1, 'big-boned': 2, 'plumed': 1, 'two-ton': 1, 'flyspecked': 1, 'soapy': 1, 'Elevated': 1, 'daytime': 3, 'horsehair': 1, 'gray-haired': 1, 'countless': 1, 'dangerous': 12, '5br': 1, 'pre-pregnancy': 1, 'pure': 19, 'north': 1, 'teenlike': 1, 'just-washed': 1, 'mean-tempered': 1, 'rural': 3, 'reasonable': 3, 'close': 53, 'finer': 2, 'Much': 1, 'wanted': 1, 'take-another-step': 1, 'victorious': 2, 'docile': 1, 'affectionate': 2, 'fulla': 1, 'imaginary': 3, 'Styrofoam': 1, 'metallic': 3, 'Bitter': 3, 'troupe': 1, 'immeasurable': 1, 'Solid': 2, 'red-and-black': 1, 'Unable': 1, 'rippled': 1, 'cowardly': 1, 'oughta': 1, 'malignant': 1, 'Large': 2, 'unfair': 10, 'Litde-ass': 1, 'material': 2, 'kiddy': 1, 'oriental': 2, 'depressing': 2, 'foolish': 13, 'working-class': 1, 'trail-finder': 1, 'splintered': 2, 'Basic': 1, 'slinging-type': 1, 'spendin': 1, 'excellent': 7, 'managerial': 1, 'fluffy': 3, 'sodden': 1, 'slimy': 2, 'backslappy': 1, 'promised': 1, 'half-dressed': 1, 'irritating': 1, 'black-banded': 1, 'scarlet': 2, 'washable': 1, 'ferocious': 3, 'sleek': 3, 'four-foot': 2, 'historical': 6, 'proclaimed': 1, 'la-la': 1, 'menacing': 2, 'delicious': 2, 'green-smelling': 1, 'blown-up': 1, 'hair-straightening': 1, 'cross-class': 1, 'unsettled': 3, 'ugly': 24, 'Dense': 1, 'felt-tip': 1, 'followin': 1, 'sensuous': 2, 'elegant': 9, 'hand-lettered': 1, 'fat': 23, 'verbatim': 1, 'Novel': 2, 'law-abiding': 2, 'merry-goround': 1, 'fruit-and-vegetable': 1, 'filled-out': 1, 'outta': 3, 'shallow': 6, 'rambunctious': 1, 'after-hours': 1, 'blowy': 1, 'else': 10, 'handwritten': 6, 'overpriced': 1, 'sleepyeyed': 1, 'enjoyin': 1, 'organic': 1, 'uh-uh': 1, 'northern': 1, 'adoring': 1, 'salt-whitened': 1, 'judgmental': 3, 'hush-hush': 1, 'well-to-do-white-folks': 1, 'cut-off': 1, 'beveled': 1, 'mild': 2, 'mannerly': 1, 'bulbous': 2, 'Irish': 12, 'polite': 15, 'skinny': 7, 'thin': 46, 'Hopeless': 1, 'elaborate': 4, 'takin': 4, 'arid': 2, 'hull': 1, 'spectacular': 1, 'correct': 4, 'daddy': 9, 'negative': 3, 'baby-sitting': 1, 'black-and-white-tile': 1, 'sexual': 32, 'Ibo': 1, 'Charming': 1, 'preliminary': 1, 'Defensive': 2, 'INDOMITABLE': 1, 'Southeast': 1, 'unstrained': 1, 'choppy': 1, 'sour-cherry': 1, 'third-class': 2, 'colloquial': 1, 'new': 250, 'hand-pump': 1, 'ten-second': 1, 'rouged': 1, 'all-the-white-man-hasleft-for-me-is-selling-crack': 1, "n'tfeel": 2, 'Underground': 1, 'financial': 4, 'kaleidoscopic': 1, 'goofy': 1, 'modest': 1, 'smelly': 1, 'bumpy': 1, 'willing': 15, 'injurious': 1, 'Faint': 1, 'nough': 3, 'dishonest': 2, 'full': 181, 'high-stepping': 1, 'blind-sided': 1, 'insincere': 1, 'panicky': 1, 'lavish': 1, 'extra-tall': 1, 'Decent': 2, 'sacred': 2, 'undercover': 2, 'spontaneous': 1, 'spiced': 1, 'Christ-centered': 1, 'long-distance': 2, 'ricky-ticky': 1, 'bizarre': 6, 'brimming': 1, 'unmistakable': 1, 'silky': 5, 'curly': 3, 'High-waisted': 1, 'forlorn': 1, 'dayto-day': 1, 'family-run': 1, 'moral': 3, 'moldy': 1, 'double-aisled': 1, 'snaky-ass': 1, 'ours': 9, 'safe': 36, 'dependable': 2, 'perk': 1, 'on-and-off': 1, 'meltin': 1, 'Gold-eyes': 7, 'independent': 6, 'Irom': 2, 'bored': 1, 'welcome': 13, 'Overseas': 1, 'lanky': 2, 'plank': 2, 'slack': 2, 'one-fifty': 1, 'Strange': 1, 'uppity': 2, 'embroidered': 4, 'percent': 1, 'cold-ass': 1, 'lame': 5, 'lynch': 1, 'tuition-free': 1, 'unstable': 1, 'palatial': 1, 'bloody': 13, 'four-year': 1, 'jam-packed': 1, 'overblown': 1, 'white-headed': 1, 'olive': 3, 'one-hour': 1, 'unwound': 1, 'positioned': 1, 'cunning': 1, 'made-up': 4, 'plush': 2, 'definite': 2, 'loud': 67, 'comforting': 8, 'twelve-million-dollar': 1, 'Noisy': 1, 'lightcomplexioned': 1, 'minty': 1, 'Danish': 1, 'transitional': 1, 'this-is-a-money-day': 1, 'half-baked': 1, 'sporty': 2, 'red-orange': 1, 'beat': 1, 'dangling': 3, 'broke': 4, 'Mexican': 4, 'respectful': 4, 'horse-drawn': 2, 'fruit-eating': 1, 'clammy': 2, 'attentive': 2, 'Present': 2, 'practical': 6, 'blind': 14, 'loath': 1, 'intercultural': 1, 'post-funeral': 1, 'twelve-year-old': 1, 'balledup': 1, 'unbuckled': 1, 'Well-to-do': 2, "li'l": 1, 'satisfied': 7, 'tiled': 1, 'Protestant': 1, 'hollow': 11, 'mindless': 1, 'velvety': 2, 'permanent': 5, 'truckstop': 1, 'seventeen-year-old': 2, 'six-room': 1, 'stuck-up': 2, 'awed': 1, 'private': 35, 'cross-legged': 1, 'unspoken': 1, 'white-spearheaded': 1, 'infamous': 1, 'Low': 1, 'crunchy': 1, 'hard': 209, 'cartoony': 1, 'unseen': 4, 'once-upon-a-time': 3, 'everyday': 9, 'long': 273, 'sunny': 3, 'ashen': 1, 'accurate': 1, 'squishy': 1, 'rehearsed': 1, 'airy': 1, 'panty': 1, 'natural': 26, 'small': 184, 'top': 59, 'silver-white': 1, 'Plaid-shirted': 1, 'frequent': 2, 'parallel': 2, 'Inquisitive': 1, 'generous': 6, 'adventurous': 1, 'irritated': 4, 'beribboned': 1, 'facetious': 1, '115-pound': 1, 'Mute': 1, 'impossible': 19, 'ash': 1, 'smooth': 27, 'agate': 2, 'ready': 209, 'tortured': 1, 'rubbery': 1, 'Pyrotechnic': 1, 'essential': 1, 'straight-up': 2, 'fenced-in': 2, 'jolting': 1, 'puny': 2, 'confidendy': 1, 'buck-toothed': 1, 'inevitable': 3, 'early': 42, 'shivery': 2, 'drunken': 2, 'goddamn': 14, 'life-size': 1, 'bulk': 1, 'Hush': 4, 'just-born': 1, 'aheada': 1, 'sesame': 1, 'radical': 1, 'Last': 12, 'Black': 71, 'significant': 6, 'white': 531, 'Short': 18, 'almond': 2, 'birthing': 1, 'heartshaped': 1, 'inquisitive': 2, 'popular': 5, 'straightforward': 4, 'businesslike': 2, 'unsheltered': 1, 'unheard': 2, 'charming': 2, 'late-today': 1, 'defiant': 3, 'heavy-footed': 2, 'ten-year-old': 2, 'occasional': 5, 'whining': 2, "'till": 1, 'monthly': 6, 'emphatic': 2, 'entire': 32, 'disastrous': 1, 'naked': 24, 'fancy-women': 3, 'frothy': 2, 'pro': 6, 'loping': 1, 'half-starved': 1, 'old-but-not-classic': 1, 'helluva': 1, 'winded': 1, 'heinous': 1, 'ignorant': 6, 'pre-registered': 1, 'third-grade': 1, 'disgusted': 1, 'professional': 15, 't-know-it-or-can': 1, 'murky': 2, 'adequate': 1, 'responsive': 1, 'pocked': 1, 'sincere': 8, 'rival': 1, 'chalky': 1, 'trim': 6, 'total': 6, 'damaged': 2, 'sour': 9, 'Fucked-up': 1, 'present-tense': 2, '77ns': 1, 'tight': 68, 'wide-skirted': 1, 'hard-to-get-along-with': 1, 'dry': 47, 'still-wet': 1, 'stretcher-table': 1, 'roasted': 3, 'somethin': 1, 'unlimited': 1, 'plentiful': 1, 'amorphous': 3, 'fucked-up': 7, 'anthologized': 1, 'well-cut': 1, 'girlish': 1, 'surgical': 2, 'indifferent': 1, 'weak': 45, 'cryin': 1, 'Cologne-filled': 1, 'kind': 6, 'funeral': 19, 'inverted': 1, 'reckless': 1, 'unfriendly': 1, 'pass-through': 2, 'gloomy': 1, 'two-month': 1, 'chic': 3, 'inflated': 1, 'abusive': 1, 'wilted': 1, 'glaring': 2, 'garbanzo-bean': 1, 'homesick': 1, 'foursome': 1, 'succinct': 1, 'run-down': 1, 'broken-runged': 1, 'further': 10, 'getout-of-jail': 1, 'Go-Go': 2, 'four-story': 1, 'half-empty': 1, 'fastidious': 1, 'proud': 46, 'conceited': 1, 'incurable': 1, 'tingling': 1, 'Nannah': 4, 'formal': 9, 'muscular': 5, 'stylish': 2, 'disquieting': 1, 'unchained': 3, 'Sober': 2, 'heated': 2, 'Bible-school': 1, 'dimpled': 4, 'capped': 1, 'Brown': 7, 'henna-tipped': 1, 'beautiful-looking': 1, 'yellow-brick': 1, 'smooth-skinned': 1, 'pretty': 14, 'upon-a-time-white': 1, 'nice': 123, 'sepia': 1, 'presidential': 1, 'economic': 3, 'forty-year': 1, 'mellow': 1, 'alternate': 4, 'Shaky': 1, 'collegiate': 1, 'sorta': 2, 'non-profit': 2, 'mystical': 3, 'big-time': 1, 'well-drawn': 1, 'unlooped': 1, 'greasy': 3, 'cross-a': 2, 'unpacked': 1, 'foster': 4, 'singsong': 1, 'pointed': 2, 'millionaire': 1, 'grainy': 1, 'blond': 5, 'old-fashioned': 3, 'whiny': 1, 'dark-red': 1, 'sweeping': 4, 'distressing': 1, 'future': 10, 'ridiculous': 10, 'wearin': 5, 'lay': 1, 'low-heeled': 1, 'prepared': 3, 'straightened': 1, 'blood-stained': 2, 'sit-up': 1, 'suede': 1, 'and-orange-juice': 1, 'wet-dreaming': 1, 'uneducated': 2, 'lewd': 1, 'off-work': 1, 'Cruciate': 2, 'horrendous': 1, 'mental': 10, 'overcast': 1, 'coppery': 1, 'all-star': 1, 'reprehensible': 1, 'hundred-dollar': 3, 'deep-dish': 1, 'bunioned': 1, 'Loving': 1, 'strict': 6, 'Lowdown': 1, 'well-dressed': 2, 'industrious': 1, 'Japanese': 5, 'wet': 50, 'five-room': 5, 'serious': 40, 'crimson': 2, 'locked-up': 1, 'true': 88, 'bent': 19, 'decimal': 1, 'roomy': 1, 'Chinese': 20, 'Giant': 2, 'manv': 1, 'finishing': 1, 'stillwater-run-deep': 1, 'enlarged': 2, 'own': 328, 'Little': 7, 'federal': 1, 'junior-high-school': 2, 'wireless': 1, 'six-year-old': 1, 'humorless': 1, 'complimentary': 1, 'wooded': 1, 'seventeen-week': 1, 'Deep': 4, 'Trifling': 1, 'filthy': 5, 'mesmerizing': 1, 'treasured': 1, 'terrible': 34, 'dilapidated': 1, 'haired': 1, 'due': 24, 'alright': 21, 'distinguishable': 1, 'unchanging': 1, 'female-centered': 3, 'tattered': 4, 'enormous': 3, 'outer': 4, 'malleable': 1, 'Chilling': 2, 'flirtatious': 2, 'subordinate': 1, 'solemn': 5, 'scrawny': 4, 'Sisterly': 1, 'wide-brimmed': 1, 'stagnant': 1, 'snaggletoothed': 1, 'daily': 12, 'coon': 1, 'Happy': 12, 'rattlin': 1, 'rectangular': 3, 'Wonder': 3, 'separate': 16, 'far': 7, 'newborn': 2, 'minstrel': 2, 'sticky': 8, 'nonsensical': 1, 'Renegade': 1, 'doggie': 1, 'broad-brimmed': 1, 'wartime': 1, 'wise': 9, 'trimmin': 1, 'gruesome': 2, 'fractious': 1, 'heart-shaped': 1, 'Red': 4, 'black-andblue': 1, 'permed': 1, 'gleeful': 2, 'many': 193, 'controlled': 1, 'down-to-earth': 1, 'light': 77, 'Victorian': 2, 'Magic': 1, 'guilty': 8, 'white-owned': 1, 'major': 14, 'toothy': 2, 'potential': 2, 'scant': 1, 'futile': 2, 'ninety-six-dollar': 1, 'emotional': 11, 'eight-thirty': 1, 'Christ-like': 1, 'present': 27, 'harsh': 6, 'clear-cut': 1, 'balled-up': 1, 'gut-sprung': 1, 'dregs-of-the-earth': 1, 'dizzy': 7, 'sand-and-water': 1, 'decent': 20, 'brisk': 2, 'V-neck': 1, 'pressed-down': 1, 'joint': 4, 'desperate': 19, 'black-and-white-striped': 1, 'unprepared': 1, 'fuckin': 1, 'palest': 1, 'unable': 21, 'Velvet-covered': 1, 'tilted': 11, 'unpleasant': 2, 'lighthearted': 1, 'eight-hour': 1, 'earthward': 1, 'motionless': 7, 'special': 57, 'bein': 4, 'nasty': 10, 'overrun': 1, 'naive': 8, 'three-by-four': 1, 'frenzied': 1, 'blue-green': 1, 'wherewithal': 1, 'scarlet-brown': 1, 'mighty': 8, 'grieved': 1, 'shamefaced': 1, 'Cordial': 1, 'stern': 5, 'Week-time': 1, 'ballpoint': 1, 'lady-lookin': 1, 'virgin': 15, 'junky': 1, 'naughty': 2, 'adolescent': 2, 'modern-day': 1, 'ballet': 1, 'one-syllable': 1, 'African': 68, 'brisdy': 2, 'leechin': 1, 'offby': 1, 'daring': 6, 'ruby': 1, 'impish': 1, 'stand-up': 2, 'wristwhipping': 1, 'interesting': 4, 'sensible': 2, 'make-believe': 3, 'typical': 3, 'pain-ridden': 1, 'Due': 1, 'boundless': 1, 'seventh': 6, 'facial': 1, 'obscure': 1, 'Sly': 3, 'white-brick': 1, 'uncompromising': 2, 'vengeful': 1, 'hundred-proof': 1, 'manicured': 2, 'bittersweet': 1, 'midwife/nurse': 1, 'Plump': 2, 'miss-meal': 1, 'overstuffed': 2, 'iridescent': 1, 'tin-roofed': 1, 'individual': 4, 'hunch-shouldered': 1, 'gray': 57, 'eight-button': 1, 'gorgeous': 17, 'predictable': 3, 'brand-new': 5, 'pussy-whipped': 1, 'uptown': 4, 'personalized': 1, 'three-story': 1, 'inferior': 1, 'ramshackle': 2, 'ocular': 1, 'cupped': 1, 'sure': 278, 'cloaked': 1, 'beleaguered': 1, 'weak-enough': 1, 'papered': 1, 'red': 112, 'mundane': 1, 'Other': 12, 'crimpy': 1, 'mean-ass': 1, 'open-mouthed': 1, 'derivative': 1, 'all-night': 1, 'ungrateful': 2, 'digital': 1, 'first-grade': 1, 'Specific': 1, 'fucked': 1, 'Disrespectful': 1, 'rest-stealer': 1, 'faithful': 5, 'stale': 9, 'middle-aged': 3, 'Annoyed': 1, 'green-skinned': 1, 'fifty-fifty': 1, 'hard-earned': 1, 'Purple-tinged': 1, 'baggy': 3, 'hefty': 1, 'Dog-nanny': 1, 'indistinguishable': 2, 'Fine': 1, 'Democratic': 2, 'brown-red': 1, 'dandy': 2, 'epidural': 1, 'male-inscribed': 1, 'yellowy': 2, 'persistent': 6, 'insane': 5, 'unpuff': 1, 'dreamy': 1, 'off-Broadway': 2, 'righteous': 7, 'astounded': 2, 'middleaged': 1, 'Looli': 40, 'gettin': 6, 'jagged': 3, 'overhead': 2, 'unusual': 6, 'sexy': 17, 'well-todo': 1, 'suave': 1, 'gory': 1, 'late-night': 1, 'meaty': 3, 'seven-letter': 1, 'dirty': 16, 'five-by-seven': 1, 'windy': 4, 'full-grown': 1, 'touchous': 2, 'technical': 1, 'post-civil': 1, 'tidal': 1, 'ethical': 2, 'showy': 1, 'second-string': 1, 'Lonely': 5, 'churchy': 1, 'warped': 2, 'watery': 7, 'sandaled': 1, 'aggressive': 4, 'gray-eyed': 1, 'Swiss': 1, 'unrolled': 2, 'twentynine': 1, 'lukewarm': 1, 'tender-hearted': 1, 'cock-teasing': 1, 'sleepy': 6, 'Dead': 3, 'Complete': 2, 'coverless': 1, 'tangled': 2, 'bearded': 1, 'dented': 3, 'well-pressed': 1, 'carpet-covered': 1, 'carryin': 2, 'curved': 5, 'fussy': 1, 'tweedy': 1, 'eighth': 6, 'square': 3, 'down': 2, 'sugar-coated': 1, 'Big': 12, 'volatile': 1, 'one-half': 1, 'surrogate': 1, 'Solomon-from-the-Bible': 1, 'Damn': 19, 'attainable': 1, 'offa': 2, 'split': 1, 'frozen': 10, 'such': 86, 'acceptable': 2, 'endless': 9, 'offensive': 1, 'homosexual': 1, 'Francisco-bought': 1, 'relative': 4, 'berry': 1, 'soft-skulled': 1, 'tepid': 1, 'white-male': 1, 'becomin': 1, 'frigid': 1, 'out': 4, 'useful': 3, 'infrequent': 1, 'trifling': 4, 'Protective': 2, 'empty-handed': 4, 'valuable': 3, 'mere': 2, 'mah-jong': 1, 'hotel-room': 1, 'creased': 2, 'scruffy': 1, 'Several': 10, 'eighteen-wheeler': 1, 'great': 102, 'Secondhand': 1, 'dreadful': 1, 'enthused': 1, 'half-filled': 1, 'bottom': 15, 'black': 322, 'coincidental': 3, 'alive': 44, 'Muslim': 1, 'associate': 1, 'life-cycle': 1, 'worthwhile': 2, 'disharmonious': 1, 'unflinching': 1, 'stringy-haired': 1, 'long-sleeved': 1, 'acute': 1, 'Sweet': 7, 'soon-to-be': 1, 'good': 555, 'vacant': 5, 'fitting': 9, '40,000-a-year': 1, 'obligatory': 1, 'disjointed': 1, 'harmless': 1, 'thirsty': 5, 'high-school': 2, 'smalltime': 1, 'off-limits': 1, 'sober': 2, 'mid': 1, 'five-foot': 3, 'unfinished': 2, 'white-gloved': 1, 'immaculate': 5, 'rotten': 5, 'Prosperous': 1, 'storybook': 1, 'witty': 1, 'white-flowered': 1, 'fictional': 4, 'Spanish': 4, 'disabled': 1, 'two-bedroom': 5, 'samiel': 1, 'prying': 2, 'quilted': 1, 'Government-inspected': 1, 'phenomenal': 2, 'responsible': 11, 'precise': 1, 'glossy': 4, 'artistic': 1, 'insistent': 8, 'grown-up': 1, 'one-hundred-dollar': 1, 'ever-hungry': 1, 'grand': 23, 'temporal': 1, 'great-great-grandfather': 1, 'skimpy': 1, 'cranky': 5, 'fond': 5, 'callused-over': 1, 'incapable': 1, 'unpack': 1, 'rough-looking': 1, 'over': 4, 'pacific': 1, 'reddish': 1, 'shoe-parlor': 1, 'basic': 3, 'differential': 1, 'eventful': 1, 'stiff-tongued': 1, 'Wall-to-wall': 1, 'highball': 3, 'king-sized': 1, 'wonderin': 1, 'weather-beaten': 1, 'abloom': 1, 'multi-purpose': 1, 'legislative': 1, 'ox-drawn': 1, 'thigh-high': 1, 'Korean': 7, 'Fundamental': 1, 'tropical': 5, 'latter': 1, 'squarefooted': 1, 'arched': 4, 'Spit-and-polish': 1, 'sound': 9, 'motded': 1, 'hard-pressed': 1, 'four-eyed': 1, 'year-a': 1, 'clip-top': 1, 'impractical': 1, 'religious': 1, 'twitchy': 1, 'worldly': 2, 'geometric': 1, 'sophisticated': 1, 'rowdy': 3, 'twisted': 2, 'insensitive': 2, 'valid': 1, 'dark': 105, 'Sol-smelling': 1, 'stressed': 6, 'surly': 2, 'silver-gray': 1, 'Ole': 1, 'refined': 1, 'sustained': 1, 'neady': 1, 'novel': 26, 'oval': 6, 'Affikan': 1, 'god-awful': 1, 'Nasty': 1, 'refreshing': 2, 'beefy': 1, 'paced': 2, "fillmo'e": 1, 'ticky-tacky': 1, 'just-baked': 1, 'elastic': 5, 'sinewy': 1, 'smart': 30, 'two-floor': 1, 'Haitian': 1, 'embarrassed': 10, 'mythic': 1, 'big': 237, 'flagrant': 1, 'sloppy': 2, 'exclusive': 2, 'nine-year-old': 2, 'floury': 1, 'fault-finding': 1, 'one-story': 2, 'shilly-shally': 1, 'false': 13, 'broken-down': 2, 'sole': 1, 'sun-squinting': 1, 'twentieth': 5, 'sable': 1, 'fresh-baked': 1, 'Greek': 3, 'body-fitting': 1, 'one-act': 1, 'minimum': 1, 'starter': 2, 'socio-economic': 1, 'perforated': 1, 'mine': 23, 'inner': 4, 'sectional': 1, 'blue-striped': 1, 'brown-crusted': 1, 'Loud': 2, 'Rossa-jass': 1, 'subtle': 1, 'Kojie': 4, 'Understand': 1, 'unbuttoned': 2, 'garish': 2, 'eyed': 1, 'alleged': 1, 'widebrimmed': 1, 'polyurethaned': 1, 'toll-free': 1, 'crowded': 7, 'heartfelt': 2, 'Extreme': 1, 'gloved': 3, 'sad': 59, 'musical': 4, 'relieved': 12, 'experienced': 1, 'dazzling': 2, 'Satur-night': 1, 'Old': 4, 'obscene': 1, 'drama-filled': 2, 'antiwar': 1, 'seven-card': 1, 'one-dimensional': 1, 'slight': 3, 'populated': 1, 'strong': 68, 'recent': 4, 'spotless': 2, 'vile': 2, 'thirty-five': 1, 'seedy': 1, 'prospective': 1, 'strapping': 1, 'cautious': 6, 'booming': 1, 'mosdy': 6, 'picky': 2, 'clever': 2, 'vibrant': 1, 'unclear': 4, 'acrylic': 3, 'humble': 12, 'impotent': 2, 'snug': 1, 'surprised': 23, 'interim': 1, 'Great': 7, 'rinse': 1, 'perfunctory': 1, 'military': 5, 'sheer': 2, 'dandelion': 1, 'powdered': 3, 'super': 2, 'toppa': 1, 'knotty': 1, 'well-practiced': 1, 'first-time': 1, 'wideopen': 1, 'darkie': 1, 'squeamish': 1, 'silly': 19, 'vital': 1, 'coarse': 2, 'top-class': 1, 'LOVING': 1, 'well-press': 1, 'cornball': 3, 'gold-fill': 1, 'Unanswered': 1, 'litde-ass': 1, 'jobless': 3, 'matching': 4, 'shin-deep': 1, 'Tough': 1, 'mile-long': 1, 'adoptive': 4, 'loyal': 2, 'unbelievable': 2, 'coon-stew': 1, 'pointy': 2, 'funky': 4, 'fit': 1, 'magnificent': 4, 'second-rate': 1, 'ageless': 1, 'pessary': 1, 'twelfth-grade': 2, 'adamant': 2, 'lousy': 2, 'overwhelming': 4, 'short': 99, 'usual': 26, 'over-stuffed': 1, 'second': 107, 'Indian-style': 1, 'cruel': 8, 'unattached': 1, 'civil': 2, 'horrifying': 2, 'post-partum': 1, 'universal': 3, 'blinding': 1, 'sizable': 1, 'ecstatic': 3, 'frightened': 5, 'full-length': 2, 'big-knuckled': 1, 'winterless': 1, 'Tight': 4, 'fish-hook': 3, 'unlabeled': 1, 'fabulous': 3, 'seasoned': 1, 'whole': 125, 'shrimp': 1, 'sly': 2, 'buffed': 1, 'cultural': 3, 'souvenir-thing': 1, 'critical': 8, 'pink-andgreen': 1, 'SPECIAL': 1, 'supple': 2, 'unladylike': 1, 'extended': 3, 'unfaltering': 1, 'Bad': 3, 'Nervous': 1, 'coffee-and-cream': 1, 'marked': 1, 'recendy': 1, 'Hungarian': 1, 'pointless': 1, 'partial': 1, 'all-round': 1, 'Beloved': 1, 'iron-rimmed': 1, "n'tcha": 5, 'first': 354, 'unkind': 1, 'Blended': 1, 'casual': 10, 'pervasive': 1, 'salty': 7, 'confident': 12, 'one-word': 2, 'concurrent': 1, 'mountain-top': 1, 'misty': 2, 'Devyn': 10, 'shell-framed': 1, 'burnable': 1, 'bubbly': 2, 'eyebrowless': 1, 'unsure': 2, 'weatherbeaten': 2, 'deep-down': 1, 'Third': 1, 'wounded': 1, 'pre-cise': 1, 'welcoming': 3, 'gray-brown': 1, 'Cool': 5, 'quick-dry': 1, 'other': 619, 'sort-of': 1, 'free-agent': 1, 'simulated': 1, 'incredible': 11, 'thirdhand': 1, 'fearless': 4, 'bald': 6, 'chubby': 4, 'murmured': 1, 'undersized': 1, 'familiar': 31, 'stainless': 1, 'backhanded': 1, 'beige-green': 1, 'alone': 3, 'explanatory': 1, 'sixteen-year-old': 3, 'starchfilled': 1, 'athletic': 1, 'Cal': 4, 'colored-pencil': 1, 'edgy': 2, 'flattened-out': 1, 'general': 19, 'legitimate': 1, 'twinkling': 1, 'irresponsible': 2, 'Pastrami-buying': 1, 'loofah': 1, 'misshaped': 1, 'mid-dive': 1, 'goodly': 1, 'southern': 2, 'unholy': 1, 'Curious': 1, 'humiliating': 3, 'botched': 1, 'pro-bono': 1, 'main': 11, 'wretched': 1, 'impressed': 7, 'Real': 10, 'shooting': 1, 'brief': 11, 'strapped': 1, 'disappointed': 9, 'adept': 2, 'exuberant': 1, 'teak': 1, 'bringin': 2, 'coeur': 1, 'violent': 7, 'decipherable': 1, 'talkin': 1, 'thev': 1, 'ardent': 1, 'plastic': 7, 'cobblestoned': 1, 'marital': 1, 'finger-wave': 1, 'wrinkled': 2, 'shaven': 1, 'fascist': 2, 'temperature-controlled': 1, 'blunt': 4, 'grateful': 32, 'labored': 1, 'Calypso': 2, 'forgive-a': 1, 'Stygian': 2, 'well-decorated': 1, 'broken-up': 1, 'Meaty': 1, 'pigheaded': 1, 'leafy': 1, 'Bushy': 1, 'slippery': 5, 'Italian': 4, 'brandied': 1, 'absendy': 1, 'so-called': 6, 'raggedy': 3, 'Want': 1, 'able-bodied': 1, 'manageable': 1, 'Typical': 1, 'graduation-like': 1, 'easygoing': 1, 'Ready': 3, 'colored': 1, 'dust-gray': 1, 'close-cropped': 1, 'rhythmic': 1, 'rosemary-olive': 1, 'frosted': 2, 'clinking': 1, 'privy': 1, 'oversaturated': 1, 'blameless': 1, 'uncrossed': 1, 'split-down': 1, 'Chewed-up': 1, 'comic': 3, 'heavy': 55, 'glory-covered': 1, 'love-cherry': 1, 'theirs': 3, 'unarmed': 2, 'deserving': 2, 'unworthy': 2, 'healthy': 11, 'block-long': 1, 'empathetic': 1, 'bossy': 1, 'Cultural': 1, 'busy': 31, 'Female': 2, 'near-yet-far-away': 1, 'brown-skin': 1, 'Male': 1, 'retired': 1, 'hard-working': 1, 'German': 3, 'giant': 10, 'intellectual': 6, 'dollar-sized': 1, 'reflective': 1, 'twenty-third': 1, 'comfortable': 39, 'doin': 4, 'spare': 5, 'Angolan': 1, 'icicle': 1, 'glassy': 2, 'Such': 2, 'urgent': 1, 'flat-faced': 1, 'hungry-ass': 1, 'it-ain': 1, 'redblooded': 1, 'doubtful': 2, 'sequined': 1, 'distorted': 1, 'spacious': 1, 'Hundred-dollar': 1, 'turbulent': 2, 'interested': 20, 'one-way': 1, 'salt-and-pepper': 1, 'onetime': 1, 'Western': 4, 'unironed': 1, 'inky': 1, 'corporate': 1, 'brain-dead': 2, 'nightly': 1, 'resigned': 1, 'Stray': 1, 'eleven-year': 1, 'gigantic': 1, 'Catholic': 6, 'parentless': 1, 'solitary': 2, 'four-sentence': 1, 'unpredictable': 3, 'unnoticed': 1, 'claustrophobic': 1, 'crabby-smelling': 1, 'wet-faced': 1, 'pear-shaped': 1, 'elitist': 1, 'unscarred': 1, 'allergic': 1, 'boring': 6, 'melancholy': 1, 'stubborn': 4, 'domed': 1, 'walkin': 3, 'unadorned': 1, 'twelve-foot': 1, 'close-mouthed': 1, 'tutorial': 1, 'boxy': 3, 'poke-bonnet': 1, 'cursive': 1, 'wary': 3, 'patient': 2, 'Quiet': 3, 'Iess-than-comfortable': 1, 'four-hour': 1, 'smocklike': 1, 'bleedin': 1, 'virulent': 1, 'bigtime': 1, 'Nice': 16, 'cinnamon-flavored': 1, 'six-month-old': 1, 'feverish': 3, 'nonchalant': 2, 'inconsequential': 1, 'transparent': 2, 'additional': 2, 'unsatisfying': 1, 'serial': 2, 'newspaper-wrapped': 1, 'magical-realist': 1, 'lipsticky': 1, 'obvious': 8, 'street-repairing': 1, 'cotta-tiled': 1, 'unforeseen': 1, 'portable': 1, 'flashy': 1, 'terrific': 1, 'furious': 6, 'Sax-filled': 1, 'tragic': 2, 'twelfth': 1, 'rounded': 1, 'silk-like': 1, 'genuine': 6, 'six-inch': 1, 'cavalier': 1, 'sayin': 2, 'touchable': 1, 'unknown': 6, 'Enameled': 1, 'yellow-brown': 1, 'late-spring': 1, 'red-shirt': 1, 'foldin': 1, 'Easy-Bake': 2, 'movable': 1, 'fancy-speaking': 1, 'gold-tipped': 2, 'tiny': 48, 'forceful': 1, 'hard-headed': 2, 'time-step': 1, 'hellified': 1, 'fidgety': 1, 'extra-proper': 1, 'fur-collared': 1, 'cane-back': 1, 'sun-kissed': 2, 'undistracted': 1, 'flawless': 1, 'fellow': 3, 'American-registered': 1, 'short-handed': 1, 'antique': 1, 'condescending': 1, 'forgivin': 1, 'commercial': 1, 'two-faced': 2, 'magic': 11, 'livid': 2, 'blurry': 3, 'gauze-wrapped': 1, 'active': 9, 'European': 3, 'onlyjust': 1, 'givin': 2, 'clunky': 1, 'unopened': 1, 'shrill': 2, 'grave': 5, 'clasped': 1, 'Easter-egg': 1, 'painful': 7, 'lowdown': 1, 'darktown': 1, 'engraved': 1, 'merry': 2, 'psychic': 4, 'tasselled': 1, 'slow-motion': 1, 'cookless': 1, 'half-moon': 1, 'half-shut': 1, 'mushy': 1, 'shy': 8, 'Light': 2, 'clumsy': 3, 'gruff': 1, 'git-box': 1, 'a/ways': 1, 'abrupt': 2, 'fitting-room': 1, 'lenient': 1, 'lively': 2, 'thirteen-yearold': 1, 'bad': 155, 'external': 2, 'remembered': 2, 'pierced': 1, 'frustrating': 1, 'scathing': 1, 'pressured': 1, 'risky': 2, 'medical': 4, 'crabby': 1, 'pleasant-faced': 1, 'pre-arranged': 1, 'fantastic': 6, 'palm-leaf': 1, 'public': 27, 'play-acting': 1, 'elementary': 2, 'woolly': 1, 'Desperate': 1, 'jellied': 1, 'magnetic': 3, 'unsettling': 1, 'disheveled': 2, 'world-famous': 1, 'spiritual': 10, 'prosperous-lookin': 1, 'rush-hour': 1, 'glowing': 10, 'complected': 1, 'two-burner': 1, 'snowy': 4, 'hateful': 3, 'dazed': 2, 'hurt': 1, 'pulsing': 1, 'rough': 23, 'neat': 33, 'horizonless': 1, 'thirty-mile': 1, 'wire-rimmed': 1, 'true-blue': 1, 'nauseous': 3, 'devoid': 1, 'cheap-rent': 1, 'raspy': 2, 'visible': 6, 'puffy': 2, 'Dirty': 2, 'chilly': 6, 'better-paying': 1, 'dismissive': 1, 'unrecognizable': 1, 'low-rate': 1, 'fourth': 15, 'gotdamn': 1, 'pro-bound': 1, 'maritime': 1, 'boxed': 1, 'Illegal': 1, 'voiceless': 1, 'convoluted': 2, 'male': 20, 'dining-room': 1, 'heebie-jeebie': 1, 'palm-sized': 1, 'iffy': 2, 'clean-ass': 1, 'low': 50, 'well-intentioned': 1, 'secondary': 1, 'captive': 1, 'successful': 9, 'just-waxed': 1, 'speckled': 3, 'half-eaten': 1, 'vexed': 1, 'Pseudo': 1, 'no-contest': 1, 'thimble-sized': 2, 'whittled-down': 1, 'White-only': 1, 'angry': 56, 'commonplace': 1, 'sexist': 1, 'Excellent': 1, 'uniform': 3, 'bright': 48, 'second-story': 1, 'mute': 3, 'Sure': 20, 'resolute': 2, 'deranged': 1, 'alert': 2, 'crooked': 11, 'necktied': 1, 'stilted': 1, 'canary': 1, 'Good-natured': 1, 'fearin': 1, 'Ah-yah-yah': 3, 'snooty': 3, 'mandarin': 1, 'dingy': 2, 'dry-long-so': 2, 'plumb': 1, 'cheery': 1, 'sociable': 1, 'promising': 1, 'inescapable': 1, 'Attendant': 1, 'Critical': 1, 'reliable': 1, 'seductive': 1, 'whiteand-gold': 1, 'nigga': 19, 'isfurious': 1, 'Dull': 1, 'choosy': 1, 'illustrated': 2, 'overseas': 3, 'rambling': 1, 'cute': 35, 'white-and-gold': 1, 'indoor': 1, 'Many': 12, 'black-velvet': 2, 'thick-tipped': 1, 'staunch': 1, 'rocky': 1, 'wispy': 3, 'herejive': 1, 'gooey': 1, 'down-home': 1, 'sympathetic': 3, 'Soft': 2, 'nervous': 17, 'beige': 11, 'discretionary': 1, 'tipsy': 1, 'day-to-day': 1, 'squash-yellow': 1, 'jazzy': 1, 'lone': 3, 'single': 31, 'Countless': 1, 'Fourth': 6, 'well-rounded': 1, 'original': 3, 'Plate-glass': 1, 'dainty': 2, 'erratic': 4, 'expansive': 2, 'provisional': 1, 'scab': 2, 'steamy': 5, 'awesome': 11, 'wild-berry': 1, 'clannish': 2, 'callin': 2, 'relevant': 3, 'Babyish': 1, 'tyrannical': 2, 'Empty': 1, 'standin': 2, 'center-parted': 1, 'satin': 10, 'fold-over': 1, 'tetched': 1, 'former': 10, 'damp': 16, 'freezing': 1, 'counter': 2, 'greenish': 2, 'extra-long': 2, 'equal': 6, 'fanatic': 1, 'recognizable': 1, 'nonconformist': 1, 'official': 3, 'custom-made': 1, 'heavenly': 3, 'convertible': 2, 'centerfold': 1, 'chained': 1, 'blue': 102, 'outright': 2, 'Selfish': 1, 'law-abidin': 1, 'illuminating': 1, 'tripping': 1, 'tinny': 1, 'ninety-day': 1, 'same': 232, 'insufficient': 1, 'house-rent': 3, 'longstemmed': 1, 'aged': 1, 'excruciating': 1, 'consensual': 1, 'assorted': 1, 'hung': 2, 'steam-pressin': 1, 'upper': 16, 'compact': 1, 'submerged': 1, 'ater': 1, 'pulsed': 1, 'motherly-looking': 1, 'fancy-free': 1, 'shapely': 2, 'pregame': 1, 'expectant': 3, 'bottled': 1, 'scented': 2, 'jealous': 23, 'distinguished': 2, 'odd': 15, 'firm': 2, 'drab': 1, 'gleaming': 2, 'dramatic': 7, 'Walnut-sized': 1, 'cartoonlike': 1, 'top-notch': 2, 'apt': 2, 'all-you-can-eat': 1, 'gummy': 1, 'boiling': 1, 'heavy-handed': 1, 'wavy': 2, 'knobby': 3, 'indignant': 3, 'magical': 2, 'omniscient': 2, 'flush': 2, 'domestic': 3, 'long-held': 1, 'ribbonlike': 1, 'talented': 4, 'fat-bellied': 1, 'insignificant': 1, 'nodded': 2, 'buttery': 1, 'joking': 2, 'gnarled': 2, 'unidentifiable': 1, 'obnoxious': 1, 'long-dead': 1, 'notepad': 1, 'stinky': 2, 'old-timey': 1, 'smoke-filled': 1, 'fourteen-carat': 1, 'genteel': 2, 'exciting': 4, 'worthy': 4, 'overwhelmed': 1, 'slick': 8, 'Jamal': 14, 'ashamed': 23, 'restrictive': 1, 'unsigned': 1, 'cordial': 3, 'rubber-soled': 1, 'meaningful': 3, 'scattered': 1, 'powerful': 2, 'eight-piece': 1, 'Salvadoran': 1, 'immediate': 5, 'hubby': 1, 'kinda': 5, 'pleasant': 3, 'tolerant': 1, 'three-bedroom': 2, 'subsequent': 1, 'acid-free': 1, 'dry-eyed': 4, 'irreparable': 1, 'likely': 8, 'everlasting': 1, 'understandable': 2, 'tailor-made': 1, 'melodramatic': 1, 'stringy': 2, 'monster-headed': 1, 'groovy': 2, 'noticeable': 3, 'ninth': 4, 'bloodstained': 1, 'well-known': 4, 'clawfooted': 1, 'R-rated': 1, 'pearly': 1, 'jumpy': 1, 'Small': 5, 'puffed': 1, 'chief': 1, 'rolling': 2, 'hurtful': 3, 'stoic': 1, 'show-off': 1, 'Good-lookin': 1, 'Hard': 10, 'absolute': 6, 'ok': 1, 'two-handed': 1, 'assertive': 1, 'feeble': 1, 'red-roofed': 1, 'feminist': 3, 'recycled': 1, 'aesthetic': 3, 'Alonzo': 1, 'dusty': 13, 'dizzying': 1, 'enchanted': 1, 'weightless': 1, 'upper-crust': 1, 'unquestioning': 1, 'half': 13, 'easy': 73, 'distinct': 2, 'one-hundred-thirty-five-pound': 1, 'Oblivious': 1, 'two-year-old': 1, 'bookish': 1, 'overworked': 1, 'half-bad': 1, 'poor': 60, 'impure': 1, 'threatening': 3, 'yay-men': 1, 'gaunt': 5, 'twenty-foot': 1, 'six-hour': 1, 'disrespectful': 5, 'regimented': 1, 'ironical': 1, 'electric': 15, 'prestigious': 1, 'mile-high': 1, 'female-identified': 1, 'pedestrian': 1, 'Full': 3, 'evil': 13, 'cripple': 3, 'begrudging': 1, 'internal': 1, 'able': 106, 'Outside': 3, 'purple-velvet': 1, 'sour-mash': 1, 'thorny': 1, 'bluish': 1, 'drizzly': 1, 'monogrammed': 1, 'unemployed': 3, 'proven': 1, 'glowy': 1, 'yellowed': 1, 'interminable': 2, 'croaky': 1, 'good-sized': 1, 'pungent': 1, 'numb': 2, 'inclined': 1, 'ten-thirty': 1, 'useless': 7, 'dim': 6, 'litdest': 1, 'Half-turned': 1, 'urban': 3, 'shocked': 15, 'uneven': 2, 'pomaded': 1, 'classical': 1, 'False': 2, 'treacherous': 1, 'reluctant': 1, 'litde': 1, 'anxious': 6, 'eldest': 2, 'Fourteenth': 1, 'gracious': 4, 'oblivious': 2, 'absent': 2, 'unborn': 2, 'wide-open': 1, 'fancy': 10, 'impregnable': 1, 'little': 303, 'late': 73, 'nauseated': 1, 'french': 1, 'ten-minute': 1, 'tired': 68, 'clingy': 2, 'wanta': 4, 'Kojie-daddy': 8, 'institutional': 1, 'shabby': 2, 'benighted': 1, 'cubic': 1, 'scorching': 1, 'post-shopping': 1, 'Oriental': 5, 'spike': 1, 'ridged': 1, 'unaddressed': 1, 'heeled': 1, 'motherly': 2, 'sobbing': 1, 'identifiable': 1, 'self-hatred': 1, 'encouraged': 1, 'card-carrying': 1, 'low-cut': 1, 'upset': 14, 'fair': 14, 'effective': 1, 'washin': 2, 'three-diamond': 1, 'audible': 3, 'Dev-yn': 1, 'delicate': 5, 'lighdy': 2, 'ashy': 1, 'round-faced': 1, 'highschool': 1, 'hectic': 1, 'conspiratorial': 1, 'seye': 1, 'sorrowful': 1, 'untied': 1, 'fast': 33, 'mysterious': 7, 'thirteen-year-old': 3, 'cuttin': 2, 'greedy': 5, 'red-hot': 2, 'True': 9, 'direct': 6, 'hopeless': 3, 'gifted': 3, 'hardbound': 1, 'Silvery': 1, 'syrupy': 2, 'gold-andwhite': 1, 'icky': 1, 'calming': 1, 'jovial': 1, 'Young': 2, 'hand-painted': 2, 'unaware': 1, 'lumpy': 1, 'balmy': 1, 'crinkly': 1, 'rangy': 1, 'stout': 1, 'disruptive': 1, 'collarless': 1, 'gurgling': 1, 'back': 68, 'pompous': 1, 'sa-matta': 1, 'horrid': 3, 'Visible': 1, 'High': 2, 'black-edged': 1, 'past': 67, 'curvy': 1, 'muddy': 5, 'mad': 101, 'repinning': 1, 'horizontal': 2, 'Stiff': 1, 'cashmere': 1, 'dirtpoor': 1, 'whirling': 3, 'lame-o': 1, 'okay': 174, 'antimiscegenation': 1, 'swirly': 1, 'triumphant': 3, 'snaky': 1, 'trained': 2, 'inviolable': 1, 'carefree': 2, 'unending': 1, 'tough': 16, 'smoky': 1, 'Reliable': 1, 'Corporate': 1, 'revolving': 5, 'Certain': 2, 'high-handed': 2, 'vine-covered': 1, 'gray-edged': 1, 'afghan': 2, 'afresh': 1, 'feisty': 1, 'short-sleeved': 1, 'air-raided': 1, 'handy': 3, 'deep-toned': 1, 'threethirty': 1, 'bus-stop': 1, 'steady': 29, 'extracurricular': 1, 'grim': 5, 'striped': 6, 'authentic': 1, 'scientific': 1, 'mother-of-pearl': 3, 'Devyn-Aisha': 1, 'gutted-out': 2, 'beaded': 3, 'Clean': 2, 'emerald': 3, 'Second': 3, 'fog-filled': 1, 'quaint': 1, 'lookin': 2, 'unflappable': 1, 'color-safe': 1, 'starched': 5, 'brown-skinned': 2, 'clad': 1, 'hidden': 1, 'speechless': 2, 'disinterested': 2, 'disturbed': 1, 'self-conscious': 2, 'Sniveling': 1, 'half-amused': 1, 'fresh': 37, 'disappointing': 3, 'operative': 1, 'impeccable': 1, 'take-out': 1, 'improper': 3, 'memorable': 1, 'conservative': 1, 'picaresque': 1, 'impressive': 2, 'five-pound': 1, 'all-night-long': 1, 'Major': 95, 'literary': 7, 'Eurocentric': 1, 'Ruddy': 1, 'visual': 1, 'forgetful': 1, 'filmy': 1, 'unassured': 1, 'upright': 1, 'dumbfounded': 2, 'shortcropped': 1, 'clear-eyed': 1, 'fuzzy': 4, 'stinging': 1, 'unimpressed': 1, 'crumpled': 5, 'hyperbolic': 1, 'ninth-grade': 2, 'crossword': 2, 'paranoid': 3, 'cocky': 2, 'look-alike': 1, 'snobby': 1, 'comin': 5, 'plaintive': 1, 'routine': 3, 'gold-leaf': 1, 'oven-hot': 1, 'unannounced': 1, 'fake': 25, 'stretched-out': 1, 'Jolly': 1, 'bye-bye': 2, 'overnight': 3, 'frivolous': 1, 'cared-for': 1, 'unwilling': 1, 'pulpy': 1, 'complicated': 1, 'normal': 33, 'sedate': 2, 'muted': 1, 'double-toot': 1, 'thematic': 1, 'childless': 4, 'heavyset': 1, 'recurrent': 2, 'complete': 11, 'national': 5, 'Victorious': 1, 'unshakable': 1, 'mismatched': 2, 'loving': 23, 'star-filled': 1, 'scared': 34, 'fringed': 2, 'stupid': 58, 'clear': 73, 'elevated': 3, 'husky': 3, 'appropriate': 6, 'crimped': 1, 'lemon': 10, 'honorable': 1, 'mixed': 8, 'splashing': 1, 'off-again': 1, 'ruthless': 3, 'pliant': 1, 'patched': 1, 'glazed': 2, 'delirious': 2, 'banana-creme-filled': 1, 'attention-getting': 1, 'halfhearted': 1, 'long-legged': 1, 'smoked': 3, 'nameless': 2, 'dominant': 3, 'awful': 8, 'sharp': 24, 'green-tiled': 1, 'uncommitted': 1, 'rickety': 4, 'secondhand': 5, 'twenty-five-year-old': 1, 'people-filled': 1, 'crazy': 143, 'tank-like': 1, 'studious': 2, 'Dark': 6, 'clawfoot': 1, 'Half-dragged': 1, 'school-sanctioned': 1, 'lean': 14, 'hot': 107, 'open-air': 2, 'upstate': 1, 'injured': 3, 'Hefty': 1, 'tea-length': 1, 'haphazard': 2, 'biblical': 1, 'sofa-loveseat': 1, 'purple': 24, 'next-to-nothing': 1, 'twanny-baby': 1, 'orange': 19, 'previous': 6, 'sensual': 3, 'hi-fi': 1, 'testy': 1, 'airborne': 2, 'darkfaced': 1, 'frail': 8, 'intimate': 10, 'longish': 2, 'well-worn': 2, 'autonomous': 1, 'paregoric': 5, 'academic': 2, 'epidemic': 1, 'supportive': 2, 'lar': 1, 'numerous': 2, 'colorless': 1, 'arrogant': 5, 'imaginative': 2, 'outdoor': 6, 'bushy-haired': 1, 'remote': 10, 'secure': 3, 'guest': 1, 'unimaginable': 1, 'red-brown': 1, 'first-class': 7, 'worn': 7, 'yeah': 4, 'juvenile': 2, 'spongy': 1, 'real-life': 1, 'deep-set': 1, 'tile-roofed': 1, 'servin': 1, 'fifteen-year-old': 2, 'high-up': 1, 'two-page': 1, 'scheming': 1, 'oily': 1, 'whispery': 3, 'nun-nurse': 1, 'outstanding': 1, 'brown': 118, 'pouty': 1, 'luminous': 1, 'three-dimensional': 1, '7-Up': 1, 'impenetrable': 2, 'consistent': 2, 'frowned': 1, 'suggestive': 2, 'fortunate': 3, 'boastful': 1, 'green': 78, 'good-looking': 4, 'burly': 1, 'Portuguese': 2, 'swift': 1, 'bushy': 4, 'Star': 2, 'convinced': 10, 'destitute': 1, 'restless': 5, 'courtordered': 1, 'brass-ass': 1, 'glad': 128, 'glassy-eyed': 1, 'prickly': 1, 'broke-off': 1, 'psychotic': 1, 'distincdy': 1, 'unexpected': 5, 'soundproof': 1, 'tinkling': 1, 'Squeeze-gut': 6, 'long-ago': 2, 'rainbow-finned': 1, 'bereaved': 1, 'Historical': 1, 'swingy': 2, 'holy': 8, 'engrossing': 1, 'continued': 1, 'enough': 73, 'marvelous': 1, 'fleshy': 3, 'canopied': 1, 'respective': 1, 'refrigerated': 1, 'brown-paper-and-vinegar': 1, 'eel-skin': 2, 'verbal': 2, 'dispirited': 1, 'sullen': 3, 'fast-growing': 1, 'combined': 1, 'snapper': 1, 'Nappy': 22, 'purgatory': 1, 'gay': 1, 'tremendous': 2, 'waist-high': 2, 'spicy': 3, 'missionary': 1, 'no-good': 2, 'pretend': 9, 'unofficial': 1, 'scary': 7, 'old': 264, 'Anonymous': 1, 'melting': 1, 'freckle-faced': 1, 'deaf': 4, 'joyous': 1, 'paralyzed': 1, 'current': 5, 'ruckstafructious': 1, 'seething': 2, 'plain': 10, 'dental': 2, 'upper-class': 2, 'poor-white': 1, 'gauzy': 1, 'grassy': 3, 'Hard-headed': 1, 'half-wet': 1, 'graduate': 1, 'twenty-first': 1, 'encouraging': 2, 'shortsleeved': 1, 'Chilly': 1, 'inflatable': 2, 'stumbling': 1, 'Monument-like': 1, 'hysterical': 4, 'goldy-brown': 1, 'white-onwhite': 1, 'four-bedroom': 1, 'rancid': 1, 'baked': 4, 'international': 2, 'unappreciated': 1, 'Wide-eyed': 1, 'wild': 43, 'inch-thick': 1, 'multiple': 1, 'bloated': 3, 'Manicured': 1, 'shimmery': 2, 'mid-sized': 1, 'Fragmented': 1, 'tainted': 1, 'bummed': 1, 'four-lane': 1, 'irrepressible': 1, 'rainy': 1, 'friendless': 1, 'First-class': 1, 'hourly': 2, 'hushed': 6, 'wan': 2, 'free': 100, 'lonely': 19, 'proper': 24, 'specific': 6, 'random': 5, 'above': 4, 'godly': 3, 'cross-gender': 1, 'put-together': 1, 'uncovered': 1, 'mingled': 1, 'whirlwind': 4, 'slit': 1, 'Heavyhearted': 1, 'Raging': 1, 'sing-song': 1, 'wavin': 2, 'Blue-plaid': 1, 'unfortunate': 3, 'deft': 1, 'dolly': 1, 'English': 2, 'witchy': 1, 'next': 287, 'eucalyptus': 1, 'sugary': 2, 'Square-faced': 1, 'head-on': 1, 'intelligent': 6, 'best-selling': 1, 'Lucky': 1, 'high-fashion': 1, 'aaahh': 1, 'culinary': 2, 'momentary': 3, 'windswept': 1, 'yourown': 1, 'Fiery': 1, 'initial': 4, 'electronic': 2, 'mature': 3, 'laughing': 1, 'undesirable': 1, 'hungry': 37, 'soothing': 8}</code></pre>
</div>
</div>
<div class="cell" data-outputid="9f058773-8fdf-4522-a3f6-797689c558ed">
<div class="sourceCode cell-code" id="cb13"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb13-1"><a href="#cb13-1" aria-hidden="true" tabindex="-1"></a><span class="co"># intersection, extracted common words</span></span>
<span id="cb13-2"><a href="#cb13-2" aria-hidden="true" tabindex="-1"></a>common_words <span class="op">=</span> year_to_word_count[<span class="dv">20</span>].keys() <span class="op">&</span> year_to_word_count[<span class="dv">21</span>].keys()</span>
<span id="cb13-3"><a href="#cb13-3" aria-hidden="true" tabindex="-1"></a>century_20_common_wc <span class="op">=</span> {k: year_to_word_count[<span class="dv">20</span>][k] <span class="cf">for</span> k <span class="kw">in</span> common_words}</span>
<span id="cb13-4"><a href="#cb13-4" aria-hidden="true" tabindex="-1"></a>century_21_common_wc <span class="op">=</span> {k: year_to_word_count[<span class="dv">21</span>][k] <span class="cf">for</span> k <span class="kw">in</span> common_words}</span>
<span id="cb13-5"><a href="#cb13-5" aria-hidden="true" tabindex="-1"></a></span>
<span id="cb13-6"><a href="#cb13-6" aria-hidden="true" tabindex="-1"></a><span class="bu">print</span>(century_20_common_wc)</span>
<span id="cb13-7"><a href="#cb13-7" aria-hidden="true" tabindex="-1"></a><span class="bu">print</span>(century_21_common_wc)</span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
<div class="cell-output cell-output-stdout">
<pre><code>{'frothy': 4, 'lustful': 2, 'marine': 6, 'two-story': 1, 'helluva': 11, 'winded': 1, 'unavoidable': 1, 'bouncy': 1, 'rapid': 21, 'lifeless': 7, 'heinous': 4, 'ignorant': 27, 'flattered': 2, 'side': 10, 'heavy-set': 1, 'disgusted': 12, 'professional': 24, 'Fast': 4, 'slow': 108, 'frightening': 19, 'murky': 6, 'adequate': 7, 'responsive': 1, 'Civil': 13, 'sincere': 11, 'rival': 3, 'tribal': 2, 'trim': 10, 'total': 40, 'chalky': 1, 'wiry': 7, 'loose': 82, 'sour': 26, 'annual': 7, 'limited': 7, 'faint': 34, 'pleased': 55, 'unblinking': 9, 'translucent': 1, 'tight': 136, 'dry': 94, 'noonday': 1, 'roasted': 1, 'unlimited': 1, 'myriad': 7, 'plentiful': 2, 'amorphous': 1, 'well-cut': 2, 'exotic': 10, 'girlish': 4, 'surgical': 1, 'cut-glass': 2, 'Sharp': 6, 'much': 863, 'indifferent': 6, 'Terrible': 3, 'sanitary': 1, 'weak': 74, 'twenty-fifth': 1, 'agricultural': 18, 'attendant': 3, 'unbearable': 9, 'kind': 19, 'funeral': 10, 'inverted': 1, 'reckless': 7, 'unfriendly': 1, 'fine': 196, 'gloomy': 18, 'high-brown': 1, 'outward': 22, 'vague': 24, 'two-month': 2, 'chic': 2, 'inflated': 1, 'New': 7, 'abusive': 1, 'chatty': 1, 'wilted': 1, 'cloudy': 6, 'scornful': 2, 'glaring': 1, 'relentless': 8, 'homesick': 2, 'run-down': 3, 'tasseled': 1, 'Communist': 15, 'further': 43, 'half-empty': 4, 'mathematical': 1, 'bleached': 2, 'fastidious': 1, 'proud': 96, 'conceited': 3, 'incurable': 4, 'unencumbered': 1, 'mean': 11, 'crusty': 7, 'built-in': 6, 'formal': 15, 'muscular': 8, 'modern': 59, 'stylish': 5, 'stable': 8, 'graceful': 25, 'unchained': 1, 'piercing': 2, 'heated': 6, 'dimpled': 5, 'grubby': 1, 'Brown': 6, 'vulnerable': 15, 'yellow-brick': 1, 'smooth-skinned': 1, 'pretty': 43, 'missing': 1, 'numbing': 4, 'nice': 368, 'childish': 20, 'sepia': 2, 'presidential': 3, 'obedient': 3, 'watchful': 9, 'social': 91, 'economic': 79, 'mature': 8, 'growling': 1, 'helpless': 33, 'mellow': 7, 'sorta': 1, 'exasperating': 2, 'mystical': 3, 'big-time': 6, 'fluorescent': 1, 'greasy': 12, 'sandy': 15, 'unpacked': 3, 'dumb': 45, 'noisy': 12, 'sweet': 193, 'live-in': 1, 'identical': 13, 'folding': 15, 'foster': 1, 'latent': 6, 'seafaring': 1, 'rusting': 5, 'pleated': 5, 'dark-skinned': 10, 'singsong': 1, 'pointed': 18, 'millionaire': 2, 'grainy': 1, 'blond': 49, 'black-white': 1, 'Cute': 1, 'old-fashioned': 20, 'whiny': 2, 'headless': 1, 'connected': 1, 'giddy': 5, 'well-to-do': 3, 'absurd': 15, 'rousing': 1, 'earthly': 32, 'sweeping': 4, 'distressing': 1, 'future': 34, 'ridiculous': 17, 'lay': 11, 'well-off': 6, 'prepared': 11, 'covered': 7, 'blood-stained': 1, 'frantic': 15, 'reachable': 1, 'umbilical': 1, 'sweaty': 11, 'voluptuous': 2, 'uneducated': 1, 'positive': 30, 'lewd': 5, 'worth': 53, 'horrendous': 3, 'mental': 14, 'overcast': 2, 'Scary': 3, 'extraordinary': 6, 'hundred-dollar': 1, 'domineering': 3, 'American': 261, 'bunioned': 1, 'sneaky': 7, 'high': 306, 'celluloid': 1, 'luscious': 6, 'weary': 40, 'Loving': 1, 'gaudy': 7, 'strict': 6, 'Vietnamese': 6, 'mobile': 9, 'prior': 3, 'well-dressed': 4, 'industrious': 2, 'contemptuous': 4, 'Japanese': 18, 'wet': 102, 'lovely': 50, 'serious': 153, 'crimson': 17, 'east': 18, 'true': 271, 'bent': 81, 'agonizing': 2, 'unforgiving': 5, 'suspicious': 32, 'roomy': 1, 'unto': 21, 'Chinese': 23, 'Giant': 2, 'finishing': 4, 'calm': 58, 'following': 8, 'enlarged': 9, 'own': 902, 'rusty': 12, 'Little': 139, 'federal': 22, 'six-year-old': 1, 'starry': 1, 'complimentary': 1, 'wooded': 4, 'human': 202, 'secret': 84, 'funny': 149, 'later': 19, 'Deep': 8, 'liberal': 13, 'broken': 60, 'distressed': 6, 'filthy': 45, 'overall': 10, 'mesmerizing': 1, 'damaging': 3, 'decisive': 3, 'political': 143, 'white-coated': 2, 'treasured': 1, 'unique': 12, 'infectious': 4, 'terrible': 101, 'gold': 8, 'organizational': 5, 'Spinning': 2, 'dilapidated': 4, 'diverse': 1, 'due': 49, 'alright': 4, 'distinguishable': 1, 'layered': 3, 'unchanging': 2, 'troubled': 12, 'hot-air': 1, 'tattered': 4, 'cool': 91, 'enormous': 18, 'outer': 26, 'vaginal': 1, 'similar': 27, 'dense': 14, 'regular': 35, 'intricate': 14, 'flirtatious': 4, 'unspoiled': 2, 'subordinate': 1, 'solemn': 38, 'scrawny': 9, 'wide-brimmed': 2, 'round': 48, 'stagnant': 8, 'snaggletoothed': 1, 'reflex': 3, 'daily': 60, 'Happy': 14, 'turned-out': 2, 'rectangular': 1, 'handsome': 79, 'primary': 9, 'Wonder': 11, 'crocheted': 1, 'separate': 39, 'far': 33, 'newborn': 5, 'deep': 284, 'sticky': 20, 'nonsensical': 1, 'sick': 208, 'broad-brimmed': 4, 'wartime': 1, 'wise': 61, 'sensitive': 23, 'gruesome': 2, 'fiery': 12, 'heart-shaped': 1, 'permed': 1, 'narrow': 77, 'rebel': 1, 'gleeful': 3, 'foreign': 27, 'many': 747, 'complex': 12, 'controlled': 4, 'down-to-earth': 3, 'favorite': 40, 'light': 193, 'womanish': 1, 'Victorian': 1, 'guilty': 68, 'Sorry': 14, 'furnished': 2, 'major': 25, 'potential': 12, 'scant': 2, 'futile': 7, 'emotional': 12, 'present': 146, 'temporary': 15, 'gingerbread': 1, 'dependent': 12, 'harsh': 23, 'full-time': 4, 'blue-black': 5, 'indefinite': 2, 'clear-cut': 4, 'First': 17, 'nigger': 9, 'dizzy': 17, 'brisk': 6, 'undue': 2, 'decent': 70, 'pronounced': 5, 'ordinary': 45, 'bleak': 2, 'joint': 20, 'desperate': 41, 'unprepared': 5, 'unable': 46, 'eleventh': 2, 'tilted': 16, 'lasting': 6, 'narrative': 5, 'unpleasant': 8, 'rental': 2, 'windowless': 1, 'eight-hour': 1, 'tacky': 2, 'braided': 4, 'motionless': 20, 'sixth': 9, 'special': 144, 'adult': 9, 'off': 6, 'minimal': 3, 'nasty': 46, 'gritty': 2, 'naive': 6, 'frenzied': 5, 'blue-green': 5, 'momentous': 4, 'five-year-old': 1, 'mighty': 50, 'horrible': 21, 'stern': 30, 'exaggerated': 5, 'hand-me-down': 1, 'instant': 16, 'ballpoint': 1, 'chronic': 4, 'four-year-old': 2, 'virgin': 23, 'junky': 2, 'naughty': 16, 'adolescent': 5, 'modern-day': 1, 'ballet': 4, 'Different': 6, 'blue-and-white': 1, 'pale': 89, 'nighttime': 7, 'African': 132, 'daring': 24, 'ruby': 3, 'impish': 3, 'stand-up': 1, 'interesting': 44, 'uniformed': 9, 'sensible': 11, 'make-believe': 5, 'typical': 13, 'confused': 26, 'Anglo-Saxon': 11, 'next-door': 4, 'keen': 11, 'Due': 1, 'boundless': 5, 'seventh': 10, 'facial': 2, 'helpful': 5, 'obscure': 8, 'closed': 34, 'uncompromising': 1, 'Asian': 6, 'vengeful': 4, 'light-skinned': 12, 'manicured': 1, 'Yellow': 8, 'Familiar': 1, 'bittersweet': 2, 'maniacal': 3, 'overstuffed': 3, 'iridescent': 4, 'tin-roofed': 2, 'varied': 4, 'melted': 1, 'simple': 90, 'individual': 37, 'gray': 160, 'gorgeous': 18, 'windless': 1, 'predictable': 5, 'brand-new': 12, 'troublesome': 4, 'uptown': 12, 'inferior': 13, 'ramshackle': 2, 'platonic': 1, 'cupped': 5, 'flawed': 1, 'sure': 609, 'rubbish': 4, 'cynical': 7, 'common': 90, 'various': 61, 'beleaguered': 1, 'tense': 13, 'unfathomable': 1, 'young': 642, 'red': 335, 'mundane': 2, 'Other': 30, 'actual': 22, 'horned': 1, 'open-mouthed': 1, 'all-night': 2, 'ungrateful': 5, 'digital': 1, 'faithful': 27, 'stale': 19, 'garlic': 2, 'middle-aged': 9, 'Annoyed': 1, 'faceless': 10, 'pristine': 4, 'hard-earned': 4, 'defenseless': 1, 'feminine': 6, 'Thin': 2, 'baggy': 2, 'hefty': 5, 'indistinguishable': 8, 'grudging': 1, 'Fine': 10, 'Democratic': 7, 'dandy': 2, 'insane': 13, 'committed': 2, 'persistent': 5, 'stray': 11, 'dreamy': 14, 'righteous': 9, 'astounded': 3, 'middleaged': 2, 'gettin': 1, 'jagged': 2, 'damn': 66, 'overhead': 2, 'shiny': 44, 'juicy': 3, 'unusual': 30, 'sexy': 14, 'bobby': 1, 'nigh': 5, 'gory': 4, 'late-night': 3, 'meaty': 1, 'dirty': 135, 'vulgar': 4, 'Stupid': 3, 'trivial': 2, 'windy': 5, 'soundless': 4, 'technical': 5, 'tidal': 1, 'ethical': 2, 'showy': 1, 'second-string': 1, 'churchy': 1, 'warped': 11, 'three-fourths': 1, 'watery': 18, 'moist': 14, 'Senior': 1, 'sandaled': 1, 'aggressive': 16, 'Swiss': 1, 'unrolled': 1, 'careless': 10, 'thankful': 11, 'required': 1, 'assistant': 2, 'call': 7, 'lukewarm': 4, 'sleepy': 17, 'Dead': 11, 'Complete': 1, 'foggy': 4, 'degraded': 3, 'portly': 1, 'Holy': 4, 'located': 12, 'amusing': 11, 'tangled': 5, 'hard-boiled': 1, 'available': 41, 'creative': 15, 'collective': 21, 'elusive': 6, 'striking': 36, 'bearded': 10, 'liberating': 3, 'Rolling': 5, 'unwelcome': 4, 'curved': 2, 'fitted': 1, 'vain': 44, 'defensive': 8, 'abstract': 7, 'eighth': 6, 'square': 36, 'down': 11, 'rational': 9, 'bland': 3, 'Big': 128, 'volatile': 1, 'one-half': 1, 'homemade': 3, 'surrogate': 1, 'Damn': 43, 'Warm': 1, 'Further': 1, 'split': 3, 'frozen': 21, 'such': 538, 'haughty': 8, 'acceptable': 8, 'endless': 48, 'offensive': 3, 'homosexual': 5, 'sturdy': 8, 'relative': 23, 'stuffy': 1, 'tepid': 2, 'gut-bucket': 1, 'sarcastic': 5, 'lopsided': 3, 'one-sided': 1, 'out': 4, 'frigid': 3, 'underwater': 6, 'useful': 7, 'infrequent': 4, 'trifling': 10, 'Beautiful': 20, 'Protective': 1, 'empty-handed': 7, 'replete': 2, 'valuable': 19, 'mere': 23, 'wrong': 307, 'elderly': 27, 'armed': 21, 'wraparound': 2, 'creased': 3, 'Several': 26, 'bold': 21, 'great': 506, 'objective': 16, 'dreadful': 15, 'half-filled': 3, 'maternal': 2, 'bottom': 50, 'black': 1358, 'coincidental': 3, 'alive': 117, 'Muslim': 4, 'associate': 7, 'unafraid': 1, 'industrial': 45, 'careful': 69, 'worthwhile': 6, 'kingly': 1, 'unflinching': 2, 'stringy-haired': 1, 'long-sleeved': 2, 'acute': 8, 'humid': 3, 'stunned': 7, 'Sweet': 18, 'deadly': 32, 'Pregnant': 1, 'good': 1690, 'vacant': 26, 'fitting': 14, 'obligatory': 1, 'disjointed': 2, 'harmless': 12, 'thirsty': 7, 'sober': 12, 'native': 60, 'up-to-date': 1, 'star-spangled': 4, 'five-foot': 1, 'laden': 4, 'unfinished': 4, 'immaculate': 2, 'rotten': 38, 'erotic': 5, 'storybook': 1, 'witty': 4, 'fictional': 2, 'Spanish': 114, 'disabled': 1, 'unfocused': 1, 'frying': 7, 'wistful': 3, 'lifelong': 4, 'perfecdy': 3, 'prying': 11, 'phenomenal': 7, 'responsible': 37, 'sufficient': 11, 'hush': 19, 'depraved': 2, 'precise': 20, 'glossy': 5, 'cheap': 57, 'ancient': 61, 'earnest': 10, 'lower-class': 2, 'desirable': 9, 'loaded': 3, 'flat': 84, 'artistic': 11, 'insistent': 7, 'vast': 56, 'grown-up': 5, 'one-hundred-dollar': 1, 'Embarrassed': 2, 'respectable': 19, 'grand': 58, 'temporal': 2, 'unerring': 1, 'skimpy': 1, 'cranky': 1, 'fond': 12, 'rugged': 5, 'confusing': 5, 'incapable': 14, 'pebbly': 1, 'rough-looking': 2, 'red-bearded': 1, 'Bright': 7, 'reddish': 7, 'throbbing': 7, 'bulky': 6, 'basic': 17, 'repetitive': 1, 'eventful': 1, 'raw': 44, 'weather-beaten': 2, 'scalding': 5, 'legislative': 2, 'centered': 2, 'ox-drawn': 1, 'Korean': 5, 'Fundamental': 1, 'disturbing': 4, 'one-night': 2, 'tropical': 21, 'silent': 118, 'latter': 47, 'arched': 5, 'sound': 37, 'hard-pressed': 2, 'rid': 46, 'laughing': 7, 'religious': 58, 'blank': 26, 'south': 4, 'hash': 1, 'worldly': 3, 'geometric': 1, 'sophisticated': 10, 'singular': 17, 'rowdy': 1, 'twisted': 16, 'insensitive': 1, 'Careful': 2, 'valid': 12, 'dark': 477, 'different': 280, 'surly': 5, 'prosperous': 10, 'Ole': 3, 'refined': 3, 'neady': 2, 'novel': 92, 'twentieth-century': 1, 'oval': 12, 'god-awful': 2, 'nationalist': 4, 'frustrated': 7, 'Nasty': 15, 'refreshing': 1, 'beefy': 1, 'fifth': 20, 'sickly': 6, 'dispossessed': 1, 'Wrong': 1, 'two-family': 1, 'uptight': 1, 'elastic': 2, 'sinewy': 4, 'smart': 74, 'Haitian': 1, 'concrete': 29, 'embarrassed': 58, 'mythic': 1, 'big': 881, 'flagrant': 1, 'mortal': 31, 'sloppy': 5, 'exclusive': 8, 'glistening': 10, 'swollen': 17, 'nine-year-old': 3, 'minute': 4, 'fourteen-year-old': 2, 'unprotected': 1, 'awash': 3, 'false': 38, 'apparent': 10, 'nearby': 29, 'broken-down': 5, 'sole': 21, 'twentieth': 4, 'imperceptible': 3, 'sable': 12, 'asymmetrical': 1, 'constructive': 4, 'three-way': 1, 'fourteenth': 2, 'needy': 3, 'Greek': 9, 'one-act': 1, 'Few': 8, 'inappropriate': 4, 'minimum': 4, 'Virginian': 1, 'starter': 10, 'veritable': 1, 'socio-economic': 7, 'perforated': 2, 'mine': 49, 'inner': 37, 'sectional': 1, 'particular': 47, 'monumental': 2, 'Loud': 5, 'bewildered': 12, 'mindful': 1, 'subtle': 26, 'Understand': 3, 'unbuttoned': 4, 'Cuban': 5, 'garish': 2, 'slim': 40, 'alleged': 2, 'Biblical': 1, 'automatic': 14, 'crowded': 13, 'heartfelt': 3, 'tongue-tied': 1, 'gloved': 2, 'concentrated': 1, 'realistic': 19, 'sad': 150, 'musical': 10, 'firstclass': 1, 'stormy': 3, 'miserable': 50, 'relieved': 21, 'experienced': 3, 'Indian': 112, 'worthless': 16, 'dazzling': 6, 'Old': 70, 'bleeding': 6, 'tiresome': 2, 'too-big': 1, 'torn': 6, 'obscene': 5, 'maiden': 4, 'cheerful': 22, 'one-dimensional': 1, 'slight': 35, 'populated': 2, 'strong': 162, 'vigorous': 4, 'recent': 26, 'spotless': 6, 'dead': 421, 'sane': 4, 'vile': 8, 'seedy': 3, 'prospective': 1, 'unsentimental': 1, 'strapping': 3, 'sudden': 107, 'key': 24, 'cautious': 9, 'intolerable': 8, 'booming': 5, 'mosdy': 1, 'picky': 6, 'full-blown': 5, 'clever': 28, 'vibrant': 3, 'humble': 28, 'impotent': 8, 'exact': 21, 'snug': 1, 'surprised': 66, 'uneventful': 1, 'interim': 1, 'Great': 18, 'perfunctory': 1, 'embarrassing': 12, 'military': 67, 'sheer': 22, 'biological': 2, 'dandelion': 2, 'powdered': 4, 'super': 21, 'attractive': 37, 'vicious': 17, 'wideopen': 1, 'silly': 51, 'vital': 19, 'coarse': 16, 'hungry': 101, 'known': 6, 'spinning': 2, 'sore': 42, 'matching': 3, 'electrical': 5, 'Tough': 2, 'curious': 67, 'ankle-deep': 2, 'toothpasty': 1, 'startling': 8, 'loyal': 12, 'unbelievable': 9, 'eager': 35, 'pointy': 1, 'funky': 8, 'straight-backed': 1, 'queasy': 1, 'aware': 75, 'fit': 12, 'Blue': 3, 'incoming': 1, 'petite': 7, 'stark': 12, 'magnificent': 11, 'second-rate': 2, 'nimble': 7, 'condensed': 1, 'ageless': 2, 'Worthy': 1, 'in-and-out': 3, 'adamant': 3, 'lousy': 30, 'overwhelming': 8, 'grievous': 9, 'truthful': 1, 'bicentennial': 1, 'wide-legged': 1, 'short': 236, 'usual': 108, 'Amazing': 4, 'adjacent': 5, 'plump': 18, 'half-closed': 1, 'undressed': 4, 'racial': 41, 'second': 273, 'tasty': 3, 'Thick': 3, 'cruel': 37, 'playful': 8, 'unattached': 1, 'civil': 47, 'average': 13, 'horrifying': 2, 'limp': 19, 'universal': 13, 'wilting': 1, 'blinding': 2, 'sizable': 4, 'ecstatic': 5, 'frightened': 43, 'full-length': 3, 'big-knuckled': 1, 'Tight': 3, 'fabulous': 10, 'seasoned': 1, 'whole': 445, 'clipping': 4, 'privileged': 11, 'sly': 11, 'worried': 48, 'surprising': 16, 'cultural': 20, 'critical': 14, 'Same': 24, 'youthful': 11, 'supple': 4, 'extended': 9, 'barbecued': 1, 'Bad': 11, 'alcoholic': 8, 'marked': 19, 'recendy': 1, 'glorious': 20, 'Hungarian': 1, 'compelling': 3, 'pointless': 2, 'partial': 5, 'familial': 2, 'pathetic': 7, 'iron-rimmed': 1, 'first': 981, 'unkind': 3, 'few': 672, 'Glad': 12, 'Next': 39, 'minuscule': 1, 'casual': 21, 'pervasive': 2, 'wooden': 73, 'unavailable': 2, 'dull': 23, 'salty': 11, 'fragile': 18, 'packed': 3, 'interracial': 5, "ol'": 9, 'double': 43, 'confident': 18, 'stunning': 6, 'misty': 8, 'minor': 12, 'bubbly': 3, 'unsure': 3, 'weatherbeaten': 1, 'brash': 2, 'Third': 2, 'wounded': 5, 'welcoming': 3, 'shameful': 5, 'whipping': 14, 'nonstop': 3, 'Cool': 6, 'hostile': 14, 'breathtaking': 1, 'other': 1938, 'inside': 17, 'musty': 10, 'ultimate': 20, 'simulated': 4, 'comfy': 1, 'cryptic': 2, 'incredible': 14, 'ragged': 34, 'fearless': 1, 'decaying': 2, 'bald': 28, 'ceramic': 1, 'comical': 6, 'chubby': 6, 'hoarse': 5, 'undersized': 1, 'familiar': 101, 'stainless': 4, 'frank': 3, 'backhanded': 1, 'wide': 149, 'Tired': 7, 'knotted': 1, 'unlit': 7, 'alone': 2, 'athletic': 3, 'selfish': 11, 'edgy': 5, 'flattened-out': 1, 'general': 94, 'legitimate': 5, 'twinkling': 2, 'irresponsible': 5, 'stocky': 12, 'fading': 17, 'held': 1, 'after-dinner': 1, 'amazing': 5, 'bony': 11, 'southern': 30, 'unholy': 3, 'tantalizing': 4, 'droopy': 3, 'humiliating': 3, 'tapered': 1, 'uneasy': 33, 'sassy': 3, 'main': 65, 'wretched': 29, 'impressed': 10, 'Real': 14, 'shooting': 7, 'brief': 38, 'British': 27, 'Similar': 2, 'breaking': 2, 'disappointed': 22, 'adept': 1, 'crisp': 19, 'mechanical': 29, 'exuberant': 2, 'forced': 6, 'nonwhite': 7, 'upward': 9, 'peaceful': 20, 'teak': 1, 'precious': 42, 'weekly': 7, 'unfaithful': 3, 'two-year': 1, 'tall': 239, 'violent': 26, 'constant': 37, 'deafening': 4, 'dreamless': 1, 'gaping': 14, 'ardent': 3, 'restful': 1, 'shaky': 7, 'plastic': 11, 'oversized': 5, 'pitiful': 34, 'cobblestoned': 3, 'pained': 14, 'important': 129, 'wrinkled': 29, 'shaven': 3, 'conscious': 47, 'uncertain': 20, 'ribboned': 1, 'fascist': 79, 'ice-cold': 10, 'unfamiliar': 6, 'blunt': 6, 'grateful': 21, 'annoyed': 13, 'Good': 188, 'criminal': 11, 'huge': 131, 'disgusting': 14, 'fearful': 24, 'slippery': 6, 'unscheduled': 1, 'Italian': 43, 'corny': 5, 'yellow': 112, 'so-called': 40, 'big-eyed': 1, 'very': 42, 'raggedy': 5, 'Want': 12, 'nude': 19, 'able-bodied': 5, 'someplace': 2, 'exceptional': 4, 'celebrated': 3, 'cramped': 7, 'paper-thin': 2, 'ripe': 11, 'dignified': 17, 'easygoing': 2, 'arbitrary': 2, 'Ready': 9, 'colored': 13, 'nother': 1, 'close-cropped': 4, "'cause": 2, 'rhythmic': 2, 'frosted': 2, 'clinking': 2, 'privy': 2, 'concerned': 18, 'blameless': 2, 'rosy': 2, 'comic': 4, 'heavy': 216, 'radiant': 11, 'honey-colored': 2, 'interrupted': 4, 'experimental': 2, 'theirs': 12, 'forthcoming': 5, 'unarmed': 5, 'deserving': 4, 'unworthy': 6, 'slender': 13, 'healthy': 23, 'related': 18, 'sunken': 7, 'productive': 16, 'erudite': 1, 'shadowy': 10, 'bossy': 2, 'Cultural': 1, 'busy': 102, 'Female': 2, 'brown-skin': 1, 'abundant': 6, 'retired': 7, 'homeless': 4, 'shredded': 2, 'hard-working': 2, 'German': 44, 'necessary': 67, 'convincing': 7, 'tearless': 2, 'giant': 32, 'intellectual': 26, 'content': 11, 'unnecessary': 5, 'Slim': 1, 'reflective': 1, 'comfortable': 30, 'spare': 22, 'glassy': 5, 'Such': 37, 'benevolent': 9, 'senior': 18, 'Apparendy': 1, 'urgent': 24, 'final': 63, 'unconscious': 11, 'doubtful': 7, 'sequined': 1, 'distorted': 2, 'sliced': 1, 'spacious': 3, 'gentle': 49, 'turbulent': 4, 'interested': 84, 'one-way': 2, 'Dizzy': 1, 'salt-and-pepper': 1, 'fashionable': 10, 'Western': 24, 'far-off': 7, 'beloved': 19, 'unironed': 2, 'chaotic': 5, 'patriarchal': 2, 'inky': 2, 'corporate': 15, 'capable': 40, 'Burnt': 1, 'streamlined': 2, 'ideological': 10, 'sultry': 4, 'disorganized': 1, 'nightly': 7, 'resigned': 2, 'taut': 17, 'innocent': 59, 'extra': 59, 'enraged': 2, 'brownskinned': 1, 'unhappy': 40, 'gigantic': 12, 'Catholic': 19, 'South': 2, 'solitary': 25, 'broad': 95, 'expressive': 2, 'evident': 7, 'unpredictable': 9, 'pink': 42, 'unnoticed': 7, 'duffel': 5, 'Long': 14, 'pear-shaped': 1, 'self-possessed': 2, 'elitist': 2, 'west': 3, 'white-uniformed': 1, 'allergic': 1, 'boring': 5, 'melancholy': 19, 'stubborn': 15, 'fierce': 28, 'unadorned': 1, 'close-mouthed': 1, 'boxy': 1, 'exasperated': 2, 'wary': 11, 'patient': 8, 'sparkling': 9, 'merciful': 18, 'wealthy': 18, 'crucial': 2, 'Quiet': 7, 'brilliant': 28, 'black-and-blue': 1, 'wicked': 29, 'eternal': 21, 'twin': 7, 'virulent': 2, 'bigtime': 1, 'Nice': 34, 'feverish': 6, 'spiteful': 3, 'nonchalant': 2, 'inconsequential': 1, 'transparent': 5, 'additional': 18, 'unsatisfying': 1, 'incessant': 3, 'godlike': 3, 'last': 774, 'theatrical': 5, 'quiet': 262, 'obvious': 49, 'day-old': 1, 'unforeseen': 1, 'portable': 8, 'flashy': 4, 'terrific': 9, 'furious': 17, 'fleshly': 2, 'primitive': 3, 'silver': 10, 'afraid': 244, 'squashed': 2, 'tragic': 11, 'twelfth': 2, 'stingy': 2, 'genuine': 18, 'entertaining': 4, 'put': 1, 'front': 265, 'sayin': 3, 'touchable': 1, 'unknown': 44, 'ten-dollar': 5, 'unreasonable': 7, 'phlegmy': 3, 'polished': 12, 'torn-up': 1, 'circular': 3, 'yellow-brown': 3, 'wonderful': 86, 'gold-tipped': 1, 'tiny': 97, 'silvery': 7, 'ambitious': 5, 'forceful': 6, 'hard-headed': 1, 'hellified': 1, 'compassionate': 6, 'fidgety': 3, 'threadbare': 1, 'racist': 7, 'floral': 7, 'prominent': 13, 'hooded': 6, 'flawless': 3, 'searing': 3, 'pasty': 3, 'fellow': 41, 'antique': 13, 'tempting': 2, 'Twenty-third': 1, 'condescending': 2, 'straight': 76, 'shrunken': 2, 'commercial': 12, 'two-faced': 1, 'gross': 8, 'magic': 32, 'vivid': 14, 'livid': 2, 'eerie': 15, 'blurry': 2, 'active': 20, 'depressed': 16, 'European': 25, 'bloodshot': 4, 'ant': 1, 'legal': 18, 'ill': 11, 'proletarian': 3, 'durable': 1, 'clunky': 1, 'red-faced': 6, 'unopened': 5, 'shrill': 10, 'sorry': 258, 'exclamation': 1, 'grave': 18, 'female': 43, 'clasped': 1, 'steep': 10, 'painful': 30, 'tearful': 3, 'iced': 9, 'awkward': 19, 'engraved': 2, 'merry': 11, 'tantamount': 1, 'psychic': 3, 'slow-motion': 1, 'skeletal': 2, 'darn': 1, 'annoying': 4, 'mushy': 2, 'shy': 25, 'Light': 10, 'clumsy': 7, 'gruff': 4, 'Canadian': 3, 'abrupt': 11, 'lively': 7, 'recorded': 4, 'bad': 462, 'external': 5, 'remembered': 4, 'right': 525, 'frustrating': 1, 'invisible': 43, 'scathing': 2, 'risky': 4, 'medical': 42, 'crabby': 1, 'fantastic': 26, 'palm-leaf': 2, 'public': 133, 'elementary': 7, 'woolly': 6, 'Desperate': 1, 'magnetic': 4, 'unsettling': 2, 'disheveled': 1, 'spiritual': 41, 'full-out': 1, 'middle': 42, 'rush-hour': 1, 'glowing': 23, 'self-centered': 3, 'squat': 8, 'parental': 1, 'indomitable': 1, 'methodical': 2, 'snowy': 7, 'hateful': 3, 'dazed': 1, 'hurt': 3, 'serene': 8, 'rough': 64, 'good-natured': 5, 'neat': 40, 'perplexed': 5, 'smug': 7, 'three-piece': 3, 'fretful': 3, 'two-piece': 1, 'Absurd': 1, 'nauseous': 1, 'happy': 192, 'store-bought': 1, 'devoid': 10, 'opposite': 55, 'raspy': 2, 'rich': 160, 'visible': 33, 'lonesome': 20, 'puffy': 5, 'several': 193, 'multicolored': 10, 'Dirty': 3, 'chilly': 8, 'dismissive': 1, 'unrecognizable': 2, 'hardened': 1, 'fourth': 28, 'physical': 43, 'African-American': 2, 'grimy': 2, 'live': 32, 'Illegal': 1, 'classic': 12, 'near': 28, 'male': 32, 'dining-room': 12, 'orange-red': 4, 'varnished': 2, 'low': 137, 'morbid': 14, 'little-girl': 2, 'well-intentioned': 2, 'wide-eyed': 7, 'secondary': 9, 'tranquil': 1, 'captive': 2, 'static': 21, 'successful': 42, 'two-line': 1, 'speckled': 6, 'half-eaten': 3, 'scrubbed': 3, 'tear-filled': 1, 'mossy': 5, 'spotty': 2, 'angry': 117, 'grown': 17, 'plenty': 11, 'flustered': 4, 'commonplace': 1, 'miscellaneous': 1, 'messy': 5, 'sexist': 1, 'uniform': 7, 'bright': 160, 'second-story': 1, 'restricted': 1, 'mute': 9, 'mustached': 4, 'Sure': 149, 'foolproof': 1, 'resolute': 1, 'deranged': 1, 'profitable': 3, 'alert': 11, 'unnatural': 11, 'crooked': 21, 'stilted': 1, 'perfect': 142, 'canary': 11, 'wayward': 1, 'snooty': 1, 'dingy': 9, 'hell-fire': 2, 'lucky': 57, 'downtrodden': 2, 'plumb': 4, 'flowered': 5, 'cheery': 2, 'sociable': 2, 'promising': 2, 'homely': 4, 'oblong': 2, 'phantom': 7, 'inescapable': 2, 'enthusiastic': 8, 'reliable': 6, 'seductive': 2, 'cast-off': 1, 'choosy': 1, 'illustrated': 1, 'overseas': 3, 'rambling': 4, 'cute': 44, 'illegitimate': 2, 'indoor': 1, 'Many': 66, 'prime': 12, 'honest': 59, 'rocky': 6, 'wispy': 4, 'prone': 4, 'down-home': 1, 'intense': 29, 'sympathetic': 13, 'Soft': 1, 'nervous': 71, 'beige': 8, 'tipsy': 3, 'day-to-day': 2, 'sinful': 30, 'lone': 15, 'single': 113, 'distant': 45, 'scandalous': 5, 'rhetorical': 2, 'blonde': 31, 'faraway': 15, 'traditional': 25, 'Hot': 21, 'Fourth': 7, 'original': 26, 'thoughtful': 13, 'potted': 1, 'Latin': 8, 'dainty': 5, 'craggy': 1, 'placid': 2, 'erratic': 4, 'expansive': 2, 'steamy': 3, 'awesome': 10, 'drunk': 159, 'part-time': 15, 'Jamaican': 7, 'ostrich': 1, 'classy': 1, 'clannish': 1, 'relevant': 3, 'tyrannical': 1, 'Empty': 3, 'compatible': 3, 'grieving': 2, 'standin': 3, 'oppressive': 16, 'stiff': 53, 'illegal': 10, 'unsteady': 6, 'profound': 20, 'satin': 6, 'virtual': 1, 'personal': 86, 'Unbelievable': 4, 'gangly': 1, 'former': 55, 'mistaken': 6, 'redheaded': 10, 'damp': 37, 'freezing': 2, 'Special': 7, 'sisterly': 2, 'greenish': 4, 'contented': 10, 'touching': 10, 'weird': 23, 'empty': 168, 'weighty': 2, 'equal': 59, 'intact': 8, 'fanatic': 3, 'recognizable': 2, 'exacdy': 6, 'pregnant': 80, 'quick': 140, 'official': 13, 'heavenly': 21, 'convertible': 17, 'hundredth': 1, 'chained': 13, 'blue': 235, 'Tall': 8, 'phony': 5, 'bare': 104, 'invincible': 1, 'accidental': 3, 'burnt': 10, 'two-inch': 1, 'perfumed': 8, 'high-pitched': 3, 'educational': 13, 'tinny': 1, 'prideful': 1, 'same': 862, 'insufficient': 1, 'longstemmed': 1, 'aged': 20, 'excruciating': 3, 'assorted': 2, 'hung': 4, 'shipshape': 1, 'strange': 212, 'upper': 33, 'shameless': 2, 'compact': 5, 'submerged': 1, 'battered': 10, 'unformed': 2, 'shapely': 7, 'left': 85, 'expectant': 7, 'bottled': 3, 'colorful': 6, 'married': 46, 'scented': 2, 'jealous': 42, 'distinguished': 9, 'odd': 39, 'firm': 12, 'drab': 5, 'gleaming': 18, 'dramatic': 6, 'creamy': 2, 'apt': 5, 'spiked': 3, 'boiling': 1, 'unsmiling': 1, 'wavy': 6, 'knobby': 2, 'breathless': 7, 'indignant': 7, 'magical': 4, 'omniscient': 1, 'flush': 3, 'domestic': 27, 'real': 522, 'talented': 10, 'joyful': 6, 'massive': 34, 'insignificant': 5, 'noble': 18, 'mischievous': 9, 'blatant': 2, 'disparate': 3, 'respected': 5, 'western': 6, 'petty': 3, 'joking': 8, 'knife-sharp': 1, 'unidentifiable': 1, 'obnoxious': 5, 'staggering': 6, 'long-dead': 1, 'stinky': 2, 'passionate': 11, 'old-timey': 2, 'clean': 131, 'solid': 48, 'well-mannered': 2, 'subject': 33, 'express': 2, 'smoke-filled': 1, 'immortal': 20, 'willin': 2, 'genteel': 2, 'exciting': 17, 'worthy': 21, 'overwhelmed': 2, 'slick': 16, 'soft': 201, 'corrupt': 5, 'inward': 9, 'ashamed': 64, 'restrictive': 2, 'unsigned': 1, 'cordial': 6, 'rubber-soled': 1, 'meaningful': 7, 'scattered': 5, 'powerful': 61, 'hopeful': 8, 'immediate': 27, 'undeclared': 1, 'difficult': 59, 'tighdy': 2, 'open': 444, 'outside': 121, 'full-faced': 2, 'hubby': 1, 'kinda': 1, 'presentable': 2, 'pleasant': 33, 'tolerant': 4, 'three-bedroom': 1, 'perpetual': 11, 'intrusive': 3, 'thorough': 7, 'flimsy': 5, 'subsequent': 10, 'drastic': 4, 'accented': 1, 'dry-eyed': 1, 'rear': 15, 'terminal': 3, 'irreparable': 1, 'likely': 31, 'Christian': 47, 'everlasting': 14, 'understandable': 1, 'melodramatic': 1, 'stringy': 1, 'black-and-white': 1, 'swaggering': 1, 'groovy': 2, 'noticeable': 2, 'ninth': 3, 'friendly': 59, 'fried': 10, 'romantic': 16, 'stiff-legged': 1, 'shattered': 2, 'unappealing': 1, 'Found': 1, 'well-known': 5, 'pearly': 2, 'jumpy': 2, 'Small': 7, 'inner-city': 1, 'fervent': 5, 'puffed': 1, 'chief': 8, 'detailed': 2, 'like': 23, 'dejected': 4, 'rolling': 6, 'hurtful': 1, 'humbling': 1, 'French': 70, 'seamless': 1, 'Hard': 11, 'absolute': 22, 'two-handed': 1, 'assertive': 1, 'intensive': 5, 'cold': 326, 'feeble': 12, 'Northern': 5, 'severe': 27, 'hesitant': 6, 'loony': 1, 'right-hand': 3, 'aesthetic': 4, 'sofdy': 6, 'dusty': 15, 'dizzying': 2, 'enchanted': 1, 'weightless': 2, 'superior': 27, 'resounding': 2, 'callous': 2, 'brutal': 15, 'sleeveless': 2, 'half': 55, 'easy': 166, 'distinct': 19, 'disembodied': 2, 'two-year-old': 5, 'civic': 4, 'overworked': 3, 'three-room': 2, 'half-bad': 1, 'strangest': 1, 'poor': 353, 'impure': 2, 'threatening': 9, 'gaunt': 6, 'twenty-foot': 1, 'rude': 16, 'disrespectful': 2, 'golden': 53, 'ironical': 5, 'cut-up': 1, 'knee-length': 2, 'electric': 26, 'prestigious': 3, 'beautiful': 301, 'pedestrian': 2, 'Full': 3, 'fiftieth': 1, 'evil': 90, 'cripple': 1, 'select': 2, 'warm': 190, 'begrudging': 1, 'shimmering': 9, 'only': 478, 'internal': 9, 'bitter': 48, 'able': 248, 'Outside': 22, 'thorny': 2, 'double-checked': 1, 'bluish': 4, 'monogrammed': 1, 'lunatic': 1, 'unemployed': 19, 'thick': 120, 'proven': 1, 'scratchy': 1, 'foul': 22, 'yellowed': 8, 'interminable': 1, 'adjoining': 8, 'immobile': 1, 'good-sized': 2, 'pungent': 9, 'numb': 8, 'inclined': 4, 'helter-skelter': 2, 'lazy': 31, 'premature': 4, 'useless': 22, 'dim': 30, 'uncomfortable': 24, 'urban': 31, 'large': 251, 'crude': 15, 'shocked': 10, 'uneven': 4, 'all-white': 3, 'junior': 5, 'mulatto': 15, 'rare': 32, 'inconceivable': 1, 'classical': 11, 'False': 1, 'treacherous': 9, 'reluctant': 10, 'God-fearing': 3, 'immature': 5, 'litde': 9, 'requisite': 3, 'ringed': 4, 'anxious': 59, 'eldest': 4, 'Fourteenth': 2, 'gracious': 12, 'oblivious': 7, 'absent': 13, 'unborn': 7, 'wide-open': 1, 'fancy': 48, 'impregnable': 1, 'untouched': 3, 'little': 1961, 'late': 209, 'soggy': 4, 'french': 1, 'ten-minute': 1, 'tired': 196, 'shared': 5, 'institutional': 2, 'shabby': 6, 'third': 99, 'benighted': 3, 'cooking': 11, 'ole': 1, 'scorching': 4, 'Oriental': 3, 'wobbly': 7, 'rigid': 17, 'motherly': 5, 'impatient': 11, 'self-hatred': 1, 'encouraged': 1, 'bustling': 3, 'mutual': 22, 'timid': 6, 'excited': 14, 'low-cut': 2, 'upset': 31, 'fair': 74, 'sheltered': 3, 'deceitful': 1, 'effective': 15, 'curtained': 2, 'audible': 8, 'chivalrous': 1, 'delicate': 31, 'lighdy': 1, 'ashy': 1, 'round-faced': 2, 'certain': 164, 'highschool': 1, 'famous': 44, 'palpable': 5, 'conspiratorial': 1, 'festive': 1, 'local': 31, 'sorrowful': 5, 'untied': 1, 'fast': 80, 'mysterious': 30, 'barren': 9, 'naval': 2, 'thirteen-year-old': 2, 'secluded': 6, 'expensive': 32, 'greedy': 15, 'red-hot': 4, 'tangible': 6, 'possible': 125, 'True': 27, 'direct': 18, 'hopeless': 17, 'gifted': 6, 'syrupy': 3, 'contemporary': 5, 'hazy': 3, 'indecent': 1, 'calming': 2, 'jovial': 2, 'Young': 5, 'jaded': 2, 'so-so': 1, 'brown-gold': 1, 'unaware': 8, 'forgiving': 6, 'mystified': 1, 'balmy': 2, 'unlikely': 5, 'stout': 2, 'disruptive': 2, 'gurgling': 2, 'big-boned': 1, 'back': 302, 'soapy': 3, 'daytime': 7, 'gray-haired': 26, 'countless': 9, 'dangerous': 59, 'pompous': 1, 'horrid': 4, 'High': 6, 'past': 171, 'pure': 50, 'muddy': 11, 'mad': 134, 'horizontal': 3, 'cashmere': 3, 'whirling': 13, 'rural': 22, 'okay': 182, 'triumphant': 9, 'snaky': 2, 'reasonable': 15, 'trained': 5, 'inviolable': 1, 'close': 103, 'carefree': 2, 'unending': 6, 'tough': 69, 'smoky': 12, 'Much': 11, 'wanted': 12, 'victorious': 1, 'docile': 5, 'affectionate': 7, 'fulla': 1, 'imaginary': 16, 'revolving': 6, 'Certain': 8, 'high-handed': 1, 'metallic': 4, 'feisty': 1, 'Bitter': 1, 'troupe': 1, 'immeasurable': 1, 'handy': 5, 'red-and-black': 1, 'Unable': 3, 'steady': 54, 'rippled': 3, 'cowardly': 7, 'malignant': 3, 'Large': 6, 'unfair': 9, 'material': 6, 'grim': 18, 'striped': 8, 'authentic': 6, 'scientific': 5, 'oriental': 2, 'depressing': 7, 'foolish': 28, 'beaded': 3, 'working-class': 7, 'Clean': 8, 'splintered': 4, 'emerald': 1, 'Second': 3, 'Basic': 1, 'quaint': 5, 'unflappable': 1, 'starched': 7, 'excellent': 15, 'brown-skinned': 4, 'clad': 3, 'hidden': 27, 'speechless': 7, 'disinterested': 2, 'disturbed': 8, 'self-conscious': 5, 'fluffy': 1, 'sodden': 2, 'fresh': 91, 'disappointing': 5, 'slimy': 6, 'promised': 5, 'half-dressed': 1, 'irritating': 2, 'take-out': 2, 'scarlet': 103, 'ferocious': 4, 'improper': 1, 'sleek': 11, 'conservative': 9, 'impressive': 4, 'historical': 31, 'proclaimed': 1, 'la-la': 1, 'literary': 49, 'menacing': 2, 'delicious': 22, 'blown-up': 2, 'visual': 3, 'forgetful': 1, 'unsettled': 3, 'upright': 10, 'ugly': 65, 'dumbfounded': 1, 'fuzzy': 5, 'stinging': 2, 'followin': 1, 'crumpled': 7, 'crossword': 1, 'paranoid': 1, 'sensuous': 6, 'elegant': 16, 'fat': 138, 'cocky': 4, 'look-alike': 2, 'comin': 1, 'plaintive': 4, 'verbatim': 1, 'Novel': 1, 'law-abiding': 5, 'routine': 20, 'shallow': 18, 'rambunctious': 1, 'unannounced': 2, 'fake': 11, 'Jolly': 1, 'overnight': 6, 'after-hours': 1, 'frivolous': 2, 'else': 38, 'unwilling': 7, 'handwritten': 3, 'overpriced': 1, 'complicated': 14, 'normal': 48, 'sedate': 2, 'muted': 9, 'organic': 3, 'thematic': 2, 'northern': 16, 'childless': 1, 'heavyset': 1, 'recurrent': 1, 'complete': 96, 'cut-off': 1, 'national': 49, 'mild': 20, 'Irish': 10, 'mismatched': 2, 'loving': 33, 'polite': 23, 'skinny': 37, 'scared': 116, 'thin': 111, 'fringed': 4, 'stupid': 87, 'clear': 131, 'elevated': 7, 'husky': 11, 'appropriate': 12, 'Hopeless': 5, 'elaborate': 5, 'lemon': 28, 'honorable': 13, 'mixed': 21, 'arid': 6, 'ruthless': 6, 'spectacular': 3, 'correct': 24, 'daddy': 43, 'negative': 16, 'glazed': 5, 'delirious': 2, 'sexual': 18, 'preliminary': 4, 'long-legged': 2, 'smoked': 4, 'nameless': 16, 'dominant': 4, 'choppy': 3, 'awful': 68, 'sharp': 80, 'uncommitted': 1, 'rickety': 3, 'secondhand': 2, 'twenty-five-year-old': 1, 'new': 785, 'crazy': 198, 'ten-second': 1, 'studious': 2, 'Dark': 14, 'Underground': 1, 'financial': 9, 'kaleidoscopic': 1, 'goofy': 5, 'modest': 14, 'smelly': 4, 'bumpy': 2, 'lean': 27, 'willing': 57, 'hot': 315, 'open-air': 4, 'upstate': 3, 'injured': 6, 'haphazard': 1, 'biblical': 2, 'purple': 30, 'injurious': 1, 'Faint': 2, 'orange': 28, 'nough': 1, 'previous': 32, 'dishonest': 2, 'sensual': 7, 'full': 312, 'high-stepping': 1, 'blind-sided': 1, 'panicky': 2, 'lavish': 7, 'hi-fi': 1, 'testy': 2, 'Decent': 1, 'sacred': 37, 'undercover': 1, 'airborne': 2, 'spontaneous': 14, 'long-distance': 2, 'frail': 13, 'intimate': 20, 'longish': 1, 'well-worn': 3, 'bizarre': 8, 'autonomous': 4, 'academic': 5, 'unmistakable': 4, 'epidemic': 1, 'silky': 8, 'curly': 25, 'supportive': 1, 'lar': 1, 'forlorn': 7, 'numerous': 15, 'colorless': 5, 'arrogant': 5, 'imaginative': 2, 'outdoor': 10, 'bushy-haired': 2, 'remote': 20, 'secure': 15, 'moral': 34, 'unimaginable': 7, 'red-brown': 3, 'moldy': 3, 'first-class': 2, 'worn': 16, 'yeah': 17, 'juvenile': 1, 'deep-set': 4, 'ours': 17, 'safe': 75, 'dependable': 5, 'fifteen-year-old': 4, 'perk': 4, 'scheming': 12, 'oily': 1, 'whispery': 2, 'outstanding': 1, 'independent': 17, 'brown': 272, 'pouty': 1, 'bored': 13, 'welcome': 26, 'luminous': 5, 'three-dimensional': 3, 'impenetrable': 4, 'consistent': 1, 'frowned': 5, 'suggestive': 3, 'fortunate': 12, 'boastful': 1, 'lanky': 16, 'slack': 2, 'green': 219, 'good-looking': 31, 'burly': 4, 'Strange': 15, 'uppity': 2, 'swift': 9, 'bushy': 10, 'embroidered': 19, 'convinced': 17, 'lame': 9, 'destitute': 4, 'restless': 42, 'glad': 184, 'prickly': 6, 'unstable': 1, 'palatial': 1, 'bloody': 42, 'psychotic': 1, 'jam-packed': 2, 'unexpected': 15, 'white-headed': 1, 'olive': 15, 'tinkling': 1, 'cunning': 18, 'made-up': 1, 'plush': 4, 'definite': 12, 'loud': 169, 'long-ago': 3, 'comforting': 9, 'Noisy': 1, 'Danish': 1, 'sporty': 2, 'holy': 115, 'continued': 1, 'enough': 251, 'marvelous': 19, 'beat': 4, 'fleshy': 1, 'canopied': 4, 'dangling': 4, 'respective': 5, 'broke': 6, 'Mexican': 113, 'respectful': 7, 'verbal': 4, 'dispirited': 1, 'sullen': 13, 'clammy': 2, 'combined': 1, 'attentive': 8, 'gay': 15, 'tremendous': 12, 'missionary': 6, 'no-good': 7, 'practical': 14, 'blind': 84, 'pretend': 1, 'unofficial': 4, 'scary': 10, 'twelve-year-old': 3, 'old': 1484, 'melting': 1, 'freckle-faced': 1, 'deaf': 11, "li'l": 5, 'joyous': 5, 'satisfied': 24, 'current': 8, 'tiled': 8, 'Protestant': 7, 'hollow': 24, 'seething': 2, 'mindless': 6, 'plain': 42, 'dental': 1, 'permanent': 23, 'upper-class': 1, 'seventeen-year-old': 1, 'grassy': 4, 'stuck-up': 1, 'private': 126, 'cross-legged': 2, 'graduate': 4, 'unspoken': 10, 'twenty-first': 1, 'infamous': 5, 'Low': 9, 'encouraging': 1, 'shortsleeved': 1, 'Chilly': 1, 'hard': 455, 'unseen': 17, 'once-upon-a-time': 1, 'everyday': 9, 'hysterical': 14, 'rancid': 1, 'long': 911, 'sunny': 13, 'ashen': 2, 'accurate': 3, 'baked': 4, 'international': 35, 'rehearsed': 1, 'wild': 134, 'airy': 12, 'natural': 87, 'small': 449, 'top': 95, 'multiple': 3, 'bloated': 6, 'frequent': 15, 'parallel': 3, 'generous': 23, 'tainted': 2, 'four-lane': 4, 'adventurous': 1, 'irritated': 12, 'beribboned': 1, 'rainy': 9, 'facetious': 1, 'friendless': 2, 'hourly': 1, 'impossible': 78, 'ash': 20, 'hushed': 13, 'wan': 6, 'smooth': 57, 'free': 328, 'lonely': 74, 'ready': 332, 'proper': 64, 'tortured': 15, 'rubbery': 1, 'specific': 12, 'essential': 14, 'fenced-in': 1, 'puny': 3, 'random': 2, 'above': 11, 'godly': 9, 'inevitable': 23, 'early': 179, 'put-together': 2, 'drunken': 19, 'uncovered': 3, 'goddamn': 65, 'life-size': 3, 'mingled': 3, 'whirlwind': 2, 'slit': 1, 'Hush': 14, 'sing-song': 1, 'unfortunate': 7, 'radical': 1, 'Last': 32, 'Black': 147, 'significant': 8, 'white': 1200, 'deft': 2, 'Short': 2, 'dolly': 1, 'English': 37, 'almond': 1, 'next': 567, 'inquisitive': 4, 'popular': 38, 'straightforward': 3, 'unheard': 3, 'charming': 8, 'sugary': 1, 'defiant': 2, 'head-on': 1, 'ten-year-old': 2, 'intelligent': 44, 'occasional': 31, 'Lucky': 6, 'momentary': 8, 'whining': 2, 'monthly': 9, 'Fiery': 2, 'initial': 11, 'electronic': 8, 'entire': 86, 'disastrous': 5, 'undesirable': 2, 'naked': 91, 'soothing': 18}
{'frothy': 2, 'lustful': 1, 'marine': 1, 'two-story': 1, 'helluva': 1, 'winded': 1, 'unavoidable': 2, 'bouncy': 1, 'rapid': 2, 'lifeless': 1, 'heinous': 1, 'ignorant': 6, 'flattered': 1, 'side': 1, 'heavy-set': 2, 'disgusted': 1, 'professional': 15, 'Fast': 2, 'slow': 40, 'frightening': 4, 'murky': 2, 'adequate': 1, 'responsive': 1, 'Civil': 2, 'sincere': 8, 'rival': 1, 'tribal': 1, 'trim': 6, 'total': 6, 'chalky': 1, 'wiry': 4, 'loose': 30, 'sour': 9, 'annual': 2, 'limited': 3, 'faint': 10, 'pleased': 11, 'unblinking': 4, 'translucent': 1, 'tight': 68, 'dry': 47, 'noonday': 1, 'roasted': 3, 'unlimited': 1, 'myriad': 2, 'plentiful': 1, 'amorphous': 3, 'well-cut': 1, 'exotic': 1, 'girlish': 1, 'surgical': 2, 'cut-glass': 2, 'Sharp': 1, 'much': 256, 'indifferent': 1, 'Terrible': 1, 'sanitary': 1, 'weak': 45, 'twenty-fifth': 1, 'agricultural': 1, 'attendant': 8, 'unbearable': 4, 'kind': 6, 'funeral': 19, 'inverted': 1, 'reckless': 1, 'unfriendly': 1, 'fine': 184, 'gloomy': 1, 'high-brown': 1, 'outward': 2, 'vague': 4, 'two-month': 1, 'chic': 3, 'inflated': 1, 'New': 5, 'abusive': 1, 'chatty': 1, 'wilted': 1, 'cloudy': 5, 'scornful': 9, 'glaring': 2, 'relentless': 1, 'homesick': 1, 'run-down': 1, 'tasseled': 2, 'Communist': 7, 'further': 10, 'half-empty': 1, 'mathematical': 1, 'bleached': 3, 'fastidious': 1, 'proud': 46, 'conceited': 1, 'incurable': 1, 'unencumbered': 2, 'mean': 21, 'crusty': 1, 'built-in': 3, 'formal': 9, 'muscular': 5, 'modern': 3, 'stylish': 2, 'stable': 4, 'graceful': 2, 'unchained': 3, 'piercing': 1, 'heated': 2, 'dimpled': 4, 'grubby': 1, 'Brown': 7, 'vulnerable': 4, 'yellow-brick': 1, 'smooth-skinned': 1, 'pretty': 14, 'missing': 2, 'numbing': 1, 'nice': 123, 'childish': 2, 'sepia': 1, 'presidential': 1, 'obedient': 2, 'watchful': 4, 'social': 23, 'economic': 3, 'mature': 3, 'growling': 1, 'helpless': 7, 'mellow': 1, 'sorta': 2, 'exasperating': 1, 'mystical': 3, 'big-time': 1, 'fluorescent': 1, 'greasy': 3, 'sandy': 7, 'unpacked': 1, 'dumb': 22, 'noisy': 7, 'sweet': 83, 'live-in': 2, 'identical': 3, 'folding': 4, 'foster': 4, 'latent': 1, 'seafaring': 1, 'rusting': 2, 'pleated': 5, 'dark-skinned': 1, 'singsong': 1, 'pointed': 2, 'millionaire': 1, 'grainy': 1, 'blond': 5, 'black-white': 1, 'Cute': 3, 'old-fashioned': 3, 'whiny': 1, 'headless': 1, 'connected': 1, 'giddy': 1, 'well-to-do': 18, 'absurd': 2, 'rousing': 1, 'earthly': 2, 'sweeping': 4, 'distressing': 1, 'future': 10, 'ridiculous': 10, 'lay': 1, 'well-off': 6, 'prepared': 3, 'covered': 2, 'blood-stained': 2, 'frantic': 4, 'reachable': 1, 'umbilical': 2, 'sweaty': 10, 'voluptuous': 1, 'uneducated': 2, 'positive': 5, 'lewd': 1, 'worth': 13, 'horrendous': 1, 'mental': 10, 'overcast': 1, 'Scary': 1, 'extraordinary': 5, 'hundred-dollar': 3, 'domineering': 1, 'American': 55, 'bunioned': 1, 'sneaky': 2, 'high': 124, 'celluloid': 1, 'luscious': 1, 'weary': 16, 'Loving': 1, 'gaudy': 1, 'strict': 6, 'Vietnamese': 2, 'mobile': 1, 'prior': 1, 'well-dressed': 2, 'industrious': 1, 'contemptuous': 1, 'Japanese': 5, 'wet': 50, 'lovely': 29, 'serious': 40, 'crimson': 2, 'east': 7, 'true': 88, 'bent': 19, 'agonizing': 1, 'unforgiving': 1, 'suspicious': 3, 'roomy': 1, 'unto': 2, 'Chinese': 20, 'Giant': 2, 'finishing': 1, 'calm': 18, 'following': 1, 'enlarged': 2, 'own': 328, 'rusty': 2, 'Little': 7, 'federal': 1, 'six-year-old': 1, 'starry': 1, 'complimentary': 1, 'wooded': 1, 'human': 15, 'secret': 17, 'funny': 45, 'later': 7, 'Deep': 4, 'liberal': 1, 'broken': 14, 'distressed': 1, 'filthy': 5, 'overall': 1, 'mesmerizing': 1, 'damaging': 1, 'decisive': 1, 'political': 10, 'white-coated': 1, 'treasured': 1, 'unique': 3, 'infectious': 1, 'terrible': 34, 'gold': 6, 'organizational': 2, 'Spinning': 1, 'dilapidated': 1, 'diverse': 2, 'due': 24, 'alright': 21, 'distinguishable': 1, 'layered': 1, 'unchanging': 1, 'troubled': 2, 'hot-air': 1, 'tattered': 4, 'cool': 70, 'enormous': 3, 'outer': 4, 'vaginal': 1, 'similar': 3, 'dense': 7, 'regular': 45, 'intricate': 1, 'flirtatious': 2, 'unspoiled': 2, 'subordinate': 1, 'solemn': 5, 'scrawny': 4, 'wide-brimmed': 1, 'round': 16, 'stagnant': 1, 'snaggletoothed': 1, 'reflex': 1, 'daily': 12, 'Happy': 12, 'turned-out': 1, 'rectangular': 3, 'handsome': 16, 'primary': 1, 'Wonder': 3, 'crocheted': 1, 'separate': 16, 'far': 7, 'newborn': 2, 'deep': 121, 'sticky': 8, 'nonsensical': 1, 'sick': 75, 'broad-brimmed': 1, 'wartime': 1, 'wise': 9, 'sensitive': 3, 'gruesome': 2, 'fiery': 5, 'heart-shaped': 1, 'permed': 1, 'narrow': 21, 'rebel': 2, 'gleeful': 2, 'foreign': 9, 'many': 193, 'complex': 3, 'controlled': 1, 'down-to-earth': 1, 'favorite': 19, 'light': 77, 'womanish': 1, 'Victorian': 2, 'guilty': 8, 'Sorry': 8, 'furnished': 3, 'major': 14, 'potential': 2, 'scant': 1, 'futile': 2, 'emotional': 11, 'present': 27, 'temporary': 5, 'gingerbread': 1, 'dependent': 5, 'harsh': 6, 'full-time': 5, 'blue-black': 1, 'indefinite': 1, 'clear-cut': 1, 'First': 8, 'nigger': 1, 'dizzy': 7, 'brisk': 2, 'undue': 1, 'decent': 20, 'pronounced': 2, 'ordinary': 8, 'bleak': 2, 'joint': 4, 'desperate': 19, 'unprepared': 1, 'unable': 21, 'eleventh': 1, 'tilted': 11, 'lasting': 2, 'narrative': 3, 'unpleasant': 2, 'rental': 1, 'windowless': 2, 'eight-hour': 1, 'tacky': 1, 'braided': 3, 'motionless': 7, 'sixth': 2, 'special': 57, 'adult': 13, 'off': 3, 'minimal': 1, 'nasty': 10, 'gritty': 3, 'naive': 8, 'frenzied': 1, 'blue-green': 1, 'momentous': 1, 'five-year-old': 3, 'mighty': 8, 'horrible': 5, 'stern': 5, 'exaggerated': 1, 'hand-me-down': 2, 'instant': 1, 'ballpoint': 1, 'chronic': 1, 'four-year-old': 1, 'virgin': 15, 'junky': 1, 'naughty': 2, 'adolescent': 2, 'modern-day': 1, 'ballet': 1, 'Different': 1, 'blue-and-white': 2, 'pale': 22, 'nighttime': 1, 'African': 68, 'daring': 6, 'ruby': 1, 'impish': 1, 'stand-up': 2, 'interesting': 4, 'uniformed': 1, 'sensible': 2, 'make-believe': 3, 'typical': 3, 'confused': 3, 'Anglo-Saxon': 1, 'next-door': 1, 'keen': 5, 'Due': 1, 'boundless': 1, 'seventh': 6, 'facial': 1, 'helpful': 5, 'obscure': 1, 'closed': 11, 'uncompromising': 2, 'Asian': 4, 'vengeful': 1, 'light-skinned': 3, 'manicured': 2, 'Yellow': 4, 'Familiar': 1, 'bittersweet': 1, 'maniacal': 1, 'overstuffed': 2, 'iridescent': 1, 'tin-roofed': 1, 'varied': 1, 'melted': 2, 'simple': 24, 'individual': 4, 'gray': 57, 'gorgeous': 17, 'windless': 1, 'predictable': 3, 'brand-new': 5, 'troublesome': 1, 'uptown': 4, 'inferior': 1, 'ramshackle': 2, 'platonic': 3, 'cupped': 1, 'flawed': 2, 'sure': 278, 'rubbish': 1, 'cynical': 2, 'common': 16, 'various': 8, 'beleaguered': 1, 'tense': 7, 'unfathomable': 1, 'young': 157, 'red': 112, 'mundane': 1, 'Other': 12, 'actual': 9, 'horned': 1, 'open-mouthed': 1, 'all-night': 1, 'ungrateful': 2, 'digital': 1, 'faithful': 5, 'stale': 9, 'garlic': 2, 'middle-aged': 3, 'Annoyed': 1, 'faceless': 3, 'pristine': 2, 'hard-earned': 1, 'defenseless': 1, 'feminine': 1, 'Thin': 1, 'baggy': 3, 'hefty': 1, 'indistinguishable': 2, 'grudging': 1, 'Fine': 1, 'Democratic': 2, 'dandy': 2, 'insane': 5, 'committed': 1, 'persistent': 6, 'stray': 1, 'dreamy': 1, 'righteous': 7, 'astounded': 2, 'middleaged': 1, 'gettin': 6, 'jagged': 3, 'damn': 33, 'overhead': 2, 'shiny': 19, 'juicy': 2, 'unusual': 6, 'sexy': 17, 'bobby': 1, 'nigh': 2, 'gory': 1, 'late-night': 1, 'meaty': 3, 'dirty': 16, 'vulgar': 1, 'Stupid': 5, 'trivial': 2, 'windy': 4, 'soundless': 1, 'technical': 1, 'tidal': 1, 'ethical': 2, 'showy': 1, 'second-string': 1, 'churchy': 1, 'warped': 2, 'three-fourths': 1, 'watery': 7, 'moist': 4, 'Senior': 1, 'sandaled': 1, 'aggressive': 4, 'Swiss': 1, 'unrolled': 2, 'careless': 2, 'thankful': 14, 'required': 1, 'assistant': 4, 'call': 4, 'lukewarm': 1, 'sleepy': 6, 'Dead': 3, 'Complete': 2, 'foggy': 3, 'degraded': 1, 'portly': 3, 'Holy': 1, 'located': 1, 'amusing': 4, 'tangled': 2, 'hard-boiled': 1, 'available': 12, 'creative': 1, 'collective': 1, 'elusive': 1, 'striking': 1, 'bearded': 1, 'liberating': 1, 'Rolling': 2, 'unwelcome': 1, 'curved': 5, 'fitted': 1, 'vain': 5, 'defensive': 3, 'abstract': 2, 'eighth': 6, 'square': 3, 'down': 2, 'rational': 2, 'bland': 4, 'Big': 12, 'volatile': 1, 'one-half': 1, 'homemade': 1, 'surrogate': 1, 'Damn': 19, 'Warm': 5, 'Further': 4, 'split': 1, 'frozen': 10, 'such': 86, 'haughty': 1, 'acceptable': 2, 'endless': 9, 'offensive': 1, 'homosexual': 1, 'sturdy': 3, 'relative': 4, 'stuffy': 1, 'tepid': 1, 'gut-bucket': 1, 'sarcastic': 2, 'lopsided': 2, 'one-sided': 1, 'out': 4, 'frigid': 1, 'underwater': 1, 'useful': 3, 'infrequent': 1, 'trifling': 4, 'Beautiful': 14, 'Protective': 2, 'empty-handed': 4, 'replete': 1, 'valuable': 3, 'mere': 2, 'wrong': 197, 'elderly': 7, 'armed': 3, 'wraparound': 2, 'creased': 2, 'Several': 10, 'bold': 5, 'great': 102, 'objective': 2, 'dreadful': 1, 'half-filled': 1, 'maternal': 2, 'bottom': 15, 'black': 322, 'coincidental': 3, 'alive': 44, 'Muslim': 1, 'associate': 1, 'unafraid': 1, 'industrial': 1, 'careful': 15, 'worthwhile': 2, 'kingly': 1, 'unflinching': 1, 'stringy-haired': 1, 'long-sleeved': 1, 'acute': 1, 'humid': 1, 'stunned': 14, 'Sweet': 7, 'deadly': 1, 'Pregnant': 1, 'good': 555, 'vacant': 5, 'fitting': 9, 'obligatory': 1, 'disjointed': 1, 'harmless': 1, 'thirsty': 5, 'sober': 2, 'native': 1, 'up-to-date': 2, 'star-spangled': 1, 'five-foot': 3, 'laden': 4, 'unfinished': 2, 'immaculate': 5, 'rotten': 5, 'erotic': 1, 'storybook': 1, 'witty': 1, 'fictional': 4, 'Spanish': 4, 'disabled': 1, 'unfocused': 2, 'frying': 1, 'wistful': 1, 'lifelong': 1, 'perfecdy': 6, 'prying': 2, 'phenomenal': 2, 'responsible': 11, 'sufficient': 1, 'hush': 5, 'depraved': 1, 'precise': 1, 'glossy': 4, 'cheap': 3, 'ancient': 9, 'earnest': 3, 'lower-class': 1, 'desirable': 1, 'loaded': 2, 'flat': 47, 'artistic': 1, 'insistent': 8, 'vast': 2, 'grown-up': 1, 'one-hundred-dollar': 1, 'Embarrassed': 1, 'respectable': 7, 'grand': 23, 'temporal': 1, 'unerring': 1, 'skimpy': 1, 'cranky': 5, 'fond': 5, 'rugged': 2, 'confusing': 1, 'incapable': 1, 'pebbly': 2, 'rough-looking': 1, 'red-bearded': 1, 'Bright': 2, 'reddish': 1, 'throbbing': 1, 'bulky': 5, 'basic': 3, 'repetitive': 1, 'eventful': 1, 'raw': 14, 'weather-beaten': 1, 'scalding': 2, 'legislative': 1, 'centered': 1, 'ox-drawn': 1, 'Korean': 7, 'Fundamental': 1, 'disturbing': 2, 'one-night': 4, 'tropical': 5, 'silent': 34, 'latter': 1, 'arched': 4, 'sound': 9, 'hard-pressed': 1, 'rid': 11, 'laughing': 1, 'religious': 1, 'blank': 10, 'south': 1, 'hash': 1, 'worldly': 2, 'geometric': 1, 'sophisticated': 1, 'singular': 1, 'rowdy': 3, 'twisted': 2, 'insensitive': 2, 'Careful': 2, 'valid': 1, 'dark': 105, 'different': 130, 'surly': 2, 'prosperous': 8, 'Ole': 1, 'refined': 1, 'neady': 1, 'novel': 26, 'twentieth-century': 1, 'oval': 6, 'god-awful': 1, 'nationalist': 5, 'frustrated': 9, 'Nasty': 1, 'refreshing': 2, 'beefy': 1, 'fifth': 6, 'sickly': 1, 'dispossessed': 1, 'Wrong': 1, 'two-family': 1, 'uptight': 2, 'elastic': 5, 'sinewy': 1, 'smart': 30, 'Haitian': 1, 'concrete': 2, 'embarrassed': 10, 'mythic': 1, 'big': 237, 'flagrant': 1, 'mortal': 3, 'sloppy': 2, 'exclusive': 2, 'glistening': 1, 'swollen': 16, 'nine-year-old': 2, 'minute': 1, 'fourteen-year-old': 1, 'unprotected': 1, 'awash': 3, 'false': 13, 'apparent': 2, 'nearby': 8, 'broken-down': 2, 'sole': 1, 'twentieth': 5, 'imperceptible': 1, 'sable': 1, 'asymmetrical': 1, 'constructive': 1, 'three-way': 2, 'fourteenth': 2, 'needy': 2, 'Greek': 3, 'one-act': 1, 'Few': 2, 'inappropriate': 1, 'minimum': 1, 'Virginian': 2, 'starter': 2, 'veritable': 1, 'socio-economic': 1, 'perforated': 1, 'mine': 23, 'inner': 4, 'sectional': 1, 'particular': 23, 'monumental': 1, 'Loud': 2, 'bewildered': 2, 'mindful': 2, 'subtle': 1, 'Understand': 1, 'unbuttoned': 2, 'Cuban': 5, 'garish': 2, 'slim': 8, 'alleged': 1, 'Biblical': 1, 'automatic': 4, 'crowded': 7, 'heartfelt': 2, 'tongue-tied': 1, 'gloved': 3, 'concentrated': 1, 'realistic': 3, 'sad': 59, 'musical': 4, 'firstclass': 1, 'stormy': 2, 'miserable': 4, 'relieved': 12, 'experienced': 1, 'Indian': 9, 'worthless': 1, 'dazzling': 2, 'Old': 4, 'bleeding': 1, 'tiresome': 1, 'too-big': 1, 'torn': 2, 'obscene': 1, 'maiden': 2, 'cheerful': 3, 'one-dimensional': 1, 'slight': 3, 'populated': 1, 'strong': 68, 'vigorous': 1, 'recent': 4, 'spotless': 2, 'dead': 133, 'sane': 1, 'vile': 2, 'seedy': 1, 'prospective': 1, 'unsentimental': 2, 'strapping': 1, 'sudden': 38, 'key': 8, 'cautious': 6, 'intolerable': 1, 'booming': 1, 'mosdy': 6, 'picky': 2, 'full-blown': 2, 'clever': 2, 'vibrant': 1, 'humble': 12, 'impotent': 2, 'exact': 7, 'snug': 1, 'surprised': 23, 'uneventful': 2, 'interim': 1, 'Great': 7, 'perfunctory': 1, 'embarrassing': 1, 'military': 5, 'sheer': 2, 'biological': 3, 'dandelion': 1, 'powdered': 3, 'super': 2, 'attractive': 9, 'vicious': 3, 'wideopen': 1, 'silly': 19, 'vital': 1, 'coarse': 2, 'hungry': 37, 'known': 3, 'spinning': 1, 'sore': 6, 'matching': 4, 'electrical': 1, 'Tough': 1, 'curious': 5, 'ankle-deep': 1, 'toothpasty': 1, 'startling': 2, 'loyal': 2, 'unbelievable': 2, 'eager': 9, 'pointy': 2, 'funky': 4, 'straight-backed': 3, 'queasy': 3, 'aware': 10, 'fit': 1, 'Blue': 1, 'incoming': 1, 'petite': 3, 'stark': 3, 'magnificent': 4, 'second-rate': 1, 'nimble': 1, 'condensed': 1, 'ageless': 1, 'Worthy': 5, 'in-and-out': 1, 'adamant': 2, 'lousy': 2, 'overwhelming': 4, 'grievous': 2, 'truthful': 4, 'bicentennial': 1, 'wide-legged': 1, 'short': 99, 'usual': 26, 'Amazing': 1, 'adjacent': 1, 'plump': 5, 'half-closed': 1, 'undressed': 4, 'racial': 8, 'second': 107, 'tasty': 1, 'Thick': 2, 'cruel': 8, 'playful': 1, 'unattached': 1, 'civil': 2, 'average': 4, 'horrifying': 2, 'limp': 15, 'universal': 3, 'wilting': 1, 'blinding': 1, 'sizable': 1, 'ecstatic': 3, 'frightened': 5, 'full-length': 2, 'big-knuckled': 1, 'Tight': 4, 'fabulous': 3, 'seasoned': 1, 'whole': 125, 'clipping': 1, 'privileged': 1, 'sly': 2, 'worried': 22, 'surprising': 3, 'cultural': 3, 'critical': 8, 'Same': 6, 'youthful': 2, 'supple': 2, 'extended': 3, 'barbecued': 1, 'Bad': 3, 'alcoholic': 2, 'marked': 1, 'recendy': 1, 'glorious': 4, 'Hungarian': 1, 'compelling': 2, 'pointless': 1, 'partial': 1, 'familial': 1, 'pathetic': 3, 'iron-rimmed': 1, 'first': 354, 'unkind': 1, 'few': 291, 'Glad': 3, 'Next': 13, 'minuscule': 1, 'casual': 10, 'pervasive': 1, 'wooden': 26, 'unavailable': 1, 'dull': 7, 'salty': 7, 'fragile': 4, 'packed': 5, 'interracial': 4, "ol'": 1, 'double': 27, 'confident': 12, 'stunning': 4, 'misty': 2, 'minor': 3, 'bubbly': 2, 'unsure': 2, 'weatherbeaten': 2, 'brash': 2, 'Third': 1, 'wounded': 1, 'welcoming': 3, 'shameful': 3, 'whipping': 4, 'nonstop': 1, 'Cool': 5, 'hostile': 2, 'breathtaking': 1, 'other': 619, 'inside': 12, 'musty': 1, 'ultimate': 4, 'simulated': 1, 'comfy': 2, 'cryptic': 1, 'incredible': 11, 'ragged': 11, 'fearless': 4, 'decaying': 1, 'bald': 6, 'ceramic': 5, 'comical': 1, 'chubby': 4, 'hoarse': 4, 'undersized': 1, 'familiar': 31, 'stainless': 1, 'frank': 1, 'backhanded': 1, 'wide': 76, 'Tired': 8, 'knotted': 1, 'unlit': 1, 'alone': 3, 'athletic': 1, 'selfish': 6, 'edgy': 2, 'flattened-out': 1, 'general': 19, 'legitimate': 1, 'twinkling': 1, 'irresponsible': 2, 'stocky': 3, 'fading': 4, 'held': 1, 'after-dinner': 1, 'amazing': 12, 'bony': 2, 'southern': 2, 'unholy': 1, 'tantalizing': 1, 'droopy': 2, 'humiliating': 3, 'tapered': 2, 'uneasy': 6, 'sassy': 1, 'main': 11, 'wretched': 1, 'impressed': 7, 'Real': 10, 'shooting': 1, 'brief': 11, 'British': 8, 'Similar': 1, 'breaking': 1, 'disappointed': 9, 'adept': 2, 'crisp': 12, 'mechanical': 2, 'exuberant': 1, 'forced': 2, 'nonwhite': 3, 'upward': 1, 'peaceful': 10, 'teak': 1, 'precious': 15, 'weekly': 3, 'unfaithful': 1, 'two-year': 2, 'tall': 44, 'violent': 7, 'constant': 13, 'deafening': 2, 'dreamless': 1, 'gaping': 3, 'ardent': 1, 'restful': 3, 'shaky': 3, 'plastic': 7, 'oversized': 4, 'pitiful': 7, 'cobblestoned': 1, 'pained': 1, 'important': 43, 'wrinkled': 2, 'shaven': 1, 'conscious': 3, 'uncertain': 1, 'ribboned': 2, 'fascist': 2, 'ice-cold': 1, 'unfamiliar': 7, 'blunt': 4, 'grateful': 32, 'annoyed': 4, 'Good': 36, 'criminal': 4, 'huge': 48, 'disgusting': 1, 'fearful': 3, 'slippery': 5, 'unscheduled': 1, 'Italian': 4, 'corny': 3, 'yellow': 47, 'so-called': 6, 'big-eyed': 1, 'very': 8, 'raggedy': 3, 'Want': 1, 'nude': 3, 'able-bodied': 1, 'someplace': 1, 'exceptional': 2, 'celebrated': 1, 'cramped': 1, 'paper-thin': 1, 'ripe': 2, 'dignified': 3, 'easygoing': 1, 'arbitrary': 1, 'Ready': 3, 'colored': 1, 'nother': 2, 'close-cropped': 1, "'cause": 4, 'rhythmic': 1, 'frosted': 2, 'clinking': 1, 'privy': 1, 'concerned': 11, 'blameless': 1, 'rosy': 4, 'comic': 3, 'heavy': 55, 'radiant': 3, 'honey-colored': 1, 'interrupted': 1, 'experimental': 1, 'theirs': 3, 'forthcoming': 1, 'unarmed': 2, 'deserving': 2, 'unworthy': 2, 'slender': 1, 'healthy': 11, 'related': 2, 'sunken': 2, 'productive': 1, 'erudite': 1, 'shadowy': 1, 'bossy': 1, 'Cultural': 1, 'busy': 31, 'Female': 2, 'brown-skin': 1, 'abundant': 1, 'retired': 1, 'homeless': 3, 'shredded': 1, 'hard-working': 1, 'German': 3, 'necessary': 6, 'convincing': 3, 'tearless': 1, 'giant': 10, 'intellectual': 6, 'content': 2, 'unnecessary': 3, 'Slim': 1, 'reflective': 1, 'comfortable': 39, 'spare': 5, 'glassy': 2, 'Such': 2, 'benevolent': 1, 'senior': 8, 'Apparendy': 1, 'urgent': 1, 'final': 28, 'unconscious': 1, 'doubtful': 2, 'sequined': 1, 'distorted': 1, 'sliced': 3, 'spacious': 1, 'gentle': 17, 'turbulent': 2, 'interested': 20, 'one-way': 1, 'Dizzy': 1, 'salt-and-pepper': 1, 'fashionable': 1, 'Western': 4, 'far-off': 2, 'beloved': 5, 'unironed': 1, 'chaotic': 1, 'patriarchal': 2, 'inky': 1, 'corporate': 1, 'capable': 3, 'Burnt': 2, 'streamlined': 1, 'ideological': 1, 'sultry': 1, 'disorganized': 1, 'nightly': 1, 'resigned': 1, 'taut': 9, 'innocent': 12, 'extra': 34, 'enraged': 1, 'brownskinned': 1, 'unhappy': 3, 'gigantic': 1, 'Catholic': 6, 'South': 1, 'solitary': 2, 'broad': 17, 'expressive': 1, 'evident': 1, 'unpredictable': 3, 'pink': 34, 'unnoticed': 1, 'duffel': 7, 'Long': 9, 'pear-shaped': 1, 'self-possessed': 1, 'elitist': 1, 'west': 1, 'white-uniformed': 1, 'allergic': 1, 'boring': 6, 'melancholy': 1, 'stubborn': 4, 'fierce': 4, 'unadorned': 1, 'close-mouthed': 1, 'boxy': 3, 'exasperated': 3, 'wary': 3, 'patient': 2, 'sparkling': 7, 'merciful': 1, 'wealthy': 2, 'crucial': 1, 'Quiet': 3, 'brilliant': 11, 'black-and-blue': 1, 'wicked': 9, 'eternal': 5, 'twin': 2, 'virulent': 1, 'bigtime': 1, 'Nice': 16, 'feverish': 3, 'spiteful': 1, 'nonchalant': 2, 'inconsequential': 1, 'transparent': 2, 'additional': 2, 'unsatisfying': 1, 'incessant': 1, 'godlike': 1, 'last': 291, 'theatrical': 6, 'quiet': 98, 'obvious': 8, 'day-old': 1, 'unforeseen': 1, 'portable': 1, 'flashy': 1, 'terrific': 1, 'furious': 6, 'fleshly': 1, 'primitive': 1, 'silver': 2, 'afraid': 50, 'squashed': 1, 'tragic': 2, 'twelfth': 1, 'stingy': 2, 'genuine': 6, 'entertaining': 2, 'put': 2, 'front': 97, 'sayin': 2, 'touchable': 1, 'unknown': 6, 'ten-dollar': 1, 'unreasonable': 2, 'phlegmy': 1, 'polished': 2, 'torn-up': 1, 'circular': 3, 'yellow-brown': 1, 'wonderful': 19, 'gold-tipped': 2, 'tiny': 48, 'silvery': 3, 'ambitious': 2, 'forceful': 1, 'hard-headed': 2, 'hellified': 1, 'compassionate': 2, 'fidgety': 1, 'threadbare': 2, 'racist': 9, 'floral': 1, 'prominent': 1, 'hooded': 1, 'flawless': 1, 'searing': 2, 'pasty': 1, 'fellow': 3, 'antique': 1, 'tempting': 1, 'Twenty-third': 2, 'condescending': 1, 'straight': 26, 'shrunken': 1, 'commercial': 1, 'two-faced': 2, 'gross': 2, 'magic': 11, 'vivid': 2, 'livid': 2, 'eerie': 2, 'blurry': 3, 'active': 9, 'depressed': 7, 'European': 3, 'bloodshot': 1, 'ant': 1, 'legal': 16, 'ill': 3, 'proletarian': 1, 'durable': 1, 'clunky': 1, 'red-faced': 2, 'unopened': 1, 'shrill': 2, 'sorry': 147, 'exclamation': 2, 'grave': 5, 'female': 23, 'clasped': 1, 'steep': 10, 'painful': 7, 'tearful': 1, 'iced': 7, 'awkward': 9, 'engraved': 1, 'merry': 2, 'tantamount': 1, 'psychic': 4, 'slow-motion': 1, 'skeletal': 1, 'darn': 1, 'annoying': 2, 'mushy': 1, 'shy': 8, 'Light': 2, 'clumsy': 3, 'gruff': 1, 'Canadian': 2, 'abrupt': 2, 'lively': 2, 'recorded': 1, 'bad': 155, 'external': 2, 'remembered': 2, 'right': 245, 'frustrating': 1, 'invisible': 11, 'scathing': 1, 'risky': 2, 'medical': 4, 'crabby': 1, 'fantastic': 6, 'palm-leaf': 1, 'public': 27, 'elementary': 2, 'woolly': 1, 'Desperate': 1, 'magnetic': 3, 'unsettling': 1, 'disheveled': 2, 'spiritual': 10, 'full-out': 1, 'middle': 10, 'rush-hour': 1, 'glowing': 10, 'self-centered': 1, 'squat': 7, 'parental': 1, 'indomitable': 1, 'methodical': 1, 'snowy': 4, 'hateful': 3, 'dazed': 2, 'hurt': 1, 'serene': 5, 'rough': 23, 'good-natured': 2, 'neat': 33, 'perplexed': 1, 'smug': 3, 'three-piece': 1, 'fretful': 1, 'two-piece': 1, 'Absurd': 2, 'nauseous': 3, 'happy': 146, 'store-bought': 1, 'devoid': 1, 'opposite': 15, 'raspy': 2, 'rich': 24, 'visible': 6, 'lonesome': 13, 'puffy': 2, 'several': 40, 'multicolored': 1, 'Dirty': 2, 'chilly': 6, 'dismissive': 1, 'unrecognizable': 1, 'hardened': 2, 'fourth': 15, 'physical': 17, 'African-American': 1, 'grimy': 3, 'live': 11, 'Illegal': 1, 'classic': 1, 'near': 3, 'male': 20, 'dining-room': 1, 'orange-red': 1, 'varnished': 2, 'low': 50, 'morbid': 2, 'little-girl': 1, 'well-intentioned': 1, 'wide-eyed': 1, 'secondary': 1, 'tranquil': 2, 'captive': 1, 'static': 2, 'successful': 9, 'two-line': 1, 'speckled': 3, 'half-eaten': 1, 'scrubbed': 1, 'tear-filled': 1, 'mossy': 1, 'spotty': 1, 'angry': 56, 'grown': 16, 'plenty': 12, 'flustered': 1, 'commonplace': 1, 'miscellaneous': 1, 'messy': 5, 'sexist': 1, 'uniform': 3, 'bright': 48, 'second-story': 1, 'restricted': 2, 'mute': 3, 'mustached': 1, 'Sure': 20, 'foolproof': 1, 'resolute': 2, 'deranged': 1, 'profitable': 1, 'alert': 2, 'unnatural': 3, 'crooked': 11, 'stilted': 1, 'perfect': 63, 'canary': 1, 'wayward': 3, 'snooty': 3, 'dingy': 2, 'hell-fire': 1, 'lucky': 25, 'downtrodden': 2, 'plumb': 1, 'flowered': 7, 'cheery': 1, 'sociable': 1, 'promising': 1, 'homely': 1, 'oblong': 2, 'phantom': 1, 'inescapable': 1, 'enthusiastic': 2, 'reliable': 1, 'seductive': 1, 'cast-off': 1, 'choosy': 1, 'illustrated': 2, 'overseas': 3, 'rambling': 1, 'cute': 35, 'illegitimate': 1, 'indoor': 1, 'Many': 12, 'prime': 2, 'honest': 16, 'rocky': 1, 'wispy': 3, 'prone': 2, 'down-home': 1, 'intense': 5, 'sympathetic': 3, 'Soft': 2, 'nervous': 17, 'beige': 11, 'tipsy': 1, 'day-to-day': 1, 'sinful': 5, 'lone': 3, 'single': 31, 'distant': 12, 'scandalous': 1, 'rhetorical': 1, 'blonde': 1, 'faraway': 2, 'traditional': 1, 'Hot': 5, 'Fourth': 6, 'original': 3, 'thoughtful': 3, 'potted': 2, 'Latin': 1, 'dainty': 2, 'craggy': 1, 'placid': 2, 'erratic': 4, 'expansive': 2, 'steamy': 5, 'awesome': 11, 'drunk': 33, 'part-time': 11, 'Jamaican': 4, 'ostrich': 2, 'classy': 5, 'clannish': 2, 'relevant': 3, 'tyrannical': 2, 'Empty': 1, 'compatible': 1, 'grieving': 1, 'standin': 2, 'oppressive': 1, 'stiff': 19, 'illegal': 5, 'unsteady': 1, 'profound': 1, 'satin': 10, 'virtual': 1, 'personal': 16, 'Unbelievable': 2, 'gangly': 2, 'former': 10, 'mistaken': 2, 'redheaded': 1, 'damp': 16, 'freezing': 1, 'Special': 2, 'sisterly': 1, 'greenish': 2, 'contented': 1, 'touching': 5, 'weird': 9, 'empty': 54, 'weighty': 1, 'equal': 6, 'intact': 1, 'fanatic': 1, 'recognizable': 1, 'exacdy': 9, 'pregnant': 78, 'quick': 44, 'official': 3, 'heavenly': 3, 'convertible': 2, 'hundredth': 1, 'chained': 1, 'blue': 102, 'Tall': 2, 'phony': 2, 'bare': 15, 'invincible': 1, 'accidental': 3, 'burnt': 7, 'two-inch': 1, 'perfumed': 5, 'high-pitched': 2, 'educational': 3, 'tinny': 1, 'prideful': 1, 'same': 232, 'insufficient': 1, 'longstemmed': 1, 'aged': 1, 'excruciating': 1, 'assorted': 1, 'hung': 2, 'shipshape': 1, 'strange': 30, 'upper': 16, 'shameless': 1, 'compact': 1, 'submerged': 1, 'battered': 1, 'unformed': 1, 'shapely': 2, 'left': 33, 'expectant': 3, 'bottled': 1, 'colorful': 2, 'married': 17, 'scented': 2, 'jealous': 23, 'distinguished': 2, 'odd': 15, 'firm': 2, 'drab': 1, 'gleaming': 2, 'dramatic': 7, 'creamy': 4, 'apt': 2, 'spiked': 2, 'boiling': 1, 'unsmiling': 1, 'wavy': 2, 'knobby': 3, 'breathless': 1, 'indignant': 3, 'magical': 2, 'omniscient': 2, 'flush': 2, 'domestic': 3, 'real': 205, 'talented': 4, 'joyful': 3, 'massive': 6, 'insignificant': 1, 'noble': 3, 'mischievous': 2, 'blatant': 2, 'disparate': 1, 'respected': 1, 'western': 1, 'petty': 1, 'joking': 2, 'knife-sharp': 1, 'unidentifiable': 1, 'obnoxious': 1, 'staggering': 1, 'long-dead': 1, 'stinky': 2, 'passionate': 3, 'old-timey': 1, 'clean': 87, 'solid': 15, 'well-mannered': 2, 'subject': 4, 'express': 1, 'smoke-filled': 1, 'immortal': 1, 'willin': 6, 'genteel': 2, 'exciting': 4, 'worthy': 4, 'overwhelmed': 1, 'slick': 8, 'soft': 64, 'corrupt': 1, 'inward': 1, 'ashamed': 23, 'restrictive': 1, 'unsigned': 1, 'cordial': 3, 'rubber-soled': 1, 'meaningful': 3, 'scattered': 1, 'powerful': 2, 'hopeful': 6, 'immediate': 5, 'undeclared': 2, 'difficult': 21, 'tighdy': 2, 'open': 137, 'outside': 36, 'full-faced': 1, 'hubby': 1, 'kinda': 5, 'presentable': 3, 'pleasant': 3, 'tolerant': 1, 'three-bedroom': 2, 'perpetual': 1, 'intrusive': 1, 'thorough': 4, 'flimsy': 2, 'subsequent': 1, 'drastic': 1, 'accented': 1, 'dry-eyed': 4, 'rear': 6, 'terminal': 1, 'irreparable': 1, 'likely': 8, 'Christian': 16, 'everlasting': 1, 'understandable': 2, 'melodramatic': 1, 'stringy': 2, 'black-and-white': 3, 'swaggering': 2, 'groovy': 2, 'noticeable': 3, 'ninth': 4, 'friendly': 15, 'fried': 6, 'romantic': 12, 'stiff-legged': 1, 'shattered': 1, 'unappealing': 1, 'Found': 1, 'well-known': 4, 'pearly': 1, 'jumpy': 1, 'Small': 5, 'inner-city': 1, 'fervent': 1, 'puffed': 1, 'chief': 1, 'detailed': 1, 'like': 1, 'dejected': 1, 'rolling': 2, 'hurtful': 3, 'humbling': 1, 'French': 10, 'seamless': 1, 'Hard': 10, 'absolute': 6, 'two-handed': 1, 'assertive': 1, 'intensive': 2, 'cold': 90, 'feeble': 1, 'Northern': 1, 'severe': 3, 'hesitant': 3, 'loony': 3, 'right-hand': 1, 'aesthetic': 3, 'sofdy': 2, 'dusty': 13, 'dizzying': 1, 'enchanted': 1, 'weightless': 1, 'superior': 4, 'resounding': 1, 'callous': 1, 'brutal': 3, 'sleeveless': 4, 'half': 13, 'easy': 73, 'distinct': 2, 'disembodied': 1, 'two-year-old': 1, 'civic': 1, 'overworked': 1, 'three-room': 1, 'half-bad': 1, 'strangest': 2, 'poor': 60, 'impure': 1, 'threatening': 3, 'gaunt': 5, 'twenty-foot': 1, 'rude': 20, 'disrespectful': 5, 'golden': 22, 'ironical': 1, 'cut-up': 1, 'knee-length': 1, 'electric': 15, 'prestigious': 1, 'beautiful': 127, 'pedestrian': 1, 'Full': 3, 'fiftieth': 1, 'evil': 13, 'cripple': 3, 'select': 1, 'warm': 59, 'begrudging': 1, 'shimmering': 8, 'only': 154, 'internal': 1, 'bitter': 20, 'able': 106, 'Outside': 3, 'thorny': 1, 'double-checked': 1, 'bluish': 1, 'monogrammed': 1, 'lunatic': 1, 'unemployed': 3, 'thick': 71, 'proven': 1, 'scratchy': 1, 'foul': 2, 'yellowed': 1, 'interminable': 2, 'adjoining': 3, 'immobile': 2, 'good-sized': 1, 'pungent': 1, 'numb': 2, 'inclined': 1, 'helter-skelter': 1, 'lazy': 2, 'premature': 3, 'useless': 7, 'dim': 6, 'uncomfortable': 13, 'urban': 3, 'large': 52, 'crude': 2, 'shocked': 15, 'uneven': 2, 'all-white': 2, 'junior': 2, 'mulatto': 4, 'rare': 13, 'inconceivable': 1, 'classical': 1, 'False': 2, 'treacherous': 1, 'reluctant': 1, 'God-fearing': 1, 'immature': 1, 'litde': 1, 'requisite': 1, 'ringed': 1, 'anxious': 6, 'eldest': 2, 'Fourteenth': 1, 'gracious': 4, 'oblivious': 2, 'absent': 2, 'unborn': 2, 'wide-open': 1, 'fancy': 10, 'impregnable': 1, 'untouched': 7, 'little': 303, 'late': 73, 'soggy': 2, 'french': 1, 'ten-minute': 1, 'tired': 68, 'shared': 1, 'institutional': 1, 'shabby': 2, 'third': 24, 'benighted': 1, 'cooking': 1, 'ole': 1, 'scorching': 1, 'Oriental': 5, 'wobbly': 4, 'rigid': 3, 'motherly': 2, 'impatient': 3, 'self-hatred': 1, 'encouraged': 1, 'bustling': 2, 'mutual': 1, 'timid': 1, 'excited': 14, 'low-cut': 1, 'upset': 14, 'fair': 14, 'sheltered': 1, 'deceitful': 1, 'effective': 1, 'curtained': 1, 'audible': 3, 'chivalrous': 1, 'delicate': 5, 'lighdy': 2, 'ashy': 1, 'round-faced': 1, 'certain': 32, 'highschool': 1, 'famous': 11, 'palpable': 1, 'conspiratorial': 1, 'festive': 2, 'local': 8, 'sorrowful': 1, 'untied': 1, 'fast': 33, 'mysterious': 7, 'barren': 2, 'naval': 1, 'thirteen-year-old': 3, 'secluded': 1, 'expensive': 7, 'greedy': 5, 'red-hot': 2, 'tangible': 2, 'possible': 39, 'True': 9, 'direct': 6, 'hopeless': 3, 'gifted': 3, 'syrupy': 2, 'contemporary': 3, 'hazy': 7, 'indecent': 1, 'calming': 1, 'jovial': 1, 'Young': 2, 'jaded': 1, 'so-so': 1, 'brown-gold': 1, 'unaware': 1, 'forgiving': 1, 'mystified': 1, 'balmy': 1, 'unlikely': 1, 'stout': 1, 'disruptive': 1, 'gurgling': 1, 'big-boned': 2, 'back': 68, 'soapy': 1, 'daytime': 3, 'gray-haired': 1, 'countless': 1, 'dangerous': 12, 'pompous': 1, 'horrid': 3, 'High': 2, 'past': 67, 'pure': 19, 'muddy': 5, 'mad': 101, 'horizontal': 2, 'cashmere': 1, 'whirling': 3, 'rural': 3, 'okay': 174, 'triumphant': 3, 'snaky': 1, 'reasonable': 3, 'trained': 2, 'inviolable': 1, 'close': 53, 'carefree': 2, 'unending': 1, 'tough': 16, 'smoky': 1, 'Much': 1, 'wanted': 1, 'victorious': 2, 'docile': 1, 'affectionate': 2, 'fulla': 1, 'imaginary': 3, 'revolving': 5, 'Certain': 2, 'high-handed': 2, 'metallic': 3, 'feisty': 1, 'Bitter': 3, 'troupe': 1, 'immeasurable': 1, 'handy': 3, 'red-and-black': 1, 'Unable': 1, 'steady': 29, 'rippled': 1, 'cowardly': 1, 'malignant': 1, 'Large': 2, 'unfair': 10, 'material': 2, 'grim': 5, 'striped': 6, 'authentic': 1, 'scientific': 1, 'oriental': 2, 'depressing': 2, 'foolish': 13, 'beaded': 3, 'working-class': 1, 'Clean': 2, 'splintered': 2, 'emerald': 3, 'Second': 3, 'Basic': 1, 'quaint': 1, 'unflappable': 1, 'starched': 5, 'excellent': 7, 'brown-skinned': 2, 'clad': 1, 'hidden': 1, 'speechless': 2, 'disinterested': 2, 'disturbed': 1, 'self-conscious': 2, 'fluffy': 3, 'sodden': 1, 'fresh': 37, 'disappointing': 3, 'slimy': 2, 'promised': 1, 'half-dressed': 1, 'irritating': 1, 'take-out': 1, 'scarlet': 2, 'ferocious': 3, 'improper': 3, 'sleek': 3, 'conservative': 1, 'impressive': 2, 'historical': 6, 'proclaimed': 1, 'la-la': 1, 'literary': 7, 'menacing': 2, 'delicious': 2, 'blown-up': 1, 'visual': 1, 'forgetful': 1, 'unsettled': 3, 'upright': 1, 'ugly': 24, 'dumbfounded': 2, 'fuzzy': 4, 'stinging': 1, 'followin': 1, 'crumpled': 5, 'crossword': 2, 'paranoid': 3, 'sensuous': 2, 'elegant': 9, 'fat': 23, 'cocky': 2, 'look-alike': 1, 'comin': 5, 'plaintive': 1, 'verbatim': 1, 'Novel': 2, 'law-abiding': 2, 'routine': 3, 'shallow': 6, 'rambunctious': 1, 'unannounced': 1, 'fake': 25, 'Jolly': 1, 'overnight': 3, 'after-hours': 1, 'frivolous': 1, 'else': 10, 'unwilling': 1, 'handwritten': 6, 'overpriced': 1, 'complicated': 1, 'normal': 33, 'sedate': 2, 'muted': 1, 'organic': 1, 'thematic': 1, 'northern': 1, 'childless': 4, 'heavyset': 1, 'recurrent': 2, 'complete': 11, 'cut-off': 1, 'national': 5, 'mild': 2, 'Irish': 12, 'mismatched': 2, 'loving': 23, 'polite': 15, 'skinny': 7, 'scared': 34, 'thin': 46, 'fringed': 2, 'stupid': 58, 'clear': 73, 'elevated': 3, 'husky': 3, 'appropriate': 6, 'Hopeless': 1, 'elaborate': 4, 'lemon': 10, 'honorable': 1, 'mixed': 8, 'arid': 2, 'ruthless': 3, 'spectacular': 1, 'correct': 4, 'daddy': 9, 'negative': 3, 'glazed': 2, 'delirious': 2, 'sexual': 32, 'preliminary': 1, 'long-legged': 1, 'smoked': 3, 'nameless': 2, 'dominant': 3, 'choppy': 1, 'awful': 8, 'sharp': 24, 'uncommitted': 1, 'rickety': 4, 'secondhand': 5, 'twenty-five-year-old': 1, 'new': 250, 'crazy': 143, 'ten-second': 1, 'studious': 2, 'Dark': 6, 'Underground': 1, 'financial': 4, 'kaleidoscopic': 1, 'goofy': 1, 'modest': 1, 'smelly': 1, 'bumpy': 1, 'lean': 14, 'willing': 15, 'hot': 107, 'open-air': 2, 'upstate': 1, 'injured': 3, 'haphazard': 2, 'biblical': 1, 'purple': 24, 'injurious': 1, 'Faint': 1, 'orange': 19, 'nough': 3, 'previous': 6, 'dishonest': 2, 'sensual': 3, 'full': 181, 'high-stepping': 1, 'blind-sided': 1, 'panicky': 1, 'lavish': 1, 'hi-fi': 1, 'testy': 1, 'Decent': 2, 'sacred': 2, 'undercover': 2, 'airborne': 2, 'spontaneous': 1, 'long-distance': 2, 'frail': 8, 'intimate': 10, 'longish': 2, 'well-worn': 2, 'bizarre': 6, 'autonomous': 1, 'academic': 2, 'unmistakable': 1, 'epidemic': 1, 'silky': 5, 'curly': 3, 'supportive': 2, 'lar': 1, 'forlorn': 1, 'numerous': 2, 'colorless': 1, 'arrogant': 5, 'imaginative': 2, 'outdoor': 6, 'bushy-haired': 1, 'remote': 10, 'secure': 3, 'moral': 3, 'unimaginable': 1, 'red-brown': 1, 'moldy': 1, 'first-class': 7, 'worn': 7, 'yeah': 4, 'juvenile': 2, 'deep-set': 1, 'ours': 9, 'safe': 36, 'dependable': 2, 'fifteen-year-old': 2, 'perk': 1, 'scheming': 1, 'oily': 1, 'whispery': 3, 'outstanding': 1, 'independent': 6, 'brown': 118, 'pouty': 1, 'bored': 1, 'welcome': 13, 'luminous': 1, 'three-dimensional': 1, 'impenetrable': 2, 'consistent': 2, 'frowned': 1, 'suggestive': 2, 'fortunate': 3, 'boastful': 1, 'lanky': 2, 'slack': 2, 'green': 78, 'good-looking': 4, 'burly': 1, 'Strange': 1, 'uppity': 2, 'swift': 1, 'bushy': 4, 'embroidered': 4, 'convinced': 10, 'lame': 5, 'destitute': 1, 'restless': 5, 'glad': 128, 'prickly': 1, 'unstable': 1, 'palatial': 1, 'bloody': 13, 'psychotic': 1, 'jam-packed': 1, 'unexpected': 5, 'white-headed': 1, 'olive': 3, 'tinkling': 1, 'cunning': 1, 'made-up': 4, 'plush': 2, 'definite': 2, 'loud': 67, 'long-ago': 2, 'comforting': 8, 'Noisy': 1, 'Danish': 1, 'sporty': 2, 'holy': 8, 'continued': 1, 'enough': 73, 'marvelous': 1, 'beat': 1, 'fleshy': 3, 'canopied': 1, 'dangling': 3, 'respective': 1, 'broke': 4, 'Mexican': 4, 'respectful': 4, 'verbal': 2, 'dispirited': 1, 'sullen': 3, 'clammy': 2, 'combined': 1, 'attentive': 2, 'gay': 1, 'tremendous': 2, 'missionary': 1, 'no-good': 2, 'practical': 6, 'blind': 14, 'pretend': 9, 'unofficial': 1, 'scary': 7, 'twelve-year-old': 1, 'old': 264, 'melting': 1, 'freckle-faced': 1, 'deaf': 4, "li'l": 1, 'joyous': 1, 'satisfied': 7, 'current': 5, 'tiled': 1, 'Protestant': 1, 'hollow': 11, 'seething': 2, 'mindless': 1, 'plain': 10, 'dental': 2, 'permanent': 5, 'upper-class': 2, 'seventeen-year-old': 2, 'grassy': 3, 'stuck-up': 2, 'private': 35, 'cross-legged': 1, 'graduate': 1, 'unspoken': 1, 'twenty-first': 1, 'infamous': 1, 'Low': 1, 'encouraging': 2, 'shortsleeved': 1, 'Chilly': 1, 'hard': 209, 'unseen': 4, 'once-upon-a-time': 3, 'everyday': 9, 'hysterical': 4, 'rancid': 1, 'long': 273, 'sunny': 3, 'ashen': 1, 'accurate': 1, 'baked': 4, 'international': 2, 'rehearsed': 1, 'wild': 43, 'airy': 1, 'natural': 26, 'small': 184, 'top': 59, 'multiple': 1, 'bloated': 3, 'frequent': 2, 'parallel': 2, 'generous': 6, 'tainted': 1, 'four-lane': 1, 'adventurous': 1, 'irritated': 4, 'beribboned': 1, 'rainy': 1, 'facetious': 1, 'friendless': 1, 'hourly': 2, 'impossible': 19, 'ash': 1, 'hushed': 6, 'wan': 2, 'smooth': 27, 'free': 100, 'lonely': 19, 'ready': 209, 'proper': 24, 'tortured': 1, 'rubbery': 1, 'specific': 6, 'essential': 1, 'fenced-in': 2, 'puny': 2, 'random': 5, 'above': 4, 'godly': 3, 'inevitable': 3, 'early': 42, 'put-together': 1, 'drunken': 2, 'uncovered': 1, 'goddamn': 14, 'life-size': 1, 'mingled': 1, 'whirlwind': 4, 'slit': 1, 'Hush': 4, 'sing-song': 1, 'unfortunate': 3, 'radical': 1, 'Last': 12, 'Black': 71, 'significant': 6, 'white': 531, 'deft': 1, 'Short': 18, 'dolly': 1, 'English': 2, 'almond': 2, 'next': 287, 'inquisitive': 2, 'popular': 5, 'straightforward': 4, 'unheard': 2, 'charming': 2, 'sugary': 2, 'defiant': 3, 'head-on': 1, 'ten-year-old': 2, 'intelligent': 6, 'occasional': 5, 'Lucky': 1, 'momentary': 3, 'whining': 2, 'monthly': 6, 'Fiery': 1, 'initial': 4, 'electronic': 2, 'entire': 32, 'disastrous': 1, 'undesirable': 1, 'naked': 24, 'soothing': 8}</code></pre>
</div>
</div>
<div class="cell">
<div class="sourceCode cell-code" id="cb15"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb15-1"><a href="#cb15-1" aria-hidden="true" tabindex="-1"></a><span class="co"># from operator import itemgetter</span></span>
<span id="cb15-2"><a href="#cb15-2" aria-hidden="true" tabindex="-1"></a><span class="co"># top_n_frequency = 20</span></span>
<span id="cb15-3"><a href="#cb15-3" aria-hidden="true" tabindex="-1"></a><span class="co"># top_frequency_filtered_book_to_word_count = {}</span></span>
<span id="cb15-4"><a href="#cb15-4" aria-hidden="true" tabindex="-1"></a><span class="co"># for b, wc in book_to_word_count.items():</span></span>
<span id="cb15-5"><a href="#cb15-5" aria-hidden="true" tabindex="-1"></a><span class="co"># res = dict(sorted(wc.items(), key=itemgetter(1), reverse=True)[:top_n_frequency])</span></span>
<span id="cb15-6"><a href="#cb15-6" aria-hidden="true" tabindex="-1"></a><span class="co"># top_frequency_filtered_book_to_word_count[b] = res</span></span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
</div>
<div class="cell">
<div class="sourceCode cell-code" id="cb16"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb16-1"><a href="#cb16-1" aria-hidden="true" tabindex="-1"></a><span class="co"># for b, wc in top_frequency_filtered_book_to_word_count.items():</span></span>
<span id="cb16-2"><a href="#cb16-2" aria-hidden="true" tabindex="-1"></a><span class="co"># print(b)</span></span>
<span id="cb16-3"><a href="#cb16-3" aria-hidden="true" tabindex="-1"></a><span class="co"># print(wc)</span></span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
</div>
</section>
</section>
</section>
<section id="word-shiftrator" class="level1" data-number="2">
<h1 data-number="2"><span class="header-section-number">2</span> Word Shiftrator</h1>
<p>https://ryanjgallagher.github.io/code/word_shift/overview</p>
<div class="cell" data-outputid="e3567ba1-6dd9-49fb-ae5c-ea0514634642">
<div class="sourceCode cell-code" id="cb17"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb17-1"><a href="#cb17-1" aria-hidden="true" tabindex="-1"></a>pip install shifterator</span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
<div class="cell-output cell-output-stdout">
<pre><code>Requirement already satisfied: shifterator in /usr/local/lib/python3.10/dist-packages (0.3.0)
Requirement already satisfied: matplotlib in /usr/local/lib/python3.10/dist-packages (from shifterator) (3.7.1)
Requirement already satisfied: numpy in /usr/local/lib/python3.10/dist-packages (from shifterator) (1.25.2)
Requirement already satisfied: contourpy>=1.0.1 in /usr/local/lib/python3.10/dist-packages (from matplotlib->shifterator) (1.2.0)
Requirement already satisfied: cycler>=0.10 in /usr/local/lib/python3.10/dist-packages (from matplotlib->shifterator) (0.12.1)
Requirement already satisfied: fonttools>=4.22.0 in /usr/local/lib/python3.10/dist-packages (from matplotlib->shifterator) (4.49.0)
Requirement already satisfied: kiwisolver>=1.0.1 in /usr/local/lib/python3.10/dist-packages (from matplotlib->shifterator) (1.4.5)
Requirement already satisfied: packaging>=20.0 in /usr/local/lib/python3.10/dist-packages (from matplotlib->shifterator) (23.2)
Requirement already satisfied: pillow>=6.2.0 in /usr/local/lib/python3.10/dist-packages (from matplotlib->shifterator) (9.4.0)
Requirement already satisfied: pyparsing>=2.3.1 in /usr/local/lib/python3.10/dist-packages (from matplotlib->shifterator) (3.1.1)
Requirement already satisfied: python-dateutil>=2.7 in /usr/local/lib/python3.10/dist-packages (from matplotlib->shifterator) (2.8.2)
Requirement already satisfied: six>=1.5 in /usr/local/lib/python3.10/dist-packages (from python-dateutil>=2.7->matplotlib->shifterator) (1.16.0)</code></pre>
</div>
</div>
<div class="cell">
<div class="sourceCode cell-code" id="cb19"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb19-1"><a href="#cb19-1" aria-hidden="true" tabindex="-1"></a>cp <span class="op">/</span>content<span class="op">/</span>drive<span class="op">/</span>MyDrive<span class="op">/</span>TORCHLITE<span class="op">/</span>fixed_shifterator_helper.py <span class="op">/</span>usr<span class="op">/</span>local<span class="op">/</span>lib<span class="op">/</span>python3<span class="fl">.10</span><span class="op">/</span>dist<span class="op">-</span>packages<span class="op">/</span>shifterator<span class="op">/</span>helper.py</span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
</div>
<div class="cell" data-outputid="d3ba3100-214a-475a-e487-a88a669ae19e">
<div class="sourceCode cell-code" id="cb20"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb20-1"><a href="#cb20-1" aria-hidden="true" tabindex="-1"></a>cd <span class="op">/</span>content</span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
<div class="cell-output cell-output-stdout">
<pre><code>/content</code></pre>
</div>
</div>
<div class="cell">
<div class="sourceCode cell-code" id="cb22"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb22-1"><a href="#cb22-1" aria-hidden="true" tabindex="-1"></a><span class="im">import</span> shifterator <span class="im">as</span> sh</span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
</div>
<div class="cell">
<div class="sourceCode cell-code" id="cb23"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb23-1"><a href="#cb23-1" aria-hidden="true" tabindex="-1"></a>first_item_frequency <span class="op">=</span> century_20_common_wc</span>
<span id="cb23-2"><a href="#cb23-2" aria-hidden="true" tabindex="-1"></a>second_item_frequency <span class="op">=</span> century_21_common_wc</span>
<span id="cb23-3"><a href="#cb23-3" aria-hidden="true" tabindex="-1"></a>sentiment_shift <span class="op">=</span> sh.WeightedAvgShift(type2freq_1<span class="op">=</span>first_item_frequency,</span>
<span id="cb23-4"><a href="#cb23-4" aria-hidden="true" tabindex="-1"></a> type2freq_2<span class="op">=</span>second_item_frequency,</span>
<span id="cb23-5"><a href="#cb23-5" aria-hidden="true" tabindex="-1"></a> type2score_1<span class="op">=</span><span class="st">'labMT_English'</span>,</span>
<span id="cb23-6"><a href="#cb23-6" aria-hidden="true" tabindex="-1"></a> reference_value<span class="op">=</span><span class="dv">100</span>,</span>
<span id="cb23-7"><a href="#cb23-7" aria-hidden="true" tabindex="-1"></a> stop_lens<span class="op">=</span>[(<span class="dv">4</span>,<span class="dv">6</span>)])</span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
</div>
<div class="cell" data-outputid="c1fa3859-e4ab-431c-98d4-86efa71fc3ec">
<div class="sourceCode cell-code" id="cb24"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb24-1"><a href="#cb24-1" aria-hidden="true" tabindex="-1"></a>sentiment_shift.get_shift_graph(detailed<span class="op">=</span><span class="va">False</span>,</span>
<span id="cb24-2"><a href="#cb24-2" aria-hidden="true" tabindex="-1"></a> system_names<span class="op">=</span>[<span class="st">'20th century'</span>, <span class="st">'21th century'</span>])</span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
<div class="cell-output cell-output-stderr">
<pre><code>/usr/local/lib/python3.10/dist-packages/shifterator/plotting.py:604: UserWarning: FixedFormatter should only be used together with FixedLocator
ax.set_xticklabels(x_ticks, fontsize=plot_params["xtick_fontsize"])</code></pre>
</div>
<div class="cell-output cell-output-display">
<p><img src="wordshift_files/figure-html/cell-19-output-2.png" class="img-fluid"></p>
</div>
<div class="cell-output cell-output-display" data-execution_count="70">
<pre><code><Axes: title={'center': '20th century: $\\Phi_{avg}=$5.66\n21th century: $\\Phi_{avg}=$5.78'}, xlabel='Score shift $\\delta \\Phi_{\\tau}$ (%)', ylabel='Rank'></code></pre>
</div>
</div>
<div class="cell" data-outputid="355dc38f-29a2-465b-9a70-987769e8b17c">
<div class="sourceCode cell-code" id="cb27"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb27-1"><a href="#cb27-1" aria-hidden="true" tabindex="-1"></a><span class="co">#frequency</span></span>
<span id="cb27-2"><a href="#cb27-2" aria-hidden="true" tabindex="-1"></a>first_item_frequency <span class="op">=</span> century_20_common_wc</span>
<span id="cb27-3"><a href="#cb27-3" aria-hidden="true" tabindex="-1"></a>second_item_frequency <span class="op">=</span> century_21_common_wc</span>
<span id="cb27-4"><a href="#cb27-4" aria-hidden="true" tabindex="-1"></a>proportion_shift <span class="op">=</span> sh.ProportionShift(type2freq_1<span class="op">=</span>first_item_frequency,</span>
<span id="cb27-5"><a href="#cb27-5" aria-hidden="true" tabindex="-1"></a> type2freq_2<span class="op">=</span>second_item_frequency)</span>
<span id="cb27-6"><a href="#cb27-6" aria-hidden="true" tabindex="-1"></a>proportion_shift.get_shift_graph(system_names <span class="op">=</span> [<span class="st">'20th century'</span>, <span class="st">'21th century'</span>],</span>
<span id="cb27-7"><a href="#cb27-7" aria-hidden="true" tabindex="-1"></a> title<span class="op">=</span><span class="st">'History of Black Writers Workset Sample by century'</span>)</span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
<div class="cell-output cell-output-stderr">
<pre><code>/usr/local/lib/python3.10/dist-packages/shifterator/plotting.py:604: UserWarning: FixedFormatter should only be used together with FixedLocator
ax.set_xticklabels(x_ticks, fontsize=plot_params["xtick_fontsize"])</code></pre>
</div>
<div class="cell-output cell-output-display">
<p><img src="wordshift_files/figure-html/cell-20-output-2.png" class="img-fluid"></p>
</div>
<div class="cell-output cell-output-display" data-execution_count="71">
<pre><code><Axes: title={'center': 'History of Black Writers Workset Sample by century'}, xlabel='Score shift $\\delta \\Phi_{\\tau}$ (%)', ylabel='Rank'></code></pre>
</div>
</div>
<div class="cell" data-outputid="a2287381-bb5d-4bec-9cd1-988e5961d7d6">
<div class="sourceCode cell-code" id="cb30"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb30-1"><a href="#cb30-1" aria-hidden="true" tabindex="-1"></a>entropy_shift <span class="op">=</span> sh.EntropyShift(type2freq_1<span class="op">=</span>first_item_frequency,</span>
<span id="cb30-2"><a href="#cb30-2" aria-hidden="true" tabindex="-1"></a> type2freq_2<span class="op">=</span>second_item_frequency,</span>
<span id="cb30-3"><a href="#cb30-3" aria-hidden="true" tabindex="-1"></a> base<span class="op">=</span><span class="dv">2</span>)</span>
<span id="cb30-4"><a href="#cb30-4" aria-hidden="true" tabindex="-1"></a></span>
<span id="cb30-5"><a href="#cb30-5" aria-hidden="true" tabindex="-1"></a>entropy_shift.get_shift_graph(system_names <span class="op">=</span> [<span class="st">'20th century'</span>, <span class="st">'21th century'</span>],</span>
<span id="cb30-6"><a href="#cb30-6" aria-hidden="true" tabindex="-1"></a> title<span class="op">=</span><span class="st">'History of Black Writers Workset Sample by century'</span>)</span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
<div class="cell-output cell-output-stderr">
<pre><code>/usr/local/lib/python3.10/dist-packages/shifterator/plotting.py:604: UserWarning: FixedFormatter should only be used together with FixedLocator
ax.set_xticklabels(x_ticks, fontsize=plot_params["xtick_fontsize"])</code></pre>
</div>
<div class="cell-output cell-output-display">
<p><img src="wordshift_files/figure-html/cell-21-output-2.png" class="img-fluid"></p>
</div>
<div class="cell-output cell-output-display" data-execution_count="72">
<pre><code><Axes: title={'center': 'History of Black Writers Workset Sample by century'}, xlabel='Score shift $\\delta \\Phi_{\\tau}$ (%)', ylabel='Rank'></code></pre>
</div>
</div>
</section>
</main> <!-- /main --> <script id="quarto-html-after-body" type="application/javascript">
window.document.addEventListener("DOMContentLoaded", function (event) {
const toggleBodyColorMode = (bsSheetEl) => {
const mode = bsSheetEl.getAttribute("data-mode");
const bodyEl = window.document.querySelector("body");
if (mode === "dark") {
bodyEl.classList.add("quarto-dark");
bodyEl.classList.remove("quarto-light");
} else {
bodyEl.classList.add("quarto-light");
bodyEl.classList.remove("quarto-dark");
}
}
const toggleBodyColorPrimary = () => {
const bsSheetEl = window.document.querySelector("link#quarto-bootstrap");
if (bsSheetEl) {
toggleBodyColorMode(bsSheetEl);
}
}
toggleBodyColorPrimary();
const icon = "";
const anchorJS = new window.AnchorJS();
anchorJS.options = {
placement: 'right',
icon: icon
};
anchorJS.add('.anchored');
const isCodeAnnotation = (el) => {
for (const clz of el.classList) {
if (clz.startsWith('code-annotation-')) {
return true;
}
}
return false;
}
const clipboard = new window.ClipboardJS('.code-copy-button', {
text: function(trigger) {
const codeEl = trigger.previousElementSibling.cloneNode(true);
for (const childEl of codeEl.children) {
if (isCodeAnnotation(childEl)) {
childEl.remove();
}
}
return codeEl.innerText;
}
});
clipboard.on('success', function(e) {
// button target
const button = e.trigger;
// don't keep focus
button.blur();
// flash "checked"
button.classList.add('code-copy-button-checked');
var currentTitle = button.getAttribute("title");
button.setAttribute("title", "Copied!");
let tooltip;
if (window.bootstrap) {
button.setAttribute("data-bs-toggle", "tooltip");
button.setAttribute("data-bs-placement", "left");
button.setAttribute("data-bs-title", "Copied!");
tooltip = new bootstrap.Tooltip(button,
{ trigger: "manual",
customClass: "code-copy-button-tooltip",
offset: [0, -8]});
tooltip.show();
}
setTimeout(function() {
if (tooltip) {
tooltip.hide();
button.removeAttribute("data-bs-title");
button.removeAttribute("data-bs-toggle");
button.removeAttribute("data-bs-placement");
}
button.setAttribute("title", currentTitle);
button.classList.remove('code-copy-button-checked');
}, 1000);
// clear code selection
e.clearSelection();
});
function tippyHover(el, contentFn) {
const config = {
allowHTML: true,
content: contentFn,
maxWidth: 500,
delay: 100,
arrow: false,
appendTo: function(el) {
return el.parentElement;
},
interactive: true,
interactiveBorder: 10,
theme: 'quarto',
placement: 'bottom-start'
};
window.tippy(el, config);
}
const noterefs = window.document.querySelectorAll('a[role="doc-noteref"]');
for (var i=0; i<noterefs.length; i++) {
const ref = noterefs[i];
tippyHover(ref, function() {
// use id or data attribute instead here
let href = ref.getAttribute('data-footnote-href') || ref.getAttribute('href');
try { href = new URL(href).hash; } catch {}
const id = href.replace(/^#\/?/, "");
const note = window.document.getElementById(id);
return note.innerHTML;
});
}
let selectedAnnoteEl;
const selectorForAnnotation = ( cell, annotation) => {
let cellAttr = 'data-code-cell="' + cell + '"';
let lineAttr = 'data-code-annotation="' + annotation + '"';
const selector = 'span[' + cellAttr + '][' + lineAttr + ']';
return selector;
}
const selectCodeLines = (annoteEl) => {
const doc = window.document;
const targetCell = annoteEl.getAttribute("data-target-cell");
const targetAnnotation = annoteEl.getAttribute("data-target-annotation");
const annoteSpan = window.document.querySelector(selectorForAnnotation(targetCell, targetAnnotation));
const lines = annoteSpan.getAttribute("data-code-lines").split(",");
const lineIds = lines.map((line) => {
return targetCell + "-" + line;
})
let top = null;
let height = null;
let parent = null;
if (lineIds.length > 0) {
//compute the position of the single el (top and bottom and make a div)
const el = window.document.getElementById(lineIds[0]);
top = el.offsetTop;
height = el.offsetHeight;
parent = el.parentElement.parentElement;
if (lineIds.length > 1) {
const lastEl = window.document.getElementById(lineIds[lineIds.length - 1]);
const bottom = lastEl.offsetTop + lastEl.offsetHeight;
height = bottom - top;
}
if (top !== null && height !== null && parent !== null) {
// cook up a div (if necessary) and position it
let div = window.document.getElementById("code-annotation-line-highlight");
if (div === null) {
div = window.document.createElement("div");
div.setAttribute("id", "code-annotation-line-highlight");
div.style.position = 'absolute';
parent.appendChild(div);
}
div.style.top = top - 2 + "px";
div.style.height = height + 4 + "px";
let gutterDiv = window.document.getElementById("code-annotation-line-highlight-gutter");
if (gutterDiv === null) {
gutterDiv = window.document.createElement("div");
gutterDiv.setAttribute("id", "code-annotation-line-highlight-gutter");
gutterDiv.style.position = 'absolute';
const codeCell = window.document.getElementById(targetCell);
const gutter = codeCell.querySelector('.code-annotation-gutter');
gutter.appendChild(gutterDiv);
}
gutterDiv.style.top = top - 2 + "px";
gutterDiv.style.height = height + 4 + "px";
}
selectedAnnoteEl = annoteEl;
}
};
const unselectCodeLines = () => {
const elementsIds = ["code-annotation-line-highlight", "code-annotation-line-highlight-gutter"];
elementsIds.forEach((elId) => {
const div = window.document.getElementById(elId);
if (div) {
div.remove();
}
});
selectedAnnoteEl = undefined;
};
// Attach click handler to the DT
const annoteDls = window.document.querySelectorAll('dt[data-target-cell]');
for (const annoteDlNode of annoteDls) {
annoteDlNode.addEventListener('click', (event) => {
const clickedEl = event.target;
if (clickedEl !== selectedAnnoteEl) {
unselectCodeLines();
const activeEl = window.document.querySelector('dt[data-target-cell].code-annotation-active');
if (activeEl) {
activeEl.classList.remove('code-annotation-active');
}
selectCodeLines(clickedEl);
clickedEl.classList.add('code-annotation-active');
} else {
// Unselect the line
unselectCodeLines();
clickedEl.classList.remove('code-annotation-active');
}
});
}
const findCites = (el) => {
const parentEl = el.parentElement;
if (parentEl) {
const cites = parentEl.dataset.cites;
if (cites) {
return {
el,
cites: cites.split(' ')
};
} else {
return findCites(el.parentElement)
}
} else {
return undefined;
}
};
var bibliorefs = window.document.querySelectorAll('a[role="doc-biblioref"]');
for (var i=0; i<bibliorefs.length; i++) {
const ref = bibliorefs[i];
const citeInfo = findCites(ref);
if (citeInfo) {
tippyHover(citeInfo.el, function() {
var popup = window.document.createElement('div');
citeInfo.cites.forEach(function(cite) {
var citeDiv = window.document.createElement('div');
citeDiv.classList.add('hanging-indent');
citeDiv.classList.add('csl-entry');
var biblioDiv = window.document.getElementById('ref-' + cite);
if (biblioDiv) {
citeDiv.innerHTML = biblioDiv.innerHTML;
}
popup.appendChild(citeDiv);
});
return popup.innerHTML;
});
}
}
});
</script> </div> <!-- /content -->
<footer class="footer">
<div class="nav-footer">
<div class="nav-footer-left"><span class="r2rsymbols-sym sym-33" style="font-size:20px!important;">©</span>2024 <a href="https://analytics.hathitrust.org/">HTRC</a></div>
<div class="nav-footer-center">
</div>
<div class="nav-footer-right">This Handbook was developed by <a href="https://manika-lamba.github.io/">Manika Lamba</a> in <a href="https://quarto.org/">Quarto</a>.</div>
</div>
</footer>
</body></html>