MohammadOthman commited on
Commit
b397e23
1 Parent(s): 6259151

Update spaCy pipeline

Browse files
.gitattributes CHANGED
@@ -32,3 +32,5 @@ 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_roberta_base_plant_ner_case-any-py3-none-any.whl filter=lfs diff=lfs merge=lfs -text
36
+ transformer/model filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - spacy
4
+ - token-classification
5
+ language:
6
+ - en
7
+ license: apache-2.0
8
+ model-index:
9
+ - name: en_roberta_base_plant_ner_case
10
+ results:
11
+ - task:
12
+ name: NER
13
+ type: token-classification
14
+ metrics:
15
+ - name: NER Precision
16
+ type: precision
17
+ value: 0.9697542533
18
+ - name: NER Recall
19
+ type: recall
20
+ value: 0.9752851711
21
+ - name: NER F Score
22
+ type: f_score
23
+ value: 0.9725118483
24
+ ---
25
+ | Feature | Description |
26
+ | --- | --- |
27
+ | **Name** | `en_roberta_base_plant_ner_case` |
28
+ | **Version** | `1.0.0` |
29
+ | **spaCy** | `>=3.5.2,<3.6.0` |
30
+ | **Default Pipeline** | `transformer`, `ner` |
31
+ | **Components** | `transformer`, `ner` |
32
+ | **Vectors** | 0 keys, 0 unique vectors (0 dimensions) |
33
+ | **Sources** | n/a |
34
+ | **License** | `Apache-2.0` |
35
+ | **Author** | [Mohammad Othman]() |
36
+
37
+ ### Label Scheme
38
+
39
+ <details>
40
+
41
+ <summary>View label scheme (1 labels for 1 components)</summary>
42
+
43
+ | Component | Labels |
44
+ | --- | --- |
45
+ | **`ner`** | `PLANT` |
46
+
47
+ </details>
48
+
49
+ ### Accuracy
50
+
51
+ | Type | Score |
52
+ | --- | --- |
53
+ | `ENTS_F` | 97.25 |
54
+ | `ENTS_P` | 96.98 |
55
+ | `ENTS_R` | 97.53 |
config.cfg ADDED
@@ -0,0 +1,146 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [paths]
2
+ train = "train.spacy"
3
+ dev = "val.spacy"
4
+ vectors = null
5
+ init_tok2vec = null
6
+
7
+ [system]
8
+ gpu_allocator = "pytorch"
9
+ seed = 0
10
+
11
+ [nlp]
12
+ lang = "en"
13
+ pipeline = ["transformer","ner"]
14
+ batch_size = 128
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.ner]
24
+ factory = "ner"
25
+ incorrect_spans_key = null
26
+ moves = null
27
+ scorer = {"@scorers":"spacy.ner_scorer.v1"}
28
+ update_with_oracle_cut_size = 100
29
+
30
+ [components.ner.model]
31
+ @architectures = "spacy.TransitionBasedParser.v2"
32
+ state_type = "ner"
33
+ extra_state_tokens = false
34
+ hidden_width = 64
35
+ maxout_pieces = 2
36
+ use_upper = false
37
+ nO = null
38
+
39
+ [components.ner.model.tok2vec]
40
+ @architectures = "spacy-transformers.TransformerListener.v1"
41
+ grad_factor = 1.0
42
+ pooling = {"@layers":"reduce_mean.v1"}
43
+ upstream = "*"
44
+
45
+ [components.transformer]
46
+ factory = "transformer"
47
+ max_batch_items = 4096
48
+ set_extra_annotations = {"@annotation_setters":"spacy-transformers.null_annotation_setter.v1"}
49
+
50
+ [components.transformer.model]
51
+ @architectures = "spacy-transformers.TransformerModel.v3"
52
+ name = "roberta-base"
53
+ mixed_precision = false
54
+
55
+ [components.transformer.model.get_spans]
56
+ @span_getters = "spacy-transformers.strided_spans.v1"
57
+ window = 128
58
+ stride = 96
59
+
60
+ [components.transformer.model.grad_scaler_config]
61
+
62
+ [components.transformer.model.tokenizer_config]
63
+ use_fast = true
64
+
65
+ [components.transformer.model.transformer_config]
66
+
67
+ [corpora]
68
+
69
+ [corpora.dev]
70
+ @readers = "spacy.Corpus.v1"
71
+ path = ${paths.dev}
72
+ max_length = 0
73
+ gold_preproc = false
74
+ limit = 0
75
+ augmenter = null
76
+
77
+ [corpora.train]
78
+ @readers = "spacy.Corpus.v1"
79
+ path = ${paths.train}
80
+ max_length = 0
81
+ gold_preproc = false
82
+ limit = 0
83
+ augmenter = null
84
+
85
+ [training]
86
+ accumulate_gradient = 3
87
+ dev_corpus = "corpora.dev"
88
+ train_corpus = "corpora.train"
89
+ seed = ${system.seed}
90
+ gpu_allocator = ${system.gpu_allocator}
91
+ dropout = 0.1
92
+ patience = 1600
93
+ max_epochs = 0
94
+ max_steps = 20000
95
+ eval_frequency = 200
96
+ frozen_components = []
97
+ annotating_components = []
98
+ before_to_disk = null
99
+ before_update = null
100
+
101
+ [training.batcher]
102
+ @batchers = "spacy.batch_by_padded.v1"
103
+ discard_oversize = true
104
+ size = 2000
105
+ buffer = 256
106
+ get_length = null
107
+
108
+ [training.logger]
109
+ @loggers = "spacy.ConsoleLogger.v1"
110
+ progress_bar = false
111
+
112
+ [training.optimizer]
113
+ @optimizers = "Adam.v1"
114
+ beta1 = 0.9
115
+ beta2 = 0.999
116
+ L2_is_weight_decay = true
117
+ L2 = 0.01
118
+ grad_clip = 1.0
119
+ use_averages = false
120
+ eps = 0.00000001
121
+
122
+ [training.optimizer.learn_rate]
123
+ @schedules = "warmup_linear.v1"
124
+ warmup_steps = 250
125
+ total_steps = 20000
126
+ initial_rate = 0.00005
127
+
128
+ [training.score_weights]
129
+ ents_f = 1.0
130
+ ents_p = 0.0
131
+ ents_r = 0.0
132
+ ents_per_type = null
133
+
134
+ [pretraining]
135
+
136
+ [initialize]
137
+ vectors = ${paths.vectors}
138
+ init_tok2vec = ${paths.init_tok2vec}
139
+ vocab_data = null
140
+ lookups = null
141
+ before_init = null
142
+ after_init = null
143
+
144
+ [initialize.components]
145
+
146
+ [initialize.tokenizer]
config.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ from spacy_transformers.pipeline_component import DEFAULT_CONFIG
2
+
3
+ CONFIG = {
4
+ "transformer": DEFAULT_CONFIG,
5
+ "ner": {
6
+ "batch_size": 64,
7
+ },
8
+ }
en_roberta_base_plant_ner_case-any-py3-none-any.whl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f7c85a30120296dfcca31ed3df99119675a5b60d5941bbd2a24140a8d2929f40
3
+ size 428605822
meta.json ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lang":"en",
3
+ "name":"roberta_base_plant_ner_case",
4
+ "version":"1.0.0",
5
+ "description":"",
6
+ "author":"Mohammad Othman",
7
+ "email":"",
8
+ "url":"",
9
+ "license":"Apache-2.0",
10
+ "spacy_version":">=3.5.2,<3.6.0",
11
+ "spacy_git_version":"Unknown",
12
+ "vectors":{
13
+ "width":0,
14
+ "vectors":0,
15
+ "keys":0,
16
+ "name":null
17
+ },
18
+ "labels":{
19
+ "transformer":[
20
+
21
+ ],
22
+ "ner":[
23
+ "PLANT"
24
+ ]
25
+ },
26
+ "pipeline":[
27
+ "transformer",
28
+ "ner"
29
+ ],
30
+ "components":[
31
+ "transformer",
32
+ "ner"
33
+ ],
34
+ "disabled":[
35
+
36
+ ],
37
+ "performance":{
38
+ "ents_f":0.9725118483,
39
+ "ents_p":0.9697542533,
40
+ "ents_r":0.9752851711,
41
+ "ents_per_type":{
42
+ "PLANT":{
43
+ "p":0.9697542533,
44
+ "r":0.9752851711,
45
+ "f":0.9725118483
46
+ }
47
+ }
48
+ },
49
+ "requirements":[
50
+ "spacy-transformers>=1.2.3,<1.3.0"
51
+ ]
52
+ }
ner/cfg ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "moves":null,
3
+ "update_with_oracle_cut_size":100,
4
+ "multitasks":[
5
+
6
+ ],
7
+ "min_action_freq":1,
8
+ "learn_tokens":false,
9
+ "beam_width":1,
10
+ "beam_density":0.0,
11
+ "beam_update_prob":0.0,
12
+ "incorrect_spans_key":null
13
+ }
ner/model ADDED
Binary file (207 kB). View file
 
