RinKana commited on
Commit
624c889
·
verified ·
1 Parent(s): 70ac868

Final model upload - BLEU: 0.2490

Browse files
.gitattributes CHANGED
@@ -34,3 +34,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
  transformer_model.keras filter=lfs diff=lfs merge=lfs -text
 
 
 
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
  transformer_model.keras filter=lfs diff=lfs merge=lfs -text
37
+ decoder_model.keras filter=lfs diff=lfs merge=lfs -text
38
+ encoder_model.keras filter=lfs diff=lfs merge=lfs -text
README.md CHANGED
@@ -7,84 +7,22 @@ tags:
7
  - translation
8
  - transformer
9
  - keras
10
- - japanese
11
- datasets:
12
- - tatoeba
13
- metrics:
14
- - accuracy
15
- - rouge
16
- model-index:
17
- - name: eng-jpn-transformer-nmt-efficient
18
- results:
19
- - task:
20
- type: translation
21
- name: Translation
22
- metrics:
23
- - type: accuracy
24
- value: 0.9093
25
- name: Validation Accuracy
26
- - type: rouge1
27
- value: 0.0000
28
- name: ROUGE-1
29
- - type: rouge2
30
- value: 0.0000
31
- name: ROUGE-2
32
- - type: rougeL
33
- value: 0.0000
34
- name: ROUGE-L
35
  ---
36
 
37
- # English-Japanese Transformer Translation Model
38
 
39
- Transformer model for English → Japanese translation, trained from scratch using Keras.
40
-
41
- ## Model Details
42
-
43
- - **Architecture**: Encoder–Decoder Transformer
44
- - **Dataset**: Tatoeba English–Japanese parallel corpus
45
- - **Vocab Size**: EN=15000, JA=10000
46
- - **Embedding Dim**: 256
47
- - **Attention Heads**: 8
48
- - **Training Epochs**: 25 (with early stopping)
49
 
50
  ## Performance
 
 
51
 
52
- ### Training Metrics
53
- - **Training Accuracy**: 0.9728
54
- - **Validation Accuracy**: 0.9093
55
- - **Best Validation Loss**: 0.5660
56
-
57
- ### ROUGE Scores (Test Set)
58
- - **ROUGE-1**: 0.0000
59
- - **ROUGE-2**: 0.0000
60
- - **ROUGE-L**: 0.0000
61
-
62
- Evaluated on 100 test samples.
63
-
64
- ## Usage Example
65
 
66
  ```python
67
  import keras
68
- from huggingface_hub import hf_hub_download
69
-
70
- # Download model
71
- model_path = hf_hub_download(repo_id="RinKana/eng-jpn-transformer-nmt-efficient", filename="transformer_model.keras")
72
- model = keras.models.load_model(model_path)
73
-
74
- # Use for translation
75
- # (You'll need to load tokenizers and implement decode_sequence function)
76
  ```
77
-
78
- ## Training Configuration
79
-
80
- - **Batch Size**: 64
81
- - **Max Sequence Length**: 40
82
- - **Intermediate Dim**: 2048
83
- - **Dropout Rate**: 0.3
84
- - **Optimizer**: RMSprop
85
- - **Early Stopping**: Enabled (patience=5)
86
- - **Learning Rate Reduction**: Enabled (patience=3, factor=0.5)
87
-
88
- ---
89
-
90
- Model trained by RinKana using the Tatoeba dataset.
 
7
  - translation
8
  - transformer
9
  - keras
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10
  ---
11
 
12
+ # English-Japanese Transformer
13
 
14
+ Model Transformer untuk terjemahan English → Japanese, dilatih dengan Keras 3.
 
 
 
 
 
 
 
 
 
15
 
16
  ## Performance
17
+ - **Validation Accuracy**: 0.9088
18
+ - **Average Character BLEU Score**: 0.2490
19
 
20
+ ## Usage
21
+ Model ini dapat dimuat dan digunakan dengan tokenizers yang disediakan.
 
 
 
 
 
 
 
 
 
 
 
22
 
23
  ```python
24
  import keras
25
+ # Memuat model penuh
26
+ model = keras.models.load_model("model_upload/transformer_model.keras")
27
+ # Lanjutkan dengan proses decode_sequence yang sudah Anda sempurnakan
 
 
 
 
 
28
  ```
 
 
 
 
 
 
 
 
 
 
 
 
 
 
config.json CHANGED
@@ -9,15 +9,8 @@
9
  "num_heads": 8,
10
  "intermediate_dim": 2048,
11
  "max_sequence_length": 40,
12
- "batch_size": 64,
13
- "max_epochs": 50,
14
- "actual_epochs": 25,
15
- "dropout_rate": 0.3,
16
- "final_train_accuracy": 0.9727743268013,
17
- "final_val_accuracy": 0.9092569947242737,
18
- "best_val_loss": 0.5659971833229065,
19
- "rouge1_score": 0.0,
20
- "rouge2_score": 0.0,
21
- "rougeL_score": 0.0,
22
- "num_test_samples_evaluated": 100
23
  }
 
9
  "num_heads": 8,
10
  "intermediate_dim": 2048,
11
  "max_sequence_length": 40,
12
+ "actual_epochs": 24,
13
+ "avg_bleu_score_char": 0.24902996352656956,
14
+ "final_val_accuracy": 0.9088082313537598,
15
+ "best_val_loss": 0.5575645565986633
 
 
 
 
 
 
 
16
  }
decoder_model.keras ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:019d533a4fca0c567c15fc20f1afc3b8411d76d8b4a41f3f35c306b4ef731631
3
+ size 26957342
encoder_model.keras ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:56ba585494bc2b2dc1e7833d20fcaeb3f1d65ffa8fd35493d836d45aab3b3e09
3
+ size 20712852
eng_vocab.json CHANGED
@@ -8,8 +8,6 @@
8
  "$",
9
  "%",
10
  "'",
11
- "(",
12
- ")",
13
  ",",
14
  "-",
15
  ".",
@@ -27,7 +25,6 @@
27
  ":",
28
  ";",
29
  "?",
30
- "@",
31
  "a",
32
  "b",
33
  "c",
@@ -62,6 +59,7 @@
62
  "’",
63
  "“",
64
  "”",
 
65
  "€",
66
  "the",
67
  "you",
@@ -90,3352 +88,3352 @@
90
  "at",
91
  "like",
92
  "she",
93
- "there",
94
  "##s",
95
  "and",
96
- "be",
97
  "with",
98
  "his",
99
- "go",
100
  "not",
 
101
  "ll",
102
- "how",
103
  "mary",
 
104
  "want",
105
  "please",
106
  "time",
107
- "here",
108
- "know",
109
  "up",
 
110
  "has",
111
- "did",
112
  "as",
 
 
113
  "think",
114
  "will",
115
  "ve",
116
- "if",
117
  "all",
118
- "get",
119
  "about",
 
120
  "very",
 
121
  "when",
 
122
  "out",
123
  "by",
124
- "good",
125
  "had",
126
  "from",
127
  "her",
128
- "him",
129
  "no",
130
- "an",
131
  "were",
132
  "going",
133
- "re",
134
  "so",
135
- "would",
136
  "come",
137
- "one",
138
- "let",
139
  "didn",
140
- "take",
141
- "where",
142
- "been",
143
  "why",
 
 
144
  "french",
 
 
145
  "day",
146
- "now",
 
147
  "than",
148
  "home",
149
- "today",
150
  "isn",
151
- "they",
152
- "see",
153
  "got",
 
 
154
  "too",
155
  "who",
 
 
156
  "should",
157
- "but",
158
  "could",
159
- "much",
160
  "some",
161
- "just",
162
- "school",
163
- "really",
164
- "tomorrow",
165
  "##ed",
166
  "##ing",
167
- "more",
168
  "car",
169
- "lot",
170
  "last",
 
 
 
 
171
  "eat",
 
 
172
  "work",
173
- "money",
174
  "three",
175
- "any",
176
- "tell",
177
- "right",
178
- "many",
179
  "never",
 
180
  "off",
181
- "book",
182
- "back",
183
  "room",
184
- "need",
185
  "went",
186
- "people",
 
 
 
187
  "house",
188
- "doesn",
189
  "boston",
190
- "father",
191
  "still",
192
- "two",
193
- "help",
194
  "may",
195
- "buy",
196
- "does",
197
  "our",
198
  "make",
199
- "long",
200
  "said",
201
- "next",
202
  "every",
203
- "better",
204
- "speak",
205
- "before",
206
  "give",
 
 
 
207
  "new",
208
  "yesterday",
209
- "always",
210
- "something",
211
- "anything",
212
  "say",
 
 
 
213
  "old",
214
- "night",
 
215
  "us",
216
- "well",
217
- "##d",
218
  "thought",
219
- "years",
220
  "into",
221
- "made",
 
222
  "again",
223
- "little",
224
- "or",
225
  "way",
 
226
  "down",
227
- "over",
228
  "put",
 
229
  "after",
230
  "left",
231
- "am",
232
- "mother",
233
- "late",
234
  "cold",
235
- "only",
 
 
236
  "morning",
237
- "name",
238
- "train",
239
  "look",
240
- "read",
241
  "soon",
 
 
242
  "call",
243
- "man",
244
- "must",
245
- "leave",
246
- "love",
247
- "stay",
248
  "bought",
249
  "first",
250
- "live",
251
- "open",
252
- "rain",
253
- "##er",
254
- "came",
255
- "doing",
256
  "door",
 
 
 
 
 
 
 
257
  "won",
258
  "##ly",
259
- "away",
260
- "year",
261
  "children",
 
 
 
 
 
 
262
  "week",
263
- "told",
264
  "play",
265
- "looking",
266
- "ever",
267
  "hard",
268
- "wait",
269
- "station",
270
  "these",
 
271
  "other",
272
- "sure",
273
- "ask",
 
274
  "turn",
 
 
 
 
 
 
 
275
  "feel",
276
- "dog",
277
- "use",
278
  "bus",
279
- "bad",
280
  "nothing",
 
281
  "english",
282
  "water",
283
- "used",
284
- "coffee",
285
- "already",
286
- "sorry",
287
- "wanted",
288
  "drink",
289
- "walk",
290
- "lost",
291
- "keep",
292
- "around",
293
- "days",
294
  "because",
295
- "##y",
 
 
 
 
296
  "saw",
 
 
 
 
297
  "couldn",
298
- "talk",
299
- "yet",
300
- "often",
301
  "try",
302
  "australia",
303
- "job",
304
- "bed",
305
- "took",
306
- "teacher",
307
- "life",
308
- "understand",
309
- "books",
310
  "stop",
311
- "both",
312
- "brother",
313
- "able",
314
  "looks",
315
- "true",
316
- "friends",
317
- "gave",
318
  "busy",
319
- "heard",
 
 
 
320
  "japan",
321
- "thank",
322
- "happy",
323
  "alone",
324
- "watch",
325
- "seen",
326
- "asked",
327
  "found",
 
328
  "food",
329
- "once",
330
- "things",
 
 
331
  "hear",
332
- "believe",
333
- "which",
334
- "friend",
335
- "kind",
336
  "afraid",
337
- "while",
 
 
 
 
 
 
 
338
  "without",
339
- "few",
340
- "nice",
341
- "since",
342
- "wasn",
343
- "wonder",
344
  "party",
 
 
 
 
345
  "same",
346
- "their",
347
- "likes",
348
- "ten",
349
- "early",
350
  "everything",
351
- "find",
 
 
 
352
  "parents",
353
- "person",
354
- "hot",
355
- "them",
356
- "tv",
357
- "phone",
358
  "place",
359
  "mind",
 
 
 
360
  "married",
 
361
  "meet",
362
- "best",
363
- "everyone",
 
 
364
  "idea",
 
 
365
  "lunch",
366
- "dinner",
367
- "ok",
368
- "##t",
369
- "beautiful",
370
  "problem",
 
 
 
 
 
 
 
 
 
 
371
  "plan",
372
- "tired",
 
 
 
 
 
373
  "sleep",
 
 
 
 
374
  "almost",
375
- "thing",
376
- "enough",
 
377
  "letter",
378
- "aren",
379
- "big",
380
- "study",
381
- "boy",
382
  "weather",
383
- "wish",
384
- "ago",
385
- "anyone",
386
- "being",
387
- "remember",
388
- "young",
389
- "easy",
390
  "hope",
391
- "yourself",
392
- "answer",
393
- "haven",
394
- "met",
395
- "someone",
396
- "getting",
397
  "those",
398
- "usually",
399
  "write",
400
- "difficult",
401
- "done",
402
- "accident",
403
- "doctor",
404
- "minutes",
405
- "high",
406
- "reading",
407
- "summer",
408
- "waiting",
409
- "even",
410
- "matter",
411
- "playing",
412
- "such",
413
- "month",
414
- "wrong",
415
  "turned",
416
- "bit",
417
- "show",
418
- "care",
419
- "knows",
420
  "five",
 
421
  "question",
422
  "swim",
423
- "caught",
424
- "snow",
425
- "another",
426
- "clock",
427
- "eating",
428
- "park",
429
  "##e",
430
- "hand",
431
- "coming",
432
  "finished",
433
- "great",
434
- "sick",
435
- "small",
436
  "family",
437
- "talking",
438
- "movie",
439
- "own",
440
- "free",
441
- "started",
442
- "happened",
443
- "homework",
444
  "tonight",
445
- "until",
446
- "window",
447
- "child",
448
- "decided",
 
 
 
 
 
 
 
 
 
 
 
 
 
449
  "myself",
450
  "picture",
451
- "seems",
452
- "ate",
453
- "sister",
454
- "arrived",
455
- "cat",
456
- "japanese",
457
- "breakfast",
458
- "run",
459
  "working",
460
- "##r",
461
- "far",
462
- "tennis",
463
- "world",
464
  "light",
 
 
 
465
  "fish",
 
 
 
 
 
 
466
  "looked",
467
- "tea",
468
- "fun",
469
  "tried",
470
- "living",
471
- "everybody",
472
- "hospital",
473
- "##al",
474
- "game",
475
- "interesting",
476
- "business",
477
- "fell",
478
- "might",
479
- "##n",
480
  "broke",
481
  "called",
482
- "learn",
483
- "hands",
484
- "story",
485
- "change",
486
- "eyes",
487
- "smoking",
488
- "students",
489
- "died",
 
 
 
490
  "near",
491
- "outside",
492
- "together",
493
- "angry",
494
- "girl",
495
- "hours",
496
- "longer",
497
  "times",
498
  "wearing",
499
- "each",
 
 
 
500
  "older",
501
- "table",
502
- "class",
503
- "drive",
504
- "hurry",
505
  "shoes",
506
- "30",
507
- "later",
508
- "gone",
509
- "##a",
510
- "lives",
 
 
 
 
 
 
 
 
 
 
 
511
  "most",
512
- "forget",
513
- "large",
514
  "six",
515
- "monday",
516
- "music",
517
- "between",
 
 
 
 
 
518
  "number",
519
- "raining",
 
 
 
 
 
 
 
 
 
520
  "wants",
521
- "catch",
522
- "meeting",
523
- "wife",
524
- "bicycle",
525
- "close",
526
  "hurt",
527
  "office",
528
- "quite",
529
- "ran",
530
- "trip",
531
- "wine",
532
- "baby",
533
- "afternoon",
534
- "river",
535
- "city",
536
- "fire",
537
- "hungry",
538
  "thirty",
539
- "tokyo",
540
- "umbrella",
541
- "bring",
542
- "important",
543
- "police",
544
- "start",
545
- "mine",
546
  "##es",
547
- "asleep",
548
- "birthday",
549
- "ready",
550
- "sit",
551
- "become",
552
  "beer",
553
  "fast",
554
- "hotel",
555
- "cut",
556
  "forgot",
557
- "hate",
558
- "town",
559
- "##ation",
560
- "country",
561
- "else",
562
  "pay",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
563
  "anybody",
564
- "cup",
565
- "dark",
566
  "front",
567
- "nobody",
 
 
568
  "hour",
569
- "whether",
570
- "born",
571
- "himself",
572
  "news",
573
- "swimming",
574
- "goes",
575
- "knew",
576
- "studying",
577
- "then",
578
- "cost",
579
- "moment",
580
- "pretty",
581
- "truth",
582
- "thanks",
583
- "expensive",
584
- "trouble",
585
- "questions",
586
- "through",
587
- "present",
588
  "red",
589
- "short",
590
- "shouldn",
591
- "store",
592
- "glad",
593
- "wouldn",
594
- "hair",
595
  "milk",
596
- "tree",
597
- "cake",
598
- "favorite",
599
- "having",
600
  "word",
601
- "felt",
602
- "son",
603
- "under",
604
- "age",
605
- "box",
606
- "order",
607
  "anymore",
 
 
 
 
 
 
 
 
 
608
  "behind",
609
- "break",
610
- "mistake",
611
- "stopped",
 
612
  "student",
613
- "taking",
 
 
 
 
614
  "watching",
615
- "worry",
 
 
 
 
 
 
 
 
 
616
  "eaten",
 
 
 
 
617
  "flowers",
618
- "makes",
619
- "says",
620
- "##able",
621
- "##ion",
622
- "##ment",
623
- "ticket",
624
- "library",
625
- "college",
626
- "dress",
627
- "kept",
628
  "surprised",
629
- "pain",
630
- "full",
631
- "visit",
632
- "win",
633
  "##l",
634
- "camera",
635
- "##ies",
636
- "began",
637
- "closed",
638
- "happen",
639
- "making",
640
- "pen",
641
- "comes",
642
  "rich",
643
- "christmas",
644
- "medicine",
645
- "speaking",
646
  "street",
647
- "fine",
648
- "head",
649
- "heavy",
650
- "probably",
651
- "younger",
652
- "hat",
653
- "baseball",
654
- "along",
655
- "sat",
656
- "song",
657
- "test",
658
- "##o",
659
  "abroad",
 
 
 
 
 
 
 
 
 
660
  "girlfriend",
661
- "lived",
 
 
 
 
662
  "stand",
663
- "thinking",
664
- "gets",
665
- "half",
 
666
  "possible",
667
- "wear",
668
- "white",
669
- "computer",
670
- "end",
671
- "radio",
672
- "restaurant",
673
- "yen",
674
- "building",
675
- "chance",
676
- "desk",
677
- "die",
678
- "dogs",
679
- "mountain",
680
- "pass",
681
- "winter",
682
- "became",
683
- "bread",
684
- "dollars",
685
- "hit",
686
- "lie",
687
- "stayed",
688
  "strange",
689
- "weight",
690
- "woman",
 
 
 
 
 
 
 
 
691
  "advice",
 
692
  "listen",
693
- "prefer",
694
- "quickly",
695
- "vacation",
696
- "clothes",
 
 
 
 
 
 
697
  "interested",
698
- "men",
699
- "shut",
700
- "spent",
701
  "whose",
702
- "##i",
 
 
 
 
 
 
703
  "careful",
704
  "company",
705
- "dictionary",
706
- "dream",
707
- "finish",
708
- "planning",
709
- "##k",
710
  "agree",
711
- "daughter",
712
- "eggs",
713
- "hasn",
 
 
 
 
 
 
 
 
 
714
  "key",
715
- "mean",
 
 
716
  "paper",
717
  "road",
718
- "blue",
719
- "excuse",
720
- "language",
721
  "promise",
722
- "finally",
723
- "minute",
724
- "bag",
725
- "bank",
726
- "shirt",
727
- "shopping",
728
- "air",
729
- "crying",
730
- "telephone",
731
- "apple",
732
- "cats",
733
- "face",
734
- "forward",
735
- "seat",
736
  "wrote",
737
- "clean",
738
- "part",
 
739
  "rather",
 
740
  "trying",
741
- "##ic",
742
- "dead",
743
- "during",
 
 
744
  "others",
745
- "side",
746
- "sometimes",
747
- "speaks",
748
- "works",
749
- "against",
750
- "kids",
751
- "known",
752
- "point",
753
- "quit",
754
  "secret",
755
  "sunday",
756
- "hold",
757
- "send",
758
- "shop",
759
- "traffic",
760
  "uncle",
761
- "##ate",
762
- "also",
763
- "drunk",
 
 
 
 
 
 
 
 
 
 
 
 
 
764
  "glass",
765
- "move",
 
766
  "plane",
767
- "saying",
768
  "smoke",
769
- "war",
770
- "##age",
 
771
  "##in",
772
- "changed",
773
- "check",
774
- "evening",
775
- "guy",
 
 
 
776
  "health",
777
- "ice",
778
- "rest",
779
- "words",
780
- "##th",
781
- "four",
782
- "piano",
783
- "price",
784
- "women",
785
  "across",
786
- "black",
 
 
 
 
 
 
 
787
  "cook",
788
- "lend",
789
- "real",
790
- "sitting",
 
 
 
791
  "taxi",
792
- "whole",
793
- "##le",
794
- "broken",
795
- "exactly",
796
- "floor",
797
- "touch",
798
- "wind",
799
- "worried",
800
- "##ist",
801
- "set",
802
  "travel",
