mtayyabp commited on
Commit
e2da125
1 Parent(s): 885a7bf

Update spaCy pipeline

Browse files
.gitattributes CHANGED
@@ -32,3 +32,6 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
32
  *.zip filter=lfs diff=lfs merge=lfs -text
33
  *.zst filter=lfs diff=lfs merge=lfs -text
34
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
 
32
  *.zip filter=lfs diff=lfs merge=lfs -text
33
  *.zst filter=lfs diff=lfs merge=lfs -text
34
  *tfevents* filter=lfs diff=lfs merge=lfs -text
35
+ en_pipeline-any-py3-none-any.whl filter=lfs diff=lfs merge=lfs -text
36
+ tok2vec/model filter=lfs diff=lfs merge=lfs -text
37
+ textcat/model filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - spacy
4
+ - text-classification
5
+ language:
6
+ - en
7
+ model-index:
8
+ - name: en_pipeline
9
+ results: []
10
+ ---
11
+ | Feature | Description |
12
+ | --- | --- |
13
+ | **Name** | `en_pipeline` |
14
+ | **Version** | `0.0.0` |
15
+ | **spaCy** | `>=3.0.5,<3.1.0` |
16
+ | **Default Pipeline** | `tok2vec`, `textcat` |
17
+ | **Components** | `tok2vec`, `textcat` |
18
+ | **Vectors** | 0 keys, 0 unique vectors (0 dimensions) |
19
+ | **Sources** | n/a |
20
+ | **License** | n/a |
21
+ | **Author** | [n/a]() |
22
+
23
+ ### Label Scheme
24
+
25
+ <details>
26
+
27
+ <summary>View label scheme (2 labels for 1 components)</summary>
28
+
29
+ | Component | Labels |
30
+ | --- | --- |
31
+ | **`textcat`** | `hunger`, `smell` |
32
+
33
+ </details>
34
+
35
+ ### Accuracy
36
+
37
+ | Type | Score |
38
+ | --- | --- |
39
+ | `CATS_MICRO_P` | 83.84 |
40
+ | `CATS_MICRO_R` | 83.84 |
41
+ | `CATS_MICRO_F` | 83.84 |
42
+ | `CATS_MACRO_P` | 86.78 |
43
+ | `CATS_MACRO_R` | 83.84 |
44
+ | `CATS_MACRO_F` | 83.51 |
45
+ | `CATS_MACRO_AUC` | 97.18 |
46
+ | `CATS_MACRO_AUC_PER_TYPE` | 0.00 |
47
+ | `CATS_SCORE` | 83.51 |
48
+ | `TOK2VEC_LOSS` | 0.00 |
49
+ | `TEXTCAT_LOSS` | 0.26 |
config.cfg ADDED
@@ -0,0 +1,139 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [paths]
2
+ train = "data/train_hs.spacy"
3
+ dev = "data/valid_hs.spacy"
4
+ vectors = null
5
+ init_tok2vec = null
6
+
7
+ [system]
8
+ gpu_allocator = null
9
+ seed = 0
10
+
11
+ [nlp]
12
+ lang = "en"
13
+ pipeline = ["tok2vec","textcat"]
14
+ batch_size = 1000
15
+ disabled = []
16
+ before_creation = null
17
+ after_creation = null
18
+ after_pipeline_creation = null
19
+ tokenizer = {"@tokenizers":"spacy.Tokenizer.v1"}
20
+
21
+ [components]
22
+
23
+ [components.textcat]
24
+ factory = "textcat"
25
+ threshold = 0.5
26
+
27
+ [components.textcat.model]
28
+ @architectures = "spacy.TextCatBOW.v1"
29
+ exclusive_classes = true
30
+ ngram_size = 1
31
+ no_output_layer = false
32
+ nO = null
33
+
34
+ [components.tok2vec]
35
+ factory = "tok2vec"
36
+
37
+ [components.tok2vec.model]
38
+ @architectures = "spacy.Tok2Vec.v2"
39
+
40
+ [components.tok2vec.model.embed]
41
+ @architectures = "spacy.MultiHashEmbed.v1"
42
+ width = ${components.tok2vec.model.encode.width}
43
+ attrs = ["ORTH","SHAPE"]
44
+ rows = [5000,2500]
45
+ include_static_vectors = false
46
+
47
+ [components.tok2vec.model.encode]
48
+ @architectures = "spacy.MaxoutWindowEncoder.v2"
49
+ width = 96
50
+ depth = 4
51
+ window_size = 1
52
+ maxout_pieces = 3
53
+
54
+ [corpora]
55
+
56
+ [corpora.dev]
57
+ @readers = "spacy.Corpus.v1"
58
+ path = ${paths.dev}
59
+ max_length = 0
60
+ gold_preproc = false
61
+ limit = 0
62
+ augmenter = null
63
+
64
+ [corpora.train]
65
+ @readers = "spacy.Corpus.v1"
66
+ path = ${paths.train}
67
+ max_length = 2000
68
+ gold_preproc = false
69
+ limit = 0
70
+ augmenter = null
71
+
72
+ [training]
73
+ dev_corpus = "corpora.dev"
74
+ train_corpus = "corpora.train"
75
+ seed = ${system.seed}
76
+ gpu_allocator = ${system.gpu_allocator}
77
+ dropout = 0.1
78
+ accumulate_gradient = 1
79
+ patience = 1600
80
+ max_epochs = 0
81
+ max_steps = 20000
82
+ eval_frequency = 200
83
+ frozen_components = []
84
+ before_to_disk = null
85
+
86
+ [training.batcher]
87
+ @batchers = "spacy.batch_by_words.v1"
88
+ discard_oversize = false
89
+ tolerance = 0.2
90
+ get_length = null
91
+
92
+ [training.batcher.size]
93
+ @schedules = "compounding.v1"
94
+ start = 100
95
+ stop = 1000
96
+ compound = 1.001
97
+ t = 0.0
98
+
99
+ [training.logger]
100
+ @loggers = "spacy.ConsoleLogger.v1"
101
+ progress_bar = false
102
+
103
+ [training.optimizer]
104
+ @optimizers = "Adam.v1"
105
+ beta1 = 0.9
106
+ beta2 = 0.999
107
+ L2_is_weight_decay = true
108
+ L2 = 0.01
109
+ grad_clip = 1.0
110
+ use_averages = false
111
+ eps = 0.00000001
112
+ learn_rate = 0.001
113
+
114
+ [training.score_weights]
115
+ cats_score_desc = null
116
+ cats_micro_p = null
117
+ cats_micro_r = null
118
+ cats_micro_f = null
119
+ cats_macro_p = null
120
+ cats_macro_r = null
121
+ cats_macro_f = null
122
+ cats_macro_auc = null
123
+ cats_f_per_type = null
124
+ cats_macro_auc_per_type = null
125
+ cats_score = 1.0
126
+
127
+ [pretraining]
128
+
129
+ [initialize]
130
+ vectors = null
131
+ init_tok2vec = ${paths.init_tok2vec}
132
+ vocab_data = null
133
+ lookups = null
134
+ before_init = null
135
+ after_init = null
136
+
137
+ [initialize.components]
138
+
139
+ [initialize.tokenizer]
en_pipeline-any-py3-none-any.whl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c31835caf0b41792332cf5be5d222fadcce14369bb6cb88fb1c35b0cced4ec36
3
+ size 4145699
meta.json ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lang":"en",
3
+ "name":"pipeline",
4
+ "version":"0.0.0",
5
+ "description":"",
6
+ "author":"",
7
+ "email":"",
8
+ "url":"",
9
+ "license":"",
10
+ "spacy_version":">=3.0.5,<3.1.0",
11
+ "spacy_git_version":"53a3b967a",
12
+ "vectors":{
13
+ "width":0,
14
+ "vectors":0,
15
+ "keys":0,
16
+ "name":null
17
+ },
18
+ "labels":{
19
+ "tok2vec":[
20
+
21
+ ],
22
+ "textcat":[
23
+ "hunger",
24
+ "smell"
25
+ ]
26
+ },
27
+ "pipeline":[
28
+ "tok2vec",
29
+ "textcat"
30
+ ],
31
+ "components":[
32
+ "tok2vec",
33
+ "textcat"
34
+ ],
35
+ "disabled":[
36
+
37
+ ],
38
+ "performance":{
39
+ "cats_score_desc":"macro F",
40
+ "cats_micro_p":0.8383838384,
41
+ "cats_micro_r":0.8383838384,
42
+ "cats_micro_f":0.8383838384,
43
+ "cats_macro_p":0.8678052567,
44
+ "cats_macro_r":0.8383838384,
45
+ "cats_macro_f":0.8350858928,
46
+ "cats_macro_auc":0.9718396082,
47
+ "cats_f_per_type":{
48
+ "hunger":{
49
+ "p":0.9718309859,
50
+ "r":0.696969697,
51
+ "f":0.8117647059
52
+ },
53
+ "smell":{
54
+ "p":0.7637795276,
55
+ "r":0.9797979798,
56
+ "f":0.8584070796
57
+ }
58
+ },
59
+ "cats_macro_auc_per_type":0.0,
60
+ "cats_score":0.8350858928,
61
+ "tok2vec_loss":0.0,
62
+ "textcat_loss":0.002620193
63
+ },
64
+ "requirements":[
65
+
66
+ ]
67
+ }
textcat/cfg ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "labels":[
3
+ "hunger",
4
+ "smell"
5
+ ],
6
+ "threshold":0.5,
7
+ "positive_label":null
8
+ }
textcat/model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2e84561974b6757ce9755cb07f7359087564cbf29ec2a1c005069a5c9a57a91d
3
+ size 2097777
tok2vec/cfg ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+
3
+ }
tok2vec/model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2a96ce73ce3bbed7cd81a352820dfc609f782145eeb2e86c205fc1bff31364b3
3
+ size 4443194
tokenizer ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ ��prefix_search�
2
+ �^§|^%|^=|^—|^–|^\+(?![0-9])|^…|^……|^,|^:|^;|^\!|^\?|^¿|^؟|^¡|^\(|^\)|^\[|^\]|^\{|^\}|^<|^>|^_|^#|^\*|^&|^。|^?|^!|^,|^、|^;|^:|^~|^·|^।|^،|^۔|^؛|^٪|^\.\.+|^…|^\'|^"|^”|^“|^`|^‘|^´|^’|^‚|^,|^„|^»|^«|^「|^」|^『|^』|^(|^)|^〔|^〕|^【|^】|^《|^》|^〈|^〉|^\$|^£|^€|^¥|^฿|^US\$|^C\$|^A\$|^₽|^﷼|^₴|^[\u00A6\u00A9\u00AE\u00B0\u0482\u058D\u058E\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u09FA\u0B70\u0BF3-\u0BF8\u0BFA\u0C7F\u0D4F\u0D79\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116\u2117\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u214A\u214C\u214D\u214F\u218A\u218B\u2195-\u2199\u219C-\u219F\u21A1\u21A2\u21A4\u21A5\u21A7-\u21AD\u21AF-\u21CD\u21D0\u21D1\u21D3\u21D5-\u21F3\u2300-\u2307\u230C-\u231F\u2322-\u2328\u232B-\u237B\u237D-\u239A\u23B4-\u23DB\u23E2-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u25B6\u25B8-\u25C0\u25C2-\u25F7\u2600-\u266E\u2670-\u2767\u2794-\u27BF\u2800-\u28FF\u2B00-\u2B2F\u2B45\u2B46\u2B4D-\u2B73\u2B76-\u2B95\u2B98-\u2BC8\u2BCA-\u2BFE\u2CE5-\u2CEA\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u32FE\u3300-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA828-\uA82B\uA836\uA837\uA839\uAA77-\uAA79\uFDFD\uFFE4\uFFE8\uFFED\uFFEE\uFFFC\uFFFD\U00010137-\U0001013F\U00010179-\U00010189\U0001018C-\U0001018E\U00010190-\U0001019B\U000101A0\U000101D0-\U000101FC\U00010877\U00010878\U00010AC8\U0001173F\U00016B3C-\U00016B3F\U00016B45\U0001BC9C\U0001D000-\U0001D0F5\U0001D100-\U0001D126\U0001D129-\U0001D164\U0001D16A-\U0001D16C\U0001D183\U0001D184\U0001D18C-\U0001D1A9\U0001D1AE-\U0001D1E8\U0001D200-\U0001D241\U0001D245\U0001D300-\U0001D356\U0001D800-\U0001D9FF\U0001DA37-\U0001DA3A\U0001DA6D-\U0001DA74\U0001DA76-\U0001DA83\U0001DA85\U0001DA86\U0001ECAC\U0001F000-\U0001F02B\U0001F030-\U0001F093\U0001F0A0-\U0001F0AE\U0001F0B1-\U0001F0BF\U0001F0C1-\U0001F0CF\U0001F0D1-\U0001F0F5\U0001F110-\U0001F16B\U0001F170-\U0001F1AC\U0001F1E6-\U0001F202\U0001F210-\U0001F23B\U0001F240-\U0001F248\U0001F250\U0001F251\U0001F260-\U0001F265\U0001F300-\U0001F3FA\U0001F400-\U0001F6D4\U0001F6E0-\U0001F6EC\U0001F6F0-\U0001F6F9\U0001F700-\U0001F773\U0001F780-\U0001F7D8\U0001F800-\U0001F80B\U0001F810-\U0001F847\U0001F850-\U0001F859\U0001F860-\U0001F887\U0001F890-\U0001F8AD\U0001F900-\U0001F90B\U0001F910-\U0001F93E\U0001F940-\U0001F970\U0001F973-\U0001F976\U0001F97A\U0001F97C-\U0001F9A2\U0001F9B0-\U0001F9B9\U0001F9C0-\U0001F9C2\U0001F9D0-\U0001F9FF\U0001FA60-\U0001FA6D]�suffix_search�1�…$|……$|,$|:$|;$|\!$|\?$|¿$|؟$|¡$|\($|\)$|\[$|\]$|\{$|\}$|<$|>$|_$|#$|\*$|&$|。$|?$|!$|,$|、$|;$|:$|~$|·$|।$|،$|۔$|؛$|٪$|\.\.+$|…$|\'$|"$|”$|“$|`$|‘$|´$|’$|‚$|,$|„$|»$|«$|「$|」$|『$|』$|($|)$|〔$|〕$|【$|】$|《$|》$|〈$|〉$|[\u00A6\u00A9\u00AE\u00B0\u0482\u058D\u058E\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u09FA\u0B70\u0BF3-\u0BF8\u0BFA\u0C7F\u0D4F\u0D79\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116\u2117\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u214A\u214C\u214D\u214F\u218A\u218B\u2195-\u2199\u219C-\u219F\u21A1\u21A2\u21A4\u21A5\u21A7-\u21AD\u21AF-\u21CD\u21D0\u21D1\u21D3\u21D5-\u21F3\u2300-\u2307\u230C-\u231F\u2322-\u2328\u232B-\u237B\u237D-\u239A\u23B4-\u23DB\u23E2-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u25B6\u25B8-\u25C0\u25C2-\u25F7\u2600-\u266E\u2670-\u2767\u2794-\u27BF\u2800-\u28FF\u2B00-\u2B2F\u2B45\u2B46\u2B4D-\u2B73\u2B76-\u2B95\u2B98-\u2BC8\u2BCA-\u2BFE\u2CE5-\u2CEA\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u32FE\u3300-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA828-\uA82B\uA836\uA837\uA839\uAA77-\uAA79\uFDFD\uFFE4\uFFE8\uFFED\uFFEE\uFFFC\uFFFD\U00010137-\U0001013F\U00010179-\U00010189\U0001018C-\U0001018E\U00010190-\U0001019B\U000101A0\U000101D0-\U000101FC\U00010877\U00010878\U00010AC8\U0001173F\U00016B3C-\U00016B3F\U00016B45\U0001BC9C\U0001D000-\U0001D0F5\U0001D100-\U0001D126\U0001D129-\U0001D164\U0001D16A-\U0001D16C\U0001D183\U0001D184\U0001D18C-\U0001D1A9\U0001D1AE-\U0001D1E8\U0001D200-\U0001D241\U0001D245\U0001D300-\U0001D356\U0001D800-\U0001D9FF\U0001DA37-\U0001DA3A\U0001DA6D-\U0001DA74\U0001DA76-\U0001DA83\U0001DA85\U0001DA86\U0001ECAC\U0001F000-\U0001F02B\U0001F030-\U0001F093\U0001F0A0-\U0001F0AE\U0001F0B1-\U0001F0BF\U0001F0C1-\U0001F0CF\U0001F0D1-\U0001F0F5\U0001F110-\U0001F16B\U0001F170-\U0001F1AC\U0001F1E6-\U0001F202\U0001F210-\U0001F23B\U0001F240-\U0001F248\U0001F250\U0001F251\U0001F260-\U0001F265\U0001F300-\U0001F3FA\U0001F400-\U0001F6D4\U0001F6E0-\U0001F6EC\U0001F6F0-\U0001F6F9\U0001F700-\U0001F773\U0001F780-\U0001F7D8\U0001F800-\U0001F80B\U0001F810-\U0001F847\U0001F850-\U0001F859\U0001F860-\U0001F887\U0001F890-\U0001F8AD\U0001F900-\U0001F90B\U0001F910-\U0001F93E\U0001F940-\U0001F970\U0001F973-\U0001F976\U0001F97A\U0001F97C-\U0001F9A2\U0001F9B0-\U0001F9B9\U0001F9C0-\U0001F9C2\U0001F9D0-\U0001F9FF\U0001FA60-\U0001FA6D]$|'s$|'S$|’s$|’S$|—$|–$|(?<=[0-9])\+$|(?<=°[FfCcKk])\.$|(?<=[0-9])(?:\$|£|€|¥|฿|US\$|C\$|A\$|₽|﷼|₴)$|(?<=[0-9])(?:km|km²|km³|m|m²|m³|dm|dm²|dm³|cm|cm²|cm³|mm|mm²|mm³|ha|µm|nm|yd|in|ft|kg|g|mg|µg|t|lb|oz|m/s|km/h|kmh|mph|hPa|Pa|mbar|mb|MB|kb|KB|gb|GB|tb|TB|T|G|M|K|%|км|км²|км³|м|м²|м³|дм|дм²|дм³|см|см²|см³|мм|мм²|мм³|нм|кг|г|мг|м/с|км/ч|кПа|Па|мбар|Кб|КБ|кб|Мб|МБ|мб|Гб|ГБ|гб|Тб|ТБ|тбكم|كم²|كم³|م|م²|م³|سم|سم²|سم³|مم|مم²|مم³|كم|غرام|جرام|جم|كغ|ملغ|كوب|اكواب)$|(?<=[0-9a-z\uFF41-\uFF5A\u00DF-\u00F6\u00F8-\u00FF\u0101\u0103\u0105\u0107\u0109\u010B\u010D\u010F\u0111\u0113\u0115\u0117\u0119\u011B\u011D\u011F\u0121\u0123\u0125\u0127\u0129\u012B\u012D\u012F\u0131\u0133\u0135\u0137\u0138\u013A\u013C\u013E\u0140\u0142\u0144\u0146\u0148\u0149\u014B\u014D\u014F\u0151\u0153\u0155\u0157\u0159\u015B\u015D\u015F\u0161\u0163\u0165\u0167\u0169\u016B\u016D\u016F\u0171\u0173\u0175\u0177\u017A\u017C\u017E\u017F\u0180\u0183\u0185\u0188\u018C\u018D\u0192\u0195\u0199-\u019B\u019E\u01A1\u01A3\u01A5\u01A8\u01AA\u01AB\u01AD\u01B0\u01B4\u01B6\u01B9\u01BA\u01BD-\u01BF\u01C6\u01C9\u01CC\u01CE\u01D0\u01D2\u01D4\u01D6\u01D8\u01DA\u01DC\u01DD\u01DF\u01E1\u01E3\u01E5\u01E7\u01E9\u01EB\u01ED\u01EF\u01F0\u01F3\u01F5\u01F9\u01FB\u01FD\u01FF\u0201\u0203\u0205\u0207\u0209\u020B\u020D\u020F\u0211\u0213\u0215\u0217\u0219\u021B\u021D\u021F\u0221\u0223\u0225\u0227\u0229\u022B\u022D\u022F\u0231\u0233-\u0239\u023C\u023F\u0240\u0242\u0247\u0249\u024B\u024D\u024F\u2C61\u2C65\u2C66\u2C68\u2C6A\u2C6C\u2C71\u2C73\u2C74\u2C76-\u2C7B\uA723\uA725\uA727\uA729\uA72B\uA72D\uA72F-\uA731\uA733\uA735\uA737\uA739\uA73B\uA73D\uA73F\uA741\uA743\uA745\uA747\uA749\uA74B\uA74D\uA74F\uA751\uA753\uA755\uA757\uA759\uA75B\uA75D\uA75F\uA761\uA763\uA765\uA767\uA769\uA76B\uA76D\uA76F\uA771-\uA778\uA77A\uA77C\uA77F\uA781\uA783\uA785\uA787\uA78C\uA78E\uA791\uA793-\uA795\uA797\uA799\uA79B\uA79D\uA79F\uA7A1\uA7A3\uA7A5\uA7A7\uA7A9\uA7AF\uA7B5\uA7B7\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E01\u1E03\u1E05\u1E07\u1E09\u1E0B\u1E0D\u1E0F\u1E11\u1E13\u1E15\u1E17\u1E19\u1E1B\u1E1D\u1E1F\u1E21\u1E23\u1E25\u1E27\u1E29\u1E2B\u1E2D\u1E2F\u1E31\u1E33\u1E35\u1E37\u1E39\u1E3B\u1E3D\u1E3F\u1E41\u1E43\u1E45\u1E47\u1E49\u1E4B\u1E4D\u1E4F\u1E51\u1E53\u1E55\u1E57\u1E59\u1E5B\u1E5D\u1E5F\u1E61\u1E63\u1E65\u1E67\u1E69\u1E6B\u1E6D\u1E6F\u1E71\u1E73\u1E75\u1E77\u1E79\u1E7B\u1E7D\u1E7F\u1E81\u1E83\u1E85\u1E87\u1E89\u1E8B\u1E8D\u1E8F\u1E91\u1E93\u1E95-\u1E9D\u1E9F\u1EA1\u1EA3\u1EA5\u1EA7\u1EA9\u1EAB\u1EAD\u1EAF\u1EB1\u1EB3\u1EB5\u1EB7\u1EB9\u1EBB\u1EBD\u1EBF\u1EC1\u1EC3\u1EC5\u1EC7\u1EC9\u1ECB\u1ECD\u1ECF\u1ED1\u1ED3\u1ED5\u1ED7\u1ED9\u1EDB\u1EDD\u1EDF\u1EE1\u1EE3\u1EE5\u1EE7\u1EE9\u1EEB\u1EED\u1EEF\u1EF1\u1EF3\u1EF5\u1EF7\u1EF9\u1EFB\u1EFD\u1EFFёа-яәөүҗңһα-ωάέίόώήύа-щюяіїєґѓѕјљњќѐѝ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F%²\-\+…|……|,|:|;|\!|\?|¿|؟|¡|\(|\)|\[|\]|\{|\}|<|>|_|#|\*|&|。|?|!|,|、|;|:|~|·|।|،|۔|؛|٪(?:\'"”“`‘´’‚,„»«「」『』()〔〕【】《》〈〉)])\.$|(?<=[A-Z\uFF21-\uFF3A\u00C0-\u00D6\u00D8-\u00DE\u0100\u0102\u0104\u0106\u0108\u010A\u010C\u010E\u0110\u0112\u0114\u0116\u0118\u011A\u011C\u011E\u0120\u0122\u0124\u0126\u0128\u012A\u012C\u012E\u0130\u0132\u0134\u0136\u0139\u013B\u013D\u013F\u0141\u0143\u0145\u0147\u014A\u014C\u014E\u0150\u0152\u0154\u0156\u0158\u015A\u015C\u015E\u0160\u0162\u0164\u0166\u0168\u016A\u016C\u016E\u0170\u0172\u0174\u0176\u0178\u0179\u017B\u017D\u0181\u0182\u0184\u0186\u0187\u0189-\u018B\u018E-\u0191\u0193\u0194\u0196-\u0198\u019C\u019D\u019F\u01A0\u01A2\u01A4\u01A6\u01A7\u01A9\u01AC\u01AE\u01AF\u01B1-\u01B3\u01B5\u01B7\u01B8\u01BC\u01C4\u01C7\u01CA\u01CD\u01CF\u01D1\u01D3\u01D5\u01D7\u01D9\u01DB\u01DE\u01E0\u01E2\u01E4\u01E6\u01E8\u01EA\u01EC\u01EE\u01F1\u01F4\u01F6-\u01F8\u01FA\u01FC\u01FE\u0200\u0202\u0204\u0206\u0208\u020A\u020C\u020E\u0210\u0212\u0214\u0216\u0218\u021A\u021C\u021E\u0220\u0222\u0224\u0226\u0228\u022A\u022C\u022E\u0230\u0232\u023A\u023B\u023D\u023E\u0241\u0243-\u0246\u0248\u024A\u024C\u024E\u2C60\u2C62-\u2C64\u2C67\u2C69\u2C6B\u2C6D-\u2C70\u2C72\u2C75\u2C7E\u2C7F\uA722\uA724\uA726\uA728\uA72A\uA72C\uA72E\uA732\uA734\uA736\uA738\uA73A\uA73C\uA73E\uA740\uA742\uA744\uA746\uA748\uA74A\uA74C\uA74E\uA750\uA752\uA754\uA756\uA758\uA75A\uA75C\uA75E\uA760\uA762\uA764\uA766\uA768\uA76A\uA76C\uA76E\uA779\uA77B\uA77D\uA77E\uA780\uA782\uA784\uA786\uA78B\uA78D\uA790\uA792\uA796\uA798\uA79A\uA79C\uA79E\uA7A0\uA7A2\uA7A4\uA7A6\uA7A8\uA7AA-\uA7AE\uA7B0-\uA7B4\uA7B6\uA7B8\u1E00\u1E02\u1E04\u1E06\u1E08\u1E0A\u1E0C\u1E0E\u1E10\u1E12\u1E14\u1E16\u1E18\u1E1A\u1E1C\u1E1E\u1E20\u1E22\u1E24\u1E26\u1E28\u1E2A\u1E2C\u1E2E\u1E30\u1E32\u1E34\u1E36\u1E38\u1E3A\u1E3C\u1E3E\u1E40\u1E42\u1E44\u1E46\u1E48\u1E4A\u1E4C\u1E4E\u1E50\u1E52\u1E54\u1E56\u1E58\u1E5A\u1E5C\u1E5E\u1E60\u1E62\u1E64\u1E66\u1E68\u1E6A\u1E6C\u1E6E\u1E70\u1E72\u1E74\u1E76\u1E78\u1E7A\u1E7C\u1E7E\u1E80\u1E82\u1E84\u1E86\u1E88\u1E8A\u1E8C\u1E8E\u1E90\u1E92\u1E94\u1E9E\u1EA0\u1EA2\u1EA4\u1EA6\u1EA8\u1EAA\u1EAC\u1EAE\u1EB0\u1EB2\u1EB4\u1EB6\u1EB8\u1EBA\u1EBC\u1EBE\u1EC0\u1EC2\u1EC4\u1EC6\u1EC8\u1ECA\u1ECC\u1ECE\u1ED0\u1ED2\u1ED4\u1ED6\u1ED8\u1EDA\u1EDC\u1EDE\u1EE0\u1EE2\u1EE4\u1EE6\u1EE8\u1EEA\u1EEC\u1EEE\u1EF0\u1EF2\u1EF4\u1EF6\u1EF8\u1EFA\u1EFC\u1EFEЁА-ЯӘӨҮҖҢҺΑ-ΩΆΈΊΌΏΉΎА-ЩЮЯІЇЄҐЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F][A-Z\uFF21-\uFF3A\u00C0-\u00D6\u00D8-\u00DE\u0100\u0102\u0104\u0106\u0108\u010A\u010C\u010E\u0110\u0112\u0114\u0116\u0118\u011A\u011C\u011E\u0120\u0122\u0124\u0126\u0128\u012A\u012C\u012E\u0130\u0132\u0134\u0136\u0139\u013B\u013D\u013F\u0141\u0143\u0145\u0147\u014A\u014C\u014E\u0150\u0152\u0154\u0156\u0158\u015A\u015C\u015E\u0160\u0162\u0164\u0166\u0168\u016A\u016C\u016E\u0170\u0172\u0174\u0176\u0178\u0179\u017B\u017D\u0181\u0182\u0184\u0186\u0187\u0189-\u018B\u018E-\u0191\u0193\u0194\u0196-\u0198\u019C\u019D\u019F\u01A0\u01A2\u01A4\u01A6\u01A7\u01A9\u01AC\u01AE\u01AF\u01B1-\u01B3\u01B5\u01B7\u01B8\u01BC\u01C4\u01C7\u01CA\u01CD\u01CF\u01D1\u01D3\u01D5\u01D7\u01D9\u01DB\u01DE\u01E0\u01E2\u01E4\u01E6\u01E8\u01EA\u01EC\u01EE\u01F1\u01F4\u01F6-\u01F8\u01FA\u01FC\u01FE\u0200\u0202\u0204\u0206\u0208\u020A\u020C\u020E\u0210\u0212\u0214\u0216\u0218\u021A\u021C\u021E\u0220\u0222\u0224\u0226\u0228\u022A\u022C\u022E\u0230\u0232\u023A\u023B\u023D\u023E\u0241\u0243-\u0246\u0248\u024A\u024C\u024E\u2C60\u2C62-\u2C64\u2C67\u2C69\u2C6B\u2C6D-\u2C70\u2C72\u2C75\u2C7E\u2C7F\uA722\uA724\uA726\uA728\uA72A\uA72C\uA72E\uA732\uA734\uA736\uA738\uA73A\uA73C\uA73E\uA740\uA742\uA744\uA746\uA748\uA74A\uA74C\uA74E\uA750\uA752\uA754\uA756\uA758\uA75A\uA75C\uA75E\uA760\uA762\uA764\uA766\uA768\uA76A\uA76C\uA76E\uA779\uA77B\uA77D\uA77E\uA780\uA782\uA784\uA786\uA78B\uA78D\uA790\uA792\uA796\uA798\uA79A\uA79C\uA79E\uA7A0\uA7A2\uA7A4\uA7A6\uA7A8\uA7AA-\uA7AE\uA7B0-\uA7B4\uA7B6\uA7B8\u1E00\u1E02\u1E04\u1E06\u1E08\u1E0A\u1E0C\u1E0E\u1E10\u1E12\u1E14\u1E16\u1E18\u1E1A\u1E1C\u1E1E\u1E20\u1E22\u1E24\u1E26\u1E28\u1E2A\u1E2C\u1E2E\u1E30\u1E32\u1E34\u1E36\u1E38\u1E3A\u1E3C\u1E3E\u1E40\u1E42\u1E44\u1E46\u1E48\u1E4A\u1E4C\u1E4E\u1E50\u1E52\u1E54\u1E56\u1E58\u1E5A\u1E5C\u1E5E\u1E60\u1E62\u1E64\u1E66\u1E68\u1E6A\u1E6C\u1E6E\u1E70\u1E72\u1E74\u1E76\u1E78\u1E7A\u1E7C\u1E7E\u1E80\u1E82\u1E84\u1E86\u1E88\u1E8A\u1E8C\u1E8E\u1E90\u1E92\u1E94\u1E9E\u1EA0\u1EA2\u1EA4\u1EA6\u1EA8\u1EAA\u1EAC\u1EAE\u1EB0\u1EB2\u1EB4\u1EB6\u1EB8\u1EBA\u1EBC\u1EBE\u1EC0\u1EC2\u1EC4\u1EC6\u1EC8\u1ECA\u1ECC\u1ECE\u1ED0\u1ED2\u1ED4\u1ED6\u1ED8\u1EDA\u1EDC\u1EDE\u1EE0\u1EE2\u1EE4\u1EE6\u1EE8\u1EEA\u1EEC\u1EEE\u1EF0\u1EF2\u1EF4\u1EF6\u1EF8\u1EFA\u1EFC\u1EFEЁА-ЯӘӨҮҖҢҺΑ-ΩΆΈΊΌΏΉΎА-ЩЮЯІЇЄҐЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])\.$�infix_finditer�=�\.\.+|…|[\u00A6\u00A9\u00AE\u00B0\u0482\u058D\u058E\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u09FA\u0B70\u0BF3-\u0BF8\u0BFA\u0C7F\u0D4F\u0D79\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116\u2117\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u214A\u214C\u214D\u214F\u218A\u218B\u2195-\u2199\u219C-\u219F\u21A1\u21A2\u21A4\u21A5\u21A7-\u21AD\u21AF-\u21CD\u21D0\u21D1\u21D3\u21D5-\u21F3\u2300-\u2307\u230C-\u231F\u2322-\u2328\u232B-\u237B\u237D-\u239A\u23B4-\u23DB\u23E2-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u25B6\u25B8-\u25C0\u25C2-\u25F7\u2600-\u266E\u2670-\u2767\u2794-\u27BF\u2800-\u28FF\u2B00-\u2B2F\u2B45\u2B46\u2B4D-\u2B73\u2B76-\u2B95\u2B98-\u2BC8\u2BCA-\u2BFE\u2CE5-\u2CEA\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u32FE\u3300-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA828-\uA82B\uA836\uA837\uA839\uAA77-\uAA79\uFDFD\uFFE4\uFFE8\uFFED\uFFEE\uFFFC\uFFFD\U00010137-\U0001013F\U00010179-\U00010189\U0001018C-\U0001018E\U00010190-\U0001019B\U000101A0\U000101D0-\U000101FC\U00010877\U00010878\U00010AC8\U0001173F\U00016B3C-\U00016B3F\U00016B45\U0001BC9C\U0001D000-\U0001D0F5\U0001D100-\U0001D126\U0001D129-\U0001D164\U0001D16A-\U0001D16C\U0001D183\U0001D184\U0001D18C-\U0001D1A9\U0001D1AE-\U0001D1E8\U0001D200-\U0001D241\U0001D245\U0001D300-\U0001D356\U0001D800-\U0001D9FF\U0001DA37-\U0001DA3A\U0001DA6D-\U0001DA74\U0001DA76-\U0001DA83\U0001DA85\U0001DA86\U0001ECAC\U0001F000-\U0001F02B\U0001F030-\U0001F093\U0001F0A0-\U0001F0AE\U0001F0B1-\U0001F0BF\U0001F0C1-\U0001F0CF\U0001F0D1-\U0001F0F5\U0001F110-\U0001F16B\U0001F170-\U0001F1AC\U0001F1E6-\U0001F202\U0001F210-\U0001F23B\U0001F240-\U0001F248\U0001F250\U0001F251\U0001F260-\U0001F265\U0001F300-\U0001F3FA\U0001F400-\U0001F6D4\U0001F6E0-\U0001F6EC\U0001F6F0-\U0001F6F9\U0001F700-\U0001F773\U0001F780-\U0001F7D8\U0001F800-\U0001F80B\U0001F810-\U0001F847\U0001F850-\U0001F859\U0001F860-\U0001F887\U0001F890-\U0001F8AD\U0001F900-\U0001F90B\U0001F910-\U0001F93E\U0001F940-\U0001F970\U0001F973-\U0001F976\U0001F97A\U0001F97C-\U0001F9A2\U0001F9B0-\U0001F9B9\U0001F9C0-\U0001F9C2\U0001F9D0-\U0001F9FF\U0001FA60-\U0001FA6D]|(?<=[0-9])[+\-\*^](?=[0-9-])|(?<=[a-z\uFF41-\uFF5A\u00DF-\u00F6\u00F8-\u00FF\u0101\u0103\u0105\u0107\u0109\u010B\u010D\u010F\u0111\u0113\u0115\u0117\u0119\u011B\u011D\u011F\u0121\u0123\u0125\u0127\u0129\u012B\u012D\u012F\u0131\u0133\u0135\u0137\u0138\u013A\u013C\u013E\u0140\u0142\u0144\u0146\u0148\u0149\u014B\u014D\u014F\u0151\u0153\u0155\u0157\u0159\u015B\u015D\u015F\u0161\u0163\u0165\u0167\u0169\u016B\u016D\u016F\u0171\u0173\u0175\u0177\u017A\u017C\u017E\u017F\u0180\u0183\u0185\u0188\u018C\u018D\u0192\u0195\u0199-\u019B\u019E\u01A1\u01A3\u01A5\u01A8\u01AA\u01AB\u01AD\u01B0\u01B4\u01B6\u01B9\u01BA\u01BD-\u01BF\u01C6\u01C9\u01CC\u01CE\u01D0\u01D2\u01D4\u01D6\u01D8\u01DA\u01DC\u01DD\u01DF\u01E1\u01E3\u01E5\u01E7\u01E9\u01EB\u01ED\u01EF\u01F0\u01F3\u01F5\u01F9\u01FB\u01FD\u01FF\u0201\u0203\u0205\u0207\u0209\u020B\u020D\u020F\u0211\u0213\u0215\u0217\u0219\u021B\u021D\u021F\u0221\u0223\u0225\u0227\u0229\u022B\u022D\u022F\u0231\u0233-\u0239\u023C\u023F\u0240\u0242\u0247\u0249\u024B\u024D\u024F\u2C61\u2C65\u2C66\u2C68\u2C6A\u2C6C\u2C71\u2C73\u2C74\u2C76-\u2C7B\uA723\uA725\uA727\uA729\uA72B\uA72D\uA72F-\uA731\uA733\uA735\uA737\uA739\uA73B\uA73D\uA73F\uA741\uA743\uA745\uA747\uA749\uA74B\uA74D\uA74F\uA751\uA753\uA755\uA757\uA759\uA75B\uA75D\uA75F\uA761\uA763\uA765\uA767\uA769\uA76B\uA76D\uA76F\uA771-\uA778\uA77A\uA77C\uA77F\uA781\uA783\uA785\uA787\uA78C\uA78E\uA791\uA793-\uA795\uA797\uA799\uA79B\uA79D\uA79F\uA7A1\uA7A3\uA7A5\uA7A7\uA7A9\uA7AF\uA7B5\uA7B7\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E01\u1E03\u1E05\u1E07\u1E09\u1E0B\u1E0D\u1E0F\u1E11\u1E13\u1E15\u1E17\u1E19\u1E1B\u1E1D\u1E1F\u1E21\u1E23\u1E25\u1E27\u1E29\u1E2B\u1E2D\u1E2F\u1E31\u1E33\u1E35\u1E37\u1E39\u1E3B\u1E3D\u1E3F\u1E41\u1E43\u1E45\u1E47\u1E49\u1E4B\u1E4D\u1E4F\u1E51\u1E53\u1E55\u1E57\u1E59\u1E5B\u1E5D\u1E5F\u1E61\u1E63\u1E65\u1E67\u1E69\u1E6B\u1E6D\u1E6F\u1E71\u1E73\u1E75\u1E77\u1E79\u1E7B\u1E7D\u1E7F\u1E81\u1E83\u1E85\u1E87\u1E89\u1E8B\u1E8D\u1E8F\u1E91\u1E93\u1E95-\u1E9D\u1E9F\u1EA1\u1EA3\u1EA5\u1EA7\u1EA9\u1EAB\u1EAD\u1EAF\u1EB1\u1EB3\u1EB5\u1EB7\u1EB9\u1EBB\u1EBD\u1EBF\u1EC1\u1EC3\u1EC5\u1EC7\u1EC9\u1ECB\u1ECD\u1ECF\u1ED1\u1ED3\u1ED5\u1ED7\u1ED9\u1EDB\u1EDD\u1EDF\u1EE1\u1EE3\u1EE5\u1EE7\u1EE9\u1EEB\u1EED\u1EEF\u1EF1\u1EF3\u1EF5\u1EF7\u1EF9\u1EFB\u1EFD\u1EFFёа-яәөүҗңһα-ωάέίόώήύа-щюяіїєґѓѕјљњќѐѝ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F\'"”“`‘´’‚,„»«「」『』()〔〕【】《》〈〉])\.(?=[A-Z\uFF21-\uFF3A\u00C0-\u00D6\u00D8-\u00DE\u0100\u0102\u0104\u0106\u0108\u010A\u010C\u010E\u0110\u0112\u0114\u0116\u0118\u011A\u011C\u011E\u0120\u0122\u0124\u0126\u0128\u012A\u012C\u012E\u0130\u0132\u0134\u0136\u0139\u013B\u013D\u013F\u0141\u0143\u0145\u0147\u014A\u014C\u014E\u0150\u0152\u0154\u0156\u0158\u015A\u015C\u015E\u0160\u0162\u0164\u0166\u0168\u016A\u016C\u016E\u0170\u0172\u0174\u0176\u0178\u0179\u017B\u017D\u0181\u0182\u0184\u0186\u0187\u0189-\u018B\u018E-\u0191\u0193\u0194\u0196-\u0198\u019C\u019D\u019F\u01A0\u01A2\u01A4\u01A6\u01A7\u01A9\u01AC\u01AE\u01AF\u01B1-\u01B3\u01B5\u01B7\u01B8\u01BC\u01C4\u01C7\u01CA\u01CD\u01CF\u01D1\u01D3\u01D5\u01D7\u01D9\u01DB\u01DE\u01E0\u01E2\u01E4\u01E6\u01E8\u01EA\u01EC\u01EE\u01F1\u01F4\u01F6-\u01F8\u01FA\u01FC\u01FE\u0200\u0202\u0204\u0206\u0208\u020A\u020C\u020E\u0210\u0212\u0214\u0216\u0218\u021A\u021C\u021E\u0220\u0222\u0224\u0226\u0228\u022A\u022C\u022E\u0230\u0232\u023A\u023B\u023D\u023E\u0241\u0243-\u0246\u0248\u024A\u024C\u024E\u2C60\u2C62-\u2C64\u2C67\u2C69\u2C6B\u2C6D-\u2C70\u2C72\u2C75\u2C7E\u2C7F\uA722\uA724\uA726\uA728\uA72A\uA72C\uA72E\uA732\uA734\uA736\uA738\uA73A\uA73C\uA73E\uA740\uA742\uA744\uA746\uA748\uA74A\uA74C\uA74E\uA750\uA752\uA754\uA756\uA758\uA75A\uA75C\uA75E\uA760\uA762\uA764\uA766\uA768\uA76A\uA76C\uA76E\uA779\uA77B\uA77D\uA77E\uA780\uA782\uA784\uA786\uA78B\uA78D\uA790\uA792\uA796\uA798\uA79A\uA79C\uA79E\uA7A0\uA7A2\uA7A4\uA7A6\uA7A8\uA7AA-\uA7AE\uA7B0-\uA7B4\uA7B6\uA7B8\u1E00\u1E02\u1E04\u1E06\u1E08\u1E0A\u1E0C\u1E0E\u1E10\u1E12\u1E14\u1E16\u1E18\u1E1A\u1E1C\u1E1E\u1E20\u1E22\u1E24\u1E26\u1E28\u1E2A\u1E2C\u1E2E\u1E30\u1E32\u1E34\u1E36\u1E38\u1E3A\u1E3C\u1E3E\u1E40\u1E42\u1E44\u1E46\u1E48\u1E4A\u1E4C\u1E4E\u1E50\u1E52\u1E54\u1E56\u1E58\u1E5A\u1E5C\u1E5E\u1E60\u1E62\u1E64\u1E66\u1E68\u1E6A\u1E6C\u1E6E\u1E70\u1E72\u1E74\u1E76\u1E78\u1E7A\u1E7C\u1E7E\u1E80\u1E82\u1E84\u1E86\u1E88\u1E8A\u1E8C\u1E8E\u1E90\u1E92\u1E94\u1E9E\u1EA0\u1EA2\u1EA4\u1EA6\u1EA8\u1EAA\u1EAC\u1EAE\u1EB0\u1EB2\u1EB4\u1EB6\u1EB8\u1EBA\u1EBC\u1EBE\u1EC0\u1EC2\u1EC4\u1EC6\u1EC8\u1ECA\u1ECC\u1ECE\u1ED0\u1ED2\u1ED4\u1ED6\u1ED8\u1EDA\u1EDC\u1EDE\u1EE0\u1EE2\u1EE4\u1EE6\u1EE8\u1EEA\u1EEC\u1EEE\u1EF0\u1EF2\u1EF4\u1EF6\u1EF8\u1EFA\u1EFC\u1EFEЁА-ЯӘӨҮҖҢҺΑ-ΩΆΈΊΌΏΉΎА-ЩЮЯІЇЄҐЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F\'"”“`‘´’‚,„»«「」『』()〔〕【】《》〈〉])|(?<=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F]),(?=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])|(?<=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F0-9])(?:-|–|—|--|---|——|~)(?=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])|(?<=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F0-9])[:<>=/](?=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])�token_match��url_match�
3
+ ��A�
4
+ � ��A� �'��A�'�''��A�''�'Cause��A�'CauseC�because�'Cos��A�'CosC�because�'Coz��A�'CozC�because�'Cuz��A�'CuzC�because�'S��A�'SC�'s�'bout��A�'boutC�about�'cause��A�'causeC�because�'cos��A�'cosC�because�'coz��A�'cozC�because�'cuz��A�'cuzC�because�'d��A�'d�'em��A�'emC�them�'ll��A�'llC�will�'nuff��A�'nuffC�enough�'re��A�'reC�are�'s��A�'sC�'s�(*_*)��A�(*_*)�(-8��A�(-8�(-:��A�(-:�(-;��A�(-;�(-_-)��A�(-_-)�(._.)��A�(._.)�(:��A�(:�(;��A�(;�(=��A�(=�(>_<)��A�(>_<)�(^_^)��A�(^_^)�(o:��A�(o:�(¬_¬)��A�(¬_¬)�(ಠ_ಠ)��A�(ಠ_ಠ)�(╯°□°)╯︵┻━┻��A�(╯°□°)╯︵┻━┻�)-:��A�)-:�):��A�):�-_-��A�-_-�-__-��A�-__-�._.��A�._.�0.0��A�0.0�0.o��A�0.o�0_0��A�0_0�0_o��A�0_o�10a.m.��A�10�A�a.m.C�a.m.�10am��A�10�A�amC�a.m.�10p.m.��A�10�A�p.m.C�p.m.�10pm��A�10�A�pmC�p.m.�11a.m.��A�11�A�a.m.C�a.m.�11am��A�11�A�amC�a.m.�11p.m.��A�11�A�p.m.C�p.m.�11pm��A�11�A�pmC�p.m.�12a.m.��A�12�A�a.m.C�a.m.�12am��A�12�A�amC�a.m.�12p.m.��A�12�A�p.m.C�p.m.�12pm��A�12�A�pmC�p.m.�1a.m.��A�1�A�a.m.C�a.m.�1am��A�1�A�amC�a.m.�1p.m.��A�1�A�p.m.C�p.m.�1pm��A�1�A�pmC�p.m.�2a.m.��A�2�A�a.m.C�a.m.�2am��A�2�A�amC�a.m.�2p.m.��A�2�A�p.m.C�p.m.�2pm��A�2�A�pmC�p.m.�3a.m.��A�3�A�a.m.C�a.m.�3am��A�3�A�amC�a.m.�3p.m.��A�3�A�p.m.C�p.m.�3pm��A�3�A�pmC�p.m.�4a.m.��A�4�A�a.m.C�a.m.�4am��A�4�A�amC�a.m.�4p.m.��A�4�A�p.m.C�p.m.�4pm��A�4�A�pmC�p.m.�5a.m.��A�5�A�a.m.C�a.m.�5am��A�5�A�amC�a.m.�5p.m.��A�5�A�p.m.C�p.m.�5pm��A�5�A�pmC�p.m.�6a.m.��A�6�A�a.m.C�a.m.�6am��A�6�A�amC�a.m.�6p.m.��A�6�A�p.m.C�p.m.�6pm��A�6�A�pmC�p.m.�7a.m.��A�7�A�a.m.C�a.m.�7am��A�7�A�amC�a.m.�7p.m.��A�7�A�p.m.C�p.m.�7pm��A�7�A�pmC�p.m.�8)��A�8)�8-)��A�8-)�8-D��A�8-D�8D��A�8D�8a.m.��A�8�A�a.m.C�a.m.�8am��A�8�A�amC�a.m.�8p.m.��A�8�A�p.m.C�p.m.�8pm��A�8�A�pmC�p.m.�9a.m.��A�9�A�a.m.C�a.m.�9am��A�9�A�amC�a.m.�9p.m.��A�9�A�p.m.C�p.m.�9pm��A�9�A�pmC�p.m.�:'(��A�:'(�:')��A�:')�:'-(��A�:'-(�:'-)��A�:'-)�:(��A�:(�:((��A�:((�:(((��A�:(((�:()��A�:()�:)��A�:)�:))��A�:))�:)))��A�:)))�:*��A�:*�:-(��A�:-(�:-((��A�:-((�:-(((��A�:-(((�:-)��A�:-)�:-))��A�:-))�:-)))��A�:-)))�:-*��A�:-*�:-/��A�:-/�:-0��A�:-0�:-3��A�:-3�:->��A�:->�:-D��A�:-D�:-O��A�:-O�:-P��A�:-P�:-X��A�:-X�:-]��A�:-]�:-o��A�:-o�:-p��A�:-p�:-x��A�:-x�:-|��A�:-|�:-}��A�:-}�:/��A�:/�:0��A�:0�:1��A�:1�:3��A�:3�:>��A�:>�:D��A�:D�:O��A�:O�:P��A�:P�:X��A�:X�:]��A�:]�:o��A�:o�:o)��A�:o)�:p��A�:p�:x��A�:x�:|��A�:|�:}��A�:}�:’(��A�:’(�:’)��A�:’)�:’-(��A�:’-(�:’-)��A�:’-)�;)��A�;)�;-)��A�;-)�;-D��A�;-D�;D��A�;D�;_;��A�;_;�<.<��A�<.<�</3��A�</3�<3��A�<3�<33��A�<33�<333��A�<333�<space>��A�<space>�=(��A�=(�=)��A�=)�=/��A�=/�=3��A�=3�=D��A�=D�=[��A�=[�=]��A�=]�=|��A�=|�>.<��A�>.<�>.>��A�>.>�>:(��A�>:(�>:o��A�>:o�><(((*>��A�><(((*>�@_@��A�@_@�Adm.��A�Adm.�Ain't��A�Ai�A�n'tC�not�Aint��A�Ai�A�ntC�not�Ain’t��A�Ai�A�n’tC�not�Ak.��A�Ak.C�Alaska�Ala.��A�Ala.C�Alabama�Apr.��A�Apr.C�April�Aren't��A�AreC�are�A�n'tC�not�Arent��A�AreC�are�A�ntC�not�Aren’t��A�AreC�are�A�n’tC�not�Ariz.��A�Ariz.C�Arizona�Ark.��A�Ark.C�Arkansas�Aug.��A�Aug.C�August�Bros.��A�Bros.�C'mon��A�C'mC�come�A�on�C++��A�C++�Calif.��A�Calif.C�California�Can't��A�CaC�can�A�n'tC�not�Can't've��A�CaC�can�A�n'tC�not�A�'veC�have�Cannot��A�CanC�can�A�not�Cant��A�CaC�can�A�ntC�not�Cantve��A�CaC�can�A�ntC�not�A�veC�have�Can’t��A�CaC�can�A�n’tC�not�Can’t’ve��A�CaC�can�A�n’tC�not�A�’veC�have�Co.��A�Co.�Colo.��A�Colo.C�Colorado�Conn.��A�Conn.C�Connecticut�Corp.��A�Corp.�Could've��A�CouldC�could�A�'ve�Couldn't��A�CouldC�could�A�n'tC�not�Couldn't've��A�CouldC�could�A�n'tC�not�A�'veC�have�Couldnt��A�CouldC�could�A�ntC�not�Couldntve��A�CouldC�could�A�ntC�not�A�veC�have�Couldn’t��A�CouldC�could�A�n’tC�not�Couldn’t’ve��A�CouldC�could�A�n’tC�not�A�’veC�have�Couldve��A�CouldC�could�A�ve�Could’ve��A�CouldC�could�A�’ve�C’mon��A�C’mC�come�A�on�D.C.��A�D.C.�Daren't��A�DareC�dare�A�n'tC�not�Darent��A�DareC�dare�A�ntC�not�Daren’t��A�DareC�dare�A�n’tC�not�Dec.��A�Dec.C�December�Del.��A�Del.C�Delaware�Didn't��A�DidC�do�A�n'tC�not�Didn't've��A�DidC�do�A�n'tC�not�A�'veC�have�Didnt��A�DidC�do�A�ntC�not�Didntve��A�DidC�do�A�ntC�not�A�veC�have�Didn’t��A�DidC�do�A�n’tC�not�Didn’t’ve��A�DidC�do�A�n’tC�not�A�’veC�have�Doesn't��A�DoesC�does�A�n'tC�not�Doesn't've��A�DoesC�does�A�n'tC�not�A�'veC�have�Doesnt��A�DoesC�does�A�ntC�not�Doesntve��A�DoesC�does�A�ntC�not�A�veC�have�Doesn’t��A�DoesC�does�A�n’tC�not�Doesn’t’ve��A�DoesC�does�A�n’tC�not�A�’veC�have�Doin��A�DoinC�doing�Doin'��A�Doin'C�doing�Doin’��A�Doin’C�doing�Don't��A�DoC�do�A�n'tC�not�Don't've��A�DoC�do�A�n'tC�not�A�'veC�have�Dont��A�DoC�do�A�ntC�not�Dontve��A�DoC�do�A�ntC�not�A�veC�have�Don’t��A�DoC�do�A�n’tC�not�Don’t’ve��A�DoC�do�A�n’tC�not�A�’veC�have�Dr.��A�Dr.�E.G.��A�E.G.�E.g.��A�E.g.�Feb.��A�Feb.C�February�Fla.��A�Fla.C�Florida�Ga.��A�Ga.C�Georgia�Gen.��A�Gen.�Goin��A�GoinC�going�Goin'��A�Goin'C�going�Goin’��A�Goin’C�going�Gonna��A�GonC�going�A�naC�to�Gotta��A�GotC�got�A�taC�to�Gov.��A�Gov.�Hadn't��A�HadC�have�A�n'tC�not�Hadn't've��A�HadC�have�A�n'tC�not�A�'veC�have�Hadnt��A�HadC�have�A�ntC�not�Hadntve��A�HadC�have�A�ntC�not�A�veC�have�Hadn’t��A�HadC�have�A�n’tC�not�Hadn’t’ve��A�HadC�have�A�n’tC�not�A�’veC�have�Hasn't��A�HasC�has�A�n'tC�not�Hasnt��A�HasC�has�A�ntC�not�Hasn’t��A�HasC�has�A�n’tC�not�Haven't��A�HaveC�have�A�n'tC�not�Havent��A�HaveC�have�A�ntC�not�Haven’t��A�HaveC�have�A�n’tC�not�Havin��A�HavinC�having�Havin'��A�Havin'C�having�Havin’��A�Havin’C�having�He'd��A�HeC�he�A�'dC�'d�He'd've��A�HeC�he�A�'dC�would�A�'veC�have�He'll��A�HeC�he�A�'llC�will�He'll've��A�HeC�he�A�'llC�will�A�'veC�have�He's��A�HeC�he�A�'sC�'s�Hed��A�HeC�he�A�dC�'d�Hedve��A�HeC�he�A�dC�would�A�veC�have�Hellve��A�HeC�he�A�llC�will�A�veC�have�Hes��A�HeC�he�A�s�He’d��A�HeC�he�A�’dC�'d�He’d’ve��A�HeC�he�A�’dC�would�A�’veC�have�He’ll��A�HeC�he�A�’llC�will�He’ll’ve��A�HeC�he�A�’llC�will�A�’veC�have�He’s��A�HeC�he�A�’sC�'s�How'd��A�HowC�how�A�'dC�'d�How'd've��A�HowC�how�A�'dC�would�A�'veC�have�How'd'y��A�HowC�how�A�'d�A�'yC�you�How'll��A�HowC�how�A�'llC�will�How'll've��A�HowC�how�A�'llC�will�A�'veC�have�How're��A�HowC�how�A�'reC�are�How's��A�HowC�how�A�'sC�'s�How've��A�HowC�how�A�'ve�Howd��A�HowC�how�A�dC�'d�Howdve��A�HowC�how�A�dC�would�A�veC�have�Howll��A�HowC�how�A�llC�will�Howllve��A�HowC�how�A�llC�will�A�veC�have�Howre��A�HowC�how�A�reC�are�Hows��A�HowC�how�A�s�Howve��A�How�A�veC�have�How’d��A�HowC�how�A�’dC�'d�How’d’ve��A�HowC�how�A�’dC�would�A�’veC�have�How’d’y��A�HowC�how�A�’d�A�’yC�you�How’ll��A�HowC�how�A�’llC�will�How’ll’ve��A�HowC�how�A�’llC�will�A�’veC�have�How’re��A�HowC�how�A�’reC�are�How’s��A�HowC�how�A�’sC�'s�How’ve��A�HowC�how�A�’ve�I'd��A�IC�i�A�'dC�'d�I'd've��A�IC�i�A�'dC�would�A�'veC�have�I'll��A�IC�i�A�'llC�will�I'll've��A�IC�i�A�'llC�will�A�'veC�have�I'm��A�IC�i�A�'mC�am�I'ma��A�IC�i�A�'mC�am�A�aC�gonna�I've��A�IC�i�A�'veC�have�I.E.��A�I.E.�I.e.��A�I.e.�Ia.��A�Ia.C�Iowa�Id��A�IC�i�A�dC�'d�Id.��A�Id.C�Idaho�Idve��A�IC�i�A�dC�would�A�veC�have�Ill.��A�Ill.C�Illinois�Illve��A�IC�i�A�llC�will�A�veC�have�Im��A�IC�i�A�m�Ima��A�IC�i�A�mC�am�A�aC�gonna�Inc.��A�Inc.�Ind.��A�Ind.C�Indiana�Isn't��A�IsC�is�A�n'tC�not�Isnt��A�IsC�is�A�ntC�not�Isn’t��A�IsC�is�A�n’tC�not�It'd��A�ItC�it�A�'dC�'d�It'd've��A�ItC�it�A�'dC�would�A�'veC�have�It'll��A�ItC�it�A�'llC�will�It'll've��A�ItC�it�A�'llC�will�A�'veC�have�It's��A�ItC�it�A�'sC�'s�Itd��A�ItC�it�A�dC�'d�Itdve��A�ItC�it�A�dC�would�A�veC�have�Itll��A�ItC�it�A�llC�will�Itllve��A�ItC�it�A�llC�will�A�veC�have�It’d��A�ItC�it�A�’dC�'d�It’d’ve��A�ItC�it�A�’dC�would�A�’veC�have�It’ll��A�ItC�it�A�’llC�will�It’ll’ve��A�ItC�it�A�’llC�will�A�’veC�have�It’s��A�ItC�it�A�’sC�'s�Ive��A�IC�i�A�veC�have�I’d��A�IC�i�A�’dC�'d�I’d’ve��A�IC�i�A�’dC�would�A�’veC�have�I’ll��A�IC�i�A�’llC�will�I’ll’ve��A�IC�i�A�’llC�will�A�’veC�have�I’m��A�IC�i�A�’mC�am�I’ma��A�IC�i�A�’mC�am�A�aC�gonna�I’ve��A�IC�i�A�’veC�have�Jan.��A�Jan.C�January�Jr.��A�Jr.�Jul.��A�Jul.C�July�Jun.��A�Jun.C�June�Kan.��A�Kan.C�Kansas�Kans.��A�Kans.C�Kansas�Ky.��A�Ky.C�Kentucky�La.��A�La.C�Louisiana�Let's��A�LetC�let�A�'sC�us�Let’s��A�LetC�let�A�’sC�us�Lovin��A�LovinC�loving�Lovin'��A�Lovin'C�loving�Lovin’��A�Lovin’C�loving�Ltd.��A�Ltd.�Ma'am��A�Ma'amC�madam�Mar.��A�Mar.C�March�Mass.��A�Mass.C�Massachusetts�May.��A�May.C�May�Mayn't��A�MayC�may�A�n'tC�not�Mayn't've��A�MayC�may�A�n'tC�not�A�'veC�have�Maynt��A�MayC�may�A�ntC�not�Mayntve��A�MayC�may�A�ntC�not�A�veC�have�Mayn’t��A�MayC�may�A�n’tC�not�Mayn’t’ve��A�MayC�may�A�n’tC�not�A�’veC�have�Ma’am��A�Ma’amC�madam�Md.��A�Md.�Messrs.��A�Messrs.�Mich.��A�Mich.C�Michigan�Might've��A�MightC�might�A�'ve�Mightn't��A�MightC�might�A�n'tC�not�Mightn't've��A�MightC�might�A�n'tC�not�A�'veC�have�Mightnt��A�MightC�might�A�ntC�not�Mightntve��A�MightC�might�A�ntC�not�A�veC�have�Mightn’t��A�MightC�might�A�n’tC�not�Mightn’t’ve��A�MightC�might�A�n’tC�not�A�’veC�have�Mightve��A�MightC�might�A�ve�Might’ve��A�MightC�might�A�’ve�Minn.��A�Minn.C�Minnesota�Miss.��A�Miss.C�Mississippi�Mo.��A�Mo.�Mont.��A�Mont.�Mr.��A�Mr.�Mrs.��A�Mrs.�Ms.��A�Ms.�Mt.��A�Mt.C�Mount�Must've��A�MustC�must�A�'ve�Mustn't��A�MustC�must�A�n'tC�not�Mustn't've��A�MustC�must�A�n'tC�not�A�'veC�have�Mustnt��A�MustC�must�A�ntC�not�Mustntve��A�MustC�must�A�ntC�not�A�veC�have�Mustn’t��A�MustC�must�A�n’tC�not�Mustn’t’ve��A�MustC�must�A�n’tC�not�A�’veC�have�Mustve��A�MustC�must�A�ve�Must’ve��A�MustC�must�A�’ve�N.C.��A�N.C.C�North Carolina�N.D.��A�N.D.C�North Dakota�N.H.��A�N.H.C�New Hampshire�N.J.��A�N.J.C�New Jersey�N.M.��A�N.M.C�New Mexico�N.Y.��A�N.Y.C�New York�Neb.��A�Neb.C�Nebraska�Nebr.��A�Nebr.C�Nebraska�Needn't��A�NeedC�need�A�n'tC�not�Needn't've��A�NeedC�need�A�n'tC�not�A�'veC�have�Neednt��A�NeedC�need�A�ntC�not�Needntve��A�NeedC�need�A�ntC�not�A�veC�have�Needn’t��A�NeedC�need�A�n’tC�not�Needn’t’ve��A�NeedC�need�A�n’tC�not�A�’veC�have�Nev.��A�Nev.C�Nevada�Not've��A�NotC�not�A�'veC�have�Nothin��A�NothinC�nothing�Nothin'��A�Nothin'C�nothing�Nothin’��A�Nothin’C�nothing�Notve��A�NotC�not�A�veC�have�Not’ve��A�NotC�not�A�’veC�have�Nov.��A�Nov.C�November�Nuthin��A�NuthinC�nothing�Nuthin'��A�Nuthin'C�nothing�Nuthin’��A�Nuthin’C�nothing�O'clock��A�O'clockC�o'clock�O.O��A�O.O�O.o��A�O.o�O_O��A�O_O�O_o��A�O_o�Oct.��A�Oct.C�October�Okla.��A�Okla.C�Oklahoma�Ol��A�OlC�old�Ol'��A�Ol'C�old�Ol’��A�Ol’C�old�Ore.��A�Ore.C�Oregon�Oughtn't��A�OughtC�ought�A�n'tC�not�Oughtn't've��A�OughtC�ought�A�n'tC�not�A�'veC�have�Oughtnt��A�OughtC�ought�A�ntC�not�Oughtntve��A�OughtC�ought�A�ntC�not�A�veC�have�Oughtn’t��A�OughtC�ought�A�n’tC�not�Oughtn’t’ve��A�OughtC�ought�A�n’tC�not�A�’veC�have�O’clock��A�O’clockC�o'clock�Pa.��A�Pa.C�Pennsylvania�Ph.D.��A�Ph.D.�Prof.��A�Prof.�Rep.��A�Rep.�Rev.��A�Rev.�S.C.��A�S.C.C�South Carolina�Sen.��A�Sen.�Sep.��A�Sep.C�September�Sept.��A�Sept.C�September�Shan't��A�ShaC�shall�A�n'tC�not�Shan't've��A�ShaC�shall�A�n'tC�not�A�'veC�have�Shant��A�ShaC�shall�A�ntC�not�Shantve��A�ShaC�shall�A�ntC�not�A�veC�have�Shan’t��A�ShaC�shall�A�n’tC�not�Shan’t’ve��A�ShaC�shall�A�n’tC�not�A�’veC�have�She'd��A�SheC�she�A�'dC�'d�She'd've��A�SheC�she�A�'dC�would�A�'veC�have�She'll��A�SheC�she�A�'llC�will�She'll've��A�SheC�she�A�'llC�will�A�'veC�have�She's��A�SheC�she�A�'sC�'s�Shedve��A�SheC�she�A�dC�would�A�veC�have�Shellve��A�SheC�she�A�llC�will�A�veC�have�Shes��A�SheC�she�A�s�She’d��A�SheC�she�A�’dC�'d�She’d’ve��A�SheC�she�A�’dC�would�A�’veC�have�She’ll��A�SheC�she�A�’llC�will�She’ll’ve��A�SheC�she�A�’llC�will�A�’veC�have�She’s��A�SheC�she�A�’sC�'s�Should've��A�ShouldC�should�A�'ve�Shouldn't��A�ShouldC�should�A�n'tC�not�Shouldn't've��A�ShouldC�should�A�n'tC�not�A�'veC�have�Shouldnt��A�ShouldC�should�A�ntC�not�Shouldntve��A�ShouldC�should�A�ntC�not�A�veC�have�Shouldn’t��A�ShouldC�should�A�n’tC�not�Shouldn’t’ve��A�ShouldC�should�A�n’tC�not�A�’veC�have�Shouldve��A�ShouldC�should�A�ve�Should’ve��A�ShouldC�should�A�’ve�Somethin��A�SomethinC�something�Somethin'��A�Somethin'C�something�Somethin’��A�Somethin’C�something�St.��A�St.�Tenn.��A�Tenn.C�Tennessee�That'd��A�ThatC�that�A�'dC�'d�That'd've��A�ThatC�that�A�'dC�would�A�'veC�have�That'll��A�ThatC�that�A�'llC�will�That'll've��A�ThatC�that�A�'llC�will�A�'veC�have�That're��A�ThatC�that�A�'reC�are�That's��A�ThatC�that�A�'sC�'s�That've��A�ThatC�that�A�'ve�Thatd��A�ThatC�that�A�dC�'d�Thatdve��A�ThatC�that�A�dC�would�A�veC�have�Thatll��A�ThatC�that�A�llC�will�Thatllve��A�ThatC�that�A�llC�will�A�veC�have�Thatre��A�ThatC�that�A�reC�are�Thats��A�ThatC�that�A�s�Thatve��A�That�A�veC�have�That’d��A�ThatC�that�A�’dC�'d�That’d’ve��A�ThatC�that�A�’dC�would�A�’veC�have�That’ll��A�ThatC�that�A�’llC�will�That’ll’ve��A�ThatC�that�A�’llC�will�A�’veC�have�That’re��A�ThatC�that�A�’reC�are�That’s��A�ThatC�that�A�’sC�'s�That’ve��A�ThatC�that�A�’ve�There'd��A�ThereC�there�A�'dC�'d�There'd've��A�ThereC�there�A�'dC�would�A�'veC�have�There'll��A�ThereC�there�A�'llC�will�There'll've��A�ThereC�there�A�'llC�will�A�'veC�have�There're��A�ThereC�there�A�'reC�are�There's��A�ThereC�there�A�'sC�'s�There've��A�ThereC�there�A�'ve�Thered��A�ThereC�there�A�dC�'d�Theredve��A�ThereC�there�A�dC�would�A�veC�have�Therell��A�ThereC�there�A�llC�will�Therellve��A�ThereC�there�A�llC�will�A�veC�have�Therere��A�ThereC�there�A�reC�are�Theres��A�ThereC�there�A�s�Thereve��A�There�A�veC�have�There’d��A�ThereC�there�A�’dC�'d�There’d’ve��A�ThereC�there�A�’dC�would�A�’veC�have�There’ll��A�ThereC�there�A�’llC�will�There’ll’ve��A�ThereC�there�A�’llC�will�A�’veC�have�There’re��A�ThereC�there�A�’reC�are�There’s��A�ThereC�there�A�’sC�'s�There’ve��A�ThereC�there�A�’ve�These'd��A�TheseC�these�A�'dC�'d�These'd've��A�TheseC�these�A�'dC�would�A�'veC�have�These'll��A�TheseC�these�A�'llC�will�These'll've��A�TheseC�these�A�'llC�will�A�'veC�have�These're��A�TheseC�these�A�'reC�are�These's��A�TheseC�these�A�'sC�'s�These've��A�TheseC�these�A�'ve�Thesed��A�TheseC�these�A�dC�'d�Thesedve��A�TheseC�these�A�dC�would�A�veC�have�Thesell��A�TheseC�these�A�llC�will�Thesellve��A�TheseC�these�A�llC�will�A�veC�have�Thesere��A�TheseC�these�A�reC�are�Theses��A�TheseC�these�A�s�Theseve��A�These�A�veC�have�These’d��A�TheseC�these�A�’dC�'d�These’d’ve��A�TheseC�these�A�’dC�would�A�’veC�have�These’ll��A�TheseC�these�A�’llC�will�These’ll’ve��A�TheseC�these�A�’llC�will�A�’veC�have�These’re��A�TheseC�these�A�’reC�are�These’s��A�TheseC�these�A�’sC�'s�These’ve��A�TheseC�these�A�’ve�They'd��A�TheyC�they�A�'dC�'d�They'd've��A�TheyC�they�A�'dC�would�A�'veC�have�They'll��A�TheyC�they�A�'llC�will�They'll've��A�TheyC�they�A�'llC�will�A�'veC�have�They're��A�TheyC�they�A�'reC�are�They've��A�TheyC�they�A�'veC�have�Theyd��A�TheyC�they�A�dC�'d�Theydve��A�TheyC�they�A�dC�would�A�veC�have�Theyll��A�TheyC�they�A�llC�will�Theyllve��A�TheyC�they�A�llC�will�A�veC�have�Theyre��A�TheyC�they�A�reC�are�Theyve��A�TheyC�they�A�veC�have�They’d��A�TheyC�they�A�’dC�'d�They’d’ve��A�TheyC�they�A�’dC�would�A�’veC�have�They’ll��A�TheyC�they�A�’llC�will�They’ll’ve��A�TheyC�they�A�’llC�will�A�’veC�have�They’re��A�TheyC�they�A�’reC�are�They’ve��A�TheyC�they�A�’veC�have�This'd��A�ThisC�this�A�'dC�'d�This'd've��A�ThisC�this�A�'dC�would�A�'veC�have�This'll��A�ThisC�this�A�'llC�will�This'll've��A�ThisC�this�A�'llC�will�A�'veC�have�This're��A�ThisC�this�A�'reC�are�This's��A�ThisC�this�A�'sC�'s�This've��A�ThisC�this�A�'ve�Thisd��A�ThisC�this�A�dC�'d�Thisdve��A�ThisC�this�A�dC�would�A�veC�have�Thisll��A�ThisC�this�A�llC�will�Thisllve��A�ThisC�this�A�llC�will�A�veC�have�Thisre��A�ThisC�this�A�reC�are�Thiss��A�ThisC�this�A�s�Thisve��A�This�A�veC�have�This’d��A�ThisC�this�A�’dC�'d�This’d’ve��A�ThisC�this�A�’dC�would�A�’veC�have�This’ll��A�ThisC�this�A�’llC�will�This’ll’ve��A�ThisC�this�A�’llC�will�A�’veC�have�This’re��A�ThisC�this�A�’reC�are�This’s��A�ThisC�this�A�’sC�'s�This’ve��A�ThisC�this�A�’ve�Those'd��A�ThoseC�those�A�'dC�'d�Those'd've��A�ThoseC�those�A�'dC�would�A�'veC�have�Those'll��A�ThoseC�those�A�'llC�will�Those'll've��A�ThoseC�those�A�'llC�will�A�'veC�have�Those're��A�ThoseC�those�A�'reC�are�Those's��A�ThoseC�those�A�'sC�'s�Those've��A�ThoseC�those�A�'ve�Thosed��A�ThoseC�those�A�dC�'d�Thosedve��A�ThoseC�those�A�dC�would�A�veC�have�Thosell��A�ThoseC�those�A�llC�will�Thosellve��A�ThoseC�those�A�llC�will�A�veC�have�Thosere��A�ThoseC�those�A�reC�are�Thoses��A�ThoseC�those�A�s�Thoseve��A�Those�A�veC�have�Those’d��A�ThoseC�those�A�’dC�'d�Those’d’ve��A�ThoseC�those�A�’dC�would�A�’veC�have�Those’ll��A�ThoseC�those�A�’llC�will�Those’ll’ve��A�ThoseC�those�A�’llC�will�A�’veC�have�Those’re��A�ThoseC�those�A�’reC�are�Those’s��A�ThoseC�those�A�’sC�'s�Those’ve��A�ThoseC�those�A�’ve�V.V��A�V.V�V_V��A�V_V�Va.��A�Va.C�Virginia�Wash.��A�Wash.C�Washington�Wasn't��A�WasC�was�A�n'tC�not�Wasnt��A�WasC�was�A�ntC�not�Wasn’t��A�WasC�was�A�n’tC�not�We'd��A�WeC�we�A�'dC�'d�We'd've��A�WeC�we�A�'dC�would�A�'veC�have�We'll��A�WeC�we�A�'llC�will�We'll've��A�WeC�we�A�'llC�will�A�'veC�have�We're��A�WeC�we�A�'reC�are�We've��A�WeC�we�A�'veC�have�Wed��A�WeC�we�A�dC�'d�Wedve��A�WeC�we�A�dC�would�A�veC�have�Wellve��A�WeC�we�A�llC�will�A�veC�have�Weren't��A�WereC�were�A�n'tC�not�Werent��A�WereC�were�A�ntC�not�Weren’t��A�WereC�were�A�n’tC�not�Weve��A�WeC�we�A�veC�have�We’d��A�WeC�we�A�’dC�'d�We’d’ve��A�WeC�we�A�’dC�would�A�’veC�have�We’ll��A�WeC�we�A�’llC�will�We’ll’ve��A�WeC�we�A�’llC�will�A�’veC�have�We’re��A�WeC�we�A�’reC�are�We’ve��A�WeC�we�A�’veC�have�What'd��A�WhatC�what�A�'dC�'d�What'd've��A�WhatC�what�A�'dC�would�A�'veC�have�What'll��A�WhatC�what�A�'llC�will�What'll've��A�WhatC�what�A�'llC�will�A�'veC�have�What're��A�WhatC�what�A�'reC�are�What's��A�WhatC�what�A�'sC�'s�What've��A�WhatC�what�A�'ve�Whatd��A�WhatC�what�A�dC�'d�Whatdve��A�WhatC�what�A�dC�would�A�veC�have�Whatll��A�WhatC�what�A�llC�will�Whatllve��A�WhatC�what�A�llC�will�A�veC�have�Whatre��A�WhatC�what�A�reC�are�Whats��A�WhatC�what�A�s�Whatve��A�What�A�veC�have�What’d��A�WhatC�what�A�’dC�'d�What’d’ve��A�WhatC�what�A�’dC�would�A�’veC�have�What’ll��A�WhatC�what�A�’llC�will�What’ll’ve��A�WhatC�what�A�’llC�will�A�’veC�have�What’re��A�WhatC�what�A�’reC�are�What’s��A�WhatC�what�A�’sC�'s�What’ve��A�WhatC�what�A�’ve�When'd��A�WhenC�when�A�'dC�'d�When'd've��A�WhenC�when�A�'dC�would�A�'veC�have�When'll��A�WhenC�when�A�'llC�will�When'll've��A�WhenC�when�A�'llC�will�A�'veC�have�When're��A�WhenC�when�A�'reC�are�When's��A�WhenC�when�A�'sC�'s�When've��A�WhenC�when�A�'ve�Whend��A�WhenC�when�A�dC�'d�Whendve��A�WhenC�when�A�dC�would�A�veC�have�Whenll��A�WhenC�when�A�llC�will�Whenllve��A�WhenC�when�A�llC�will�A�veC�have�Whenre��A�WhenC�when�A�reC�are�Whens��A�WhenC�when�A�s�Whenve��A�When�A�veC�have�When’d��A�WhenC�when�A�’dC�'d�When’d’ve��A�WhenC�when�A�’dC�would�A�’veC�have�When’ll��A�WhenC�when�A�’llC�will�When’ll’ve��A�WhenC�when�A�’llC�will�A�’veC�have�When’re��A�WhenC�when�A�’reC�are�When’s��A�WhenC�when�A�’sC�'s�When’ve��A�WhenC�when�A�’ve�Where'd��A�WhereC�where�A�'dC�'d�Where'd've��A�WhereC�where�A�'dC�would�A�'veC�have�Where'll��A�WhereC�where�A�'llC�will�Where'll've��A�WhereC�where�A�'llC�will�A�'veC�have�Where're��A�WhereC�where�A�'reC�are�Where's��A�WhereC�where�A�'sC�'s�Where've��A�WhereC�where�A�'ve�Whered��A�WhereC�where�A�dC�'d�Wheredve��A�WhereC�where�A�dC�would�A�veC�have�Wherell��A�WhereC�where�A�llC�will�Wherellve��A�WhereC�where�A�llC�will�A�veC�have�Wherere��A�WhereC�where�A�reC�are�Wheres��A�WhereC�where�A�s�Whereve��A�Where�A�veC�have�Where’d��A�WhereC�where�A�’dC�'d�Where’d’ve��A�WhereC�where�A�’dC�would�A�’veC�have�Where’ll��A�WhereC�where�A�’llC�will�Where’ll’ve��A�WhereC�where�A�’llC�will�A�’veC�have�Where’re��A�WhereC�where�A�’reC�are�Where’s��A�WhereC�where�A�’sC�'s�Where’ve��A�WhereC�where�A�’ve�Who'd��A�WhoC�who�A�'dC�'d�Who'd've��A�WhoC�who�A�'dC�would�A�'veC�have�Who'll��A�WhoC�who�A�'llC�will�Who'll've��A�WhoC�who�A�'llC�will�A�'veC�have�Who're��A�WhoC�who�A�'reC�are�Who's��A�WhoC�who�A�'sC�'s�Who've��A�WhoC�who�A�'ve�Whod��A�WhoC�who�A�dC�'d�Whodve��A�WhoC�who�A�dC�would�A�veC�have�Wholl��A�WhoC�who�A�llC�will�Whollve��A�WhoC�who�A�llC�will�A�veC�have�Whos��A�WhoC�who�A�s�Whove��A�Who�A�veC�have�Who’d��A�WhoC�who�A�’dC�'d�Who’d’ve��A�WhoC�who�A�’dC�would�A�’veC�have�Who’ll��A�WhoC�who�A�’llC�will�Who’ll’ve��A�WhoC�who�A�’llC�will�A�’veC�have�Who’re��A�WhoC�who�A�’reC�are�Who’s��A�WhoC�who�A�’sC�'s�Who’ve��A�WhoC�who�A�’ve�Why'd��A�WhyC�why�A�'dC�'d�Why'd've��A�WhyC�why�A�'dC�would�A�'veC�have�Why'll��A�WhyC�why�A�'llC�will�Why'll've��A�WhyC�why�A�'llC�will�A�'veC�have�Why're��A�WhyC�why�A�'reC�are�Why's��A�WhyC�why�A�'sC�'s�Why've��A�WhyC�why�A�'ve�Whyd��A�WhyC�why�A�dC�'d�Whydve��A�WhyC�why�A�dC�would�A�veC�have�Whyll��A�WhyC�why�A�llC�will�Whyllve��A�WhyC�why�A�llC�will�A�veC�have�Whyre��A�WhyC�why�A�reC�are�Whys��A�WhyC�why�A�s�Whyve��A�Why�A�veC�have�Why’d��A�WhyC�why�A�’dC�'d�Why’d’ve��A�WhyC�why�A�’dC�would�A�’veC�have�Why’ll��A�WhyC�why�A�’llC�will�Why’ll’ve��A�WhyC�why�A�’llC�will�A�’veC�have�Why’re��A�WhyC�why�A�’reC�are�Why’s��A�WhyC�why�A�’sC�'s�Why’ve��A�WhyC�why�A�’ve�Wis.��A�Wis.C�Wisconsin�Won't��A�WoC�will�A�n'tC�not�Won't've��A�WoC�will�A�n'tC�not�A�'veC�have�Wont��A�WoC�will�A�ntC�not�Wontve��A�WoC�will�A�ntC�not�A�veC�have�Won’t��A�WoC�will�A�n’tC�not�Won’t’ve��A�WoC�will�A�n’tC�not�A�’veC�have�Would've��A�WouldC�would�A�'ve�Wouldn't��A�WouldC�would�A�n'tC�not�Wouldn't've��A�WouldC�would�A�n'tC�not�A�'veC�have�Wouldnt��A�WouldC�would�A�ntC�not�Wouldntve��A�WouldC�would�A�ntC�not�A�veC�have�Wouldn’t��A�WouldC�would�A�n’tC�not�Wouldn’t’ve��A�WouldC�would�A�n’tC�not�A�’veC�have�Wouldve��A�WouldC�would�A�ve�Would’ve��A�WouldC�would�A�’ve�XD��A�XD�XDD��A�XDD�You'd��A�YouC�you�A�'dC�'d�You'd've��A�YouC�you�A�'dC�would�A�'veC�have�You'll��A�YouC�you�A�'llC�will�You'll've��A�YouC�you�A�'llC�will�A�'veC�have�You're��A�YouC�you�A�'reC�are�You've��A�YouC�you�A�'veC�have�Youd��A�YouC�you�A�dC�'d�Youdve��A�YouC�you�A�dC�would�A�veC�have�Youll��A�YouC�you�A�llC�will�Youllve��A�YouC�you�A�llC�will�A�veC�have�Youre��A�YouC�you�A�reC�are�Youve��A�YouC�you�A�veC�have�You’d��A�YouC�you�A�’dC�'d�You’d’ve��A�YouC�you�A�’dC�would�A�’veC�have�You’ll��A�YouC�you�A�’llC�will�You’ll’ve��A�YouC�you�A�’llC�will�A�’veC�have�You’re��A�YouC�you�A�’reC�are�You’ve��A�YouC�you�A�’veC�have�[-:��A�[-:�[:��A�[:�[=��A�[=�\")��A�\")�\n��A�\n�\t��A�\t�]=��A�]=�^_^��A�^_^�^__^��A�^__^�^___^��A�^___^�a.��A�a.�a.m.��A�a.m.�ain't��A�ai�A�n'tC�not�aint��A�ai�A�ntC�not�ain’t��A�ai�A�n’tC�not�and/or��A�and/orC�and/or�aren't��A�areC�are�A�n'tC�not�arent��A�areC�are�A�ntC�not�aren’t��A�areC�are�A�n’tC�not�b.��A�b.�c'mon��A�c'mC�come�A�on�c.��A�c.�can't��A�caC�can�A�n'tC�not�can't've��A�caC�can�A�n'tC�not�A�'veC�have�cannot��A�can�A�not�cant��A�caC�can�A�ntC�not�cantve��A�caC�can�A�ntC�not�A�veC�have�can’t��A�caC�can�A�n’tC�not�can’t’ve��A�caC�can�A�n’tC�not�A�’veC�have�co.��A�co.�could've��A�couldC�could�A�'ve�couldn't��A�couldC�could�A�n'tC�not�couldn't've��A�couldC�could�A�n'tC�not�A�'veC�have�couldnt��A�couldC�could�A�ntC�not�couldntve��A�couldC�could�A�ntC�not�A�veC�have�couldn’t��A�couldC�could�A�n’tC�not�couldn’t’ve��A�couldC�could�A�n’tC�not�A�’veC�have�couldve��A�couldC�could�A�ve�could’ve��A�couldC�could�A�’ve�c’mon��A�c’mC�come�A�on�d.��A�d.�daren't��A�dareC�dare�A�n'tC�not�darent��A�dareC�dare�A�ntC�not�daren’t��A�dareC�dare�A�n’tC�not�didn't��A�didC�do�A�n'tC�not�didn't've��A�didC�do�A�n'tC�not�A�'veC�have�didnt��A�didC�do�A�ntC�not�didntve��A�didC�do�A�ntC�not�A�veC�have�didn’t��A�didC�do�A�n’tC�not�didn’t’ve��A�didC�do�A�n’tC�not�A�’veC�have�doesn't��A�doesC�does�A�n'tC�not�doesn't've��A�doesC�does�A�n'tC�not�A�'veC�have�doesnt��A�doesC�does�A�ntC�not�doesntve��A�doesC�does�A�ntC�not�A�veC�have�doesn’t��A�doesC�does�A�n’tC�not�doesn’t’ve��A�doesC�does�A�n’tC�not�A�’veC�have�doin��A�doinC�doing�doin'��A�doin'C�doing�doin’��A�doin’C�doing�don't��A�doC�do�A�n'tC�not�don't've��A�doC�do�A�n'tC�not�A�'veC�have�dont��A�doC�do�A�ntC�not�dontve��A�doC�do�A�ntC�not�A�veC�have�don’t��A�doC�do�A�n’tC�not�don’t’ve��A�doC�do�A�n’tC�not�A�’veC�have�e.��A�e.�e.g.��A�e.g.�em��A�emC�them�f.��A�f.�g.��A�g.�goin��A�goinC�going�goin'��A�goin'C�going�goin’��A�goin’C�going�gonna��A�gonC�going�A�naC�to�gotta��A�got�A�taC�to�h.��A�h.�hadn't��A�hadC�have�A�n'tC�not�hadn't've��A�hadC�have�A�n'tC�not�A�'veC�have�hadnt��A�hadC�have�A�ntC�not�hadntve��A�hadC�have�A�ntC�not�A�veC�have�hadn’t��A�hadC�have�A�n’tC�not�hadn’t’ve��A�hadC�have�A�n’tC�not�A�’veC�have�hasn't��A�hasC�has�A�n'tC�not�hasnt��A�hasC�has�A�ntC�not�hasn’t��A�hasC�has�A�n’tC�not�haven't��A�haveC�have�A�n'tC�not�havent��A�haveC�have�A�ntC�not�haven’t��A�haveC�have�A�n’tC�not�havin��A�havinC�having�havin'��A�havin'C�having�havin’��A�havin’C�having�he'd��A�heC�he�A�'dC�'d�he'd've��A�heC�he�A�'dC�would�A�'veC�have�he'll��A�heC�he�A�'llC�will�he'll've��A�heC�he�A�'llC�will�A�'veC�have�he's��A�heC�he�A�'sC�'s�hed��A�heC�he�A�dC�'d�hedve��A�heC�he�A�dC�would�A�veC�have�hellve��A�heC�he�A�llC�will�A�veC�have�hes��A�heC�he�A�s�he’d��A�heC�he�A�’dC�'d�he’d’ve��A�heC�he�A�’dC�would�A�’veC�have�he’ll��A�heC�he�A�’llC�will�he’ll’ve��A�heC�he�A�’llC�will�A�’veC�have�he’s��A�heC�he�A�’sC�'s�how'd��A�howC�how�A�'dC�'d�how'd've��A�howC�how�A�'dC�would�A�'veC�have�how'd'y��A�how�A�'d�A�'yC�you�how'll��A�howC�how�A�'llC�will�how'll've��A�howC�how�A�'llC�will�A�'veC�have�how're��A�howC�how�A�'reC�are�how's��A�howC�how�A�'sC�'s�how've��A�howC�how�A�'ve�howd��A�howC�how�A�dC�'d�howdve��A�howC�how�A�dC�would�A�veC�have�howll��A�howC�how�A�llC�will�howllve��A�howC�how�A�llC�will�A�veC�have�howre��A�howC�how�A�reC�are�hows��A�howC�how�A�s�howve��A�how�A�veC�have�how’d��A�howC�how�A�’dC�'d�how’d’ve��A�howC�how�A�’dC�would�A�’veC�have�how’d’y��A�how�A�’d�A�’yC�you�how’ll��A�howC�how�A�’llC�will�how’ll’ve��A�howC�how�A�’llC�will�A�’veC�have�how’re��A�howC�how�A�’reC�are�how’s��A�howC�how�A�’sC�'s�how’ve��A�howC�how�A�’ve�i'd��A�iC�i�A�'dC�'d�i'd've��A�iC�i�A�'dC�would�A�'veC�have�i'll��A�iC�i�A�'llC�will�i'll've��A�iC�i�A�'llC�will�A�'veC�have�i'm��A�iC�i�A�'mC�am�i'ma��A�iC�i�A�'mC�am�A�aC�gonna�i've��A�iC�i�A�'veC�have�i.��A�i.�i.e.��A�i.e.�id��A�iC�i�A�dC�'d�idve��A�iC�i�A�dC�would�A�veC�have�illve��A�iC�i�A�llC�will�A�veC�have�im��A�iC�i�A�m�ima��A�iC�i�A�mC�am�A�aC�gonna�isn't��A�isC�is�A�n'tC�not�isnt��A�isC�is�A�ntC�not�isn’t��A�isC�is�A�n’tC�not�it'd��A�itC�it�A�'dC�'d�it'd've��A�itC�it�A�'dC�would�A�'veC�have�it'll��A�itC�it�A�'llC�will�it'll've��A�itC�it�A�'llC�will�A�'veC�have�it's��A�itC�it�A�'sC�'s�itd��A�itC�it�A�dC�'d�itdve��A�itC�it�A�dC�would�A�veC�have�itll��A�itC�it�A�llC�will�itllve��A�itC�it�A�llC�will�A�veC�have�it’d��A�itC�it�A�’dC�'d�it’d’ve��A�itC�it�A�’dC�would�A�’veC�have�it’ll��A�itC�it�A�’llC�will�it’ll’ve��A�itC�it�A�’llC�will�A�’veC�have�it’s��A�itC�it�A�’sC�'s�ive��A�iC�i�A�veC�have�i’d��A�iC�i�A�’dC�'d�i’d’ve��A�iC�i�A�’dC�would�A�’veC�have�i’ll��A�iC�i�A�’llC�will�i’ll’ve��A�iC�i�A�’llC�will�A�’veC�have�i’m��A�iC�i�A�’mC�am�i’ma��A�iC�i�A�’mC�am�A�aC�gonna�i’ve��A�iC�i�A�’veC�have�j.��A�j.�k.��A�k.�l.��A�l.�let's��A�let�A�'sC�us�let’s��A�let�A�’sC�us�ll��A�llC�will�lovin��A�lovinC�loving�lovin'��A�lovin'C�loving�lovin’��A�lovin’C�loving�m.��A�m.�ma'am��A�ma'amC�madam�mayn't��A�mayC�may�A�n'tC�not�mayn't've��A�mayC�may�A�n'tC�not�A�'veC�have�maynt��A�mayC�may�A�ntC�not�mayntve��A�mayC�may�A�ntC�not�A�veC�have�mayn’t��A�mayC�may�A�n’tC�not�mayn’t’ve��A�mayC�may�A�n’tC�not�A�’veC�have�ma’am��A�ma’amC�madam�might've��A�mightC�might�A�'ve�mightn't��A�mightC�might�A�n'tC�not�mightn't've��A�mightC�might�A�n'tC�not�A�'veC�have�mightnt��A�mightC�might�A�ntC�not�mightntve��A�mightC�might�A�ntC�not�A�veC�have�mightn’t��A�mightC�might�A�n’tC�not�mightn’t’ve��A�mightC�might�A�n’tC�not�A�’veC�have�mightve��A�mightC�might�A�ve�might’ve��A�mightC�might�A�’ve�must've��A�mustC�must�A�'ve�mustn't��A�mustC�must�A�n'tC�not�mustn't've��A�mustC�must�A�n'tC�not�A�'veC�have�mustnt��A�mustC�must�A�ntC�not�mustntve��A�mustC�must�A�ntC�not�A�veC�have�mustn’t��A�mustC�must�A�n’tC�not�mustn’t’ve��A�mustC�must�A�n’tC�not�A�’veC�have�mustve��A�mustC�must�A�ve�must’ve��A�mustC�must�A�’ve�n.��A�n.�needn't��A�needC�need�A�n'tC�not�needn't've��A�needC�need�A�n'tC�not�A�'veC�have�neednt��A�needC�need�A�ntC�not�needntve��A�needC�need�A�ntC�not�A�veC�have�needn’t��A�needC�need�A�n’tC�not�needn’t’ve��A�needC�need�A�n’tC�not�A�’veC�have�not've��A�not�A�'veC�have�nothin��A�nothinC�nothing�nothin'��A�nothin'C�nothing�nothin’��A�nothin’C�nothing�notve��A�not�A�veC�have�not’ve��A�not�A�’veC�have�nuff��A�nuffC�enough�nuthin��A�nuthinC�nothing�nuthin'��A�nuthin'C�nothing�nuthin’��A�nuthin’C�nothing�o'clock��A�o'clockC�o'clock�o.��A�o.�o.0��A�o.0�o.O��A�o.O�o.o��A�o.o�o_0��A�o_0�o_O��A�o_O�o_o��A�o_o�ol��A�olC�old�ol'��A�ol'C�old�ol’��A�ol’C�old�oughtn't��A�oughtC�ought�A�n'tC�not�oughtn't've��A�oughtC�ought�A�n'tC�not�A�'veC�have�oughtnt��A�oughtC�ought�A�ntC�not�oughtntve��A�oughtC�ought�A�ntC�not�A�veC�have�oughtn’t��A�oughtC�ought�A�n’tC�not�oughtn’t’ve��A�oughtC�ought�A�n’tC�not�A�’veC�have�o’clock��A�o’clockC�o'clock�p.��A�p.�p.m.��A�p.m.�q.��A�q.�r.��A�r.�s.��A�s.�shan't��A�shaC�shall�A�n'tC�not�shan't've��A�shaC�shall�A�n'tC�not�A�'veC�have�shant��A�shaC�shall�A�ntC�not�shantve��A�shaC�shall�A�ntC�not�A�veC�have�shan’t��A�shaC�shall�A�n’tC�not�shan’t’ve��A�shaC�shall�A�n’tC�not�A�’veC�have�she'd��A�sheC�she�A�'dC�'d�she'd've��A�sheC�she�A�'dC�would�A�'veC�have�she'll��A�sheC�she�A�'llC�will�she'll've��A�sheC�she�A�'llC�will�A�'veC�have�she's��A�sheC�she�A�'sC�'s�shedve��A�sheC�she�A�dC�would�A�veC�have�shellve��A�sheC�she�A�llC�will�A�veC�have�shes��A�sheC�she�A�s�she’d��A�sheC�she�A�’dC�'d�she’d’ve��A�sheC�she�A�’dC�would�A�’veC�have�she’ll��A�sheC�she�A�’llC�will�she’ll’ve��A�sheC�she�A�’llC�will�A�’veC�have�she’s��A�sheC�she�A�’sC�'s�should've��A�shouldC�should�A�'ve�shouldn't��A�shouldC�should�A�n'tC�not�shouldn't've��A�shouldC�should�A�n'tC�not�A�'veC�have�shouldnt��A�shouldC�should�A�ntC�not�shouldntve��A�shouldC�should�A�ntC�not�A�veC�have�shouldn’t��A�shouldC�should�A�n’tC�not�shouldn’t’ve��A�shouldC�should�A�n’tC�not�A�’veC�have�shouldve��A�shouldC�should�A�ve�should’ve��A�shouldC�should�A�’ve�somethin��A�somethinC�something�somethin'��A�somethin'C�something�somethin’��A�somethin’C�something�t.��A�t.�that'd��A�thatC�that�A�'dC�'d�that'd've��A�thatC�that�A�'dC�would�A�'veC�have�that'll��A�thatC�that�A�'llC�will�that'll've��A�thatC�that�A�'llC�will�A�'veC�have�that're��A�thatC�that�A�'reC�are�that's��A�thatC�that�A�'sC�'s�that've��A�thatC�that�A�'ve�thatd��A�thatC�that�A�dC�'d�thatdve��A�thatC�that�A�dC�would�A�veC�have�thatll��A�thatC�that�A�llC�will�thatllve��A�thatC�that�A�llC�will�A�veC�have�thatre��A�thatC�that�A�reC�are�thats��A�thatC�that�A�s�thatve��A�that�A�veC�have�that’d��A�thatC�that�A�’dC�'d�that’d’ve��A�thatC�that�A�’dC�would�A�’veC�have�that’ll��A�thatC�that�A�’llC�will�that’ll’ve��A�thatC�that�A�’llC�will�A�’veC�have�that’re��A�thatC�that�A�’reC�are�that’s��A�thatC�that�A�’sC�'s�that’ve��A�thatC�that�A�’ve�there'd��A�thereC�there�A�'dC�'d�there'd've��A�thereC�there�A�'dC�would�A�'veC�have�there'll��A�thereC�there�A�'llC�will�there'll've��A�thereC�there�A�'llC�will�A�'veC�have�there're��A�thereC�there�A�'reC�are�there's��A�thereC�there�A�'sC�'s�there've��A�thereC�there�A�'ve�thered��A�thereC�there�A�dC�'d�theredve��A�thereC�there�A�dC�would�A�veC�have�therell��A�thereC�there�A�llC�will�therellve��A�thereC�there�A�llC�will�A�veC�have�therere��A�thereC�there�A�reC�are�theres��A�thereC�there�A�s�thereve��A�there�A�veC�have�there’d��A�thereC�there�A�’dC�'d�there’d’ve��A�thereC�there�A�’dC�would�A�’veC�have�there’ll��A�thereC�there�A�’llC�will�there’ll’ve��A�thereC�there�A�’llC�will�A�’veC�have�there’re��A�thereC�there�A�’reC�are�there’s��A�thereC�there�A�’sC�'s�there’ve��A�thereC�there�A�’ve�these'd��A�theseC�these�A�'dC�'d�these'd've��A�theseC�these�A�'dC�would�A�'veC�have�these'll��A�theseC�these�A�'llC�will�these'll've��A�theseC�these�A�'llC�will�A�'veC�have�these're��A�theseC�these�A�'reC�are�these's��A�theseC�these�A�'sC�'s�these've��A�theseC�these�A�'ve�thesed��A�theseC�these�A�dC�'d�thesedve��A�theseC�these�A�dC�would�A�veC�have�thesell��A�theseC�these�A�llC�will�thesellve��A�theseC�these�A�llC�will�A�veC�have�thesere��A�theseC�these�A�reC�are�theses��A�theseC�these�A�s�theseve��A�these�A�veC�have�these’d��A�theseC�these�A�’dC�'d�these’d’ve��A�theseC�these�A�’dC�would�A�’veC�have�these’ll��A�theseC�these�A�’llC�will�these’ll’ve��A�theseC�these�A�’llC�will�A�’veC�have�these’re��A�theseC�these�A�’reC�are�these’s��A�theseC�these�A�’sC�'s�these’ve��A�theseC�these�A�’ve�they'd��A�theyC�they�A�'dC�'d�they'd've��A�theyC�they�A�'dC�would�A�'veC�have�they'll��A�theyC�they�A�'llC�will�they'll've��A�theyC�they�A�'llC�will�A�'veC�have�they're��A�theyC�they�A�'reC�are�they've��A�theyC�they�A�'veC�have�theyd��A�theyC�they�A�dC�'d�theydve��A�theyC�they�A�dC�would�A�veC�have�theyll��A�theyC�they�A�llC�will�theyllve��A�theyC�they�A�llC�will�A�veC�have�theyre��A�theyC�they�A�reC�are�theyve��A�theyC�they�A�veC�have�they’d��A�theyC�they�A�’dC�'d�they’d’ve��A�theyC�they�A�’dC�would�A�’veC�have�they’ll��A�theyC�they�A�’llC�will�they’ll’ve��A�theyC�they�A�’llC�will�A�’veC�have�they’re��A�theyC�they�A�’reC�are�they’ve��A�theyC�they�A�’veC�have�this'd��A�thisC�this�A�'dC�'d�this'd've��A�thisC�this�A�'dC�would�A�'veC�have�this'll��A�thisC�this�A�'llC�will�this'll've��A�thisC�this�A�'llC�will�A�'veC�have�this're��A�thisC�this�A�'reC�are�this's��A�thisC�this�A�'sC�'s�this've��A�thisC�this�A�'ve�thisd��A�thisC�this�A�dC�'d�thisdve��A�thisC�this�A�dC�would�A�veC�have�thisll��A�thisC�this�A�llC�will�thisllve��A�thisC�this�A�llC�will�A�veC�have�thisre��A�thisC�this�A�reC�are�thiss��A�thisC�this�A�s�thisve��A�this�A�veC�have�this’d��A�thisC�this�A�’dC�'d�this’d’ve��A�thisC�this�A�’dC�would�A�’veC�have�this’ll��A�thisC�this�A�’llC�will�this’ll’ve��A�thisC�this�A�’llC�will�A�’veC�have�this’re��A�thisC�this�A�’reC�are�this’s��A�thisC�this�A�’sC�'s�this’ve��A�thisC�this�A�’ve�those'd��A�thoseC�those�A�'dC�'d�those'd've��A�thoseC�those�A�'dC�would�A�'veC�have�those'll��A�thoseC�those�A�'llC�will�those'll've��A�thoseC�those�A�'llC�will�A�'veC�have�those're��A�thoseC�those�A�'reC�are�those's��A�thoseC�those�A�'sC�'s�those've��A�thoseC�those�A�'ve�thosed��A�thoseC�those�A�dC�'d�thosedve��A�thoseC�those�A�dC�would�A�veC�have�thosell��A�thoseC�those�A�llC�will�thosellve��A�thoseC�those�A�llC�will�A�veC�have�thosere��A�thoseC�those�A�reC�are�thoses��A�thoseC�those�A�s�thoseve��A�those�A�veC�have�those’d��A�thoseC�those�A�’dC�'d�those’d’ve��A�thoseC�those�A�’dC�would�A�’veC�have�those’ll��A�thoseC�those�A�’llC�will�those’ll’ve��A�thoseC�those�A�’llC�will�A�’veC�have�those’re��A�thoseC�those�A�’reC�are�those’s��A�thoseC�those�A�’sC�'s�those’ve��A�thoseC�those�A�’ve�u.��A�u.�v.��A�v.�v.s.��A�v.s.�v.v��A�v.v�v_v��A�v_v�vs.��A�vs.�w.��A�w.�w/o��A�w/oC�without�wasn't��A�wasC�was�A�n'tC�not�wasnt��A�wasC�was�A�ntC�not�wasn’t��A�wasC�was�A�n’tC�not�we'd��A�weC�we�A�'dC�'d�we'd've��A�weC�we�A�'dC�would�A�'veC�have�we'll��A�weC�we�A�'llC�will�we'll've��A�weC�we�A�'llC�will�A�'veC�have�we're��A�weC�we�A�'reC�are�we've��A�weC�we�A�'veC�have�wed��A�weC�we�A�dC�'d�wedve��A�weC�we�A�dC�would�A�veC�have�wellve��A�weC�we�A�llC�will�A�veC�have�weren't��A�wereC�were�A�n'tC�not�werent��A�wereC�were�A�ntC�not�weren’t��A�wereC�were�A�n’tC�not�weve��A�weC�we�A�veC�have�we’d��A�weC�we�A�’dC�'d�we’d’ve��A�weC�we�A�’dC�would�A�’veC�have�we’ll��A�weC�we�A�’llC�will�we’ll’ve��A�weC�we�A�’llC�will�A�’veC�have�we’re��A�weC�we�A�’reC�are�we’ve��A�weC�we�A�’veC�have�what'd��A�whatC�what�A�'dC�'d�what'd've��A�whatC�what�A�'dC�would�A�'veC�have�what'll��A�whatC�what�A�'llC�will�what'll've��A�whatC�what�A�'llC�will�A�'veC�have�what're��A�whatC�what�A�'reC�are�what's��A�whatC�what�A�'sC�'s�what've��A�whatC�what�A�'ve�whatd��A�whatC�what�A�dC�'d�whatdve��A�whatC�what�A�dC�would�A�veC�have�whatll��A�whatC�what�A�llC�will�whatllve��A�whatC�what�A�llC�will�A�veC�have�whatre��A�whatC�what�A�reC�are�whats��A�whatC�what�A�s�whatve��A�what�A�veC�have�what’d��A�whatC�what�A�’dC�'d�what’d’ve��A�whatC�what�A�’dC�would�A�’veC�have�what’ll��A�whatC�what�A�’llC�will�what’ll’ve��A�whatC�what�A�’llC�will�A�’veC�have�what’re��A�whatC�what�A�’reC�are�what’s��A�whatC�what�A�’sC�'s�what’ve��A�whatC�what�A�’ve�when'd��A�whenC�when�A�'dC�'d�when'd've��A�whenC�when�A�'dC�would�A�'veC�have�when'll��A�whenC�when�A�'llC�will�when'll've��A�whenC�when�A�'llC�will�A�'veC�have�when're��A�whenC�when�A�'reC�are�when's��A�whenC�when�A�'sC�'s�when've��A�whenC�when�A�'ve�whend��A�whenC�when�A�dC�'d�whendve��A�whenC�when�A�dC�would�A�veC�have�whenll��A�whenC�when�A�llC�will�whenllve��A�whenC�when�A�llC�will�A�veC�have�whenre��A�whenC�when�A�reC�are�whens��A�whenC�when�A�s�whenve��A�when�A�veC�have�when’d��A�whenC�when�A�’dC�'d�when’d’ve��A�whenC�when�A�’dC�would�A�’veC�have�when’ll��A�whenC�when�A�’llC�will�when’ll’ve��A�whenC�when�A�’llC�will�A�’veC�have�when’re��A�whenC�when�A�’reC�are�when’s��A�whenC�when�A�’sC�'s�when’ve��A�whenC�when�A�’ve�where'd��A�whereC�where�A�'dC�'d�where'd've��A�whereC�where�A�'dC�would�A�'veC�have�where'll��A�whereC�where�A�'llC�will�where'll've��A�whereC�where�A�'llC�will�A�'veC�have�where're��A�whereC�where�A�'reC�are�where's��A�whereC�where�A�'sC�'s�where've��A�whereC�where�A�'ve�whered��A�whereC�where�A�dC�'d�wheredve��A�whereC�where�A�dC�would�A�veC�have�wherell��A�whereC�where�A�llC�will�wherellve��A�whereC�where�A�llC�will�A�veC�have�wherere��A�whereC�where�A�reC�are�wheres��A�whereC�where�A�s�whereve��A�where�A�veC�have�where’d��A�whereC�where�A�’dC�'d�where’d’ve��A�whereC�where�A�’dC�would�A�’veC�have�where’ll��A�whereC�where�A�’llC�will�where’ll’ve��A�whereC�where�A�’llC�will�A�’veC�have�where’re��A�whereC�where�A�’reC�are�where’s��A�whereC�where�A�’sC�'s�where’ve��A�whereC�where�A�’ve�who'd��A�whoC�who�A�'dC�'d�who'd've��A�whoC�who�A�'dC�would�A�'veC�have�who'll��A�whoC�who�A�'llC�will�who'll've��A�whoC�who�A�'llC�will�A�'veC�have�who're��A�whoC�who�A�'reC�are�who's��A�whoC�who�A�'sC�'s�who've��A�whoC�who�A�'ve�whod��A�whoC�who�A�dC�'d�whodve��A�whoC�who�A�dC�would�A�veC�have�wholl��A�whoC�who�A�llC�will�whollve��A�whoC�who�A�llC�will�A�veC�have�whos��A�whoC�who�A�s�whove��A�who�A�veC�have�who’d��A�whoC�who�A�’dC�'d�who’d’ve��A�whoC�who�A�’dC�would�A�’veC�have�who’ll��A�whoC�who�A�’llC�will�who’ll’ve��A�whoC�who�A�’llC�will�A�’veC�have�who’re��A�whoC�who�A�’reC�are�who’s��A�whoC�who�A�’sC�'s�who’ve��A�whoC�who�A�’ve�why'd��A�whyC�why�A�'dC�'d�why'd've��A�whyC�why�A�'dC�would�A�'veC�have�why'll��A�whyC�why�A�'llC�will�why'll've��A�whyC�why�A�'llC�will�A�'veC�have�why're��A�whyC�why�A�'reC�are�why's��A�whyC�why�A�'sC�'s�why've��A�whyC�why�A�'ve�whyd��A�whyC�why�A�dC�'d�whydve��A�whyC�why�A�dC�would�A�veC�have�whyll��A�whyC�why�A�llC�will�whyllve��A�whyC�why�A�llC�will�A�veC�have�whyre��A�whyC�why�A�reC�are�whys��A�whyC�why�A�s�whyve��A�why�A�veC�have�why’d��A�whyC�why�A�’dC�'d�why’d’ve��A�whyC�why�A�’dC�would�A�’veC�have�why’ll��A�whyC�why�A�’llC�will�why’ll’ve��A�whyC�why�A�’llC�will�A�’veC�have�why’re��A�whyC�why�A�’reC�are�why’s��A�whyC�why�A�’sC�'s�why’ve��A�whyC�why�A�’ve�won't��A�woC�will�A�n'tC�not�won't've��A�woC�will�A�n'tC�not�A�'veC�have�wont��A�woC�will�A�ntC�not�wontve��A�woC�will�A�ntC�not�A�veC�have�won’t��A�woC�will�A�n’tC�not�won’t’ve��A�woC�will�A�n’tC�not�A�’veC�have�would've��A�wouldC�would�A�'ve�wouldn't��A�wouldC�would�A�n'tC�not�wouldn't've��A�wouldC�would�A�n'tC�not�A�'veC�have�wouldnt��A�wouldC�would�A�ntC�not�wouldntve��A�wouldC�would�A�ntC�not�A�veC�have�wouldn’t��A�wouldC�would�A�n’tC�not�wouldn’t’ve��A�wouldC�would�A�n’tC�not�A�’veC�have�wouldve��A�wouldC�would�A�ve�would’ve��A�wouldC�would�A�’ve�x.��A�x.�xD��A�xD�xDD��A�xDD�y'all��A�y'C�you�A�all�y.��A�y.�yall��A�yC�you�A�all�you'd��A�youC�you�A�'dC�'d�you'd've��A�youC�you�A�'dC�would�A�'veC�have�you'll��A�youC�you�A�'llC�will�you'll've��A�youC�you�A�'llC�will�A�'veC�have�you're��A�youC�you�A�'reC�are�you've��A�youC�you�A�'veC�have�youd��A�youC�you�A�dC�'d�youdve��A�youC�you�A�dC�would�A�veC�have�youll��A�youC�you�A�llC�will�youllve��A�youC�you�A�llC�will�A�veC�have�youre��A�youC�you�A�reC�are�youve��A�youC�you�A�veC�have�you’d��A�youC�you�A�’dC�'d�you’d’ve��A�youC�you�A�’dC�would�A�’veC�have�you’ll��A�youC�you�A�’llC�will�you’ll’ve��A�youC�you�A�’llC�will�A�’veC�have�you’re��A�youC�you�A�’reC�are�you’ve��A�youC�you�A�’veC�have�y’all��A�y’C�you�A�all�z.��A�z.� ��A� C� �¯\(ツ)/¯��A�¯\(ツ)/¯�ä.��A�ä.�ö.��A�ö.�ü.��A�ü.�ಠ_ಠ��A�ಠ_ಠ�ಠ︵ಠ��A�ಠ︵ಠ�—��A�—�‘S��A�‘SC�'s�‘s��A�‘sC�'s�’��A�’�’Cause��A�’CauseC�because�’Cos��A�’CosC�because�’Coz��A�’CozC�because�’Cuz��A�’CuzC�because�’S��A�’SC�'s�’bout��A�’boutC�about�’cause��A�’causeC�because�’cos��A�’cosC�because�’coz��A�’cozC�because�’cuz��A�’cuzC�because�’d��A�’d�’em��A�’emC�them�’ll��A�’llC�will�’nuff��A�’nuffC�enough�’re��A�’reC�are�’s��A�’sC�'s�’’��A�’’
vocab/key2row ADDED
@@ -0,0 +1 @@
 
 
1
+
vocab/lookups.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:76be8b528d0075f7aae98d6fa57a6d3c83ae480a8469e668d7b0af968995ac71
3
+ size 1
vocab/strings.json ADDED
@@ -0,0 +1,4740 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ "\t",
3
+ "en",
4
+ "\n",
5
+ " ",
6
+ "'",
7
+ "''",
8
+ "\"",
9
+ "'Cause",
10
+ "because",
11
+ "'cause",
12
+ "use",
13
+ "'Xxxxx",
14
+ "Cause",
15
+ "cause",
16
+ "C",
17
+ "Xxxxx",
18
+ "'Cos",
19
+ "'cos",
20
+ "Cos",
21
+ "'Xxx",
22
+ "cos",
23
+ "Xxx",
24
+ "'Coz",
25
+ "'coz",
26
+ "Coz",
27
+ "coz",
28
+ "'Cuz",
29
+ "'cuz",
30
+ "Cuz",
31
+ "cuz",
32
+ "'S",
33
+ "'s",
34
+ "'X",
35
+ "S",
36
+ "s",
37
+ "'bout",
38
+ "about",
39
+ "out",
40
+ "'xxxx",
41
+ "bout",
42
+ "b",
43
+ "xxxx",
44
+ "c",
45
+ "'xxx",
46
+ "xxx",
47
+ "'d",
48
+ "'x",
49
+ "d",
50
+ "x",
51
+ "'em",
52
+ "them",
53
+ "'xx",
54
+ "em",
55
+ "e",
56
+ "xx",
57
+ "'ll",
58
+ "will",
59
+ "ll",
60
+ "l",
61
+ "'nuff",
62
+ "enough",
63
+ "uff",
64
+ "nuff",
65
+ "n",
66
+ "'re",
67
+ "are",
68
+ "re",
69
+ "r",
70
+ "(*_*)",
71
+ "(",
72
+ "_*)",
73
+ ")",
74
+ "*",
75
+ "(-8",
76
+ "(-d",
77
+ "-8",
78
+ "-",
79
+ "-d",
80
+ "(-:",
81
+ ":",
82
+ "(-;",
83
+ ";",
84
+ "(-_-)",
85
+ "_-)",
86
+ "-_-",
87
+ "(._.)",
88
+ "_.)",
89
+ ".",
90
+ "(:",
91
+ "(;",
92
+ "(=",
93
+ "=",
94
+ "(>_<)",
95
+ "_<)",
96
+ ">",
97
+ "<",
98
+ "(^_^)",
99
+ "_^)",
100
+ "^_^",
101
+ "^",
102
+ "(o:",
103
+ "(x:",
104
+ "o",
105
+ "(\u00ac_\u00ac)",
106
+ "_\u00ac)",
107
+ "\u00ac_\u00ac",
108
+ "\u00ac",
109
+ "(\u0ca0_\u0ca0)",
110
+ "_\u0ca0)",
111
+ "(x_x)",
112
+ "\u0ca0_\u0ca0",
113
+ "\u0ca0",
114
+ "x_x",
115
+ "(\u256f\u00b0\u25a1\u00b0\uff09\u256f\ufe35\u253b\u2501\u253b",
116
+ "\u253b\u2501\u253b",
117
+ "\u253b",
118
+ "\u256f",
119
+ "\u2501",
120
+ "\u00b0",
121
+ "\u25a1",
122
+ "\uff09",
123
+ "\ufe35",
124
+ ")-:",
125
+ "):",
126
+ "-__-",
127
+ "__-",
128
+ "._.",
129
+ "0.0",
130
+ "0",
131
+ "d.d",
132
+ "0.o",
133
+ "d.x",
134
+ "0_0",
135
+ "d_d",
136
+ "0_o",
137
+ "d_x",
138
+ "10",
139
+ "1",
140
+ "dd",
141
+ "a.m.",
142
+ "a",
143
+ ".m.",
144
+ "x.x.",
145
+ "10a.m",
146
+ "a.m",
147
+ "ddx.x",
148
+ "10a.m.",
149
+ "ddx.x.",
150
+ "am",
151
+ "p.m.",
152
+ "p",
153
+ "10p.m",
154
+ "p.m",
155
+ "10p.m.",
156
+ "pm",
157
+ "11",
158
+ "11a.m",
159
+ "11a.m.",
160
+ "11p.m",
161
+ "11p.m.",
162
+ "12",
163
+ "12a.m",
164
+ "12a.m.",
165
+ "12p.m",
166
+ "12p.m.",
167
+ "1a.m",
168
+ "dx.x",
169
+ "1a.m.",
170
+ "dx.x.",
171
+ "1p.m",
172
+ "1p.m.",
173
+ "2",
174
+ "2a.m",
175
+ "2a.m.",
176
+ "2p.m",
177
+ "2p.m.",
178
+ "3",
179
+ "3a.m",
180
+ "3a.m.",
181
+ "3p.m",
182
+ "3p.m.",
183
+ "4",
184
+ "4a.m",
185
+ "4a.m.",
186
+ "4p.m",
187
+ "4p.m.",
188
+ "5",
189
+ "5a.m",
190
+ "5a.m.",
191
+ "5p.m",
192
+ "5p.m.",
193
+ "6",
194
+ "6a.m",
195
+ "6a.m.",
196
+ "6p.m",
197
+ "6p.m.",
198
+ "7",
199
+ "7a.m",
200
+ "7a.m.",
201
+ "7p.m",
202
+ "7p.m.",
203
+ "8)",
204
+ "8",
205
+ "d)",
206
+ "8-)",
207
+ "d-)",
208
+ "8-",
209
+ "d-",
210
+ "8-D",
211
+ "8-d",
212
+ "d-X",
213
+ "D",
214
+ "8D",
215
+ "8d",
216
+ "dX",
217
+ "8a.m",
218
+ "8a.m.",
219
+ "8p.m",
220
+ "8p.m.",
221
+ "9",
222
+ "9a.m",
223
+ "9a.m.",
224
+ "9p.m",
225
+ "9p.m.",
226
+ ":'(",
227
+ ":')",
228
+ ":'-(",
229
+ "'-(",
230
+ ":'-)",
231
+ "'-)",
232
+ ":(",
233
+ ":((",
234
+ ":(((",
235
+ "(((",
236
+ ":()",
237
+ ":)",
238
+ ":))",
239
+ ":)))",
240
+ ")))",
241
+ ":*",
242
+ ":-(",
243
+ ":-((",
244
+ "-((",
245
+ ":-(((",
246
+ ":-)",
247
+ ":-))",
248
+ "-))",
249
+ ":-)))",
250
+ ":-*",
251
+ ":-/",
252
+ "-/",
253
+ ":-0",
254
+ ":-d",
255
+ "-0",
256
+ ":-3",
257
+ "-3",
258
+ ":->",
259
+ ":-D",
260
+ ":-X",
261
+ "-D",
262
+ "-X",
263
+ ":-O",
264
+ ":-o",
265
+ "-O",
266
+ "-o",
267
+ ":-P",
268
+ ":-p",
269
+ "-P",
270
+ "-p",
271
+ ":-x",
272
+ "-x",
273
+ ":-]",
274
+ "]",
275
+ ":-|",
276
+ "-|",
277
+ ":-}",
278
+ "}",
279
+ ":/",
280
+ "/",
281
+ ":0",
282
+ ":d",
283
+ ":1",
284
+ ":3",
285
+ ":>",
286
+ ":D",
287
+ ":X",
288
+ ":O",
289
+ ":o",
290
+ "O",
291
+ ":P",
292
+ ":p",
293
+ "P",
294
+ ":x",
295
+ ":]",
296
+ ":o)",
297
+ ":x)",
298
+ ":|",
299
+ "|",
300
+ ":}",
301
+ ":\u2019(",
302
+ "\u2019",
303
+ ":\u2019)",
304
+ ":\u2019-(",
305
+ "\u2019-(",
306
+ ":\u2019-)",
307
+ "\u2019-)",
308
+ ";)",
309
+ ";-)",
310
+ ";-D",
311
+ ";-d",
312
+ ";-X",
313
+ ";D",
314
+ ";d",
315
+ ";X",
316
+ ";_;",
317
+ "<.<",
318
+ "</3",
319
+ "</d",
320
+ "/3",
321
+ "/d",
322
+ "<3",
323
+ "<d",
324
+ "<33",
325
+ "<dd",
326
+ "33",
327
+ "<333",
328
+ "333",
329
+ "<ddd",
330
+ "ddd",
331
+ "<space>",
332
+ "ce>",
333
+ "<xxxx>",
334
+ "space",
335
+ "ace",
336
+ "=(",
337
+ "=)",
338
+ "=/",
339
+ "=3",
340
+ "=d",
341
+ "=D",
342
+ "=X",
343
+ "=[",
344
+ "[",
345
+ "=]",
346
+ "=|",
347
+ ">.<",
348
+ ">.>",
349
+ ">:(",
350
+ ">:o",
351
+ ">:x",
352
+ "><(((*>",
353
+ "(*>",
354
+ "@_@",
355
+ "@",
356
+ "Adm.",
357
+ "adm.",
358
+ "A",
359
+ "dm.",
360
+ "Xxx.",
361
+ "Adm",
362
+ "adm",
363
+ "Ai",
364
+ "ai",
365
+ "Xx",
366
+ "n't",
367
+ "not",
368
+ "x'x",
369
+ "nt",
370
+ "n\u2019t",
371
+ "x\u2019x",
372
+ "Ak.",
373
+ "Alaska",
374
+ "ak.",
375
+ "Xx.",
376
+ "Ak",
377
+ "ak",
378
+ "Ala.",
379
+ "Alabama",
380
+ "ala.",
381
+ "la.",
382
+ "Ala",
383
+ "ala",
384
+ "Apr.",
385
+ "April",
386
+ "apr.",
387
+ "pr.",
388
+ "Apr",
389
+ "apr",
390
+ "Are",
391
+ "Ariz.",
392
+ "Arizona",
393
+ "ariz.",
394
+ "iz.",
395
+ "Xxxx.",
396
+ "Ariz",
397
+ "ariz",
398
+ "riz",
399
+ "Xxxx",
400
+ "Ark.",
401
+ "Arkansas",
402
+ "ark.",
403
+ "rk.",
404
+ "Ark",
405
+ "ark",
406
+ "Aug.",
407
+ "August",
408
+ "aug.",
409
+ "ug.",
410
+ "Aug",
411
+ "aug",
412
+ "Bros.",
413
+ "bros.",
414
+ "B",
415
+ "os.",
416
+ "Bros",
417
+ "bros",
418
+ "ros",
419
+ "C'm",
420
+ "come",
421
+ "c'm",
422
+ "X'x",
423
+ "on",
424
+ "C++",
425
+ "c++",
426
+ "X++",
427
+ "Calif.",
428
+ "California",
429
+ "calif.",
430
+ "if.",
431
+ "Xxxxx.",
432
+ "Calif",
433
+ "calif",
434
+ "lif",
435
+ "Ca",
436
+ "can",
437
+ "ca",
438
+ "'ve",
439
+ "have",
440
+ "Can",
441
+ "ve",
442
+ "v",
443
+ "\u2019ve",
444
+ "\u2019xx",
445
+ "Co.",
446
+ "co.",
447
+ "Co",
448
+ "co",
449
+ "Colo.",
450
+ "Colorado",
451
+ "colo.",
452
+ "lo.",
453
+ "Colo",
454
+ "colo",
455
+ "olo",
456
+ "Conn.",
457
+ "Connecticut",
458
+ "conn.",
459
+ "nn.",
460
+ "Conn",
461
+ "conn",
462
+ "onn",
463
+ "Corp.",
464
+ "corp.",
465
+ "rp.",
466
+ "Corp",
467
+ "corp",
468
+ "orp",
469
+ "Could",
470
+ "could",
471
+ "uld",
472
+ "C\u2019m",
473
+ "c\u2019m",
474
+ "X\u2019x",
475
+ "D.C.",
476
+ "d.c.",
477
+ ".C.",
478
+ "X.X.",
479
+ "Dare",
480
+ "dare",
481
+ "Dec.",
482
+ "December",
483
+ "dec.",
484
+ "ec.",
485
+ "Dec",
486
+ "dec",
487
+ "Del.",
488
+ "Delaware",
489
+ "del.",
490
+ "el.",
491
+ "Del",
492
+ "del",
493
+ "Did",
494
+ "do",
495
+ "did",
496
+ "Does",
497
+ "does",
498
+ "oes",
499
+ "Doin",
500
+ "doing",
501
+ "doin",
502
+ "oin",
503
+ "Doin'",
504
+ "doin'",
505
+ "in'",
506
+ "Xxxx'",
507
+ "Doin\u2019",
508
+ "doin\u2019",
509
+ "in\u2019",
510
+ "Xxxx\u2019",
511
+ "Do",
512
+ "Dr.",
513
+ "dr.",
514
+ "Dr",
515
+ "dr",
516
+ "E.G.",
517
+ "e.g.",
518
+ "E",
519
+ ".G.",
520
+ "E.g.",
521
+ ".g.",
522
+ "X.x.",
523
+ "E.g",
524
+ "e.g",
525
+ "X.x",
526
+ "Feb.",
527
+ "February",
528
+ "feb.",
529
+ "F",
530
+ "eb.",
531
+ "Feb",
532
+ "feb",
533
+ "Fla.",
534
+ "Florida",
535
+ "fla.",
536
+ "Fla",
537
+ "fla",
538
+ "Ga.",
539
+ "Georgia",
540
+ "ga.",
541
+ "G",
542
+ "Ga",
543
+ "ga",
544
+ "Gen.",
545
+ "gen.",
546
+ "en.",
547
+ "Gen",
548
+ "gen",
549
+ "Goin",
550
+ "going",
551
+ "goin",
552
+ "Goin'",
553
+ "goin'",
554
+ "Goin\u2019",
555
+ "goin\u2019",
556
+ "Gon",
557
+ "gon",
558
+ "na",
559
+ "to",
560
+ "Got",
561
+ "got",
562
+ "ta",
563
+ "t",
564
+ "Gov.",
565
+ "gov.",
566
+ "ov.",
567
+ "Gov",
568
+ "gov",
569
+ "Had",
570
+ "had",
571
+ "H",
572
+ "Has",
573
+ "has",
574
+ "Have",
575
+ "ave",
576
+ "Havin",
577
+ "having",
578
+ "havin",
579
+ "vin",
580
+ "Havin'",
581
+ "havin'",
582
+ "Xxxxx'",
583
+ "Havin\u2019",
584
+ "havin\u2019",
585
+ "Xxxxx\u2019",
586
+ "He",
587
+ "he",
588
+ "would",
589
+ "He's",
590
+ "he's",
591
+ "e's",
592
+ "Xx'x",
593
+ "\u2019d",
594
+ "\u2019x",
595
+ "\u2019ll",
596
+ "\u2019s",
597
+ "He\u2019s",
598
+ "he\u2019s",
599
+ "e\u2019s",
600
+ "Xx\u2019x",
601
+ "How",
602
+ "how",
603
+ "'y",
604
+ "you",
605
+ "How's",
606
+ "how's",
607
+ "w's",
608
+ "Xxx'x",
609
+ "\u2019y",
610
+ "\u2019re",
611
+ "How\u2019s",
612
+ "how\u2019s",
613
+ "w\u2019s",
614
+ "Xxx\u2019x",
615
+ "I",
616
+ "i",
617
+ "'m",
618
+ "gonna",
619
+ "I.E.",
620
+ "i.e.",
621
+ ".E.",
622
+ "I.e.",
623
+ ".e.",
624
+ "I.e",
625
+ "i.e",
626
+ "Ia.",
627
+ "Iowa",
628
+ "ia.",
629
+ "Ia",
630
+ "ia",
631
+ "Id.",
632
+ "Idaho",
633
+ "id.",
634
+ "Id",
635
+ "id",
636
+ "Ill.",
637
+ "Illinois",
638
+ "ill.",
639
+ "ll.",
640
+ "Ill",
641
+ "ill",
642
+ "m",
643
+ "Inc.",
644
+ "inc.",
645
+ "nc.",
646
+ "Inc",
647
+ "inc",
648
+ "Ind.",
649
+ "Indiana",
650
+ "ind.",
651
+ "nd.",
652
+ "Ind",
653
+ "ind",
654
+ "Is",
655
+ "is",
656
+ "It",
657
+ "it",
658
+ "It's",
659
+ "it's",
660
+ "t's",
661
+ "It\u2019s",
662
+ "it\u2019s",
663
+ "t\u2019s",
664
+ "\u2019m",
665
+ "Jan.",
666
+ "January",
667
+ "jan.",
668
+ "J",
669
+ "an.",
670
+ "Jan",
671
+ "jan",
672
+ "Jr.",
673
+ "jr.",
674
+ "Jr",
675
+ "jr",
676
+ "Jul.",
677
+ "July",
678
+ "jul.",
679
+ "ul.",
680
+ "Jul",
681
+ "jul",
682
+ "Jun.",
683
+ "June",
684
+ "jun.",
685
+ "un.",
686
+ "Jun",
687
+ "jun",
688
+ "Kan.",
689
+ "Kansas",
690
+ "kan.",
691
+ "K",
692
+ "Kan",
693
+ "kan",
694
+ "Kans.",
695
+ "kans.",
696
+ "ns.",
697
+ "Kans",
698
+ "kans",
699
+ "ans",
700
+ "Ky.",
701
+ "Kentucky",
702
+ "ky.",
703
+ "Ky",
704
+ "ky",
705
+ "La.",
706
+ "Louisiana",
707
+ "L",
708
+ "La",
709
+ "la",
710
+ "Let",
711
+ "let",
712
+ "us",
713
+ "Let's",
714
+ "let's",
715
+ "Let\u2019s",
716
+ "let\u2019s",
717
+ "Lovin",
718
+ "loving",
719
+ "lovin",
720
+ "Lovin'",
721
+ "lovin'",
722
+ "Lovin\u2019",
723
+ "lovin\u2019",
724
+ "Ltd.",
725
+ "ltd.",
726
+ "td.",
727
+ "Ltd",
728
+ "ltd",
729
+ "Ma'am",
730
+ "madam",
731
+ "ma'am",
732
+ "M",
733
+ "'am",
734
+ "Xx'xx",
735
+ "Mar.",
736
+ "March",
737
+ "mar.",
738
+ "ar.",
739
+ "Mar",
740
+ "mar",
741
+ "Mass.",
742
+ "Massachusetts",
743
+ "mass.",
744
+ "ss.",
745
+ "Mass",
746
+ "mass",
747
+ "ass",
748
+ "May.",
749
+ "May",
750
+ "may.",
751
+ "ay.",
752
+ "may",
753
+ "Ma\u2019am",
754
+ "ma\u2019am",
755
+ "\u2019am",
756
+ "Xx\u2019xx",
757
+ "Md.",
758
+ "md.",
759
+ "Md",
760
+ "md",
761
+ "Messrs.",
762
+ "messrs.",
763
+ "rs.",
764
+ "Messrs",
765
+ "messrs",
766
+ "srs",
767
+ "Mich.",
768
+ "Michigan",
769
+ "mich.",
770
+ "ch.",
771
+ "Mich",
772
+ "mich",
773
+ "ich",
774
+ "Might",
775
+ "might",
776
+ "ght",
777
+ "Minn.",
778
+ "Minnesota",
779
+ "minn.",
780
+ "Minn",
781
+ "minn",
782
+ "inn",
783
+ "Miss.",
784
+ "Mississippi",
785
+ "miss.",
786
+ "Miss",
787
+ "miss",
788
+ "iss",
789
+ "Mo.",
790
+ "mo.",
791
+ "Mo",
792
+ "mo",
793
+ "Mont.",
794
+ "mont.",
795
+ "nt.",
796
+ "Mont",
797
+ "mont",
798
+ "ont",
799
+ "Mr.",
800
+ "mr.",
801
+ "Mr",
802
+ "mr",
803
+ "Mrs.",
804
+ "mrs.",
805
+ "Mrs",
806
+ "mrs",
807
+ "Ms.",
808
+ "ms.",
809
+ "Ms",
810
+ "ms",
811
+ "Mt.",
812
+ "Mount",
813
+ "mt.",
814
+ "Mt",
815
+ "mt",
816
+ "Must",
817
+ "must",
818
+ "ust",
819
+ "N.C.",
820
+ "North Carolina",
821
+ "n.c.",
822
+ "N",
823
+ "N.D.",
824
+ "North Dakota",
825
+ "n.d.",
826
+ ".D.",
827
+ "N.H.",
828
+ "New Hampshire",
829
+ "n.h.",
830
+ ".H.",
831
+ "N.J.",
832
+ "New Jersey",
833
+ "n.j.",
834
+ ".J.",
835
+ "N.M.",
836
+ "New Mexico",
837
+ "n.m.",
838
+ ".M.",
839
+ "N.Y.",
840
+ "New York",
841
+ "n.y.",
842
+ ".Y.",
843
+ "Neb.",
844
+ "Nebraska",
845
+ "neb.",
846
+ "Neb",
847
+ "neb",
848
+ "Nebr.",
849
+ "nebr.",
850
+ "br.",
851
+ "Nebr",
852
+ "nebr",
853
+ "ebr",
854
+ "Need",
855
+ "need",
856
+ "eed",
857
+ "Nev.",
858
+ "Nevada",
859
+ "nev.",
860
+ "ev.",
861
+ "Nev",
862
+ "nev",
863
+ "Not",
864
+ "Nothin",
865
+ "nothing",
866
+ "nothin",
867
+ "hin",
868
+ "Nothin'",
869
+ "nothin'",
870
+ "Nothin\u2019",
871
+ "nothin\u2019",
872
+ "Nov.",
873
+ "November",
874
+ "nov.",
875
+ "Nov",
876
+ "nov",
877
+ "Nuthin",
878
+ "nuthin",
879
+ "Nuthin'",
880
+ "nuthin'",
881
+ "Nuthin\u2019",
882
+ "nuthin\u2019",
883
+ "O'clock",
884
+ "o'clock",
885
+ "ock",
886
+ "X'xxxx",
887
+ "O.O",
888
+ "o.o",
889
+ "X.X",
890
+ "O.o",
891
+ "O_O",
892
+ "o_o",
893
+ "X_X",
894
+ "O_o",
895
+ "X_x",
896
+ "Oct.",
897
+ "October",
898
+ "oct.",
899
+ "ct.",
900
+ "Oct",
901
+ "oct",
902
+ "Okla.",
903
+ "Oklahoma",
904
+ "okla.",
905
+ "Okla",
906
+ "okla",
907
+ "kla",
908
+ "Ol",
909
+ "old",
910
+ "ol",
911
+ "Ol'",
912
+ "ol'",
913
+ "Xx'",
914
+ "Ol\u2019",
915
+ "ol\u2019",
916
+ "Xx\u2019",
917
+ "Ore.",
918
+ "Oregon",
919
+ "ore.",
920
+ "re.",
921
+ "Ore",
922
+ "ore",
923
+ "Ought",
924
+ "ought",
925
+ "O\u2019clock",
926
+ "o\u2019clock",
927
+ "X\u2019xxxx",
928
+ "Pa.",
929
+ "Pennsylvania",
930
+ "pa.",
931
+ "Pa",
932
+ "pa",
933
+ "Ph.D.",
934
+ "ph.d.",
935
+ "Xx.X.",
936
+ "Ph",
937
+ "ph",
938
+ "D.",
939
+ "d.",
940
+ "X.",
941
+ "Prof.",
942
+ "prof.",
943
+ "of.",
944
+ "Prof",
945
+ "prof",
946
+ "rof",
947
+ "Rep.",
948
+ "rep.",
949
+ "R",
950
+ "ep.",
951
+ "Rep",
952
+ "rep",
953
+ "Rev.",
954
+ "rev.",
955
+ "Rev",
956
+ "rev",
957
+ "S.C.",
958
+ "South Carolina",
959
+ "s.c.",
960
+ "Sen.",
961
+ "sen.",
962
+ "Sen",
963
+ "sen",
964
+ "Sep.",
965
+ "September",
966
+ "sep.",
967
+ "Sep",
968
+ "sep",
969
+ "Sept.",
970
+ "sept.",
971
+ "pt.",
972
+ "Sept",
973
+ "sept",
974
+ "ept",
975
+ "Sha",
976
+ "shall",
977
+ "sha",
978
+ "She",
979
+ "she",
980
+ "She's",
981
+ "she's",
982
+ "She\u2019s",
983
+ "she\u2019s",
984
+ "Should",
985
+ "should",
986
+ "Somethin",
987
+ "something",
988
+ "somethin",
989
+ "Somethin'",
990
+ "somethin'",
991
+ "Somethin\u2019",
992
+ "somethin\u2019",
993
+ "St.",
994
+ "st.",
995
+ "St",
996
+ "st",
997
+ "Tenn.",
998
+ "Tennessee",
999
+ "tenn.",
1000
+ "T",
1001
+ "Tenn",
1002
+ "tenn",
1003
+ "enn",
1004
+ "That",
1005
+ "that",
1006
+ "hat",
1007
+ "That's",
1008
+ "that's",
1009
+ "Xxxx'x",
1010
+ "That\u2019s",
1011
+ "that\u2019s",
1012
+ "Xxxx\u2019x",
1013
+ "There",
1014
+ "there",
1015
+ "ere",
1016
+ "There's",
1017
+ "there's",
1018
+ "Xxxxx'x",
1019
+ "There\u2019s",
1020
+ "there\u2019s",
1021
+ "Xxxxx\u2019x",
1022
+ "These",
1023
+ "these",
1024
+ "ese",
1025
+ "These's",
1026
+ "these's",
1027
+ "These\u2019s",
1028
+ "these\u2019s",
1029
+ "They",
1030
+ "they",
1031
+ "hey",
1032
+ "This",
1033
+ "this",
1034
+ "his",
1035
+ "This's",
1036
+ "this's",
1037
+ "s's",
1038
+ "This\u2019s",
1039
+ "this\u2019s",
1040
+ "s\u2019s",
1041
+ "Those",
1042
+ "those",
1043
+ "ose",
1044
+ "Those's",
1045
+ "those's",
1046
+ "Those\u2019s",
1047
+ "those\u2019s",
1048
+ "V.V",
1049
+ "v.v",
1050
+ "V",
1051
+ "V_V",
1052
+ "v_v",
1053
+ "Va.",
1054
+ "Virginia",
1055
+ "va.",
1056
+ "Va",
1057
+ "va",
1058
+ "Wash.",
1059
+ "Washington",
1060
+ "wash.",
1061
+ "W",
1062
+ "sh.",
1063
+ "Wash",
1064
+ "wash",
1065
+ "ash",
1066
+ "Was",
1067
+ "was",
1068
+ "We",
1069
+ "we",
1070
+ "Were",
1071
+ "were",
1072
+ "What",
1073
+ "what",
1074
+ "What's",
1075
+ "what's",
1076
+ "What\u2019s",
1077
+ "what\u2019s",
1078
+ "When",
1079
+ "when",
1080
+ "hen",
1081
+ "When's",
1082
+ "when's",
1083
+ "n's",
1084
+ "When\u2019s",
1085
+ "when\u2019s",
1086
+ "n\u2019s",
1087
+ "Where",
1088
+ "where",
1089
+ "Where's",
1090
+ "where's",
1091
+ "Where\u2019s",
1092
+ "where\u2019s",
1093
+ "Who",
1094
+ "who",
1095
+ "Who's",
1096
+ "who's",
1097
+ "o's",
1098
+ "Who\u2019s",
1099
+ "who\u2019s",
1100
+ "o\u2019s",
1101
+ "Why",
1102
+ "why",
1103
+ "Why's",
1104
+ "why's",
1105
+ "y's",
1106
+ "Why\u2019s",
1107
+ "why\u2019s",
1108
+ "y\u2019s",
1109
+ "Wis.",
1110
+ "Wisconsin",
1111
+ "wis.",
1112
+ "is.",
1113
+ "Wis",
1114
+ "wis",
1115
+ "Wo",
1116
+ "wo",
1117
+ "Would",
1118
+ "XD",
1119
+ "xd",
1120
+ "XX",
1121
+ "XDD",
1122
+ "xdd",
1123
+ "XXX",
1124
+ "You",
1125
+ "Y",
1126
+ "[-:",
1127
+ "[:",
1128
+ "[=",
1129
+ "\\\")",
1130
+ "\\",
1131
+ "\\n",
1132
+ "\\x",
1133
+ "\\t",
1134
+ "]=",
1135
+ "^__^",
1136
+ "__^",
1137
+ "^___^",
1138
+ "a.",
1139
+ "x.",
1140
+ "x.x",
1141
+ "and/or",
1142
+ "/or",
1143
+ "xxx/xx",
1144
+ "and",
1145
+ "or",
1146
+ "b.",
1147
+ "c.",
1148
+ "xx.",
1149
+ "xxxx'",
1150
+ "xxxx\u2019",
1151
+ "e.",
1152
+ "f.",
1153
+ "f",
1154
+ "g.",
1155
+ "g",
1156
+ "h.",
1157
+ "h",
1158
+ "xx'x",
1159
+ "xx\u2019x",
1160
+ "xxx'x",
1161
+ "xxx\u2019x",
1162
+ "i.",
1163
+ "j.",
1164
+ "j",
1165
+ "k.",
1166
+ "k",
1167
+ "l.",
1168
+ "m.",
1169
+ "xx'xx",
1170
+ "xx\u2019xx",
1171
+ "n.",
1172
+ "x'xxxx",
1173
+ "o.",
1174
+ "o.0",
1175
+ "x.d",
1176
+ "o.O",
1177
+ "x.X",
1178
+ "o_0",
1179
+ "x_d",
1180
+ "o_O",
1181
+ "x_X",
1182
+ "xx'",
1183
+ "xx\u2019",
1184
+ "x\u2019xxxx",
1185
+ "p.",
1186
+ "q.",
1187
+ "q",
1188
+ "r.",
1189
+ "s.",
1190
+ "t.",
1191
+ "xxxx'x",
1192
+ "xxxx\u2019x",
1193
+ "u.",
1194
+ "u",
1195
+ "v.",
1196
+ "v.s.",
1197
+ ".s.",
1198
+ "v.s",
1199
+ "vs.",
1200
+ "vs",
1201
+ "w.",
1202
+ "w",
1203
+ "w/o",
1204
+ "without",
1205
+ "x/x",
1206
+ "xD",
1207
+ "xX",
1208
+ "xDD",
1209
+ "xXX",
1210
+ "y'",
1211
+ "y",
1212
+ "x'",
1213
+ "all",
1214
+ "y.",
1215
+ "y\u2019",
1216
+ "x\u2019",
1217
+ "z.",
1218
+ "z",
1219
+ "\u00a0",
1220
+ " ",
1221
+ "\u00af\\(\u30c4)/\u00af",
1222
+ "\u00af",
1223
+ ")/\u00af",
1224
+ "\u00af\\(x)/\u00af",
1225
+ "\u00e4.",
1226
+ "\u00e4",
1227
+ "\u00f6.",
1228
+ "\u00f6",
1229
+ "\u00fc.",
1230
+ "\u00fc",
1231
+ "\u0ca0\ufe35\u0ca0",
1232
+ "x\ufe35x",
1233
+ "\u2014",
1234
+ "\u2018S",
1235
+ "\u2018s",
1236
+ "\u2018",
1237
+ "\u2018X",
1238
+ "\u2018x",
1239
+ "\u2019Cause",
1240
+ "\u2019cause",
1241
+ "\u2019Xxxxx",
1242
+ "\u2019Cos",
1243
+ "\u2019cos",
1244
+ "\u2019Xxx",
1245
+ "\u2019Coz",
1246
+ "\u2019coz",
1247
+ "\u2019Cuz",
1248
+ "\u2019cuz",
1249
+ "\u2019S",
1250
+ "\u2019X",
1251
+ "\u2019bout",
1252
+ "\u2019xxxx",
1253
+ "\u2019xxx",
1254
+ "\u2019em",
1255
+ "\u2019nuff",
1256
+ "\u2019\u2019",
1257
+ "anymore",
1258
+ "disease",
1259
+ "ase",
1260
+ "tuberculosis",
1261
+ "sis",
1262
+ "down",
1263
+ "own",
1264
+ "quiet",
1265
+ "iet",
1266
+ "sell",
1267
+ "ell",
1268
+ "College",
1269
+ "college",
1270
+ "ege",
1271
+ "fight",
1272
+ "coat",
1273
+ "oat",
1274
+ "vodka",
1275
+ "dka",
1276
+ "permit",
1277
+ "mit",
1278
+ "telling",
1279
+ "ing",
1280
+ "throwing",
1281
+ "streets",
1282
+ "ets",
1283
+ "officer",
1284
+ "cer",
1285
+ "forests",
1286
+ "sts",
1287
+ "required",
1288
+ "red",
1289
+ "lot",
1290
+ "share",
1291
+ "disagreeable",
1292
+ "ble",
1293
+ "specifically",
1294
+ "lly",
1295
+ "get",
1296
+ "sit",
1297
+ "cheese",
1298
+ "cheeks",
1299
+ "eks",
1300
+ "burns",
1301
+ "rns",
1302
+ "boat",
1303
+ "85",
1304
+ "slice",
1305
+ "ice",
1306
+ "thirst",
1307
+ "rst",
1308
+ "inmates",
1309
+ "tes",
1310
+ "think",
1311
+ "ink",
1312
+ "1943",
1313
+ "943",
1314
+ "dddd",
1315
+ "event",
1316
+ "ENT",
1317
+ "XXXX",
1318
+ "facilities",
1319
+ "ies",
1320
+ "recall",
1321
+ "mod",
1322
+ "partisan",
1323
+ "san",
1324
+ "_SP",
1325
+ "_sp",
1326
+ "_XX",
1327
+ "seems",
1328
+ "ems",
1329
+ "shrubs",
1330
+ "ubs",
1331
+ "leaders",
1332
+ "ers",
1333
+ "poor",
1334
+ "oor",
1335
+ "vermin",
1336
+ "min",
1337
+ "chunk",
1338
+ "unk",
1339
+ "fall",
1340
+ "convincing",
1341
+ "flesh",
1342
+ "esh",
1343
+ "Case=Nom|Number=Sing|Person=1|PronType=Prs",
1344
+ "case=nom|number=sing|person=1|prontype=prs",
1345
+ "Prs",
1346
+ "Xxxx=Xxx|Xxxxx=Xxxx|Xxxxx=d|XxxxXxxx=Xxx",
1347
+ "dream",
1348
+ "eam",
1349
+ "beat",
1350
+ "eat",
1351
+ "nail",
1352
+ "ail",
1353
+ "small",
1354
+ "buy",
1355
+ "create",
1356
+ "ate",
1357
+ "give",
1358
+ "ive",
1359
+ "TB",
1360
+ "tb",
1361
+ "production",
1362
+ "ion",
1363
+ "shipped",
1364
+ "ped",
1365
+ "kosher",
1366
+ "her",
1367
+ "cow",
1368
+ "babies",
1369
+ "moral",
1370
+ "ral",
1371
+ "almond",
1372
+ "ond",
1373
+ "tables",
1374
+ "les",
1375
+ "rain",
1376
+ "ain",
1377
+ "DT",
1378
+ "dt",
1379
+ "died",
1380
+ "ied",
1381
+ "wave",
1382
+ "NNS",
1383
+ "nns",
1384
+ "girls",
1385
+ "rls",
1386
+ "pit",
1387
+ "strike",
1388
+ "ike",
1389
+ "LS",
1390
+ "ls",
1391
+ "discipline",
1392
+ "ine",
1393
+ "shame",
1394
+ "ame",
1395
+ "the",
1396
+ "coal",
1397
+ "oal",
1398
+ "believed",
1399
+ "ved",
1400
+ "push",
1401
+ "ush",
1402
+ "doo",
1403
+ "closeness",
1404
+ "ess",
1405
+ "worse",
1406
+ "rse",
1407
+ "fond",
1408
+ "dear",
1409
+ "ear",
1410
+ "39",
1411
+ "level",
1412
+ "vel",
1413
+ "oh",
1414
+ "spring",
1415
+ "decided",
1416
+ "ded",
1417
+ "contact",
1418
+ "act",
1419
+ "latrine",
1420
+ "dogs",
1421
+ "ogs",
1422
+ "badly",
1423
+ "dly",
1424
+ "cross",
1425
+ "oss",
1426
+ "filthy",
1427
+ "thy",
1428
+ "as",
1429
+ "laughing",
1430
+ "left",
1431
+ "eft",
1432
+ "cry",
1433
+ "meal",
1434
+ "eal",
1435
+ "high",
1436
+ "igh",
1437
+ "stops",
1438
+ "ops",
1439
+ "cover",
1440
+ "ver",
1441
+ "RG-50",
1442
+ "rg-50",
1443
+ "-50",
1444
+ "XX-dd",
1445
+ "job",
1446
+ "explain",
1447
+ "forest",
1448
+ "est",
1449
+ "noses",
1450
+ "ses",
1451
+ "twice",
1452
+ "stirring",
1453
+ "store",
1454
+ "sight",
1455
+ "important",
1456
+ "ant",
1457
+ "hit",
1458
+ "harm",
1459
+ "arm",
1460
+ "trains",
1461
+ "ins",
1462
+ "natural",
1463
+ "possess",
1464
+ "victory",
1465
+ "ory",
1466
+ "cookies",
1467
+ "handkerchief",
1468
+ "ief",
1469
+ "Hunger",
1470
+ "hunger",
1471
+ "ger",
1472
+ "said",
1473
+ "aid",
1474
+ "raw",
1475
+ "created",
1476
+ "ted",
1477
+ "flowers",
1478
+ "turn",
1479
+ "urn",
1480
+ "visiting",
1481
+ "quantity",
1482
+ "Q",
1483
+ "ITY",
1484
+ "mention",
1485
+ "Easter",
1486
+ "easter",
1487
+ "ter",
1488
+ "years",
1489
+ "ars",
1490
+ "bag",
1491
+ "emaciate",
1492
+ "third",
1493
+ "ird",
1494
+ "closed",
1495
+ "sed",
1496
+ "urine",
1497
+ "walked",
1498
+ "ked",
1499
+ "everybody",
1500
+ "ody",
1501
+ "good",
1502
+ "ood",
1503
+ "instructions",
1504
+ "ons",
1505
+ "april",
1506
+ "ril",
1507
+ "Frenchwoman",
1508
+ "frenchwoman",
1509
+ "man",
1510
+ "Number=Plur",
1511
+ "number=plur",
1512
+ "lur",
1513
+ "Xxxxx=Xxxx",
1514
+ "marzipan",
1515
+ "pan",
1516
+ "least",
1517
+ "ast",
1518
+ "opened",
1519
+ "ned",
1520
+ "\u201d",
1521
+ "receiving",
1522
+ "verbatim",
1523
+ "tim",
1524
+ "British",
1525
+ "british",
1526
+ "ish",
1527
+ "from",
1528
+ "rom",
1529
+ "fault",
1530
+ "ult",
1531
+ "hole",
1532
+ "ole",
1533
+ "Number=Sing",
1534
+ "number=sing",
1535
+ "se",
1536
+ "yeah",
1537
+ "eah",
1538
+ "block",
1539
+ "worst",
1540
+ "want",
1541
+ "bright",
1542
+ "JJS",
1543
+ "jjs",
1544
+ "touch",
1545
+ "uch",
1546
+ "completely",
1547
+ "ely",
1548
+ "say",
1549
+ "above",
1550
+ "ove",
1551
+ "Red",
1552
+ "carried",
1553
+ "rice",
1554
+ "realize",
1555
+ "ize",
1556
+ "roses",
1557
+ "stench",
1558
+ "nch",
1559
+ "schnell",
1560
+ "boots",
1561
+ "ots",
1562
+ "spozak(ph",
1563
+ "(ph",
1564
+ "xxxx(xx",
1565
+ "upon",
1566
+ "pon",
1567
+ "between",
1568
+ "een",
1569
+ "cent",
1570
+ "ent",
1571
+ "business",
1572
+ "nauseating",
1573
+ "fine",
1574
+ "gastroenterologist",
1575
+ "ist",
1576
+ "chance",
1577
+ "nce",
1578
+ "overpowered",
1579
+ "date",
1580
+ "ATE",
1581
+ "Sometimes",
1582
+ "sometimes",
1583
+ "mes",
1584
+ "starved",
1585
+ "Gender=Neut|Number=Sing|Person=3|PronType=Prs",
1586
+ "gender=neut|number=sing|person=3|prontype=prs",
1587
+ "Xxxxx=Xxxx|Xxxxx=Xxxx|Xxxxx=d|XxxxXxxx=Xxx",
1588
+ "iron",
1589
+ "ron",
1590
+ "Case=Acc|Gender=Fem|Number=Sing|Person=3|PronType=Prs",
1591
+ "case=acc|gender=fem|number=sing|person=3|prontype=prs",
1592
+ "Xxxx=Xxx|Xxxxx=Xxx|Xxxxx=Xxxx|Xxxxx=d|XxxxXxxx=Xxx",
1593
+ "aspired",
1594
+ "ones",
1595
+ "nes",
1596
+ "family",
1597
+ "ily",
1598
+ "transports",
1599
+ "rts",
1600
+ "xis",
1601
+ "impossible",
1602
+ "far",
1603
+ "-LRB-",
1604
+ "-lrb-",
1605
+ "RB-",
1606
+ "-XXX-",
1607
+ "Rumors",
1608
+ "rumors",
1609
+ "ors",
1610
+ "me",
1611
+ "looking",
1612
+ "help",
1613
+ "elp",
1614
+ "barking",
1615
+ "lying",
1616
+ "PronType=Prs",
1617
+ "prontype=prs",
1618
+ "XxxxXxxx=Xxx",
1619
+ "sew",
1620
+ "Al've",
1621
+ "al've",
1622
+ "end",
1623
+ "stopped",
1624
+ "furniture",
1625
+ "ure",
1626
+ "ashe",
1627
+ "lots",
1628
+ "God",
1629
+ "god",
1630
+ "corpse",
1631
+ "pse",
1632
+ "enormous",
1633
+ "ous",
1634
+ "counted",
1635
+ "orange",
1636
+ "nge",
1637
+ "ridiculous",
1638
+ "NNP",
1639
+ "nnp",
1640
+ "horrocious",
1641
+ "possessed",
1642
+ "Every",
1643
+ "every",
1644
+ "ery",
1645
+ "factories",
1646
+ "tattooing",
1647
+ "Still",
1648
+ "still",
1649
+ "Mood=Ind|Person=1|Tense=Pres|VerbForm=Fin",
1650
+ "mood=ind|person=1|tense=pres|verbform=fin",
1651
+ "Fin",
1652
+ "Xxxx=Xxx|Xxxxx=d|Xxxxx=Xxxx|XxxxXxxx=Xxx",
1653
+ "efforts",
1654
+ "thrown",
1655
+ "away",
1656
+ "way",
1657
+ "closest",
1658
+ "hands",
1659
+ "nds",
1660
+ "developed",
1661
+ "HYPH",
1662
+ "YPH",
1663
+ "times",
1664
+ "dysentery",
1665
+ "waxed",
1666
+ "xed",
1667
+ "return",
1668
+ "caw",
1669
+ "stimulate",
1670
+ "actually",
1671
+ "into",
1672
+ "nto",
1673
+ "mistake",
1674
+ "ake",
1675
+ "laying",
1676
+ "Uh",
1677
+ "uh",
1678
+ "U",
1679
+ "blowing",
1680
+ "pile",
1681
+ "ile",
1682
+ "error",
1683
+ "ror",
1684
+ "fatty",
1685
+ "tty",
1686
+ "olfactory",
1687
+ "count",
1688
+ "unt",
1689
+ "drink",
1690
+ "25",
1691
+ "by",
1692
+ "weak",
1693
+ "eak",
1694
+ "burned",
1695
+ "guard",
1696
+ "ard",
1697
+ "actions",
1698
+ "our",
1699
+ "transcript",
1700
+ "ipt",
1701
+ "daily",
1702
+ "grass",
1703
+ "killed",
1704
+ "led",
1705
+ "peed",
1706
+ "rotten",
1707
+ "ten",
1708
+ "fr",
1709
+ "encounter",
1710
+ "frankly",
1711
+ "kly",
1712
+ "stink",
1713
+ "limited",
1714
+ "reminders",
1715
+ "opportunity",
1716
+ "ity",
1717
+ "fill",
1718
+ "holiday",
1719
+ "day",
1720
+ "!",
1721
+ "value",
1722
+ "lue",
1723
+ "jail",
1724
+ "hanging",
1725
+ "labor",
1726
+ "bor",
1727
+ "sorry",
1728
+ "rry",
1729
+ "notice",
1730
+ "pos",
1731
+ "degradation",
1732
+ "themselves",
1733
+ "ves",
1734
+ "Interview",
1735
+ "interview",
1736
+ "iew",
1737
+ "ingrain",
1738
+ "aging",
1739
+ "meet",
1740
+ "eet",
1741
+ "pick",
1742
+ "ick",
1743
+ "filth",
1744
+ "lth",
1745
+ "lilacs",
1746
+ "acs",
1747
+ "though",
1748
+ "ugh",
1749
+ "shoved",
1750
+ "bullet",
1751
+ "horrible",
1752
+ "begin",
1753
+ "gin",
1754
+ "Semitism",
1755
+ "semitism",
1756
+ "ism",
1757
+ "siege",
1758
+ "Hania",
1759
+ "hania",
1760
+ "nia",
1761
+ "person",
1762
+ "SON",
1763
+ "impregnated",
1764
+ "pang",
1765
+ "ang",
1766
+ "sickness",
1767
+ "wear",
1768
+ "then",
1769
+ "misery",
1770
+ "NounType=Prop|Number=Sing",
1771
+ "nountype=prop|number=sing",
1772
+ "XxxxXxxx=Xxxx|Xxxxx=Xxxx",
1773
+ "prepared",
1774
+ "VerbForm=Fin",
1775
+ "verbform=fin",
1776
+ "blurry",
1777
+ "tomorrow",
1778
+ "row",
1779
+ "with",
1780
+ "ith",
1781
+ "Mood=Ind|Tense=Pres|VerbForm=Fin",
1782
+ "mood=ind|tense=pres|verbform=fin",
1783
+ "Xxxx=Xxx|Xxxxx=Xxxx|XxxxXxxx=Xxx",
1784
+ "cake",
1785
+ "happened",
1786
+ "friction",
1787
+ "together",
1788
+ "breakfast",
1789
+ "allowed",
1790
+ "wed",
1791
+ "leather",
1792
+ "pea",
1793
+ "CD",
1794
+ "cd",
1795
+ "whatever",
1796
+ "air",
1797
+ "ebb",
1798
+ "clean",
1799
+ "ean",
1800
+ "leg",
1801
+ "bomb",
1802
+ "omb",
1803
+ "ventilation",
1804
+ "farmers",
1805
+ "bearable",
1806
+ "houses",
1807
+ "dangerous",
1808
+ "inventiveness",
1809
+ "portion",
1810
+ "mine",
1811
+ "lady",
1812
+ "ady",
1813
+ "forties",
1814
+ "demolished",
1815
+ "hed",
1816
+ "floors",
1817
+ "morally",
1818
+ "watching",
1819
+ "encountered",
1820
+ "abused",
1821
+ "PunctSide=Fin|PunctType=Quot",
1822
+ "punctside=fin|puncttype=quot",
1823
+ "uot",
1824
+ "XxxxxXxxx=Xxx|XxxxxXxxx=Xxxx",
1825
+ "see",
1826
+ "scorch",
1827
+ "rch",
1828
+ "splinter",
1829
+ "vomit",
1830
+ "skeleton",
1831
+ "ton",
1832
+ "sabotage",
1833
+ "age",
1834
+ "100",
1835
+ "grates",
1836
+ "chickens",
1837
+ "ens",
1838
+ "says",
1839
+ "ays",
1840
+ "lcl",
1841
+ "sort",
1842
+ "ort",
1843
+ "posture",
1844
+ "strong",
1845
+ "ong",
1846
+ "morning",
1847
+ "Berlin",
1848
+ "berlin",
1849
+ "lin",
1850
+ "require",
1851
+ "ire",
1852
+ "until",
1853
+ "til",
1854
+ "supposed",
1855
+ "RB",
1856
+ "rb",
1857
+ "shoe",
1858
+ "hoe",
1859
+ "dozen",
1860
+ "zen",
1861
+ "no",
1862
+ "gpe",
1863
+ "such",
1864
+ "spite",
1865
+ "ite",
1866
+ "him",
1867
+ "vanilla",
1868
+ "lla",
1869
+ "accepted",
1870
+ "immediately",
1871
+ "dragging",
1872
+ "rats",
1873
+ "ats",
1874
+ "downtown",
1875
+ "collect",
1876
+ "ect",
1877
+ "dinner",
1878
+ "ner",
1879
+ "wore",
1880
+ "romanian",
1881
+ "ian",
1882
+ "TO",
1883
+ "everyone",
1884
+ "one",
1885
+ "wake",
1886
+ "Oh",
1887
+ "listen",
1888
+ "onset",
1889
+ "set",
1890
+ "2500",
1891
+ "500",
1892
+ "24",
1893
+ "fun",
1894
+ "longer",
1895
+ "kishke",
1896
+ "hke",
1897
+ "wire",
1898
+ "cleanliness",
1899
+ "lived",
1900
+ "wheat",
1901
+ "smoke",
1902
+ "oke",
1903
+ "Washingtonians",
1904
+ "washingtonians",
1905
+ "guest",
1906
+ "further",
1907
+ "choke",
1908
+ "permeated",
1909
+ "generation",
1910
+ "ebbed",
1911
+ "bed",
1912
+ "buckets",
1913
+ "ADD",
1914
+ "add",
1915
+ "baby",
1916
+ "aby",
1917
+ "director",
1918
+ "tor",
1919
+ "American",
1920
+ "american",
1921
+ "defecate",
1922
+ "chicken",
1923
+ "ken",
1924
+ "EX",
1925
+ "ex",
1926
+ "emanated",
1927
+ "suit",
1928
+ "uit",
1929
+ "Elders",
1930
+ "elders",
1931
+ "clothe",
1932
+ "easy",
1933
+ "asy",
1934
+ "beans",
1935
+ "blanket",
1936
+ "ket",
1937
+ "house",
1938
+ "ritual",
1939
+ "ual",
1940
+ "First",
1941
+ "first",
1942
+ "below",
1943
+ "low",
1944
+ "splinters",
1945
+ "playmate",
1946
+ "Starachowice",
1947
+ "starachowice",
1948
+ "almonds",
1949
+ "imagine",
1950
+ "laugh",
1951
+ "dative",
1952
+ "mentioned",
1953
+ "certain",
1954
+ "spent",
1955
+ "indescribable",
1956
+ "wanted",
1957
+ "rubble",
1958
+ "save",
1959
+ "overlook",
1960
+ "ook",
1961
+ "sleep",
1962
+ "eep",
1963
+ "started",
1964
+ "combination",
1965
+ "flower",
1966
+ "wer",
1967
+ "pear",
1968
+ "given",
1969
+ "ven",
1970
+ "injuries",
1971
+ "raining",
1972
+ "ashamed",
1973
+ "med",
1974
+ "government",
1975
+ "typhu",
1976
+ "phu",
1977
+ "tremendous",
1978
+ "rails",
1979
+ "ils",
1980
+ "tired",
1981
+ "ground",
1982
+ "und",
1983
+ "comment",
1984
+ "Eichmann(ph",
1985
+ "eichmann(ph",
1986
+ "Xxxxx(xx",
1987
+ "inescapable",
1988
+ "shave",
1989
+ "deportation",
1990
+ "domicile",
1991
+ "alcohol",
1992
+ "hol",
1993
+ "distance",
1994
+ "greet",
1995
+ "et",
1996
+ "package",
1997
+ "divided",
1998
+ "relieved",
1999
+ "doors",
2000
+ "sulfur",
2001
+ "fur",
2002
+ "22",
2003
+ "cigarettes",
2004
+ "Nostortum",
2005
+ "nostortum",
2006
+ "tum",
2007
+ "another",
2008
+ "defecating",
2009
+ "persists",
2010
+ "company",
2011
+ "any",
2012
+ "pistol",
2013
+ "tol",
2014
+ "nobody",
2015
+ "Europe",
2016
+ "europe",
2017
+ "ope",
2018
+ "wax",
2019
+ "bitter",
2020
+ "suppose",
2021
+ "Number=Sing|Person=Three|Tense=Pres|VerbForm=Fin",
2022
+ "number=sing|person=three|tense=pres|verbform=fin",
2023
+ "Xxxxx=Xxxx|Xxxxx=Xxxxx|Xxxxx=Xxxx|XxxxXxxx=Xxx",
2024
+ "real",
2025
+ "USHMM",
2026
+ "ushmm",
2027
+ "HMM",
2028
+ "threw",
2029
+ "rew",
2030
+ "beauty",
2031
+ "uty",
2032
+ "playmates",
2033
+ "ammonia",
2034
+ "reality",
2035
+ "walk",
2036
+ "alk",
2037
+ "pregnant",
2038
+ "finger",
2039
+ "beings",
2040
+ "ngs",
2041
+ "sigh",
2042
+ "smoking",
2043
+ "making",
2044
+ "resist",
2045
+ "major",
2046
+ "jor",
2047
+ "refer",
2048
+ "fer",
2049
+ "halt",
2050
+ "alt",
2051
+ "accept",
2052
+ "effort",
2053
+ "difference",
2054
+ "With",
2055
+ "hundreds",
2056
+ "eds",
2057
+ "brother",
2058
+ "potato",
2059
+ "ato",
2060
+ "At",
2061
+ "at",
2062
+ "next",
2063
+ "ext",
2064
+ "In",
2065
+ "in",
2066
+ "VBN",
2067
+ "vbn",
2068
+ "cramped",
2069
+ "vague",
2070
+ "gue",
2071
+ "removed",
2072
+ "overlooks",
2073
+ "oks",
2074
+ "agony",
2075
+ "ony",
2076
+ "dog",
2077
+ "ROOT",
2078
+ "OOT",
2079
+ "instrumental",
2080
+ "tal",
2081
+ "forming",
2082
+ "clothes",
2083
+ "hes",
2084
+ "ha",
2085
+ "sardine",
2086
+ "saying",
2087
+ "Warsaw",
2088
+ "warsaw",
2089
+ "saw",
2090
+ "wise",
2091
+ "ise",
2092
+ "mines",
2093
+ "cattle",
2094
+ "tle",
2095
+ "send",
2096
+ "ocean",
2097
+ "passed",
2098
+ "Number=Plur|Person=1|Poss=Yes|PronType=Prs",
2099
+ "number=plur|person=1|poss=yes|prontype=prs",
2100
+ "Xxxxx=Xxxx|Xxxxx=d|Xxxx=Xxx|XxxxXxxx=Xxx",
2101
+ "staple",
2102
+ "ple",
2103
+ "Archives",
2104
+ "archives",
2105
+ "figured",
2106
+ "bowel",
2107
+ "wel",
2108
+ "pears",
2109
+ "work_of_art",
2110
+ "ART",
2111
+ "XXXX_XX_XXX",
2112
+ "children",
2113
+ "ren",
2114
+ "scosset",
2115
+ "worry",
2116
+ "survive",
2117
+ "crematory",
2118
+ "village",
2119
+ "naturally",
2120
+ "load",
2121
+ "oad",
2122
+ "wagon",
2123
+ "crowd",
2124
+ "owd",
2125
+ "rise",
2126
+ "paper",
2127
+ "per",
2128
+ "skinny",
2129
+ "nny",
2130
+ "spread",
2131
+ "ead",
2132
+ "capprel",
2133
+ "rel",
2134
+ "prison",
2135
+ "son",
2136
+ "RBS",
2137
+ "rbs",
2138
+ "baked",
2139
+ "bones",
2140
+ "story",
2141
+ "back",
2142
+ "ack",
2143
+ "overpowering",
2144
+ "soft",
2145
+ "oft",
2146
+ "association",
2147
+ "against",
2148
+ "nst",
2149
+ "Tense=Pres|VerbForm=Fin",
2150
+ "tense=pres|verbform=fin",
2151
+ "Xxxxx=Xxxx|XxxxXxxx=Xxx",
2152
+ "sardines",
2153
+ "sloshing",
2154
+ "separate",
2155
+ "backyard",
2156
+ "factor",
2157
+ "1933",
2158
+ "933",
2159
+ "street",
2160
+ "lead",
2161
+ "UH",
2162
+ "93",
2163
+ "older",
2164
+ "der",
2165
+ "lucky",
2166
+ "cky",
2167
+ "rushing",
2168
+ "yes",
2169
+ "contend",
2170
+ "seared",
2171
+ "each",
2172
+ "ach",
2173
+ "play",
2174
+ "lay",
2175
+ "unless",
2176
+ "oral",
2177
+ "knows",
2178
+ "ows",
2179
+ "brew",
2180
+ "caught",
2181
+ "eta",
2182
+ "january",
2183
+ "ary",
2184
+ "well",
2185
+ "of",
2186
+ "differently",
2187
+ "tly",
2188
+ "domiciles",
2189
+ "know",
2190
+ "now",
2191
+ "leader",
2192
+ "hill",
2193
+ "stories",
2194
+ "miles",
2195
+ "choking",
2196
+ "pacify",
2197
+ "ify",
2198
+ "18",
2199
+ "VBZ",
2200
+ "vbz",
2201
+ "electric",
2202
+ "ric",
2203
+ "friends",
2204
+ "three",
2205
+ "ree",
2206
+ "working",
2207
+ "org",
2208
+ "commotion",
2209
+ "walnuts",
2210
+ "uts",
2211
+ "mixed",
2212
+ "pocket",
2213
+ "poverty",
2214
+ "rty",
2215
+ "0038",
2216
+ "038",
2217
+ "bathroom",
2218
+ "oom",
2219
+ "Sabbath",
2220
+ "sabbath",
2221
+ "ath",
2222
+ "Jewish",
2223
+ "jewish",
2224
+ "collection",
2225
+ "deportations",
2226
+ "running",
2227
+ "living",
2228
+ "march",
2229
+ "towns",
2230
+ "wns",
2231
+ "totally",
2232
+ "piece",
2233
+ "ece",
2234
+ "describe",
2235
+ "ibe",
2236
+ "kommandos",
2237
+ "dos",
2238
+ "death",
2239
+ "complaining",
2240
+ "ntj",
2241
+ "broken",
2242
+ "burn",
2243
+ "omp",
2244
+ "noxious",
2245
+ "scoops",
2246
+ "support",
2247
+ "hours",
2248
+ "urs",
2249
+ "finally",
2250
+ "wood",
2251
+ "attic",
2252
+ "tic",
2253
+ "dirt",
2254
+ "irt",
2255
+ "explosive",
2256
+ "confront",
2257
+ "barrack",
2258
+ "sulphur",
2259
+ "hur",
2260
+ "0203",
2261
+ "203",
2262
+ "woke",
2263
+ "follow",
2264
+ "basically",
2265
+ "close",
2266
+ "edema",
2267
+ "ema",
2268
+ "break",
2269
+ "enemy",
2270
+ "emy",
2271
+ "guys",
2272
+ "uys",
2273
+ "noticeably",
2274
+ "bly",
2275
+ "terribly",
2276
+ "parish",
2277
+ "refugee",
2278
+ "gee",
2279
+ "aroma",
2280
+ "oma",
2281
+ "loc",
2282
+ "walls",
2283
+ "lls",
2284
+ "parent",
2285
+ "grow",
2286
+ "tarher",
2287
+ "point",
2288
+ "int",
2289
+ "ordinal",
2290
+ "NAL",
2291
+ "Danube",
2292
+ "danube",
2293
+ "ube",
2294
+ "families",
2295
+ "Case=Acc|Number=Sing|Person=1|PronType=Prs|Reflex=Yes",
2296
+ "case=acc|number=sing|person=1|prontype=prs|reflex=yes",
2297
+ "Yes",
2298
+ "Xxxx=Xxx|Xxxxx=Xxxx|Xxxxx=d|XxxxXxxx=Xxx|Xxxxx=Xxx",
2299
+ "photographs",
2300
+ "phs",
2301
+ "unendurable",
2302
+ "Rumkowski",
2303
+ "rumkowski",
2304
+ "ski",
2305
+ "heard",
2306
+ ",",
2307
+ "sudden",
2308
+ "den",
2309
+ "fresh",
2310
+ "incidentally",
2311
+ "straight",
2312
+ "before",
2313
+ "building",
2314
+ "german",
2315
+ "customs",
2316
+ "oms",
2317
+ "And",
2318
+ "pushed",
2319
+ "filled",
2320
+ "run",
2321
+ "shot",
2322
+ "hot",
2323
+ "pail",
2324
+ "understood",
2325
+ "familiar",
2326
+ "iar",
2327
+ "blossoms",
2328
+ "room",
2329
+ "felt",
2330
+ "elt",
2331
+ "granted",
2332
+ "shown",
2333
+ "allow",
2334
+ "hiking",
2335
+ "type",
2336
+ "ype",
2337
+ "form",
2338
+ "orm",
2339
+ "sighs",
2340
+ "ghs",
2341
+ "Think",
2342
+ "large",
2343
+ "rge",
2344
+ "cleaned",
2345
+ "getting",
2346
+ "driven",
2347
+ "box",
2348
+ "pangs",
2349
+ "door",
2350
+ "respect",
2351
+ "again",
2352
+ "numb",
2353
+ "umb",
2354
+ "PunctType=Comm",
2355
+ "puncttype=comm",
2356
+ "omm",
2357
+ "XxxxxXxxx=Xxxx",
2358
+ "hope",
2359
+ "wherever",
2360
+ "face",
2361
+ "wrapped",
2362
+ "table",
2363
+ "aspire",
2364
+ "ye",
2365
+ "top",
2366
+ "white",
2367
+ "indicative",
2368
+ "anything",
2369
+ "Fehk",
2370
+ "fehk",
2371
+ "ehk",
2372
+ "occurred",
2373
+ "unfortunately",
2374
+ "indecipherable",
2375
+ "surrounded",
2376
+ "suppress",
2377
+ "custom",
2378
+ "tom",
2379
+ "invitation",
2380
+ "wife",
2381
+ "ife",
2382
+ "knife",
2383
+ "more",
2384
+ "Friday",
2385
+ "friday",
2386
+ "broke",
2387
+ "gives",
2388
+ "treatment",
2389
+ "NNPS",
2390
+ "nnps",
2391
+ "NPS",
2392
+ "agency",
2393
+ "ncy",
2394
+ "hard",
2395
+ "light",
2396
+ "some",
2397
+ "ome",
2398
+ "paddle",
2399
+ "dle",
2400
+ "drag",
2401
+ "rag",
2402
+ "wagons",
2403
+ "stuck",
2404
+ "uck",
2405
+ "Certain",
2406
+ "degree",
2407
+ "smile",
2408
+ "Definite=Def|PronType=Art",
2409
+ "definite=def|prontype=art",
2410
+ "Art",
2411
+ "Xxxxx=Xxx|XxxxXxxx=Xxx",
2412
+ "VBP",
2413
+ "vbp",
2414
+ "absolutely",
2415
+ "pounds",
2416
+ "ghettos",
2417
+ "tos",
2418
+ "along",
2419
+ "catastrophe",
2420
+ "phe",
2421
+ "incredible",
2422
+ "mile",
2423
+ "dirty",
2424
+ "around",
2425
+ "Very",
2426
+ "very",
2427
+ "If",
2428
+ "if",
2429
+ "develop",
2430
+ "lop",
2431
+ "latrines",
2432
+ "05:06:41",
2433
+ ":41",
2434
+ "dd:dd:dd",
2435
+ "bowels",
2436
+ "els",
2437
+ "pointing",
2438
+ "restaurants",
2439
+ "nts",
2440
+ "civilian",
2441
+ "sea",
2442
+ "bowl",
2443
+ "owl",
2444
+ "Hitler",
2445
+ "hitler",
2446
+ "ler",
2447
+ "heck",
2448
+ "eck",
2449
+ "anyway",
2450
+ "occur",
2451
+ "cur",
2452
+ "ovens",
2453
+ "since",
2454
+ "tree",
2455
+ "however",
2456
+ "right",
2457
+ "Barcelona",
2458
+ "barcelona",
2459
+ "ona",
2460
+ "works",
2461
+ "rks",
2462
+ "fellow",
2463
+ "newspaper",
2464
+ "covered",
2465
+ "decomposed",
2466
+ "crowding",
2467
+ "signal",
2468
+ "nal",
2469
+ "I.",
2470
+ "tendency",
2471
+ "dip",
2472
+ "Case=Acc|Gender=Neut|Number=Sing|Person=3|PronType=Prs|Reflex=Yes",
2473
+ "case=acc|gender=neut|number=sing|person=3|prontype=prs|reflex=yes",
2474
+ "Xxxx=Xxx|Xxxxx=Xxxx|Xxxxx=Xxxx|Xxxxx=d|XxxxXxxx=Xxx|Xxxxx=Xxx",
2475
+ "road",
2476
+ "dump",
2477
+ "ump",
2478
+ "cramp",
2479
+ "amp",
2480
+ "cyanide",
2481
+ "ide",
2482
+ "great",
2483
+ "rubber",
2484
+ "ber",
2485
+ "camp",
2486
+ "always",
2487
+ "smells",
2488
+ "prisoners",
2489
+ "constantly",
2490
+ "bakery",
2491
+ "burning",
2492
+ "doorstep",
2493
+ "tep",
2494
+ "sniffs",
2495
+ "ffs",
2496
+ "across",
2497
+ "knowing",
2498
+ "honey",
2499
+ "ney",
2500
+ "met",
2501
+ "food",
2502
+ "role",
2503
+ "walking",
2504
+ "beginning",
2505
+ "bad",
2506
+ "emaciated",
2507
+ "intake",
2508
+ "rampant",
2509
+ "strangers",
2510
+ "means",
2511
+ "grandmother",
2512
+ "bush",
2513
+ "front",
2514
+ "outbreaks",
2515
+ "aks",
2516
+ "aromas",
2517
+ "mas",
2518
+ "sharing",
2519
+ "remind",
2520
+ "Aspect=Prog|Tense=Pres|VerbForm=Part",
2521
+ "aspect=prog|tense=pres|verbform=part",
2522
+ "art",
2523
+ "Xxxxx=Xxxx|Xxxxx=Xxxx|XxxxXxxx=Xxxx",
2524
+ "chlorine",
2525
+ "pull",
2526
+ "ull",
2527
+ "workers",
2528
+ "Case=Acc|Number=Plur|Person=1|PronType=Prs|Reflex=Yes",
2529
+ "case=acc|number=plur|person=1|prontype=prs|reflex=yes",
2530
+ "cities",
2531
+ "lunch",
2532
+ "whatnot",
2533
+ "particularly",
2534
+ "rly",
2535
+ "WDT",
2536
+ "wdt",
2537
+ "six",
2538
+ "tolerate",
2539
+ "circumstances",
2540
+ "ces",
2541
+ "stream",
2542
+ "hanged",
2543
+ "ged",
2544
+ "order",
2545
+ "hotel",
2546
+ "tel",
2547
+ "cetera",
2548
+ "era",
2549
+ "brought",
2550
+ "Person=2|PronType=Prs",
2551
+ "person=2|prontype=prs",
2552
+ "Xxxxx=d|XxxxXxxx=Xxx",
2553
+ "here",
2554
+ "itself",
2555
+ "elf",
2556
+ "soup",
2557
+ "oup",
2558
+ "transported",
2559
+ "grant",
2560
+ "Smell",
2561
+ "smell",
2562
+ "manage",
2563
+ "father",
2564
+ "People",
2565
+ "people",
2566
+ "nct",
2567
+ "Jews",
2568
+ "jews",
2569
+ "ews",
2570
+ "dead",
2571
+ "slept",
2572
+ "holidays",
2573
+ "doctors",
2574
+ "persist",
2575
+ "gone",
2576
+ "tragedy",
2577
+ "edy",
2578
+ "screamings",
2579
+ "corners",
2580
+ "Kishkes",
2581
+ "kishkes",
2582
+ "kes",
2583
+ "word",
2584
+ "ord",
2585
+ "hook",
2586
+ "memory",
2587
+ "feeling",
2588
+ "streetcar",
2589
+ "car",
2590
+ "rounding",
2591
+ "stupid",
2592
+ "pid",
2593
+ "warm",
2594
+ "Case=Nom|Number=Plur|Person=3|PronType=Prs",
2595
+ "case=nom|number=plur|person=3|prontype=prs",
2596
+ "meat",
2597
+ "gate",
2598
+ "days",
2599
+ "shoes",
2600
+ "aware",
2601
+ "After",
2602
+ "after",
2603
+ "waved",
2604
+ "heat",
2605
+ "structures",
2606
+ "res",
2607
+ "laughter",
2608
+ "packages",
2609
+ "ges",
2610
+ "creep",
2611
+ "keep",
2612
+ "involved",
2613
+ "nauseate",
2614
+ "impregnate",
2615
+ "smelling",
2616
+ "move",
2617
+ "same",
2618
+ "haunch",
2619
+ "went",
2620
+ "arms",
2621
+ "rms",
2622
+ "Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs",
2623
+ "case=nom|gender=neut|number=sing|person=3|prontype=prs",
2624
+ "Xxxx=Xxx|Xxxxx=Xxxx|Xxxxx=Xxxx|Xxxxx=d|XxxxXxxx=Xxx",
2625
+ "instinct",
2626
+ "tension",
2627
+ "week",
2628
+ "eek",
2629
+ "beautiful",
2630
+ "ful",
2631
+ "stray",
2632
+ "ray",
2633
+ "okay",
2634
+ "kay",
2635
+ "winemaker",
2636
+ "ker",
2637
+ "control",
2638
+ "rol",
2639
+ "including",
2640
+ "few",
2641
+ "reminded",
2642
+ "beg",
2643
+ "Gail",
2644
+ "gail",
2645
+ "money",
2646
+ "feel",
2647
+ "eel",
2648
+ "carbole",
2649
+ "hidden",
2650
+ "helplessness",
2651
+ "hold",
2652
+ "PunctType=Dash",
2653
+ "puncttype=dash",
2654
+ "hangings",
2655
+ "baths",
2656
+ "ths",
2657
+ "city",
2658
+ "coming",
2659
+ "entered",
2660
+ "ConjType=Cmp",
2661
+ "conjtype=cmp",
2662
+ "Cmp",
2663
+ "32",
2664
+ "heated",
2665
+ "cabin",
2666
+ "bin",
2667
+ "Auschwitz",
2668
+ "auschwitz",
2669
+ "itz",
2670
+ "lemon",
2671
+ "mon",
2672
+ "primarily",
2673
+ "terror",
2674
+ "seemed",
2675
+ "cemetery",
2676
+ "bean",
2677
+ "lice",
2678
+ "guy",
2679
+ "lilac",
2680
+ "lac",
2681
+ "today",
2682
+ "typhus",
2683
+ "hus",
2684
+ "fiction",
2685
+ "Fayhee",
2686
+ "fayhee",
2687
+ "hee",
2688
+ "careful",
2689
+ "over",
2690
+ "happening",
2691
+ "creeping",
2692
+ "everyday",
2693
+ "two",
2694
+ "gave",
2695
+ "Buchenwald",
2696
+ "buchenwald",
2697
+ "ald",
2698
+ "protect",
2699
+ "sleeping",
2700
+ "total",
2701
+ "mouths",
2702
+ "kept",
2703
+ "Number=Plur|Person=3|Poss=Yes|PronType=Prs",
2704
+ "number=plur|person=3|poss=yes|prontype=prs",
2705
+ "lose",
2706
+ "babushkas",
2707
+ "kas",
2708
+ "Tense=Past|VerbForm=Part",
2709
+ "tense=past|verbform=part",
2710
+ "Xxxxx=Xxxx|XxxxXxxx=Xxxx",
2711
+ "huge",
2712
+ "uge",
2713
+ "steam",
2714
+ "Polacks",
2715
+ "polacks",
2716
+ "cks",
2717
+ "behind",
2718
+ "rainbow",
2719
+ "bow",
2720
+ "atmosphere",
2721
+ "ship",
2722
+ "hip",
2723
+ "siren",
2724
+ "smiling",
2725
+ "wrap",
2726
+ "rap",
2727
+ "Case=Acc|Gender=Neut|Number=Sing|Person=3|PronType=Prs",
2728
+ "case=acc|gender=neut|number=sing|person=3|prontype=prs",
2729
+ "pain",
2730
+ "star",
2731
+ "tar",
2732
+ "idea",
2733
+ "dea",
2734
+ "serve",
2735
+ "rve",
2736
+ "negative",
2737
+ "lock",
2738
+ "cellar",
2739
+ "lar",
2740
+ "life",
2741
+ "go",
2742
+ "whether",
2743
+ "young",
2744
+ "ung",
2745
+ "oven",
2746
+ "farming",
2747
+ "goods",
2748
+ "ods",
2749
+ "Mauthausen",
2750
+ "mauthausen",
2751
+ "cabron",
2752
+ "information",
2753
+ "Also",
2754
+ "also",
2755
+ "lso",
2756
+ "dipped",
2757
+ "straw",
2758
+ "bombed",
2759
+ "couch",
2760
+ "rolls",
2761
+ "hand",
2762
+ "shoot",
2763
+ "oot",
2764
+ "reminds",
2765
+ "Case=Nom|Gender=Fem|Number=Sing|Person=3|PronType=Prs",
2766
+ "case=nom|gender=fem|number=sing|person=3|prontype=prs",
2767
+ "bury",
2768
+ "ury",
2769
+ "decay",
2770
+ "cay",
2771
+ "rid",
2772
+ "tossed",
2773
+ "synagogue",
2774
+ "WP",
2775
+ "wp",
2776
+ "animals",
2777
+ "als",
2778
+ "yet",
2779
+ "meant",
2780
+ "sirens",
2781
+ "flame",
2782
+ "spoken",
2783
+ "bunks",
2784
+ "nks",
2785
+ "Degree=Sup",
2786
+ "degree=sup",
2787
+ "Sup",
2788
+ "Xxxxx=Xxx",
2789
+ "blood",
2790
+ "seem",
2791
+ "eem",
2792
+ "afterward",
2793
+ "eliminate",
2794
+ "structure",
2795
+ "my",
2796
+ "talked",
2797
+ "following",
2798
+ "kinds",
2799
+ "impression",
2800
+ "Mother",
2801
+ "mother",
2802
+ "core",
2803
+ "watery",
2804
+ "up",
2805
+ "better",
2806
+ "paftin",
2807
+ "tin",
2808
+ "inside",
2809
+ "other",
2810
+ "NumType=Ord",
2811
+ "numtype=ord",
2812
+ "Ord",
2813
+ "XxxXxxx=Xxx",
2814
+ "eating",
2815
+ "stayed",
2816
+ "yed",
2817
+ "Whether",
2818
+ "visible",
2819
+ "ride",
2820
+ "predet",
2821
+ "Beautiful",
2822
+ "Other",
2823
+ "dried",
2824
+ "Case=Acc|Number=Plur|Person=3|PronType=Prs",
2825
+ "case=acc|number=plur|person=3|prontype=prs",
2826
+ "many",
2827
+ "Buy",
2828
+ "1944",
2829
+ "944",
2830
+ "nature",
2831
+ "cement",
2832
+ "multimillionaire",
2833
+ "coast",
2834
+ "than",
2835
+ "han",
2836
+ "men",
2837
+ "hundred",
2838
+ "taste",
2839
+ "ste",
2840
+ "injury",
2841
+ "nose",
2842
+ "through",
2843
+ "beating",
2844
+ "Momika",
2845
+ "momika",
2846
+ "ika",
2847
+ "Number=Sing|Person=1|Poss=Yes|PronType=Prs",
2848
+ "number=sing|person=1|poss=yes|prontype=prs",
2849
+ "kids",
2850
+ "ids",
2851
+ "decide",
2852
+ "sister",
2853
+ "alive",
2854
+ "anti",
2855
+ "nti",
2856
+ "malnutrition",
2857
+ "Romanian",
2858
+ "xpl",
2859
+ "signaled",
2860
+ "childhood",
2861
+ "limbs",
2862
+ "mbs",
2863
+ "AdvType=Ex",
2864
+ "advtype=ex",
2865
+ "=Ex",
2866
+ "XxxXxxx=Xx",
2867
+ "Says",
2868
+ "closer",
2869
+ "ser",
2870
+ "night",
2871
+ "snuff",
2872
+ "cheek",
2873
+ "catch",
2874
+ "tch",
2875
+ "24th",
2876
+ "4th",
2877
+ "ddxx",
2878
+ "safe",
2879
+ "afe",
2880
+ "gotten",
2881
+ "landscape",
2882
+ "ape",
2883
+ "put",
2884
+ "smoked",
2885
+ "dropping",
2886
+ "black",
2887
+ "feather",
2888
+ "Case=Nom|Gender=Masc|Number=Sing|Person=3|PronType=Prs",
2889
+ "case=nom|gender=masc|number=sing|person=3|prontype=prs",
2890
+ "PunctSide=Fin|PunctType=Brck",
2891
+ "punctside=fin|puncttype=brck",
2892
+ "rck",
2893
+ "fly",
2894
+ "nurse",
2895
+ "fell",
2896
+ "found",
2897
+ "Adam",
2898
+ "adam",
2899
+ "dam",
2900
+ "emanate",
2901
+ "bone",
2902
+ "CC",
2903
+ "process",
2904
+ "railroad",
2905
+ "spill",
2906
+ "Schmidt",
2907
+ "schmidt",
2908
+ "idt",
2909
+ "really",
2910
+ "decision",
2911
+ "looks",
2912
+ "rest",
2913
+ "oil",
2914
+ "system",
2915
+ "tem",
2916
+ "crammed",
2917
+ "dank",
2918
+ "ank",
2919
+ "Dubrovnik",
2920
+ "dubrovnik",
2921
+ "nik",
2922
+ "MD",
2923
+ "points",
2924
+ "italian",
2925
+ "Hungary",
2926
+ "hungary",
2927
+ "tha",
2928
+ "sewed",
2929
+ "River",
2930
+ "river",
2931
+ "station",
2932
+ "canvas",
2933
+ "vas",
2934
+ "meatball",
2935
+ "Saxonhausen",
2936
+ "saxonhausen",
2937
+ "dark",
2938
+ "crazy",
2939
+ "azy",
2940
+ "affected",
2941
+ "Burned",
2942
+ "vivid",
2943
+ "vid",
2944
+ "forty",
2945
+ "France",
2946
+ "france",
2947
+ "dumb",
2948
+ "showed",
2949
+ "portions",
2950
+ "anywhere",
2951
+ "during",
2952
+ "open",
2953
+ "pen",
2954
+ "spend",
2955
+ "Till",
2956
+ "till",
2957
+ "disinfectant",
2958
+ "attack",
2959
+ "ours",
2960
+ "fumigated",
2961
+ "coffee",
2962
+ "fee",
2963
+ "stomach",
2964
+ "Degree=Cmp",
2965
+ "degree=cmp",
2966
+ "plane",
2967
+ "ane",
2968
+ "facts",
2969
+ "cts",
2970
+ "yards",
2971
+ "rds",
2972
+ "horse",
2973
+ "RP",
2974
+ "rp",
2975
+ "preparation",
2976
+ "watch",
2977
+ "full",
2978
+ "wait",
2979
+ "ait",
2980
+ "shut",
2981
+ "hut",
2982
+ "simply",
2983
+ "ply",
2984
+ "windows",
2985
+ "ontactnetonancedjuhe",
2986
+ "uhe",
2987
+ "pay",
2988
+ "?",
2989
+ "faint",
2990
+ "standing",
2991
+ "things",
2992
+ "farmer",
2993
+ "mer",
2994
+ "remembering",
2995
+ "worker",
2996
+ "habit",
2997
+ "bit",
2998
+ "year",
2999
+ "wall",
3000
+ "trance",
3001
+ "illnesses",
3002
+ "nummod",
3003
+ "bags",
3004
+ "ags",
3005
+ "rose",
3006
+ "shrub",
3007
+ "rub",
3008
+ "heap",
3009
+ "eap",
3010
+ "maternal",
3011
+ "hungry",
3012
+ "gry",
3013
+ "assessment",
3014
+ "factory",
3015
+ "Yeah",
3016
+ "flying",
3017
+ "mentality",
3018
+ "quarter",
3019
+ "Case=Acc|Number=Plur|Person=3|PronType=Prs|Reflex=Yes",
3020
+ "case=acc|number=plur|person=3|prontype=prs|reflex=yes",
3021
+ "lie",
3022
+ "jobs",
3023
+ "obs",
3024
+ "Even",
3025
+ "even",
3026
+ "corner",
3027
+ "boys",
3028
+ "oys",
3029
+ "speech",
3030
+ "ech",
3031
+ "throw",
3032
+ "Italy",
3033
+ "italy",
3034
+ "aly",
3035
+ "neighbor",
3036
+ "organization",
3037
+ "take",
3038
+ "mean",
3039
+ "dry",
3040
+ "Number=Plur|PronType=Dem",
3041
+ "number=plur|prontype=dem",
3042
+ "Dem",
3043
+ "learn",
3044
+ "arn",
3045
+ "Showers",
3046
+ "showers",
3047
+ "surrounding",
3048
+ "demolish",
3049
+ "giving",
3050
+ "Terrible",
3051
+ "terrible",
3052
+ "returns",
3053
+ "both",
3054
+ "oth",
3055
+ "maybe",
3056
+ "ybe",
3057
+ "radiating",
3058
+ "often",
3059
+ "place",
3060
+ "rather",
3061
+ "winery",
3062
+ "s-",
3063
+ "x-",
3064
+ "lights",
3065
+ "hts",
3066
+ "newspapers",
3067
+ "grab",
3068
+ "rab",
3069
+ "courage",
3070
+ "involve",
3071
+ "lve",
3072
+ "care",
3073
+ "staff",
3074
+ "aff",
3075
+ "parents",
3076
+ "Chanel",
3077
+ "chanel",
3078
+ "nel",
3079
+ "suffocating",
3080
+ "brings",
3081
+ "four",
3082
+ "exhaustion",
3083
+ "squeezed",
3084
+ "zed",
3085
+ "chimney",
3086
+ "IN",
3087
+ "Case=Acc|Person=2|PronType=Prs",
3088
+ "case=acc|person=2|prontype=prs",
3089
+ "Xxxx=Xxx|Xxxxx=d|XxxxXxxx=Xxx",
3090
+ "believe",
3091
+ "eve",
3092
+ "hike",
3093
+ "normal",
3094
+ "mal",
3095
+ "overwhelming",
3096
+ "places",
3097
+ "Foreign=Yes",
3098
+ "foreign=yes",
3099
+ "water",
3100
+ "Italian",
3101
+ "cases",
3102
+ "mind",
3103
+ "Either",
3104
+ "either",
3105
+ "Now",
3106
+ "smoldering",
3107
+ "period",
3108
+ "iod",
3109
+ "030",
3110
+ "flames",
3111
+ "active",
3112
+ "needed",
3113
+ "ends",
3114
+ "case",
3115
+ "for",
3116
+ "realized",
3117
+ "somewhere",
3118
+ "intelligence",
3119
+ "halting",
3120
+ "intertwisted",
3121
+ "weeks",
3122
+ "time",
3123
+ "IME",
3124
+ "collected",
3125
+ "weather",
3126
+ "name",
3127
+ "inhale",
3128
+ "ale",
3129
+ "background",
3130
+ "dust",
3131
+ "last",
3132
+ "sound",
3133
+ "gasoline",
3134
+ "tolerated",
3135
+ "thousand",
3136
+ "likes",
3137
+ "visual",
3138
+ "onj",
3139
+ "streams",
3140
+ "ams",
3141
+ "land",
3142
+ "movement",
3143
+ "winemakers",
3144
+ "reason",
3145
+ "conditions",
3146
+ "floating",
3147
+ "diarrhea",
3148
+ "hea",
3149
+ "read",
3150
+ "talking",
3151
+ "barracks",
3152
+ "roll",
3153
+ "oll",
3154
+ "roast",
3155
+ "lasted",
3156
+ "almost",
3157
+ "ost",
3158
+ "bodies",
3159
+ "explode",
3160
+ "ode",
3161
+ "propaganda",
3162
+ "nda",
3163
+ "geraniums",
3164
+ "ums",
3165
+ "VBG",
3166
+ "vbg",
3167
+ "affect",
3168
+ "summers",
3169
+ "modern",
3170
+ "ern",
3171
+ "wereaware",
3172
+ "fully",
3173
+ "Gender=Fem|Number=Sing|Person=3|Poss=Yes|PronType=Prs",
3174
+ "gender=fem|number=sing|person=3|poss=yes|prontype=prs",
3175
+ "Xxxxx=Xxx|Xxxxx=Xxxx|Xxxxx=d|Xxxx=Xxx|XxxxXxxx=Xxx",
3176
+ "So",
3177
+ "so",
3178
+ "served",
3179
+ "circumstance",
3180
+ "Orianenburg",
3181
+ "orianenburg",
3182
+ "urg",
3183
+ "eggs",
3184
+ "ggs",
3185
+ "hair",
3186
+ "norp",
3187
+ "ORP",
3188
+ "tear",
3189
+ "knew",
3190
+ "new",
3191
+ "months",
3192
+ "bread",
3193
+ "became",
3194
+ "anybody",
3195
+ "stuff",
3196
+ "Dachau",
3197
+ "dachau",
3198
+ "hau",
3199
+ "area",
3200
+ "rea",
3201
+ "abuse",
3202
+ "victimization",
3203
+ "diet",
3204
+ "spilled",
3205
+ "suppressed",
3206
+ "bridge",
3207
+ "dge",
3208
+ "pretty",
3209
+ "skeletons",
3210
+ "properly",
3211
+ "walnut",
3212
+ "nut",
3213
+ "thousands",
3214
+ "Lodz",
3215
+ "lodz",
3216
+ "odz",
3217
+ "probably",
3218
+ "onto",
3219
+ "complain",
3220
+ "earth",
3221
+ "rth",
3222
+ "warehouses",
3223
+ "preparations",
3224
+ "Abe",
3225
+ "abe",
3226
+ "permeate",
3227
+ "under",
3228
+ "less",
3229
+ "German",
3230
+ "else",
3231
+ "lse",
3232
+ "toward",
3233
+ "clannish",
3234
+ "Which",
3235
+ "which",
3236
+ "interesting",
3237
+ "missed",
3238
+ "losing",
3239
+ "personnel",
3240
+ "Donny",
3241
+ "donny",
3242
+ "carriages",
3243
+ "train",
3244
+ "19",
3245
+ "corn",
3246
+ "orn",
3247
+ "fat",
3248
+ "become",
3249
+ "offer",
3250
+ "second",
3251
+ "subsistence",
3252
+ "speaking",
3253
+ "coarse",
3254
+ "gets",
3255
+ "permeating",
3256
+ "philosophical",
3257
+ "cal",
3258
+ "dining",
3259
+ "bunk",
3260
+ "Cross",
3261
+ "but",
3262
+ "compound",
3263
+ "look",
3264
+ "ration",
3265
+ "pleasant",
3266
+ "understand",
3267
+ "fed",
3268
+ "--",
3269
+ "early",
3270
+ "dieting",
3271
+ "refugees",
3272
+ "ees",
3273
+ "Definite=Ind|PronType=Art",
3274
+ "definite=ind|prontype=art",
3275
+ "bear",
3276
+ "result",
3277
+ "tell",
3278
+ "wine",
3279
+ "funeral",
3280
+ "disgusting",
3281
+ "evoke",
3282
+ "deeply",
3283
+ "group",
3284
+ "frictions",
3285
+ "border",
3286
+ "survived",
3287
+ "unreasonable",
3288
+ "stand",
3289
+ "NFP",
3290
+ "nfp",
3291
+ "myself",
3292
+ "smuggle",
3293
+ "gle",
3294
+ "flies",
3295
+ "My",
3296
+ "town",
3297
+ "chambers",
3298
+ "obviously",
3299
+ "sly",
3300
+ "draw",
3301
+ "biormatiersboutifiseetecion",
3302
+ "Fresh",
3303
+ "hurt",
3304
+ "urt",
3305
+ "girl",
3306
+ "irl",
3307
+ "kind",
3308
+ "crying",
3309
+ "respects",
3310
+ "luxury",
3311
+ "knit",
3312
+ "nit",
3313
+ "eyes",
3314
+ "impressions",
3315
+ "tragedies",
3316
+ "mix",
3317
+ "staples",
3318
+ "perfume",
3319
+ "ume",
3320
+ "outbreak",
3321
+ "carbinieri",
3322
+ "eri",
3323
+ "Crematorium",
3324
+ "crematorium",
3325
+ "ium",
3326
+ "awesome",
3327
+ "1994",
3328
+ "994",
3329
+ "60",
3330
+ "vcl",
3331
+ "carriage",
3332
+ "All",
3333
+ "China",
3334
+ "china",
3335
+ "ina",
3336
+ "explosives",
3337
+ "treated",
3338
+ "rabbi",
3339
+ "bbi",
3340
+ "fights",
3341
+ "JJR",
3342
+ "jjr",
3343
+ "radiate",
3344
+ "doubly",
3345
+ "condition",
3346
+ "roaming",
3347
+ "much",
3348
+ "destiny",
3349
+ "iny",
3350
+ "sanitation",
3351
+ "breath",
3352
+ "hurts",
3353
+ "yard",
3354
+ "Tense=Past|VerbForm=Fin",
3355
+ "tense=past|verbform=fin",
3356
+ "fire",
3357
+ "bombs",
3358
+ "0273",
3359
+ "273",
3360
+ "Three",
3361
+ "SS",
3362
+ "ss",
3363
+ "bucket",
3364
+ "Birkenau",
3365
+ "birkenau",
3366
+ "nau",
3367
+ "Huh",
3368
+ "huh",
3369
+ "while",
3370
+ "an",
3371
+ "Gratts",
3372
+ "gratts",
3373
+ "tts",
3374
+ "instruction",
3375
+ "wipe",
3376
+ "ipe",
3377
+ "used",
3378
+ "quite",
3379
+ "rumor",
3380
+ "mor",
3381
+ "nostrils",
3382
+ "Philadelphia",
3383
+ "philadelphia",
3384
+ "hia",
3385
+ "sold",
3386
+ "sweet",
3387
+ "Belsen",
3388
+ "belsen",
3389
+ "undertone",
3390
+ "sunshine",
3391
+ "fumigate",
3392
+ "already",
3393
+ "vendor",
3394
+ "dor",
3395
+ "marched",
3396
+ "sky",
3397
+ "King",
3398
+ "king",
3399
+ "ra",
3400
+ "underneath",
3401
+ "pistols",
3402
+ "ols",
3403
+ "villages",
3404
+ "hem",
3405
+ "photograph",
3406
+ "aph",
3407
+ "ourselves",
3408
+ "turned",
3409
+ "although",
3410
+ "nearby",
3411
+ "rby",
3412
+ "War",
3413
+ "war",
3414
+ "stable",
3415
+ "escape",
3416
+ "legs",
3417
+ "egs",
3418
+ "agencies",
3419
+ "sandwiches",
3420
+ "just",
3421
+ "nailed",
3422
+ "intuition",
3423
+ "speak",
3424
+ "beatings",
3425
+ "chasing",
3426
+ "learned",
3427
+ "prayer",
3428
+ "yer",
3429
+ "possible",
3430
+ "line",
3431
+ "hungrier",
3432
+ "ier",
3433
+ "dot",
3434
+ "stared",
3435
+ "recollection",
3436
+ "VerbForm=Inf",
3437
+ "verbform=inf",
3438
+ "Inf",
3439
+ "sneak",
3440
+ "Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin",
3441
+ "mood=ind|number=sing|person=3|tense=pres|verbform=fin",
3442
+ "Xxxx=Xxx|Xxxxx=Xxxx|Xxxxx=d|Xxxxx=Xxxx|XxxxXxxx=Xxx",
3443
+ "JJ",
3444
+ "jj",
3445
+ "Helga",
3446
+ "helga",
3447
+ "lga",
3448
+ "cars",
3449
+ "too",
3450
+ "seeing",
3451
+ "Case=Acc|Number=Sing|Person=1|PronType=Prs",
3452
+ "case=acc|number=sing|person=1|prontype=prs",
3453
+ "unbearable",
3454
+ "percent",
3455
+ "RBR",
3456
+ "rbr",
3457
+ "egg",
3458
+ "penetrated",
3459
+ "start",
3460
+ "remove",
3461
+ "several",
3462
+ "floor",
3463
+ "sprinkles",
3464
+ "Krupp",
3465
+ "krupp",
3466
+ "upp",
3467
+ "showing",
3468
+ "gunpowder",
3469
+ "unbelievable",
3470
+ "happen",
3471
+ "handle",
3472
+ "peel",
3473
+ "zero",
3474
+ "ero",
3475
+ "contributed",
3476
+ "Alreet",
3477
+ "alreet",
3478
+ "fact",
3479
+ "mostly",
3480
+ "pads",
3481
+ "ads",
3482
+ "drank",
3483
+ "resistance",
3484
+ "23",
3485
+ "urinating",
3486
+ "wintertime",
3487
+ "ime",
3488
+ "50",
3489
+ "ghetto",
3490
+ "tto",
3491
+ "sufference",
3492
+ "wonderful",
3493
+ "feedback",
3494
+ "excretion",
3495
+ "middle",
3496
+ "especially",
3497
+ "except",
3498
+ "jostling",
3499
+ "crumb",
3500
+ "Case=Nom|Number=Plur|Person=1|PronType=Prs",
3501
+ "case=nom|number=plur|person=1|prontype=prs",
3502
+ "thing",
3503
+ "starve",
3504
+ "feathers",
3505
+ "forth",
3506
+ "loneliness",
3507
+ "worked",
3508
+ "bullets",
3509
+ "tasted",
3510
+ "facility",
3511
+ "holding",
3512
+ "fellows",
3513
+ "killing",
3514
+ "ingrained",
3515
+ "warehouse",
3516
+ "general",
3517
+ "action",
3518
+ "smuggled",
3519
+ "Bergen",
3520
+ "bergen",
3521
+ "undertones",
3522
+ "cardinal",
3523
+ "resort",
3524
+ "gassing",
3525
+ "generally",
3526
+ "trucks",
3527
+ "Of",
3528
+ "stunned",
3529
+ "creativity",
3530
+ "specific",
3531
+ "fic",
3532
+ "thinking",
3533
+ "tensions",
3534
+ "eye",
3535
+ "obtain",
3536
+ "0522",
3537
+ "522",
3538
+ "stay",
3539
+ "tay",
3540
+ "sausage",
3541
+ "uniform",
3542
+ "happens",
3543
+ "winter",
3544
+ "earlier",
3545
+ "nice",
3546
+ "neighborhood",
3547
+ "humiliating",
3548
+ "trying",
3549
+ "been",
3550
+ "urinate",
3551
+ "hang",
3552
+ "Gurs",
3553
+ "gurs",
3554
+ "separated",
3555
+ "helped",
3556
+ "papers",
3557
+ "make",
3558
+ "stare",
3559
+ "baking",
3560
+ "sauna",
3561
+ "una",
3562
+ "million",
3563
+ "hospital",
3564
+ "buried",
3565
+ "fires",
3566
+ "party",
3567
+ "PunctType=Peri",
3568
+ "puncttype=peri",
3569
+ "nutrition",
3570
+ "Such",
3571
+ "fast",
3572
+ "final",
3573
+ "turnips",
3574
+ "ips",
3575
+ "french",
3576
+ "like",
3577
+ "forgetting",
3578
+ "VB",
3579
+ "vb",
3580
+ "lives",
3581
+ "laid",
3582
+ "cooked",
3583
+ "problems",
3584
+ "reach",
3585
+ "shelter",
3586
+ "wires",
3587
+ "off",
3588
+ "basement",
3589
+ "ever",
3590
+ "attacked",
3591
+ "liberation",
3592
+ "pork",
3593
+ "ork",
3594
+ "feed",
3595
+ "rough",
3596
+ "asking",
3597
+ "inmate",
3598
+ "ubj",
3599
+ "somebody",
3600
+ "relieve",
3601
+ "challah",
3602
+ "lah",
3603
+ "The",
3604
+ "sniff",
3605
+ "iff",
3606
+ "foil",
3607
+ "able",
3608
+ "afraid",
3609
+ "smelled",
3610
+ "peanut",
3611
+ "hypnosis",
3612
+ "made",
3613
+ "ade",
3614
+ "supposedly",
3615
+ "exploded",
3616
+ "practically",
3617
+ "locked",
3618
+ "rush",
3619
+ "paftins",
3620
+ "everything",
3621
+ "part",
3622
+ "PunctSide=Ini|PunctType=Brck",
3623
+ "punctside=ini|puncttype=brck",
3624
+ "Or",
3625
+ "decompose",
3626
+ "find",
3627
+ "course",
3628
+ "jasmine",
3629
+ "But",
3630
+ "human",
3631
+ "best",
3632
+ "disciplined",
3633
+ "needing",
3634
+ "receive",
3635
+ "sacks",
3636
+ "shove",
3637
+ "Lithuanians",
3638
+ "lithuanians",
3639
+ "VerbType=Mod",
3640
+ "verbtype=mod",
3641
+ "Mod",
3642
+ "associate",
3643
+ "near",
3644
+ "Person=2|Poss=Yes|PronType=Prs",
3645
+ "person=2|poss=yes|prontype=prs",
3646
+ "Xxxxx=d|Xxxx=Xxx|XxxxXxxx=Xxx",
3647
+ "1700",
3648
+ "700",
3649
+ "later",
3650
+ "drawn",
3651
+ "awn",
3652
+ "salami",
3653
+ "ami",
3654
+ "decker",
3655
+ "kid",
3656
+ "ask",
3657
+ "love",
3658
+ "strayed",
3659
+ "courtyard",
3660
+ "blow",
3661
+ "incomparable",
3662
+ "base",
3663
+ "window",
3664
+ "dow",
3665
+ "contribute",
3666
+ "ute",
3667
+ "illness",
3668
+ "hide",
3669
+ "eternity",
3670
+ "matter",
3671
+ "crisis",
3672
+ "most",
3673
+ "awhile",
3674
+ "esteem",
3675
+ "roasted",
3676
+ "self",
3677
+ "desire",
3678
+ "managed",
3679
+ "underground",
3680
+ "mornings",
3681
+ "gassed",
3682
+ "guess",
3683
+ "adding",
3684
+ "necessary",
3685
+ "overpower",
3686
+ "hear",
3687
+ "refreshing",
3688
+ "whole",
3689
+ "handkerchiefs",
3690
+ "efs",
3691
+ "big",
3692
+ "bite",
3693
+ "odor",
3694
+ "``",
3695
+ "`",
3696
+ "Then",
3697
+ "trouble",
3698
+ "turnip",
3699
+ "nip",
3700
+ "suddenly",
3701
+ "nly",
3702
+ "0488",
3703
+ "488",
3704
+ "cream",
3705
+ "chamber",
3706
+ "NumType=Card",
3707
+ "numtype=card",
3708
+ "XxxXxxx=Xxxx",
3709
+ "country",
3710
+ "try",
3711
+ "shift",
3712
+ "ift",
3713
+ "athletic",
3714
+ "funny",
3715
+ "expected",
3716
+ "vendors",
3717
+ "woman",
3718
+ "admit",
3719
+ "corpses",
3720
+ "Gender=Masc|Number=Sing|Person=3|Poss=Yes|PronType=Prs",
3721
+ "gender=masc|number=sing|person=3|poss=yes|prontype=prs",
3722
+ "Xxxxx=Xxxx|Xxxxx=Xxxx|Xxxxx=d|Xxxx=Xxx|XxxxXxxx=Xxx",
3723
+ "Belgium",
3724
+ "belgium",
3725
+ "women",
3726
+ "moment",
3727
+ "NEY",
3728
+ "classmates",
3729
+ "grade",
3730
+ "predominately",
3731
+ "state",
3732
+ "killings",
3733
+ "loaf",
3734
+ "oaf",
3735
+ "sanitary",
3736
+ "within",
3737
+ "Case=Acc|Gender=Masc|Number=Sing|Person=3|PronType=Prs",
3738
+ "case=acc|gender=masc|number=sing|person=3|prontype=prs",
3739
+ "stick",
3740
+ "0081",
3741
+ "081",
3742
+ "cooking",
3743
+ "ready",
3744
+ "mingling",
3745
+ "helping",
3746
+ "reaching",
3747
+ "dung",
3748
+ "barbed",
3749
+ "sprayed",
3750
+ "gates",
3751
+ "rat",
3752
+ "physical",
3753
+ "suffer",
3754
+ "pre",
3755
+ "comes",
3756
+ "couple",
3757
+ "once",
3758
+ "nearly",
3759
+ "sat",
3760
+ "honestly",
3761
+ "others",
3762
+ "begging",
3763
+ "professor",
3764
+ "sor",
3765
+ "darkness",
3766
+ "demoralization",
3767
+ "medical",
3768
+ "strange",
3769
+ "Sleeping",
3770
+ "doctor",
3771
+ "stranger",
3772
+ "leaves",
3773
+ "divide",
3774
+ "precision",
3775
+ "Sweden",
3776
+ "sweden",
3777
+ "ago",
3778
+ "99",
3779
+ "sh",
3780
+ "Degree=Pos",
3781
+ "degree=pos",
3782
+ "Pos",
3783
+ "sick",
3784
+ "sym",
3785
+ "Food",
3786
+ "five",
3787
+ "pound",
3788
+ "little",
3789
+ "object",
3790
+ "shower",
3791
+ "laborer",
3792
+ "rer",
3793
+ "younger",
3794
+ "PRP$",
3795
+ "prp$",
3796
+ "RP$",
3797
+ "XXX$",
3798
+ "siding",
3799
+ "pad",
3800
+ "Sunday",
3801
+ "sunday",
3802
+ "rising",
3803
+ "transport",
3804
+ "visit",
3805
+ "permitted",
3806
+ "loved",
3807
+ "eater",
3808
+ "Aspect=Perf|Tense=Past|VerbForm=Part",
3809
+ "aspect=perf|tense=past|verbform=part",
3810
+ "dots",
3811
+ "prd",
3812
+ "Ukrainians",
3813
+ "ukrainians",
3814
+ "regular",
3815
+ "suffered",
3816
+ "miserable",
3817
+ "bath",
3818
+ "surround",
3819
+ "Robert",
3820
+ "robert",
3821
+ "ert",
3822
+ "summer",
3823
+ "yo",
3824
+ "slosh",
3825
+ "osh",
3826
+ "bought",
3827
+ "saidto",
3828
+ "dto",
3829
+ "glass",
3830
+ "Case=Acc|Number=Plur|Person=1|PronType=Prs",
3831
+ "case=acc|number=plur|person=1|prontype=prs",
3832
+ "vomiting",
3833
+ "beaten",
3834
+ "Fela",
3835
+ "fela",
3836
+ "ela",
3837
+ "fainting",
3838
+ "awful",
3839
+ "boot",
3840
+ "live",
3841
+ "unpleasant",
3842
+ "strength",
3843
+ "gth",
3844
+ "Latvians",
3845
+ "latvians",
3846
+ "lawyer",
3847
+ "cook",
3848
+ "nostril",
3849
+ "hiding",
3850
+ "Germany",
3851
+ "germany",
3852
+ "stinking",
3853
+ "Etta",
3854
+ "etta",
3855
+ "tta",
3856
+ "habits",
3857
+ "its",
3858
+ "park",
3859
+ "took",
3860
+ "hardly",
3861
+ "needle",
3862
+ "told",
3863
+ "Orthodox",
3864
+ "orthodox",
3865
+ "dox",
3866
+ "PDT",
3867
+ "pdt",
3868
+ "zone",
3869
+ "insanity",
3870
+ "kill",
3871
+ "sprinkle",
3872
+ "kle",
3873
+ "Jew",
3874
+ "jew",
3875
+ "impressed",
3876
+ "deserve",
3877
+ "dumped",
3878
+ "scream",
3879
+ "memories",
3880
+ "Gender=Masc|Number=Sing|Person=3|Poss=Yes|PronType=Prs|Reflex=Yes",
3881
+ "gender=masc|number=sing|person=3|poss=yes|prontype=prs|reflex=yes",
3882
+ "Xxxxx=Xxxx|Xxxxx=Xxxx|Xxxxx=d|Xxxx=Xxx|XxxxXxxx=Xxx|Xxxxx=Xxx",
3883
+ "ther",
3884
+ "roam",
3885
+ "oam",
3886
+ "barley",
3887
+ "ley",
3888
+ "grandparent",
3889
+ "wool",
3890
+ "ool",
3891
+ "Everybody",
3892
+ "Poles",
3893
+ "poles",
3894
+ "jacket",
3895
+ "har",
3896
+ "duration",
3897
+ "month",
3898
+ "nth",
3899
+ "reverse",
3900
+ "Number=Sing|PronType=Dem",
3901
+ "number=sing|prontype=dem",
3902
+ "starvation",
3903
+ "nrg",
3904
+ "frost",
3905
+ "garden",
3906
+ "gas",
3907
+ "paid",
3908
+ "cold",
3909
+ "answer",
3910
+ "degrading",
3911
+ "blizzard",
3912
+ "chocolate",
3913
+ "commented",
3914
+ "bottom",
3915
+ "gesture",
3916
+ "meatballs",
3917
+ "home",
3918
+ "treat",
3919
+ "frozen",
3920
+ "overcome",
3921
+ "pass",
3922
+ "Theresienstadt",
3923
+ "theresienstadt",
3924
+ "adt",
3925
+ "raid",
3926
+ "Once",
3927
+ "fever",
3928
+ "limb",
3929
+ "imb",
3930
+ "knitting",
3931
+ "notices",
3932
+ "dreaming",
3933
+ "began",
3934
+ "gan",
3935
+ "truly",
3936
+ "uly",
3937
+ "cows",
3938
+ "enter",
3939
+ "cigarette",
3940
+ "tte",
3941
+ "Concentration",
3942
+ "concentration",
3943
+ "fallen",
3944
+ "len",
3945
+ "PronType=Dem",
3946
+ "prontype=dem",
3947
+ "die",
3948
+ "prisoner",
3949
+ "september",
3950
+ "spray",
3951
+ "expect",
3952
+ "peas",
3953
+ "eas",
3954
+ "confronted",
3955
+ "long",
3956
+ "justifiable",
3957
+ "noise",
3958
+ "cookie",
3959
+ "kie",
3960
+ "deal",
3961
+ "75",
3962
+ "shaved",
3963
+ "solidarity",
3964
+ "br",
3965
+ "musty",
3966
+ "sty",
3967
+ "PunctSide=Ini|PunctType=Quot",
3968
+ "punctside=ini|puncttype=quot",
3969
+ "sandwich",
3970
+ "0575",
3971
+ "575",
3972
+ "animal",
3973
+ "pennsylvania",
3974
+ "ignite",
3975
+ "wind",
3976
+ "crook",
3977
+ "VBD",
3978
+ "vbd",
3979
+ "wooden",
3980
+ "reminder",
3981
+ "geranium",
3982
+ "-RRB-",
3983
+ "-rrb-",
3984
+ "fear",
3985
+ "came",
3986
+ "playing",
3987
+ "andI",
3988
+ "andi",
3989
+ "ndI",
3990
+ "xxxX",
3991
+ "happy",
3992
+ "ppy",
3993
+ "mouth",
3994
+ "uth",
3995
+ "woods",
3996
+ "soon",
3997
+ "oon",
3998
+ "drop",
3999
+ "rop",
4000
+ "sense",
4001
+ "nse",
4002
+ "different",
4003
+ "dying",
4004
+ "afterwards",
4005
+ "half",
4006
+ "alf",
4007
+ "remember",
4008
+ "question",
4009
+ "soap",
4010
+ "oap",
4011
+ "hearing",
4012
+ "lost",
4013
+ "problem",
4014
+ "lem",
4015
+ "By",
4016
+ "separately",
4017
+ "stove",
4018
+ "lavatory",
4019
+ "friend",
4020
+ "resulted",
4021
+ "PRP",
4022
+ "prp",
4023
+ "stunk",
4024
+ "Months",
4025
+ "show",
4026
+ "afternoon",
4027
+ "talk",
4028
+ "French",
4029
+ "Listen",
4030
+ "difficult",
4031
+ "opening",
4032
+ "sicknesses",
4033
+ "haunches",
4034
+ "include",
4035
+ "ude",
4036
+ "your",
4037
+ "partisans",
4038
+ "sitting",
4039
+ "Resnick",
4040
+ "resnick",
4041
+ "th",
4042
+ "Case=Nom|Person=2|PronType=Prs",
4043
+ "case=nom|person=2|prontype=prs",
4044
+ "chimneys",
4045
+ "eys",
4046
+ "\u201c",
4047
+ "quarters",
4048
+ "ashes",
4049
+ "arrangement",
4050
+ "distant",
4051
+ "\f",
4052
+ "similarity",
4053
+ "called",
4054
+ "kitchen",
4055
+ "tried",
4056
+ "soot",
4057
+ "appreciate",
4058
+ "Tashnalt(ph",
4059
+ "tashnalt(ph",
4060
+ "scared",
4061
+ "passing",
4062
+ "FW",
4063
+ "fw",
4064
+ "forget",
4065
+ "FAC",
4066
+ "fac",
4067
+ "sear",
4068
+ "dominant",
4069
+ "114",
4070
+ "warmed",
4071
+ "burnt",
4072
+ "rnt",
4073
+ "somehow",
4074
+ "ttr",
4075
+ "toss",
4076
+ "cough",
4077
+ "their",
4078
+ "eir",
4079
+ "nurses",
4080
+ "clothing",
4081
+ "silver",
4082
+ "surprised",
4083
+ "scene",
4084
+ "ene",
4085
+ "danger",
4086
+ "chase",
4087
+ "beer",
4088
+ "eer",
4089
+ "systems",
4090
+ "sounds",
4091
+ "weight",
4092
+ "grate",
4093
+ "Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin",
4094
+ "mood=ind|number=sing|person=3|tense=past|verbform=fin",
4095
+ "WRB",
4096
+ "wrb",
4097
+ "scary",
4098
+ "pains",
4099
+ "someplace",
4100
+ "umbrella",
4101
+ "body",
4102
+ "marching",
4103
+ "sure",
4104
+ "fasting",
4105
+ "experience",
4106
+ "never",
4107
+ "intertwiste",
4108
+ "restaurant",
4109
+ "forever",
4110
+ "Because",
4111
+ "grandparents",
4112
+ "screaming",
4113
+ "despair",
4114
+ "Carl",
4115
+ "carl",
4116
+ "arl",
4117
+ "reversed",
4118
+ "side",
4119
+ "perhaps",
4120
+ "aps",
4121
+ "thirsty",
4122
+ "double",
4123
+ "NounType=Prop|Number=Plur",
4124
+ "nountype=prop|number=plur",
4125
+ "nicely",
4126
+ "crematories",
4127
+ "paddles",
4128
+ "particular",
4129
+ "stop",
4130
+ "situation",
4131
+ "neighbors",
4132
+ "horrendous",
4133
+ "barn",
4134
+ "child",
4135
+ "ild",
4136
+ "fainted",
4137
+ "float",
4138
+ "toilet",
4139
+ "beards",
4140
+ "trees",
4141
+ "truck",
4142
+ "Number=Sing|Person=1|Poss=Yes|PronType=Prs|Reflex=Yes",
4143
+ "number=sing|person=1|poss=yes|prontype=prs|reflex=yes",
4144
+ "Xxxxx=Xxxx|Xxxxx=d|Xxxx=Xxx|XxxxXxxx=Xxx|Xxxxx=Xxx",
4145
+ "only",
4146
+ "looked",
4147
+ "treatments",
4148
+ "snow",
4149
+ "laborers",
4150
+ "strikes",
4151
+ "world",
4152
+ "rld",
4153
+ "be",
4154
+ "beard",
4155
+ "experienced",
4156
+ "ced",
4157
+ "gra",
4158
+ "scoop",
4159
+ "oop",
4160
+ "work",
4161
+ "bring",
4162
+ "dragged",
4163
+ "member",
4164
+ "Maybe",
4165
+ "cabbage",
4166
+ "blossom",
4167
+ "som",
4168
+ "NN",
4169
+ "penetrate",
4170
+ "sweetish",
4171
+ "One",
4172
+ "tail",
4173
+ "bake",
4174
+ "putting",
4175
+ "hugh",
4176
+ "thought",
4177
+ "leave",
4178
+ "holes",
4179
+ "ndi",
4180
+ "outside",
4181
+ "hung",
4182
+ "religious",
4183
+ "pretent",
4184
+ "wa",
4185
+ "kommando",
4186
+ "ndo",
4187
+ "shooting",
4188
+ "call",
4189
+ "Berlant",
4190
+ "berlant",
4191
+ "experiences",
4192
+ "classmate",
4193
+ "squeeze",
4194
+ "eze",
4195
+ "resorts",
4196
+ "asked",
4197
+ "vaguely",
4198
+ "Just",
4199
+ "21",
4200
+ "liked",
4201
+ "noises",
4202
+ "sack",
4203
+ "No",
4204
+ "ended",
4205
+ "crowded",
4206
+ "excrement",
4207
+ "0423",
4208
+ "423",
4209
+ "imagining",
4210
+ "figure",
4211
+ "prominent",
4212
+ "letting",
4213
+ "nauseous",
4214
+ "ah",
4215
+ "meeting",
4216
+ "boy",
4217
+ "putrid",
4218
+ "convince",
4219
+ "clever",
4220
+ "contest",
4221
+ "stir",
4222
+ "tir",
4223
+ "drive",
4224
+ "saved",
4225
+ "rail",
4226
+ "cramps",
4227
+ "mps",
4228
+ "sisters",
4229
+ "scorched",
4230
+ "personally",
4231
+ "cents",
4232
+ "polack",
4233
+ "bark",
4234
+ "being",
4235
+ "Germans",
4236
+ "germans",
4237
+ "hour",
4238
+ "someone",
4239
+ "carry",
4240
+ "round",
4241
+ "0411",
4242
+ "411",
4243
+ "ignited",
4244
+ "Chana",
4245
+ "chana",
4246
+ "ana",
4247
+ "Well",
4248
+ "camps",
4249
+ "sufferences",
4250
+ "ConjType",
4251
+ "Gender",
4252
+ "Gender=Neut",
4253
+ "Number",
4254
+ "Person",
4255
+ "Person=3",
4256
+ "PronType",
4257
+ "PunctType",
4258
+ "Case",
4259
+ "Case=Nom",
4260
+ "Mood",
4261
+ "Mood=Ind",
4262
+ "Tense",
4263
+ "Tense=Past",
4264
+ "VerbForm",
4265
+ "Definite",
4266
+ "Definite=Ind",
4267
+ "PronType=Art",
4268
+ "Definite=Def",
4269
+ "Degree",
4270
+ "Person=2",
4271
+ "Tense=Pres",
4272
+ "NounType",
4273
+ "NounType=Prop",
4274
+ "Person=1",
4275
+ "Aspect",
4276
+ "Aspect=Prog",
4277
+ "VerbForm=Part",
4278
+ "Poss",
4279
+ "Poss=Yes",
4280
+ "AdvType",
4281
+ "Case=Acc",
4282
+ "NumType",
4283
+ "Gender=Masc",
4284
+ "VerbType",
4285
+ "PunctSide",
4286
+ "PunctSide=Fin",
4287
+ "PunctType=Brck",
4288
+ "Aspect=Perf",
4289
+ "PunctSide=Ini",
4290
+ "Person=Three",
4291
+ "PunctType=Quot",
4292
+ "Gender=Fem",
4293
+ "Reflex",
4294
+ "Reflex=Yes",
4295
+ "Foreign",
4296
+ "spider",
4297
+ "Told",
4298
+ "soldier",
4299
+ "swim",
4300
+ "wim",
4301
+ "imagination",
4302
+ "study",
4303
+ "udy",
4304
+ "yugoslav",
4305
+ "lav",
4306
+ "Her",
4307
+ "nach",
4308
+ "forester",
4309
+ "ghettoization",
4310
+ "moans",
4311
+ "practical",
4312
+ "washed",
4313
+ "route",
4314
+ "I\u2019Il",
4315
+ "i\u2019il",
4316
+ "\u2019Il",
4317
+ "X\u2019Xx",
4318
+ "excuse",
4319
+ "Landsberg",
4320
+ "landsberg",
4321
+ "erg",
4322
+ "peeled",
4323
+ "Britain",
4324
+ "britain",
4325
+ "Fallen",
4326
+ "Slonov",
4327
+ "slonov",
4328
+ "Case=Acc|Person=2|PronType=Prs|Reflex=Yes",
4329
+ "case=acc|person=2|prontype=prs|reflex=yes",
4330
+ "Xxxx=Xxx|Xxxxx=d|XxxxXxxx=Xxx|Xxxxx=Xxx",
4331
+ "instance",
4332
+ "alone",
4333
+ "frightened",
4334
+ "citizens",
4335
+ "fruit",
4336
+ "missing",
4337
+ "officers",
4338
+ "pillow",
4339
+ "knowledge",
4340
+ "onion",
4341
+ "residual",
4342
+ "arrive",
4343
+ "connecting",
4344
+ "diseases",
4345
+ "actual",
4346
+ "nights",
4347
+ "daughter",
4348
+ "possibly",
4349
+ "corpus",
4350
+ "pus",
4351
+ "sign",
4352
+ "ign",
4353
+ "Hadamar",
4354
+ "hadamar",
4355
+ "pack",
4356
+ "humiliation",
4357
+ "27",
4358
+ "confine",
4359
+ "lining",
4360
+ "starving",
4361
+ "Juden",
4362
+ "juden",
4363
+ "autocologne",
4364
+ "gne",
4365
+ "datum",
4366
+ "music",
4367
+ "sic",
4368
+ "Beating",
4369
+ "14",
4370
+ "Lida",
4371
+ "lida",
4372
+ "ida",
4373
+ "murder",
4374
+ "0340",
4375
+ "340",
4376
+ "29",
4377
+ "routing",
4378
+ "curious",
4379
+ "rations",
4380
+ "Holland",
4381
+ "holland",
4382
+ "solution",
4383
+ "bypass",
4384
+ "Community",
4385
+ "community",
4386
+ "For",
4387
+ "Kolomyja",
4388
+ "kolomyja",
4389
+ "yja",
4390
+ "hopeless",
4391
+ "extra",
4392
+ "tra",
4393
+ "Gender=Fem|Number=Sing|Person=3|Poss=Yes|PronType=Prs|Reflex=Yes",
4394
+ "gender=fem|number=sing|person=3|poss=yes|prontype=prs|reflex=yes",
4395
+ "Xxxxx=Xxx|Xxxxx=Xxxx|Xxxxx=d|Xxxx=Xxx|XxxxXxxx=Xxx|Xxxxx=Xxx",
4396
+ "distasteful",
4397
+ "Abraham",
4398
+ "abraham",
4399
+ "ham",
4400
+ "vegetable",
4401
+ "Awful",
4402
+ "faze",
4403
+ "aze",
4404
+ "data",
4405
+ "ata",
4406
+ "Put",
4407
+ "invite",
4408
+ "pri",
4409
+ "01:29:30",
4410
+ ":30",
4411
+ "municipality",
4412
+ "Behind",
4413
+ "rejection",
4414
+ "everywhere",
4415
+ "brand",
4416
+ "On",
4417
+ "cruelty",
4418
+ "lty",
4419
+ "Ghetto",
4420
+ "0259",
4421
+ "259",
4422
+ "herself",
4423
+ "appalling",
4424
+ "Nice",
4425
+ "choose",
4426
+ "himself",
4427
+ "sent",
4428
+ "Russia",
4429
+ "russia",
4430
+ "sia",
4431
+ "swollen",
4432
+ "assignment",
4433
+ "Bauern",
4434
+ "bauern",
4435
+ "exposure",
4436
+ "pieces",
4437
+ "apparently",
4438
+ "gilder",
4439
+ "Finally",
4440
+ "43",
4441
+ "chaplina(ph",
4442
+ "common",
4443
+ "lawyers",
4444
+ "squash",
4445
+ "among",
4446
+ "morality",
4447
+ "Lech",
4448
+ "lech",
4449
+ "devastated",
4450
+ "foods",
4451
+ "murders",
4452
+ "Mostly",
4453
+ "drove",
4454
+ "haunts",
4455
+ "shape",
4456
+ "wastes",
4457
+ "subconsciously",
4458
+ "crematoria",
4459
+ "ria",
4460
+ "student",
4461
+ "Their",
4462
+ "proud",
4463
+ "oud",
4464
+ "choice",
4465
+ "cleaner",
4466
+ "eaten",
4467
+ "Polish",
4468
+ "polish",
4469
+ "900",
4470
+ "totality",
4471
+ "hurtful",
4472
+ "Kochonoski",
4473
+ "kochonoski",
4474
+ "program",
4475
+ "ram",
4476
+ "theater",
4477
+ "Chaplina(ph",
4478
+ "0348",
4479
+ "348",
4480
+ "supply",
4481
+ "cut",
4482
+ "From",
4483
+ "wondered",
4484
+ "awfully",
4485
+ "boxcar",
4486
+ "students",
4487
+ "bodily",
4488
+ "burp",
4489
+ "urp",
4490
+ "depressed",
4491
+ "Britains",
4492
+ "britains",
4493
+ "Case=Acc|Gender=Masc|Number=Sing|Person=3|PronType=Prs|Reflex=Yes",
4494
+ "case=acc|gender=masc|number=sing|person=3|prontype=prs|reflex=yes",
4495
+ "yourself",
4496
+ "aspirations",
4497
+ "dish",
4498
+ "squashed",
4499
+ "rationed",
4500
+ "swell",
4501
+ "Funds",
4502
+ "funds",
4503
+ "brushes",
4504
+ "delicious",
4505
+ "aspiration",
4506
+ "Passover",
4507
+ "passover",
4508
+ "starting",
4509
+ "0088",
4510
+ "088",
4511
+ "sausages",
4512
+ "ska",
4513
+ "situations",
4514
+ "potatoes",
4515
+ "hygienic",
4516
+ "nic",
4517
+ "mixture",
4518
+ "cell",
4519
+ "awaiting",
4520
+ "swallow",
4521
+ "footnote",
4522
+ "ote",
4523
+ "Nazis",
4524
+ "nazis",
4525
+ "zis",
4526
+ "gentile",
4527
+ "occupied",
4528
+ "exception",
4529
+ "fate",
4530
+ "falling",
4531
+ "decisive",
4532
+ "stinkt",
4533
+ "nkt",
4534
+ "past",
4535
+ "swallowed",
4536
+ "mama",
4537
+ "ama",
4538
+ "murdered",
4539
+ "greater",
4540
+ "complete",
4541
+ "ete",
4542
+ "mice",
4543
+ "citizen",
4544
+ "ran",
4545
+ "0403",
4546
+ "403",
4547
+ "delecti",
4548
+ "cti",
4549
+ "inviting",
4550
+ "naked",
4551
+ "plenty",
4552
+ "nty",
4553
+ "elderly",
4554
+ "gentleman",
4555
+ "Right",
4556
+ "upbringing",
4557
+ "washing",
4558
+ "waste",
4559
+ "0046",
4560
+ "046",
4561
+ "example",
4562
+ "garlic",
4563
+ "lic",
4564
+ "feeding",
4565
+ "occupy",
4566
+ "upy",
4567
+ "powerful",
4568
+ "packed",
4569
+ "studying",
4570
+ "dental",
4571
+ "trigger",
4572
+ "extremely",
4573
+ "haunt",
4574
+ "orphanage",
4575
+ "arrived",
4576
+ "Goering",
4577
+ "goering",
4578
+ "lip",
4579
+ "soldiers",
4580
+ "stone",
4581
+ "consume",
4582
+ "goodbye",
4583
+ "bye",
4584
+ "gums",
4585
+ "signs",
4586
+ "gns",
4587
+ "Wilno",
4588
+ "wilno",
4589
+ "lno",
4590
+ "0325",
4591
+ "325",
4592
+ "wonder",
4593
+ "picture",
4594
+ "ba",
4595
+ "grew",
4596
+ "firmly",
4597
+ "mly",
4598
+ "sleet",
4599
+ "plate",
4600
+ "jewelry",
4601
+ "lry",
4602
+ "learning",
4603
+ "pigs",
4604
+ "igs",
4605
+ "russian",
4606
+ "drabness",
4607
+ "stage",
4608
+ "rot",
4609
+ "liquidated",
4610
+ "anyone",
4611
+ "confident",
4612
+ "Russian",
4613
+ "explained",
4614
+ "cans",
4615
+ "toilets",
4616
+ "dev-",
4617
+ "ev-",
4618
+ "xxx-",
4619
+ "pig",
4620
+ "numbers",
4621
+ "whip",
4622
+ "mouse",
4623
+ "disastrous",
4624
+ "prepare",
4625
+ "Chap",
4626
+ "chap",
4627
+ "hap",
4628
+ "cologne",
4629
+ "howling",
4630
+ "sights",
4631
+ "peasant",
4632
+ "sides",
4633
+ "des",
4634
+ "declare",
4635
+ "stew",
4636
+ "tew",
4637
+ "written",
4638
+ "Americans",
4639
+ "americans",
4640
+ "hygiene",
4641
+ "gum",
4642
+ "local",
4643
+ "Yugoslav",
4644
+ "stalk",
4645
+ "amazing",
4646
+ "confined",
4647
+ "0004",
4648
+ "004",
4649
+ "environment",
4650
+ "dependent",
4651
+ "te",
4652
+ "declared",
4653
+ "enjoy",
4654
+ "joy",
4655
+ "Case=Acc|Gender=Fem|Number=Sing|Person=3|PronType=Prs|Reflex=Yes",
4656
+ "case=acc|gender=fem|number=sing|person=3|prontype=prs|reflex=yes",
4657
+ "Xxxx=Xxx|Xxxxx=Xxx|Xxxxx=Xxxx|Xxxxx=d|XxxxXxxx=Xxx|Xxxxx=Xxx",
4658
+ "liquidate",
4659
+ "fazed",
4660
+ "eventual",
4661
+ "smelt",
4662
+ "Sure",
4663
+ "certainly",
4664
+ "principal",
4665
+ "pal",
4666
+ "aside",
4667
+ "hers",
4668
+ "dreams",
4669
+ "ri",
4670
+ "done",
4671
+ "moan",
4672
+ "oan",
4673
+ "write",
4674
+ "dressed",
4675
+ "await",
4676
+ "spraying",
4677
+ "born",
4678
+ "barely",
4679
+ "whipped",
4680
+ "eventually",
4681
+ "fruitful",
4682
+ "pepper",
4683
+ "Thirst",
4684
+ "courses",
4685
+ "chose",
4686
+ "macabre",
4687
+ "bre",
4688
+ "sorts",
4689
+ "Es",
4690
+ "es",
4691
+ "guilt",
4692
+ "ilt",
4693
+ "dress",
4694
+ "exactly",
4695
+ "riding",
4696
+ "cutting",
4697
+ "sp",
4698
+ "farm",
4699
+ "As",
4700
+ "wieder",
4701
+ "Lyon",
4702
+ "lyon",
4703
+ "yon",
4704
+ "phase",
4705
+ "trip",
4706
+ "rip",
4707
+ "lips",
4708
+ "Bernstein",
4709
+ "bernstein",
4710
+ "ein",
4711
+ "bypassing",
4712
+ "deny",
4713
+ "eny",
4714
+ "wet",
4715
+ "lack",
4716
+ "uncomfortable",
4717
+ "Nazi",
4718
+ "nazi",
4719
+ "azi",
4720
+ "ditch",
4721
+ "drunk",
4722
+ "connect",
4723
+ "02:06:00",
4724
+ ":00",
4725
+ "exterminate",
4726
+ "daughters",
4727
+ "dishes",
4728
+ "Excuse",
4729
+ "webs",
4730
+ "ebs",
4731
+ "brush",
4732
+ "Several",
4733
+ "Bible",
4734
+ "bible",
4735
+ "stalked",
4736
+ "groups",
4737
+ "ups",
4738
+ "pure",
4739
+ "truth"
4740
+ ]
vocab/vectors ADDED
Binary file (128 Bytes). View file