alimagedayad commited on
Commit
0c7fbf6
1 Parent(s): 9e4b3a1

Update spaCy pipeline

Browse files
.gitattributes CHANGED
@@ -33,3 +33,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ en_pipeline-any-py3-none-any.whl filter=lfs diff=lfs merge=lfs -text
37
+ ner/model filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - spacy
4
+ - token-classification
5
+ language:
6
+ - en
7
+ ---
8
+ | Feature | Description |
9
+ | --- | --- |
10
+ | **Name** | `en_pipeline` |
11
+ | **Version** | `0.0.0` |
12
+ | **spaCy** | `>=3.5.2,<3.6.0` |
13
+ | **Default Pipeline** | `ner` |
14
+ | **Components** | `ner` |
15
+ | **Vectors** | 0 keys, 0 unique vectors (0 dimensions) |
16
+ | **Sources** | n/a |
17
+ | **License** | n/a |
18
+ | **Author** | [n/a]() |
19
+
20
+ ### Label Scheme
21
+
22
+ <details>
23
+
24
+ <summary>View label scheme (4 labels for 1 components)</summary>
25
+
26
+ | Component | Labels |
27
+ | --- | --- |
28
+ | **`ner`** | `BANK`, `LOCATION`, `OP`, `VENDOR` |
29
+
30
+ </details>
config.cfg ADDED
@@ -0,0 +1,129 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [paths]
2
+ train = null
3
+ dev = null
4
+ vectors = null
5
+ init_tok2vec = null
6
+
7
+ [system]
8
+ seed = 0
9
+ gpu_allocator = null
10
+
11
+ [nlp]
12
+ lang = "en"
13
+ pipeline = ["ner"]
14
+ disabled = []
15
+ before_creation = null
16
+ after_creation = null
17
+ after_pipeline_creation = null
18
+ batch_size = 1000
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 = true
37
+ nO = null
38
+
39
+ [components.ner.model.tok2vec]
40
+ @architectures = "spacy.HashEmbedCNN.v2"
41
+ pretrained_vectors = null
42
+ width = 96
43
+ depth = 4
44
+ embed_size = 2000
45
+ window_size = 1
46
+ maxout_pieces = 3
47
+ subword_features = true
48
+
49
+ [corpora]
50
+
51
+ [corpora.dev]
52
+ @readers = "spacy.Corpus.v1"
53
+ path = ${paths.dev}
54
+ gold_preproc = false
55
+ max_length = 0
56
+ limit = 0
57
+ augmenter = null
58
+
59
+ [corpora.train]
60
+ @readers = "spacy.Corpus.v1"
61
+ path = ${paths.train}
62
+ gold_preproc = false
63
+ max_length = 0
64
+ limit = 0
65
+ augmenter = null
66
+
67
+ [training]
68
+ seed = ${system.seed}
69
+ gpu_allocator = ${system.gpu_allocator}
70
+ dropout = 0.1
71
+ accumulate_gradient = 1
72
+ patience = 1600
73
+ max_epochs = 0
74
+ max_steps = 20000
75
+ eval_frequency = 200
76
+ frozen_components = []
77
+ annotating_components = []
78
+ dev_corpus = "corpora.dev"
79
+ train_corpus = "corpora.train"
80
+ before_to_disk = null
81
+ before_update = null
82
+
83
+ [training.batcher]
84
+ @batchers = "spacy.batch_by_words.v1"
85
+ discard_oversize = false
86
+ tolerance = 0.2
87
+ get_length = null
88
+
89
+ [training.batcher.size]
90
+ @schedules = "compounding.v1"
91
+ start = 100
92
+ stop = 1000
93
+ compound = 1.001
94
+ t = 0.0
95
+
96
+ [training.logger]
97
+ @loggers = "spacy.ConsoleLogger.v1"
98
+ progress_bar = false
99
+
100
+ [training.optimizer]
101
+ @optimizers = "Adam.v1"
102
+ beta1 = 0.9
103
+ beta2 = 0.999
104
+ L2_is_weight_decay = true
105
+ L2 = 0.01
106
+ grad_clip = 1.0
107
+ use_averages = false
108
+ eps = 0.00000001
109
+ learn_rate = 0.001
110
+
111
+ [training.score_weights]
112
+ ents_f = 1.0
113
+ ents_p = 0.0
114
+ ents_r = 0.0
115
+ ents_per_type = null
116
+
117
+ [pretraining]
118
+
119
+ [initialize]
120
+ vectors = ${paths.vectors}
121
+ init_tok2vec = ${paths.init_tok2vec}
122
+ vocab_data = null
123
+ lookups = null
124
+ before_init = null
125
+ after_init = null
126
+
127
+ [initialize.components]
128
+
129
+ [initialize.tokenizer]
en_pipeline-any-py3-none-any.whl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e12a436bd992039e0e9287d18a950f821e58b2eebe7fc8a3757413063f4ea7d0
3
+ size 3600758
meta.json ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lang":"en",
3
+ "name":"pipeline",
4
+ "version":"0.0.0",
5
+ "description":"",
6
+ "author":"",
7
+ "email":"",
8
+ "url":"",
9
+ "license":"",
10
+ "spacy_version":">=3.5.2,<3.6.0",
11
+ "spacy_git_version":"aea4a96f9",
12
+ "vectors":{
13
+ "width":0,
14
+ "vectors":0,
15
+ "keys":0,
16
+ "name":null
17
+ },
18
+ "labels":{
19
+ "ner":[
20
+ "BANK",
21
+ "LOCATION",
22
+ "OP",
23
+ "VENDOR"
24
+ ]
25
+ },
26
+ "pipeline":[
27
+ "ner"
28
+ ],
29
+ "components":[
30
+ "ner"
31
+ ],
32
+ "disabled":[
33
+
34
+ ],
35
+ "requirements":[
36
+
37
+ ]
38
+ }
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
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6f6914fde3b008eccbcafec558a4e6167e9f2942084883f397ff44c31f5ce0c8
3
+ size 3836040
ner/moves ADDED
@@ -0,0 +1 @@
 
 
1
+ ��moves��{"0":{},"1":{"OP":-1,"BANK":-2,"LOCATION":-3,"VENDOR":-4},"2":{"OP":-1,"BANK":-2,"LOCATION":-3,"VENDOR":-4},"3":{"OP":-1,"BANK":-2,"LOCATION":-3,"VENDOR":-4},"4":{"":1,"OP":-1,"BANK":-2,"LOCATION":-3,"VENDOR":-4},"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�
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,2838 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ "\t",
3
+ "\n",
4
+ " ",
5
+ " ",
6
+ "\"",
7
+ "&",
8
+ "'",
9
+ "''",
10
+ "'-(",
11
+ "'-)",
12
+ "'Cause",
13
+ "'Cos",
14
+ "'Coz",
15
+ "'Cuz",
16
+ "'S",
17
+ "'X",
18
+ "'Xxx",
19
+ "'Xxxxx",
20
+ "'am",
21
+ "'bout",
22
+ "'cause",
23
+ "'cos",
24
+ "'coz",
25
+ "'cuz",
26
+ "'d",
27
+ "'em",
28
+ "'ll",
29
+ "'m",
30
+ "'nuff",
31
+ "'re",
32
+ "'s",
33
+ "'ve",
34
+ "'x",
35
+ "'xx",
36
+ "'xxx",
37
+ "'xxxx",
38
+ "'y",
39
+ "(",
40
+ "(((",
41
+ "(*>",
42
+ "(*_*)",
43
+ "(-8",
44
+ "(-:",
45
+ "(-;",
46
+ "(-_-)",
47
+ "(-d",
48
+ "(._.)",
49
+ "(:",
50
+ "(;",
51
+ "(=",
52
+ "(>_<)",
53
+ "(^_^)",
54
+ "(o:",
55
+ "(x:",
56
+ "(x_x)",
57
+ "(\u00ac_\u00ac)",
58
+ "(\u0ca0_\u0ca0)",
59
+ "(\u256f\u00b0\u25a1\u00b0\uff09\u256f\ufe35\u253b\u2501\u253b",
60
+ ")",
61
+ ")))",
62
+ ")-:",
63
+ ")/\u00af",
64
+ "):",
65
+ "*",
66
+ ",",
67
+ "-",
68
+ "-((",
69
+ "-))",
70
+ "-/",
71
+ "-0",
72
+ "-3",
73
+ "-8",
74
+ "-D",
75
+ "-O",
76
+ "-P",
77
+ "-X",
78
+ "-_-",
79
+ "-__-",
80
+ "-d",
81
+ "-o",
82
+ "-p",
83
+ "-x",
84
+ "-|",
85
+ ".",
86
+ "..",
87
+ "...",
88
+ ".C.",
89
+ ".D.",
90
+ ".E.",
91
+ ".G.",
92
+ ".H.",
93
+ ".J.",
94
+ ".M.",
95
+ ".Y.",
96
+ "._.",
97
+ ".e.",
98
+ ".g.",
99
+ ".m.",
100
+ ".s.",
101
+ "/",
102
+ "/3",
103
+ "/d",
104
+ "/or",
105
+ "0",
106
+ "0.0",
107
+ "0.o",
108
+ "0_0",
109
+ "0_o",
110
+ "1",
111
+ "10",
112
+ "10a.m",
113
+ "10a.m.",
114
+ "10p.m",
115
+ "10p.m.",
116
+ "11",
117
+ "11a.m",
118
+ "11a.m.",
119
+ "11p.m",
120
+ "11p.m.",
121
+ "12",
122
+ "12a.m",
123
+ "12a.m.",
124
+ "12p.m",
125
+ "12p.m.",
126
+ "1a.m",
127
+ "1a.m.",
128
+ "1p.m",
129
+ "1p.m.",
130
+ "2",
131
+ "2a.m",
132
+ "2a.m.",
133
+ "2p.m",
134
+ "2p.m.",
135
+ "3",
136
+ "33",
137
+ "333",
138
+ "3a.m",
139
+ "3a.m.",
140
+ "3p.m",
141
+ "3p.m.",
142
+ "4",
143
+ "4a.m",
144
+ "4a.m.",
145
+ "4p.m",
146
+ "4p.m.",
147
+ "5",
148
+ "5a.m",
149
+ "5a.m.",
150
+ "5p.m",
151
+ "5p.m.",
152
+ "6",
153
+ "6a.m",
154
+ "6a.m.",
155
+ "6p.m",
156
+ "6p.m.",
157
+ "7",
158
+ "7a.m",
159
+ "7a.m.",
160
+ "7p.m",
161
+ "7p.m.",
162
+ "8",
163
+ "8)",
164
+ "8-",
165
+ "8-)",
166
+ "8-D",
167
+ "8-d",
168
+ "8D",
169
+ "8a.m",
170
+ "8a.m.",
171
+ "8d",
172
+ "8p.m",
173
+ "8p.m.",
174
+ "9",
175
+ "9a.m",
176
+ "9a.m.",
177
+ "9p.m",
178
+ "9p.m.",
179
+ ":",
180
+ ":'(",
181
+ ":')",
182
+ ":'-(",
183
+ ":'-)",
184
+ ":(",
185
+ ":((",
186
+ ":(((",
187
+ ":()",
188
+ ":)",
189
+ ":))",
190
+ ":)))",
191
+ ":*",
192
+ ":-(",
193
+ ":-((",
194
+ ":-(((",
195
+ ":-)",
196
+ ":-))",
197
+ ":-)))",
198
+ ":-*",
199
+ ":-/",
200
+ ":-0",
201
+ ":-3",
202
+ ":->",
203
+ ":-D",
204
+ ":-O",
205
+ ":-P",
206
+ ":-X",
207
+ ":-]",
208
+ ":-d",
209
+ ":-o",
210
+ ":-p",
211
+ ":-x",
212
+ ":-|",
213
+ ":-}",
214
+ ":/",
215
+ ":0",
216
+ ":1",
217
+ ":3",
218
+ ":>",
219
+ ":D",
220
+ ":O",
221
+ ":P",
222
+ ":X",
223
+ ":]",
224
+ ":d",
225
+ ":o",
226
+ ":o)",
227
+ ":p",
228
+ ":x",
229
+ ":x)",
230
+ ":|",
231
+ ":}",
232
+ ":\u2019(",
233
+ ":\u2019)",
234
+ ":\u2019-(",
235
+ ":\u2019-)",
236
+ ";",
237
+ ";)",
238
+ ";-)",
239
+ ";-D",
240
+ ";-X",
241
+ ";-d",
242
+ ";D",
243
+ ";X",
244
+ ";_;",
245
+ ";d",
246
+ "<",
247
+ "<.<",
248
+ "</3",
249
+ "</d",
250
+ "<3",
251
+ "<33",
252
+ "<333",
253
+ "<d",
254
+ "<dd",
255
+ "<ddd",
256
+ "<space>",
257
+ "<xxxx>",
258
+ "=",
259
+ "=(",
260
+ "=)",
261
+ "=/",
262
+ "=3",
263
+ "=D",
264
+ "=X",
265
+ "=[",
266
+ "=]",
267
+ "=d",
268
+ "=|",
269
+ ">",
270
+ ">.<",
271
+ ">.>",
272
+ ">:(",
273
+ ">:o",
274
+ ">:x",
275
+ "><(((*>",
276
+ "@",
277
+ "@_@",
278
+ "A",
279
+ "AAG",
280
+ "AAT",
281
+ "AB",
282
+ "ABDEL",
283
+ "ABDELBASET",
284
+ "ABO",
285
+ "ABY",
286
+ "ACCEPT",
287
+ "ACCOUNT",
288
+ "ACE",
289
+ "ACH",
290
+ "ACH(ACH/",
291
+ "ACK",
292
+ "ADA",
293
+ "ADCB",
294
+ "ADE",
295
+ "ADI",
296
+ "ADIDAS",
297
+ "ADMIN",
298
+ "ADS",
299
+ "ADSL",
300
+ "AFA",
301
+ "AFE",
302
+ "AHR",
303
+ "AIBANK",
304
+ "AIBKATM",
305
+ "AIN",
306
+ "AINS",
307
+ "AIR",
308
+ "AIRO",
309
+ "AJD",
310
+ "AKE",
311
+ "ALA",
312
+ "ALD",
313
+ "ALEX",
314
+ "ALEXOTEL",
315
+ "ALI",
316
+ "ALL",
317
+ "ALMADDI",
318
+ "ALMAZA",
319
+ "ALMOKHTABAR",
320
+ "ALO",
321
+ "ALSHY",
322
+ "ALXB",
323
+ "ALY",
324
+ "AMAN",
325
+ "AMAZON",
326
+ "AME",
327
+ "AMO",
328
+ "AMSTERDAM",
329
+ "ANA",
330
+ "AND",
331
+ "ANK",
332
+ "ANO",
333
+ "ANT",
334
+ "ANY",
335
+ "APEX",
336
+ "APPLE",
337
+ "APPLE.COM",
338
+ "ARABELLA",
339
+ "ARAFA",
340
+ "ARAMEX",
341
+ "ARD",
342
+ "ARG",
343
+ "ARK",
344
+ "ARR",
345
+ "ART",
346
+ "ARY",
347
+ "ASE",
348
+ "ASH",
349
+ "AST",
350
+ "ASY",
351
+ "ATE",
352
+ "ATM",
353
+ "ATY",
354
+ "AUC",
355
+ "AUTO",
356
+ "AWARD",
357
+ "AWY",
358
+ "AYA",
359
+ "AYAD",
360
+ "AZA",
361
+ "AZZAM",
362
+ "Abdelrahman",
363
+ "Accept",
364
+ "Account",
365
+ "Adm",
366
+ "Adm.",
367
+ "Ai",
368
+ "Ak",
369
+ "Ak.",
370
+ "Ala",
371
+ "Ala.",
372
+ "Alabama",
373
+ "Alaska",
374
+ "Alfa",
375
+ "Ali",
376
+ "Aliiiiii",
377
+ "Annual",
378
+ "Another",
379
+ "Apr",
380
+ "Apr.",
381
+ "April",
382
+ "Are",
383
+ "Ariz",
384
+ "Ariz.",
385
+ "Arizona",
386
+ "Ark",
387
+ "Ark.",
388
+ "Arkansas",
389
+ "Aug",
390
+ "Aug.",
391
+ "August",
392
+ "Ayad",
393
+ "B",
394
+ "BACK",
395
+ "BAD",
396
+ "BAN",
397
+ "BANK",
398
+ "BAR",
399
+ "BARBR",
400
+ "BAVARIAN",
401
+ "BAY",
402
+ "BCO",
403
+ "BDC",
404
+ "BEANO",
405
+ "BELGIUM",
406
+ "BERLIN",
407
+ "BG",
408
+ "BIL",
409
+ "BILL",
410
+ "BIRMINGHAM",
411
+ "BLIZZARD",
412
+ "BM",
413
+ "BN",
414
+ "BNA",
415
+ "BONJOUR",
416
+ "BOU",
417
+ "BR",
418
+ "BREADFAST",
419
+ "BRKA",
420
+ "BSW",
421
+ "BUFFALO",
422
+ "BULL",
423
+ "BUY",
424
+ "BV",
425
+ "BY",
426
+ "Berry",
427
+ "Bonus",
428
+ "Breadfast",
429
+ "Bros",
430
+ "Bros.",
431
+ "C",
432
+ "C'm",
433
+ "C++",
434
+ "C.",
435
+ "CAFE",
436
+ "CAIRO",
437
+ "CAKE",
438
+ "CAL",
439
+ "CAR",
440
+ "CARDLESS",
441
+ "CAREEM",
442
+ "CARIBOU",
443
+ "CARREFOUR",
444
+ "CASH",
445
+ "CB",
446
+ "CEG",
447
+ "CENTER",
448
+ "CF",
449
+ "CFC",
450
+ "CH",
451
+ "CH(TXARIBEGCX",
452
+ "CH/",
453
+ "CHE",
454
+ "CHEAP",
455
+ "CHEQ",
456
+ "CHICKEN",
457
+ "CHICKIN",
458
+ "CHIKEN",
459
+ "CHILL",
460
+ "CHILLOUT",
461
+ "CIB",
462
+ "CIRCLE",
463
+ "CITY",
464
+ "CITYUS",
465
+ "CKS",
466
+ "CLE",
467
+ "CLOTHES",
468
+ "CLUB",
469
+ "CO",
470
+ "CO/",
471
+ "COCO",
472
+ "COFFEE",
473
+ "COFFEED",
474
+ "COM",
475
+ "COMMERCE",
476
+ "COMPANY",
477
+ "CONCORD",
478
+ "COOK",
479
+ "COSTA",
480
+ "COURT",
481
+ "CREPE",
482
+ "CUP",
483
+ "Ca",
484
+ "Cairo",
485
+ "Calif",
486
+ "Calif.",
487
+ "California",
488
+ "Can",
489
+ "Card",
490
+ "Carlos",
491
+ "Cash",
492
+ "Cause",
493
+ "Change",
494
+ "Circle",
495
+ "City",
496
+ "Client",
497
+ "Co",
498
+ "Co.",
499
+ "Coffee",
500
+ "Colo",
501
+ "Colo.",
502
+ "Colorado",
503
+ "Conn",
504
+ "Conn.",
505
+ "Connecticut",
506
+ "Core",
507
+ "Corp",
508
+ "Corp.",
509
+ "Cos",
510
+ "Could",
511
+ "Coz",
512
+ "Credit",
513
+ "Cuz",
514
+ "C\u2019m",
515
+ "D",
516
+ "D.",
517
+ "D.C.",
518
+ "DAM",
519
+ "DAN",
520
+ "DANDY",
521
+ "DAS",
522
+ "DCB",
523
+ "DDI",
524
+ "DE",
525
+ "DEA",
526
+ "DECATHLON",
527
+ "DEHRADUN",
528
+ "DEL",
529
+ "DEPOSIT",
530
+ "DGE",
531
+ "DIG",
532
+ "DIGITALOCEAN",
533
+ "DIS",
534
+ "DLE",
535
+ "DONUTS",
536
+ "DOOR",
537
+ "DOWNTOWN",
538
+ "DR",
539
+ "DRIVE",
540
+ "DSL",
541
+ "DUN",
542
+ "DUNKIN",
543
+ "Dare",
544
+ "Debit",
545
+ "Debt",
546
+ "Dec",
547
+ "Dec.",
548
+ "December",
549
+ "Del",
550
+ "Del.",
551
+ "Delaware",
552
+ "Deposit",
553
+ "Did",
554
+ "Diet",
555
+ "Dina",
556
+ "Diplo",
557
+ "Diplomat",
558
+ "Direct",
559
+ "Do",
560
+ "Does",
561
+ "Doin",
562
+ "Doin'",
563
+ "Doin\u2019",
564
+ "Dominos",
565
+ "Downtown",
566
+ "Dr",
567
+ "Dr.",
568
+ "Drive",
569
+ "Dublin",
570
+ "E",
571
+ "E.G.",
572
+ "E.g",
573
+ "E.g.",
574
+ "EAM",
575
+ "EAN",
576
+ "EAP",
577
+ "EAR",
578
+ "EASY",
579
+ "EBK",
580
+ "ECH",
581
+ "EED",
582
+ "EEM",
583
+ "EES",
584
+ "EET",
585
+ "EG",
586
+ "EGYPT",
587
+ "EGYPTAIN",
588
+ "EGYPTAIR",
589
+ "EIR",
590
+ "EL",
591
+ "ELASMART",
592
+ "ELDAHAN",
593
+ "ELFAR",
594
+ "ELKHEIR",
595
+ "ELLASELKY",
596
+ "ELMAHALAWY",
597
+ "ELMEARAG",
598
+ "ELMENUS",
599
+ "ELMOKTAM",
600
+ "ELMOSHI",
601
+ "ELNARG",
602
+ "ELNOUR",
603
+ "ELSBETHEN",
604
+ "ELTAGAMO",
605
+ "EMARAT",
606
+ "EME",
607
+ "EMIRATES",
608
+ "EMPLOYE",
609
+ "EMPLOYEES",
610
+ "ENT",
611
+ "EOR",
612
+ "EPE",
613
+ "EPT",
614
+ "ERS",
615
+ "ESH",
616
+ "ESS",
617
+ "ETISALAT",
618
+ "ETS",
619
+ "EW",
620
+ "EXCHANGE",
621
+ "EYA",
622
+ "EZABY",
623
+ "Earned",
624
+ "EasyKash",
625
+ "Egypt",
626
+ "El",
627
+ "Elrefaay",
628
+ "Elsham",
629
+ "Emirates",
630
+ "Enas",
631
+ "Energy",
632
+ "F",
633
+ "F.",
634
+ "FACEBK",
635
+ "FAKAHANY",
636
+ "FAR",
637
+ "FAWRY",
638
+ "FAWRY*SHYL",
639
+ "FAWRY*TOMMY",
640
+ "FEE",
641
+ "FEES",
642
+ "FELIXMERCHANT",
643
+ "FIC",
644
+ "FIT",
645
+ "FLAMINGO",
646
+ "FLAMNGO",
647
+ "FLY",
648
+ "FNTS",
649
+ "FO",
650
+ "FOOD",
651
+ "FOR",
652
+ "FORCE",
653
+ "FOREIGN",
654
+ "FR",
655
+ "FRESH",
656
+ "FRIED",
657
+ "FROM",
658
+ "FRUIT",
659
+ "FUEL",
660
+ "FWRM",
661
+ "Feb",
662
+ "Feb.",
663
+ "February",
664
+ "Fee",
665
+ "Fees",
666
+ "Fifth",
667
+ "Fit",
668
+ "Fla",
669
+ "Fla.",
670
+ "Florida",
671
+ "Flyer",
672
+ "Food",
673
+ "Frequent",
674
+ "Funds",
675
+ "G",
676
+ "GALAXYGYM",
677
+ "GALLERIA",
678
+ "GAMES",
679
+ "GAN",
680
+ "GAZ",
681
+ "GB",
682
+ "GCX",
683
+ "GEIDEA",
684
+ "GEIDEAMEDICA",
685
+ "GEN",
686
+ "GFM",
687
+ "GHATATY",
688
+ "GIRA",
689
+ "GIZA",
690
+ "GLAAT",
691
+ "GLE",
692
+ "GLEEM",
693
+ "GO",
694
+ "GOAT",
695
+ "GOOGLE",
696
+ "GORMET",
697
+ "GOS",
698
+ "GOVPAY",
699
+ "GRAND",
700
+ "GRINGO",
701
+ "GRINGOS",
702
+ "GROUP",
703
+ "GYM",
704
+ "GYPT",
705
+ "Ga",
706
+ "Ga.",
707
+ "Gatos",
708
+ "Gelato",
709
+ "Gen",
710
+ "Gen.",
711
+ "Georgia",
712
+ "Giza",
713
+ "GoFndMe",
714
+ "Goin",
715
+ "Goin'",
716
+ "Goin\u2019",
717
+ "Gon",
718
+ "Google",
719
+ "GoogleAdwordsEU",
720
+ "Got",
721
+ "Gourmet",
722
+ "Gov",
723
+ "Gov.",
724
+ "H",
725
+ "HAB",
726
+ "HAG",
727
+ "HAL",
728
+ "HAM",
729
+ "HAN",
730
+ "HARDEES",
731
+ "HCZ",
732
+ "HEE",
733
+ "HEGAZ",
734
+ "HELIOPOLIS",
735
+ "HEN",
736
+ "HEQ",
737
+ "HES",
738
+ "HLY",
739
+ "HOP",
740
+ "HOSPITAL",
741
+ "HRU",
742
+ "HSBC",
743
+ "HWA",
744
+ "HYL",
745
+ "HYPER",
746
+ "Had",
747
+ "Hamburg",
748
+ "Has",
749
+ "Have",
750
+ "Havin",
751
+ "Havin'",
752
+ "Havin\u2019",
753
+ "Hawawshi",
754
+ "He",
755
+ "He's",
756
+ "Help",
757
+ "He\u2019s",
758
+ "Hosni",
759
+ "How",
760
+ "How's",
761
+ "How\u2019s",
762
+ "Hub",
763
+ "I",
764
+ "I.E.",
765
+ "I.e",
766
+ "I.e.",
767
+ "IAN",
768
+ "ICA",
769
+ "ICK",
770
+ "IDB",
771
+ "IDE",
772
+ "IE",
773
+ "IED",
774
+ "IFI",
775
+ "IFT",
776
+ "IFY",
777
+ "IGI",
778
+ "IGN",
779
+ "II",
780
+ "III",
781
+ "ILE",
782
+ "ILL",
783
+ "IME",
784
+ "IN",
785
+ "INFINITY",
786
+ "ING",
787
+ "INS",
788
+ "INSTASHOP",
789
+ "INSURANCE",
790
+ "INT",
791
+ "INTER",
792
+ "INTERNATIONAL",
793
+ "INTERNET",
794
+ "ION",
795
+ "IPN",
796
+ "IRA",
797
+ "IRO",
798
+ "ISO",
799
+ "ISR",
800
+ "ITH",
801
+ "ITUNES",
802
+ "ITUNES.COM",
803
+ "ITY",
804
+ "IUM",
805
+ "IVE",
806
+ "IZA",
807
+ "IZY",
808
+ "Ia",
809
+ "Ia.",
810
+ "Ibn",
811
+ "Id",
812
+ "Id.",
813
+ "Idaho",
814
+ "Ill",
815
+ "Ill.",
816
+ "Illinois",
817
+ "Inc",
818
+ "Inc.",
819
+ "Ind",
820
+ "Ind.",
821
+ "Indiana",
822
+ "Interest",
823
+ "Inward",
824
+ "Iowa",
825
+ "Is",
826
+ "It",
827
+ "It's",
828
+ "It\u2019s",
829
+ "J",
830
+ "JED",
831
+ "JIMMY",
832
+ "JIMMYS",
833
+ "JP",
834
+ "JYM",
835
+ "Jan",
836
+ "Jan.",
837
+ "January",
838
+ "Jr",
839
+ "Jr.",
840
+ "Jul",
841
+ "Jul.",
842
+ "July",
843
+ "Jun",
844
+ "Jun.",
845
+ "June",
846
+ "K",
847
+ "K.",
848
+ "KANSAS",
849
+ "KATTAMEYA",
850
+ "KEN",
851
+ "KET",
852
+ "KHAME",
853
+ "KIN",
854
+ "KINGUINDIGI",
855
+ "KIO",
856
+ "KITCHEN",
857
+ "KKA",
858
+ "KNOWLEDGE",
859
+ "KOKIO",
860
+ "KORBA",
861
+ "KREME",
862
+ "KRISPY",
863
+ "KUALA",
864
+ "KUP",
865
+ "KYO",
866
+ "Kan",
867
+ "Kan.",
868
+ "Kans",
869
+ "Kans.",
870
+ "Kansas",
871
+ "Katameya",
872
+ "Kattameya",
873
+ "Kentucky",
874
+ "Knowledge",
875
+ "Ky",
876
+ "Ky.",
877
+ "L",
878
+ "LA",
879
+ "LAB",
880
+ "LAKE",
881
+ "LANYUAN",
882
+ "LAT",
883
+ "LAZADA",
884
+ "LCAIRO",
885
+ "LDS",
886
+ "LEX",
887
+ "LIN",
888
+ "LINCONTRO",
889
+ "LIP",
890
+ "LIS",
891
+ "LKY",
892
+ "LLA",
893
+ "LOCATION",
894
+ "LON",
895
+ "LU",
896
+ "LUB",
897
+ "LUMPUR",
898
+ "LUS",
899
+ "LXB",
900
+ "LYCHEE",
901
+ "LYS",
902
+ "La",
903
+ "La.",
904
+ "Let",
905
+ "Let's",
906
+ "Let\u2019s",
907
+ "London",
908
+ "Los",
909
+ "Louisiana",
910
+ "Lovin",
911
+ "Lovin'",
912
+ "Lovin\u2019",
913
+ "Ltd",
914
+ "Ltd.",
915
+ "Lucky",
916
+ "M",
917
+ "MA",
918
+ "MAA",
919
+ "MAADI",
920
+ "MABCO",
921
+ "MADKHAL",
922
+ "MAHMOUD",
923
+ "MAJD",
924
+ "MAJED",
925
+ "MALL",
926
+ "MAN",
927
+ "MAQARR",
928
+ "MARKET",
929
+ "MARKETPLACE",
930
+ "MARKUP",
931
+ "MART",
932
+ "MASTE",
933
+ "MASTER",
934
+ "MATROUH",
935
+ "MAX",
936
+ "MCDONALD",
937
+ "MCDONALDS",
938
+ "MED",
939
+ "MEDEOR",
940
+ "MEDICAL",
941
+ "MEKKA",
942
+ "MEN",
943
+ "MENIA",
944
+ "MENYA",
945
+ "MERAAG",
946
+ "MES",
947
+ "MET",
948
+ "MEX",
949
+ "MIDB",
950
+ "MIDBATM",
951
+ "MIN",
952
+ "MINISO",
953
+ "MIR",
954
+ "MISR",
955
+ "MISRC",
956
+ "MISRRING",
957
+ "MIX",
958
+ "MMY",
959
+ "MO",
960
+ "MOA",
961
+ "MOB",
962
+ "MOBIL",
963
+ "MOBILATY",
964
+ "MOBILE",
965
+ "MOHAMED",
966
+ "MOKATAM",
967
+ "MOKATTAM",
968
+ "MONTHLY",
969
+ "MORGAN",
970
+ "MOSTAFA",
971
+ "MQR",
972
+ "MUKATTAM",
973
+ "MUSCLE",
974
+ "MY",
975
+ "MYS",
976
+ "Ma'am",
977
+ "Maadi",
978
+ "Maged",
979
+ "Magi",
980
+ "Mall",
981
+ "Mama",
982
+ "Manno",
983
+ "Mar",
984
+ "Mar.",
985
+ "March",
986
+ "MarketNew",
987
+ "Mass",
988
+ "Mass.",
989
+ "Massachusetts",
990
+ "May",
991
+ "Ma\u2019am",
992
+ "McDonalds",
993
+ "Md",
994
+ "Md.",
995
+ "Messrs",
996
+ "Messrs.",
997
+ "Mich",
998
+ "Mich.",
999
+ "Michigan",
1000
+ "Midor",
1001
+ "Might",
1002
+ "Miles",
1003
+ "Minn",
1004
+ "Minn.",
1005
+ "Minnesota",
1006
+ "Mio",
1007
+ "Miss",
1008
+ "Miss.",
1009
+ "Mississippi",
1010
+ "Mo",
1011
+ "Mo.",
1012
+ "Mob",
1013
+ "Mohamed",
1014
+ "Mohandessin",
1015
+ "Mokatt",
1016
+ "Mokattam",
1017
+ "Money",
1018
+ "Mont",
1019
+ "Mont.",
1020
+ "Moqattam",
1021
+ "Mount",
1022
+ "Mr",
1023
+ "Mr.",
1024
+ "Mrs",
1025
+ "Mrs.",
1026
+ "Ms",
1027
+ "Ms.",
1028
+ "Mt",
1029
+ "Mt.",
1030
+ "Musb",
1031
+ "Must",
1032
+ "My",
1033
+ "Myfawry",
1034
+ "N",
1035
+ "N.C.",
1036
+ "N.D.",
1037
+ "N.H.",
1038
+ "N.J.",
1039
+ "N.M.",
1040
+ "N.Y.",
1041
+ "NA",
1042
+ "NAL",
1043
+ "NAME",
1044
+ "NARGS",
1045
+ "NBAD",
1046
+ "NBE",
1047
+ "NCE",
1048
+ "NDO",
1049
+ "NDY",
1050
+ "NE",
1051
+ "NEAR",
1052
+ "NES",
1053
+ "NET",
1054
+ "NEW",
1055
+ "NGE",
1056
+ "NGO",
1057
+ "NGS",
1058
+ "NIA",
1059
+ "NL",
1060
+ "NNY",
1061
+ "NO",
1062
+ "NOON",
1063
+ "NSR",
1064
+ "NTA",
1065
+ "NTS",
1066
+ "NUS",
1067
+ "NYA",
1068
+ "Name",
1069
+ "Nargas",
1070
+ "Nasr",
1071
+ "Neb",
1072
+ "Neb.",
1073
+ "Nebr",
1074
+ "Nebr.",
1075
+ "Nebraska",
1076
+ "Need",
1077
+ "Netflix.com",
1078
+ "Nev",
1079
+ "Nev.",
1080
+ "Nevada",
1081
+ "New",
1082
+ "New Hampshire",
1083
+ "New Jersey",
1084
+ "New Mexico",
1085
+ "New York",
1086
+ "Noon",
1087
+ "North Carolina",
1088
+ "North Dakota",
1089
+ "Not",
1090
+ "Nothin",
1091
+ "Nothin'",
1092
+ "Nothin\u2019",
1093
+ "Nov",
1094
+ "Nov.",
1095
+ "November",
1096
+ "Nuthin",
1097
+ "Nuthin'",
1098
+ "Nuthin\u2019",
1099
+ "Nutrition",
1100
+ "O",
1101
+ "O'clock",
1102
+ "O.O",
1103
+ "O.o",
1104
+ "OAD",
1105
+ "OAT",
1106
+ "OCO",
1107
+ "OCT",
1108
+ "OFR",
1109
+ "OIL",
1110
+ "OLA",
1111
+ "OLI",
1112
+ "OLM",
1113
+ "OM",
1114
+ "ON",
1115
+ "OND",
1116
+ "ONE",
1117
+ "OOD",
1118
+ "OOK",
1119
+ "OON",
1120
+ "OOR",
1121
+ "OP",
1122
+ "ORANGE",
1123
+ "ORD",
1124
+ "ORE",
1125
+ "ORK",
1126
+ "ORX",
1127
+ "OSCAR",
1128
+ "OSE",
1129
+ "OTHERS",
1130
+ "OTT",
1131
+ "OUD",
1132
+ "OUH",
1133
+ "OUP",
1134
+ "OUR",
1135
+ "OUT",
1136
+ "OWN",
1137
+ "OYE",
1138
+ "O_O",
1139
+ "O_o",
1140
+ "Oct",
1141
+ "Oct.",
1142
+ "October",
1143
+ "Okla",
1144
+ "Okla.",
1145
+ "Oklahoma",
1146
+ "Ol",
1147
+ "Ol'",
1148
+ "Ola",
1149
+ "Ol\u2019",
1150
+ "Omar",
1151
+ "One",
1152
+ "Online",
1153
+ "Orange",
1154
+ "Ore",
1155
+ "Ore.",
1156
+ "Oregon",
1157
+ "Oscar",
1158
+ "Others",
1159
+ "Otlob.com",
1160
+ "Ought",
1161
+ "Outward",
1162
+ "O\u2019clock",
1163
+ "P",
1164
+ "PADDLE",
1165
+ "PAL",
1166
+ "PARK",
1167
+ "PAS",
1168
+ "PASSPOR",
1169
+ "PASSPORTS",
1170
+ "PAY",
1171
+ "PAYMENT",
1172
+ "PAYMOB",
1173
+ "PAYPAL",
1174
+ "PENNY",
1175
+ "PER",
1176
+ "PEX",
1177
+ "PHARMA",
1178
+ "PICK",
1179
+ "PLA",
1180
+ "PLASTIC",
1181
+ "PLAZA",
1182
+ "PLE",
1183
+ "PLUS",
1184
+ "PO",
1185
+ "POINT",
1186
+ "POR",
1187
+ "PRE",
1188
+ "PRIME",
1189
+ "PROCAR",
1190
+ "PS",
1191
+ "PUR",
1192
+ "PURCHASE",
1193
+ "Pa",
1194
+ "Pa.",
1195
+ "PayMob",
1196
+ "Payee",
1197
+ "Payer",
1198
+ "Payment",
1199
+ "Paymob",
1200
+ "Pennsylvania",
1201
+ "Personal",
1202
+ "Ph",
1203
+ "Ph.D.",
1204
+ "Pizza",
1205
+ "Plus",
1206
+ "Prof",
1207
+ "Prof.",
1208
+ "Promenade",
1209
+ "Publishing",
1210
+ "Q",
1211
+ "QAHWA",
1212
+ "QNATE",
1213
+ "QUICK",
1214
+ "QWBMVHCZ",
1215
+ "R",
1216
+ "RABBITSCO",
1217
+ "RAFAAT",
1218
+ "RAG",
1219
+ "RAN",
1220
+ "RANA",
1221
+ "RAT",
1222
+ "RAYA",
1223
+ "RBA",
1224
+ "RBR",
1225
+ "RCE",
1226
+ "RCJ",
1227
+ "RECEIVED",
1228
+ "RED",
1229
+ "REDEMPTION",
1230
+ "REFUND",
1231
+ "REHAB",
1232
+ "RESTAURANT",
1233
+ "RGS",
1234
+ "RI",
1235
+ "RIA",
1236
+ "RKA",
1237
+ "RMA",
1238
+ "ROAD",
1239
+ "ROM",
1240
+ "ROOT",
1241
+ "ROYAL",
1242
+ "RTANTA",
1243
+ "RTI",
1244
+ "RTIN()\u0645\u0635\u0627\u0631\u064a\u0641",
1245
+ "RTIN()\u0645\u0635\u0631\u0648\u0641",
1246
+ "RTIN(DIG",
1247
+ "RTIN(SALARY",
1248
+ "RTS",
1249
+ "RUN",
1250
+ "Redwood",
1251
+ "Refa",
1252
+ "Rep",
1253
+ "Rep.",
1254
+ "Rev",
1255
+ "Rev.",
1256
+ "Reverse",
1257
+ "Riot",
1258
+ "S",
1259
+ "S.C.",
1260
+ "SAMIR",
1261
+ "SAS",
1262
+ "SBC",
1263
+ "SCO",
1264
+ "SE",
1265
+ "SECOND",
1266
+ "SEOUDI",
1267
+ "SET",
1268
+ "SG",
1269
+ "SHENZAWY",
1270
+ "SHI",
1271
+ "SHOP",
1272
+ "SHUBR",
1273
+ "SHY",
1274
+ "SIDE",
1275
+ "SIDEMEN",
1276
+ "SIF",
1277
+ "SILVER",
1278
+ "SINGAPORE",
1279
+ "SIT",
1280
+ "SOLIDARITY",
1281
+ "SPOTIFY",
1282
+ "SPY",
1283
+ "SRC",
1284
+ "ST",
1285
+ "STA",
1286
+ "STAR",
1287
+ "STARBUCKS",
1288
+ "STATION",
1289
+ "STE",
1290
+ "STEAM",
1291
+ "STEAMGAMES",
1292
+ "STOCKHOLM",
1293
+ "STORE",
1294
+ "STREET",
1295
+ "SUBSCRIPTION",
1296
+ "SUEZ",
1297
+ "SUHAG",
1298
+ "SUPER",
1299
+ "SUPERMARKET",
1300
+ "SWAN",
1301
+ "SWEETS",
1302
+ "SWVL",
1303
+ "SYNDO",
1304
+ "Salama",
1305
+ "Scheme",
1306
+ "Sen",
1307
+ "Sen.",
1308
+ "Seoudi",
1309
+ "Sep",
1310
+ "Sep.",
1311
+ "Sept",
1312
+ "Sept.",
1313
+ "September",
1314
+ "Sha",
1315
+ "She",
1316
+ "She's",
1317
+ "She\u2019s",
1318
+ "Should",
1319
+ "Solidarity",
1320
+ "Somethin",
1321
+ "Somethin'",
1322
+ "Somethin\u2019",
1323
+ "South Carolina",
1324
+ "Space",
1325
+ "Sphinx",
1326
+ "Spin",
1327
+ "Spotify",
1328
+ "St",
1329
+ "St.",
1330
+ "Starbucks",
1331
+ "Stockholm",
1332
+ "Storage",
1333
+ "T",
1334
+ "TAGAMOA",
1335
+ "TAL",
1336
+ "TAM",
1337
+ "TAR",
1338
+ "TAYARAN",
1339
+ "TAZKARTI",
1340
+ "TBS",
1341
+ "TBSW",
1342
+ "TEL",
1343
+ "TELECOM",
1344
+ "TER",
1345
+ "TES",
1346
+ "TGAMAA",
1347
+ "THE",
1348
+ "THO",
1349
+ "THRU",
1350
+ "TIC",
1351
+ "TIVOLI",
1352
+ "TOKYO",
1353
+ "TOLIP",
1354
+ "TOP",
1355
+ "TOTAL",
1356
+ "TRADE",
1357
+ "TRADING",
1358
+ "TRAFFIC",
1359
+ "TRIPMODECH",
1360
+ "TRO",
1361
+ "TRS",
1362
+ "TRX",
1363
+ "TSEPPAS",
1364
+ "TTA",
1365
+ "TUR",
1366
+ "Talabat",
1367
+ "Talat",
1368
+ "Tenn",
1369
+ "Tenn.",
1370
+ "Tennessee",
1371
+ "Test",
1372
+ "That",
1373
+ "That's",
1374
+ "That\u2019s",
1375
+ "There",
1376
+ "There's",
1377
+ "There\u2019s",
1378
+ "These",
1379
+ "They",
1380
+ "This",
1381
+ "This's",
1382
+ "This\u2019s",
1383
+ "Those",
1384
+ "Thru",
1385
+ "Total",
1386
+ "Transfer",
1387
+ "Tribe",
1388
+ "U",
1389
+ "UAN",
1390
+ "UBR",
1391
+ "UDI",
1392
+ "UEL",
1393
+ "UEZ",
1394
+ "UIT",
1395
+ "UK",
1396
+ "ULL",
1397
+ "UND",
1398
+ "UNI",
1399
+ "UNT",
1400
+ "UP",
1401
+ "UPLIFT",
1402
+ "URBAN",
1403
+ "URT",
1404
+ "US",
1405
+ "UTO",
1406
+ "UTS",
1407
+ "Uber",
1408
+ "Udemy",
1409
+ "V",
1410
+ "V.V",
1411
+ "VED",
1412
+ "VELIZY",
1413
+ "VENDOR",
1414
+ "VER",
1415
+ "VF",
1416
+ "VILACOFR",
1417
+ "VODAFONE",
1418
+ "V_V",
1419
+ "Va",
1420
+ "Va.",
1421
+ "Via",
1422
+ "Virginia",
1423
+ "W",
1424
+ "WAF",
1425
+ "WAL",
1426
+ "WAN",
1427
+ "WATCHES",
1428
+ "WATER",
1429
+ "WATERWAY",
1430
+ "WAY",
1431
+ "WIFI",
1432
+ "WILLYS",
1433
+ "WINGS",
1434
+ "WITH",
1435
+ "WITHDRAWAL",
1436
+ "WORTHING",
1437
+ "WORX",
1438
+ "WRM",
1439
+ "WRY",
1440
+ "WVL",
1441
+ "WWW",
1442
+ "Was",
1443
+ "Wash",
1444
+ "Wash.",
1445
+ "Washington",
1446
+ "Water",
1447
+ "Way",
1448
+ "We",
1449
+ "Welcome",
1450
+ "Were",
1451
+ "What",
1452
+ "What's",
1453
+ "What\u2019s",
1454
+ "When",
1455
+ "When's",
1456
+ "When\u2019s",
1457
+ "Where",
1458
+ "Where's",
1459
+ "Where\u2019s",
1460
+ "Who",
1461
+ "Who's",
1462
+ "Who\u2019s",
1463
+ "Why",
1464
+ "Why's",
1465
+ "Why\u2019s",
1466
+ "Wis",
1467
+ "Wis.",
1468
+ "Wisconsin",
1469
+ "Wo",
1470
+ "Would",
1471
+ "X'x",
1472
+ "X'xxxx",
1473
+ "X++",
1474
+ "X.",
1475
+ "X.X",
1476
+ "X.X.",
1477
+ "X.x",
1478
+ "X.x.",
1479
+ "XD",
1480
+ "XDD",
1481
+ "XX",
1482
+ "XX(XXXX",
1483
+ "XX/",
1484
+ "XXX",
1485
+ "XXX(XXX/",
1486
+ "XXXX",
1487
+ "XXXX()xxxx",
1488
+ "XXXX(XXX",
1489
+ "XXXX(XXXX",
1490
+ "XXXX*XXXX",
1491
+ "XXXX.XXX",
1492
+ "X_X",
1493
+ "X_x",
1494
+ "Xx",
1495
+ "Xx'",
1496
+ "Xx'x",
1497
+ "Xx'xx",
1498
+ "Xx.",
1499
+ "Xx.X.",
1500
+ "XxXxxXx",
1501
+ "XxXxxxx",
1502
+ "Xxx",
1503
+ "Xxx'x",
1504
+ "Xxx.",
1505
+ "XxxXxx",
1506
+ "Xxxx",
1507
+ "Xxxx'",
1508
+ "Xxxx'x",
1509
+ "Xxxx.",
1510
+ "XxxxXxxx",
1511
+ "Xxxxx",
1512
+ "Xxxxx'",
1513
+ "Xxxxx'x",
1514
+ "Xxxxx.",
1515
+ "Xxxxx.xxx",
1516
+ "XxxxxXxx",
1517
+ "XxxxxXxxxxXX",
1518
+ "Xxxxx\u2019",
1519
+ "Xxxxx\u2019x",
1520
+ "Xxxx\u2019",
1521
+ "Xxxx\u2019x",
1522
+ "Xxx\u2019x",
1523
+ "Xx\u2019",
1524
+ "Xx\u2019x",
1525
+ "Xx\u2019xx",
1526
+ "X\u2019x",
1527
+ "X\u2019xxxx",
1528
+ "Y",
1529
+ "YAD",
1530
+ "YAL",
1531
+ "YARD",
1532
+ "YATTA",
1533
+ "YORK",
1534
+ "YOUSIF",
1535
+ "YPT",
1536
+ "YUS",
1537
+ "Yasseen",
1538
+ "Yikes",
1539
+ "You",
1540
+ "Z",
1541
+ "ZAHR",
1542
+ "ZALANDO",
1543
+ "ZALANDOSE",
1544
+ "ZAM",
1545
+ "ZIDAN",
1546
+ "ZON",
1547
+ "ZYDAN",
1548
+ "[",
1549
+ "[-:",
1550
+ "[:",
1551
+ "[=",
1552
+ "\\",
1553
+ "\\\")",
1554
+ "\\n",
1555
+ "\\t",
1556
+ "\\x",
1557
+ "]",
1558
+ "]=",
1559
+ "^",
1560
+ "^_^",
1561
+ "^__^",
1562
+ "^___^",
1563
+ "_*)",
1564
+ "_-)",
1565
+ "_.)",
1566
+ "_<)",
1567
+ "_^)",
1568
+ "__-",
1569
+ "__^",
1570
+ "_\u00ac)",
1571
+ "_\u0ca0)",
1572
+ "a",
1573
+ "a.",
1574
+ "a.m",
1575
+ "a.m.",
1576
+ "aay",
1577
+ "ab",
1578
+ "abdel",
1579
+ "abdelbaset",
1580
+ "abdelrahman",
1581
+ "abo",
1582
+ "about",
1583
+ "accept",
1584
+ "account",
1585
+ "ace",
1586
+ "ach",
1587
+ "ach(ach/",
1588
+ "adcb",
1589
+ "added",
1590
+ "ade",
1591
+ "adi",
1592
+ "adidas",
1593
+ "adm",
1594
+ "adm.",
1595
+ "admin",
1596
+ "ads",
1597
+ "adsl",
1598
+ "age",
1599
+ "agi",
1600
+ "ai",
1601
+ "aibank",
1602
+ "aibkatm",
1603
+ "ains",
1604
+ "air",
1605
+ "airo",
1606
+ "ak",
1607
+ "ak.",
1608
+ "ala",
1609
+ "ala.",
1610
+ "ald",
1611
+ "alex",
1612
+ "alexotel",
1613
+ "alfa",
1614
+ "ali",
1615
+ "aliiiiii",
1616
+ "all",
1617
+ "almaddi",
1618
+ "almaza",
1619
+ "almokhtabar",
1620
+ "alshy",
1621
+ "alxb",
1622
+ "aly",
1623
+ "am",
1624
+ "ama",
1625
+ "aman",
1626
+ "amazon",
1627
+ "ame",
1628
+ "amsterdam",
1629
+ "an.",
1630
+ "and",
1631
+ "and/or",
1632
+ "annual",
1633
+ "another",
1634
+ "ans",
1635
+ "apex",
1636
+ "apple",
1637
+ "apple.com",
1638
+ "apr",
1639
+ "apr.",
1640
+ "ar.",
1641
+ "arabella",
1642
+ "arafa",
1643
+ "aramex",
1644
+ "ard",
1645
+ "are",
1646
+ "ariz",
1647
+ "ariz.",
1648
+ "ark",
1649
+ "ark.",
1650
+ "ash",
1651
+ "asr",
1652
+ "ass",
1653
+ "ast",
1654
+ "atm",
1655
+ "ato",
1656
+ "att",
1657
+ "auc",
1658
+ "aug",
1659
+ "aug.",
1660
+ "auto",
1661
+ "ave",
1662
+ "award",
1663
+ "ayad",
1664
+ "azzam",
1665
+ "b",
1666
+ "b.",
1667
+ "back",
1668
+ "bar",
1669
+ "barbr",
1670
+ "bat",
1671
+ "bavarian",
1672
+ "bay",
1673
+ "bdc",
1674
+ "be",
1675
+ "beano",
1676
+ "because",
1677
+ "belgium",
1678
+ "ber",
1679
+ "berlin",
1680
+ "berry",
1681
+ "bg",
1682
+ "bill",
1683
+ "birmingham",
1684
+ "bit",
1685
+ "blizzard",
1686
+ "bm",
1687
+ "bn",
1688
+ "bna",
1689
+ "bonjour",
1690
+ "bonus",
1691
+ "bout",
1692
+ "br",
1693
+ "br.",
1694
+ "breadfast",
1695
+ "brka",
1696
+ "bros",
1697
+ "bros.",
1698
+ "buffalo",
1699
+ "bull",
1700
+ "buy",
1701
+ "bv",
1702
+ "by",
1703
+ "c",
1704
+ "c'm",
1705
+ "c++",
1706
+ "c.",
1707
+ "ca",
1708
+ "cafe",
1709
+ "cairo",
1710
+ "cake",
1711
+ "calif",
1712
+ "calif.",
1713
+ "called",
1714
+ "can",
1715
+ "car",
1716
+ "card",
1717
+ "cardless",
1718
+ "careem",
1719
+ "caribou",
1720
+ "carlos",
1721
+ "carrefour",
1722
+ "cash",
1723
+ "cause",
1724
+ "cb",
1725
+ "ce>",
1726
+ "ceg",
1727
+ "center",
1728
+ "cf",
1729
+ "cfc",
1730
+ "ch",
1731
+ "ch(txaribegcx",
1732
+ "ch.",
1733
+ "change",
1734
+ "che",
1735
+ "cheap",
1736
+ "cheq",
1737
+ "chicken",
1738
+ "chickin",
1739
+ "chiken",
1740
+ "chill",
1741
+ "chillout",
1742
+ "cib",
1743
+ "circle",
1744
+ "city",
1745
+ "cityus",
1746
+ "cks",
1747
+ "cky",
1748
+ "cle",
1749
+ "client",
1750
+ "clothes",
1751
+ "club",
1752
+ "co",
1753
+ "co.",
1754
+ "co/",
1755
+ "coco",
1756
+ "coffee",
1757
+ "coffeed",
1758
+ "colo",
1759
+ "colo.",
1760
+ "com",
1761
+ "comIE",
1762
+ "come",
1763
+ "comie",
1764
+ "commerce",
1765
+ "company",
1766
+ "concord",
1767
+ "conn",
1768
+ "conn.",
1769
+ "cook",
1770
+ "core",
1771
+ "corp",
1772
+ "corp.",
1773
+ "cos",
1774
+ "costa",
1775
+ "could",
1776
+ "court",
1777
+ "coz",
1778
+ "credit",
1779
+ "crepe",
1780
+ "ct.",
1781
+ "cup",
1782
+ "cuz",
1783
+ "c\u2019m",
1784
+ "d",
1785
+ "d)",
1786
+ "d-",
1787
+ "d-)",
1788
+ "d-X",
1789
+ "d.",
1790
+ "d.c.",
1791
+ "d.d",
1792
+ "d.x",
1793
+ "dMe",
1794
+ "dX",
1795
+ "d_d",
1796
+ "d_x",
1797
+ "dandy",
1798
+ "dare",
1799
+ "dd",
1800
+ "ddd",
1801
+ "ddx.x",
1802
+ "ddx.x.",
1803
+ "de",
1804
+ "dea",
1805
+ "debit",
1806
+ "debt",
1807
+ "dec",
1808
+ "dec.",
1809
+ "decathlon",
1810
+ "ded",
1811
+ "dehradun",
1812
+ "del",
1813
+ "del.",
1814
+ "deposit",
1815
+ "dge",
1816
+ "did",
1817
+ "diet",
1818
+ "digitalocean",
1819
+ "dina",
1820
+ "diplo",
1821
+ "diplomat",
1822
+ "direct",
1823
+ "dis",
1824
+ "distr",
1825
+ "dit",
1826
+ "dm.",
1827
+ "do",
1828
+ "does",
1829
+ "doin",
1830
+ "doin'",
1831
+ "doing",
1832
+ "doin\u2019",
1833
+ "dominos",
1834
+ "don",
1835
+ "donuts",
1836
+ "door",
1837
+ "dor",
1838
+ "downtown",
1839
+ "dr",
1840
+ "dr.",
1841
+ "dribrahim",
1842
+ "drive",
1843
+ "dsl",
1844
+ "dublin",
1845
+ "dunkin",
1846
+ "dx.x",
1847
+ "dx.x.",
1848
+ "e",
1849
+ "e's",
1850
+ "e.",
1851
+ "e.g",
1852
+ "e.g.",
1853
+ "earned",
1854
+ "easy",
1855
+ "easykash",
1856
+ "eb.",
1857
+ "ebr",
1858
+ "ebt",
1859
+ "ec.",
1860
+ "ect",
1861
+ "eed",
1862
+ "eem",
1863
+ "een",
1864
+ "ees",
1865
+ "efa",
1866
+ "eg",
1867
+ "egypt",
1868
+ "egyptain",
1869
+ "egyptair",
1870
+ "eks",
1871
+ "el",
1872
+ "el.",
1873
+ "elasmart",
1874
+ "eldahan",
1875
+ "elfar",
1876
+ "elkheir",
1877
+ "ellaselky",
1878
+ "elmahalawy",
1879
+ "elmearag",
1880
+ "elmenus",
1881
+ "elmoktam",
1882
+ "elmoshi",
1883
+ "elnarg",
1884
+ "elnour",
1885
+ "elp",
1886
+ "elrefaay",
1887
+ "elsbethen",
1888
+ "elsham",
1889
+ "eltagamo",
1890
+ "em",
1891
+ "emarat",
1892
+ "eme",
1893
+ "emirates",
1894
+ "employe",
1895
+ "employees",
1896
+ "emy",
1897
+ "en",
1898
+ "en.",
1899
+ "enas",
1900
+ "energy",
1901
+ "enn",
1902
+ "enough",
1903
+ "ent",
1904
+ "ep.",
1905
+ "ept",
1906
+ "ere",
1907
+ "ers",
1908
+ "ese",
1909
+ "est",
1910
+ "etisalat",
1911
+ "ev.",
1912
+ "ew",
1913
+ "exchange",
1914
+ "eya",
1915
+ "ezaby",
1916
+ "e\u2019s",
1917
+ "f",
1918
+ "f.",
1919
+ "facebk",
1920
+ "fakahany",
1921
+ "fawry",
1922
+ "fawry*shyl",
1923
+ "fawry*tommy",
1924
+ "fb",
1925
+ "feb",
1926
+ "feb.",
1927
+ "fee",
1928
+ "fees",
1929
+ "felixmerchant",
1930
+ "fer",
1931
+ "fifth",
1932
+ "fit",
1933
+ "fla",
1934
+ "fla.",
1935
+ "flamingo",
1936
+ "flamngo",
1937
+ "fly",
1938
+ "flyer",
1939
+ "fnts",
1940
+ "fo",
1941
+ "food",
1942
+ "for",
1943
+ "force",
1944
+ "foreign",
1945
+ "fr",
1946
+ "frequent",
1947
+ "fresh",
1948
+ "fried",
1949
+ "from",
1950
+ "fruit",
1951
+ "fth",
1952
+ "fuel",
1953
+ "funds",
1954
+ "fwrm",
1955
+ "g",
1956
+ "g.",
1957
+ "ga",
1958
+ "ga.",
1959
+ "galaxygym",
1960
+ "galleria",
1961
+ "games",
1962
+ "gas",
1963
+ "gatos",
1964
+ "gb",
1965
+ "ged",
1966
+ "geidea",
1967
+ "geideamedica",
1968
+ "gelato",
1969
+ "gen",
1970
+ "gen.",
1971
+ "gfm",
1972
+ "ghataty",
1973
+ "ght",
1974
+ "gira",
1975
+ "giza",
1976
+ "glaat",
1977
+ "gle",
1978
+ "gleem",
1979
+ "go",
1980
+ "goat",
1981
+ "gofndme",
1982
+ "goin",
1983
+ "goin'",
1984
+ "going",
1985
+ "goin\u2019",
1986
+ "gon",
1987
+ "gonna",
1988
+ "google",
1989
+ "googleadwordseu",
1990
+ "gormet",
1991
+ "got",
1992
+ "gourmet",
1993
+ "gov",
1994
+ "gov.",
1995
+ "govpay",
1996
+ "grand",
1997
+ "gringo",
1998
+ "gringos",
1999
+ "group",
2000
+ "gypt",
2001
+ "h",
2002
+ "h.",
2003
+ "hab",
2004
+ "had",
2005
+ "hag",
2006
+ "ham",
2007
+ "hamburg",
2008
+ "hardees",
2009
+ "has",
2010
+ "hat",
2011
+ "have",
2012
+ "havin",
2013
+ "havin'",
2014
+ "having",
2015
+ "havin\u2019",
2016
+ "hawawshi",
2017
+ "he",
2018
+ "he's",
2019
+ "hegaz",
2020
+ "heliopolis",
2021
+ "help",
2022
+ "helppay",
2023
+ "hen",
2024
+ "her",
2025
+ "hey",
2026
+ "he\u2019s",
2027
+ "him",
2028
+ "hin",
2029
+ "his",
2030
+ "hosni",
2031
+ "hospital",
2032
+ "how",
2033
+ "how's",
2034
+ "how\u2019s",
2035
+ "hru",
2036
+ "hsbc",
2037
+ "hub",
2038
+ "hyper",
2039
+ "i",
2040
+ "i.",
2041
+ "i.e",
2042
+ "i.e.",
2043
+ "ia",
2044
+ "ia.",
2045
+ "ibe",
2046
+ "ibn",
2047
+ "ich",
2048
+ "id",
2049
+ "id.",
2050
+ "ie",
2051
+ "iet",
2052
+ "if.",
2053
+ "ify",
2054
+ "ii",
2055
+ "iii",
2056
+ "ill",
2057
+ "ill.",
2058
+ "in",
2059
+ "in'",
2060
+ "ina",
2061
+ "inc",
2062
+ "inc.",
2063
+ "ind",
2064
+ "ind.",
2065
+ "ine",
2066
+ "infinity",
2067
+ "ing",
2068
+ "inn",
2069
+ "instashop",
2070
+ "insurance",
2071
+ "inter",
2072
+ "interest",
2073
+ "international",
2074
+ "internet",
2075
+ "inward",
2076
+ "inx",
2077
+ "in\u2019",
2078
+ "ion",
2079
+ "iot",
2080
+ "ipn",
2081
+ "iro",
2082
+ "is",
2083
+ "is.",
2084
+ "iss",
2085
+ "it",
2086
+ "it's",
2087
+ "itunes",
2088
+ "itunes.com",
2089
+ "ity",
2090
+ "it\u2019s",
2091
+ "ive",
2092
+ "iz.",
2093
+ "iza",
2094
+ "j",
2095
+ "j.",
2096
+ "jan",
2097
+ "jan.",
2098
+ "jimmy",
2099
+ "jimmys",
2100
+ "jp",
2101
+ "jr",
2102
+ "jr.",
2103
+ "jul",
2104
+ "jul.",
2105
+ "jun",
2106
+ "jun.",
2107
+ "jym",
2108
+ "k",
2109
+ "k.",
2110
+ "kan",
2111
+ "kan.",
2112
+ "kans",
2113
+ "kans.",
2114
+ "kansas",
2115
+ "katameya",
2116
+ "kattameya",
2117
+ "kes",
2118
+ "khaled",
2119
+ "khame",
2120
+ "kinguindigi",
2121
+ "kitchen",
2122
+ "kla",
2123
+ "knowledge",
2124
+ "kokio",
2125
+ "korba",
2126
+ "kreme",
2127
+ "krispy",
2128
+ "kuala",
2129
+ "ky",
2130
+ "ky.",
2131
+ "l",
2132
+ "l.",
2133
+ "la",
2134
+ "la.",
2135
+ "lab",
2136
+ "lake",
2137
+ "lan",
2138
+ "lanyuan",
2139
+ "lat",
2140
+ "lazada",
2141
+ "lcairo",
2142
+ "lds",
2143
+ "led",
2144
+ "les",
2145
+ "let",
2146
+ "let's",
2147
+ "let\u2019s",
2148
+ "lfa",
2149
+ "lif",
2150
+ "lin",
2151
+ "lincontro",
2152
+ "ll",
2153
+ "ll.",
2154
+ "lo.",
2155
+ "london",
2156
+ "los",
2157
+ "lovin",
2158
+ "lovin'",
2159
+ "loving",
2160
+ "lovin\u2019",
2161
+ "ltd",
2162
+ "ltd.",
2163
+ "lu",
2164
+ "lucky",
2165
+ "lumpur",
2166
+ "lus",
2167
+ "lychee",
2168
+ "m",
2169
+ "m.",
2170
+ "mIE",
2171
+ "ma",
2172
+ "ma'am",
2173
+ "maadi",
2174
+ "mabco",
2175
+ "madam",
2176
+ "madkhal",
2177
+ "maged",
2178
+ "magi",
2179
+ "mahmoud",
2180
+ "majd",
2181
+ "majed",
2182
+ "mall",
2183
+ "mama",
2184
+ "man",
2185
+ "manno",
2186
+ "maqarr",
2187
+ "mar",
2188
+ "mar.",
2189
+ "market",
2190
+ "marketnew",
2191
+ "marketplace",
2192
+ "markup",
2193
+ "mart",
2194
+ "mass",
2195
+ "mass.",
2196
+ "maste",
2197
+ "master",
2198
+ "mat",
2199
+ "matrouh",
2200
+ "max",
2201
+ "may",
2202
+ "ma\u2019am",
2203
+ "mcdonald",
2204
+ "mcdonalds",
2205
+ "md",
2206
+ "md.",
2207
+ "me",
2208
+ "med",
2209
+ "medeor",
2210
+ "medical",
2211
+ "mekka",
2212
+ "menia",
2213
+ "menya",
2214
+ "meraag",
2215
+ "messrs",
2216
+ "messrs.",
2217
+ "met",
2218
+ "mich",
2219
+ "mich.",
2220
+ "midb",
2221
+ "midbatm",
2222
+ "midor",
2223
+ "might",
2224
+ "miles",
2225
+ "miniso",
2226
+ "minn",
2227
+ "minn.",
2228
+ "mio",
2229
+ "misr",
2230
+ "misrc",
2231
+ "misrring",
2232
+ "miss",
2233
+ "miss.",
2234
+ "mix",
2235
+ "mo",
2236
+ "mo.",
2237
+ "mob",
2238
+ "mobil",
2239
+ "mobilaty",
2240
+ "mobile",
2241
+ "mohamed",
2242
+ "mohandessin",
2243
+ "mokatam",
2244
+ "mokatt",
2245
+ "mokattam",
2246
+ "money",
2247
+ "mont",
2248
+ "mont.",
2249
+ "monthly",
2250
+ "moqattam",
2251
+ "morgan",
2252
+ "mostafa",
2253
+ "mqr",
2254
+ "mr",
2255
+ "mr.",
2256
+ "mrs",
2257
+ "mrs.",
2258
+ "ms",
2259
+ "ms.",
2260
+ "mt",
2261
+ "mt.",
2262
+ "mukattam",
2263
+ "musb",
2264
+ "muscle",
2265
+ "must",
2266
+ "my",
2267
+ "myfawry",
2268
+ "n",
2269
+ "n's",
2270
+ "n't",
2271
+ "n.",
2272
+ "n.c.",
2273
+ "n.d.",
2274
+ "n.h.",
2275
+ "n.j.",
2276
+ "n.m.",
2277
+ "n.y.",
2278
+ "na",
2279
+ "nal",
2280
+ "name",
2281
+ "nan",
2282
+ "nargas",
2283
+ "nargs",
2284
+ "nas",
2285
+ "nasr",
2286
+ "nbad",
2287
+ "nbe",
2288
+ "nc.",
2289
+ "nd.",
2290
+ "nds",
2291
+ "ne",
2292
+ "near",
2293
+ "neb",
2294
+ "neb.",
2295
+ "nebr",
2296
+ "nebr.",
2297
+ "ned",
2298
+ "need",
2299
+ "net",
2300
+ "netflix.com",
2301
+ "nev",
2302
+ "nev.",
2303
+ "new",
2304
+ "ney",
2305
+ "nge",
2306
+ "nl",
2307
+ "nn.",
2308
+ "nno",
2309
+ "no",
2310
+ "noon",
2311
+ "nos",
2312
+ "not",
2313
+ "nothin",
2314
+ "nothin'",
2315
+ "nothing",
2316
+ "nothin\u2019",
2317
+ "nov",
2318
+ "nov.",
2319
+ "ns.",
2320
+ "nsr",
2321
+ "nt",
2322
+ "nt.",
2323
+ "nuff",
2324
+ "nus",
2325
+ "nuthin",
2326
+ "nuthin'",
2327
+ "nuthin\u2019",
2328
+ "nutrition",
2329
+ "n\u2019s",
2330
+ "n\u2019t",
2331
+ "o",
2332
+ "o'clock",
2333
+ "o's",
2334
+ "o.",
2335
+ "o.0",
2336
+ "o.O",
2337
+ "o.o",
2338
+ "o_0",
2339
+ "o_O",
2340
+ "o_o",
2341
+ "ock",
2342
+ "oct",
2343
+ "oct.",
2344
+ "oes",
2345
+ "of.",
2346
+ "oil",
2347
+ "oin",
2348
+ "okatam",
2349
+ "okla",
2350
+ "okla.",
2351
+ "ol",
2352
+ "ol'",
2353
+ "ola",
2354
+ "old",
2355
+ "olm",
2356
+ "olo",
2357
+ "ol\u2019",
2358
+ "om",
2359
+ "omar",
2360
+ "ome",
2361
+ "on",
2362
+ "one",
2363
+ "online",
2364
+ "onn",
2365
+ "ont",
2366
+ "ood",
2367
+ "oon",
2368
+ "or",
2369
+ "orange",
2370
+ "ore",
2371
+ "ore.",
2372
+ "orp",
2373
+ "os.",
2374
+ "oscar",
2375
+ "ose",
2376
+ "others",
2377
+ "otlob.com",
2378
+ "ott",
2379
+ "ought",
2380
+ "our",
2381
+ "out",
2382
+ "outward",
2383
+ "ov.",
2384
+ "own",
2385
+ "o\u2019clock",
2386
+ "o\u2019s",
2387
+ "p",
2388
+ "p.",
2389
+ "p.m",
2390
+ "p.m.",
2391
+ "pa",
2392
+ "pa.",
2393
+ "paddle",
2394
+ "park",
2395
+ "passpor",
2396
+ "passports",
2397
+ "pay",
2398
+ "payee",
2399
+ "payer",
2400
+ "payment",
2401
+ "paymob",
2402
+ "paypal",
2403
+ "penny",
2404
+ "personal",
2405
+ "ph",
2406
+ "ph.d.",
2407
+ "pharma",
2408
+ "pick",
2409
+ "pin",
2410
+ "pizza",
2411
+ "pla",
2412
+ "plan",
2413
+ "plastic",
2414
+ "plaza",
2415
+ "plo",
2416
+ "plus",
2417
+ "pm",
2418
+ "po",
2419
+ "point",
2420
+ "pos",
2421
+ "pr.",
2422
+ "pre",
2423
+ "prime",
2424
+ "procar",
2425
+ "prof",
2426
+ "prof.",
2427
+ "promenade",
2428
+ "ps",
2429
+ "pt.",
2430
+ "publishing",
2431
+ "purchase",
2432
+ "q",
2433
+ "q.",
2434
+ "qahwa",
2435
+ "qnate",
2436
+ "quick",
2437
+ "qwbmvhcz",
2438
+ "r",
2439
+ "r.",
2440
+ "rabbitsco",
2441
+ "rafaat",
2442
+ "rana",
2443
+ "raya",
2444
+ "rcj",
2445
+ "re",
2446
+ "re.",
2447
+ "received",
2448
+ "red",
2449
+ "redemption",
2450
+ "redwood",
2451
+ "reem",
2452
+ "refa",
2453
+ "refund",
2454
+ "rehab",
2455
+ "ren",
2456
+ "rep",
2457
+ "rep.",
2458
+ "restaurant",
2459
+ "rev",
2460
+ "rev.",
2461
+ "reverse",
2462
+ "rgy",
2463
+ "ri",
2464
+ "riot",
2465
+ "riz",
2466
+ "rk.",
2467
+ "road",
2468
+ "rof",
2469
+ "rom",
2470
+ "ros",
2471
+ "royal",
2472
+ "rp.",
2473
+ "rry",
2474
+ "rs.",
2475
+ "rse",
2476
+ "rtanta",
2477
+ "rtin()\u0645\u0635\u0627\u0631\u064a\u0641",
2478
+ "rtin()\u0645\u0635\u0631\u0648\u0641",
2479
+ "rtin(dig",
2480
+ "rtin(salary",
2481
+ "run",
2482
+ "s",
2483
+ "s's",
2484
+ "s.",
2485
+ "s.c.",
2486
+ "sEU",
2487
+ "salama",
2488
+ "samir",
2489
+ "scheme",
2490
+ "se",
2491
+ "second",
2492
+ "sen",
2493
+ "sen.",
2494
+ "seoudi",
2495
+ "sep",
2496
+ "sep.",
2497
+ "sept",
2498
+ "sept.",
2499
+ "set",
2500
+ "sg",
2501
+ "sh.",
2502
+ "sha",
2503
+ "shall",
2504
+ "she",
2505
+ "she's",
2506
+ "shenzawy",
2507
+ "she\u2019s",
2508
+ "shi",
2509
+ "shiren",
2510
+ "sho",
2511
+ "shop",
2512
+ "should",
2513
+ "shubr",
2514
+ "side",
2515
+ "sidemen",
2516
+ "silver",
2517
+ "sin",
2518
+ "singapore",
2519
+ "sit",
2520
+ "sni",
2521
+ "solidarity",
2522
+ "somethin",
2523
+ "somethin'",
2524
+ "something",
2525
+ "somethin\u2019",
2526
+ "space",
2527
+ "sphinx",
2528
+ "spin",
2529
+ "spotify",
2530
+ "srs",
2531
+ "ss.",
2532
+ "st",
2533
+ "st.",
2534
+ "star",
2535
+ "starbucks",
2536
+ "station",
2537
+ "steam",
2538
+ "steamgames",
2539
+ "stockholm",
2540
+ "storage",
2541
+ "store",
2542
+ "str",
2543
+ "street",
2544
+ "subscription",
2545
+ "suez",
2546
+ "suhag",
2547
+ "super",
2548
+ "supermarket",
2549
+ "swan",
2550
+ "sweets",
2551
+ "swvl",
2552
+ "syndo",
2553
+ "s\u2019s",
2554
+ "t",
2555
+ "t's",
2556
+ "t.",
2557
+ "ta",
2558
+ "tagamoa",
2559
+ "tal",
2560
+ "talabat",
2561
+ "talat",
2562
+ "tam",
2563
+ "tayaran",
2564
+ "tazkarti",
2565
+ "tbs",
2566
+ "tbsw",
2567
+ "td.",
2568
+ "telecom",
2569
+ "tenn",
2570
+ "tenn.",
2571
+ "ter",
2572
+ "tes",
2573
+ "test",
2574
+ "tgamaa",
2575
+ "that",
2576
+ "that's",
2577
+ "that\u2019s",
2578
+ "the",
2579
+ "them",
2580
+ "there",
2581
+ "there's",
2582
+ "there\u2019s",
2583
+ "these",
2584
+ "they",
2585
+ "this",
2586
+ "this's",
2587
+ "this\u2019s",
2588
+ "tho",
2589
+ "those",
2590
+ "thru",
2591
+ "tivoli",
2592
+ "to",
2593
+ "tokyo",
2594
+ "tolip",
2595
+ "top",
2596
+ "tos",
2597
+ "total",
2598
+ "trade",
2599
+ "trading",
2600
+ "traffic",
2601
+ "transfer",
2602
+ "tribe",
2603
+ "tripmodech",
2604
+ "trs",
2605
+ "trx",
2606
+ "tseppas",
2607
+ "tur",
2608
+ "t\u2019s",
2609
+ "u",
2610
+ "u.",
2611
+ "ual",
2612
+ "uber",
2613
+ "udemy",
2614
+ "udi",
2615
+ "uff",
2616
+ "ug.",
2617
+ "uk",
2618
+ "ul.",
2619
+ "uld",
2620
+ "un.",
2621
+ "uni",
2622
+ "unt",
2623
+ "up",
2624
+ "uplift",
2625
+ "urban",
2626
+ "urg",
2627
+ "us",
2628
+ "usb",
2629
+ "use",
2630
+ "ust",
2631
+ "v",
2632
+ "v.",
2633
+ "v.s",
2634
+ "v.s.",
2635
+ "v.v",
2636
+ "v_v",
2637
+ "va",
2638
+ "va.",
2639
+ "ve",
2640
+ "velizy",
2641
+ "vf",
2642
+ "via",
2643
+ "vilacofr",
2644
+ "vin",
2645
+ "vodafone",
2646
+ "vs",
2647
+ "vs.",
2648
+ "w",
2649
+ "w's",
2650
+ "w.",
2651
+ "w/o",
2652
+ "waf",
2653
+ "was",
2654
+ "wash",
2655
+ "wash.",
2656
+ "watches",
2657
+ "water",
2658
+ "waterway",
2659
+ "way",
2660
+ "we",
2661
+ "weeks",
2662
+ "welcome",
2663
+ "were",
2664
+ "what",
2665
+ "what's",
2666
+ "what\u2019s",
2667
+ "when",
2668
+ "when's",
2669
+ "when\u2019s",
2670
+ "where",
2671
+ "where's",
2672
+ "where\u2019s",
2673
+ "who",
2674
+ "who's",
2675
+ "who\u2019s",
2676
+ "why",
2677
+ "why's",
2678
+ "why\u2019s",
2679
+ "wifi",
2680
+ "will",
2681
+ "willys",
2682
+ "wings",
2683
+ "wis",
2684
+ "wis.",
2685
+ "with",
2686
+ "withdrawal",
2687
+ "without",
2688
+ "wo",
2689
+ "worthing",
2690
+ "worx",
2691
+ "would",
2692
+ "wry",
2693
+ "www",
2694
+ "w\u2019s",
2695
+ "x",
2696
+ "x'",
2697
+ "x'x",
2698
+ "x'xxxx",
2699
+ "x.",
2700
+ "x.X",
2701
+ "x.d",
2702
+ "x.x",
2703
+ "x.x.",
2704
+ "x/x",
2705
+ "xD",
2706
+ "xDD",
2707
+ "xX",
2708
+ "xXX",
2709
+ "x_X",
2710
+ "x_d",
2711
+ "x_x",
2712
+ "xd",
2713
+ "xdd",
2714
+ "xx",
2715
+ "xx'",
2716
+ "xx'x",
2717
+ "xx'xx",
2718
+ "xx.",
2719
+ "xxx",
2720
+ "xxx'x",
2721
+ "xxx/xx",
2722
+ "xxxXX",
2723
+ "xxxx",
2724
+ "xxxx'",
2725
+ "xxxx'x",
2726
+ "xxxx\u2019",
2727
+ "xxxx\u2019x",
2728
+ "xxx\u2019x",
2729
+ "xx\u2019",
2730
+ "xx\u2019x",
2731
+ "xx\u2019xx",
2732
+ "x\u2019",
2733
+ "x\u2019x",
2734
+ "x\u2019xxxx",
2735
+ "x\ufe35x",
2736
+ "y",
2737
+ "y'",
2738
+ "y's",
2739
+ "y.",
2740
+ "yad",
2741
+ "yard",
2742
+ "yasseen",
2743
+ "yatta",
2744
+ "yee",
2745
+ "yer",
2746
+ "yikes",
2747
+ "york",
2748
+ "you",
2749
+ "your",
2750
+ "yousif",
2751
+ "ypt",
2752
+ "y\u2019",
2753
+ "y\u2019s",
2754
+ "z",
2755
+ "z.",
2756
+ "zahr",
2757
+ "zalando",
2758
+ "zalandose",
2759
+ "zidan",
2760
+ "zydan",
2761
+ "zza",
2762
+ "|",
2763
+ "}",
2764
+ "\u00a0",
2765
+ "\u00ac",
2766
+ "\u00ac_\u00ac",
2767
+ "\u00af",
2768
+ "\u00af\\(x)/\u00af",
2769
+ "\u00af\\(\u30c4)/\u00af",
2770
+ "\u00b0",
2771
+ "\u00b0C.",
2772
+ "\u00b0F.",
2773
+ "\u00b0K.",
2774
+ "\u00b0X.",
2775
+ "\u00b0c.",
2776
+ "\u00b0f.",
2777
+ "\u00b0k.",
2778
+ "\u00b0x.",
2779
+ "\u00e4",
2780
+ "\u00e4.",
2781
+ "\u00f6",
2782
+ "\u00f6.",
2783
+ "\u00fc",
2784
+ "\u00fc.",
2785
+ "\u060c",
2786
+ "\u0627",
2787
+ "\u0627\u0633\u0644\u0645\u0627\u063a\u0648\u064a\u0644",
2788
+ "\u0631\u0648\u0641",
2789
+ "\u0631\u064a\u0641",
2790
+ "\u0648\u064a\u0644",
2791
+ "\u0ca0",
2792
+ "\u0ca0_\u0ca0",
2793
+ "\u0ca0\ufe35\u0ca0",
2794
+ "\u2014",
2795
+ "\u2018",
2796
+ "\u2018S",
2797
+ "\u2018X",
2798
+ "\u2018s",
2799
+ "\u2018x",
2800
+ "\u2019",
2801
+ "\u2019-(",
2802
+ "\u2019-)",
2803
+ "\u2019Cause",
2804
+ "\u2019Cos",
2805
+ "\u2019Coz",
2806
+ "\u2019Cuz",
2807
+ "\u2019S",
2808
+ "\u2019X",
2809
+ "\u2019Xxx",
2810
+ "\u2019Xxxxx",
2811
+ "\u2019am",
2812
+ "\u2019bout",
2813
+ "\u2019cause",
2814
+ "\u2019cos",
2815
+ "\u2019coz",
2816
+ "\u2019cuz",
2817
+ "\u2019d",
2818
+ "\u2019em",
2819
+ "\u2019ll",
2820
+ "\u2019m",
2821
+ "\u2019nuff",
2822
+ "\u2019re",
2823
+ "\u2019s",
2824
+ "\u2019ve",
2825
+ "\u2019x",
2826
+ "\u2019xx",
2827
+ "\u2019xxx",
2828
+ "\u2019xxxx",
2829
+ "\u2019y",
2830
+ "\u2019\u2019",
2831
+ "\u2501",
2832
+ "\u253b",
2833
+ "\u253b\u2501\u253b",
2834
+ "\u256f",
2835
+ "\u25a1",
2836
+ "\ufe35",
2837
+ "\uff09"
2838
+ ]
vocab/vectors ADDED
Binary file (128 Bytes). View file
 
vocab/vectors.cfg ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+ "mode":"default"
3
+ }