803
- "##nt",
804
- "address",
805
- "miss",
806
- "played",
807
- "seven",
808
- "concert",
809
- "kid",
810
- "##ated",
811
- "##ling",
812
- "moon",
813
- "suddenly",
814
- "case",
815
- "clear",
816
- "loves",
817
- "somebody",
818
- "walking",
819
- "blood",
820
- "exam",
821
- "feeling",
822
- "pick",
823
- "pictures",
824
- "quiet",
825
- "sky",
826
- "spring",
827
- "sun",
828
- "walked",
829
- "##ity",
830
- "drinking",
831
- "driving",
832
  "mistakes",
833
  "movies",
834
- "past",
835
  "reason",
836
- "rice",
837
- "apples",
838
- "delicious",
839
- "driver",
840
- "seeing",
841
- "staying",
 
 
 
 
 
 
 
 
 
842
  "tall",
843
- "wash",
 
 
 
 
 
844
  "##an",
845
- "##h",
 
 
 
 
 
 
 
 
 
 
 
 
846
  "absent",
847
- "airport",
848
- "borrow",
849
- "its",
850
- "sing",
851
- "slowly",
852
- "completely",
853
- "death",
854
- "difference",
855
- "earth",
856
- "passed",
857
- "serious",
858
- "somewhere",
859
- "tie",
860
- "weekend",
861
- "000",
862
- "brought",
863
  "hardly",
864
- "leaving",
865
- "lose",
866
- "mom",
867
- "noise",
868
- "shower",
 
869
  "trust",
870
- "##on",
871
- "card",
872
- "chair",
873
- "empty",
874
- "famous",
875
  "glasses",
876
  "horse",
877
- "sound",
878
- "worked",
879
- "##0",
880
- "earlier",
881
- "helped",
 
 
882
  "killed",
883
  "line",
 
 
 
 
 
 
 
884
  "lying",
885
- "machine",
886
- "poor",
887
- "ride",
888
- "soccer",
889
- "soup",
890
- "stolen",
891
- "stupid",
892
- "yours",
893
- "##ive",
894
- "arrive",
895
- "cry",
896
- "easily",
897
  "explain",
898
- "girls",
899
- "october",
900
- "seem",
901
- "storm",
 
 
 
902
  "strong",
903
- "bath",
 
 
904
  "carry",
905
- "eight",
906
- "fault",
907
- "gift",
908
- "lake",
909
- "mad",
910
- "needs",
911
- "novel",
912
- "rains",
913
  "second",
914
- "sight",
915
  "sleeping",
916
- "sleepy",
917
- "spend",
918
- "sugar",
919
- "taken",
920
  "takes",
921
- "team",
922
- "television",
923
- "10",
924
- "garden",
925
- "grandfather",
926
- "injured",
927
- "newspaper",
928
- "pizza",
929
- "salt",
930
- "sign",
931
- "smell",
932
- "tastes",
933
- "wake",
934
- "either",
935
- "fruit",
936
- "languages",
937
- "opened",
938
- "wallet",
939
- "yes",
940
  "##ine",
 
 
941
  "cream",
942
- "least",
943
- "recently",
944
- "wall",
945
- "warm",
946
- "##ted",
947
- "boys",
948
  "cannot",
949
- "cute",
950
- "guys",
951
- "held",
 
 
 
 
 
 
 
 
952
  "knife",
953
- "lights",
954
- "safe",
 
 
 
 
955
  "##id",
956
- "bottle",
 
 
 
957
  "cheese",
958
- "church",
959
- "coat",
960
- "hundred",
961
- "nine",
962
- "covered",
963
- "dangerous",
964
- "eye",
965
- "fishing",
966
- "heart",
967
- "husband",
968
- "meat",
969
- "pencil",
970
- "sea",
971
- "tickets",
972
  "translate",
973
- "weeks",
974
- "##ers",
975
- "##est",
976
- "##it",
977
  "beach",
978
- "boyfriend",
979
- "cheap",
980
- "follow",
981
- "listening",
982
- "opinion",
983
- "return",
984
- "though",
985
- "trees",
986
- "##ant",
987
- "##ful",
988
- "##ow",
989
- "actually",
990
  "begin",
991
- "cooking",
992
- "laughed",
993
- "less",
994
- "moved",
995
- "nervous",
996
- "ought",
997
- "paid",
998
- "running",
999
  "talked",
1000
- "village",
1001
- "america",
1002
- "arm",
1003
- "enjoy",
1004
- "leaves",
1005
- "maybe",
1006
- "mt",
1007
- "post",
1008
- "rang",
1009
- "several",
1010
- "university",
1011
- "writing",
1012
- "##ter",
1013
- "different",
1014
  "foreign",
1015
- "missed",
1016
- "showed",
1017
- "success",
1018
- "sweater",
1019
- "visited",
1020
- "##ous",
1021
- "animals",
1022
- "bike",
1023
- "couple",
 
 
 
 
 
 
 
 
1024
  "guitar",
1025
- "kissed",
1026
- "kitchen",
1027
- "map",
1028
- "sad",
1029
- "spoke",
1030
- "supposed",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1031
  "afford",
 
 
 
1032
  "expect",
1033
- "failed",
1034
  "foot",
1035
- "future",
1036
- "hurts",
1037
  "invited",
1038
- "learned",
1039
- "mouth",
1040
- "sense",
1041
- "sent",
1042
- "telling",
1043
- "thinks",
1044
- "top",
1045
  "cool",
1046
- "joke",
1047
- "liked",
1048
- "missing",
1049
- "scared",
1050
- "watched",
1051
- "00",
1052
- "anywhere",
1053
- "bird",
1054
- "cars",
1055
- "fuji",
1056
- "impossible",
1057
- "john",
1058
- "##at",
1059
- "##less",
1060
- "##ped",
1061
- "apologize",
1062
- "drop",
1063
- "fall",
1064
- "fix",
1065
- "inside",
1066
- "math",
1067
- "means",
1068
- "months",
1069
- "rained",
1070
- "received",
1071
- "report",
1072
- "situation",
1073
- "solve",
1074
- "teeth",
1075
- "usual",
1076
- "voice",
1077
- "waited",
1078
- "##ch",
1079
- "##ue",
1080
- "common",
1081
- "correct",
1082
- "fever",
1083
- "harder",
1084
- "laugh",
1085
  "plans",
1086
- "shall",
 
 
 
 
 
 
 
 
 
 
1087
  "smart",
1088
- "till",
1089
- "enjoyed",
1090
- "immediately",
1091
- "lucky",
1092
- "necessary",
1093
  "windows",
1094
- "##ain",
1095
- "##ite",
1096
- "##ure",
1097
  "built",
1098
- "calm",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1099
  "color",
1100
- "golf",
1101
- "happens",
1102
- "ill",
1103
- "kill",
1104
- "learning",
1105
- "popular",
1106
- "##st",
1107
- "alive",
1108
- "apartment",
1109
- "bridge",
1110
- "grow",
1111
- "keys",
1112
- "mail",
1113
- "mood",
1114
- "sentence",
1115
- "singing",
1116
- "thousand",
1117
- "wedding",
1118
- "##ance",
1119
- "##ish",
1120
- "##man",
1121
- "##ting",
1122
- "add",
1123
- "bear",
1124
- "canadian",
1125
- "carefully",
1126
- "choose",
1127
- "course",
1128
  "deal",
1129
- "drank",
1130
- "expected",
 
 
 
 
 
 
 
 
 
 
1131
  "favor",
1132
- "funny",
1133
- "gas",
1134
- "healthy",
1135
  "hey",
1136
- "museum",
1137
- "none",
1138
- "passport",
1139
- "perfect",
1140
- "piece",
1141
- "rent",
1142
- "returned",
1143
- "sounds",
1144
- "waste",
1145
- "##ical",
1146
- "distance",
1147
- "enter",
1148
- "grandmother",
1149
- "pond",
1150
  "translated",
1151
- "washing",
1152
- "##or",
1153
- "appreciate",
1154
- "area",
1155
- "button",
1156
- "decision",
1157
- "faster",
1158
- "lots",
1159
- "marry",
1160
- "single",
1161
- "stood",
1162
- "succeed",
1163
  "supper",
1164
- "twenty",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1165
  "##ial",
1166
- "##us",
1167
- "ball",
1168
- "date",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1169
  "disappointed",
1170
- "fly",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1171
  "football",
 
 
 
1172
  "green",
1173
- "license",
1174
- "studied",
1175
- "tears",
1176
- "truck",
1177
- "wet",
1178
- "worth",
1179
- "##ar",
1180
- "climb",
1181
- "drinks",
1182
- "earthquake",
1183
- "fresh",
1184
- "loved",
1185
  "match",
1186
- "plenty",
1187
- "problems",
1188
- "public",
1189
- "season",
1190
- "sports",
1191
- "suit",
1192
  "suitcase",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1193
  "throw",
1194
- "##ary",
1195
  "arrested",
1196
- "bill",
1197
- "club",
1198
- "credit",
1199
- "dropped",
1200
- "feet",
1201
- "guess",
1202
- "instead",
1203
- "join",
1204
- "list",
1205
- "ordered",
1206
- "rules",
1207
- "seemed",
1208
- "sell",
1209
- "ship",
1210
- "sooner",
1211
- "supermarket",
1212
- "woke",
1213
- "##ness",
1214
- "##ry",
1215
- "##ts",
1216
- "agreed",
1217
- "due",
1218
  "fat",
1219
  "flower",
1220
- "gotten",
1221
- "grew",
1222
- "herself",
1223
- "history",
1224
- "needed",
1225
- "sisters",
1226
- "speech",
1227
- "standing",
1228
- "states",
1229
- "teach",
1230
- "united",
1231
- "written",
1232
- "##les",
1233
- "##m",
1234
- "birds",
1235
- "boss",
1236
- "brothers",
1237
- "corner",
1238
- "count",
1239
- "diet",
1240
  "kiss",
1241
- "leg",
1242
- "neither",
1243
- "rumor",
1244
  "seldom",
 
 
 
1245
  "traveling",
1246
- "##ge",
1247
- "##ied",
1248
- "bite",
 
 
 
 
 
 
 
 
 
 
 
 
 
1249
  "chocolate",
1250
- "choice",
1251
- "contact",
1252
- "cookies",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1253
  "dad",
1254
- "given",
1255
- "hobby",
1256
- "letters",
 
1257
  "lied",
1258
- "meaning",
1259
- "refrigerator",
1260
- "sweet",
1261
- "taste",
1262
- "thirteen",
1263
- "whenever",
1264
- "within",
1265
- "##ating",
1266
- "##ible",
1267
- "##ise",
 
 
 
 
 
 
 
 
 
 
 
1268
  "##led",
1269
- "##op",
1270
  "##p",
1271
- "asking",
1272
- "bench",
1273
- "dishes",
1274
- "headache",
1275
- "legs",
 
 
 
1276
  "raise",
1277
- "save",
1278
- "seriously",
1279
- "stole",
 
1280
  "vegetables",
1281
- "##ned",
1282
- "##ty",
1283
- "advised",
1284
- "attention",
1285
- "bathroom",
1286
- "cards",
1287
- "charge",
1288
- "law",
1289
- "london",
1290
- "plays",
1291
- "promised",
1292
  "##b",
1293
- "##ce",
1294
- "##f",
1295
- "##ition",
1296
- "attend",
1297
- "boat",
1298
- "decide",
1299
- "europe",
1300
- "fact",
1301
- "hang",
1302
  "hates",
1303
- "locked",
1304
- "native",
1305
- "notice",
1306
- "pool",
1307
- "reached",
1308
- "ring",
1309
- "sofa",
1310
- "spoken",
1311
- "subject",
1312
  "taught",
1313
- "terrible",
1314
  "threw",
 
1315
  "##en",
1316
- "above",
1317
- "accept",
1318
- "allowed",
1319
- "butter",
1320
- "calling",
1321
- "cherry",
1322
- "dance",
1323
- "deep",
1324
- "dreams",
1325
- "eats",
1326
- "fridge",
1327
- "games",
1328
- "handed",
1329
- "low",
1330
- "meals",
1331
- "page",
1332
- "rule",
1333
- "singer",
1334
- "skiing",
1335
- "someday",
1336
- "stomach",
1337
- "talks",
1338
- "worse",
1339
- "##ping",
1340
- "chicken",
1341
- "classroom",
1342
- "comfortable",
1343
- "crazy",
1344
- "depressed",
1345
- "dressed",
1346
- "experience",
1347
  "extremely",
1348
- "fixed",
1349
- "holiday",
1350
- "offer",
1351
- "oil",
1352
- "player",
1353
- "prices",
1354
- "type",
1355
- "using",
 
 
 
1356
  "whatever",
1357
- "##ct",
1358
- "##et",
1359
- "##ian",
1360
- "##ks",
1361
- "##um",
1362
- "account",
1363
- "ahead",
1364
  "crowded",
1365
- "dirty",
1366
- "france",
1367
- "information",
1368
- "jacket",
1369
- "lonely",
1370
- "nor",
1371
- "shot",
1372
- "sold",
1373
- "special",
1374
  "stuck",
1375
- "unless",
1376
- "washed",
1377
  "york",
1378
  "##5",
1379
  "##ia",
1380
- "##ire",
1381
- "##re",
 
 
 
1382
  "breath",
1383
  "burned",
1384
- "danger",
1385
- "exercise",
1386
- "furniture",
1387
- "ghosts",
1388
- "heat",
1389
- "honest",
1390
- "illness",
1391
- "likely",
1392
- "meal",
1393
- "middle",
1394
- "nearby",
1395
- "oh",
1396
- "policeman",
1397
- "reply",
1398
- "satisfied",
1399
- "sundays",
1400
- "temperature",
1401
- "twice",
1402
- "##ack",
1403
- "##aking",
1404
- "##ent",
1405
- "##ide",
1406
- "##rs",
1407
- "##se",
1408
- "100",
1409
- "american",
1410
- "chinese",
1411
- "ended",
1412
- "fog",
1413
- "ground",
1414
- "habit",
1415
- "island",
1416
- "keeps",
1417
- "lady",
1418
  "laughing",
1419
- "lawyer",
1420
- "managed",
1421
- "noon",
1422
- "parking",
1423
- "rope",
1424
- "roses",
1425
- "saturday",
1426
  "schedule",
1427
- "stars",
1428
- "strawberries",
1429
- "teaching",
1430
- "third",
1431
- "##am",
1432
- "##and",
1433
- "##dy",
1434
- "##ged",
1435
- "##is",
1436
- "##ls",
1437
- "bell",
1438
- "burst",
1439
- "cash",
1440
- "cheaper",
1441
- "grass",
1442
- "lay",
1443
- "lies",
1444
- "noticed",
1445
- "picnic",
1446
- "president",
1447
- "proposal",
1448
- "proud",
1449
- "roof",
1450
  "silent",
1451
  "slept",
1452
- "smile",
1453
- "traveled",
1454
- "##2",
1455
- "##as",
1456
- "##ging",
1457
- "##ious",
1458
- "##nce",
1459
- "##tle",
1460
- "acted",
1461
- "chess",
1462
- "clouds",
1463
- "dentist",
1464
- "doubt",
1465
- "ears",
1466
- "enemy",
1467
- "examination",
1468
- "fifty",
1469
- "lock",
1470
- "pocket",
1471
- "project",
1472
- "results",
1473
- "rock",
1474
- "runs",
1475
- "weren",
1476
- "##9",
1477
- "##ade",
1478
- "##ap",
1479
- "##im",
1480
- "##pt",
1481
- "##u",
1482
- "absolutely",
1483
- "certain",
1484
- "climbed",
1485
- "diary",
1486
- "egg",
1487
- "excited",
1488
- "fail",
1489
- "hide",
1490
- "hole",
1491
- "laundry",
1492
- "meant",
1493
- "noisy",
1494
- "pants",
1495
- "passengers",
1496
- "perhaps",
1497
- "practice",
1498
- "prevented",
1499
- "prize",
1500
- "pulled",
1501
- "remained",
1502
- "rude",
1503
- "skin",
1504
- "sort",
1505
- "starts",
1506
  "tag",
1507
- "thief",
1508
- "throat",
1509
- "tongue",
1510
- "warmer",
1511
- "wonderful",
1512
- "##4",
1513
- "##ake",
1514
- "##ations",
1515
- "##land",
1516
  "##ut",
1517
- "airplane",
1518
- "april",
1519
- "begins",
1520
- "carried",
1521
- "countries",
1522
- "crowd",
1523
- "divorced",
1524
- "dry",
1525
- "flight",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1526
  "gate",
1527
  "god",
1528
- "hello",
1529
- "hid",
1530
- "king",
1531
  "lately",
1532
- "mondays",
1533
- "mountains",
1534
- "painting",
1535
- "patient",
1536
- "peace",
1537
- "raised",
 
 
 
1538
  "sale",
1539
- "slow",
1540
- "sudden",
1541
- "toilet",
1542
- "##g",
1543
  "##os",
1544
- "accused",
1545
- "allow",
1546
- "aware",
1547
- "body",
1548
  "bored",
1549
- "cause",
1550
- "continued",
1551
- "control",
1552
- "cried",
1553
- "cross",
1554
- "dating",
1555
- "elevator",
1556
- "escaped",
1557
- "except",
1558
- "feels",
1559
- "fill",
1560
- "gun",
1561
- "handle",
1562
- "joking",
1563
- "larger",
1564
- "magazine",
1565
- "miles",
1566
- "nearly",
1567
- "neighbors",
1568
- "population",
1569
- "regret",
1570
- "rid",
1571
- "seats",
1572
- "sharp",
1573
- "size",
1574
- "stops",
1575
- "surprise",
1576
- "temple",
1577
- "towel",
1578
- "upset",
1579
- "weird",
1580
- "wore",
1581
- "##ip",
1582
- "##ished",
1583
- "##one",
1584
- "##way",
1585
- "according",
1586
- "admitted",
1587
- "answered",
1588
- "art",
1589
- "beauty",
1590
- "costs",
1591
- "crime",
1592
- "draw",
1593
- "duty",
1594
- "eleven",
1595
- "email",
1596
- "entered",
1597
- "exhausted",
1598
- "explanation",
1599
- "feelings",
1600
  "fired",
1601
- "hearing",
1602
- "hung",
 
 
 
1603
  "kilometers",
1604
- "luck",
1605
- "message",
1606
- "orange",
1607
- "painted",
1608
  "picked",
1609
- "pie",
1610
  "rarely",
 
 
1611
  "result",
1612
- "similar",
1613
- "socks",
1614
- "sore",
1615
- "starting",
1616
- "stone",
1617
- "thirsty",
1618
- "view",
1619
- "workers",
1620
- "##ast",
1621
- "##king",
1622
- "##ore",
1623
- "##ve",
1624
- "accustomed",
1625
- "appeared",
1626
  "basketball",
1627
- "belong",
1628
- "blossoms",
1629
- "brown",
1630
- "cancer",
1631
- "caused",
1632
- "cleaning",
1633
- "complaining",
1634
- "doll",
1635
- "factory",
1636
- "filled",
1637
- "fond",
1638
- "german",
1639
- "hadn",
1640
- "houses",
1641
- "juice",
1642
- "kinds",
1643
- "mistaken",
1644
- "motorcycle",
1645
- "names",
1646
- "nearest",
1647
- "nose",
1648
- "oranges",
1649
- "pleased",
1650
- "pressure",
1651
- "round",
1652
- "smells",
1653
- "snowing",
1654
- "stairs",
1655
- "step",
1656
- "typhoon",
1657
- "woods",
1658
- "##ash",
1659
- "##ded",
1660
- "##il",
1661
- "##ily",
1662
- "##oo",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1663
  "##ug",
1664
- "##ured",
1665
- "20",
1666
  "2013",
1667
- "animal",
1668
- "aunt",
1669
- "castle",
1670
- "center",
1671
- "chicago",
1672
  "cookie",
1673
- "discuss",
 
1674
  "doors",
1675
- "fallen",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1676
  "feed",
1677
- "finger",
1678
- "forest",
1679
- "helping",
1680
  "hill",
1681
- "intelligent",
1682
- "intend",
1683
- "involved",
1684
  "jam",
1685
- "jeans",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1686
  "jump",
1687
- "loud",
 
 
 
 
 
1688
  "ocean",
1689
- "paris",
1690
- "photo",
1691
- "poem",
1692
- "prison",
1693
  "recommend",
 
1694
  "relieved",
1695
- "salary",
 
1696
  "sandwich",
1697
- "snakes",
1698
- "spare",
1699
- "stranger",
1700
- "taller",
1701
- "welcome",
1702
- "wood",
1703
- "zoo",
1704
- "##ase",
1705
- "##ched",
1706
- "##cy",
1707
- "##hip",
1708
- "##ions",
1709
- "##ires",
1710
- "##ized",
1711
- "##og",
1712
- "abandoned",
1713
- "admit",
1714
- "appointment",
1715
- "avoid",
1716
- "bigger",
1717
- "birth",
1718
- "bottom",
1719
- "capital",
1720
- "childhood",
1721
- "difficulty",
1722
- "failure",
1723
- "familiar",
1724
- "film",
1725
- "forced",
1726
- "handsome",
1727
- "hiding",
1728
- "lent",
1729
- "listened",
1730
- "nurse",
1731
- "pale",
1732
- "personal",
1733
- "push",
1734
- "rabbit",
1735
- "rainy",
1736
- "reservation",
1737
- "stamps",
1738
- "straight",
1739
- "theater",
1740
- "totally",
1741
- "twelve",
1742
- "upstairs",
1743
  "##3",
