Commit
·
eb1060b
1
Parent(s):
95b72b4
add model
Browse files- config.cfg +150 -0
- en_reciparse_model-0.0.0-py3-none-any.whl +3 -0
- meta.json +54 -0
- ner/cfg +13 -0
- ner/model +3 -0
- ner/moves +1 -0
- setup.py +72 -0
- tok2vec/cfg +3 -0
- tok2vec/model +3 -0
- tokenizer +3 -0
- vocab/key2row +1 -0
- vocab/lookups.bin +3 -0
- vocab/strings.json +3914 -0
- vocab/vectors +3 -0
- vocab/vectors.cfg +3 -0
config.cfg
ADDED
|
@@ -0,0 +1,150 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[paths]
|
| 2 |
+
train = "data/train.spacy"
|
| 3 |
+
dev = "data/dev.spacy"
|
| 4 |
+
vectors = null
|
| 5 |
+
init_tok2vec = null
|
| 6 |
+
|
| 7 |
+
[system]
|
| 8 |
+
gpu_allocator = null
|
| 9 |
+
seed = 0
|
| 10 |
+
|
| 11 |
+
[nlp]
|
| 12 |
+
lang = "en"
|
| 13 |
+
pipeline = ["tok2vec","ner"]
|
| 14 |
+
batch_size = 1000
|
| 15 |
+
disabled = []
|
| 16 |
+
before_creation = null
|
| 17 |
+
after_creation = null
|
| 18 |
+
after_pipeline_creation = null
|
| 19 |
+
tokenizer = {"@tokenizers":"spacy.Tokenizer.v1"}
|
| 20 |
+
|
| 21 |
+
[components]
|
| 22 |
+
|
| 23 |
+
[components.ner]
|
| 24 |
+
factory = "ner"
|
| 25 |
+
incorrect_spans_key = "incorrect_spans"
|
| 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 = true
|
| 37 |
+
nO = null
|
| 38 |
+
|
| 39 |
+
[components.ner.model.tok2vec]
|
| 40 |
+
@architectures = "spacy.Tok2VecListener.v1"
|
| 41 |
+
width = ${components.tok2vec.model.encode.width}
|
| 42 |
+
upstream = "*"
|
| 43 |
+
|
| 44 |
+
[components.tok2vec]
|
| 45 |
+
factory = "tok2vec"
|
| 46 |
+
|
| 47 |
+
[components.tok2vec.model]
|
| 48 |
+
@architectures = "spacy.Tok2Vec.v2"
|
| 49 |
+
|
| 50 |
+
[components.tok2vec.model.embed]
|
| 51 |
+
@architectures = "spacy.MultiHashEmbed.v2"
|
| 52 |
+
width = ${components.tok2vec.model.encode.width}
|
| 53 |
+
attrs = ["NORM","PREFIX","SUFFIX","SHAPE"]
|
| 54 |
+
rows = [5000,2500,2500,2500]
|
| 55 |
+
include_static_vectors = false
|
| 56 |
+
|
| 57 |
+
[components.tok2vec.model.encode]
|
| 58 |
+
@architectures = "spacy.MaxoutWindowEncoder.v2"
|
| 59 |
+
width = 96
|
| 60 |
+
depth = 4
|
| 61 |
+
window_size = 1
|
| 62 |
+
maxout_pieces = 3
|
| 63 |
+
|
| 64 |
+
[corpora]
|
| 65 |
+
|
| 66 |
+
[corpora.dev]
|
| 67 |
+
@readers = "spacy.Corpus.v1"
|
| 68 |
+
path = ${paths.dev}
|
| 69 |
+
max_length = 0
|
| 70 |
+
gold_preproc = false
|
| 71 |
+
limit = 0
|
| 72 |
+
augmenter = null
|
| 73 |
+
|
| 74 |
+
[corpora.train]
|
| 75 |
+
@readers = "spacy.Corpus.v1"
|
| 76 |
+
path = ${paths.train}
|
| 77 |
+
max_length = 0
|
| 78 |
+
gold_preproc = false
|
| 79 |
+
limit = 0
|
| 80 |
+
augmenter = null
|
| 81 |
+
|
| 82 |
+
[training]
|
| 83 |
+
dev_corpus = "corpora.dev"
|
| 84 |
+
train_corpus = "corpora.train"
|
| 85 |
+
seed = ${system.seed}
|
| 86 |
+
gpu_allocator = ${system.gpu_allocator}
|
| 87 |
+
dropout = 0.1
|
| 88 |
+
accumulate_gradient = 1
|
| 89 |
+
patience = 1600
|
| 90 |
+
max_epochs = 0
|
| 91 |
+
max_steps = 20000
|
| 92 |
+
eval_frequency = 200
|
| 93 |
+
frozen_components = []
|
| 94 |
+
annotating_components = []
|
| 95 |
+
before_to_disk = null
|
| 96 |
+
|
| 97 |
+
[training.batcher]
|
| 98 |
+
@batchers = "spacy.batch_by_words.v1"
|
| 99 |
+
discard_oversize = false
|
| 100 |
+
tolerance = 0.2
|
| 101 |
+
get_length = null
|
| 102 |
+
|
| 103 |
+
[training.batcher.size]
|
| 104 |
+
@schedules = "compounding.v1"
|
| 105 |
+
start = 100
|
| 106 |
+
stop = 1000
|
| 107 |
+
compound = 1.001
|
| 108 |
+
t = 0.0
|
| 109 |
+
|
| 110 |
+
[training.logger]
|
| 111 |
+
@loggers = "spacy.ConsoleLogger.v1"
|
| 112 |
+
progress_bar = false
|
| 113 |
+
|
| 114 |
+
[training.optimizer]
|
| 115 |
+
@optimizers = "Adam.v1"
|
| 116 |
+
beta1 = 0.9
|
| 117 |
+
beta2 = 0.999
|
| 118 |
+
L2_is_weight_decay = true
|
| 119 |
+
L2 = 0.01
|
| 120 |
+
grad_clip = 1.0
|
| 121 |
+
use_averages = false
|
| 122 |
+
eps = 0.00000001
|
| 123 |
+
learn_rate = 0.001
|
| 124 |
+
|
| 125 |
+
[training.score_weights]
|
| 126 |
+
ents_f = 1.0
|
| 127 |
+
ents_p = 0.0
|
| 128 |
+
ents_r = 0.0
|
| 129 |
+
ents_per_type = null
|
| 130 |
+
|
| 131 |
+
[pretraining]
|
| 132 |
+
|
| 133 |
+
[initialize]
|
| 134 |
+
vectors = ${paths.vectors}
|
| 135 |
+
init_tok2vec = ${paths.init_tok2vec}
|
| 136 |
+
vocab_data = null
|
| 137 |
+
lookups = null
|
| 138 |
+
before_init = null
|
| 139 |
+
after_init = null
|
| 140 |
+
|
| 141 |
+
[initialize.components]
|
| 142 |
+
|
| 143 |
+
[initialize.components.ner]
|
| 144 |
+
|
| 145 |
+
[initialize.components.ner.labels]
|
| 146 |
+
@readers = "spacy.read_labels.v1"
|
| 147 |
+
path = "data/labels/ner.json"
|
| 148 |
+
require = false
|
| 149 |
+
|
| 150 |
+
[initialize.tokenizer]
|
en_reciparse_model-0.0.0-py3-none-any.whl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a3af0488ec2d42e316fe86638464b6d421ca5fd92fb8bb5c140d69a241ce3dba
|
| 3 |
+
size 6209014
|
meta.json
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"lang":"en",
|
| 3 |
+
"name":"reciparse_model",
|
| 4 |
+
"version":"0.0.0",
|
| 5 |
+
"description":"",
|
| 6 |
+
"author":"",
|
| 7 |
+
"email":"",
|
| 8 |
+
"url":"",
|
| 9 |
+
"license":"",
|
| 10 |
+
"spacy_version":">=3.3.1,<3.4.0",
|
| 11 |
+
"spacy_git_version":"5fb597f77",
|
| 12 |
+
"vectors":{
|
| 13 |
+
"width":0,
|
| 14 |
+
"vectors":0,
|
| 15 |
+
"keys":0,
|
| 16 |
+
"name":null
|
| 17 |
+
},
|
| 18 |
+
"labels":{
|
| 19 |
+
"tok2vec":[
|
| 20 |
+
|
| 21 |
+
],
|
| 22 |
+
"ner":[
|
| 23 |
+
"INGREDIENT"
|
| 24 |
+
]
|
| 25 |
+
},
|
| 26 |
+
"pipeline":[
|
| 27 |
+
"tok2vec",
|
| 28 |
+
"ner"
|
| 29 |
+
],
|
| 30 |
+
"components":[
|
| 31 |
+
"tok2vec",
|
| 32 |
+
"ner"
|
| 33 |
+
],
|
| 34 |
+
"disabled":[
|
| 35 |
+
|
| 36 |
+
],
|
| 37 |
+
"performance":{
|
| 38 |
+
"ents_f":0.8796895213,
|
| 39 |
+
"ents_p":0.8854166667,
|
| 40 |
+
"ents_r":0.8740359897,
|
| 41 |
+
"ents_per_type":{
|
| 42 |
+
"INGREDIENT":{
|
| 43 |
+
"p":0.8854166667,
|
| 44 |
+
"r":0.8740359897,
|
| 45 |
+
"f":0.8796895213
|
| 46 |
+
}
|
| 47 |
+
},
|
| 48 |
+
"tok2vec_loss":375.5771132441,
|
| 49 |
+
"ner_loss":194.086525069
|
| 50 |
+
},
|
| 51 |
+
"requirements":[
|
| 52 |
+
|
| 53 |
+
]
|
| 54 |
+
}
|
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":"incorrect_spans"
|
| 13 |
+
}
|
ner/model
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2b9147dff37485a351fd8a8726c3318adfb8247d03078132b8287135dd70cf73
|
| 3 |
+
size 127508
|
ner/moves
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
��moves�x{"0":{},"1":{"INGREDIENT":1711},"2":{"INGREDIENT":1711},"3":{"INGREDIENT":1711},"4":{"INGREDIENT":1711,"":1},"5":{"":1}}�cfg��neg_key�incorrect_spans
|
setup.py
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env python
|
| 2 |
+
import io
|
| 3 |
+
import json
|
| 4 |
+
from os import path, walk
|
| 5 |
+
from shutil import copy
|
| 6 |
+
from setuptools import setup
|
| 7 |
+
|
| 8 |
+
|
| 9 |
+
def load_meta(fp):
|
| 10 |
+
with io.open(fp, encoding='utf8') as f:
|
| 11 |
+
return json.load(f)
|
| 12 |
+
|
| 13 |
+
|
| 14 |
+
def load_readme(fp):
|
| 15 |
+
if path.exists(fp):
|
| 16 |
+
with io.open(fp, encoding='utf8') as f:
|
| 17 |
+
return f.read()
|
| 18 |
+
return ""
|
| 19 |
+
|
| 20 |
+
|
| 21 |
+
def list_files(data_dir):
|
| 22 |
+
output = []
|
| 23 |
+
for root, _, filenames in walk(data_dir):
|
| 24 |
+
for filename in filenames:
|
| 25 |
+
if not filename.startswith('.'):
|
| 26 |
+
output.append(path.join(root, filename))
|
| 27 |
+
output = [path.relpath(p, path.dirname(data_dir)) for p in output]
|
| 28 |
+
output.append('meta.json')
|
| 29 |
+
return output
|
| 30 |
+
|
| 31 |
+
|
| 32 |
+
def list_requirements(meta):
|
| 33 |
+
parent_package = meta.get('parent_package', 'spacy')
|
| 34 |
+
requirements = [parent_package + meta['spacy_version']]
|
| 35 |
+
if 'setup_requires' in meta:
|
| 36 |
+
requirements += meta['setup_requires']
|
| 37 |
+
if 'requirements' in meta:
|
| 38 |
+
requirements += meta['requirements']
|
| 39 |
+
return requirements
|
| 40 |
+
|
| 41 |
+
|
| 42 |
+
def setup_package():
|
| 43 |
+
root = path.abspath(path.dirname(__file__))
|
| 44 |
+
meta_path = path.join(root, 'meta.json')
|
| 45 |
+
meta = load_meta(meta_path)
|
| 46 |
+
readme_path = path.join(root, 'README.md')
|
| 47 |
+
readme = load_readme(readme_path)
|
| 48 |
+
model_name = str(meta['lang'] + '_' + meta['name'])
|
| 49 |
+
model_dir = path.join(model_name, model_name + '-' + meta['version'])
|
| 50 |
+
|
| 51 |
+
copy(meta_path, path.join(model_name))
|
| 52 |
+
copy(meta_path, model_dir)
|
| 53 |
+
|
| 54 |
+
setup(
|
| 55 |
+
name=model_name,
|
| 56 |
+
description=meta.get('description'),
|
| 57 |
+
long_description=readme,
|
| 58 |
+
author=meta.get('author'),
|
| 59 |
+
author_email=meta.get('email'),
|
| 60 |
+
url=meta.get('url'),
|
| 61 |
+
version=meta['version'],
|
| 62 |
+
license=meta.get('license'),
|
| 63 |
+
packages=[model_name],
|
| 64 |
+
package_data={model_name: list_files(model_dir)},
|
| 65 |
+
install_requires=list_requirements(meta),
|
| 66 |
+
zip_safe=False,
|
| 67 |
+
entry_points={'spacy_models': ['{m} = {m}'.format(m=model_name)]}
|
| 68 |
+
)
|
| 69 |
+
|
| 70 |
+
|
| 71 |
+
if __name__ == '__main__':
|
| 72 |
+
setup_package()
|
tok2vec/cfg
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
|
| 3 |
+
}
|
tok2vec/model
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0e8e7e9591172ec382ce06a736665999fef06acff7ca837e8052df1435714e9b
|
| 3 |
+
size 6585091
|
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�2y…$|……$|,$|:$|;$|\!$|\?$|¿$|؟$|¡$|\($|\)$|\[$|\]$|\{$|\}$|<$|>$|_$|#$|\*$|&$|。$|?$|!$|,$|、$|;$|:$|~$|·$|।$|،$|۔$|؛$|٪$|\.\.+$|…$|\'$|"$|”$|“$|`$|‘$|´$|’$|‚$|,$|„$|»$|«$|「$|」$|『$|』$|($|)$|〔$|〕$|【$|】$|《$|》$|〈$|〉$|[\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're��A�ThatC�that�A�'reC�are�That's��A�ThatC�that�A�'sC�'s�That've��A�ThatC�that�A�'ve�Thatd��A�ThatC�that�A�dC�'d�Thatdve��A�ThatC�that�A�dC�would�A�veC�have�Thatll��A�ThatC�that�A�llC�will�Thatllve��A�ThatC�that�A�llC�will�A�veC�have�Thatre��A�ThatC�that�A�reC�are�Thats��A�ThatC�that�A�s�Thatve��A�That�A�veC�have�That’d��A�ThatC�that�A�’dC�'d�That’d’ve��A�ThatC�that�A�’dC�would�A�’veC�have�That’ll��A�ThatC�that�A�’llC�will�That’ll’ve��A�ThatC�that�A�’llC�will�A�’veC�have�That’re��A�ThatC�that�A�’reC�are�That’s��A�ThatC�that�A�’sC�'s�That’ve��A�ThatC�that�A�’ve�There'd��A�ThereC�there�A�'dC�'d�There'd've��A�ThereC�there�A�'dC�would�A�'veC�have�There'll��A�ThereC�there�A�'llC�will�There'll've��A�ThereC�there�A�'llC�will�A�'veC�have�There're��A�ThereC�there�A�'reC�are�There's��A�ThereC�there�A�'sC�'s�There've��A�ThereC�there�A�'ve�Thered��A�ThereC�there�A�dC�'d�Theredve��A�ThereC�there�A�dC�would�A�veC�have�Therell��A�ThereC�there�A�llC�will�Therellve��A�ThereC�there�A�llC�will�A�veC�have�Therere��A�ThereC�there�A�reC�are�Theres��A�ThereC�there�A�s�Thereve��A�There�A�veC�have�There’d��A�ThereC�there�A�’dC�'d�There’d’ve��A�ThereC�there�A�’dC�would�A�’veC�have�There’ll��A�ThereC�there�A�’llC�will�There’ll’ve��A�ThereC�there�A�’llC�will�A�’veC�have�There’re��A�ThereC�there�A�’reC�are�There’s��A�ThereC�there�A�’sC�'s�There’ve��A�ThereC�there�A�’ve�These'd��A�TheseC�these�A�'dC�'d�These'd've��A�TheseC�these�A�'dC�would�A�'veC�have�These'll��A�TheseC�these�A�'llC�will�These'll've��A�TheseC�these�A�'llC�will�A�'veC�have�These're��A�TheseC�these�A�'reC�are�These's��A�TheseC�these�A�'sC�'s�These've��A�TheseC�these�A�'ve�Thesed��A�TheseC�these�A�dC�'d�Thesedve��A�TheseC�these�A�dC�would�A�veC�have�Thesell��A�TheseC�these�A�llC�will�Thesellve��A�TheseC�these�A�llC�will�A�veC�have�Thesere��A�TheseC�these�A�reC�are�Theses��A�TheseC�these�A�s�Theseve��A�These�A�veC�have�These’d��A�TheseC�these�A�’dC�'d�These’d’ve��A�TheseC�these�A�’dC�would�A�’veC�have�These’ll��A�TheseC�these�A�’llC�will�These’ll’ve��A�TheseC�these�A�’llC�will�A�’veC�have�These’re��A�TheseC�these�A�’reC�are�These’s��A�TheseC�these�A�’sC�'s�These’ve��A�TheseC�these�A�’ve�They'd��A�TheyC�they�A�'dC�'d�They'd've��A�TheyC�they�A�'dC�would�A�'veC�have�They'll��A�TheyC�they�A�'llC�will�They'll've��A�TheyC�they�A�'llC�will�A�'veC�have�They're��A�TheyC�they�A�'reC�are�They've��A�TheyC�they�A�'veC�have�Theyd��A�TheyC�they�A�dC�'d�Theydve��A�TheyC�they�A�dC�would�A�veC�have�Theyll��A�TheyC�they�A�llC�will�Theyllve��A�TheyC�they�A�llC�will�A�veC�have�Theyre��A�TheyC�they�A�reC�are�Theyve��A�TheyC�they�A�veC�have�They’d��A�TheyC�they�A�’dC�'d�They’d’ve��A�TheyC�they�A�’dC�would�A�’veC�have�They’ll��A�TheyC�they�A�’llC�will�They’ll’ve��A�TheyC�they�A�’llC�will�A�’veC�have�They’re��A�TheyC�they�A�’reC�are�They’ve��A�TheyC�they�A�’veC�have�This'd��A�ThisC�this�A�'dC�'d�This'd've��A�ThisC�this�A�'dC�would�A�'veC�have�This'll��A�ThisC�this�A�'llC�will�This'll've��A�ThisC�this�A�'llC�will�A�'veC�have�This're��A�ThisC�this�A�'reC�are�This's��A�ThisC�this�A�'sC�'s�This've��A�ThisC�this�A�'ve�Thisd��A�ThisC�this�A�dC�'d�Thisdve��A�ThisC�this�A�dC�would�A�veC�have�Thisll��A�ThisC�this�A�llC�will�Thisllve��A�ThisC�this�A�llC�will�A�veC�have�Thisre��A�ThisC�this�A�reC�are�Thiss��A�ThisC�this�A�s�Thisve��A�This�A�veC�have�This’d��A�ThisC�this�A�’dC�'d�This’d’ve��A�ThisC�this�A�’dC�would�A�’veC�have�This’ll��A�ThisC�this�A�’llC�will�This’ll’ve��A�ThisC�this�A�’llC�will�A�’veC�have�This’re��A�ThisC�this�A�’reC�are�This’s��A�ThisC�this�A�’sC�'s�This’ve��A�ThisC�this�A�’ve�Those'd��A�ThoseC�those�A�'dC�'d�Those'd've��A�ThoseC�those�A�'dC�would�A�'veC�have�Those'll��A�ThoseC�those�A�'llC�will�Those'll've��A�ThoseC�those�A�'llC�will�A�'veC�have�Those're��A�ThoseC�those�A�'reC�are�Those's��A�ThoseC�those�A�'sC�'s�Those've��A�ThoseC�those�A�'ve�Thosed��A�ThoseC�those�A�dC�'d�Thosedve��A�ThoseC�those�A�dC�would�A�veC�have�Thosell��A�ThoseC�those�A�llC�will�Thosellve��A�ThoseC�those�A�llC�will�A�veC�have�Thosere��A�ThoseC�those�A�reC�are�Thoses��A�ThoseC�those�A�s�Thoseve��A�Those�A�veC�have�Those’d��A�ThoseC�those�A�’dC�'d�Those’d’ve��A�ThoseC�those�A�’dC�would�A�’veC�have�Those’ll��A�ThoseC�those�A�’llC�will�Those’ll’ve��A�ThoseC�those�A�’llC�will�A�’veC�have�Those’re��A�ThoseC�those�A�’reC�are�Those’s��A�ThoseC�those�A�’sC�'s�Those’ve��A�ThoseC�those�A�’ve�V.V��A�V.V�V_V��A�V_V�Va.��A�Va.C�Virginia�Wash.��A�Wash.C�Washington�Wasn't��A�WasC�was�A�n'tC�not�Wasnt��A�WasC�was�A�ntC�not�Wasn’t��A�WasC�was�A�n’tC�not�We'd��A�WeC�we�A�'dC�'d�We'd've��A�WeC�we�A�'dC�would�A�'veC�have�We'll��A�WeC�we�A�'llC�will�We'll've��A�WeC�we�A�'llC�will�A�'veC�have�We're��A�WeC�we�A�'reC�are�We've��A�WeC�we�A�'veC�have�Wed��A�WeC�we�A�dC�'d�Wedve��A�WeC�we�A�dC�would�A�veC�have�Wellve��A�WeC�we�A�llC�will�A�veC�have�Weren't��A�WereC�were�A�n'tC�not�Werent��A�WereC�were�A�ntC�not�Weren’t��A�WereC�were�A�n’tC�not�Weve��A�WeC�we�A�veC�have�We’d��A�WeC�we�A�’dC�'d�We’d’ve��A�WeC�we�A�’dC�would�A�’veC�have�We’ll��A�WeC�we�A�’llC�will�We’ll’ve��A�WeC�we�A�’llC�will�A�’veC�have�We’re��A�WeC�we�A�’reC�are�We’ve��A�WeC�we�A�’veC�have�What'd��A�WhatC�what�A�'dC�'d�What'd've��A�WhatC�what�A�'dC�would�A�'veC�have�What'll��A�WhatC�what�A�'llC�will�What'll've��A�WhatC�what�A�'llC�will�A�'veC�have�What're��A�WhatC�what�A�'reC�are�What's��A�WhatC�what�A�'sC�'s�What've��A�WhatC�what�A�'ve�Whatd��A�WhatC�what�A�dC�'d�Whatdve��A�WhatC�what�A�dC�would�A�veC�have�Whatll��A�WhatC�what�A�llC�will�Whatllve��A�WhatC�what�A�llC�will�A�veC�have�Whatre��A�WhatC�what�A�reC�are�Whats��A�WhatC�what�A�s�Whatve��A�What�A�veC�have�What’d��A�WhatC�what�A�’dC�'d�What’d’ve��A�WhatC�what�A�’dC�would�A�’veC�have�What’ll��A�WhatC�what�A�’llC�will�What’ll’ve��A�WhatC�what�A�’llC�will�A�’veC�have�What’re��A�WhatC�what�A�’reC�are�What’s��A�WhatC�what�A�’sC�'s�What’ve��A�WhatC�what�A�’ve�When'd��A�WhenC�when�A�'dC�'d�When'd've��A�WhenC�when�A�'dC�would�A�'veC�have�When'll��A�WhenC�when�A�'llC�will�When'll've��A�WhenC�when�A�'llC�will�A�'veC�have�When're��A�WhenC�when�A�'reC�are�When's��A�WhenC�when�A�'sC�'s�When've��A�WhenC�when�A�'ve�Whend��A�WhenC�when�A�dC�'d�Whendve��A�WhenC�when�A�dC�would�A�veC�have�Whenll��A�WhenC�when�A�llC�will�Whenllve��A�WhenC�when�A�llC�will�A�veC�have�Whenre��A�WhenC�when�A�reC�are�Whens��A�WhenC�when�A�s�Whenve��A�When�A�veC�have�When’d��A�WhenC�when�A�’dC�'d�When’d’ve��A�WhenC�when�A�’dC�would�A�’veC�have�When’ll��A�WhenC�when�A�’llC�will�When’ll’ve��A�WhenC�when�A�’llC�will�A�’veC�have�When’re��A�WhenC�when�A�’reC�are�When’s��A�WhenC�when�A�’sC�'s�When’ve��A�WhenC�when�A�’ve�Where'd��A�WhereC�where�A�'dC�'d�Where'd've��A�WhereC�where�A�'dC�would�A�'veC�have�Where'll��A�WhereC�where�A�'llC�will�Where'll've��A�WhereC�where�A�'llC�will�A�'veC�have�Where're��A�WhereC�where�A�'reC�are�Where's��A�WhereC�where�A�'sC�'s�Where've��A�WhereC�where�A�'ve�Whered��A�WhereC�where�A�dC�'d�Wheredve��A�WhereC�where�A�dC�would�A�veC�have�Wherell��A�WhereC�where�A�llC�will�Wherellve��A�WhereC�where�A�llC�will�A�veC�have�Wherere��A�WhereC�where�A�reC�are�Wheres��A�WhereC�where�A�s�Whereve��A�Where�A�veC�have�Where’d��A�WhereC�where�A�’dC�'d�Where’d’ve��A�WhereC�where�A�’dC�would�A�’veC�have�Where’ll��A�WhereC�where�A�’llC�will�Where’ll’ve��A�WhereC�where�A�’llC�will�A�’veC�have�Where’re��A�WhereC�where�A�’reC�are�Where’s��A�WhereC�where�A�’sC�'s�Where’ve��A�WhereC�where�A�’ve�Who'd��A�WhoC�who�A�'dC�'d�Who'd've��A�WhoC�who�A�'dC�would�A�'veC�have�Who'll��A�WhoC�who�A�'llC�will�Who'll've��A�WhoC�who�A�'llC�will�A�'veC�have�Who're��A�WhoC�who�A�'reC�are�Who's��A�WhoC�who�A�'sC�'s�Who've��A�WhoC�who�A�'ve�Whod��A�WhoC�who�A�dC�'d�Whodve��A�WhoC�who�A�dC�would�A�veC�have�Wholl��A�WhoC�who�A�llC�will�Whollve��A�WhoC�who�A�llC�will�A�veC�have�Whos��A�WhoC�who�A�s�Whove��A�Who�A�veC�have�Who’d��A�WhoC�who�A�’dC�'d�Who’d’ve��A�WhoC�who�A�’dC�would�A�’veC�have�Who’ll��A�WhoC�who�A�’llC�will�Who’ll’ve��A�WhoC�who�A�’llC�will�A�’veC�have�Who’re��A�WhoC�who�A�’reC�are�Who’s��A�WhoC�who�A�’sC�'s�Who’ve��A�WhoC�who�A�’ve�Why'd��A�WhyC�why�A�'dC�'d�Why'd've��A�WhyC�why�A�'dC�would�A�'veC�have�Why'll��A�WhyC�why�A�'llC�will�Why'll've��A�WhyC�why�A�'llC�will�A�'veC�have�Why're��A�WhyC�why�A�'reC�are�Why's��A�WhyC�why�A�'sC�'s�Why've��A�WhyC�why�A�'ve�Whyd��A�WhyC�why�A�dC�'d�Whydve��A�WhyC�why�A�dC�would�A�veC�have�Whyll��A�WhyC�why�A�llC�will�Whyllve��A�WhyC�why�A�llC�will�A�veC�have�Whyre��A�WhyC�why�A�reC�are�Whys��A�WhyC�why�A�s�Whyve��A�Why�A�veC�have�Why’d��A�WhyC�why�A�’dC�'d�Why’d’ve��A�WhyC�why�A�’dC�would�A�’veC�have�Why’ll��A�WhyC�why�A�’llC�will�Why’ll’ve��A�WhyC�why�A�’llC�will�A�’veC�have�Why’re��A�WhyC�why�A�’reC�are�Why’s��A�WhyC�why�A�’sC�'s�Why’ve��A�WhyC�why�A�’ve�Wis.��A�Wis.C�Wisconsin�Won't��A�WoC�will�A�n'tC�not�Won't've��A�WoC�will�A�n'tC�not�A�'veC�have�Wont��A�WoC�will�A�ntC�not�Wontve��A�WoC�will�A�ntC�not�A�veC�have�Won’t��A�WoC�will�A�n’tC�not�Won’t’ve��A�WoC�will�A�n’tC�not�A�’veC�have�Would've��A�WouldC�would�A�'ve�Wouldn't��A�WouldC�would�A�n'tC�not�Wouldn't've��A�WouldC�would�A�n'tC�not�A�'veC�have�Wouldnt��A�WouldC�would�A�ntC�not�Wouldntve��A�WouldC�would�A�ntC�not�A�veC�have�Wouldn’t��A�WouldC�would�A�n’tC�not�Wouldn’t’ve��A�WouldC�would�A�n’tC�not�A�’veC�have�Wouldve��A�WouldC�would�A�ve�Would’ve��A�WouldC�would�A�’ve�XD��A�XD�XDD��A�XDD�You'd��A�YouC�you�A�'dC�'d�You'd've��A�YouC�you�A�'dC�would�A�'veC�have�You'll��A�YouC�you�A�'llC�will�You'll've��A�YouC�you�A�'llC�will�A�'veC�have�You're��A�YouC�you�A�'reC�are�You've��A�YouC�you�A�'veC�have�Youd��A�YouC�you�A�dC�'d�Youdve��A�YouC�you�A�dC�would�A�veC�have�Youll��A�YouC�you�A�llC�will�Youllve��A�YouC�you�A�llC�will�A�veC�have�Youre��A�YouC�you�A�reC�are�Youve��A�YouC�you�A�veC�have�You’d��A�YouC�you�A�’dC�'d�You’d’ve��A�YouC�you�A�’dC�would�A�’veC�have�You’ll��A�YouC�you�A�’llC�will�You’ll’ve��A�YouC�you�A�’llC�will�A�’veC�have�You’re��A�YouC�you�A�’reC�are�You’ve��A�YouC�you�A�’veC�have�[-:��A�[-:�[:��A�[:�[=��A�[=�\")��A�\")�\n��A�\n�\t��A�\t�]=��A�]=�^_^��A�^_^�^__^��A�^__^�^___^��A�^___^�a.��A�a.�a.m.��A�a.m.�ain't��A�ai�A�n'tC�not�aint��A�ai�A�ntC�not�ain’t��A�ai�A�n’tC�not�and/or��A�and/orC�and/or�aren't��A�areC�are�A�n'tC�not�arent��A�areC�are�A�ntC�not�aren’t��A�areC�are�A�n’tC�not�b.��A�b.�c'mon��A�c'mC�come�A�on�c.��A�c.�can't��A�caC�can�A�n'tC�not�can't've��A�caC�can�A�n'tC�not�A�'veC�have�cannot��A�can�A�not�cant��A�caC�can�A�ntC�not�cantve��A�caC�can�A�ntC�not�A�veC�have�can’t��A�caC�can�A�n’tC�not�can’t’ve��A�caC�can�A�n’tC�not�A�’veC�have�co.��A�co.�could've��A�couldC�could�A�'ve�couldn't��A�couldC�could�A�n'tC�not�couldn't've��A�couldC�could�A�n'tC�not�A�'veC�have�couldnt��A�couldC�could�A�ntC�not�couldntve��A�couldC�could�A�ntC�not�A�veC�have�couldn’t��A�couldC�could�A�n’tC�not�couldn’t’ve��A�couldC�could�A�n’tC�not�A�’veC�have�couldve��A�couldC�could�A�ve�could’ve��A�couldC�could�A�’ve�c’mon��A�c’mC�come�A�on�d.��A�d.�daren't��A�dareC�dare�A�n'tC�not�darent��A�dareC�dare�A�ntC�not�daren’t��A�dareC�dare�A�n’tC�not�didn't��A�didC�do�A�n'tC�not�didn't've��A�didC�do�A�n'tC�not�A�'veC�have�didnt��A�didC�do�A�ntC�not�didntve��A�didC�do�A�ntC�not�A�veC�have�didn’t��A�didC�do�A�n’tC�not�didn’t’ve��A�didC�do�A�n’tC�not�A�’veC�have�doesn't��A�doesC�does�A�n'tC�not�doesn't've��A�doesC�does�A�n'tC�not�A�'veC�have�doesnt��A�doesC�does�A�ntC�not�doesntve��A�doesC�does�A�ntC�not�A�veC�have�doesn’t��A�doesC�does�A�n’tC�not�doesn’t’ve��A�doesC�does�A�n’tC�not�A�’veC�have�doin��A�doinC�doing�doin'��A�doin'C�doing�doin’��A�doin’C�doing�don't��A�doC�do�A�n'tC�not�don't've��A�doC�do�A�n'tC�not�A�'veC�have�dont��A�doC�do�A�ntC�not�dontve��A�doC�do�A�ntC�not�A�veC�have�don’t��A�doC�do�A�n’tC�not�don’t’ve��A�doC�do�A�n’tC�not�A�’veC�have�e.��A�e.�e.g.��A�e.g.�em��A�emC�them�f.��A�f.�g.��A�g.�goin��A�goinC�going�goin'��A�goin'C�going�goin’��A�goin’C�going�gonna��A�gonC�going�A�naC�to�gotta��A�got�A�taC�to�h.��A�h.�hadn't��A�hadC�have�A�n'tC�not�hadn't've��A�hadC�have�A�n'tC�not�A�'veC�have�hadnt��A�hadC�have�A�ntC�not�hadntve��A�hadC�have�A�ntC�not�A�veC�have�hadn’t��A�hadC�have�A�n’tC�not�hadn’t’ve��A�hadC�have�A�n’tC�not�A�’veC�have�hasn't��A�hasC�has�A�n'tC�not�hasnt��A�hasC�has�A�ntC�not�hasn’t��A�hasC�has�A�n’tC�not�haven't��A�haveC�have�A�n'tC�not�havent��A�haveC�have�A�ntC�not�haven’t��A�haveC�have�A�n’tC�not�havin��A�havinC�having�havin'��A�havin'C�having�havin’��A�havin’C�having�he'd��A�heC�he�A�'dC�'d�he'd've��A�heC�he�A�'dC�would�A�'veC�have�he'll��A�heC�he�A�'llC�will�he'll've��A�heC�he�A�'llC�will�A�'veC�have�he's��A�heC�he�A�'sC�'s�hed��A�heC�he�A�dC�'d�hedve��A�heC�he�A�dC�would�A�veC�have�hellve��A�heC�he�A�llC�will�A�veC�have�hes��A�heC�he�A�s�he’d��A�heC�he�A�’dC�'d�he’d’ve��A�heC�he�A�’dC�would�A�’veC�have�he’ll��A�heC�he�A�’llC�will�he’ll’ve��A�heC�he�A�’llC�will�A�’veC�have�he’s��A�heC�he�A�’sC�'s�how'd��A�howC�how�A�'dC�'d�how'd've��A�howC�how�A�'dC�would�A�'veC�have�how'd'y��A�how�A�'d�A�'yC�you�how'll��A�howC�how�A�'llC�will�how'll've��A�howC�how�A�'llC�will�A�'veC�have�how're��A�howC�how�A�'reC�are�how's��A�howC�how�A�'sC�'s�how've��A�howC�how�A�'ve�howd��A�howC�how�A�dC�'d�howdve��A�howC�how�A�dC�would�A�veC�have�howll��A�howC�how�A�llC�will�howllve��A�howC�how�A�llC�will�A�veC�have�howre��A�howC�how�A�reC�are�hows��A�howC�how�A�s�howve��A�how�A�veC�have�how’d��A�howC�how�A�’dC�'d�how’d’ve��A�howC�how�A�’dC�would�A�’veC�have�how’d’y��A�how�A�’d�A�’yC�you�how’ll��A�howC�how�A�’llC�will�how’ll’ve��A�howC�how�A�’llC�will�A�’veC�have�how’re��A�howC�how�A�’reC�are�how’s��A�howC�how�A�’sC�'s�how’ve��A�howC�how�A�’ve�i'd��A�iC�i�A�'dC�'d�i'd've��A�iC�i�A�'dC�would�A�'veC�have�i'll��A�iC�i�A�'llC�will�i'll've��A�iC�i�A�'llC�will�A�'veC�have�i'm��A�iC�i�A�'mC�am�i'ma��A�iC�i�A�'mC�am�A�aC�gonna�i've��A�iC�i�A�'veC�have�i.��A�i.�i.e.��A�i.e.�id��A�iC�i�A�dC�'d�idve��A�iC�i�A�dC�would�A�veC�have�illve��A�iC�i�A�llC�will�A�veC�have�im��A�iC�i�A�m�ima��A�iC�i�A�mC�am�A�aC�gonna�isn't��A�isC�is�A�n'tC�not�isnt��A�isC�is�A�ntC�not�isn’t��A�isC�is�A�n’tC�not�it'd��A�itC�it�A�'dC�'d�it'd've��A�itC�it�A�'dC�would�A�'veC�have�it'll��A�itC�it�A�'llC�will�it'll've��A�itC�it�A�'llC�will�A�'veC�have�it's��A�itC�it�A�'sC�'s�itd��A�itC�it�A�dC�'d�itdve��A�itC�it�A�dC�would�A�veC�have�itll��A�itC�it�A�llC�will�itllve��A�itC�it�A�llC�will�A�veC�have�it’d��A�itC�it�A�’dC�'d�it’d’ve��A�itC�it�A�’dC�would�A�’veC�have�it’ll��A�itC�it�A�’llC�will�it’ll’ve��A�itC�it�A�’llC�will�A�’veC�have�it’s��A�itC�it�A�’sC�'s�ive��A�iC�i�A�veC�have�i’d��A�iC�i�A�’dC�'d�i’d’ve��A�iC�i�A�’dC�would�A�’veC�have�i’ll��A�iC�i�A�’llC�will�i’ll’ve��A�iC�i�A�’llC�will�A�’veC�have�i’m��A�iC�i�A�’mC�am�i’ma��A�iC�i�A�’mC�am�A�aC�gonna�i’ve��A�iC�i�A�’veC�have�j.��A�j.�k.��A�k.�l.��A�l.�let's��A�let�A�'sC�us�let’s��A�let�A�’sC�us�ll��A�llC�will�lovin��A�lovinC�loving�lovin'��A�lovin'C�loving�lovin’��A�lovin’C�loving�m.��A�m.�ma'am��A�ma'amC�madam�mayn't��A�mayC�may�A�n'tC�not�mayn't've��A�mayC�may�A�n'tC�not�A�'veC�have�maynt��A�mayC�may�A�ntC�not�mayntve��A�mayC�may�A�ntC�not�A�veC�have�mayn’t��A�mayC�may�A�n’tC�not�mayn’t’ve��A�mayC�may�A�n’tC�not�A�’veC�have�ma’am��A�ma’amC�madam�might've��A�mightC�might�A�'ve�mightn't��A�mightC�might�A�n'tC�not�mightn't've��A�mightC�might�A�n'tC�not�A�'veC�have�mightnt��A�mightC�might�A�ntC�not�mightntve��A�mightC�might�A�ntC�not�A�veC�have�mightn’t��A�mightC�might�A�n’tC�not�mightn’t’ve��A�mightC�might�A�n’tC�not�A�’veC�have�mightve��A�mightC�might�A�ve�might’ve��A�mightC�might�A�’ve�must've��A�mustC�must�A�'ve�mustn't��A�mustC�must�A�n'tC�not�mustn't've��A�mustC�must�A�n'tC�not�A�'veC�have�mustnt��A�mustC�must�A�ntC�not�mustntve��A�mustC�must�A�ntC�not�A�veC�have�mustn’t��A�mustC�must�A�n’tC�not�mustn’t’ve��A�mustC�must�A�n’tC�not�A�’veC�have�mustve��A�mustC�must�A�ve�must’ve��A�mustC�must�A�’ve�n.��A�n.�needn't��A�needC�need�A�n'tC�not�needn't've��A�needC�need�A�n'tC�not�A�'veC�have�neednt��A�needC�need�A�ntC�not�needntve��A�needC�need�A�ntC�not�A�veC�have�needn’t��A�needC�need�A�n’tC�not�needn’t’ve��A�needC�need�A�n’tC�not�A�’veC�have�not've��A�not�A�'veC�have�nothin��A�nothinC�nothing�nothin'��A�nothin'C�nothing�nothin’��A�nothin’C�nothing�notve��A�not�A�veC�have�not’ve��A�not�A�’veC�have�nuff��A�nuffC�enough�nuthin��A�nuthinC�nothing�nuthin'��A�nuthin'C�nothing�nuthin’��A�nuthin’C�nothing�o'clock��A�o'clockC�o'clock�o.��A�o.�o.0��A�o.0�o.O��A�o.O�o.o��A�o.o�o_0��A�o_0�o_O��A�o_O�o_o��A�o_o�ol��A�olC�old�ol'��A�ol'C�old�ol’��A�ol’C�old�oughtn't��A�oughtC�ought�A�n'tC�not�oughtn't've��A�oughtC�ought�A�n'tC�not�A�'veC�have�oughtnt��A�oughtC�ought�A�ntC�not�oughtntve��A�oughtC�ought�A�ntC�not�A�veC�have�oughtn’t��A�oughtC�ought�A�n’tC�not�oughtn’t’ve��A�oughtC�ought�A�n’tC�not�A�’veC�have�o’clock��A�o’clockC�o'clock�p.��A�p.�p.m.��A�p.m.�q.��A�q.�r.��A�r.�s.��A�s.�shan't��A�shaC�shall�A�n'tC�not�shan't've��A�shaC�shall�A�n'tC�not�A�'veC�have�shant��A�shaC�shall�A�ntC�not�shantve��A�shaC�shall�A�ntC�not�A�veC�have�shan’t��A�shaC�shall�A�n’tC�not�shan’t’ve��A�shaC�shall�A�n’tC�not�A�’veC�have�she'd��A�sheC�she�A�'dC�'d�she'd've��A�sheC�she�A�'dC�would�A�'veC�have�she'll��A�sheC�she�A�'llC�will�she'll've��A�sheC�she�A�'llC�will�A�'veC�have�she's��A�sheC�she�A�'sC�'s�shedve��A�sheC�she�A�dC�would�A�veC�have�shellve��A�sheC�she�A�llC�will�A�veC�have�shes��A�sheC�she�A�s�she’d��A�sheC�she�A�’dC�'d�she’d’ve��A�sheC�she�A�’dC�would�A�’veC�have�she’ll��A�sheC�she�A�’llC�will�she’ll’ve��A�sheC�she�A�’llC�will�A�’veC�have�she’s��A�sheC�she�A�’sC�'s�should've��A�shouldC�should�A�'ve�shouldn't��A�shouldC�should�A�n'tC�not�shouldn't've��A�shouldC�should�A�n'tC�not�A�'veC�have�shouldnt��A�shouldC�should�A�ntC�not�shouldntve��A�shouldC�should�A�ntC�not�A�veC�have�shouldn’t��A�shouldC�should�A�n’tC�not�shouldn’t’ve��A�shouldC�should�A�n’tC�not�A�’veC�have�shouldve��A�shouldC�should�A�ve�should’ve��A�shouldC�should�A�’ve�somethin��A�somethinC�something�somethin'��A�somethin'C�something�somethin’��A�somethin’C�something�t.��A�t.�that'd��A�thatC�that�A�'dC�'d�that'd've��A�thatC�that�A�'dC�would�A�'veC�have�that'll��A�thatC�that�A�'llC�will�that'll've��A�thatC�that�A�'llC�will�A�'veC�have�that're��A�thatC�that�A�'reC�are�that's��A�thatC�that�A�'sC�'s�that've��A�thatC�that�A�'ve�thatd��A�thatC�that�A�dC�'d�thatdve��A�thatC�that�A�dC�would�A�veC�have�thatll��A�thatC�that�A�llC�will�thatllve��A�thatC�that�A�llC�will�A�veC�have�thatre��A�thatC�that�A�reC�are�thats��A�thatC�that�A�s�thatve��A�that�A�veC�have�that’d��A�thatC�that�A�’dC�'d�that’d’ve��A�thatC�that�A�’dC�would�A�’veC�have�that’ll��A�thatC�that�A�’llC�will�that’ll’ve��A�thatC�that�A�’llC�will�A�’veC�have�that’re��A�thatC�that�A�’reC�are�that’s��A�thatC�that�A�’sC�'s�that’ve��A�thatC�that�A�’ve�there'd��A�thereC�there�A�'dC�'d�there'd've��A�thereC�there�A�'dC�would�A�'veC�have�there'll��A�thereC�there�A�'llC�will�there'll've��A�thereC�there�A�'llC�will�A�'veC�have�there're��A�thereC�there�A�'reC�are�there's��A�thereC�there�A�'sC�'s�there've��A�thereC�there�A�'ve�thered��A�thereC�there�A�dC�'d�theredve��A�thereC�there�A�dC�would�A�veC�have�therell��A�thereC�there�A�llC�will�therellve��A�thereC�there�A�llC�will�A�veC�have�therere��A�thereC�there�A�reC�are�theres��A�thereC�there�A�s�thereve��A�there�A�veC�have�there’d��A�thereC�there�A�’dC�'d�there’d’ve��A�thereC�there�A�’dC�would�A�’veC�have�there’ll��A�thereC�there�A�’llC�will�there’ll’ve��A�thereC�there�A�’llC�will�A�’veC�have�there’re��A�thereC�there�A�’reC�are�there’s��A�thereC�there�A�’sC�'s�there’ve��A�thereC�there�A�’ve�these'd��A�theseC�these�A�'dC�'d�these'd've��A�theseC�these�A�'dC�would�A�'veC�have�these'll��A�theseC�these�A�'llC�will�these'll've��A�theseC�these�A�'llC�will�A�'veC�have�these're��A�theseC�these�A�'reC�are�these's��A�theseC�these�A�'sC�'s�these've��A�theseC�these�A�'ve�thesed��A�theseC�these�A�dC�'d�thesedve��A�theseC�these�A�dC�would�A�veC�have�thesell��A�theseC�these�A�llC�will�thesellve��A�theseC�these�A�llC�will�A�veC�have�thesere��A�theseC�these�A�reC�are�theses��A�theseC�these�A�s�theseve��A�these�A�veC�have�these’d��A�theseC�these�A�’dC�'d�these’d’ve��A�theseC�these�A�’dC�would�A�’veC�have�these’ll��A�theseC�these�A�’llC�will�these’ll’ve��A�theseC�these�A�’llC�will�A�’veC�have�these’re��A�theseC�these�A�’reC�are�these’s��A�theseC�these�A�’sC�'s�these’ve��A�theseC�these�A�’ve�they'd��A�theyC�they�A�'dC�'d�they'd've��A�theyC�they�A�'dC�would�A�'veC�have�they'll��A�theyC�they�A�'llC�will�they'll've��A�theyC�they�A�'llC�will�A�'veC�have�they're��A�theyC�they�A�'reC�are�they've��A�theyC�they�A�'veC�have�theyd��A�theyC�they�A�dC�'d�theydve��A�theyC�they�A�dC�would�A�veC�have�theyll��A�theyC�they�A�llC�will�theyllve��A�theyC�they�A�llC�will�A�veC�have�theyre��A�theyC�they�A�reC�are�theyve��A�theyC�they�A�veC�have�they’d��A�theyC�they�A�’dC�'d�they’d’ve��A�theyC�they�A�’dC�would�A�’veC�have�they’ll��A�theyC�they�A�’llC�will�they’ll’ve��A�theyC�they�A�’llC�will�A�’veC�have�they’re��A�theyC�they�A�’reC�are�they’ve��A�theyC�they�A�’veC�have�this'd��A�thisC�this�A�'dC�'d�this'd've��A�thisC�this�A�'dC�would�A�'veC�have�this'll��A�thisC�this�A�'llC�will�this'll've��A�thisC�this�A�'llC�will�A�'veC�have�this're��A�thisC�this�A�'reC�are�this's��A�thisC�this�A�'sC�'s�this've��A�thisC�this�A�'ve�thisd��A�thisC�this�A�dC�'d�thisdve��A�thisC�this�A�dC�would�A�veC�have�thisll��A�thisC�this�A�llC�will�thisllve��A�thisC�this�A�llC�will�A�veC�have�thisre��A�thisC�this�A�reC�are�thiss��A�thisC�this�A�s�thisve��A�this�A�veC�have�this’d��A�thisC�this�A�’dC�'d�this’d’ve��A�thisC�this�A�’dC�would�A�’veC�have�this’ll��A�thisC�this�A�’llC�will�this’ll’ve��A�thisC�this�A�’llC�will�A�’veC�have�this’re��A�thisC�this�A�’reC�are�this’s��A�thisC�this�A�’sC�'s�this’ve��A�thisC�this�A�’ve�those'd��A�thoseC�those�A�'dC�'d�those'd've��A�thoseC�those�A�'dC�would�A�'veC�have�those'll��A�thoseC�those�A�'llC�will�those'll've��A�thoseC�those�A�'llC�will�A�'veC�have�those're��A�thoseC�those�A�'reC�are�those's��A�thoseC�those�A�'sC�'s�those've��A�thoseC�those�A�'ve�thosed��A�thoseC�those�A�dC�'d�thosedve��A�thoseC�those�A�dC�would�A�veC�have�thosell��A�thoseC�those�A�llC�will�thosellve��A�thoseC�those�A�llC�will�A�veC�have�thosere��A�thoseC�those�A�reC�are�thoses��A�thoseC�those�A�s�thoseve��A�those�A�veC�have�those’d��A�thoseC�those�A�’dC�'d�those’d’ve��A�thoseC�those�A�’dC�would�A�’veC�have�those’ll��A�thoseC�those�A�’llC�will�those’ll’ve��A�thoseC�those�A�’llC�will�A�’veC�have�those’re��A�thoseC�those�A�’reC�are�those’s��A�thoseC�those�A�’sC�'s�those’ve��A�thoseC�those�A�’ve�u.��A�u.�v.��A�v.�v.s.��A�v.s.�v.v��A�v.v�v_v��A�v_v�vs.��A�vs.�w.��A�w.�w/o��A�w/oC�without�wasn't��A�wasC�was�A�n'tC�not�wasnt��A�wasC�was�A�ntC�not�wasn’t��A�wasC�was�A�n’tC�not�we'd��A�weC�we�A�'dC�'d�we'd've��A�weC�we�A�'dC�would�A�'veC�have�we'll��A�weC�we�A�'llC�will�we'll've��A�weC�we�A�'llC�will�A�'veC�have�we're��A�weC�we�A�'reC�are�we've��A�weC�we�A�'veC�have�wed��A�weC�we�A�dC�'d�wedve��A�weC�we�A�dC�would�A�veC�have�wellve��A�weC�we�A�llC�will�A�veC�have�weren't��A�wereC�were�A�n'tC�not�werent��A�wereC�were�A�ntC�not�weren’t��A�wereC�were�A�n’tC�not�weve��A�weC�we�A�veC�have�we’d��A�weC�we�A�’dC�'d�we’d’ve��A�weC�we�A�’dC�would�A�’veC�have�we’ll��A�weC�we�A�’llC�will�we’ll’ve��A�weC�we�A�’llC�will�A�’veC�have�we’re��A�weC�we�A�’reC�are�we’ve��A�weC�we�A�’veC�have�what'd��A�whatC�what�A�'dC�'d�what'd've��A�whatC�what�A�'dC�would�A�'veC�have�what'll��A�whatC�what�A�'llC�will�what'll've��A�whatC�what�A�'llC�will�A�'veC�have�what're��A�whatC�what�A�'reC�are�what's��A�whatC�what�A�'sC�'s�what've��A�whatC�what�A�'ve�whatd��A�whatC�what�A�dC�'d�whatdve��A�whatC�what�A�dC�would�A�veC�have�whatll��A�whatC�what�A�llC�will�whatllve��A�whatC�what�A�llC�will�A�veC�have�whatre��A�whatC�what�A�reC�are�whats��A�whatC�what�A�s�whatve��A�what�A�veC�have�what’d��A�whatC�what�A�’dC�'d�what’d’ve��A�whatC�what�A�’dC�would�A�’veC�have�what’ll��A�whatC�what�A�’llC�will�what’ll’ve��A�whatC�what�A�’llC�will�A�’veC�have�what’re��A�whatC�what�A�’reC�are�what’s��A�whatC�what�A�’sC�'s�what’ve��A�whatC�what�A�’ve�when'd��A�whenC�when�A�'dC�'d�when'd've��A�whenC�when�A�'dC�would�A�'veC�have�when'll��A�whenC�when�A�'llC�will�when'll've��A�whenC�when�A�'llC�will�A�'veC�have�when're��A�whenC�when�A�'reC�are�when's��A�whenC�when�A�'sC�'s�when've��A�whenC�when�A�'ve�whend��A�whenC�when�A�dC�'d�whendve��A�whenC�when�A�dC�would�A�veC�have�whenll��A�whenC�when�A�llC�will�whenllve��A�whenC�when�A�llC�will�A�veC�have�whenre��A�whenC�when�A�reC�are�whens��A�whenC�when�A�s�whenve��A�when�A�veC�have�when’d��A�whenC�when�A�’dC�'d�when’d’ve��A�whenC�when�A�’dC�would�A�’veC�have�when’ll��A�whenC�when�A�’llC�will�when’ll’ve��A�whenC�when�A�’llC�will�A�’veC�have�when’re��A�whenC�when�A�’reC�are�when’s��A�whenC�when�A�’sC�'s�when’ve��A�whenC�when�A�’ve�where'd��A�whereC�where�A�'dC�'d�where'd've��A�whereC�where�A�'dC�would�A�'veC�have�where'll��A�whereC�where�A�'llC�will�where'll've��A�whereC�where�A�'llC�will�A�'veC�have�where're��A�whereC�where�A�'reC�are�where's��A�whereC�where�A�'sC�'s�where've��A�whereC�where�A�'ve�whered��A�whereC�where�A�dC�'d�wheredve��A�whereC�where�A�dC�would�A�veC�have�wherell��A�whereC�where�A�llC�will�wherellve��A�whereC�where�A�llC�will�A�veC�have�wherere��A�whereC�where�A�reC�are�wheres��A�whereC�where�A�s�whereve��A�where�A�veC�have�where’d��A�whereC�where�A�’dC�'d�where’d’ve��A�whereC�where�A�’dC�would�A�’veC�have�where’ll��A�whereC�where�A�’llC�will�where’ll’ve��A�whereC�where�A�’llC�will�A�’veC�have�where’re��A�whereC�where�A�’reC�are�where’s��A�whereC�where�A�’sC�'s�where’ve��A�whereC�where�A�’ve�who'd��A�whoC�who�A�'dC�'d�who'd've��A�whoC�who�A�'dC�would�A�'veC�have�who'll��A�whoC�who�A�'llC�will�who'll've��A�whoC�who�A�'llC�will�A�'veC�have�who're��A�whoC�who�A�'reC�are�who's��A�whoC�who�A�'sC�'s�who've��A�whoC�who�A�'ve�whod��A�whoC�who�A�dC�'d�whodve��A�whoC�who�A�dC�would�A�veC�have�wholl��A�whoC�who�A�llC�will�whollve��A�whoC�who�A�llC�will�A�veC�have�whos��A�whoC�who�A�s�whove��A�who�A�veC�have�who’d��A�whoC�who�A�’dC�'d�who’d’ve��A�whoC�who�A�’dC�would�A�’veC�have�who’ll��A�whoC�who�A�’llC�will�who’ll’ve��A�whoC�who�A�’llC�will�A�’veC�have�who’re��A�whoC�who�A�’reC�are�who’s��A�whoC�who�A�’sC�'s�who’ve��A�whoC�who�A�’ve�why'd��A�whyC�why�A�'dC�'d�why'd've��A�whyC�why�A�'dC�would�A�'veC�have�why'll��A�whyC�why�A�'llC�will�why'll've��A�whyC�why�A�'llC�will�A�'veC�have�why're��A�whyC�why�A�'reC�are�why's��A�whyC�why�A�'sC�'s�why've��A�whyC�why�A�'ve�whyd��A�whyC�why�A�dC�'d�whydve��A�whyC�why�A�dC�would�A�veC�have�whyll��A�whyC�why�A�llC�will�whyllve��A�whyC�why�A�llC�will�A�veC�have�whyre��A�whyC�why�A�reC�are�whys��A�whyC�why�A�s�whyve��A�why�A�veC�have�why’d��A�whyC�why�A�’dC�'d�why’d’ve��A�whyC�why�A�’dC�would�A�’veC�have�why’ll��A�whyC�why�A�’llC�will�why’ll’ve��A�whyC�why�A�’llC�will�A�’veC�have�why’re��A�whyC�why�A�’reC�are�why’s��A�whyC�why�A�’sC�'s�why’ve��A�whyC�why�A�’ve�won't��A�woC�will�A�n'tC�not�won't've��A�woC�will�A�n'tC�not�A�'veC�have�wont��A�woC�will�A�ntC�not�wontve��A�woC�will�A�ntC�not�A�veC�have�won’t��A�woC�will�A�n’tC�not�won’t’ve��A�woC�will�A�n’tC�not�A�’veC�have�would've��A�wouldC�would�A�'ve�wouldn't��A�wouldC�would�A�n'tC�not�wouldn't've��A�wouldC�would�A�n'tC�not�A�'veC�have�wouldnt��A�wouldC�would�A�ntC�not�wouldntve��A�wouldC�would�A�ntC�not�A�veC�have�wouldn’t��A�wouldC�would�A�n’tC�not�wouldn’t’ve��A�wouldC�would�A�n’tC�not�A�’veC�have�wouldve��A�wouldC�would�A�ve�would’ve��A�wouldC�would�A�’ve�x.��A�x.�xD��A�xD�xDD��A�xDD�y'all��A�y'C�you�A�all�y.��A�y.�yall��A�yC�you�A�all�you'd��A�youC�you�A�'dC�'d�you'd've��A�youC�you�A�'dC�would�A�'veC�have�you'll��A�youC�you�A�'llC�will�you'll've��A�youC�you�A�'llC�will�A�'veC�have�you're��A�youC�you�A�'reC�are�you've��A�youC�you�A�'veC�have�youd��A�youC�you�A�dC�'d�youdve��A�youC�you�A�dC�would�A�veC�have�youll��A�youC�you�A�llC�will�youllve��A�youC�you�A�llC�will�A�veC�have�youre��A�youC�you�A�reC�are�youve��A�youC�you�A�veC�have�you’d��A�youC�you�A�’dC�'d�you’d’ve��A�youC�you�A�’dC�would�A�’veC�have�you’ll��A�youC�you�A�’llC�will�you’ll’ve��A�youC�you�A�’llC�will�A�’veC�have�you’re��A�youC�you�A�’reC�are�you’ve��A�youC�you�A�’veC�have�y’all��A�y’C�you�A�all�z.��A�z.� ��A� C� �¯\(ツ)/¯��A�¯\(ツ)/¯�°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�
|
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,3914 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
"\t",
|
| 3 |
+
"\n",
|
| 4 |
+
" ",
|
| 5 |
+
" ",
|
| 6 |
+
"!",
|
| 7 |
+
"\"",
|
| 8 |
+
"&",
|
| 9 |
+
"&P.",
|
| 10 |
+
"&p.",
|
| 11 |
+
"'",
|
| 12 |
+
"''",
|
| 13 |
+
"'-(",
|
| 14 |
+
"'-)",
|
| 15 |
+
"'Cause",
|
| 16 |
+
"'Cos",
|
| 17 |
+
"'Coz",
|
| 18 |
+
"'Cuz",
|
| 19 |
+
"'S",
|
| 20 |
+
"'X",
|
| 21 |
+
"'Xxx",
|
| 22 |
+
"'Xxxxx",
|
| 23 |
+
"'am",
|
| 24 |
+
"'bout",
|
| 25 |
+
"'cause",
|
| 26 |
+
"'cos",
|
| 27 |
+
"'coz",
|
| 28 |
+
"'cuz",
|
| 29 |
+
"'d",
|
| 30 |
+
"'em",
|
| 31 |
+
"'et",
|
| 32 |
+
"'ll",
|
| 33 |
+
"'m",
|
| 34 |
+
"'nuff",
|
| 35 |
+
"'re",
|
| 36 |
+
"'s",
|
| 37 |
+
"'ve",
|
| 38 |
+
"'x",
|
| 39 |
+
"'xx",
|
| 40 |
+
"'xxx",
|
| 41 |
+
"'xxxx",
|
| 42 |
+
"'y",
|
| 43 |
+
"(",
|
| 44 |
+
"(((",
|
| 45 |
+
"(*>",
|
| 46 |
+
"(*_*)",
|
| 47 |
+
"(-8",
|
| 48 |
+
"(-:",
|
| 49 |
+
"(-;",
|
| 50 |
+
"(-_-)",
|
| 51 |
+
"(-d",
|
| 52 |
+
"(._.)",
|
| 53 |
+
"(:",
|
| 54 |
+
"(;",
|
| 55 |
+
"(=",
|
| 56 |
+
"(>_<)",
|
| 57 |
+
"(^_^)",
|
| 58 |
+
"(o:",
|
| 59 |
+
"(x:",
|
| 60 |
+
"(x_x)",
|
| 61 |
+
"(\u00ac_\u00ac)",
|
| 62 |
+
"(\u0ca0_\u0ca0)",
|
| 63 |
+
"(\u256f\u00b0\u25a1\u00b0\uff09\u256f\ufe35\u253b\u2501\u253b",
|
| 64 |
+
")",
|
| 65 |
+
")))",
|
| 66 |
+
")-:",
|
| 67 |
+
")/\u00af",
|
| 68 |
+
"):",
|
| 69 |
+
"*",
|
| 70 |
+
",",
|
| 71 |
+
"-",
|
| 72 |
+
"-((",
|
| 73 |
+
"-))",
|
| 74 |
+
"--",
|
| 75 |
+
"---",
|
| 76 |
+
"-----------Icing------------",
|
| 77 |
+
"-----------icing------------",
|
| 78 |
+
"----ToPrepare",
|
| 79 |
+
"----XxXxxxx",
|
| 80 |
+
"----Xxxxx----",
|
| 81 |
+
"----toprepare",
|
| 82 |
+
"----xxxx",
|
| 83 |
+
"----xxxx----",
|
| 84 |
+
"-/",
|
| 85 |
+
"-0",
|
| 86 |
+
"-3",
|
| 87 |
+
"-8",
|
| 88 |
+
"-D",
|
| 89 |
+
"-O",
|
| 90 |
+
"-P",
|
| 91 |
+
"-X",
|
| 92 |
+
"-_-",
|
| 93 |
+
"-__-",
|
| 94 |
+
"-d",
|
| 95 |
+
"-o",
|
| 96 |
+
"-p",
|
| 97 |
+
"-x",
|
| 98 |
+
"-|",
|
| 99 |
+
".",
|
| 100 |
+
".C.",
|
| 101 |
+
".D.",
|
| 102 |
+
".E.",
|
| 103 |
+
".G.",
|
| 104 |
+
".H.",
|
| 105 |
+
".J.",
|
| 106 |
+
".M.",
|
| 107 |
+
".Y.",
|
| 108 |
+
"._.",
|
| 109 |
+
".e.",
|
| 110 |
+
".g.",
|
| 111 |
+
".m.",
|
| 112 |
+
".s.",
|
| 113 |
+
"/",
|
| 114 |
+
"/2\\",
|
| 115 |
+
"/3",
|
| 116 |
+
"/4-",
|
| 117 |
+
"/4\\",
|
| 118 |
+
"/d",
|
| 119 |
+
"/or",
|
| 120 |
+
"0",
|
| 121 |
+
"0'F",
|
| 122 |
+
"0'f",
|
| 123 |
+
"0.0",
|
| 124 |
+
"0.o",
|
| 125 |
+
"00F",
|
| 126 |
+
"00f",
|
| 127 |
+
"0F.",
|
| 128 |
+
"0_0",
|
| 129 |
+
"0_o",
|
| 130 |
+
"0f.",
|
| 131 |
+
"0r",
|
| 132 |
+
"1",
|
| 133 |
+
"1/2",
|
| 134 |
+
"1/2\\",
|
| 135 |
+
"1/2qt.casserole",
|
| 136 |
+
"1/3",
|
| 137 |
+
"1/4",
|
| 138 |
+
"1/4-",
|
| 139 |
+
"1/4\\",
|
| 140 |
+
"1/8",
|
| 141 |
+
"10",
|
| 142 |
+
"10-",
|
| 143 |
+
"10\\",
|
| 144 |
+
"10a.m",
|
| 145 |
+
"10a.m.",
|
| 146 |
+
"10p.m",
|
| 147 |
+
"10p.m.",
|
| 148 |
+
"11",
|
| 149 |
+
"11\\",
|
| 150 |
+
"11a.m",
|
| 151 |
+
"11a.m.",
|
| 152 |
+
"11p.m",
|
| 153 |
+
"11p.m.",
|
| 154 |
+
"11x16",
|
| 155 |
+
"12",
|
| 156 |
+
"120",
|
| 157 |
+
"12\\",
|
| 158 |
+
"12a.m",
|
| 159 |
+
"12a.m.",
|
| 160 |
+
"12p.m",
|
| 161 |
+
"12p.m.",
|
| 162 |
+
"13",
|
| 163 |
+
"130",
|
| 164 |
+
"13\\",
|
| 165 |
+
"13x2x2",
|
| 166 |
+
"14",
|
| 167 |
+
"15",
|
| 168 |
+
"16",
|
| 169 |
+
"170",
|
| 170 |
+
"18",
|
| 171 |
+
"19",
|
| 172 |
+
"1\\",
|
| 173 |
+
"1a.m",
|
| 174 |
+
"1a.m.",
|
| 175 |
+
"1p.m",
|
| 176 |
+
"1p.m.",
|
| 177 |
+
"2",
|
| 178 |
+
"2-",
|
| 179 |
+
"2/3",
|
| 180 |
+
"20",
|
| 181 |
+
"200",
|
| 182 |
+
"22",
|
| 183 |
+
"220",
|
| 184 |
+
"23",
|
| 185 |
+
"24",
|
| 186 |
+
"25",
|
| 187 |
+
"250",
|
| 188 |
+
"290",
|
| 189 |
+
"2a.m",
|
| 190 |
+
"2a.m.",
|
| 191 |
+
"2p.m",
|
| 192 |
+
"2p.m.",
|
| 193 |
+
"2x2",
|
| 194 |
+
"3",
|
| 195 |
+
"3/4",
|
| 196 |
+
"3/4ths",
|
| 197 |
+
"30",
|
| 198 |
+
"300",
|
| 199 |
+
"32",
|
| 200 |
+
"325",
|
| 201 |
+
"33",
|
| 202 |
+
"333",
|
| 203 |
+
"35",
|
| 204 |
+
"350",
|
| 205 |
+
"350'F",
|
| 206 |
+
"350'f",
|
| 207 |
+
"350F",
|
| 208 |
+
"350F.",
|
| 209 |
+
"350f",
|
| 210 |
+
"350f.",
|
| 211 |
+
"36",
|
| 212 |
+
"375",
|
| 213 |
+
"3a.m",
|
| 214 |
+
"3a.m.",
|
| 215 |
+
"3p.m",
|
| 216 |
+
"3p.m.",
|
| 217 |
+
"4",
|
| 218 |
+
"40",
|
| 219 |
+
"400",
|
| 220 |
+
"400F.",
|
| 221 |
+
"400f.",
|
| 222 |
+
"425",
|
| 223 |
+
"45",
|
| 224 |
+
"450",
|
| 225 |
+
"4\\",
|
| 226 |
+
"4a.m",
|
| 227 |
+
"4a.m.",
|
| 228 |
+
"4p.m",
|
| 229 |
+
"4p.m.",
|
| 230 |
+
"5",
|
| 231 |
+
"50",
|
| 232 |
+
"500F",
|
| 233 |
+
"500f",
|
| 234 |
+
"50F",
|
| 235 |
+
"50f",
|
| 236 |
+
"55",
|
| 237 |
+
"550",
|
| 238 |
+
"5a.m",
|
| 239 |
+
"5a.m.",
|
| 240 |
+
"5p.m",
|
| 241 |
+
"5p.m.",
|
| 242 |
+
"6",
|
| 243 |
+
"6-",
|
| 244 |
+
"60",
|
| 245 |
+
"6a.m",
|
| 246 |
+
"6a.m.",
|
| 247 |
+
"6p.m",
|
| 248 |
+
"6p.m.",
|
| 249 |
+
"7",
|
| 250 |
+
"70",
|
| 251 |
+
"7a.m",
|
| 252 |
+
"7a.m.",
|
| 253 |
+
"7p.m",
|
| 254 |
+
"7p.m.",
|
| 255 |
+
"7up",
|
| 256 |
+
"8",
|
| 257 |
+
"8)",
|
| 258 |
+
"8-",
|
| 259 |
+
"8-)",
|
| 260 |
+
"8-D",
|
| 261 |
+
"8-d",
|
| 262 |
+
"8D",
|
| 263 |
+
"8a.m",
|
| 264 |
+
"8a.m.",
|
| 265 |
+
"8d",
|
| 266 |
+
"8p.m",
|
| 267 |
+
"8p.m.",
|
| 268 |
+
"9",
|
| 269 |
+
"90",
|
| 270 |
+
"9\\",
|
| 271 |
+
"9a.m",
|
| 272 |
+
"9a.m.",
|
| 273 |
+
"9p.m",
|
| 274 |
+
"9p.m.",
|
| 275 |
+
"9x11\\",
|
| 276 |
+
"9x13",
|
| 277 |
+
"9x13\\",
|
| 278 |
+
"9x4",
|
| 279 |
+
":",
|
| 280 |
+
":'(",
|
| 281 |
+
":')",
|
| 282 |
+
":'-(",
|
| 283 |
+
":'-)",
|
| 284 |
+
":(",
|
| 285 |
+
":((",
|
| 286 |
+
":(((",
|
| 287 |
+
":()",
|
| 288 |
+
":)",
|
| 289 |
+
":))",
|
| 290 |
+
":)))",
|
| 291 |
+
":*",
|
| 292 |
+
":-(",
|
| 293 |
+
":-((",
|
| 294 |
+
":-(((",
|
| 295 |
+
":-)",
|
| 296 |
+
":-))",
|
| 297 |
+
":-)))",
|
| 298 |
+
":-*",
|
| 299 |
+
":-/",
|
| 300 |
+
":-0",
|
| 301 |
+
":-3",
|
| 302 |
+
":->",
|
| 303 |
+
":-D",
|
| 304 |
+
":-O",
|
| 305 |
+
":-P",
|
| 306 |
+
":-X",
|
| 307 |
+
":-]",
|
| 308 |
+
":-d",
|
| 309 |
+
":-o",
|
| 310 |
+
":-p",
|
| 311 |
+
":-x",
|
| 312 |
+
":-|",
|
| 313 |
+
":-}",
|
| 314 |
+
":/",
|
| 315 |
+
":0",
|
| 316 |
+
":1",
|
| 317 |
+
":3",
|
| 318 |
+
":>",
|
| 319 |
+
":D",
|
| 320 |
+
":O",
|
| 321 |
+
":P",
|
| 322 |
+
":X",
|
| 323 |
+
":]",
|
| 324 |
+
":d",
|
| 325 |
+
":o",
|
| 326 |
+
":o)",
|
| 327 |
+
":p",
|
| 328 |
+
":x",
|
| 329 |
+
":x)",
|
| 330 |
+
":|",
|
| 331 |
+
":}",
|
| 332 |
+
":\u2019(",
|
| 333 |
+
":\u2019)",
|
| 334 |
+
":\u2019-(",
|
| 335 |
+
":\u2019-)",
|
| 336 |
+
";",
|
| 337 |
+
";)",
|
| 338 |
+
";-)",
|
| 339 |
+
";-D",
|
| 340 |
+
";-X",
|
| 341 |
+
";-d",
|
| 342 |
+
";D",
|
| 343 |
+
";X",
|
| 344 |
+
";_;",
|
| 345 |
+
";d",
|
| 346 |
+
"<",
|
| 347 |
+
"<.<",
|
| 348 |
+
"</3",
|
| 349 |
+
"</d",
|
| 350 |
+
"<3",
|
| 351 |
+
"<33",
|
| 352 |
+
"<333",
|
| 353 |
+
"<d",
|
| 354 |
+
"<dd",
|
| 355 |
+
"<ddd",
|
| 356 |
+
"<space>",
|
| 357 |
+
"<xxxx>",
|
| 358 |
+
"=",
|
| 359 |
+
"=(",
|
| 360 |
+
"=)",
|
| 361 |
+
"=/",
|
| 362 |
+
"=3",
|
| 363 |
+
"=D",
|
| 364 |
+
"=X",
|
| 365 |
+
"=[",
|
| 366 |
+
"=]",
|
| 367 |
+
"=d",
|
| 368 |
+
"=|",
|
| 369 |
+
">",
|
| 370 |
+
">.<",
|
| 371 |
+
">.>",
|
| 372 |
+
">:(",
|
| 373 |
+
">:o",
|
| 374 |
+
">:x",
|
| 375 |
+
"><(((*>",
|
| 376 |
+
"@",
|
| 377 |
+
"@_@",
|
| 378 |
+
"A",
|
| 379 |
+
"ACE",
|
| 380 |
+
"AKE",
|
| 381 |
+
"ALF",
|
| 382 |
+
"ANT",
|
| 383 |
+
"AVE",
|
| 384 |
+
"Add",
|
| 385 |
+
"Adjust",
|
| 386 |
+
"Adm",
|
| 387 |
+
"Adm.",
|
| 388 |
+
"After",
|
| 389 |
+
"Ai",
|
| 390 |
+
"Ak",
|
| 391 |
+
"Ak.",
|
| 392 |
+
"Ala",
|
| 393 |
+
"Ala.",
|
| 394 |
+
"Alabama",
|
| 395 |
+
"Alaska",
|
| 396 |
+
"Allow",
|
| 397 |
+
"Almonds",
|
| 398 |
+
"Also",
|
| 399 |
+
"Alternatively",
|
| 400 |
+
"Amounts",
|
| 401 |
+
"And",
|
| 402 |
+
"Apples",
|
| 403 |
+
"Apr",
|
| 404 |
+
"Apr.",
|
| 405 |
+
"April",
|
| 406 |
+
"Are",
|
| 407 |
+
"Ariz",
|
| 408 |
+
"Ariz.",
|
| 409 |
+
"Arizona",
|
| 410 |
+
"Ark",
|
| 411 |
+
"Ark.",
|
| 412 |
+
"Arkansas",
|
| 413 |
+
"Arrange",
|
| 414 |
+
"As",
|
| 415 |
+
"At",
|
| 416 |
+
"Aug",
|
| 417 |
+
"Aug.",
|
| 418 |
+
"August",
|
| 419 |
+
"B",
|
| 420 |
+
"BAKE",
|
| 421 |
+
"BBQ",
|
| 422 |
+
"BLS",
|
| 423 |
+
"Bagel",
|
| 424 |
+
"Bake",
|
| 425 |
+
"Batter",
|
| 426 |
+
"Be",
|
| 427 |
+
"Beat",
|
| 428 |
+
"Before",
|
| 429 |
+
"Best",
|
| 430 |
+
"Bisquick",
|
| 431 |
+
"Blend",
|
| 432 |
+
"Boil",
|
| 433 |
+
"Break",
|
| 434 |
+
"Bring",
|
| 435 |
+
"Broil",
|
| 436 |
+
"Bros",
|
| 437 |
+
"Bros.",
|
| 438 |
+
"Brown",
|
| 439 |
+
"Brush",
|
| 440 |
+
"Butter",
|
| 441 |
+
"C",
|
| 442 |
+
"C'm",
|
| 443 |
+
"C++",
|
| 444 |
+
"C.",
|
| 445 |
+
"CAKE",
|
| 446 |
+
"CRUST--------------",
|
| 447 |
+
"CUT",
|
| 448 |
+
"Ca",
|
| 449 |
+
"Calif",
|
| 450 |
+
"Calif.",
|
| 451 |
+
"California",
|
| 452 |
+
"Can",
|
| 453 |
+
"Cap",
|
| 454 |
+
"Capt'n",
|
| 455 |
+
"Carefully",
|
| 456 |
+
"Casserole",
|
| 457 |
+
"Casserole---------------",
|
| 458 |
+
"Cast",
|
| 459 |
+
"Cause",
|
| 460 |
+
"Cayenne",
|
| 461 |
+
"Chardonnay",
|
| 462 |
+
"Cheers",
|
| 463 |
+
"Cheese",
|
| 464 |
+
"Chill",
|
| 465 |
+
"Chips",
|
| 466 |
+
"Chop",
|
| 467 |
+
"Chopped",
|
| 468 |
+
"Cinnamon",
|
| 469 |
+
"Clean",
|
| 470 |
+
"Co",
|
| 471 |
+
"Co.",
|
| 472 |
+
"Coat",
|
| 473 |
+
"Coca",
|
| 474 |
+
"Cola",
|
| 475 |
+
"Colo",
|
| 476 |
+
"Colo.",
|
| 477 |
+
"Colorado",
|
| 478 |
+
"Combine",
|
| 479 |
+
"Conn",
|
| 480 |
+
"Conn.",
|
| 481 |
+
"Connecticut",
|
| 482 |
+
"Continue",
|
| 483 |
+
"Cook",
|
| 484 |
+
"Cool",
|
| 485 |
+
"Corn",
|
| 486 |
+
"Corp",
|
| 487 |
+
"Corp.",
|
| 488 |
+
"Cos",
|
| 489 |
+
"Could",
|
| 490 |
+
"Cover",
|
| 491 |
+
"Coz",
|
| 492 |
+
"Cream",
|
| 493 |
+
"Creole",
|
| 494 |
+
"Crunch",
|
| 495 |
+
"Crush",
|
| 496 |
+
"Cucumber",
|
| 497 |
+
"Cut",
|
| 498 |
+
"Cuz",
|
| 499 |
+
"C\u2019m",
|
| 500 |
+
"D",
|
| 501 |
+
"D.",
|
| 502 |
+
"D.C.",
|
| 503 |
+
"DIPPERS",
|
| 504 |
+
"DIRECTIONS",
|
| 505 |
+
"DO",
|
| 506 |
+
"Danish",
|
| 507 |
+
"Dare",
|
| 508 |
+
"Dec",
|
| 509 |
+
"Dec.",
|
| 510 |
+
"December",
|
| 511 |
+
"Decorate",
|
| 512 |
+
"Degree",
|
| 513 |
+
"Degrees",
|
| 514 |
+
"Del",
|
| 515 |
+
"Del.",
|
| 516 |
+
"Delaware",
|
| 517 |
+
"Dice",
|
| 518 |
+
"Did",
|
| 519 |
+
"Dip",
|
| 520 |
+
"Discard",
|
| 521 |
+
"Dissolve",
|
| 522 |
+
"Divide",
|
| 523 |
+
"Do",
|
| 524 |
+
"Does",
|
| 525 |
+
"Doin",
|
| 526 |
+
"Doin'",
|
| 527 |
+
"Doin\u2019",
|
| 528 |
+
"Doreen",
|
| 529 |
+
"Dr",
|
| 530 |
+
"Dr.",
|
| 531 |
+
"Drain",
|
| 532 |
+
"Dredge",
|
| 533 |
+
"Dress",
|
| 534 |
+
"Dressing",
|
| 535 |
+
"Drizzle",
|
| 536 |
+
"Drop",
|
| 537 |
+
"Dutch",
|
| 538 |
+
"E",
|
| 539 |
+
"E.G.",
|
| 540 |
+
"E.g",
|
| 541 |
+
"E.g.",
|
| 542 |
+
"EAT",
|
| 543 |
+
"ENT",
|
| 544 |
+
"ERS",
|
| 545 |
+
"Eat",
|
| 546 |
+
"Enjoy",
|
| 547 |
+
"Evenly",
|
| 548 |
+
"F",
|
| 549 |
+
"F.",
|
| 550 |
+
"FILLING",
|
| 551 |
+
"FILLING-----------",
|
| 552 |
+
"Fahrenhit",
|
| 553 |
+
"Fan",
|
| 554 |
+
"Feb",
|
| 555 |
+
"Feb.",
|
| 556 |
+
"February",
|
| 557 |
+
"Feta",
|
| 558 |
+
"Figs",
|
| 559 |
+
"Fill",
|
| 560 |
+
"Finally",
|
| 561 |
+
"Firmly",
|
| 562 |
+
"Firstly",
|
| 563 |
+
"Fish",
|
| 564 |
+
"Fit",
|
| 565 |
+
"Fla",
|
| 566 |
+
"Fla.",
|
| 567 |
+
"Flake",
|
| 568 |
+
"Flatten",
|
| 569 |
+
"Florida",
|
| 570 |
+
"Fluff",
|
| 571 |
+
"Fold",
|
| 572 |
+
"For",
|
| 573 |
+
"ForCranberry",
|
| 574 |
+
"Form",
|
| 575 |
+
"Freeze",
|
| 576 |
+
"Freezing",
|
| 577 |
+
"Fresh",
|
| 578 |
+
"From",
|
| 579 |
+
"Frost",
|
| 580 |
+
"Frosting",
|
| 581 |
+
"Fry",
|
| 582 |
+
"G",
|
| 583 |
+
"Ga",
|
| 584 |
+
"Ga.",
|
| 585 |
+
"Garnish",
|
| 586 |
+
"Gen",
|
| 587 |
+
"Gen.",
|
| 588 |
+
"Gently",
|
| 589 |
+
"Georgia",
|
| 590 |
+
"German",
|
| 591 |
+
"Goes",
|
| 592 |
+
"Goin",
|
| 593 |
+
"Goin'",
|
| 594 |
+
"Goin\u2019",
|
| 595 |
+
"Gon",
|
| 596 |
+
"Got",
|
| 597 |
+
"Gov",
|
| 598 |
+
"Gov.",
|
| 599 |
+
"Gradually",
|
| 600 |
+
"Grease",
|
| 601 |
+
"Grill",
|
| 602 |
+
"Grind",
|
| 603 |
+
"H",
|
| 604 |
+
"HALF",
|
| 605 |
+
"Had",
|
| 606 |
+
"Halve",
|
| 607 |
+
"Has",
|
| 608 |
+
"Have",
|
| 609 |
+
"Havin",
|
| 610 |
+
"Havin'",
|
| 611 |
+
"Havin\u2019",
|
| 612 |
+
"He",
|
| 613 |
+
"He's",
|
| 614 |
+
"Heat",
|
| 615 |
+
"Hershey",
|
| 616 |
+
"He\u2019s",
|
| 617 |
+
"High",
|
| 618 |
+
"Hot",
|
| 619 |
+
"How",
|
| 620 |
+
"How's",
|
| 621 |
+
"How\u2019s",
|
| 622 |
+
"Hungarian'Halousky",
|
| 623 |
+
"I",
|
| 624 |
+
"I.E.",
|
| 625 |
+
"I.e",
|
| 626 |
+
"I.e.",
|
| 627 |
+
"IMPORTANT",
|
| 628 |
+
"ING",
|
| 629 |
+
"INGREDIENT",
|
| 630 |
+
"ION",
|
| 631 |
+
"Ia",
|
| 632 |
+
"Ia.",
|
| 633 |
+
"Id",
|
| 634 |
+
"Id.",
|
| 635 |
+
"Idaho",
|
| 636 |
+
"Ideas",
|
| 637 |
+
"If",
|
| 638 |
+
"Ifyou",
|
| 639 |
+
"Ill",
|
| 640 |
+
"Ill.",
|
| 641 |
+
"Illinois",
|
| 642 |
+
"In",
|
| 643 |
+
"Inc",
|
| 644 |
+
"Inc.",
|
| 645 |
+
"Ind",
|
| 646 |
+
"Ind.",
|
| 647 |
+
"Indian",
|
| 648 |
+
"Indiana",
|
| 649 |
+
"Insert",
|
| 650 |
+
"Into",
|
| 651 |
+
"Invert",
|
| 652 |
+
"Iowa",
|
| 653 |
+
"Is",
|
| 654 |
+
"It",
|
| 655 |
+
"It's",
|
| 656 |
+
"Italian",
|
| 657 |
+
"It\u2019s",
|
| 658 |
+
"J",
|
| 659 |
+
"Jan",
|
| 660 |
+
"Jan.",
|
| 661 |
+
"January",
|
| 662 |
+
"Jar",
|
| 663 |
+
"Jr",
|
| 664 |
+
"Jr.",
|
| 665 |
+
"Jul",
|
| 666 |
+
"Jul.",
|
| 667 |
+
"July",
|
| 668 |
+
"Jun",
|
| 669 |
+
"Jun.",
|
| 670 |
+
"June",
|
| 671 |
+
"Just",
|
| 672 |
+
"K",
|
| 673 |
+
"K.",
|
| 674 |
+
"Kan",
|
| 675 |
+
"Kan.",
|
| 676 |
+
"Kans",
|
| 677 |
+
"Kans.",
|
| 678 |
+
"Kansas",
|
| 679 |
+
"Keep",
|
| 680 |
+
"Kentucky",
|
| 681 |
+
"Key",
|
| 682 |
+
"Kim",
|
| 683 |
+
"Knead",
|
| 684 |
+
"Ky",
|
| 685 |
+
"Ky.",
|
| 686 |
+
"L",
|
| 687 |
+
"LIGHTLY",
|
| 688 |
+
"La",
|
| 689 |
+
"La.",
|
| 690 |
+
"Lastly",
|
| 691 |
+
"Lay",
|
| 692 |
+
"Layer",
|
| 693 |
+
"Let",
|
| 694 |
+
"Let's",
|
| 695 |
+
"Let\u2019s",
|
| 696 |
+
"Lightly",
|
| 697 |
+
"Limes",
|
| 698 |
+
"Line",
|
| 699 |
+
"Loosen",
|
| 700 |
+
"Louisiana",
|
| 701 |
+
"Lovin",
|
| 702 |
+
"Lovin'",
|
| 703 |
+
"Lovin\u2019",
|
| 704 |
+
"Low",
|
| 705 |
+
"Lower",
|
| 706 |
+
"Ltd",
|
| 707 |
+
"Ltd.",
|
| 708 |
+
"M",
|
| 709 |
+
"MICROWAVE",
|
| 710 |
+
"MSG",
|
| 711 |
+
"Ma'am",
|
| 712 |
+
"Madeira",
|
| 713 |
+
"Make",
|
| 714 |
+
"Makes",
|
| 715 |
+
"Mar",
|
| 716 |
+
"Mar.",
|
| 717 |
+
"March",
|
| 718 |
+
"Marinade",
|
| 719 |
+
"Marinate",
|
| 720 |
+
"Mash",
|
| 721 |
+
"Mass",
|
| 722 |
+
"Mass.",
|
| 723 |
+
"Massachusetts",
|
| 724 |
+
"May",
|
| 725 |
+
"Ma\u2019am",
|
| 726 |
+
"Md",
|
| 727 |
+
"Md.",
|
| 728 |
+
"Meanwhile",
|
| 729 |
+
"Measure",
|
| 730 |
+
"Melt",
|
| 731 |
+
"Meringue",
|
| 732 |
+
"Messrs",
|
| 733 |
+
"Messrs.",
|
| 734 |
+
"Mexican",
|
| 735 |
+
"Mich",
|
| 736 |
+
"Mich.",
|
| 737 |
+
"Michigan",
|
| 738 |
+
"Microwave",
|
| 739 |
+
"Might",
|
| 740 |
+
"Minn",
|
| 741 |
+
"Minn.",
|
| 742 |
+
"Minnesota",
|
| 743 |
+
"Miss",
|
| 744 |
+
"Miss.",
|
| 745 |
+
"Mississippi",
|
| 746 |
+
"Mix",
|
| 747 |
+
"Mo",
|
| 748 |
+
"Mo.",
|
| 749 |
+
"Mont",
|
| 750 |
+
"Mont.",
|
| 751 |
+
"Mount",
|
| 752 |
+
"Move",
|
| 753 |
+
"Mr",
|
| 754 |
+
"Mr.",
|
| 755 |
+
"Mrs",
|
| 756 |
+
"Mrs.",
|
| 757 |
+
"Ms",
|
| 758 |
+
"Ms.",
|
| 759 |
+
"Mt",
|
| 760 |
+
"Mt.",
|
| 761 |
+
"Must",
|
| 762 |
+
"N",
|
| 763 |
+
"N.C.",
|
| 764 |
+
"N.D.",
|
| 765 |
+
"N.H.",
|
| 766 |
+
"N.J.",
|
| 767 |
+
"N.M.",
|
| 768 |
+
"N.Y.",
|
| 769 |
+
"NOT",
|
| 770 |
+
"NOTE",
|
| 771 |
+
"NOTES",
|
| 772 |
+
"Neb",
|
| 773 |
+
"Neb.",
|
| 774 |
+
"Nebr",
|
| 775 |
+
"Nebr.",
|
| 776 |
+
"Nebraska",
|
| 777 |
+
"Need",
|
| 778 |
+
"Nev",
|
| 779 |
+
"Nev.",
|
| 780 |
+
"Nevada",
|
| 781 |
+
"New",
|
| 782 |
+
"New Hampshire",
|
| 783 |
+
"New Jersey",
|
| 784 |
+
"New Mexico",
|
| 785 |
+
"New York",
|
| 786 |
+
"North Carolina",
|
| 787 |
+
"North Dakota",
|
| 788 |
+
"Not",
|
| 789 |
+
"Note",
|
| 790 |
+
"Nothin",
|
| 791 |
+
"Nothin'",
|
| 792 |
+
"Nothin\u2019",
|
| 793 |
+
"Nov",
|
| 794 |
+
"Nov.",
|
| 795 |
+
"November",
|
| 796 |
+
"Now",
|
| 797 |
+
"Nuthin",
|
| 798 |
+
"Nuthin'",
|
| 799 |
+
"Nuthin\u2019",
|
| 800 |
+
"Nuts",
|
| 801 |
+
"O",
|
| 802 |
+
"O'clock",
|
| 803 |
+
"O.O",
|
| 804 |
+
"O.o",
|
| 805 |
+
"ONS",
|
| 806 |
+
"OTE",
|
| 807 |
+
"O_O",
|
| 808 |
+
"O_o",
|
| 809 |
+
"Oct",
|
| 810 |
+
"Oct.",
|
| 811 |
+
"October",
|
| 812 |
+
"Okla",
|
| 813 |
+
"Okla.",
|
| 814 |
+
"Oklahoma",
|
| 815 |
+
"Ol",
|
| 816 |
+
"Ol'",
|
| 817 |
+
"Ol\u2019",
|
| 818 |
+
"On",
|
| 819 |
+
"Once",
|
| 820 |
+
"One",
|
| 821 |
+
"Open",
|
| 822 |
+
"Optional",
|
| 823 |
+
"Or",
|
| 824 |
+
"Orange",
|
| 825 |
+
"Ore",
|
| 826 |
+
"Ore.",
|
| 827 |
+
"Oregon",
|
| 828 |
+
"Ought",
|
| 829 |
+
"Over",
|
| 830 |
+
"O\u2019clock",
|
| 831 |
+
"P",
|
| 832 |
+
"PLACE",
|
| 833 |
+
"PREHEAT",
|
| 834 |
+
"Pa",
|
| 835 |
+
"Pa.",
|
| 836 |
+
"Pack",
|
| 837 |
+
"Pam",
|
| 838 |
+
"Paprika",
|
| 839 |
+
"Parmesan",
|
| 840 |
+
"Pastry",
|
| 841 |
+
"Pat",
|
| 842 |
+
"Pecans",
|
| 843 |
+
"Peel",
|
| 844 |
+
"Pennsylvania",
|
| 845 |
+
"Pepper",
|
| 846 |
+
"Ph",
|
| 847 |
+
"Ph.D.",
|
| 848 |
+
"Pine",
|
| 849 |
+
"Place",
|
| 850 |
+
"Poke",
|
| 851 |
+
"Por",
|
| 852 |
+
"Pound",
|
| 853 |
+
"Pour",
|
| 854 |
+
"Preheat",
|
| 855 |
+
"Prepare",
|
| 856 |
+
"Presoak",
|
| 857 |
+
"Press",
|
| 858 |
+
"Process",
|
| 859 |
+
"Prof",
|
| 860 |
+
"Prof.",
|
| 861 |
+
"Punch",
|
| 862 |
+
"Put",
|
| 863 |
+
"R",
|
| 864 |
+
"ROOT",
|
| 865 |
+
"Radishes",
|
| 866 |
+
"Raisins",
|
| 867 |
+
"Randal",
|
| 868 |
+
"Reduce",
|
| 869 |
+
"Refill",
|
| 870 |
+
"Refridgerator",
|
| 871 |
+
"Refrigerate",
|
| 872 |
+
"Remove",
|
| 873 |
+
"Rep",
|
| 874 |
+
"Rep.",
|
| 875 |
+
"Repeat",
|
| 876 |
+
"Reserve",
|
| 877 |
+
"Reserving",
|
| 878 |
+
"Resting",
|
| 879 |
+
"Return",
|
| 880 |
+
"Rev",
|
| 881 |
+
"Rev.",
|
| 882 |
+
"Rinse",
|
| 883 |
+
"Roll",
|
| 884 |
+
"Rub",
|
| 885 |
+
"S",
|
| 886 |
+
"S&P.",
|
| 887 |
+
"S.C.",
|
| 888 |
+
"STIR",
|
| 889 |
+
"SUGGESTED",
|
| 890 |
+
"Salsa",
|
| 891 |
+
"Salt",
|
| 892 |
+
"Sauce----",
|
| 893 |
+
"Sauce--------------",
|
| 894 |
+
"Sauce:-",
|
| 895 |
+
"Sausage",
|
| 896 |
+
"Saute",
|
| 897 |
+
"Sautee",
|
| 898 |
+
"Saut\u00e9",
|
| 899 |
+
"Scallions",
|
| 900 |
+
"Scoop",
|
| 901 |
+
"Seal",
|
| 902 |
+
"Season",
|
| 903 |
+
"Select",
|
| 904 |
+
"Sen",
|
| 905 |
+
"Sen.",
|
| 906 |
+
"Sep",
|
| 907 |
+
"Sep.",
|
| 908 |
+
"Separate",
|
| 909 |
+
"Sept",
|
| 910 |
+
"Sept.",
|
| 911 |
+
"September",
|
| 912 |
+
"Serve",
|
| 913 |
+
"Serving",
|
| 914 |
+
"Set",
|
| 915 |
+
"Sha",
|
| 916 |
+
"Shake",
|
| 917 |
+
"Shape",
|
| 918 |
+
"She",
|
| 919 |
+
"She's",
|
| 920 |
+
"She\u2019s",
|
| 921 |
+
"Should",
|
| 922 |
+
"Shred",
|
| 923 |
+
"Sift",
|
| 924 |
+
"Similarly",
|
| 925 |
+
"Simmer",
|
| 926 |
+
"Skim",
|
| 927 |
+
"Slice",
|
| 928 |
+
"Sliced",
|
| 929 |
+
"Slowly",
|
| 930 |
+
"Snip",
|
| 931 |
+
"Soak",
|
| 932 |
+
"Somethin",
|
| 933 |
+
"Somethin'",
|
| 934 |
+
"Somethin\u2019",
|
| 935 |
+
"South Carolina",
|
| 936 |
+
"Spaetzels",
|
| 937 |
+
"Spike",
|
| 938 |
+
"Spoon",
|
| 939 |
+
"Spray",
|
| 940 |
+
"Spread",
|
| 941 |
+
"Sprinkle",
|
| 942 |
+
"Squeeze",
|
| 943 |
+
"St",
|
| 944 |
+
"St.",
|
| 945 |
+
"Stand",
|
| 946 |
+
"Starting",
|
| 947 |
+
"Steam",
|
| 948 |
+
"Stir",
|
| 949 |
+
"Store",
|
| 950 |
+
"Strain",
|
| 951 |
+
"Strudel",
|
| 952 |
+
"Substitute",
|
| 953 |
+
"Sugar",
|
| 954 |
+
"Suggestions",
|
| 955 |
+
"Surprisingly",
|
| 956 |
+
"Swiss",
|
| 957 |
+
"T",
|
| 958 |
+
"TBLS",
|
| 959 |
+
"TED",
|
| 960 |
+
"TES",
|
| 961 |
+
"TIR",
|
| 962 |
+
"TLY",
|
| 963 |
+
"Tabasco",
|
| 964 |
+
"Tablespoon",
|
| 965 |
+
"Tablespoons",
|
| 966 |
+
"Taste",
|
| 967 |
+
"Tbs",
|
| 968 |
+
"Tbsp",
|
| 969 |
+
"Tear",
|
| 970 |
+
"Tenn",
|
| 971 |
+
"Tenn.",
|
| 972 |
+
"Tennessee",
|
| 973 |
+
"That",
|
| 974 |
+
"That's",
|
| 975 |
+
"That\u2019s",
|
| 976 |
+
"Thaw",
|
| 977 |
+
"The",
|
| 978 |
+
"Then",
|
| 979 |
+
"There",
|
| 980 |
+
"There's",
|
| 981 |
+
"There\u2019s",
|
| 982 |
+
"These",
|
| 983 |
+
"These's",
|
| 984 |
+
"These\u2019s",
|
| 985 |
+
"They",
|
| 986 |
+
"Thinly",
|
| 987 |
+
"This",
|
| 988 |
+
"This's",
|
| 989 |
+
"This\u2019s",
|
| 990 |
+
"Thoroughly",
|
| 991 |
+
"Those",
|
| 992 |
+
"Those's",
|
| 993 |
+
"Those\u2019s",
|
| 994 |
+
"Thread",
|
| 995 |
+
"To",
|
| 996 |
+
"Tomatoes",
|
| 997 |
+
"Top",
|
| 998 |
+
"Toss",
|
| 999 |
+
"Transfer",
|
| 1000 |
+
"Trim",
|
| 1001 |
+
"Turn",
|
| 1002 |
+
"Turning",
|
| 1003 |
+
"U",
|
| 1004 |
+
"Unroll",
|
| 1005 |
+
"Use",
|
| 1006 |
+
"Using",
|
| 1007 |
+
"V",
|
| 1008 |
+
"V.V",
|
| 1009 |
+
"VARIATION",
|
| 1010 |
+
"V_V",
|
| 1011 |
+
"Va",
|
| 1012 |
+
"Va.",
|
| 1013 |
+
"Vegit",
|
| 1014 |
+
"Virginia",
|
| 1015 |
+
"W",
|
| 1016 |
+
"W'et",
|
| 1017 |
+
"Wanganui",
|
| 1018 |
+
"Warm",
|
| 1019 |
+
"Was",
|
| 1020 |
+
"Wash",
|
| 1021 |
+
"Wash.",
|
| 1022 |
+
"Washington",
|
| 1023 |
+
"We",
|
| 1024 |
+
"Were",
|
| 1025 |
+
"What",
|
| 1026 |
+
"What's",
|
| 1027 |
+
"What\u2019s",
|
| 1028 |
+
"When",
|
| 1029 |
+
"When's",
|
| 1030 |
+
"When\u2019s",
|
| 1031 |
+
"Where",
|
| 1032 |
+
"Where's",
|
| 1033 |
+
"Where\u2019s",
|
| 1034 |
+
"While",
|
| 1035 |
+
"Whip",
|
| 1036 |
+
"Whisk",
|
| 1037 |
+
"Who",
|
| 1038 |
+
"Who's",
|
| 1039 |
+
"Who\u2019s",
|
| 1040 |
+
"Why",
|
| 1041 |
+
"Why's",
|
| 1042 |
+
"Why\u2019s",
|
| 1043 |
+
"Wipe",
|
| 1044 |
+
"Wis",
|
| 1045 |
+
"Wis.",
|
| 1046 |
+
"Wisconsin",
|
| 1047 |
+
"With",
|
| 1048 |
+
"Wo",
|
| 1049 |
+
"Worcestershire",
|
| 1050 |
+
"Working",
|
| 1051 |
+
"Worth",
|
| 1052 |
+
"Would",
|
| 1053 |
+
"Wrap",
|
| 1054 |
+
"X&X.",
|
| 1055 |
+
"X'x",
|
| 1056 |
+
"X'xx",
|
| 1057 |
+
"X'xxxx",
|
| 1058 |
+
"X++",
|
| 1059 |
+
"X.",
|
| 1060 |
+
"X.X",
|
| 1061 |
+
"X.X.",
|
| 1062 |
+
"X.x",
|
| 1063 |
+
"X.x.",
|
| 1064 |
+
"XD",
|
| 1065 |
+
"XDD",
|
| 1066 |
+
"XX",
|
| 1067 |
+
"XXX",
|
| 1068 |
+
"XXXX",
|
| 1069 |
+
"XXXX----",
|
| 1070 |
+
"X_X",
|
| 1071 |
+
"X_x",
|
| 1072 |
+
"Xx",
|
| 1073 |
+
"Xx'",
|
| 1074 |
+
"Xx'x",
|
| 1075 |
+
"Xx'xx",
|
| 1076 |
+
"Xx.",
|
| 1077 |
+
"Xx.X.",
|
| 1078 |
+
"Xxx",
|
| 1079 |
+
"Xxx'x",
|
| 1080 |
+
"Xxx.",
|
| 1081 |
+
"XxxXxxxx",
|
| 1082 |
+
"Xxxx",
|
| 1083 |
+
"Xxxx'",
|
| 1084 |
+
"Xxxx'x",
|
| 1085 |
+
"Xxxx.",
|
| 1086 |
+
"Xxxxx",
|
| 1087 |
+
"Xxxxx'",
|
| 1088 |
+
"Xxxxx'Xxxxx",
|
| 1089 |
+
"Xxxxx'x",
|
| 1090 |
+
"Xxxxx----",
|
| 1091 |
+
"Xxxxx.",
|
| 1092 |
+
"Xxxxx:-",
|
| 1093 |
+
"Xxxxx\u2019",
|
| 1094 |
+
"Xxxxx\u2019x",
|
| 1095 |
+
"Xxxx\u2019",
|
| 1096 |
+
"Xxxx\u2019x",
|
| 1097 |
+
"Xxx\u2019x",
|
| 1098 |
+
"Xx\u2019",
|
| 1099 |
+
"Xx\u2019x",
|
| 1100 |
+
"Xx\u2019xx",
|
| 1101 |
+
"X\u2019x",
|
| 1102 |
+
"X\u2019xxxx",
|
| 1103 |
+
"Y",
|
| 1104 |
+
"Yemiser",
|
| 1105 |
+
"Yoghurt",
|
| 1106 |
+
"You",
|
| 1107 |
+
"Z",
|
| 1108 |
+
"Zealand",
|
| 1109 |
+
"Ziploc",
|
| 1110 |
+
"[",
|
| 1111 |
+
"[-:",
|
| 1112 |
+
"[:",
|
| 1113 |
+
"[=",
|
| 1114 |
+
"\\",
|
| 1115 |
+
"\\\")",
|
| 1116 |
+
"\\n",
|
| 1117 |
+
"\\t",
|
| 1118 |
+
"\\x",
|
| 1119 |
+
"]",
|
| 1120 |
+
"]=",
|
| 1121 |
+
"^",
|
| 1122 |
+
"^_^",
|
| 1123 |
+
"^__^",
|
| 1124 |
+
"^___^",
|
| 1125 |
+
"_*)",
|
| 1126 |
+
"_-)",
|
| 1127 |
+
"_.)",
|
| 1128 |
+
"_<)",
|
| 1129 |
+
"_^)",
|
| 1130 |
+
"__-",
|
| 1131 |
+
"__^",
|
| 1132 |
+
"_\u00ac)",
|
| 1133 |
+
"_\u0ca0)",
|
| 1134 |
+
"a",
|
| 1135 |
+
"a.",
|
| 1136 |
+
"a.m",
|
| 1137 |
+
"a.m.",
|
| 1138 |
+
"aash",
|
| 1139 |
+
"about",
|
| 1140 |
+
"about8",
|
| 1141 |
+
"above",
|
| 1142 |
+
"abs",
|
| 1143 |
+
"absorbed",
|
| 1144 |
+
"absorbent",
|
| 1145 |
+
"aby",
|
| 1146 |
+
"according",
|
| 1147 |
+
"accordingly",
|
| 1148 |
+
"ace",
|
| 1149 |
+
"ach",
|
| 1150 |
+
"ack",
|
| 1151 |
+
"across",
|
| 1152 |
+
"act",
|
| 1153 |
+
"activate",
|
| 1154 |
+
"actually",
|
| 1155 |
+
"ada",
|
| 1156 |
+
"add",
|
| 1157 |
+
"added",
|
| 1158 |
+
"adding",
|
| 1159 |
+
"addition",
|
| 1160 |
+
"additional",
|
| 1161 |
+
"ade",
|
| 1162 |
+
"adequate",
|
| 1163 |
+
"adjust",
|
| 1164 |
+
"adm",
|
| 1165 |
+
"adm.",
|
| 1166 |
+
"ado",
|
| 1167 |
+
"ads",
|
| 1168 |
+
"aduki",
|
| 1169 |
+
"ady",
|
| 1170 |
+
"afe",
|
| 1171 |
+
"afs",
|
| 1172 |
+
"after",
|
| 1173 |
+
"again",
|
| 1174 |
+
"age",
|
| 1175 |
+
"ags",
|
| 1176 |
+
"ai",
|
| 1177 |
+
"aid",
|
| 1178 |
+
"ail",
|
| 1179 |
+
"ain",
|
| 1180 |
+
"air",
|
| 1181 |
+
"ait",
|
| 1182 |
+
"ak",
|
| 1183 |
+
"ak.",
|
| 1184 |
+
"ake",
|
| 1185 |
+
"aks",
|
| 1186 |
+
"al\\",
|
| 1187 |
+
"ala",
|
| 1188 |
+
"ala.",
|
| 1189 |
+
"ale",
|
| 1190 |
+
"alf",
|
| 1191 |
+
"all",
|
| 1192 |
+
"allow",
|
| 1193 |
+
"allspice",
|
| 1194 |
+
"almond",
|
| 1195 |
+
"almonds",
|
| 1196 |
+
"almost",
|
| 1197 |
+
"along",
|
| 1198 |
+
"alongside",
|
| 1199 |
+
"als",
|
| 1200 |
+
"also",
|
| 1201 |
+
"alt",
|
| 1202 |
+
"alternate",
|
| 1203 |
+
"alternating",
|
| 1204 |
+
"alternatively",
|
| 1205 |
+
"altitude",
|
| 1206 |
+
"aluminum",
|
| 1207 |
+
"always",
|
| 1208 |
+
"aly",
|
| 1209 |
+
"am",
|
| 1210 |
+
"amb",
|
| 1211 |
+
"ame",
|
| 1212 |
+
"among",
|
| 1213 |
+
"amount",
|
| 1214 |
+
"amounts",
|
| 1215 |
+
"amp",
|
| 1216 |
+
"ams",
|
| 1217 |
+
"amy",
|
| 1218 |
+
"an",
|
| 1219 |
+
"an.",
|
| 1220 |
+
"an\\",
|
| 1221 |
+
"ana",
|
| 1222 |
+
"and",
|
| 1223 |
+
"and/or",
|
| 1224 |
+
"ano",
|
| 1225 |
+
"another",
|
| 1226 |
+
"ans",
|
| 1227 |
+
"ant",
|
| 1228 |
+
"any",
|
| 1229 |
+
"apart",
|
| 1230 |
+
"ape",
|
| 1231 |
+
"appears",
|
| 1232 |
+
"apple",
|
| 1233 |
+
"apples",
|
| 1234 |
+
"approx",
|
| 1235 |
+
"approximately",
|
| 1236 |
+
"apr",
|
| 1237 |
+
"apr.",
|
| 1238 |
+
"aps",
|
| 1239 |
+
"ar.",
|
| 1240 |
+
"arb",
|
| 1241 |
+
"ard",
|
| 1242 |
+
"are",
|
| 1243 |
+
"area",
|
| 1244 |
+
"ari",
|
| 1245 |
+
"ariz",
|
| 1246 |
+
"ariz.",
|
| 1247 |
+
"ark",
|
| 1248 |
+
"ark.",
|
| 1249 |
+
"arm",
|
| 1250 |
+
"aromatic",
|
| 1251 |
+
"around",
|
| 1252 |
+
"arp",
|
| 1253 |
+
"arrange",
|
| 1254 |
+
"ars",
|
| 1255 |
+
"art",
|
| 1256 |
+
"artichoke",
|
| 1257 |
+
"ary",
|
| 1258 |
+
"as",
|
| 1259 |
+
"asa",
|
| 1260 |
+
"ase",
|
| 1261 |
+
"ash",
|
| 1262 |
+
"aside",
|
| 1263 |
+
"ass",
|
| 1264 |
+
"assemble",
|
| 1265 |
+
"assorted",
|
| 1266 |
+
"assumes",
|
| 1267 |
+
"ast",
|
| 1268 |
+
"at",
|
| 1269 |
+
"ate",
|
| 1270 |
+
"ath",
|
| 1271 |
+
"ato",
|
| 1272 |
+
"ats",
|
| 1273 |
+
"attached",
|
| 1274 |
+
"aug",
|
| 1275 |
+
"aug.",
|
| 1276 |
+
"aut",
|
| 1277 |
+
"ave",
|
| 1278 |
+
"avocado",
|
| 1279 |
+
"avoid",
|
| 1280 |
+
"avy",
|
| 1281 |
+
"awa",
|
| 1282 |
+
"away",
|
| 1283 |
+
"awhile",
|
| 1284 |
+
"aya",
|
| 1285 |
+
"ayo",
|
| 1286 |
+
"ays",
|
| 1287 |
+
"aze",
|
| 1288 |
+
"b",
|
| 1289 |
+
"b.",
|
| 1290 |
+
"baby",
|
| 1291 |
+
"back",
|
| 1292 |
+
"backs",
|
| 1293 |
+
"bacon",
|
| 1294 |
+
"bag",
|
| 1295 |
+
"bagel",
|
| 1296 |
+
"baggie",
|
| 1297 |
+
"bags",
|
| 1298 |
+
"bake",
|
| 1299 |
+
"bake@",
|
| 1300 |
+
"baked",
|
| 1301 |
+
"baking",
|
| 1302 |
+
"balance",
|
| 1303 |
+
"ball",
|
| 1304 |
+
"balls",
|
| 1305 |
+
"balsamic",
|
| 1306 |
+
"bamboo",
|
| 1307 |
+
"banana",
|
| 1308 |
+
"bananas",
|
| 1309 |
+
"bar",
|
| 1310 |
+
"barbecue",
|
| 1311 |
+
"barely",
|
| 1312 |
+
"barley",
|
| 1313 |
+
"bars",
|
| 1314 |
+
"base",
|
| 1315 |
+
"basil",
|
| 1316 |
+
"baste",
|
| 1317 |
+
"basting",
|
| 1318 |
+
"batches",
|
| 1319 |
+
"bath",
|
| 1320 |
+
"batter",
|
| 1321 |
+
"bay",
|
| 1322 |
+
"bbq",
|
| 1323 |
+
"be",
|
| 1324 |
+
"bean",
|
| 1325 |
+
"beans",
|
| 1326 |
+
"beat",
|
| 1327 |
+
"beaten",
|
| 1328 |
+
"beater",
|
| 1329 |
+
"beating",
|
| 1330 |
+
"because",
|
| 1331 |
+
"becomes",
|
| 1332 |
+
"bed",
|
| 1333 |
+
"beef",
|
| 1334 |
+
"been",
|
| 1335 |
+
"beer",
|
| 1336 |
+
"beet",
|
| 1337 |
+
"beets",
|
| 1338 |
+
"before",
|
| 1339 |
+
"begin",
|
| 1340 |
+
"begins",
|
| 1341 |
+
"begun",
|
| 1342 |
+
"beh",
|
| 1343 |
+
"behind",
|
| 1344 |
+
"being",
|
| 1345 |
+
"bel",
|
| 1346 |
+
"bell",
|
| 1347 |
+
"below",
|
| 1348 |
+
"ber",
|
| 1349 |
+
"berbere",
|
| 1350 |
+
"berries",
|
| 1351 |
+
"berry",
|
| 1352 |
+
"bes",
|
| 1353 |
+
"best",
|
| 1354 |
+
"better",
|
| 1355 |
+
"between",
|
| 1356 |
+
"beyond",
|
| 1357 |
+
"bicarbonate",
|
| 1358 |
+
"big",
|
| 1359 |
+
"bisquick",
|
| 1360 |
+
"bit",
|
| 1361 |
+
"bits",
|
| 1362 |
+
"black",
|
| 1363 |
+
"blade",
|
| 1364 |
+
"ble",
|
| 1365 |
+
"blend",
|
| 1366 |
+
"blended",
|
| 1367 |
+
"blender",
|
| 1368 |
+
"blending",
|
| 1369 |
+
"block",
|
| 1370 |
+
"bls",
|
| 1371 |
+
"blueberries",
|
| 1372 |
+
"bly",
|
| 1373 |
+
"board",
|
| 1374 |
+
"boil",
|
| 1375 |
+
"boiled",
|
| 1376 |
+
"boiler",
|
| 1377 |
+
"boiling",
|
| 1378 |
+
"bok",
|
| 1379 |
+
"boo",
|
| 1380 |
+
"both",
|
| 1381 |
+
"bottom",
|
| 1382 |
+
"bottomed",
|
| 1383 |
+
"bouillion",
|
| 1384 |
+
"bouillon",
|
| 1385 |
+
"bout",
|
| 1386 |
+
"bowl",
|
| 1387 |
+
"box",
|
| 1388 |
+
"br.",
|
| 1389 |
+
"bran",
|
| 1390 |
+
"bratwurst",
|
| 1391 |
+
"bratwursts",
|
| 1392 |
+
"bread",
|
| 1393 |
+
"breadcrumb",
|
| 1394 |
+
"breadcrumbs",
|
| 1395 |
+
"break",
|
| 1396 |
+
"breasts",
|
| 1397 |
+
"briefly",
|
| 1398 |
+
"bring",
|
| 1399 |
+
"brittle",
|
| 1400 |
+
"broccoli",
|
| 1401 |
+
"broil",
|
| 1402 |
+
"broiler",
|
| 1403 |
+
"broiling",
|
| 1404 |
+
"bros",
|
| 1405 |
+
"bros.",
|
| 1406 |
+
"broth",
|
| 1407 |
+
"brown",
|
| 1408 |
+
"brown-",
|
| 1409 |
+
"browned",
|
| 1410 |
+
"browning",
|
| 1411 |
+
"brush",
|
| 1412 |
+
"brushing",
|
| 1413 |
+
"bsp",
|
| 1414 |
+
"bubble",
|
| 1415 |
+
"bubbles",
|
| 1416 |
+
"bubbling",
|
| 1417 |
+
"bubbly",
|
| 1418 |
+
"bulk",
|
| 1419 |
+
"bulky",
|
| 1420 |
+
"bulletin",
|
| 1421 |
+
"bun",
|
| 1422 |
+
"buns",
|
| 1423 |
+
"burger",
|
| 1424 |
+
"burning",
|
| 1425 |
+
"but",
|
| 1426 |
+
"butter",
|
| 1427 |
+
"buttercup",
|
| 1428 |
+
"buttered",
|
| 1429 |
+
"buttermilk",
|
| 1430 |
+
"by",
|
| 1431 |
+
"c",
|
| 1432 |
+
"c'm",
|
| 1433 |
+
"c++",
|
| 1434 |
+
"c.",
|
| 1435 |
+
"ca",
|
| 1436 |
+
"cabbage",
|
| 1437 |
+
"cake",
|
| 1438 |
+
"calif",
|
| 1439 |
+
"calif.",
|
| 1440 |
+
"calls",
|
| 1441 |
+
"calories",
|
| 1442 |
+
"can",
|
| 1443 |
+
"candy",
|
| 1444 |
+
"canned",
|
| 1445 |
+
"canning",
|
| 1446 |
+
"cans",
|
| 1447 |
+
"cap",
|
| 1448 |
+
"capers",
|
| 1449 |
+
"caps",
|
| 1450 |
+
"capsicum",
|
| 1451 |
+
"capt'n",
|
| 1452 |
+
"caraway",
|
| 1453 |
+
"cardamom",
|
| 1454 |
+
"careful",
|
| 1455 |
+
"carefully",
|
| 1456 |
+
"carrot",
|
| 1457 |
+
"carrots",
|
| 1458 |
+
"cashews",
|
| 1459 |
+
"casserole",
|
| 1460 |
+
"casserole---------------",
|
| 1461 |
+
"cast",
|
| 1462 |
+
"catfish",
|
| 1463 |
+
"cause",
|
| 1464 |
+
"cayenne",
|
| 1465 |
+
"ce>",
|
| 1466 |
+
"ced",
|
| 1467 |
+
"celery",
|
| 1468 |
+
"cent",
|
| 1469 |
+
"center",
|
| 1470 |
+
"centers",
|
| 1471 |
+
"centre",
|
| 1472 |
+
"ceramic",
|
| 1473 |
+
"ces",
|
| 1474 |
+
"ch.",
|
| 1475 |
+
"champagne",
|
| 1476 |
+
"charcoal",
|
| 1477 |
+
"chardonnay",
|
| 1478 |
+
"che",
|
| 1479 |
+
"cheddar",
|
| 1480 |
+
"cheers",
|
| 1481 |
+
"cheese",
|
| 1482 |
+
"cheesecloth",
|
| 1483 |
+
"cheeses",
|
| 1484 |
+
"cherry",
|
| 1485 |
+
"chicken",
|
| 1486 |
+
"chiles",
|
| 1487 |
+
"chili",
|
| 1488 |
+
"chill",
|
| 1489 |
+
"chille",
|
| 1490 |
+
"chilled",
|
| 1491 |
+
"chips",
|
| 1492 |
+
"chocolate",
|
| 1493 |
+
"choice",
|
| 1494 |
+
"chop",
|
| 1495 |
+
"chopped",
|
| 1496 |
+
"chops",
|
| 1497 |
+
"choy",
|
| 1498 |
+
"chpped",
|
| 1499 |
+
"chunks",
|
| 1500 |
+
"chutney",
|
| 1501 |
+
"cider",
|
| 1502 |
+
"cilantro",
|
| 1503 |
+
"cinnamon",
|
| 1504 |
+
"circle",
|
| 1505 |
+
"circles",
|
| 1506 |
+
"ck\\",
|
| 1507 |
+
"cka",
|
| 1508 |
+
"cks",
|
| 1509 |
+
"cle",
|
| 1510 |
+
"clean",
|
| 1511 |
+
"cleaned",
|
| 1512 |
+
"clear",
|
| 1513 |
+
"close",
|
| 1514 |
+
"cloth",
|
| 1515 |
+
"clove",
|
| 1516 |
+
"cloves",
|
| 1517 |
+
"club",
|
| 1518 |
+
"cm",
|
| 1519 |
+
"co",
|
| 1520 |
+
"co.",
|
| 1521 |
+
"coa",
|
| 1522 |
+
"coals",
|
| 1523 |
+
"coarsely",
|
| 1524 |
+
"coat",
|
| 1525 |
+
"coated",
|
| 1526 |
+
"coating",
|
| 1527 |
+
"coca",
|
| 1528 |
+
"cocoa",
|
| 1529 |
+
"coconut",
|
| 1530 |
+
"coffee",
|
| 1531 |
+
"cola",
|
| 1532 |
+
"cold",
|
| 1533 |
+
"colo",
|
| 1534 |
+
"colo.",
|
| 1535 |
+
"color",
|
| 1536 |
+
"colored",
|
| 1537 |
+
"colorful",
|
| 1538 |
+
"coloring",
|
| 1539 |
+
"combination",
|
| 1540 |
+
"combinations",
|
| 1541 |
+
"combine",
|
| 1542 |
+
"combined",
|
| 1543 |
+
"come",
|
| 1544 |
+
"comes",
|
| 1545 |
+
"coming",
|
| 1546 |
+
"companion",
|
| 1547 |
+
"complete",
|
| 1548 |
+
"completely",
|
| 1549 |
+
"con",
|
| 1550 |
+
"condensed",
|
| 1551 |
+
"condiments",
|
| 1552 |
+
"confectioner",
|
| 1553 |
+
"conn",
|
| 1554 |
+
"conn.",
|
| 1555 |
+
"consistancy",
|
| 1556 |
+
"consistency",
|
| 1557 |
+
"constantly",
|
| 1558 |
+
"container",
|
| 1559 |
+
"continue",
|
| 1560 |
+
"continuously",
|
| 1561 |
+
"control",
|
| 1562 |
+
"cook",
|
| 1563 |
+
"cook\\",
|
| 1564 |
+
"cooked",
|
| 1565 |
+
"cooker",
|
| 1566 |
+
"cookie",
|
| 1567 |
+
"cookies",
|
| 1568 |
+
"cooking",
|
| 1569 |
+
"cool",
|
| 1570 |
+
"cooled",
|
| 1571 |
+
"core",
|
| 1572 |
+
"coriander",
|
| 1573 |
+
"corn",
|
| 1574 |
+
"cornbread",
|
| 1575 |
+
"corner",
|
| 1576 |
+
"corners",
|
| 1577 |
+
"cornflour",
|
| 1578 |
+
"cornstarch",
|
| 1579 |
+
"corp",
|
| 1580 |
+
"corp.",
|
| 1581 |
+
"cos",
|
| 1582 |
+
"cottage",
|
| 1583 |
+
"could",
|
| 1584 |
+
"country",
|
| 1585 |
+
"couple",
|
| 1586 |
+
"couscous",
|
| 1587 |
+
"cover",
|
| 1588 |
+
"covered",
|
| 1589 |
+
"covering",
|
| 1590 |
+
"coz",
|
| 1591 |
+
"crab",
|
| 1592 |
+
"crabmeat",
|
| 1593 |
+
"cracker",
|
| 1594 |
+
"crackers",
|
| 1595 |
+
"crackly",
|
| 1596 |
+
"cranberries",
|
| 1597 |
+
"cream",
|
| 1598 |
+
"creamy",
|
| 1599 |
+
"created",
|
| 1600 |
+
"creole",
|
| 1601 |
+
"crescent",
|
| 1602 |
+
"crimp",
|
| 1603 |
+
"crinkled",
|
| 1604 |
+
"crisp",
|
| 1605 |
+
"crispy",
|
| 1606 |
+
"crock",
|
| 1607 |
+
"crockpot",
|
| 1608 |
+
"crosswise",
|
| 1609 |
+
"croutons",
|
| 1610 |
+
"crowding",
|
| 1611 |
+
"crumb",
|
| 1612 |
+
"crumble",
|
| 1613 |
+
"crumbled",
|
| 1614 |
+
"crumbly",
|
| 1615 |
+
"crumbs",
|
| 1616 |
+
"crunch",
|
| 1617 |
+
"cruncy",
|
| 1618 |
+
"crush",
|
| 1619 |
+
"crushed",
|
| 1620 |
+
"crust",
|
| 1621 |
+
"crust--------------",
|
| 1622 |
+
"crusted",
|
| 1623 |
+
"crusts",
|
| 1624 |
+
"crusty",
|
| 1625 |
+
"crystallized",
|
| 1626 |
+
"ct.",
|
| 1627 |
+
"cube",
|
| 1628 |
+
"cubes",
|
| 1629 |
+
"cucmber",
|
| 1630 |
+
"cucmbers",
|
| 1631 |
+
"cucumber",
|
| 1632 |
+
"cucumbers",
|
| 1633 |
+
"cue",
|
| 1634 |
+
"cum",
|
| 1635 |
+
"cumin",
|
| 1636 |
+
"cup",
|
| 1637 |
+
"cups",
|
| 1638 |
+
"curdle",
|
| 1639 |
+
"curdled",
|
| 1640 |
+
"curdles",
|
| 1641 |
+
"curls",
|
| 1642 |
+
"currants",
|
| 1643 |
+
"curry",
|
| 1644 |
+
"curve",
|
| 1645 |
+
"custard",
|
| 1646 |
+
"cut",
|
| 1647 |
+
"cutlets",
|
| 1648 |
+
"cuts",
|
| 1649 |
+
"cutting",
|
| 1650 |
+
"cuz",
|
| 1651 |
+
"cycle",
|
| 1652 |
+
"c\u2019m",
|
| 1653 |
+
"d",
|
| 1654 |
+
"d)",
|
| 1655 |
+
"d-",
|
| 1656 |
+
"d-)",
|
| 1657 |
+
"d-X",
|
| 1658 |
+
"d.",
|
| 1659 |
+
"d.c.",
|
| 1660 |
+
"d.d",
|
| 1661 |
+
"d.x",
|
| 1662 |
+
"d/d",
|
| 1663 |
+
"d/d-",
|
| 1664 |
+
"d/d\\",
|
| 1665 |
+
"d/dxx.xxxx",
|
| 1666 |
+
"d/dxxx",
|
| 1667 |
+
"dX",
|
| 1668 |
+
"d\\",
|
| 1669 |
+
"d_d",
|
| 1670 |
+
"d_x",
|
| 1671 |
+
"dal",
|
| 1672 |
+
"damp",
|
| 1673 |
+
"danish",
|
| 1674 |
+
"dar",
|
| 1675 |
+
"dare",
|
| 1676 |
+
"dark",
|
| 1677 |
+
"das",
|
| 1678 |
+
"dashes",
|
| 1679 |
+
"dates",
|
| 1680 |
+
"day",
|
| 1681 |
+
"days",
|
| 1682 |
+
"dd",
|
| 1683 |
+
"dd-",
|
| 1684 |
+
"dd\\",
|
| 1685 |
+
"ddd",
|
| 1686 |
+
"ddd'X",
|
| 1687 |
+
"ddd'x",
|
| 1688 |
+
"dddX",
|
| 1689 |
+
"dddX.",
|
| 1690 |
+
"dddx",
|
| 1691 |
+
"dddx.",
|
| 1692 |
+
"ddx.x",
|
| 1693 |
+
"ddx.x.",
|
| 1694 |
+
"ddxdd",
|
| 1695 |
+
"ddxdxd",
|
| 1696 |
+
"de",
|
| 1697 |
+
"dec",
|
| 1698 |
+
"dec.",
|
| 1699 |
+
"decorate",
|
| 1700 |
+
"decorative",
|
| 1701 |
+
"ded",
|
| 1702 |
+
"deep",
|
| 1703 |
+
"deg",
|
| 1704 |
+
"degree",
|
| 1705 |
+
"degrees",
|
| 1706 |
+
"del",
|
| 1707 |
+
"del.",
|
| 1708 |
+
"delicious",
|
| 1709 |
+
"den",
|
| 1710 |
+
"depending",
|
| 1711 |
+
"der",
|
| 1712 |
+
"des",
|
| 1713 |
+
"deseed",
|
| 1714 |
+
"desired",
|
| 1715 |
+
"dessert",
|
| 1716 |
+
"dge",
|
| 1717 |
+
"diagonal",
|
| 1718 |
+
"dice",
|
| 1719 |
+
"diced",
|
| 1720 |
+
"did",
|
| 1721 |
+
"different",
|
| 1722 |
+
"dill",
|
| 1723 |
+
"dilute",
|
| 1724 |
+
"dinner",
|
| 1725 |
+
"dip",
|
| 1726 |
+
"dippers",
|
| 1727 |
+
"directed",
|
| 1728 |
+
"direction",
|
| 1729 |
+
"directions",
|
| 1730 |
+
"directions-",
|
| 1731 |
+
"directly",
|
| 1732 |
+
"disc",
|
| 1733 |
+
"discard",
|
| 1734 |
+
"discarding",
|
| 1735 |
+
"discolored",
|
| 1736 |
+
"dish",
|
| 1737 |
+
"dishes",
|
| 1738 |
+
"display",
|
| 1739 |
+
"dissolve",
|
| 1740 |
+
"dissolved",
|
| 1741 |
+
"dissolves",
|
| 1742 |
+
"disturb",
|
| 1743 |
+
"divide",
|
| 1744 |
+
"dle",
|
| 1745 |
+
"dm.",
|
| 1746 |
+
"do",
|
| 1747 |
+
"does",
|
| 1748 |
+
"doin",
|
| 1749 |
+
"doin'",
|
| 1750 |
+
"doing",
|
| 1751 |
+
"doin\u2019",
|
| 1752 |
+
"dollar",
|
| 1753 |
+
"dollop",
|
| 1754 |
+
"dollops",
|
| 1755 |
+
"done",
|
| 1756 |
+
"doneness",
|
| 1757 |
+
"door",
|
| 1758 |
+
"doreen",
|
| 1759 |
+
"dot",
|
| 1760 |
+
"double",
|
| 1761 |
+
"doubled",
|
| 1762 |
+
"dough",
|
| 1763 |
+
"doughs",
|
| 1764 |
+
"doughs-",
|
| 1765 |
+
"down",
|
| 1766 |
+
"dr",
|
| 1767 |
+
"dr.",
|
| 1768 |
+
"drain",
|
| 1769 |
+
"drained",
|
| 1770 |
+
"draining",
|
| 1771 |
+
"dredge",
|
| 1772 |
+
"dregrees",
|
| 1773 |
+
"dress",
|
| 1774 |
+
"dressing",
|
| 1775 |
+
"dried",
|
| 1776 |
+
"drink",
|
| 1777 |
+
"dripping",
|
| 1778 |
+
"drippings",
|
| 1779 |
+
"drizzle",
|
| 1780 |
+
"drop",
|
| 1781 |
+
"dropped",
|
| 1782 |
+
"dropping",
|
| 1783 |
+
"dry",
|
| 1784 |
+
"dumpling",
|
| 1785 |
+
"dumplings",
|
| 1786 |
+
"during",
|
| 1787 |
+
"dust",
|
| 1788 |
+
"dusted",
|
| 1789 |
+
"dutch",
|
| 1790 |
+
"dx",
|
| 1791 |
+
"dx.x",
|
| 1792 |
+
"dx.x.",
|
| 1793 |
+
"dxd",
|
| 1794 |
+
"dxdd",
|
| 1795 |
+
"dxdd\\",
|
| 1796 |
+
"dxx",
|
| 1797 |
+
"e",
|
| 1798 |
+
"e's",
|
| 1799 |
+
"e.",
|
| 1800 |
+
"e.g",
|
| 1801 |
+
"e.g.",
|
| 1802 |
+
"e:-",
|
| 1803 |
+
"each",
|
| 1804 |
+
"ead",
|
| 1805 |
+
"eaf",
|
| 1806 |
+
"eak",
|
| 1807 |
+
"eal",
|
| 1808 |
+
"eam",
|
| 1809 |
+
"ean",
|
| 1810 |
+
"ear",
|
| 1811 |
+
"earlier",
|
| 1812 |
+
"eas",
|
| 1813 |
+
"easier",
|
| 1814 |
+
"easily",
|
| 1815 |
+
"eat",
|
| 1816 |
+
"eat'em",
|
| 1817 |
+
"eaten",
|
| 1818 |
+
"eating",
|
| 1819 |
+
"eb.",
|
| 1820 |
+
"ebr",
|
| 1821 |
+
"ec.",
|
| 1822 |
+
"ece",
|
| 1823 |
+
"ect",
|
| 1824 |
+
"edge",
|
| 1825 |
+
"edges",
|
| 1826 |
+
"eds",
|
| 1827 |
+
"eed",
|
| 1828 |
+
"eef",
|
| 1829 |
+
"eek",
|
| 1830 |
+
"eel",
|
| 1831 |
+
"een",
|
| 1832 |
+
"eep",
|
| 1833 |
+
"eer",
|
| 1834 |
+
"ees",
|
| 1835 |
+
"eet",
|
| 1836 |
+
"eft",
|
| 1837 |
+
"egg",
|
| 1838 |
+
"eggplant",
|
| 1839 |
+
"eggs",
|
| 1840 |
+
"eight",
|
| 1841 |
+
"eir",
|
| 1842 |
+
"either",
|
| 1843 |
+
"eks",
|
| 1844 |
+
"el.",
|
| 1845 |
+
"elastic",
|
| 1846 |
+
"eld",
|
| 1847 |
+
"electric",
|
| 1848 |
+
"elf",
|
| 1849 |
+
"ell",
|
| 1850 |
+
"els",
|
| 1851 |
+
"elt",
|
| 1852 |
+
"ely",
|
| 1853 |
+
"em",
|
| 1854 |
+
"emp",
|
| 1855 |
+
"ems",
|
| 1856 |
+
"en",
|
| 1857 |
+
"en.",
|
| 1858 |
+
"enchilada",
|
| 1859 |
+
"enchiladas",
|
| 1860 |
+
"end",
|
| 1861 |
+
"ends",
|
| 1862 |
+
"enjoy",
|
| 1863 |
+
"enn",
|
| 1864 |
+
"enough",
|
| 1865 |
+
"ens",
|
| 1866 |
+
"ent",
|
| 1867 |
+
"enters",
|
| 1868 |
+
"entirely",
|
| 1869 |
+
"ep.",
|
| 1870 |
+
"ept",
|
| 1871 |
+
"er",
|
| 1872 |
+
"er-",
|
| 1873 |
+
"era",
|
| 1874 |
+
"erb",
|
| 1875 |
+
"ere",
|
| 1876 |
+
"erm",
|
| 1877 |
+
"ers",
|
| 1878 |
+
"ert",
|
| 1879 |
+
"ery",
|
| 1880 |
+
"escape",
|
| 1881 |
+
"ese",
|
| 1882 |
+
"esh",
|
| 1883 |
+
"ess",
|
| 1884 |
+
"essence",
|
| 1885 |
+
"est",
|
| 1886 |
+
"eta",
|
| 1887 |
+
"etc",
|
| 1888 |
+
"ete",
|
| 1889 |
+
"ets",
|
| 1890 |
+
"ev.",
|
| 1891 |
+
"evaporated",
|
| 1892 |
+
"eve",
|
| 1893 |
+
"even",
|
| 1894 |
+
"evenly",
|
| 1895 |
+
"every",
|
| 1896 |
+
"everything",
|
| 1897 |
+
"ews",
|
| 1898 |
+
"example",
|
| 1899 |
+
"except",
|
| 1900 |
+
"exceptionally",
|
| 1901 |
+
"excess",
|
| 1902 |
+
"excluding",
|
| 1903 |
+
"ext",
|
| 1904 |
+
"extra",
|
| 1905 |
+
"extract",
|
| 1906 |
+
"extremely",
|
| 1907 |
+
"eye",
|
| 1908 |
+
"eze",
|
| 1909 |
+
"e\u2019s",
|
| 1910 |
+
"f",
|
| 1911 |
+
"f.",
|
| 1912 |
+
"fahrenhit",
|
| 1913 |
+
"fair",
|
| 1914 |
+
"fall",
|
| 1915 |
+
"fan",
|
| 1916 |
+
"fast",
|
| 1917 |
+
"fat",
|
| 1918 |
+
"favorite",
|
| 1919 |
+
"feb",
|
| 1920 |
+
"feb.",
|
| 1921 |
+
"fed",
|
| 1922 |
+
"fee",
|
| 1923 |
+
"fer",
|
| 1924 |
+
"feta",
|
| 1925 |
+
"fettucini",
|
| 1926 |
+
"few",
|
| 1927 |
+
"ffy",
|
| 1928 |
+
"fiber",
|
| 1929 |
+
"field",
|
| 1930 |
+
"fifteen",
|
| 1931 |
+
"figs",
|
| 1932 |
+
"fill",
|
| 1933 |
+
"fillets",
|
| 1934 |
+
"filling",
|
| 1935 |
+
"filling-----------",
|
| 1936 |
+
"fin",
|
| 1937 |
+
"final",
|
| 1938 |
+
"finally",
|
| 1939 |
+
"fine",
|
| 1940 |
+
"finely",
|
| 1941 |
+
"finer",
|
| 1942 |
+
"fingers",
|
| 1943 |
+
"finish",
|
| 1944 |
+
"fire",
|
| 1945 |
+
"firm",
|
| 1946 |
+
"firmly",
|
| 1947 |
+
"first",
|
| 1948 |
+
"firstly",
|
| 1949 |
+
"fish",
|
| 1950 |
+
"fit",
|
| 1951 |
+
"fitted",
|
| 1952 |
+
"fitting",
|
| 1953 |
+
"five",
|
| 1954 |
+
"fla",
|
| 1955 |
+
"fla.",
|
| 1956 |
+
"flake",
|
| 1957 |
+
"flakes",
|
| 1958 |
+
"flame",
|
| 1959 |
+
"flat",
|
| 1960 |
+
"flatten",
|
| 1961 |
+
"flattening",
|
| 1962 |
+
"flavor",
|
| 1963 |
+
"flavors",
|
| 1964 |
+
"flesh",
|
| 1965 |
+
"float",
|
| 1966 |
+
"florets",
|
| 1967 |
+
"flouer",
|
| 1968 |
+
"flour",
|
| 1969 |
+
"floured",
|
| 1970 |
+
"fluff",
|
| 1971 |
+
"fluffy",
|
| 1972 |
+
"fly",
|
| 1973 |
+
"fl\u00e9",
|
| 1974 |
+
"foam",
|
| 1975 |
+
"foamy",
|
| 1976 |
+
"foil",
|
| 1977 |
+
"fold",
|
| 1978 |
+
"folded",
|
| 1979 |
+
"folks",
|
| 1980 |
+
"follow",
|
| 1981 |
+
"following",
|
| 1982 |
+
"food",
|
| 1983 |
+
"for",
|
| 1984 |
+
"forcranberry",
|
| 1985 |
+
"fork",
|
| 1986 |
+
"form",
|
| 1987 |
+
"formed",
|
| 1988 |
+
"forms",
|
| 1989 |
+
"four",
|
| 1990 |
+
"free",
|
| 1991 |
+
"freeze",
|
| 1992 |
+
"freezer",
|
| 1993 |
+
"freezes",
|
| 1994 |
+
"freezing",
|
| 1995 |
+
"french",
|
| 1996 |
+
"frequently",
|
| 1997 |
+
"fresh",
|
| 1998 |
+
"freshly",
|
| 1999 |
+
"fridge",
|
| 2000 |
+
"fried",
|
| 2001 |
+
"fritters",
|
| 2002 |
+
"from",
|
| 2003 |
+
"frost",
|
| 2004 |
+
"frosting",
|
| 2005 |
+
"frothy",
|
| 2006 |
+
"frozen",
|
| 2007 |
+
"fruit",
|
| 2008 |
+
"fruits",
|
| 2009 |
+
"fry",
|
| 2010 |
+
"fryer",
|
| 2011 |
+
"frying",
|
| 2012 |
+
"frypan",
|
| 2013 |
+
"fudge",
|
| 2014 |
+
"ful",
|
| 2015 |
+
"full",
|
| 2016 |
+
"fully",
|
| 2017 |
+
"g",
|
| 2018 |
+
"g.",
|
| 2019 |
+
"ga",
|
| 2020 |
+
"ga.",
|
| 2021 |
+
"gal\\",
|
| 2022 |
+
"gallo",
|
| 2023 |
+
"gar",
|
| 2024 |
+
"garlic",
|
| 2025 |
+
"garnish",
|
| 2026 |
+
"garnished",
|
| 2027 |
+
"gather",
|
| 2028 |
+
"ged",
|
| 2029 |
+
"gel",
|
| 2030 |
+
"gelatin",
|
| 2031 |
+
"gen",
|
| 2032 |
+
"gen.",
|
| 2033 |
+
"generously",
|
| 2034 |
+
"gentle",
|
| 2035 |
+
"gently",
|
| 2036 |
+
"ger",
|
| 2037 |
+
"germ",
|
| 2038 |
+
"german",
|
| 2039 |
+
"ges",
|
| 2040 |
+
"get",
|
| 2041 |
+
"gets",
|
| 2042 |
+
"ggs",
|
| 2043 |
+
"ghee",
|
| 2044 |
+
"ghs",
|
| 2045 |
+
"ght",
|
| 2046 |
+
"gie",
|
| 2047 |
+
"gin",
|
| 2048 |
+
"ginger",
|
| 2049 |
+
"git",
|
| 2050 |
+
"give",
|
| 2051 |
+
"glass",
|
| 2052 |
+
"glasses",
|
| 2053 |
+
"glaze",
|
| 2054 |
+
"gle",
|
| 2055 |
+
"glistening",
|
| 2056 |
+
"gly",
|
| 2057 |
+
"gne",
|
| 2058 |
+
"go",
|
| 2059 |
+
"goes",
|
| 2060 |
+
"goin",
|
| 2061 |
+
"goin'",
|
| 2062 |
+
"going",
|
| 2063 |
+
"goin\u2019",
|
| 2064 |
+
"golden",
|
| 2065 |
+
"gon",
|
| 2066 |
+
"gone",
|
| 2067 |
+
"gonna",
|
| 2068 |
+
"good",
|
| 2069 |
+
"got",
|
| 2070 |
+
"goulash",
|
| 2071 |
+
"gov",
|
| 2072 |
+
"gov.",
|
| 2073 |
+
"gradually",
|
| 2074 |
+
"graham",
|
| 2075 |
+
"grain",
|
| 2076 |
+
"grate",
|
| 2077 |
+
"grated",
|
| 2078 |
+
"grater",
|
| 2079 |
+
"gravy",
|
| 2080 |
+
"grease",
|
| 2081 |
+
"greased",
|
| 2082 |
+
"great",
|
| 2083 |
+
"green",
|
| 2084 |
+
"greens",
|
| 2085 |
+
"grill",
|
| 2086 |
+
"grilled",
|
| 2087 |
+
"grind",
|
| 2088 |
+
"grinder",
|
| 2089 |
+
"ground",
|
| 2090 |
+
"guacamole",
|
| 2091 |
+
"gue",
|
| 2092 |
+
"gun",
|
| 2093 |
+
"h",
|
| 2094 |
+
"h.",
|
| 2095 |
+
"had",
|
| 2096 |
+
"half",
|
| 2097 |
+
"halfway",
|
| 2098 |
+
"halve",
|
| 2099 |
+
"halved",
|
| 2100 |
+
"ham",
|
| 2101 |
+
"hamburger",
|
| 2102 |
+
"han",
|
| 2103 |
+
"hand",
|
| 2104 |
+
"handle",
|
| 2105 |
+
"hands",
|
| 2106 |
+
"hard",
|
| 2107 |
+
"has",
|
| 2108 |
+
"hat",
|
| 2109 |
+
"have",
|
| 2110 |
+
"havin",
|
| 2111 |
+
"havin'",
|
| 2112 |
+
"having",
|
| 2113 |
+
"havin\u2019",
|
| 2114 |
+
"haw",
|
| 2115 |
+
"he",
|
| 2116 |
+
"he's",
|
| 2117 |
+
"heaping",
|
| 2118 |
+
"hearts",
|
| 2119 |
+
"heat",
|
| 2120 |
+
"heated",
|
| 2121 |
+
"heating",
|
| 2122 |
+
"heave",
|
| 2123 |
+
"heavy",
|
| 2124 |
+
"hed",
|
| 2125 |
+
"hee",
|
| 2126 |
+
"hem",
|
| 2127 |
+
"hen",
|
| 2128 |
+
"her",
|
| 2129 |
+
"herb",
|
| 2130 |
+
"herbs",
|
| 2131 |
+
"herring",
|
| 2132 |
+
"hershey",
|
| 2133 |
+
"hes",
|
| 2134 |
+
"hey",
|
| 2135 |
+
"he\u2019s",
|
| 2136 |
+
"high",
|
| 2137 |
+
"hin",
|
| 2138 |
+
"hip",
|
| 2139 |
+
"hir",
|
| 2140 |
+
"his",
|
| 2141 |
+
"hit",
|
| 2142 |
+
"hly",
|
| 2143 |
+
"holes",
|
| 2144 |
+
"hollow",
|
| 2145 |
+
"homemade",
|
| 2146 |
+
"honey",
|
| 2147 |
+
"hop",
|
| 2148 |
+
"hot",
|
| 2149 |
+
"hour",
|
| 2150 |
+
"hours",
|
| 2151 |
+
"how",
|
| 2152 |
+
"how's",
|
| 2153 |
+
"how\u2019s",
|
| 2154 |
+
"hoy",
|
| 2155 |
+
"hrs",
|
| 2156 |
+
"hs-",
|
| 2157 |
+
"hungarian'halousky",
|
| 2158 |
+
"hunks",
|
| 2159 |
+
"i",
|
| 2160 |
+
"i.",
|
| 2161 |
+
"i.e",
|
| 2162 |
+
"i.e.",
|
| 2163 |
+
"ia",
|
| 2164 |
+
"ia.",
|
| 2165 |
+
"ian",
|
| 2166 |
+
"ice",
|
| 2167 |
+
"ich",
|
| 2168 |
+
"icing",
|
| 2169 |
+
"ick",
|
| 2170 |
+
"ico",
|
| 2171 |
+
"id",
|
| 2172 |
+
"id.",
|
| 2173 |
+
"ide",
|
| 2174 |
+
"ideas",
|
| 2175 |
+
"ied",
|
| 2176 |
+
"ier",
|
| 2177 |
+
"ies",
|
| 2178 |
+
"if",
|
| 2179 |
+
"if.",
|
| 2180 |
+
"ife",
|
| 2181 |
+
"iff",
|
| 2182 |
+
"ift",
|
| 2183 |
+
"ifyou",
|
| 2184 |
+
"igh",
|
| 2185 |
+
"igs",
|
| 2186 |
+
"ika",
|
| 2187 |
+
"ike",
|
| 2188 |
+
"ile",
|
| 2189 |
+
"ili",
|
| 2190 |
+
"ilk",
|
| 2191 |
+
"ill",
|
| 2192 |
+
"ill.",
|
| 2193 |
+
"ils",
|
| 2194 |
+
"ilt",
|
| 2195 |
+
"ily",
|
| 2196 |
+
"ime",
|
| 2197 |
+
"immediately",
|
| 2198 |
+
"imp",
|
| 2199 |
+
"important",
|
| 2200 |
+
"impress",
|
| 2201 |
+
"in",
|
| 2202 |
+
"in'",
|
| 2203 |
+
"inc",
|
| 2204 |
+
"inc.",
|
| 2205 |
+
"inch",
|
| 2206 |
+
"inches",
|
| 2207 |
+
"including",
|
| 2208 |
+
"incorporate",
|
| 2209 |
+
"ind",
|
| 2210 |
+
"ind.",
|
| 2211 |
+
"indian",
|
| 2212 |
+
"individual",
|
| 2213 |
+
"individualy",
|
| 2214 |
+
"ine",
|
| 2215 |
+
"ing",
|
| 2216 |
+
"ingerdients",
|
| 2217 |
+
"ingredient",
|
| 2218 |
+
"ingredients",
|
| 2219 |
+
"ingredientsinto",
|
| 2220 |
+
"ini",
|
| 2221 |
+
"injera",
|
| 2222 |
+
"ink",
|
| 2223 |
+
"inn",
|
| 2224 |
+
"ins",
|
| 2225 |
+
"insert",
|
| 2226 |
+
"inserted",
|
| 2227 |
+
"inside",
|
| 2228 |
+
"instead",
|
| 2229 |
+
"instructions",
|
| 2230 |
+
"int",
|
| 2231 |
+
"internal",
|
| 2232 |
+
"into",
|
| 2233 |
+
"invert",
|
| 2234 |
+
"iny",
|
| 2235 |
+
"in\u2019",
|
| 2236 |
+
"ion",
|
| 2237 |
+
"ior",
|
| 2238 |
+
"ipe",
|
| 2239 |
+
"ips",
|
| 2240 |
+
"ira",
|
| 2241 |
+
"ird",
|
| 2242 |
+
"ire",
|
| 2243 |
+
"irm",
|
| 2244 |
+
"iron",
|
| 2245 |
+
"is",
|
| 2246 |
+
"is.",
|
| 2247 |
+
"isc",
|
| 2248 |
+
"ise",
|
| 2249 |
+
"ish",
|
| 2250 |
+
"isk",
|
| 2251 |
+
"isp",
|
| 2252 |
+
"iss",
|
| 2253 |
+
"ist",
|
| 2254 |
+
"it",
|
| 2255 |
+
"it's",
|
| 2256 |
+
"it-",
|
| 2257 |
+
"italian",
|
| 2258 |
+
"ite",
|
| 2259 |
+
"ith",
|
| 2260 |
+
"its",
|
| 2261 |
+
"ity",
|
| 2262 |
+
"itz",
|
| 2263 |
+
"it\u2019s",
|
| 2264 |
+
"ium",
|
| 2265 |
+
"ive",
|
| 2266 |
+
"iwi",
|
| 2267 |
+
"iz.",
|
| 2268 |
+
"ize",
|
| 2269 |
+
"j",
|
| 2270 |
+
"j.",
|
| 2271 |
+
"jalapenos",
|
| 2272 |
+
"jam",
|
| 2273 |
+
"jan",
|
| 2274 |
+
"jan.",
|
| 2275 |
+
"jar",
|
| 2276 |
+
"jars",
|
| 2277 |
+
"jello",
|
| 2278 |
+
"jelly",
|
| 2279 |
+
"jellyroll",
|
| 2280 |
+
"joints",
|
| 2281 |
+
"joy",
|
| 2282 |
+
"jr",
|
| 2283 |
+
"jr.",
|
| 2284 |
+
"juice",
|
| 2285 |
+
"juices",
|
| 2286 |
+
"jul",
|
| 2287 |
+
"jul.",
|
| 2288 |
+
"jun",
|
| 2289 |
+
"jun.",
|
| 2290 |
+
"just",
|
| 2291 |
+
"k",
|
| 2292 |
+
"k.",
|
| 2293 |
+
"kabobs",
|
| 2294 |
+
"kan",
|
| 2295 |
+
"kan.",
|
| 2296 |
+
"kans",
|
| 2297 |
+
"kans.",
|
| 2298 |
+
"ke@",
|
| 2299 |
+
"kebabs",
|
| 2300 |
+
"kebbeh",
|
| 2301 |
+
"ked",
|
| 2302 |
+
"keep",
|
| 2303 |
+
"ken",
|
| 2304 |
+
"ker",
|
| 2305 |
+
"kernels",
|
| 2306 |
+
"kes",
|
| 2307 |
+
"ket",
|
| 2308 |
+
"kettle",
|
| 2309 |
+
"key",
|
| 2310 |
+
"khoya",
|
| 2311 |
+
"kidney",
|
| 2312 |
+
"kie",
|
| 2313 |
+
"kielbasa",
|
| 2314 |
+
"kim",
|
| 2315 |
+
"kin",
|
| 2316 |
+
"kind",
|
| 2317 |
+
"kitchen",
|
| 2318 |
+
"kiwi",
|
| 2319 |
+
"kiwis",
|
| 2320 |
+
"kla",
|
| 2321 |
+
"kle",
|
| 2322 |
+
"kly",
|
| 2323 |
+
"knead",
|
| 2324 |
+
"knife",
|
| 2325 |
+
"krispy",
|
| 2326 |
+
"ky",
|
| 2327 |
+
"ky.",
|
| 2328 |
+
"l",
|
| 2329 |
+
"l.",
|
| 2330 |
+
"la",
|
| 2331 |
+
"la.",
|
| 2332 |
+
"label",
|
| 2333 |
+
"lad",
|
| 2334 |
+
"lamb",
|
| 2335 |
+
"lar",
|
| 2336 |
+
"large",
|
| 2337 |
+
"larger",
|
| 2338 |
+
"las",
|
| 2339 |
+
"last",
|
| 2340 |
+
"lastly",
|
| 2341 |
+
"lat",
|
| 2342 |
+
"later",
|
| 2343 |
+
"latkes",
|
| 2344 |
+
"lattice",
|
| 2345 |
+
"law",
|
| 2346 |
+
"lay",
|
| 2347 |
+
"layer",
|
| 2348 |
+
"layering",
|
| 2349 |
+
"layers",
|
| 2350 |
+
"ld",
|
| 2351 |
+
"leaf",
|
| 2352 |
+
"lease",
|
| 2353 |
+
"least",
|
| 2354 |
+
"leave",
|
| 2355 |
+
"leaves",
|
| 2356 |
+
"leaving",
|
| 2357 |
+
"led",
|
| 2358 |
+
"leek",
|
| 2359 |
+
"left",
|
| 2360 |
+
"leftovers",
|
| 2361 |
+
"lemon",
|
| 2362 |
+
"lemongrass",
|
| 2363 |
+
"lengthwise",
|
| 2364 |
+
"lentils",
|
| 2365 |
+
"ler",
|
| 2366 |
+
"les",
|
| 2367 |
+
"less",
|
| 2368 |
+
"let",
|
| 2369 |
+
"let's",
|
| 2370 |
+
"lettuce",
|
| 2371 |
+
"let\u2019s",
|
| 2372 |
+
"ley",
|
| 2373 |
+
"lg",
|
| 2374 |
+
"liberally",
|
| 2375 |
+
"lic",
|
| 2376 |
+
"lid",
|
| 2377 |
+
"lie",
|
| 2378 |
+
"lif",
|
| 2379 |
+
"lift",
|
| 2380 |
+
"light",
|
| 2381 |
+
"lightly",
|
| 2382 |
+
"like",
|
| 2383 |
+
"likes",
|
| 2384 |
+
"liking",
|
| 2385 |
+
"lime",
|
| 2386 |
+
"limes",
|
| 2387 |
+
"lin",
|
| 2388 |
+
"line",
|
| 2389 |
+
"lined",
|
| 2390 |
+
"lip",
|
| 2391 |
+
"liquid",
|
| 2392 |
+
"liquidize",
|
| 2393 |
+
"liquified",
|
| 2394 |
+
"listed",
|
| 2395 |
+
"lit",
|
| 2396 |
+
"little",
|
| 2397 |
+
"live",
|
| 2398 |
+
"livers",
|
| 2399 |
+
"lks",
|
| 2400 |
+
"lky",
|
| 2401 |
+
"ll",
|
| 2402 |
+
"ll.",
|
| 2403 |
+
"lla",
|
| 2404 |
+
"lle",
|
| 2405 |
+
"llo",
|
| 2406 |
+
"lls",
|
| 2407 |
+
"lly",
|
| 2408 |
+
"lms",
|
| 2409 |
+
"lo.",
|
| 2410 |
+
"loaf",
|
| 2411 |
+
"loafs",
|
| 2412 |
+
"loaves",
|
| 2413 |
+
"loc",
|
| 2414 |
+
"lock",
|
| 2415 |
+
"lon",
|
| 2416 |
+
"long",
|
| 2417 |
+
"longer",
|
| 2418 |
+
"looking",
|
| 2419 |
+
"loosely",
|
| 2420 |
+
"loosen",
|
| 2421 |
+
"lop",
|
| 2422 |
+
"lor",
|
| 2423 |
+
"lot",
|
| 2424 |
+
"love",
|
| 2425 |
+
"lovin",
|
| 2426 |
+
"lovin'",
|
| 2427 |
+
"loving",
|
| 2428 |
+
"lovin\u2019",
|
| 2429 |
+
"low",
|
| 2430 |
+
"lower",
|
| 2431 |
+
"lowest",
|
| 2432 |
+
"lox",
|
| 2433 |
+
"lsa",
|
| 2434 |
+
"lso",
|
| 2435 |
+
"ltd",
|
| 2436 |
+
"ltd.",
|
| 2437 |
+
"lts",
|
| 2438 |
+
"lub",
|
| 2439 |
+
"lumps",
|
| 2440 |
+
"lus",
|
| 2441 |
+
"lve",
|
| 2442 |
+
"m",
|
| 2443 |
+
"m.",
|
| 2444 |
+
"ma'am",
|
| 2445 |
+
"macaroni",
|
| 2446 |
+
"mace",
|
| 2447 |
+
"machine",
|
| 2448 |
+
"madam",
|
| 2449 |
+
"made",
|
| 2450 |
+
"madeira",
|
| 2451 |
+
"make",
|
| 2452 |
+
"maker",
|
| 2453 |
+
"makes",
|
| 2454 |
+
"making",
|
| 2455 |
+
"mallet",
|
| 2456 |
+
"man",
|
| 2457 |
+
"mandarins",
|
| 2458 |
+
"manner",
|
| 2459 |
+
"manufacturers",
|
| 2460 |
+
"mar",
|
| 2461 |
+
"mar.",
|
| 2462 |
+
"margarine",
|
| 2463 |
+
"marinade",
|
| 2464 |
+
"marinate",
|
| 2465 |
+
"marinates",
|
| 2466 |
+
"marinating",
|
| 2467 |
+
"marjoram",
|
| 2468 |
+
"marshmallows",
|
| 2469 |
+
"mash",
|
| 2470 |
+
"mashed",
|
| 2471 |
+
"masher",
|
| 2472 |
+
"mass",
|
| 2473 |
+
"mass.",
|
| 2474 |
+
"matchsticks",
|
| 2475 |
+
"mawa",
|
| 2476 |
+
"may",
|
| 2477 |
+
"mayo",
|
| 2478 |
+
"mayonnaise",
|
| 2479 |
+
"ma\u2019am",
|
| 2480 |
+
"mbs",
|
| 2481 |
+
"md",
|
| 2482 |
+
"md.",
|
| 2483 |
+
"me",
|
| 2484 |
+
"meal",
|
| 2485 |
+
"meantime",
|
| 2486 |
+
"meanwhile",
|
| 2487 |
+
"measure",
|
| 2488 |
+
"measuring",
|
| 2489 |
+
"meat",
|
| 2490 |
+
"meatballs",
|
| 2491 |
+
"meatloaf",
|
| 2492 |
+
"med",
|
| 2493 |
+
"medium",
|
| 2494 |
+
"meg",
|
| 2495 |
+
"meld",
|
| 2496 |
+
"melt",
|
| 2497 |
+
"melted",
|
| 2498 |
+
"melts",
|
| 2499 |
+
"mer",
|
| 2500 |
+
"meringue",
|
| 2501 |
+
"mes",
|
| 2502 |
+
"messrs",
|
| 2503 |
+
"messrs.",
|
| 2504 |
+
"metal",
|
| 2505 |
+
"mexican",
|
| 2506 |
+
"mic",
|
| 2507 |
+
"mich",
|
| 2508 |
+
"mich.",
|
| 2509 |
+
"microwave",
|
| 2510 |
+
"middle",
|
| 2511 |
+
"might",
|
| 2512 |
+
"milk",
|
| 2513 |
+
"min",
|
| 2514 |
+
"mince",
|
| 2515 |
+
"minn",
|
| 2516 |
+
"minn.",
|
| 2517 |
+
"mint",
|
| 2518 |
+
"minute",
|
| 2519 |
+
"minutes",
|
| 2520 |
+
"miss",
|
| 2521 |
+
"miss.",
|
| 2522 |
+
"mit",
|
| 2523 |
+
"mix",
|
| 2524 |
+
"mixed",
|
| 2525 |
+
"mixer",
|
| 2526 |
+
"mixing",
|
| 2527 |
+
"mixture",
|
| 2528 |
+
"mly",
|
| 2529 |
+
"mo",
|
| 2530 |
+
"mo.",
|
| 2531 |
+
"moderate",
|
| 2532 |
+
"moist",
|
| 2533 |
+
"moisten",
|
| 2534 |
+
"moistened",
|
| 2535 |
+
"moisture",
|
| 2536 |
+
"molassas",
|
| 2537 |
+
"molasses",
|
| 2538 |
+
"mold",
|
| 2539 |
+
"mom",
|
| 2540 |
+
"moment",
|
| 2541 |
+
"mon",
|
| 2542 |
+
"mont",
|
| 2543 |
+
"mont.",
|
| 2544 |
+
"more",
|
| 2545 |
+
"morning",
|
| 2546 |
+
"mostly",
|
| 2547 |
+
"move",
|
| 2548 |
+
"mozzarella",
|
| 2549 |
+
"mps",
|
| 2550 |
+
"mr",
|
| 2551 |
+
"mr.",
|
| 2552 |
+
"mrs",
|
| 2553 |
+
"mrs.",
|
| 2554 |
+
"ms",
|
| 2555 |
+
"ms.",
|
| 2556 |
+
"msg",
|
| 2557 |
+
"mt",
|
| 2558 |
+
"mt.",
|
| 2559 |
+
"much",
|
| 2560 |
+
"muffin",
|
| 2561 |
+
"mugs",
|
| 2562 |
+
"mushroom",
|
| 2563 |
+
"mushrooms",
|
| 2564 |
+
"mushy",
|
| 2565 |
+
"muslin",
|
| 2566 |
+
"must",
|
| 2567 |
+
"mustard",
|
| 2568 |
+
"my",
|
| 2569 |
+
"n",
|
| 2570 |
+
"n's",
|
| 2571 |
+
"n't",
|
| 2572 |
+
"n.",
|
| 2573 |
+
"n.c.",
|
| 2574 |
+
"n.d.",
|
| 2575 |
+
"n.h.",
|
| 2576 |
+
"n.j.",
|
| 2577 |
+
"n.m.",
|
| 2578 |
+
"n.y.",
|
| 2579 |
+
"na",
|
| 2580 |
+
"nal",
|
| 2581 |
+
"narrow",
|
| 2582 |
+
"nas",
|
| 2583 |
+
"nay",
|
| 2584 |
+
"nc.",
|
| 2585 |
+
"nce",
|
| 2586 |
+
"nch",
|
| 2587 |
+
"ncy",
|
| 2588 |
+
"nd.",
|
| 2589 |
+
"nds",
|
| 2590 |
+
"ndy",
|
| 2591 |
+
"near",
|
| 2592 |
+
"neb",
|
| 2593 |
+
"neb.",
|
| 2594 |
+
"nebr",
|
| 2595 |
+
"nebr.",
|
| 2596 |
+
"necessary",
|
| 2597 |
+
"ned",
|
| 2598 |
+
"need",
|
| 2599 |
+
"needed",
|
| 2600 |
+
"ner",
|
| 2601 |
+
"nes",
|
| 2602 |
+
"nested",
|
| 2603 |
+
"nev",
|
| 2604 |
+
"nev.",
|
| 2605 |
+
"new",
|
| 2606 |
+
"newspaper",
|
| 2607 |
+
"next",
|
| 2608 |
+
"ney",
|
| 2609 |
+
"nge",
|
| 2610 |
+
"ngs",
|
| 2611 |
+
"nice",
|
| 2612 |
+
"nicely",
|
| 2613 |
+
"nife",
|
| 2614 |
+
"night",
|
| 2615 |
+
"nip",
|
| 2616 |
+
"niter",
|
| 2617 |
+
"nks",
|
| 2618 |
+
"nly",
|
| 2619 |
+
"nn.",
|
| 2620 |
+
"nne",
|
| 2621 |
+
"no",
|
| 2622 |
+
"non",
|
| 2623 |
+
"none",
|
| 2624 |
+
"nonstick",
|
| 2625 |
+
"noodles",
|
| 2626 |
+
"nos",
|
| 2627 |
+
"not",
|
| 2628 |
+
"note",
|
| 2629 |
+
"notes",
|
| 2630 |
+
"nothin",
|
| 2631 |
+
"nothin'",
|
| 2632 |
+
"nothing",
|
| 2633 |
+
"nothin\u2019",
|
| 2634 |
+
"nov",
|
| 2635 |
+
"nov.",
|
| 2636 |
+
"now",
|
| 2637 |
+
"ns-",
|
| 2638 |
+
"ns.",
|
| 2639 |
+
"nse",
|
| 2640 |
+
"nt",
|
| 2641 |
+
"nt.",
|
| 2642 |
+
"nte",
|
| 2643 |
+
"nto",
|
| 2644 |
+
"nts",
|
| 2645 |
+
"nty",
|
| 2646 |
+
"nue",
|
| 2647 |
+
"nuff",
|
| 2648 |
+
"nui",
|
| 2649 |
+
"nut",
|
| 2650 |
+
"nuthin",
|
| 2651 |
+
"nuthin'",
|
| 2652 |
+
"nuthin\u2019",
|
| 2653 |
+
"nutmeg",
|
| 2654 |
+
"nuts",
|
| 2655 |
+
"n\u2019s",
|
| 2656 |
+
"n\u2019t",
|
| 2657 |
+
"o",
|
| 2658 |
+
"o'clock",
|
| 2659 |
+
"o's",
|
| 2660 |
+
"o.",
|
| 2661 |
+
"o.0",
|
| 2662 |
+
"o.O",
|
| 2663 |
+
"o.o",
|
| 2664 |
+
"o_0",
|
| 2665 |
+
"o_O",
|
| 2666 |
+
"o_o",
|
| 2667 |
+
"oaf",
|
| 2668 |
+
"oak",
|
| 2669 |
+
"oal",
|
| 2670 |
+
"oam",
|
| 2671 |
+
"oat",
|
| 2672 |
+
"oats",
|
| 2673 |
+
"obs",
|
| 2674 |
+
"obtain",
|
| 2675 |
+
"oca",
|
| 2676 |
+
"occasionally",
|
| 2677 |
+
"ock",
|
| 2678 |
+
"oct",
|
| 2679 |
+
"oct.",
|
| 2680 |
+
"oda",
|
| 2681 |
+
"ods",
|
| 2682 |
+
"oes",
|
| 2683 |
+
"of",
|
| 2684 |
+
"of.",
|
| 2685 |
+
"off",
|
| 2686 |
+
"oft",
|
| 2687 |
+
"often",
|
| 2688 |
+
"ofu",
|
| 2689 |
+
"oid",
|
| 2690 |
+
"oil",
|
| 2691 |
+
"oilves",
|
| 2692 |
+
"oin",
|
| 2693 |
+
"ok\\",
|
| 2694 |
+
"oke",
|
| 2695 |
+
"okla",
|
| 2696 |
+
"okla.",
|
| 2697 |
+
"ol",
|
| 2698 |
+
"ol'",
|
| 2699 |
+
"ola",
|
| 2700 |
+
"old",
|
| 2701 |
+
"older",
|
| 2702 |
+
"ole",
|
| 2703 |
+
"oli",
|
| 2704 |
+
"olive",
|
| 2705 |
+
"olives",
|
| 2706 |
+
"oll",
|
| 2707 |
+
"olo",
|
| 2708 |
+
"ol\u2019",
|
| 2709 |
+
"ome",
|
| 2710 |
+
"oms",
|
| 2711 |
+
"on",
|
| 2712 |
+
"once",
|
| 2713 |
+
"ond",
|
| 2714 |
+
"one",
|
| 2715 |
+
"ones",
|
| 2716 |
+
"ong",
|
| 2717 |
+
"oni",
|
| 2718 |
+
"onion",
|
| 2719 |
+
"onions",
|
| 2720 |
+
"online",
|
| 2721 |
+
"only",
|
| 2722 |
+
"onn",
|
| 2723 |
+
"ons",
|
| 2724 |
+
"ont",
|
| 2725 |
+
"onto",
|
| 2726 |
+
"ontop",
|
| 2727 |
+
"ood",
|
| 2728 |
+
"oof",
|
| 2729 |
+
"ook",
|
| 2730 |
+
"ool",
|
| 2731 |
+
"oom",
|
| 2732 |
+
"oon",
|
| 2733 |
+
"oop",
|
| 2734 |
+
"oor",
|
| 2735 |
+
"open",
|
| 2736 |
+
"opened",
|
| 2737 |
+
"ops",
|
| 2738 |
+
"optional",
|
| 2739 |
+
"or",
|
| 2740 |
+
"orange",
|
| 2741 |
+
"oranges",
|
| 2742 |
+
"ord",
|
| 2743 |
+
"order",
|
| 2744 |
+
"ore",
|
| 2745 |
+
"ore.",
|
| 2746 |
+
"oregano",
|
| 2747 |
+
"ork",
|
| 2748 |
+
"orm",
|
| 2749 |
+
"orn",
|
| 2750 |
+
"orp",
|
| 2751 |
+
"ors",
|
| 2752 |
+
"ort",
|
| 2753 |
+
"os.",
|
| 2754 |
+
"ose",
|
| 2755 |
+
"oss",
|
| 2756 |
+
"ost",
|
| 2757 |
+
"ote",
|
| 2758 |
+
"oth",
|
| 2759 |
+
"other",
|
| 2760 |
+
"ots",
|
| 2761 |
+
"ought",
|
| 2762 |
+
"ounce",
|
| 2763 |
+
"oup",
|
| 2764 |
+
"our",
|
| 2765 |
+
"ous",
|
| 2766 |
+
"out",
|
| 2767 |
+
"outside",
|
| 2768 |
+
"oux",
|
| 2769 |
+
"ov.",
|
| 2770 |
+
"oval",
|
| 2771 |
+
"ove",
|
| 2772 |
+
"oven",
|
| 2773 |
+
"ovenproof",
|
| 2774 |
+
"over",
|
| 2775 |
+
"overflowing",
|
| 2776 |
+
"overmix",
|
| 2777 |
+
"overnight",
|
| 2778 |
+
"owl",
|
| 2779 |
+
"own",
|
| 2780 |
+
"ows",
|
| 2781 |
+
"oya",
|
| 2782 |
+
"oyster",
|
| 2783 |
+
"oysters",
|
| 2784 |
+
"oz",
|
| 2785 |
+
"o\u2019clock",
|
| 2786 |
+
"o\u2019s",
|
| 2787 |
+
"p",
|
| 2788 |
+
"p.",
|
| 2789 |
+
"p.m",
|
| 2790 |
+
"p.m.",
|
| 2791 |
+
"pa",
|
| 2792 |
+
"pa.",
|
| 2793 |
+
"pack",
|
| 2794 |
+
"package",
|
| 2795 |
+
"packet",
|
| 2796 |
+
"pads",
|
| 2797 |
+
"palms",
|
| 2798 |
+
"pam",
|
| 2799 |
+
"pan",
|
| 2800 |
+
"pancakes",
|
| 2801 |
+
"paneer",
|
| 2802 |
+
"pans",
|
| 2803 |
+
"papaya",
|
| 2804 |
+
"paper",
|
| 2805 |
+
"paprika",
|
| 2806 |
+
"parchment",
|
| 2807 |
+
"parfait",
|
| 2808 |
+
"parlsey",
|
| 2809 |
+
"parmesan",
|
| 2810 |
+
"parsley",
|
| 2811 |
+
"parsnips",
|
| 2812 |
+
"part",
|
| 2813 |
+
"partially",
|
| 2814 |
+
"pass",
|
| 2815 |
+
"past",
|
| 2816 |
+
"pasta",
|
| 2817 |
+
"pasta,'Spaetzels",
|
| 2818 |
+
"pasta,'spaetzels",
|
| 2819 |
+
"paste",
|
| 2820 |
+
"pastry",
|
| 2821 |
+
"pat",
|
| 2822 |
+
"peaks",
|
| 2823 |
+
"peanut",
|
| 2824 |
+
"peanuts",
|
| 2825 |
+
"peas",
|
| 2826 |
+
"pecans",
|
| 2827 |
+
"ped",
|
| 2828 |
+
"peek",
|
| 2829 |
+
"peel",
|
| 2830 |
+
"pen",
|
| 2831 |
+
"people",
|
| 2832 |
+
"pepper",
|
| 2833 |
+
"peppercorns",
|
| 2834 |
+
"peppermint",
|
| 2835 |
+
"peppers",
|
| 2836 |
+
"per",
|
| 2837 |
+
"perforations",
|
| 2838 |
+
"permit",
|
| 2839 |
+
"personal",
|
| 2840 |
+
"personally",
|
| 2841 |
+
"pesto",
|
| 2842 |
+
"ph",
|
| 2843 |
+
"ph.d.",
|
| 2844 |
+
"picante",
|
| 2845 |
+
"pickle",
|
| 2846 |
+
"pickling",
|
| 2847 |
+
"pico",
|
| 2848 |
+
"pie",
|
| 2849 |
+
"piece",
|
| 2850 |
+
"pieces",
|
| 2851 |
+
"pin",
|
| 2852 |
+
"pinch",
|
| 2853 |
+
"pinching",
|
| 2854 |
+
"pine",
|
| 2855 |
+
"pineapple",
|
| 2856 |
+
"ping",
|
| 2857 |
+
"pink",
|
| 2858 |
+
"pint",
|
| 2859 |
+
"piping",
|
| 2860 |
+
"pitas",
|
| 2861 |
+
"place",
|
| 2862 |
+
"plain",
|
| 2863 |
+
"plastic",
|
| 2864 |
+
"plate",
|
| 2865 |
+
"plates",
|
| 2866 |
+
"platter",
|
| 2867 |
+
"ple",
|
| 2868 |
+
"plenty",
|
| 2869 |
+
"plus",
|
| 2870 |
+
"pm",
|
| 2871 |
+
"pods",
|
| 2872 |
+
"point",
|
| 2873 |
+
"points",
|
| 2874 |
+
"poke",
|
| 2875 |
+
"pong",
|
| 2876 |
+
"pop",
|
| 2877 |
+
"popcorn",
|
| 2878 |
+
"poppy",
|
| 2879 |
+
"por",
|
| 2880 |
+
"pork",
|
| 2881 |
+
"pot",
|
| 2882 |
+
"potato",
|
| 2883 |
+
"potatoe",
|
| 2884 |
+
"potatoes",
|
| 2885 |
+
"pound",
|
| 2886 |
+
"pour",
|
| 2887 |
+
"pouring",
|
| 2888 |
+
"powder",
|
| 2889 |
+
"powdered",
|
| 2890 |
+
"powered",
|
| 2891 |
+
"ppy",
|
| 2892 |
+
"pr.",
|
| 2893 |
+
"prawns",
|
| 2894 |
+
"pre",
|
| 2895 |
+
"precooked",
|
| 2896 |
+
"prefer",
|
| 2897 |
+
"preferably",
|
| 2898 |
+
"preference",
|
| 2899 |
+
"preferred",
|
| 2900 |
+
"preheat",
|
| 2901 |
+
"preheated",
|
| 2902 |
+
"prepare",
|
| 2903 |
+
"prepared",
|
| 2904 |
+
"preserves",
|
| 2905 |
+
"presoak",
|
| 2906 |
+
"press",
|
| 2907 |
+
"pressed",
|
| 2908 |
+
"pressing",
|
| 2909 |
+
"pressure",
|
| 2910 |
+
"prevent",
|
| 2911 |
+
"prior",
|
| 2912 |
+
"process",
|
| 2913 |
+
"processed",
|
| 2914 |
+
"processor",
|
| 2915 |
+
"produce",
|
| 2916 |
+
"prof",
|
| 2917 |
+
"prof.",
|
| 2918 |
+
"proper",
|
| 2919 |
+
"provolone",
|
| 2920 |
+
"pt.",
|
| 2921 |
+
"puas",
|
| 2922 |
+
"pucka",
|
| 2923 |
+
"pudding",
|
| 2924 |
+
"puff",
|
| 2925 |
+
"puffed",
|
| 2926 |
+
"puffy",
|
| 2927 |
+
"pulp",
|
| 2928 |
+
"pulverized",
|
| 2929 |
+
"pumpkin",
|
| 2930 |
+
"pumpkinmixture",
|
| 2931 |
+
"punch",
|
| 2932 |
+
"purchased",
|
| 2933 |
+
"puree",
|
| 2934 |
+
"purposes",
|
| 2935 |
+
"push",
|
| 2936 |
+
"put",
|
| 2937 |
+
"putting",
|
| 2938 |
+
"q",
|
| 2939 |
+
"q.",
|
| 2940 |
+
"qty",
|
| 2941 |
+
"quantity",
|
| 2942 |
+
"quart",
|
| 2943 |
+
"quarters",
|
| 2944 |
+
"quiche",
|
| 2945 |
+
"quick",
|
| 2946 |
+
"quickly",
|
| 2947 |
+
"r",
|
| 2948 |
+
"r.",
|
| 2949 |
+
"rab",
|
| 2950 |
+
"rabbit",
|
| 2951 |
+
"rack",
|
| 2952 |
+
"racks",
|
| 2953 |
+
"radishes",
|
| 2954 |
+
"raise",
|
| 2955 |
+
"raising",
|
| 2956 |
+
"raisins",
|
| 2957 |
+
"ral",
|
| 2958 |
+
"ram",
|
| 2959 |
+
"ran",
|
| 2960 |
+
"randal",
|
| 2961 |
+
"rap",
|
| 2962 |
+
"rare",
|
| 2963 |
+
"rasgullas",
|
| 2964 |
+
"raspberries",
|
| 2965 |
+
"rather",
|
| 2966 |
+
"ray",
|
| 2967 |
+
"razor",
|
| 2968 |
+
"rbs",
|
| 2969 |
+
"rce",
|
| 2970 |
+
"rch",
|
| 2971 |
+
"rds",
|
| 2972 |
+
"re",
|
| 2973 |
+
"re.",
|
| 2974 |
+
"rea",
|
| 2975 |
+
"reached",
|
| 2976 |
+
"reaches",
|
| 2977 |
+
"ready",
|
| 2978 |
+
"real",
|
| 2979 |
+
"really",
|
| 2980 |
+
"recipe",
|
| 2981 |
+
"rectangle",
|
| 2982 |
+
"rectangles",
|
| 2983 |
+
"rectangular",
|
| 2984 |
+
"red",
|
| 2985 |
+
"reduce",
|
| 2986 |
+
"reduced",
|
| 2987 |
+
"ree",
|
| 2988 |
+
"refill",
|
| 2989 |
+
"refregerated",
|
| 2990 |
+
"refridgerate",
|
| 2991 |
+
"refridgerator",
|
| 2992 |
+
"refrigerate",
|
| 2993 |
+
"refrigerated",
|
| 2994 |
+
"refrigerater",
|
| 2995 |
+
"refrigerator",
|
| 2996 |
+
"reheat",
|
| 2997 |
+
"reheated",
|
| 2998 |
+
"release",
|
| 2999 |
+
"relish",
|
| 3000 |
+
"remainder",
|
| 3001 |
+
"remaining",
|
| 3002 |
+
"remember",
|
| 3003 |
+
"remove",
|
| 3004 |
+
"removing",
|
| 3005 |
+
"rep",
|
| 3006 |
+
"rep.",
|
| 3007 |
+
"repeat",
|
| 3008 |
+
"replace",
|
| 3009 |
+
"request",
|
| 3010 |
+
"required",
|
| 3011 |
+
"res",
|
| 3012 |
+
"resealable",
|
| 3013 |
+
"resembles",
|
| 3014 |
+
"reserve",
|
| 3015 |
+
"reserved",
|
| 3016 |
+
"reserving",
|
| 3017 |
+
"rest",
|
| 3018 |
+
"restaurant",
|
| 3019 |
+
"resting",
|
| 3020 |
+
"retaining",
|
| 3021 |
+
"return",
|
| 3022 |
+
"returns",
|
| 3023 |
+
"rev",
|
| 3024 |
+
"rev.",
|
| 3025 |
+
"rew",
|
| 3026 |
+
"rge",
|
| 3027 |
+
"rhubarb",
|
| 3028 |
+
"ric",
|
| 3029 |
+
"rice",
|
| 3030 |
+
"ricotta",
|
| 3031 |
+
"rig",
|
| 3032 |
+
"right",
|
| 3033 |
+
"rim",
|
| 3034 |
+
"rind",
|
| 3035 |
+
"ring",
|
| 3036 |
+
"rings",
|
| 3037 |
+
"rinse",
|
| 3038 |
+
"rip",
|
| 3039 |
+
"rise",
|
| 3040 |
+
"riz",
|
| 3041 |
+
"rk.",
|
| 3042 |
+
"rks",
|
| 3043 |
+
"rls",
|
| 3044 |
+
"rly",
|
| 3045 |
+
"rms",
|
| 3046 |
+
"rns",
|
| 3047 |
+
"roast",
|
| 3048 |
+
"roasting",
|
| 3049 |
+
"rocking",
|
| 3050 |
+
"rof",
|
| 3051 |
+
"rol",
|
| 3052 |
+
"roll",
|
| 3053 |
+
"rolling",
|
| 3054 |
+
"rolls",
|
| 3055 |
+
"rom",
|
| 3056 |
+
"romaine",
|
| 3057 |
+
"ron",
|
| 3058 |
+
"room",
|
| 3059 |
+
"rop",
|
| 3060 |
+
"ros",
|
| 3061 |
+
"rose",
|
| 3062 |
+
"rosewater",
|
| 3063 |
+
"rot",
|
| 3064 |
+
"rotary",
|
| 3065 |
+
"round",
|
| 3066 |
+
"rounded",
|
| 3067 |
+
"rounds",
|
| 3068 |
+
"roux",
|
| 3069 |
+
"row",
|
| 3070 |
+
"rows",
|
| 3071 |
+
"rox",
|
| 3072 |
+
"rp.",
|
| 3073 |
+
"rry",
|
| 3074 |
+
"rs.",
|
| 3075 |
+
"rst",
|
| 3076 |
+
"rth",
|
| 3077 |
+
"rts",
|
| 3078 |
+
"rub",
|
| 3079 |
+
"running",
|
| 3080 |
+
"rup",
|
| 3081 |
+
"rve",
|
| 3082 |
+
"rye",
|
| 3083 |
+
"s",
|
| 3084 |
+
"s&p",
|
| 3085 |
+
"s&p.",
|
| 3086 |
+
"s's",
|
| 3087 |
+
"s.",
|
| 3088 |
+
"s.c.",
|
| 3089 |
+
"safe",
|
| 3090 |
+
"saffron",
|
| 3091 |
+
"sage",
|
| 3092 |
+
"sail",
|
| 3093 |
+
"salad",
|
| 3094 |
+
"salmon",
|
| 3095 |
+
"salsa",
|
| 3096 |
+
"salt",
|
| 3097 |
+
"salted",
|
| 3098 |
+
"same",
|
| 3099 |
+
"san",
|
| 3100 |
+
"sas",
|
| 3101 |
+
"sauce",
|
| 3102 |
+
"sauce----",
|
| 3103 |
+
"sauce--------------",
|
| 3104 |
+
"sauce:-",
|
| 3105 |
+
"saucepan",
|
| 3106 |
+
"sauerkraut",
|
| 3107 |
+
"sausage",
|
| 3108 |
+
"saute",
|
| 3109 |
+
"sautee",
|
| 3110 |
+
"sauteed",
|
| 3111 |
+
"saut\u00e9",
|
| 3112 |
+
"saut\u00e9ed",
|
| 3113 |
+
"scallions",
|
| 3114 |
+
"sco",
|
| 3115 |
+
"scones",
|
| 3116 |
+
"scoop",
|
| 3117 |
+
"scrape",
|
| 3118 |
+
"screw",
|
| 3119 |
+
"seal",
|
| 3120 |
+
"sealed",
|
| 3121 |
+
"seam",
|
| 3122 |
+
"seams",
|
| 3123 |
+
"sear",
|
| 3124 |
+
"season",
|
| 3125 |
+
"seasoned",
|
| 3126 |
+
"seasoning",
|
| 3127 |
+
"seasonings",
|
| 3128 |
+
"second",
|
| 3129 |
+
"seconds",
|
| 3130 |
+
"secure",
|
| 3131 |
+
"sed",
|
| 3132 |
+
"see",
|
| 3133 |
+
"seeds",
|
| 3134 |
+
"seems",
|
| 3135 |
+
"segments",
|
| 3136 |
+
"sel",
|
| 3137 |
+
"select",
|
| 3138 |
+
"selections",
|
| 3139 |
+
"self",
|
| 3140 |
+
"sen",
|
| 3141 |
+
"sen.",
|
| 3142 |
+
"sep",
|
| 3143 |
+
"sep.",
|
| 3144 |
+
"separate",
|
| 3145 |
+
"separates",
|
| 3146 |
+
"seperate",
|
| 3147 |
+
"sept",
|
| 3148 |
+
"sept.",
|
| 3149 |
+
"ser",
|
| 3150 |
+
"serve",
|
| 3151 |
+
"served",
|
| 3152 |
+
"serving",
|
| 3153 |
+
"servings",
|
| 3154 |
+
"ses",
|
| 3155 |
+
"sesame",
|
| 3156 |
+
"set",
|
| 3157 |
+
"setting",
|
| 3158 |
+
"several",
|
| 3159 |
+
"sey",
|
| 3160 |
+
"sh.",
|
| 3161 |
+
"sha",
|
| 3162 |
+
"shake",
|
| 3163 |
+
"shaker",
|
| 3164 |
+
"shall",
|
| 3165 |
+
"shallot",
|
| 3166 |
+
"shallow",
|
| 3167 |
+
"shanks",
|
| 3168 |
+
"shape",
|
| 3169 |
+
"shaped",
|
| 3170 |
+
"sharp",
|
| 3171 |
+
"she",
|
| 3172 |
+
"she's",
|
| 3173 |
+
"sheet",
|
| 3174 |
+
"sheets",
|
| 3175 |
+
"shell",
|
| 3176 |
+
"sherry",
|
| 3177 |
+
"she\u2019s",
|
| 3178 |
+
"shiny",
|
| 3179 |
+
"short",
|
| 3180 |
+
"shortening",
|
| 3181 |
+
"should",
|
| 3182 |
+
"shred",
|
| 3183 |
+
"shredded",
|
| 3184 |
+
"shredder",
|
| 3185 |
+
"shreds",
|
| 3186 |
+
"shrimp",
|
| 3187 |
+
"shy",
|
| 3188 |
+
"side",
|
| 3189 |
+
"sides",
|
| 3190 |
+
"sieve",
|
| 3191 |
+
"sift",
|
| 3192 |
+
"sil",
|
| 3193 |
+
"silver",
|
| 3194 |
+
"similarly",
|
| 3195 |
+
"simmer",
|
| 3196 |
+
"simmering",
|
| 3197 |
+
"single",
|
| 3198 |
+
"sink",
|
| 3199 |
+
"sinkful",
|
| 3200 |
+
"sit",
|
| 3201 |
+
"size",
|
| 3202 |
+
"sized",
|
| 3203 |
+
"skewer",
|
| 3204 |
+
"skewers",
|
| 3205 |
+
"skillet",
|
| 3206 |
+
"skillets",
|
| 3207 |
+
"skim",
|
| 3208 |
+
"skin",
|
| 3209 |
+
"skins",
|
| 3210 |
+
"sky",
|
| 3211 |
+
"slashes",
|
| 3212 |
+
"slaw",
|
| 3213 |
+
"slice",
|
| 3214 |
+
"sliced",
|
| 3215 |
+
"slices",
|
| 3216 |
+
"slightly",
|
| 3217 |
+
"slip",
|
| 3218 |
+
"slits",
|
| 3219 |
+
"slivered",
|
| 3220 |
+
"slivers",
|
| 3221 |
+
"slotted",
|
| 3222 |
+
"slow",
|
| 3223 |
+
"slowly",
|
| 3224 |
+
"slush",
|
| 3225 |
+
"slushy",
|
| 3226 |
+
"sly",
|
| 3227 |
+
"small",
|
| 3228 |
+
"smaller",
|
| 3229 |
+
"smoke",
|
| 3230 |
+
"smoldering",
|
| 3231 |
+
"smooth",
|
| 3232 |
+
"smorgasbord",
|
| 3233 |
+
"snip",
|
| 3234 |
+
"so",
|
| 3235 |
+
"soak",
|
| 3236 |
+
"soda",
|
| 3237 |
+
"sodas",
|
| 3238 |
+
"sofened",
|
| 3239 |
+
"soft",
|
| 3240 |
+
"soften",
|
| 3241 |
+
"softened",
|
| 3242 |
+
"solid",
|
| 3243 |
+
"solution",
|
| 3244 |
+
"some",
|
| 3245 |
+
"somethin",
|
| 3246 |
+
"somethin'",
|
| 3247 |
+
"something",
|
| 3248 |
+
"somethin\u2019",
|
| 3249 |
+
"son",
|
| 3250 |
+
"soon",
|
| 3251 |
+
"sor",
|
| 3252 |
+
"souffl\u00e9",
|
| 3253 |
+
"sound",
|
| 3254 |
+
"soup",
|
| 3255 |
+
"sour",
|
| 3256 |
+
"source",
|
| 3257 |
+
"soy",
|
| 3258 |
+
"space",
|
| 3259 |
+
"spacing",
|
| 3260 |
+
"spaetzels",
|
| 3261 |
+
"spaghetti",
|
| 3262 |
+
"spatula",
|
| 3263 |
+
"speed",
|
| 3264 |
+
"spices",
|
| 3265 |
+
"spike",
|
| 3266 |
+
"spinach",
|
| 3267 |
+
"split",
|
| 3268 |
+
"sponge",
|
| 3269 |
+
"spoon",
|
| 3270 |
+
"spoonful",
|
| 3271 |
+
"spoonfuls",
|
| 3272 |
+
"spooning",
|
| 3273 |
+
"spot",
|
| 3274 |
+
"spray",
|
| 3275 |
+
"sprayed",
|
| 3276 |
+
"spread",
|
| 3277 |
+
"spreading",
|
| 3278 |
+
"sprig",
|
| 3279 |
+
"spring",
|
| 3280 |
+
"springform",
|
| 3281 |
+
"springs",
|
| 3282 |
+
"sprinkle",
|
| 3283 |
+
"sprinkled",
|
| 3284 |
+
"spritz",
|
| 3285 |
+
"sprouts",
|
| 3286 |
+
"spy",
|
| 3287 |
+
"square",
|
| 3288 |
+
"squares",
|
| 3289 |
+
"squash",
|
| 3290 |
+
"squeeze",
|
| 3291 |
+
"squeezing",
|
| 3292 |
+
"srs",
|
| 3293 |
+
"ss.",
|
| 3294 |
+
"st",
|
| 3295 |
+
"st.",
|
| 3296 |
+
"sta",
|
| 3297 |
+
"stage",
|
| 3298 |
+
"stainless",
|
| 3299 |
+
"stalks",
|
| 3300 |
+
"stand",
|
| 3301 |
+
"starch",
|
| 3302 |
+
"start",
|
| 3303 |
+
"starting",
|
| 3304 |
+
"starts",
|
| 3305 |
+
"stay",
|
| 3306 |
+
"ste",
|
| 3307 |
+
"steaks",
|
| 3308 |
+
"steam",
|
| 3309 |
+
"steamer",
|
| 3310 |
+
"steel",
|
| 3311 |
+
"stem",
|
| 3312 |
+
"stems",
|
| 3313 |
+
"sterilised",
|
| 3314 |
+
"stew",
|
| 3315 |
+
"stick",
|
| 3316 |
+
"stick\\",
|
| 3317 |
+
"sticking",
|
| 3318 |
+
"sticks",
|
| 3319 |
+
"stiff",
|
| 3320 |
+
"stiffly",
|
| 3321 |
+
"still",
|
| 3322 |
+
"stir",
|
| 3323 |
+
"stirrers",
|
| 3324 |
+
"stirring",
|
| 3325 |
+
"sto",
|
| 3326 |
+
"stock",
|
| 3327 |
+
"stone",
|
| 3328 |
+
"store",
|
| 3329 |
+
"stove",
|
| 3330 |
+
"stovetop",
|
| 3331 |
+
"strain",
|
| 3332 |
+
"strawberries",
|
| 3333 |
+
"strawberry",
|
| 3334 |
+
"streaks",
|
| 3335 |
+
"stretch",
|
| 3336 |
+
"string",
|
| 3337 |
+
"strip",
|
| 3338 |
+
"strips",
|
| 3339 |
+
"strong",
|
| 3340 |
+
"strudel",
|
| 3341 |
+
"strudels",
|
| 3342 |
+
"sts",
|
| 3343 |
+
"stuff",
|
| 3344 |
+
"sty",
|
| 3345 |
+
"style",
|
| 3346 |
+
"submerged",
|
| 3347 |
+
"substitute",
|
| 3348 |
+
"substituted",
|
| 3349 |
+
"such",
|
| 3350 |
+
"suey",
|
| 3351 |
+
"sufficiently",
|
| 3352 |
+
"sugar",
|
| 3353 |
+
"sugared",
|
| 3354 |
+
"sugars",
|
| 3355 |
+
"suggested",
|
| 3356 |
+
"suggestions",
|
| 3357 |
+
"sundried",
|
| 3358 |
+
"sure",
|
| 3359 |
+
"surface",
|
| 3360 |
+
"surprisingly",
|
| 3361 |
+
"sweet",
|
| 3362 |
+
"sweeten",
|
| 3363 |
+
"sweetened",
|
| 3364 |
+
"sweetness",
|
| 3365 |
+
"sweettened",
|
| 3366 |
+
"swiss",
|
| 3367 |
+
"syrup",
|
| 3368 |
+
"s\u2019s",
|
| 3369 |
+
"t",
|
| 3370 |
+
"t'n",
|
| 3371 |
+
"t's",
|
| 3372 |
+
"t.",
|
| 3373 |
+
"ta",
|
| 3374 |
+
"tabasco",
|
| 3375 |
+
"tabelspoonfuls",
|
| 3376 |
+
"table",
|
| 3377 |
+
"tablespoon",
|
| 3378 |
+
"tablespoons",
|
| 3379 |
+
"take",
|
| 3380 |
+
"taken",
|
| 3381 |
+
"taking",
|
| 3382 |
+
"tal",
|
| 3383 |
+
"tamari",
|
| 3384 |
+
"tap",
|
| 3385 |
+
"tapped",
|
| 3386 |
+
"tar",
|
| 3387 |
+
"tartar",
|
| 3388 |
+
"tas",
|
| 3389 |
+
"taste",
|
| 3390 |
+
"tay",
|
| 3391 |
+
"tbls",
|
| 3392 |
+
"tbs",
|
| 3393 |
+
"tbsp",
|
| 3394 |
+
"tbsp.vegetable",
|
| 3395 |
+
"tch",
|
| 3396 |
+
"td.",
|
| 3397 |
+
"tea",
|
| 3398 |
+
"tear",
|
| 3399 |
+
"teaspoon",
|
| 3400 |
+
"teaspoons",
|
| 3401 |
+
"ted",
|
| 3402 |
+
"tee",
|
| 3403 |
+
"tem",
|
| 3404 |
+
"temp",
|
| 3405 |
+
"temperature",
|
| 3406 |
+
"temporarily",
|
| 3407 |
+
"ten",
|
| 3408 |
+
"tender",
|
| 3409 |
+
"tender-",
|
| 3410 |
+
"tenderizing",
|
| 3411 |
+
"tenderloin",
|
| 3412 |
+
"tenn",
|
| 3413 |
+
"tenn.",
|
| 3414 |
+
"tequilla",
|
| 3415 |
+
"ter",
|
| 3416 |
+
"tes",
|
| 3417 |
+
"test",
|
| 3418 |
+
"tew",
|
| 3419 |
+
"texture",
|
| 3420 |
+
"textured",
|
| 3421 |
+
"th",
|
| 3422 |
+
"th\\",
|
| 3423 |
+
"than",
|
| 3424 |
+
"that",
|
| 3425 |
+
"that's",
|
| 3426 |
+
"that\u2019s",
|
| 3427 |
+
"thaw",
|
| 3428 |
+
"thawed",
|
| 3429 |
+
"the",
|
| 3430 |
+
"their",
|
| 3431 |
+
"them",
|
| 3432 |
+
"then",
|
| 3433 |
+
"there",
|
| 3434 |
+
"there's",
|
| 3435 |
+
"there\u2019s",
|
| 3436 |
+
"thermometer",
|
| 3437 |
+
"these",
|
| 3438 |
+
"these's",
|
| 3439 |
+
"these\u2019s",
|
| 3440 |
+
"they",
|
| 3441 |
+
"thick",
|
| 3442 |
+
"thicken",
|
| 3443 |
+
"thickened",
|
| 3444 |
+
"thickens",
|
| 3445 |
+
"thicker",
|
| 3446 |
+
"thickness",
|
| 3447 |
+
"thighs",
|
| 3448 |
+
"thin",
|
| 3449 |
+
"things",
|
| 3450 |
+
"think",
|
| 3451 |
+
"thinly",
|
| 3452 |
+
"third",
|
| 3453 |
+
"thirds",
|
| 3454 |
+
"this",
|
| 3455 |
+
"this's",
|
| 3456 |
+
"this\u2019s",
|
| 3457 |
+
"thoroughly",
|
| 3458 |
+
"those",
|
| 3459 |
+
"those's",
|
| 3460 |
+
"those\u2019s",
|
| 3461 |
+
"thread",
|
| 3462 |
+
"threads",
|
| 3463 |
+
"three",
|
| 3464 |
+
"through",
|
| 3465 |
+
"ths",
|
| 3466 |
+
"thy",
|
| 3467 |
+
"thyme",
|
| 3468 |
+
"tic",
|
| 3469 |
+
"tight",
|
| 3470 |
+
"tightly",
|
| 3471 |
+
"til",
|
| 3472 |
+
"till",
|
| 3473 |
+
"time",
|
| 3474 |
+
"timer",
|
| 3475 |
+
"times",
|
| 3476 |
+
"tin",
|
| 3477 |
+
"tins",
|
| 3478 |
+
"tiny",
|
| 3479 |
+
"tir",
|
| 3480 |
+
"tle",
|
| 3481 |
+
"tly",
|
| 3482 |
+
"to",
|
| 3483 |
+
"toast",
|
| 3484 |
+
"toasted",
|
| 3485 |
+
"toe",
|
| 3486 |
+
"tofu",
|
| 3487 |
+
"together",
|
| 3488 |
+
"tom",
|
| 3489 |
+
"tomato",
|
| 3490 |
+
"tomatoes",
|
| 3491 |
+
"tongs",
|
| 3492 |
+
"too",
|
| 3493 |
+
"toothpick",
|
| 3494 |
+
"top",
|
| 3495 |
+
"topped",
|
| 3496 |
+
"topping",
|
| 3497 |
+
"tops",
|
| 3498 |
+
"tor",
|
| 3499 |
+
"tortilla",
|
| 3500 |
+
"tortillas",
|
| 3501 |
+
"toss",
|
| 3502 |
+
"tossed",
|
| 3503 |
+
"tossing",
|
| 3504 |
+
"totally",
|
| 3505 |
+
"touch",
|
| 3506 |
+
"touching",
|
| 3507 |
+
"toward",
|
| 3508 |
+
"towel",
|
| 3509 |
+
"toweling",
|
| 3510 |
+
"towels",
|
| 3511 |
+
"towles",
|
| 3512 |
+
"tra",
|
| 3513 |
+
"traditional",
|
| 3514 |
+
"transfer",
|
| 3515 |
+
"translucent",
|
| 3516 |
+
"transparent",
|
| 3517 |
+
"tray",
|
| 3518 |
+
"tre",
|
| 3519 |
+
"treat",
|
| 3520 |
+
"triangles",
|
| 3521 |
+
"tried",
|
| 3522 |
+
"trim",
|
| 3523 |
+
"tro",
|
| 3524 |
+
"trouble",
|
| 3525 |
+
"try",
|
| 3526 |
+
"tsp",
|
| 3527 |
+
"tta",
|
| 3528 |
+
"tti",
|
| 3529 |
+
"tto",
|
| 3530 |
+
"tub",
|
| 3531 |
+
"tucking",
|
| 3532 |
+
"turkey",
|
| 3533 |
+
"turn",
|
| 3534 |
+
"turning",
|
| 3535 |
+
"twice",
|
| 3536 |
+
"twin",
|
| 3537 |
+
"twirling",
|
| 3538 |
+
"twist",
|
| 3539 |
+
"two",
|
| 3540 |
+
"t\u2019s",
|
| 3541 |
+
"u",
|
| 3542 |
+
"u.",
|
| 3543 |
+
"ual",
|
| 3544 |
+
"uas",
|
| 3545 |
+
"ube",
|
| 3546 |
+
"uce",
|
| 3547 |
+
"uch",
|
| 3548 |
+
"ude",
|
| 3549 |
+
"uer",
|
| 3550 |
+
"uey",
|
| 3551 |
+
"uff",
|
| 3552 |
+
"ug.",
|
| 3553 |
+
"ugh",
|
| 3554 |
+
"ugs",
|
| 3555 |
+
"uid",
|
| 3556 |
+
"uit",
|
| 3557 |
+
"uki",
|
| 3558 |
+
"ul.",
|
| 3559 |
+
"ula",
|
| 3560 |
+
"uld",
|
| 3561 |
+
"ulk",
|
| 3562 |
+
"ull",
|
| 3563 |
+
"ulp",
|
| 3564 |
+
"uls",
|
| 3565 |
+
"umb",
|
| 3566 |
+
"ume",
|
| 3567 |
+
"un.",
|
| 3568 |
+
"unbaked",
|
| 3569 |
+
"uncovered",
|
| 3570 |
+
"und",
|
| 3571 |
+
"under",
|
| 3572 |
+
"underdone",
|
| 3573 |
+
"underneath",
|
| 3574 |
+
"undrained",
|
| 3575 |
+
"ung",
|
| 3576 |
+
"ungreased",
|
| 3577 |
+
"uniform",
|
| 3578 |
+
"unroll",
|
| 3579 |
+
"uns",
|
| 3580 |
+
"unsalted",
|
| 3581 |
+
"unt",
|
| 3582 |
+
"until",
|
| 3583 |
+
"untillightly",
|
| 3584 |
+
"unto",
|
| 3585 |
+
"up",
|
| 3586 |
+
"upright",
|
| 3587 |
+
"ups",
|
| 3588 |
+
"urb",
|
| 3589 |
+
"ure",
|
| 3590 |
+
"urn",
|
| 3591 |
+
"urs",
|
| 3592 |
+
"urt",
|
| 3593 |
+
"us",
|
| 3594 |
+
"use",
|
| 3595 |
+
"used",
|
| 3596 |
+
"user",
|
| 3597 |
+
"ush",
|
| 3598 |
+
"using",
|
| 3599 |
+
"ust",
|
| 3600 |
+
"usual",
|
| 3601 |
+
"usually",
|
| 3602 |
+
"ut8",
|
| 3603 |
+
"ute",
|
| 3604 |
+
"uts",
|
| 3605 |
+
"ut\u00e9",
|
| 3606 |
+
"v",
|
| 3607 |
+
"v.",
|
| 3608 |
+
"v.s",
|
| 3609 |
+
"v.s.",
|
| 3610 |
+
"v.v",
|
| 3611 |
+
"v_v",
|
| 3612 |
+
"va",
|
| 3613 |
+
"va.",
|
| 3614 |
+
"val",
|
| 3615 |
+
"vanilla",
|
| 3616 |
+
"variation",
|
| 3617 |
+
"vark",
|
| 3618 |
+
"ve",
|
| 3619 |
+
"ved",
|
| 3620 |
+
"vegetable",
|
| 3621 |
+
"vegetables",
|
| 3622 |
+
"veggie",
|
| 3623 |
+
"veggies",
|
| 3624 |
+
"vegit",
|
| 3625 |
+
"ven",
|
| 3626 |
+
"ver",
|
| 3627 |
+
"very",
|
| 3628 |
+
"ves",
|
| 3629 |
+
"vessel",
|
| 3630 |
+
"vin",
|
| 3631 |
+
"vinegar",
|
| 3632 |
+
"volume",
|
| 3633 |
+
"vor",
|
| 3634 |
+
"vs",
|
| 3635 |
+
"vs.",
|
| 3636 |
+
"w",
|
| 3637 |
+
"w'et",
|
| 3638 |
+
"w's",
|
| 3639 |
+
"w.",
|
| 3640 |
+
"w/",
|
| 3641 |
+
"w/o",
|
| 3642 |
+
"walnut",
|
| 3643 |
+
"walnuts",
|
| 3644 |
+
"wanganui",
|
| 3645 |
+
"want",
|
| 3646 |
+
"warm",
|
| 3647 |
+
"warmed",
|
| 3648 |
+
"was",
|
| 3649 |
+
"wash",
|
| 3650 |
+
"wash.",
|
| 3651 |
+
"water",
|
| 3652 |
+
"wax",
|
| 3653 |
+
"waxed",
|
| 3654 |
+
"way",
|
| 3655 |
+
"we",
|
| 3656 |
+
"wed",
|
| 3657 |
+
"wedge",
|
| 3658 |
+
"weed",
|
| 3659 |
+
"week",
|
| 3660 |
+
"weeks",
|
| 3661 |
+
"wel",
|
| 3662 |
+
"well",
|
| 3663 |
+
"wer",
|
| 3664 |
+
"were",
|
| 3665 |
+
"wet",
|
| 3666 |
+
"what",
|
| 3667 |
+
"what's",
|
| 3668 |
+
"what\u2019s",
|
| 3669 |
+
"wheat",
|
| 3670 |
+
"when",
|
| 3671 |
+
"when's",
|
| 3672 |
+
"when\u2019s",
|
| 3673 |
+
"where",
|
| 3674 |
+
"where's",
|
| 3675 |
+
"where\u2019s",
|
| 3676 |
+
"while",
|
| 3677 |
+
"whip",
|
| 3678 |
+
"whipped",
|
| 3679 |
+
"whipping",
|
| 3680 |
+
"whir",
|
| 3681 |
+
"whisk",
|
| 3682 |
+
"whisking",
|
| 3683 |
+
"whisky",
|
| 3684 |
+
"white",
|
| 3685 |
+
"whites",
|
| 3686 |
+
"who",
|
| 3687 |
+
"who's",
|
| 3688 |
+
"whole",
|
| 3689 |
+
"who\u2019s",
|
| 3690 |
+
"why",
|
| 3691 |
+
"why's",
|
| 3692 |
+
"why\u2019s",
|
| 3693 |
+
"wide",
|
| 3694 |
+
"wife",
|
| 3695 |
+
"will",
|
| 3696 |
+
"wilt",
|
| 3697 |
+
"wilted",
|
| 3698 |
+
"win",
|
| 3699 |
+
"wine",
|
| 3700 |
+
"wipe",
|
| 3701 |
+
"wire",
|
| 3702 |
+
"wis",
|
| 3703 |
+
"wis.",
|
| 3704 |
+
"wish",
|
| 3705 |
+
"wished",
|
| 3706 |
+
"with",
|
| 3707 |
+
"with\\",
|
| 3708 |
+
"within",
|
| 3709 |
+
"without",
|
| 3710 |
+
"wly",
|
| 3711 |
+
"wn-",
|
| 3712 |
+
"wns",
|
| 3713 |
+
"wo",
|
| 3714 |
+
"wok",
|
| 3715 |
+
"wonders",
|
| 3716 |
+
"wooden",
|
| 3717 |
+
"worcestershire",
|
| 3718 |
+
"work",
|
| 3719 |
+
"working",
|
| 3720 |
+
"works",
|
| 3721 |
+
"worms",
|
| 3722 |
+
"worth",
|
| 3723 |
+
"would",
|
| 3724 |
+
"wrap",
|
| 3725 |
+
"wrung",
|
| 3726 |
+
"w\u2019s",
|
| 3727 |
+
"x",
|
| 3728 |
+
"x&x",
|
| 3729 |
+
"x&x.",
|
| 3730 |
+
"x'",
|
| 3731 |
+
"x'x",
|
| 3732 |
+
"x'xx",
|
| 3733 |
+
"x'xxxx",
|
| 3734 |
+
"x.",
|
| 3735 |
+
"x.X",
|
| 3736 |
+
"x.d",
|
| 3737 |
+
"x.x",
|
| 3738 |
+
"x.x.",
|
| 3739 |
+
"x/",
|
| 3740 |
+
"x/x",
|
| 3741 |
+
"x12\\",
|
| 3742 |
+
"x13",
|
| 3743 |
+
"x15",
|
| 3744 |
+
"x16",
|
| 3745 |
+
"x2\\",
|
| 3746 |
+
"x3\\",
|
| 3747 |
+
"x9\\",
|
| 3748 |
+
"xD",
|
| 3749 |
+
"xDD",
|
| 3750 |
+
"xX",
|
| 3751 |
+
"xXX",
|
| 3752 |
+
"x_X",
|
| 3753 |
+
"x_d",
|
| 3754 |
+
"x_x",
|
| 3755 |
+
"xd",
|
| 3756 |
+
"xd\\",
|
| 3757 |
+
"xdd",
|
| 3758 |
+
"xdd\\",
|
| 3759 |
+
"xed",
|
| 3760 |
+
"xer",
|
| 3761 |
+
"xx",
|
| 3762 |
+
"xx'",
|
| 3763 |
+
"xx'x",
|
| 3764 |
+
"xx'xx",
|
| 3765 |
+
"xx-",
|
| 3766 |
+
"xx.",
|
| 3767 |
+
"xx\\",
|
| 3768 |
+
"xxx",
|
| 3769 |
+
"xxx'x",
|
| 3770 |
+
"xxx'xx",
|
| 3771 |
+
"xxx/xx",
|
| 3772 |
+
"xxx\\",
|
| 3773 |
+
"xxxx",
|
| 3774 |
+
"xxxx'",
|
| 3775 |
+
"xxxx'x",
|
| 3776 |
+
"xxxx'xxxx",
|
| 3777 |
+
"xxxx,'Xxxxx",
|
| 3778 |
+
"xxxx,'xxxx",
|
| 3779 |
+
"xxxx-",
|
| 3780 |
+
"xxxx----",
|
| 3781 |
+
"xxxx.xxxx",
|
| 3782 |
+
"xxxx:-",
|
| 3783 |
+
"xxxx@",
|
| 3784 |
+
"xxxx\\",
|
| 3785 |
+
"xxxxd",
|
| 3786 |
+
"xxxx\u2019",
|
| 3787 |
+
"xxxx\u2019x",
|
| 3788 |
+
"xxx\u2019x",
|
| 3789 |
+
"xx\u2019",
|
| 3790 |
+
"xx\u2019x",
|
| 3791 |
+
"xx\u2019xx",
|
| 3792 |
+
"x\u2019",
|
| 3793 |
+
"x\u2019x",
|
| 3794 |
+
"x\u2019xxxx",
|
| 3795 |
+
"x\ufe35x",
|
| 3796 |
+
"y",
|
| 3797 |
+
"y'",
|
| 3798 |
+
"y's",
|
| 3799 |
+
"y.",
|
| 3800 |
+
"years",
|
| 3801 |
+
"yeast",
|
| 3802 |
+
"yed",
|
| 3803 |
+
"yellow",
|
| 3804 |
+
"yemiser",
|
| 3805 |
+
"yer",
|
| 3806 |
+
"yes",
|
| 3807 |
+
"yield",
|
| 3808 |
+
"yle",
|
| 3809 |
+
"yme",
|
| 3810 |
+
"yoghurt",
|
| 3811 |
+
"yogurt",
|
| 3812 |
+
"yolks",
|
| 3813 |
+
"you",
|
| 3814 |
+
"your",
|
| 3815 |
+
"y\u2019",
|
| 3816 |
+
"y\u2019s",
|
| 3817 |
+
"z",
|
| 3818 |
+
"z.",
|
| 3819 |
+
"zealand",
|
| 3820 |
+
"zed",
|
| 3821 |
+
"zen",
|
| 3822 |
+
"zer",
|
| 3823 |
+
"zes",
|
| 3824 |
+
"zest",
|
| 3825 |
+
"zip",
|
| 3826 |
+
"ziploc",
|
| 3827 |
+
"zle",
|
| 3828 |
+
"zor",
|
| 3829 |
+
"zucchini",
|
| 3830 |
+
"|",
|
| 3831 |
+
"}",
|
| 3832 |
+
"~",
|
| 3833 |
+
"~15",
|
| 3834 |
+
"~2",
|
| 3835 |
+
"~d",
|
| 3836 |
+
"~dd",
|
| 3837 |
+
"\u00a0",
|
| 3838 |
+
"\u00ac",
|
| 3839 |
+
"\u00ac_\u00ac",
|
| 3840 |
+
"\u00af",
|
| 3841 |
+
"\u00af\\(x)/\u00af",
|
| 3842 |
+
"\u00af\\(\u30c4)/\u00af",
|
| 3843 |
+
"\u00b0",
|
| 3844 |
+
"\u00b0C.",
|
| 3845 |
+
"\u00b0F.",
|
| 3846 |
+
"\u00b0K.",
|
| 3847 |
+
"\u00b0X.",
|
| 3848 |
+
"\u00b0c.",
|
| 3849 |
+
"\u00b0f.",
|
| 3850 |
+
"\u00b0k.",
|
| 3851 |
+
"\u00b0x.",
|
| 3852 |
+
"\u00bd",
|
| 3853 |
+
"\u00bd-quart",
|
| 3854 |
+
"\u00bd-xxxx",
|
| 3855 |
+
"\u00e4",
|
| 3856 |
+
"\u00e4.",
|
| 3857 |
+
"\u00e9ed",
|
| 3858 |
+
"\u00f6",
|
| 3859 |
+
"\u00f6.",
|
| 3860 |
+
"\u00fc",
|
| 3861 |
+
"\u00fc.",
|
| 3862 |
+
"\u0ca0",
|
| 3863 |
+
"\u0ca0_\u0ca0",
|
| 3864 |
+
"\u0ca0\ufe35\u0ca0",
|
| 3865 |
+
"\u2014",
|
| 3866 |
+
"\u2018",
|
| 3867 |
+
"\u2018S",
|
| 3868 |
+
"\u2018X",
|
| 3869 |
+
"\u2018s",
|
| 3870 |
+
"\u2018x",
|
| 3871 |
+
"\u2019",
|
| 3872 |
+
"\u2019-(",
|
| 3873 |
+
"\u2019-)",
|
| 3874 |
+
"\u2019Cause",
|
| 3875 |
+
"\u2019Cos",
|
| 3876 |
+
"\u2019Coz",
|
| 3877 |
+
"\u2019Cuz",
|
| 3878 |
+
"\u2019S",
|
| 3879 |
+
"\u2019X",
|
| 3880 |
+
"\u2019Xxx",
|
| 3881 |
+
"\u2019Xxxxx",
|
| 3882 |
+
"\u2019am",
|
| 3883 |
+
"\u2019bout",
|
| 3884 |
+
"\u2019cause",
|
| 3885 |
+
"\u2019cos",
|
| 3886 |
+
"\u2019coz",
|
| 3887 |
+
"\u2019cuz",
|
| 3888 |
+
"\u2019d",
|
| 3889 |
+
"\u2019em",
|
| 3890 |
+
"\u2019ll",
|
| 3891 |
+
"\u2019m",
|
| 3892 |
+
"\u2019nuff",
|
| 3893 |
+
"\u2019re",
|
| 3894 |
+
"\u2019s",
|
| 3895 |
+
"\u2019ve",
|
| 3896 |
+
"\u2019x",
|
| 3897 |
+
"\u2019xx",
|
| 3898 |
+
"\u2019xxx",
|
| 3899 |
+
"\u2019xxxx",
|
| 3900 |
+
"\u2019y",
|
| 3901 |
+
"\u2019\u2019",
|
| 3902 |
+
"\u2022",
|
| 3903 |
+
"\u2022Variations",
|
| 3904 |
+
"\u2022Xxxxx",
|
| 3905 |
+
"\u2022variations",
|
| 3906 |
+
"\u2022xxxx",
|
| 3907 |
+
"\u2501",
|
| 3908 |
+
"\u253b",
|
| 3909 |
+
"\u253b\u2501\u253b",
|
| 3910 |
+
"\u256f",
|
| 3911 |
+
"\u25a1",
|
| 3912 |
+
"\ufe35",
|
| 3913 |
+
"\uff09"
|
| 3914 |
+
]
|
vocab/vectors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:14772b683e726436d5948ad3fff2b43d036ef2ebbe3458aafed6004e05a40706
|
| 3 |
+
size 128
|
vocab/vectors.cfg
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"mode":"default"
|
| 3 |
+
}
|