ner/moves ADDED
@@ -0,0 +1 @@
 
 
1
+ ��moves�d{"0":{},"1":{"PLANT":3979},"2":{"PLANT":3979},"3":{"PLANT":3979},"4":{"PLANT":3979,"":1},"5":{"":1}}�cfg��neg_key�
tokenizer ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ ��prefix_search� �^§|^%|^=|^—|^–|^\+(?![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�2�…$|……$|,$|:$|;$|\!$|\?$|¿$|؟$|¡$|\($|\)$|\[$|\]$|\{$|\}$|<$|>$|_$|#$|\*$|&$|。$|?$|!$|,$|、$|;$|:$|~$|·$|।$|،$|۔$|؛$|٪$|\.\.+$|…$|\'$|"$|”$|“$|`$|‘$|´$|’$|‚$|,$|„$|»$|«$|「$|」$|『$|』$|($|)$|〔$|〕$|【$|】$|《$|》$|〈$|〉$|〈$|〉$|⟦$|⟧$|[\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\u3040-\u309F\u30A0-\u30FFー\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\u3040-\u309F\u30A0-\u30FFー\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\u3040-\u309F\u30A0-\u30FFー\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\u3040-\u309F\u30A0-\u30FFー\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\u3040-\u309F\u30A0-\u30FFー\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\u3040-\u309F\u30A0-\u30FFー\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\u3040-\u309F\u30A0-\u30FFー\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\u3040-\u309F\u30A0-\u30FFー\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\u3040-\u309F\u30A0-\u30FFー\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\u3040-\u309F\u30A0-\u30FFー\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\u3040-\u309F\u30A0-\u30FFー\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�
2
+ ��A�
3
+ � ��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�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's��A�ThatC�that�A�'sC�'s�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�Thats��A�ThatC�that�A�s�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’s��A�ThatC�that�A�’sC�'s�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'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�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’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's��A�ThisC�this�A�'sC�'s�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�Thiss��A�ThisC�this�A�s�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’s��A�ThisC�this�A�’sC�'s�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'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�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’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's��A�thatC�that�A�'sC�'s�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�thats��A�thatC�that�A�s�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’s��A�thatC�that�A�’sC�'s�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'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�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’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's��A�thisC�this�A�'sC�'s�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�thiss��A�thisC�this�A�s�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’s��A�thisC�this�A�’sC�'s�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'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�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’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�¯\(ツ)/¯�°C.��A�°�A�C�A�.�°F.��A�°�A�F�A�.�°K.��A�°�A�K�A�.�°c.��A�°�A�c�A�.�°f.��A�°�A�f�A�.�°k.��A�°�A�k�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�’’�faster_heuristics�
transformer/cfg ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+ "max_batch_items":4096
3
+ }
transformer/model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:38671ff900f4b9641f421ea0983ec5d425fe662871dc3d4f75d28cd92954ac3e
3
+ size 502030651
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,5702 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ "\t",
3
+ "\n",
4
+ " ",
5
+ " ",
6
+ "!",
7
+ "\"",
8
+ "%",
9
+ "'",
10
+ "''",
11
+ "'-(",
12
+ "'-)",
13
+ "'Cause",
14
+ "'Cos",
15
+ "'Coz",
16
+ "'Cuz",
17
+ "'S",
18
+ "'X",
19
+ "'Xxx",
20
+ "'Xxxxx",
21
+ "'am",
22
+ "'bout",
23
+ "'cause",
24
+ "'cos",
25
+ "'coz",
26
+ "'cuz",
27
+ "'d",
28
+ "'em",
29
+ "'ll",
30
+ "'m",
31
+ "'nuff",
32
+ "'re",
33
+ "'s",
34
+ "'ve",
35
+ "'x",
36
+ "'xx",
37
+ "'xxx",
38
+ "'xxxx",
39
+ "'y",
40
+ "(",
41
+ "(((",
42
+ "(*>",
43
+ "(*_*)",
44
+ "(-8",
45
+ "(-:",
46
+ "(-;",
47
+ "(-_-)",
48
+ "(-d",
49
+ "(._.)",
50
+ "(:",
51
+ "(;",
52
+ "(=",
53
+ "(>_<)",
54
+ "(^_^)",
55
+ "(o:",
56
+ "(x:",
57
+ "(x_x)",
58
+ "(\u00ac_\u00ac)",
59
+ "(\u0ca0_\u0ca0)",
60
+ "(\u256f\u00b0\u25a1\u00b0\uff09\u256f\ufe35\u253b\u2501\u253b",
61
+ ")",
62
+ ")))",
63
+ ")-:",
64
+ ")/\u00af",
65
+ "):",
66
+ "*",
67
+ ",",
68
+ "-",
69
+ "-((",
70
+ "-))",
71
+ "-/",
72
+ "-0",
73
+ "-3",
74
+ "-8",
75
+ "-D",
76
+ "-O",
77
+ "-P",
78
+ "-X",
79
+ "-_-",
80
+ "-__-",
81
+ "-d",
82
+ "-o",
83
+ "-p",
84
+ "-x",
85
+ "-|",
86
+ ".",
87
+ ".C.",
88
+ ".D.",
89
+ ".E.",
90
+ ".G.",
91
+ ".H.",
92
+ ".J.",
93
+ ".M.",
94
+ ".S.",
95
+ ".Y.",
96
+ "._.",
97
+ ".e.",
98
+ ".g.",
99
+ ".m.",
100
+ ".s.",
101
+ "/",
102
+ "/3",
103
+ "/d",
104
+ "/or",
105
+ "0",
106
+ "0.0",
107
+ "0.o",
108
+ "000",
109
+ "00s",
110
+ "0_0",
111
+ "0_o",
112
+ "1",
113
+ "10",
114
+ "100",
115
+ "10a.m",
116
+ "10a.m.",
117
+ "10p.m",
118
+ "10p.m.",
119
+ "11",
120
+ "11a.m",
121
+ "11a.m.",
122
+ "11p.m",
123
+ "11p.m.",
124
+ "12",
125
+ "12a.m",
126
+ "12a.m.",
127
+ "12p.m",
128
+ "12p.m.",
129
+ "15",
130
+ "150",
131
+ "15th",
132
+ "169",
133
+ "1800s",
134
+ "1860s",
135
+ "1900s",
136
+ "1930s",
137
+ "1a.m",
138
+ "1a.m.",
139
+ "1p.m",
140
+ "1p.m.",
141
+ "2",
142
+ "2,000",
143
+ "20",
144
+ "200",
145
+ "25",
146
+ "2a.m",
147
+ "2a.m.",
148
+ "2p.m",
149
+ "2p.m.",
150
+ "3",
151
+ "30",
152
+ "300",
153
+ "30s",
154
+ "33",
155
+ "333",
156
+ "35",
157
+ "3a.m",
158
+ "3a.m.",
159
+ "3p.m",
160
+ "3p.m.",
161
+ "4",
162
+ "4,000",
163
+ "40",
164
+ "4a.m",
165
+ "4a.m.",
166
+ "4p.m",
167
+ "4p.m.",
168
+ "5",
169
+ "50",
170
+ "5a.m",
171
+ "5a.m.",
172
+ "5p.m",
173
+ "5p.m.",
174
+ "5th",
175
+ "6",
176
+ "60",
177
+ "60s",
178
+ "65",
179
+ "6a.m",
180
+ "6a.m.",
181
+ "6p.m",
182
+ "6p.m.",
183
+ "7",
184
+ "7a.m",
185
+ "7a.m.",
186
+ "7p.m",
187
+ "7p.m.",
188
+ "8",
189
+ "8)",
190
+ "8-",
191
+ "8-)",
192
+ "8-D",
193
+ "8-d",
194
+ "80",
195
+ "8D",
196
+ "8a.m",
197
+ "8a.m.",
198
+ "8d",
199
+ "8p.m",
200
+ "8p.m.",
201
+ "9",
202
+ "9a.m",
203
+ "9a.m.",
204
+ "9p.m",
205
+ "9p.m.",
206
+ ":",
207
+ ":'(",
208
+ ":')",
209
+ ":'-(",
210
+ ":'-)",
211
+ ":(",
212
+ ":((",
213
+ ":(((",
214
+ ":()",
215
+ ":)",
216
+ ":))",
217
+ ":)))",
218
+ ":*",
219
+ ":-(",
220
+ ":-((",
221
+ ":-(((",
222
+ ":-)",
223
+ ":-))",
224
+ ":-)))",
225
+ ":-*",
226
+ ":-/",
227
+ ":-0",
228
+ ":-3",
229
+ ":->",
230
+ ":-D",
231
+ ":-O",
232
+ ":-P",
233
+ ":-X",
234
+ ":-]",
235
+ ":-d",
236
+ ":-o",
237
+ ":-p",
238
+ ":-x",
239
+ ":-|",
240
+ ":-}",
241
+ ":/",
242
+ ":0",
243
+ ":1",
244
+ ":3",
245
+ ":>",
246
+ ":D",
247
+ ":O",
248
+ ":P",
249
+ ":X",
250
+ ":]",
251
+ ":d",
252
+ ":o",
253
+ ":o)",
254
+ ":p",
255
+ ":x",
256
+ ":x)",
257
+ ":|",
258
+ ":}",
259
+ ":\u2019(",
260
+ ":\u2019)",
261
+ ":\u2019-(",
262
+ ":\u2019-)",
263
+ ";",
264
+ ";)",
265
+ ";-)",
266
+ ";-D",
267
+ ";-X",
268
+ ";-d",
269
+ ";D",
270
+ ";X",
271
+ ";_;",
272
+ ";d",
273
+ "<",
274
+ "<.<",
275
+ "</3",
276
+ "</d",
277
+ "<3",
278
+ "<33",
279
+ "<333",
280
+ "<d",
281
+ "<dd",
282
+ "<ddd",
283
+ "<space>",
284
+ "<xxxx>",
285
+ "=",
286
+ "=(",
287
+ "=)",
288
+ "=/",
289
+ "=3",
290
+ "=D",
291
+ "=X",
292
+ "=[",
293
+ "=]",
294
+ "=d",
295
+ "=|",
296
+ ">",
297
+ ">.<",
298
+ ">.>",
299
+ ">:(",
300
+ ">:o",
301
+ ">:x",
302
+ "><(((*>",
303
+ "?",
304
+ "@",
305
+ "@_@",
306
+ "A",
307
+ "ANT",
308
+ "Abiu",
309
+ "Aboriginal",
310
+ "Acai",
311
+ "Acerola",
312
+ "Ackee",
313
+ "Acorn",
314
+ "Add",
315
+ "Adding",
316
+ "Adm",
317
+ "Adm.",
318
+ "Africa",
319
+ "African",
320
+ "Agonis",
321
+ "Ai",
322
+ "Ak",
323
+ "Ak.",
324
+ "Ala",
325
+ "Ala.",
326
+ "Alabama",
327
+ "Alaska",
328
+ "Alfalfa",
329
+ "Alice",
330
+ "Alligator",
331
+ "Amazon",
332
+ "Ambarella",
333
+ "America",
334
+ "American",
335
+ "Americans",
336
+ "Americas",
337
+ "An",
338
+ "Andean",
339
+ "Andes",
340
+ "Apiaceae",
341
+ "Apple",
342
+ "Apples",
343
+ "Apr",
344
+ "Apr.",
345
+ "Apricot",
346
+ "Apricots",
347
+ "April",
348
+ "Arabs",
349
+ "Araza",
350
+ "Arctic",
351
+ "Are",
352
+ "Arhat",
353
+ "Ariz",
354
+ "Ariz.",
355
+ "Arizona",
356
+ "Ark",
357
+ "Ark.",
358
+ "Arkansas",
359
+ "Artichokes",
360
+ "Arugula",
361
+ "Asia",
362
+ "Asian",
363
+ "Asparagus",
364
+ "Atemoya",
365
+ "Atlantic",
366
+ "Aubergine",
367
+ "Aubergines",
368
+ "Aug",
369
+ "Aug.",
370
+ "August",
371
+ "Australia",
372
+ "Australian",
373
+ "Australians",
374
+ "Avocado",
375
+ "Avocados",
376
+ "Ayurvedic",
377
+ "B",
378
+ "B3",
379
+ "B6",
380
+ "BLT",
381
+ "Babaco",
382
+ "Babacos",
383
+ "Bael",
384
+ "Baked",
385
+ "Bali",
386
+ "Bamboo",
387
+ "Banana",
388
+ "Bananas",
389
+ "Bangladeshi",
390
+ "Barbados",
391
+ "Barberries",
392
+ "Barberry",
393
+ "Bartlett",
394
+ "Bay",
395
+ "Bayberry",
396
+ "Beach",
397
+ "Bean",
398
+ "Beans",
399
+ "Bearberries",
400
+ "Bearberry",
401
+ "Beechnut",
402
+ "Beechnuts",
403
+ "Beet",
404
+ "Beets",
405
+ "Belgian",
406
+ "Bell",
407
+ "Berry",
408
+ "Betel",
409
+ "Bignay",
410
+ "Bilberries",
411
+ "Bilberry",
412
+ "Bilimbi",
413
+ "Bitter",
414
+ "Black",
415
+ "Blackberries",
416
+ "Blackberry",
417
+ "Blackcurrant",
418
+ "Blackcurrants",
419
+ "Blenheim",
420
+ "Blood",
421
+ "Blueberries",
422
+ "Bluetongue",
423
+ "Bok",
424
+ "Bolwarra",
425
+ "Boniato",
426
+ "Bosc",
427
+ "Bottle",
428
+ "Boysenberries",
429
+ "Boysenberry",
430
+ "Bramble",
431
+ "Brambles",
432
+ "Brazil",
433
+ "Brazilian",
434
+ "Breadfruit",
435
+ "Broadleaf",
436
+ "Broccoli",
437
+ "Broccolis",
438
+ "Bros",
439
+ "Bros.",
440
+ "Brown",
441
+ "Brussels",
442
+ "Buffaloberries",
443
+ "Burdekin",
444
+ "Burmese",
445
+ "Butternut",
446
+ "C",
447
+ "C'm",
448
+ "C++",
449
+ "C.",
450
+ "Ca",
451
+ "Cabbage",
452
+ "Cabbages",
453
+ "Cabernet",
454
+ "Cacao",
455
+ "Cactus",
456
+ "Caesar",
457
+ "Caimito",
458
+ "Cairns",
459
+ "Cajamanga",
460
+ "Calabash",
461
+ "Calif",
462
+ "Calif.",
463
+ "California",
464
+ "Camucamu",
465
+ "Can",
466
+ "Canada",
467
+ "Canistel",
468
+ "Cantaloupe",
469
+ "Cantaloupes",
470
+ "Cape",
471
+ "Caper",
472
+ "Carambola",
473
+ "Carambolas",
474
+ "Caramelized",
475
+ "Cardon",
476
+ "Caribbean",
477
+ "Carob",
478
+ "Carolina",
479
+ "Carrot",
480
+ "Carrots",
481
+ "Casaba",
482
+ "Cashews",
483
+ "Cauliflower",
484
+ "Cause",
485
+ "Cedar",
486
+ "Celery",
487
+ "Cempedak",
488
+ "Central",
489
+ "Cerrado",
490
+ "Ceylon",
491
+ "Champagne",
492
+ "Chard",
493
+ "Chayote",
494
+ "Chayotes",
495
+ "Che",
496
+ "Chenet",
497
+ "Cherimoya",
498
+ "Cherries",
499
+ "Cherry",
500
+ "Chilean",
501
+ "China",
502
+ "Chinese",
503
+ "Chives",
504
+ "Chokeberries",
505
+ "Chokeberry",
506
+ "Christmas",
507
+ "Christopher",
508
+ "Citron",
509
+ "Claude",
510
+ "Cloudberry",
511
+ "Cluster",
512
+ "Co",
513
+ "Co.",
514
+ "Coast",
515
+ "Coccoloba",
516
+ "Coconut",
517
+ "Coconuts",
518
+ "Cocoplum",
519
+ "Cocos",
520
+ "Coffee",
521
+ "Collard",
522
+ "Colo",
523
+ "Colo.",
524
+ "Colombia",
525
+ "Colorado",
526
+ "Columbus",
527
+ "Comice",
528
+ "Conkerberry",
529
+ "Conn",
530
+ "Conn.",
531
+ "Connecticut",
532
+ "Cooked",
533
+ "Coriander",
534
+ "Corn",
535
+ "Cornelian",
536
+ "Corp",
537
+ "Corp.",
538
+ "Cos",
539
+ "Costa",
540
+ "Could",
541
+ "Courgette",
542
+ "Courgettes",
543
+ "Coz",
544
+ "Crabapple",
545
+ "Cranberries",
546
+ "Cranberry",
547
+ "Crookneck",
548
+ "Crowberries",
549
+ "Crowberry",
550
+ "Cucumber",
551
+ "Cucumbers",
552
+ "Cudrang",
553
+ "Cudrania",
554
+ "Cultivating",
555
+ "Cupuacu",
556
+ "Currant",
557
+ "Currants",
558
+ "Custard",
559
+ "Cuz",
560
+ "C\u2019m",
561
+ "D",
562
+ "D.",
563
+ "D.C.",
564
+ "Daikon",
565
+ "Damson",
566
+ "Damsons",
567
+ "Dare",
568
+ "Date",
569
+ "Dates",
570
+ "Davidson",
571
+ "Dec",
572
+ "Dec.",
573
+ "December",
574
+ "Del",
575
+ "Del.",
576
+ "Delaware",
577
+ "Desert",
578
+ "Despite",
579
+ "Dewberries",
580
+ "Dewberry",
581
+ "Did",
582
+ "Dill",
583
+ "Do",
584
+ "Does",
585
+ "Doin",
586
+ "Doin'",
587
+ "Doin\u2019",
588
+ "Doubah",
589
+ "Dr",
590
+ "Dr.",
591
+ "Dragon",
592
+ "Dried",
593
+ "Duchesnea",
594
+ "Durian",
595
+ "E",
596
+ "E.G.",
597
+ "E.g",
598
+ "E.g.",
599
+ "East",
600
+ "Easter",
601
+ "Eastern",
602
+ "Ecuador",
603
+ "Edamame",
604
+ "Eggfruit",
605
+ "Eggplant",
606
+ "Egyptian",
607
+ "Eight",
608
+ "Elderberry",
609
+ "Elephant",
610
+ "Emblic",
611
+ "Emu",
612
+ "Endive",
613
+ "English",
614
+ "Entawak",
615
+ "Escarole",
616
+ "Ethiopia",
617
+ "Etrog",
618
+ "Europe",
619
+ "European",
620
+ "Examples",
621
+ "F",
622
+ "F.",
623
+ "Fava",
624
+ "Feb",
625
+ "Feb.",
626
+ "February",
627
+ "Feijoa",
628
+ "Fennel",
629
+ "Fibrous",
630
+ "Ficus",
631
+ "Figs",
632
+ "Fiji",
633
+ "Filipino",
634
+ "Finger",
635
+ "Fla",
636
+ "Fla.",
637
+ "Flattened",
638
+ "Florida",
639
+ "For",
640
+ "Frank",
641
+ "French",
642
+ "Fresh",
643
+ "Freshly",
644
+ "Fruits",
645
+ "G",
646
+ "Ga",
647
+ "Ga.",
648
+ "Gala",
649
+ "Galendar",
650
+ "Galia",
651
+ "Gandaria",
652
+ "Garbanzo",
653
+ "Garlic",
654
+ "Gen",
655
+ "Gen.",
656
+ "Genip",
657
+ "Genipap",
658
+ "Georgia",
659
+ "German",
660
+ "Ghana",
661
+ "Giant",
662
+ "Ginger",
663
+ "Gnetum",
664
+ "Goin",
665
+ "Goin'",
666
+ "Goin\u2019",
667
+ "Golden",
668
+ "Gon",
669
+ "Gooseberry",
670
+ "Got",
671
+ "Goumi",
672
+ "Gourds",
673
+ "Gov",
674
+ "Gov.",
675
+ "Granadilla",
676
+ "Grande",
677
+ "Granny",
678
+ "Grape",
679
+ "Grapefruit",
680
+ "Grapes",
681
+ "Grapple",
682
+ "Greece",
683
+ "Greek",
684
+ "Green",
685
+ "Greengage",
686
+ "Greens",
687
+ "Grenadilla",
688
+ "Grill",
689
+ "Grilled",
690
+ "Grow",
691
+ "Guanabana",
692
+ "Guarana",
693
+ "Guava",
694
+ "Gular",
695
+ "Guo",
696
+ "H",
697
+ "Habenero",
698
+ "Hackberry",
699
+ "Had",
700
+ "Halloween",
701
+ "Han",
702
+ "Hardy",
703
+ "Has",
704
+ "Hass",
705
+ "Have",
706
+ "Havin",
707
+ "Havin'",
708
+ "Havin\u2019",
709
+ "Hawaii",
710
+ "Hawaiian",
711
+ "Hawthorn",
712
+ "He",
713
+ "He's",
714
+ "Hemisphere",
715
+ "He\u2019s",
716
+ "Hog",
717
+ "Hominy",
718
+ "Honeydew",
719
+ "Honeysuckle",
720
+ "Horned",
721
+ "Horse",
722
+ "Horseradish",
723
+ "Hovenia",
724
+ "How",
725
+ "How's",
726
+ "How\u2019s",
727
+ "Huckleberries",
728
+ "Huckleberry",
729
+ "Huito",
730
+ "I",
731
+ "I.E.",
732
+ "I.e",
733
+ "I.e.",
734
+ "Ia",
735
+ "Ia.",
736
+ "Iceberg",
737
+ "Id",
738
+ "Id.",
739
+ "Idaho",
740
+ "If",
741
+ "Ill",
742
+ "Ill.",
743
+ "Illawarra",
744
+ "Illinois",
745
+ "In",
746
+ "Inc",
747
+ "Inc.",
748
+ "Incas",
749
+ "Ind",
750
+ "Ind.",
751
+ "India",
752
+ "Indian",
753
+ "Indiana",
754
+ "Indigenous",
755
+ "Indonesia",
756
+ "Indonesian",
757
+ "Inuit",
758
+ "Iowa",
759
+ "Irish",
760
+ "Is",
761
+ "Island",
762
+ "Islands",
763
+ "Israel",
764
+ "It",
765
+ "It's",
766
+ "Ita",
767
+ "Italian",
768
+ "Italy",
769
+ "It\u2019s",
770
+ "J",
771
+ "Jaboticaba",
772
+ "Jackfruit",
773
+ "Jagua",
774
+ "Jak",
775
+ "Jalapeno",
776
+ "Jalapenos",
777
+ "Jamaica",
778
+ "Jamaican",
779
+ "Jambul",
780
+ "Jams",
781
+ "Jan",
782
+ "Jan.",
783
+ "January",
784
+ "Japan",
785
+ "Japanese",
786
+ "Jasmine",
787
+ "Jatoba",
788
+ "Jenipapo",
789
+ "Jersey",
790
+ "Jewish",
791
+ "Jicama",
792
+ "Jicamas",
793
+ "Jocote",
794
+ "Jocotes",
795
+ "Joshua",
796
+ "Jr",
797
+ "Jr.",
798
+ "Juicy",
799
+ "Jujube",
800
+ "Jujubes",
801
+ "Jul",
802
+ "Jul.",
803
+ "July",
804
+ "Jun",
805
+ "Jun.",
806
+ "June",
807
+ "K",
808
+ "K.",
809
+ "Kaffir",
810
+ "Kahikatea",
811
+ "Kakadu",
812
+ "Kale",
813
+ "Kales",
814
+ "Kan",
815
+ "Kan.",
816
+ "Kandis",
817
+ "Kans",
818
+ "Kans.",
819
+ "Kansas",
820
+ "Karkalla",
821
+ "Kentucky",
822
+ "Keppel",
823
+ "Key",
824
+ "Keys",
825
+ "Kidney",
826
+ "Kiwis",
827
+ "Kohlrabi",
828
+ "Kohlrabis",
829
+ "Korea",
830
+ "Korean",
831
+ "Kumquats",
832
+ "Kundongs",
833
+ "Kutjera",
834
+ "Kutjeras",
835
+ "Ky",
836
+ "Ky.",
837
+ "L",
838
+ "La",
839
+ "La.",
840
+ "Lablab",
841
+ "Lady",
842
+ "Langsat",
843
+ "Lanka",
844
+ "Lanzones",
845
+ "Lapsi",
846
+ "Latin",
847
+ "Leeks",
848
+ "Legume",
849
+ "Legumes",
850
+ "Lemon",
851
+ "Lemons",
852
+ "Lentils",
853
+ "Let",
854
+ "Let's",
855
+ "Lettuce",
856
+ "Let\u2019s",
857
+ "Leucaena",
858
+ "Lillipilli",
859
+ "Lilly",
860
+ "Lima",
861
+ "Lime",
862
+ "Lingonberries",
863
+ "Lingonberry",
864
+ "Lo",
865
+ "Loganberries",
866
+ "Loganberry",
867
+ "Longan",
868
+ "Looking",
869
+ "Loquat",
870
+ "Loquats",
871
+ "Louisiana",
872
+ "Lovin",
873
+ "Lovin'",
874
+ "Lovin\u2019",
875
+ "Ltd",
876
+ "Ltd.",
877
+ "Lucuma",
878
+ "Lucumas",
879
+ "Lulo",
880
+ "Lulos",
881
+ "Lychee",
882
+ "Lychees",
883
+ "M",
884
+ "Ma'am",
885
+ "Mabolo",
886
+ "Macadamia",
887
+ "Madagascar",
888
+ "Malanga",
889
+ "Malay",
890
+ "Malaysia",
891
+ "Malaysian",
892
+ "Mamey",
893
+ "Mamoncillo",
894
+ "Mandarin",
895
+ "Mandarins",
896
+ "Mango",
897
+ "Mangosteen",
898
+ "Manila",
899
+ "Manoao",
900
+ "Manoaos",
901
+ "Many",
902
+ "Mar",
903
+ "Mar.",
904
+ "Marang",
905
+ "Marangs",
906
+ "March",
907
+ "Mashed",
908
+ "Mass",
909
+ "Mass.",
910
+ "Massachusetts",
911
+ "May",
912
+ "Mayapple",
913
+ "Mayapples",
914
+ "Mayhaw",
915
+ "Mayhaws",
916
+ "Maypop",
917
+ "Maypops",
918
+ "Ma\u2019am",
919
+ "McIntosh",
920
+ "Md",
921
+ "Md.",
922
+ "Mediterranean",
923
+ "Medlar",
924
+ "Medlars",
925
+ "Melinjo",
926
+ "Melinjos",
927
+ "Melon",
928
+ "Melons",
929
+ "Merlot",
930
+ "Mesoamerica",
931
+ "Messrs",
932
+ "Messrs.",
933
+ "Mexican",
934
+ "Mexico",
935
+ "Meyer",
936
+ "Mich",
937
+ "Mich.",
938
+ "Michigan",
939
+ "Middle",
940
+ "Midyim",
941
+ "Might",
942
+ "Minn",
943
+ "Minn.",
944
+ "Minnesota",
945
+ "Mint",
946
+ "Miss",
947
+ "Miss.",
948
+ "Mississippi",
949
+ "Mo",
950
+ "Mo.",
951
+ "Mock",
952
+ "Monkey",
953
+ "Monstera",
954
+ "Mont",
955
+ "Mont.",
956
+ "Morels",
957
+ "Morinda",
958
+ "Morocco",
959
+ "Mount",
960
+ "Mountain",
961
+ "Mr",
962
+ "Mr.",
963
+ "Mrs",
964
+ "Mrs.",
965
+ "Ms",
966
+ "Ms.",
967
+ "Mt",
968
+ "Mt.",
969
+ "Mulberries",
970
+ "Mulberry",
971
+ "Mundu",
972
+ "Muntries",
973
+ "Mushrooms",
974
+ "Muskmelons",
975
+ "Must",
976
+ "My",
977
+ "Myrtaceae",
978
+ "Myrtle",
979
+ "N",
980
+ "N.C.",
981
+ "N.D.",
982
+ "N.H.",
983
+ "N.J.",
984
+ "N.M.",
985
+ "N.Y.",
986
+ "Nageia",
987
+ "Nance",
988
+ "Nannyberry",
989
+ "Napa",
990
+ "Naranja",
991
+ "Naranjilla",
992
+ "National",
993
+ "Native",
994
+ "Neb",
995
+ "Neb.",
996
+ "Nebr",
997
+ "Nebr.",
998
+ "Nebraska",
999
+ "Nectarine",
1000
+ "Nectarines",
1001
+ "Need",
1002
+ "Neem",
1003
+ "Nepal",
1004
+ "Nepalese",
1005
+ "Nev",
1006
+ "Nev.",
1007
+ "Nevada",
1008
+ "New",
1009
+ "New Hampshire",
1010
+ "New Jersey",
1011
+ "New Mexico",
1012
+ "New York",
1013
+ "Nicaragua",
1014
+ "Noir",
1015
+ "North",
1016
+ "North Carolina",
1017
+ "North Dakota",
1018
+ "Northern",
1019
+ "Northwest",
1020
+ "Not",
1021
+ "Nothin",
1022
+ "Nothin'",
1023
+ "Nothin\u2019",
1024
+ "Nov",
1025
+ "Nov.",
1026
+ "November",
1027
+ "Nungu",
1028
+ "Nut",
1029
+ "Nuthin",
1030
+ "Nuthin'",
1031
+ "Nuthin\u2019",
1032
+ "Nutmeg",
1033
+ "Nutmegs",
1034
+ "Nuts",
1035
+ "O",
1036
+ "O'clock",
1037
+ "O'odham",
1038
+ "O.O",
1039
+ "O.o",
1040
+ "O_O",
1041
+ "O_o",
1042
+ "Oceania",
1043
+ "Oct",
1044
+ "Oct.",
1045
+ "October",
1046
+ "Oil",
1047
+ "Okla",
1048
+ "Okla.",
1049
+ "Oklahoma",
1050
+ "Okra",
1051
+ "Ol",
1052
+ "Ol'",
1053
+ "Olallieberries",
1054
+ "Olallieberry",
1055
+ "Old",
1056
+ "Oleaceae",
1057
+ "Olive",
1058
+ "Olives",
1059
+ "Ol\u2019",
1060
+ "One",
1061
+ "Onion",
1062
+ "Orange",
1063
+ "Orangelos",
1064
+ "Oranges",
1065
+ "Ore",
1066
+ "Ore.",
1067
+ "Oregano",
1068
+ "Oregon",
1069
+ "Otaheite",
1070
+ "Ought",
1071
+ "Oyster",
1072
+ "O\u2019clock",
1073
+ "P",
1074
+ "PLANT",
1075
+ "Pa",
1076
+ "Pa.",
1077
+ "Pacific",
1078
+ "Pakistan",
1079
+ "Palm",
1080
+ "Papaya",
1081
+ "Papayas",
1082
+ "Park",
1083
+ "Parmesan",
1084
+ "Parsley",
1085
+ "Parsnips",
1086
+ "Passion",
1087
+ "Pattypan",
1088
+ "Pawpaws",
1089
+ "Pea",
1090
+ "Peach",
1091
+ "Peanut",
1092
+ "Peanuts",
1093
+ "Pearl",
1094
+ "Pears",
1095
+ "Peas",
1096
+ "Pedrosillano",
1097
+ "Pennsylvania",
1098
+ "Peppermint",
1099
+ "Peppers",
1100
+ "Pequi",
1101
+ "Persia",
1102
+ "Persimmon",
1103
+ "Persimmons",
1104
+ "Pewa",
1105
+ "Ph",
1106
+ "Ph.D.",
1107
+ "Philippines",
1108
+ "Physalis",
1109
+ "Pigeon",
1110
+ "Pigface",
1111
+ "Pili",
1112
+ "Pilly",
1113
+ "Pineapple",
1114
+ "Pineapples",
1115
+ "Pinot",
1116
+ "Pinto",
1117
+ "Pitaya",
1118
+ "Pitayas",
1119
+ "Pitomba",
1120
+ "Plantain",
1121
+ "Plum",
1122
+ "Plums",
1123
+ "Podocarpus",
1124
+ "Poha",
1125
+ "Pois",
1126
+ "Polynesia",
1127
+ "Polynesian",
1128
+ "Pomcites",
1129
+ "Pomegranate",
1130
+ "Pomegranates",
1131
+ "Pomelos",
1132
+ "Pommecythere",
1133
+ "Pommecytheres",
1134
+ "Pommerac",
1135
+ "Pond",
1136
+ "Portabella",
1137
+ "Portabellas",
1138
+ "Potato",
1139
+ "Potatoes",
1140
+ "Prickly",
1141
+ "Prof",
1142
+ "Prof.",
1143
+ "Prumnopitys",
1144
+ "Prunes",
1145
+ "Puerto",
1146
+ "Pulasan",
1147
+ "Pummelo",
1148
+ "Pummelos",
1149
+ "Pumpkin",
1150
+ "Pumpkins",
1151
+ "Pupunhas",
1152
+ "Purple",
1153
+ "Q",
1154
+ "Quandongs",
1155
+ "Queen",
1156
+ "Quenepa",
1157
+ "Quenepas",
1158
+ "Quince",
1159
+ "Quinces",
1160
+ "Quinoa",
1161
+ "R",
1162
+ "ROOT",
1163
+ "Radicchio",
1164
+ "Radishes",
1165
+ "Rainbow",
1166
+ "Raisins",
1167
+ "Ramadan",
1168
+ "Rambutan",
1169
+ "Rambutans",
1170
+ "Rangpur",
1171
+ "Raspberries",
1172
+ "Raspberry",
1173
+ "Reaper",
1174
+ "Red",
1175
+ "Redcurrant",
1176
+ "Redcurrants",
1177
+ "Reine",
1178
+ "Rep",
1179
+ "Rep.",
1180
+ "Rev",
1181
+ "Rev.",
1182
+ "Rhamnus",
1183
+ "Rhubarb",
1184
+ "Rhubarbs",
1185
+ "Riberies",
1186
+ "Riberry",
1187
+ "Rica",
1188
+ "Rich",
1189
+ "Rico",
1190
+ "Ridged",
1191
+ "Rimu",
1192
+ "Rio",
1193
+ "Romaine",
1194
+ "Rose",
1195
+ "Rosehip",
1196
+ "Rosehips",
1197
+ "Rosemary",
1198
+ "Rowan",
1199
+ "Rutabaga",
1200
+ "S",
1201
+ "S.C.",
1202
+ "Sageretia",
1203
+ "Saguaro",
1204
+ "Salads",
1205
+ "Salak",
1206
+ "Salal",
1207
+ "Salmonberries",
1208
+ "Salmonberry",
1209
+ "Sand",
1210
+ "Sandpaper",
1211
+ "Santol",
1212
+ "Santols",
1213
+ "Sapodilla",
1214
+ "Sapote",
1215
+ "Saskatoon",
1216
+ "Saskatoonberries",
1217
+ "Satinash",
1218
+ "Satsuma",
1219
+ "Satsumas",
1220
+ "Saut\u00e9ed",
1221
+ "Scandinavian",
1222
+ "Scottish",
1223
+ "Sea",
1224
+ "Seagrape",
1225
+ "Sen",
1226
+ "Sen.",
1227
+ "Sep",
1228
+ "Sep.",
1229
+ "Sept",
1230
+ "Sept.",
1231
+ "September",
1232
+ "Serviceberries",
1233
+ "Serviceberry",
1234
+ "Seville",
1235
+ "Sha",
1236
+ "Shallot",
1237
+ "Shallots",
1238
+ "Sharon",
1239
+ "She",
1240
+ "She's",
1241
+ "She\u2019s",
1242
+ "Shipova",
1243
+ "Should",
1244
+ "Silk",
1245
+ "Silkworm",
1246
+ "Smith",
1247
+ "Snap",
1248
+ "Snow",
1249
+ "Snowberries",
1250
+ "Snowberry",
1251
+ "Soak",
1252
+ "Some",
1253
+ "Somethin",
1254
+ "Somethin'",
1255
+ "Somethin\u2019",
1256
+ "Sonoran",
1257
+ "Soups",
1258
+ "Soursop",
1259
+ "South",
1260
+ "South Carolina",
1261
+ "Southeast",
1262
+ "Southern",
1263
+ "Southwest",
1264
+ "Spaghetti",
1265
+ "Spain",
1266
+ "Spanish",
1267
+ "Spicy",
1268
+ "Spinach",
1269
+ "Split",
1270
+ "Springs",
1271
+ "Sprouts",
1272
+ "Squash",
1273
+ "Squashes",
1274
+ "Sri",
1275
+ "St",
1276
+ "St.",
1277
+ "Star",
1278
+ "States",
1279
+ "Stir",
1280
+ "Strawberries",
1281
+ "Strawberry",
1282
+ "String",
1283
+ "Strychnos",
1284
+ "Sugar",
1285
+ "Sukkot",
1286
+ "Summer",
1287
+ "Sunday",
1288
+ "Surinam",
1289
+ "Sweet",
1290
+ "Sweetsop",
1291
+ "Swiss",
1292
+ "Sycamore",
1293
+ "Sycamores",
1294
+ "Syzygium",
1295
+ "T",
1296
+ "Tamarillo",
1297
+ "Tamarind",
1298
+ "Tangelo",
1299
+ "Tangerine",
1300
+ "Tangerines",
1301
+ "Tanjong",
1302
+ "Taro",
1303
+ "Taxus",
1304
+ "Tenn",
1305
+ "Tenn.",
1306
+ "Tennessee",
1307
+ "Texas",
1308
+ "Thai",
1309
+ "Thailand",
1310
+ "Thanksgiving",
1311
+ "That",
1312
+ "That's",
1313
+ "That\u2019s",
1314
+ "The",
1315
+ "There",
1316
+ "There's",
1317
+ "There\u2019s",
1318
+ "These",
1319
+ "They",
1320
+ "Thimbleberry",
1321
+ "This",
1322
+ "This's",
1323
+ "This\u2019s",
1324
+ "Those",
1325
+ "To",
1326
+ "Tohono",
1327
+ "Tomatillo",
1328
+ "Tomato",
1329
+ "Tomatoes",
1330
+ "Toyon",
1331
+ "Tree",
1332
+ "Try",
1333
+ "Turnip",
1334
+ "Turnips",
1335
+ "U",
1336
+ "U.S.",
1337
+ "Ugli",
1338
+ "Ugni",
1339
+ "United",
1340
+ "Use",
1341
+ "Uva",
1342
+ "Uzouza",
1343
+ "V",
1344
+ "V.V",
1345
+ "V_V",
1346
+ "Va",
1347
+ "Va.",
1348
+ "Vaccines",
1349
+ "Valley",
1350
+ "Vanilla",
1351
+ "Velvet",
1352
+ "Vietnam",
1353
+ "Vine",
1354
+ "Virginia",
1355
+ "Voavanga",
1356
+ "W",
1357
+ "Waldorf",
1358
+ "Wales",
1359
+ "Was",
1360
+ "Wash",
1361
+ "Wash.",
1362
+ "Washington",
1363
+ "Water",
1364
+ "Watercress",
1365
+ "Watermelon",
1366
+ "Watermelons",
1367
+ "Wax",
1368
+ "We",
1369
+ "Were",
1370
+ "West",
1371
+ "Western",
1372
+ "What",
1373
+ "What's",
1374
+ "What\u2019s",
1375
+ "When",
1376
+ "When's",
1377
+ "When\u2019s",
1378
+ "Where",
1379
+ "Where's",
1380
+ "Where\u2019s",
1381
+ "Whether",
1382
+ "White",
1383
+ "Who",
1384
+ "Who's",
1385
+ "Who\u2019s",
1386
+ "Why",
1387
+ "Why's",
1388
+ "Why\u2019s",
1389
+ "Wild",
1390
+ "Wineberries",
1391
+ "Winter",
1392
+ "Wis",
1393
+ "Wis.",
1394
+ "Wisconsin",
1395
+ "With",
1396
+ "Wo",
1397
+ "Wolfberries",
1398
+ "Wongi",
1399
+ "Wood",
1400
+ "World",
1401
+ "Would",
1402
+ "X'x",
1403
+ "X'xxxx",
1404
+ "X++",
1405
+ "X.",
1406
+ "X.X",
1407
+ "X.X.",
1408
+ "X.x",
1409
+ "X.x.",
1410
+ "XD",
1411
+ "XDD",
1412
+ "XX",
1413
+ "XXX",
1414
+ "XXXX",
1415
+ "X_X",
1416
+ "X_x",
1417
+ "Xd",
1418
+ "Xigua",
1419
+ "Ximenia",
1420
+ "Xx",
1421
+ "Xx'",
1422
+ "Xx'x",
1423
+ "Xx'xx",
1424
+ "Xx.",
1425
+ "Xx.X.",
1426
+ "XxXxxxx",
1427
+ "Xxx",
1428
+ "Xxx'x",
1429
+ "Xxx.",
1430
+ "Xxxx",
1431
+ "Xxxx'",
1432
+ "Xxxx'x",
1433
+ "Xxxx.",
1434
+ "Xxxxx",
1435
+ "Xxxxx'",
1436
+ "Xxxxx'x",
1437
+ "Xxxxx.",
1438
+ "Xxxxx\u2019",
1439
+ "Xxxxx\u2019x",
1440
+ "Xxxx\u2019",
1441
+ "Xxxx\u2019x",
1442
+ "Xxx\u2019x",
1443
+ "Xx\u2019",
1444
+ "Xx\u2019x",
1445
+ "Xx\u2019xx",
1446
+ "Xylocarp",
1447
+ "X\u2019x",
1448
+ "X\u2019xxxx",
1449
+ "Y",
1450
+ "Yali",
1451
+ "Yam",
1452
+ "Yamamomo",
1453
+ "Yangmei",
1454
+ "Yard",
1455
+ "Yellow",
1456
+ "You",
1457
+ "Yukon",
1458
+ "Yumberry",
1459
+ "Yuzu",
1460
+ "Z",
1461
+ "Zealand",
1462
+ "Zhe",
1463
+ "Zigzag",
1464
+ "Ziziphus",
1465
+ "Zucchini",
1466
+ "Zucchinis",
1467
+ "[",
1468
+ "[-:",
1469
+ "[:",
1470
+ "[=",
1471
+ "\\",
1472
+ "\\\")",
1473
+ "\\n",
1474
+ "\\t",
1475
+ "\\x",
1476
+ "]",
1477
+ "]=",
1478
+ "^",
1479
+ "^_^",
1480
+ "^__^",
1481
+ "^___^",
1482
+ "_*)",
1483
+ "_-)",
1484
+ "_.)",
1485
+ "_<)",
1486
+ "_^)",
1487
+ "__-",
1488
+ "__^",
1489
+ "_\u00ac)",
1490
+ "_\u0ca0)",
1491
+ "a",
1492
+ "a.",
1493
+ "a.m",
1494
+ "a.m.",
1495
+ "aba",
1496
+ "abe",
1497
+ "abi",
1498
+ "ability",
1499
+ "abiu",
1500
+ "aboriginal",
1501
+ "about",
1502
+ "abs",
1503
+ "abundance",
1504
+ "abundant",
1505
+ "aby",
1506
+ "acai",
1507
+ "accent",
1508
+ "accidentally",
1509
+ "accompaniment",
1510
+ "ace",
1511
+ "acerola",
1512
+ "ach",
1513
+ "acid",
1514
+ "acidic",
1515
+ "acidula",
1516
+ "ack",
1517
+ "ackee",
1518
+ "aco",
1519
+ "acorn",
1520
+ "acronychia",
1521
+ "across",
1522
+ "act",
1523
+ "activity",
1524
+ "actually",
1525
+ "acu",
1526
+ "acy",
1527
+ "ada",
1528
+ "adapted",
1529
+ "add",
1530
+ "added",
1531
+ "addictive",
1532
+ "adding",
1533
+ "addition",
1534
+ "adds",
1535
+ "ade",
1536
+ "adm",
1537
+ "adm.",
1538
+ "ado",
1539
+ "ads",
1540
+ "adu",
1541
+ "ady",
1542
+ "ael",
1543
+ "affects",
1544
+ "africa",
1545
+ "african",
1546
+ "afs",
1547
+ "after",
1548
+ "afy",
1549
+ "aga",
1550
+ "against",
1551
+ "agbalumo",
1552
+ "age",
1553
+ "ages",
1554
+ "ago",
1555
+ "agonis",
1556
+ "agricultural",
1557
+ "ags",
1558
+ "ai",
1559
+ "aid",
1560
+ "aiding",
1561
+ "aii",
1562
+ "ail",
1563
+ "ailments",
1564
+ "ain",
1565
+ "air",
1566
+ "ait",
1567
+ "ak",
1568
+ "ak.",
1569
+ "aka",
1570
+ "ake",
1571
+ "aki",
1572
+ "aks",
1573
+ "aky",
1574
+ "ala",
1575
+ "ala.",
1576
+ "alaska",
1577
+ "alcoholic",
1578
+ "ale",
1579
+ "alert",
1580
+ "alertness",
1581
+ "alfalfa",
1582
+ "ali",
1583
+ "alice",
1584
+ "alike",
1585
+ "alkali",
1586
+ "all",
1587
+ "allergic",
1588
+ "alleviate",
1589
+ "alligator",
1590
+ "allowed",
1591
+ "alm",
1592
+ "almond",
1593
+ "almonds",
1594
+ "along",
1595
+ "aloo",
1596
+ "already",
1597
+ "als",
1598
+ "also",
1599
+ "alt",
1600
+ "altern",
1601
+ "alternative",
1602
+ "always",
1603
+ "aly",
1604
+ "am",
1605
+ "ama",
1606
+ "amazed",
1607
+ "amazing",
1608
+ "amazon",
1609
+ "amb",
1610
+ "ambarella",
1611
+ "ame",
1612
+ "america",
1613
+ "american",
1614
+ "americans",
1615
+ "americas",
1616
+ "amino",
1617
+ "amla",
1618
+ "among",
1619
+ "amp",
1620
+ "ample",
1621
+ "ams",
1622
+ "amu",
1623
+ "amy",
1624
+ "amygdalin",
1625
+ "an",
1626
+ "an.",
1627
+ "ana",
1628
+ "ancient",
1629
+ "and",
1630
+ "and/or",
1631
+ "andean",
1632
+ "andes",
1633
+ "ane",
1634
+ "anemia",
1635
+ "ang",
1636
+ "animal",
1637
+ "animals",
1638
+ "anise",
1639
+ "ank",
1640
+ "ano",
1641
+ "ans",
1642
+ "ant",
1643
+ "anthocyanin",
1644
+ "anthocyanins",
1645
+ "anti",
1646
+ "antibacterial",
1647
+ "antifungal",
1648
+ "antimicrobial",
1649
+ "antioxidant",
1650
+ "antioxidants",
1651
+ "antiviral",
1652
+ "anxiety",
1653
+ "any",
1654
+ "anywhere",
1655
+ "aos",
1656
+ "apa",
1657
+ "ape",
1658
+ "apiaceae",
1659
+ "apo",
1660
+ "appearance",
1661
+ "appetizer",
1662
+ "appetizers",
1663
+ "apple",
1664
+ "apples",
1665
+ "apr",
1666
+ "apr.",
1667
+ "apricot",
1668
+ "apricots",
1669
+ "aps",
1670
+ "apy",
1671
+ "ar.",
1672
+ "ara",
1673
+ "arabs",
1674
+ "araza",
1675
+ "arb",
1676
+ "arctic",
1677
+ "ard",
1678
+ "are",
1679
+ "area",
1680
+ "areas",
1681
+ "arhat",
1682
+ "arid",
1683
+ "arils",
1684
+ "ariz",
1685
+ "ariz.",
1686
+ "arizona",
1687
+ "ark",
1688
+ "ark.",
1689
+ "arl",
1690
+ "arm",
1691
+ "arms",
1692
+ "aro",
1693
+ "aroma",
1694
+ "aromatherapy",
1695
+ "aromatic",
1696
+ "aromatics",
1697
+ "around",
1698
+ "arp",
1699
+ "arrangements",
1700
+ "ars",
1701
+ "art",
1702
+ "arthritis",
1703
+ "artichoke",
1704
+ "artichokes",
1705
+ "artisanal",
1706
+ "arugula",
1707
+ "ary",
1708
+ "as",
1709
+ "ase",
1710
+ "ash",
1711
+ "asia",
1712
+ "asian",
1713
+ "asparagine",
1714
+ "asparagus",
1715
+ "aspen",
1716
+ "ass",
1717
+ "associated",
1718
+ "association",
1719
+ "ast",
1720
+ "astringent",
1721
+ "asy",
1722
+ "at",
1723
+ "ata",
1724
+ "ate",
1725
+ "atemoya",
1726
+ "ath",
1727
+ "athletes",
1728
+ "athletic",
1729
+ "atlantic",
1730
+ "ato",
1731
+ "ats",
1732
+ "attract",
1733
+ "attracting",
1734
+ "attractive",
1735
+ "aty",
1736
+ "aubergine",
1737
+ "aubergines",
1738
+ "aug",
1739
+ "aug.",
1740
+ "august",
1741
+ "australia",
1742
+ "australian",
1743
+ "australians",
1744
+ "autumn",
1745
+ "autumnal",
1746
+ "ava",
1747
+ "available",
1748
+ "ave",
1749
+ "avo",
1750
+ "avocado",
1751
+ "avocados",
1752
+ "avoid",
1753
+ "avy",
1754
+ "awn",
1755
+ "aws",
1756
+ "axy",
1757
+ "aya",
1758
+ "ays",
1759
+ "ayurvedic",
1760
+ "aza",
1761
+ "aze",
1762
+ "azy",
1763
+ "b",
1764
+ "b.",
1765
+ "b3",
1766
+ "b6",
1767
+ "baba",
1768
+ "babaco",
1769
+ "babacos",
1770
+ "baby",
1771
+ "baccata",
1772
+ "backdrop",
1773
+ "backyard",
1774
+ "bacon",
1775
+ "bacteria",
1776
+ "badea",
1777
+ "bael",
1778
+ "baels",
1779
+ "baesuk",
1780
+ "bag",
1781
+ "baguette",
1782
+ "bah",
1783
+ "baked",
1784
+ "bakery",
1785
+ "baking",
1786
+ "baklava",
1787
+ "bal",
1788
+ "balanced",
1789
+ "bali",
1790
+ "ball",
1791
+ "balsamic",
1792
+ "bamboo",
1793
+ "ban",
1794
+ "banana",
1795
+ "bananas",
1796
+ "bangladeshi",
1797
+ "banks",
1798
+ "banned",
1799
+ "barbados",
1800
+ "barbecues",
1801
+ "barberries",
1802
+ "barberry",
1803
+ "bark",
1804
+ "barrier",
1805
+ "bars",
1806
+ "bartlett",
1807
+ "base",
1808
+ "based",
1809
+ "basil",
1810
+ "basket",
1811
+ "baskets",
1812
+ "batch",
1813
+ "bats",
1814
+ "bay",
1815
+ "bayberries",
1816
+ "bayberry",
1817
+ "be",
1818
+ "beach",
1819
+ "bean",
1820
+ "beans",
1821
+ "bearberries",
1822
+ "bearberry",
1823
+ "bearing",
1824
+ "bears",
1825
+ "beat",
1826
+ "beautiful",
1827
+ "beauty",
1828
+ "became",
1829
+ "because",
1830
+ "become",
1831
+ "becomes",
1832
+ "becoming",
1833
+ "bed",
1834
+ "beech",
1835
+ "beechnut",
1836
+ "beechnuts",
1837
+ "been",
1838
+ "bees",
1839
+ "beet",
1840
+ "beets",
1841
+ "before",
1842
+ "beginner",
1843
+ "begun",
1844
+ "behind",
1845
+ "behold",
1846
+ "being",
1847
+ "belgian",
1848
+ "believe",
1849
+ "believed",
1850
+ "bell",
1851
+ "bellini",
1852
+ "belong",
1853
+ "belongs",
1854
+ "below",
1855
+ "beneficial",
1856
+ "benefits",
1857
+ "ber",
1858
+ "berries",
1859
+ "berry",
1860
+ "bes",
1861
+ "best",
1862
+ "bet",
1863
+ "beta",
1864
+ "betacyanin",
1865
+ "betel",
1866
+ "between",
1867
+ "beverage",
1868
+ "beverages",
1869
+ "bia",
1870
+ "big",
1871
+ "bignay",
1872
+ "bilberries",
1873
+ "bilberry",
1874
+ "bilimbi",
1875
+ "billy",
1876
+ "bin",
1877
+ "birds",
1878
+ "bis",
1879
+ "biscuits",
1880
+ "bison",
1881
+ "bit",
1882
+ "bite",
1883
+ "bitter",
1884
+ "bitterness",
1885
+ "biu",
1886
+ "black",
1887
+ "blackberries",
1888
+ "blackberry",
1889
+ "blackcurrant",
1890
+ "blackcurrants",
1891
+ "ble",
1892
+ "blend",
1893
+ "blended",
1894
+ "blenheim",
1895
+ "bloating",
1896
+ "blood",
1897
+ "bloom",
1898
+ "blooms",
1899
+ "blossom",
1900
+ "blossoms",
1901
+ "blt",
1902
+ "blue",
1903
+ "blueberries",
1904
+ "blueberry",
1905
+ "bluetongue",
1906
+ "bodies",
1907
+ "body",
1908
+ "boiled",
1909
+ "boiling",
1910
+ "bok",
1911
+ "bol",
1912
+ "bolwarra",
1913
+ "boniato",
1914
+ "boniatos",
1915
+ "bonsai",
1916
+ "bonus",
1917
+ "boo",
1918
+ "boost",
1919
+ "booster",
1920
+ "boosting",
1921
+ "bor",
1922
+ "border",
1923
+ "bosc",
1924
+ "both",
1925
+ "bottle",
1926
+ "bought",
1927
+ "bountiful",
1928
+ "bout",
1929
+ "bow",
1930
+ "bowl",
1931
+ "bowls",
1932
+ "boxthorn",
1933
+ "boysenberries",
1934
+ "boysenberry",
1935
+ "br.",
1936
+ "brain",
1937
+ "bramble",
1938
+ "brambles",
1939
+ "branch",
1940
+ "branches",
1941
+ "brandy",
1942
+ "brazil",
1943
+ "brazilian",
1944
+ "bread",
1945
+ "breadcrumbs",
1946
+ "breadfruit",
1947
+ "breads",
1948
+ "breakfast",
1949
+ "breaks",
1950
+ "breath",
1951
+ "breathing",
1952
+ "brewed",
1953
+ "bright",
1954
+ "brighten",
1955
+ "bring",
1956
+ "brittle",
1957
+ "broad",
1958
+ "broadleaf",
1959
+ "broccoli",
1960
+ "broccolis",
1961
+ "bromelain",
1962
+ "bros",
1963
+ "bros.",
1964
+ "broth",
1965
+ "brought",
1966
+ "brown",
1967
+ "brownies",
1968
+ "brussels",
1969
+ "buah",
1970
+ "bubblegum",
1971
+ "buckthorn",
1972
+ "buds",
1973
+ "buffaloberries",
1974
+ "building",
1975
+ "bul",
1976
+ "bulbous",
1977
+ "bulbs",
1978
+ "bumpy",
1979
+ "bunch",
1980
+ "bunches",
1981
+ "burdekin",
1982
+ "burger",
1983
+ "burgers",
1984
+ "burmese",
1985
+ "burned",
1986
+ "burritos",
1987
+ "burst",
1988
+ "bursting",
1989
+ "bus",
1990
+ "bush",
1991
+ "bushes",
1992
+ "bushy",
1993
+ "but",
1994
+ "butter",
1995
+ "butterflies",
1996
+ "butterhead",
1997
+ "butternut",
1998
+ "butters",
1999
+ "buttery",
2000
+ "by",
2001
+ "c",
2002
+ "c'm",
2003
+ "c++",
2004
+ "c.",
2005
+ "ca",
2006
+ "cabbage",
2007
+ "cabbages",
2008
+ "cabernet",
2009
+ "cacao",
2010
+ "cacti",
2011
+ "cactus",
2012
+ "caesar",
2013
+ "caffeine",
2014
+ "caged",
2015
+ "cai",
2016
+ "caimito",
2017
+ "cairns",
2018
+ "cajamanga",
2019
+ "cake",
2020
+ "cakes",
2021
+ "cal",
2022
+ "calabash",
2023
+ "calcium",
2024
+ "calif",
2025
+ "calif.",
2026
+ "california",
2027
+ "called",
2028
+ "calls",
2029
+ "calm",
2030
+ "calming",
2031
+ "calorie",
2032
+ "calories",
2033
+ "camachile",
2034
+ "came",
2035
+ "camucamu",
2036
+ "can",
2037
+ "canada",
2038
+ "cancer",
2039
+ "candied",
2040
+ "candles",
2041
+ "candy",
2042
+ "canistel",
2043
+ "canned",
2044
+ "canopies",
2045
+ "canopy",
2046
+ "cantaloupe",
2047
+ "cantaloupes",
2048
+ "canteens",
2049
+ "cao",
2050
+ "cape",
2051
+ "caper",
2052
+ "capers",
2053
+ "caprese",
2054
+ "car",
2055
+ "carambola",
2056
+ "carambolas",
2057
+ "caramel",
2058
+ "caramelized",
2059
+ "caramelizing",
2060
+ "carb",
2061
+ "carbohydrates",
2062
+ "carbonara",
2063
+ "cardon",
2064
+ "care",
2065
+ "caribbean",
2066
+ "carob",
2067
+ "carolina",
2068
+ "carotene",
2069
+ "carrot",
2070
+ "carrots",
2071
+ "carved",
2072
+ "carving",
2073
+ "cas",
2074
+ "casaba",
2075
+ "cashew",
2076
+ "cashews",
2077
+ "casserole",
2078
+ "casseroles",
2079
+ "catappa",
2080
+ "cathartica",
2081
+ "cattle",
2082
+ "cauliflower",
2083
+ "cause",
2084
+ "caviar",
2085
+ "cavities",
2086
+ "cay",
2087
+ "cco",
2088
+ "ce>",
2089
+ "ced",
2090
+ "cedar",
2091
+ "celery",
2092
+ "celiac",
2093
+ "cell",
2094
+ "cells",
2095
+ "cellular",
2096
+ "cempedak",
2097
+ "centimeters",
2098
+ "central",
2099
+ "centuries",
2100
+ "century",
2101
+ "cer",
2102
+ "ceremonies",
2103
+ "cerrado",
2104
+ "certain",
2105
+ "ces",
2106
+ "ceviche",
2107
+ "ceylon",
2108
+ "ch.",
2109
+ "champagne",
2110
+ "chard",
2111
+ "chayote",
2112
+ "chayotes",
2113
+ "che",
2114
+ "cheese",
2115
+ "cheesecake",
2116
+ "cheeses",
2117
+ "chenet",
2118
+ "cherimoya",
2119
+ "cherries",
2120
+ "cherry",
2121
+ "chestnut",
2122
+ "chestnuts",
2123
+ "chewed",
2124
+ "chewiness",
2125
+ "chewy",
2126
+ "chicken",
2127
+ "chickpea",
2128
+ "chickpeas",
2129
+ "chicory",
2130
+ "chikoo",
2131
+ "childhood",
2132
+ "chilean",
2133
+ "chili",
2134
+ "chilled",
2135
+ "chilly",
2136
+ "china",
2137
+ "chinese",
2138
+ "chip",
2139
+ "chips",
2140
+ "chivda",
2141
+ "chives",
2142
+ "chocolate",
2143
+ "chocolatey",
2144
+ "choice",
2145
+ "chokeberries",
2146
+ "chokeberry",
2147
+ "chokecherries",
2148
+ "cholesterol",
2149
+ "chop",
2150
+ "chopped",
2151
+ "chorizo",
2152
+ "choy",
2153
+ "christmas",
2154
+ "christopher",
2155
+ "chunks",
2156
+ "chutney",
2157
+ "chutneys",
2158
+ "chy",
2159
+ "cid",
2160
+ "cider",
2161
+ "cilantro",
2162
+ "cime",
2163
+ "cinnamon",
2164
+ "circulation",
2165
+ "cis",
2166
+ "citron",
2167
+ "citrus",
2168
+ "citrusy",
2169
+ "cks",
2170
+ "cky",
2171
+ "classic",
2172
+ "claude",
2173
+ "cleared",
2174
+ "climate",
2175
+ "climates",
2176
+ "climbed",
2177
+ "climbers",
2178
+ "climbing",
2179
+ "closely",
2180
+ "cloudberry",
2181
+ "cloves",
2182
+ "cluster",
2183
+ "clusters",
2184
+ "co",
2185
+ "co.",
2186
+ "coa",
2187
+ "coast",
2188
+ "coastal",
2189
+ "cob",
2190
+ "cobbler",
2191
+ "cobblers",
2192
+ "coccoloba",
2193
+ "cocido",
2194
+ "cocktail",
2195
+ "cocktails",
2196
+ "cocoa",
2197
+ "coconut",
2198
+ "coconuts",
2199
+ "cocoplum",
2200
+ "cocos",
2201
+ "coffee",
2202
+ "colcannon",
2203
+ "cold",
2204
+ "colds",
2205
+ "coleslaw",
2206
+ "collard",
2207
+ "collected",
2208
+ "colo",
2209
+ "colo.",
2210
+ "colombia",
2211
+ "color",
2212
+ "colored",
2213
+ "colorful",
2214
+ "coloring",
2215
+ "colors",
2216
+ "columbus",
2217
+ "combination",
2218
+ "combine",
2219
+ "combines",
2220
+ "come",
2221
+ "comes",
2222
+ "comfort",
2223
+ "comforting",
2224
+ "comice",
2225
+ "commercial",
2226
+ "common",
2227
+ "commonly",
2228
+ "communities",
2229
+ "compared",
2230
+ "complements",
2231
+ "complex",
2232
+ "compote",
2233
+ "compound",
2234
+ "compounds",
2235
+ "con",
2236
+ "concentration",
2237
+ "condiment",
2238
+ "conditions",
2239
+ "cones",
2240
+ "confused",
2241
+ "congestion",
2242
+ "conifer",
2243
+ "coniferous",
2244
+ "conkerberry",
2245
+ "conn",
2246
+ "conn.",
2247
+ "conservation",
2248
+ "conserve",
2249
+ "considered",
2250
+ "constipation",
2251
+ "construction",
2252
+ "consumed",
2253
+ "consuming",
2254
+ "contain",
2255
+ "containers",
2256
+ "contains",
2257
+ "content",
2258
+ "control",
2259
+ "convenient",
2260
+ "cook",
2261
+ "cooked",
2262
+ "cookie",
2263
+ "cookies",
2264
+ "cooking",
2265
+ "cool",
2266
+ "cooler",
2267
+ "cooling",
2268
+ "coriander",
2269
+ "corn",
2270
+ "cornelian",
2271
+ "corner",
2272
+ "coronata",
2273
+ "corp",
2274
+ "corp.",
2275
+ "correctly",
2276
+ "cos",
2277
+ "cosmetics",
2278
+ "costa",
2279
+ "cot",
2280
+ "cotton",
2281
+ "coughs",
2282
+ "could",
2283
+ "countries",
2284
+ "courgette",
2285
+ "courgettes",
2286
+ "couscous",
2287
+ "cover",
2288
+ "covered",
2289
+ "coz",
2290
+ "coziness",
2291
+ "crabapple",
2292
+ "crabapples",
2293
+ "cracked",
2294
+ "cracker",
2295
+ "crackers",
2296
+ "cranberries",
2297
+ "cranberry",
2298
+ "crazy",
2299
+ "cream",
2300
+ "creamy",
2301
+ "create",
2302
+ "creeks",
2303
+ "crisp",
2304
+ "crispy",
2305
+ "criticized",
2306
+ "crookneck",
2307
+ "crop",
2308
+ "cross",
2309
+ "crosswise",
2310
+ "croutons",
2311
+ "crowberries",
2312
+ "crowberry",
2313
+ "crowded",
2314
+ "cruciferous",
2315
+ "crumb",
2316
+ "crumble",
2317
+ "crunch",
2318
+ "crunchy",
2319
+ "crushed",
2320
+ "crust",
2321
+ "crusty",
2322
+ "ct.",
2323
+ "cti",
2324
+ "cts",
2325
+ "cucumber",
2326
+ "cucumbers",
2327
+ "cudrang",
2328
+ "cudrania",
2329
+ "cuisine",
2330
+ "cuisines",
2331
+ "culinary",
2332
+ "cultivate",
2333
+ "cultivated",
2334
+ "cultivating",
2335
+ "cultivation",
2336
+ "culture",
2337
+ "cultures",
2338
+ "cumin",
2339
+ "cup",
2340
+ "cups",
2341
+ "cupuacu",
2342
+ "curd",
2343
+ "cured",
2344
+ "curious",
2345
+ "currant",
2346
+ "currants",
2347
+ "curries",
2348
+ "curry",
2349
+ "curuba",
2350
+ "curved",
2351
+ "cus",
2352
+ "custard",
2353
+ "cutting",
2354
+ "cuttings",
2355
+ "cuz",
2356
+ "cyanide",
2357
+ "c\u2019m",
2358
+ "d",
2359
+ "d)",
2360
+ "d,ddd",
2361
+ "d-",
2362
+ "d-)",
2363
+ "d-X",
2364
+ "d.",
2365
+ "d.c.",
2366
+ "d.d",
2367
+ "d.x",
2368
+ "dX",
2369
+ "d_d",
2370
+ "d_x",
2371
+ "daikon",
2372
+ "daily",
2373
+ "dak",
2374
+ "damage",
2375
+ "damson",
2376
+ "damsons",
2377
+ "dan",
2378
+ "dar",
2379
+ "dare",
2380
+ "dark",
2381
+ "darker",
2382
+ "darkness",
2383
+ "date",
2384
+ "dates",
2385
+ "davidson",
2386
+ "day",
2387
+ "days",
2388
+ "dd",
2389
+ "ddd",
2390
+ "ddddx",
2391
+ "dde",
2392
+ "dds",
2393
+ "ddx.x",
2394
+ "ddx.x.",
2395
+ "ddxx",
2396
+ "de",
2397
+ "dea",
2398
+ "dec",
2399
+ "dec.",
2400
+ "decadent",
2401
+ "decay",
2402
+ "decaying",
2403
+ "decided",
2404
+ "deciduous",
2405
+ "decorate",
2406
+ "decorated",
2407
+ "decorating",
2408
+ "decoration",
2409
+ "decorations",
2410
+ "decorative",
2411
+ "ded",
2412
+ "deep",
2413
+ "deeply",
2414
+ "deer",
2415
+ "deforestation",
2416
+ "dehydrator",
2417
+ "del",
2418
+ "del.",
2419
+ "delicacy",
2420
+ "delicate",
2421
+ "deliciosa",
2422
+ "delicious",
2423
+ "delightful",
2424
+ "den",
2425
+ "dense",
2426
+ "depending",
2427
+ "depth",
2428
+ "der",
2429
+ "derived",
2430
+ "des",
2431
+ "describe",
2432
+ "described",
2433
+ "desert",
2434
+ "design",
2435
+ "desk",
2436
+ "despite",
2437
+ "dessert",
2438
+ "desserts",
2439
+ "destination",
2440
+ "developed",
2441
+ "development",
2442
+ "dew",
2443
+ "dewberries",
2444
+ "dewberry",
2445
+ "dge",
2446
+ "di",
2447
+ "dia",
2448
+ "diabetes",
2449
+ "diarrhea",
2450
+ "dic",
2451
+ "diced",
2452
+ "did",
2453
+ "diet",
2454
+ "dietary",
2455
+ "diets",
2456
+ "different",
2457
+ "differently",
2458
+ "difficult",
2459
+ "difficulty",
2460
+ "digest",
2461
+ "digestibility",
2462
+ "digestion",
2463
+ "digestive",
2464
+ "dill",
2465
+ "dinner",
2466
+ "dip",
2467
+ "dipped",
2468
+ "dipping",
2469
+ "dips",
2470
+ "directly",
2471
+ "dis",
2472
+ "discovered",
2473
+ "discoverer",
2474
+ "disease",
2475
+ "diseases",
2476
+ "dish",
2477
+ "dishes",
2478
+ "display",
2479
+ "distinct",
2480
+ "distinctive",
2481
+ "distinctively",
2482
+ "diuretic",
2483
+ "diversifolia",
2484
+ "divided",
2485
+ "dka",
2486
+ "dle",
2487
+ "dm.",
2488
+ "dma",
2489
+ "do",
2490
+ "does",
2491
+ "dogs",
2492
+ "doin",
2493
+ "doin'",
2494
+ "doing",
2495
+ "doin\u2019",
2496
+ "don",
2497
+ "dong",
2498
+ "donggua",
2499
+ "dor",
2500
+ "dos",
2501
+ "doubah",
2502
+ "doum",
2503
+ "doux",
2504
+ "down",
2505
+ "dozens",
2506
+ "dr",
2507
+ "dr.",
2508
+ "dragon",
2509
+ "drained",
2510
+ "draining",
2511
+ "drank",
2512
+ "drawer",
2513
+ "dressing",
2514
+ "dressings",
2515
+ "dried",
2516
+ "drink",
2517
+ "drinking",
2518
+ "drinks",
2519
+ "drought",
2520
+ "dry",
2521
+ "duchesnea",
2522
+ "due",
2523
+ "dulcis",
2524
+ "dumplings",
2525
+ "durability",
2526
+ "durable",
2527
+ "durian",
2528
+ "during",
2529
+ "dx.x",
2530
+ "dx.x.",
2531
+ "dye",
2532
+ "dyes",
2533
+ "dysentery",
2534
+ "e",
2535
+ "e's",
2536
+ "e.",
2537
+ "e.g",
2538
+ "e.g.",
2539
+ "each",
2540
+ "ead",
2541
+ "eae",
2542
+ "eaf",
2543
+ "eal",
2544
+ "eam",
2545
+ "ean",
2546
+ "ear",
2547
+ "early",
2548
+ "earthy",
2549
+ "eas",
2550
+ "easier",
2551
+ "easily",
2552
+ "east",
2553
+ "easter",
2554
+ "eastern",
2555
+ "easy",
2556
+ "eat",
2557
+ "eaten",
2558
+ "eating",
2559
+ "eb.",
2560
+ "ebr",
2561
+ "ec.",
2562
+ "ece",
2563
+ "ech",
2564
+ "eck",
2565
+ "ecosystem",
2566
+ "ect",
2567
+ "ecuador",
2568
+ "edamame",
2569
+ "ede",
2570
+ "edge",
2571
+ "edges",
2572
+ "edible",
2573
+ "eds",
2574
+ "edy",
2575
+ "eed",
2576
+ "eek",
2577
+ "eel",
2578
+ "eem",
2579
+ "een",
2580
+ "eep",
2581
+ "eer",
2582
+ "ees",
2583
+ "eet",
2584
+ "effect",
2585
+ "effects",
2586
+ "effort",
2587
+ "efforts",
2588
+ "eft",
2589
+ "egg",
2590
+ "eggfruit",
2591
+ "eggnog",
2592
+ "eggplant",
2593
+ "eggplants",
2594
+ "eggs",
2595
+ "egs",
2596
+ "egyptian",
2597
+ "eia",
2598
+ "eight",
2599
+ "eim",
2600
+ "ein",
2601
+ "eir",
2602
+ "eks",
2603
+ "el.",
2604
+ "eld",
2605
+ "elderberries",
2606
+ "elderberry",
2607
+ "elderflower",
2608
+ "elegant",
2609
+ "elephant",
2610
+ "elf",
2611
+ "ell",
2612
+ "elo",
2613
+ "elongated",
2614
+ "elp",
2615
+ "els",
2616
+ "ely",
2617
+ "em",
2618
+ "emblem",
2619
+ "emblic",
2620
+ "eme",
2621
+ "emping",
2622
+ "ems",
2623
+ "emu",
2624
+ "emus",
2625
+ "en",
2626
+ "en.",
2627
+ "ena",
2628
+ "encourage",
2629
+ "end",
2630
+ "endangered",
2631
+ "endive",
2632
+ "endives",
2633
+ "ene",
2634
+ "energy",
2635
+ "english",
2636
+ "enhance",
2637
+ "enjoy",
2638
+ "enjoyed",
2639
+ "enjoyment",
2640
+ "enn",
2641
+ "eno",
2642
+ "enough",
2643
+ "ens",
2644
+ "ent",
2645
+ "entawak",
2646
+ "entertaining",
2647
+ "enthusiasts",
2648
+ "entrees",
2649
+ "environment",
2650
+ "enzyme",
2651
+ "enzymes",
2652
+ "eon",
2653
+ "ep.",
2654
+ "epa",
2655
+ "ept",
2656
+ "era",
2657
+ "erb",
2658
+ "erd",
2659
+ "ere",
2660
+ "erg",
2661
+ "erm",
2662
+ "ern",
2663
+ "ero",
2664
+ "erosion",
2665
+ "ers",
2666
+ "ert",
2667
+ "ery",
2668
+ "escarole",
2669
+ "ese",
2670
+ "esh",
2671
+ "esk",
2672
+ "especially",
2673
+ "ess",
2674
+ "essential",
2675
+ "est",
2676
+ "eta",
2677
+ "ethiopia",
2678
+ "etrog",
2679
+ "ets",
2680
+ "ett",
2681
+ "ety",
2682
+ "eur",
2683
+ "europe",
2684
+ "european",
2685
+ "ev.",
2686
+ "eve",
2687
+ "even",
2688
+ "evening",
2689
+ "evenings",
2690
+ "events",
2691
+ "ever",
2692
+ "evergreen",
2693
+ "ewa",
2694
+ "ews",
2695
+ "ewy",
2696
+ "examples",
2697
+ "excellent",
2698
+ "exfoliant",
2699
+ "exotic",
2700
+ "expensive",
2701
+ "experience",
2702
+ "explorer",
2703
+ "export",
2704
+ "ext",
2705
+ "exterior",
2706
+ "extra",
2707
+ "extract",
2708
+ "extracted",
2709
+ "extreme",
2710
+ "extremely",
2711
+ "eye",
2712
+ "eyes",
2713
+ "eys",
2714
+ "eze",
2715
+ "e\u00f1o",
2716
+ "e\u2019s",
2717
+ "f",
2718
+ "f.",
2719
+ "fabada",
2720
+ "fabrics",
2721
+ "face",
2722
+ "fall",
2723
+ "families",
2724
+ "family",
2725
+ "famous",
2726
+ "fancy",
2727
+ "far",
2728
+ "farm",
2729
+ "farmer",
2730
+ "farmers",
2731
+ "farming",
2732
+ "fas",
2733
+ "fast",
2734
+ "fat",
2735
+ "fats",
2736
+ "fava",
2737
+ "favorite",
2738
+ "features",
2739
+ "feb",
2740
+ "feb.",
2741
+ "fed",
2742
+ "fee",
2743
+ "feed",
2744
+ "feet",
2745
+ "feijoa",
2746
+ "fell",
2747
+ "fennel",
2748
+ "fer",
2749
+ "fermented",
2750
+ "fertility",
2751
+ "fertilizer",
2752
+ "festivals",
2753
+ "festive",
2754
+ "feta",
2755
+ "fetal",
2756
+ "fever",
2757
+ "few",
2758
+ "ffa",
2759
+ "fiber",
2760
+ "fibrous",
2761
+ "fic",
2762
+ "ficus",
2763
+ "field",
2764
+ "fields",
2765
+ "fiery",
2766
+ "fig",
2767
+ "fight",
2768
+ "figs",
2769
+ "fiji",
2770
+ "filipino",
2771
+ "filled",
2772
+ "filling",
2773
+ "fills",
2774
+ "finally",
2775
+ "find",
2776
+ "finely",
2777
+ "finger",
2778
+ "fingers",
2779
+ "fir",
2780
+ "firewood",
2781
+ "firm",
2782
+ "first",
2783
+ "fish",
2784
+ "fitness",
2785
+ "five",
2786
+ "fixing",
2787
+ "fla",
2788
+ "fla.",
2789
+ "flags",
2790
+ "flaky",
2791
+ "flattened",
2792
+ "flavonoids",
2793
+ "flavor",
2794
+ "flavored",
2795
+ "flavorful",
2796
+ "flavoring",
2797
+ "flavors",
2798
+ "flesh",
2799
+ "fleshy",
2800
+ "flexuosa",
2801
+ "floodplains",
2802
+ "flooring",
2803
+ "floral",
2804
+ "florets",
2805
+ "florida",
2806
+ "flour",
2807
+ "flow",
2808
+ "flower",
2809
+ "flowering",
2810
+ "flowers",
2811
+ "flu",
2812
+ "focused",
2813
+ "folate",
2814
+ "foliage",
2815
+ "folklore",
2816
+ "food",
2817
+ "foodies",
2818
+ "foods",
2819
+ "for",
2820
+ "foragers",
2821
+ "forest",
2822
+ "forested",
2823
+ "forests",
2824
+ "form",
2825
+ "found",
2826
+ "fragaria",
2827
+ "fragrance",
2828
+ "fragrant",
2829
+ "frangipane",
2830
+ "frank",
2831
+ "free",
2832
+ "freeze",
2833
+ "french",
2834
+ "frequently",
2835
+ "fresh",
2836
+ "freshen",
2837
+ "fresheners",
2838
+ "freshly",
2839
+ "freshness",
2840
+ "fridge",
2841
+ "fried",
2842
+ "fries",
2843
+ "frittatas",
2844
+ "fritters",
2845
+ "from",
2846
+ "front",
2847
+ "frost",
2848
+ "frozen",
2849
+ "fruit",
2850
+ "fruits",
2851
+ "fruity",
2852
+ "fry",
2853
+ "frying",
2854
+ "ful",
2855
+ "full",
2856
+ "fully",
2857
+ "fun",
2858
+ "function",
2859
+ "fungicide",
2860
+ "fur",
2861
+ "furniture",
2862
+ "fuzzy",
2863
+ "g",
2864
+ "g.",
2865
+ "ga",
2866
+ "ga.",
2867
+ "gal",
2868
+ "gala",
2869
+ "galendar",
2870
+ "galia",
2871
+ "gan",
2872
+ "gandaria",
2873
+ "gar",
2874
+ "garbanzo",
2875
+ "garden",
2876
+ "gardeners",
2877
+ "gardening",
2878
+ "gardens",
2879
+ "garlic",
2880
+ "garnish",
2881
+ "gatherings",
2882
+ "gave",
2883
+ "ged",
2884
+ "gen",
2885
+ "gen.",
2886
+ "genip",
2887
+ "genipap",
2888
+ "gentle",
2889
+ "genus",
2890
+ "ger",
2891
+ "german",
2892
+ "ges",
2893
+ "gesture",
2894
+ "get",
2895
+ "gets",
2896
+ "getting",
2897
+ "ggs",
2898
+ "ghana",
2899
+ "ghanoush",
2900
+ "ghs",
2901
+ "ght",
2902
+ "giant",
2903
+ "gic",
2904
+ "ginger",
2905
+ "give",
2906
+ "glass",
2907
+ "glaze",
2908
+ "gle",
2909
+ "gli",
2910
+ "glossy",
2911
+ "gluten",
2912
+ "gly",
2913
+ "gna",
2914
+ "gne",
2915
+ "gnemon",
2916
+ "gnetum",
2917
+ "gni",
2918
+ "go",
2919
+ "goat",
2920
+ "goats",
2921
+ "gobi",
2922
+ "godde",
2923
+ "gods",
2924
+ "goes",
2925
+ "goin",
2926
+ "goin'",
2927
+ "going",
2928
+ "goin\u2019",
2929
+ "goji",
2930
+ "gold",
2931
+ "golden",
2932
+ "gon",
2933
+ "gonna",
2934
+ "goobers",
2935
+ "good",
2936
+ "goods",
2937
+ "gooseberries",
2938
+ "gooseberry",
2939
+ "gos",
2940
+ "got",
2941
+ "goumi",
2942
+ "gourd",
2943
+ "gourds",
2944
+ "gourmet",
2945
+ "gout",
2946
+ "gov",
2947
+ "gov.",
2948
+ "grain",
2949
+ "grains",
2950
+ "grainy",
2951
+ "granadilla",
2952
+ "grande",
2953
+ "grandma",
2954
+ "grandmother",
2955
+ "granny",
2956
+ "granola",
2957
+ "grape",
2958
+ "grapefruit",
2959
+ "grapes",
2960
+ "grapple",
2961
+ "grated",
2962
+ "gratin",
2963
+ "graviola",
2964
+ "gravy",
2965
+ "gray",
2966
+ "graying",
2967
+ "grayish",
2968
+ "great",
2969
+ "greece",
2970
+ "greek",
2971
+ "green",
2972
+ "greengage",
2973
+ "greenish",
2974
+ "greens",
2975
+ "grenadilla",
2976
+ "grey",
2977
+ "greying",
2978
+ "grill",
2979
+ "grilled",
2980
+ "grilling",
2981
+ "grits",
2982
+ "gritty",
2983
+ "grocery",
2984
+ "ground",
2985
+ "groundnuts",
2986
+ "grow",
2987
+ "growers",
2988
+ "growing",
2989
+ "grown",
2990
+ "grows",
2991
+ "growth",
2992
+ "gth",
2993
+ "gua",
2994
+ "guacamole",
2995
+ "guanabana",
2996
+ "guan\u00e1bana",
2997
+ "guarana",
2998
+ "guava",
2999
+ "gue",
3000
+ "guests",
3001
+ "guilty",
3002
+ "gular",
3003
+ "gum",
3004
+ "gun",
3005
+ "guo",
3006
+ "gus",
3007
+ "h",
3008
+ "h.",
3009
+ "habenero",
3010
+ "habitat",
3011
+ "hackberry",
3012
+ "had",
3013
+ "hai",
3014
+ "hair",
3015
+ "hairy",
3016
+ "halloween",
3017
+ "halves",
3018
+ "ham",
3019
+ "han",
3020
+ "hand",
3021
+ "handful",
3022
+ "handled",
3023
+ "hangovers",
3024
+ "hard",
3025
+ "hardy",
3026
+ "harm",
3027
+ "harsh",
3028
+ "harvest",
3029
+ "harvested",
3030
+ "harvesting",
3031
+ "has",
3032
+ "hass",
3033
+ "hat",
3034
+ "have",
3035
+ "havin",
3036
+ "havin'",
3037
+ "having",
3038
+ "havin\u2019",
3039
+ "haw",
3040
+ "hawaii",
3041
+ "hawaiian",
3042
+ "hawthorn",
3043
+ "he",
3044
+ "he's",
3045
+ "hea",
3046
+ "head",
3047
+ "headache",
3048
+ "headaches",
3049
+ "heads",
3050
+ "health",
3051
+ "healthy",
3052
+ "heard",
3053
+ "heart",
3054
+ "heartburn",
3055
+ "hearty",
3056
+ "heat",
3057
+ "hed",
3058
+ "hedge",
3059
+ "hedgerows",
3060
+ "hee",
3061
+ "height",
3062
+ "help",
3063
+ "helped",
3064
+ "helps",
3065
+ "hem",
3066
+ "hemisphere",
3067
+ "hen",
3068
+ "her",
3069
+ "herb",
3070
+ "herbaceous",
3071
+ "herbal",
3072
+ "herbs",
3073
+ "hes",
3074
+ "hew",
3075
+ "hey",
3076
+ "he\u2019s",
3077
+ "hia",
3078
+ "hid",
3079
+ "hie",
3080
+ "high",
3081
+ "higher",
3082
+ "highly",
3083
+ "hike",
3084
+ "hikers",
3085
+ "hiking",
3086
+ "hin",
3087
+ "hint",
3088
+ "hio",
3089
+ "hip",
3090
+ "his",
3091
+ "historical",
3092
+ "history",
3093
+ "hives",
3094
+ "hly",
3095
+ "hog",
3096
+ "holiday",
3097
+ "holidays",
3098
+ "hollow",
3099
+ "holly",
3100
+ "home",
3101
+ "homemade",
3102
+ "hominy",
3103
+ "honey",
3104
+ "honeycomb",
3105
+ "honeydew",
3106
+ "honeysuckle",
3107
+ "hop",
3108
+ "horned",
3109
+ "horse",
3110
+ "horseradish",
3111
+ "hospitality",
3112
+ "hot",
3113
+ "hottest",
3114
+ "house",
3115
+ "households",
3116
+ "houseplant",
3117
+ "hovenia",
3118
+ "how",
3119
+ "how's",
3120
+ "how\u2019s",
3121
+ "hoy",
3122
+ "hts",
3123
+ "hua",
3124
+ "huckleberries",
3125
+ "huckleberry",
3126
+ "huge",
3127
+ "huito",
3128
+ "humans",
3129
+ "humid",
3130
+ "hummus",
3131
+ "hundred",
3132
+ "hundreds",
3133
+ "hunger",
3134
+ "hup",
3135
+ "hus",
3136
+ "husks",
3137
+ "hyacinth",
3138
+ "hybrid",
3139
+ "hydrating",
3140
+ "hydration",
3141
+ "hydroponically",
3142
+ "hypertension",
3143
+ "i",
3144
+ "i.",
3145
+ "i.e",
3146
+ "i.e.",
3147
+ "ia",
3148
+ "ia.",
3149
+ "iac",
3150
+ "ial",
3151
+ "ian",
3152
+ "iar",
3153
+ "ibe",
3154
+ "ica",
3155
+ "ice",
3156
+ "iceberg",
3157
+ "iced",
3158
+ "ich",
3159
+ "ick",
3160
+ "ico",
3161
+ "iconic",
3162
+ "ics",
3163
+ "icy",
3164
+ "id",
3165
+ "id.",
3166
+ "ida",
3167
+ "ide",
3168
+ "ideal",
3169
+ "identified",
3170
+ "ido",
3171
+ "ids",
3172
+ "ied",
3173
+ "ier",
3174
+ "ies",
3175
+ "iet",
3176
+ "if",
3177
+ "if.",
3178
+ "ife",
3179
+ "igh",
3180
+ "ign",
3181
+ "igs",
3182
+ "iji",
3183
+ "ika",
3184
+ "ike",
3185
+ "iki",
3186
+ "iky",
3187
+ "ila",
3188
+ "ild",
3189
+ "ile",
3190
+ "ili",
3191
+ "ilk",
3192
+ "ill",
3193
+ "ill.",
3194
+ "illawarra",
3195
+ "ils",
3196
+ "ily",
3197
+ "ima",
3198
+ "ime",
3199
+ "immune",
3200
+ "immunity",
3201
+ "imp",
3202
+ "impact",
3203
+ "importance",
3204
+ "important",
3205
+ "imported",
3206
+ "impressed",
3207
+ "impressive",
3208
+ "improve",
3209
+ "improving",
3210
+ "imu",
3211
+ "in",
3212
+ "in'",
3213
+ "ina",
3214
+ "inc",
3215
+ "inc.",
3216
+ "incas",
3217
+ "inches",
3218
+ "include",
3219
+ "includes",
3220
+ "including",
3221
+ "increased",
3222
+ "increasingly",
3223
+ "ind",
3224
+ "ind.",
3225
+ "india",
3226
+ "indian",
3227
+ "indiana",
3228
+ "indica",
3229
+ "indigenous",
3230
+ "individual",
3231
+ "indonesia",
3232
+ "indonesian",
3233
+ "indoor",
3234
+ "indoors",
3235
+ "indulgent",
3236
+ "industry",
3237
+ "ine",
3238
+ "inedible",
3239
+ "infected",
3240
+ "infections",
3241
+ "inflammation",
3242
+ "inflammatory",
3243
+ "infused",
3244
+ "infusing",
3245
+ "ing",
3246
+ "ingredient",
3247
+ "ingredients",
3248
+ "ini",
3249
+ "ink",
3250
+ "inn",
3251
+ "ino",
3252
+ "ins",
3253
+ "insect",
3254
+ "insecticides",
3255
+ "insects",
3256
+ "inside",
3257
+ "insomnia",
3258
+ "instantly",
3259
+ "instead",
3260
+ "instruments",
3261
+ "int",
3262
+ "intake",
3263
+ "intense",
3264
+ "intensive",
3265
+ "interest",
3266
+ "interesting",
3267
+ "interior",
3268
+ "into",
3269
+ "intolerance",
3270
+ "introduced",
3271
+ "inuit",
3272
+ "invasive",
3273
+ "invigorating",
3274
+ "iny",
3275
+ "in\u2019",
3276
+ "ion",
3277
+ "ior",
3278
+ "ipe",
3279
+ "ips",
3280
+ "ire",
3281
+ "irish",
3282
+ "irm",
3283
+ "iron",
3284
+ "irritation",
3285
+ "irritations",
3286
+ "irs",
3287
+ "iry",
3288
+ "is",
3289
+ "is.",
3290
+ "ise",
3291
+ "ish",
3292
+ "isk",
3293
+ "island",
3294
+ "islands",
3295
+ "isp",
3296
+ "israel",
3297
+ "iss",
3298
+ "issues",
3299
+ "ist",
3300
+ "it",
3301
+ "it's",
3302
+ "ita",
3303
+ "italian",
3304
+ "italy",
3305
+ "itching",
3306
+ "ite",
3307
+ "item",
3308
+ "ith",
3309
+ "ito",
3310
+ "its",
3311
+ "ity",
3312
+ "it\u2019s",
3313
+ "ium",
3314
+ "ive",
3315
+ "iwi",
3316
+ "iz.",
3317
+ "ize",
3318
+ "izo",
3319
+ "j",
3320
+ "j.",
3321
+ "jaboticaba",
3322
+ "jabuticaba",
3323
+ "jack",
3324
+ "jackfruit",
3325
+ "jagged",
3326
+ "jagua",
3327
+ "jak",
3328
+ "jalapeno",
3329
+ "jalapenos",
3330
+ "jalape\u00f1o",
3331
+ "jam",
3332
+ "jamaica",
3333
+ "jamaican",
3334
+ "jambul",
3335
+ "jams",
3336
+ "jan",
3337
+ "jan.",
3338
+ "japan",
3339
+ "japanese",
3340
+ "jar",
3341
+ "jasmine",
3342
+ "jatoba",
3343
+ "java",
3344
+ "jellies",
3345
+ "jelly",
3346
+ "jenipapo",
3347
+ "jersey",
3348
+ "jewish",
3349
+ "jicama",
3350
+ "jicamas",
3351
+ "joa",
3352
+ "jocote",
3353
+ "jocotes",
3354
+ "johey",
3355
+ "jor",
3356
+ "jos",
3357
+ "joshua",
3358
+ "joy",
3359
+ "jr",
3360
+ "jr.",
3361
+ "juice",
3362
+ "juiced",
3363
+ "juices",
3364
+ "juicy",
3365
+ "jujube",
3366
+ "jujubes",
3367
+ "jul",
3368
+ "jul.",
3369
+ "jun",
3370
+ "jun.",
3371
+ "june",
3372
+ "just",
3373
+ "k",
3374
+ "k.",
3375
+ "kaffir",
3376
+ "kahikatea",
3377
+ "kakadu",
3378
+ "kale",
3379
+ "kales",
3380
+ "kan",
3381
+ "kan.",
3382
+ "kandis",
3383
+ "kangaroo",
3384
+ "kans",
3385
+ "kans.",
3386
+ "karkalla",
3387
+ "ked",
3388
+ "kee",
3389
+ "keep",
3390
+ "ken",
3391
+ "keppel",
3392
+ "ker",
3393
+ "kernels",
3394
+ "kes",
3395
+ "ket",
3396
+ "ketchup",
3397
+ "key",
3398
+ "keys",
3399
+ "kick",
3400
+ "kidney",
3401
+ "kie",
3402
+ "kin",
3403
+ "kitchen",
3404
+ "kiwano",
3405
+ "kiwi",
3406
+ "kiwifruit",
3407
+ "kiwis",
3408
+ "kla",
3409
+ "kle",
3410
+ "kly",
3411
+ "knife",
3412
+ "know",
3413
+ "known",
3414
+ "kohlrabi",
3415
+ "kohlrabis",
3416
+ "kon",
3417
+ "koo",
3418
+ "korea",
3419
+ "korean",
3420
+ "kot",
3421
+ "kra",
3422
+ "kumquat",
3423
+ "kumquats",
3424
+ "kundong",
3425
+ "kundongs",
3426
+ "kutjera",
3427
+ "kutjeras",
3428
+ "ky",
3429
+ "ky.",
3430
+ "l",
3431
+ "l.",
3432
+ "la",
3433
+ "la.",
3434
+ "lab",
3435
+ "lablab",
3436
+ "labor",
3437
+ "lack",
3438
+ "lad",
3439
+ "lady",
3440
+ "lak",
3441
+ "lal",
3442
+ "lamb",
3443
+ "lameness",
3444
+ "land",
3445
+ "landscape",
3446
+ "landscapers",
3447
+ "landscapes",
3448
+ "landscaping",
3449
+ "langsat",
3450
+ "lanka",
3451
+ "lantern",
3452
+ "lanterns",
3453
+ "lanzones",
3454
+ "lapsi",
3455
+ "lar",
3456
+ "large",
3457
+ "larger",
3458
+ "las",
3459
+ "lasagna",
3460
+ "last",
3461
+ "lasts",
3462
+ "late",
3463
+ "later",
3464
+ "latin",
3465
+ "latte",
3466
+ "law",
3467
+ "lay",
3468
+ "layer",
3469
+ "lbs",
3470
+ "lds",
3471
+ "leadtree",
3472
+ "leaf",
3473
+ "leafs",
3474
+ "leafy",
3475
+ "leather",
3476
+ "leathery",
3477
+ "leaves",
3478
+ "led",
3479
+ "leek",
3480
+ "leeks",
3481
+ "left",
3482
+ "legume",
3483
+ "legumes",
3484
+ "lem",
3485
+ "lemon",
3486
+ "lemons",
3487
+ "lemony",
3488
+ "length",
3489
+ "lentil",
3490
+ "lentils",
3491
+ "ler",
3492
+ "les",
3493
+ "less",
3494
+ "let",
3495
+ "let's",
3496
+ "lettuce",
3497
+ "let\u2019s",
3498
+ "leucaena",
3499
+ "level",
3500
+ "levels",
3501
+ "lex",
3502
+ "ley",
3503
+ "lfa",
3504
+ "lia",
3505
+ "lic",
3506
+ "licorice",
3507
+ "lif",
3508
+ "life",
3509
+ "lifespan",
3510
+ "light",
3511
+ "lighter",
3512
+ "lightly",
3513
+ "lightweight",
3514
+ "like",
3515
+ "liked",
3516
+ "lillipilli",
3517
+ "lilly",
3518
+ "lima",
3519
+ "lime",
3520
+ "limes",
3521
+ "lin",
3522
+ "lingonberries",
3523
+ "lingonberry",
3524
+ "linked",
3525
+ "liqueur",
3526
+ "liqueurs",
3527
+ "liquor",
3528
+ "lis",
3529
+ "lit",
3530
+ "little",
3531
+ "live",
3532
+ "liver",
3533
+ "livestock",
3534
+ "living",
3535
+ "lks",
3536
+ "ll",
3537
+ "ll.",
3538
+ "lla",
3539
+ "lle",
3540
+ "lli",
3541
+ "llo",
3542
+ "lls",
3543
+ "lly",
3544
+ "lms",
3545
+ "lo",
3546
+ "lo.",
3547
+ "lobed",
3548
+ "local",
3549
+ "loganberries",
3550
+ "loganberry",
3551
+ "logos",
3552
+ "lon",
3553
+ "long",
3554
+ "longan",
3555
+ "longans",
3556
+ "longevity",
3557
+ "loo",
3558
+ "look",
3559
+ "looked",
3560
+ "looking",
3561
+ "loquat",
3562
+ "loquats",
3563
+ "lor",
3564
+ "los",
3565
+ "loss",
3566
+ "lot",
3567
+ "lots",
3568
+ "love",
3569
+ "loved",
3570
+ "lovin",
3571
+ "lovin'",
3572
+ "loving",
3573
+ "lovin\u2019",
3574
+ "low",
3575
+ "lower",
3576
+ "lps",
3577
+ "lpy",
3578
+ "lsa",
3579
+ "lso",
3580
+ "ltd",
3581
+ "ltd.",
3582
+ "lth",
3583
+ "lty",
3584
+ "luck",
3585
+ "lucuma",
3586
+ "lucumas",
3587
+ "lue",
3588
+ "luffa",
3589
+ "luffas",
3590
+ "lulo",
3591
+ "lulos",
3592
+ "lum",
3593
+ "lunch",
3594
+ "lunchboxes",
3595
+ "luxury",
3596
+ "lychee",
3597
+ "lychees",
3598
+ "lycopene",
3599
+ "m",
3600
+ "m.",
3601
+ "ma'am",
3602
+ "mabolo",
3603
+ "macadamia",
3604
+ "madagascar",
3605
+ "madam",
3606
+ "made",
3607
+ "magnesium",
3608
+ "main",
3609
+ "maintained",
3610
+ "maintaining",
3611
+ "maintenance",
3612
+ "maitake",
3613
+ "major",
3614
+ "make",
3615
+ "makes",
3616
+ "making",
3617
+ "makrut",
3618
+ "mal",
3619
+ "malanga",
3620
+ "malay",
3621
+ "malaysia",
3622
+ "malaysian",
3623
+ "mamey",
3624
+ "mammals",
3625
+ "mamoncillo",
3626
+ "man",
3627
+ "management",
3628
+ "mandarin",
3629
+ "mandarins",
3630
+ "mandrake",
3631
+ "manganese",
3632
+ "mango",
3633
+ "mangoes",
3634
+ "mangos",
3635
+ "mangosteen",
3636
+ "manila",
3637
+ "manoao",
3638
+ "manoaos",
3639
+ "many",
3640
+ "manzana",
3641
+ "maple",
3642
+ "mar",
3643
+ "mar.",
3644
+ "marang",
3645
+ "marangs",
3646
+ "maraschino",
3647
+ "marinade",
3648
+ "marinades",
3649
+ "marinated",
3650
+ "marjoram",
3651
+ "market",
3652
+ "markets",
3653
+ "marmalade",
3654
+ "marula",
3655
+ "mas",
3656
+ "mashed",
3657
+ "mass",
3658
+ "mass.",
3659
+ "massive",
3660
+ "material",
3661
+ "materials",
3662
+ "mats",
3663
+ "mature",
3664
+ "may",
3665
+ "mayapple",
3666
+ "mayapples",
3667
+ "mayhaw",
3668
+ "mayhaws",
3669
+ "mayonnaise",
3670
+ "maypop",
3671
+ "maypops",
3672
+ "ma\u2019am",
3673
+ "mba",
3674
+ "mbi",
3675
+ "mbs",
3676
+ "mcintosh",
3677
+ "md",
3678
+ "md.",
3679
+ "me",
3680
+ "meadows",
3681
+ "meal",
3682
+ "meals",
3683
+ "meat",
3684
+ "meats",
3685
+ "meaty",
3686
+ "med",
3687
+ "medicinal",
3688
+ "medicine",
3689
+ "medicines",
3690
+ "medieval",
3691
+ "mediterranean",
3692
+ "medium",
3693
+ "medlar",
3694
+ "medlars",
3695
+ "meg",
3696
+ "mei",
3697
+ "mel",
3698
+ "melinjo",
3699
+ "melinjos",
3700
+ "mellows",
3701
+ "melon",
3702
+ "melons",
3703
+ "member",
3704
+ "membrillo",
3705
+ "mental",
3706
+ "mer",
3707
+ "merlot",
3708
+ "mes",
3709
+ "mesoamerica",
3710
+ "messrs",
3711
+ "messrs.",
3712
+ "met",
3713
+ "meter",
3714
+ "meters",
3715
+ "mexican",
3716
+ "mexico",
3717
+ "mey",
3718
+ "meyer",
3719
+ "mia",
3720
+ "mic",
3721
+ "mich",
3722
+ "mich.",
3723
+ "michigan",
3724
+ "mid",
3725
+ "middle",
3726
+ "midge",
3727
+ "midyim",
3728
+ "might",
3729
+ "mild",
3730
+ "milder",
3731
+ "mildew",
3732
+ "milk",
3733
+ "milkshake",
3734
+ "min",
3735
+ "mind",
3736
+ "minerals",
3737
+ "miniature",
3738
+ "minimal",
3739
+ "minn",
3740
+ "minn.",
3741
+ "mint",
3742
+ "minutes",
3743
+ "miss",
3744
+ "miss.",
3745
+ "mix",
3746
+ "mixed",
3747
+ "mixes",
3748
+ "mixture",
3749
+ "mla",
3750
+ "mme",
3751
+ "mo",
3752
+ "mo.",
3753
+ "mock",
3754
+ "mocktails",
3755
+ "moderation",
3756
+ "mofongo",
3757
+ "mogrosides",
3758
+ "moist",
3759
+ "moisture",
3760
+ "moisturize",
3761
+ "moisturizer",
3762
+ "moisturizing",
3763
+ "molasses",
3764
+ "mom",
3765
+ "mombin",
3766
+ "mon",
3767
+ "monkey",
3768
+ "monounsaturated",
3769
+ "monstera",
3770
+ "mont",
3771
+ "mont.",
3772
+ "months",
3773
+ "mood",
3774
+ "more",
3775
+ "morels",
3776
+ "morinda",
3777
+ "morning",
3778
+ "morocco",
3779
+ "most",
3780
+ "mostly",
3781
+ "moths",
3782
+ "mountain",
3783
+ "mountainous",
3784
+ "mountains",
3785
+ "moussaka",
3786
+ "mouthwashes",
3787
+ "mozzarella",
3788
+ "mpy",
3789
+ "mr",
3790
+ "mr.",
3791
+ "mrs",
3792
+ "mrs.",
3793
+ "ms",
3794
+ "ms.",
3795
+ "mt",
3796
+ "mt.",
3797
+ "mth",
3798
+ "much",
3799
+ "muffins",
3800
+ "mulberries",
3801
+ "mulberry",
3802
+ "multiple",
3803
+ "munching",
3804
+ "mundu",
3805
+ "mung",
3806
+ "muntries",
3807
+ "mus",
3808
+ "muscles",
3809
+ "mushroom",
3810
+ "mushrooms",
3811
+ "musical",
3812
+ "muskmelon",
3813
+ "muskmelons",
3814
+ "musky",
3815
+ "must",
3816
+ "mustard",
3817
+ "my",
3818
+ "myrtaceae",
3819
+ "myrtle",
3820
+ "mythology",
3821
+ "n",
3822
+ "n's",
3823
+ "n't",
3824
+ "n.",
3825
+ "n.c.",
3826
+ "n.d.",
3827
+ "n.h.",
3828
+ "n.j.",
3829
+ "n.m.",
3830
+ "n.y.",
3831
+ "na",
3832
+ "nageia",
3833
+ "nal",
3834
+ "nam",
3835
+ "name",
3836
+ "named",
3837
+ "names",
3838
+ "nance",
3839
+ "nannyberry",
3840
+ "nap",
3841
+ "napa",
3842
+ "naranja",
3843
+ "naranjilla",
3844
+ "narrow",
3845
+ "nas",
3846
+ "nashi",
3847
+ "national",
3848
+ "native",
3849
+ "natural",
3850
+ "naturally",
3851
+ "nature",
3852
+ "nausea",
3853
+ "nay",
3854
+ "nc.",
3855
+ "nce",
3856
+ "nch",
3857
+ "nct",
3858
+ "ncy",
3859
+ "nd.",
3860
+ "nda",
3861
+ "nde",
3862
+ "nds",
3863
+ "ndu",
3864
+ "ndy",
3865
+ "nea",
3866
+ "near",
3867
+ "nearby",
3868
+ "neb",
3869
+ "neb.",
3870
+ "nebr",
3871
+ "nebr.",
3872
+ "neck",
3873
+ "nectar",
3874
+ "nectarine",
3875
+ "nectarines",
3876
+ "ned",
3877
+ "need",
3878
+ "needed",
3879
+ "needle",
3880
+ "needles",
3881
+ "needs",
3882
+ "neem",
3883
+ "neighbor",
3884
+ "nel",
3885
+ "nepal",
3886
+ "nepalese",
3887
+ "ner",
3888
+ "nerves",
3889
+ "nes",
3890
+ "nesting",
3891
+ "net",
3892
+ "nev",
3893
+ "nev.",
3894
+ "never",
3895
+ "new",
3896
+ "next",
3897
+ "ney",
3898
+ "nga",
3899
+ "nge",
3900
+ "ngi",
3901
+ "ngo",
3902
+ "ngs",
3903
+ "ngu",
3904
+ "ngy",
3905
+ "nha",
3906
+ "nia",
3907
+ "nic",
3908
+ "nicaragua",
3909
+ "nice",
3910
+ "night",
3911
+ "nights",
3912
+ "nin",
3913
+ "nip",
3914
+ "nis",
3915
+ "nitrates",
3916
+ "nitrogen",
3917
+ "nixtamal",
3918
+ "nja",
3919
+ "njo",
3920
+ "nka",
3921
+ "nks",
3922
+ "nly",
3923
+ "nn.",
3924
+ "nny",
3925
+ "noa",
3926
+ "nog",
3927
+ "noir",
3928
+ "non",
3929
+ "noni",
3930
+ "noodles",
3931
+ "north",
3932
+ "northern",
3933
+ "northwest",
3934
+ "nos",
3935
+ "not",
3936
+ "nothin",
3937
+ "nothin'",
3938
+ "nothing",
3939
+ "nothin\u2019",
3940
+ "nourishing",
3941
+ "nov",
3942
+ "nov.",
3943
+ "now",
3944
+ "noxious",
3945
+ "ns.",
3946
+ "nse",
3947
+ "nst",
3948
+ "nt",
3949
+ "nt.",
3950
+ "nth",
3951
+ "nti",
3952
+ "nto",
3953
+ "nts",
3954
+ "nty",
3955
+ "nucifera",
3956
+ "nuff",
3957
+ "nuisance",
3958
+ "numerous",
3959
+ "nungu",
3960
+ "nus",
3961
+ "nut",
3962
+ "nuthin",
3963
+ "nuthin'",
3964
+ "nuthin\u2019",
3965
+ "nutmeg",
3966
+ "nutmegs",
3967
+ "nutrient",
3968
+ "nutrients",
3969
+ "nutrition",
3970
+ "nutritional",
3971
+ "nutritious",
3972
+ "nuts",
3973
+ "nutty",
3974
+ "nzo",
3975
+ "n\u2019s",
3976
+ "n\u2019t",
3977
+ "o",
3978
+ "o'clock",
3979
+ "o'odham",
3980
+ "o's",
3981
+ "o.",
3982
+ "o.0",
3983
+ "o.O",
3984
+ "o.o",
3985
+ "o_0",
3986
+ "o_O",
3987
+ "o_o",
3988
+ "oad",
3989
+ "oak",
3990
+ "oao",
3991
+ "oasis",
3992
+ "oat",
3993
+ "oatmeal",
3994
+ "oba",
3995
+ "obi",
3996
+ "oblong",
3997
+ "oceania",
3998
+ "ock",
3999
+ "oct",
4000
+ "oct.",
4001
+ "odor",
4002
+ "ods",
4003
+ "ody",
4004
+ "oes",
4005
+ "of",
4006
+ "of.",
4007
+ "off",
4008
+ "offer",
4009
+ "offered",
4010
+ "official",
4011
+ "oft",
4012
+ "often",
4013
+ "ofu",
4014
+ "ogs",
4015
+ "ogy",
4016
+ "oha",
4017
+ "oid",
4018
+ "oil",
4019
+ "oils",
4020
+ "oin",
4021
+ "oir",
4022
+ "ois",
4023
+ "oji",
4024
+ "oke",
4025
+ "okla",
4026
+ "okla.",
4027
+ "okra",
4028
+ "ol",
4029
+ "ol'",
4030
+ "ola",
4031
+ "olallieberries",
4032
+ "olallieberry",
4033
+ "old",
4034
+ "oldest",
4035
+ "ole",
4036
+ "oleaceae",
4037
+ "oli",
4038
+ "olive",
4039
+ "olives",
4040
+ "olk",
4041
+ "oll",
4042
+ "olo",
4043
+ "ols",
4044
+ "ol\u2019",
4045
+ "oma",
4046
+ "omb",
4047
+ "ome",
4048
+ "omelet",
4049
+ "omo",
4050
+ "oms",
4051
+ "on",
4052
+ "ona",
4053
+ "once",
4054
+ "ond",
4055
+ "one",
4056
+ "ones",
4057
+ "ong",
4058
+ "oni",
4059
+ "onion",
4060
+ "onions",
4061
+ "only",
4062
+ "onn",
4063
+ "ono",
4064
+ "ons",
4065
+ "ont",
4066
+ "ony",
4067
+ "ood",
4068
+ "ook",
4069
+ "ool",
4070
+ "oom",
4071
+ "oon",
4072
+ "oop",
4073
+ "oor",
4074
+ "oot",
4075
+ "ope",
4076
+ "open",
4077
+ "ops",
4078
+ "option",
4079
+ "opy",
4080
+ "or",
4081
+ "oral",
4082
+ "orange",
4083
+ "orangelo",
4084
+ "orangelos",
4085
+ "oranges",
4086
+ "orchard",
4087
+ "orchid",
4088
+ "ord",
4089
+ "ore",
4090
+ "ore.",
4091
+ "oregano",
4092
+ "oregon",
4093
+ "orf",
4094
+ "originally",
4095
+ "originated",
4096
+ "ork",
4097
+ "orm",
4098
+ "orn",
4099
+ "ornamental",
4100
+ "oro",
4101
+ "orp",
4102
+ "ors",
4103
+ "ort",
4104
+ "ory",
4105
+ "os.",
4106
+ "osa",
4107
+ "osc",
4108
+ "ose",
4109
+ "osh",
4110
+ "oss",
4111
+ "ost",
4112
+ "otaheite",
4113
+ "ote",
4114
+ "oth",
4115
+ "other",
4116
+ "others",
4117
+ "ots",
4118
+ "ought",
4119
+ "oum",
4120
+ "oup",
4121
+ "our",
4122
+ "ous",
4123
+ "out",
4124
+ "outdoor",
4125
+ "outer",
4126
+ "outside",
4127
+ "oux",
4128
+ "ov.",
4129
+ "ova",
4130
+ "oval",
4131
+ "ove",
4132
+ "oven",
4133
+ "over",
4134
+ "overeating",
4135
+ "overgrown",
4136
+ "overnight",
4137
+ "owl",
4138
+ "own",
4139
+ "ows",
4140
+ "owy",
4141
+ "oya",
4142
+ "oyster",
4143
+ "o\u2019clock",
4144
+ "o\u2019s",
4145
+ "p",
4146
+ "p.",
4147
+ "p.m",
4148
+ "p.m.",
4149
+ "pa",
4150
+ "pa.",
4151
+ "pacific",
4152
+ "pack",
4153
+ "packed",
4154
+ "pads",
4155
+ "pain",
4156
+ "painting",
4157
+ "paired",
4158
+ "pairs",
4159
+ "pakistan",
4160
+ "pal",
4161
+ "pale",
4162
+ "palm",
4163
+ "palms",
4164
+ "pan",
4165
+ "pancake",
4166
+ "pancakes",
4167
+ "pantry",
4168
+ "pap",
4169
+ "papaya",
4170
+ "papayas",
4171
+ "paper",
4172
+ "papery",
4173
+ "paprika",
4174
+ "parfait",
4175
+ "park",
4176
+ "parks",
4177
+ "parmesan",
4178
+ "parsley",
4179
+ "parsnip",
4180
+ "parsnips",
4181
+ "part",
4182
+ "parts",
4183
+ "pas",
4184
+ "passion",
4185
+ "passionflower",
4186
+ "passionfruit",
4187
+ "pasta",
4188
+ "pastas",
4189
+ "paste",
4190
+ "pastries",
4191
+ "pastry",
4192
+ "patch",
4193
+ "patches",
4194
+ "pattern",
4195
+ "patterns",
4196
+ "patty",
4197
+ "pattypan",
4198
+ "paw",
4199
+ "pawpaw",
4200
+ "pawpaws",
4201
+ "pea",
4202
+ "peace",
4203
+ "peach",
4204
+ "peaches",
4205
+ "peanut",
4206
+ "peanuts",
4207
+ "pear",
4208
+ "pearl",
4209
+ "pears",
4210
+ "peas",
4211
+ "pecans",
4212
+ "pectin",
4213
+ "ped",
4214
+ "pedrosillano",
4215
+ "peel",
4216
+ "peeled",
4217
+ "pel",
4218
+ "pen",
4219
+ "people",
4220
+ "pepinos",
4221
+ "pepper",
4222
+ "peppermint",
4223
+ "peppers",
4224
+ "peppery",
4225
+ "pequi",
4226
+ "per",
4227
+ "perennial",
4228
+ "perfect",
4229
+ "perfectly",
4230
+ "performance",
4231
+ "perfumes",
4232
+ "persia",
4233
+ "persimmon",
4234
+ "persimmons",
4235
+ "peruviana",
4236
+ "pes",
4237
+ "pesto",
4238
+ "pestos",
4239
+ "petals",
4240
+ "pewa",
4241
+ "ph",
4242
+ "ph.d.",
4243
+ "philippines",
4244
+ "physalis",
4245
+ "phytonutrients",
4246
+ "pia",
4247
+ "pick",
4248
+ "picked",
4249
+ "picking",
4250
+ "pickled",
4251
+ "pickles",
4252
+ "pickling",
4253
+ "picnics",
4254
+ "pie",
4255
+ "pies",
4256
+ "pigeon",
4257
+ "pigface",
4258
+ "pigment",
4259
+ "pilafs",
4260
+ "pili",
4261
+ "pilly",
4262
+ "pimento",
4263
+ "pine",
4264
+ "pineapple",
4265
+ "pineapples",
4266
+ "pines",
4267
+ "pink",
4268
+ "pinot",
4269
+ "pinto",
4270
+ "pitaya",
4271
+ "pitayas",
4272
+ "pitomba",
4273
+ "pizza",
4274
+ "pizzas",
4275
+ "place",
4276
+ "places",
4277
+ "placing",
4278
+ "planning",
4279
+ "plant",
4280
+ "plantain",
4281
+ "plantains",
4282
+ "plantation",
4283
+ "plantations",
4284
+ "planted",
4285
+ "plants",
4286
+ "plate",
4287
+ "platter",
4288
+ "ple",
4289
+ "pleasant",
4290
+ "pleasantly",
4291
+ "pleasure",
4292
+ "plenty",
4293
+ "plum",
4294
+ "plums",
4295
+ "ply",
4296
+ "pm",
4297
+ "pma",
4298
+ "po",
4299
+ "poached",
4300
+ "pod",
4301
+ "podocarpus",
4302
+ "pods",
4303
+ "poha",
4304
+ "point",
4305
+ "pointed",
4306
+ "pois",
4307
+ "poisonous",
4308
+ "pollinated",
4309
+ "pollinators",
4310
+ "polynesia",
4311
+ "polynesian",
4312
+ "pomcite",
4313
+ "pomcites",
4314
+ "pomegranate",
4315
+ "pomegranates",
4316
+ "pomelo",
4317
+ "pomelos",
4318
+ "pomme",
4319
+ "pommecythere",
4320
+ "pommecytheres",
4321
+ "pommerac",
4322
+ "pond",
4323
+ "poor",
4324
+ "pop",
4325
+ "popping",
4326
+ "popular",
4327
+ "popularity",
4328
+ "porch",
4329
+ "pork",
4330
+ "portabella",
4331
+ "portabellas",
4332
+ "posole",
4333
+ "pot",
4334
+ "potassium",
4335
+ "potato",
4336
+ "potatoes",
4337
+ "potential",
4338
+ "potpourri",
4339
+ "pots",
4340
+ "pounds",
4341
+ "powder",
4342
+ "powdery",
4343
+ "powerful",
4344
+ "ppa",
4345
+ "pr.",
4346
+ "practices",
4347
+ "prawn",
4348
+ "prebiotics",
4349
+ "prefer",
4350
+ "preference",
4351
+ "pregnancy",
4352
+ "premature",
4353
+ "prepared",
4354
+ "presence",
4355
+ "preserves",
4356
+ "pressure",
4357
+ "pretty",
4358
+ "prevent",
4359
+ "price",
4360
+ "pricked",
4361
+ "prickly",
4362
+ "prized",
4363
+ "problems",
4364
+ "process",
4365
+ "processed",
4366
+ "produce",
4367
+ "produces",
4368
+ "producing",
4369
+ "production",
4370
+ "productive",
4371
+ "products",
4372
+ "prof",
4373
+ "prof.",
4374
+ "profile",
4375
+ "projects",
4376
+ "promote",
4377
+ "prone",
4378
+ "propagated",
4379
+ "properties",
4380
+ "prosciutto",
4381
+ "prosperity",
4382
+ "protect",
4383
+ "protective",
4384
+ "protein",
4385
+ "provide",
4386
+ "provided",
4387
+ "provides",
4388
+ "providing",
4389
+ "prumnopitys",
4390
+ "prune",
4391
+ "pruned",
4392
+ "prunes",
4393
+ "pruning",
4394
+ "psi",
4395
+ "pt.",
4396
+ "pth",
4397
+ "public",
4398
+ "pudding",
4399
+ "puddings",
4400
+ "puerto",
4401
+ "puffiness",
4402
+ "pulasan",
4403
+ "pulp",
4404
+ "pulpy",
4405
+ "pummelo",
4406
+ "pummelos",
4407
+ "pumpkin",
4408
+ "pumpkins",
4409
+ "pungent",
4410
+ "pupunha",
4411
+ "pupunhas",
4412
+ "pur",
4413
+ "pureed",
4414
+ "purple",
4415
+ "purposes",
4416
+ "pus",
4417
+ "put",
4418
+ "q",
4419
+ "q.",
4420
+ "quality",
4421
+ "quandong",
4422
+ "quandongs",
4423
+ "quantities",
4424
+ "que",
4425
+ "queen",
4426
+ "quenepa",
4427
+ "quenepas",
4428
+ "quercetin",
4429
+ "qui",
4430
+ "quiches",
4431
+ "quick",
4432
+ "quickly",
4433
+ "quince",
4434
+ "quinces",
4435
+ "quinoa",
4436
+ "quintessential",
4437
+ "quite",
4438
+ "r",
4439
+ "r.",
4440
+ "rabe",
4441
+ "rac",
4442
+ "radicchio",
4443
+ "radish",
4444
+ "radishes",
4445
+ "rainbow",
4446
+ "rainforest",
4447
+ "rainforests",
4448
+ "raisin",
4449
+ "raisins",
4450
+ "ral",
4451
+ "ram",
4452
+ "ramadan",
4453
+ "rambutan",
4454
+ "rambutans",
4455
+ "ran",
4456
+ "ranch",
4457
+ "range",
4458
+ "ranging",
4459
+ "rangpur",
4460
+ "rap",
4461
+ "rapa",
4462
+ "rapini",
4463
+ "rare",
4464
+ "ras",
4465
+ "raspberries",
4466
+ "raspberry",
4467
+ "ratatouille",
4468
+ "raw",
4469
+ "ray",
4470
+ "rbs",
4471
+ "rby",
4472
+ "rce",
4473
+ "rch",
4474
+ "rds",
4475
+ "rdy",
4476
+ "re",
4477
+ "re.",
4478
+ "rea",
4479
+ "reach",
4480
+ "reached",
4481
+ "reaction",
4482
+ "ready",
4483
+ "real",
4484
+ "really",
4485
+ "reaper",
4486
+ "recent",
4487
+ "recently",
4488
+ "recipe",
4489
+ "recipes",
4490
+ "reclamation",
4491
+ "recommended",
4492
+ "red",
4493
+ "redcurrant",
4494
+ "redcurrants",
4495
+ "reddish",
4496
+ "reduce",
4497
+ "reducing",
4498
+ "ree",
4499
+ "referred",
4500
+ "reforestation",
4501
+ "refreshing",
4502
+ "refried",
4503
+ "refrigerator",
4504
+ "region",
4505
+ "regions",
4506
+ "regular",
4507
+ "regulate",
4508
+ "regulating",
4509
+ "rehydrated",
4510
+ "reine",
4511
+ "related",
4512
+ "relatively",
4513
+ "relaxation",
4514
+ "relaxing",
4515
+ "release",
4516
+ "reliable",
4517
+ "religious",
4518
+ "remains",
4519
+ "remedies",
4520
+ "remedy",
4521
+ "reminds",
4522
+ "reminiscent",
4523
+ "removed",
4524
+ "removes",
4525
+ "rep",
4526
+ "rep.",
4527
+ "repellent",
4528
+ "replacing",
4529
+ "reported",
4530
+ "require",
4531
+ "required",
4532
+ "requires",
4533
+ "rer",
4534
+ "res",
4535
+ "resemblance",
4536
+ "resemble",
4537
+ "resembles",
4538
+ "resembling",
4539
+ "resilience",
4540
+ "resistant",
4541
+ "respiratory",
4542
+ "responds",
4543
+ "restaurants",
4544
+ "result",
4545
+ "resveratrol",
4546
+ "ret",
4547
+ "retention",
4548
+ "rev",
4549
+ "rev.",
4550
+ "reveal",
4551
+ "rey",
4552
+ "rge",
4553
+ "rgy",
4554
+ "rhamnus",
4555
+ "rhubarb",
4556
+ "rhubarbs",
4557
+ "ria",
4558
+ "ribbed",
4559
+ "riberies",
4560
+ "riberry",
4561
+ "rica",
4562
+ "rice",
4563
+ "rich",
4564
+ "richer",
4565
+ "rico",
4566
+ "rid",
4567
+ "ridged",
4568
+ "rie",
4569
+ "right",
4570
+ "rimu",
4571
+ "rin",
4572
+ "rind",
4573
+ "rinds",
4574
+ "rings",
4575
+ "rio",
4576
+ "rip",
4577
+ "ripe",
4578
+ "ripen",
4579
+ "ripened",
4580
+ "ripeness",
4581
+ "risk",
4582
+ "risotto",
4583
+ "rivers",
4584
+ "riz",
4585
+ "rk.",
4586
+ "rks",
4587
+ "rld",
4588
+ "rly",
4589
+ "rms",
4590
+ "rns",
4591
+ "rny",
4592
+ "road",
4593
+ "roadsides",
4594
+ "roast",
4595
+ "roasted",
4596
+ "roasting",
4597
+ "rob",
4598
+ "rocket",
4599
+ "rocky",
4600
+ "rof",
4601
+ "rog",
4602
+ "rol",
4603
+ "roll",
4604
+ "rolls",
4605
+ "rom",
4606
+ "romaine",
4607
+ "ron",
4608
+ "roo",
4609
+ "rooting",
4610
+ "roots",
4611
+ "rop",
4612
+ "ros",
4613
+ "rose",
4614
+ "rosehip",
4615
+ "rosehips",
4616
+ "rosemary",
4617
+ "roses",
4618
+ "rot",
4619
+ "rotting",
4620
+ "rough",
4621
+ "round",
4622
+ "rounded",
4623
+ "row",
4624
+ "rowan",
4625
+ "rows",
4626
+ "rp.",
4627
+ "rra",
4628
+ "rri",
4629
+ "rry",
4630
+ "rs.",
4631
+ "rse",
4632
+ "rsh",
4633
+ "rst",
4634
+ "rth",
4635
+ "rto",
4636
+ "rts",
4637
+ "rty",
4638
+ "rub",
4639
+ "rubbed",
4640
+ "rue",
4641
+ "rum",
4642
+ "ruminant",
4643
+ "rup",
4644
+ "rural",
4645
+ "rus",
4646
+ "russet",
4647
+ "rustic",
4648
+ "rut",
4649
+ "rutabaga",
4650
+ "rve",
4651
+ "s",
4652
+ "s's",
4653
+ "s.",
4654
+ "s.c.",
4655
+ "sacred",
4656
+ "sage",
4657
+ "sageretia",
4658
+ "saguaro",
4659
+ "sai",
4660
+ "said",
4661
+ "salad",
4662
+ "salads",
4663
+ "salak",
4664
+ "salal",
4665
+ "salmonberries",
4666
+ "salmonberry",
4667
+ "salsa",
4668
+ "salsas",
4669
+ "salt",
4670
+ "salted",
4671
+ "saltfish",
4672
+ "salty",
4673
+ "same",
4674
+ "san",
4675
+ "sand",
4676
+ "sanding",
4677
+ "sandpaper",
4678
+ "sandwich",
4679
+ "sandwiches",
4680
+ "sandy",
4681
+ "santol",
4682
+ "santols",
4683
+ "sap",
4684
+ "sapodilla",
4685
+ "sapote",
4686
+ "sar",
4687
+ "sas",
4688
+ "saskatoon",
4689
+ "saskatoonberries",
4690
+ "saskatoonberry",
4691
+ "sat",
4692
+ "satinash",
4693
+ "satisfy",
4694
+ "satisfying",
4695
+ "satsuma",
4696
+ "satsumas",
4697
+ "sauce",
4698
+ "sauces",
4699
+ "sausage",
4700
+ "saut\u00e9",
4701
+ "saut\u00e9ed",
4702
+ "savored",
4703
+ "savory",
4704
+ "saw",
4705
+ "scallions",
4706
+ "scalloped",
4707
+ "scaly",
4708
+ "scandinavian",
4709
+ "scarcity",
4710
+ "scenic",
4711
+ "scent",
4712
+ "scented",
4713
+ "scientific",
4714
+ "scones",
4715
+ "scoop",
4716
+ "scooped",
4717
+ "scottish",
4718
+ "scrub",
4719
+ "sea",
4720
+ "seafood",
4721
+ "seagrape",
4722
+ "season",
4723
+ "seasonal",
4724
+ "seasoned",
4725
+ "seasoning",
4726
+ "seasonings",
4727
+ "secret",
4728
+ "section",
4729
+ "sector",
4730
+ "sed",
4731
+ "seed",
4732
+ "seeds",
4733
+ "sel",
4734
+ "selection",
4735
+ "selling",
4736
+ "sells",
4737
+ "sen",
4738
+ "sen.",
4739
+ "sep",
4740
+ "sep.",
4741
+ "sept",
4742
+ "sept.",
4743
+ "serrated",
4744
+ "serve",
4745
+ "served",
4746
+ "serviceberries",
4747
+ "serviceberry",
4748
+ "ses",
4749
+ "sesame",
4750
+ "set",
4751
+ "setting",
4752
+ "settlers",
4753
+ "several",
4754
+ "seville",
4755
+ "sey",
4756
+ "sfy",
4757
+ "sh.",
4758
+ "sha",
4759
+ "shade",
4760
+ "shall",
4761
+ "shallot",
4762
+ "shallots",
4763
+ "shape",
4764
+ "shaped",
4765
+ "shapes",
4766
+ "shaping",
4767
+ "sharon",
4768
+ "sharp",
4769
+ "shaved",
4770
+ "she",
4771
+ "she's",
4772
+ "sheep",
4773
+ "shelf",
4774
+ "shell",
4775
+ "shelled",
4776
+ "shelter",
4777
+ "shepherd",
4778
+ "sherbet",
4779
+ "she\u2019s",
4780
+ "shi",
4781
+ "shiitake",
4782
+ "shiny",
4783
+ "shipova",
4784
+ "shoots",
4785
+ "shops",
4786
+ "short",
4787
+ "shot",
4788
+ "should",
4789
+ "shown",
4790
+ "showy",
4791
+ "shrimp",
4792
+ "shrines",
4793
+ "shrub",
4794
+ "shrubs",
4795
+ "shy",
4796
+ "sia",
4797
+ "sic",
4798
+ "side",
4799
+ "sight",
4800
+ "significance",
4801
+ "significant",
4802
+ "sil",
4803
+ "silk",
4804
+ "silkworm",
4805
+ "silkworms",
4806
+ "similar",
4807
+ "simple",
4808
+ "simply",
4809
+ "sin",
4810
+ "single",
4811
+ "sis",
4812
+ "sit",
4813
+ "sites",
4814
+ "size",
4815
+ "sized",
4816
+ "sizes",
4817
+ "ska",
4818
+ "skin",
4819
+ "skincare",
4820
+ "skinned",
4821
+ "sks",
4822
+ "sky",
4823
+ "slaws",
4824
+ "sleep",
4825
+ "slender",
4826
+ "slice",
4827
+ "sliced",
4828
+ "slices",
4829
+ "slicing",
4830
+ "slightly",
4831
+ "slow",
4832
+ "slowly",
4833
+ "small",
4834
+ "smaller",
4835
+ "smell",
4836
+ "smelled",
4837
+ "smith",
4838
+ "smoke",
4839
+ "smooth",
4840
+ "smoother",
4841
+ "smoothie",
4842
+ "smoothies",
4843
+ "snack",
4844
+ "snacking",
4845
+ "snacks",
4846
+ "snake",
4847
+ "snap",
4848
+ "snow",
4849
+ "snowberries",
4850
+ "snowberry",
4851
+ "so",
4852
+ "soak",
4853
+ "soaked",
4854
+ "soapberry",
4855
+ "soaps",
4856
+ "soapy",
4857
+ "soft",
4858
+ "soil",
4859
+ "soils",
4860
+ "sold",
4861
+ "soluble",
4862
+ "solution",
4863
+ "som",
4864
+ "some",
4865
+ "somethin",
4866
+ "somethin'",
4867
+ "something",
4868
+ "somethin\u2019",
4869
+ "sometimes",
4870
+ "son",
4871
+ "sonoran",
4872
+ "soon",
4873
+ "soothe",
4874
+ "soothing",
4875
+ "sop",
4876
+ "sorbet",
4877
+ "sorbets",
4878
+ "sore",
4879
+ "sought",
4880
+ "soup",
4881
+ "soups",
4882
+ "sour",
4883
+ "source",
4884
+ "sources",
4885
+ "soursop",
4886
+ "south",
4887
+ "southeast",
4888
+ "southeastern",
4889
+ "southern",
4890
+ "southwest",
4891
+ "southwestern",
4892
+ "souvlaki",
4893
+ "soy",
4894
+ "soybean",
4895
+ "space",
4896
+ "spaces",
4897
+ "spaghetti",
4898
+ "spain",
4899
+ "spanish",
4900
+ "sparkling",
4901
+ "spearmint",
4902
+ "spears",
4903
+ "specialty",
4904
+ "species",
4905
+ "specific",
4906
+ "spice",
4907
+ "spices",
4908
+ "spiciness",
4909
+ "spicy",
4910
+ "spiky",
4911
+ "spinach",
4912
+ "spinosa",
4913
+ "spiny",
4914
+ "spiralized",
4915
+ "spirals",
4916
+ "spirits",
4917
+ "splash",
4918
+ "split",
4919
+ "spongy",
4920
+ "spoon",
4921
+ "spoonful",
4922
+ "spray",
4923
+ "spread",
4924
+ "spreading",
4925
+ "spreads",
4926
+ "spring",
4927
+ "springs",
4928
+ "springtime",
4929
+ "sprinkle",
4930
+ "sprinkling",
4931
+ "sprout",
4932
+ "sprouting",
4933
+ "sprouts",
4934
+ "spy",
4935
+ "squash",
4936
+ "squashes",
4937
+ "squirrels",
4938
+ "sri",
4939
+ "srs",
4940
+ "ss.",
4941
+ "ssy",
4942
+ "st",
4943
+ "st.",
4944
+ "sta",
4945
+ "stages",
4946
+ "stain",
4947
+ "staked",
4948
+ "stalks",
4949
+ "staple",
4950
+ "star",
4951
+ "starchy",
4952
+ "start",
4953
+ "started",
4954
+ "starting",
4955
+ "state",
4956
+ "stately",
4957
+ "states",
4958
+ "status",
4959
+ "stay",
4960
+ "ste",
4961
+ "steamed",
4962
+ "stem",
4963
+ "stems",
4964
+ "stew",
4965
+ "stewed",
4966
+ "stews",
4967
+ "sticks",
4968
+ "sticky",
4969
+ "still",
4970
+ "stimulating",
4971
+ "stir",
4972
+ "sto",
4973
+ "stone",
4974
+ "storage",
4975
+ "store",
4976
+ "stored",
4977
+ "stores",
4978
+ "storing",
4979
+ "strawberries",
4980
+ "strawberry",
4981
+ "streaks",
4982
+ "streams",
4983
+ "street",
4984
+ "strength",
4985
+ "stress",
4986
+ "striking",
4987
+ "string",
4988
+ "stringy",
4989
+ "strips",
4990
+ "strong",
4991
+ "strychnos",
4992
+ "sts",
4993
+ "studded",
4994
+ "stuffed",
4995
+ "stunning",
4996
+ "sturdy",
4997
+ "sty",
4998
+ "style",
4999
+ "subarctic",
5000
+ "subcontinent",
5001
+ "substitute",
5002
+ "subtropical",
5003
+ "succulent",
5004
+ "such",
5005
+ "sugar",
5006
+ "suk",
5007
+ "sukkot",
5008
+ "sulfur",
5009
+ "summer",
5010
+ "summers",
5011
+ "summertime",
5012
+ "summery",
5013
+ "sun",
5014
+ "sunday",
5015
+ "sunlight",
5016
+ "sunny",
5017
+ "superfood",
5018
+ "superfruit",
5019
+ "supermarket",
5020
+ "supplement",
5021
+ "supplements",
5022
+ "support",
5023
+ "sure",
5024
+ "surface",
5025
+ "surinam",
5026
+ "surprised",
5027
+ "surprisingly",
5028
+ "survive",
5029
+ "sushi",
5030
+ "sustainable",
5031
+ "swamp",
5032
+ "swede",
5033
+ "sweet",
5034
+ "sweetener",
5035
+ "sweeteners",
5036
+ "sweeter",
5037
+ "sweetest",
5038
+ "sweetness",
5039
+ "sweets",
5040
+ "sweetsop",
5041
+ "swelling",
5042
+ "swiss",
5043
+ "sycamore",
5044
+ "sycamores",
5045
+ "symbol",
5046
+ "symptoms",
5047
+ "syrup",
5048
+ "syrups",
5049
+ "system",
5050
+ "syzygium",
5051
+ "s\u2019s",
5052
+ "t",
5053
+ "t's",
5054
+ "t.",
5055
+ "ta",
5056
+ "tacos",
5057
+ "tagine",
5058
+ "tagines",
5059
+ "tahini",
5060
+ "take",
5061
+ "takes",
5062
+ "taking",
5063
+ "tal",
5064
+ "tall",
5065
+ "tamales",
5066
+ "tamarillo",
5067
+ "tamarind",
5068
+ "tan",
5069
+ "tang",
5070
+ "tangelo",
5071
+ "tangerine",
5072
+ "tangerines",
5073
+ "tangy",
5074
+ "tanjong",
5075
+ "tannic",
5076
+ "tar",
5077
+ "tarap",
5078
+ "taro",
5079
+ "tart",
5080
+ "tartness",
5081
+ "tarts",
5082
+ "tas",
5083
+ "taste",
5084
+ "tasted",
5085
+ "tasty",
5086
+ "tat",
5087
+ "tattoo",
5088
+ "taxus",
5089
+ "tay",
5090
+ "tch",
5091
+ "td.",
5092
+ "tea",
5093
+ "teas",
5094
+ "ted",
5095
+ "tel",
5096
+ "tem",
5097
+ "temperate",
5098
+ "temples",
5099
+ "temporary",
5100
+ "ten",
5101
+ "tender",
5102
+ "tenderize",
5103
+ "tenderizer",
5104
+ "tenn",
5105
+ "tenn.",
5106
+ "tequila",
5107
+ "ter",
5108
+ "terap",
5109
+ "term",
5110
+ "terminalia",
5111
+ "terms",
5112
+ "tes",
5113
+ "tew",
5114
+ "texas",
5115
+ "textiles",
5116
+ "texture",
5117
+ "tey",
5118
+ "thai",
5119
+ "thailand",
5120
+ "than",
5121
+ "thanksgiving",
5122
+ "that",
5123
+ "that's",
5124
+ "thatching",
5125
+ "that\u2019s",
5126
+ "the",
5127
+ "their",
5128
+ "them",
5129
+ "theobromine",
5130
+ "there",
5131
+ "there's",
5132
+ "there\u2019s",
5133
+ "these",
5134
+ "they",
5135
+ "thick",
5136
+ "thickening",
5137
+ "thimbleberry",
5138
+ "thin",
5139
+ "thing",
5140
+ "thinly",
5141
+ "this",
5142
+ "this's",
5143
+ "thistle",
5144
+ "this\u2019s",
5145
+ "thorn",
5146
+ "thorns",
5147
+ "thorny",
5148
+ "those",
5149
+ "thought",
5150
+ "thousands",
5151
+ "threatened",
5152
+ "three",
5153
+ "thrive",
5154
+ "thrives",
5155
+ "thriving",
5156
+ "throat",
5157
+ "throats",
5158
+ "through",
5159
+ "throughout",
5160
+ "ths",
5161
+ "thy",
5162
+ "thyme",
5163
+ "tia",
5164
+ "tic",
5165
+ "til",
5166
+ "timber",
5167
+ "time",
5168
+ "times",
5169
+ "tin",
5170
+ "tiny",
5171
+ "tips",
5172
+ "tir",
5173
+ "tired",
5174
+ "tis",
5175
+ "tle",
5176
+ "tly",
5177
+ "to",
5178
+ "toast",
5179
+ "toasted",
5180
+ "today",
5181
+ "toffee",
5182
+ "tofu",
5183
+ "tohono",
5184
+ "tol",
5185
+ "tolerant",
5186
+ "tolerate",
5187
+ "tomatillo",
5188
+ "tomato",
5189
+ "tomatoes",
5190
+ "ton",
5191
+ "tone",
5192
+ "tongue",
5193
+ "tonics",
5194
+ "tonight",
5195
+ "too",
5196
+ "toothpastes",
5197
+ "top",
5198
+ "topped",
5199
+ "topping",
5200
+ "toppings",
5201
+ "tops",
5202
+ "tor",
5203
+ "tos",
5204
+ "tostones",
5205
+ "touch",
5206
+ "touched",
5207
+ "tough",
5208
+ "tourist",
5209
+ "toxic",
5210
+ "toyon",
5211
+ "tra",
5212
+ "tract",
5213
+ "traditional",
5214
+ "traditionally",
5215
+ "trail",
5216
+ "trained",
5217
+ "transmitted",
5218
+ "transplanted",
5219
+ "travelers",
5220
+ "traveling",
5221
+ "tray",
5222
+ "treat",
5223
+ "treated",
5224
+ "treats",
5225
+ "tree",
5226
+ "trees",
5227
+ "trellis",
5228
+ "trellises",
5229
+ "tried",
5230
+ "trip",
5231
+ "tro",
5232
+ "tropical",
5233
+ "tropics",
5234
+ "true",
5235
+ "trunk",
5236
+ "try",
5237
+ "tryptophan",
5238
+ "tte",
5239
+ "tti",
5240
+ "tto",
5241
+ "tty",
5242
+ "tum",
5243
+ "tuna",
5244
+ "turn",
5245
+ "turned",
5246
+ "turnip",
5247
+ "turnips",
5248
+ "tus",
5249
+ "twice",
5250
+ "twist",
5251
+ "two",
5252
+ "type",
5253
+ "types",
5254
+ "typically",
5255
+ "tys",
5256
+ "tzatziki",
5257
+ "t\u2019s",
5258
+ "u",
5259
+ "u.",
5260
+ "u.s.",
5261
+ "uah",
5262
+ "ual",
5263
+ "uat",
5264
+ "uba",
5265
+ "ube",
5266
+ "ubs",
5267
+ "uce",
5268
+ "uch",
5269
+ "uck",
5270
+ "ude",
5271
+ "uds",
5272
+ "ued",
5273
+ "ues",
5274
+ "uff",
5275
+ "ug.",
5276
+ "uge",
5277
+ "ugh",
5278
+ "ugli",
5279
+ "ugni",
5280
+ "uit",
5281
+ "ul.",
5282
+ "ula",
5283
+ "uld",
5284
+ "ull",
5285
+ "ulo",
5286
+ "ulp",
5287
+ "ult",
5288
+ "uma",
5289
+ "umb",
5290
+ "umbrella",
5291
+ "ume",
5292
+ "umi",
5293
+ "umn",
5294
+ "umo",
5295
+ "ums",
5296
+ "un.",
5297
+ "una",
5298
+ "und",
5299
+ "undertone",
5300
+ "une",
5301
+ "unfortunately",
5302
+ "ung",
5303
+ "unique",
5304
+ "united",
5305
+ "unk",
5306
+ "unknown",
5307
+ "unsuitable",
5308
+ "unsustainable",
5309
+ "until",
5310
+ "unusual",
5311
+ "uor",
5312
+ "up",
5313
+ "upe",
5314
+ "upma",
5315
+ "ups",
5316
+ "upside",
5317
+ "urban",
5318
+ "urd",
5319
+ "ure",
5320
+ "urinary",
5321
+ "urn",
5322
+ "urs",
5323
+ "urt",
5324
+ "ury",
5325
+ "us",
5326
+ "use",
5327
+ "used",
5328
+ "uses",
5329
+ "ush",
5330
+ "using",
5331
+ "ust",
5332
+ "usually",
5333
+ "usy",
5334
+ "ute",
5335
+ "utensils",
5336
+ "uth",
5337
+ "utilized",
5338
+ "uts",
5339
+ "uty",
5340
+ "ut\u00e9",
5341
+ "uva",
5342
+ "uza",
5343
+ "uzouza",
5344
+ "uzu",
5345
+ "v",
5346
+ "v.",
5347
+ "v.s",
5348
+ "v.s.",
5349
+ "v.v",
5350
+ "v_v",
5351
+ "va",
5352
+ "va.",
5353
+ "vacation",
5354
+ "vaccines",
5355
+ "val",
5356
+ "valley",
5357
+ "valuable",
5358
+ "value",
5359
+ "valued",
5360
+ "vanilla",
5361
+ "varieties",
5362
+ "variety",
5363
+ "various",
5364
+ "vary",
5365
+ "vda",
5366
+ "ve",
5367
+ "ved",
5368
+ "vegan",
5369
+ "vegetable",
5370
+ "vegetables",
5371
+ "vegetarian",
5372
+ "veggies",
5373
+ "vel",
5374
+ "velvet",
5375
+ "velvety",
5376
+ "ven",
5377
+ "vendors",
5378
+ "venotonic",
5379
+ "ver",
5380
+ "versatile",
5381
+ "versatility",
5382
+ "version",
5383
+ "very",
5384
+ "ves",
5385
+ "vessel",
5386
+ "vet",
5387
+ "vibrant",
5388
+ "viburnum",
5389
+ "vietnam",
5390
+ "vin",
5391
+ "vinaigrette",
5392
+ "vine",
5393
+ "vinegar",
5394
+ "vines",
5395
+ "vineyards",
5396
+ "virus",
5397
+ "visit",
5398
+ "visited",
5399
+ "visiting",
5400
+ "visual",
5401
+ "vitamin",
5402
+ "vitamins",
5403
+ "voatavo",
5404
+ "voavanga",
5405
+ "vodka",
5406
+ "vor",
5407
+ "vs",
5408
+ "vs.",
5409
+ "w",
5410
+ "w's",
5411
+ "w.",
5412
+ "w/o",
5413
+ "waffles",
5414
+ "wait",
5415
+ "wak",
5416
+ "waldorf",
5417
+ "wales",
5418
+ "walked",
5419
+ "walnuts",
5420
+ "wan",
5421
+ "wander",
5422
+ "warm",
5423
+ "warming",
5424
+ "warmth",
5425
+ "was",
5426
+ "wash",
5427
+ "wash.",
5428
+ "water",
5429
+ "watercress",
5430
+ "watermelon",
5431
+ "watermelons",
5432
+ "wax",
5433
+ "waxy",
5434
+ "way",
5435
+ "ways",
5436
+ "we",
5437
+ "wealth",
5438
+ "wealthy",
5439
+ "weather",
5440
+ "weaving",
5441
+ "wed",
5442
+ "weed",
5443
+ "weekend",
5444
+ "weeks",
5445
+ "weigh",
5446
+ "weighed",
5447
+ "weighing",
5448
+ "weight",
5449
+ "well",
5450
+ "went",
5451
+ "wer",
5452
+ "were",
5453
+ "west",
5454
+ "western",
5455
+ "wet",
5456
+ "wetland",
5457
+ "wetlands",
5458
+ "what",
5459
+ "what's",
5460
+ "what\u2019s",
5461
+ "wheat",
5462
+ "when",
5463
+ "when's",
5464
+ "when\u2019s",
5465
+ "where",
5466
+ "where's",
5467
+ "where\u2019s",
5468
+ "whether",
5469
+ "which",
5470
+ "while",
5471
+ "whipped",
5472
+ "white",
5473
+ "who",
5474
+ "who's",
5475
+ "whole",
5476
+ "who\u2019s",
5477
+ "why",
5478
+ "why's",
5479
+ "why\u2019s",
5480
+ "wide",
5481
+ "widely",
5482
+ "wild",
5483
+ "wildlife",
5484
+ "will",
5485
+ "wine",
5486
+ "wineberries",
5487
+ "wineberry",
5488
+ "wineries",
5489
+ "wines",
5490
+ "winter",
5491
+ "winters",
5492
+ "wiped",
5493
+ "wis",
5494
+ "wis.",
5495
+ "with",
5496
+ "without",
5497
+ "withstand",
5498
+ "wls",
5499
+ "wly",
5500
+ "wo",
5501
+ "wolfberries",
5502
+ "wolfberry",
5503
+ "wongi",
5504
+ "wood",
5505
+ "wooded",
5506
+ "woodland",
5507
+ "woods",
5508
+ "woodworkers",
5509
+ "woodworking",
5510
+ "woody",
5511
+ "word",
5512
+ "workout",
5513
+ "world",
5514
+ "worth",
5515
+ "would",
5516
+ "wrapped",
5517
+ "wraps",
5518
+ "wreaths",
5519
+ "wrinkled",
5520
+ "wth",
5521
+ "w\u2019s",
5522
+ "x",
5523
+ "x'",
5524
+ "x'x",
5525
+ "x'xxxx",
5526
+ "x.",
5527
+ "x.X",
5528
+ "x.d",
5529
+ "x.x",
5530
+ "x.x.",
5531
+ "x/x",
5532
+ "xD",
5533
+ "xDD",
5534
+ "xX",
5535
+ "xXX",
5536
+ "x_X",
5537
+ "x_d",
5538
+ "x_x",
5539
+ "xas",
5540
+ "xd",
5541
+ "xdd",
5542
+ "xed",
5543
+ "xes",
5544
+ "xic",
5545
+ "xigua",
5546
+ "ximenia",
5547
+ "xus",
5548
+ "xx",
5549
+ "xx'",
5550
+ "xx'x",
5551
+ "xx'xx",
5552
+ "xx.",
5553
+ "xxx",
5554
+ "xxx'x",
5555
+ "xxx/xx",
5556
+ "xxxx",
5557
+ "xxxx'",
5558
+ "xxxx'x",
5559
+ "xxxx\u2019",
5560
+ "xxxx\u2019x",
5561
+ "xxx\u2019x",
5562
+ "xx\u2019",
5563
+ "xx\u2019x",
5564
+ "xx\u2019xx",
5565
+ "xylocarp",
5566
+ "x\u2019",
5567
+ "x\u2019x",
5568
+ "x\u2019xxxx",
5569
+ "x\ufe35x",
5570
+ "y",
5571
+ "y'",
5572
+ "y's",
5573
+ "y.",
5574
+ "yali",
5575
+ "yam",
5576
+ "yamamomo",
5577
+ "yangmei",
5578
+ "yard",
5579
+ "yas",
5580
+ "year",
5581
+ "years",
5582
+ "yed",
5583
+ "yellow",
5584
+ "yellowish",
5585
+ "yer",
5586
+ "yes",
5587
+ "yesterday",
5588
+ "yet",
5589
+ "yew",
5590
+ "yield",
5591
+ "yields",
5592
+ "yim",
5593
+ "yle",
5594
+ "yme",
5595
+ "yogurt",
5596
+ "yolk",
5597
+ "yolks",
5598
+ "yon",
5599
+ "you",
5600
+ "young",
5601
+ "your",
5602
+ "ype",
5603
+ "yukon",
5604
+ "yumberry",
5605
+ "yuzu",
5606
+ "y\u2019",
5607
+ "y\u2019s",
5608
+ "z",
5609
+ "z.",
5610
+ "zag",
5611
+ "zas",
5612
+ "zealand",
5613
+ "zed",
5614
+ "zen",
5615
+ "zer",
5616
+ "zero",
5617
+ "zes",
5618
+ "zest",
5619
+ "zesty",
5620
+ "zhe",
5621
+ "zigzag",
5622
+ "zigzagging",
5623
+ "zil",
5624
+ "zinc",
5625
+ "ziziphus",
5626
+ "zon",
5627
+ "zucchini",
5628
+ "zucchinis",
5629
+ "zza",
5630
+ "zzy",
5631
+ "|",
5632
+ "}",
5633
+ "\u00a0",
5634
+ "\u00ac",
5635
+ "\u00ac_\u00ac",
5636
+ "\u00af",
5637
+ "\u00af\\(x)/\u00af",
5638
+ "\u00af\\(\u30c4)/\u00af",
5639
+ "\u00b0",
5640
+ "\u00b0C.",
5641
+ "\u00b0F.",
5642
+ "\u00b0K.",
5643
+ "\u00b0X.",
5644
+ "\u00b0c.",
5645
+ "\u00b0f.",
5646
+ "\u00b0k.",
5647
+ "\u00b0x.",
5648
+ "\u00e4",
5649
+ "\u00e4.",
5650
+ "\u00e9ed",
5651
+ "\u00f6",
5652
+ "\u00f6.",
5653
+ "\u00fc",
5654
+ "\u00fc.",
5655
+ "\u0ca0",
5656
+ "\u0ca0_\u0ca0",
5657
+ "\u0ca0\ufe35\u0ca0",
5658
+ "\u2014",
5659
+ "\u2018",
5660
+ "\u2018S",
5661
+ "\u2018X",
5662
+ "\u2018s",
5663
+ "\u2018x",
5664
+ "\u2019",
5665
+ "\u2019-(",
5666
+ "\u2019-)",
5667
+ "\u2019Cause",
5668
+ "\u2019Cos",
5669
+ "\u2019Coz",
5670
+ "\u2019Cuz",
5671
+ "\u2019S",
5672
+ "\u2019X",
5673
+ "\u2019Xxx",
5674
+ "\u2019Xxxxx",
5675
+ "\u2019am",
5676
+ "\u2019bout",
5677
+ "\u2019cause",
5678
+ "\u2019cos",
5679
+ "\u2019coz",
5680
+ "\u2019cuz",
5681
+ "\u2019d",
5682
+ "\u2019em",
5683
+ "\u2019ll",
5684
+ "\u2019m",
5685
+ "\u2019nuff",
5686
+ "\u2019re",
5687
+ "\u2019s",
5688
+ "\u2019ve",
5689
+ "\u2019x",
5690
+ "\u2019xx",
5691
+ "\u2019xxx",
5692
+ "\u2019xxxx",
5693
+ "\u2019y",
5694
+ "\u2019\u2019",
5695
+ "\u2501",
5696
+ "\u253b",
5697
+ "\u253b\u2501\u253b",
5698
+ "\u256f",
5699
+ "\u25a1",
5700
+ "\ufe35",
5701
+ "\uff09"
5702
+ ]
vocab/vectors ADDED
Binary file (128 Bytes). View file
 
vocab/vectors.cfg ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+ "mode":"default"
3
+ }