1744
- "##ally",
1745
  "##ay",
1746
- "##ces",
1747
- "##her",
1748
- "##ice",
1749
- "##ile",
1750
- "##ll",
1751
- "##ray",
1752
- "##sed",
1753
- "##ute",
1754
- "alarm",
1755
  "average",
1756
- "beginning",
1757
- "bitten",
1758
- "cover",
 
 
1759
  "dying",
1760
- "excellent",
1761
- "fed",
1762
- "figure",
1763
- "finding",
1764
- "fool",
1765
- "generally",
1766
- "graduated",
1767
- "holidays",
1768
- "imagine",
1769
- "mask",
1770
- "member",
1771
- "mouse",
1772
- "natural",
1773
- "non",
1774
- "obvious",
1775
- "pair",
1776
- "parked",
1777
- "particular",
1778
- "purpose",
1779
- "reach",
1780
- "ringing",
1781
- "sandwiches",
1782
- "ski",
1783
- "smiling",
1784
- "speaker",
1785
- "star",
1786
- "subway",
1787
- "support",
1788
- "tooth",
1789
- "unable",
1790
- "##ans",
1791
- "##ble",
1792
- "##ink",
1793
- "##ised",
1794
- "##itive",
1795
- "##ort",
1796
- "##time",
1797
- "##ware",
1798
- "50",
1799
- "alcohol",
1800
- "awake",
1801
- "bags",
1802
- "beat",
1803
- "borrowed",
1804
- "careless",
1805
- "certainly",
1806
- "clearly",
1807
- "clever",
1808
- "easier",
1809
- "fight",
1810
- "form",
1811
- "goodbye",
1812
- "hall",
1813
- "horses",
1814
- "lift",
1815
- "loss",
1816
- "ones",
1817
- "paint",
1818
- "press",
1819
- "promises",
1820
- "quick",
1821
- "quietly",
1822
- "raw",
1823
- "realized",
1824
- "repaired",
1825
- "respect",
1826
- "snowed",
1827
- "soldiers",
1828
- "tallest",
1829
- "trains",
1830
- "understood",
1831
- "useful",
1832
- "wears",
1833
- "wise",
1834
- "youngest",
1835
- "##ds",
1836
- "##ered",
1837
- "##form",
1838
- "##hed",
1839
- "##na",
1840
- "##ology",
1841
- "accidents",
1842
- "acquainted",
1843
- "advance",
1844
- "apologized",
1845
- "badly",
1846
- "believed",
1847
- "beside",
1848
- "boring",
1849
- "cap",
1850
- "disappeared",
1851
  "engine",
1852
- "fit",
1853
- "group",
 
 
 
1854
  "jackson",
1855
- "judge",
 
1856
  "lovely",
1857
- "million",
1858
- "mobile",
1859
- "nap",
1860
- "nowadays",
 
 
1861
  "repair",
1862
- "service",
1863
- "succeeded",
1864
- "suicide",
1865
- "unlikely",
1866
- "visiting",
1867
- "##ail",
1868
- "##are",
1869
- "##ative",
1870
- "##ear",
1871
- "##ection",
1872
- "##ics",
1873
- "##ief",
1874
- "##ill",
1875
- "##ner",
1876
- "##ons",
1877
- "##ss",
1878
- "absorbed",
1879
- "accepted",
1880
- "act",
1881
- "allergic",
1882
- "anyway",
1883
- "apart",
1884
- "baked",
1885
- "blame",
1886
- "blew",
1887
- "bother",
1888
- "bright",
1889
- "canceled",
1890
- "climbing",
1891
- "considered",
1892
- "cooked",
1893
- "degrees",
1894
- "depends",
1895
- "disease",
1896
- "divorce",
1897
- "education",
1898
- "forgive",
1899
- "fox",
1900
- "frankly",
1901
- "gloves",
1902
- "goal",
1903
- "guilty",
1904
- "happening",
1905
- "happiness",
1906
- "invitation",
1907
- "knowing",
1908
- "lazy",
1909
- "lightning",
1910
- "major",
1911
- "pretended",
1912
- "program",
1913
- "refused",
1914
- "restaurants",
1915
- "scene",
1916
- "simple",
1917
- "speed",
1918
- "spread",
1919
- "suggestion",
1920
- "treat",
1921
- "unfortunately",
1922
- "wherever",
1923
- "wild",
1924
- "worst",
1925
- "writer",
1926
- "yellow",
1927
- "yourselves",
1928
- "##all",
1929
- "##cle",
1930
- "##ence",
1931
- "##ick",
1932
- "##ier",
1933
- "##ified",
1934
  "##ities",
1935
- "##ived",
1936
- "##ives",
1937
  "##ns",
1938
- "##ust",
1939
- "##w",
1940
- "arms",
1941
- "bar",
1942
- "begun",
1943
- "belongs",
1944
- "below",
1945
- "build",
1946
- "buying",
1947
- "calls",
1948
- "contract",
1949
- "convenient",
1950
- "copy",
1951
- "crossed",
1952
  "department",
1953
- "fear",
1954
- "fifteen",
1955
- "following",
1956
- "forty",
1957
- "germany",
1958
- "gold",
1959
- "government",
1960
- "handwriting",
1961
- "helps",
1962
  "human",
1963
- "interpreter",
1964
- "june",
1965
- "kindness",
1966
- "laptop",
1967
- "moving",
1968
- "neighbor",
1969
- "normal",
1970
- "novels",
1971
- "overseas",
1972
- "patience",
1973
- "pencils",
1974
- "pieces",
1975
  "places",
1976
- "planned",
1977
- "power",
1978
- "realize",
1979
- "rely",
1980
- "rose",
1981
- "sons",
1982
- "steak",
1983
- "stronger",
1984
- "temper",
1985
- "upon",
1986
- "##ak",
1987
- "##ave",
1988
- "##board",
1989
- "##ck",
1990
- "##cted",
1991
- "##erve",
1992
- "##ign",
1993
- "##let",
1994
- "##om",
1995
- "##ries",
1996
- "##ring",
1997
- "##serve",
1998
- "##ual",
1999
- "among",
2000
- "anxious",
2001
- "becoming",
2002
- "beyond",
2003
- "blowing",
2004
- "board",
2005
  "bookstore",
2006
- "canada",
2007
- "candy",
2008
- "concerned",
2009
  "continue",
2010
- "curtain",
2011
- "deaf",
2012
- "deeply",
2013
- "drawing",
2014
- "dreamed",
2015
- "economy",
2016
- "entrance",
2017
- "escape",
2018
- "everywhere",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2019
  "exchange",
2020
- "exist",
2021
- "fence",
2022
- "flat",
2023
- "flying",
2024
- "friday",
2025
- "genius",
2026
- "holding",
2027
  "honey",
2028
- "innocent",
2029
- "interest",
2030
  "introduce",
2031
- "invented",
2032
- "invite",
2033
- "louder",
2034
- "mathematics",
2035
- "matters",
2036
  "meters",
2037
- "midnight",
2038
- "mirror",
2039
- "named",
2040
- "neighborhood",
2041
- "newspapers",
2042
- "notebook",
2043
- "okay",
2044
- "per",
2045
- "prepared",
2046
- "preparing",
2047
- "race",
2048
- "rare",
2049
- "repeat",
2050
- "riding",
2051
  "salad",
2052
- "science",
2053
- "shelf",
2054
- "shy",
2055
- "skirt",
2056
- "solution",
2057
- "sour",
2058
- "space",
2059
- "stick",
2060
- "sushi",
2061
- "terms",
2062
- "theory",
2063
- "thin",
2064
- "toys",
2065
- "twin",
2066
- "ways",
2067
- "weak",
2068
- "winning",
2069
- "##6",
2070
- "##8",
2071
  "##ach",
2072
- "##act",
2073
- "##ages",
2074
- "##amp",
2075
- "##cing",
2076
- "##gy",
2077
- "##house",
2078
- "##iate",
2079
- "##ins",
2080
  "##ited",
2081
- "##lar",
2082
- "##ming",
2083
- "##oes",
2084
- "##ors",
2085
- "##rate",
2086
- "##rated",
2087
- "##te",
2088
- "##ude",
2089
- "##unch",
2090
- "attended",
2091
- "beef",
2092
- "believes",
2093
- "brush",
2094
- "cafeteria",
2095
- "cell",
2096
  "china",
2097
- "cigarettes",
 
2098
  "couch",
2099
- "cups",
2100
- "detective",
2101
- "dislike",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2102
  "drew",
2103
  "ear",
2104
- "emergency",
2105
- "falling",
2106
- "farm",
2107
- "fashion",
2108
- "fluently",
2109
- "forever",
 
2110
  "gentleman",
2111
- "gives",
2112
  "gym",
2113
- "haircut",
2114
- "huge",
2115
- "ladder",
2116
- "lines",
2117
- "located",
2118
- "lower",
2119
- "main",
2120
  "marriage",
2121
- "master",
2122
- "members",
2123
- "obey",
2124
- "opening",
2125
- "pepper",
2126
- "percent",
2127
- "pockets",
2128
- "puppy",
2129
- "rate",
2130
- "rooms",
2131
- "saved",
2132
- "served",
2133
- "shorter",
2134
- "slight",
2135
- "split",
2136
  "thick",
2137
- "video",
2138
- "wow",
 
2139
  "yard",
2140
- "##ag",
2141
- "##ank",
2142
- "##den",
2143
- "##ding",
2144
- "##el",
2145
- "##elf",
2146
- "##eted",
2147
- "##ets",
2148
- "##hy",
2149
- "##iest",
2150
- "##ight",
2151
- "##ists",
2152
  "##ium",
2153
- "##light",
2154
- "##lish",
2155
- "##ook",
2156
- "##ote",
2157
- "##red",
2158
- "##tic",
2159
- "##umped",
2160
- "##ution",
2161
- "##ves",
2162
- "##ving",
2163
- "##zing",
2164
- "11",
2165
- "300",
2166
- "attack",
2167
- "autumn",
2168
- "available",
2169
- "baggage",
2170
- "blind",
2171
- "cab",
2172
  "carpet",
2173
- "cheeks",
2174
- "classes",
2175
  "computers",
2176
  "condition",
2177
- "damage",
2178
- "document",
2179
- "envelope",
2180
  "equal",
2181
- "exact",
2182
- "example",
2183
- "express",
2184
- "fair",
2185
  "fighting",
2186
- "fingers",
2187
- "forgotten",
2188
- "friendly",
2189
- "gained",
2190
- "hi",
2191
- "highest",
2192
  "humid",
2193
- "ink",
2194
- "jokes",
2195
- "land",
2196
- "lasted",
2197
- "liar",
2198
- "lips",
2199
- "market",
2200
- "modern",
2201
- "north",
2202
  "occurred",
2203
- "paying",
2204
- "plants",
2205
- "private",
2206
- "professor",
2207
- "pull",
2208
- "rabbits",
2209
- "reminds",
2210
- "robbed",
2211
- "sales",
2212
- "santa",
2213
- "smoked",
2214
  "songs",
2215
- "spite",
2216
  "sport",
2217
- "stands",
2218
- "stories",
2219
- "stubborn",
2220
- "sunny",
2221
- "system",
2222
- "teachers",
2223
- "teaches",
2224
- "thanksgiving",
2225
- "tight",
2226
- "tire",
2227
- "tower",
2228
  "toy",
2229
- "turns",
2230
- "vase",
2231
- "violin",
2232
- "worn",
2233
- "writes",
2234
- "##ad",
2235
- "##ained",
2236
- "##ama",
2237
- "##ased",
2238
- "##ax",
2239
- "##ee",
2240
- "##ew",
2241
- "##fish",
2242
- "##ger",
2243
- "##gers",
2244
- "##here",
2245
- "##iped",
2246
- "##itch",
2247
- "##lies",
2248
- "##ne",
2249
- "##oach",
2250
- "##ory",
2251
- "##osing",
2252
- "##owed",
2253
- "##place",
2254
- "##ton",
2255
- "##town",
2256
- "##ung",
2257
  "##up",
2258
- "##ur",
2259
- "author",
2260
- "awfully",
2261
- "barber",
2262
- "barely",
2263
- "century",
2264
- "closet",
2265
- "cloudy",
2266
- "colder",
2267
- "conference",
2268
- "confused",
 
 
2269
  "consider",
2270
- "curtains",
2271
- "data",
2272
- "definitely",
2273
- "dessert",
2274
- "details",
2275
- "diamond",
2276
- "discovered",
2277
- "eighteen",
2278
  "ends",
2279
- "engaged",
2280
- "entering",
2281
- "ex",
2282
- "exams",
2283
- "exciting",
2284
- "flood",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2285
  "flu",
2286
- "followed",
2287
- "forecast",
2288
- "further",
2289
- "hated",
2290
- "hidden",
2291
- "ideas",
 
2292
  "iron",
2293
- "italy",
2294
- "keeping",
2295
- "kicked",
2296
- "kidding",
2297
  "knowledge",
2298
- "laid",
 
2299
  "memory",
2300
- "mess",
 
2301
  "mud",
2302
- "murder",
2303
- "neck",
2304
- "pajamas",
2305
- "pink",
2306
- "polite",
2307
- "profile",
2308
- "recognize",
2309
- "relax",
2310
- "restroom",
2311
- "rise",
2312
- "safety",
 
 
 
 
 
 
2313
  "smaller",
2314
  "smiled",
2315
  "snack",
2316
- "snake",
2317
- "soap",
2318
- "south",
2319
- "stuff",
2320
- "sunglasses",
2321
- "swam",
2322
- "tail",
2323
- "tax",
2324
- "tough",
2325
- "treated",
2326
- "volleyball",
2327
- "vote",
2328
- "walks",
2329
- "##ane",
2330
- "##ates",
2331
- "##by",
2332
- "##cakes",
2333
- "##ey",
2334
- "##gest",
2335
- "##ict",
2336
- "##ig",
2337
- "##iled",
 
 
 
 
 
2338
  "##ining",
2339
- "##ister",
 
 
2340
  "##ma",
2341
- "##nd",
2342
- "##ode",
2343
- "##old",
2344
- "##ood",
2345
- "##orn",
2346
- "##ox",
2347
- "##oy",
2348
- "##posed",
2349
- "##ps",
2350
- "##sion",
2351
- "##sist",
 
 
 
2352
  "##uts",
2353
- "##x",
2354
- "##ze",
2355
- "13",
2356
  "500",
2357
- "ability",
2358
  "active",
2359
- "americans",
2360
- "amount",
2361
- "answers",
2362
  "appears",
2363
- "audience",
 
2364
  "based",
2365
  "basket",
2366
- "battery",
2367
- "bedroom",
2368
- "belt",
2369
- "bitter",
2370
- "bloom",
2371
- "breaking",
2372
- "buildings",
2373
- "burning",
2374
  "cancel",
2375
- "captain",
 
2376
  "chairs",
2377
- "checked",
2378
- "cigarette",
2379
- "colds",
2380
- "collecting",
2381
- "complain",
2382
- "convinced",
2383
- "counter",
2384
- "customers",
2385
- "dancing",
2386
- "destroyed",
2387
- "dollar",
2388
- "efforts",
2389
- "electricity",
2390
- "examined",
2391
- "expecting",
2392
  "explained",
2393
- "fairly",
2394
- "fortune",
2395
- "frozen",
2396
- "grown",
2397
- "higher",
2398
  "however",
2399
- "hugged",
2400
- "hurried",
2401
  "improve",
2402
- "increase",
2403
- "jealous",
2404
- "jobs",
2405
- "jumped",
2406
- "knocked",
2407
- "lion",
2408
- "model",
2409
- "narrowly",
2410
- "owner",
2411
- "owns",
2412
- "perfectly",
2413
- "personality",
2414
- "planted",
2415
  "pushed",
2416
- "recognized",
 
2417
  "request",
2418
- "shirts",
2419
- "shoulders",
2420
- "slower",
2421
- "sometime",
2422
- "spicy",
2423
- "suspect",
2424
- "tells",
2425
- "trick",
2426
- "vegetarian",
2427
- "volume",
2428
- "website",
2429
- "wrap",
2430
- "yeah",
2431
- "##7",
2432
- "##als",
2433
- "##ants",
2434
- "##cast",
2435
- "##cription",
2436
- "##ction",
2437
- "##de",
2438
- "##ece",
2439
- "##ern",
 
 
2440
  "##icted",
2441
- "##ield",
2442
- "##ient",
2443
- "##iff",
2444
- "##inated",
2445
- "##ior",
2446
- "##ired",
2447
- "##ius",
2448
- "##mark",
2449
- "##mber",
2450
- "##men",
2451
- "##ms",
2452
- "##ning",
2453
- "##oast",
2454
- "##ogs",
2455
- "##ot",
2456
- "##otion",
2457
- "##our",
2458
- "##per",
2459
- "##rial",
2460
- "##rn",
2461
- "##sy",
2462
- "##ume",
2463
- "##ved",
2464
- "absence",
2465
- "achieved",
2466
- "added",
2467
- "ages",
2468
- "alike",
2469
- "appearance",
2470
- "attacked",
2471
- "babies",
2472
- "beating",
2473
  "behave",
2474
- "bottles",
2475
- "breathe",
2476
- "cd",
 
 
2477
  "cheer",
2478
- "cleaned",
2479
- "cleared",
2480
- "closer",
2481
  "committed",
2482
  "committee",
2483
- "complete",
2484
  "confidence",
2485
- "cousin",
2486
  "coward",
2487
- "delete",
 
2488
  "demand",
2489
- "downstairs",
 
 
 
2490
  "dozen",
2491
- "earthquakes",
2492
- "ease",
2493
- "energy",
2494
- "enjoying",
2495
- "february",
2496
- "frightened",
2497
- "garbage",
2498
- "giving",
2499
- "grab",
2500
- "grades",
2501
- "granted",
2502
- "handkerchief",
2503
- "hanging",
2504
- "hero",
2505
- "inviting",
2506
- "knee",
2507
- "lack",
2508
- "largest",
2509
- "lecture",
2510
  "manager",
2511
- "narrow",
2512
- "overtime",
2513
- "pardon",
2514
- "permission",
2515
- "permitted",
2516
  "phoned",
2517
- "pointed",
2518
- "politics",
2519
  "position",
2520
- "prime",
 
 
 
2521
  "prohibited",
2522
  "published",
2523
- "putting",
2524
- "retired",
2525
- "sake",
2526
  "sang",
2527
- "sank",
 
2528
  "selling",
2529
- "share",
2530
- "shave",
2531
- "skating",
2532
- "skipped",
2533
- "snowman",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2534
  "snows",
2535
- "spending",
2536
- "stage",
2537
- "stealing",
2538
- "successful",
2539
- "swimmer",
2540
- "translation",
2541
- "trunk",
2542
- "twins",
2543
- "whale",
2544
- "windy",
 
 
 
 
 
 
 
 
 
 
2545
  "wolves",
2546
- "##ale",
2547
- "##ard",
2548
- "##awn",
2549
- "##book",
2550
- "##cribe",
2551
- "##cus",
2552
- "##doors",
2553
- "##eer",
2554
- "##enses",
2555
- "##ground",
2556
- "##icate",
2557
- "##lipped",
2558
- "##med",
 
 
 
 
 
 
 
 
2559
  "##mit",
2560
  "##mon",
2561
- "##my",
2562
- "##nder",
2563
- "##nel",
2564
- "##ney",
2565
- "##oe",
2566
- "##oke",
2567
- "##ose",
2568
- "##ows",
2569
- "##room",
2570
- "##row",
2571
- "##ten",
2572
  "##tent",
2573
- "##tion",
2574
- "##ub",
2575
- "##ugs",
2576
- "##une",
2577
- "##ures",
2578
- "##ury",
 
 
 
 
 
 
2579
  "alice",
2580
- "although",
2581
- "ambulance",
2582
- "article",
2583
- "ashamed",
2584
- "atm",
2585
- "band",
2586
- "bears",
2587
- "blanket",
2588
- "bleeding",
2589
- "boiled",
2590
- "camping",
2591
- "carrying",
2592
- "ceiling",
2593
  "changing",
2594
- "claus",
2595
- "climate",
2596
- "cloud",
2597
- "compared",
2598
- "concern",
2599
- "consult",
2600
  "cows",
2601
- "curious",
2602
- "curry",
2603
- "detail",
2604
- "extra",
2605
- "eyesight",
 
 
 
 
 
 
2606
  "facts",
2607
- "fortunately",
2608
- "general",
2609
- "grade",
2610
- "idiot",
 
 
 
 
 
 
 
 
 
2611
  "income",
