-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathencode_before_keepmerging_2.txt
7826 lines (7826 loc) · 709 KB
/
encode_before_keepmerging_2.txt
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
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
('writings', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('fig.', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('yellow', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('four', '0000000000000000000000000000000001')
('woods', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('hanging', '000000000000000000000000000000000000000000000000000001')
('marching', '0000000000000001')
('looking', '0000000000000000000000000000000000001')
('eligible', '0000000000001')
('electricity', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('lord', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('protestants', '0000000000000000000000000000000000000000000000000000000000000000000000001')
('hormone', '000000000000000000000000000000000001')
('co-operation', '01')
('regional', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('fur', '00000000000000000000001')
('bringing', '0000000000000000000000000000000000000000000000000000000000000000000000001')
('prize', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('wooden', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('wednesday', '00000000000000001')
('succession', '0000000000000000000000001')
('commented', '000000000000000001')
('charter', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('tired', '000000000000000001')
('miller', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('budget', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('tires', '00000000000000000000000000000000000000001')
('elegant', '00000000000000000000000000000000000000000001')
('second', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('available', '00000000000000000000000000000000000000000000000000000001')
('errors', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('thunder', '000000000000000000000000000000000000000001')
('cooking', '00000000000000000000000000000000000000000000000000000000000000000000001')
('contributed', '000000000000000000000001')
('fingers', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('increasing', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('specialist', '000000000000000000000000000000000000000000000000000000000000000001')
('hero', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('reporter', '00000000000000000000000000000000000000000000000001')
('leaning', '000000000000001')
('here', '0000000000000000000000000000010')
('atoms', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('reported', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('china', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('hers', '0000000000000000001')
('substance', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('elaborate', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('climbed', '000000000000000000000000000000000000000000000001')
("foundation's", '0000000001')
('reports', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('controversy', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
("i'd", '000000001')
('military', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
("i'm", '000000000001')
('criticism', '000000000000000000000000000000001')
('golden', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('divide', '0000000000000001')
('classification', '0000000000000000000000000000000000000000000000000000000001')
('owed', '00001')
('explained', '0000000000000000000000000000000000000000000000001')
('replace', '000000000000000000000000001')
('brought', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('stern', '0000000000000000000000000000000000000000000000000000000000000000000000001')
('unit', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('opponents', '00000000000001')
('painters', '0000000000000000000000000000000000000000000000000000001')
('ominous', '000000000000000000000000000001')
('spoke', '0000000000001')
('symphony', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('music', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('therefore', '000000000000000000001')
('strike', '0000000000000000000000000001')
('until', '0001')
('females', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('holy', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('relax', '0000000000000000000000001')
('successful', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('brings', '000000000000000000000000000000000000000001')
('hurt', '00000000000000000000000001')
('glass', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('hole', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('hold', '0000000000000000000000000000000000000000000000000000001')
('circumstances', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('locked', '00000000000000000000000000000000000000001')
('pursue', '0000000000000000000001')
('blade', '000000000000001')
('plunged', '0000000000000001')
('temperatures', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('leaped', '00000000000000000000000000001')
('revenues', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('example', '0000000000000000000')
('household', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('artillery', '1')
('organized', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('currency', '0000000000000001')
('caution', '0000000000000000000000000000000000000000000000000000000000000000001')
('want', '0000000000001')
('absolute', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('preferably', '01')
('travel', '0000000000000000000000000000000000000000000000000000000000000000000001')
('drying', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('feature', '000000000000000000000000000000000000000000001')
('machine', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('how', '')
('hot', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('significance', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('winslow', '0001')
('abstraction', '00000000000000001')
('beauty', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('wrong', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('types', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('effective', '000000000000000000000000000000000000000000000000000000000000000000000000000001')
('youths', '000000000000000001')
('headquarters', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('fictional', '00001')
('cigarettes', '001')
('keeps', '00000000000000000000000000001')
('democratic', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('wing', '000000000000000000000000000000000000000000000000000001')
('wind', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('wine', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('welcomed', '0000000000000000000001')
('dreamed', '00000000000000000001')
('confederate', '1')
('vary', '00000000000000000000000000000000000000001')
('bubbles', '000000000000000000000000000000000000000000000000000000000000000001')
('fit', '000000000000000000000000000000000001')
('screaming', '000000000000000000000000000000000000000001')
('fix', '00000000001')
('stevens', '000000000000000000000000001')
('survivors', '00000000000000000000000000000000000000000000000000000000000000001')
('hidden', '000000000000001')
('easier', '0000000000000000000000000000000000000001')
('effects', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('schools', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('sixteen', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('eisenhower', '00000000000000000000000000000000000000000000000000000001')
('structural', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('represents', '000001')
('debut', '00000001')
('barton', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('crops', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('arrow', '000001')
('burial', '01')
('preceded', '0000000000000000000000000000000000000001')
('financial', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('snakes', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('series', '0000000000000000000000000000000000000000000000000000000000000000001')
('displacement', '0000000000000000000000000000000000000000000000000000000000000000001')
("we'd", '01')
('substantially', '00000000000000000000000000000001')
('laboratory', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('truman', '000000000000001')
('ring', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('whip', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('mason', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('encourage', '0000000000000000000000000000000000001')
('engineer', '00000000000000000000000000000000000000000000000000000000000000000000000000001')
('foundation', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('assured', '00000000000000000000000000000000001')
('threatened', '0000000000000000000000000000000000000000000000000000000000001')
('surveys', '0000000000000000000000001')
('sheet', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('estimate', '00000000000000000000000000000001')
('chlorine', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('enormous', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('ate', '000001')
('musicians', '000000000000000001')
("today's", '0000000000001')
('kingdom', '00000000000000000000000000000000000000000000000000000000000000000001')
('r.', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('speeds', '00001')
('carryover', '001')
('channels', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('wash', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('spinning', '00001')
('clarity', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('service', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('similarly', '00001')
('engagement', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('cooling', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('needed', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('master', '00000000000000000000000000000000000000000000000000000000000000000000000001')
('listed', '000000000000000000000000000000000000000000000000000000000000000000000000000001')
('legs', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('bitter', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('ranging', '000000000000000000000000000000001')
('listen', '00000000000000000000000000001')
('geneva', '000000000001')
('wisdom', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('crawl', '1')
('rabbi', '000000000000000001')
('showed', '0000000000000000000000000000000000000000000000000001')
('tree', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('nations', '0001')
('project', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('idle', '0000000001')
('exclaimed', '00001')
('feeling', '00000000000000000000000000000000000000000000001')
('acquisition', '000000000000000000000000000000000000000001')
('willingness', '001')
('boston', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('spectrum', '0000000000000000000000000001')
('dozen', '1')
('affairs', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('wholesome', '0000000000000001')
('hymen', '000000000000000000000000000000000001')
('person', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('responsible', '00000000000000000000000000000000000000000000001')
('eagerly', '00000000001')
('recommended', '0000000000000000000000000000000000000000000000000000000000000000000000000000001')
('causing', '00000000000000000000000000000000000000000001')
('absorbed', '000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('amusing', '000000000000000000000000000000000000000001')
('doors', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('kremlin', '0001')
('shipments', '0000000000000000000000000000000000000000000000000000000000000000000000001')
('shall', '01')
('object', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('wells', '0000000000000001')
('mouth', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('letter', '000000000000000000000000000000000000000000000000001')
('organization', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('morality', '0000000000000000000000000000000000000000000000000000000000000001')
('episode', '0000000001')
('cops', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('grove', '00000000000000000000000000000000000000000000000000000001')
('professor', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('camp', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('nineteenth', '0000000000000000001')
('scream', '0000000001')
('came', '00000000000000000000000000000000000000000000')
('saying', '00000000000000000000000000000000001')
('bomb', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('insects', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('meetings', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('undue', '1')
('gauge', '00001')
('participate', '000000000000000001')
('tempted', '000001')
('lessons', '0000000000001')
('orleans', '000000000000000000000000000000000000000000000000000001')
('touches', '000000000000000000000000000000000000000000000000000001')
('busy', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('quaint', '001')
('appreciated', '001')
('rico', '0000000000000000000001')
('theme', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('touched', '00000000000000000000000000000000000000000000000000000000001')
('rich', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('rice', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('plate', '000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('cubic', '001')
('plato', '000000000000000000000000000000000000000000000000000000000000000000000000000001')
('foremost', '0001')
('pocket', '000000000000000000000000000000000000000000000000000000000000000000000000001')
('altogether', '0000000000000000000000001')
('tips', '00000000000000000000000000000000000000001')
('societies', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('autistic', '00000000000000000000000000000000000001')
('patch', '00000000000001')
('greene', '0000000000000000000000000000001')
('release', '0000000000000000000000000000000000000000000000000000001')
('respond', '00000000000000001')
('blew', '00001')
('disaster', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('fair', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('sensitivity', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('unexpectedly', '0001')
('result', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('fail', '00000001')
('best', '0000000000000000000000001')
('ambitions', '00000000000000000000000000000000000000000000000001')
('lots', '1')
('pressures', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('score', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('giffen', '0000000000000000000000000000000000000000000001')
('occupational', '1')
('preserve', '00000000000000000000000000001')
('wage', '0000000000000000000000000000000001')
('never', '0000')
('extend', '0000000000000000000000000000000000000001')
('nature', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('rolled', '0000000000000000000000000000000000000000000000001')
('smelled', '0000000000000000000000001')
('sera', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('extent', '0000000000000000000000000000000000000000000001')
('carbon', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('herd', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('pity', '00000001')
('accident', '0000000000000000000000000001')
('country', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('conclusions', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('heating', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('demanded', '000000000000000000000000000000000000000000000000000000001')
('planned', '000000000000000000000000000000000000000000000000000000001')
('logic', '0000000000000000000000000000000000000000000000000000000000000000000000000000001')
('argue', '00000000000000001')
('adapted', '00001')
('asked', '0000000000000000000000000000000000000000000000000000001')
('alternate', '1')
('cult', '1')
('canyon', '0000000000001')
('blonde', '00000000000000000000000000000000000000000000000000000000001')
('investors', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('source', '000000000000000000000000000000000000000000000000000000000001')
('union', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('much', '000')
('stadium', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('privilege', '00000000000000000000000000000000000000000000000001')
('pro', '00000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('dots', '0000001')
('life', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000')
('spit', '1')
('eastern', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('worker', '0000000000000000000000000000000000000000000000000000000000000000000001')
('wish', '0000000001')
('places', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('dave', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('kids', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('child', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('worked', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('chill', '0000000000000000000000001')
('commerce', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
("hardy's", '0000001')
('presidency', '1')
('ada', '0000000000000000000001')
('castro', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('employ', '0000001')
('calcium', '00001')
('remembering', '00000000000000000000000000000000000000001')
('played', '000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('conditioned', '00000000000000000000000000000000000000000000000000000001')
('player', '0000000000000000000000000000000000000001')
('eighteen', '0000000001')
('waddell', '000000000000000000000000000000001')
('conditioner', '00000000000000000000001')
('trusted', '00000000000001')
('memorial', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('things', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011')
('cumulative', '0000000001')
('rebellion', '00000000000000000000000000000000001')
('split', '000000000000000000000001')
('babies', '0000000000000000001')
('european', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('fairly', '000000000000001')
('qualifications', '000000000000000000000000000000000000000000000000000000000000000000000001')
('ownership', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('supper', '00000000000001')
('wives', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('vice-president', '00000000000000000000000000000000001')
('lalaurie', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('academic', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('corporate', '00000000000000000000000000000000000000000000000000000000000000000000000000000001')
("jess's", '001')
('opinions', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('capitol', '000000000000000000000000000000000000000000000000000000000000000000000000000001')
("poet's", '00000000000000000000000000000000000001')
('birmingham', '0000000000000000001')
('previous', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('enters', '0000000001')
('hal', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('ham', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('sciences', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('ease', '000000000000000000000000000000001')
('had', '00')
('emphasis', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('hay', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('innocent', '00000000000000000000000000000000000000000000000001')
('prison', '000000000000000000000000000000000000000000000000000000000000000000000001')
('has', '0000')
('hat', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('municipal', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('casually', '0000000001')
('survival', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('disagreement', '01')
('possible', '000000000000000000000000000000000000000')
('possibly', '0000000001')
('birth', '000000000000000000000000000000000000000000000000000000001')
('imposed', '0000000000000000000000000000000000000000000000000000000000000001')
('shadow', '000000000000000000000000000000000000000000000000000000000000000000001')
('unique', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('occurring', '0000000000000000000000000000000000000000000001')
('desire', '00000000000000000000000000000000000000000001')
('psychological', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('bobby', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('alice', '000000000000000000000000000000000000001')
('remind', '0001')
('pavement', '000000001')
('steps', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('attorney', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('right', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000')
('old', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000')
('creek', '00000000000000000000000000000000000000000000001')
('crowd', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('people', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010')
('crown', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('commonplace', '000000000000000000000000000000001')
('insistence', '00000000000000001')
('enemies', '000000000000000000000000000000000000000000000000000000001')
('sociology', '00000000000000000000000000000000000000000000000000000000000001')
('for', '00')
('bottom', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('fox', '000000000000000000001')
('p.m.', '000000000001')
('contributing', '0000000000001')
('continue', '000000000000000000000000000000000000001')
('theological', '0000000000000000000000000000000000000001')
('dental', '0000000000000000001')
('substituted', '0000000000000000000000000000001')
('shifting', '000000001')
('defensive', '000000000000000000000000000000000000000000000000000000000000001')
('losing', '0000000000000000000000000000000000000000000000000000000000001')
('memorable', '0000001')
('manufacturing', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('shaken', '000000000001')
('dollars', '0000000000000000000000001')
('citizens', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('o', '000001')
('despair', '00000000000000000000000000000001')
('lacked', '00000000000000000000001')
('slightly', '000000000000000000000000001')
('nixon', '00000000000000000000000000000000000000000001')
('raised', '00000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('statements', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('facility', '0000001')
('maxwell', '00000001')
('marshall', '000000000000000001')
('honeymoon', '0000001')
('son', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('respectable', '000000000000000000000000000000000000000000000000000000000001')
('beings', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('magazines', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('raises', '00001')
('sox', '00000000000000000001')
('reducing', '000000000000000000000000000000000000000000000000000000000000000000001')
('fabric', '000000000000000000000000000000000001')
('support', '0000000000000000000000000000000000000000000001')
('constantly', '000000000001')
('humorous', '0000000000000000000000000000000000000000001')
('joseph', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('authorized', '000000000000000000000000000000000000000000000000000000000000000000001')
('greatness', '000000001')
('resulted', '00000000000000000000000000000000000000000000000000000000000000000000001')
('overhead', '0000000000000000000000000000000000000000000000000000000000000000000000000001')
('happy', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('offer', '0000000000000000000000000000001')
('forming', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('talents', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('understandable', '00001')
('nov.', '000000001')
('inside', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('devices', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('jan.', '00000000001')
('smashed', '00000001')
('mighty', '000000001')
('panels', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('passenger', '000000000000000000000000000000000000000000001')
('juvenile', '000000000000000000000000000000000000000001')
('later', '001')
('liberal', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('implications', '0000000000000000000000000000000000000000000000000000000000000001')
('tournament', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('proven', '0000001')
('proves', '00000000000000000001')
('exist', '00000000000000000000000000000001')
('accounting', '00000001')
('dealer', '000000000000000000000000000000000000000000000000000000000000001')
('negotiations', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('protested', '0001')
('eventual', '000000000001')
('floor', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('actor', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('flood', '000000000000000000000000000001')
('role', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('ambitious', '00000000000000000000000000000000000000000000000000000001')
('smell', '0000000000000000000000000001')
('roll', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('intend', '1')
('models', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('intent', '0000000000000000000000000000000001')
('variable', '00000000000000000000000000000000000000000000000000000000000000000000000000001')
('reorganization', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('time', '00000000000')
('push', '000000000000000000000000000000000000000000001')
('detective', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('corps', '000000000000000001')
('whoever', '1')
('theaters', '000000001')
('chair', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('midst', '0000000000000000000000000000000000000000000000000000001')
('ballet', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('veterans', '00000000000000000000000000000000000000000000000001')
('cheap', '00000000000000000000000000000000000000000000000000000000000000000001')
('choice', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('corp.', '00001')
('exact', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('minute', '000000000000000000000001')
('henrietta', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('tear', '001')
('leave', '0000000000000000000000000000000000000000000000000000000000000000000000001')
('solved', '000000000000000000000000000000000000000000000000000000000000000001')
('settle', '000000000000000000000001')
('stockade', '00000000000000000000000001')
('team', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('unaware', '01')
('prevent', '00000000000000000000000000000000000000000000000001')
('spiritual', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('occurrence', '000000000000000000000000000000000000000000000000000000000000000000000000000001')
('findings', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('attic', '000000000000000000000000000000000000000000000000000000001')
('trails', '000000000000000000000000000000000000000000000000000000000000001')
('sign', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('frankfurter', '000000000000000000000000000000000000000000000000000000000000001')
('thyroglobulin', '0000000000000000000000000000000000000000000000000000000000000001')
('celebrated', '000000000000001')
('realizing', '1')
('current', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('battens', '000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('falling', '00000000000000000000000000000000000000000000000000000000000001')
('boost', '0000000000000001')
('jury', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('funeral', '000000000000000000000000000000001')
('concepts', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('understanding', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('yards', '0000000000000000000001')
('address', '00000000000000000000000000000000000000000000000000000000000000000000000000001')
('alone', '000000000000000000000000000000000000000000000000000000001')
('along', '01')
('arch', '000000000000000000000000000001')
('benson', '00000000000000000000000000000000000000000001')
('passengers', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('brilliant', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('studied', '000000000000000000000000000000000000000000000000000000000000000000000000000001')
('wherever', '01')
('commonly', '00000001')
('accomplished', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('studies', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('tasks', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('love', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('prefer', '00001')
('logical', '0000000000000000000000000000000000000000000001')
('marvelous', '000001')
('logically', '01')
('sky', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('working', '0000000000000000000000000000000000000000000000000001')
('positive', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('angry', '00000000000000000000000000000000001')
('tightly', '00000000000000001')
('cherished', '0000000000000000000001')
('skywave', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('opposed', '00000000000000000000000000000000000000000000000000000000000000000000000001')
('wondering', '0001')
('films', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('scope', '0000000000000000000000000000000000000000000000000000000001')
('theoretical', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('loving', '000000000000001')
('afford', '000000000000000000000001')
('apparent', '000000000000000000000000000000001')
('validity', '0000000000000000000000000000000001')
('visual', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('everywhere', '0000000000000001')
('virtue', '00000000000000000000000001')
('riders', '0000000001')
('behalf', '000001')
('honey', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('valued', '0000000000000000001')
('deserved', '000001')
('originally', '000001')
('believes', '0000000000001')
('printing', '0000000000000000000000000000000000000000000000000000000001')
('values', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('stature', '000000000000000000000000000000000000000000000000000000000000001')
('believed', '000000000000000000000000000000000000000000000001')
('detached', '000000001')
('admired', '000000000000001')
('n.y.', '0000000000001')
('allowed', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('evidently', '000001')
('monitoring', '000000001')
('winter', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('divided', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('contrasts', '00001')
('s.', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('optimal', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('spot', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('louder', '001')
('applications', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('explored', '000001')
('date', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('such', '')
('data', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('pulley', '0000000000001')
('stress', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('natural', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('conscious', '00000000001')
('ordinarily', '1')
('so', '00')
('swollen', '0000000000000000000000000000001')
('pulled', '0000000000000000000000000000000000000000000000000000000000000000000000000001')
('years', '00000000000000000000000000000')
('professors', '000000000000000000000000000000000001')
('course', '0000000000000000000000000000000000000000000')
('experiments', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('tendency', '0000000000000000000000000000000000000001')
('tore', '0000000001')
('solitary', '00000000000000000000000001')
('derive', '000000000001')
('torn', '000000000000000000000000000000000001')
('troubles', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('sixties', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('attraction', '00000000000000000000000000001')
('suspicion', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('constitutes', '1')
('suspension', '0000000001')
('troubled', '0000000000000000000000000000001')
('decades', '0000000000001')
('petition', '00000000000001')
('instantly', '001')
('thereby', '00000000000001')
('civilian', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('matches', '00001')
('mahayana', '0000001')
('nation', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('records', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('compelled', '000000000000000000001')
('arriving', '0000001')
('maintaining', '00000000000000000000000000000000000000000000000000000000000001')
('matched', '000000000000000000000000000000000000000000001')
('shouted', '0000000000000000000000000000000000000000000001')
('establishing', '01')
('quarter', '0000000000000000000000000000000000000000001')
('repaired', '00000001')
('square', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('bursting', '0000000000000001')
('beloved', '0000000000000000000000000000000000000000000000001')
('sponsor', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('entering', '0000000000000000000000000000000000000000000000000000001')
('canvas', '000000000000000000000000000000000000000000000000000000000001')
('assessors', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('seriously', '0000000000000000000000000000000000000000000000000000000000001')
('investigation', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('cobb', '000000000000000000000000000000000000000000000000000001')
('suggesting', '00000000000000000000001')
('formula', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('squares', '0000000001')
('million', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('seventh', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('governing', '000000000000000000000000000000000000000000000001')
('quite', '00000000000000000000001')
('recordings', '00000000001')
('complicated', '00000000000000000000000000000000000000000000000000000000000000001')
('besides', '0000001')
('grandma', '00000000000000001')
('poems', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('remainder', '00000000000000000000000000000000000000000000000000000001')
('training', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('disguised', '01')
('modest', '000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('massive', '0000000000000000000000000000000000000000001')
('neglect', '000001')
('emotion', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('intuition', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('saving', '0000000000000000000000000000000000000000000000001')
('reveals', '000000000000000000000000000001')
('spoken', '000000000000000000000000000000000000000001')
('one', '0000')
('specifically', '00000000000000000000000000000000000000000000000000001')
('spanish', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('vote', '0000000000000000000000000000000000000000000000000000000000000000000000000001')
('open', '000000000000000000000000000000000000000000000001')
('city', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('boulevard', '01')
('structured', '000000000000000000001')
('indicate', '000000000000000000000000000001')
('draft', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('realization', '000000000000000000001')
('structures', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('williams', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('ridiculous', '000000000001')
('specialists', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('representing', '000000000000000000000000000000000000000000000000000000000000000001')
('bored', '0000000000000000000000001')
('depressed', '0001')
('rival', '0000000000001')
('crossroads', '01')
('future', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('russia', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('prospect', '000000000000000000000001')
('illness', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('san', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('sam', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('turned', '000000000000000000000000000000000000000000000000000000000000000000001')
('locations', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('sad', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('say', '000000000000000000000000000000000000000')
('buried', '00000000000000000000000000000000000001')
('allen', '000000000000000000000000000000000000000000000000000000000000000000000000000001')
('saw', '00000000000000000001')
('sat', '0000000000000000000000000000000000000000000000000000000000000001')
('fashionable', '00000000000001')
('aside', '001')
('instructed', '0000000000000000000000000000000001')
('note', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('jefferson', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('take', '0000000000000000000000000000000000000000000000000000000001')
('destroy', '00000000000000000000000000000000000001')
('coincide', '00001')
('altered', '00000000000000000000000000000000000000000000000000000000000000000000000000001')
('opposite', '000000000000000000001')
('buffer', '000000000000000000000000000000000001')
('knew', '000000000000000000000')
('printed', '0000000000000000000000000000000000000000000000000000000000000000001')
('remarks', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('knee', '0000000000000000000000000000001')
('inserted', '000000000000001')
('pages', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('lawn', '0000001')
('average', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('phil', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('drive', '0000000000000000000000000000000001')
('ways', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('link', '00000000001')
('mass.', '01')
('salt', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('mercenaries', '1')
('laws', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('walking', '0000000000000000000000000000000000000000000000000000000000000000000000000001')
('surplus', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('merit', '000000000000000000000000000000000000000000000000000000000000001')
('bright', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('aggressive', '00000000000000000000000000000000000000000000000000000000000001')
('imagined', '000000000000000000000000001')
('slow', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('tears', '000000000000000000000000000001')
('going', '000000000000000000000000000000000000000000000000000000')
('equipped', '00000000000000000000000000000000000001')
('congressional', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('carolina', '000000000000000000000000000000000000000001')
('assistant', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('freezing', '00000000000000000000000000000001')
('prime', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('artist', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('middle-class', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('worried', '001')
('priest', '00000000000000000000000000000000001')
('roger', '000000000000000000000000000000000000000000000000000001')
('bombs', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('worries', '00001')
('where', '0000')
('vision', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('guam', '1')
('impressions', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('aroused', '0000000000000000000000000000000000000000000000000000000000000000001')
('compounds', '1')
('jumped', '00000000000000000000000000000000000000000001')
('representatives', '00000000000000000000000000000000000000001')
('bureau', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('jobs', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('vertical', '000000000000000000000000000000000000000000001')
('persians', '0000000000000000000000000000000000001')
('screen', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('dome', '000000000000000000000000000000000000000000000001')
('clayton', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('concentrate', '1')
('spare', '0000000000000001')
('spark', '00000001')
('concentrated', '00000000000000000000000000000000000000000000000000000000000001')
('congregations', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('many', '000')
('deduction', '000000000000001')
('s', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('loudly', '00000000000000000000001')
('expended', '000000000000001')
('expression', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
("can't", '001')
('allowance', '0001')
('yearly', '00000000000000000001')
('considers', '000000000000001')
('boat', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('better', '00000000000000000000000000000000000000000')
('accelerometer', '00000000000000000000000000001')
('stretch', '0000000000000000000000000000000000000000000001')
('west', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('locally', '000000000001')
('vacation', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('breath', '0000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('combined', '00000000000000000000000000000000000000000000000000000000000000000000001')
('motives', '0000000000000000000000000000000000000000001')
('differently', '00000000000000000001')
('wants', '000000000000000000000000000001')
('enable', '000001')
('thousand', '01')
('formed', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('readings', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('observe', '00000000000000000000000000000001')
('former', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('consultant', '00000000000001')
('single', '00000000000000000000000000000000000000000000000000000000000000000000001')
('policies', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('newspaper', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('situation', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('endured', '01')
('engaged', '00000000000000000000000000000000000000000000000000000000000000000000000000000001')
('technology', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('fame', '001')
('expenditures', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('missiles', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('parliament', '0000000000000000000000000000000000000000000000000000000001')
('breakdown', '00000000001')
('barbed', '01')
('wires', '0000000000000000000000000000000000000001')
('allocation', '0000000000000000000000000000000000000000001')
('edges', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('wired', '01')
('vacant', '00001')
('costs', '0000000001')
('trains', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('dimension', '00000000001')
('scholarship', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('summer', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('manifold', '00000000000000000000000001')
('being', '00000000000000000000000')
('rest', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('weekly', '0000000000001')
('generator', '00000000000000000000000000000000001')
('palazzo', '00000001')
('silver', '000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('instrument', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('skies', '000000000000001')
('aspects', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('around', '001')
('sums', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('dark', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('traffic', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('vacuum', '000000000000000000000000000000000000000000000000000000000000001')
('world', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000')
('resentment', '00000000000000001')
('vague', '0000000000000000000000000000000000000000000000000000000000000000000000000000001')
('dare', '001')
('stranger', '0000000000000000000000000000000000000000000000000000000000000000000000000001')
('tsunami', '0000000000000000000000000000000000000000000000000000001')
('superiority', '0000000000000000000000000000000000000000000000001')
('clay', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('beverly', '000001')
('auditorium', '00000000000000000000000000000000000000000000000001')
('satisfactory', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('superintendent', '00000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('learning', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('moreover', '000000000001')
('racial', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('divine', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('thinks', '0000000000000001')
('composers', '00000000000000000000000000000000000000000000001')
('dimensions', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('cavity', '0000000001')
('memories', '000000000000000000001')
('tube', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('refer', '000001')
('scientific', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('power', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('intimate', '00000000000000000000000000001')
('leadership', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('ratios', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('standpoint', '00000000000000000001')
('stone', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('ace', '01')
('package', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('industry', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('favorite', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('slender', '0000000000000000000000000000000000000000000000000000000001')
('meal', '00000000000000001')
('tumor', '000000000000000000000000000000000000000000000000000000000000000000000001')
('neighbor', '000000000000001')
('act', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('johnston', '000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('luck', '00000001')
('berger', '000000000000000001')
('burning', '00000000000000000000000000000000000000000000000000000000000000000000000001')
('image', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('essex', '00000000000000000001')
('lively', '000000000000000000000000000000000000000000000000000000000001')
('parties', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('cared', '000000000001')
('her', '00000')
('philadelphia', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('sides', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('sealed', '000000000000000001')
('hen', '0000000000000000000000000000000000000000000000000001')
('bubble', '00001')
('complete', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
("child's", '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('irenaeus', '00000000000000000000000000000000001')
('survived', '000000000000000000000000000000000001')
('with', '000000')
('buying', '0000000000000000000000000000000000000000000000000000000000000001')
('handsome', '0000000000000000000001')
("they're", '000001')
('rush', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('october', '000000000000000001')
('rage', '00000000000000000000000000001')
('dirty', '000000000000000000000000000000000000000000000000000000000000000000000000001')
('russ', '000000000000000000000000000000000000000000000000000000000000000000000000000001')
('politically', '01')
('agree', '00000000000000000000001')
('misery', '00000000000000000000000000000000000000000000000000000000001')
('detailed', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('gone', '000000000000001')
('ad', '00000000000000000001')
('johnny', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('af', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000')
('exhausted', '00000001')
('certain', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('aj', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('am', '000')
('al', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('an', '')
('ap', '1')
('as', '')
('at', '000')
('formulation', '0000000000000000000000000000000000000000001')
('watched', '00000000000000000000000000000000000000000000000001')
('cream', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('vocational', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('graduate', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('tight', '000000000000000000000000000000000000000000000000000000000000001')
('summit', '000000000000000001')
('congress', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('miriam', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('a.', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('waving', '0000000000001')
('planners', '0000000000000000000000000000000001')
('brumidi', '0001')
("city's", '00000000000000000000000000000000001')
('mass', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('adam', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('original', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('consider', '0000000000000000000000000000000000000000000000000000000000000000001')
('caused', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('welfare', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('rourke', '0000000000000000000000000000000000000000000000000000000000000000001')
('reasoning', '0000000000000000000000000000000000000000000000000000000000000000001')
('causes', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('particles', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('hunting', '00000000000000000000000000000000000000000000000000000000000000000000000001')
('tv', '00000000000000000000000000000000000000000000000000000000000000000000000000000001')
('to', '000000000000000000')
('tail', '00000000000000000000000000000000000000000000000000001')
('chewing', '00000000001')
('dressing', '00000000000000000000000000000000000000000001')
('smile', '00000000000000000000000000000000000000000000000000000000000000000001')
('midwest', '0000001')
('paying', '0000000001')
('calif.', '1')
('appointment', '00000000000000000000000000000000000000000000000000000000000000000000001')
('returned', '0000000000000000000000000000000000000000000000000000000000001')
('puzzled', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('moreland', '00000000000000000000000000000000000000000000000001')
('hughes', '000000000000000000000000000000000000000000000001')
('blockade', '00000000000000000000000000000000000000000000000000000000000000001')
('condition', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('highways', '0000000000000000000000000000000000000000000000000000001')
('linguists', '00000000001')
('accompanying', '001')
('laying', '00000000000001')
('joined', '0000000000000000000000000000000000000000000000000000000000000000001')
('t.', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('sang', '000000000000000001')
('sand', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('adjust', '000000000000001')
('harry', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('small', '00000000000000000000000000000000000000000000000000000000000000000000000000001')
('sank', '000000000000000000000001')
('maggie', '000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('paso', '00000001')
('past', '00000000000000000000000001')
('displays', '000001')
('pass', '00000000000000000000000000000000000001')
('situated', '0000000000000000000000000000000000000000001')
('handicapped', '00000000000000001')
('richard', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('clock', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('section', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('scientists', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('nurse', '000000000000000000000000000000000000000001')
('method', '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('contrast', '00000000000000000000000001')
('revealing', '0000000001')
('full', '000000000000000001')
('desegregation', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('installations', '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('hours', '0000000000000000000000001')
('november', '00000000000000000000000001')
('legend', '0000000000000000000000000000000000000000000000000000000000000000000001')
('experience', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
('prior', '000000000000000000000000000000000000000001')
('pick', '00000000000000000000000000000000000000001')
('action', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')
("day's", '00000000000000000000000000000001')
('via', '00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001')