alicenkbaytop
commited on
Commit
•
c4e59a7
1
Parent(s):
3071c6b
Upload 13 files
Browse files- .gitattributes +1 -0
- config.cfg +146 -0
- meta.json +70 -0
- ner/cfg +13 -0
- ner/model +0 -0
- ner/moves +1 -0
- tokenizer +3 -0
- transformer/cfg +3 -0
- transformer/model +3 -0
- vocab/key2row +1 -0
- vocab/lookups.bin +3 -0
- vocab/strings.json +1682 -0
- vocab/vectors +0 -0
- vocab/vectors.cfg +3 -0
.gitattributes
CHANGED
@@ -32,3 +32,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
32 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
33 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
34 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
32 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
33 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
34 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
35 |
+
transformer/model filter=lfs diff=lfs merge=lfs -text
|
config.cfg
ADDED
@@ -0,0 +1,146 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[paths]
|
2 |
+
train = "training_data.spacy"
|
3 |
+
dev = "training_data.spacy"
|
4 |
+
vectors = null
|
5 |
+
init_tok2vec = null
|
6 |
+
|
7 |
+
[system]
|
8 |
+
gpu_allocator = "pytorch"
|
9 |
+
seed = 0
|
10 |
+
|
11 |
+
[nlp]
|
12 |
+
lang = "en"
|
13 |
+
pipeline = ["transformer","ner"]
|
14 |
+
batch_size = 128
|
15 |
+
disabled = []
|
16 |
+
before_creation = null
|
17 |
+
after_creation = null
|
18 |
+
after_pipeline_creation = null
|
19 |
+
tokenizer = {"@tokenizers":"spacy.Tokenizer.v1"}
|
20 |
+
|
21 |
+
[components]
|
22 |
+
|
23 |
+
[components.ner]
|
24 |
+
factory = "ner"
|
25 |
+
incorrect_spans_key = null
|
26 |
+
moves = null
|
27 |
+
scorer = {"@scorers":"spacy.ner_scorer.v1"}
|
28 |
+
update_with_oracle_cut_size = 100
|
29 |
+
|
30 |
+
[components.ner.model]
|
31 |
+
@architectures = "spacy.TransitionBasedParser.v2"
|
32 |
+
state_type = "ner"
|
33 |
+
extra_state_tokens = false
|
34 |
+
hidden_width = 64
|
35 |
+
maxout_pieces = 2
|
36 |
+
use_upper = false
|
37 |
+
nO = null
|
38 |
+
|
39 |
+
[components.ner.model.tok2vec]
|
40 |
+
@architectures = "spacy-transformers.TransformerListener.v1"
|
41 |
+
grad_factor = 1.0
|
42 |
+
pooling = {"@layers":"reduce_mean.v1"}
|
43 |
+
upstream = "*"
|
44 |
+
|
45 |
+
[components.transformer]
|
46 |
+
factory = "transformer"
|
47 |
+
max_batch_items = 4096
|
48 |
+
set_extra_annotations = {"@annotation_setters":"spacy-transformers.null_annotation_setter.v1"}
|
49 |
+
|
50 |
+
[components.transformer.model]
|
51 |
+
@architectures = "spacy-transformers.TransformerModel.v3"
|
52 |
+
name = "roberta-base"
|
53 |
+
mixed_precision = false
|
54 |
+
|
55 |
+
[components.transformer.model.get_spans]
|
56 |
+
@span_getters = "spacy-transformers.strided_spans.v1"
|
57 |
+
window = 128
|
58 |
+
stride = 96
|
59 |
+
|
60 |
+
[components.transformer.model.grad_scaler_config]
|
61 |
+
|
62 |
+
[components.transformer.model.tokenizer_config]
|
63 |
+
use_fast = true
|
64 |
+
|
65 |
+
[components.transformer.model.transformer_config]
|
66 |
+
|
67 |
+
[corpora]
|
68 |
+
|
69 |
+
[corpora.dev]
|
70 |
+
@readers = "spacy.Corpus.v1"
|
71 |
+
path = ${paths.dev}
|
72 |
+
max_length = 0
|
73 |
+
gold_preproc = false
|
74 |
+
limit = 0
|
75 |
+
augmenter = null
|
76 |
+
|
77 |
+
[corpora.train]
|
78 |
+
@readers = "spacy.Corpus.v1"
|
79 |
+
path = ${paths.train}
|
80 |
+
max_length = 0
|
81 |
+
gold_preproc = false
|
82 |
+
limit = 0
|
83 |
+
augmenter = null
|
84 |
+
|
85 |
+
[training]
|
86 |
+
accumulate_gradient = 3
|
87 |
+
dev_corpus = "corpora.dev"
|
88 |
+
train_corpus = "corpora.train"
|
89 |
+
seed = ${system.seed}
|
90 |
+
gpu_allocator = ${system.gpu_allocator}
|
91 |
+
dropout = 0.1
|
92 |
+
patience = 1600
|
93 |
+
max_epochs = 0
|
94 |
+
max_steps = 20000
|
95 |
+
eval_frequency = 200
|
96 |
+
frozen_components = []
|
97 |
+
annotating_components = []
|
98 |
+
before_to_disk = null
|
99 |
+
before_update = null
|
100 |
+
|
101 |
+
[training.batcher]
|
102 |
+
@batchers = "spacy.batch_by_padded.v1"
|
103 |
+
discard_oversize = true
|
104 |
+
size = 2000
|
105 |
+
buffer = 256
|
106 |
+
get_length = null
|
107 |
+
|
108 |
+
[training.logger]
|
109 |
+
@loggers = "spacy.ConsoleLogger.v1"
|
110 |
+
progress_bar = false
|
111 |
+
|
112 |
+
[training.optimizer]
|
113 |
+
@optimizers = "Adam.v1"
|
114 |
+
beta1 = 0.9
|
115 |
+
beta2 = 0.999
|
116 |
+
L2_is_weight_decay = true
|
117 |
+
L2 = 0.01
|
118 |
+
grad_clip = 1.0
|
119 |
+
use_averages = false
|
120 |
+
eps = 0.00000001
|
121 |
+
|
122 |
+
[training.optimizer.learn_rate]
|
123 |
+
@schedules = "warmup_linear.v1"
|
124 |
+
warmup_steps = 250
|
125 |
+
total_steps = 20000
|
126 |
+
initial_rate = 0.00005
|
127 |
+
|
128 |
+
[training.score_weights]
|
129 |
+
ents_f = 1.0
|
130 |
+
ents_p = 0.0
|
131 |
+
ents_r = 0.0
|
132 |
+
ents_per_type = null
|
133 |
+
|
134 |
+
[pretraining]
|
135 |
+
|
136 |
+
[initialize]
|
137 |
+
vectors = ${paths.vectors}
|
138 |
+
init_tok2vec = ${paths.init_tok2vec}
|
139 |
+
vocab_data = null
|
140 |
+
lookups = null
|
141 |
+
before_init = null
|
142 |
+
after_init = null
|
143 |
+
|
144 |
+
[initialize.components]
|
145 |
+
|
146 |
+
[initialize.tokenizer]
|
meta.json
ADDED
@@ -0,0 +1,70 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"lang":"en",
|
3 |
+
"name":"pipeline",
|
4 |
+
"version":"0.0.0",
|
5 |
+
"spacy_version":">=3.5.1,<3.6.0",
|
6 |
+
"description":"",
|
7 |
+
"author":"",
|
8 |
+
"email":"",
|
9 |
+
"url":"",
|
10 |
+
"license":"",
|
11 |
+
"spacy_git_version":"Unknown",
|
12 |
+
"vectors":{
|
13 |
+
"width":0,
|
14 |
+
"vectors":0,
|
15 |
+
"keys":0,
|
16 |
+
"name":null,
|
17 |
+
"mode":"default"
|
18 |
+
},
|
19 |
+
"labels":{
|
20 |
+
"transformer":[
|
21 |
+
|
22 |
+
],
|
23 |
+
"ner":[
|
24 |
+
"INVOICE_ADDRESS",
|
25 |
+
"INVOICE_DATE",
|
26 |
+
"INVOICE_NUMBER",
|
27 |
+
"TOTAL_PRICE"
|
28 |
+
]
|
29 |
+
},
|
30 |
+
"pipeline":[
|
31 |
+
"transformer",
|
32 |
+
"ner"
|
33 |
+
],
|
34 |
+
"components":[
|
35 |
+
"transformer",
|
36 |
+
"ner"
|
37 |
+
],
|
38 |
+
"disabled":[
|
39 |
+
|
40 |
+
],
|
41 |
+
"performance":{
|
42 |
+
"ents_f":0.0,
|
43 |
+
"ents_p":0.0,
|
44 |
+
"ents_r":0.0,
|
45 |
+
"ents_per_type":{
|
46 |
+
"INVOICE_ADDRESS":{
|
47 |
+
"p":0.0,
|
48 |
+
"r":0.0,
|
49 |
+
"f":0.0
|
50 |
+
},
|
51 |
+
"INVOICE_DATE":{
|
52 |
+
"p":0.0,
|
53 |
+
"r":0.0,
|
54 |
+
"f":0.0
|
55 |
+
},
|
56 |
+
"INVOICE_NUMBER":{
|
57 |
+
"p":0.0,
|
58 |
+
"r":0.0,
|
59 |
+
"f":0.0
|
60 |
+
},
|
61 |
+
"TOTAL_PRICE":{
|
62 |
+
"p":0.0,
|
63 |
+
"r":0.0,
|
64 |
+
"f":0.0
|
65 |
+
}
|
66 |
+
},
|
67 |
+
"transformer_loss":255.4410021305,
|
68 |
+
"ner_loss":47815.1849392354
|
69 |
+
}
|
70 |
+
}
|
ner/cfg
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"moves":null,
|
3 |
+
"update_with_oracle_cut_size":100,
|
4 |
+
"multitasks":[
|
5 |
+
|
6 |
+
],
|
7 |
+
"min_action_freq":1,
|
8 |
+
"learn_tokens":false,
|
9 |
+
"beam_width":1,
|
10 |
+
"beam_density":0.0,
|
11 |
+
"beam_update_prob":0.0,
|
12 |
+
"incorrect_spans_key":null
|
13 |
+
}
|
ner/model
ADDED
Binary file (226 kB). View file
|
|
ner/moves
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
��moves�P{"0":{},"1":{"INVOICE_ADDRESS":5,"TOTAL_PRICE":3,"INVOICE_DATE":2,"INVOICE_NUMBER":1},"2":{"INVOICE_ADDRESS":5,"TOTAL_PRICE":3,"INVOICE_DATE":2,"INVOICE_NUMBER":1},"3":{"INVOICE_ADDRESS":5,"TOTAL_PRICE":3,"INVOICE_DATE":2,"INVOICE_NUMBER":1},"4":{"INVOICE_ADDRESS":5,"TOTAL_PRICE":3,"INVOICE_DATE":2,"INVOICE_NUMBER":1,"":1},"5":{"":1}}�cfg��neg_key�
|
tokenizer
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
��prefix_search��^§|^%|^=|^—|^–|^\+(?![0-9])|^…|^……|^,|^:|^;|^\!|^\?|^¿|^؟|^¡|^\(|^\)|^\[|^\]|^\{|^\}|^<|^>|^_|^#|^\*|^&|^。|^?|^!|^,|^、|^;|^:|^~|^·|^।|^،|^۔|^؛|^٪|^\.\.+|^…|^\'|^"|^”|^“|^`|^‘|^´|^’|^‚|^,|^„|^»|^«|^「|^」|^『|^』|^(|^)|^〔|^〕|^【|^】|^《|^》|^〈|^〉|^〈|^〉|^⟦|^⟧|^\$|^£|^€|^¥|^฿|^US\$|^C\$|^A\$|^₽|^﷼|^₴|^₠|^₡|^₢|^₣|^₤|^₥|^₦|^₧|^₨|^₩|^₪|^₫|^€|^₭|^₮|^₯|^₰|^₱|^₲|^₳|^₴|^₵|^₶|^₷|^₸|^₹|^₺|^₻|^₼|^₽|^₾|^₿|^[\u00A6\u00A9\u00AE\u00B0\u0482\u058D\u058E\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u09FA\u0B70\u0BF3-\u0BF8\u0BFA\u0C7F\u0D4F\u0D79\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116\u2117\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u214A\u214C\u214D\u214F\u218A\u218B\u2195-\u2199\u219C-\u219F\u21A1\u21A2\u21A4\u21A5\u21A7-\u21AD\u21AF-\u21CD\u21D0\u21D1\u21D3\u21D5-\u21F3\u2300-\u2307\u230C-\u231F\u2322-\u2328\u232B-\u237B\u237D-\u239A\u23B4-\u23DB\u23E2-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u25B6\u25B8-\u25C0\u25C2-\u25F7\u2600-\u266E\u2670-\u2767\u2794-\u27BF\u2800-\u28FF\u2B00-\u2B2F\u2B45\u2B46\u2B4D-\u2B73\u2B76-\u2B95\u2B98-\u2BC8\u2BCA-\u2BFE\u2CE5-\u2CEA\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u32FE\u3300-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA828-\uA82B\uA836\uA837\uA839\uAA77-\uAA79\uFDFD\uFFE4\uFFE8\uFFED\uFFEE\uFFFC\uFFFD\U00010137-\U0001013F\U00010179-\U00010189\U0001018C-\U0001018E\U00010190-\U0001019B\U000101A0\U000101D0-\U000101FC\U00010877\U00010878\U00010AC8\U0001173F\U00016B3C-\U00016B3F\U00016B45\U0001BC9C\U0001D000-\U0001D0F5\U0001D100-\U0001D126\U0001D129-\U0001D164\U0001D16A-\U0001D16C\U0001D183\U0001D184\U0001D18C-\U0001D1A9\U0001D1AE-\U0001D1E8\U0001D200-\U0001D241\U0001D245\U0001D300-\U0001D356\U0001D800-\U0001D9FF\U0001DA37-\U0001DA3A\U0001DA6D-\U0001DA74\U0001DA76-\U0001DA83\U0001DA85\U0001DA86\U0001ECAC\U0001F000-\U0001F02B\U0001F030-\U0001F093\U0001F0A0-\U0001F0AE\U0001F0B1-\U0001F0BF\U0001F0C1-\U0001F0CF\U0001F0D1-\U0001F0F5\U0001F110-\U0001F16B\U0001F170-\U0001F1AC\U0001F1E6-\U0001F202\U0001F210-\U0001F23B\U0001F240-\U0001F248\U0001F250\U0001F251\U0001F260-\U0001F265\U0001F300-\U0001F3FA\U0001F400-\U0001F6D4\U0001F6E0-\U0001F6EC\U0001F6F0-\U0001F6F9\U0001F700-\U0001F773\U0001F780-\U0001F7D8\U0001F800-\U0001F80B\U0001F810-\U0001F847\U0001F850-\U0001F859\U0001F860-\U0001F887\U0001F890-\U0001F8AD\U0001F900-\U0001F90B\U0001F910-\U0001F93E\U0001F940-\U0001F970\U0001F973-\U0001F976\U0001F97A\U0001F97C-\U0001F9A2\U0001F9B0-\U0001F9B9\U0001F9C0-\U0001F9C2\U0001F9D0-\U0001F9FF\U0001FA60-\U0001FA6D]�suffix_search�2�…$|……$|,$|:$|;$|\!$|\?$|¿$|؟$|¡$|\($|\)$|\[$|\]$|\{$|\}$|<$|>$|_$|#$|\*$|&$|。$|?$|!$|,$|、$|;$|:$|~$|·$|।$|،$|۔$|؛$|٪$|\.\.+$|…$|\'$|"$|”$|“$|`$|‘$|´$|’$|‚$|,$|„$|»$|«$|「$|」$|『$|』$|($|)$|〔$|〕$|【$|】$|《$|》$|〈$|〉$|〈$|〉$|⟦$|⟧$|[\u00A6\u00A9\u00AE\u00B0\u0482\u058D\u058E\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u09FA\u0B70\u0BF3-\u0BF8\u0BFA\u0C7F\u0D4F\u0D79\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116\u2117\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u214A\u214C\u214D\u214F\u218A\u218B\u2195-\u2199\u219C-\u219F\u21A1\u21A2\u21A4\u21A5\u21A7-\u21AD\u21AF-\u21CD\u21D0\u21D1\u21D3\u21D5-\u21F3\u2300-\u2307\u230C-\u231F\u2322-\u2328\u232B-\u237B\u237D-\u239A\u23B4-\u23DB\u23E2-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u25B6\u25B8-\u25C0\u25C2-\u25F7\u2600-\u266E\u2670-\u2767\u2794-\u27BF\u2800-\u28FF\u2B00-\u2B2F\u2B45\u2B46\u2B4D-\u2B73\u2B76-\u2B95\u2B98-\u2BC8\u2BCA-\u2BFE\u2CE5-\u2CEA\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u32FE\u3300-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA828-\uA82B\uA836\uA837\uA839\uAA77-\uAA79\uFDFD\uFFE4\uFFE8\uFFED\uFFEE\uFFFC\uFFFD\U00010137-\U0001013F\U00010179-\U00010189\U0001018C-\U0001018E\U00010190-\U0001019B\U000101A0\U000101D0-\U000101FC\U00010877\U00010878\U00010AC8\U0001173F\U00016B3C-\U00016B3F\U00016B45\U0001BC9C\U0001D000-\U0001D0F5\U0001D100-\U0001D126\U0001D129-\U0001D164\U0001D16A-\U0001D16C\U0001D183\U0001D184\U0001D18C-\U0001D1A9\U0001D1AE-\U0001D1E8\U0001D200-\U0001D241\U0001D245\U0001D300-\U0001D356\U0001D800-\U0001D9FF\U0001DA37-\U0001DA3A\U0001DA6D-\U0001DA74\U0001DA76-\U0001DA83\U0001DA85\U0001DA86\U0001ECAC\U0001F000-\U0001F02B\U0001F030-\U0001F093\U0001F0A0-\U0001F0AE\U0001F0B1-\U0001F0BF\U0001F0C1-\U0001F0CF\U0001F0D1-\U0001F0F5\U0001F110-\U0001F16B\U0001F170-\U0001F1AC\U0001F1E6-\U0001F202\U0001F210-\U0001F23B\U0001F240-\U0001F248\U0001F250\U0001F251\U0001F260-\U0001F265\U0001F300-\U0001F3FA\U0001F400-\U0001F6D4\U0001F6E0-\U0001F6EC\U0001F6F0-\U0001F6F9\U0001F700-\U0001F773\U0001F780-\U0001F7D8\U0001F800-\U0001F80B\U0001F810-\U0001F847\U0001F850-\U0001F859\U0001F860-\U0001F887\U0001F890-\U0001F8AD\U0001F900-\U0001F90B\U0001F910-\U0001F93E\U0001F940-\U0001F970\U0001F973-\U0001F976\U0001F97A\U0001F97C-\U0001F9A2\U0001F9B0-\U0001F9B9\U0001F9C0-\U0001F9C2\U0001F9D0-\U0001F9FF\U0001FA60-\U0001FA6D]$|'s$|'S$|’s$|’S$|—$|–$|(?<=[0-9])\+$|(?<=°[FfCcKk])\.$|(?<=[0-9])(?:\$|£|€|¥|฿|US\$|C\$|A\$|₽|﷼|₴|₠|₡|₢|₣|₤|₥|₦|₧|₨|₩|₪|₫|€|₭|₮|₯|₰|₱|₲|₳|₴|₵|₶|₷|₸|₹|₺|₻|₼|₽|₾|₿)$|(?<=[0-9])(?:km|km²|km³|m|m²|m³|dm|dm²|dm³|cm|cm²|cm³|mm|mm²|mm³|ha|µm|nm|yd|in|ft|kg|g|mg|µg|t|lb|oz|m/s|km/h|kmh|mph|hPa|Pa|mbar|mb|MB|kb|KB|gb|GB|tb|TB|T|G|M|K|%|км|км²|км³|м|м²|м³|дм|дм²|дм³|см|см²|см³|мм|мм²|мм³|нм|кг|г|мг|м/с|км/ч|кПа|Па|мбар|Кб|КБ|кб|Мб|МБ|мб|Гб|ГБ|гб|Тб|ТБ|тбكم|كم²|كم³|م|م²|م³|سم|سم²|سم³|مم|مم²|مم³|كم|غرام|جرام|جم|كغ|ملغ|كوب|اكواب)$|(?<=[0-9a-z\uFF41-\uFF5A\u00DF-\u00F6\u00F8-\u00FF\u0101\u0103\u0105\u0107\u0109\u010B\u010D\u010F\u0111\u0113\u0115\u0117\u0119\u011B\u011D\u011F\u0121\u0123\u0125\u0127\u0129\u012B\u012D\u012F\u0131\u0133\u0135\u0137\u0138\u013A\u013C\u013E\u0140\u0142\u0144\u0146\u0148\u0149\u014B\u014D\u014F\u0151\u0153\u0155\u0157\u0159\u015B\u015D\u015F\u0161\u0163\u0165\u0167\u0169\u016B\u016D\u016F\u0171\u0173\u0175\u0177\u017A\u017C\u017E\u017F\u0180\u0183\u0185\u0188\u018C\u018D\u0192\u0195\u0199-\u019B\u019E\u01A1\u01A3\u01A5\u01A8\u01AA\u01AB\u01AD\u01B0\u01B4\u01B6\u01B9\u01BA\u01BD-\u01BF\u01C6\u01C9\u01CC\u01CE\u01D0\u01D2\u01D4\u01D6\u01D8\u01DA\u01DC\u01DD\u01DF\u01E1\u01E3\u01E5\u01E7\u01E9\u01EB\u01ED\u01EF\u01F0\u01F3\u01F5\u01F9\u01FB\u01FD\u01FF\u0201\u0203\u0205\u0207\u0209\u020B\u020D\u020F\u0211\u0213\u0215\u0217\u0219\u021B\u021D\u021F\u0221\u0223\u0225\u0227\u0229\u022B\u022D\u022F\u0231\u0233-\u0239\u023C\u023F\u0240\u0242\u0247\u0249\u024B\u024D\u024F\u2C61\u2C65\u2C66\u2C68\u2C6A\u2C6C\u2C71\u2C73\u2C74\u2C76-\u2C7B\uA723\uA725\uA727\uA729\uA72B\uA72D\uA72F-\uA731\uA733\uA735\uA737\uA739\uA73B\uA73D\uA73F\uA741\uA743\uA745\uA747\uA749\uA74B\uA74D\uA74F\uA751\uA753\uA755\uA757\uA759\uA75B\uA75D\uA75F\uA761\uA763\uA765\uA767\uA769\uA76B\uA76D\uA76F\uA771-\uA778\uA77A\uA77C\uA77F\uA781\uA783\uA785\uA787\uA78C\uA78E\uA791\uA793-\uA795\uA797\uA799\uA79B\uA79D\uA79F\uA7A1\uA7A3\uA7A5\uA7A7\uA7A9\uA7AF\uA7B5\uA7B7\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E01\u1E03\u1E05\u1E07\u1E09\u1E0B\u1E0D\u1E0F\u1E11\u1E13\u1E15\u1E17\u1E19\u1E1B\u1E1D\u1E1F\u1E21\u1E23\u1E25\u1E27\u1E29\u1E2B\u1E2D\u1E2F\u1E31\u1E33\u1E35\u1E37\u1E39\u1E3B\u1E3D\u1E3F\u1E41\u1E43\u1E45\u1E47\u1E49\u1E4B\u1E4D\u1E4F\u1E51\u1E53\u1E55\u1E57\u1E59\u1E5B\u1E5D\u1E5F\u1E61\u1E63\u1E65\u1E67\u1E69\u1E6B\u1E6D\u1E6F\u1E71\u1E73\u1E75\u1E77\u1E79\u1E7B\u1E7D\u1E7F\u1E81\u1E83\u1E85\u1E87\u1E89\u1E8B\u1E8D\u1E8F\u1E91\u1E93\u1E95-\u1E9D\u1E9F\u1EA1\u1EA3\u1EA5\u1EA7\u1EA9\u1EAB\u1EAD\u1EAF\u1EB1\u1EB3\u1EB5\u1EB7\u1EB9\u1EBB\u1EBD\u1EBF\u1EC1\u1EC3\u1EC5\u1EC7\u1EC9\u1ECB\u1ECD\u1ECF\u1ED1\u1ED3\u1ED5\u1ED7\u1ED9\u1EDB\u1EDD\u1EDF\u1EE1\u1EE3\u1EE5\u1EE7\u1EE9\u1EEB\u1EED\u1EEF\u1EF1\u1EF3\u1EF5\u1EF7\u1EF9\u1EFB\u1EFD\u1EFFёа-яәөүҗңһα-ωάέίόώήύа-щюяіїєґѓѕјљњќѐѝ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F%²\-\+…|……|,|:|;|\!|\?|¿|؟|¡|\(|\)|\[|\]|\{|\}|<|>|_|#|\*|&|。|?|!|,|、|;|:|~|·|।|،|۔|؛|٪(?:\'"”“`‘´’‚,„»«「」『』()〔〕【】《》〈〉〈〉⟦⟧)])\.$|(?<=[A-Z\uFF21-\uFF3A\u00C0-\u00D6\u00D8-\u00DE\u0100\u0102\u0104\u0106\u0108\u010A\u010C\u010E\u0110\u0112\u0114\u0116\u0118\u011A\u011C\u011E\u0120\u0122\u0124\u0126\u0128\u012A\u012C\u012E\u0130\u0132\u0134\u0136\u0139\u013B\u013D\u013F\u0141\u0143\u0145\u0147\u014A\u014C\u014E\u0150\u0152\u0154\u0156\u0158\u015A\u015C\u015E\u0160\u0162\u0164\u0166\u0168\u016A\u016C\u016E\u0170\u0172\u0174\u0176\u0178\u0179\u017B\u017D\u0181\u0182\u0184\u0186\u0187\u0189-\u018B\u018E-\u0191\u0193\u0194\u0196-\u0198\u019C\u019D\u019F\u01A0\u01A2\u01A4\u01A6\u01A7\u01A9\u01AC\u01AE\u01AF\u01B1-\u01B3\u01B5\u01B7\u01B8\u01BC\u01C4\u01C7\u01CA\u01CD\u01CF\u01D1\u01D3\u01D5\u01D7\u01D9\u01DB\u01DE\u01E0\u01E2\u01E4\u01E6\u01E8\u01EA\u01EC\u01EE\u01F1\u01F4\u01F6-\u01F8\u01FA\u01FC\u01FE\u0200\u0202\u0204\u0206\u0208\u020A\u020C\u020E\u0210\u0212\u0214\u0216\u0218\u021A\u021C\u021E\u0220\u0222\u0224\u0226\u0228\u022A\u022C\u022E\u0230\u0232\u023A\u023B\u023D\u023E\u0241\u0243-\u0246\u0248\u024A\u024C\u024E\u2C60\u2C62-\u2C64\u2C67\u2C69\u2C6B\u2C6D-\u2C70\u2C72\u2C75\u2C7E\u2C7F\uA722\uA724\uA726\uA728\uA72A\uA72C\uA72E\uA732\uA734\uA736\uA738\uA73A\uA73C\uA73E\uA740\uA742\uA744\uA746\uA748\uA74A\uA74C\uA74E\uA750\uA752\uA754\uA756\uA758\uA75A\uA75C\uA75E\uA760\uA762\uA764\uA766\uA768\uA76A\uA76C\uA76E\uA779\uA77B\uA77D\uA77E\uA780\uA782\uA784\uA786\uA78B\uA78D\uA790\uA792\uA796\uA798\uA79A\uA79C\uA79E\uA7A0\uA7A2\uA7A4\uA7A6\uA7A8\uA7AA-\uA7AE\uA7B0-\uA7B4\uA7B6\uA7B8\u1E00\u1E02\u1E04\u1E06\u1E08\u1E0A\u1E0C\u1E0E\u1E10\u1E12\u1E14\u1E16\u1E18\u1E1A\u1E1C\u1E1E\u1E20\u1E22\u1E24\u1E26\u1E28\u1E2A\u1E2C\u1E2E\u1E30\u1E32\u1E34\u1E36\u1E38\u1E3A\u1E3C\u1E3E\u1E40\u1E42\u1E44\u1E46\u1E48\u1E4A\u1E4C\u1E4E\u1E50\u1E52\u1E54\u1E56\u1E58\u1E5A\u1E5C\u1E5E\u1E60\u1E62\u1E64\u1E66\u1E68\u1E6A\u1E6C\u1E6E\u1E70\u1E72\u1E74\u1E76\u1E78\u1E7A\u1E7C\u1E7E\u1E80\u1E82\u1E84\u1E86\u1E88\u1E8A\u1E8C\u1E8E\u1E90\u1E92\u1E94\u1E9E\u1EA0\u1EA2\u1EA4\u1EA6\u1EA8\u1EAA\u1EAC\u1EAE\u1EB0\u1EB2\u1EB4\u1EB6\u1EB8\u1EBA\u1EBC\u1EBE\u1EC0\u1EC2\u1EC4\u1EC6\u1EC8\u1ECA\u1ECC\u1ECE\u1ED0\u1ED2\u1ED4\u1ED6\u1ED8\u1EDA\u1EDC\u1EDE\u1EE0\u1EE2\u1EE4\u1EE6\u1EE8\u1EEA\u1EEC\u1EEE\u1EF0\u1EF2\u1EF4\u1EF6\u1EF8\u1EFA\u1EFC\u1EFEЁА-ЯӘӨҮҖҢҺΑ-ΩΆΈΊΌΏΉΎА-ЩЮЯІЇЄҐЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F][A-Z\uFF21-\uFF3A\u00C0-\u00D6\u00D8-\u00DE\u0100\u0102\u0104\u0106\u0108\u010A\u010C\u010E\u0110\u0112\u0114\u0116\u0118\u011A\u011C\u011E\u0120\u0122\u0124\u0126\u0128\u012A\u012C\u012E\u0130\u0132\u0134\u0136\u0139\u013B\u013D\u013F\u0141\u0143\u0145\u0147\u014A\u014C\u014E\u0150\u0152\u0154\u0156\u0158\u015A\u015C\u015E\u0160\u0162\u0164\u0166\u0168\u016A\u016C\u016E\u0170\u0172\u0174\u0176\u0178\u0179\u017B\u017D\u0181\u0182\u0184\u0186\u0187\u0189-\u018B\u018E-\u0191\u0193\u0194\u0196-\u0198\u019C\u019D\u019F\u01A0\u01A2\u01A4\u01A6\u01A7\u01A9\u01AC\u01AE\u01AF\u01B1-\u01B3\u01B5\u01B7\u01B8\u01BC\u01C4\u01C7\u01CA\u01CD\u01CF\u01D1\u01D3\u01D5\u01D7\u01D9\u01DB\u01DE\u01E0\u01E2\u01E4\u01E6\u01E8\u01EA\u01EC\u01EE\u01F1\u01F4\u01F6-\u01F8\u01FA\u01FC\u01FE\u0200\u0202\u0204\u0206\u0208\u020A\u020C\u020E\u0210\u0212\u0214\u0216\u0218\u021A\u021C\u021E\u0220\u0222\u0224\u0226\u0228\u022A\u022C\u022E\u0230\u0232\u023A\u023B\u023D\u023E\u0241\u0243-\u0246\u0248\u024A\u024C\u024E\u2C60\u2C62-\u2C64\u2C67\u2C69\u2C6B\u2C6D-\u2C70\u2C72\u2C75\u2C7E\u2C7F\uA722\uA724\uA726\uA728\uA72A\uA72C\uA72E\uA732\uA734\uA736\uA738\uA73A\uA73C\uA73E\uA740\uA742\uA744\uA746\uA748\uA74A\uA74C\uA74E\uA750\uA752\uA754\uA756\uA758\uA75A\uA75C\uA75E\uA760\uA762\uA764\uA766\uA768\uA76A\uA76C\uA76E\uA779\uA77B\uA77D\uA77E\uA780\uA782\uA784\uA786\uA78B\uA78D\uA790\uA792\uA796\uA798\uA79A\uA79C\uA79E\uA7A0\uA7A2\uA7A4\uA7A6\uA7A8\uA7AA-\uA7AE\uA7B0-\uA7B4\uA7B6\uA7B8\u1E00\u1E02\u1E04\u1E06\u1E08\u1E0A\u1E0C\u1E0E\u1E10\u1E12\u1E14\u1E16\u1E18\u1E1A\u1E1C\u1E1E\u1E20\u1E22\u1E24\u1E26\u1E28\u1E2A\u1E2C\u1E2E\u1E30\u1E32\u1E34\u1E36\u1E38\u1E3A\u1E3C\u1E3E\u1E40\u1E42\u1E44\u1E46\u1E48\u1E4A\u1E4C\u1E4E\u1E50\u1E52\u1E54\u1E56\u1E58\u1E5A\u1E5C\u1E5E\u1E60\u1E62\u1E64\u1E66\u1E68\u1E6A\u1E6C\u1E6E\u1E70\u1E72\u1E74\u1E76\u1E78\u1E7A\u1E7C\u1E7E\u1E80\u1E82\u1E84\u1E86\u1E88\u1E8A\u1E8C\u1E8E\u1E90\u1E92\u1E94\u1E9E\u1EA0\u1EA2\u1EA4\u1EA6\u1EA8\u1EAA\u1EAC\u1EAE\u1EB0\u1EB2\u1EB4\u1EB6\u1EB8\u1EBA\u1EBC\u1EBE\u1EC0\u1EC2\u1EC4\u1EC6\u1EC8\u1ECA\u1ECC\u1ECE\u1ED0\u1ED2\u1ED4\u1ED6\u1ED8\u1EDA\u1EDC\u1EDE\u1EE0\u1EE2\u1EE4\u1EE6\u1EE8\u1EEA\u1EEC\u1EEE\u1EF0\u1EF2\u1EF4\u1EF6\u1EF8\u1EFA\u1EFC\u1EFEЁА-ЯӘӨҮҖҢҺΑ-ΩΆΈΊΌΏΉΎА-ЩЮЯІЇЄҐЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])\.$�infix_finditer�>�\.\.+|…|[\u00A6\u00A9\u00AE\u00B0\u0482\u058D\u058E\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u09FA\u0B70\u0BF3-\u0BF8\u0BFA\u0C7F\u0D4F\u0D79\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116\u2117\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u214A\u214C\u214D\u214F\u218A\u218B\u2195-\u2199\u219C-\u219F\u21A1\u21A2\u21A4\u21A5\u21A7-\u21AD\u21AF-\u21CD\u21D0\u21D1\u21D3\u21D5-\u21F3\u2300-\u2307\u230C-\u231F\u2322-\u2328\u232B-\u237B\u237D-\u239A\u23B4-\u23DB\u23E2-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u25B6\u25B8-\u25C0\u25C2-\u25F7\u2600-\u266E\u2670-\u2767\u2794-\u27BF\u2800-\u28FF\u2B00-\u2B2F\u2B45\u2B46\u2B4D-\u2B73\u2B76-\u2B95\u2B98-\u2BC8\u2BCA-\u2BFE\u2CE5-\u2CEA\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u32FE\u3300-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA828-\uA82B\uA836\uA837\uA839\uAA77-\uAA79\uFDFD\uFFE4\uFFE8\uFFED\uFFEE\uFFFC\uFFFD\U00010137-\U0001013F\U00010179-\U00010189\U0001018C-\U0001018E\U00010190-\U0001019B\U000101A0\U000101D0-\U000101FC\U00010877\U00010878\U00010AC8\U0001173F\U00016B3C-\U00016B3F\U00016B45\U0001BC9C\U0001D000-\U0001D0F5\U0001D100-\U0001D126\U0001D129-\U0001D164\U0001D16A-\U0001D16C\U0001D183\U0001D184\U0001D18C-\U0001D1A9\U0001D1AE-\U0001D1E8\U0001D200-\U0001D241\U0001D245\U0001D300-\U0001D356\U0001D800-\U0001D9FF\U0001DA37-\U0001DA3A\U0001DA6D-\U0001DA74\U0001DA76-\U0001DA83\U0001DA85\U0001DA86\U0001ECAC\U0001F000-\U0001F02B\U0001F030-\U0001F093\U0001F0A0-\U0001F0AE\U0001F0B1-\U0001F0BF\U0001F0C1-\U0001F0CF\U0001F0D1-\U0001F0F5\U0001F110-\U0001F16B\U0001F170-\U0001F1AC\U0001F1E6-\U0001F202\U0001F210-\U0001F23B\U0001F240-\U0001F248\U0001F250\U0001F251\U0001F260-\U0001F265\U0001F300-\U0001F3FA\U0001F400-\U0001F6D4\U0001F6E0-\U0001F6EC\U0001F6F0-\U0001F6F9\U0001F700-\U0001F773\U0001F780-\U0001F7D8\U0001F800-\U0001F80B\U0001F810-\U0001F847\U0001F850-\U0001F859\U0001F860-\U0001F887\U0001F890-\U0001F8AD\U0001F900-\U0001F90B\U0001F910-\U0001F93E\U0001F940-\U0001F970\U0001F973-\U0001F976\U0001F97A\U0001F97C-\U0001F9A2\U0001F9B0-\U0001F9B9\U0001F9C0-\U0001F9C2\U0001F9D0-\U0001F9FF\U0001FA60-\U0001FA6D]|(?<=[0-9])[+\-\*^](?=[0-9-])|(?<=[a-z\uFF41-\uFF5A\u00DF-\u00F6\u00F8-\u00FF\u0101\u0103\u0105\u0107\u0109\u010B\u010D\u010F\u0111\u0113\u0115\u0117\u0119\u011B\u011D\u011F\u0121\u0123\u0125\u0127\u0129\u012B\u012D\u012F\u0131\u0133\u0135\u0137\u0138\u013A\u013C\u013E\u0140\u0142\u0144\u0146\u0148\u0149\u014B\u014D\u014F\u0151\u0153\u0155\u0157\u0159\u015B\u015D\u015F\u0161\u0163\u0165\u0167\u0169\u016B\u016D\u016F\u0171\u0173\u0175\u0177\u017A\u017C\u017E\u017F\u0180\u0183\u0185\u0188\u018C\u018D\u0192\u0195\u0199-\u019B\u019E\u01A1\u01A3\u01A5\u01A8\u01AA\u01AB\u01AD\u01B0\u01B4\u01B6\u01B9\u01BA\u01BD-\u01BF\u01C6\u01C9\u01CC\u01CE\u01D0\u01D2\u01D4\u01D6\u01D8\u01DA\u01DC\u01DD\u01DF\u01E1\u01E3\u01E5\u01E7\u01E9\u01EB\u01ED\u01EF\u01F0\u01F3\u01F5\u01F9\u01FB\u01FD\u01FF\u0201\u0203\u0205\u0207\u0209\u020B\u020D\u020F\u0211\u0213\u0215\u0217\u0219\u021B\u021D\u021F\u0221\u0223\u0225\u0227\u0229\u022B\u022D\u022F\u0231\u0233-\u0239\u023C\u023F\u0240\u0242\u0247\u0249\u024B\u024D\u024F\u2C61\u2C65\u2C66\u2C68\u2C6A\u2C6C\u2C71\u2C73\u2C74\u2C76-\u2C7B\uA723\uA725\uA727\uA729\uA72B\uA72D\uA72F-\uA731\uA733\uA735\uA737\uA739\uA73B\uA73D\uA73F\uA741\uA743\uA745\uA747\uA749\uA74B\uA74D\uA74F\uA751\uA753\uA755\uA757\uA759\uA75B\uA75D\uA75F\uA761\uA763\uA765\uA767\uA769\uA76B\uA76D\uA76F\uA771-\uA778\uA77A\uA77C\uA77F\uA781\uA783\uA785\uA787\uA78C\uA78E\uA791\uA793-\uA795\uA797\uA799\uA79B\uA79D\uA79F\uA7A1\uA7A3\uA7A5\uA7A7\uA7A9\uA7AF\uA7B5\uA7B7\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E01\u1E03\u1E05\u1E07\u1E09\u1E0B\u1E0D\u1E0F\u1E11\u1E13\u1E15\u1E17\u1E19\u1E1B\u1E1D\u1E1F\u1E21\u1E23\u1E25\u1E27\u1E29\u1E2B\u1E2D\u1E2F\u1E31\u1E33\u1E35\u1E37\u1E39\u1E3B\u1E3D\u1E3F\u1E41\u1E43\u1E45\u1E47\u1E49\u1E4B\u1E4D\u1E4F\u1E51\u1E53\u1E55\u1E57\u1E59\u1E5B\u1E5D\u1E5F\u1E61\u1E63\u1E65\u1E67\u1E69\u1E6B\u1E6D\u1E6F\u1E71\u1E73\u1E75\u1E77\u1E79\u1E7B\u1E7D\u1E7F\u1E81\u1E83\u1E85\u1E87\u1E89\u1E8B\u1E8D\u1E8F\u1E91\u1E93\u1E95-\u1E9D\u1E9F\u1EA1\u1EA3\u1EA5\u1EA7\u1EA9\u1EAB\u1EAD\u1EAF\u1EB1\u1EB3\u1EB5\u1EB7\u1EB9\u1EBB\u1EBD\u1EBF\u1EC1\u1EC3\u1EC5\u1EC7\u1EC9\u1ECB\u1ECD\u1ECF\u1ED1\u1ED3\u1ED5\u1ED7\u1ED9\u1EDB\u1EDD\u1EDF\u1EE1\u1EE3\u1EE5\u1EE7\u1EE9\u1EEB\u1EED\u1EEF\u1EF1\u1EF3\u1EF5\u1EF7\u1EF9\u1EFB\u1EFD\u1EFFёа-яәөүҗңһα-ωάέίόώήύа-щюяіїєґѓѕјљњќѐѝ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F\'"”“`‘´’‚,„»«「」『』()〔〕【】《》〈〉〈〉⟦⟧])\.(?=[A-Z\uFF21-\uFF3A\u00C0-\u00D6\u00D8-\u00DE\u0100\u0102\u0104\u0106\u0108\u010A\u010C\u010E\u0110\u0112\u0114\u0116\u0118\u011A\u011C\u011E\u0120\u0122\u0124\u0126\u0128\u012A\u012C\u012E\u0130\u0132\u0134\u0136\u0139\u013B\u013D\u013F\u0141\u0143\u0145\u0147\u014A\u014C\u014E\u0150\u0152\u0154\u0156\u0158\u015A\u015C\u015E\u0160\u0162\u0164\u0166\u0168\u016A\u016C\u016E\u0170\u0172\u0174\u0176\u0178\u0179\u017B\u017D\u0181\u0182\u0184\u0186\u0187\u0189-\u018B\u018E-\u0191\u0193\u0194\u0196-\u0198\u019C\u019D\u019F\u01A0\u01A2\u01A4\u01A6\u01A7\u01A9\u01AC\u01AE\u01AF\u01B1-\u01B3\u01B5\u01B7\u01B8\u01BC\u01C4\u01C7\u01CA\u01CD\u01CF\u01D1\u01D3\u01D5\u01D7\u01D9\u01DB\u01DE\u01E0\u01E2\u01E4\u01E6\u01E8\u01EA\u01EC\u01EE\u01F1\u01F4\u01F6-\u01F8\u01FA\u01FC\u01FE\u0200\u0202\u0204\u0206\u0208\u020A\u020C\u020E\u0210\u0212\u0214\u0216\u0218\u021A\u021C\u021E\u0220\u0222\u0224\u0226\u0228\u022A\u022C\u022E\u0230\u0232\u023A\u023B\u023D\u023E\u0241\u0243-\u0246\u0248\u024A\u024C\u024E\u2C60\u2C62-\u2C64\u2C67\u2C69\u2C6B\u2C6D-\u2C70\u2C72\u2C75\u2C7E\u2C7F\uA722\uA724\uA726\uA728\uA72A\uA72C\uA72E\uA732\uA734\uA736\uA738\uA73A\uA73C\uA73E\uA740\uA742\uA744\uA746\uA748\uA74A\uA74C\uA74E\uA750\uA752\uA754\uA756\uA758\uA75A\uA75C\uA75E\uA760\uA762\uA764\uA766\uA768\uA76A\uA76C\uA76E\uA779\uA77B\uA77D\uA77E\uA780\uA782\uA784\uA786\uA78B\uA78D\uA790\uA792\uA796\uA798\uA79A\uA79C\uA79E\uA7A0\uA7A2\uA7A4\uA7A6\uA7A8\uA7AA-\uA7AE\uA7B0-\uA7B4\uA7B6\uA7B8\u1E00\u1E02\u1E04\u1E06\u1E08\u1E0A\u1E0C\u1E0E\u1E10\u1E12\u1E14\u1E16\u1E18\u1E1A\u1E1C\u1E1E\u1E20\u1E22\u1E24\u1E26\u1E28\u1E2A\u1E2C\u1E2E\u1E30\u1E32\u1E34\u1E36\u1E38\u1E3A\u1E3C\u1E3E\u1E40\u1E42\u1E44\u1E46\u1E48\u1E4A\u1E4C\u1E4E\u1E50\u1E52\u1E54\u1E56\u1E58\u1E5A\u1E5C\u1E5E\u1E60\u1E62\u1E64\u1E66\u1E68\u1E6A\u1E6C\u1E6E\u1E70\u1E72\u1E74\u1E76\u1E78\u1E7A\u1E7C\u1E7E\u1E80\u1E82\u1E84\u1E86\u1E88\u1E8A\u1E8C\u1E8E\u1E90\u1E92\u1E94\u1E9E\u1EA0\u1EA2\u1EA4\u1EA6\u1EA8\u1EAA\u1EAC\u1EAE\u1EB0\u1EB2\u1EB4\u1EB6\u1EB8\u1EBA\u1EBC\u1EBE\u1EC0\u1EC2\u1EC4\u1EC6\u1EC8\u1ECA\u1ECC\u1ECE\u1ED0\u1ED2\u1ED4\u1ED6\u1ED8\u1EDA\u1EDC\u1EDE\u1EE0\u1EE2\u1EE4\u1EE6\u1EE8\u1EEA\u1EEC\u1EEE\u1EF0\u1EF2\u1EF4\u1EF6\u1EF8\u1EFA\u1EFC\u1EFEЁА-ЯӘӨҮҖҢҺΑ-ΩΆΈΊΌΏΉΎА-ЩЮЯІЇЄҐЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F\'"”“`‘´’‚,„»«「」『』()〔〕【】《》〈〉〈〉⟦⟧])|(?<=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F]),(?=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])|(?<=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F0-9])(?:-|–|—|--|---|——|~)(?=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])|(?<=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F0-9])[:<>=/](?=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])�token_match��url_match�
|
2 |
+
��A�
|
3 |
+
� ��A� �'��A�'�''��A�''�'Cause��A�'CauseC�because�'Cos��A�'CosC�because�'Coz��A�'CozC�because�'Cuz��A�'CuzC�because�'S��A�'SC�'s�'bout��A�'boutC�about�'cause��A�'causeC�because�'cos��A�'cosC�because�'coz��A�'cozC�because�'cuz��A�'cuzC�because�'d��A�'d�'em��A�'emC�them�'ll��A�'llC�will�'nuff��A�'nuffC�enough�'re��A�'reC�are�'s��A�'sC�'s�(*_*)��A�(*_*)�(-8��A�(-8�(-:��A�(-:�(-;��A�(-;�(-_-)��A�(-_-)�(._.)��A�(._.)�(:��A�(:�(;��A�(;�(=��A�(=�(>_<)��A�(>_<)�(^_^)��A�(^_^)�(o:��A�(o:�(¬_¬)��A�(¬_¬)�(ಠ_ಠ)��A�(ಠ_ಠ)�(╯°□°)╯︵┻━┻��A�(╯°□°)╯︵┻━┻�)-:��A�)-:�):��A�):�-_-��A�-_-�-__-��A�-__-�._.��A�._.�0.0��A�0.0�0.o��A�0.o�0_0��A�0_0�0_o��A�0_o�10a.m.��A�10�A�a.m.C�a.m.�10am��A�10�A�amC�a.m.�10p.m.��A�10�A�p.m.C�p.m.�10pm��A�10�A�pmC�p.m.�11a.m.��A�11�A�a.m.C�a.m.�11am��A�11�A�amC�a.m.�11p.m.��A�11�A�p.m.C�p.m.�11pm��A�11�A�pmC�p.m.�12a.m.��A�12�A�a.m.C�a.m.�12am��A�12�A�amC�a.m.�12p.m.��A�12�A�p.m.C�p.m.�12pm��A�12�A�pmC�p.m.�1a.m.��A�1�A�a.m.C�a.m.�1am��A�1�A�amC�a.m.�1p.m.��A�1�A�p.m.C�p.m.�1pm��A�1�A�pmC�p.m.�2a.m.��A�2�A�a.m.C�a.m.�2am��A�2�A�amC�a.m.�2p.m.��A�2�A�p.m.C�p.m.�2pm��A�2�A�pmC�p.m.�3a.m.��A�3�A�a.m.C�a.m.�3am��A�3�A�amC�a.m.�3p.m.��A�3�A�p.m.C�p.m.�3pm��A�3�A�pmC�p.m.�4a.m.��A�4�A�a.m.C�a.m.�4am��A�4�A�amC�a.m.�4p.m.��A�4�A�p.m.C�p.m.�4pm��A�4�A�pmC�p.m.�5a.m.��A�5�A�a.m.C�a.m.�5am��A�5�A�amC�a.m.�5p.m.��A�5�A�p.m.C�p.m.�5pm��A�5�A�pmC�p.m.�6a.m.��A�6�A�a.m.C�a.m.�6am��A�6�A�amC�a.m.�6p.m.��A�6�A�p.m.C�p.m.�6pm��A�6�A�pmC�p.m.�7a.m.��A�7�A�a.m.C�a.m.�7am��A�7�A�amC�a.m.�7p.m.��A�7�A�p.m.C�p.m.�7pm��A�7�A�pmC�p.m.�8)��A�8)�8-)��A�8-)�8-D��A�8-D�8D��A�8D�8a.m.��A�8�A�a.m.C�a.m.�8am��A�8�A�amC�a.m.�8p.m.��A�8�A�p.m.C�p.m.�8pm��A�8�A�pmC�p.m.�9a.m.��A�9�A�a.m.C�a.m.�9am��A�9�A�amC�a.m.�9p.m.��A�9�A�p.m.C�p.m.�9pm��A�9�A�pmC�p.m.�:'(��A�:'(�:')��A�:')�:'-(��A�:'-(�:'-)��A�:'-)�:(��A�:(�:((��A�:((�:(((��A�:(((�:()��A�:()�:)��A�:)�:))��A�:))�:)))��A�:)))�:*��A�:*�:-(��A�:-(�:-((��A�:-((�:-(((��A�:-(((�:-)��A�:-)�:-))��A�:-))�:-)))��A�:-)))�:-*��A�:-*�:-/��A�:-/�:-0��A�:-0�:-3��A�:-3�:->��A�:->�:-D��A�:-D�:-O��A�:-O�:-P��A�:-P�:-X��A�:-X�:-]��A�:-]�:-o��A�:-o�:-p��A�:-p�:-x��A�:-x�:-|��A�:-|�:-}��A�:-}�:/��A�:/�:0��A�:0�:1��A�:1�:3��A�:3�:>��A�:>�:D��A�:D�:O��A�:O�:P��A�:P�:X��A�:X�:]��A�:]�:o��A�:o�:o)��A�:o)�:p��A�:p�:x��A�:x�:|��A�:|�:}��A�:}�:’(��A�:’(�:’)��A�:’)�:’-(��A�:’-(�:’-)��A�:’-)�;)��A�;)�;-)��A�;-)�;-D��A�;-D�;D��A�;D�;_;��A�;_;�<.<��A�<.<�</3��A�</3�<3��A�<3�<33��A�<33�<333��A�<333�<space>��A�<space>�=(��A�=(�=)��A�=)�=/��A�=/�=3��A�=3�=D��A�=D�=[��A�=[�=]��A�=]�=|��A�=|�>.<��A�>.<�>.>��A�>.>�>:(��A�>:(�>:o��A�>:o�><(((*>��A�><(((*>�@_@��A�@_@�Adm.��A�Adm.�Ain't��A�Ai�A�n'tC�not�Aint��A�Ai�A�ntC�not�Ain’t��A�Ai�A�n’tC�not�Ak.��A�Ak.C�Alaska�Ala.��A�Ala.C�Alabama�Apr.��A�Apr.C�April�Aren't��A�AreC�are�A�n'tC�not�Arent��A�AreC�are�A�ntC�not�Aren’t��A�AreC�are�A�n’tC�not�Ariz.��A�Ariz.C�Arizona�Ark.��A�Ark.C�Arkansas�Aug.��A�Aug.C�August�Bros.��A�Bros.�C'mon��A�C'mC�come�A�on�C++��A�C++�Calif.��A�Calif.C�California�Can't��A�CaC�can�A�n'tC�not�Can't've��A�CaC�can�A�n'tC�not�A�'veC�have�Cannot��A�CanC�can�A�not�Cant��A�CaC�can�A�ntC�not�Cantve��A�CaC�can�A�ntC�not�A�veC�have�Can’t��A�CaC�can�A�n’tC�not�Can’t’ve��A�CaC�can�A�n’tC�not�A�’veC�have�Co.��A�Co.�Colo.��A�Colo.C�Colorado�Conn.��A�Conn.C�Connecticut�Corp.��A�Corp.�Could've��A�CouldC�could�A�'ve�Couldn't��A�CouldC�could�A�n'tC�not�Couldn't've��A�CouldC�could�A�n'tC�not�A�'veC�have�Couldnt��A�CouldC�could�A�ntC�not�Couldntve��A�CouldC�could�A�ntC�not�A�veC�have�Couldn’t��A�CouldC�could�A�n’tC�not�Couldn’t’ve��A�CouldC�could�A�n’tC�not�A�’veC�have�Couldve��A�CouldC�could�A�ve�Could’ve��A�CouldC�could�A�’ve�C’mon��A�C’mC�come�A�on�D.C.��A�D.C.�Daren't��A�DareC�dare�A�n'tC�not�Darent��A�DareC�dare�A�ntC�not�Daren’t��A�DareC�dare�A�n’tC�not�Dec.��A�Dec.C�December�Del.��A�Del.C�Delaware�Didn't��A�DidC�do�A�n'tC�not�Didn't've��A�DidC�do�A�n'tC�not�A�'veC�have�Didnt��A�DidC�do�A�ntC�not�Didntve��A�DidC�do�A�ntC�not�A�veC�have�Didn’t��A�DidC�do�A�n’tC�not�Didn’t’ve��A�DidC�do�A�n’tC�not�A�’veC�have�Doesn't��A�DoesC�does�A�n'tC�not�Doesn't've��A�DoesC�does�A�n'tC�not�A�'veC�have�Doesnt��A�DoesC�does�A�ntC�not�Doesntve��A�DoesC�does�A�ntC�not�A�veC�have�Doesn’t��A�DoesC�does�A�n’tC�not�Doesn’t’ve��A�DoesC�does�A�n’tC�not�A�’veC�have�Doin��A�DoinC�doing�Doin'��A�Doin'C�doing�Doin’��A�Doin’C�doing�Don't��A�DoC�do�A�n'tC�not�Don't've��A�DoC�do�A�n'tC�not�A�'veC�have�Dont��A�DoC�do�A�ntC�not�Dontve��A�DoC�do�A�ntC�not�A�veC�have�Don’t��A�DoC�do�A�n’tC�not�Don’t’ve��A�DoC�do�A�n’tC�not�A�’veC�have�Dr.��A�Dr.�E.G.��A�E.G.�E.g.��A�E.g.�Feb.��A�Feb.C�February�Fla.��A�Fla.C�Florida�Ga.��A�Ga.C�Georgia�Gen.��A�Gen.�Goin��A�GoinC�going�Goin'��A�Goin'C�going�Goin’��A�Goin’C�going�Gonna��A�GonC�going�A�naC�to�Gotta��A�GotC�got�A�taC�to�Gov.��A�Gov.�Hadn't��A�HadC�have�A�n'tC�not�Hadn't've��A�HadC�have�A�n'tC�not�A�'veC�have�Hadnt��A�HadC�have�A�ntC�not�Hadntve��A�HadC�have�A�ntC�not�A�veC�have�Hadn’t��A�HadC�have�A�n’tC�not�Hadn’t’ve��A�HadC�have�A�n’tC�not�A�’veC�have�Hasn't��A�HasC�has�A�n'tC�not�Hasnt��A�HasC�has�A�ntC�not�Hasn’t��A�HasC�has�A�n’tC�not�Haven't��A�HaveC�have�A�n'tC�not�Havent��A�HaveC�have�A�ntC�not�Haven’t��A�HaveC�have�A�n’tC�not�Havin��A�HavinC�having�Havin'��A�Havin'C�having�Havin’��A�Havin’C�having�He'd��A�HeC�he�A�'dC�'d�He'd've��A�HeC�he�A�'dC�would�A�'veC�have�He'll��A�HeC�he�A�'llC�will�He'll've��A�HeC�he�A�'llC�will�A�'veC�have�He's��A�HeC�he�A�'sC�'s�Hed��A�HeC�he�A�dC�'d�Hedve��A�HeC�he�A�dC�would�A�veC�have�Hellve��A�HeC�he�A�llC�will�A�veC�have�Hes��A�HeC�he�A�s�He’d��A�HeC�he�A�’dC�'d�He’d’ve��A�HeC�he�A�’dC�would�A�’veC�have�He’ll��A�HeC�he�A�’llC�will�He’ll’ve��A�HeC�he�A�’llC�will�A�’veC�have�He’s��A�HeC�he�A�’sC�'s�How'd��A�HowC�how�A�'dC�'d�How'd've��A�HowC�how�A�'dC�would�A�'veC�have�How'd'y��A�HowC�how�A�'d�A�'yC�you�How'll��A�HowC�how�A�'llC�will�How'll've��A�HowC�how�A�'llC�will�A�'veC�have�How're��A�HowC�how�A�'reC�are�How's��A�HowC�how�A�'sC�'s�How've��A�HowC�how�A�'ve�Howd��A�HowC�how�A�dC�'d�Howdve��A�HowC�how�A�dC�would�A�veC�have�Howll��A�HowC�how�A�llC�will�Howllve��A�HowC�how�A�llC�will�A�veC�have�Howre��A�HowC�how�A�reC�are�Hows��A�HowC�how�A�s�Howve��A�How�A�veC�have�How’d��A�HowC�how�A�’dC�'d�How’d’ve��A�HowC�how�A�’dC�would�A�’veC�have�How’d’y��A�HowC�how�A�’d�A�’yC�you�How’ll��A�HowC�how�A�’llC�will�How’ll’ve��A�HowC�how�A�’llC�will�A�’veC�have�How’re��A�HowC�how�A�’reC�are�How’s��A�HowC�how�A�’sC�'s�How’ve��A�HowC�how�A�’ve�I'd��A�IC�i�A�'dC�'d�I'd've��A�IC�i�A�'dC�would�A�'veC�have�I'll��A�IC�i�A�'llC�will�I'll've��A�IC�i�A�'llC�will�A�'veC�have�I'm��A�IC�i�A�'mC�am�I'ma��A�IC�i�A�'mC�am�A�aC�gonna�I've��A�IC�i�A�'veC�have�I.E.��A�I.E.�I.e.��A�I.e.�Ia.��A�Ia.C�Iowa�Id��A�IC�i�A�dC�'d�Id.��A�Id.C�Idaho�Idve��A�IC�i�A�dC�would�A�veC�have�Ill.��A�Ill.C�Illinois�Illve��A�IC�i�A�llC�will�A�veC�have�Im��A�IC�i�A�m�Ima��A�IC�i�A�mC�am�A�aC�gonna�Inc.��A�Inc.�Ind.��A�Ind.C�Indiana�Isn't��A�IsC�is�A�n'tC�not�Isnt��A�IsC�is�A�ntC�not�Isn’t��A�IsC�is�A�n’tC�not�It'd��A�ItC�it�A�'dC�'d�It'd've��A�ItC�it�A�'dC�would�A�'veC�have�It'll��A�ItC�it�A�'llC�will�It'll've��A�ItC�it�A�'llC�will�A�'veC�have�It's��A�ItC�it�A�'sC�'s�Itd��A�ItC�it�A�dC�'d�Itdve��A�ItC�it�A�dC�would�A�veC�have�Itll��A�ItC�it�A�llC�will�Itllve��A�ItC�it�A�llC�will�A�veC�have�It’d��A�ItC�it�A�’dC�'d�It’d’ve��A�ItC�it�A�’dC�would�A�’veC�have�It’ll��A�ItC�it�A�’llC�will�It’ll’ve��A�ItC�it�A�’llC�will�A�’veC�have�It’s��A�ItC�it�A�’sC�'s�Ive��A�IC�i�A�veC�have�I’d��A�IC�i�A�’dC�'d�I’d’ve��A�IC�i�A�’dC�would�A�’veC�have�I’ll��A�IC�i�A�’llC�will�I’ll’ve��A�IC�i�A�’llC�will�A�’veC�have�I’m��A�IC�i�A�’mC�am�I’ma��A�IC�i�A�’mC�am�A�aC�gonna�I’ve��A�IC�i�A�’veC�have�Jan.��A�Jan.C�January�Jr.��A�Jr.�Jul.��A�Jul.C�July�Jun.��A�Jun.C�June�Kan.��A�Kan.C�Kansas�Kans.��A�Kans.C�Kansas�Ky.��A�Ky.C�Kentucky�La.��A�La.C�Louisiana�Let's��A�LetC�let�A�'sC�us�Let’s��A�LetC�let�A�’sC�us�Lovin��A�LovinC�loving�Lovin'��A�Lovin'C�loving�Lovin’��A�Lovin’C�loving�Ltd.��A�Ltd.�Ma'am��A�Ma'amC�madam�Mar.��A�Mar.C�March�Mass.��A�Mass.C�Massachusetts�Mayn't��A�MayC�may�A�n'tC�not�Mayn't've��A�MayC�may�A�n'tC�not�A�'veC�have�Maynt��A�MayC�may�A�ntC�not�Mayntve��A�MayC�may�A�ntC�not�A�veC�have�Mayn’t��A�MayC�may�A�n’tC�not�Mayn’t’ve��A�MayC�may�A�n’tC�not�A�’veC�have�Ma’am��A�Ma’amC�madam�Md.��A�Md.�Messrs.��A�Messrs.�Mich.��A�Mich.C�Michigan�Might've��A�MightC�might�A�'ve�Mightn't��A�MightC�might�A�n'tC�not�Mightn't've��A�MightC�might�A�n'tC�not�A�'veC�have�Mightnt��A�MightC�might�A�ntC�not�Mightntve��A�MightC�might�A�ntC�not�A�veC�have�Mightn’t��A�MightC�might�A�n’tC�not�Mightn’t’ve��A�MightC�might�A�n’tC�not�A�’veC�have�Mightve��A�MightC�might�A�ve�Might’ve��A�MightC�might�A�’ve�Minn.��A�Minn.C�Minnesota�Miss.��A�Miss.C�Mississippi�Mo.��A�Mo.�Mont.��A�Mont.�Mr.��A�Mr.�Mrs.��A�Mrs.�Ms.��A�Ms.�Mt.��A�Mt.C�Mount�Must've��A�MustC�must�A�'ve�Mustn't��A�MustC�must�A�n'tC�not�Mustn't've��A�MustC�must�A�n'tC�not�A�'veC�have�Mustnt��A�MustC�must�A�ntC�not�Mustntve��A�MustC�must�A�ntC�not�A�veC�have�Mustn’t��A�MustC�must�A�n’tC�not�Mustn’t’ve��A�MustC�must�A�n’tC�not�A�’veC�have�Mustve��A�MustC�must�A�ve�Must’ve��A�MustC�must�A�’ve�N.C.��A�N.C.C�North Carolina�N.D.��A�N.D.C�North Dakota�N.H.��A�N.H.C�New Hampshire�N.J.��A�N.J.C�New Jersey�N.M.��A�N.M.C�New Mexico�N.Y.��A�N.Y.C�New York�Neb.��A�Neb.C�Nebraska�Nebr.��A�Nebr.C�Nebraska�Needn't��A�NeedC�need�A�n'tC�not�Needn't've��A�NeedC�need�A�n'tC�not�A�'veC�have�Neednt��A�NeedC�need�A�ntC�not�Needntve��A�NeedC�need�A�ntC�not�A�veC�have�Needn’t��A�NeedC�need�A�n’tC�not�Needn’t’ve��A�NeedC�need�A�n’tC�not�A�’veC�have�Nev.��A�Nev.C�Nevada�Not've��A�NotC�not�A�'veC�have�Nothin��A�NothinC�nothing�Nothin'��A�Nothin'C�nothing�Nothin’��A�Nothin’C�nothing�Notve��A�NotC�not�A�veC�have�Not’ve��A�NotC�not�A�’veC�have�Nov.��A�Nov.C�November�Nuthin��A�NuthinC�nothing�Nuthin'��A�Nuthin'C�nothing�Nuthin’��A�Nuthin’C�nothing�O'clock��A�O'clockC�o'clock�O.O��A�O.O�O.o��A�O.o�O_O��A�O_O�O_o��A�O_o�Oct.��A�Oct.C�October�Okla.��A�Okla.C�Oklahoma�Ol��A�OlC�old�Ol'��A�Ol'C�old�Ol’��A�Ol’C�old�Ore.��A�Ore.C�Oregon�Oughtn't��A�OughtC�ought�A�n'tC�not�Oughtn't've��A�OughtC�ought�A�n'tC�not�A�'veC�have�Oughtnt��A�OughtC�ought�A�ntC�not�Oughtntve��A�OughtC�ought�A�ntC�not�A�veC�have�Oughtn’t��A�OughtC�ought�A�n’tC�not�Oughtn’t’ve��A�OughtC�ought�A�n’tC�not�A�’veC�have�O’clock��A�O’clockC�o'clock�Pa.��A�Pa.C�Pennsylvania�Ph.D.��A�Ph.D.�Prof.��A�Prof.�Rep.��A�Rep.�Rev.��A�Rev.�S.C.��A�S.C.C�South Carolina�Sen.��A�Sen.�Sep.��A�Sep.C�September�Sept.��A�Sept.C�September�Shan't��A�ShaC�shall�A�n'tC�not�Shan't've��A�ShaC�shall�A�n'tC�not�A�'veC�have�Shant��A�ShaC�shall�A�ntC�not�Shantve��A�ShaC�shall�A�ntC�not�A�veC�have�Shan’t��A�ShaC�shall�A�n’tC�not�Shan’t’ve��A�ShaC�shall�A�n’tC�not�A�’veC�have�She'd��A�SheC�she�A�'dC�'d�She'd've��A�SheC�she�A�'dC�would�A�'veC�have�She'll��A�SheC�she�A�'llC�will�She'll've��A�SheC�she�A�'llC�will�A�'veC�have�She's��A�SheC�she�A�'sC�'s�Shedve��A�SheC�she�A�dC�would�A�veC�have�Shellve��A�SheC�she�A�llC�will�A�veC�have�Shes��A�SheC�she�A�s�She’d��A�SheC�she�A�’dC�'d�She’d’ve��A�SheC�she�A�’dC�would�A�’veC�have�She’ll��A�SheC�she�A�’llC�will�She’ll’ve��A�SheC�she�A�’llC�will�A�’veC�have�She’s��A�SheC�she�A�’sC�'s�Should've��A�ShouldC�should�A�'ve�Shouldn't��A�ShouldC�should�A�n'tC�not�Shouldn't've��A�ShouldC�should�A�n'tC�not�A�'veC�have�Shouldnt��A�ShouldC�should�A�ntC�not�Shouldntve��A�ShouldC�should�A�ntC�not�A�veC�have�Shouldn’t��A�ShouldC�should�A�n’tC�not�Shouldn’t’ve��A�ShouldC�should�A�n’tC�not�A�’veC�have�Shouldve��A�ShouldC�should�A�ve�Should’ve��A�ShouldC�should�A�’ve�Somethin��A�SomethinC�something�Somethin'��A�Somethin'C�something�Somethin’��A�Somethin’C�something�St.��A�St.�Tenn.��A�Tenn.C�Tennessee�That'd��A�ThatC�that�A�'dC�'d�That'd've��A�ThatC�that�A�'dC�would�A�'veC�have�That'll��A�ThatC�that�A�'llC�will�That'll've��A�ThatC�that�A�'llC�will�A�'veC�have�That's��A�ThatC�that�A�'sC�'s�Thatd��A�ThatC�that�A�dC�'d�Thatdve��A�ThatC�that�A�dC�would�A�veC�have�Thatll��A�ThatC�that�A�llC�will�Thatllve��A�ThatC�that�A�llC�will�A�veC�have�Thats��A�ThatC�that�A�s�That’d��A�ThatC�that�A�’dC�'d�That’d’ve��A�ThatC�that�A�’dC�would�A�’veC�have�That’ll��A�ThatC�that�A�’llC�will�That’ll’ve��A�ThatC�that�A�’llC�will�A�’veC�have�That’s��A�ThatC�that�A�’sC�'s�There'd��A�ThereC�there�A�'dC�'d�There'd've��A�ThereC�there�A�'dC�would�A�'veC�have�There'll��A�ThereC�there�A�'llC�will�There'll've��A�ThereC�there�A�'llC�will�A�'veC�have�There're��A�ThereC�there�A�'reC�are�There's��A�ThereC�there�A�'sC�'s�There've��A�ThereC�there�A�'ve�Thered��A�ThereC�there�A�dC�'d�Theredve��A�ThereC�there�A�dC�would�A�veC�have�Therell��A�ThereC�there�A�llC�will�Therellve��A�ThereC�there�A�llC�will�A�veC�have�Therere��A�ThereC�there�A�reC�are�Theres��A�ThereC�there�A�s�Thereve��A�There�A�veC�have�There’d��A�ThereC�there�A�’dC�'d�There’d’ve��A�ThereC�there�A�’dC�would�A�’veC�have�There’ll��A�ThereC�there�A�’llC�will�There’ll’ve��A�ThereC�there�A�’llC�will�A�’veC�have�There’re��A�ThereC�there�A�’reC�are�There’s��A�ThereC�there�A�’sC�'s�There’ve��A�ThereC�there�A�’ve�These'd��A�TheseC�these�A�'dC�'d�These'd've��A�TheseC�these�A�'dC�would�A�'veC�have�These'll��A�TheseC�these�A�'llC�will�These'll've��A�TheseC�these�A�'llC�will�A�'veC�have�These're��A�TheseC�these�A�'reC�are�These've��A�TheseC�these�A�'ve�Thesed��A�TheseC�these�A�dC�'d�Thesedve��A�TheseC�these�A�dC�would�A�veC�have�Thesell��A�TheseC�these�A�llC�will�Thesellve��A�TheseC�these�A�llC�will�A�veC�have�Thesere��A�TheseC�these�A�reC�are�Theseve��A�These�A�veC�have�These’d��A�TheseC�these�A�’dC�'d�These’d’ve��A�TheseC�these�A�’dC�would�A�’veC�have�These’ll��A�TheseC�these�A�’llC�will�These’ll’ve��A�TheseC�these�A�’llC�will�A�’veC�have�These’re��A�TheseC�these�A�’reC�are�These’ve��A�TheseC�these�A�’ve�They'd��A�TheyC�they�A�'dC�'d�They'd've��A�TheyC�they�A�'dC�would�A�'veC�have�They'll��A�TheyC�they�A�'llC�will�They'll've��A�TheyC�they�A�'llC�will�A�'veC�have�They're��A�TheyC�they�A�'reC�are�They've��A�TheyC�they�A�'veC�have�Theyd��A�TheyC�they�A�dC�'d�Theydve��A�TheyC�they�A�dC�would�A�veC�have�Theyll��A�TheyC�they�A�llC�will�Theyllve��A�TheyC�they�A�llC�will�A�veC�have�Theyre��A�TheyC�they�A�reC�are�Theyve��A�TheyC�they�A�veC�have�They’d��A�TheyC�they�A�’dC�'d�They’d’ve��A�TheyC�they�A�’dC�would�A�’veC�have�They’ll��A�TheyC�they�A�’llC�will�They’ll’ve��A�TheyC�they�A�’llC�will�A�’veC�have�They’re��A�TheyC�they�A�’reC�are�They’ve��A�TheyC�they�A�’veC�have�This'd��A�ThisC�this�A�'dC�'d�This'd've��A�ThisC�this�A�'dC�would�A�'veC�have�This'll��A�ThisC�this�A�'llC�will�This'll've��A�ThisC�this�A�'llC�will�A�'veC�have�This's��A�ThisC�this�A�'sC�'s�Thisd��A�ThisC�this�A�dC�'d�Thisdve��A�ThisC�this�A�dC�would�A�veC�have�Thisll��A�ThisC�this�A�llC�will�Thisllve��A�ThisC�this�A�llC�will�A�veC�have�Thiss��A�ThisC�this�A�s�This’d��A�ThisC�this�A�’dC�'d�This’d’ve��A�ThisC�this�A�’dC�would�A�’veC�have�This’ll��A�ThisC�this�A�’llC�will�This’ll’ve��A�ThisC�this�A�’llC�will�A�’veC�have�This’s��A�ThisC�this�A�’sC�'s�Those'd��A�ThoseC�those�A�'dC�'d�Those'd've��A�ThoseC�those�A�'dC�would�A�'veC�have�Those'll��A�ThoseC�those�A�'llC�will�Those'll've��A�ThoseC�those�A�'llC�will�A�'veC�have�Those're��A�ThoseC�those�A�'reC�are�Those've��A�ThoseC�those�A�'ve�Thosed��A�ThoseC�those�A�dC�'d�Thosedve��A�ThoseC�those�A�dC�would�A�veC�have�Thosell��A�ThoseC�those�A�llC�will�Thosellve��A�ThoseC�those�A�llC�will�A�veC�have�Thosere��A�ThoseC�those�A�reC�are�Thoseve��A�Those�A�veC�have�Those’d��A�ThoseC�those�A�’dC�'d�Those’d’ve��A�ThoseC�those�A�’dC�would�A�’veC�have�Those’ll��A�ThoseC�those�A�’llC�will�Those’ll’ve��A�ThoseC�those�A�’llC�will�A�’veC�have�Those’re��A�ThoseC�those�A�’reC�are�Those’ve��A�ThoseC�those�A�’ve�V.V��A�V.V�V_V��A�V_V�Va.��A�Va.C�Virginia�Wash.��A�Wash.C�Washington�Wasn't��A�WasC�was�A�n'tC�not�Wasnt��A�WasC�was�A�ntC�not�Wasn’t��A�WasC�was�A�n’tC�not�We'd��A�WeC�we�A�'dC�'d�We'd've��A�WeC�we�A�'dC�would�A�'veC�have�We'll��A�WeC�we�A�'llC�will�We'll've��A�WeC�we�A�'llC�will�A�'veC�have�We're��A�WeC�we�A�'reC�are�We've��A�WeC�we�A�'veC�have�Wed��A�WeC�we�A�dC�'d�Wedve��A�WeC�we�A�dC�would�A�veC�have�Wellve��A�WeC�we�A�llC�will�A�veC�have�Weren't��A�WereC�were�A�n'tC�not�Werent��A�WereC�were�A�ntC�not�Weren’t��A�WereC�were�A�n’tC�not�Weve��A�WeC�we�A�veC�have�We’d��A�WeC�we�A�’dC�'d�We’d’ve��A�WeC�we�A�’dC�would�A�’veC�have�We’ll��A�WeC�we�A�’llC�will�We’ll’ve��A�WeC�we�A�’llC�will�A�’veC�have�We’re��A�WeC�we�A�’reC�are�We’ve��A�WeC�we�A�’veC�have�What'd��A�WhatC�what�A�'dC�'d�What'd've��A�WhatC�what�A�'dC�would�A�'veC�have�What'll��A�WhatC�what�A�'llC�will�What'll've��A�WhatC�what�A�'llC�will�A�'veC�have�What're��A�WhatC�what�A�'reC�are�What's��A�WhatC�what�A�'sC�'s�What've��A�WhatC�what�A�'ve�Whatd��A�WhatC�what�A�dC�'d�Whatdve��A�WhatC�what�A�dC�would�A�veC�have�Whatll��A�WhatC�what�A�llC�will�Whatllve��A�WhatC�what�A�llC�will�A�veC�have�Whatre��A�WhatC�what�A�reC�are�Whats��A�WhatC�what�A�s�Whatve��A�What�A�veC�have�What’d��A�WhatC�what�A�’dC�'d�What’d’ve��A�WhatC�what�A�’dC�would�A�’veC�have�What’ll��A�WhatC�what�A�’llC�will�What’ll’ve��A�WhatC�what�A�’llC�will�A�’veC�have�What’re��A�WhatC�what�A�’reC�are�What’s��A�WhatC�what�A�’sC�'s�What’ve��A�WhatC�what�A�’ve�When'd��A�WhenC�when�A�'dC�'d�When'd've��A�WhenC�when�A�'dC�would�A�'veC�have�When'll��A�WhenC�when�A�'llC�will�When'll've��A�WhenC�when�A�'llC�will�A�'veC�have�When're��A�WhenC�when�A�'reC�are�When's��A�WhenC�when�A�'sC�'s�When've��A�WhenC�when�A�'ve�Whend��A�WhenC�when�A�dC�'d�Whendve��A�WhenC�when�A�dC�would�A�veC�have�Whenll��A�WhenC�when�A�llC�will�Whenllve��A�WhenC�when�A�llC�will�A�veC�have�Whenre��A�WhenC�when�A�reC�are�Whens��A�WhenC�when�A�s�Whenve��A�When�A�veC�have�When’d��A�WhenC�when�A�’dC�'d�When’d’ve��A�WhenC�when�A�’dC�would�A�’veC�have�When’ll��A�WhenC�when�A�’llC�will�When’ll’ve��A�WhenC�when�A�’llC�will�A�’veC�have�When’re��A�WhenC�when�A�’reC�are�When’s��A�WhenC�when�A�’sC�'s�When’ve��A�WhenC�when�A�’ve�Where'd��A�WhereC�where�A�'dC�'d�Where'd've��A�WhereC�where�A�'dC�would�A�'veC�have�Where'll��A�WhereC�where�A�'llC�will�Where'll've��A�WhereC�where�A�'llC�will�A�'veC�have�Where're��A�WhereC�where�A�'reC�are�Where's��A�WhereC�where�A�'sC�'s�Where've��A�WhereC�where�A�'ve�Whered��A�WhereC�where�A�dC�'d�Wheredve��A�WhereC�where�A�dC�would�A�veC�have�Wherell��A�WhereC�where�A�llC�will�Wherellve��A�WhereC�where�A�llC�will�A�veC�have�Wherere��A�WhereC�where�A�reC�are�Wheres��A�WhereC�where�A�s�Whereve��A�Where�A�veC�have�Where’d��A�WhereC�where�A�’dC�'d�Where’d’ve��A�WhereC�where�A�’dC�would�A�’veC�have�Where’ll��A�WhereC�where�A�’llC�will�Where’ll’ve��A�WhereC�where�A�’llC�will�A�’veC�have�Where’re��A�WhereC�where�A�’reC�are�Where’s��A�WhereC�where�A�’sC�'s�Where’ve��A�WhereC�where�A�’ve�Who'd��A�WhoC�who�A�'dC�'d�Who'd've��A�WhoC�who�A�'dC�would�A�'veC�have�Who'll��A�WhoC�who�A�'llC�will�Who'll've��A�WhoC�who�A�'llC�will�A�'veC�have�Who're��A�WhoC�who�A�'reC�are�Who's��A�WhoC�who�A�'sC�'s�Who've��A�WhoC�who�A�'ve�Whod��A�WhoC�who�A�dC�'d�Whodve��A�WhoC�who�A�dC�would�A�veC�have�Wholl��A�WhoC�who�A�llC�will�Whollve��A�WhoC�who�A�llC�will�A�veC�have�Whos��A�WhoC�who�A�s�Whove��A�Who�A�veC�have�Who’d��A�WhoC�who�A�’dC�'d�Who’d’ve��A�WhoC�who�A�’dC�would�A�’veC�have�Who’ll��A�WhoC�who�A�’llC�will�Who’ll’ve��A�WhoC�who�A�’llC�will�A�’veC�have�Who’re��A�WhoC�who�A�’reC�are�Who’s��A�WhoC�who�A�’sC�'s�Who’ve��A�WhoC�who�A�’ve�Why'd��A�WhyC�why�A�'dC�'d�Why'd've��A�WhyC�why�A�'dC�would�A�'veC�have�Why'll��A�WhyC�why�A�'llC�will�Why'll've��A�WhyC�why�A�'llC�will�A�'veC�have�Why're��A�WhyC�why�A�'reC�are�Why's��A�WhyC�why�A�'sC�'s�Why've��A�WhyC�why�A�'ve�Whyd��A�WhyC�why�A�dC�'d�Whydve��A�WhyC�why�A�dC�would�A�veC�have�Whyll��A�WhyC�why�A�llC�will�Whyllve��A�WhyC�why�A�llC�will�A�veC�have�Whyre��A�WhyC�why�A�reC�are�Whys��A�WhyC�why�A�s�Whyve��A�Why�A�veC�have�Why’d��A�WhyC�why�A�’dC�'d�Why’d’ve��A�WhyC�why�A�’dC�would�A�’veC�have�Why’ll��A�WhyC�why�A�’llC�will�Why’ll’ve��A�WhyC�why�A�’llC�will�A�’veC�have�Why’re��A�WhyC�why�A�’reC�are�Why’s��A�WhyC�why�A�’sC�'s�Why’ve��A�WhyC�why�A�’ve�Wis.��A�Wis.C�Wisconsin�Won't��A�WoC�will�A�n'tC�not�Won't've��A�WoC�will�A�n'tC�not�A�'veC�have�Wont��A�WoC�will�A�ntC�not�Wontve��A�WoC�will�A�ntC�not�A�veC�have�Won’t��A�WoC�will�A�n’tC�not�Won’t’ve��A�WoC�will�A�n’tC�not�A�’veC�have�Would've��A�WouldC�would�A�'ve�Wouldn't��A�WouldC�would�A�n'tC�not�Wouldn't've��A�WouldC�would�A�n'tC�not�A�'veC�have�Wouldnt��A�WouldC�would�A�ntC�not�Wouldntve��A�WouldC�would�A�ntC�not�A�veC�have�Wouldn’t��A�WouldC�would�A�n’tC�not�Wouldn’t’ve��A�WouldC�would�A�n’tC�not�A�’veC�have�Wouldve��A�WouldC�would�A�ve�Would’ve��A�WouldC�would�A�’ve�XD��A�XD�XDD��A�XDD�You'd��A�YouC�you�A�'dC�'d�You'd've��A�YouC�you�A�'dC�would�A�'veC�have�You'll��A�YouC�you�A�'llC�will�You'll've��A�YouC�you�A�'llC�will�A�'veC�have�You're��A�YouC�you�A�'reC�are�You've��A�YouC�you�A�'veC�have�Youd��A�YouC�you�A�dC�'d�Youdve��A�YouC�you�A�dC�would�A�veC�have�Youll��A�YouC�you�A�llC�will�Youllve��A�YouC�you�A�llC�will�A�veC�have�Youre��A�YouC�you�A�reC�are�Youve��A�YouC�you�A�veC�have�You’d��A�YouC�you�A�’dC�'d�You’d’ve��A�YouC�you�A�’dC�would�A�’veC�have�You’ll��A�YouC�you�A�’llC�will�You’ll’ve��A�YouC�you�A�’llC�will�A�’veC�have�You’re��A�YouC�you�A�’reC�are�You’ve��A�YouC�you�A�’veC�have�[-:��A�[-:�[:��A�[:�[=��A�[=�\")��A�\")�\n��A�\n�\t��A�\t�]=��A�]=�^_^��A�^_^�^__^��A�^__^�^___^��A�^___^�a.��A�a.�a.m.��A�a.m.�ain't��A�ai�A�n'tC�not�aint��A�ai�A�ntC�not�ain’t��A�ai�A�n’tC�not�and/or��A�and/orC�and/or�aren't��A�areC�are�A�n'tC�not�arent��A�areC�are�A�ntC�not�aren’t��A�areC�are�A�n’tC�not�b.��A�b.�c'mon��A�c'mC�come�A�on�c.��A�c.�can't��A�caC�can�A�n'tC�not�can't've��A�caC�can�A�n'tC�not�A�'veC�have�cannot��A�can�A�not�cant��A�caC�can�A�ntC�not�cantve��A�caC�can�A�ntC�not�A�veC�have�can’t��A�caC�can�A�n’tC�not�can’t’ve��A�caC�can�A�n’tC�not�A�’veC�have�co.��A�co.�could've��A�couldC�could�A�'ve�couldn't��A�couldC�could�A�n'tC�not�couldn't've��A�couldC�could�A�n'tC�not�A�'veC�have�couldnt��A�couldC�could�A�ntC�not�couldntve��A�couldC�could�A�ntC�not�A�veC�have�couldn’t��A�couldC�could�A�n’tC�not�couldn’t’ve��A�couldC�could�A�n’tC�not�A�’veC�have�couldve��A�couldC�could�A�ve�could’ve��A�couldC�could�A�’ve�c’mon��A�c’mC�come�A�on�d.��A�d.�daren't��A�dareC�dare�A�n'tC�not�darent��A�dareC�dare�A�ntC�not�daren’t��A�dareC�dare�A�n’tC�not�didn't��A�didC�do�A�n'tC�not�didn't've��A�didC�do�A�n'tC�not�A�'veC�have�didnt��A�didC�do�A�ntC�not�didntve��A�didC�do�A�ntC�not�A�veC�have�didn’t��A�didC�do�A�n’tC�not�didn’t’ve��A�didC�do�A�n’tC�not�A�’veC�have�doesn't��A�doesC�does�A�n'tC�not�doesn't've��A�doesC�does�A�n'tC�not�A�'veC�have�doesnt��A�doesC�does�A�ntC�not�doesntve��A�doesC�does�A�ntC�not�A�veC�have�doesn’t��A�doesC�does�A�n’tC�not�doesn’t’ve��A�doesC�does�A�n’tC�not�A�’veC�have�doin��A�doinC�doing�doin'��A�doin'C�doing�doin’��A�doin’C�doing�don't��A�doC�do�A�n'tC�not�don't've��A�doC�do�A�n'tC�not�A�'veC�have�dont��A�doC�do�A�ntC�not�dontve��A�doC�do�A�ntC�not�A�veC�have�don’t��A�doC�do�A�n’tC�not�don’t’ve��A�doC�do�A�n’tC�not�A�’veC�have�e.��A�e.�e.g.��A�e.g.�em��A�emC�them�f.��A�f.�g.��A�g.�goin��A�goinC�going�goin'��A�goin'C�going�goin’��A�goin’C�going�gonna��A�gonC�going�A�naC�to�gotta��A�got�A�taC�to�h.��A�h.�hadn't��A�hadC�have�A�n'tC�not�hadn't've��A�hadC�have�A�n'tC�not�A�'veC�have�hadnt��A�hadC�have�A�ntC�not�hadntve��A�hadC�have�A�ntC�not�A�veC�have�hadn’t��A�hadC�have�A�n’tC�not�hadn’t’ve��A�hadC�have�A�n’tC�not�A�’veC�have�hasn't��A�hasC�has�A�n'tC�not�hasnt��A�hasC�has�A�ntC�not�hasn’t��A�hasC�has�A�n’tC�not�haven't��A�haveC�have�A�n'tC�not�havent��A�haveC�have�A�ntC�not�haven’t��A�haveC�have�A�n’tC�not�havin��A�havinC�having�havin'��A�havin'C�having�havin’��A�havin’C�having�he'd��A�heC�he�A�'dC�'d�he'd've��A�heC�he�A�'dC�would�A�'veC�have�he'll��A�heC�he�A�'llC�will�he'll've��A�heC�he�A�'llC�will�A�'veC�have�he's��A�heC�he�A�'sC�'s�hed��A�heC�he�A�dC�'d�hedve��A�heC�he�A�dC�would�A�veC�have�hellve��A�heC�he�A�llC�will�A�veC�have�hes��A�heC�he�A�s�he’d��A�heC�he�A�’dC�'d�he’d’ve��A�heC�he�A�’dC�would�A�’veC�have�he’ll��A�heC�he�A�’llC�will�he’ll’ve��A�heC�he�A�’llC�will�A�’veC�have�he’s��A�heC�he�A�’sC�'s�how'd��A�howC�how�A�'dC�'d�how'd've��A�howC�how�A�'dC�would�A�'veC�have�how'd'y��A�how�A�'d�A�'yC�you�how'll��A�howC�how�A�'llC�will�how'll've��A�howC�how�A�'llC�will�A�'veC�have�how're��A�howC�how�A�'reC�are�how's��A�howC�how�A�'sC�'s�how've��A�howC�how�A�'ve�howd��A�howC�how�A�dC�'d�howdve��A�howC�how�A�dC�would�A�veC�have�howll��A�howC�how�A�llC�will�howllve��A�howC�how�A�llC�will�A�veC�have�howre��A�howC�how�A�reC�are�hows��A�howC�how�A�s�howve��A�how�A�veC�have�how’d��A�howC�how�A�’dC�'d�how’d’ve��A�howC�how�A���dC�would�A�’veC�have�how’d’y��A�how�A�’d�A�’yC�you�how’ll��A�howC�how�A�’llC�will�how’ll’ve��A�howC�how�A�’llC�will�A�’veC�have�how’re��A�howC�how�A�’reC�are�how’s��A�howC�how�A�’sC�'s�how’ve��A�howC�how�A�’ve�i'd��A�iC�i�A�'dC�'d�i'd've��A�iC�i�A�'dC�would�A�'veC�have�i'll��A�iC�i�A�'llC�will�i'll've��A�iC�i�A�'llC�will�A�'veC�have�i'm��A�iC�i�A�'mC�am�i'ma��A�iC�i�A�'mC�am�A�aC�gonna�i've��A�iC�i�A�'veC�have�i.��A�i.�i.e.��A�i.e.�id��A�iC�i�A�dC�'d�idve��A�iC�i�A�dC�would�A�veC�have�illve��A�iC�i�A�llC�will�A�veC�have�im��A�iC�i�A�m�ima��A�iC�i�A�mC�am�A�aC�gonna�isn't��A�isC�is�A�n'tC�not�isnt��A�isC�is�A�ntC�not�isn’t��A�isC�is�A�n’tC�not�it'd��A�itC�it�A�'dC�'d�it'd've��A�itC�it�A�'dC�would�A�'veC�have�it'll��A�itC�it�A�'llC�will�it'll've��A�itC�it�A�'llC�will�A�'veC�have�it's��A�itC�it�A�'sC�'s�itd��A�itC�it�A�dC�'d�itdve��A�itC�it�A�dC�would�A�veC�have�itll��A�itC�it�A�llC�will�itllve��A�itC�it�A�llC�will�A�veC�have�it’d��A�itC�it�A�’dC�'d�it’d’ve��A�itC�it�A�’dC�would�A�’veC�have�it’ll��A�itC�it�A�’llC�will�it’ll’ve��A�itC�it�A�’llC�will�A�’veC�have�it’s��A�itC�it�A�’sC�'s�ive��A�iC�i�A�veC�have�i’d��A�iC�i�A�’dC�'d�i’d’ve��A�iC�i�A�’dC�would�A�’veC�have�i’ll��A�iC�i�A�’llC�will�i’ll’ve��A�iC�i�A�’llC�will�A�’veC�have�i’m��A�iC�i�A�’mC�am�i’ma��A�iC�i�A�’mC�am�A�aC�gonna�i’ve��A�iC�i�A�’veC�have�j.��A�j.�k.��A�k.�l.��A�l.�let's��A�let�A�'sC�us�let’s��A�let�A�’sC�us�ll��A�llC�will�lovin��A�lovinC�loving�lovin'��A�lovin'C�loving�lovin’��A�lovin’C�loving�m.��A�m.�ma'am��A�ma'amC�madam�mayn't��A�mayC�may�A�n'tC�not�mayn't've��A�mayC�may�A�n'tC�not�A�'veC�have�maynt��A�mayC�may�A�ntC�not�mayntve��A�mayC�may�A�ntC�not�A�veC�have�mayn’t��A�mayC�may�A�n’tC�not�mayn’t’ve��A�mayC�may�A�n’tC�not�A�’veC�have�ma’am��A�ma’amC�madam�might've��A�mightC�might�A�'ve�mightn't��A�mightC�might�A�n'tC�not�mightn't've��A�mightC�might�A�n'tC�not�A�'veC�have�mightnt��A�mightC�might�A�ntC�not�mightntve��A�mightC�might�A�ntC�not�A�veC�have�mightn’t��A�mightC�might�A�n’tC�not�mightn’t’ve��A�mightC�might�A�n’tC�not�A�’veC�have�mightve��A�mightC�might�A�ve�might’ve��A�mightC�might�A�’ve�must've��A�mustC�must�A�'ve�mustn't��A�mustC�must�A�n'tC�not�mustn't've��A�mustC�must�A�n'tC�not�A�'veC�have�mustnt��A�mustC�must�A�ntC�not�mustntve��A�mustC�must�A�ntC�not�A�veC�have�mustn’t��A�mustC�must�A�n’tC�not�mustn’t’ve��A�mustC�must�A�n’tC�not�A�’veC�have�mustve��A�mustC�must�A�ve�must’ve��A�mustC�must�A�’ve�n.��A�n.�needn't��A�needC�need�A�n'tC�not�needn't've��A�needC�need�A�n'tC�not�A�'veC�have�neednt��A�needC�need�A�ntC�not�needntve��A�needC�need�A�ntC�not�A�veC�have�needn’t��A�needC�need�A�n’tC�not�needn’t’ve��A�needC�need�A�n’tC�not�A�’veC�have�not've��A�not�A�'veC�have�nothin��A�nothinC�nothing�nothin'��A�nothin'C�nothing�nothin’��A�nothin’C�nothing�notve��A�not�A�veC�have�not’ve��A�not�A�’veC�have�nuff��A�nuffC�enough�nuthin��A�nuthinC�nothing�nuthin'��A�nuthin'C�nothing�nuthin’��A�nuthin’C�nothing�o'clock��A�o'clockC�o'clock�o.��A�o.�o.0��A�o.0�o.O��A�o.O�o.o��A�o.o�o_0��A�o_0�o_O��A�o_O�o_o��A�o_o�ol��A�olC�old�ol'��A�ol'C�old�ol’��A�ol’C�old�oughtn't��A�oughtC�ought�A�n'tC�not�oughtn't've��A�oughtC�ought�A�n'tC�not�A�'veC�have�oughtnt��A�oughtC�ought�A�ntC�not�oughtntve��A�oughtC�ought�A�ntC�not�A�veC�have�oughtn’t��A�oughtC�ought�A�n’tC�not�oughtn’t’ve��A�oughtC�ought�A�n’tC�not�A�’veC�have�o’clock��A�o’clockC�o'clock�p.��A�p.�p.m.��A�p.m.�q.��A�q.�r.��A�r.�s.��A�s.�shan't��A�shaC�shall�A�n'tC�not�shan't've��A�shaC�shall�A�n'tC�not�A�'veC�have�shant��A�shaC�shall�A�ntC�not�shantve��A�shaC�shall�A�ntC�not�A�veC�have�shan’t��A�shaC�shall�A�n’tC�not�shan’t’ve��A�shaC�shall�A�n’tC�not�A�’veC�have�she'd��A�sheC�she�A�'dC�'d�she'd've��A�sheC�she�A�'dC�would�A�'veC�have�she'll��A�sheC�she�A�'llC�will�she'll've��A�sheC�she�A�'llC�will�A�'veC�have�she's��A�sheC�she�A�'sC�'s�shedve��A�sheC�she�A�dC�would�A�veC�have�shellve��A�sheC�she�A�llC�will�A�veC�have�shes��A�sheC�she�A�s�she’d��A�sheC�she�A�’dC�'d�she’d’ve��A�sheC�she�A�’dC�would�A�’veC�have�she’ll��A�sheC�she�A�’llC�will�she’ll’ve��A�sheC�she�A�’llC�will�A�’veC�have�she’s��A�sheC�she�A�’sC�'s�should've��A�shouldC�should�A�'ve�shouldn't��A�shouldC�should�A�n'tC�not�shouldn't've��A�shouldC�should�A�n'tC�not�A�'veC�have�shouldnt��A�shouldC�should�A�ntC�not�shouldntve��A�shouldC�should�A�ntC�not�A�veC�have�shouldn’t��A�shouldC�should�A�n’tC�not�shouldn’t’ve��A�shouldC�should�A�n’tC�not�A�’veC�have�shouldve��A�shouldC�should�A�ve�should’ve��A�shouldC�should�A�’ve�somethin��A�somethinC�something�somethin'��A�somethin'C�something�somethin’��A�somethin’C�something�t.��A�t.�that'd��A�thatC�that�A�'dC�'d�that'd've��A�thatC�that�A�'dC�would�A�'veC�have�that'll��A�thatC�that�A�'llC�will�that'll've��A�thatC�that�A�'llC�will�A�'veC�have�that's��A�thatC�that�A�'sC�'s�thatd��A�thatC�that�A�dC�'d�thatdve��A�thatC�that�A�dC�would�A�veC�have�thatll��A�thatC�that�A�llC�will�thatllve��A�thatC�that�A�llC�will�A�veC�have�thats��A�thatC�that�A�s�that’d��A�thatC�that�A�’dC�'d�that’d’ve��A�thatC�that�A�’dC�would�A�’veC�have�that’ll��A�thatC�that�A�’llC�will�that’ll’ve��A�thatC�that�A�’llC�will�A�’veC�have�that’s��A�thatC�that�A�’sC�'s�there'd��A�thereC�there�A�'dC�'d�there'd've��A�thereC�there�A�'dC�would�A�'veC�have�there'll��A�thereC�there�A�'llC�will�there'll've��A�thereC�there�A�'llC�will�A�'veC�have�there're��A�thereC�there�A�'reC�are�there's��A�thereC�there�A�'sC�'s�there've��A�thereC�there�A�'ve�thered��A�thereC�there�A�dC�'d�theredve��A�thereC�there�A�dC�would�A�veC�have�therell��A�thereC�there�A�llC�will�therellve��A�thereC�there�A�llC�will�A�veC�have�therere��A�thereC�there�A�reC�are�theres��A�thereC�there�A�s�thereve��A�there�A�veC�have�there’d��A�thereC�there�A�’dC�'d�there’d’ve��A�thereC�there�A�’dC�would�A�’veC�have�there’ll��A�thereC�there�A�’llC�will�there’ll’ve��A�thereC�there�A�’llC�will�A�’veC�have�there’re��A�thereC�there�A�’reC�are�there’s��A�thereC�there�A�’sC�'s�there’ve��A�thereC�there�A�’ve�these'd��A�theseC�these�A�'dC�'d�these'd've��A�theseC�these�A�'dC�would�A�'veC�have�these'll��A�theseC�these�A�'llC�will�these'll've��A�theseC�these�A�'llC�will�A�'veC�have�these're��A�theseC�these�A�'reC�are�these've��A�theseC�these�A�'ve�thesed��A�theseC�these�A�dC�'d�thesedve��A�theseC�these�A�dC�would�A�veC�have�thesell��A�theseC�these�A�llC�will�thesellve��A�theseC�these�A�llC�will�A�veC�have�thesere��A�theseC�these�A�reC�are�theseve��A�these�A�veC�have�these’d��A�theseC�these�A�’dC�'d�these’d’ve��A�theseC�these�A�’dC�would�A�’veC�have�these’ll��A�theseC�these�A�’llC�will�these’ll’ve��A�theseC�these�A�’llC�will�A�’veC�have�these’re��A�theseC�these�A�’reC�are�these’ve��A�theseC�these�A�’ve�they'd��A�theyC�they�A�'dC�'d�they'd've��A�theyC�they�A�'dC�would�A�'veC�have�they'll��A�theyC�they�A�'llC�will�they'll've��A�theyC�they�A�'llC�will�A�'veC�have�they're��A�theyC�they�A�'reC�are�they've��A�theyC�they�A�'veC�have�theyd��A�theyC�they�A�dC�'d�theydve��A�theyC�they�A�dC�would�A�veC�have�theyll��A�theyC�they�A�llC�will�theyllve��A�theyC�they�A�llC�will�A�veC�have�theyre��A�theyC�they�A�reC�are�theyve��A�theyC�they�A�veC�have�they’d��A�theyC�they�A�’dC�'d�they’d’ve��A�theyC�they�A�’dC�would�A�’veC�have�they’ll��A�theyC�they�A�’llC�will�they’ll’ve��A�theyC�they�A�’llC�will�A�’veC�have�they’re��A�theyC�they�A�’reC�are�they’ve��A�theyC�they�A�’veC�have�this'd��A�thisC�this�A�'dC�'d�this'd've��A�thisC�this�A�'dC�would�A�'veC�have�this'll��A�thisC�this�A�'llC�will�this'll've��A�thisC�this�A�'llC�will�A�'veC�have�this's��A�thisC�this�A�'sC�'s�thisd��A�thisC�this�A�dC�'d�thisdve��A�thisC�this�A�dC�would�A�veC�have�thisll��A�thisC�this�A�llC�will�thisllve��A�thisC�this�A�llC�will�A�veC�have�thiss��A�thisC�this�A�s�this’d��A�thisC�this�A�’dC�'d�this’d’ve��A�thisC�this�A�’dC�would�A�’veC�have�this’ll��A�thisC�this�A�’llC�will�this’ll’ve��A�thisC�this�A�’llC�will�A�’veC�have�this’s��A�thisC�this�A�’sC�'s�those'd��A�thoseC�those�A�'dC�'d�those'd've��A�thoseC�those�A�'dC�would�A�'veC�have�those'll��A�thoseC�those�A�'llC�will�those'll've��A�thoseC�those�A�'llC�will�A�'veC�have�those're��A�thoseC�those�A�'reC�are�those've��A�thoseC�those�A�'ve�thosed��A�thoseC�those�A�dC�'d�thosedve��A�thoseC�those�A�dC�would�A�veC�have�thosell��A�thoseC�those�A�llC�will�thosellve��A�thoseC�those�A�llC�will�A�veC�have�thosere��A�thoseC�those�A�reC�are�thoseve��A�those�A�veC�have�those’d��A�thoseC�those�A�’dC�'d�those’d’ve��A�thoseC�those�A�’dC�would�A�’veC�have�those’ll��A�thoseC�those�A�’llC�will�those’ll’ve��A�thoseC�those�A�’llC�will�A�’veC�have�those’re��A�thoseC�those�A�’reC�are�those’ve��A�thoseC�those�A�’ve�u.��A�u.�v.��A�v.�v.s.��A�v.s.�v.v��A�v.v�v_v��A�v_v�vs.��A�vs.�w.��A�w.�w/o��A�w/oC�without�wasn't��A�wasC�was�A�n'tC�not�wasnt��A�wasC�was�A�ntC�not�wasn’t��A�wasC�was�A�n’tC�not�we'd��A�weC�we�A�'dC�'d�we'd've��A�weC�we�A�'dC�would�A�'veC�have�we'll��A�weC�we�A�'llC�will�we'll've��A�weC�we�A�'llC�will�A�'veC�have�we're��A�weC�we�A�'reC�are�we've��A�weC�we�A�'veC�have�wed��A�weC�we�A�dC�'d�wedve��A�weC�we�A�dC�would�A�veC�have�wellve��A�weC�we�A�llC�will�A�veC�have�weren't��A�wereC�were�A�n'tC�not�werent��A�wereC�were�A�ntC�not�weren’t��A�wereC�were�A�n’tC�not�weve��A�weC�we�A�veC�have�we’d��A�weC�we�A�’dC�'d�we’d’ve��A�weC�we�A�’dC�would�A�’veC�have�we’ll��A�weC�we�A�’llC�will�we’ll’ve��A�weC�we�A�’llC�will�A�’veC�have�we’re��A�weC�we�A�’reC�are�we’ve��A�weC�we�A�’veC�have�what'd��A�whatC�what�A�'dC�'d�what'd've��A�whatC�what�A�'dC�would�A�'veC�have�what'll��A�whatC�what�A�'llC�will�what'll've��A�whatC�what�A�'llC�will�A�'veC�have�what're��A�whatC�what�A�'reC�are�what's��A�whatC�what�A�'sC�'s�what've��A�whatC�what�A�'ve�whatd��A�whatC�what�A�dC�'d�whatdve��A�whatC�what�A�dC�would�A�veC�have�whatll��A�whatC�what�A�llC�will�whatllve��A�whatC�what�A�llC�will�A�veC�have�whatre��A�whatC�what�A�reC�are�whats��A�whatC�what�A�s�whatve��A�what�A�veC�have�what’d��A�whatC�what�A�’dC�'d�what’d’ve��A�whatC�what�A�’dC�would�A�’veC�have�what’ll��A�whatC�what�A�’llC�will�what’ll’ve��A�whatC�what�A�’llC�will�A�’veC�have�what’re��A�whatC�what�A�’reC�are�what’s��A�whatC�what�A�’sC�'s�what’ve��A�whatC�what�A�’ve�when'd��A�whenC�when�A�'dC�'d�when'd've��A�whenC�when�A�'dC�would�A�'veC�have�when'll��A�whenC�when�A�'llC�will�when'll've��A�whenC�when�A�'llC�will�A�'veC�have�when're��A�whenC�when�A�'reC�are�when's��A�whenC�when�A�'sC�'s�when've��A�whenC�when�A�'ve�whend��A�whenC�when�A�dC�'d�whendve��A�whenC�when�A�dC�would�A�veC�have�whenll��A�whenC�when�A�llC�will�whenllve��A�whenC�when�A�llC�will�A�veC�have�whenre��A�whenC�when�A�reC�are�whens��A�whenC�when�A�s�whenve��A�when�A�veC�have�when’d��A�whenC�when�A�’dC�'d�when’d’ve��A�whenC�when�A�’dC�would�A�’veC�have�when’ll��A�whenC�when�A�’llC�will�when’ll’ve��A�whenC�when�A�’llC�will�A�’veC�have�when’re��A�whenC�when�A�’reC�are�when’s��A�whenC�when�A�’sC�'s�when’ve��A�whenC�when�A�’ve�where'd��A�whereC�where�A�'dC�'d�where'd've��A�whereC�where�A�'dC�would�A�'veC�have�where'll��A�whereC�where�A�'llC�will�where'll've��A�whereC�where�A�'llC�will�A�'veC�have�where're��A�whereC�where�A�'reC�are�where's��A�whereC�where�A�'sC�'s�where've��A�whereC�where�A�'ve�whered��A�whereC�where�A�dC�'d�wheredve��A�whereC�where�A�dC�would�A�veC�have�wherell��A�whereC�where�A�llC�will�wherellve��A�whereC�where�A�llC�will�A�veC�have�wherere��A�whereC�where�A�reC�are�wheres��A�whereC�where�A�s�whereve��A�where�A�veC�have�where’d��A�whereC�where�A�’dC�'d�where’d’ve��A�whereC�where�A�’dC�would�A�’veC�have�where’ll��A�whereC�where�A�’llC�will�where’ll’ve��A�whereC�where�A�’llC�will�A�’veC�have�where’re��A�whereC�where�A�’reC�are�where’s��A�whereC�where�A�’sC�'s�where’ve��A�whereC�where�A�’ve�who'd��A�whoC�who�A�'dC�'d�who'd've��A�whoC�who�A�'dC�would�A�'veC�have�who'll��A�whoC�who�A�'llC�will�who'll've��A�whoC�who�A�'llC�will�A�'veC�have�who're��A�whoC�who�A�'reC�are�who's��A�whoC�who�A�'sC�'s�who've��A�whoC�who�A�'ve�whod��A�whoC�who�A�dC�'d�whodve��A�whoC�who�A�dC�would�A�veC�have�wholl��A�whoC�who�A�llC�will�whollve��A�whoC�who�A�llC�will�A�veC�have�whos��A�whoC�who�A�s�whove��A�who�A�veC�have�who’d��A�whoC�who�A�’dC�'d�who’d’ve��A�whoC�who�A�’dC�would�A�’veC�have�who’ll��A�whoC�who�A�’llC�will�who’ll’ve��A�whoC�who�A�’llC�will�A�’veC�have�who’re��A�whoC�who�A�’reC�are�who’s��A�whoC�who�A�’sC�'s�who’ve��A�whoC�who�A�’ve�why'd��A�whyC�why�A�'dC�'d�why'd've��A�whyC�why�A�'dC�would�A�'veC�have�why'll��A�whyC�why�A�'llC�will�why'll've��A�whyC�why�A�'llC�will�A�'veC�have�why're��A�whyC�why�A�'reC�are�why's��A�whyC�why�A�'sC�'s�why've��A�whyC�why�A�'ve�whyd��A�whyC�why�A�dC�'d�whydve��A�whyC�why�A�dC�would�A�veC�have�whyll��A�whyC�why�A�llC�will�whyllve��A�whyC�why�A�llC�will�A�veC�have�whyre��A�whyC�why�A�reC�are�whys��A�whyC�why�A�s�whyve��A�why�A�veC�have�why’d��A�whyC�why�A�’dC�'d�why’d’ve��A�whyC�why�A�’dC�would�A�’veC�have�why’ll��A�whyC�why�A�’llC�will�why’ll’ve��A�whyC�why�A�’llC�will�A�’veC�have�why’re��A�whyC�why�A�’reC�are�why’s��A�whyC�why�A�’sC�'s�why’ve��A�whyC�why�A�’ve�won't��A�woC�will�A�n'tC�not�won't've��A�woC�will�A�n'tC�not�A�'veC�have�wont��A�woC�will�A�ntC�not�wontve��A�woC�will�A�ntC�not�A�veC�have�won’t��A�woC�will�A�n’tC�not�won’t’ve��A�woC�will�A�n’tC�not�A�’veC�have�would've��A�wouldC�would�A�'ve�wouldn't��A�wouldC�would�A�n'tC�not�wouldn't've��A�wouldC�would�A�n'tC�not�A�'veC�have�wouldnt��A�wouldC�would�A�ntC�not�wouldntve��A�wouldC�would�A�ntC�not�A�veC�have�wouldn’t��A�wouldC�would�A�n’tC�not�wouldn’t’ve��A�wouldC�would�A�n’tC�not�A�’veC�have�wouldve��A�wouldC�would�A�ve�would’ve��A�wouldC�would�A�’ve�x.��A�x.�xD��A�xD�xDD��A�xDD�y'all��A�y'C�you�A�all�y.��A�y.�yall��A�yC�you�A�all�you'd��A�youC�you�A�'dC�'d�you'd've��A�youC�you�A�'dC�would�A�'veC�have�you'll��A�youC�you�A�'llC�will�you'll've��A�youC�you�A�'llC�will�A�'veC�have�you're��A�youC�you�A�'reC�are�you've��A�youC�you�A�'veC�have�youd��A�youC�you�A�dC�'d�youdve��A�youC�you�A�dC�would�A�veC�have�youll��A�youC�you�A�llC�will�youllve��A�youC�you�A�llC�will�A�veC�have�youre��A�youC�you�A�reC�are�youve��A�youC�you�A�veC�have�you’d��A�youC�you�A�’dC�'d�you’d’ve��A�youC�you�A�’dC�would�A�’veC�have�you’ll��A�youC�you�A�’llC�will�you’ll’ve��A�youC�you�A�’llC�will�A�’veC�have�you’re��A�youC�you�A�’reC�are�you’ve��A�youC�you�A�’veC�have�y’all��A�y’C�you�A�all�z.��A�z.� ��A� C� �¯\(ツ)/¯��A�¯\(ツ)/¯�°C.��A�°�A�C�A�.�°F.��A�°�A�F�A�.�°K.��A�°�A�K�A�.�°c.��A�°�A�c�A�.�°f.��A�°�A�f�A�.�°k.��A�°�A�k�A�.�ä.��A�ä.�ö.��A�ö.�ü.��A�ü.�ಠ_ಠ��A�ಠ_ಠ�ಠ︵ಠ��A�ಠ︵ಠ�—��A�—�‘S��A�‘SC�'s�‘s��A�‘sC�'s�’��A�’�’Cause��A�’CauseC�because�’Cos��A�’CosC�because�’Coz��A�’CozC�because�’Cuz��A�’CuzC�because�’S��A�’SC�'s�’bout��A�’boutC�about�’cause��A�’causeC�because�’cos��A�’cosC�because�’coz��A�’cozC�because�’cuz��A�’cuzC�because�’d��A�’d�’em��A�’emC�them�’ll��A�’llC�will�’nuff��A�’nuffC�enough�’re��A�’reC�are�’s��A�’sC�'s�’’��A�’’�faster_heuristics�
|
transformer/cfg
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"max_batch_items":4096
|
3 |
+
}
|
transformer/model
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2b37ae232099fee5d731d8a34afff84f11eb454ae7e90545ec736c3fb8bae266
|
3 |
+
size 502030690
|
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,1682 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[
|
2 |
+
"\t",
|
3 |
+
"\n",
|
4 |
+
"\r",
|
5 |
+
"\r\n",
|
6 |
+
"\r\n ",
|
7 |
+
"\r\n ",
|
8 |
+
"\r\n ",
|
9 |
+
"\r\n ",
|
10 |
+
"\r\n ",
|
11 |
+
"\r\n \r\n ",
|
12 |
+
"\r\n \r\n \r\n ",
|
13 |
+
" ",
|
14 |
+
" \r\n",
|
15 |
+
" ",
|
16 |
+
" ",
|
17 |
+
" \r\n ",
|
18 |
+
" \r\n \r\n ",
|
19 |
+
" ",
|
20 |
+
" \r\n",
|
21 |
+
" \r\n ",
|
22 |
+
" ",
|
23 |
+
" ",
|
24 |
+
" ",
|
25 |
+
" ",
|
26 |
+
" ",
|
27 |
+
" ",
|
28 |
+
" ",
|
29 |
+
" ",
|
30 |
+
" \r\n ",
|
31 |
+
" \r\n ",
|
32 |
+
" ",
|
33 |
+
" ",
|
34 |
+
" \r\n ",
|
35 |
+
" ",
|
36 |
+
" ",
|
37 |
+
" \r\n",
|
38 |
+
" ",
|
39 |
+
" ",
|
40 |
+
" \r\n \r\n ",
|
41 |
+
" \r\n \r\n \r\n \r\n \r\n \r\n ",
|
42 |
+
" \r\n ",
|
43 |
+
" ",
|
44 |
+
" ",
|
45 |
+
" \r\n \r\n ",
|
46 |
+
" \r\n ",
|
47 |
+
" ",
|
48 |
+
" \r\n",
|
49 |
+
" \r\n ",
|
50 |
+
" \r\n ",
|
51 |
+
" \r\n ",
|
52 |
+
" \r\n",
|
53 |
+
" \r\n",
|
54 |
+
" \r\n",
|
55 |
+
" \r\n",
|
56 |
+
" \r\n",
|
57 |
+
" \r\n \r\n",
|
58 |
+
" \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n ",
|
59 |
+
" \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n ",
|
60 |
+
" \r\n \r\n ",
|
61 |
+
"\"",
|
62 |
+
"%",
|
63 |
+
"'",
|
64 |
+
"''",
|
65 |
+
"'-(",
|
66 |
+
"'-)",
|
67 |
+
"'Cause",
|
68 |
+
"'Cos",
|
69 |
+
"'Coz",
|
70 |
+
"'Cuz",
|
71 |
+
"'S",
|
72 |
+
"'X",
|
73 |
+
"'Xxx",
|
74 |
+
"'Xxxxx",
|
75 |
+
"'am",
|
76 |
+
"'bout",
|
77 |
+
"'cause",
|
78 |
+
"'cos",
|
79 |
+
"'coz",
|
80 |
+
"'cuz",
|
81 |
+
"'d",
|
82 |
+
"'em",
|
83 |
+
"'ll",
|
84 |
+
"'m",
|
85 |
+
"'nuff",
|
86 |
+
"'re",
|
87 |
+
"'s",
|
88 |
+
"'ve",
|
89 |
+
"'x",
|
90 |
+
"'xx",
|
91 |
+
"'xxx",
|
92 |
+
"'xxxx",
|
93 |
+
"'y",
|
94 |
+
"(",
|
95 |
+
"(((",
|
96 |
+
"(*>",
|
97 |
+
"(*_*)",
|
98 |
+
"(-8",
|
99 |
+
"(-:",
|
100 |
+
"(-;",
|
101 |
+
"(-_-)",
|
102 |
+
"(-d",
|
103 |
+
"(._.)",
|
104 |
+
"(:",
|
105 |
+
"(;",
|
106 |
+
"(=",
|
107 |
+
"(>_<)",
|
108 |
+
"(^_^)",
|
109 |
+
"(en",
|
110 |
+
"(o:",
|
111 |
+
"(x:",
|
112 |
+
"(x_x)",
|
113 |
+
"(\u00ac_\u00ac)",
|
114 |
+
"(\u0ca0_\u0ca0)",
|
115 |
+
"(\u256f\u00b0\u25a1\u00b0\uff09\u256f\ufe35\u253b\u2501\u253b",
|
116 |
+
")",
|
117 |
+
")))",
|
118 |
+
")-:",
|
119 |
+
")/\u00af",
|
120 |
+
"):",
|
121 |
+
"*",
|
122 |
+
"+",
|
123 |
+
"+++",
|
124 |
+
"+021/0001/89802+++",
|
125 |
+
"+32(0)470",
|
126 |
+
"+32(0)475",
|
127 |
+
"+dd(d)ddd",
|
128 |
+
"+ddd/dddd/dddd+++",
|
129 |
+
",",
|
130 |
+
",00",
|
131 |
+
",68",
|
132 |
+
"-",
|
133 |
+
"-((",
|
134 |
+
"-))",
|
135 |
+
"-/",
|
136 |
+
"-0",
|
137 |
+
"-3",
|
138 |
+
"-8",
|
139 |
+
"-D",
|
140 |
+
"-O",
|
141 |
+
"-P",
|
142 |
+
"-X",
|
143 |
+
"-_-",
|
144 |
+
"-__-",
|
145 |
+
"-d",
|
146 |
+
"-o",
|
147 |
+
"-p",
|
148 |
+
"-x",
|
149 |
+
"-|",
|
150 |
+
".",
|
151 |
+
".C.",
|
152 |
+
".D.",
|
153 |
+
".E.",
|
154 |
+
".G.",
|
155 |
+
".H.",
|
156 |
+
".J.",
|
157 |
+
".M.",
|
158 |
+
".Y.",
|
159 |
+
"._.",
|
160 |
+
".be",
|
161 |
+
".e.",
|
162 |
+
".g.",
|
163 |
+
".m.",
|
164 |
+
".s.",
|
165 |
+
"/",
|
166 |
+
"/3",
|
167 |
+
"/d",
|
168 |
+
"/or",
|
169 |
+
"0",
|
170 |
+
"0,00",
|
171 |
+
"0.0",
|
172 |
+
"0.o",
|
173 |
+
"000",
|
174 |
+
"0016",
|
175 |
+
"007",
|
176 |
+
"016",
|
177 |
+
"021",
|
178 |
+
"0762",
|
179 |
+
"08101000",
|
180 |
+
"0_0",
|
181 |
+
"0_o",
|
182 |
+
"1",
|
183 |
+
"1.975,68",
|
184 |
+
"10",
|
185 |
+
"10a.m",
|
186 |
+
"10a.m.",
|
187 |
+
"10p.m",
|
188 |
+
"10p.m.",
|
189 |
+
"11",
|
190 |
+
"11a.m",
|
191 |
+
"11a.m.",
|
192 |
+
"11p.m",
|
193 |
+
"11p.m.",
|
194 |
+
"12",
|
195 |
+
"12a.m",
|
196 |
+
"12a.m.",
|
197 |
+
"12p.m",
|
198 |
+
"12p.m.",
|
199 |
+
"14,0000",
|
200 |
+
"144",
|
201 |
+
"18/06/2021",
|
202 |
+
"18/07/2021",
|
203 |
+
"1a.m",
|
204 |
+
"1a.m.",
|
205 |
+
"1p.m",
|
206 |
+
"1p.m.",
|
207 |
+
"2",
|
208 |
+
"2,00",
|
209 |
+
"2,8",
|
210 |
+
"20000007",
|
211 |
+
"21",
|
212 |
+
"22",
|
213 |
+
"28",
|
214 |
+
"2a.m",
|
215 |
+
"2a.m.",
|
216 |
+
"2p.m",
|
217 |
+
"2p.m.",
|
218 |
+
"3",
|
219 |
+
"30",
|
220 |
+
"300",
|
221 |
+
"32(0)479",
|
222 |
+
"33",
|
223 |
+
"333",
|
224 |
+
"34",
|
225 |
+
"3600",
|
226 |
+
"3a.m",
|
227 |
+
"3a.m.",
|
228 |
+
"3p.m",
|
229 |
+
"3p.m.",
|
230 |
+
"4",
|
231 |
+
"41",
|
232 |
+
"46",
|
233 |
+
"470",
|
234 |
+
"475",
|
235 |
+
"479",
|
236 |
+
"4a.m",
|
237 |
+
"4a.m.",
|
238 |
+
"4p.m",
|
239 |
+
"4p.m.",
|
240 |
+
"5",
|
241 |
+
"500",
|
242 |
+
"508",
|
243 |
+
"576",
|
244 |
+
"5a.m",
|
245 |
+
"5a.m.",
|
246 |
+
"5p.m",
|
247 |
+
"5p.m.",
|
248 |
+
"6",
|
249 |
+
"600",
|
250 |
+
"678",
|
251 |
+
"69",
|
252 |
+
"6a.m",
|
253 |
+
"6a.m.",
|
254 |
+
"6p.m",
|
255 |
+
"6p.m.",
|
256 |
+
"7",
|
257 |
+
"71",
|
258 |
+
"740",
|
259 |
+
"762",
|
260 |
+
"7678",
|
261 |
+
"7a.m",
|
262 |
+
"7a.m.",
|
263 |
+
"7p.m",
|
264 |
+
"7p.m.",
|
265 |
+
"8",
|
266 |
+
"8)",
|
267 |
+
"8-",
|
268 |
+
"8-)",
|
269 |
+
"8-D",
|
270 |
+
"8-d",
|
271 |
+
"898",
|
272 |
+
"8D",
|
273 |
+
"8a.m",
|
274 |
+
"8a.m.",
|
275 |
+
"8d",
|
276 |
+
"8p.m",
|
277 |
+
"8p.m.",
|
278 |
+
"9",
|
279 |
+
"91",
|
280 |
+
"91F",
|
281 |
+
"91f",
|
282 |
+
"93",
|
283 |
+
"97",
|
284 |
+
"9a.m",
|
285 |
+
"9a.m.",
|
286 |
+
"9p.m",
|
287 |
+
"9p.m.",
|
288 |
+
":",
|
289 |
+
":'(",
|
290 |
+
":')",
|
291 |
+
":'-(",
|
292 |
+
":'-)",
|
293 |
+
":(",
|
294 |
+
":((",
|
295 |
+
":(((",
|
296 |
+
":()",
|
297 |
+
":)",
|
298 |
+
":))",
|
299 |
+
":)))",
|
300 |
+
":*",
|
301 |
+
":-(",
|
302 |
+
":-((",
|
303 |
+
":-(((",
|
304 |
+
":-)",
|
305 |
+
":-))",
|
306 |
+
":-)))",
|
307 |
+
":-*",
|
308 |
+
":-/",
|
309 |
+
":-0",
|
310 |
+
":-3",
|
311 |
+
":->",
|
312 |
+
":-D",
|
313 |
+
":-O",
|
314 |
+
":-P",
|
315 |
+
":-X",
|
316 |
+
":-]",
|
317 |
+
":-d",
|
318 |
+
":-o",
|
319 |
+
":-p",
|
320 |
+
":-x",
|
321 |
+
":-|",
|
322 |
+
":-}",
|
323 |
+
":/",
|
324 |
+
":0",
|
325 |
+
":1",
|
326 |
+
":3",
|
327 |
+
":>",
|
328 |
+
":D",
|
329 |
+
":O",
|
330 |
+
":P",
|
331 |
+
":X",
|
332 |
+
":]",
|
333 |
+
":d",
|
334 |
+
":o",
|
335 |
+
":o)",
|
336 |
+
":p",
|
337 |
+
":x",
|
338 |
+
":x)",
|
339 |
+
":|",
|
340 |
+
":}",
|
341 |
+
":\u2019(",
|
342 |
+
":\u2019)",
|
343 |
+
":\u2019-(",
|
344 |
+
":\u2019-)",
|
345 |
+
";",
|
346 |
+
";)",
|
347 |
+
";-)",
|
348 |
+
";-D",
|
349 |
+
";-X",
|
350 |
+
";-d",
|
351 |
+
";D",
|
352 |
+
";X",
|
353 |
+
";_;",
|
354 |
+
";d",
|
355 |
+
"<",
|
356 |
+
"<.<",
|
357 |
+
"</3",
|
358 |
+
"</d",
|
359 |
+
"<3",
|
360 |
+
"<33",
|
361 |
+
"<333",
|
362 |
+
"<d",
|
363 |
+
"<dd",
|
364 |
+
"<ddd",
|
365 |
+
"<space>",
|
366 |
+
"<xxxx>",
|
367 |
+
"=",
|
368 |
+
"=(",
|
369 |
+
"=)",
|
370 |
+
"=/",
|
371 |
+
"=3",
|
372 |
+
"=D",
|
373 |
+
"=X",
|
374 |
+
"=[",
|
375 |
+
"=]",
|
376 |
+
"=d",
|
377 |
+
"=|",
|
378 |
+
">",
|
379 |
+
">.<",
|
380 |
+
">.>",
|
381 |
+
">:(",
|
382 |
+
">:o",
|
383 |
+
">:x",
|
384 |
+
"><(((*>",
|
385 |
+
"@",
|
386 |
+
"@_@",
|
387 |
+
"A",
|
388 |
+
"ARE",
|
389 |
+
"ATE",
|
390 |
+
"Adm",
|
391 |
+
"Adm.",
|
392 |
+
"Ai",
|
393 |
+
"Ak",
|
394 |
+
"Ak.",
|
395 |
+
"Ala",
|
396 |
+
"Ala.",
|
397 |
+
"Alabama",
|
398 |
+
"Alaska",
|
399 |
+
"Apr",
|
400 |
+
"Apr.",
|
401 |
+
"April",
|
402 |
+
"Are",
|
403 |
+
"Ariz",
|
404 |
+
"Ariz.",
|
405 |
+
"Arizona",
|
406 |
+
"Ark",
|
407 |
+
"Ark.",
|
408 |
+
"Arkansas",
|
409 |
+
"Aug",
|
410 |
+
"Aug.",
|
411 |
+
"August",
|
412 |
+
"B",
|
413 |
+
"BAN",
|
414 |
+
"BE",
|
415 |
+
"BEO437.378.740",
|
416 |
+
"BER",
|
417 |
+
"BERESFORD",
|
418 |
+
"BEREXBE0437378740",
|
419 |
+
"BIC",
|
420 |
+
"BNP",
|
421 |
+
"BY",
|
422 |
+
"Belgium",
|
423 |
+
"Box",
|
424 |
+
"Bros",
|
425 |
+
"Bros.",
|
426 |
+
"C",
|
427 |
+
"C'm",
|
428 |
+
"C++",
|
429 |
+
"C.",
|
430 |
+
"CLAFRU",
|
431 |
+
"CLEARLY",
|
432 |
+
"CODE",
|
433 |
+
"COVERED",
|
434 |
+
"CTS",
|
435 |
+
"Ca",
|
436 |
+
"Calif",
|
437 |
+
"Calif.",
|
438 |
+
"California",
|
439 |
+
"Can",
|
440 |
+
"Cause",
|
441 |
+
"Charge",
|
442 |
+
"Claesen",
|
443 |
+
"Co",
|
444 |
+
"Co.",
|
445 |
+
"Code",
|
446 |
+
"Colo",
|
447 |
+
"Colo.",
|
448 |
+
"Colorado",
|
449 |
+
"Conn",
|
450 |
+
"Conn.",
|
451 |
+
"Connecticut",
|
452 |
+
"Corp",
|
453 |
+
"Corp.",
|
454 |
+
"Cos",
|
455 |
+
"Could",
|
456 |
+
"Coz",
|
457 |
+
"Cuz",
|
458 |
+
"C\u2019m",
|
459 |
+
"D",
|
460 |
+
"D.",
|
461 |
+
"D.C.",
|
462 |
+
"DECLARES",
|
463 |
+
"DOCUMENT",
|
464 |
+
"DPI:300",
|
465 |
+
"DUBLIN",
|
466 |
+
"Dare",
|
467 |
+
"Date",
|
468 |
+
"Dec",
|
469 |
+
"Dec.",
|
470 |
+
"December",
|
471 |
+
"Del",
|
472 |
+
"Del.",
|
473 |
+
"Delaware",
|
474 |
+
"Description",
|
475 |
+
"Did",
|
476 |
+
"Digital:0",
|
477 |
+
"Do",
|
478 |
+
"Doc",
|
479 |
+
"Does",
|
480 |
+
"Doin",
|
481 |
+
"Doin'",
|
482 |
+
"Doin\u2019",
|
483 |
+
"Dr",
|
484 |
+
"Dr.",
|
485 |
+
"Dries",
|
486 |
+
"Due",
|
487 |
+
"E",
|
488 |
+
"E.G.",
|
489 |
+
"E.g",
|
490 |
+
"E.g.",
|
491 |
+
"EBB",
|
492 |
+
"EET",
|
493 |
+
"ENT",
|
494 |
+
"EORI",
|
495 |
+
"EPT",
|
496 |
+
"ERE",
|
497 |
+
"ESE",
|
498 |
+
"ESS",
|
499 |
+
"EUR",
|
500 |
+
"EXCEPT",
|
501 |
+
"EXPORTER",
|
502 |
+
"Elsanta",
|
503 |
+
"Ex",
|
504 |
+
"Exemp",
|
505 |
+
"F",
|
506 |
+
"F.",
|
507 |
+
"FRU",
|
508 |
+
"Feb",
|
509 |
+
"Feb.",
|
510 |
+
"February",
|
511 |
+
"Fla",
|
512 |
+
"Fla.",
|
513 |
+
"Florida",
|
514 |
+
"Fortis",
|
515 |
+
"G",
|
516 |
+
"GB",
|
517 |
+
"GB077365189000",
|
518 |
+
"GEBABEBB",
|
519 |
+
"GIN",
|
520 |
+
"Ga",
|
521 |
+
"Ga.",
|
522 |
+
"Gen",
|
523 |
+
"Gen.",
|
524 |
+
"Genk",
|
525 |
+
"Georgia",
|
526 |
+
"Goin",
|
527 |
+
"Goin'",
|
528 |
+
"Goin\u2019",
|
529 |
+
"Gon",
|
530 |
+
"Got",
|
531 |
+
"Gov",
|
532 |
+
"Gov.",
|
533 |
+
"Grams",
|
534 |
+
"Gross",
|
535 |
+
"H",
|
536 |
+
"HAT",
|
537 |
+
"HIS",
|
538 |
+
"Had",
|
539 |
+
"Has",
|
540 |
+
"Have",
|
541 |
+
"Havin",
|
542 |
+
"Havin'",
|
543 |
+
"Havin\u2019",
|
544 |
+
"He",
|
545 |
+
"He's",
|
546 |
+
"Height:3508",
|
547 |
+
"He\u2019s",
|
548 |
+
"Hoevenzavellaan",
|
549 |
+
"How",
|
550 |
+
"How's",
|
551 |
+
"How\u2019s",
|
552 |
+
"Hs",
|
553 |
+
"I",
|
554 |
+
"I.E.",
|
555 |
+
"I.e",
|
556 |
+
"I.e.",
|
557 |
+
"IAL",
|
558 |
+
"IBAN",
|
559 |
+
"ICE",
|
560 |
+
"IE",
|
561 |
+
"IE4811491F",
|
562 |
+
"INDICATED",
|
563 |
+
"INVOICE_ADDRESS",
|
564 |
+
"INVOICE_DATE",
|
565 |
+
"INVOICE_NUMBER",
|
566 |
+
"ION",
|
567 |
+
"ISE",
|
568 |
+
"Ia",
|
569 |
+
"Ia.",
|
570 |
+
"Id",
|
571 |
+
"Id.",
|
572 |
+
"Idaho",
|
573 |
+
"Ill",
|
574 |
+
"Ill.",
|
575 |
+
"Illinois",
|
576 |
+
"Inc",
|
577 |
+
"Inc.",
|
578 |
+
"Ind",
|
579 |
+
"Ind.",
|
580 |
+
"Indiana",
|
581 |
+
"Invoice",
|
582 |
+
"Iowa",
|
583 |
+
"Is",
|
584 |
+
"It",
|
585 |
+
"It's",
|
586 |
+
"It\u2019s",
|
587 |
+
"J",
|
588 |
+
"Jan",
|
589 |
+
"Jan.",
|
590 |
+
"January",
|
591 |
+
"Jr",
|
592 |
+
"Jr.",
|
593 |
+
"Jul",
|
594 |
+
"Jul.",
|
595 |
+
"July",
|
596 |
+
"Jun",
|
597 |
+
"Jun.",
|
598 |
+
"June",
|
599 |
+
"K",
|
600 |
+
"K.",
|
601 |
+
"Kan",
|
602 |
+
"Kan.",
|
603 |
+
"Kans",
|
604 |
+
"Kans.",
|
605 |
+
"Kansas",
|
606 |
+
"Kentucky",
|
607 |
+
"Kilo",
|
608 |
+
"Kist(en",
|
609 |
+
"Ky",
|
610 |
+
"Ky.",
|
611 |
+
"L",
|
612 |
+
"LIN",
|
613 |
+
"LONG",
|
614 |
+
"La",
|
615 |
+
"La.",
|
616 |
+
"Let",
|
617 |
+
"Let's",
|
618 |
+
"Let\u2019s",
|
619 |
+
"Louisiana",
|
620 |
+
"Lovin",
|
621 |
+
"Lovin'",
|
622 |
+
"Lovin\u2019",
|
623 |
+
"Ltd",
|
624 |
+
"Ltd.",
|
625 |
+
"M",
|
626 |
+
"Ma'am",
|
627 |
+
"Mar",
|
628 |
+
"Mar.",
|
629 |
+
"March",
|
630 |
+
"Mass",
|
631 |
+
"Mass.",
|
632 |
+
"Massachusetts",
|
633 |
+
"Mathieu",
|
634 |
+
"May",
|
635 |
+
"Ma\u2019am",
|
636 |
+
"Md",
|
637 |
+
"Md.",
|
638 |
+
"Messrs",
|
639 |
+
"Messrs.",
|
640 |
+
"Mich",
|
641 |
+
"Mich.",
|
642 |
+
"Michigan",
|
643 |
+
"Might",
|
644 |
+
"Minn",
|
645 |
+
"Minn.",
|
646 |
+
"Minnesota",
|
647 |
+
"Miss",
|
648 |
+
"Miss.",
|
649 |
+
"Mississippi",
|
650 |
+
"Mo",
|
651 |
+
"Mo.",
|
652 |
+
"Mont",
|
653 |
+
"Mont.",
|
654 |
+
"Mount",
|
655 |
+
"Mr",
|
656 |
+
"Mr.",
|
657 |
+
"Mrs",
|
658 |
+
"Mrs.",
|
659 |
+
"Ms",
|
660 |
+
"Ms.",
|
661 |
+
"Mt",
|
662 |
+
"Mt.",
|
663 |
+
"Must",
|
664 |
+
"N",
|
665 |
+
"N.C.",
|
666 |
+
"N.D.",
|
667 |
+
"N.H.",
|
668 |
+
"N.J.",
|
669 |
+
"N.M.",
|
670 |
+
"N.Y.",
|
671 |
+
"NCE",
|
672 |
+
"NO",
|
673 |
+
"Neb",
|
674 |
+
"Neb.",
|
675 |
+
"Nebr",
|
676 |
+
"Nebr.",
|
677 |
+
"Nebraska",
|
678 |
+
"Need",
|
679 |
+
"Net",
|
680 |
+
"Nev",
|
681 |
+
"Nev.",
|
682 |
+
"Nevada",
|
683 |
+
"New Hampshire",
|
684 |
+
"New Jersey",
|
685 |
+
"New Mexico",
|
686 |
+
"New York",
|
687 |
+
"North Carolina",
|
688 |
+
"North Dakota",
|
689 |
+
"Not",
|
690 |
+
"Nothin",
|
691 |
+
"Nothin'",
|
692 |
+
"Nothin\u2019",
|
693 |
+
"Nov",
|
694 |
+
"Nov.",
|
695 |
+
"November",
|
696 |
+
"Nr",
|
697 |
+
"Nuthin",
|
698 |
+
"Nuthin'",
|
699 |
+
"Nuthin\u2019",
|
700 |
+
"O",
|
701 |
+
"O'clock",
|
702 |
+
"O,00",
|
703 |
+
"O.O",
|
704 |
+
"O.o",
|
705 |
+
"O2",
|
706 |
+
"ODE",
|
707 |
+
"OF",
|
708 |
+
"ORD",
|
709 |
+
"ORI",
|
710 |
+
"ORIGIN",
|
711 |
+
"OTHERWISE",
|
712 |
+
"O_O",
|
713 |
+
"O_o",
|
714 |
+
"Oct",
|
715 |
+
"Oct.",
|
716 |
+
"October",
|
717 |
+
"Okla",
|
718 |
+
"Okla.",
|
719 |
+
"Oklahoma",
|
720 |
+
"Ol",
|
721 |
+
"Ol'",
|
722 |
+
"Ol\u2019",
|
723 |
+
"Ore",
|
724 |
+
"Ore.",
|
725 |
+
"Oregon",
|
726 |
+
"Orientation:0",
|
727 |
+
"Ouantity",
|
728 |
+
"Ought",
|
729 |
+
"O\u2019clock",
|
730 |
+
"P",
|
731 |
+
"PREFERENTIAL",
|
732 |
+
"PRODUCE",
|
733 |
+
"PRODUCS",
|
734 |
+
"PRODUCTS",
|
735 |
+
"Pa",
|
736 |
+
"Pa.",
|
737 |
+
"Paribas",
|
738 |
+
"Pennsylvania",
|
739 |
+
"Ph",
|
740 |
+
"Ph.D.",
|
741 |
+
"Please",
|
742 |
+
"Pr",
|
743 |
+
"Prof",
|
744 |
+
"Prof.",
|
745 |
+
"R",
|
746 |
+
"RED",
|
747 |
+
"REFERENCE",
|
748 |
+
"RES",
|
749 |
+
"RLY",
|
750 |
+
"ROOT",
|
751 |
+
"Relationship",
|
752 |
+
"Rep",
|
753 |
+
"Rep.",
|
754 |
+
"Rev",
|
755 |
+
"Rev.",
|
756 |
+
"Reverse",
|
757 |
+
"S",
|
758 |
+
"S.C.",
|
759 |
+
"STREET",
|
760 |
+
"Sen",
|
761 |
+
"Sen.",
|
762 |
+
"Sep",
|
763 |
+
"Sep.",
|
764 |
+
"Sept",
|
765 |
+
"Sept.",
|
766 |
+
"September",
|
767 |
+
"Sha",
|
768 |
+
"She",
|
769 |
+
"She's",
|
770 |
+
"She\u2019s",
|
771 |
+
"Should",
|
772 |
+
"Somethin",
|
773 |
+
"Somethin'",
|
774 |
+
"Somethin\u2019",
|
775 |
+
"South Carolina",
|
776 |
+
"Sr",
|
777 |
+
"St",
|
778 |
+
"St.",
|
779 |
+
"Strawberries",
|
780 |
+
"T",
|
781 |
+
"TAL",
|
782 |
+
"TED",
|
783 |
+
"TER",
|
784 |
+
"THAT",
|
785 |
+
"THE",
|
786 |
+
"THESE",
|
787 |
+
"THIS",
|
788 |
+
"TOTAL",
|
789 |
+
"TOTAL_PRICE",
|
790 |
+
"T_otal",
|
791 |
+
"Tenn",
|
792 |
+
"Tenn.",
|
793 |
+
"Tennessee",
|
794 |
+
"That",
|
795 |
+
"That's",
|
796 |
+
"That\u2019s",
|
797 |
+
"There",
|
798 |
+
"There's",
|
799 |
+
"There\u2019s",
|
800 |
+
"These",
|
801 |
+
"They",
|
802 |
+
"This",
|
803 |
+
"This's",
|
804 |
+
"This\u2019s",
|
805 |
+
"Those",
|
806 |
+
"Total",
|
807 |
+
"U",
|
808 |
+
"UCE",
|
809 |
+
"UCLAFRU",
|
810 |
+
"UCS",
|
811 |
+
"UNION",
|
812 |
+
"Unit",
|
813 |
+
"V",
|
814 |
+
"V.V",
|
815 |
+
"V11898",
|
816 |
+
"VAI",
|
817 |
+
"VAT",
|
818 |
+
"V_V",
|
819 |
+
"Va",
|
820 |
+
"Va.",
|
821 |
+
"Vanrysselberghe",
|
822 |
+
"Virginia",
|
823 |
+
"W",
|
824 |
+
"WHERE",
|
825 |
+
"Was",
|
826 |
+
"Wash",
|
827 |
+
"Wash.",
|
828 |
+
"Washington",
|
829 |
+
"We",
|
830 |
+
"Were",
|
831 |
+
"What",
|
832 |
+
"What's",
|
833 |
+
"What\u2019s",
|
834 |
+
"When",
|
835 |
+
"When's",
|
836 |
+
"When\u2019s",
|
837 |
+
"Where",
|
838 |
+
"Where's",
|
839 |
+
"Where\u2019s",
|
840 |
+
"Who",
|
841 |
+
"Who's",
|
842 |
+
"Who\u2019s",
|
843 |
+
"Why",
|
844 |
+
"Why's",
|
845 |
+
"Why\u2019s",
|
846 |
+
"Width:2479",
|
847 |
+
"Wis",
|
848 |
+
"Wis.",
|
849 |
+
"Wisconsin",
|
850 |
+
"Wo",
|
851 |
+
"Would",
|
852 |
+
"X'x",
|
853 |
+
"X'xxxx",
|
854 |
+
"X++",
|
855 |
+
"X,dd",
|
856 |
+
"X.",
|
857 |
+
"X.X",
|
858 |
+
"X.X.",
|
859 |
+
"X.x",
|
860 |
+
"X.x.",
|
861 |
+
"XD",
|
862 |
+
"XDD",
|
863 |
+
"XX",
|
864 |
+
"XXX",
|
865 |
+
"XXX:ddd",
|
866 |
+
"XXXX",
|
867 |
+
"XXXX_XXXX",
|
868 |
+
"XXXXdddd",
|
869 |
+
"XXXddd.ddd.ddd",
|
870 |
+
"XXdddd",
|
871 |
+
"XXddddX",
|
872 |
+
"X_X",
|
873 |
+
"X_x",
|
874 |
+
"X_xxxx",
|
875 |
+
"Xd",
|
876 |
+
"Xdddd",
|
877 |
+
"Xx",
|
878 |
+
"Xx'",
|
879 |
+
"Xx'x",
|
880 |
+
"Xx'xx",
|
881 |
+
"Xx.",
|
882 |
+
"Xx.X.",
|
883 |
+
"Xxx",
|
884 |
+
"Xxx'x",
|
885 |
+
"Xxx.",
|
886 |
+
"Xxxx",
|
887 |
+
"Xxxx'",
|
888 |
+
"Xxxx'x",
|
889 |
+
"Xxxx(xx",
|
890 |
+
"Xxxx.",
|
891 |
+
"Xxxxx",
|
892 |
+
"Xxxxx'",
|
893 |
+
"Xxxxx'x",
|
894 |
+
"Xxxxx.",
|
895 |
+
"Xxxxx:d",
|
896 |
+
"Xxxxx:dddd",
|
897 |
+
"Xxxxx\u2019",
|
898 |
+
"Xxxxx\u2019x",
|
899 |
+
"Xxxx\u2019",
|
900 |
+
"Xxxx\u2019x",
|
901 |
+
"Xxx\u2019x",
|
902 |
+
"Xx\u2019",
|
903 |
+
"Xx\u2019x",
|
904 |
+
"Xx\u2019xx",
|
905 |
+
"X\u2019x",
|
906 |
+
"X\u2019xxxx",
|
907 |
+
"Y",
|
908 |
+
"You",
|
909 |
+
"[",
|
910 |
+
"[-:",
|
911 |
+
"[:",
|
912 |
+
"[=",
|
913 |
+
"\\",
|
914 |
+
"\\\")",
|
915 |
+
"\\n",
|
916 |
+
"\\t",
|
917 |
+
"\\x",
|
918 |
+
"]",
|
919 |
+
"]=",
|
920 |
+
"^",
|
921 |
+
"^_^",
|
922 |
+
"^__^",
|
923 |
+
"^___^",
|
924 |
+
"_*)",
|
925 |
+
"_-)",
|
926 |
+
"_.)",
|
927 |
+
"_<)",
|
928 |
+
"_^)",
|
929 |
+
"__-",
|
930 |
+
"__^",
|
931 |
+
"_\u00ac)",
|
932 |
+
"_\u0ca0)",
|
933 |
+
"a",
|
934 |
+
"a.",
|
935 |
+
"a.m",
|
936 |
+
"a.m.",
|
937 |
+
"aan",
|
938 |
+
"about",
|
939 |
+
"ace",
|
940 |
+
"adm",
|
941 |
+
"adm.",
|
942 |
+
"ai",
|
943 |
+
"ak",
|
944 |
+
"ak.",
|
945 |
+
"ala",
|
946 |
+
"ala.",
|
947 |
+
"all",
|
948 |
+
"am",
|
949 |
+
"ams",
|
950 |
+
"an.",
|
951 |
+
"and",
|
952 |
+
"and/or",
|
953 |
+
"ans",
|
954 |
+
"apr",
|
955 |
+
"apr.",
|
956 |
+
"ar.",
|
957 |
+
"are",
|
958 |
+
"ariz",
|
959 |
+
"ariz.",
|
960 |
+
"ark",
|
961 |
+
"ark.",
|
962 |
+
"ase",
|
963 |
+
"ash",
|
964 |
+
"ass",
|
965 |
+
"ate",
|
966 |
+
"aug",
|
967 |
+
"aug.",
|
968 |
+
"ave",
|
969 |
+
"ays",
|
970 |
+
"b",
|
971 |
+
"b.",
|
972 |
+
"ban",
|
973 |
+
"bas",
|
974 |
+
"be",
|
975 |
+
"because",
|
976 |
+
"belgium",
|
977 |
+
"beo437.378.740",
|
978 |
+
"ber",
|
979 |
+
"beresford",
|
980 |
+
"berexbe0437378740",
|
981 |
+
"bic",
|
982 |
+
"bnp",
|
983 |
+
"bout",
|
984 |
+
"box",
|
985 |
+
"br.",
|
986 |
+
"bros",
|
987 |
+
"bros.",
|
988 |
+
"by",
|
989 |
+
"c",
|
990 |
+
"c'm",
|
991 |
+
"c++",
|
992 |
+
"c.",
|
993 |
+
"ca",
|
994 |
+
"calif",
|
995 |
+
"calif.",
|
996 |
+
"can",
|
997 |
+
"cause",
|
998 |
+
"ce>",
|
999 |
+
"ch.",
|
1000 |
+
"charge",
|
1001 |
+
"claesen",
|
1002 |
+
"clafru",
|
1003 |
+
"clearly",
|
1004 |
+
"co",
|
1005 |
+
"co.",
|
1006 |
+
"code",
|
1007 |
+
"colo",
|
1008 |
+
"colo.",
|
1009 |
+
"come",
|
1010 |
+
"conn",
|
1011 |
+
"conn.",
|
1012 |
+
"[email protected]",
|
1013 |
+
"corp",
|
1014 |
+
"corp.",
|
1015 |
+
"cos",
|
1016 |
+
"could",
|
1017 |
+
"covered",
|
1018 |
+
"coz",
|
1019 |
+
"ct.",
|
1020 |
+
"cts",
|
1021 |
+
"cuz",
|
1022 |
+
"c\u2019m",
|
1023 |
+
"d",
|
1024 |
+
"d)",
|
1025 |
+
"d,dd",
|
1026 |
+
"d-",
|
1027 |
+
"d-)",
|
1028 |
+
"d-X",
|
1029 |
+
"d.",
|
1030 |
+
"d.c.",
|
1031 |
+
"d.d",
|
1032 |
+
"d.ddd,dd",
|
1033 |
+
"d.x",
|
1034 |
+
"dX",
|
1035 |
+
"d_d",
|
1036 |
+
"d_x",
|
1037 |
+
"dare",
|
1038 |
+
"date",
|
1039 |
+
"days",
|
1040 |
+
"dd",
|
1041 |
+
"dd(d)ddd",
|
1042 |
+
"dd,dddd",
|
1043 |
+
"dd/dd/dddd",
|
1044 |
+
"ddd",
|
1045 |
+
"dddd",
|
1046 |
+
"ddx.x",
|
1047 |
+
"ddx.x.",
|
1048 |
+
"dec",
|
1049 |
+
"dec.",
|
1050 |
+
"declares",
|
1051 |
+
"del",
|
1052 |
+
"del.",
|
1053 |
+
"description",
|
1054 |
+
"did",
|
1055 |
+
"digital:0",
|
1056 |
+
"dm.",
|
1057 |
+
"do",
|
1058 |
+
"doc",
|
1059 |
+
"document",
|
1060 |
+
"does",
|
1061 |
+
"doin",
|
1062 |
+
"doin'",
|
1063 |
+
"doing",
|
1064 |
+
"doin\u2019",
|
1065 |
+
"dpi:300",
|
1066 |
+
"dr",
|
1067 |
+
"dr.",
|
1068 |
+
"dries",
|
1069 |
+
"dublin",
|
1070 |
+
"due",
|
1071 |
+
"dx.x",
|
1072 |
+
"dx.x.",
|
1073 |
+
"e",
|
1074 |
+
"e's",
|
1075 |
+
"e.",
|
1076 |
+
"e.g",
|
1077 |
+
"e.g.",
|
1078 |
+
"eb.",
|
1079 |
+
"ebb",
|
1080 |
+
"ebr",
|
1081 |
+
"ec.",
|
1082 |
+
"eed",
|
1083 |
+
"eet",
|
1084 |
+
"el.",
|
1085 |
+
"elsanta",
|
1086 |
+
"em",
|
1087 |
+
"emp",
|
1088 |
+
"en",
|
1089 |
+
"en.",
|
1090 |
+
"enk",
|
1091 |
+
"enn",
|
1092 |
+
"enough",
|
1093 |
+
"ent",
|
1094 |
+
"eori",
|
1095 |
+
"ep.",
|
1096 |
+
"ept",
|
1097 |
+
"ere",
|
1098 |
+
"ese",
|
1099 |
+
"eur",
|
1100 |
+
"ev.",
|
1101 |
+
"ex",
|
1102 |
+
"except",
|
1103 |
+
"excl",
|
1104 |
+
"exemp",
|
1105 |
+
"exporter",
|
1106 |
+
"e\u2019s",
|
1107 |
+
"f",
|
1108 |
+
"f.",
|
1109 |
+
"feb",
|
1110 |
+
"feb.",
|
1111 |
+
"fla",
|
1112 |
+
"fla.",
|
1113 |
+
"fortis",
|
1114 |
+
"fru",
|
1115 |
+
"g",
|
1116 |
+
"g.",
|
1117 |
+
"ga",
|
1118 |
+
"ga.",
|
1119 |
+
"gb",
|
1120 |
+
"gb077365189000",
|
1121 |
+
"gebabebb",
|
1122 |
+
"gen",
|
1123 |
+
"gen.",
|
1124 |
+
"genk",
|
1125 |
+
"ghe",
|
1126 |
+
"ght",
|
1127 |
+
"gin",
|
1128 |
+
"goin",
|
1129 |
+
"goin'",
|
1130 |
+
"going",
|
1131 |
+
"goin\u2019",
|
1132 |
+
"gon",
|
1133 |
+
"gonna",
|
1134 |
+
"got",
|
1135 |
+
"gov",
|
1136 |
+
"gov.",
|
1137 |
+
"grams",
|
1138 |
+
"gross",
|
1139 |
+
"h",
|
1140 |
+
"h.",
|
1141 |
+
"had",
|
1142 |
+
"has",
|
1143 |
+
"hat",
|
1144 |
+
"have",
|
1145 |
+
"havin",
|
1146 |
+
"havin'",
|
1147 |
+
"having",
|
1148 |
+
"havin\u2019",
|
1149 |
+
"he",
|
1150 |
+
"he's",
|
1151 |
+
"height:3508",
|
1152 |
+
"hen",
|
1153 |
+
"hey",
|
1154 |
+
"he\u2019s",
|
1155 |
+
"hin",
|
1156 |
+
"hip",
|
1157 |
+
"his",
|
1158 |
+
"hoevenzavellaan",
|
1159 |
+
"how",
|
1160 |
+
"how's",
|
1161 |
+
"how\u2019s",
|
1162 |
+
"hs",
|
1163 |
+
"i",
|
1164 |
+
"i.",
|
1165 |
+
"i.e",
|
1166 |
+
"i.e.",
|
1167 |
+
"ia",
|
1168 |
+
"ia.",
|
1169 |
+
"ial",
|
1170 |
+
"iban",
|
1171 |
+
"ice",
|
1172 |
+
"ich",
|
1173 |
+
"id",
|
1174 |
+
"id.",
|
1175 |
+
"ie",
|
1176 |
+
"ie4811491f",
|
1177 |
+
"ies",
|
1178 |
+
"ieu",
|
1179 |
+
"if.",
|
1180 |
+
"ill",
|
1181 |
+
"ill.",
|
1182 |
+
"ilo",
|
1183 |
+
"in'",
|
1184 |
+
"inc",
|
1185 |
+
"inc.",
|
1186 |
+
"ind",
|
1187 |
+
"ind.",
|
1188 |
+
"indicated",
|
1189 |
+
"inn",
|
1190 |
+
"invoice",
|
1191 |
+
"invoice_address",
|
1192 |
+
"invoice_date",
|
1193 |
+
"invoice_number",
|
1194 |
+
"in\u2019",
|
1195 |
+
"ion",
|
1196 |
+
"is",
|
1197 |
+
"is.",
|
1198 |
+
"ise",
|
1199 |
+
"iss",
|
1200 |
+
"it",
|
1201 |
+
"it's",
|
1202 |
+
"ity",
|
1203 |
+
"it\u2019s",
|
1204 |
+
"ium",
|
1205 |
+
"iz.",
|
1206 |
+
"j",
|
1207 |
+
"j.",
|
1208 |
+
"jan",
|
1209 |
+
"jan.",
|
1210 |
+
"jr",
|
1211 |
+
"jr.",
|
1212 |
+
"jul",
|
1213 |
+
"jul.",
|
1214 |
+
"jun",
|
1215 |
+
"jun.",
|
1216 |
+
"k",
|
1217 |
+
"k.",
|
1218 |
+
"kan",
|
1219 |
+
"kan.",
|
1220 |
+
"kans",
|
1221 |
+
"kans.",
|
1222 |
+
"kilo",
|
1223 |
+
"kist(en",
|
1224 |
+
"kla",
|
1225 |
+
"ky",
|
1226 |
+
"ky.",
|
1227 |
+
"l",
|
1228 |
+
"l.",
|
1229 |
+
"l:0",
|
1230 |
+
"la",
|
1231 |
+
"la.",
|
1232 |
+
"let",
|
1233 |
+
"let's",
|
1234 |
+
"let\u2019s",
|
1235 |
+
"lif",
|
1236 |
+
"lin",
|
1237 |
+
"ll",
|
1238 |
+
"ll.",
|
1239 |
+
"lo.",
|
1240 |
+
"lovin",
|
1241 |
+
"lovin'",
|
1242 |
+
"loving",
|
1243 |
+
"lovin\u2019",
|
1244 |
+
"ltd",
|
1245 |
+
"ltd.",
|
1246 |
+
"m",
|
1247 |
+
"m.",
|
1248 |
+
"ma'am",
|
1249 |
+
"madam",
|
1250 |
+
"mar",
|
1251 |
+
"mar.",
|
1252 |
+
"mass",
|
1253 |
+
"mass.",
|
1254 |
+
"mathieu",
|
1255 |
+
"may",
|
1256 |
+
"ma\u2019am",
|
1257 |
+
"md",
|
1258 |
+
"md.",
|
1259 |
+
"mention",
|
1260 |
+
"messrs",
|
1261 |
+
"messrs.",
|
1262 |
+
"mich",
|
1263 |
+
"mich.",
|
1264 |
+
"might",
|
1265 |
+
"minn",
|
1266 |
+
"minn.",
|
1267 |
+
"miss",
|
1268 |
+
"miss.",
|
1269 |
+
"mo",
|
1270 |
+
"mo.",
|
1271 |
+
"mont",
|
1272 |
+
"mont.",
|
1273 |
+
"mr",
|
1274 |
+
"mr.",
|
1275 |
+
"mrs",
|
1276 |
+
"mrs.",
|
1277 |
+
"ms",
|
1278 |
+
"ms.",
|
1279 |
+
"mt",
|
1280 |
+
"mt.",
|
1281 |
+
"must",
|
1282 |
+
"n",
|
1283 |
+
"n's",
|
1284 |
+
"n't",
|
1285 |
+
"n.",
|
1286 |
+
"n.c.",
|
1287 |
+
"n.d.",
|
1288 |
+
"n.h.",
|
1289 |
+
"n.j.",
|
1290 |
+
"n.m.",
|
1291 |
+
"n.y.",
|
1292 |
+
"n:0",
|
1293 |
+
"na",
|
1294 |
+
"nc.",
|
1295 |
+
"nce",
|
1296 |
+
"nd.",
|
1297 |
+
"neb",
|
1298 |
+
"neb.",
|
1299 |
+
"nebr",
|
1300 |
+
"nebr.",
|
1301 |
+
"need",
|
1302 |
+
"net",
|
1303 |
+
"nev",
|
1304 |
+
"nev.",
|
1305 |
+
"nit",
|
1306 |
+
"nn.",
|
1307 |
+
"no",
|
1308 |
+
"not",
|
1309 |
+
"nothin",
|
1310 |
+
"nothin'",
|
1311 |
+
"nothing",
|
1312 |
+
"nothin\u2019",
|
1313 |
+
"nov",
|
1314 |
+
"nov.",
|
1315 |
+
"nr",
|
1316 |
+
"ns.",
|
1317 |
+
"nt",
|
1318 |
+
"nt.",
|
1319 |
+
"nta",
|
1320 |
+
"nuff",
|
1321 |
+
"nuthin",
|
1322 |
+
"nuthin'",
|
1323 |
+
"nuthin\u2019",
|
1324 |
+
"n\u2019s",
|
1325 |
+
"n\u2019t",
|
1326 |
+
"o",
|
1327 |
+
"o'clock",
|
1328 |
+
"o's",
|
1329 |
+
"o,00",
|
1330 |
+
"o.",
|
1331 |
+
"o.0",
|
1332 |
+
"o.O",
|
1333 |
+
"o.o",
|
1334 |
+
"o2",
|
1335 |
+
"o_0",
|
1336 |
+
"o_O",
|
1337 |
+
"o_o",
|
1338 |
+
"ock",
|
1339 |
+
"oct",
|
1340 |
+
"oct.",
|
1341 |
+
"ode",
|
1342 |
+
"oes",
|
1343 |
+
"of",
|
1344 |
+
"of.",
|
1345 |
+
"oin",
|
1346 |
+
"okla",
|
1347 |
+
"okla.",
|
1348 |
+
"ol",
|
1349 |
+
"ol'",
|
1350 |
+
"old",
|
1351 |
+
"olo",
|
1352 |
+
"ol\u2019",
|
1353 |
+
"on",
|
1354 |
+
"onn",
|
1355 |
+
"ont",
|
1356 |
+
"or",
|
1357 |
+
"ord",
|
1358 |
+
"ore",
|
1359 |
+
"ore.",
|
1360 |
+
"ori",
|
1361 |
+
"orientation:0",
|
1362 |
+
"origin",
|
1363 |
+
"orp",
|
1364 |
+
"os.",
|
1365 |
+
"ose",
|
1366 |
+
"oss",
|
1367 |
+
"otherwise",
|
1368 |
+
"ouantity",
|
1369 |
+
"ought",
|
1370 |
+
"out",
|
1371 |
+
"ov.",
|
1372 |
+
"o\u2019clock",
|
1373 |
+
"o\u2019s",
|
1374 |
+
"p",
|
1375 |
+
"p.",
|
1376 |
+
"p.m",
|
1377 |
+
"p.m.",
|
1378 |
+
"pa",
|
1379 |
+
"pa.",
|
1380 |
+
"paribas",
|
1381 |
+
"payment",
|
1382 |
+
"ph",
|
1383 |
+
"ph.d.",
|
1384 |
+
"please",
|
1385 |
+
"pm",
|
1386 |
+
"pon",
|
1387 |
+
"pr",
|
1388 |
+
"pr.",
|
1389 |
+
"preferential",
|
1390 |
+
"produce",
|
1391 |
+
"producs",
|
1392 |
+
"products",
|
1393 |
+
"prof",
|
1394 |
+
"prof.",
|
1395 |
+
"pt.",
|
1396 |
+
"q",
|
1397 |
+
"q.",
|
1398 |
+
"r",
|
1399 |
+
"r.",
|
1400 |
+
"re",
|
1401 |
+
"re.",
|
1402 |
+
"red",
|
1403 |
+
"reference",
|
1404 |
+
"relationship",
|
1405 |
+
"rep",
|
1406 |
+
"rep.",
|
1407 |
+
"res",
|
1408 |
+
"rev",
|
1409 |
+
"rev.",
|
1410 |
+
"reverse",
|
1411 |
+
"rge",
|
1412 |
+
"riz",
|
1413 |
+
"rk.",
|
1414 |
+
"rly",
|
1415 |
+
"rof",
|
1416 |
+
"ros",
|
1417 |
+
"rp.",
|
1418 |
+
"rs.",
|
1419 |
+
"rse",
|
1420 |
+
"s",
|
1421 |
+
"s's",
|
1422 |
+
"s.",
|
1423 |
+
"s.c.",
|
1424 |
+
"sen",
|
1425 |
+
"sen.",
|
1426 |
+
"sep",
|
1427 |
+
"sep.",
|
1428 |
+
"sept",
|
1429 |
+
"sept.",
|
1430 |
+
"sh.",
|
1431 |
+
"sha",
|
1432 |
+
"shall",
|
1433 |
+
"she",
|
1434 |
+
"she's",
|
1435 |
+
"she\u2019s",
|
1436 |
+
"should",
|
1437 |
+
"somethin",
|
1438 |
+
"somethin'",
|
1439 |
+
"something",
|
1440 |
+
"somethin\u2019",
|
1441 |
+
"space",
|
1442 |
+
"sr",
|
1443 |
+
"srs",
|
1444 |
+
"ss.",
|
1445 |
+
"st",
|
1446 |
+
"st.",
|
1447 |
+
"strawberries",
|
1448 |
+
"street",
|
1449 |
+
"s\u2019s",
|
1450 |
+
"t",
|
1451 |
+
"t's",
|
1452 |
+
"t.",
|
1453 |
+
"t_otal",
|
1454 |
+
"ta",
|
1455 |
+
"tal",
|
1456 |
+
"td.",
|
1457 |
+
"ted",
|
1458 |
+
"tenn",
|
1459 |
+
"tenn.",
|
1460 |
+
"ter",
|
1461 |
+
"that",
|
1462 |
+
"that's",
|
1463 |
+
"that\u2019s",
|
1464 |
+
"the",
|
1465 |
+
"them",
|
1466 |
+
"there",
|
1467 |
+
"there's",
|
1468 |
+
"there\u2019s",
|
1469 |
+
"these",
|
1470 |
+
"they",
|
1471 |
+
"this",
|
1472 |
+
"this's",
|
1473 |
+
"this\u2019s",
|
1474 |
+
"those",
|
1475 |
+
"tis",
|
1476 |
+
"to",
|
1477 |
+
"total",
|
1478 |
+
"total_price",
|
1479 |
+
"t\u2019s",
|
1480 |
+
"u",
|
1481 |
+
"u.",
|
1482 |
+
"uce",
|
1483 |
+
"uclafru",
|
1484 |
+
"ucs",
|
1485 |
+
"uff",
|
1486 |
+
"ug.",
|
1487 |
+
"ul.",
|
1488 |
+
"uld",
|
1489 |
+
"un.",
|
1490 |
+
"union",
|
1491 |
+
"unit",
|
1492 |
+
"upon",
|
1493 |
+
"us",
|
1494 |
+
"use",
|
1495 |
+
"ust",
|
1496 |
+
"v",
|
1497 |
+
"v.",
|
1498 |
+
"v.s",
|
1499 |
+
"v.s.",
|
1500 |
+
"v.v",
|
1501 |
+
"v11898",
|
1502 |
+
"v_v",
|
1503 |
+
"va",
|
1504 |
+
"va.",
|
1505 |
+
"vai",
|
1506 |
+
"vanrysselberghe",
|
1507 |
+
"vat",
|
1508 |
+
"ve",
|
1509 |
+
"vin",
|
1510 |
+
"vs",
|
1511 |
+
"vs.",
|
1512 |
+
"w",
|
1513 |
+
"w's",
|
1514 |
+
"w.",
|
1515 |
+
"w/o",
|
1516 |
+
"was",
|
1517 |
+
"wash",
|
1518 |
+
"wash.",
|
1519 |
+
"we",
|
1520 |
+
"weight",
|
1521 |
+
"weight/712,8",
|
1522 |
+
"were",
|
1523 |
+
"what",
|
1524 |
+
"what's",
|
1525 |
+
"what\u2019s",
|
1526 |
+
"when",
|
1527 |
+
"when's",
|
1528 |
+
"when\u2019s",
|
1529 |
+
"where",
|
1530 |
+
"where's",
|
1531 |
+
"where\u2019s",
|
1532 |
+
"who",
|
1533 |
+
"who's",
|
1534 |
+
"who\u2019s",
|
1535 |
+
"why",
|
1536 |
+
"why's",
|
1537 |
+
"why\u2019s",
|
1538 |
+
"width:2479",
|
1539 |
+
"will",
|
1540 |
+
"wis",
|
1541 |
+
"wis.",
|
1542 |
+
"without",
|
1543 |
+
"wo",
|
1544 |
+
"would",
|
1545 |
+
"www.clafru.be",
|
1546 |
+
"w\u2019s",
|
1547 |
+
"x",
|
1548 |
+
"x'",
|
1549 |
+
"x'x",
|
1550 |
+
"x'xxxx",
|
1551 |
+
"x,dd",
|
1552 |
+
"x.",
|
1553 |
+
"x.X",
|
1554 |
+
"x.d",
|
1555 |
+
"x.x",
|
1556 |
+
"x.x.",
|
1557 |
+
"x/x",
|
1558 |
+
"xD",
|
1559 |
+
"xDD",
|
1560 |
+
"xX",
|
1561 |
+
"xXX",
|
1562 |
+
"x_X",
|
1563 |
+
"x_d",
|
1564 |
+
"x_x",
|
1565 |
+
"x_xxxx",
|
1566 |
+
"xcl",
|
1567 |
+
"xd",
|
1568 |
+
"xdd",
|
1569 |
+
"xdddd",
|
1570 |
+
"xx",
|
1571 |
+
"xx'",
|
1572 |
+
"xx'x",
|
1573 |
+
"xx'xx",
|
1574 |
+
"xx.",
|
1575 |
+
"xxdddd",
|
1576 |
+
"xxddddx",
|
1577 |
+
"xxx",
|
1578 |
+
"xxx'x",
|
1579 |
+
"xxx.xxxx.xx",
|
1580 |
+
"xxx/xx",
|
1581 |
+
"xxx:ddd",
|
1582 |
+
"xxxddd.ddd.ddd",
|
1583 |
+
"xxxx",
|
1584 |
+
"xxxx'",
|
1585 |
+
"xxxx'x",
|
1586 |
+
"xxxx(xx",
|
1587 |
+
"xxxx/ddd,d",
|
1588 |
+
"xxxx:d",
|
1589 |
+
"xxxx:dddd",
|
1590 |
+
"[email protected]",
|
1591 |
+
"xxxxdddd",
|
1592 |
+
"xxxx\u2019",
|
1593 |
+
"xxxx\u2019x",
|
1594 |
+
"xxx\u2019x",
|
1595 |
+
"xx\u2019",
|
1596 |
+
"xx\u2019x",
|
1597 |
+
"xx\u2019xx",
|
1598 |
+
"x\u2019",
|
1599 |
+
"x\u2019x",
|
1600 |
+
"x\u2019xxxx",
|
1601 |
+
"x\ufe35x",
|
1602 |
+
"y",
|
1603 |
+
"y'",
|
1604 |
+
"y's",
|
1605 |
+
"y.",
|
1606 |
+
"you",
|
1607 |
+
"y\u2019",
|
1608 |
+
"y\u2019s",
|
1609 |
+
"z",
|
1610 |
+
"z.",
|
1611 |
+
"|",
|
1612 |
+
"}",
|
1613 |
+
"\u00a0",
|
1614 |
+
"\u00ac",
|
1615 |
+
"\u00ac_\u00ac",
|
1616 |
+
"\u00af",
|
1617 |
+
"\u00af\\(x)/\u00af",
|
1618 |
+
"\u00af\\(\u30c4)/\u00af",
|
1619 |
+
"\u00b0",
|
1620 |
+
"\u00b0C.",
|
1621 |
+
"\u00b0F.",
|
1622 |
+
"\u00b0K.",
|
1623 |
+
"\u00b0X.",
|
1624 |
+
"\u00b0c.",
|
1625 |
+
"\u00b0f.",
|
1626 |
+
"\u00b0k.",
|
1627 |
+
"\u00b0x.",
|
1628 |
+
"\u00e4",
|
1629 |
+
"\u00e4.",
|
1630 |
+
"\u00f6",
|
1631 |
+
"\u00f6.",
|
1632 |
+
"\u00fc",
|
1633 |
+
"\u00fc.",
|
1634 |
+
"\u0ca0",
|
1635 |
+
"\u0ca0_\u0ca0",
|
1636 |
+
"\u0ca0\ufe35\u0ca0",
|
1637 |
+
"\u2014",
|
1638 |
+
"\u2018",
|
1639 |
+
"\u2018S",
|
1640 |
+
"\u2018X",
|
1641 |
+
"\u2018s",
|
1642 |
+
"\u2018x",
|
1643 |
+
"\u2019",
|
1644 |
+
"\u2019-(",
|
1645 |
+
"\u2019-)",
|
1646 |
+
"\u2019Cause",
|
1647 |
+
"\u2019Cos",
|
1648 |
+
"\u2019Coz",
|
1649 |
+
"\u2019Cuz",
|
1650 |
+
"\u2019S",
|
1651 |
+
"\u2019X",
|
1652 |
+
"\u2019Xxx",
|
1653 |
+
"\u2019Xxxxx",
|
1654 |
+
"\u2019am",
|
1655 |
+
"\u2019bout",
|
1656 |
+
"\u2019cause",
|
1657 |
+
"\u2019cos",
|
1658 |
+
"\u2019coz",
|
1659 |
+
"\u2019cuz",
|
1660 |
+
"\u2019d",
|
1661 |
+
"\u2019em",
|
1662 |
+
"\u2019ll",
|
1663 |
+
"\u2019m",
|
1664 |
+
"\u2019nuff",
|
1665 |
+
"\u2019re",
|
1666 |
+
"\u2019s",
|
1667 |
+
"\u2019ve",
|
1668 |
+
"\u2019x",
|
1669 |
+
"\u2019xx",
|
1670 |
+
"\u2019xxx",
|
1671 |
+
"\u2019xxxx",
|
1672 |
+
"\u2019y",
|
1673 |
+
"\u2019\u2019",
|
1674 |
+
"\u2022",
|
1675 |
+
"\u2501",
|
1676 |
+
"\u253b",
|
1677 |
+
"\u253b\u2501\u253b",
|
1678 |
+
"\u256f",
|
1679 |
+
"\u25a1",
|
1680 |
+
"\ufe35",
|
1681 |
+
"\uff09"
|
1682 |
+
]
|
vocab/vectors
ADDED
Binary file (128 Bytes). View file
|
|
vocab/vectors.cfg
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"mode":"default"
|
3 |
+
}
|