2612
- "insects",
2613
- "instant",
2614
- "interview",
2615
- "jogging",
2616
- "junior",
2617
- "kilograms",
2618
- "kyoto",
2619
- "lacks",
2620
- "lesson",
2621
- "limit",
2622
- "loudly",
2623
- "makeup",
2624
- "medical",
2625
- "metal",
2626
- "nails",
2627
- "nights",
2628
- "object",
2629
  "odd",
2630
- "oldest",
2631
  "opinions",
2632
- "opportunity",
2633
- "optimistic",
2634
- "papers",
2635
- "pillow",
2636
- "plate",
2637
- "players",
2638
- "prisoner",
2639
  "progress",
2640
  "reads",
2641
- "record",
2642
  "religion",
2643
- "research",
2644
- "ridiculous",
2645
- "rising",
2646
- "roll",
2647
- "scary",
2648
- "scissors",
2649
  "sells",
2650
- "settled",
2651
- "shock",
2652
- "shook",
2653
  "simply",
2654
- "spanish",
2655
- "spends",
2656
- "spider",
2657
- "studies",
2658
- "suppose",
2659
- "surprising",
2660
  "sweat",
2661
- "swims",
2662
- "terribly",
2663
- "thoughts",
2664
- "towards",
2665
- "ugly",
2666
- "visa",
2667
- "wide",
2668
- "worker",
 
 
 
 
2669
  "##ache",
2670
- "##ars",
2671
- "##ats",
 
 
 
 
2672
  "##aving",
2673
- "##bed",
2674
- "##ches",
 
2675
  "##cies",
2676
- "##clined",
2677
  "##covery",
2678
- "##cue",
2679
- "##dle",
2680
- "##dom",
2681
- "##eat",
2682
  "##ected",
2683
- "##igned",
2684
- "##imate",
2685
- "##ipe",
2686
- "##irm",
2687
- "##ising",
 
 
 
 
2688
  "##ison",
2689
  "##istic",
2690
- "##iver",
2691
- "##ked",
2692
- "##lapped",
2693
- "##liable",
2694
- "##line",
2695
- "##lished",
2696
- "##low",
2697
- "##lt",
2698
- "##ments",
2699
- "##nds",
2700
- "##nic",
2701
- "##ny",
2702
- "##ol",
2703
- "##ops",
2704
- "##ple",
2705
- "##ror",
2706
- "##ship",
2707
  "##ssed",
2708
- "##sters",
2709
- "##table",
2710
- "##tical",
2711
- "##uard",
 
2712
  "##uce",
2713
  "##uck",
2714
- "##urn",
2715
- "18",
2716
- "20th",
2717
- "acting",
2718
- "action",
2719
- "actions",
2720
- "admission",
2721
- "adopted",
2722
  "amazing",
2723
  "ankle",
2724
- "barking",
2725
- "behavior",
 
2726
  "bet",
2727
- "bomb",
2728
  "bone",
2729
- "bound",
2730
- "canadians",
2731
- "ceremony",
2732
  "cheerful",
2733
- "coins",
2734
- "comment",
2735
- "complicated",
2736
- "crossing",
2737
- "culture",
2738
- "delivered",
2739
- "denied",
2740
- "departure",
2741
- "depend",
2742
- "discount",
2743
- "discussed",
2744
- "drawer",
2745
  "drove",
2746
- "drowned",
2747
- "earns",
2748
- "elected",
2749
- "elephants",
2750
- "experienced",
2751
- "explosion",
2752
- "fellow",
2753
- "flew",
2754
- "fluent",
2755
- "foreigners",
2756
- "fountain",
2757
- "garage",
2758
- "graduate",
2759
- "growing",
2760
- "habits",
2761
- "hug",
2762
- "hunting",
 
 
 
2763
  "illegal",
2764
- "impression",
2765
- "incident",
2766
- "increased",
2767
- "intended",
2768
- "interrupt",
2769
- "junk",
2770
- "karaoke",
2771
- "laughter",
2772
- "lending",
2773
- "lessons",
2774
- "manners",
2775
- "mention",
2776
- "mild",
2777
- "necessarily",
2778
- "necklace",
2779
- "nonsense",
2780
- "numbers",
2781
- "nuts",
2782
- "operation",
2783
- "original",
2784
- "oven",
2785
- "pack",
2786
- "password",
2787
- "pens",
2788
  "physics",
2789
- "pickpockets",
2790
- "pork",
2791
- "postponed",
2792
- "poured",
2793
- "printer",
2794
- "professional",
2795
  "purse",
2796
- "quality",
2797
- "quarter",
2798
  "ramen",
2799
  "reasons",
2800
- "receipt",
2801
- "refreshed",
2802
- "regards",
2803
- "relaxed",
2804
- "responsibility",
2805
- "rough",
2806
- "rushed",
2807
- "sauce",
2808
- "search",
2809
- "sheep",
2810
- "shoulder",
2811
  "silence",
2812
- "slippery",
2813
- "spell",
2814
- "spiders",
2815
- "stock",
2816
- "stores",
 
2817
  "struck",
2818
- "suggested",
2819
- "suitcases",
2820
- "switzerland",
2821
- "tend",
2822
  "track",
2823
- "treatment",
2824
- "unusual",
2825
- "upside",
2826
- "web",
2827
  "weekends",
2828
- "willing",
2829
- "zip",
2830
- "##1",
2831
- "##aled",
2832
- "##anding",
2833
- "##ashed",
2834
- "##assing",
2835
- "##ational",
2836
- "##aves",
2837
- "##bby",
2838
- "##bly",
2839
- "##erves",
2840
- "##gle",
 
 
 
 
 
 
 
 
2841
  "##hat",
2842
- "##ically",
2843
- "##icking",
2844
- "##iction",
2845
- "##ific",
2846
- "##ify",
2847
- "##ince",
2848
- "##ined",
2849
- "##int",
2850
- "##ir",
2851
- "##ization",
2852
- "##ky",
2853
- "##late",
2854
- "##lect",
2855
- "##lid",
2856
- "##lied",
2857
- "##lown",
2858
- "##mate",
2859
- "##mployed",
2860
- "##nate",
2861
- "##out",
2862
  "##point",
2863
- "##ress",
2864
- "##ride",
2865
- "##rove",
2866
- "##roved",
2867
- "##rted",
2868
- "##ually",
2869
- "##ugged",
2870
  "##ulated",
2871
- "##umb",
2872
  "##ument",
2873
- "##umor",
2874
- "##while",
2875
- "##xt",
2876
- "##zed",
2877
- "15",
 
2878
  "accent",
2879
- "acquired",
2880
- "actor",
 
2881
  "adult",
 
 
2882
  "africa",
2883
- "apply",
 
 
 
 
 
2884
  "army",
2885
- "assume",
2886
- "awoke",
2887
- "bee",
2888
- "blocked",
2889
- "boil",
2890
- "bothering",
2891
- "bucket",
2892
  "burglar",
2893
- "burnt",
2894
- "buses",
2895
- "cakes",
2896
  "carries",
2897
- "cave",
2898
- "changes",
2899
  "cheek",
2900
- "chest",
2901
- "classical",
2902
- "colors",
2903
  "complained",
2904
- "completed",
 
2905
  "counting",
2906
- "cousins",
2907
  "crashed",
 
 
2908
  "determined",
2909
  "dizzy",
2910
- "doctors",
2911
- "dust",
2912
- "edge",
2913
- "eventually",
2914
- "exceptions",
2915
- "expelled",
 
2916
  "expert",
2917
- "fasten",
2918
- "festival",
2919
- "final",
2920
- "forehead",
2921
  "formed",
2922
- "goods",
 
2923
  "grabbed",
2924
- "grows",
2925
- "guests",
2926
- "heater",
2927
- "hopes",
2928
- "horrible",
2929
- "ignore",
2930
- "intention",
2931
- "internet",
2932
- "italian",
2933
- "jazz",
2934
- "killing",
2935
- "lean",
2936
- "log",
2937
- "luggage",
2938
- "mark",
2939
- "memories",
 
2940
  "menu",
2941
- "method",
2942
- "moldy",
2943
- "mushroom",
2944
- "nature",
2945
  "officer",
2946
  "onions",
2947
- "osaka",
2948
- "ourselves",
2949
- "overslept",
 
 
2950
  "owe",
2951
- "personally",
2952
- "pet",
2953
- "pitch",
2954
- "plant",
2955
- "pretend",
 
 
 
 
 
 
 
2956
  "racket",
2957
  "receive",
2958
- "remain",
2959
- "ripe",
2960
- "rode",
2961
- "rome",
2962
- "runner",
2963
- "safely",
2964
- "saving",
2965
- "scolded",
2966
- "searching",
2967
- "seek",
2968
- "selfish",
2969
- "shake",
2970
- "shape",
2971
- "sings",
2972
  "smartphone",
2973
- "soaked",
2974
- "spirits",
2975
- "spot",
2976
- "squirrel",
2977
- "strawberry",
 
 
2978
  "sum",
2979
- "term",
2980
- "tour",
2981
- "toward",
2982
- "twentieth",
2983
- "uncomfortable",
2984
- "useless",
2985
- "violence",
2986
- "wealthy",
2987
- "whichever",
2988
- "whoever",
 
 
2989
  "wolf",
2990
- "wooden",
2991
- "wounded",
2992
  "##ably",
2993
- "##acked",
2994
- "##ame",
2995
- "##arian",
2996
  "##aries",
2997
- "##atch",
2998
- "##bled",
2999
- "##c",
3000
- "##cious",
3001
- "##cover",
3002
- "##creasing",
3003
- "##creen",
3004
- "##ctions",
3005
- "##ctor",
3006
- "##do",
3007
  "##ees",
 
 
3008
  "##fe",
3009
- "##fly",
3010
- "##gan",
3011
- "##hs",
3012
- "##ident",
3013
- "##ids",
3014
- "##ilies",
3015
- "##ilt",
3016
- "##ims",
3017
- "##inal",
3018
- "##ings",
3019
- "##io",
3020
  "##ique",
3021
- "##itical",
3022
- "##itting",
3023
- "##iving",
3024
  "##ke",
3025
- "##lator",
3026
- "##lected",
3027
- "##ler",
3028
- "##lings",
 
 
 
3029
  "##ncy",
 
3030
  "##oad",
3031
- "##ole",
3032
- "##ometer",
3033
- "##ong",
3034
- "##ores",
3035
- "##oscope",
3036
  "##ounced",
3037
- "##over",
3038
- "##oving",
3039
- "##poon",
3040
- "##reaming",
3041
- "##rush",
3042
- "##son",
3043
- "##standing",
3044
- "##tain",
3045
- "##tributed",
3046
- "##uation",
3047
- "##uel",
3048
- "##ues",
3049
- "##ulations",
3050
- "##use",
3051
- "##ward",
3052
- "##weight",
3053
- "##wise",
3054
- "200",
3055
- "40",
3056
- "apparently",
3057
- "atomic",
 
 
 
 
3058
  "attractive",
 
 
3059
  "balcony",
3060
- "bananas",
3061
- "boiling",
3062
- "boots",
3063
- "brain",
3064
- "carrots",
3065
- "cellphone",
3066
- "chemistry",
3067
- "chickens",
3068
- "chose",
3069
- "cloth",
3070
- "commit",
3071
- "communicate",
3072
- "confessed",
3073
- "conversation",
3074
- "cough",
3075
- "courage",
3076
- "crash",
3077
- "daily",
3078
- "debt",
3079
- "demands",
3080
- "drugs",
 
3081
  "eater",
 
3082
  "effect",
3083
- "effort",
 
3084
  "embarrassed",
3085
  "engagement",
3086
- "england",
3087
  "especially",
3088
- "event",
3089
- "faces",
3090
- "false",
3091
- "fifth",
3092
- "foolish",
3093
- "garlic",
3094
- "grammar",
3095
- "grandpa",
3096
- "grapes",
3097
- "hammer",
3098
- "hats",
3099
- "hawaii",
3100
- "helpful",
3101
- "hesitate",
3102
- "hired",
3103
- "honor",
3104
- "improved",
3105
- "india",
3106
- "insisted",
3107
- "insurance",
3108
- "issue",
3109
- "jail",
3110
- "july",
3111
- "knocking",
3112
- "korean",
3113
- "lit",
3114
- "local",
3115
- "loose",
3116
- "lottery",
3117
- "meter",
3118
- "mexico",
3119
- "mystery",
3120
- "note",
3121
- "obviously",
3122
- "ordinary",
3123
- "pace",
3124
- "pages",
3125
- "peel",
3126
- "pets",
3127
- "pianist",
3128
  "picking",
3129
- "pilot",
3130
  "planes",
3131
- "pleasure",
3132
- "policy",
3133
- "possibly",
3134
- "pot",
3135
- "potato",
3136
- "potatoes",
3137
- "prepare",
3138
- "product",
3139
  "pronounce",
3140
- "provide",
3141
- "refrain",
3142
- "regular",
3143
- "remove",
3144
- "resembles",
3145
- "responsible",
3146
- "sand",
3147
- "score",
3148
  "shine",
3149
- "shining",
3150
  "shocked",
3151
- "sip",
3152
- "sleeve",
3153
- "social",
3154
- "soft",
3155
- "spilled",
3156
- "squirrels",
3157
- "stain",
3158
- "stove",
 
3159
  "strangers",
3160
- "strike",
 
3161
  "sunset",
 
3162
  "surrounded",
3163
- "tasted",
3164
- "themselves",
3165
- "tied",
3166
  "toast",
3167
- "turkey",
3168
- "turning",
3169
- "ufo",
3170
- "understands",
3171
- "unlocked",
3172
- "unlucky",
 
3173
  "usa",
3174
- "valentine",
3175
- "various",
3176
- "wondered",
3177
  "zero",
3178
- "##60",
3179
- "##acy",
3180
- "##af",
3181
- "##agic",
3182
- "##air",
3183
- "##aire",
3184
- "##alk",
3185
  "##amin",
3186
- "##antic",
3187
- "##antly",
3188
- "##asant",
3189
- "##astic",
3190
- "##asty",
3191
- "##ath",
3192
- "##aw",
3193
- "##ayed",
3194
- "##bing",
3195
- "##ced",
3196
- "##ciation",
3197
- "##co",
3198
- "##come",
3199
- "##cope",
3200
- "##couraged",
3201
- "##day",
3202
  "##ead",
3203
- "##els",
3204
- "##em",
3205
- "##ering",
3206
- "##eze",
3207
- "##fit",
3208
- "##hips",
3209
- "##hone",
3210
- "##how",
3211
- "##ician",
3212
- "##ido",
3213
- "##ieve",
3214
- "##ilities",
3215
- "##iment",
3216
- "##irt",
3217
- "##jury",
3218
- "##ka",
3219
- "##key",
3220
- "##lication",
3221
- "##married",
3222
- "##mates",
3223
- "##me",
3224
- "##nding",
3225
- "##nion",
3226
- "##ntly",
3227
- "##omic",
3228
- "##oon",
3229
- "##oping",
3230
- "##ord",
3231
- "##ost",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3232
  "##ought",
3233
- "##position",
3234
- "##prints",
3235
- "##py",
3236
- "##rase",
3237
- "##ream",
3238
- "##rent",
3239
- "##served",
3240
- "##sive",
3241
- "##tal",
3242
- "##tate",
3243
- "##titude",
3244
- "##tream",
3245
- "##uded",
3246
- "##ump",
3247
- "##unted",
3248
- "##urb",
3249
- "##usted",
3250
  "##uzzle",
3251
- "##val",
3252
- "##yard",
3253
- "##zes",
3254
- "access",
3255
- "accompanied",
3256
- "ache",
3257
  "acknowledged",
3258
- "actress",
3259
- "admire",
3260
- "advantage",
3261
- "affairs",
3262
- "alcoholic",
3263
- "amazed",
3264
- "ancient",
3265
- "anger",
3266
- "annoyed",
3267
- "anytime",
3268
- "applied",
3269
  "appointed",
3270
- "arguing",
3271
- "arriving",
3272
- "artist",
3273
  "asia",
3274
- "assistance",
3275
- "automatically",
3276
- "awful",
3277
- "banana",
3278
- "bare",
3279
- "beard",
3280
- "brave",
3281
- "briefcase",
3282
- "brightly",
3283
- "brings",
3284
- "calmed",
3285
  "catches",
 
3286
  "chew",
3287
- "cities",
3288
- "closely",
3289
- "clothing",
3290
- "coin",
3291
  "comments",
3292
- "concentrate",
3293
- "connection",
3294
- "contain",
3295
- "contest",
3296
- "cops",
3297
- "cotton",
3298
  "court",
3299
- "dare",
 
 
3300
  "daughters",
3301
- "deadline",
3302
- "deals",
3303
- "direction",
3304
- "disagree",
3305
- "divided",
3306
  "double",
3307
- "dried",
3308
- "eager",
3309
- "eighth",
3310
  "election",
3311
- "elephant",
3312
- "enjoys",
3313
- "envy",
3314
- "evil",
3315
- "exchanged",
3316
- "fainted",
3317
- "fantastic",
3318
- "fare",
3319
- "file",
3320
- "foods",
 
3321
  "froze",
3322
- "gain",
3323
  "gambling",
3324
- "ghost",
3325
  "glance",
3326
- "glimpse",
3327
- "grateful",
3328
- "gum",
3329
- "harm",
3330
- "harvard",
3331
- "heavier",
3332
- "heavily",
3333
- "holds",
3334
- "homesick",
3335
- "horizon",
3336
- "hunger",
3337
- "id",
3338
  "image",
3339
- "imagination",
3340
- "impatient",
3341
- "impressed",
3342
  "interfere",
3343
- "irritated",
3344
- "january",
3345
- "kittens",
3346
- "knock",
3347
- "leather",
3348
- "leftovers",
3349
- "lemon",
3350
- "length",
3351
- "lincoln",
3352
- "literature",
3353
- "mailbox",
3354
- "mars",
3355
- "mayor",
3356
- "memorize",
3357
- "mix",
3358
- "monthly",
3359
- "muggy",
3360
- "naked",
3361
- "needle",
3362
  "nuclear",
3363
- "nutritious",
3364
- "packed",
3365
- "parks",
3366
- "persuaded",
3367
- "philosophy",
3368
- "pity",
3369
- "planet",
3370
- "poet",
 
 
 
 
 
 
3371
  "points",
3372
- "possibility",
3373
- "postcard",
3374
- "postcards",
3375
- "precious",
3376
- "pressed",
3377
- "properly",
3378
- "rainbow",
3379
- "reasonable",
3380
  "recent",
3381
- "refuse",
3382
- "related",
3383
- "released",
3384
  "remembering",
3385
- "rented",
3386
- "richer",
3387
- "roads",
 
 
 
3388
  "rolled",
3389
  "root",
3390
- "rotten",
3391
- "rush",
3392
- "seafood",
3393
- "secretary",
3394
- "self",
3395
- "seventeen",
3396
- "sewing",
3397
- "shame",
3398
- "shoot",
3399
- "shout",
3400
- "silly",
3401
- "silver",
3402
- "sir",
3403
  "site",
3404
- "sixty",
3405
- "skate",
3406
- "smarter",
3407
- "smooth",
3408
- "solved",
3409
- "sounded",
3410
- "stamp",
3411
  "stew",
3412
  "stomachache",
3413
- "stress",
3414
- "strict",
3415
- "suffering",
3416
- "surface",
3417
  "tent",
3418
- "trap",
3419
- "treasure",
3420
- "trousers",
3421
- "understanding",
3422
- "unexpected",
3423
- "unhappy",
3424
- "urgent",
3425
- "uses",
 
3426
  "valuable",
3427
- "variety",
3428
- "weapons",
3429
- "weigh",
3430
- "wishes",
3431
- "wound",
 
3432
  "##!",
3433
  "##\"",
3434
  "##$",
3435
  "##%",
3436
  "##'",
3437
- "##(",
3438
- "##)",
3439
  "##,",
3440
  "##-",
3441
  "##.",
@@ -3443,7 +3441,6 @@
3443
  "##:",
3444
  "##;",
3445
  "##?",
3446
- "##@",
3447
  "##j",
3448
  "##q",
3449
  "##v",
@@ -3456,5 +3453,6 @@
3456
  "##’",
3457
  "##“",
3458
  "##”",
 
3459
  "##€"
3460
  ]
 
8
  "$",
9
  "%",
10
  "'",
 
 
11
  ",",
12
  "-",
13
  ".",
 
25
  ":",
26
  ";",
27
  "?",
 
28
  "a",
29
  "b",
30
  "c",
 
59
  "’",
60
  "“",
61
  "”",
62
+ "₂",
63
  "€",
64
  "the",
65
  "you",
 
88
  "at",
89
  "like",
90
  "she",
91
+ "be",
92
  "##s",
93
  "and",
94
+ "there",
95
  "with",
96
  "his",
 
97
  "not",
98
+ "go",
99
  "ll",
 
100
  "mary",
101
+ "how",
102
  "want",
103
  "please",
104
  "time",
 
 
105
  "up",
106
+ "know",
107
  "has",
 
108
  "as",
109
+ "did",
110
+ "here",
111
  "think",
112
  "will",
113
  "ve",
 
114
  "all",
 
115
  "about",
116
+ "if",
117
  "very",
118
+ "get",
119
  "when",
120
+ "good",
121
  "out",
122
  "by",
 
123
  "had",
124
  "from",
125
  "her",
 
126
  "no",
127
+ "him",
128
  "were",
129
  "going",
130
+ "an",
131
  "so",
132
+ "re",
133
  "come",
 
 
134
  "didn",
135
+ "let",
136
+ "one",
137
+ "would",
138
  "why",
139
+ "now",
140
+ "where",
141
  "french",
142
+ "take",
143
+ "been",
144
  "day",
145
+ "they",
146
+ "today",
147
  "than",
148
  "home",
 
149
  "isn",
 
 
150
  "got",
151
+ "but",
152
+ "just",
153
  "too",
154
  "who",
155
+ "much",
156
+ "see",
157
  "should",
 
158
  "could",
 
159
  "some",
 
 
 
 
160
  "##ed",
161
  "##ing",
 
162
  "car",
 
163
  "last",
164
+ "more",
165
+ "really",
166
+ "school",
167
+ "tomorrow",
168
  "eat",
169
+ "lot",
170
+ "tell",
171
  "work",
 
172
  "three",
 
 
 
 
173
  "never",
174
+ "money",
175
  "off",
176
+ "any",
177
+ "many",
178
  "room",
 
179
  "went",
180
+ "book",
181
+ "need",
182
+ "right",
183
+ "back",
184
  "house",
185
+ "help",
186
  "boston",
187
+ "people",
188
  "still",
189
+ "father",
190
+ "doesn",
191
  "may",
192
+ "two",
 
193
  "our",
194
  "make",
 
195
  "said",
 
196
  "every",
197
+ "buy",
198
+ "night",
 
199
  "give",
200
+ "long",
201
+ "does",
202
+ "next",
203
  "new",
204
  "yesterday",
 
 
 
205
  "say",
206
+ "##d",
207
+ "anything",
208
+ "speak",
209
  "old",
210
+ "something",
211
+ "before",
212
  "us",
 
 
213
  "thought",
214
+ "always",
215
  "into",
216
+ "years",
217
+ "better",
218
  "again",
219
+ "well",
 
220
  "way",
221
+ "little",
222
  "down",
223
+ "or",
224
  "put",
225
+ "made",
226
  "after",
227
  "left",
228
+ "over",
 
 
229
  "cold",
230
+ "late",
231
+ "mother",
232
+ "am",
233
  "morning",
234
+ "only",
 
235
  "look",
236
+ "name",
237
  "soon",
238
+ "read",
239
+ "train",
240
  "call",
 
 
 
 
 
241
  "bought",
242
  "first",
243
+ "must",
 
 
 
 
 
244
  "door",
245
+ "man",
246
+ "love",
247
+ "away",
248
+ "leave",
249
+ "doing",
250
+ "open",
251
+ "told",
252
  "won",
253
  "##ly",
 
 
254
  "children",
255
+ "stay",
256
+ "year",
257
+ "came",
258
+ "##er",
259
+ "live",
260
+ "rain",
261
  "week",
262
+ "dog",
263
  "play",
264
+ "sure",
 
265
  "hard",
266
+ "ever",
 
267
  "these",
268
+ "looking",
269
  "other",
270
+ "use",
271
+ "already",
272
+ "used",
273
  "turn",
274
+ "wait",
275
+ "sorry",
276
+ "talk",
277
+ "bad",
278
+ "station",
279
+ "days",
280
+ "coffee",
281
  "feel",
282
+ "keep",
283
+ "walk",
284
  "bus",
285
+ "ask",
286
  "nothing",
287
+ "often",
288
  "english",
289
  "water",
290
+ "bed",
 
 
 
 
291
  "drink",
 
 
 
 
 
292
  "because",
293
+ "took",
294
+ "wanted",
295
+ "understand",
296
+ "yet",
297
+ "lost",
298
  "saw",
299
+ "brother",
300
+ "job",
301
+ "around",
302
+ "true",
303
  "couldn",
304
+ "both",
 
 
305
  "try",
306
  "australia",
307
+ "friends",
 
 
 
 
 
 
308
  "stop",
309
+ "##y",
 
 
310
  "looks",
311
+ "teacher",
312
+ "while",
 
313
  "busy",
314
+ "which",
315
+ "kind",
316
+ "able",
317
+ "seen",
318
  "japan",
319
+ "friend",
320
+ "believe",
321
  "alone",
322
+ "heard",
323
+ "thank",
 
324
  "found",
325
+ "asked",
326
  "food",
327
+ "gave",
328
+ "phone",
329
+ "happy",
330
+ "early",
331
  "hear",
332
+ "things",
 
 
 
333
  "afraid",
334
+ "life",
335
+ "books",
336
+ "watch",
337
+ "ten",
338
+ "person",
339
+ "likes",
340
+ "once",
341
+ "their",
342
  "without",
 
 
 
 
 
343
  "party",
344
+ "few",
345
+ "everyone",
346
+ "find",
347
+ "tired",
348
  "same",
349
+ "wasn",
 
 
 
350
  "everything",
351
+ "best",
352
+ "dinner",
353
+ "wonder",
354
+ "nice",
355
  "parents",
 
 
 
 
 
356
  "place",
357
  "mind",
358
+ "remember",
359
+ "enough",
360
+ "haven",
361
  "married",
362
+ "them",
363
  "meet",
364
+ "thing",
365
+ "getting",
366
+ "study",
367
+ "hot",
368
  "idea",
369
+ "aren",
370
+ "big",
371
  "lunch",
372
+ "anyone",
 
 
 
373
  "problem",
374
+ "wish",
375
+ "since",
376
+ "tv",
377
+ "easy",
378
+ "high",
379
+ "beautiful",
380
+ "ok",
381
+ "someone",
382
+ "such",
383
+ "even",
384
  "plan",
385
+ "bit",
386
+ "matter",
387
+ "minutes",
388
+ "answer",
389
+ "being",
390
+ "difficult",
391
  "sleep",
392
+ "yourself",
393
+ "young",
394
+ "boy",
395
+ "doctor",
396
  "almost",
397
+ "until",
398
+ "usually",
399
+ "waiting",
400
  "letter",
401
+ "reading",
402
+ "met",
 
 
403
  "weather",
 
 
 
 
 
 
 
404
  "hope",
405
+ "knows",
406
+ "show",
407
+ "great",
408
+ "care",
409
+ "caught",
 
410
  "those",
 
411
  "write",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
412
  "turned",
413
+ "own",
414
+ "##t",
 
 
415
  "five",
416
+ "##n",
417
  "question",
418
  "swim",
 
 
 
 
 
 
419
  "##e",
420
+ "ate",
 
421
  "finished",
422
+ "accident",
423
+ "decided",
 
424
  "family",
425
+ "wrong",
 
 
 
 
 
 
426
  "tonight",
427
+ "done",
428
+ "hand",
429
+ "playing",
430
+ "sick",
431
+ "ago",
432
+ "happened",
433
+ "month",
434
+ "small",
435
+ "world",
436
+ "park",
437
+ "summer",
438
+ "cat",
439
+ "fun",
440
+ "coming",
441
+ "far",
442
+ "seems",
443
+ "clock",
444
  "myself",
445
  "picture",
446
+ "another",
 
 
 
 
 
 
 
447
  "working",
448
+ "eating",
449
+ "sister",
450
+ "girl",
 
451
  "light",
452
+ "started",
453
+ "talking",
454
+ "change",
455
  "fish",
456
+ "might",
457
+ "child",
458
+ "smoking",
459
+ "japanese",
460
+ "breakfast",
461
+ "drive",
462
  "looked",
463
+ "##r",
464
+ "arrived",
465
  "tried",
466
+ "each",
467
+ "window",
468
+ "eyes",
469
+ "homework",
470
+ "snow",
 
 
 
 
 
471
  "broke",
472
  "called",
473
+ "fell",
474
+ "everybody",
475
+ "movie",
476
+ "tennis",
477
+ "free",
478
+ "living",
479
+ "wife",
480
+ "class",
481
+ "interesting",
482
+ "run",
483
+ "gone",
484
  "near",
485
+ "wine",
486
+ "died",
 
 
 
 
487
  "times",
488
  "wearing",
489
+ "angry",
490
+ "hands",
491
+ "meeting",
492
+ "hours",
493
  "older",
 
 
 
 
494
  "shoes",
495
+ "##al",
496
+ "table",
497
+ "bicycle",
498
+ "business",
499
+ "hospital",
500
+ "tea",
501
+ "music",
502
+ "lives",
503
+ "raining",
504
+ "students",
505
+ "together",
506
+ "30",
507
+ "nobody",
508
+ "ready",
509
+ "close",
510
+ "hotel",
511
  "most",
 
 
512
  "six",
513
+ "asleep",
514
+ "city",
515
+ "start",
516
+ "studying",
517
+ "trip",
518
+ "goes",
519
+ "learn",
520
+ "longer",
521
  "number",
522
+ "game",
523
+ "large",
524
+ "later",
525
+ "ran",
526
+ "story",
527
+ "afternoon",
528
+ "baby",
529
+ "hurry",
530
+ "between",
531
+ "important",
532
  "wants",
533
+ "country",
 
 
 
 
534
  "hurt",
535
  "office",
536
+ "outside",
 
 
 
 
 
 
 
 
 
537
  "thirty",
538
+ "##a",
 
 
 
 
 
 
539
  "##es",
540
+ "forget",
541
+ "hungry",
542
+ "umbrella",
 
 
543
  "beer",
544
  "fast",
545
+ "fire",
546
+ "pretty",
547
  "forgot",
548
+ "born",
549
+ "expensive",
550
+ "knew",
 
 
551
  "pay",
552
+ "police",
553
+ "else",
554
+ "river",
555
+ "through",
556
+ "birthday",
557
+ "cut",
558
+ "hair",
559
+ "himself",
560
+ "bring",
561
+ "hate",
562
+ "quite",
563
+ "store",
564
+ "thanks",
565
+ "tokyo",
566
+ "truth",
567
  "anybody",
568
+ "box",
 
569
  "front",
570
+ "mine",
571
+ "shouldn",
572
+ "then",
573
  "hour",
574
+ "sit",
575
+ "become",
576
+ "closed",
577
  "news",
578
+ "favorite",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
579
  "red",
580
+ "worry",
581
+ "cost",
 
 
 
 
582
  "milk",
583
+ "monday",
584
+ "swimming",
585
+ "whether",
 
586
  "word",
587
+ "kept",
 
 
 
 
 
588
  "anymore",
589
+ "glad",
590
+ "wouldn",
591
+ "along",
592
+ "says",
593
+ "under",
594
+ "moment",
595
+ "taking",
596
+ "##able",
597
+ "head",
598
  "behind",
599
+ "catch",
600
+ "having",
601
+ "son",
602
+ "dark",
603
  "student",
604
+ "town",
605
+ "full",
606
+ "makes",
607
+ "began",
608
+ "short",
609
  "watching",
610
+ "age",
611
+ "christmas",
612
+ "cup",
613
+ "heavy",
614
+ "lived",
615
+ "comes",
616
+ "pass",
617
+ "felt",
618
+ "library",
619
+ "dollars",
620
  "eaten",
621
+ "hit",
622
+ "order",
623
+ "pain",
624
+ "yen",
625
  "flowers",
 
 
 
 
 
 
 
 
 
 
626
  "surprised",
 
 
 
 
627
  "##l",
 
 
 
 
 
 
 
 
628
  "rich",
629
+ "trouble",
630
+ "cake",
631
+ "stayed",
632
  "street",
633
+ "tree",
 
 
 
 
 
 
 
 
 
 
 
634
  "abroad",
635
+ "camera",
636
+ "win",
637
+ "happen",
638
+ "present",
639
+ "test",
640
+ "ticket",
641
+ "##ic",
642
+ "eggs",
643
+ "fine",
644
  "girlfriend",
645
+ "questions",
646
+ "college",
647
+ "dream",
648
+ "quickly",
649
+ "speaking",
650
  "stand",
651
+ "dictionary",
652
+ "dress",
653
+ "medicine",
654
+ "mistake",
655
  "possible",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
656
  "strange",
657
+ "became",
658
+ "pen",
659
+ "stopped",
660
+ "##ion",
661
+ "chance",
662
+ "clothes",
663
+ "making",
664
+ "prefer",
665
+ "wear",
666
+ "##ation",
667
  "advice",
668
+ "break",
669
  "listen",
670
+ "minute",
671
+ "rest",
672
+ "visit",
673
+ "bank",
674
+ "daughter",
675
+ "finally",
676
+ "die",
677
+ "hat",
678
+ "telephone",
679
+ "##ment",
680
  "interested",
 
 
 
681
  "whose",
682
+ "winter",
683
+ "face",
684
+ "restaurant",
685
+ "weight",
686
+ "baseball",
687
+ "bread",
688
+ "probably",
689
  "careful",
690
  "company",
691
+ "computer",
692
+ "gets",
693
+ "ice",
694
+ "lie",
695
+ "song",
696
  "agree",
697
+ "air",
698
+ "building",
699
+ "planning",
700
+ "quiet",
701
+ "bag",
702
+ "blue",
703
+ "forward",
704
+ "saying",
705
+ "shut",
706
+ "thinking",
707
+ "white",
708
+ "excuse",
709
  "key",
710
+ "seat",
711
+ "woman",
712
+ "also",
713
  "paper",
714
  "road",
715
+ "younger",
716
+ "clean",
717
+ "floor",
718
  "promise",
719
+ "sat",
720
+ "send",
721
+ "shop",
 
 
 
 
 
 
 
 
 
 
 
722
  "wrote",
723
+ "language",
724
+ "lend",
725
+ "quit",
726
  "rather",
727
+ "sometimes",
728
  "trying",
729
+ "black",
730
+ "concert",
731
+ "crying",
732
+ "desk",
733
+ "end",
734
  "others",
735
+ "radio",
 
 
 
 
 
 
 
 
736
  "secret",
737
  "sunday",
 
 
 
 
738
  "uncle",
739
+ "war",
740
+ "seeing",
741
+ "spent",
742
+ "##k",
743
+ "dogs",
744
+ "feeling",
745
+ "finish",
746
+ "men",
747
+ "miss",
748
+ "part",
749
+ "side",
750
+ "sun",
751
+ "broken",
752
+ "cats",
753
+ "dead",
754
+ "price",
755
  "glass",
756
+ "guy",
757
+ "mean",
758
  "plane",
 
759
  "smoke",
760
+ "vacation",
761
+ "walked",
762
+ "##ate",
763
  "##in",
764
+ "during",
765
+ "mountain",
766
+ "speaks",
767
+ "##age",
768
+ "point",
769
+ "set",
770
+ "case",
771
  "health",
772
+ "real",
773
+ "shopping",
 
 
 
 
 
 
774
  "across",
775
+ "exam",
776
+ "four",
777
+ "shirt",
778
+ "traffic",
779
+ "##ity",
780
+ "##th",
781
+ "against",
782
+ "check",
783
  "cook",
784
+ "drunk",
785
+ "evening",
786
+ "hold",
787
+ "known",
788
+ "piano",
789
+ "seven",
790
  "taxi",
 
 
 
 
 
 
 
 
 
 
791
  "travel",
792
+ "works",
793
+ "##i",
794
+ "##le",
795
+ "000",
796
+ "apples",
797
+ "its",
798
+ "rice",
799
+ "taken",
800
+ "delicious",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
801
  "mistakes",
802
  "movies",
 
803
  "reason",
804
+ "words",
805
+ "worried",
806
+ "##ies",
807
+ "borrow",
808
+ "coat",
809
+ "driving",
810
+ "passed",
811
+ "pick",
812
+ "touch",
813
+ "whole",
814
+ "driver",
815
+ "kid",
816
+ "pictures",
817
+ "seem",
818
+ "somebody",
819
  "tall",
820
+ "apple",
821
+ "exactly",
822
+ "half",
823
+ "novel",
824
+ "sitting",
825
+ "stupid",
826
  "##an",
827
+ "changed",
828
+ "garden",
829
+ "husband",
830
+ "kids",
831
+ "newspaper",
832
+ "walking",
833
+ "wash",
834
+ "wind",
835
+ "least",
836
+ "played",
837
+ "sleepy",
838
+ "##0",
839
+ "##o",
840
  "absent",
841
+ "empty",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
842
  "hardly",
843
+ "meat",
844
+ "move",
845
+ "pizza",
846
+ "soccer",
847
+ "sound",
848
+ "spring",
849
  "trust",
850
+ "worked",
851
+ "##or",
852
+ "bath",
853
+ "blood",
854
+ "death",
855
  "glasses",
856
  "horse",
857
+ "shower",
858
+ "suddenly",
859
+ "weekend",
860
+ "women",
861
+ "##ist",
862
+ "##nt",
863
+ "drinking",
864
  "killed",
865
  "line",
866
+ "mad",
867
+ "sing",
868
+ "##ful",
869
+ "brought",
870
+ "famous",
871
+ "hasn",
872
+ "lights",
873
  "lying",
874
+ "noise",
875
+ "rains",
876
+ "slowly",
877
+ "staying",
878
+ "airport",
879
+ "clear",
880
+ "earlier",
881
+ "enjoy",
 
 
 
 
882
  "explain",
883
+ "grandfather",
884
+ "leaving",
885
+ "moon",
886
+ "needs",
887
+ "running",
888
+ "somewhere",
889
+ "stolen",
890
  "strong",
891
+ "television",
892
+ "tie",
893
+ "##ling",
894
  "carry",
895
+ "chair",
896
+ "cry",
897
+ "difference",
898
+ "opened",
 
 
 
 
899
  "second",
 
900
  "sleeping",
 
 
 
 
901
  "takes",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
902
  "##ine",
903
+ "##on",
904
+ "address",
905
  "cream",
906
+ "gift",
907
+ "girls",
908
+ "past",
909
+ "serious",
910
+ "success",
911
+ "##ting",
912
  "cannot",
913
+ "earth",
914
+ "easily",
915
+ "fishing",
916
+ "loves",
917
+ "machine",
918
+ "poor",
919
+ "though",
920
+ "wake",
921
+ "##h",
922
+ "arrive",
923
+ "hundred",
924
  "knife",
925
+ "mom",
926
+ "mouth",
927
+ "recently",
928
+ "sight",
929
+ "warm",
930
+ "yes",
931
  "##id",
932
+ "apologize",
933
+ "bike",
934
+ "lose",
935
+ "10",
936
  "cheese",
937
+ "held",
938
+ "lake",
939
+ "scared",
940
+ "spend",
 
 
 
 
 
 
 
 
 
 
941
  "translate",
942
+ "wallet",
943
+ "writing",
 
 
944
  "beach",
 
 
 
 
 
 
 
 
 
 
 
 
945
  "begin",
946
+ "card",
947
+ "either",
948
+ "john",
949
+ "ride",
950
+ "sea",
951
+ "sky",
 
 
952
  "talked",
953
+ "cheap",
954
+ "fault",
955
+ "guys",
956
+ "helped",
957
+ "hurts",
958
+ "kissed",
959
+ "languages",
960
+ "salt",
961
+ "smell",
962
+ "##ant",
963
+ "boyfriend",
964
+ "church",
965
+ "completely",
 
966
  "foreign",
967
+ "injured",
968
+ "nervous",
969
+ "opinion",
970
+ "##it",
971
+ "arm",
972
+ "follow",
973
+ "heart",
974
+ "impossible",
975
+ "less",
976
+ "report",
977
+ "safe",
978
+ "till",
979
+ "trees",
980
+ "voice",
981
+ "##ated",
982
+ "actually",
983
+ "boys",
984
  "guitar",
985
+ "learned",
986
+ "listening",
987
+ "moved",
988
+ "paid",
989
+ "return",
990
+ "sent",
991
+ "team",
992
+ "yours",
993
+ "##est",
994
+ "##ive",
995
+ "##ow",
996
+ "bottle",
997
+ "cooking",
998
+ "couple",
999
+ "fruit",
1000
+ "future",
1001
+ "means",
1002
+ "october",
1003
+ "rang",
1004
+ "sense",
1005
+ "solve",
1006
+ "sugar",
1007
+ "tastes",
1008
+ "wall",
1009
+ "watched",
1010
+ "weeks",
1011
+ "##ers",
1012
+ "##ned",
1013
  "afford",
1014
+ "america",
1015
+ "animals",
1016
+ "different",
1017
  "expect",
1018
+ "eye",
1019
  "foot",
1020
+ "immediately",
 
1021
  "invited",
1022
+ "kitchen",
1023
+ "sad",
1024
+ "spoke",
1025
+ "storm",
1026
+ "##ct",
 
 
1027
  "cool",
1028
+ "covered",
1029
+ "cute",
1030
+ "dangerous",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1031
  "plans",
1032
+ "thinks",
1033
+ "waited",
1034
+ "##ped",
1035
+ "##se",
1036
+ "ball",
1037
+ "distance",
1038
+ "drank",
1039
+ "maybe",
1040
+ "missed",
1041
+ "pencil",
1042
+ "sell",
1043
  "smart",
1044
+ "succeed",
1045
+ "university",
 
 
 
1046
  "windows",
 
 
 
1047
  "built",
1048
+ "common",
1049
+ "expected",
1050
+ "leaves",
1051
+ "map",
1052
+ "mt",
1053
+ "post",
1054
+ "several",
1055
+ "showed",
1056
+ "sign",
1057
+ "situation",
1058
+ "soup",
1059
+ "##ary",
1060
+ "##ible",
1061
+ "##less",
1062
+ "button",
1063
+ "cars",
1064
  "color",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1065
  "deal",
1066
+ "grew",
1067
+ "grow",
1068
+ "math",
1069
+ "nine",
1070
+ "rained",
1071
+ "sooner",
1072
+ "supposed",
1073
+ "village",
1074
+ "worth",
1075
+ "anywhere",
1076
+ "date",
1077
+ "drop",
1078
  "favor",
 
 
 
1079
  "hey",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1080
  "translated",
1081
+ "##ry",
1082
+ "eight",
1083
+ "information",
1084
+ "liked",
1085
+ "lots",
1086
+ "season",
 
 
 
 
 
 
1087
  "supper",
1088
+ "teeth",
1089
+ "00",
1090
+ "alive",
1091
+ "choose",
1092
+ "correct",
1093
+ "count",
1094
+ "ill",
1095
+ "inside",
1096
+ "keys",
1097
+ "received",
1098
+ "telling",
1099
+ "top",
1100
+ "usual",
1101
+ "visited",
1102
+ "##ical",
1103
+ "##ish",
1104
+ "##ted",
1105
+ "bill",
1106
+ "bridge",
1107
+ "carefully",
1108
+ "classroom",
1109
+ "fix",
1110
+ "fuji",
1111
+ "gas",
1112
+ "kill",
1113
+ "laughed",
1114
+ "ought",
1115
+ "seemed",
1116
+ "shall",
1117
+ "supermarket",
1118
+ "sweater",
1119
+ "tickets",
1120
+ "wet",
1121
+ "written",
1122
  "##ial",
1123
+ "dance",
1124
+ "learning",
1125
+ "missing",
1126
+ "perfect",
1127
+ "rent",
1128
+ "taste",
1129
+ "teach",
1130
+ "wedding",
1131
+ "##at",
1132
+ "##ous",
1133
+ "bird",
1134
+ "cards",
1135
+ "guess",
1136
+ "happens",
1137
+ "history",
1138
+ "joke",
1139
+ "laugh",
1140
+ "loved",
1141
+ "mail",
1142
+ "months",
1143
+ "passport",
1144
+ "refrigerator",
1145
+ "sentence",
1146
+ "sports",
1147
+ "##ch",
1148
+ "calm",
1149
  "disappointed",
1150
+ "dishes",
1151
+ "failed",
1152
+ "fall",
1153
+ "locked",
1154
+ "lucky",
1155
+ "mood",
1156
+ "woke",
1157
+ "##et",
1158
+ "##ure",
1159
+ "##ve",
1160
+ "ahead",
1161
+ "apartment",
1162
+ "choice",
1163
+ "credit",
1164
+ "diet",
1165
+ "enjoyed",
1166
+ "feet",
1167
  "football",
1168
+ "funny",
1169
+ "golf",
1170
+ "grandmother",
1171
  "green",
1172
+ "harder",
1173
+ "herself",
 
 
 
 
 
 
 
 
 
 
1174
  "match",
1175
+ "sounds",
 
 
 
 
 
1176
  "suitcase",
1177
+ "thousand",
1178
+ "truck",
1179
+ "waste",
1180
+ "##ness",
1181
+ "##us",
1182
+ "add",
1183
+ "area",
1184
+ "canadian",
1185
+ "club",
1186
+ "fever",
1187
+ "given",
1188
+ "leg",
1189
+ "piece",
1190
+ "pond",
1191
+ "popular",
1192
+ "roof",
1193
+ "rule",
1194
+ "rumor",
1195
+ "shot",
1196
+ "singing",
1197
+ "standing",
1198
+ "terrible",
1199
  "throw",
1200
+ "##ance",
1201
  "arrested",
1202
+ "birds",
1203
+ "contact",
1204
+ "enter",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1205
  "fat",
1206
  "flower",
1207
+ "headache",
1208
+ "join",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1209
  "kiss",
1210
+ "law",
1211
+ "museum",
1212
+ "none",
1213
  "seldom",
1214
+ "single",
1215
+ "skiing",
1216
+ "studied",
1217
  "traveling",
1218
+ "##man",
1219
+ "##ter",
1220
+ "##ts",
1221
+ "danger",
1222
+ "earthquake",
1223
+ "faster",
1224
+ "neither",
1225
+ "returned",
1226
+ "speech",
1227
+ "suit",
1228
+ "twenty",
1229
+ "##ating",
1230
+ "##ue",
1231
+ "appreciate",
1232
+ "brothers",
1233
+ "cherry",
1234
  "chocolate",
1235
+ "corner",
1236
+ "drinks",
1237
+ "eats",
1238
+ "handed",
1239
+ "honest",
1240
+ "keeps",
1241
+ "lawyer",
1242
+ "license",
1243
+ "list",
1244
+ "london",
1245
+ "necessary",
1246
+ "oil",
1247
+ "problems",
1248
+ "promised",
1249
+ "ship",
1250
+ "sofa",
1251
+ "tears",
1252
+ "##ction",
1253
+ "##ent",
1254
+ "##les",
1255
+ "##st",
1256
+ "##ty",
1257
+ "comfortable",
1258
  "dad",
1259
+ "except",
1260
+ "fresh",
1261
+ "jacket",
1262
+ "legs",
1263
  "lied",
1264
+ "marry",
1265
+ "page",
1266
+ "reached",
1267
+ "spoken",
1268
+ "temperature",
1269
+ "washing",
1270
+ "##ce",
1271
+ "agreed",
1272
+ "asking",
1273
+ "butter",
1274
+ "cash",
1275
+ "charge",
1276
+ "course",
1277
+ "decision",
1278
+ "dirty",
1279
+ "fixed",
1280
+ "gotten",
1281
+ "low",
1282
+ "noon",
1283
+ "rules",
1284
+ "stole",
1285
  "##led",
 
1286
  "##p",
1287
+ "advised",
1288
+ "boss",
1289
+ "cookies",
1290
+ "due",
1291
+ "europe",
1292
+ "native",
1293
+ "needed",
1294
+ "public",
1295
  "raise",
1296
+ "sisters",
1297
+ "states",
1298
+ "sweet",
1299
+ "talks",
1300
  "vegetables",
1301
+ "whenever",
1302
+ "##ack",
1303
+ "##am",
 
 
 
 
 
 
 
 
1304
  "##b",
1305
+ "##ite",
1306
+ "above",
1307
+ "account",
1308
+ "bite",
1309
+ "deep",
1310
+ "examination",
1311
+ "experience",
 
 
1312
  "hates",
1313
+ "letters",
1314
+ "likely",
1315
+ "ordered",
1316
+ "runs",
1317
+ "singer",
 
 
 
 
1318
  "taught",
 
1319
  "threw",
1320
+ "##ar",
1321
  "##en",
1322
+ "##g",
1323
+ "##rs",
1324
+ "attend",
1325
+ "bear",
1326
+ "boat",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1327
  "extremely",
1328
+ "heat",
1329
+ "lock",
1330
+ "meal",
1331
+ "pool",
1332
+ "saturday",
1333
+ "sold",
1334
+ "stomach",
1335
+ "strawberries",
1336
+ "subject",
1337
+ "united",
1338
+ "washed",
1339
  "whatever",
1340
+ "##ile",
1341
+ "##ise",
1342
+ "##re",
1343
+ "accept",
1344
+ "attention",
1345
+ "climb",
 
1346
  "crowded",
1347
+ "entered",
1348
+ "healthy",
1349
+ "instead",
1350
+ "meaning",
1351
+ "someday",
1352
+ "stood",
 
 
 
1353
  "stuck",
1354
+ "twice",
1355
+ "within",
1356
  "york",
1357
  "##5",
1358
  "##ia",
1359
+ "##ily",
1360
+ "##red",
1361
+ "20",
1362
+ "american",
1363
+ "bench",
1364
  "breath",
1365
  "burned",
1366
+ "calling",
1367
+ "depressed",
1368
+ "dropped",
1369
+ "holiday",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1370
  "laughing",
1371
+ "lonely",
1372
+ "notice",
1373
+ "patient",
1374
+ "peace",
1375
+ "plays",
1376
+ "population",
1377
+ "save",
1378
  "schedule",
1379
+ "seriously",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1380
  "silent",
1381
  "slept",
1382
+ "snowing",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1383
  "tag",
1384
+ "using",
1385
+ "##il",
 
 
 
 
 
 
 
1386
  "##ut",
1387
+ "admitted",
1388
+ "aware",
1389
+ "cause",
1390
+ "chicken",
1391
+ "decide",
1392
+ "fail",
1393
+ "games",
1394
+ "hang",
1395
+ "picnic",
1396
+ "plenty",
1397
+ "policeman",
1398
+ "size",
1399
+ "smile",
1400
+ "thirteen",
1401
+ "weren",
1402
+ "##ip",
1403
+ "##ping",
1404
+ "bathroom",
1405
+ "cheaper",
1406
+ "crazy",
1407
+ "dating",
1408
+ "dreams",
1409
+ "feelings",
1410
+ "fly",
1411
  "gate",
1412
  "god",
1413
+ "gun",
1414
+ "lady",
 
1415
  "lately",
1416
+ "luck",
1417
+ "managed",
1418
+ "nearby",
1419
+ "nearest",
1420
+ "nor",
1421
+ "nose",
1422
+ "oh",
1423
+ "pair",
1424
+ "pocket",
1425
  "sale",
1426
+ "##aking",
1427
+ "##m",
 
 
1428
  "##os",
1429
+ "##ss",
1430
+ "##tion",
1431
+ "allowed",
 
1432
  "bored",
1433
+ "clouds",
1434
+ "diary",
1435
+ "fact",
1436
+ "factory",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1437
  "fired",
1438
+ "flight",
1439
+ "ghosts",
1440
+ "graduated",
1441
+ "ground",
1442
+ "hobby",
1443
  "kilometers",
1444
+ "lies",
1445
+ "meant",
 
 
1446
  "picked",
 
1447
  "rarely",
1448
+ "repaired",
1449
+ "reply",
1450
  "result",
1451
+ "ring",
1452
+ "rope",
1453
+ "satisfied",
1454
+ "stars",
1455
+ "wonderful",
1456
+ "acted",
 
 
 
 
 
 
 
 
1457
  "basketball",
1458
+ "body",
1459
+ "burst",
1460
+ "certain",
1461
+ "doubt",
1462
+ "feels",
1463
+ "hole",
1464
+ "hung",
1465
+ "lay",
1466
+ "noticed",
1467
+ "remained",
1468
+ "roses",
1469
+ "sharp",
1470
+ "smells",
1471
+ "special",
1472
+ "starting",
1473
+ "sundays",
1474
+ "thief",
1475
+ "third",
1476
+ "throat",
1477
+ "tongue",
1478
+ "warmer",
1479
+ "##9",
1480
+ "##as",
1481
+ "##ble",
1482
+ "##cted",
1483
+ "##ged",
1484
+ "##ide",
1485
+ "##is",
1486
+ "##op",
1487
+ "##pt",
1488
+ "##um",
1489
+ "100",
1490
+ "climbed",
1491
+ "complaining",
1492
+ "countries",
1493
+ "crowd",
1494
+ "easier",
1495
+ "fifty",
1496
+ "habit",
1497
+ "island",
1498
+ "kinds",
1499
+ "meals",
1500
+ "orange",
1501
+ "pale",
1502
+ "paris",
1503
+ "prices",
1504
+ "project",
1505
+ "sore",
1506
+ "stone",
1507
+ "stops",
1508
+ "taller",
1509
+ "teaching",
1510
+ "temple",
1511
+ "zoo",
1512
+ "##ade",
1513
+ "##ge",
1514
+ "##ging",
1515
+ "##hip",
1516
+ "##ition",
1517
+ "##ks",
1518
+ "##sed",
1519
+ "##ving",
1520
+ "accustomed",
1521
+ "allow",
1522
+ "art",
1523
+ "beginning",
1524
+ "bell",
1525
+ "blame",
1526
+ "chinese",
1527
+ "cleaning",
1528
+ "draw",
1529
+ "dressed",
1530
+ "ended",
1531
+ "hadn",
1532
+ "handle",
1533
+ "lift",
1534
+ "mathematics",
1535
+ "painted",
1536
+ "perhaps",
1537
+ "player",
1538
+ "pleased",
1539
+ "prize",
1540
+ "proposal",
1541
+ "pulled",
1542
+ "rainy",
1543
+ "raised",
1544
+ "results",
1545
+ "seats",
1546
+ "upset",
1547
+ "view",
1548
+ "worse",
1549
+ "##2",
1550
+ "##ian",
1551
+ "##ied",
1552
+ "##ons",
1553
+ "##u",
1554
+ "begins",
1555
+ "caused",
1556
+ "childhood",
1557
+ "continued",
1558
+ "enemy",
1559
+ "escaped",
1560
+ "familiar",
1561
+ "fill",
1562
+ "furniture",
1563
+ "grass",
1564
+ "helping",
1565
+ "illness",
1566
+ "king",
1567
+ "loud",
1568
+ "nearly",
1569
+ "parking",
1570
+ "practice",
1571
+ "prevented",
1572
+ "prison",
1573
+ "proud",
1574
+ "sort",
1575
+ "surprise",
1576
+ "toilet",
1577
+ "twelve",
1578
+ "typhoon",
1579
+ "wore",
1580
+ "##4",
1581
+ "##dy",
1582
+ "##ner",
1583
+ "##rate",
1584
+ "##tle",
1585
  "##ug",
1586
+ "##ute",
1587
+ "##w",
1588
  "2013",
1589
+ "according",
1590
+ "airplane",
1591
+ "answered",
1592
+ "cancer",
 
1593
  "cookie",
1594
+ "cried",
1595
+ "divorced",
1596
  "doors",
1597
+ "eleven",
1598
+ "email",
1599
+ "exercise",
1600
+ "fog",
1601
+ "france",
1602
+ "fridge",
1603
+ "goodbye",
1604
+ "handsome",
1605
+ "hearing",
1606
+ "hid",
1607
+ "holidays",
1608
+ "intelligent",
1609
+ "larger",
1610
+ "middle",
1611
+ "motorcycle",
1612
+ "nurse",
1613
+ "offer",
1614
+ "oranges",
1615
+ "painting",
1616
+ "passengers",
1617
+ "president",
1618
+ "push",
1619
+ "race",
1620
+ "rid",
1621
+ "spare",
1622
+ "stamps",
1623
+ "totally",
1624
+ "type",
1625
+ "unfortunately",
1626
+ "unless",
1627
+ "##and",
1628
+ "##are",
1629
+ "##na",
1630
+ "##ors",
1631
+ "admit",
1632
+ "appointment",
1633
+ "april",
1634
+ "blossoms",
1635
+ "borrowed",
1636
+ "build",
1637
+ "center",
1638
+ "chess",
1639
+ "classes",
1640
+ "discuss",
1641
+ "ears",
1642
+ "egg",
1643
+ "elevator",
1644
  "feed",
1645
+ "hide",
 
 
1646
  "hill",
 
 
 
1647
  "jam",
1648
+ "juice",
1649
+ "june",
1650
+ "laundry",
1651
+ "noisy",
1652
+ "photo",
1653
+ "purpose",
1654
+ "reservation",
1655
+ "rock",
1656
+ "rude",
1657
+ "salary",
1658
+ "snakes",
1659
+ "speaker",
1660
+ "step",
1661
+ "stranger",
1662
+ "sudden",
1663
+ "towel",
1664
+ "woods",
1665
+ "##ative",
1666
+ "##by",
1667
+ "##ire",
1668
+ "##king",
1669
+ "##one",
1670
+ "##ore",
1671
+ "##ries",
1672
+ "##ved",
1673
+ "apart",
1674
+ "appeared",
1675
+ "castle",
1676
+ "dentist",
1677
+ "depends",
1678
+ "fallen",
1679
+ "gold",
1680
+ "hello",
1681
+ "hiding",
1682
  "jump",
1683
+ "magazine",
1684
+ "mask",
1685
+ "member",
1686
+ "miles",
1687
+ "mouse",
1688
+ "neighbors",
1689
  "ocean",
 
 
 
 
1690
  "recommend",
1691
+ "regret",
1692
  "relieved",
1693
+ "respect",
1694
+ "round",
1695
  "sandwich",
1696
+ "similar",
1697
+ "skirt",
1698
+ "thirsty",
1699
+ "useful",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1700
  "##3",
 
1701
  "##ay",
1702
+ "##ched",
1703
+ "##gy",
1704
+ "##hy",
1705
+ "##ier",
1706
+ "##im",
1707
+ "##ious",
1708
+ "##ur",
1709
+ "##way",
1710
+ "accidents",
1711
  "average",
1712
+ "buying",
1713
+ "calls",
1714
+ "capital",
1715
+ "chicago",
1716
+ "concerned",
1717
  "dying",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1718
  "engine",
1719
+ "everywhere",
1720
+ "exhausted",
1721
+ "frankly",
1722
+ "friendly",
1723
+ "guilty",
1724
  "jackson",
1725
+ "joking",
1726
+ "kidding",
1727
  "lovely",
1728
+ "mistaken",
1729
+ "mondays",
1730
+ "non",
1731
+ "pants",
1732
+ "raw",
1733
+ "realized",
1734
  "repair",
1735
+ "ringing",
1736
+ "slow",
1737
+ "socks",
1738
+ "stairs",
1739
+ "traveled",
1740
+ "workers",
1741
+ "##ain",
1742
+ "##ap",
1743
+ "##ber",
1744
+ "##dle",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1745
  "##ities",
 
 
1746
  "##ns",
1747
+ "##te",
1748
+ "##zing",
1749
+ "acquainted",
1750
+ "aunt",
1751
+ "avoid",
1752
+ "belong",
1753
+ "bigger",
1754
+ "brown",
1755
+ "carried",
1756
+ "clearly",
1757
+ "control",
1758
+ "costs",
1759
+ "cross",
 
1760
  "department",
1761
+ "entrance",
1762
+ "excellent",
1763
+ "fool",
1764
+ "gloves",
 
 
 
 
 
1765
  "human",
1766
+ "jeans",
1767
+ "ladder",
1768
+ "lent",
1769
+ "loss",
1770
+ "names",
1771
+ "natural",
1772
+ "pie",
 
 
 
 
 
1773
  "places",
1774
+ "quietly",
1775
+ "reach",
1776
+ "shoulders",
1777
+ "video",
1778
+ "wherever",
1779
+ "writer",
1780
+ "##6",
1781
+ "##all",
1782
+ "##ase",
1783
+ "##ces",
1784
+ "##cy",
1785
+ "##ding",
1786
+ "##ice",
1787
+ "##ized",
1788
+ "##ne",
1789
+ "##ove",
1790
+ "abandoned",
1791
+ "absolutely",
1792
+ "accused",
1793
+ "awake",
1794
+ "believed",
1795
+ "believes",
 
 
 
 
 
 
 
1796
  "bookstore",
1797
+ "bottom",
 
 
1798
  "continue",
1799
+ "difficulty",
1800
+ "duty",
1801
+ "excited",
1802
+ "farm",
1803
+ "fear",
1804
+ "fight",
1805
+ "figure",
1806
+ "finger",
1807
+ "fit",
1808
+ "fond",
1809
+ "friday",
1810
+ "german",
1811
+ "hall",
1812
+ "happiness",
1813
+ "imagine",
1814
+ "listened",
1815
+ "major",
1816
+ "message",
1817
+ "nap",
1818
+ "particular",
1819
+ "personal",
1820
+ "pressure",
1821
+ "shelf",
1822
+ "shorter",
1823
+ "smiling",
1824
+ "spread",
1825
+ "suicide",
1826
+ "sushi",
1827
+ "temper",
1828
+ "terms",
1829
+ "theater",
1830
+ "upstairs",
1831
+ "weird",
1832
+ "wood",
1833
+ "##der",
1834
+ "##imate",
1835
+ "##ised",
1836
+ "##land",
1837
+ "##lies",
1838
+ "##sy",
1839
+ "##x",
1840
+ "alcohol",
1841
+ "americans",
1842
+ "animal",
1843
+ "beat",
1844
+ "beauty",
1845
+ "belongs",
1846
+ "below",
1847
+ "brush",
1848
+ "canceled",
1849
+ "cover",
1850
+ "crime",
1851
+ "diamond",
1852
+ "document",
1853
+ "dry",
1854
+ "eighteen",
1855
  "exchange",
1856
+ "explanation",
1857
+ "filled",
1858
+ "forest",
1859
+ "forgive",
1860
+ "further",
1861
+ "goal",
 
1862
  "honey",
1863
+ "interpreter",
 
1864
  "introduce",
1865
+ "kicked",
1866
+ "laptop",
1867
+ "lower",
1868
+ "metal",
 
1869
  "meters",
1870
+ "million",
1871
+ "mountains",
1872
+ "neighbor",
1873
+ "normal",
1874
+ "pieces",
1875
+ "poem",
1876
+ "press",
1877
+ "pretended",
1878
+ "rabbit",
 
 
 
 
 
1879
  "salad",
1880
+ "ski",
1881
+ "skin",
1882
+ "star",
1883
+ "starts",
1884
+ "teachers",
1885
+ "tooth",
1886
+ "unable",
1887
+ "wears",
1888
+ "youngest",
 
 
 
 
 
 
 
 
 
 
1889
  "##ach",
1890
+ "##elf",
1891
+ "##ising",
 
 
 
 
 
 
1892
  "##ited",
1893
+ "##ning",
1894
+ "##ose",
1895
+ "##ound",
1896
+ "act",
1897
+ "advance",
1898
+ "alarm",
1899
+ "allergic",
1900
+ "among",
1901
+ "blew",
1902
+ "board",
1903
+ "canada",
1904
+ "candy",
1905
+ "cap",
 
 
1906
  "china",
1907
+ "considered",
1908
+ "copy",
1909
  "couch",
1910
+ "curtain",
1911
+ "customers",
1912
+ "express",
1913
+ "fashion",
1914
+ "government",
1915
+ "ideas",
1916
+ "ink",
1917
+ "intend",
1918
+ "involved",
1919
+ "kindness",
1920
+ "lightning",
1921
+ "main",
1922
+ "mention",
1923
+ "named",
1924
+ "ones",
1925
+ "pencils",
1926
+ "pepper",
1927
+ "refused",
1928
+ "sandwiches",
1929
+ "science",
1930
+ "served",
1931
+ "speed",
1932
+ "straight",
1933
+ "stronger",
1934
+ "tallest",
1935
+ "trains",
1936
+ "welcome",
1937
+ "wild",
1938
+ "yellow",
1939
+ "##cle",
1940
+ "##f",
1941
+ "##iable",
1942
+ "##ir",
1943
+ "##line",
1944
+ "##me",
1945
+ "##ology",
1946
+ "##oon",
1947
+ "##ort",
1948
+ "##posed",
1949
+ "##rated",
1950
+ "##ring",
1951
+ "##ture",
1952
+ "300",
1953
+ "available",
1954
+ "boring",
1955
+ "breaking",
1956
+ "bright",
1957
+ "cleaned",
1958
+ "clever",
1959
+ "confused",
1960
+ "cooked",
1961
+ "dessert",
1962
+ "doll",
1963
  "drew",
1964
  "ear",
1965
+ "education",
1966
+ "engaged",
1967
+ "fifteen",
1968
+ "finding",
1969
+ "following",
1970
+ "form",
1971
+ "forty",
1972
  "gentleman",
 
1973
  "gym",
1974
+ "happening",
1975
+ "houses",
1976
+ "jumped",
1977
+ "knowing",
1978
+ "louder",
 
 
1979
  "marriage",
1980
+ "midnight",
1981
+ "mobile",
1982
+ "neighborhood",
1983
+ "obvious",
1984
+ "overseas",
1985
+ "paint",
1986
+ "planned",
1987
+ "relax",
1988
+ "restaurants",
1989
+ "safety",
1990
+ "shy",
1991
+ "simple",
1992
+ "stubborn",
1993
+ "succeeded",
1994
+ "tax",
1995
  "thick",
1996
+ "twin",
1997
+ "understood",
1998
+ "wise",
1999
  "yard",
2000
+ "##ail",
2001
+ "##ast",
2002
+ "##cious",
2003
+ "##ear",
2004
+ "##iled",
2005
+ "##ined",
2006
+ "##ires",
2007
+ "##itive",
 
 
 
 
2008
  "##ium",
2009
+ "##ls",
2010
+ "##nd",
2011
+ "##ust",
2012
+ "50",
2013
+ "ability",
2014
+ "absorbed",
2015
+ "accepted",
2016
+ "apologized",
2017
+ "arms",
2018
+ "bags",
2019
+ "barely",
2020
+ "beef",
2021
+ "beside",
2022
+ "bitten",
2023
+ "blowing",
2024
+ "bother",
 
 
 
2025
  "carpet",
2026
+ "cd",
 
2027
  "computers",
2028
  "condition",
2029
+ "definitely",
2030
+ "degrees",
 
2031
  "equal",
2032
+ "failure",
2033
+ "falling",
2034
+ "fence",
 
2035
  "fighting",
2036
+ "film",
2037
+ "followed",
2038
+ "handwriting",
2039
+ "hated",
2040
+ "helps",
2041
+ "holding",
2042
  "humid",
2043
+ "interest",
2044
+ "invitation",
2045
+ "invite",
2046
+ "judge",
2047
+ "notebook",
2048
+ "nowadays",
 
 
 
2049
  "occurred",
2050
+ "promises",
2051
+ "quick",
2052
+ "rate",
2053
+ "solution",
2054
+ "sometime",
 
 
 
 
 
 
2055
  "songs",
 
2056
  "sport",
2057
+ "stick",
2058
+ "stuff",
2059
+ "tail",
 
 
 
 
 
 
 
 
2060
  "toy",
2061
+ "treat",
2062
+ "web",
2063
+ "winning",
2064
+ "worst",
2065
+ "wrap",
2066
+ "##ag",
2067
+ "##ale",
2068
+ "##ered",
2069
+ "##erve",
2070
+ "##her",
2071
+ "##ick",
2072
+ "##ill",
2073
+ "##ions",
2074
+ "##ll",
2075
+ "##ories",
2076
+ "##orn",
2077
+ "##ost",
2078
+ "##ray",
2079
+ "##time",
2080
+ "##ugs",
 
 
 
 
 
 
 
 
2081
  "##up",
2082
+ "##ware",
2083
+ "##ze",
2084
+ "anyway",
2085
+ "attack",
2086
+ "attended",
2087
+ "audience",
2088
+ "baked",
2089
+ "becoming",
2090
+ "cab",
2091
+ "careless",
2092
+ "cell",
2093
+ "certainly",
2094
+ "checked",
2095
  "consider",
2096
+ "courage",
2097
+ "cups",
2098
+ "curry",
2099
+ "dancing",
2100
+ "disease",
2101
+ "divorce",
 
 
2102
  "ends",
2103
+ "escape",
2104
+ "fox",
2105
+ "generally",
2106
+ "group",
2107
+ "huge",
2108
+ "increase",
2109
+ "innocent",
2110
+ "largest",
2111
+ "lines",
2112
+ "okay",
2113
+ "opportunity",
2114
+ "oven",
2115
+ "pajamas",
2116
+ "plants",
2117
+ "professor",
2118
+ "puppy",
2119
+ "recognize",
2120
+ "rely",
2121
+ "rose",
2122
+ "santa",
2123
+ "scene",
2124
+ "share",
2125
+ "shoulder",
2126
+ "slight",
2127
+ "soldiers",
2128
+ "sons",
2129
+ "sour",
2130
+ "space",
2131
+ "suspect",
2132
+ "treated",
2133
+ "unlikely",
2134
+ "visiting",
2135
+ "worn",
2136
+ "yourselves",
2137
+ "##ard",
2138
+ "##ars",
2139
+ "##ations",
2140
+ "##ats",
2141
+ "##bed",
2142
+ "##ches",
2143
+ "##ck",
2144
+ "##cts",
2145
+ "##ds",
2146
+ "##house",
2147
+ "##ication",
2148
+ "##ished",
2149
+ "##men",
2150
+ "##ney",
2151
+ "##ory",
2152
+ "##pted",
2153
+ "##ution",
2154
+ "ages",
2155
+ "amount",
2156
+ "badly",
2157
+ "behavior",
2158
+ "birth",
2159
+ "bitter",
2160
+ "captain",
2161
+ "cigarettes",
2162
+ "closer",
2163
+ "convinced",
2164
+ "crossed",
2165
+ "destroyed",
2166
+ "dollar",
2167
+ "ease",
2168
+ "envelope",
2169
+ "exist",
2170
+ "fair",
2171
+ "fingers",
2172
  "flu",
2173
+ "flying",
2174
+ "frozen",
2175
+ "gained",
2176
+ "grade",
2177
+ "insects",
2178
+ "intended",
2179
+ "invented",
2180
  "iron",
2181
+ "jealous",
 
 
 
2182
  "knowledge",
2183
+ "lion",
2184
+ "matters",
2185
  "memory",
2186
+ "mirror",
2187
+ "moving",
2188
  "mud",
2189
+ "nonsense",
2190
+ "north",
2191
+ "parked",
2192
+ "plate",
2193
+ "pockets",
2194
+ "program",
2195
+ "pull",
2196
+ "rabbits",
2197
+ "reminds",
2198
+ "retired",
2199
+ "rooms",
2200
+ "sales",
2201
+ "saved",
2202
+ "search",
2203
+ "service",
2204
+ "sheep",
2205
+ "skipped",
2206
  "smaller",
2207
  "smiled",
2208
  "snack",
2209
+ "snowman",
2210
+ "spends",
2211
+ "split",
2212
+ "studies",
2213
+ "suffering",
2214
+ "support",
2215
+ "theory",
2216
+ "thin",
2217
+ "tied",
2218
+ "tight",
2219
+ "tire",
2220
+ "tower",
2221
+ "volume",
2222
+ "writes",
2223
+ "##7",
2224
+ "##ages",
2225
+ "##ake",
2226
+ "##als",
2227
+ "##amp",
2228
+ "##ax",
2229
+ "##board",
2230
+ "##den",
2231
+ "##eel",
2232
+ "##ence",
2233
+ "##ew",
2234
+ "##gth",
2235
+ "##ince",
2236
  "##ining",
2237
+ "##ins",
2238
+ "##ior",
2239
+ "##lar",
2240
  "##ma",
2241
+ "##ments",
2242
+ "##oast",
2243
+ "##om",
2244
+ "##ong",
2245
+ "##oo",
2246
+ "##ot",
2247
+ "##rn",
2248
+ "##ror",
2249
+ "##sume",
2250
+ "##ual",
2251
+ "##ually",
2252
+ "##unch",
2253
+ "##ung",
2254
+ "##ury",
2255
  "##uts",
2256
+ "##vided",
2257
+ "##vy",
2258
+ "18",
2259
  "500",
 
2260
  "active",
2261
+ "ambulance",
 
 
2262
  "appears",
2263
+ "ashamed",
2264
+ "author",
2265
  "based",
2266
  "basket",
2267
+ "begun",
2268
+ "blind",
2269
+ "buses",
2270
+ "cafeteria",
 
 
 
 
2271
  "cancel",
2272
+ "carrying",
2273
+ "chairman",
2274
  "chairs",
2275
+ "cheeks",
2276
+ "closet",
2277
+ "cloth",
2278
+ "colder",
2279
+ "complete",
2280
+ "consult",
2281
+ "contract",
2282
+ "convenient",
2283
+ "data",
2284
+ "deaf",
2285
+ "discussed",
2286
+ "earns",
2287
+ "earthquakes",
2288
+ "economy",
2289
+ "emergency",
2290
  "explained",
2291
+ "forgotten",
2292
+ "giving",
2293
+ "grapes",
 
 
2294
  "however",
 
 
2295
  "improve",
2296
+ "jokes",
2297
+ "lasted",
2298
+ "lazy",
2299
+ "lecture",
2300
+ "limit",
2301
+ "obey",
2302
+ "opening",
2303
+ "paying",
2304
+ "pleasure",
2305
+ "polite",
2306
+ "preparing",
2307
+ "private",
 
2308
  "pushed",
2309
+ "rare",
2310
+ "record",
2311
  "request",
2312
+ "riding",
2313
+ "skating",
2314
+ "smoked",
2315
+ "snowed",
2316
+ "stands",
2317
+ "subway",
2318
+ "suggestion",
2319
+ "sunglasses",
2320
+ "sunny",
2321
+ "tough",
2322
+ "turns",
2323
+ "upon",
2324
+ "volleyball",
2325
+ "vote",
2326
+ "ways",
2327
+ "##8",
2328
+ "##ally",
2329
+ "##arm",
2330
+ "##ased",
2331
+ "##ashed",
2332
+ "##bs",
2333
+ "##eat",
2334
+ "##fish",
2335
+ "##gest",
2336
  "##icted",
2337
+ "##ief",
2338
+ "##ilt",
2339
+ "##inal",
2340
+ "##itude",
2341
+ "##lish",
2342
+ "##nce",
2343
+ "##ode",
2344
+ "##owed",
2345
+ "##ra",
2346
+ "##tain",
2347
+ "##ters",
2348
+ "##ves",
2349
+ "11",
2350
+ "action",
2351
+ "although",
2352
+ "anxious",
2353
+ "apply",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2354
  "behave",
2355
+ "beyond",
2356
+ "buildings",
2357
+ "burning",
2358
+ "canadians",
2359
+ "ceiling",
2360
  "cheer",
2361
+ "chickens",
2362
+ "cloudy",
 
2363
  "committed",
2364
  "committee",
2365
+ "concern",
2366
  "confidence",
2367
+ "counter",
2368
  "coward",
2369
+ "curtains",
2370
+ "damage",
2371
  "demand",
2372
+ "detective",
2373
+ "disappeared",
2374
+ "discovered",
2375
+ "dislike",
2376
  "dozen",
2377
+ "dreamed",
2378
+ "entering",
2379
+ "expecting",
2380
+ "eyesight",
2381
+ "flat",
2382
+ "flood",
2383
+ "forever",
2384
+ "germany",
2385
+ "gives",
2386
+ "graduate",
2387
+ "hi",
2388
+ "hidden",
2389
+ "higher",
2390
+ "interview",
2391
+ "introduced",
2392
+ "italy",
2393
+ "knocked",
2394
+ "land",
2395
+ "lemon",
2396
  "manager",
2397
+ "neck",
2398
+ "newspapers",
2399
+ "percent",
2400
+ "perfectly",
 
2401
  "phoned",
 
 
2402
  "position",
2403
+ "power",
2404
+ "prepared",
2405
+ "printer",
2406
+ "profile",
2407
  "prohibited",
2408
  "published",
2409
+ "realize",
2410
+ "restroom",
2411
+ "robbed",
2412
  "sang",
2413
+ "saving",
2414
+ "scissors",
2415
  "selling",
2416
+ "slippery",
2417
+ "snake",
2418
+ "spite",
2419
+ "stories",
2420
+ "strict",
2421
+ "thanksgiving",
2422
+ "toys",
2423
+ "trick",
2424
+ "walks",
2425
+ "weak",
2426
+ "wow",
2427
+ "##ad",
2428
+ "##cakes",
2429
+ "##cast",
2430
+ "##cope",
2431
+ "##day",
2432
+ "##ell",
2433
+ "##els",
2434
+ "##icate",
2435
+ "##iety",
2436
+ "##ime",
2437
+ "##ination",
2438
+ "##ink",
2439
+ "##ipe",
2440
+ "##ius",
2441
+ "##ived",
2442
+ "##ives",
2443
+ "##iving",
2444
+ "##ization",
2445
+ "##ize",
2446
+ "##lapped",
2447
+ "##lect",
2448
+ "##light",
2449
+ "##nel",
2450
+ "##nk",
2451
+ "##ny",
2452
+ "##oot",
2453
+ "##otion",
2454
+ "##per",
2455
+ "##ple",
2456
+ "##reaming",
2457
+ "##room",
2458
+ "##row",
2459
+ "##tic",
2460
+ "##ub",
2461
+ "40",
2462
+ "achieved",
2463
+ "actor",
2464
+ "admire",
2465
+ "admission",
2466
+ "arriving",
2467
+ "autumn",
2468
+ "baggage",
2469
+ "bar",
2470
+ "bee",
2471
+ "boots",
2472
+ "brave",
2473
+ "breathe",
2474
+ "cellphone",
2475
+ "classmates",
2476
+ "claus",
2477
+ "climbing",
2478
+ "coin",
2479
+ "collecting",
2480
+ "compared",
2481
+ "complicated",
2482
+ "daily",
2483
+ "delayed",
2484
+ "departure",
2485
+ "depend",
2486
+ "detail",
2487
+ "drawing",
2488
+ "fed",
2489
+ "flew",
2490
+ "foreigners",
2491
+ "frightened",
2492
+ "garage",
2493
+ "granted",
2494
+ "grown",
2495
+ "hawaii",
2496
+ "height",
2497
+ "hug",
2498
+ "ignore",
2499
+ "incident",
2500
+ "india",
2501
+ "located",
2502
+ "losing",
2503
+ "makeup",
2504
+ "market",
2505
+ "master",
2506
+ "members",
2507
+ "mess",
2508
+ "method",
2509
+ "modern",
2510
+ "murder",
2511
+ "nights",
2512
+ "note",
2513
+ "overweight",
2514
+ "owner",
2515
+ "pace",
2516
+ "papers",
2517
+ "per",
2518
+ "pickpockets",
2519
+ "pillow",
2520
+ "plant",
2521
+ "poet",
2522
+ "politics",
2523
+ "postponed",
2524
+ "quality",
2525
+ "recognized",
2526
+ "remain",
2527
+ "repeat",
2528
+ "rough",
2529
+ "sand",
2530
+ "selfish",
2531
+ "shape",
2532
+ "slower",
2533
  "snows",
2534
+ "spell",
2535
+ "spot",
2536
+ "squirrels",
2537
+ "stage",
2538
+ "steak",
2539
+ "stores",
2540
+ "successful",
2541
+ "suppose",
2542
+ "surprising",
2543
+ "swam",
2544
+ "system",
2545
+ "terribly",
2546
+ "text",
2547
+ "trained",
2548
+ "turning",
2549
+ "ugly",
2550
+ "vase",
2551
+ "vegetarian",
2552
+ "violin",
2553
+ "wide",
2554
  "wolves",
2555
+ "worker",
2556
+ "##acy",
2557
+ "##aire",
2558
+ "##ak",
2559
+ "##althy",
2560
+ "##ame",
2561
+ "##antly",
2562
+ "##box",
2563
+ "##cess",
2564
+ "##cover",
2565
+ "##dom",
2566
+ "##el",
2567
+ "##fuse",
2568
+ "##gree",
2569
+ "##ient",
2570
+ "##iest",
2571
+ "##ified",
2572
+ "##ilies",
2573
+ "##mark",
2574
+ "##mber",
2575
+ "##ming",
2576
  "##mit",
2577
  "##mon",
2578
+ "##ntly",
2579
+ "##ol",
2580
+ "##ooth",
2581
+ "##oy",
2582
+ "##ps",
2583
+ "##rel",
2584
+ "##sh",
2585
+ "##shed",
2586
+ "##sist",
 
 
2587
  "##tent",
2588
+ "##tled",
2589
+ "##umb",
2590
+ "##ured",
2591
+ "##urious",
2592
+ "##uted",
2593
+ "##wn",
2594
+ "##yard",
2595
+ "13",
2596
+ "15",
2597
+ "200",
2598
+ "20th",
2599
+ "accompanied",
2600
  "alice",
2601
+ "appearance",
2602
+ "awfully",
2603
+ "barking",
2604
+ "battery",
2605
+ "bedroom",
2606
+ "boil",
2607
+ "bothering",
2608
+ "carrots",
2609
+ "cave",
2610
+ "century",
2611
+ "ceremony",
2612
+ "changes",
 
2613
  "changing",
2614
+ "cigarette",
2615
+ "communicate",
2616
+ "completed",
 
 
 
2617
  "cows",
2618
+ "deeply",
2619
+ "direction",
2620
+ "downstairs",
2621
+ "dust",
2622
+ "electricity",
2623
+ "elephants",
2624
+ "energy",
2625
+ "examined",
2626
+ "exceptions",
2627
+ "exciting",
2628
+ "experienced",
2629
  "facts",
2630
+ "forced",
2631
+ "forecast",
2632
+ "garbage",
2633
+ "genius",
2634
+ "grades",
2635
+ "grammar",
2636
+ "growing",
2637
+ "habits",
2638
+ "handkerchief",
2639
+ "harvard",
2640
+ "heater",
2641
+ "highest",
2642
+ "importance",
2643
  "income",
2644
+ "increased",
2645
+ "interrupt",
2646
+ "lack",
2647
+ "lessons",
2648
+ "liar",
2649
+ "lips",
2650
+ "lottery",
2651
+ "mexico",
2652
+ "model",
2653
+ "moldy",
2654
+ "musician",
2655
+ "narrow",
2656
+ "narrowly",
2657
+ "novels",
 
 
 
2658
  "odd",
 
2659
  "opinions",
2660
+ "owns",
2661
+ "password",
2662
+ "personally",
2663
+ "pink",
2664
+ "planted",
2665
+ "prepare",
2666
+ "pressed",
2667
  "progress",
2668
  "reads",
2669
+ "refrain",
2670
  "religion",
2671
+ "rented",
2672
+ "responsibility",
2673
+ "rome",
 
 
 
2674
  "sells",
2675
+ "shake",
 
 
2676
  "simply",
2677
+ "smarter",
2678
+ "spending",
2679
+ "spicy",
2680
+ "spirits",
2681
+ "suitcases",
 
2682
  "sweat",
2683
+ "swimmer",
2684
+ "teaches",
2685
+ "term",
2686
+ "themselves",
2687
+ "trash",
2688
+ "uncomfortable",
2689
+ "upside",
2690
+ "useless",
2691
+ "uses",
2692
+ "whichever",
2693
+ "windy",
2694
+ "##1",
2695
  "##ache",
2696
+ "##ane",
2697
+ "##aned",
2698
+ "##ark",
2699
+ "##ath",
2700
+ "##ational",
2701
+ "##aves",
2702
  "##aving",
2703
+ "##bly",
2704
+ "##c",
2705
+ "##case",
2706
  "##cies",
2707
+ "##couraged",
2708
  "##covery",
2709
+ "##ctor",
2710
+ "##de",
 
 
2711
  "##ected",
2712
+ "##enses",
2713
+ "##ey",
2714
+ "##form",
2715
+ "##ft",
2716
+ "##hone",
2717
+ "##iate",
2718
+ "##ieve",
2719
+ "##ig",
2720
+ "##ight",
2721
  "##ison",
2722
  "##istic",
2723
+ "##itical",
2724
+ "##iver",
2725
+ "##ked",
2726
+ "##ky",
2727
+ "##lown",
2728
+ "##med",
2729
+ "##my",
2730
+ "##nate",
2731
+ "##ng",
2732
+ "##nts",
2733
+ "##oke",
2734
+ "##old",
2735
+ "##ometer",
2736
+ "##place",
2737
+ "##son",
 
 
2738
  "##ssed",
2739
+ "##tch",
2740
+ "##teady",
2741
+ "##teen",
2742
+ "##ton",
2743
+ "##tress",
2744
  "##uce",
2745
  "##uck",
2746
+ "##ude",
2747
+ "##umor",
2748
+ "##wing",
2749
+ "alcoholic",
 
 
 
 
2750
  "amazing",
2751
  "ankle",
2752
+ "anytime",
2753
+ "atm",
2754
+ "barber",
2755
  "bet",
2756
+ "blackboard",
2757
  "bone",
2758
+ "bottles",
2759
+ "brings",
2760
+ "bucket",
2761
  "cheerful",
2762
+ "chest",
2763
+ "classical",
2764
+ "cleared",
2765
+ "contest",
2766
+ "cousin",
2767
+ "darker",
2768
+ "details",
2769
+ "drives",
 
 
 
 
2770
  "drove",
2771
+ "east",
2772
+ "efforts",
2773
+ "england",
2774
+ "enjoying",
2775
+ "exams",
2776
+ "extra",
2777
+ "fairly",
2778
+ "general",
2779
+ "glanced",
2780
+ "grab",
2781
+ "grows",
2782
+ "guests",
2783
+ "haircut",
2784
+ "hammer",
2785
+ "headed",
2786
+ "helpful",
2787
+ "hesitate",
2788
+ "horizon",
2789
+ "hurried",
2790
+ "idiot",
2791
  "illegal",
2792
+ "inviting",
2793
+ "issue",
2794
+ "kyoto",
2795
+ "laid",
2796
+ "lesson",
2797
+ "luggage",
2798
+ "medical",
2799
+ "mystery",
2800
+ "optimistic",
2801
+ "osaka",
2802
+ "overslept",
2803
+ "parallel",
2804
+ "pardon",
2805
+ "permission",
2806
+ "personality",
2807
+ "persuaded",
2808
+ "pet",
 
 
 
 
 
 
 
2809
  "physics",
2810
+ "pilot",
2811
+ "players",
2812
+ "policy",
2813
+ "potatoes",
2814
+ "pretend",
 
2815
  "purse",
 
 
2816
  "ramen",
2817
  "reasons",
2818
+ "roads",
2819
+ "safely",
2820
+ "sake",
2821
+ "scary",
2822
+ "scolded",
2823
+ "seafood",
2824
+ "shave",
2825
+ "shock",
 
 
 
2826
  "silence",
2827
+ "sixty",
2828
+ "soap",
2829
+ "soft",
2830
+ "spider",
2831
+ "stamp",
2832
+ "steal",
2833
  "struck",
2834
+ "thoughts",
2835
+ "tourist",
 
 
2836
  "track",
2837
+ "travels",
2838
+ "various",
 
 
2839
  "weekends",
2840
+ "whoever",
2841
+ "wooden",
2842
+ "yeah",
2843
+ "##ans",
2844
+ "##art",
2845
+ "##arter",
2846
+ "##ash",
2847
+ "##ates",
2848
+ "##aws",
2849
+ "##book",
2850
+ "##bow",
2851
+ "##co",
2852
+ "##creasing",
2853
+ "##cription",
2854
+ "##dition",
2855
+ "##eated",
2856
+ "##em",
2857
+ "##ering",
2858
+ "##fer",
2859
+ "##get",
2860
+ "##ground",
2861
  "##hat",
2862
+ "##ics",
2863
+ "##ield",
2864
+ "##ind",
2865
+ "##inning",
2866
+ "##irm",
2867
+ "##ists",
2868
+ "##lished",
2869
+ "##ms",
2870
+ "##nation",
2871
+ "##ole",
2872
+ "##omics",
2873
+ "##oted",
2874
+ "##overs",
2875
+ "##ows",
 
 
 
 
 
 
2876
  "##point",
2877
+ "##prints",
2878
+ "##py",
2879
+ "##rial",
2880
+ "##rush",
2881
+ "##ties",
 
 
2882
  "##ulated",
 
2883
  "##ument",
2884
+ "##une",
2885
+ "##unted",
2886
+ "##ures",
2887
+ "##urs",
2888
+ "##usion",
2889
+ "absence",
2890
  "accent",
2891
+ "acting",
2892
+ "actress",
2893
+ "added",
2894
  "adult",
2895
+ "adults",
2896
+ "affairs",
2897
  "africa",
2898
+ "alike",
2899
+ "anger",
2900
+ "answers",
2901
+ "apparently",
2902
+ "application",
2903
+ "applied",
2904
  "army",
2905
+ "article",
2906
+ "belt",
2907
+ "blanket",
2908
+ "brain",
 
 
 
2909
  "burglar",
2910
+ "camping",
 
 
2911
  "carries",
 
 
2912
  "cheek",
2913
+ "commit",
 
 
2914
  "complained",
2915
+ "complaints",
2916
+ "cops",
2917
  "counting",
 
2918
  "crashed",
2919
+ "dawn",
2920
+ "design",
2921
  "determined",
2922
  "dizzy",
2923
+ "drawer",
2924
+ "eager",
2925
+ "effort",
2926
+ "events",
2927
+ "ex",
2928
+ "exact",
2929
+ "example",
2930
  "expert",
2931
+ "fifth",
2932
+ "fluently",
2933
+ "foolish",
 
2934
  "formed",
2935
+ "fortune",
2936
+ "gathered",
2937
  "grabbed",
2938
+ "homesick",
2939
+ "impression",
2940
+ "insisted",
2941
+ "instant",
2942
+ "jogging",
2943
+ "july",
2944
+ "junior",
2945
+ "junk",
2946
+ "karaoke",
2947
+ "keeping",
2948
+ "knock",
2949
+ "laughter",
2950
+ "leather",
2951
+ "local",
2952
+ "loudly",
2953
+ "manners",
2954
+ "melted",
2955
  "menu",
2956
+ "mushrooms",
2957
+ "necklace",
 
 
2958
  "officer",
2959
  "onions",
2960
+ "operation",
2961
+ "ordinary",
2962
+ "original",
2963
+ "outdoors",
2964
+ "overtime",
2965
  "owe",
2966
+ "package",
2967
+ "pages",
2968
+ "patience",
2969
+ "photograph",
2970
+ "poems",
2971
+ "possibility",
2972
+ "possibly",
2973
+ "postcard",
2974
+ "pot",
2975
+ "poured",
2976
+ "preparations",
2977
+ "putting",
2978
  "racket",
2979
  "receive",
2980
+ "regards",
2981
+ "resembles",
2982
+ "responsible",
2983
+ "ridiculous",
2984
+ "rise",
2985
+ "sauce",
2986
+ "silver",
 
 
 
 
 
 
 
2987
  "smartphone",
2988
+ "social",
2989
+ "spanish",
2990
+ "spilled",
2991
+ "stealing",
2992
+ "stock",
2993
+ "stove",
2994
+ "suggested",
2995
  "sum",
2996
+ "swims",
2997
+ "switch",
2998
+ "translation",
2999
+ "twins",
3000
+ "ufo",
3001
+ "understands",
3002
+ "unhappy",
3003
+ "urgent",
3004
+ "watches",
3005
+ "website",
3006
+ "weighs",
3007
+ "willing",
3008
  "wolf",
3009
+ "zip",
3010
+ "##60",
3011
  "##ably",
3012
+ "##aches",
3013
+ "##af",
 
3014
  "##aries",
3015
+ "##astic",
3016
+ "##asty",
3017
+ "##asure",
3018
+ "##aw",
3019
+ "##cated",
3020
+ "##cing",
3021
+ "##cus",
3022
+ "##ded",
3023
+ "##ee",
 
3024
  "##ees",
3025
+ "##ended",
3026
+ "##ets",
3027
  "##fe",
3028
+ "##ffer",
3029
+ "##fit",
3030
+ "##fully",
3031
+ "##ger",
3032
+ "##ically",
3033
+ "##iece",
3034
+ "##ience",
3035
+ "##ify",
3036
+ "##ike",
3037
+ "##ional",
 
3038
  "##ique",
3039
+ "##itten",
 
 
3040
  "##ke",
3041
+ "##key",
3042
+ "##lation",
3043
+ "##lied",
3044
+ "##lief",
3045
+ "##lip",
3046
+ "##lt",
3047
+ "##mate",
3048
  "##ncy",
3049
+ "##nted",
3050
  "##oad",
3051
+ "##ogist",
3052
+ "##olished",
3053
+ "##omic",
3054
+ "##orted",
3055
+ "##ote",
3056
  "##ounced",
3057
+ "##out",
3058
+ "##ox",
3059
+ "##quired",
3060
+ "##rade",
3061
+ "##rap",
3062
+ "##ream",
3063
+ "##rged",
3064
+ "##ride",
3065
+ "##ried",
3066
+ "##rm",
3067
+ "##roof",
3068
+ "##roved",
3069
+ "##ser",
3070
+ "##sing",
3071
+ "##sistance",
3072
+ "##sive",
3073
+ "##table",
3074
+ "##tered",
3075
+ "##umped",
3076
+ "##unt",
3077
+ "##val",
3078
+ "ache",
3079
+ "advantage",
3080
+ "approaching",
3081
+ "arguing",
3082
  "attractive",
3083
+ "automatically",
3084
+ "awoke",
3085
  "balcony",
3086
+ "bare",
3087
+ "beans",
3088
+ "bears",
3089
+ "blocked",
3090
+ "bloom",
3091
+ "boiled",
3092
+ "calculator",
3093
+ "cities",
3094
+ "clothing",
3095
+ "coach",
3096
+ "coins",
3097
+ "colds",
3098
+ "complain",
3099
+ "construction",
3100
+ "delivered",
3101
+ "denied",
3102
+ "discount",
3103
+ "discussion",
3104
+ "disturb",
3105
+ "doctors",
3106
+ "doubts",
3107
+ "dried",
3108
  "eater",
3109
+ "edge",
3110
  "effect",
3111
+ "elected",
3112
+ "elephant",
3113
  "embarrassed",
3114
  "engagement",
 
3115
  "especially",
3116
+ "expelled",
3117
+ "fasten",
3118
+ "february",
3119
+ "fee",
3120
+ "fluent",
3121
+ "founded",
3122
+ "fountain",
3123
+ "glimpse",
3124
+ "goods",
3125
+ "greatest",
3126
+ "greeted",
3127
+ "guide",
3128
+ "gum",
3129
+ "handy",
3130
+ "hanging",
3131
+ "hats",
3132
+ "horses",
3133
+ "hunting",
3134
+ "impatient",
3135
+ "improved",
3136
+ "irritated",
3137
+ "italian",
3138
+ "january",
3139
+ "jog",
3140
+ "knee",
3141
+ "lacks",
3142
+ "loan",
3143
+ "longest",
3144
+ "magic",
3145
+ "mushroom",
3146
+ "naked",
3147
+ "necessarily",
3148
+ "needle",
3149
+ "pens",
 
 
 
 
 
 
3150
  "picking",
 
3151
  "planes",
3152
+ "pointed",
3153
+ "postcards",
3154
+ "prefers",
3155
+ "presence",
 
 
 
 
3156
  "pronounce",
3157
+ "related",
3158
+ "relaxed",
3159
+ "released",
3160
+ "rushed",
3161
+ "sank",
3162
+ "section",
3163
+ "seeds",
 
3164
  "shine",
 
3165
  "shocked",
3166
+ "shook",
3167
+ "shout",
3168
+ "sides",
3169
+ "silly",
3170
+ "sings",
3171
+ "sixteen",
3172
+ "solved",
3173
+ "somehow",
3174
+ "south",
3175
  "strangers",
3176
+ "strawberry",
3177
+ "subscribe",
3178
  "sunset",
3179
+ "surface",
3180
  "surrounded",
3181
+ "switzerland",
3182
+ "thunder",
 
3183
  "toast",
3184
+ "toward",
3185
+ "towards",
3186
+ "trousers",
3187
+ "trunk",
3188
+ "understanding",
3189
+ "unmarried",
3190
+ "unusual",
3191
  "usa",
3192
+ "verge",
3193
+ "weigh",
3194
+ "whale",
3195
  "zero",
3196
+ "##ague",
3197
+ "##aint",
 
 
 
 
 
3198
  "##amin",
3199
+ "##ank",
3200
+ "##ano",
3201
+ "##arch",
3202
+ "##arks",
3203
+ "##azed",
3204
+ "##bi",
3205
+ "##bled",
3206
+ "##cent",
3207
+ "##ching",
3208
+ "##cked",
3209
+ "##clined",
3210
+ "##creen",
3211
+ "##cue",
3212
+ "##curity",
 
 
3213
  "##ead",
3214
+ "##ened",
3215
+ "##ern",
3216
+ "##erous",
3217
+ "##ewing",
3218
+ "##ference",
3219
+ "##fident",
3220
+ "##fing",
3221
+ "##formed",
3222
+ "##gan",
3223
+ "##gle",
3224
+ "##hed",
3225
+ "##idence",
3226
+ "##ids",
3227
+ "##ific",
3228
+ "##ilk",
3229
+ "##imed",
3230
+ "##ims",
3231
+ "##inated",
3232
+ "##int",
3233
+ "##io",
3234
+ "##iped",
3235
+ "##isa",
3236
+ "##ji",
3237
+ "##kate",
3238
+ "##late",
3239
+ "##lence",
3240
+ "##let",
3241
+ "##lings",
3242
+ "##lock",
3243
+ "##lon",
3244
+ "##low",
3245
+ "##mal",
3246
+ "##mployed",
3247
+ "##nant",
3248
+ "##nsitive",
3249
+ "##od",
3250
+ "##oes",
3251
+ "##og",
3252
+ "##ola",
3253
+ "##ome",
3254
+ "##oms",
3255
+ "##ood",
3256
+ "##ook",
3257
+ "##oose",
3258
+ "##oped",
3259
+ "##ores",
3260
  "##ought",
3261
+ "##our",
3262
+ "##over",
3263
+ "##phere",
3264
+ "##pressed",
3265
+ "##ration",
3266
+ "##rents",
3267
+ "##ric",
3268
+ "##rop",
3269
+ "##sion",
3270
+ "##ster",
3271
+ "##tically",
3272
+ "##ugged",
3273
+ "##ulations",
3274
+ "##ush",
3275
+ "##using",
 
 
3276
  "##uzzle",
3277
+ "##ward",
3278
+ "##wise",
3279
+ "##word",
3280
+ "##zed",
3281
+ "##zz",
3282
+ "absurd",
3283
  "acknowledged",
3284
+ "actions",
3285
+ "addressed",
3286
+ "appetite",
 
 
 
 
 
 
 
 
3287
  "appointed",
 
 
 
3288
  "asia",
3289
+ "atomic",
3290
+ "babies",
3291
+ "backs",
3292
+ "bake",
3293
+ "band",
3294
+ "beating",
3295
+ "bomb",
3296
+ "breathing",
3297
+ "britain",
3298
+ "bumped",
3299
+ "burn",
3300
  "catches",
3301
+ "cheating",
3302
  "chew",
3303
+ "cloud",
 
 
 
3304
  "comments",
3305
+ "composition",
3306
+ "consideration",
3307
+ "conversation",
3308
+ "cough",
 
 
3309
  "court",
3310
+ "cousins",
3311
+ "cow",
3312
+ "dated",
3313
  "daughters",
3314
+ "deer",
3315
+ "delete",
3316
+ "demands",
3317
+ "difficulties",
 
3318
  "double",
 
 
 
3319
  "election",
3320
+ "elevators",
3321
+ "environment",
3322
+ "exit",
3323
+ "false",
3324
+ "festival",
3325
+ "fiction",
3326
+ "final",
3327
+ "fits",
3328
+ "forehead",
3329
+ "fortunately",
3330
+ "frog",
3331
  "froze",
 
3332
  "gambling",
 
3333
  "glance",
3334
+ "grandpa",
3335
+ "guard",
3336
+ "hamburger",
3337
+ "harvest",
3338
+ "hero",
3339
+ "hokkaido",
3340
+ "hometown",
3341
+ "hotter",
 
 
 
 
3342
  "image",
3343
+ "incorrect",
3344
+ "independent",
3345
+ "intention",
3346
  "interfere",
3347
+ "internet",
3348
+ "itchy",
3349
+ "jail",
3350
+ "killing",
3351
+ "kilograms",
3352
+ "latest",
3353
+ "lawn",
3354
+ "log",
3355
+ "magazines",
3356
+ "march",
3357
+ "meter",
3358
+ "microwave",
3359
+ "nature",
3360
+ "notes",
 
 
 
 
 
3361
  "nuclear",
3362
+ "numbers",
3363
+ "nuts",
3364
+ "object",
3365
+ "observe",
3366
+ "omelet",
3367
+ "ourselves",
3368
+ "pasta",
3369
+ "permitted",
3370
+ "photos",
3371
+ "pianist",
3372
+ "picky",
3373
+ "pitch",
3374
+ "platform",
3375
+ "pleasant",
3376
  "points",
3377
+ "pork",
3378
+ "potato",
3379
+ "pounds",
3380
+ "prisoner",
3381
+ "pronunciation",
3382
+ "rapidly",
3383
+ "rash",
3384
+ "receipt",
3385
  "recent",
3386
+ "regular",
3387
+ "rejected",
3388
+ "relationship",
3389
  "remembering",
3390
+ "removed",
3391
+ "reputation",
3392
+ "retire",
3393
+ "ripe",
3394
+ "rode",
3395
+ "roll",
3396
  "rolled",
3397
  "root",
3398
+ "seconds",
3399
+ "shining",
3400
+ "shirts",
3401
+ "shoe",
 
 
 
 
 
 
 
 
 
3402
  "site",
3403
+ "skip",
3404
+ "slightly",
3405
+ "slipped",
3406
+ "soaked",
3407
+ "spiders",
3408
+ "stain",
3409
+ "stare",
3410
  "stew",
3411
  "stomachache",
3412
+ "taxes",
3413
+ "tells",
3414
+ "tends",
 
3415
  "tent",
3416
+ "textbook",
3417
+ "tomato",
3418
+ "topic",
3419
+ "total",
3420
+ "treatment",
3421
+ "turkey",
3422
+ "twentieth",
3423
+ "unknown",
3424
+ "unlucky",
3425
  "valuable",
3426
+ "vending",
3427
+ "veterinarian",
3428
+ "wanting",
3429
+ "wondered",
3430
+ "wondering",
3431
+ "wounded",
3432
  "##!",
3433
  "##\"",
3434
  "##$",
3435
  "##%",
3436
  "##'",
 
 
3437
  "##,",
3438
  "##-",
3439
  "##.",
 
3441
  "##:",
3442
  "##;",
3443
  "##?",
 
3444
  "##j",
3445
  "##q",
3446
  "##v",
 
3453
  "##’",
3454
  "##“",
3455
  "##”",
3456
+ "##₂",
3457
  "##€"
3458
  ]
jpn_spm.model CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:8bf0126dde9294dc87cc3cd931220182a74ef9e028d67b75139cc5a842ed343f
3
- size 438938
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:50953c062d51564fdb2a3c02dde5a05c3107c99ff11f3b88f290fca3bf404c36
3
+ size 439687
jpn_spm.vocab CHANGED
The diff for this file is too large to render. See raw diff
 
transformer_model.keras CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:7c75829f8512b80dbc38883250466bd5a4aad6426ad3aed8084e1b8394b6eaf6
3
- size 95224048
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b39538cec5ffd3334213e049beceb055135e79992730a87399a263bac9c783e0
3
+ size 95224033