andreids commited on
Commit
e843975
1 Parent(s): c97f67c

Update spaCy pipeline

Browse files
.gitattributes CHANGED
@@ -32,3 +32,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
32
  *.zip filter=lfs diff=lfs merge=lfs -text
33
  *.zst filter=lfs diff=lfs merge=lfs -text
34
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
32
  *.zip filter=lfs diff=lfs merge=lfs -text
33
  *.zst filter=lfs diff=lfs merge=lfs -text
34
  *tfevents* filter=lfs diff=lfs merge=lfs -text
35
+ en_nature_of_li_t_shirt-any-py3-none-any.whl filter=lfs diff=lfs merge=lfs -text
36
+ textcat/model filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - spacy
4
+ - text-classification
5
+ language:
6
+ - en
7
+ model-index:
8
+ - name: en_nature_of_li_t_shirt
9
+ results: []
10
+ ---
11
+ | Feature | Description |
12
+ | --- | --- |
13
+ | **Name** | `en_nature_of_li_t_shirt` |
14
+ | **Version** | `0.0.0` |
15
+ | **spaCy** | `>=3.4.3,<3.5.0` |
16
+ | **Default Pipeline** | `textcat` |
17
+ | **Components** | `textcat` |
18
+ | **Vectors** | 0 keys, 0 unique vectors (0 dimensions) |
19
+ | **Sources** | n/a |
20
+ | **License** | n/a |
21
+ | **Author** | [n/a]() |
22
+
23
+ ### Label Scheme
24
+
25
+ <details>
26
+
27
+ <summary>View label scheme (2 labels for 1 components)</summary>
28
+
29
+ | Component | Labels |
30
+ | --- | --- |
31
+ | **`textcat`** | `t-shirt`, `other` |
32
+
33
+ </details>
34
+
35
+ ### Accuracy
36
+
37
+ | Type | Score |
38
+ | --- | --- |
39
+ | `CATS_SCORE` | 97.81 |
40
+ | `CATS_MICRO_P` | 97.82 |
41
+ | `CATS_MICRO_R` | 97.82 |
42
+ | `CATS_MICRO_F` | 97.82 |
43
+ | `CATS_MACRO_P` | 97.85 |
44
+ | `CATS_MACRO_R` | 97.81 |
45
+ | `CATS_MACRO_F` | 97.81 |
46
+ | `CATS_MACRO_AUC` | 99.66 |
47
+ | `CATS_MACRO_AUC_PER_TYPE` | 0.00 |
48
+ | `TEXTCAT_LOSS` | 543.46 |
config.cfg ADDED
@@ -0,0 +1,142 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [paths]
2
+ train = "corpus/train.spacy"
3
+ dev = "corpus/dev.spacy"
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 = ["textcat"]
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.textcat]
24
+ factory = "textcat"
25
+ scorer = {"@scorers":"spacy.textcat_scorer.v1"}
26
+ threshold = 0.5
27
+
28
+ [components.textcat.model]
29
+ @architectures = "spacy.TextCatEnsemble.v2"
30
+ nO = null
31
+
32
+ [components.textcat.model.linear_model]
33
+ @architectures = "spacy.TextCatBOW.v1"
34
+ exclusive_classes = true
35
+ ngram_size = 1
36
+ no_output_layer = false
37
+ nO = null
38
+
39
+ [components.textcat.model.tok2vec]
40
+ @architectures = "spacy.Tok2Vec.v2"
41
+
42
+ [components.textcat.model.tok2vec.embed]
43
+ @architectures = "spacy.MultiHashEmbed.v1"
44
+ width = 64
45
+ rows = [2000,2000,1000,1000,1000,1000]
46
+ attrs = ["ORTH","LOWER","PREFIX","SUFFIX","SHAPE","ID"]
47
+ include_static_vectors = false
48
+
49
+ [components.textcat.model.tok2vec.encode]
50
+ @architectures = "spacy.MaxoutWindowEncoder.v2"
51
+ width = 64
52
+ window_size = 1
53
+ maxout_pieces = 3
54
+ depth = 2
55
+
56
+ [corpora]
57
+
58
+ [corpora.dev]
59
+ @readers = "spacy.Corpus.v1"
60
+ path = ${paths.dev}
61
+ gold_preproc = false
62
+ max_length = 0
63
+ limit = 0
64
+ augmenter = null
65
+
66
+ [corpora.train]
67
+ @readers = "spacy.Corpus.v1"
68
+ path = ${paths.train}
69
+ gold_preproc = false
70
+ max_length = 0
71
+ limit = 0
72
+ augmenter = null
73
+
74
+ [training]
75
+ seed = ${system.seed}
76
+ gpu_allocator = ${system.gpu_allocator}
77
+ dropout = 0.1
78
+ accumulate_gradient = 1
79
+ patience = 1000
80
+ max_epochs = 0
81
+ max_steps = 1000
82
+ eval_frequency = 100
83
+ frozen_components = []
84
+ dev_corpus = "corpora.dev"
85
+ train_corpus = "corpora.train"
86
+ before_to_disk = null
87
+ annotating_components = []
88
+
89
+ [training.batcher]
90
+ @batchers = "spacy.batch_by_words.v1"
91
+ discard_oversize = false
92
+ tolerance = 0.2
93
+ get_length = null
94
+
95
+ [training.batcher.size]
96
+ @schedules = "compounding.v1"
97
+ start = 100
98
+ stop = 1000
99
+ compound = 1.001
100
+ t = 0.0
101
+
102
+ [training.logger]
103
+ @loggers = "spacy.ConsoleLogger.v1"
104
+ progress_bar = false
105
+
106
+ [training.optimizer]
107
+ @optimizers = "Adam.v1"
108
+ beta1 = 0.9
109
+ beta2 = 0.999
110
+ L2_is_weight_decay = true
111
+ L2 = 0.01
112
+ grad_clip = 1.0
113
+ use_averages = false
114
+ eps = 0.00000001
115
+ learn_rate = 0.001
116
+
117
+ [training.score_weights]
118
+ cats_score = null
119
+ cats_score_desc = null
120
+ cats_micro_p = 0.5
121
+ cats_micro_r = null
122
+ cats_micro_f = null
123
+ cats_macro_p = 0.5
124
+ cats_macro_r = null
125
+ cats_macro_f = null
126
+ cats_macro_auc = null
127
+ cats_f_per_type = null
128
+ cats_macro_auc_per_type = null
129
+
130
+ [pretraining]
131
+
132
+ [initialize]
133
+ vectors = ${paths.vectors}
134
+ init_tok2vec = ${paths.init_tok2vec}
135
+ vocab_data = null
136
+ lookups = null
137
+ before_init = null
138
+ after_init = null
139
+
140
+ [initialize.components]
141
+
142
+ [initialize.tokenizer]
en_nature_of_li_t_shirt-any-py3-none-any.whl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5b8fa99d0713805c01ef27b26048d114867763f74f3188ef438ca0b3b19eff53
3
+ size 2523456
meta.json ADDED
@@ -0,0 +1,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lang":"en",
3
+ "name":"nature_of_li_t_shirt",
4
+ "version":"0.0.0",
5
+ "description":"",
6
+ "author":"",
7
+ "email":"",
8
+ "url":"",
9
+ "license":"",
10
+ "spacy_version":">=3.4.3,<3.5.0",
11
+ "spacy_git_version":"63673a792",
12
+ "vectors":{
13
+ "width":0,
14
+ "vectors":0,
15
+ "keys":0,
16
+ "name":null
17
+ },
18
+ "labels":{
19
+ "textcat":[
20
+ "t-shirt",
21
+ "other"
22
+ ]
23
+ },
24
+ "pipeline":[
25
+ "textcat"
26
+ ],
27
+ "components":[
28
+ "textcat"
29
+ ],
30
+ "disabled":[
31
+
32
+ ],
33
+ "performance":{
34
+ "cats_score":0.9781423699,
35
+ "cats_score_desc":"macro F",
36
+ "cats_micro_p":0.9781512605,
37
+ "cats_micro_r":0.9781512605,
38
+ "cats_micro_f":0.9781512605,
39
+ "cats_macro_p":0.9785050217,
40
+ "cats_macro_r":0.9780508475,
41
+ "cats_macro_f":0.9781423699,
42
+ "cats_macro_auc":0.9966101695,
43
+ "cats_f_per_type":{
44
+ "t-shirt":{
45
+ "p":0.9895833333,
46
+ "r":0.9661016949,
47
+ "f":0.9777015437
48
+ },
49
+ "other":{
50
+ "p":0.9674267101,
51
+ "r":0.99,
52
+ "f":0.978583196
53
+ }
54
+ },
55
+ "cats_macro_auc_per_type":0.0,
56
+ "textcat_loss":5.4345805608
57
+ },
58
+ "requirements":[
59
+
60
+ ]
61
+ }
textcat/cfg ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "labels":[
3
+ "t-shirt",
4
+ "other"
5
+ ],
6
+ "threshold":0.5,
7
+ "positive_label":null
8
+ }
textcat/model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:acd60b177622da8a4c9ededecb5f9bea342b1bc41aa1a4d7bce260a7dba2208d
3
+ size 4799404
tokenizer ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ ��prefix_search� ~^§|^%|^=|^—|^–|^\+(?![0-9])|^…|^……|^,|^:|^;|^\!|^\?|^¿|^؟|^¡|^\(|^\)|^\[|^\]|^\{|^\}|^<|^>|^_|^#|^\*|^&|^。|^?|^!|^,|^、|^;|^:|^~|^·|^।|^،|^۔|^؛|^٪|^\.\.+|^…|^\'|^"|^”|^“|^`|^‘|^´|^’|^‚|^,|^„|^»|^«|^「|^」|^『|^』|^(|^)|^〔|^〕|^【|^】|^《|^》|^〈|^〉|^\$|^£|^€|^¥|^฿|^US\$|^C\$|^A\$|^₽|^﷼|^₴|^₠|^₡|^₢|^₣|^₤|^₥|^₦|^₧|^₨|^₩|^₪|^₫|^€|^₭|^₮|^₯|^₰|^₱|^₲|^₳|^₴|^₵|^₶|^₷|^₸|^₹|^₺|^₻|^₼|^₽|^₾|^₿|^[\u00A6\u00A9\u00AE\u00B0\u0482\u058D\u058E\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u09FA\u0B70\u0BF3-\u0BF8\u0BFA\u0C7F\u0D4F\u0D79\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116\u2117\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u214A\u214C\u214D\u214F\u218A\u218B\u2195-\u2199\u219C-\u219F\u21A1\u21A2\u21A4\u21A5\u21A7-\u21AD\u21AF-\u21CD\u21D0\u21D1\u21D3\u21D5-\u21F3\u2300-\u2307\u230C-\u231F\u2322-\u2328\u232B-\u237B\u237D-\u239A\u23B4-\u23DB\u23E2-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u25B6\u25B8-\u25C0\u25C2-\u25F7\u2600-\u266E\u2670-\u2767\u2794-\u27BF\u2800-\u28FF\u2B00-\u2B2F\u2B45\u2B46\u2B4D-\u2B73\u2B76-\u2B95\u2B98-\u2BC8\u2BCA-\u2BFE\u2CE5-\u2CEA\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u32FE\u3300-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA828-\uA82B\uA836\uA837\uA839\uAA77-\uAA79\uFDFD\uFFE4\uFFE8\uFFED\uFFEE\uFFFC\uFFFD\U00010137-\U0001013F\U00010179-\U00010189\U0001018C-\U0001018E\U00010190-\U0001019B\U000101A0\U000101D0-\U000101FC\U00010877\U00010878\U00010AC8\U0001173F\U00016B3C-\U00016B3F\U00016B45\U0001BC9C\U0001D000-\U0001D0F5\U0001D100-\U0001D126\U0001D129-\U0001D164\U0001D16A-\U0001D16C\U0001D183\U0001D184\U0001D18C-\U0001D1A9\U0001D1AE-\U0001D1E8\U0001D200-\U0001D241\U0001D245\U0001D300-\U0001D356\U0001D800-\U0001D9FF\U0001DA37-\U0001DA3A\U0001DA6D-\U0001DA74\U0001DA76-\U0001DA83\U0001DA85\U0001DA86\U0001ECAC\U0001F000-\U0001F02B\U0001F030-\U0001F093\U0001F0A0-\U0001F0AE\U0001F0B1-\U0001F0BF\U0001F0C1-\U0001F0CF\U0001F0D1-\U0001F0F5\U0001F110-\U0001F16B\U0001F170-\U0001F1AC\U0001F1E6-\U0001F202\U0001F210-\U0001F23B\U0001F240-\U0001F248\U0001F250\U0001F251\U0001F260-\U0001F265\U0001F300-\U0001F3FA\U0001F400-\U0001F6D4\U0001F6E0-\U0001F6EC\U0001F6F0-\U0001F6F9\U0001F700-\U0001F773\U0001F780-\U0001F7D8\U0001F800-\U0001F80B\U0001F810-\U0001F847\U0001F850-\U0001F859\U0001F860-\U0001F887\U0001F890-\U0001F8AD\U0001F900-\U0001F90B\U0001F910-\U0001F93E\U0001F940-\U0001F970\U0001F973-\U0001F976\U0001F97A\U0001F97C-\U0001F9A2\U0001F9B0-\U0001F9B9\U0001F9C0-\U0001F9C2\U0001F9D0-\U0001F9FF\U0001FA60-\U0001FA6D]�suffix_search�2y…$|……$|,$|:$|;$|\!$|\?$|¿$|؟$|¡$|\($|\)$|\[$|\]$|\{$|\}$|<$|>$|_$|#$|\*$|&$|。$|?$|!$|,$|、$|;$|:$|~$|·$|।$|،$|۔$|؛$|٪$|\.\.+$|…$|\'$|"$|”$|“$|`$|‘$|´$|’$|‚$|,$|„$|»$|«$|「$|」$|『$|』$|($|)$|〔$|〕$|【$|】$|《$|》$|〈$|〉$|[\u00A6\u00A9\u00AE\u00B0\u0482\u058D\u058E\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u09FA\u0B70\u0BF3-\u0BF8\u0BFA\u0C7F\u0D4F\u0D79\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116\u2117\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u214A\u214C\u214D\u214F\u218A\u218B\u2195-\u2199\u219C-\u219F\u21A1\u21A2\u21A4\u21A5\u21A7-\u21AD\u21AF-\u21CD\u21D0\u21D1\u21D3\u21D5-\u21F3\u2300-\u2307\u230C-\u231F\u2322-\u2328\u232B-\u237B\u237D-\u239A\u23B4-\u23DB\u23E2-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u25B6\u25B8-\u25C0\u25C2-\u25F7\u2600-\u266E\u2670-\u2767\u2794-\u27BF\u2800-\u28FF\u2B00-\u2B2F\u2B45\u2B46\u2B4D-\u2B73\u2B76-\u2B95\u2B98-\u2BC8\u2BCA-\u2BFE\u2CE5-\u2CEA\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u32FE\u3300-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA828-\uA82B\uA836\uA837\uA839\uAA77-\uAA79\uFDFD\uFFE4\uFFE8\uFFED\uFFEE\uFFFC\uFFFD\U00010137-\U0001013F\U00010179-\U00010189\U0001018C-\U0001018E\U00010190-\U0001019B\U000101A0\U000101D0-\U000101FC\U00010877\U00010878\U00010AC8\U0001173F\U00016B3C-\U00016B3F\U00016B45\U0001BC9C\U0001D000-\U0001D0F5\U0001D100-\U0001D126\U0001D129-\U0001D164\U0001D16A-\U0001D16C\U0001D183\U0001D184\U0001D18C-\U0001D1A9\U0001D1AE-\U0001D1E8\U0001D200-\U0001D241\U0001D245\U0001D300-\U0001D356\U0001D800-\U0001D9FF\U0001DA37-\U0001DA3A\U0001DA6D-\U0001DA74\U0001DA76-\U0001DA83\U0001DA85\U0001DA86\U0001ECAC\U0001F000-\U0001F02B\U0001F030-\U0001F093\U0001F0A0-\U0001F0AE\U0001F0B1-\U0001F0BF\U0001F0C1-\U0001F0CF\U0001F0D1-\U0001F0F5\U0001F110-\U0001F16B\U0001F170-\U0001F1AC\U0001F1E6-\U0001F202\U0001F210-\U0001F23B\U0001F240-\U0001F248\U0001F250\U0001F251\U0001F260-\U0001F265\U0001F300-\U0001F3FA\U0001F400-\U0001F6D4\U0001F6E0-\U0001F6EC\U0001F6F0-\U0001F6F9\U0001F700-\U0001F773\U0001F780-\U0001F7D8\U0001F800-\U0001F80B\U0001F810-\U0001F847\U0001F850-\U0001F859\U0001F860-\U0001F887\U0001F890-\U0001F8AD\U0001F900-\U0001F90B\U0001F910-\U0001F93E\U0001F940-\U0001F970\U0001F973-\U0001F976\U0001F97A\U0001F97C-\U0001F9A2\U0001F9B0-\U0001F9B9\U0001F9C0-\U0001F9C2\U0001F9D0-\U0001F9FF\U0001FA60-\U0001FA6D]$|'s$|'S$|’s$|’S$|—$|–$|(?<=[0-9])\+$|(?<=°[FfCcKk])\.$|(?<=[0-9])(?:\$|£|€|¥|฿|US\$|C\$|A\$|₽|﷼|₴|₠|₡|₢|₣|₤|₥|₦|₧|₨|₩|₪|₫|€|₭|₮|₯|₰|₱|₲|₳|₴|₵|₶|₷|₸|₹|₺|₻|₼|₽|₾|₿)$|(?<=[0-9])(?:km|km²|km³|m|m²|m³|dm|dm²|dm³|cm|cm²|cm³|mm|mm²|mm³|ha|µm|nm|yd|in|ft|kg|g|mg|µg|t|lb|oz|m/s|km/h|kmh|mph|hPa|Pa|mbar|mb|MB|kb|KB|gb|GB|tb|TB|T|G|M|K|%|км|км²|км³|м|м²|м³|дм|дм²|дм³|см|см²|см³|мм|мм²|мм³|нм|кг|г|мг|м/с|км/ч|кПа|Па|мбар|Кб|КБ|кб|Мб|МБ|мб|Гб|ГБ|гб|Тб|ТБ|тбكم|كم²|كم³|م|م²|م³|سم|سم²|سم³|مم|مم²|مم³|كم|غرام|جرام|جم|كغ|ملغ|كوب|اكواب)$|(?<=[0-9a-z\uFF41-\uFF5A\u00DF-\u00F6\u00F8-\u00FF\u0101\u0103\u0105\u0107\u0109\u010B\u010D\u010F\u0111\u0113\u0115\u0117\u0119\u011B\u011D\u011F\u0121\u0123\u0125\u0127\u0129\u012B\u012D\u012F\u0131\u0133\u0135\u0137\u0138\u013A\u013C\u013E\u0140\u0142\u0144\u0146\u0148\u0149\u014B\u014D\u014F\u0151\u0153\u0155\u0157\u0159\u015B\u015D\u015F\u0161\u0163\u0165\u0167\u0169\u016B\u016D\u016F\u0171\u0173\u0175\u0177\u017A\u017C\u017E\u017F\u0180\u0183\u0185\u0188\u018C\u018D\u0192\u0195\u0199-\u019B\u019E\u01A1\u01A3\u01A5\u01A8\u01AA\u01AB\u01AD\u01B0\u01B4\u01B6\u01B9\u01BA\u01BD-\u01BF\u01C6\u01C9\u01CC\u01CE\u01D0\u01D2\u01D4\u01D6\u01D8\u01DA\u01DC\u01DD\u01DF\u01E1\u01E3\u01E5\u01E7\u01E9\u01EB\u01ED\u01EF\u01F0\u01F3\u01F5\u01F9\u01FB\u01FD\u01FF\u0201\u0203\u0205\u0207\u0209\u020B\u020D\u020F\u0211\u0213\u0215\u0217\u0219\u021B\u021D\u021F\u0221\u0223\u0225\u0227\u0229\u022B\u022D\u022F\u0231\u0233-\u0239\u023C\u023F\u0240\u0242\u0247\u0249\u024B\u024D\u024F\u2C61\u2C65\u2C66\u2C68\u2C6A\u2C6C\u2C71\u2C73\u2C74\u2C76-\u2C7B\uA723\uA725\uA727\uA729\uA72B\uA72D\uA72F-\uA731\uA733\uA735\uA737\uA739\uA73B\uA73D\uA73F\uA741\uA743\uA745\uA747\uA749\uA74B\uA74D\uA74F\uA751\uA753\uA755\uA757\uA759\uA75B\uA75D\uA75F\uA761\uA763\uA765\uA767\uA769\uA76B\uA76D\uA76F\uA771-\uA778\uA77A\uA77C\uA77F\uA781\uA783\uA785\uA787\uA78C\uA78E\uA791\uA793-\uA795\uA797\uA799\uA79B\uA79D\uA79F\uA7A1\uA7A3\uA7A5\uA7A7\uA7A9\uA7AF\uA7B5\uA7B7\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E01\u1E03\u1E05\u1E07\u1E09\u1E0B\u1E0D\u1E0F\u1E11\u1E13\u1E15\u1E17\u1E19\u1E1B\u1E1D\u1E1F\u1E21\u1E23\u1E25\u1E27\u1E29\u1E2B\u1E2D\u1E2F\u1E31\u1E33\u1E35\u1E37\u1E39\u1E3B\u1E3D\u1E3F\u1E41\u1E43\u1E45\u1E47\u1E49\u1E4B\u1E4D\u1E4F\u1E51\u1E53\u1E55\u1E57\u1E59\u1E5B\u1E5D\u1E5F\u1E61\u1E63\u1E65\u1E67\u1E69\u1E6B\u1E6D\u1E6F\u1E71\u1E73\u1E75\u1E77\u1E79\u1E7B\u1E7D\u1E7F\u1E81\u1E83\u1E85\u1E87\u1E89\u1E8B\u1E8D\u1E8F\u1E91\u1E93\u1E95-\u1E9D\u1E9F\u1EA1\u1EA3\u1EA5\u1EA7\u1EA9\u1EAB\u1EAD\u1EAF\u1EB1\u1EB3\u1EB5\u1EB7\u1EB9\u1EBB\u1EBD\u1EBF\u1EC1\u1EC3\u1EC5\u1EC7\u1EC9\u1ECB\u1ECD\u1ECF\u1ED1\u1ED3\u1ED5\u1ED7\u1ED9\u1EDB\u1EDD\u1EDF\u1EE1\u1EE3\u1EE5\u1EE7\u1EE9\u1EEB\u1EED\u1EEF\u1EF1\u1EF3\u1EF5\u1EF7\u1EF9\u1EFB\u1EFD\u1EFFёа-яәөүҗңһα-ωάέίόώήύа-щюяіїєґѓѕјљњќѐѝ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F%²\-\+…|……|,|:|;|\!|\?|¿|؟|¡|\(|\)|\[|\]|\{|\}|<|>|_|#|\*|&|。|?|!|,|、|;|:|~|·|।|،|۔|؛|٪(?:\'"”“`‘´’‚,„»«「」『』()〔〕【】《》〈〉)])\.$|(?<=[A-Z\uFF21-\uFF3A\u00C0-\u00D6\u00D8-\u00DE\u0100\u0102\u0104\u0106\u0108\u010A\u010C\u010E\u0110\u0112\u0114\u0116\u0118\u011A\u011C\u011E\u0120\u0122\u0124\u0126\u0128\u012A\u012C\u012E\u0130\u0132\u0134\u0136\u0139\u013B\u013D\u013F\u0141\u0143\u0145\u0147\u014A\u014C\u014E\u0150\u0152\u0154\u0156\u0158\u015A\u015C\u015E\u0160\u0162\u0164\u0166\u0168\u016A\u016C\u016E\u0170\u0172\u0174\u0176\u0178\u0179\u017B\u017D\u0181\u0182\u0184\u0186\u0187\u0189-\u018B\u018E-\u0191\u0193\u0194\u0196-\u0198\u019C\u019D\u019F\u01A0\u01A2\u01A4\u01A6\u01A7\u01A9\u01AC\u01AE\u01AF\u01B1-\u01B3\u01B5\u01B7\u01B8\u01BC\u01C4\u01C7\u01CA\u01CD\u01CF\u01D1\u01D3\u01D5\u01D7\u01D9\u01DB\u01DE\u01E0\u01E2\u01E4\u01E6\u01E8\u01EA\u01EC\u01EE\u01F1\u01F4\u01F6-\u01F8\u01FA\u01FC\u01FE\u0200\u0202\u0204\u0206\u0208\u020A\u020C\u020E\u0210\u0212\u0214\u0216\u0218\u021A\u021C\u021E\u0220\u0222\u0224\u0226\u0228\u022A\u022C\u022E\u0230\u0232\u023A\u023B\u023D\u023E\u0241\u0243-\u0246\u0248\u024A\u024C\u024E\u2C60\u2C62-\u2C64\u2C67\u2C69\u2C6B\u2C6D-\u2C70\u2C72\u2C75\u2C7E\u2C7F\uA722\uA724\uA726\uA728\uA72A\uA72C\uA72E\uA732\uA734\uA736\uA738\uA73A\uA73C\uA73E\uA740\uA742\uA744\uA746\uA748\uA74A\uA74C\uA74E\uA750\uA752\uA754\uA756\uA758\uA75A\uA75C\uA75E\uA760\uA762\uA764\uA766\uA768\uA76A\uA76C\uA76E\uA779\uA77B\uA77D\uA77E\uA780\uA782\uA784\uA786\uA78B\uA78D\uA790\uA792\uA796\uA798\uA79A\uA79C\uA79E\uA7A0\uA7A2\uA7A4\uA7A6\uA7A8\uA7AA-\uA7AE\uA7B0-\uA7B4\uA7B6\uA7B8\u1E00\u1E02\u1E04\u1E06\u1E08\u1E0A\u1E0C\u1E0E\u1E10\u1E12\u1E14\u1E16\u1E18\u1E1A\u1E1C\u1E1E\u1E20\u1E22\u1E24\u1E26\u1E28\u1E2A\u1E2C\u1E2E\u1E30\u1E32\u1E34\u1E36\u1E38\u1E3A\u1E3C\u1E3E\u1E40\u1E42\u1E44\u1E46\u1E48\u1E4A\u1E4C\u1E4E\u1E50\u1E52\u1E54\u1E56\u1E58\u1E5A\u1E5C\u1E5E\u1E60\u1E62\u1E64\u1E66\u1E68\u1E6A\u1E6C\u1E6E\u1E70\u1E72\u1E74\u1E76\u1E78\u1E7A\u1E7C\u1E7E\u1E80\u1E82\u1E84\u1E86\u1E88\u1E8A\u1E8C\u1E8E\u1E90\u1E92\u1E94\u1E9E\u1EA0\u1EA2\u1EA4\u1EA6\u1EA8\u1EAA\u1EAC\u1EAE\u1EB0\u1EB2\u1EB4\u1EB6\u1EB8\u1EBA\u1EBC\u1EBE\u1EC0\u1EC2\u1EC4\u1EC6\u1EC8\u1ECA\u1ECC\u1ECE\u1ED0\u1ED2\u1ED4\u1ED6\u1ED8\u1EDA\u1EDC\u1EDE\u1EE0\u1EE2\u1EE4\u1EE6\u1EE8\u1EEA\u1EEC\u1EEE\u1EF0\u1EF2\u1EF4\u1EF6\u1EF8\u1EFA\u1EFC\u1EFEЁА-ЯӘӨҮҖҢҺΑ-ΩΆΈΊΌΏΉΎА-ЩЮЯІЇЄҐЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F][A-Z\uFF21-\uFF3A\u00C0-\u00D6\u00D8-\u00DE\u0100\u0102\u0104\u0106\u0108\u010A\u010C\u010E\u0110\u0112\u0114\u0116\u0118\u011A\u011C\u011E\u0120\u0122\u0124\u0126\u0128\u012A\u012C\u012E\u0130\u0132\u0134\u0136\u0139\u013B\u013D\u013F\u0141\u0143\u0145\u0147\u014A\u014C\u014E\u0150\u0152\u0154\u0156\u0158\u015A\u015C\u015E\u0160\u0162\u0164\u0166\u0168\u016A\u016C\u016E\u0170\u0172\u0174\u0176\u0178\u0179\u017B\u017D\u0181\u0182\u0184\u0186\u0187\u0189-\u018B\u018E-\u0191\u0193\u0194\u0196-\u0198\u019C\u019D\u019F\u01A0\u01A2\u01A4\u01A6\u01A7\u01A9\u01AC\u01AE\u01AF\u01B1-\u01B3\u01B5\u01B7\u01B8\u01BC\u01C4\u01C7\u01CA\u01CD\u01CF\u01D1\u01D3\u01D5\u01D7\u01D9\u01DB\u01DE\u01E0\u01E2\u01E4\u01E6\u01E8\u01EA\u01EC\u01EE\u01F1\u01F4\u01F6-\u01F8\u01FA\u01FC\u01FE\u0200\u0202\u0204\u0206\u0208\u020A\u020C\u020E\u0210\u0212\u0214\u0216\u0218\u021A\u021C\u021E\u0220\u0222\u0224\u0226\u0228\u022A\u022C\u022E\u0230\u0232\u023A\u023B\u023D\u023E\u0241\u0243-\u0246\u0248\u024A\u024C\u024E\u2C60\u2C62-\u2C64\u2C67\u2C69\u2C6B\u2C6D-\u2C70\u2C72\u2C75\u2C7E\u2C7F\uA722\uA724\uA726\uA728\uA72A\uA72C\uA72E\uA732\uA734\uA736\uA738\uA73A\uA73C\uA73E\uA740\uA742\uA744\uA746\uA748\uA74A\uA74C\uA74E\uA750\uA752\uA754\uA756\uA758\uA75A\uA75C\uA75E\uA760\uA762\uA764\uA766\uA768\uA76A\uA76C\uA76E\uA779\uA77B\uA77D\uA77E\uA780\uA782\uA784\uA786\uA78B\uA78D\uA790\uA792\uA796\uA798\uA79A\uA79C\uA79E\uA7A0\uA7A2\uA7A4\uA7A6\uA7A8\uA7AA-\uA7AE\uA7B0-\uA7B4\uA7B6\uA7B8\u1E00\u1E02\u1E04\u1E06\u1E08\u1E0A\u1E0C\u1E0E\u1E10\u1E12\u1E14\u1E16\u1E18\u1E1A\u1E1C\u1E1E\u1E20\u1E22\u1E24\u1E26\u1E28\u1E2A\u1E2C\u1E2E\u1E30\u1E32\u1E34\u1E36\u1E38\u1E3A\u1E3C\u1E3E\u1E40\u1E42\u1E44\u1E46\u1E48\u1E4A\u1E4C\u1E4E\u1E50\u1E52\u1E54\u1E56\u1E58\u1E5A\u1E5C\u1E5E\u1E60\u1E62\u1E64\u1E66\u1E68\u1E6A\u1E6C\u1E6E\u1E70\u1E72\u1E74\u1E76\u1E78\u1E7A\u1E7C\u1E7E\u1E80\u1E82\u1E84\u1E86\u1E88\u1E8A\u1E8C\u1E8E\u1E90\u1E92\u1E94\u1E9E\u1EA0\u1EA2\u1EA4\u1EA6\u1EA8\u1EAA\u1EAC\u1EAE\u1EB0\u1EB2\u1EB4\u1EB6\u1EB8\u1EBA\u1EBC\u1EBE\u1EC0\u1EC2\u1EC4\u1EC6\u1EC8\u1ECA\u1ECC\u1ECE\u1ED0\u1ED2\u1ED4\u1ED6\u1ED8\u1EDA\u1EDC\u1EDE\u1EE0\u1EE2\u1EE4\u1EE6\u1EE8\u1EEA\u1EEC\u1EEE\u1EF0\u1EF2\u1EF4\u1EF6\u1EF8\u1EFA\u1EFC\u1EFEЁА-ЯӘӨҮҖҢҺΑ-ΩΆΈΊΌΏΉΎА-ЩЮЯІЇЄҐЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])\.$�infix_finditer�>�\.\.+|…|[\u00A6\u00A9\u00AE\u00B0\u0482\u058D\u058E\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u09FA\u0B70\u0BF3-\u0BF8\u0BFA\u0C7F\u0D4F\u0D79\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116\u2117\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u214A\u214C\u214D\u214F\u218A\u218B\u2195-\u2199\u219C-\u219F\u21A1\u21A2\u21A4\u21A5\u21A7-\u21AD\u21AF-\u21CD\u21D0\u21D1\u21D3\u21D5-\u21F3\u2300-\u2307\u230C-\u231F\u2322-\u2328\u232B-\u237B\u237D-\u239A\u23B4-\u23DB\u23E2-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u25B6\u25B8-\u25C0\u25C2-\u25F7\u2600-\u266E\u2670-\u2767\u2794-\u27BF\u2800-\u28FF\u2B00-\u2B2F\u2B45\u2B46\u2B4D-\u2B73\u2B76-\u2B95\u2B98-\u2BC8\u2BCA-\u2BFE\u2CE5-\u2CEA\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u32FE\u3300-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA828-\uA82B\uA836\uA837\uA839\uAA77-\uAA79\uFDFD\uFFE4\uFFE8\uFFED\uFFEE\uFFFC\uFFFD\U00010137-\U0001013F\U00010179-\U00010189\U0001018C-\U0001018E\U00010190-\U0001019B\U000101A0\U000101D0-\U000101FC\U00010877\U00010878\U00010AC8\U0001173F\U00016B3C-\U00016B3F\U00016B45\U0001BC9C\U0001D000-\U0001D0F5\U0001D100-\U0001D126\U0001D129-\U0001D164\U0001D16A-\U0001D16C\U0001D183\U0001D184\U0001D18C-\U0001D1A9\U0001D1AE-\U0001D1E8\U0001D200-\U0001D241\U0001D245\U0001D300-\U0001D356\U0001D800-\U0001D9FF\U0001DA37-\U0001DA3A\U0001DA6D-\U0001DA74\U0001DA76-\U0001DA83\U0001DA85\U0001DA86\U0001ECAC\U0001F000-\U0001F02B\U0001F030-\U0001F093\U0001F0A0-\U0001F0AE\U0001F0B1-\U0001F0BF\U0001F0C1-\U0001F0CF\U0001F0D1-\U0001F0F5\U0001F110-\U0001F16B\U0001F170-\U0001F1AC\U0001F1E6-\U0001F202\U0001F210-\U0001F23B\U0001F240-\U0001F248\U0001F250\U0001F251\U0001F260-\U0001F265\U0001F300-\U0001F3FA\U0001F400-\U0001F6D4\U0001F6E0-\U0001F6EC\U0001F6F0-\U0001F6F9\U0001F700-\U0001F773\U0001F780-\U0001F7D8\U0001F800-\U0001F80B\U0001F810-\U0001F847\U0001F850-\U0001F859\U0001F860-\U0001F887\U0001F890-\U0001F8AD\U0001F900-\U0001F90B\U0001F910-\U0001F93E\U0001F940-\U0001F970\U0001F973-\U0001F976\U0001F97A\U0001F97C-\U0001F9A2\U0001F9B0-\U0001F9B9\U0001F9C0-\U0001F9C2\U0001F9D0-\U0001F9FF\U0001FA60-\U0001FA6D]|(?<=[0-9])[+\-\*^](?=[0-9-])|(?<=[a-z\uFF41-\uFF5A\u00DF-\u00F6\u00F8-\u00FF\u0101\u0103\u0105\u0107\u0109\u010B\u010D\u010F\u0111\u0113\u0115\u0117\u0119\u011B\u011D\u011F\u0121\u0123\u0125\u0127\u0129\u012B\u012D\u012F\u0131\u0133\u0135\u0137\u0138\u013A\u013C\u013E\u0140\u0142\u0144\u0146\u0148\u0149\u014B\u014D\u014F\u0151\u0153\u0155\u0157\u0159\u015B\u015D\u015F\u0161\u0163\u0165\u0167\u0169\u016B\u016D\u016F\u0171\u0173\u0175\u0177\u017A\u017C\u017E\u017F\u0180\u0183\u0185\u0188\u018C\u018D\u0192\u0195\u0199-\u019B\u019E\u01A1\u01A3\u01A5\u01A8\u01AA\u01AB\u01AD\u01B0\u01B4\u01B6\u01B9\u01BA\u01BD-\u01BF\u01C6\u01C9\u01CC\u01CE\u01D0\u01D2\u01D4\u01D6\u01D8\u01DA\u01DC\u01DD\u01DF\u01E1\u01E3\u01E5\u01E7\u01E9\u01EB\u01ED\u01EF\u01F0\u01F3\u01F5\u01F9\u01FB\u01FD\u01FF\u0201\u0203\u0205\u0207\u0209\u020B\u020D\u020F\u0211\u0213\u0215\u0217\u0219\u021B\u021D\u021F\u0221\u0223\u0225\u0227\u0229\u022B\u022D\u022F\u0231\u0233-\u0239\u023C\u023F\u0240\u0242\u0247\u0249\u024B\u024D\u024F\u2C61\u2C65\u2C66\u2C68\u2C6A\u2C6C\u2C71\u2C73\u2C74\u2C76-\u2C7B\uA723\uA725\uA727\uA729\uA72B\uA72D\uA72F-\uA731\uA733\uA735\uA737\uA739\uA73B\uA73D\uA73F\uA741\uA743\uA745\uA747\uA749\uA74B\uA74D\uA74F\uA751\uA753\uA755\uA757\uA759\uA75B\uA75D\uA75F\uA761\uA763\uA765\uA767\uA769\uA76B\uA76D\uA76F\uA771-\uA778\uA77A\uA77C\uA77F\uA781\uA783\uA785\uA787\uA78C\uA78E\uA791\uA793-\uA795\uA797\uA799\uA79B\uA79D\uA79F\uA7A1\uA7A3\uA7A5\uA7A7\uA7A9\uA7AF\uA7B5\uA7B7\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E01\u1E03\u1E05\u1E07\u1E09\u1E0B\u1E0D\u1E0F\u1E11\u1E13\u1E15\u1E17\u1E19\u1E1B\u1E1D\u1E1F\u1E21\u1E23\u1E25\u1E27\u1E29\u1E2B\u1E2D\u1E2F\u1E31\u1E33\u1E35\u1E37\u1E39\u1E3B\u1E3D\u1E3F\u1E41\u1E43\u1E45\u1E47\u1E49\u1E4B\u1E4D\u1E4F\u1E51\u1E53\u1E55\u1E57\u1E59\u1E5B\u1E5D\u1E5F\u1E61\u1E63\u1E65\u1E67\u1E69\u1E6B\u1E6D\u1E6F\u1E71\u1E73\u1E75\u1E77\u1E79\u1E7B\u1E7D\u1E7F\u1E81\u1E83\u1E85\u1E87\u1E89\u1E8B\u1E8D\u1E8F\u1E91\u1E93\u1E95-\u1E9D\u1E9F\u1EA1\u1EA3\u1EA5\u1EA7\u1EA9\u1EAB\u1EAD\u1EAF\u1EB1\u1EB3\u1EB5\u1EB7\u1EB9\u1EBB\u1EBD\u1EBF\u1EC1\u1EC3\u1EC5\u1EC7\u1EC9\u1ECB\u1ECD\u1ECF\u1ED1\u1ED3\u1ED5\u1ED7\u1ED9\u1EDB\u1EDD\u1EDF\u1EE1\u1EE3\u1EE5\u1EE7\u1EE9\u1EEB\u1EED\u1EEF\u1EF1\u1EF3\u1EF5\u1EF7\u1EF9\u1EFB\u1EFD\u1EFFёа-яәөүҗңһα-ωάέίόώήύа-щюяіїєґѓѕјљњќѐѝ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F\'"”“`‘´’‚,„»«「」『』()〔〕【】《》〈〉])\.(?=[A-Z\uFF21-\uFF3A\u00C0-\u00D6\u00D8-\u00DE\u0100\u0102\u0104\u0106\u0108\u010A\u010C\u010E\u0110\u0112\u0114\u0116\u0118\u011A\u011C\u011E\u0120\u0122\u0124\u0126\u0128\u012A\u012C\u012E\u0130\u0132\u0134\u0136\u0139\u013B\u013D\u013F\u0141\u0143\u0145\u0147\u014A\u014C\u014E\u0150\u0152\u0154\u0156\u0158\u015A\u015C\u015E\u0160\u0162\u0164\u0166\u0168\u016A\u016C\u016E\u0170\u0172\u0174\u0176\u0178\u0179\u017B\u017D\u0181\u0182\u0184\u0186\u0187\u0189-\u018B\u018E-\u0191\u0193\u0194\u0196-\u0198\u019C\u019D\u019F\u01A0\u01A2\u01A4\u01A6\u01A7\u01A9\u01AC\u01AE\u01AF\u01B1-\u01B3\u01B5\u01B7\u01B8\u01BC\u01C4\u01C7\u01CA\u01CD\u01CF\u01D1\u01D3\u01D5\u01D7\u01D9\u01DB\u01DE\u01E0\u01E2\u01E4\u01E6\u01E8\u01EA\u01EC\u01EE\u01F1\u01F4\u01F6-\u01F8\u01FA\u01FC\u01FE\u0200\u0202\u0204\u0206\u0208\u020A\u020C\u020E\u0210\u0212\u0214\u0216\u0218\u021A\u021C\u021E\u0220\u0222\u0224\u0226\u0228\u022A\u022C\u022E\u0230\u0232\u023A\u023B\u023D\u023E\u0241\u0243-\u0246\u0248\u024A\u024C\u024E\u2C60\u2C62-\u2C64\u2C67\u2C69\u2C6B\u2C6D-\u2C70\u2C72\u2C75\u2C7E\u2C7F\uA722\uA724\uA726\uA728\uA72A\uA72C\uA72E\uA732\uA734\uA736\uA738\uA73A\uA73C\uA73E\uA740\uA742\uA744\uA746\uA748\uA74A\uA74C\uA74E\uA750\uA752\uA754\uA756\uA758\uA75A\uA75C\uA75E\uA760\uA762\uA764\uA766\uA768\uA76A\uA76C\uA76E\uA779\uA77B\uA77D\uA77E\uA780\uA782\uA784\uA786\uA78B\uA78D\uA790\uA792\uA796\uA798\uA79A\uA79C\uA79E\uA7A0\uA7A2\uA7A4\uA7A6\uA7A8\uA7AA-\uA7AE\uA7B0-\uA7B4\uA7B6\uA7B8\u1E00\u1E02\u1E04\u1E06\u1E08\u1E0A\u1E0C\u1E0E\u1E10\u1E12\u1E14\u1E16\u1E18\u1E1A\u1E1C\u1E1E\u1E20\u1E22\u1E24\u1E26\u1E28\u1E2A\u1E2C\u1E2E\u1E30\u1E32\u1E34\u1E36\u1E38\u1E3A\u1E3C\u1E3E\u1E40\u1E42\u1E44\u1E46\u1E48\u1E4A\u1E4C\u1E4E\u1E50\u1E52\u1E54\u1E56\u1E58\u1E5A\u1E5C\u1E5E\u1E60\u1E62\u1E64\u1E66\u1E68\u1E6A\u1E6C\u1E6E\u1E70\u1E72\u1E74\u1E76\u1E78\u1E7A\u1E7C\u1E7E\u1E80\u1E82\u1E84\u1E86\u1E88\u1E8A\u1E8C\u1E8E\u1E90\u1E92\u1E94\u1E9E\u1EA0\u1EA2\u1EA4\u1EA6\u1EA8\u1EAA\u1EAC\u1EAE\u1EB0\u1EB2\u1EB4\u1EB6\u1EB8\u1EBA\u1EBC\u1EBE\u1EC0\u1EC2\u1EC4\u1EC6\u1EC8\u1ECA\u1ECC\u1ECE\u1ED0\u1ED2\u1ED4\u1ED6\u1ED8\u1EDA\u1EDC\u1EDE\u1EE0\u1EE2\u1EE4\u1EE6\u1EE8\u1EEA\u1EEC\u1EEE\u1EF0\u1EF2\u1EF4\u1EF6\u1EF8\u1EFA\u1EFC\u1EFEЁА-ЯӘӨҮҖҢҺΑ-ΩΆΈΊΌΏΉΎА-ЩЮЯІЇЄҐЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F\'"”“`‘´’‚,„»«「」『』()〔〕【】《》〈〉])|(?<=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F]),(?=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])|(?<=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F0-9])(?:-|–|—|--|---|——|~)(?=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])|(?<=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F0-9])[:<>=/](?=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])�token_match��url_match�
2
+ ��A�
3
+ � ��A� �'��A�'�''��A�''�'Cause��A�'CauseC�because�'Cos��A�'CosC�because�'Coz��A�'CozC�because�'Cuz��A�'CuzC�because�'S��A�'SC�'s�'bout��A�'boutC�about�'cause��A�'causeC�because�'cos��A�'cosC�because�'coz��A�'cozC�because�'cuz��A�'cuzC�because�'d��A�'d�'em��A�'emC�them�'ll��A�'llC�will�'nuff��A�'nuffC�enough�'re��A�'reC�are�'s��A�'sC�'s�(*_*)��A�(*_*)�(-8��A�(-8�(-:��A�(-:�(-;��A�(-;�(-_-)��A�(-_-)�(._.)��A�(._.)�(:��A�(:�(;��A�(;�(=��A�(=�(>_<)��A�(>_<)�(^_^)��A�(^_^)�(o:��A�(o:�(¬_¬)��A�(¬_¬)�(ಠ_ಠ)��A�(ಠ_ಠ)�(╯°□°)╯︵┻━┻��A�(╯°□°)╯︵┻━┻�)-:��A�)-:�):��A�):�-_-��A�-_-�-__-��A�-__-�._.��A�._.�0.0��A�0.0�0.o��A�0.o�0_0��A�0_0�0_o��A�0_o�10a.m.��A�10�A�a.m.C�a.m.�10am��A�10�A�amC�a.m.�10p.m.��A�10�A�p.m.C�p.m.�10pm��A�10�A�pmC�p.m.�11a.m.��A�11�A�a.m.C�a.m.�11am��A�11�A�amC�a.m.�11p.m.��A�11�A�p.m.C�p.m.�11pm��A�11�A�pmC�p.m.�12a.m.��A�12�A�a.m.C�a.m.�12am��A�12�A�amC�a.m.�12p.m.��A�12�A�p.m.C�p.m.�12pm��A�12�A�pmC�p.m.�1a.m.��A�1�A�a.m.C�a.m.�1am��A�1�A�amC�a.m.�1p.m.��A�1�A�p.m.C�p.m.�1pm��A�1�A�pmC�p.m.�2a.m.��A�2�A�a.m.C�a.m.�2am��A�2�A�amC�a.m.�2p.m.��A�2�A�p.m.C�p.m.�2pm��A�2�A�pmC�p.m.�3a.m.��A�3�A�a.m.C�a.m.�3am��A�3�A�amC�a.m.�3p.m.��A�3�A�p.m.C�p.m.�3pm��A�3�A�pmC�p.m.�4a.m.��A�4�A�a.m.C�a.m.�4am��A�4�A�amC�a.m.�4p.m.��A�4�A�p.m.C�p.m.�4pm��A�4�A�pmC�p.m.�5a.m.��A�5�A�a.m.C�a.m.�5am��A�5�A�amC�a.m.�5p.m.��A�5�A�p.m.C�p.m.�5pm��A�5�A�pmC�p.m.�6a.m.��A�6�A�a.m.C�a.m.�6am��A�6�A�amC�a.m.�6p.m.��A�6�A�p.m.C�p.m.�6pm��A�6�A�pmC�p.m.�7a.m.��A�7�A�a.m.C�a.m.�7am��A�7�A�amC�a.m.�7p.m.��A�7�A�p.m.C�p.m.�7pm��A�7�A�pmC�p.m.�8)��A�8)�8-)��A�8-)�8-D��A�8-D�8D��A�8D�8a.m.��A�8�A�a.m.C�a.m.�8am��A�8�A�amC�a.m.�8p.m.��A�8�A�p.m.C�p.m.�8pm��A�8�A�pmC�p.m.�9a.m.��A�9�A�a.m.C�a.m.�9am��A�9�A�amC�a.m.�9p.m.��A�9�A�p.m.C�p.m.�9pm��A�9�A�pmC�p.m.�:'(��A�:'(�:')��A�:')�:'-(��A�:'-(�:'-)��A�:'-)�:(��A�:(�:((��A�:((�:(((��A�:(((�:()��A�:()�:)��A�:)�:))��A�:))�:)))��A�:)))�:*��A�:*�:-(��A�:-(�:-((��A�:-((�:-(((��A�:-(((�:-)��A�:-)�:-))��A�:-))�:-)))��A�:-)))�:-*��A�:-*�:-/��A�:-/�:-0��A�:-0�:-3��A�:-3�:->��A�:->�:-D��A�:-D�:-O��A�:-O�:-P��A�:-P�:-X��A�:-X�:-]��A�:-]�:-o��A�:-o�:-p��A�:-p�:-x��A�:-x�:-|��A�:-|�:-}��A�:-}�:/��A�:/�:0��A�:0�:1��A�:1�:3��A�:3�:>��A�:>�:D��A�:D�:O��A�:O�:P��A�:P�:X��A�:X�:]��A�:]�:o��A�:o�:o)��A�:o)�:p��A�:p�:x��A�:x�:|��A�:|�:}��A�:}�:’(��A�:’(�:’)��A�:’)�:’-(��A�:’-(�:’-)��A�:’-)�;)��A�;)�;-)��A�;-)�;-D��A�;-D�;D��A�;D�;_;��A�;_;�<.<��A�<.<�</3��A�</3�<3��A�<3�<33��A�<33�<333��A�<333�<space>��A�<space>�=(��A�=(�=)��A�=)�=/��A�=/�=3��A�=3�=D��A�=D�=[��A�=[�=]��A�=]�=|��A�=|�>.<��A�>.<�>.>��A�>.>�>:(��A�>:(�>:o��A�>:o�><(((*>��A�><(((*>�@_@��A�@_@�Adm.��A�Adm.�Ain't��A�Ai�A�n'tC�not�Aint��A�Ai�A�ntC�not�Ain’t��A�Ai�A�n’tC�not�Ak.��A�Ak.C�Alaska�Ala.��A�Ala.C�Alabama�Apr.��A�Apr.C�April�Aren't��A�AreC�are�A�n'tC�not�Arent��A�AreC�are�A�ntC�not�Aren’t��A�AreC�are�A�n’tC�not�Ariz.��A�Ariz.C�Arizona�Ark.��A�Ark.C�Arkansas�Aug.��A�Aug.C�August�Bros.��A�Bros.�C'mon��A�C'mC�come�A�on�C++��A�C++�Calif.��A�Calif.C�California�Can't��A�CaC�can�A�n'tC�not�Can't've��A�CaC�can�A�n'tC�not�A�'veC�have�Cannot��A�CanC�can�A�not�Cant��A�CaC�can�A�ntC�not�Cantve��A�CaC�can�A�ntC�not�A�veC�have�Can’t��A�CaC�can�A�n’tC�not�Can’t’ve��A�CaC�can�A�n’tC�not�A�’veC�have�Co.��A�Co.�Colo.��A�Colo.C�Colorado�Conn.��A�Conn.C�Connecticut�Corp.��A�Corp.�Could've��A�CouldC�could�A�'ve�Couldn't��A�CouldC�could�A�n'tC�not�Couldn't've��A�CouldC�could�A�n'tC�not�A�'veC�have�Couldnt��A�CouldC�could�A�ntC�not�Couldntve��A�CouldC�could�A�ntC�not�A�veC�have�Couldn’t��A�CouldC�could�A�n’tC�not�Couldn’t’ve��A�CouldC�could�A�n’tC�not�A�’veC�have�Couldve��A�CouldC�could�A�ve�Could’ve��A�CouldC�could�A�’ve�C’mon��A�C’mC�come�A�on�D.C.��A�D.C.�Daren't��A�DareC�dare�A�n'tC�not�Darent��A�DareC�dare�A�ntC�not�Daren’t��A�DareC�dare�A�n’tC�not�Dec.��A�Dec.C�December�Del.��A�Del.C�Delaware�Didn't��A�DidC�do�A�n'tC�not�Didn't've��A�DidC�do�A�n'tC�not�A�'veC�have�Didnt��A�DidC�do�A�ntC�not�Didntve��A�DidC�do�A�ntC�not�A�veC�have�Didn’t��A�DidC�do�A�n’tC�not�Didn’t’ve��A�DidC�do�A�n’tC�not�A�’veC�have�Doesn't��A�DoesC�does�A�n'tC�not�Doesn't've��A�DoesC�does�A�n'tC�not�A�'veC�have�Doesnt��A�DoesC�does�A�ntC�not�Doesntve��A�DoesC�does�A�ntC�not�A�veC�have�Doesn’t��A�DoesC�does�A�n’tC�not�Doesn’t’ve��A�DoesC�does�A�n’tC�not�A�’veC�have�Doin��A�DoinC�doing�Doin'��A�Doin'C�doing�Doin’��A�Doin’C�doing�Don't��A�DoC�do�A�n'tC�not�Don't've��A�DoC�do�A�n'tC�not�A�'veC�have�Dont��A�DoC�do�A�ntC�not�Dontve��A�DoC�do�A�ntC�not�A�veC�have�Don’t��A�DoC�do�A�n’tC�not�Don’t’ve��A�DoC�do�A�n’tC�not�A�’veC�have�Dr.��A�Dr.�E.G.��A�E.G.�E.g.��A�E.g.�Feb.��A�Feb.C�February�Fla.��A�Fla.C�Florida�Ga.��A�Ga.C�Georgia�Gen.��A�Gen.�Goin��A�GoinC�going�Goin'��A�Goin'C�going�Goin’��A�Goin’C�going�Gonna��A�GonC�going�A�naC�to�Gotta��A�GotC�got�A�taC�to�Gov.��A�Gov.�Hadn't��A�HadC�have�A�n'tC�not�Hadn't've��A�HadC�have�A�n'tC�not�A�'veC�have�Hadnt��A�HadC�have�A�ntC�not�Hadntve��A�HadC�have�A�ntC�not�A�veC�have�Hadn’t��A�HadC�have�A�n’tC�not�Hadn’t’ve��A�HadC�have�A�n’tC�not�A�’veC�have�Hasn't��A�HasC�has�A�n'tC�not�Hasnt��A�HasC�has�A�ntC�not�Hasn’t��A�HasC�has�A�n’tC�not�Haven't��A�HaveC�have�A�n'tC�not�Havent��A�HaveC�have�A�ntC�not�Haven��t��A�HaveC�have�A�n’tC�not�Havin��A�HavinC�having�Havin'��A�Havin'C�having�Havin’��A�Havin’C�having�He'd��A�HeC�he�A�'dC�'d�He'd've��A�HeC�he�A�'dC�would�A�'veC�have�He'll��A�HeC�he�A�'llC�will�He'll've��A�HeC�he�A�'llC�will�A�'veC�have�He's��A�HeC�he�A�'sC�'s�Hed��A�HeC�he�A�dC�'d�Hedve��A�HeC�he�A�dC�would�A�veC�have�Hellve��A�HeC�he�A�llC�will�A�veC�have�Hes��A�HeC�he�A�s�He’d��A�HeC�he�A�’dC�'d�He’d’ve��A�HeC�he�A�’dC�would�A�’veC�have�He’ll��A�HeC�he�A�’llC�will�He’ll’ve��A�HeC�he�A�’llC�will�A�’veC�have�He’s��A�HeC�he�A�’sC�'s�How'd��A�HowC�how�A�'dC�'d�How'd've��A�HowC�how�A�'dC�would�A�'veC�have�How'd'y��A�HowC�how�A�'d�A�'yC�you�How'll��A�HowC�how�A�'llC�will�How'll've��A�HowC�how�A�'llC�will�A�'veC�have�How're��A�HowC�how�A�'reC�are�How's��A�HowC�how�A�'sC�'s�How've��A�HowC�how�A�'ve�Howd��A�HowC�how�A�dC�'d�Howdve��A�HowC�how�A�dC�would�A�veC�have�Howll��A�HowC�how�A�llC�will�Howllve��A�HowC�how�A�llC�will�A�veC�have�Howre��A�HowC�how�A�reC�are�Hows��A�HowC�how�A�s�Howve��A�How�A�veC�have�How’d��A�HowC�how�A�’dC�'d�How’d’ve��A�HowC�how�A�’dC�would�A�’veC�have�How’d’y��A�HowC�how�A�’d�A�’yC�you�How’ll��A�HowC�how�A�’llC�will�How’ll’ve��A�HowC�how�A�’llC�will�A�’veC�have�How’re��A�HowC�how�A�’reC�are�How’s��A�HowC�how�A�’sC�'s�How’ve��A�HowC�how�A�’ve�I'd��A�IC�i�A�'dC�'d�I'd've��A�IC�i�A�'dC�would�A�'veC�have�I'll��A�IC�i�A�'llC�will�I'll've��A�IC�i�A�'llC�will�A�'veC�have�I'm��A�IC�i�A�'mC�am�I'ma��A�IC�i�A�'mC�am�A�aC�gonna�I've��A�IC�i�A�'veC�have�I.E.��A�I.E.�I.e.��A�I.e.�Ia.��A�Ia.C�Iowa�Id��A�IC�i�A�dC�'d�Id.��A�Id.C�Idaho�Idve��A�IC�i�A�dC�would�A�veC�have�Ill.��A�Ill.C�Illinois�Illve��A�IC�i�A�llC�will�A�veC�have�Im��A�IC�i�A�m�Ima��A�IC�i�A�mC�am�A�aC�gonna�Inc.��A�Inc.�Ind.��A�Ind.C�Indiana�Isn't��A�IsC�is�A�n'tC�not�Isnt��A�IsC�is�A�ntC�not�Isn’t��A�IsC�is�A�n’tC�not�It'd��A�ItC�it�A�'dC�'d�It'd've��A�ItC�it�A�'dC�would�A�'veC�have�It'll��A�ItC�it�A�'llC�will�It'll've��A�ItC�it�A�'llC�will�A�'veC�have�It's��A�ItC�it�A�'sC�'s�Itd��A�ItC�it�A�dC�'d�Itdve��A�ItC�it�A�dC�would�A�veC�have�Itll��A�ItC�it�A�llC�will�Itllve��A�ItC�it�A�llC�will�A�veC�have�It’d��A�ItC�it�A�’dC�'d�It’d’ve��A�ItC�it�A�’dC�would�A�’veC�have�It’ll��A�ItC�it�A�’llC�will�It’ll’ve��A�ItC�it�A�’llC�will�A�’veC�have�It’s��A�ItC�it�A�’sC�'s�Ive��A�IC�i�A�veC�have�I’d��A�IC�i�A�’dC�'d�I’d’ve��A�IC�i�A�’dC�would�A�’veC�have�I’ll��A�IC�i�A�’llC�will�I’ll’ve��A�IC�i�A�’llC�will�A�’veC�have�I’m��A�IC�i�A�’mC�am�I’ma��A�IC�i�A�’mC�am�A�aC�gonna�I’ve��A�IC�i�A�’veC�have�Jan.��A�Jan.C�January�Jr.��A�Jr.�Jul.��A�Jul.C�July�Jun.��A�Jun.C�June�Kan.��A�Kan.C�Kansas�Kans.��A�Kans.C�Kansas�Ky.��A�Ky.C�Kentucky�La.��A�La.C�Louisiana�Let's��A�LetC�let�A�'sC�us�Let’s��A�LetC�let�A�’sC�us�Lovin��A�LovinC�loving�Lovin'��A�Lovin'C�loving�Lovin’��A�Lovin’C�loving�Ltd.��A�Ltd.�Ma'am��A�Ma'amC�madam�Mar.��A�Mar.C�March�Mass.��A�Mass.C�Massachusetts�Mayn't��A�MayC�may�A�n'tC�not�Mayn't've��A�MayC�may�A�n'tC�not�A�'veC�have�Maynt��A�MayC�may�A�ntC�not�Mayntve��A�MayC�may�A�ntC�not�A�veC�have�Mayn’t��A�MayC�may�A�n’tC�not�Mayn’t’ve��A�MayC�may�A�n’tC�not�A�’veC�have�Ma’am��A�Ma’amC�madam�Md.��A�Md.�Messrs.��A�Messrs.�Mich.��A�Mich.C�Michigan�Might've��A�MightC�might�A�'ve�Mightn't��A�MightC�might�A�n'tC�not�Mightn't've��A�MightC�might�A�n'tC�not�A�'veC�have�Mightnt��A�MightC�might�A�ntC�not�Mightntve��A�MightC�might�A�ntC�not�A�veC�have�Mightn’t��A�MightC�might�A�n’tC�not�Mightn’t’ve��A�MightC�might�A�n’tC�not�A�’veC�have�Mightve��A�MightC�might�A�ve�Might’ve��A�MightC�might�A�’ve�Minn.��A�Minn.C�Minnesota�Miss.��A�Miss.C�Mississippi�Mo.��A�Mo.�Mont.��A�Mont.�Mr.��A�Mr.�Mrs.��A�Mrs.�Ms.��A�Ms.�Mt.��A�Mt.C�Mount�Must've��A�MustC�must�A�'ve�Mustn't��A�MustC�must�A�n'tC�not�Mustn't've��A�MustC�must�A�n'tC�not�A�'veC�have�Mustnt��A�MustC�must�A�ntC�not�Mustntve��A�MustC�must�A�ntC�not�A�veC�have�Mustn’t��A�MustC�must�A�n’tC�not�Mustn’t’ve��A�MustC�must�A�n’tC�not�A�’veC�have�Mustve��A�MustC�must�A�ve�Must’ve��A�MustC�must�A�’ve�N.C.��A�N.C.C�North Carolina�N.D.��A�N.D.C�North Dakota�N.H.��A�N.H.C�New Hampshire�N.J.��A�N.J.C�New Jersey�N.M.��A�N.M.C�New Mexico�N.Y.��A�N.Y.C�New York�Neb.��A�Neb.C�Nebraska�Nebr.��A�Nebr.C�Nebraska�Needn't��A�NeedC�need�A�n'tC�not�Needn't've��A�NeedC�need�A�n'tC�not�A�'veC�have�Neednt��A�NeedC�need�A�ntC�not�Needntve��A�NeedC�need�A�ntC�not�A�veC�have�Needn’t��A�NeedC�need�A�n’tC�not�Needn’t’ve��A�NeedC�need�A�n’tC�not�A�’veC�have�Nev.��A�Nev.C�Nevada�Not've��A�NotC�not�A�'veC�have�Nothin��A�NothinC�nothing�Nothin'��A�Nothin'C�nothing�Nothin’��A�Nothin’C�nothing�Notve��A�NotC�not�A�veC�have�Not’ve��A�NotC�not�A�’veC�have�Nov.��A�Nov.C�November�Nuthin��A�NuthinC�nothing�Nuthin'��A�Nuthin'C�nothing�Nuthin’��A�Nuthin’C�nothing�O'clock��A�O'clockC�o'clock�O.O��A�O.O�O.o��A�O.o�O_O��A�O_O�O_o��A�O_o�Oct.��A�Oct.C�October�Okla.��A�Okla.C�Oklahoma�Ol��A�OlC�old�Ol'��A�Ol'C�old�Ol’��A�Ol’C�old�Ore.��A�Ore.C�Oregon�Oughtn't��A�OughtC�ought�A�n'tC�not�Oughtn't've��A�OughtC�ought�A�n'tC�not�A�'veC�have�Oughtnt��A�OughtC�ought�A�ntC�not�Oughtntve��A�OughtC�ought�A�ntC�not�A�veC�have�Oughtn’t��A�OughtC�ought�A�n’tC�not�Oughtn’t’ve��A�OughtC�ought�A�n’tC�not�A�’veC�have�O’clock��A�O’clockC�o'clock�Pa.��A�Pa.C�Pennsylvania�Ph.D.��A�Ph.D.�Prof.��A�Prof.�Rep.��A�Rep.�Rev.��A�Rev.�S.C.��A�S.C.C�South Carolina�Sen.��A�Sen.�Sep.��A�Sep.C�September�Sept.��A�Sept.C�September�Shan't��A�ShaC�shall�A�n'tC�not�Shan't've��A�ShaC�shall�A�n'tC�not�A�'veC�have�Shant��A�ShaC�shall�A�ntC�not�Shantve��A�ShaC�shall�A�ntC�not�A�veC�have�Shan’t��A�ShaC�shall�A�n’tC�not�Shan’t’ve��A�ShaC�shall�A�n’tC�not�A�’veC�have�She'd��A�SheC�she�A�'dC�'d�She'd've��A�SheC�she�A�'dC�would�A�'veC�have�She'll��A�SheC�she�A�'llC�will�She'll've��A�SheC�she�A�'llC�will�A�'veC�have�She's��A�SheC�she�A�'sC�'s�Shedve��A�SheC�she�A�dC�would�A�veC�have�Shellve��A�SheC�she�A�llC�will�A�veC�have�Shes��A�SheC�she�A�s�She’d��A�SheC�she�A�’dC�'d�She’d’ve��A�SheC�she�A�’dC�would�A�’veC�have�She’ll��A�SheC�she�A�’llC�will�She’ll’ve��A�SheC�she�A�’llC�will�A�’veC�have�She’s��A�SheC�she�A�’sC�'s�Should've��A�ShouldC�should�A�'ve�Shouldn't��A�ShouldC�should�A�n'tC�not�Shouldn't've��A�ShouldC�should�A�n'tC�not�A�'veC�have�Shouldnt��A�ShouldC�should�A�ntC�not�Shouldntve��A�ShouldC�should�A�ntC�not�A�veC�have�Shouldn’t��A�ShouldC�should�A�n’tC�not�Shouldn’t’ve��A�ShouldC�should�A�n’tC�not�A�’veC�have�Shouldve��A�ShouldC�should�A�ve�Should’ve��A�ShouldC�should�A�’ve�Somethin��A�SomethinC�something�Somethin'��A�Somethin'C�something�Somethin’��A�Somethin’C�something�St.��A�St.�Tenn.��A�Tenn.C�Tennessee�That'd��A�ThatC�that�A�'dC�'d�That'd've��A�ThatC�that�A�'dC�would�A�'veC�have�That'll��A�ThatC�that�A�'llC�will�That'll've��A�ThatC�that�A�'llC�will�A�'veC�have�That'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,7191 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ "\t",
3
+ "\n",
4
+ "\n\r\n",
5
+ "\r",
6
+ "\r\n",
7
+ "\r\n\r\n",
8
+ " ",
9
+ " ",
10
+ "!",
11
+ "\"",
12
+ "#",
13
+ "$",
14
+ "%",
15
+ "&",
16
+ "'",
17
+ "''",
18
+ "'-(",
19
+ "'-)",
20
+ "'22",
21
+ "'23",
22
+ "'Cause",
23
+ "'Cos",
24
+ "'Coz",
25
+ "'Cuz",
26
+ "'S",
27
+ "'X",
28
+ "'Xxx",
29
+ "'Xxxxx",
30
+ "'am",
31
+ "'bout",
32
+ "'cause",
33
+ "'cos",
34
+ "'coz",
35
+ "'cuz",
36
+ "'d",
37
+ "'em",
38
+ "'ll",
39
+ "'m",
40
+ "'nuff",
41
+ "'re",
42
+ "'s",
43
+ "'ve",
44
+ "'x",
45
+ "'xx",
46
+ "'xxx",
47
+ "'xxxx",
48
+ "'y",
49
+ "(",
50
+ "(((",
51
+ "(*>",
52
+ "(*_*)",
53
+ "(-8",
54
+ "(-:",
55
+ "(-;",
56
+ "(-_-)",
57
+ "(-d",
58
+ "(._.)",
59
+ "(10",
60
+ "(:",
61
+ "(;",
62
+ "(=",
63
+ "(>_<)",
64
+ "(ES",
65
+ "(UK",
66
+ "(US",
67
+ "(^_^)",
68
+ "(es",
69
+ "(o:",
70
+ "(uk",
71
+ "(us",
72
+ "(x:",
73
+ "(x_x)",
74
+ "(\u00ac_\u00ac)",
75
+ "(\u0ca0_\u0ca0)",
76
+ "(\u256f\u00b0\u25a1\u00b0\uff09\u256f\ufe35\u253b\u2501\u253b",
77
+ ")",
78
+ ")))",
79
+ ")-:",
80
+ ")/\u00af",
81
+ "):",
82
+ "*",
83
+ "+",
84
+ "+1",
85
+ "+d",
86
+ ",",
87
+ ",50",
88
+ "-",
89
+ "-((",
90
+ "-))",
91
+ "--",
92
+ "-/",
93
+ "-0",
94
+ "-19",
95
+ "-3",
96
+ "-8",
97
+ "-D",
98
+ "-JAN'23",
99
+ "-O",
100
+ "-P",
101
+ "-SERIES",
102
+ "-Soft",
103
+ "-X",
104
+ "-XXX'dd",
105
+ "-XXXX",
106
+ "-Xxxx",
107
+ "-_-",
108
+ "-__-",
109
+ "-ade",
110
+ "-d",
111
+ "-jan'23",
112
+ "-o",
113
+ "-of",
114
+ "-p",
115
+ "-series",
116
+ "-soft",
117
+ "-x",
118
+ "-xxx",
119
+ "-xxx'dd",
120
+ "-xxxx",
121
+ "-|",
122
+ ".",
123
+ "..",
124
+ "...",
125
+ "....",
126
+ ".00",
127
+ ".10",
128
+ ".20",
129
+ ".29",
130
+ ".30",
131
+ ".5L",
132
+ ".5l",
133
+ ".75",
134
+ ".85",
135
+ ".90",
136
+ ".95",
137
+ ".98",
138
+ ".C.",
139
+ ".CLUB",
140
+ ".D.",
141
+ ".E.",
142
+ ".G.",
143
+ ".H.",
144
+ ".J.",
145
+ ".M.",
146
+ ".XXXX",
147
+ ".Y.",
148
+ "._.",
149
+ ".ca",
150
+ ".club",
151
+ ".dd",
152
+ ".e.",
153
+ ".g.",
154
+ ".m.",
155
+ ".s.",
156
+ ".uk",
157
+ ".xx",
158
+ ".xxxx",
159
+ "/",
160
+ "/11",
161
+ "/14",
162
+ "/22",
163
+ "/22110016",
164
+ "/2ml",
165
+ "/3",
166
+ "/72",
167
+ "/Jelly",
168
+ "/Salsa",
169
+ "/TIV",
170
+ "/XXX",
171
+ "/Xxxxx",
172
+ "/d",
173
+ "/dd",
174
+ "/dddd",
175
+ "/dxx",
176
+ "/jelly",
177
+ "/mth",
178
+ "/or",
179
+ "/salsa",
180
+ "/tiv",
181
+ "/xxx",
182
+ "/xxxx",
183
+ "0",
184
+ "0.0",
185
+ "0.3",
186
+ "0.95",
187
+ "0.S",
188
+ "0.W",
189
+ "0.o",
190
+ "0.s",
191
+ "0.w",
192
+ "000",
193
+ "002271",
194
+ "00297",
195
+ "004",
196
+ "00456759",
197
+ "00768",
198
+ "00:00",
199
+ "00A",
200
+ "00a",
201
+ "01",
202
+ "01.03.2022",
203
+ "01.09.2023",
204
+ "01.11.2022",
205
+ "01/01/2022",
206
+ "01232255",
207
+ "014",
208
+ "015",
209
+ "016",
210
+ "01658",
211
+ "019",
212
+ "0195250918936",
213
+ "02",
214
+ "02.09.2022",
215
+ "020",
216
+ "021",
217
+ "022",
218
+ "023",
219
+ "026",
220
+ "028",
221
+ "03",
222
+ "03/05/2022",
223
+ "03/06/2022",
224
+ "032",
225
+ "0354|",
226
+ "04",
227
+ "040",
228
+ "043",
229
+ "04Fuel",
230
+ "04fuel",
231
+ "05",
232
+ "06",
233
+ "07",
234
+ "0752102509680",
235
+ "0752102509681",
236
+ "07:30",
237
+ "08",
238
+ "08/30/2021",
239
+ "0833",
240
+ "088",
241
+ "09",
242
+ "09/06/2022",
243
+ "09/29/2021",
244
+ "090",
245
+ "09C",
246
+ "09c",
247
+ "0ML",
248
+ "0_0",
249
+ "0_o",
250
+ "0ml",
251
+ "1",
252
+ "1.2",
253
+ "1.5L",
254
+ "1.5l",
255
+ "1/2",
256
+ "1/4",
257
+ "1/8",
258
+ "10",
259
+ "100",
260
+ "1000pcs",
261
+ "100ML",
262
+ "100PCS",
263
+ "100Plus",
264
+ "100ml",
265
+ "100pcs",
266
+ "100plus",
267
+ "1026",
268
+ "104.29",
269
+ "108",
270
+ "10a.m",
271
+ "10a.m.",
272
+ "10box",
273
+ "10ml",
274
+ "10p.m",
275
+ "10p.m.",
276
+ "10pcs",
277
+ "11",
278
+ "114",
279
+ "1173",
280
+ "118ml",
281
+ "11:59",
282
+ "11a.m",
283
+ "11a.m.",
284
+ "11p.m",
285
+ "11p.m.",
286
+ "12",
287
+ "1200",
288
+ "122",
289
+ "125",
290
+ "128",
291
+ "12920",
292
+ "1292115920",
293
+ "12:00",
294
+ "12:30",
295
+ "12C",
296
+ "12a.m",
297
+ "12a.m.",
298
+ "12c",
299
+ "12p.m",
300
+ "12p.m.",
301
+ "13",
302
+ "13/06/2022",
303
+ "133",
304
+ "14",
305
+ "15",
306
+ "15.00",
307
+ "150",
308
+ "150,000",
309
+ "1500",
310
+ "151",
311
+ "15268",
312
+ "1577",
313
+ "16",
314
+ "16.98",
315
+ "160",
316
+ "162",
317
+ "163265",
318
+ "16CH",
319
+ "16ch",
320
+ "17.05.2022",
321
+ "17.06.2022",
322
+ "173",
323
+ "176",
324
+ "1785941682",
325
+ "18",
326
+ "18.06.2022",
327
+ "18.07.2022",
328
+ "180",
329
+ "182",
330
+ "19",
331
+ "1911",
332
+ "1Z883V1R0497881324",
333
+ "1a.m",
334
+ "1a.m.",
335
+ "1p.m",
336
+ "1p.m.",
337
+ "1z883v1r0497881324",
338
+ "2",
339
+ "2.0",
340
+ "20",
341
+ "20.00",
342
+ "200",
343
+ "2000141399511",
344
+ "2000141451912",
345
+ "2000143537515",
346
+ "200A",
347
+ "200SQT",
348
+ "200a",
349
+ "200ml",
350
+ "200ml/",
351
+ "200sqt",
352
+ "2014",
353
+ "2019",
354
+ "202",
355
+ "2020",
356
+ "2020,iPad(1",
357
+ "2020,ipad(1",
358
+ "2021",
359
+ "20211011/0022",
360
+ "2022",
361
+ "2023",
362
+ "21",
363
+ "2100",
364
+ "21309C",
365
+ "21309c",
366
+ "22",
367
+ "225",
368
+ "22P0876",
369
+ "22p0876",
370
+ "23",
371
+ "23:59",
372
+ "23_PRODUCTION-41870",
373
+ "23_production-41870",
374
+ "23rd",
375
+ "24",
376
+ "24H",
377
+ "24h",
378
+ "25",
379
+ "250",
380
+ "250ML",
381
+ "250gsm",
382
+ "250ml",
383
+ "255",
384
+ "2556",
385
+ "259PF",
386
+ "259pf",
387
+ "26",
388
+ "261226289315",
389
+ "265",
390
+ "2656",
391
+ "268",
392
+ "27",
393
+ "271",
394
+ "275493977851",
395
+ "28",
396
+ "28.00",
397
+ "28/10/22",
398
+ "280",
399
+ "285",
400
+ "28th",
401
+ "29",
402
+ "297",
403
+ "297.00",
404
+ "29th",
405
+ "2K21",
406
+ "2MP",
407
+ "2PV",
408
+ "2XL",
409
+ "2XS",
410
+ "2Y",
411
+ "2a.m",
412
+ "2a.m.",
413
+ "2cg",
414
+ "2k21",
415
+ "2ml",
416
+ "2mp",
417
+ "2nd",
418
+ "2p.m",
419
+ "2p.m.",
420
+ "2pv",
421
+ "2xl",
422
+ "2xs",
423
+ "2y",
424
+ "3",
425
+ "3.00",
426
+ "3.090",
427
+ "3.5",
428
+ "3.90",
429
+ "3/10/22",
430
+ "3/4",
431
+ "30",
432
+ "300",
433
+ "303",
434
+ "30Caplets",
435
+ "30caplets",
436
+ "30ml",
437
+ "31",
438
+ "31.03.2022",
439
+ "31.10.2023",
440
+ "31/03/2022",
441
+ "31122",
442
+ "315",
443
+ "32",
444
+ "324",
445
+ "32sqft",
446
+ "33",
447
+ "33.75",
448
+ "333",
449
+ "338",
450
+ "34",
451
+ "34424",
452
+ "35",
453
+ "350",
454
+ "350gsm",
455
+ "356",
456
+ "35WM",
457
+ "35wm",
458
+ "36",
459
+ "366",
460
+ "37",
461
+ "370",
462
+ "377",
463
+ "38",
464
+ "389",
465
+ "391",
466
+ "3FA",
467
+ "3XA",
468
+ "3XL",
469
+ "3XS",
470
+ "3Y",
471
+ "3a.m",
472
+ "3a.m.",
473
+ "3d",
474
+ "3fa",
475
+ "3p.m",
476
+ "3p.m.",
477
+ "3rd",
478
+ "3xa",
479
+ "3xl",
480
+ "3xs",
481
+ "3y",
482
+ "4",
483
+ "40",
484
+ "400",
485
+ "40mm,50",
486
+ "41",
487
+ "412",
488
+ "4200.S",
489
+ "4200.s",
490
+ "4200095162",
491
+ "424",
492
+ "425ml",
493
+ "427021",
494
+ "430",
495
+ "45",
496
+ "460ml",
497
+ "462",
498
+ "48",
499
+ "4811",
500
+ "488",
501
+ "490",
502
+ "4JL",
503
+ "4MP",
504
+ "4PC",
505
+ "4XL",
506
+ "4XS",
507
+ "4Y",
508
+ "4a.m",
509
+ "4a.m.",
510
+ "4jl",
511
+ "4mp",
512
+ "4p.m",
513
+ "4p.m.",
514
+ "4pc",
515
+ "4x6",
516
+ "4x6(10",
517
+ "4xl",
518
+ "4xs",
519
+ "4y",
520
+ "5",
521
+ "5,000",
522
+ "5.3ton",
523
+ "50",
524
+ "50,000",
525
+ "500",
526
+ "500ml",
527
+ "50303",
528
+ "50418519",
529
+ "50Pcs",
530
+ "50W",
531
+ "50pcs",
532
+ "50w",
533
+ "511",
534
+ "5116750430",
535
+ "5122000043",
536
+ "515",
537
+ "519",
538
+ "51956",
539
+ "54366",
540
+ "544.00",
541
+ "54|",
542
+ "55",
543
+ "553",
544
+ "556",
545
+ "570201715672",
546
+ "577",
547
+ "589",
548
+ "594",
549
+ "598",
550
+ "5L4",
551
+ "5TS",
552
+ "5WM",
553
+ "5a.m",
554
+ "5a.m.",
555
+ "5l4",
556
+ "5ml",
557
+ "5p.m",
558
+ "5p.m.",
559
+ "5ts",
560
+ "5wm",
561
+ "6",
562
+ "6/8",
563
+ "60",
564
+ "600",
565
+ "600x900",
566
+ "602",
567
+ "604",
568
+ "60MPH",
569
+ "60mph",
570
+ "6109.10",
571
+ "6110.20",
572
+ "617",
573
+ "620",
574
+ "6206.30",
575
+ "6258KEW",
576
+ "6258kew",
577
+ "63000",
578
+ "63V00",
579
+ "63v00",
580
+ "656",
581
+ "658",
582
+ "65mm,144pcs",
583
+ "672",
584
+ "680",
585
+ "681",
586
+ "682",
587
+ "69",
588
+ "6908",
589
+ "6:30:03",
590
+ "6CH",
591
+ "6PK",
592
+ "6R9",
593
+ "6a.m",
594
+ "6a.m.",
595
+ "6ch",
596
+ "6mmBeads-19",
597
+ "6mmbeads-19",
598
+ "6p.m",
599
+ "6p.m.",
600
+ "6pcs",
601
+ "6pk",
602
+ "6r9",
603
+ "6x4",
604
+ "7",
605
+ "7.2",
606
+ "7/6",
607
+ "7/9/22",
608
+ "70",
609
+ "7056293740",
610
+ "7057638904",
611
+ "72",
612
+ "725",
613
+ "73742",
614
+ "740",
615
+ "742",
616
+ "744",
617
+ "746",
618
+ "750ml",
619
+ "754",
620
+ "759",
621
+ "76",
622
+ "768",
623
+ "775664454462",
624
+ "785",
625
+ "78w",
626
+ "7F",
627
+ "7a.m",
628
+ "7a.m.",
629
+ "7f",
630
+ "7p.m",
631
+ "7p.m.",
632
+ "8",
633
+ "8)",
634
+ "8-",
635
+ "8-)",
636
+ "8-D",
637
+ "8-d",
638
+ "8/17/22",
639
+ "811",
640
+ "81266250",
641
+ "815",
642
+ "8150831886579589",
643
+ "8150949152079589",
644
+ "8156736629569589",
645
+ "8157593700437754",
646
+ "8158150732417754",
647
+ "8158659092307754",
648
+ "829",
649
+ "83",
650
+ "833",
651
+ "837",
652
+ "83XA",
653
+ "83xa",
654
+ "848490",
655
+ "85",
656
+ "851",
657
+ "870",
658
+ "872835488",
659
+ "876",
660
+ "88500",
661
+ "88600",
662
+ "8A",
663
+ "8D",
664
+ "8MM",
665
+ "8a",
666
+ "8a.m",
667
+ "8a.m.",
668
+ "8d",
669
+ "8ml",
670
+ "8mm",
671
+ "8p.m",
672
+ "8p.m.",
673
+ "8th",
674
+ "9",
675
+ "9/17/22",
676
+ "90",
677
+ "900",
678
+ "902825TS",
679
+ "902825ts",
680
+ "904",
681
+ "908",
682
+ "90s",
683
+ "911",
684
+ "912",
685
+ "920",
686
+ "925",
687
+ "931",
688
+ "936",
689
+ "941",
690
+ "956",
691
+ "9746",
692
+ "9780857199553",
693
+ "9829",
694
+ "99",
695
+ "9:06",
696
+ "9PF",
697
+ "9a.m",
698
+ "9a.m.",
699
+ "9p.m",
700
+ "9p.m.",
701
+ "9pf",
702
+ "9th",
703
+ ":",
704
+ ":'(",
705
+ ":')",
706
+ ":'-(",
707
+ ":'-)",
708
+ ":(",
709
+ ":((",
710
+ ":(((",
711
+ ":()",
712
+ ":)",
713
+ ":))",
714
+ ":)))",
715
+ ":*",
716
+ ":-(",
717
+ ":-((",
718
+ ":-(((",
719
+ ":-)",
720
+ ":-))",
721
+ ":-)))",
722
+ ":-*",
723
+ ":-/",
724
+ ":-0",
725
+ ":-3",
726
+ ":->",
727
+ ":-D",
728
+ ":-O",
729
+ ":-P",
730
+ ":-X",
731
+ ":-]",
732
+ ":-d",
733
+ ":-o",
734
+ ":-p",
735
+ ":-x",
736
+ ":-|",
737
+ ":-}",
738
+ ":/",
739
+ ":0",
740
+ ":00",
741
+ ":03",
742
+ ":06",
743
+ ":1",
744
+ ":3",
745
+ ":30",
746
+ ":59",
747
+ ":>",
748
+ ":D",
749
+ ":O",
750
+ ":P",
751
+ ":X",
752
+ ":]",
753
+ ":d",
754
+ ":o",
755
+ ":o)",
756
+ ":p",
757
+ ":x",
758
+ ":x)",
759
+ ":|",
760
+ ":}",
761
+ ":\u2019(",
762
+ ":\u2019)",
763
+ ":\u2019-(",
764
+ ":\u2019-)",
765
+ ";",
766
+ ";)",
767
+ ";-)",
768
+ ";-D",
769
+ ";-X",
770
+ ";-d",
771
+ ";D",
772
+ ";X",
773
+ ";_;",
774
+ ";d",
775
+ "<",
776
+ "<.<",
777
+ "</3",
778
+ "</d",
779
+ "<3",
780
+ "<33",
781
+ "<333",
782
+ "<d",
783
+ "<dd",
784
+ "<ddd",
785
+ "<space>",
786
+ "<xxxx>",
787
+ "=",
788
+ "=(",
789
+ "=)",
790
+ "=/",
791
+ "=3",
792
+ "=D",
793
+ "=X",
794
+ "=[",
795
+ "=]",
796
+ "=d",
797
+ "=|",
798
+ ">",
799
+ ">.<",
800
+ ">.>",
801
+ ">:(",
802
+ ">:o",
803
+ ">:x",
804
+ "><(((*>",
805
+ "?",
806
+ "@",
807
+ "@35",
808
+ "@_@",
809
+ "@dd",
810
+ "A",
811
+ "A/",
812
+ "A3",
813
+ "A4",
814
+ "A7200",
815
+ "ABS",
816
+ "ABU",
817
+ "ABY",
818
+ "ACC",
819
+ "ACCESS",
820
+ "ACK",
821
+ "ACRYLIC",
822
+ "ACTIVIDAD",
823
+ "AD3754202",
824
+ "ADE",
825
+ "AFE",
826
+ "AFFILIATE",
827
+ "AFT",
828
+ "AGAR",
829
+ "AGE",
830
+ "AGM",
831
+ "AIC",
832
+ "AIR",
833
+ "AIRCON",
834
+ "AKY",
835
+ "ALIVE",
836
+ "ALL",
837
+ "ALM",
838
+ "AM",
839
+ "AMI",
840
+ "AMOUNT",
841
+ "AMPLS./BOX",
842
+ "AMS",
843
+ "AMT",
844
+ "AN",
845
+ "ANA",
846
+ "AND",
847
+ "ANN",
848
+ "ANNUAL",
849
+ "ANS",
850
+ "ANT",
851
+ "APC",
852
+ "APS",
853
+ "AQC",
854
+ "ARE",
855
+ "ARK",
856
+ "ARL",
857
+ "ASE",
858
+ "ASIN",
859
+ "ASK",
860
+ "ASPARAGUS",
861
+ "ASS",
862
+ "AST",
863
+ "ATA",
864
+ "ATE",
865
+ "ATH",
866
+ "ATO",
867
+ "ATR",
868
+ "ATT",
869
+ "AUTUMN",
870
+ "AV1000",
871
+ "AVR_Upon",
872
+ "AVY",
873
+ "AZY",
874
+ "Academy",
875
+ "Accessories",
876
+ "Accomodation",
877
+ "Accounting",
878
+ "Acids",
879
+ "Acrylic",
880
+ "Activate",
881
+ "Activities",
882
+ "AcuSense",
883
+ "Ad",
884
+ "Adapter",
885
+ "Addition",
886
+ "Additional",
887
+ "Address",
888
+ "Adhesive",
889
+ "Adidas",
890
+ "Adm",
891
+ "Adm.",
892
+ "Administrative",
893
+ "Ads",
894
+ "Adult",
895
+ "Advance",
896
+ "Advanced",
897
+ "Advertising",
898
+ "Aerospace",
899
+ "Agency",
900
+ "Agreement",
901
+ "Ai",
902
+ "AirPods",
903
+ "Airbrush",
904
+ "Airport",
905
+ "Airticket",
906
+ "Ak",
907
+ "Ak.",
908
+ "Ala",
909
+ "Ala.",
910
+ "Alabama",
911
+ "Alaska",
912
+ "All",
913
+ "Allowances",
914
+ "Almond",
915
+ "Alphonse",
916
+ "Amazon",
917
+ "Americano",
918
+ "Aminalize",
919
+ "Amount",
920
+ "Amp",
921
+ "Ancient",
922
+ "Android",
923
+ "Angel",
924
+ "Angels",
925
+ "Anglia",
926
+ "Animation",
927
+ "Anime",
928
+ "Annual",
929
+ "Antioxidants",
930
+ "Anvil",
931
+ "Application",
932
+ "Approved",
933
+ "Apps",
934
+ "Apr",
935
+ "Apr.",
936
+ "April",
937
+ "Arab",
938
+ "Arctic",
939
+ "Are",
940
+ "Aren",
941
+ "Argyle",
942
+ "Ariz",
943
+ "Ariz.",
944
+ "Arizona",
945
+ "Ark",
946
+ "Ark.",
947
+ "Arkansas",
948
+ "Aromatherapy",
949
+ "Art",
950
+ "As",
951
+ "Ash",
952
+ "Ashtray",
953
+ "Asian",
954
+ "Aspire",
955
+ "Assemble",
956
+ "Assorted",
957
+ "Atlantic",
958
+ "Attachements",
959
+ "Attack",
960
+ "Audience",
961
+ "Audio",
962
+ "Aug",
963
+ "Aug.",
964
+ "August",
965
+ "Australia",
966
+ "Australian",
967
+ "Automatic",
968
+ "Autonomous",
969
+ "Autumn",
970
+ "Aux",
971
+ "Ayam",
972
+ "B",
973
+ "B001EOMZ5E",
974
+ "B00BSNPSSC",
975
+ "B00SNM5US4",
976
+ "B01J34VI3",
977
+ "B07DT9TTL2",
978
+ "B07G4R2XW1",
979
+ "B07MR3N2PV",
980
+ "B07N89QFWJ",
981
+ "B07VD5KBMP",
982
+ "B0851FDL96",
983
+ "B08FDSJWPQ",
984
+ "B08JL2YCKJ",
985
+ "B08QSK84JL",
986
+ "B08VQSTLB4",
987
+ "B08ZPKJKF4",
988
+ "B0BFJHHHJT",
989
+ "B70",
990
+ "B9",
991
+ "BABY",
992
+ "BAG",
993
+ "BALM",
994
+ "BAMBOO",
995
+ "BARBEQUE",
996
+ "BARRATT",
997
+ "BATH",
998
+ "BATHMILK",
999
+ "BATTERY",
1000
+ "BCN(ES",
1001
+ "BEAN",
1002
+ "BEEF",
1003
+ "BEER",
1004
+ "BELUX",
1005
+ "BER",
1006
+ "BEREZHNIY",
1007
+ "BF",
1008
+ "BIOP",
1009
+ "BK",
1010
+ "BL",
1011
+ "BLACK",
1012
+ "BLE",
1013
+ "BLINDERS",
1014
+ "BLW",
1015
+ "BMP",
1016
+ "BNWTs",
1017
+ "BODY",
1018
+ "BOO",
1019
+ "BOOKKEEPING",
1020
+ "BOOST",
1021
+ "BOSE",
1022
+ "BOWL",
1023
+ "BOX",
1024
+ "BREAKFAST",
1025
+ "BRISK",
1026
+ "BROWN",
1027
+ "BRYAN",
1028
+ "BR\u00dbL\u00c9E",
1029
+ "BULL",
1030
+ "BURRATA",
1031
+ "Baby",
1032
+ "Back",
1033
+ "Bag",
1034
+ "Bags",
1035
+ "Baking",
1036
+ "Balanced",
1037
+ "Balestier",
1038
+ "Bali",
1039
+ "Banana",
1040
+ "BandSpeed",
1041
+ "Bank",
1042
+ "Banks",
1043
+ "Barbour",
1044
+ "Barcode",
1045
+ "Barking",
1046
+ "Base",
1047
+ "Baseball",
1048
+ "Basic",
1049
+ "Basics",
1050
+ "Basket",
1051
+ "Bay",
1052
+ "Baylis",
1053
+ "Bb",
1054
+ "Beads",
1055
+ "Bean",
1056
+ "Bear",
1057
+ "Bed",
1058
+ "Bedok",
1059
+ "Beer",
1060
+ "Beetox",
1061
+ "Beetroot",
1062
+ "Begendi",
1063
+ "Behaviourism",
1064
+ "Behaviourism/",
1065
+ "Beige",
1066
+ "Being",
1067
+ "Believe",
1068
+ "Bellies",
1069
+ "Benedict",
1070
+ "Bento",
1071
+ "Berry",
1072
+ "Bestchem",
1073
+ "Betty",
1074
+ "Between",
1075
+ "Bicarb",
1076
+ "Big",
1077
+ "Billed",
1078
+ "Billing",
1079
+ "Bin",
1080
+ "Bio",
1081
+ "Biscoff",
1082
+ "Biscuit",
1083
+ "Blac",
1084
+ "Black",
1085
+ "Blank",
1086
+ "Blck",
1087
+ "Blend",
1088
+ "Blue",
1089
+ "Bluefin",
1090
+ "Blush",
1091
+ "Board",
1092
+ "Body",
1093
+ "Bold",
1094
+ "Book",
1095
+ "Bookings",
1096
+ "Boop",
1097
+ "Booster",
1098
+ "Boss",
1099
+ "Box",
1100
+ "Boxof4",
1101
+ "Bracelets",
1102
+ "Braco",
1103
+ "Brake",
1104
+ "Brand",
1105
+ "Brand_Exact",
1106
+ "Bread",
1107
+ "Breather",
1108
+ "Breed",
1109
+ "Bridge",
1110
+ "Brisard",
1111
+ "Broken",
1112
+ "Bros",
1113
+ "Bros.",
1114
+ "Brown",
1115
+ "Brush",
1116
+ "Budget",
1117
+ "Bulk",
1118
+ "Bulldog",
1119
+ "Bundle",
1120
+ "Burnt",
1121
+ "Business",
1122
+ "Butterflies",
1123
+ "Butterfly",
1124
+ "Buy",
1125
+ "By",
1126
+ "C",
1127
+ "C'm",
1128
+ "C++",
1129
+ "C-5",
1130
+ "C.",
1131
+ "C01",
1132
+ "CALIFORNIA",
1133
+ "CAMERON",
1134
+ "CANA",
1135
+ "CANDY",
1136
+ "CC99725",
1137
+ "CCMEDIA",
1138
+ "CED",
1139
+ "CES",
1140
+ "CHARGE",
1141
+ "CHARGER",
1142
+ "CHERRIES",
1143
+ "CHERRY",
1144
+ "CHICKPEAS",
1145
+ "CHILD",
1146
+ "CHILLED",
1147
+ "CHOP",
1148
+ "CHRISTMAS",
1149
+ "CIENCIAS",
1150
+ "CKJ",
1151
+ "CLEAR",
1152
+ "CLICK",
1153
+ "CMS",
1154
+ "CO07004",
1155
+ "COCKLES",
1156
+ "CODE",
1157
+ "COLLAR",
1158
+ "COLLECT",
1159
+ "COLLECTION",
1160
+ "COLOR",
1161
+ "COLORS",
1162
+ "COM",
1163
+ "COMFORTRIDE",
1164
+ "COMMISSIONS",
1165
+ "CON",
1166
+ "CONCESSION",
1167
+ "CONSULTANT",
1168
+ "COOKS",
1169
+ "COR",
1170
+ "CORN",
1171
+ "COST",
1172
+ "COTHINKERS.CLUB",
1173
+ "COTTON",
1174
+ "COVER",
1175
+ "CP",
1176
+ "CPF",
1177
+ "CRAZY",
1178
+ "CRISP",
1179
+ "CRV",
1180
+ "CR\u00c8ME",
1181
+ "CT",
1182
+ "CT71",
1183
+ "CTN",
1184
+ "CTR",
1185
+ "CTS2",
1186
+ "Ca",
1187
+ "Cabernet",
1188
+ "Cable",
1189
+ "Cactacea",
1190
+ "Cactaceae",
1191
+ "Cacti",
1192
+ "Cafe",
1193
+ "Caffeine",
1194
+ "Cake",
1195
+ "Calif",
1196
+ "Calif.",
1197
+ "California",
1198
+ "Call",
1199
+ "Calls",
1200
+ "Calm",
1201
+ "Camden",
1202
+ "Camera",
1203
+ "Can",
1204
+ "Canal",
1205
+ "Candle",
1206
+ "Canister",
1207
+ "Canvas",
1208
+ "Caplets-",
1209
+ "Cappuccino",
1210
+ "Capsule",
1211
+ "Car",
1212
+ "Carbohydrates",
1213
+ "Card",
1214
+ "Cardigan",
1215
+ "Cards",
1216
+ "Carried",
1217
+ "Carrots",
1218
+ "Case",
1219
+ "Cashew",
1220
+ "Cat",
1221
+ "Cause",
1222
+ "Celestite",
1223
+ "Ceramic",
1224
+ "Cereal",
1225
+ "Certificate",
1226
+ "Changes",
1227
+ "Chanting",
1228
+ "Chaps",
1229
+ "Charcoal",
1230
+ "Charge",
1231
+ "Charges",
1232
+ "Charms",
1233
+ "Chart",
1234
+ "Check",
1235
+ "Chews",
1236
+ "Chia",
1237
+ "Chiat",
1238
+ "Chicken",
1239
+ "Chien",
1240
+ "Child",
1241
+ "Children",
1242
+ "Chilli",
1243
+ "Ching",
1244
+ "Chkn",
1245
+ "Chocolate",
1246
+ "Choice",
1247
+ "Chope",
1248
+ "Christmas",
1249
+ "Cif",
1250
+ "Cigar",
1251
+ "Cinnamon",
1252
+ "Citron",
1253
+ "Citrus",
1254
+ "Claim",
1255
+ "Classic",
1256
+ "Clay",
1257
+ "Clean",
1258
+ "Cleaner",
1259
+ "Cleanse",
1260
+ "Clear",
1261
+ "Click",
1262
+ "Clickfunnels",
1263
+ "Clindamycin",
1264
+ "Closet",
1265
+ "Cloth",
1266
+ "Clothes",
1267
+ "Clothing",
1268
+ "Cloud",
1269
+ "Cl\u00e9ment",
1270
+ "Co",
1271
+ "Co.",
1272
+ "Cocoa",
1273
+ "Code",
1274
+ "Coffee",
1275
+ "Coffin",
1276
+ "Collar",
1277
+ "Collars",
1278
+ "Collection",
1279
+ "Colo",
1280
+ "Colo.",
1281
+ "Color",
1282
+ "Colorado",
1283
+ "Colors",
1284
+ "Colour",
1285
+ "Come",
1286
+ "Comfy",
1287
+ "Commission",
1288
+ "Commonly",
1289
+ "Compact",
1290
+ "Company",
1291
+ "Compatible",
1292
+ "Compost",
1293
+ "Compre",
1294
+ "Concealer",
1295
+ "Concept",
1296
+ "Conditioner",
1297
+ "Confit",
1298
+ "Conn",
1299
+ "Conn.",
1300
+ "Connect",
1301
+ "Connecter",
1302
+ "Connecticut",
1303
+ "Connector",
1304
+ "Consultancy",
1305
+ "Consulting",
1306
+ "Contacts",
1307
+ "ContainsVitamins",
1308
+ "Contract",
1309
+ "Contracted",
1310
+ "Control",
1311
+ "Controller",
1312
+ "Conversion",
1313
+ "Convertkit",
1314
+ "Coordinator",
1315
+ "Copiapoa",
1316
+ "Cor",
1317
+ "Cord",
1318
+ "Corgi",
1319
+ "Corn",
1320
+ "Corp",
1321
+ "Corp.",
1322
+ "Corporate",
1323
+ "Correspondence",
1324
+ "Cos",
1325
+ "Cost",
1326
+ "Cotton",
1327
+ "Could",
1328
+ "Count",
1329
+ "Couple",
1330
+ "Coupling",
1331
+ "Course",
1332
+ "Cowgirl",
1333
+ "Coz",
1334
+ "Crabs",
1335
+ "Cream",
1336
+ "Creative",
1337
+ "Creator",
1338
+ "Credit",
1339
+ "Crew",
1340
+ "Crewneck",
1341
+ "Crisp",
1342
+ "Crop",
1343
+ "Cross",
1344
+ "Crowd",
1345
+ "Crystal",
1346
+ "Cuff",
1347
+ "Cult",
1348
+ "Cup",
1349
+ "Curious",
1350
+ "Current",
1351
+ "Cushioned",
1352
+ "Cust",
1353
+ "Custom",
1354
+ "Customised",
1355
+ "Customize",
1356
+ "Customized",
1357
+ "Cute",
1358
+ "Cuz",
1359
+ "Cyber",
1360
+ "Cybersecurity",
1361
+ "C\u2019m",
1362
+ "D",
1363
+ "D.",
1364
+ "D.C.",
1365
+ "D06",
1366
+ "D6",
1367
+ "DABS",
1368
+ "DAD",
1369
+ "DARE",
1370
+ "DARK",
1371
+ "DE",
1372
+ "DEC",
1373
+ "DECEMBER",
1374
+ "DECKER",
1375
+ "DED",
1376
+ "DEEP",
1377
+ "DEL",
1378
+ "DELIVERY",
1379
+ "DEN",
1380
+ "DEPORTE",
1381
+ "DER",
1382
+ "DESIGN",
1383
+ "DESSERT",
1384
+ "DEW",
1385
+ "DFO",
1386
+ "DGE",
1387
+ "DIA",
1388
+ "DIAMOND",
1389
+ "DICE",
1390
+ "DIESEL",
1391
+ "DINO",
1392
+ "DIP",
1393
+ "DIY",
1394
+ "DLE",
1395
+ "DN15",
1396
+ "DNA",
1397
+ "DOUBLE",
1398
+ "DRAFT",
1399
+ "DRO",
1400
+ "DRY",
1401
+ "DRY-",
1402
+ "DS620",
1403
+ "DTY",
1404
+ "DVD",
1405
+ "DVR",
1406
+ "DWF",
1407
+ "Daily",
1408
+ "Dancer",
1409
+ "Dare",
1410
+ "Dark",
1411
+ "Dashi",
1412
+ "Date",
1413
+ "Day",
1414
+ "De",
1415
+ "De'Longhi",
1416
+ "DeLonghi",
1417
+ "Dec",
1418
+ "Dec.",
1419
+ "December",
1420
+ "Deck",
1421
+ "Decks",
1422
+ "Decoration",
1423
+ "Decoupes",
1424
+ "Del",
1425
+ "Del.",
1426
+ "Delaware",
1427
+ "Delivery",
1428
+ "Deluxe",
1429
+ "Denim",
1430
+ "Deposit",
1431
+ "DesBio",
1432
+ "Design",
1433
+ "Designs",
1434
+ "Destroyer",
1435
+ "Detox",
1436
+ "Developer",
1437
+ "Development",
1438
+ "Devor\u00e9",
1439
+ "Diamond",
1440
+ "Did",
1441
+ "Diferent",
1442
+ "Digital",
1443
+ "Dinner",
1444
+ "Dip/",
1445
+ "Direct",
1446
+ "Disconnect",
1447
+ "Discount",
1448
+ "Discounted",
1449
+ "Disposal",
1450
+ "Distilled",
1451
+ "Diy",
1452
+ "Do",
1453
+ "Document",
1454
+ "Does",
1455
+ "Dog",
1456
+ "Dogs",
1457
+ "Doin",
1458
+ "Doin'",
1459
+ "Doing",
1460
+ "Doin\u2019",
1461
+ "Dolce",
1462
+ "Domain",
1463
+ "Double",
1464
+ "Doughnut",
1465
+ "Dr",
1466
+ "Dr.",
1467
+ "Dragonfly",
1468
+ "Draught",
1469
+ "Dress",
1470
+ "Drifit",
1471
+ "Drilling",
1472
+ "Drim",
1473
+ "Drink",
1474
+ "Driver",
1475
+ "Dro",
1476
+ "Drone",
1477
+ "Dual",
1478
+ "Dublin",
1479
+ "Durable",
1480
+ "Dusty",
1481
+ "Dye",
1482
+ "E",
1483
+ "E-",
1484
+ "E.G.",
1485
+ "E.g",
1486
+ "E.g.",
1487
+ "E3FA",
1488
+ "EAL",
1489
+ "EAN",
1490
+ "EAR",
1491
+ "EAS",
1492
+ "EATIN",
1493
+ "ECO",
1494
+ "ECT",
1495
+ "EDG260.W",
1496
+ "EDGE",
1497
+ "EEF",
1498
+ "EEN",
1499
+ "EEP",
1500
+ "EER",
1501
+ "EET",
1502
+ "EGG",
1503
+ "ELF",
1504
+ "EMS",
1505
+ "EMT",
1506
+ "END",
1507
+ "ENG",
1508
+ "ENS",
1509
+ "ENT",
1510
+ "ENTER",
1511
+ "ERCSPI00152133",
1512
+ "ERCSTQ00024744",
1513
+ "ERN",
1514
+ "ERROR",
1515
+ "ERS",
1516
+ "ERT",
1517
+ "ERY",
1518
+ "ESAM",
1519
+ "ESOP",
1520
+ "ESS",
1521
+ "EST",
1522
+ "ETS",
1523
+ "ETY",
1524
+ "EU",
1525
+ "EX",
1526
+ "EXTINGUISHER",
1527
+ "EYE",
1528
+ "Each",
1529
+ "Early",
1530
+ "Earphone",
1531
+ "Earring",
1532
+ "Earth",
1533
+ "Easy",
1534
+ "Edition",
1535
+ "Electricity",
1536
+ "Elementary",
1537
+ "Elevate",
1538
+ "Elgnce",
1539
+ "Elite",
1540
+ "Elites",
1541
+ "Ellins",
1542
+ "Elmo",
1543
+ "Email",
1544
+ "Embroidered",
1545
+ "Emirates",
1546
+ "Emotional",
1547
+ "Enchanted",
1548
+ "End",
1549
+ "Ends",
1550
+ "Energize",
1551
+ "Energy",
1552
+ "Engagement",
1553
+ "Engine",
1554
+ "Engrave",
1555
+ "Engraved",
1556
+ "Enterprise",
1557
+ "Enthusiasts",
1558
+ "Entrada",
1559
+ "Entry",
1560
+ "Envio",
1561
+ "Environmental",
1562
+ "Epoxy",
1563
+ "Espresso",
1564
+ "Essential",
1565
+ "Estate",
1566
+ "Estimated",
1567
+ "Ethernet",
1568
+ "Etiquettes",
1569
+ "Etsy",
1570
+ "Eucalyptus",
1571
+ "Every",
1572
+ "Everyday",
1573
+ "Exhaust",
1574
+ "Expense",
1575
+ "Extender/",
1576
+ "Extra",
1577
+ "Eye",
1578
+ "Eyelet",
1579
+ "F",
1580
+ "F.",
1581
+ "FARE",
1582
+ "FATIGUE",
1583
+ "FC",
1584
+ "FCE",
1585
+ "FEB",
1586
+ "FEE",
1587
+ "FERN",
1588
+ "FIG",
1589
+ "FIRE",
1590
+ "FISICA",
1591
+ "FLATR",
1592
+ "FOC",
1593
+ "FOOD",
1594
+ "FOR",
1595
+ "FREE",
1596
+ "FRIED",
1597
+ "FROM",
1598
+ "FROZEN",
1599
+ "FRUIT",
1600
+ "FRUITmollo",
1601
+ "FUND",
1602
+ "FWJ",
1603
+ "Fabric",
1604
+ "Face",
1605
+ "Fairy",
1606
+ "Family",
1607
+ "Fancy",
1608
+ "Fare",
1609
+ "Fatty",
1610
+ "Feb",
1611
+ "Feb.",
1612
+ "February",
1613
+ "Fee",
1614
+ "Fees",
1615
+ "Female",
1616
+ "Fi",
1617
+ "Fieldwork",
1618
+ "Figures",
1619
+ "Filling",
1620
+ "Final",
1621
+ "Finger",
1622
+ "Finley",
1623
+ "Fish",
1624
+ "Fit",
1625
+ "Fitri",
1626
+ "Fittings",
1627
+ "Fiverr",
1628
+ "Fla",
1629
+ "Fla.",
1630
+ "Fleece",
1631
+ "Flex",
1632
+ "Flexible",
1633
+ "Flight",
1634
+ "Floral",
1635
+ "Florida",
1636
+ "Floss",
1637
+ "Flowers",
1638
+ "Folded",
1639
+ "Fong",
1640
+ "Food",
1641
+ "Foods",
1642
+ "For",
1643
+ "Ford",
1644
+ "Forest",
1645
+ "Form",
1646
+ "Foundation",
1647
+ "Fragile",
1648
+ "Free",
1649
+ "Freedom",
1650
+ "Freelancer",
1651
+ "Freio",
1652
+ "Fresh",
1653
+ "From",
1654
+ "Front",
1655
+ "Frosted",
1656
+ "Fruit",
1657
+ "Fruits",
1658
+ "Fry",
1659
+ "Ft",
1660
+ "Fuck",
1661
+ "Fujiimint\u00e2\u201e\u00a2",
1662
+ "Fulfillment",
1663
+ "Fulfilment",
1664
+ "Full",
1665
+ "Fullgram",
1666
+ "G",
1667
+ "G10",
1668
+ "GAL",
1669
+ "GALBI",
1670
+ "GAR",
1671
+ "GARBAGE",
1672
+ "GARDEN",
1673
+ "GASKET",
1674
+ "GB",
1675
+ "GB70",
1676
+ "GEOMETRIC",
1677
+ "GER",
1678
+ "GHT",
1679
+ "GL",
1680
+ "GLASGOW",
1681
+ "GLASSINE",
1682
+ "GLE",
1683
+ "GLENAVON",
1684
+ "GM",
1685
+ "GOLD",
1686
+ "GOW",
1687
+ "GRADE",
1688
+ "GRANA",
1689
+ "GRAPES",
1690
+ "GRATED",
1691
+ "GRILLED",
1692
+ "GROWN",
1693
+ "GST",
1694
+ "GUE",
1695
+ "GUS",
1696
+ "Ga",
1697
+ "Ga.",
1698
+ "Gal",
1699
+ "Game",
1700
+ "Gaming",
1701
+ "Garden",
1702
+ "Gardens",
1703
+ "Garment",
1704
+ "Gas",
1705
+ "Gen",
1706
+ "Gen.",
1707
+ "Gen_Retail",
1708
+ "Georgia",
1709
+ "Geranium",
1710
+ "Giant",
1711
+ "Gideo",
1712
+ "Gifts",
1713
+ "Gigabit",
1714
+ "Gildan",
1715
+ "Ginger",
1716
+ "Glass",
1717
+ "Glayza",
1718
+ "Gloss",
1719
+ "Goes",
1720
+ "Gogh",
1721
+ "Goin",
1722
+ "Goin'",
1723
+ "Goin\u2019",
1724
+ "Gold",
1725
+ "Golds",
1726
+ "Gon",
1727
+ "Google",
1728
+ "Got",
1729
+ "Gov",
1730
+ "Gov.",
1731
+ "Grade",
1732
+ "Grand",
1733
+ "Granite",
1734
+ "Grapefruit",
1735
+ "Grass",
1736
+ "Gray",
1737
+ "Green",
1738
+ "Greg",
1739
+ "Gregory",
1740
+ "Grey",
1741
+ "Gross",
1742
+ "Guide",
1743
+ "Gusto",
1744
+ "Gym",
1745
+ "H",
1746
+ "H&B",
1747
+ "H.265",
1748
+ "H/",
1749
+ "H125",
1750
+ "HC01",
1751
+ "HDL",
1752
+ "HEL",
1753
+ "HEN",
1754
+ "HER",
1755
+ "HES",
1756
+ "HH",
1757
+ "HIGHLANDS",
1758
+ "HIP",
1759
+ "HIT",
1760
+ "HJT",
1761
+ "HL",
1762
+ "HLY",
1763
+ "HOME",
1764
+ "HONEY",
1765
+ "HOP",
1766
+ "HR",
1767
+ "HRRYRTL",
1768
+ "HS",
1769
+ "HT12C",
1770
+ "HTF2108088",
1771
+ "HUA",
1772
+ "Ha2cg",
1773
+ "Hacked",
1774
+ "Hacker",
1775
+ "Hacking",
1776
+ "Had",
1777
+ "Hair",
1778
+ "Half",
1779
+ "Hand",
1780
+ "Handbag",
1781
+ "Handle",
1782
+ "Handling",
1783
+ "Hands",
1784
+ "Hanon",
1785
+ "Harbour",
1786
+ "Harding",
1787
+ "Hardware",
1788
+ "Haribo",
1789
+ "Harry",
1790
+ "Harryand",
1791
+ "Has",
1792
+ "Hat",
1793
+ "Have",
1794
+ "Havin",
1795
+ "Havin'",
1796
+ "Havin\u2019",
1797
+ "Hd",
1798
+ "He",
1799
+ "He's",
1800
+ "Head",
1801
+ "Headphone",
1802
+ "Heads",
1803
+ "Headset",
1804
+ "Health",
1805
+ "Heart",
1806
+ "Heather",
1807
+ "Heights",
1808
+ "Helper",
1809
+ "He\u2019s",
1810
+ "High",
1811
+ "Highlighter",
1812
+ "Hikvision",
1813
+ "Hill",
1814
+ "Hinoki",
1815
+ "Hire",
1816
+ "Hokusai",
1817
+ "Honey",
1818
+ "Honeycomb",
1819
+ "Hooded",
1820
+ "Hoodie",
1821
+ "Hoodies",
1822
+ "Hose",
1823
+ "Hosting",
1824
+ "Hot",
1825
+ "Hotel",
1826
+ "Hour",
1827
+ "Hourly",
1828
+ "Household",
1829
+ "How",
1830
+ "How's",
1831
+ "How\u2019s",
1832
+ "Hs",
1833
+ "Hub",
1834
+ "Hugging",
1835
+ "Hugo",
1836
+ "Hybrid",
1837
+ "I",
1838
+ "I.E.",
1839
+ "I.e",
1840
+ "I.e.",
1841
+ "IAL",
1842
+ "IAS",
1843
+ "ICA",
1844
+ "ICANN",
1845
+ "ICE",
1846
+ "ICED",
1847
+ "ICK",
1848
+ "IDE",
1849
+ "IED",
1850
+ "IES",
1851
+ "IFE",
1852
+ "IGN",
1853
+ "II",
1854
+ "ILD",
1855
+ "ILK",
1856
+ "ILLUSTRATION",
1857
+ "IME",
1858
+ "INA",
1859
+ "INDIA",
1860
+ "INE",
1861
+ "ING",
1862
+ "INI",
1863
+ "INO",
1864
+ "INS",
1865
+ "INSTALL",
1866
+ "INT",
1867
+ "INTERMATT",
1868
+ "INTERNACIONAL",
1869
+ "INV",
1870
+ "IOD",
1871
+ "ION",
1872
+ "IOP",
1873
+ "IP",
1874
+ "IPT",
1875
+ "IR",
1876
+ "IR8A",
1877
+ "IRE",
1878
+ "IS",
1879
+ "ISC",
1880
+ "ISK",
1881
+ "ISP",
1882
+ "ISSN",
1883
+ "IST",
1884
+ "ITE",
1885
+ "ITEM",
1886
+ "ITH",
1887
+ "ITIL",
1888
+ "ITY",
1889
+ "IUM",
1890
+ "IV",
1891
+ "IVE",
1892
+ "IWI",
1893
+ "IZE",
1894
+ "Ia",
1895
+ "Ia.",
1896
+ "Iberia",
1897
+ "Id",
1898
+ "Id.",
1899
+ "Idaho",
1900
+ "Iframe",
1901
+ "Ill",
1902
+ "Ill.",
1903
+ "Illinois",
1904
+ "Immune",
1905
+ "Import",
1906
+ "In",
1907
+ "Inbound",
1908
+ "Inc",
1909
+ "Inc.",
1910
+ "Incense",
1911
+ "Incumbency",
1912
+ "Ind",
1913
+ "Ind.",
1914
+ "Indiana",
1915
+ "Indigo",
1916
+ "Infallible",
1917
+ "Infinissima",
1918
+ "Infusedwith",
1919
+ "Injection",
1920
+ "Ink",
1921
+ "Inspired",
1922
+ "Instagram",
1923
+ "Instinct",
1924
+ "Insurance",
1925
+ "Intelligent",
1926
+ "Intimacy",
1927
+ "Inventory_Singapore",
1928
+ "Invoice",
1929
+ "Iowa",
1930
+ "Ireland",
1931
+ "Iron",
1932
+ "Is",
1933
+ "Issuance",
1934
+ "It",
1935
+ "It's",
1936
+ "Item",
1937
+ "Item:-",
1938
+ "It\u2019s",
1939
+ "J",
1940
+ "JAM",
1941
+ "JANAURY",
1942
+ "JAPAN",
1943
+ "JELLS",
1944
+ "JEWELLERY",
1945
+ "JFK(US",
1946
+ "JIWINS",
1947
+ "JP",
1948
+ "JS",
1949
+ "JUMBO",
1950
+ "JW",
1951
+ "Jack",
1952
+ "Jacket",
1953
+ "Jackson",
1954
+ "Jam",
1955
+ "Jan",
1956
+ "Jan.",
1957
+ "January",
1958
+ "Japanese",
1959
+ "Jar",
1960
+ "Jeans",
1961
+ "Jer",
1962
+ "Jersey",
1963
+ "Jewelry",
1964
+ "Jheel",
1965
+ "Jn99",
1966
+ "Job",
1967
+ "Jobsite",
1968
+ "Joe",
1969
+ "Joo",
1970
+ "Joss",
1971
+ "Jr",
1972
+ "Jr.",
1973
+ "Jul",
1974
+ "Jul.",
1975
+ "July",
1976
+ "Jumper",
1977
+ "Jun",
1978
+ "Jun-2021",
1979
+ "Jun.",
1980
+ "June",
1981
+ "K",
1982
+ "K.",
1983
+ "K21",
1984
+ "KAIWARE",
1985
+ "KAL",
1986
+ "KANGEROO",
1987
+ "KARNA",
1988
+ "KASHER.LEGAL",
1989
+ "KATONG",
1990
+ "KB",
1991
+ "KENYA",
1992
+ "KER",
1993
+ "KERASTASE",
1994
+ "KES",
1995
+ "KEST",
1996
+ "KET",
1997
+ "KEW",
1998
+ "KEY",
1999
+ "KF4",
2000
+ "KG6R9",
2001
+ "KIN",
2002
+ "KIT",
2003
+ "KITCHEN",
2004
+ "KIWI",
2005
+ "KNIFE",
2006
+ "KNOB",
2007
+ "KOLKATA",
2008
+ "KT",
2009
+ "Kaki",
2010
+ "Kalari",
2011
+ "Kan",
2012
+ "Kan.",
2013
+ "Kans",
2014
+ "Kans.",
2015
+ "Kansas",
2016
+ "Katsu",
2017
+ "Kayuragi",
2018
+ "Kelinna",
2019
+ "Kentucky",
2020
+ "Keratin",
2021
+ "Keropok",
2022
+ "Kew",
2023
+ "Keyword",
2024
+ "Keywords",
2025
+ "Kids",
2026
+ "KidsColor",
2027
+ "Kiss",
2028
+ "Kit",
2029
+ "Knight",
2030
+ "Knit",
2031
+ "Knitted",
2032
+ "Kodak",
2033
+ "Kraken",
2034
+ "Kranji",
2035
+ "Kronenbourg",
2036
+ "Kult",
2037
+ "Ky",
2038
+ "Ky.",
2039
+ "L",
2040
+ "L'OREAL",
2041
+ "L'Oreal",
2042
+ "L15",
2043
+ "L96",
2044
+ "LA",
2045
+ "LAB",
2046
+ "LADYFINGER",
2047
+ "LAR",
2048
+ "LARGE",
2049
+ "LB4",
2050
+ "LBI",
2051
+ "LBK",
2052
+ "LED",
2053
+ "LEGEND",
2054
+ "LES",
2055
+ "LEX",
2056
+ "LEY",
2057
+ "LG485136815",
2058
+ "LIC",
2059
+ "LICENSE",
2060
+ "LIGHT",
2061
+ "LIGHTING",
2062
+ "LIS",
2063
+ "LIVING",
2064
+ "LLC",
2065
+ "LLS",
2066
+ "LON",
2067
+ "LOR",
2068
+ "LOTION",
2069
+ "LOTUS",
2070
+ "LOX",
2071
+ "LP",
2072
+ "LTD",
2073
+ "LTO",
2074
+ "LUB",
2075
+ "LUG",
2076
+ "LUS",
2077
+ "LUX",
2078
+ "La",
2079
+ "La.",
2080
+ "Label",
2081
+ "Labels",
2082
+ "Labradorite",
2083
+ "Lace",
2084
+ "Ladies",
2085
+ "Lamb",
2086
+ "Lancement",
2087
+ "Landline",
2088
+ "Landscape",
2089
+ "Large",
2090
+ "Laser",
2091
+ "Latte",
2092
+ "Launch",
2093
+ "Lauren",
2094
+ "Lavender",
2095
+ "Lead",
2096
+ "Leather",
2097
+ "Leave",
2098
+ "Leg",
2099
+ "Lemon",
2100
+ "Lenor",
2101
+ "Leo",
2102
+ "Let",
2103
+ "Let's",
2104
+ "Letter",
2105
+ "Let\u2019s",
2106
+ "Level",
2107
+ "Levi",
2108
+ "Liability",
2109
+ "License",
2110
+ "Lid",
2111
+ "Lids",
2112
+ "Life",
2113
+ "Light",
2114
+ "Lightning",
2115
+ "Lightweight",
2116
+ "Lilac",
2117
+ "Lime",
2118
+ "Limited",
2119
+ "Line",
2120
+ "Link",
2121
+ "Liposomal",
2122
+ "List",
2123
+ "Liters",
2124
+ "Little",
2125
+ "Localize",
2126
+ "Logo",
2127
+ "London",
2128
+ "Long",
2129
+ "Lookalike",
2130
+ "Loopback",
2131
+ "Lophophora",
2132
+ "Lot",
2133
+ "Lota",
2134
+ "Lotus",
2135
+ "Louisiana",
2136
+ "Lovin",
2137
+ "Lovin'",
2138
+ "Lovin\u2019",
2139
+ "Ltd",
2140
+ "Ltd.",
2141
+ "Lychee",
2142
+ "L\u00c9E",
2143
+ "M",
2144
+ "M3356",
2145
+ "MAL",
2146
+ "MALATEK",
2147
+ "MANAGEMEMT",
2148
+ "MAR",
2149
+ "MARKER",
2150
+ "MAS",
2151
+ "MASTERMIN",
2152
+ "MATCHES",
2153
+ "MAY",
2154
+ "MBO",
2155
+ "MEDICINA",
2156
+ "MEDIUM",
2157
+ "MEN",
2158
+ "METAL",
2159
+ "METER",
2160
+ "MFi",
2161
+ "MICKEY",
2162
+ "MIN",
2163
+ "MINI",
2164
+ "MISC",
2165
+ "MIX",
2166
+ "MIXED",
2167
+ "MIXING",
2168
+ "MON",
2169
+ "MONTHLY",
2170
+ "MPH",
2171
+ "MPM",
2172
+ "MRC-5",
2173
+ "MTU",
2174
+ "MYR",
2175
+ "Ma'am",
2176
+ "MacAskill",
2177
+ "Machine",
2178
+ "Macho",
2179
+ "Mad",
2180
+ "Madam",
2181
+ "Madness",
2182
+ "Magnetic",
2183
+ "Magnifica",
2184
+ "Mail",
2185
+ "Mailers",
2186
+ "Mailing",
2187
+ "Maintenance",
2188
+ "Make",
2189
+ "Makings",
2190
+ "Male",
2191
+ "Man",
2192
+ "Management",
2193
+ "Managment",
2194
+ "Mandarin",
2195
+ "Manic",
2196
+ "ManyChat",
2197
+ "Mar",
2198
+ "Mar.",
2199
+ "March",
2200
+ "Marigold",
2201
+ "Mark",
2202
+ "Marker",
2203
+ "Martyrs",
2204
+ "Marvis",
2205
+ "Mary",
2206
+ "Mass",
2207
+ "Mass.",
2208
+ "Massachusetts",
2209
+ "Master",
2210
+ "Matcha",
2211
+ "Materials",
2212
+ "Matisse",
2213
+ "Matters",
2214
+ "Max",
2215
+ "Max/14",
2216
+ "May",
2217
+ "May-2021",
2218
+ "Ma\u2019am",
2219
+ "Mbps",
2220
+ "Md",
2221
+ "Md.",
2222
+ "Me",
2223
+ "MeStyle",
2224
+ "Meadows",
2225
+ "Meal",
2226
+ "Meaning",
2227
+ "Measure",
2228
+ "Media",
2229
+ "Medicinals",
2230
+ "Medium",
2231
+ "Meeting",
2232
+ "Melenge",
2233
+ "Men",
2234
+ "Mens",
2235
+ "Messrs",
2236
+ "Messrs.",
2237
+ "Meta",
2238
+ "Metal",
2239
+ "Metalique",
2240
+ "Metered",
2241
+ "Method",
2242
+ "Methyl",
2243
+ "Metric",
2244
+ "Micarta",
2245
+ "Mich",
2246
+ "Mich.",
2247
+ "Michigan",
2248
+ "Mid",
2249
+ "Might",
2250
+ "Milestone",
2251
+ "Military",
2252
+ "Milkshake",
2253
+ "Mineral",
2254
+ "Minerals",
2255
+ "Minga",
2256
+ "Mini",
2257
+ "Minn",
2258
+ "Minn.",
2259
+ "Minnesota",
2260
+ "Mint",
2261
+ "Mirror",
2262
+ "Mirrorless",
2263
+ "Miso",
2264
+ "Miss",
2265
+ "Miss.",
2266
+ "Mississippi",
2267
+ "Missouri",
2268
+ "Mitsubishi",
2269
+ "Mixed",
2270
+ "Mo",
2271
+ "Mo.",
2272
+ "Model",
2273
+ "Modeling",
2274
+ "ModuSpec",
2275
+ "Module",
2276
+ "Moff",
2277
+ "Mold",
2278
+ "Monaghan",
2279
+ "Mont",
2280
+ "Mont.",
2281
+ "Month",
2282
+ "Monthly",
2283
+ "Moon",
2284
+ "Morandi",
2285
+ "More",
2286
+ "Moti",
2287
+ "Mould",
2288
+ "Mount",
2289
+ "Mounting",
2290
+ "Move",
2291
+ "Moving",
2292
+ "Mr",
2293
+ "Mr.",
2294
+ "Mrs",
2295
+ "Mrs.",
2296
+ "Ms",
2297
+ "Ms.",
2298
+ "Mt",
2299
+ "Mt.",
2300
+ "Mucha",
2301
+ "Multi",
2302
+ "Multicolor",
2303
+ "Multicolored",
2304
+ "Multicoloured",
2305
+ "Multivitamin",
2306
+ "Museum",
2307
+ "Mushroom",
2308
+ "Must",
2309
+ "Mustard",
2310
+ "My",
2311
+ "N",
2312
+ "N.C.",
2313
+ "N.D.",
2314
+ "N.H.",
2315
+ "N.J.",
2316
+ "N.M.",
2317
+ "N.Y.",
2318
+ "N15",
2319
+ "N20",
2320
+ "N62",
2321
+ "NAL",
2322
+ "NBA",
2323
+ "NCE",
2324
+ "NCL",
2325
+ "NDS",
2326
+ "NDY",
2327
+ "NEEDLE",
2328
+ "NER",
2329
+ "NEY",
2330
+ "NGE",
2331
+ "NGL",
2332
+ "NIA",
2333
+ "NIT",
2334
+ "NIY",
2335
+ "NOB",
2336
+ "NOBILIS",
2337
+ "NOCO",
2338
+ "NORMAL",
2339
+ "NOV'22",
2340
+ "NS2",
2341
+ "NSE",
2342
+ "NTX",
2343
+ "NUGGETS",
2344
+ "NUT",
2345
+ "NYA",
2346
+ "NYLON",
2347
+ "Name",
2348
+ "Name-Cheap.com",
2349
+ "Nasty",
2350
+ "National",
2351
+ "Natural",
2352
+ "Navaneeth",
2353
+ "Navy",
2354
+ "Neb",
2355
+ "Neb.",
2356
+ "Nebr",
2357
+ "Nebr.",
2358
+ "Nebraska",
2359
+ "Neck",
2360
+ "Necklace",
2361
+ "Neckline",
2362
+ "Need",
2363
+ "Negative",
2364
+ "Nescaf\u00e9",
2365
+ "Neti",
2366
+ "Neutradol",
2367
+ "Nev",
2368
+ "Nev.",
2369
+ "Nevada",
2370
+ "Never",
2371
+ "New",
2372
+ "New Hampshire",
2373
+ "New Jersey",
2374
+ "New Mexico",
2375
+ "New York",
2376
+ "Next",
2377
+ "Night",
2378
+ "Nighty",
2379
+ "Nike",
2380
+ "Nikon",
2381
+ "Ninja",
2382
+ "NitroPack",
2383
+ "No",
2384
+ "No.3",
2385
+ "NoConfiguration",
2386
+ "Non",
2387
+ "None",
2388
+ "Norman",
2389
+ "North Carolina",
2390
+ "North Dakota",
2391
+ "Nos",
2392
+ "Not",
2393
+ "Nothin",
2394
+ "Nothin'",
2395
+ "Nothin\u2019",
2396
+ "Nov",
2397
+ "Nov.",
2398
+ "November",
2399
+ "Number",
2400
+ "Nurhakim",
2401
+ "Nuthin",
2402
+ "Nuthin'",
2403
+ "Nuthin\u2019",
2404
+ "Nutmeg",
2405
+ "Nutritional",
2406
+ "Nylon",
2407
+ "O",
2408
+ "O'clock",
2409
+ "O.O",
2410
+ "O.o",
2411
+ "OAD",
2412
+ "OATCAKES",
2413
+ "OCO",
2414
+ "OCTOBER",
2415
+ "ODA",
2416
+ "ODE",
2417
+ "ODY",
2418
+ "OF",
2419
+ "OIL",
2420
+ "OKE",
2421
+ "OKS",
2422
+ "OLAPLEX",
2423
+ "OLD",
2424
+ "OLIVE",
2425
+ "OLK",
2426
+ "OLL",
2427
+ "OLV",
2428
+ "OME",
2429
+ "OND",
2430
+ "ONG",
2431
+ "ONS",
2432
+ "OOD",
2433
+ "OOM",
2434
+ "OOTDTY",
2435
+ "OPP",
2436
+ "ORANGE",
2437
+ "ORD001108",
2438
+ "ORIGINAL",
2439
+ "ORK",
2440
+ "ORN",
2441
+ "ORO",
2442
+ "ORS",
2443
+ "ORT",
2444
+ "OS",
2445
+ "OSE",
2446
+ "OST",
2447
+ "OUL",
2448
+ "OUR",
2449
+ "OUT",
2450
+ "OWL",
2451
+ "OWN",
2452
+ "O_O",
2453
+ "O_o",
2454
+ "Oct",
2455
+ "Oct.",
2456
+ "October",
2457
+ "Odour",
2458
+ "Of",
2459
+ "Off",
2460
+ "Office",
2461
+ "Oil",
2462
+ "Oils",
2463
+ "Okla",
2464
+ "Okla.",
2465
+ "Oklahoma",
2466
+ "Ol",
2467
+ "Ol'",
2468
+ "Oligo",
2469
+ "Olive",
2470
+ "Ol\u2019",
2471
+ "On",
2472
+ "One",
2473
+ "Only",
2474
+ "Onyx",
2475
+ "Oolong",
2476
+ "Opener",
2477
+ "Optimisation",
2478
+ "Optimization",
2479
+ "Option",
2480
+ "Oracle",
2481
+ "Orange",
2482
+ "Order",
2483
+ "Ore",
2484
+ "Ore.",
2485
+ "Oregon",
2486
+ "Organic",
2487
+ "Organization",
2488
+ "Organizer",
2489
+ "Origame",
2490
+ "Original",
2491
+ "Osmanthus",
2492
+ "Ought",
2493
+ "Out",
2494
+ "Over",
2495
+ "Oversized",
2496
+ "Overthinker",
2497
+ "Overtime",
2498
+ "Own",
2499
+ "O\u2019clock",
2500
+ "P",
2501
+ "P128",
2502
+ "P2",
2503
+ "P2G109530941",
2504
+ "PA",
2505
+ "PACKAGE",
2506
+ "PAN",
2507
+ "PAPER",
2508
+ "PASS",
2509
+ "PASSION",
2510
+ "PASTRAMI",
2511
+ "PAW",
2512
+ "PAYMENT",
2513
+ "PBN",
2514
+ "PC",
2515
+ "PC-",
2516
+ "PCP",
2517
+ "PCP4500",
2518
+ "PCS",
2519
+ "PD",
2520
+ "PE",
2521
+ "PEAKY",
2522
+ "PEARL",
2523
+ "PEPPA",
2524
+ "PEPPER",
2525
+ "PER",
2526
+ "PERFORMANCE",
2527
+ "PERIOD",
2528
+ "PERMANENT",
2529
+ "PES",
2530
+ "PFD",
2531
+ "PH",
2532
+ "PHOTOVOLTAIC",
2533
+ "PIM",
2534
+ "PK",
2535
+ "PKM",
2536
+ "PKT",
2537
+ "PLANT",
2538
+ "PLASTER",
2539
+ "PLATE",
2540
+ "PLATINUM",
2541
+ "PLE",
2542
+ "PLUG",
2543
+ "PLUS",
2544
+ "PLUSH",
2545
+ "PLY",
2546
+ "PM",
2547
+ "PNG",
2548
+ "POINT",
2549
+ "POKER",
2550
+ "PORK",
2551
+ "PORTABLE",
2552
+ "POSCA",
2553
+ "POWDER",
2554
+ "PP",
2555
+ "PPA",
2556
+ "PPE",
2557
+ "PPP",
2558
+ "PRATA",
2559
+ "PRE",
2560
+ "PREMIUM",
2561
+ "PRI",
2562
+ "PRICE",
2563
+ "PRIME",
2564
+ "PRIORITY",
2565
+ "PRO",
2566
+ "PROD",
2567
+ "PROFENDER",
2568
+ "PTE",
2569
+ "PURPLE",
2570
+ "PW37T1Z",
2571
+ "Pa",
2572
+ "Pa.",
2573
+ "Pacifier",
2574
+ "Pack",
2575
+ "Package",
2576
+ "Packaging",
2577
+ "Packswith",
2578
+ "Padded",
2579
+ "PaediaSure",
2580
+ "Pairs",
2581
+ "Pal",
2582
+ "Panic",
2583
+ "Papel",
2584
+ "Paper",
2585
+ "Papers",
2586
+ "Papiers",
2587
+ "Parcel",
2588
+ "Paris",
2589
+ "Park",
2590
+ "Parking",
2591
+ "Part",
2592
+ "Particulars",
2593
+ "Parts",
2594
+ "Pass",
2595
+ "Passenger",
2596
+ "Passion",
2597
+ "Passionflower",
2598
+ "Passthrough",
2599
+ "Pastel",
2600
+ "Paterson",
2601
+ "PayPal",
2602
+ "Payment",
2603
+ "Payments",
2604
+ "Payroll",
2605
+ "Pcs",
2606
+ "Pen",
2607
+ "Penfolds",
2608
+ "Pennsylvania",
2609
+ "Pens",
2610
+ "Pentester",
2611
+ "Penyet",
2612
+ "Peppa",
2613
+ "Pepparkakor",
2614
+ "Perfector",
2615
+ "Performance",
2616
+ "Perfume",
2617
+ "Period",
2618
+ "Perro",
2619
+ "Personal",
2620
+ "Personalised",
2621
+ "Personalized",
2622
+ "Pet",
2623
+ "Pe\u00e7as",
2624
+ "Ph",
2625
+ "Ph.D.",
2626
+ "Pharmaton",
2627
+ "Phase",
2628
+ "Photo",
2629
+ "Picasso",
2630
+ "Piece",
2631
+ "Pig",
2632
+ "Piloting",
2633
+ "Pink",
2634
+ "Pint",
2635
+ "Pipe",
2636
+ "Pipettes",
2637
+ "Pita",
2638
+ "Pitbull",
2639
+ "Place",
2640
+ "Placement",
2641
+ "Placenta",
2642
+ "Plaid",
2643
+ "Plan",
2644
+ "Planet",
2645
+ "Plastic",
2646
+ "Plate",
2647
+ "Platform",
2648
+ "Platforms",
2649
+ "Platinum",
2650
+ "Playhouse",
2651
+ "Playstore",
2652
+ "Plus",
2653
+ "Plus+",
2654
+ "Plus/13/12/11",
2655
+ "Pod",
2656
+ "Point",
2657
+ "Polo",
2658
+ "Poly",
2659
+ "Pool",
2660
+ "Portable",
2661
+ "Ports",
2662
+ "Post",
2663
+ "Postage",
2664
+ "Postal",
2665
+ "Posting",
2666
+ "Potter",
2667
+ "Power",
2668
+ "Powerline",
2669
+ "Pr",
2670
+ "Prawn",
2671
+ "Pre",
2672
+ "Premium",
2673
+ "Premix",
2674
+ "Preparation",
2675
+ "Pret",
2676
+ "Price",
2677
+ "Print",
2678
+ "Printer",
2679
+ "Printing",
2680
+ "Pro",
2681
+ "Pro/14",
2682
+ "Process",
2683
+ "Processing",
2684
+ "Product",
2685
+ "Prof",
2686
+ "Prof.",
2687
+ "Professional",
2688
+ "Profiler",
2689
+ "Progress",
2690
+ "Project",
2691
+ "Promoted",
2692
+ "Proof",
2693
+ "Prorated",
2694
+ "Protect",
2695
+ "Protein",
2696
+ "Prototyping",
2697
+ "Prussion",
2698
+ "Psi",
2699
+ "Publisher",
2700
+ "Puff",
2701
+ "Pullover",
2702
+ "Pump",
2703
+ "Pure",
2704
+ "PureEssential",
2705
+ "Purple",
2706
+ "Pygmy",
2707
+ "Q",
2708
+ "QD06",
2709
+ "QUE",
2710
+ "QUITcOMFORT",
2711
+ "Quality",
2712
+ "Quick",
2713
+ "R",
2714
+ "R8A",
2715
+ "RAPS",
2716
+ "RASPBERRY",
2717
+ "RAVENS",
2718
+ "RAW",
2719
+ "RAY",
2720
+ "RECEIPT",
2721
+ "RED",
2722
+ "REE",
2723
+ "REGULAR",
2724
+ "REIBEYE",
2725
+ "RENTAL",
2726
+ "REPAIR",
2727
+ "REVISTA",
2728
+ "RGE",
2729
+ "RIC",
2730
+ "RIP",
2731
+ "RNA",
2732
+ "ROAD",
2733
+ "ROBLOX",
2734
+ "ROD",
2735
+ "ROLL",
2736
+ "ROM",
2737
+ "RON",
2738
+ "ROO",
2739
+ "ROOM",
2740
+ "ROR",
2741
+ "ROSE",
2742
+ "ROUGH",
2743
+ "RRY",
2744
+ "RS",
2745
+ "RTE",
2746
+ "RTL",
2747
+ "RX10",
2748
+ "RXZE2M114",
2749
+ "RY-",
2750
+ "Rabeko",
2751
+ "Raglan",
2752
+ "Ralph",
2753
+ "Randy",
2754
+ "Ratchet",
2755
+ "Rate",
2756
+ "Reality",
2757
+ "Rebate",
2758
+ "Rebecca",
2759
+ "Receipt",
2760
+ "Receive",
2761
+ "Recharge",
2762
+ "Recipient",
2763
+ "Recombinant",
2764
+ "Recurring",
2765
+ "Red",
2766
+ "RedDoorz",
2767
+ "RedMart",
2768
+ "Redesign",
2769
+ "Reebok",
2770
+ "Ref",
2771
+ "Registration",
2772
+ "Regular",
2773
+ "Regulator",
2774
+ "Reiki",
2775
+ "Release",
2776
+ "Remaining",
2777
+ "Remarketing",
2778
+ "Remington",
2779
+ "Renaissance",
2780
+ "Renewal",
2781
+ "Rental",
2782
+ "Rep",
2783
+ "Rep.",
2784
+ "Repairing",
2785
+ "Report",
2786
+ "Request",
2787
+ "Required",
2788
+ "Resale",
2789
+ "Research",
2790
+ "Reservation",
2791
+ "Reservoir",
2792
+ "Resistain",
2793
+ "Resource",
2794
+ "Restaurant",
2795
+ "Retainer",
2796
+ "Retro",
2797
+ "Rev",
2798
+ "Rev.",
2799
+ "Review",
2800
+ "Reviewing",
2801
+ "Rhinestone",
2802
+ "Rib",
2803
+ "Rice",
2804
+ "Ride",
2805
+ "Rights",
2806
+ "Ring",
2807
+ "Rings",
2808
+ "Rinse",
2809
+ "Road",
2810
+ "Rock",
2811
+ "Rohan",
2812
+ "Roll",
2813
+ "Rolled",
2814
+ "Rollerball",
2815
+ "Ron",
2816
+ "Room",
2817
+ "Rose",
2818
+ "Round",
2819
+ "Rounding",
2820
+ "Roundneck",
2821
+ "Routine",
2822
+ "Royal",
2823
+ "Rubber",
2824
+ "Rue",
2825
+ "Ruler",
2826
+ "Rust",
2827
+ "S",
2828
+ "S$",
2829
+ "S.C.",
2830
+ "S2",
2831
+ "S8598",
2832
+ "S925",
2833
+ "SAFE",
2834
+ "SAFETY",
2835
+ "SALMON",
2836
+ "SAM",
2837
+ "SAPPORO",
2838
+ "SATA",
2839
+ "SAUCE",
2840
+ "SAUSAGE",
2841
+ "SBF",
2842
+ "SBP",
2843
+ "SCA",
2844
+ "SCOUT",
2845
+ "SDA",
2846
+ "SE",
2847
+ "SEEDLESS",
2848
+ "SEL",
2849
+ "SELF",
2850
+ "SENSOR",
2851
+ "SEO",
2852
+ "SEP",
2853
+ "SERVICE",
2854
+ "SERVICES",
2855
+ "SET",
2856
+ "SG",
2857
+ "SGD",
2858
+ "SHA",
2859
+ "SHABU",
2860
+ "SHORT",
2861
+ "SILVER",
2862
+ "SIM",
2863
+ "SIN",
2864
+ "SIZE",
2865
+ "SKIN",
2866
+ "SKP",
2867
+ "SKU",
2868
+ "SL",
2869
+ "SM-1015",
2870
+ "SMALL",
2871
+ "SMASHERS",
2872
+ "SMOKING",
2873
+ "SNGL",
2874
+ "SODA",
2875
+ "SOP",
2876
+ "SOR",
2877
+ "SORTSO",
2878
+ "SOUR",
2879
+ "SOW",
2880
+ "SPA",
2881
+ "SPARK",
2882
+ "SPEAR",
2883
+ "SPORTSMASK",
2884
+ "SQT",
2885
+ "SR",
2886
+ "SS",
2887
+ "SSC",
2888
+ "SSN",
2889
+ "STA",
2890
+ "STAR",
2891
+ "STRAW",
2892
+ "STRAWBERRIES",
2893
+ "STUDDED",
2894
+ "STYLE",
2895
+ "SUBSCTRIPTION",
2896
+ "SUGAR",
2897
+ "SUM",
2898
+ "SUNGOLD",
2899
+ "SUP",
2900
+ "SUPPLY",
2901
+ "SWEET",
2902
+ "SWSHN11898412",
2903
+ "SWSHN11914182",
2904
+ "SWSHN11924931",
2905
+ "SYSTEMS",
2906
+ "SZ",
2907
+ "Sage",
2908
+ "Sailor",
2909
+ "Salad",
2910
+ "Salary",
2911
+ "Sales",
2912
+ "Salmon",
2913
+ "Salsa/",
2914
+ "Salt",
2915
+ "Samwoh",
2916
+ "Sand",
2917
+ "Sangano",
2918
+ "Santos",
2919
+ "Sapphire",
2920
+ "Sasha",
2921
+ "Sashimi",
2922
+ "Sauce",
2923
+ "Savage",
2924
+ "Save95",
2925
+ "Scent",
2926
+ "Scentsual",
2927
+ "Scoop",
2928
+ "Score",
2929
+ "Scramble",
2930
+ "Screwdriving",
2931
+ "Scrunchmiez",
2932
+ "Sea",
2933
+ "Seafood",
2934
+ "Seal",
2935
+ "Season",
2936
+ "Seat",
2937
+ "Secateurs-",
2938
+ "Seconds",
2939
+ "Secretary",
2940
+ "See",
2941
+ "Seletar",
2942
+ "Self",
2943
+ "Seller",
2944
+ "Semi",
2945
+ "Sen",
2946
+ "Sen.",
2947
+ "Sep",
2948
+ "Sep.",
2949
+ "Sept",
2950
+ "Sept.",
2951
+ "September",
2952
+ "Series",
2953
+ "Serpent",
2954
+ "Service",
2955
+ "Services",
2956
+ "Sesame",
2957
+ "Session",
2958
+ "Sessions",
2959
+ "Set",
2960
+ "Setup",
2961
+ "Sewing",
2962
+ "Sha",
2963
+ "Shake",
2964
+ "Shampoo",
2965
+ "Sharerholder",
2966
+ "She",
2967
+ "She's",
2968
+ "Sheet",
2969
+ "She\u2019s",
2970
+ "Shiny",
2971
+ "Shipment",
2972
+ "Shipping",
2973
+ "Shiraz",
2974
+ "Shirt",
2975
+ "Shish",
2976
+ "Shopee",
2977
+ "Short",
2978
+ "Shorts",
2979
+ "Should",
2980
+ "Shrew",
2981
+ "Shutterstock",
2982
+ "Side",
2983
+ "Signature",
2984
+ "Signet",
2985
+ "Silicone",
2986
+ "Silkscreen",
2987
+ "Silver",
2988
+ "Simha",
2989
+ "Singapore",
2990
+ "Singaporeans",
2991
+ "Site",
2992
+ "Size",
2993
+ "Size:1",
2994
+ "Sizes",
2995
+ "Skateboarding",
2996
+ "Skater",
2997
+ "Skeleton",
2998
+ "Skull",
2999
+ "Sleeve",
3000
+ "Sleeved",
3001
+ "Small",
3002
+ "Smart",
3003
+ "Snowflakes",
3004
+ "Social",
3005
+ "Socket",
3006
+ "Socks",
3007
+ "Soda",
3008
+ "Soft",
3009
+ "Software",
3010
+ "Sohpia",
3011
+ "Soil",
3012
+ "Solaris",
3013
+ "Somethin",
3014
+ "Somethin'",
3015
+ "Somethin\u2019",
3016
+ "Sonos",
3017
+ "Sony",
3018
+ "South",
3019
+ "South Carolina",
3020
+ "Sova",
3021
+ "Space",
3022
+ "Speakout",
3023
+ "Spear",
3024
+ "Special",
3025
+ "Species",
3026
+ "Spicy",
3027
+ "Spinach",
3028
+ "Sponsored",
3029
+ "Sport",
3030
+ "Spread",
3031
+ "Spritz",
3032
+ "Square",
3033
+ "Squat",
3034
+ "St",
3035
+ "St.",
3036
+ "Stainless",
3037
+ "Stamp",
3038
+ "Stamping",
3039
+ "Standard",
3040
+ "Stapleton",
3041
+ "Star",
3042
+ "Stars",
3043
+ "Starter",
3044
+ "State",
3045
+ "States",
3046
+ "Steamed",
3047
+ "Steel",
3048
+ "Stereo",
3049
+ "Sticker",
3050
+ "Stickers",
3051
+ "Sticky",
3052
+ "Stomach",
3053
+ "Stone",
3054
+ "Storage",
3055
+ "Store",
3056
+ "Str",
3057
+ "Straighteners",
3058
+ "Street",
3059
+ "Streetwear",
3060
+ "Stress",
3061
+ "Strike",
3062
+ "Striped",
3063
+ "Strong",
3064
+ "Students",
3065
+ "Style",
3066
+ "Sublimation",
3067
+ "Subscription",
3068
+ "Subscriptions",
3069
+ "Summer",
3070
+ "Sunflower",
3071
+ "Sunflowers",
3072
+ "Suntory",
3073
+ "Super",
3074
+ "Superb",
3075
+ "Supp",
3076
+ "Supplement",
3077
+ "Supply",
3078
+ "Support",
3079
+ "Supreme",
3080
+ "Surcharges",
3081
+ "Sushi",
3082
+ "Sw",
3083
+ "Swags",
3084
+ "Swallow",
3085
+ "Sweater",
3086
+ "Sweatshirt",
3087
+ "Sweatshirts",
3088
+ "Swedish",
3089
+ "Sweet",
3090
+ "Swimming",
3091
+ "System",
3092
+ "T",
3093
+ "T-",
3094
+ "T1Z",
3095
+ "T35L4",
3096
+ "T71",
3097
+ "TAL",
3098
+ "TAR",
3099
+ "TAX",
3100
+ "TC",
3101
+ "TED",
3102
+ "TEK",
3103
+ "TEM",
3104
+ "TER",
3105
+ "TESTEMONIAL",
3106
+ "TG",
3107
+ "THE",
3108
+ "THECOTHINKERS.COM",
3109
+ "THERMAL",
3110
+ "TIL",
3111
+ "TIN",
3112
+ "TIV",
3113
+ "TL",
3114
+ "TL2",
3115
+ "TM2602",
3116
+ "TO",
3117
+ "TOE",
3118
+ "TOMATO",
3119
+ "TOMATOE",
3120
+ "TON",
3121
+ "TOP",
3122
+ "TOPMATO",
3123
+ "TOTAL",
3124
+ "TOY",
3125
+ "TP",
3126
+ "TR",
3127
+ "TRA",
3128
+ "TRANS",
3129
+ "TRAY",
3130
+ "TRIANGLE",
3131
+ "TS2",
3132
+ "TSO",
3133
+ "TURNER",
3134
+ "TUS",
3135
+ "TWING",
3136
+ "Table",
3137
+ "Tag",
3138
+ "Tags",
3139
+ "Tale",
3140
+ "Tam",
3141
+ "Tank",
3142
+ "Tape",
3143
+ "Tariff",
3144
+ "Tarot",
3145
+ "Tax",
3146
+ "Taxes",
3147
+ "TaxiTurqoise",
3148
+ "TaxiYellow",
3149
+ "Tb",
3150
+ "Tea",
3151
+ "Teal",
3152
+ "Team",
3153
+ "Team_monthly",
3154
+ "Technology",
3155
+ "Teddy",
3156
+ "Tee",
3157
+ "Template",
3158
+ "Tenn",
3159
+ "Tenn.",
3160
+ "Tennessee",
3161
+ "Terms",
3162
+ "Tesla",
3163
+ "Text",
3164
+ "Than",
3165
+ "That",
3166
+ "That's",
3167
+ "That\u2019s",
3168
+ "The",
3169
+ "Themes",
3170
+ "There",
3171
+ "There's",
3172
+ "There\u2019s",
3173
+ "Thermal",
3174
+ "These",
3175
+ "They",
3176
+ "Things",
3177
+ "Thinking",
3178
+ "This",
3179
+ "This's",
3180
+ "This\u2019s",
3181
+ "Those",
3182
+ "Thread",
3183
+ "Ticket",
3184
+ "Tickle",
3185
+ "Tie",
3186
+ "Tiger",
3187
+ "Tile",
3188
+ "Timberland",
3189
+ "Time",
3190
+ "Timesheet",
3191
+ "Timetable",
3192
+ "Tip",
3193
+ "Tisserand",
3194
+ "To",
3195
+ "Toast",
3196
+ "Today",
3197
+ "Tokyo",
3198
+ "Toll",
3199
+ "Tolls",
3200
+ "Tone",
3201
+ "Tonkotsu",
3202
+ "Toothpaste",
3203
+ "Top",
3204
+ "Total",
3205
+ "Touch",
3206
+ "Trace",
3207
+ "Tracked",
3208
+ "Tracking",
3209
+ "Trading",
3210
+ "Traditional",
3211
+ "Traffic",
3212
+ "Train",
3213
+ "Trainer",
3214
+ "Training",
3215
+ "Training/",
3216
+ "Transaction",
3217
+ "Transfer",
3218
+ "Transformers",
3219
+ "Translation_ENG",
3220
+ "Transportation",
3221
+ "Treatment",
3222
+ "Treats",
3223
+ "Trees",
3224
+ "Trendy",
3225
+ "Trituradora",
3226
+ "Trucking",
3227
+ "Trust",
3228
+ "Tshirt",
3229
+ "Tube",
3230
+ "Tubing",
3231
+ "Tuna",
3232
+ "Tunic",
3233
+ "U",
3234
+ "UAL",
3235
+ "UCE",
3236
+ "UCT",
3237
+ "UGH",
3238
+ "UGREEN",
3239
+ "UI",
3240
+ "UIT",
3241
+ "UK",
3242
+ "ULL",
3243
+ "UMN",
3244
+ "UND",
3245
+ "UNI",
3246
+ "UNIT",
3247
+ "UNT",
3248
+ "UP",
3249
+ "URU",
3250
+ "URY",
3251
+ "US",
3252
+ "US4",
3253
+ "USAGE",
3254
+ "USB",
3255
+ "USD",
3256
+ "USDA",
3257
+ "USE",
3258
+ "USH",
3259
+ "UTC",
3260
+ "UX",
3261
+ "Ultra",
3262
+ "Uni",
3263
+ "Unisex",
3264
+ "United",
3265
+ "Unlimited",
3266
+ "Unstoppables",
3267
+ "Up",
3268
+ "Updates",
3269
+ "Upgraded",
3270
+ "UrbanStyle",
3271
+ "Usage",
3272
+ "V",
3273
+ "V.V",
3274
+ "V00",
3275
+ "V29",
3276
+ "VA",
3277
+ "VALLEY",
3278
+ "VER",
3279
+ "VI3",
3280
+ "VN-21391",
3281
+ "VOLODYMYR",
3282
+ "VON",
3283
+ "VS1",
3284
+ "VVS1",
3285
+ "V_V",
3286
+ "Va",
3287
+ "Va.",
3288
+ "Van",
3289
+ "Vegan",
3290
+ "Vendor",
3291
+ "Venison",
3292
+ "Vest",
3293
+ "Veterinary",
3294
+ "Vimcal",
3295
+ "Vintage",
3296
+ "Vinyl",
3297
+ "Virginia",
3298
+ "VistaPrint",
3299
+ "Visual",
3300
+ "Vneck",
3301
+ "Voile",
3302
+ "Voltage",
3303
+ "Vpost",
3304
+ "W",
3305
+ "WALNUT",
3306
+ "WAREHOUSE",
3307
+ "WATER",
3308
+ "WAVY",
3309
+ "WEIGHING",
3310
+ "WH",
3311
+ "WHIP",
3312
+ "WHIT",
3313
+ "WHITE",
3314
+ "WITH",
3315
+ "WO",
3316
+ "WOMENS",
3317
+ "WOOD",
3318
+ "WPA7617",
3319
+ "WPQ",
3320
+ "WR",
3321
+ "WTs",
3322
+ "WWE",
3323
+ "Waffle",
3324
+ "Wait",
3325
+ "Wang",
3326
+ "Want",
3327
+ "Wanted",
3328
+ "Wardrobe",
3329
+ "Warm",
3330
+ "Wars",
3331
+ "Warwick",
3332
+ "Was",
3333
+ "Wash",
3334
+ "Wash.",
3335
+ "Washable",
3336
+ "Washington",
3337
+ "Watching",
3338
+ "Water",
3339
+ "Watercolor",
3340
+ "Waterfields",
3341
+ "Wax",
3342
+ "Way",
3343
+ "We",
3344
+ "Web",
3345
+ "WebInvestor",
3346
+ "Website",
3347
+ "Wedding",
3348
+ "Wenxi",
3349
+ "Were",
3350
+ "Wesley",
3351
+ "Westcott",
3352
+ "Wet",
3353
+ "What",
3354
+ "What's",
3355
+ "What\u2019s",
3356
+ "Wheat",
3357
+ "When",
3358
+ "When's",
3359
+ "When\u2019s",
3360
+ "Where",
3361
+ "Where's",
3362
+ "Where\u2019s",
3363
+ "Whit",
3364
+ "White",
3365
+ "Who",
3366
+ "Who's",
3367
+ "Wholesale",
3368
+ "Wholsale",
3369
+ "Who\u2019s",
3370
+ "Why",
3371
+ "Why's",
3372
+ "Why\u2019s",
3373
+ "Wi",
3374
+ "Will",
3375
+ "William",
3376
+ "Winged",
3377
+ "Wings",
3378
+ "Wired",
3379
+ "Wis",
3380
+ "Wis.",
3381
+ "Wisconsin",
3382
+ "With",
3383
+ "Wo",
3384
+ "Women",
3385
+ "WooCommerce",
3386
+ "Wooden",
3387
+ "Work",
3388
+ "Workspace",
3389
+ "Would",
3390
+ "Woven",
3391
+ "Wrapped",
3392
+ "Wsh",
3393
+ "X$",
3394
+ "X&X",
3395
+ "X'XXXX",
3396
+ "X'Xxxxx",
3397
+ "X'x",
3398
+ "X'xxxx",
3399
+ "X++",
3400
+ "X-",
3401
+ "X.",
3402
+ "X.X",
3403
+ "X.X.",
3404
+ "X.ddd",
3405
+ "X.x",
3406
+ "X.x.",
3407
+ "X/",
3408
+ "X/8/7/6",
3409
+ "X/d/d/d",
3410
+ "X10",
3411
+ "X14",
3412
+ "X8",
3413
+ "XD",
3414
+ "XDD",
3415
+ "XED",
3416
+ "XI/2022",
3417
+ "XJ",
3418
+ "XL",
3419
+ "XMirugai",
3420
+ "XR",
3421
+ "XS",
3422
+ "XT1",
3423
+ "XW1",
3424
+ "XX",
3425
+ "XX-",
3426
+ "XX-dddd",
3427
+ "XX/dddd",
3428
+ "XXL",
3429
+ "XXX",
3430
+ "XXX'dd",
3431
+ "XXX(XX",
3432
+ "XXX-",
3433
+ "XXX-d",
3434
+ "XXXX",
3435
+ "XXXX./XXX",
3436
+ "XXXX.XXX",
3437
+ "XXXX.XXXX",
3438
+ "XXXXdXddd",
3439
+ "XXXXdddd",
3440
+ "XXXXx",
3441
+ "XXXXxXXXX",
3442
+ "XXXXxxxx",
3443
+ "XXX_Xxxx",
3444
+ "XXXd",
3445
+ "XXXddd.X",
3446
+ "XXXdddd",
3447
+ "XXd",
3448
+ "XXdX",
3449
+ "XXdXd",
3450
+ "XXdd",
3451
+ "XXddX",
3452
+ "XXddXdX",
3453
+ "XXddd",
3454
+ "XXdddd",
3455
+ "XXx",
3456
+ "XXxxxx",
3457
+ "X_X",
3458
+ "X_x",
3459
+ "Xbox",
3460
+ "Xd",
3461
+ "XdXX",
3462
+ "XdXXXX",
3463
+ "XdXdddd",
3464
+ "Xdd",
3465
+ "XddXXXX",
3466
+ "XddXXXXd",
3467
+ "XddXXXdXXd",
3468
+ "XddXXXddXX",
3469
+ "XddXXdXXXX",
3470
+ "XddXXdXXXd",
3471
+ "XddXXdXdXX",
3472
+ "XddXd",
3473
+ "XddXdXdXXd",
3474
+ "XddXddXXXX",
3475
+ "XddXddXXd",
3476
+ "Xddd",
3477
+ "XdddXXXXdX",
3478
+ "Xdddd",
3479
+ "XddddXXXdd",
3480
+ "Xerophyte",
3481
+ "Xx",
3482
+ "Xx'",
3483
+ "Xx'Xxxxx",
3484
+ "Xx'x",
3485
+ "Xx'xx",
3486
+ "Xx.",
3487
+ "Xx.X.",
3488
+ "Xx.d",
3489
+ "XxXxxxx",
3490
+ "Xxdd",
3491
+ "Xxdxx",
3492
+ "Xxx",
3493
+ "Xxx'x",
3494
+ "Xxx-dddd",
3495
+ "Xxx.",
3496
+ "Xxx/",
3497
+ "Xxx/dd",
3498
+ "XxxXxx",
3499
+ "XxxXxxx",
3500
+ "XxxXxxxx",
3501
+ "Xxx_Xxxxx",
3502
+ "Xxxx",
3503
+ "Xxxx'",
3504
+ "Xxxx'x",
3505
+ "Xxxx+",
3506
+ "Xxxx-Xxxxx.xxx",
3507
+ "Xxxx.",
3508
+ "Xxxx/dd/dd/dd",
3509
+ "Xxxx:-",
3510
+ "Xxxx:d",
3511
+ "XxxxXxxx",
3512
+ "XxxxXxxxx",
3513
+ "Xxxx_xxxx",
3514
+ "Xxxxdd",
3515
+ "Xxxxx",
3516
+ "Xxxxx'",
3517
+ "Xxxxx'x",
3518
+ "Xxxxx-",
3519
+ "Xxxxx.",
3520
+ "Xxxxx/",
3521
+ "XxxxxXxxx",
3522
+ "XxxxxXxxxx",
3523
+ "Xxxxx_XXX",
3524
+ "Xxxxx_Xxxxx",
3525
+ "Xxxxxd",
3526
+ "Xxxxx\u2019",
3527
+ "Xxxxx\u2019x",
3528
+ "Xxxxx\u201e\u00a2",
3529
+ "Xxxx\u2019",
3530
+ "Xxxx\u2019x",
3531
+ "Xxx\u2019x",
3532
+ "Xx\u2019",
3533
+ "Xx\u2019x",
3534
+ "Xx\u2019xx",
3535
+ "X\u2019x",
3536
+ "X\u2019xxxx",
3537
+ "Y",
3538
+ "YAN",
3539
+ "YLE",
3540
+ "YLW",
3541
+ "YOLK",
3542
+ "YOUR",
3543
+ "YSL",
3544
+ "Yasmina",
3545
+ "Yeah",
3546
+ "Yellow",
3547
+ "Yeong",
3548
+ "Yodel",
3549
+ "York",
3550
+ "Yosemite",
3551
+ "You",
3552
+ "Your",
3553
+ "Youth",
3554
+ "Yuichiro",
3555
+ "Z",
3556
+ "Z5E",
3557
+ "Z6",
3558
+ "ZEN",
3559
+ "ZESPRI",
3560
+ "ZINFANDEL",
3561
+ "ZURU",
3562
+ "Zero",
3563
+ "Zerorised",
3564
+ "Zhuzhou",
3565
+ "Zip",
3566
+ "[",
3567
+ "[-:",
3568
+ "[:",
3569
+ "[=",
3570
+ "\\",
3571
+ "\\\")",
3572
+ "\\n",
3573
+ "\\t",
3574
+ "\\x",
3575
+ "]",
3576
+ "]=",
3577
+ "^",
3578
+ "^_^",
3579
+ "^__^",
3580
+ "^___^",
3581
+ "_*)",
3582
+ "_-)",
3583
+ "_.)",
3584
+ "_<)",
3585
+ "_^)",
3586
+ "__-",
3587
+ "__^",
3588
+ "_\u00ac)",
3589
+ "_\u0ca0)",
3590
+ "a",
3591
+ "a.",
3592
+ "a.m",
3593
+ "a.m.",
3594
+ "a/",
3595
+ "a3",
3596
+ "a4",
3597
+ "a7200",
3598
+ "about",
3599
+ "abs",
3600
+ "abu",
3601
+ "aby",
3602
+ "ac",
3603
+ "academy",
3604
+ "acc",
3605
+ "access",
3606
+ "accessories",
3607
+ "accomodation",
3608
+ "accordance",
3609
+ "accounting",
3610
+ "accounts",
3611
+ "ace",
3612
+ "ach",
3613
+ "acids",
3614
+ "ack",
3615
+ "ackage",
3616
+ "aco",
3617
+ "acrylic",
3618
+ "act",
3619
+ "activate",
3620
+ "actividad",
3621
+ "activities",
3622
+ "actual",
3623
+ "acusense",
3624
+ "acy",
3625
+ "ad",
3626
+ "ad3754202",
3627
+ "ada",
3628
+ "adapter",
3629
+ "addition",
3630
+ "additional",
3631
+ "address",
3632
+ "ade",
3633
+ "adhesive",
3634
+ "adidas",
3635
+ "adm",
3636
+ "adm.",
3637
+ "administrative",
3638
+ "ads",
3639
+ "adult",
3640
+ "advance",
3641
+ "advanced",
3642
+ "advertising",
3643
+ "aerospace",
3644
+ "afe",
3645
+ "affiliate",
3646
+ "afi",
3647
+ "aft",
3648
+ "after",
3649
+ "af\u00e9",
3650
+ "agar",
3651
+ "age",
3652
+ "agency",
3653
+ "agi",
3654
+ "agm",
3655
+ "agreement",
3656
+ "ags",
3657
+ "ai",
3658
+ "aic",
3659
+ "aid",
3660
+ "ail",
3661
+ "aim",
3662
+ "ain",
3663
+ "air",
3664
+ "airbrush",
3665
+ "aircon",
3666
+ "airpods",
3667
+ "airport",
3668
+ "airticket",
3669
+ "ait",
3670
+ "ak",
3671
+ "ak.",
3672
+ "ake",
3673
+ "aki",
3674
+ "aky",
3675
+ "al-",
3676
+ "ala",
3677
+ "ala.",
3678
+ "ale",
3679
+ "alf",
3680
+ "ali",
3681
+ "alive",
3682
+ "all",
3683
+ "allow",
3684
+ "allowances",
3685
+ "alm",
3686
+ "almond",
3687
+ "almost",
3688
+ "alphonse",
3689
+ "als",
3690
+ "alt",
3691
+ "am",
3692
+ "amazon",
3693
+ "amb",
3694
+ "ame",
3695
+ "amending",
3696
+ "americano",
3697
+ "ami",
3698
+ "aminalize",
3699
+ "amount",
3700
+ "amp",
3701
+ "amplify",
3702
+ "ampls./box",
3703
+ "ams",
3704
+ "amt",
3705
+ "an",
3706
+ "an.",
3707
+ "ana",
3708
+ "ancient",
3709
+ "and",
3710
+ "and/or",
3711
+ "android",
3712
+ "ang",
3713
+ "angel",
3714
+ "angels",
3715
+ "anglia",
3716
+ "animation",
3717
+ "anime",
3718
+ "ank",
3719
+ "ann",
3720
+ "annual",
3721
+ "ano",
3722
+ "ans",
3723
+ "ant",
3724
+ "antioxidants",
3725
+ "anvil",
3726
+ "any",
3727
+ "apc",
3728
+ "ape",
3729
+ "apocalypse",
3730
+ "app",
3731
+ "apple",
3732
+ "application",
3733
+ "applied",
3734
+ "approved",
3735
+ "apps",
3736
+ "apr",
3737
+ "apr.",
3738
+ "aps",
3739
+ "apy",
3740
+ "aqc",
3741
+ "ar.",
3742
+ "arab",
3743
+ "arb",
3744
+ "arctic",
3745
+ "ard",
3746
+ "are",
3747
+ "aren",
3748
+ "arf",
3749
+ "argyle",
3750
+ "ari",
3751
+ "ariz",
3752
+ "ariz.",
3753
+ "ark",
3754
+ "ark.",
3755
+ "arl",
3756
+ "arm",
3757
+ "aromatherapy",
3758
+ "ars",
3759
+ "art",
3760
+ "ary",
3761
+ "as",
3762
+ "ase",
3763
+ "ash",
3764
+ "ashtray",
3765
+ "asian",
3766
+ "asin",
3767
+ "ask",
3768
+ "asparagus",
3769
+ "aspire",
3770
+ "ass",
3771
+ "assemble",
3772
+ "associated",
3773
+ "assorted",
3774
+ "ast",
3775
+ "asy",
3776
+ "at",
3777
+ "ata",
3778
+ "ate",
3779
+ "ath",
3780
+ "atlantic",
3781
+ "ato",
3782
+ "atr",
3783
+ "ats",
3784
+ "att",
3785
+ "attached",
3786
+ "attachements",
3787
+ "attack",
3788
+ "attire",
3789
+ "audience",
3790
+ "audio",
3791
+ "aug",
3792
+ "aug.",
3793
+ "australia",
3794
+ "australian",
3795
+ "automatic",
3796
+ "autonomous",
3797
+ "autumn",
3798
+ "av1000",
3799
+ "ave",
3800
+ "avr_upon",
3801
+ "avy",
3802
+ "awn",
3803
+ "ayam",
3804
+ "ays",
3805
+ "azy",
3806
+ "b",
3807
+ "b.",
3808
+ "b001eomz5e",
3809
+ "b00bsnpssc",
3810
+ "b00snm5us4",
3811
+ "b01j34vi3",
3812
+ "b07dt9ttl2",
3813
+ "b07g4r2xw1",
3814
+ "b07mr3n2pv",
3815
+ "b07n89qfwj",
3816
+ "b07vd5kbmp",
3817
+ "b0851fdl96",
3818
+ "b08fdsjwpq",
3819
+ "b08jl2yckj",
3820
+ "b08qsk84jl",
3821
+ "b08vqstlb4",
3822
+ "b08zpkjkf4",
3823
+ "b0bfjhhhjt",
3824
+ "b70",
3825
+ "b9",
3826
+ "baby",
3827
+ "back",
3828
+ "backpack",
3829
+ "bag",
3830
+ "bags",
3831
+ "baking",
3832
+ "balanced",
3833
+ "balestier",
3834
+ "bali",
3835
+ "balm",
3836
+ "bamboo",
3837
+ "bamry",
3838
+ "banana",
3839
+ "bandspeed",
3840
+ "bank",
3841
+ "banks",
3842
+ "barbeque",
3843
+ "barbour",
3844
+ "barcode",
3845
+ "barking",
3846
+ "barratt",
3847
+ "base",
3848
+ "baseball",
3849
+ "based",
3850
+ "basic",
3851
+ "basics",
3852
+ "basket",
3853
+ "bath",
3854
+ "bathmilk",
3855
+ "battery",
3856
+ "bay",
3857
+ "baylis",
3858
+ "bb",
3859
+ "bcn(es",
3860
+ "be",
3861
+ "beads",
3862
+ "bean",
3863
+ "bear",
3864
+ "because",
3865
+ "bed",
3866
+ "bedok",
3867
+ "bedroom",
3868
+ "beef",
3869
+ "been",
3870
+ "beer",
3871
+ "beetox",
3872
+ "beetroot",
3873
+ "begendi",
3874
+ "behaviourism",
3875
+ "behaviourism/",
3876
+ "beige",
3877
+ "being",
3878
+ "bel",
3879
+ "believe",
3880
+ "bellies",
3881
+ "belux",
3882
+ "benedict",
3883
+ "bento",
3884
+ "ber",
3885
+ "berezhniy",
3886
+ "berry",
3887
+ "bestchem",
3888
+ "betty",
3889
+ "between",
3890
+ "bf",
3891
+ "bicarb",
3892
+ "bid",
3893
+ "big",
3894
+ "bill",
3895
+ "billed",
3896
+ "billing",
3897
+ "bin",
3898
+ "bio",
3899
+ "biop",
3900
+ "biscoff",
3901
+ "biscuit",
3902
+ "bit",
3903
+ "bk",
3904
+ "bl",
3905
+ "blac",
3906
+ "black",
3907
+ "blank",
3908
+ "blck",
3909
+ "ble",
3910
+ "blend",
3911
+ "blinders",
3912
+ "blog",
3913
+ "blue",
3914
+ "bluefin",
3915
+ "blush",
3916
+ "blw",
3917
+ "bmp",
3918
+ "bnwts",
3919
+ "board",
3920
+ "body",
3921
+ "bok",
3922
+ "bold",
3923
+ "bon",
3924
+ "boo",
3925
+ "book",
3926
+ "bookings",
3927
+ "bookkeeping",
3928
+ "boop",
3929
+ "boost",
3930
+ "booster",
3931
+ "bose",
3932
+ "boss",
3933
+ "bottles",
3934
+ "bout",
3935
+ "bowl",
3936
+ "box",
3937
+ "box,150boxes",
3938
+ "boxes/",
3939
+ "boxof4",
3940
+ "bps",
3941
+ "br.",
3942
+ "bracelets",
3943
+ "braco",
3944
+ "brake",
3945
+ "brand",
3946
+ "brand_exact",
3947
+ "bread",
3948
+ "breakdown",
3949
+ "breakfast",
3950
+ "breather",
3951
+ "breed",
3952
+ "bridge",
3953
+ "brisard",
3954
+ "brisk",
3955
+ "broadband",
3956
+ "broken",
3957
+ "bros",
3958
+ "bros.",
3959
+ "brown",
3960
+ "brush",
3961
+ "bryan",
3962
+ "br\u00fbl\u00e9e",
3963
+ "budget",
3964
+ "building",
3965
+ "bulk",
3966
+ "bull",
3967
+ "bulldog",
3968
+ "bundle",
3969
+ "burnt",
3970
+ "burrata",
3971
+ "bus",
3972
+ "business",
3973
+ "but",
3974
+ "butterflies",
3975
+ "butterfly",
3976
+ "buy",
3977
+ "by",
3978
+ "c",
3979
+ "c'm",
3980
+ "c++",
3981
+ "c-5",
3982
+ "c.",
3983
+ "c01",
3984
+ "ca",
3985
+ "cabernet",
3986
+ "cable",
3987
+ "cactacea",
3988
+ "cactaceae",
3989
+ "cacti",
3990
+ "cafe",
3991
+ "caffeine",
3992
+ "cake",
3993
+ "cal",
3994
+ "calendar",
3995
+ "calif",
3996
+ "calif.",
3997
+ "california",
3998
+ "call",
3999
+ "calls",
4000
+ "calm",
4001
+ "camden",
4002
+ "camera",
4003
+ "cameron",
4004
+ "campaign",
4005
+ "can",
4006
+ "cana",
4007
+ "canal",
4008
+ "candle",
4009
+ "candy",
4010
+ "canister",
4011
+ "canvas",
4012
+ "caplets-",
4013
+ "cappuccino",
4014
+ "capsule",
4015
+ "capsules",
4016
+ "car",
4017
+ "carbohydrates",
4018
+ "card",
4019
+ "cardigan",
4020
+ "cards",
4021
+ "carpentry",
4022
+ "carried",
4023
+ "carrier",
4024
+ "carrots",
4025
+ "case",
4026
+ "casement",
4027
+ "cash",
4028
+ "cashew",
4029
+ "cast",
4030
+ "cat",
4031
+ "cause",
4032
+ "cc99725",
4033
+ "cca",
4034
+ "ccmedia",
4035
+ "ce>",
4036
+ "cea",
4037
+ "ced",
4038
+ "cel",
4039
+ "celestite",
4040
+ "cer",
4041
+ "ceramic",
4042
+ "cereal",
4043
+ "certificate",
4044
+ "ces",
4045
+ "ch.",
4046
+ "cha",
4047
+ "change",
4048
+ "changes",
4049
+ "chanting",
4050
+ "chaps",
4051
+ "charcoal",
4052
+ "charge",
4053
+ "charger",
4054
+ "charges",
4055
+ "charms",
4056
+ "chart",
4057
+ "check",
4058
+ "checked",
4059
+ "cherries",
4060
+ "cherry",
4061
+ "chews",
4062
+ "chia",
4063
+ "chiat",
4064
+ "chicken",
4065
+ "chickpeas",
4066
+ "chien",
4067
+ "child",
4068
+ "children",
4069
+ "chilled",
4070
+ "chilli",
4071
+ "ching",
4072
+ "chkn",
4073
+ "cho",
4074
+ "chocolate",
4075
+ "choice",
4076
+ "chop",
4077
+ "chope",
4078
+ "christmas",
4079
+ "ciencias",
4080
+ "cif",
4081
+ "cigar",
4082
+ "cin",
4083
+ "cinerea",
4084
+ "cinnamon",
4085
+ "citron",
4086
+ "citrus",
4087
+ "ckj",
4088
+ "cks",
4089
+ "cky",
4090
+ "claim",
4091
+ "classic",
4092
+ "clay",
4093
+ "cle",
4094
+ "clean",
4095
+ "cleaner",
4096
+ "cleanse",
4097
+ "clear",
4098
+ "click",
4099
+ "clickfunnels",
4100
+ "clicks",
4101
+ "client",
4102
+ "clindamycin",
4103
+ "closet",
4104
+ "cloth",
4105
+ "clothes",
4106
+ "clothing",
4107
+ "cloud",
4108
+ "cl\u00e9ment",
4109
+ "cm",
4110
+ "cms",
4111
+ "co",
4112
+ "co.",
4113
+ "co07004",
4114
+ "coa",
4115
+ "cockles",
4116
+ "cocoa",
4117
+ "code",
4118
+ "coffee",
4119
+ "coffin",
4120
+ "collar",
4121
+ "collars",
4122
+ "collect",
4123
+ "collection",
4124
+ "colo",
4125
+ "colo.",
4126
+ "color",
4127
+ "colors",
4128
+ "colour",
4129
+ "com",
4130
+ "come",
4131
+ "comfortride",
4132
+ "comfy",
4133
+ "commission",
4134
+ "commissions",
4135
+ "commonly",
4136
+ "compact",
4137
+ "company",
4138
+ "compatible",
4139
+ "compost",
4140
+ "compre",
4141
+ "computer",
4142
+ "computers",
4143
+ "con",
4144
+ "concealer",
4145
+ "concept",
4146
+ "concession",
4147
+ "conditioner",
4148
+ "confirmed",
4149
+ "confit",
4150
+ "conn",
4151
+ "conn.",
4152
+ "connect",
4153
+ "connecter",
4154
+ "connector",
4155
+ "consultancy",
4156
+ "consultant",
4157
+ "consulting",
4158
+ "contacts",
4159
+ "containsvitamins",
4160
+ "contract",
4161
+ "contracted",
4162
+ "control",
4163
+ "controller",
4164
+ "conversion",
4165
+ "conversions",
4166
+ "convertkit",
4167
+ "cooks",
4168
+ "coordinator",
4169
+ "copiapoa",
4170
+ "copy",
4171
+ "cor",
4172
+ "cord",
4173
+ "corgi",
4174
+ "corn",
4175
+ "corp",
4176
+ "corp.",
4177
+ "corporate",
4178
+ "correspondence",
4179
+ "cos",
4180
+ "cost",
4181
+ "cothinkers.club",
4182
+ "cotton",
4183
+ "could",
4184
+ "count",
4185
+ "couple",
4186
+ "coupling",
4187
+ "course",
4188
+ "cover",
4189
+ "cowgirl",
4190
+ "coz",
4191
+ "cp",
4192
+ "cpf",
4193
+ "crabs",
4194
+ "crazy",
4195
+ "cream",
4196
+ "created",
4197
+ "creative",
4198
+ "creator",
4199
+ "credit",
4200
+ "crew",
4201
+ "crewneck",
4202
+ "crisp",
4203
+ "crop",
4204
+ "cross",
4205
+ "crowd",
4206
+ "crv",
4207
+ "crystal",
4208
+ "cr\u00e8me",
4209
+ "ct",
4210
+ "ct.",
4211
+ "ct71",
4212
+ "cti",
4213
+ "ctn",
4214
+ "ctr",
4215
+ "cts",
4216
+ "cts2",
4217
+ "cuff",
4218
+ "cult",
4219
+ "cup",
4220
+ "curious",
4221
+ "current",
4222
+ "cushioned",
4223
+ "cust",
4224
+ "custom",
4225
+ "customer",
4226
+ "customised",
4227
+ "customize",
4228
+ "customized",
4229
+ "cut",
4230
+ "cute",
4231
+ "cuz",
4232
+ "cyber",
4233
+ "cybersecurity",
4234
+ "c\u2019m",
4235
+ "d",
4236
+ "d(1",
4237
+ "d)",
4238
+ "d,ddd",
4239
+ "d-",
4240
+ "d-)",
4241
+ "d-X",
4242
+ "d.",
4243
+ "d.c.",
4244
+ "d.d",
4245
+ "d.dX",
4246
+ "d.dd",
4247
+ "d.ddd",
4248
+ "d.dx",
4249
+ "d.dxxx",
4250
+ "d.x",
4251
+ "d/d",
4252
+ "d/d/dd",
4253
+ "d/dd/dd",
4254
+ "d02",
4255
+ "d06",
4256
+ "d6",
4257
+ "d:dd",
4258
+ "d:dd:dd",
4259
+ "dX",
4260
+ "dXX",
4261
+ "dXdd",
4262
+ "dXdddXdXdddd",
4263
+ "d_d",
4264
+ "d_x",
4265
+ "dabs",
4266
+ "dad",
4267
+ "daily",
4268
+ "dak",
4269
+ "dam",
4270
+ "dan",
4271
+ "dancer",
4272
+ "dar",
4273
+ "dare",
4274
+ "dark",
4275
+ "das",
4276
+ "dashi",
4277
+ "date",
4278
+ "day",
4279
+ "days",
4280
+ "dd",
4281
+ "dd,ddd",
4282
+ "dd.dd",
4283
+ "dd.dd.dddd",
4284
+ "dd/dd/dd",
4285
+ "dd/dd/dddd",
4286
+ "dd:dd",
4287
+ "ddX",
4288
+ "ddXX",
4289
+ "ddXXX",
4290
+ "ddXdd",
4291
+ "ddXdddd",
4292
+ "ddXxx",
4293
+ "ddXxxx",
4294
+ "ddXxxxx",
4295
+ "dd_XXXX-dddd",
4296
+ "dd_xxxx-dddd",
4297
+ "ddd",
4298
+ "ddd,ddd",
4299
+ "ddd.dd",
4300
+ "dddX",
4301
+ "dddXX",
4302
+ "dddXXX",
4303
+ "dddXxxx",
4304
+ "dddd",
4305
+ "dddd,xXxx(d",
4306
+ "dddd,xxxx(d",
4307
+ "dddd.X",
4308
+ "dddd.dd",
4309
+ "dddd.x",
4310
+ "dddd/dddd",
4311
+ "ddddX",
4312
+ "ddddXX",
4313
+ "ddddXXX",
4314
+ "ddddx",
4315
+ "ddddxx",
4316
+ "ddddxxx",
4317
+ "dddd|",
4318
+ "dddx",
4319
+ "dddxddd",
4320
+ "dddxx",
4321
+ "dddxx/",
4322
+ "dddxxx",
4323
+ "dddxxxx",
4324
+ "ddx",
4325
+ "ddx.x",
4326
+ "ddx.x.",
4327
+ "ddxdd",
4328
+ "ddxdddd",
4329
+ "ddxx",
4330
+ "ddxx,dd",
4331
+ "ddxx,dddxxx",
4332
+ "ddxxx",
4333
+ "ddxxxx",
4334
+ "ddy",
4335
+ "de",
4336
+ "de'longhi",
4337
+ "deadstock",
4338
+ "dec",
4339
+ "dec.",
4340
+ "december",
4341
+ "deck",
4342
+ "decker",
4343
+ "decks",
4344
+ "decor",
4345
+ "decoration",
4346
+ "decoupes",
4347
+ "ded",
4348
+ "deep",
4349
+ "del",
4350
+ "del.",
4351
+ "delivery",
4352
+ "delonghi",
4353
+ "deluxe",
4354
+ "den",
4355
+ "denim",
4356
+ "deo",
4357
+ "departure",
4358
+ "deporte",
4359
+ "deposit",
4360
+ "der",
4361
+ "des",
4362
+ "desbio",
4363
+ "design",
4364
+ "designeR",
4365
+ "designer",
4366
+ "designs",
4367
+ "dessert",
4368
+ "destroyer",
4369
+ "details",
4370
+ "detox",
4371
+ "develop",
4372
+ "developer",
4373
+ "development",
4374
+ "devor\u00e9",
4375
+ "dew",
4376
+ "dfo",
4377
+ "dge",
4378
+ "dia",
4379
+ "diamond",
4380
+ "dice",
4381
+ "did",
4382
+ "die",
4383
+ "diesel",
4384
+ "diferent",
4385
+ "digital",
4386
+ "dinner",
4387
+ "dino",
4388
+ "dio",
4389
+ "dip",
4390
+ "dip/",
4391
+ "direct",
4392
+ "disconnect",
4393
+ "discount",
4394
+ "discounted",
4395
+ "display",
4396
+ "disposal",
4397
+ "distilled",
4398
+ "dit",
4399
+ "diy",
4400
+ "dle",
4401
+ "dm.",
4402
+ "dn15",
4403
+ "dna",
4404
+ "do",
4405
+ "document",
4406
+ "does",
4407
+ "dog",
4408
+ "dogs",
4409
+ "doin",
4410
+ "doin'",
4411
+ "doing",
4412
+ "doin\u2019",
4413
+ "dok",
4414
+ "dol",
4415
+ "dolce",
4416
+ "dom",
4417
+ "domain",
4418
+ "don",
4419
+ "doors",
4420
+ "dor",
4421
+ "double",
4422
+ "doughnut",
4423
+ "dow",
4424
+ "dr",
4425
+ "dr.",
4426
+ "draft",
4427
+ "dragonfly",
4428
+ "draught",
4429
+ "dress",
4430
+ "drifit",
4431
+ "drilling",
4432
+ "drim",
4433
+ "drink",
4434
+ "driver",
4435
+ "dro",
4436
+ "drone",
4437
+ "dry",
4438
+ "dry-",
4439
+ "ds620",
4440
+ "dty",
4441
+ "dual",
4442
+ "dublin",
4443
+ "due",
4444
+ "durable",
4445
+ "dusty",
4446
+ "dvd",
4447
+ "dvr",
4448
+ "dwf",
4449
+ "dx",
4450
+ "dx.x",
4451
+ "dx.x.",
4452
+ "dxd",
4453
+ "dxd(dd",
4454
+ "dxdd",
4455
+ "dxdddxdxdddd",
4456
+ "dxx",
4457
+ "dxxXxxxx-dd",
4458
+ "dxxx",
4459
+ "dxxxx-dd",
4460
+ "dye",
4461
+ "e",
4462
+ "e's",
4463
+ "e-",
4464
+ "e.",
4465
+ "e.g",
4466
+ "e.g.",
4467
+ "e3fa",
4468
+ "e95",
4469
+ "e:1",
4470
+ "eBay",
4471
+ "each",
4472
+ "ead",
4473
+ "eae",
4474
+ "eah",
4475
+ "eal",
4476
+ "eam",
4477
+ "ean",
4478
+ "ear",
4479
+ "early",
4480
+ "earphone",
4481
+ "earring",
4482
+ "earth",
4483
+ "eas",
4484
+ "easy",
4485
+ "eat",
4486
+ "eatin",
4487
+ "eb.",
4488
+ "ebay",
4489
+ "ebr",
4490
+ "ec.",
4491
+ "ece",
4492
+ "eck",
4493
+ "eco",
4494
+ "ect",
4495
+ "ed",
4496
+ "edg260.w",
4497
+ "edge",
4498
+ "edition",
4499
+ "eed",
4500
+ "eef",
4501
+ "eek",
4502
+ "eel",
4503
+ "een",
4504
+ "eep",
4505
+ "eer",
4506
+ "ees",
4507
+ "eet",
4508
+ "efforts",
4509
+ "egg",
4510
+ "ein",
4511
+ "eio",
4512
+ "eko",
4513
+ "el.",
4514
+ "electricity",
4515
+ "elementary",
4516
+ "elevate",
4517
+ "elf",
4518
+ "elgnce",
4519
+ "elite",
4520
+ "elites",
4521
+ "ell",
4522
+ "ellins",
4523
+ "elmo",
4524
+ "els",
4525
+ "em",
4526
+ "email",
4527
+ "embroidered",
4528
+ "eme",
4529
+ "emi",
4530
+ "emirates",
4531
+ "emotional",
4532
+ "ems",
4533
+ "emt",
4534
+ "emy",
4535
+ "en",
4536
+ "en.",
4537
+ "enchanted",
4538
+ "end",
4539
+ "ends",
4540
+ "energize",
4541
+ "energy",
4542
+ "eng",
4543
+ "engagement",
4544
+ "engine",
4545
+ "engrave",
4546
+ "engraved",
4547
+ "enn",
4548
+ "enough",
4549
+ "ens",
4550
+ "ent",
4551
+ "enter",
4552
+ "enterprise",
4553
+ "enthusiasts",
4554
+ "entrada",
4555
+ "entry",
4556
+ "envio",
4557
+ "environmental",
4558
+ "environments",
4559
+ "ep.",
4560
+ "epoxy",
4561
+ "ept",
4562
+ "er/",
4563
+ "era",
4564
+ "erb",
4565
+ "ercspi00152133",
4566
+ "ercstq00024744",
4567
+ "ere",
4568
+ "erkys",
4569
+ "ern",
4570
+ "ero",
4571
+ "err",
4572
+ "error",
4573
+ "ers",
4574
+ "ert",
4575
+ "ery",
4576
+ "es/",
4577
+ "esam",
4578
+ "ese",
4579
+ "esh",
4580
+ "esop",
4581
+ "espresso",
4582
+ "ess",
4583
+ "essential",
4584
+ "est",
4585
+ "estate",
4586
+ "estimated",
4587
+ "eta",
4588
+ "etc",
4589
+ "eth",
4590
+ "ethernet",
4591
+ "eti",
4592
+ "etiquettes",
4593
+ "ets",
4594
+ "etsy",
4595
+ "ety",
4596
+ "eu",
4597
+ "eucalyptus",
4598
+ "eum",
4599
+ "ev.",
4600
+ "eve",
4601
+ "every",
4602
+ "everyday",
4603
+ "evi",
4604
+ "ews",
4605
+ "ex",
4606
+ "exhaust",
4607
+ "existing",
4608
+ "expense",
4609
+ "ext",
4610
+ "extender/",
4611
+ "extinguisher",
4612
+ "extra",
4613
+ "eye",
4614
+ "eyelet",
4615
+ "e\u2019s",
4616
+ "f",
4617
+ "f.",
4618
+ "fabric",
4619
+ "face",
4620
+ "fairy",
4621
+ "family",
4622
+ "fancy",
4623
+ "fare",
4624
+ "fatigue",
4625
+ "fatty",
4626
+ "fc",
4627
+ "fce",
4628
+ "feature",
4629
+ "feb",
4630
+ "feb.",
4631
+ "february",
4632
+ "fee",
4633
+ "fees",
4634
+ "female",
4635
+ "fer",
4636
+ "fern",
4637
+ "fi",
4638
+ "fic",
4639
+ "fidelity",
4640
+ "fieldwork",
4641
+ "fig",
4642
+ "figures",
4643
+ "filling",
4644
+ "fin",
4645
+ "final",
4646
+ "finance",
4647
+ "fineline",
4648
+ "finger",
4649
+ "finley",
4650
+ "fire",
4651
+ "fish",
4652
+ "fisica",
4653
+ "fit",
4654
+ "fitri",
4655
+ "fittings",
4656
+ "fiverr",
4657
+ "fix",
4658
+ "fla",
4659
+ "fla.",
4660
+ "flannel",
4661
+ "flatr",
4662
+ "flatwoven",
4663
+ "fle",
4664
+ "fleece",
4665
+ "flex",
4666
+ "flexible",
4667
+ "flight",
4668
+ "flooring",
4669
+ "floral",
4670
+ "floss",
4671
+ "flower",
4672
+ "flowers",
4673
+ "fly",
4674
+ "foc",
4675
+ "fold",
4676
+ "folded",
4677
+ "follow",
4678
+ "fondue",
4679
+ "fong",
4680
+ "food",
4681
+ "foods",
4682
+ "for",
4683
+ "ford",
4684
+ "forest",
4685
+ "form",
4686
+ "foundation",
4687
+ "fragile",
4688
+ "free",
4689
+ "freedom",
4690
+ "freelancer",
4691
+ "freio",
4692
+ "fresh",
4693
+ "fried",
4694
+ "from",
4695
+ "front",
4696
+ "frosted",
4697
+ "frozen",
4698
+ "fruit",
4699
+ "fruitmollo",
4700
+ "fruits",
4701
+ "fry",
4702
+ "ft",
4703
+ "fts",
4704
+ "fuck",
4705
+ "fujiimint\u00e2\u201e\u00a2",
4706
+ "fulfillment",
4707
+ "fulfilment",
4708
+ "full",
4709
+ "fullgram",
4710
+ "fund",
4711
+ "fwj",
4712
+ "g",
4713
+ "g.",
4714
+ "g10",
4715
+ "ga",
4716
+ "ga.",
4717
+ "gai",
4718
+ "gal",
4719
+ "galbi",
4720
+ "game",
4721
+ "gaming",
4722
+ "gan",
4723
+ "gar",
4724
+ "garagedoorrepaircary-nc.com",
4725
+ "garbage",
4726
+ "garden",
4727
+ "gardens",
4728
+ "garment",
4729
+ "gas",
4730
+ "gasket",
4731
+ "gb",
4732
+ "gb70",
4733
+ "ged",
4734
+ "gel",
4735
+ "gen",
4736
+ "gen.",
4737
+ "gen_retail",
4738
+ "geometric",
4739
+ "ger",
4740
+ "geranium",
4741
+ "ges",
4742
+ "get",
4743
+ "ghi",
4744
+ "ght",
4745
+ "giant",
4746
+ "gideo",
4747
+ "gifts",
4748
+ "gigabit",
4749
+ "gildan",
4750
+ "ginger",
4751
+ "gl",
4752
+ "glasgow",
4753
+ "glass",
4754
+ "glassine",
4755
+ "glayza",
4756
+ "gle",
4757
+ "glenavon",
4758
+ "gloss",
4759
+ "gm",
4760
+ "gmy",
4761
+ "gns",
4762
+ "go",
4763
+ "goes",
4764
+ "gogh",
4765
+ "goin",
4766
+ "goin'",
4767
+ "going",
4768
+ "goin\u2019",
4769
+ "gold",
4770
+ "golds",
4771
+ "gon",
4772
+ "gonna",
4773
+ "goods",
4774
+ "google",
4775
+ "got",
4776
+ "gov",
4777
+ "gov.",
4778
+ "gow",
4779
+ "grade",
4780
+ "grana",
4781
+ "grand",
4782
+ "granite",
4783
+ "grapefruit",
4784
+ "grapes",
4785
+ "graphic",
4786
+ "grass",
4787
+ "grated",
4788
+ "gray",
4789
+ "green",
4790
+ "greg",
4791
+ "gregory",
4792
+ "grey",
4793
+ "grill",
4794
+ "grilled",
4795
+ "gross",
4796
+ "grown",
4797
+ "gsm",
4798
+ "gst",
4799
+ "gue",
4800
+ "guide",
4801
+ "gus",
4802
+ "gusto",
4803
+ "gym",
4804
+ "h",
4805
+ "h&b",
4806
+ "h.",
4807
+ "h.265",
4808
+ "h/",
4809
+ "h125",
4810
+ "hA2cg",
4811
+ "ha2cg",
4812
+ "hack",
4813
+ "hacked",
4814
+ "hacker",
4815
+ "hacking",
4816
+ "had",
4817
+ "hair",
4818
+ "half",
4819
+ "han",
4820
+ "hand",
4821
+ "handbag",
4822
+ "handle",
4823
+ "handling",
4824
+ "hands",
4825
+ "hanon",
4826
+ "harbour",
4827
+ "hard",
4828
+ "harding",
4829
+ "hardware",
4830
+ "haribo",
4831
+ "harry",
4832
+ "harryand",
4833
+ "has",
4834
+ "hat",
4835
+ "haulage",
4836
+ "have",
4837
+ "havin",
4838
+ "havin'",
4839
+ "having",
4840
+ "havin\u2019",
4841
+ "hc01",
4842
+ "hd",
4843
+ "hdl",
4844
+ "he",
4845
+ "he's",
4846
+ "head",
4847
+ "headphone",
4848
+ "heads",
4849
+ "headset",
4850
+ "health",
4851
+ "heart",
4852
+ "heat",
4853
+ "heather",
4854
+ "hed",
4855
+ "hee",
4856
+ "heights",
4857
+ "hel",
4858
+ "helper",
4859
+ "hem",
4860
+ "hen",
4861
+ "her",
4862
+ "hes",
4863
+ "het",
4864
+ "hew",
4865
+ "hey",
4866
+ "he\u2019s",
4867
+ "hh",
4868
+ "hia",
4869
+ "hic",
4870
+ "high",
4871
+ "highlands",
4872
+ "highlighter",
4873
+ "hikvision",
4874
+ "hill",
4875
+ "hin",
4876
+ "hinoki",
4877
+ "hip",
4878
+ "hire",
4879
+ "his",
4880
+ "hit",
4881
+ "hjt",
4882
+ "hkn",
4883
+ "hl",
4884
+ "hly",
4885
+ "hod",
4886
+ "hoe",
4887
+ "hokusai",
4888
+ "home",
4889
+ "honey",
4890
+ "honeycomb",
4891
+ "hooded",
4892
+ "hoodie",
4893
+ "hoodies",
4894
+ "hop",
4895
+ "hose",
4896
+ "hosting",
4897
+ "hot",
4898
+ "hotel",
4899
+ "hotmelt65",
4900
+ "hou",
4901
+ "hour",
4902
+ "hourly",
4903
+ "hours",
4904
+ "household",
4905
+ "how",
4906
+ "how's",
4907
+ "how\u2019s",
4908
+ "hr",
4909
+ "hrryrtl",
4910
+ "hs",
4911
+ "hscode",
4912
+ "ht12c",
4913
+ "htf2108088",
4914
+ "hts",
4915
+ "http://www.raceoil.com",
4916
+ "https://americbuzz.com/tips-for-increasing-the-number-of",
4917
+ "hty",
4918
+ "hua",
4919
+ "hub",
4920
+ "hugging",
4921
+ "hugo",
4922
+ "hus",
4923
+ "hybrid",
4924
+ "hyl",
4925
+ "i",
4926
+ "i.",
4927
+ "i.e",
4928
+ "i.e.",
4929
+ "iPhone",
4930
+ "iQ",
4931
+ "iSOUL",
4932
+ "ia",
4933
+ "ia.",
4934
+ "ial",
4935
+ "iam",
4936
+ "ian",
4937
+ "ias",
4938
+ "iat",
4939
+ "iberia",
4940
+ "ibo",
4941
+ "ica",
4942
+ "icann",
4943
+ "ice",
4944
+ "iced",
4945
+ "ich",
4946
+ "ick",
4947
+ "icon",
4948
+ "ics",
4949
+ "ict",
4950
+ "icy",
4951
+ "id",
4952
+ "id.",
4953
+ "ide",
4954
+ "ids",
4955
+ "ied",
4956
+ "ien",
4957
+ "ier",
4958
+ "ies",
4959
+ "iew",
4960
+ "iez",
4961
+ "if",
4962
+ "if.",
4963
+ "ife",
4964
+ "iff",
4965
+ "iframe",
4966
+ "ify",
4967
+ "ige",
4968
+ "igh",
4969
+ "ign",
4970
+ "igo",
4971
+ "ii",
4972
+ "ike",
4973
+ "iki",
4974
+ "ild",
4975
+ "ile",
4976
+ "ilk",
4977
+ "ill",
4978
+ "ill.",
4979
+ "illustration",
4980
+ "ils",
4981
+ "ily",
4982
+ "ima",
4983
+ "image",
4984
+ "ime",
4985
+ "imi",
4986
+ "immune",
4987
+ "implementation",
4988
+ "import",
4989
+ "in",
4990
+ "in'",
4991
+ "ina",
4992
+ "inbound",
4993
+ "inc",
4994
+ "inc.",
4995
+ "incense",
4996
+ "inclusive",
4997
+ "increase",
4998
+ "incumbency",
4999
+ "ind",
5000
+ "ind.",
5001
+ "india",
5002
+ "indigo",
5003
+ "individual",
5004
+ "ine",
5005
+ "infallible",
5006
+ "infinissima",
5007
+ "informed",
5008
+ "infusedwith",
5009
+ "ing",
5010
+ "ini",
5011
+ "injection",
5012
+ "ink",
5013
+ "inn",
5014
+ "ino",
5015
+ "ins",
5016
+ "insert",
5017
+ "inspired",
5018
+ "instagram",
5019
+ "install",
5020
+ "instinct",
5021
+ "insurance",
5022
+ "int",
5023
+ "intelligent",
5024
+ "intermatt",
5025
+ "internacional",
5026
+ "intimacy",
5027
+ "inv",
5028
+ "inventory_singapore",
5029
+ "invoice",
5030
+ "iny",
5031
+ "in\u2019",
5032
+ "iod",
5033
+ "ion",
5034
+ "iop",
5035
+ "ior",
5036
+ "ip",
5037
+ "ip/",
5038
+ "ipe",
5039
+ "iphone",
5040
+ "ipt",
5041
+ "iq",
5042
+ "ir",
5043
+ "ir8a",
5044
+ "ire",
5045
+ "ireland",
5046
+ "irl",
5047
+ "iro",
5048
+ "iron",
5049
+ "irrelevant",
5050
+ "irs",
5051
+ "irt",
5052
+ "iry",
5053
+ "is",
5054
+ "is.",
5055
+ "isc",
5056
+ "ise",
5057
+ "ish",
5058
+ "isk",
5059
+ "ism",
5060
+ "iso",
5061
+ "isoul",
5062
+ "isp",
5063
+ "iss",
5064
+ "issn",
5065
+ "issuance",
5066
+ "ist",
5067
+ "it",
5068
+ "it's",
5069
+ "ita",
5070
+ "ite",
5071
+ "item",
5072
+ "item:-",
5073
+ "ith",
5074
+ "itil",
5075
+ "its",
5076
+ "ity",
5077
+ "itz",
5078
+ "it\u2019s",
5079
+ "ium",
5080
+ "iv",
5081
+ "ive",
5082
+ "ivo",
5083
+ "iwi",
5084
+ "iz.",
5085
+ "ize",
5086
+ "j",
5087
+ "j.",
5088
+ "jack",
5089
+ "jacket",
5090
+ "jackson",
5091
+ "jam",
5092
+ "jan",
5093
+ "jan.",
5094
+ "janaury",
5095
+ "japan",
5096
+ "japanese",
5097
+ "jar",
5098
+ "jeans",
5099
+ "jells",
5100
+ "jer",
5101
+ "jersey",
5102
+ "jewellery",
5103
+ "jewelry",
5104
+ "jfk(us",
5105
+ "jheel",
5106
+ "jiwins",
5107
+ "jn99",
5108
+ "job",
5109
+ "jobsite",
5110
+ "joe",
5111
+ "joo",
5112
+ "joss",
5113
+ "jp",
5114
+ "jr",
5115
+ "jr.",
5116
+ "js",
5117
+ "jul",
5118
+ "jul.",
5119
+ "july",
5120
+ "jumbo",
5121
+ "jumper",
5122
+ "jun",
5123
+ "jun-2021",
5124
+ "jun.",
5125
+ "jw",
5126
+ "k",
5127
+ "k.",
5128
+ "k21",
5129
+ "kaiware",
5130
+ "kaki",
5131
+ "kal",
5132
+ "kalari",
5133
+ "kan",
5134
+ "kan.",
5135
+ "kangeroo",
5136
+ "kans",
5137
+ "kans.",
5138
+ "karna",
5139
+ "kasher.legal",
5140
+ "katong",
5141
+ "katsu",
5142
+ "kayuragi",
5143
+ "kb",
5144
+ "ked",
5145
+ "kelinna",
5146
+ "ken",
5147
+ "kenya",
5148
+ "ker",
5149
+ "kerastase",
5150
+ "keratin",
5151
+ "keropok",
5152
+ "kes",
5153
+ "kest",
5154
+ "ket",
5155
+ "kew",
5156
+ "key",
5157
+ "keyword",
5158
+ "keywords",
5159
+ "kf4",
5160
+ "kg",
5161
+ "kg6r9",
5162
+ "kids",
5163
+ "kidscolor",
5164
+ "kim",
5165
+ "kin",
5166
+ "kiss",
5167
+ "kit",
5168
+ "kitchen",
5169
+ "kiwi",
5170
+ "kla",
5171
+ "kle",
5172
+ "knife",
5173
+ "knight",
5174
+ "knit",
5175
+ "knitted",
5176
+ "knob",
5177
+ "kodak",
5178
+ "kolkata",
5179
+ "kon",
5180
+ "kor",
5181
+ "kraken",
5182
+ "kranji",
5183
+ "kronenbourg",
5184
+ "kt",
5185
+ "kult",
5186
+ "ky",
5187
+ "ky.",
5188
+ "kyo",
5189
+ "kys",
5190
+ "l",
5191
+ "l'oreal",
5192
+ "l(s",
5193
+ "l.",
5194
+ "l15",
5195
+ "l96",
5196
+ "la",
5197
+ "la.",
5198
+ "lab",
5199
+ "label",
5200
+ "label(s",
5201
+ "labels",
5202
+ "labelsIron",
5203
+ "labelshirt",
5204
+ "labelsiron",
5205
+ "labour",
5206
+ "labradorite",
5207
+ "lac",
5208
+ "lace",
5209
+ "lad",
5210
+ "ladies",
5211
+ "ladyfinger",
5212
+ "lamb",
5213
+ "lan",
5214
+ "lancement",
5215
+ "landline",
5216
+ "landscape",
5217
+ "lar",
5218
+ "large",
5219
+ "laser",
5220
+ "latte",
5221
+ "launch",
5222
+ "lauren",
5223
+ "lavender",
5224
+ "lay",
5225
+ "lb4",
5226
+ "lbi",
5227
+ "lbk",
5228
+ "lce",
5229
+ "lck",
5230
+ "lds",
5231
+ "lead",
5232
+ "leader",
5233
+ "learning_3678w",
5234
+ "leather",
5235
+ "leave",
5236
+ "led",
5237
+ "leg",
5238
+ "legend",
5239
+ "legends",
5240
+ "lemon",
5241
+ "lenor",
5242
+ "leo",
5243
+ "ler",
5244
+ "les",
5245
+ "let",
5246
+ "let's",
5247
+ "lets",
5248
+ "letter",
5249
+ "let\u2019s",
5250
+ "level",
5251
+ "levi",
5252
+ "lex",
5253
+ "ley",
5254
+ "lg485136815",
5255
+ "lia",
5256
+ "liability",
5257
+ "lic",
5258
+ "license",
5259
+ "lid",
5260
+ "lids",
5261
+ "lif",
5262
+ "life",
5263
+ "light",
5264
+ "lighting",
5265
+ "lightning",
5266
+ "lightweight",
5267
+ "lilac",
5268
+ "lime",
5269
+ "limited",
5270
+ "lin",
5271
+ "line",
5272
+ "liner",
5273
+ "link",
5274
+ "liposomal",
5275
+ "lis",
5276
+ "list",
5277
+ "listing",
5278
+ "liters",
5279
+ "litre",
5280
+ "little",
5281
+ "living",
5282
+ "ll",
5283
+ "ll.",
5284
+ "llc",
5285
+ "lli",
5286
+ "llo",
5287
+ "lls",
5288
+ "lly",
5289
+ "lmo",
5290
+ "lo.",
5291
+ "localize",
5292
+ "log",
5293
+ "logo",
5294
+ "logo,$300",
5295
+ "lon",
5296
+ "london",
5297
+ "long",
5298
+ "lookalike",
5299
+ "loopback",
5300
+ "lop",
5301
+ "lophophora",
5302
+ "lor",
5303
+ "lot",
5304
+ "lota",
5305
+ "lotion",
5306
+ "lotus",
5307
+ "love",
5308
+ "lovin",
5309
+ "lovin'",
5310
+ "loving",
5311
+ "lovin\u2019",
5312
+ "low",
5313
+ "lower",
5314
+ "lox",
5315
+ "lp",
5316
+ "lph",
5317
+ "lry",
5318
+ "lsa",
5319
+ "lse",
5320
+ "ltd",
5321
+ "ltd.",
5322
+ "lth",
5323
+ "lti",
5324
+ "lto",
5325
+ "lts",
5326
+ "lub",
5327
+ "lue",
5328
+ "lug",
5329
+ "lus",
5330
+ "lux",
5331
+ "lychee",
5332
+ "l\u00e9e",
5333
+ "m",
5334
+ "m.",
5335
+ "m3356",
5336
+ "m:-",
5337
+ "ma'am",
5338
+ "macaskill",
5339
+ "machine",
5340
+ "macho",
5341
+ "mad",
5342
+ "madam",
5343
+ "made",
5344
+ "madness",
5345
+ "magnetic",
5346
+ "magnifica",
5347
+ "mail",
5348
+ "mailers",
5349
+ "mailing",
5350
+ "maintenance",
5351
+ "make",
5352
+ "makings",
5353
+ "mal",
5354
+ "malatek",
5355
+ "male",
5356
+ "man",
5357
+ "managememt",
5358
+ "management",
5359
+ "managment",
5360
+ "mandarin",
5361
+ "manic",
5362
+ "manpower",
5363
+ "manychat",
5364
+ "mar",
5365
+ "mar.",
5366
+ "march",
5367
+ "marigold",
5368
+ "marker",
5369
+ "marketing",
5370
+ "martyrs",
5371
+ "marvis",
5372
+ "mary",
5373
+ "mas",
5374
+ "mass",
5375
+ "mass.",
5376
+ "master",
5377
+ "mastermin",
5378
+ "matcha",
5379
+ "matches",
5380
+ "materials",
5381
+ "matisse",
5382
+ "matters",
5383
+ "max",
5384
+ "max/14",
5385
+ "may",
5386
+ "may-2021",
5387
+ "ma\u2019am",
5388
+ "mbo",
5389
+ "mbps",
5390
+ "md",
5391
+ "md.",
5392
+ "me",
5393
+ "meadows",
5394
+ "meal",
5395
+ "meaning",
5396
+ "measure",
5397
+ "med",
5398
+ "media",
5399
+ "medicina",
5400
+ "medicinals",
5401
+ "medium",
5402
+ "meeting",
5403
+ "meg",
5404
+ "melenge",
5405
+ "men",
5406
+ "mens",
5407
+ "mer",
5408
+ "mes",
5409
+ "messrs",
5410
+ "messrs.",
5411
+ "mestyle",
5412
+ "metal",
5413
+ "metalique",
5414
+ "meter",
5415
+ "metered",
5416
+ "method",
5417
+ "methyl",
5418
+ "metric",
5419
+ "mfi",
5420
+ "mfy",
5421
+ "mg",
5422
+ "mha",
5423
+ "mic",
5424
+ "micarta",
5425
+ "mich",
5426
+ "mich.",
5427
+ "mickey",
5428
+ "mid",
5429
+ "middle",
5430
+ "might",
5431
+ "milestone",
5432
+ "military",
5433
+ "milkshake",
5434
+ "min",
5435
+ "mineral",
5436
+ "minerals",
5437
+ "minga",
5438
+ "mini",
5439
+ "minn",
5440
+ "minn.",
5441
+ "mint",
5442
+ "mirror",
5443
+ "mirrorless",
5444
+ "misc",
5445
+ "miso",
5446
+ "miss",
5447
+ "miss.",
5448
+ "missouri",
5449
+ "mitsubishi",
5450
+ "mix",
5451
+ "mixed",
5452
+ "mixing",
5453
+ "ml",
5454
+ "ml/",
5455
+ "mm",
5456
+ "mo",
5457
+ "mo.",
5458
+ "mobile",
5459
+ "mod",
5460
+ "model",
5461
+ "modeling",
5462
+ "module",
5463
+ "moduspec",
5464
+ "moff",
5465
+ "mold",
5466
+ "mon",
5467
+ "monaghan",
5468
+ "mont",
5469
+ "mont.",
5470
+ "month",
5471
+ "monthly",
5472
+ "months",
5473
+ "moon",
5474
+ "morandi",
5475
+ "more",
5476
+ "more,1.2",
5477
+ "moti",
5478
+ "motion",
5479
+ "motoko",
5480
+ "mould",
5481
+ "mounting",
5482
+ "move",
5483
+ "moving",
5484
+ "mph",
5485
+ "mpm",
5486
+ "mps",
5487
+ "mr",
5488
+ "mr.",
5489
+ "mrc-5",
5490
+ "mrk",
5491
+ "mrs",
5492
+ "mrs.",
5493
+ "mry",
5494
+ "ms",
5495
+ "ms.",
5496
+ "mt",
5497
+ "mt.",
5498
+ "mth",
5499
+ "mtu",
5500
+ "mucha",
5501
+ "multi",
5502
+ "multicolor",
5503
+ "multicolored",
5504
+ "multicoloured",
5505
+ "multivitamin",
5506
+ "museum",
5507
+ "mushroom",
5508
+ "must",
5509
+ "mustard",
5510
+ "my",
5511
+ "myr",
5512
+ "n",
5513
+ "n's",
5514
+ "n't",
5515
+ "n.",
5516
+ "n.c.",
5517
+ "n.d.",
5518
+ "n.h.",
5519
+ "n.j.",
5520
+ "n.m.",
5521
+ "n.y.",
5522
+ "n15",
5523
+ "n20",
5524
+ "n62",
5525
+ "n99",
5526
+ "na",
5527
+ "nal",
5528
+ "name",
5529
+ "name-cheap.com",
5530
+ "nasty",
5531
+ "national",
5532
+ "natural",
5533
+ "navaneeth",
5534
+ "navy",
5535
+ "nba",
5536
+ "nc.",
5537
+ "nce",
5538
+ "nch",
5539
+ "ncl",
5540
+ "nct",
5541
+ "ncy",
5542
+ "nd.",
5543
+ "ndi",
5544
+ "nds",
5545
+ "ndy",
5546
+ "neR",
5547
+ "neb",
5548
+ "neb.",
5549
+ "nebr",
5550
+ "nebr.",
5551
+ "neck",
5552
+ "necklace",
5553
+ "neckline",
5554
+ "ned",
5555
+ "need",
5556
+ "needle",
5557
+ "negative",
5558
+ "nel",
5559
+ "ner",
5560
+ "nes",
5561
+ "nescaf\u00e9",
5562
+ "net",
5563
+ "neti",
5564
+ "neutradol",
5565
+ "nev",
5566
+ "nev.",
5567
+ "never",
5568
+ "new",
5569
+ "next",
5570
+ "ney",
5571
+ "ng/",
5572
+ "nga",
5573
+ "nge",
5574
+ "ngl",
5575
+ "ngs",
5576
+ "nia",
5577
+ "nic",
5578
+ "night",
5579
+ "nighty",
5580
+ "nike",
5581
+ "nikon",
5582
+ "nim",
5583
+ "ninja",
5584
+ "nit",
5585
+ "nitropack",
5586
+ "niy",
5587
+ "nja",
5588
+ "nji",
5589
+ "nks",
5590
+ "nly",
5591
+ "nmole",
5592
+ "nn.",
5593
+ "nna",
5594
+ "no",
5595
+ "no.3",
5596
+ "nob",
5597
+ "nobilis",
5598
+ "noco",
5599
+ "noconfiguration",
5600
+ "non",
5601
+ "none",
5602
+ "nor",
5603
+ "normal",
5604
+ "norman",
5605
+ "nos",
5606
+ "not",
5607
+ "nothin",
5608
+ "nothin'",
5609
+ "nothing",
5610
+ "nothin\u2019",
5611
+ "nov",
5612
+ "nov'22",
5613
+ "nov.",
5614
+ "ns.",
5615
+ "ns2",
5616
+ "nse",
5617
+ "nsurance",
5618
+ "nt",
5619
+ "nt.",
5620
+ "nta",
5621
+ "nte",
5622
+ "nth",
5623
+ "nto",
5624
+ "nts",
5625
+ "ntx",
5626
+ "nue",
5627
+ "nuff",
5628
+ "nuggets",
5629
+ "nurhakim",
5630
+ "nut",
5631
+ "nuthin",
5632
+ "nuthin'",
5633
+ "nuthin\u2019",
5634
+ "nutmeg",
5635
+ "nutritional",
5636
+ "nxi",
5637
+ "nya",
5638
+ "nyl",
5639
+ "nylon",
5640
+ "nyx",
5641
+ "n\u2019s",
5642
+ "n\u2019t",
5643
+ "o",
5644
+ "o'clock",
5645
+ "o's",
5646
+ "o.",
5647
+ "o.0",
5648
+ "o.3",
5649
+ "o.O",
5650
+ "o.o",
5651
+ "o_0",
5652
+ "o_O",
5653
+ "o_o",
5654
+ "oad",
5655
+ "oal",
5656
+ "oatcakes",
5657
+ "obe",
5658
+ "ock",
5659
+ "oco",
5660
+ "oct",
5661
+ "oct.",
5662
+ "october",
5663
+ "oda",
5664
+ "ode",
5665
+ "odour",
5666
+ "ods",
5667
+ "ody",
5668
+ "oes",
5669
+ "of",
5670
+ "of.",
5671
+ "of4",
5672
+ "off",
5673
+ "office",
5674
+ "official",
5675
+ "oft",
5676
+ "ogh",
5677
+ "ogo",
5678
+ "ogs",
5679
+ "ogy",
5680
+ "oid",
5681
+ "oil",
5682
+ "oils",
5683
+ "oin",
5684
+ "oir",
5685
+ "oke",
5686
+ "oki",
5687
+ "okla",
5688
+ "okla.",
5689
+ "oko",
5690
+ "oks",
5691
+ "ol",
5692
+ "ol'",
5693
+ "olaplex",
5694
+ "old",
5695
+ "ole",
5696
+ "oligo",
5697
+ "olive",
5698
+ "olk",
5699
+ "oll",
5700
+ "olo",
5701
+ "olv",
5702
+ "oly",
5703
+ "ol\u2019",
5704
+ "om",
5705
+ "omb",
5706
+ "ome",
5707
+ "oms",
5708
+ "on",
5709
+ "ond",
5710
+ "one",
5711
+ "ong",
5712
+ "only",
5713
+ "onn",
5714
+ "ons",
5715
+ "ont",
5716
+ "ony",
5717
+ "onyx",
5718
+ "ood",
5719
+ "oof",
5720
+ "ook",
5721
+ "ool",
5722
+ "oolong",
5723
+ "oom",
5724
+ "oon",
5725
+ "oop",
5726
+ "oot",
5727
+ "ootdty",
5728
+ "ope",
5729
+ "open",
5730
+ "opener",
5731
+ "opp",
5732
+ "optimisation",
5733
+ "optimization",
5734
+ "option",
5735
+ "opy",
5736
+ "or",
5737
+ "ora",
5738
+ "oracle",
5739
+ "orange",
5740
+ "ord",
5741
+ "ord001108",
5742
+ "order",
5743
+ "ore",
5744
+ "ore.",
5745
+ "organic",
5746
+ "organization",
5747
+ "organizer",
5748
+ "origame",
5749
+ "original",
5750
+ "ork",
5751
+ "orm",
5752
+ "orn",
5753
+ "oro",
5754
+ "orp",
5755
+ "ors",
5756
+ "ort",
5757
+ "ory",
5758
+ "orz",
5759
+ "or\u00e9",
5760
+ "os",
5761
+ "os.",
5762
+ "os/",
5763
+ "ose",
5764
+ "osmanthus",
5765
+ "oss",
5766
+ "ost",
5767
+ "ota",
5768
+ "oth",
5769
+ "other",
5770
+ "oti",
5771
+ "oto",
5772
+ "ots",
5773
+ "ott",
5774
+ "oud",
5775
+ "ought",
5776
+ "oul",
5777
+ "our",
5778
+ "ous",
5779
+ "out",
5780
+ "outside",
5781
+ "ov.",
5782
+ "ova",
5783
+ "ove",
5784
+ "over",
5785
+ "oversized",
5786
+ "overthinker",
5787
+ "overtime",
5788
+ "owd",
5789
+ "owl",
5790
+ "own",
5791
+ "ows",
5792
+ "oxy",
5793
+ "oz",
5794
+ "o\u2019clock",
5795
+ "o\u2019s",
5796
+ "p",
5797
+ "p.",
5798
+ "p.m",
5799
+ "p.m.",
5800
+ "p128",
5801
+ "p2",
5802
+ "p2g109530941",
5803
+ "pa",
5804
+ "pa.",
5805
+ "pacifier",
5806
+ "pack",
5807
+ "package",
5808
+ "packaging",
5809
+ "packed",
5810
+ "packswith",
5811
+ "padded",
5812
+ "paediasure",
5813
+ "page",
5814
+ "pageviews",
5815
+ "paid",
5816
+ "pairs",
5817
+ "pal",
5818
+ "pan",
5819
+ "panic",
5820
+ "papel",
5821
+ "paper",
5822
+ "papers",
5823
+ "papiers",
5824
+ "parcel",
5825
+ "parcels",
5826
+ "paris",
5827
+ "park",
5828
+ "parking",
5829
+ "part",
5830
+ "particulars",
5831
+ "parts",
5832
+ "pass",
5833
+ "passenger",
5834
+ "passion",
5835
+ "passionflower",
5836
+ "passthrough",
5837
+ "pastel",
5838
+ "pastrami",
5839
+ "paterson",
5840
+ "paw",
5841
+ "pay",
5842
+ "payment",
5843
+ "payments",
5844
+ "paypal",
5845
+ "payroll",
5846
+ "pbn",
5847
+ "pc",
5848
+ "pc-",
5849
+ "pcp",
5850
+ "pcp4500",
5851
+ "pcs",
5852
+ "pd",
5853
+ "pe",
5854
+ "peaky",
5855
+ "pearl",
5856
+ "pec",
5857
+ "ped",
5858
+ "pee",
5859
+ "pel",
5860
+ "pen",
5861
+ "penfolds",
5862
+ "pens",
5863
+ "pentester",
5864
+ "penyet",
5865
+ "people",
5866
+ "peppa",
5867
+ "pepparkakor",
5868
+ "pepper",
5869
+ "per",
5870
+ "perfector",
5871
+ "performance",
5872
+ "perfume",
5873
+ "period",
5874
+ "permanent",
5875
+ "perro",
5876
+ "personal",
5877
+ "personalised",
5878
+ "personalized",
5879
+ "pes",
5880
+ "pet",
5881
+ "pe\u00e7as",
5882
+ "pfd",
5883
+ "ph",
5884
+ "ph.d.",
5885
+ "pharmaton",
5886
+ "phase",
5887
+ "photo",
5888
+ "photovoltaic",
5889
+ "pia",
5890
+ "picasso",
5891
+ "piece",
5892
+ "pig",
5893
+ "pile",
5894
+ "piloting",
5895
+ "pim",
5896
+ "pink",
5897
+ "pint",
5898
+ "pipe",
5899
+ "pipettes",
5900
+ "pita",
5901
+ "pitbull",
5902
+ "pk",
5903
+ "pkm",
5904
+ "pkt",
5905
+ "place",
5906
+ "placement",
5907
+ "placenta",
5908
+ "plaid",
5909
+ "plan",
5910
+ "planet",
5911
+ "plant",
5912
+ "plaster",
5913
+ "plastic",
5914
+ "plate",
5915
+ "platform",
5916
+ "platforms",
5917
+ "platinum",
5918
+ "playhouse",
5919
+ "playstore",
5920
+ "ple",
5921
+ "plug",
5922
+ "plus",
5923
+ "plus+",
5924
+ "plus/13/12/11",
5925
+ "plush",
5926
+ "ply",
5927
+ "pm",
5928
+ "png",
5929
+ "poa",
5930
+ "pod",
5931
+ "point",
5932
+ "pok",
5933
+ "poker",
5934
+ "polo",
5935
+ "poly",
5936
+ "polyester",
5937
+ "pon",
5938
+ "poo",
5939
+ "pool",
5940
+ "pork",
5941
+ "portable",
5942
+ "ports",
5943
+ "posca",
5944
+ "post",
5945
+ "postage",
5946
+ "postal",
5947
+ "posting",
5948
+ "potential",
5949
+ "potter",
5950
+ "powder",
5951
+ "power",
5952
+ "powerline",
5953
+ "pp",
5954
+ "ppa",
5955
+ "ppe",
5956
+ "ppp",
5957
+ "pps",
5958
+ "pr",
5959
+ "pr.",
5960
+ "prata",
5961
+ "prawn",
5962
+ "pre",
5963
+ "precut",
5964
+ "premium",
5965
+ "premix",
5966
+ "preparation",
5967
+ "present",
5968
+ "pret",
5969
+ "pri",
5970
+ "price",
5971
+ "prime",
5972
+ "print",
5973
+ "printed",
5974
+ "printer",
5975
+ "printing",
5976
+ "priority",
5977
+ "pro",
5978
+ "pro/14",
5979
+ "process",
5980
+ "processing",
5981
+ "prod",
5982
+ "product",
5983
+ "prof",
5984
+ "prof.",
5985
+ "profender",
5986
+ "professional",
5987
+ "profiler",
5988
+ "progress",
5989
+ "project",
5990
+ "promoted",
5991
+ "proof",
5992
+ "properties",
5993
+ "prorated",
5994
+ "protect",
5995
+ "protein",
5996
+ "prototyping",
5997
+ "provided",
5998
+ "prussion",
5999
+ "pse",
6000
+ "psi",
6001
+ "pt.",
6002
+ "pte",
6003
+ "publisher",
6004
+ "puff",
6005
+ "pull",
6006
+ "pullover",
6007
+ "pump",
6008
+ "pure",
6009
+ "pureessential",
6010
+ "purple",
6011
+ "pw37t1z",
6012
+ "pygmy",
6013
+ "q",
6014
+ "q.",
6015
+ "qa",
6016
+ "qd06",
6017
+ "qft",
6018
+ "quality",
6019
+ "que",
6020
+ "quick",
6021
+ "quitcomfort",
6022
+ "quoted",
6023
+ "r",
6024
+ "r.",
6025
+ "r8a",
6026
+ "rab",
6027
+ "rabeko",
6028
+ "raglan",
6029
+ "ral",
6030
+ "ralph",
6031
+ "ram",
6032
+ "randy",
6033
+ "raps",
6034
+ "raspberry",
6035
+ "ratchet",
6036
+ "rate",
6037
+ "ravens",
6038
+ "raw",
6039
+ "ray",
6040
+ "raz",
6041
+ "rce",
6042
+ "rch",
6043
+ "rds",
6044
+ "re",
6045
+ "re.",
6046
+ "rea",
6047
+ "realignment",
6048
+ "reality",
6049
+ "rebate",
6050
+ "rebecca",
6051
+ "receipt",
6052
+ "receive",
6053
+ "recharge",
6054
+ "recipient",
6055
+ "recombinant",
6056
+ "recurring",
6057
+ "red",
6058
+ "reddoorz",
6059
+ "redesign",
6060
+ "redlines",
6061
+ "redmart",
6062
+ "reduced",
6063
+ "ree",
6064
+ "reebok",
6065
+ "ref",
6066
+ "refundable",
6067
+ "reg",
6068
+ "regarding",
6069
+ "registration",
6070
+ "regular",
6071
+ "regulator",
6072
+ "reibeye",
6073
+ "reiki",
6074
+ "reimbursement",
6075
+ "release",
6076
+ "remaining",
6077
+ "remarketing",
6078
+ "remington",
6079
+ "removal",
6080
+ "removed",
6081
+ "ren",
6082
+ "renaissance",
6083
+ "renewal",
6084
+ "rental",
6085
+ "reo",
6086
+ "rep",
6087
+ "rep.",
6088
+ "repair",
6089
+ "repairing",
6090
+ "report",
6091
+ "request",
6092
+ "required",
6093
+ "res",
6094
+ "resale",
6095
+ "research",
6096
+ "reservation",
6097
+ "reservoir",
6098
+ "resistain",
6099
+ "resource",
6100
+ "restaurant",
6101
+ "results",
6102
+ "ret",
6103
+ "retainer",
6104
+ "retro",
6105
+ "rev",
6106
+ "rev.",
6107
+ "revenue",
6108
+ "review",
6109
+ "reviewing",
6110
+ "reviews",
6111
+ "revista",
6112
+ "rew",
6113
+ "rey",
6114
+ "rge",
6115
+ "rgi",
6116
+ "rgy",
6117
+ "rhinestone",
6118
+ "ria",
6119
+ "rib",
6120
+ "ribbon",
6121
+ "ric",
6122
+ "rice",
6123
+ "rid",
6124
+ "ride",
6125
+ "rights",
6126
+ "rim",
6127
+ "rin",
6128
+ "ring",
6129
+ "rings",
6130
+ "rinse",
6131
+ "rip",
6132
+ "ris",
6133
+ "riz",
6134
+ "rk.",
6135
+ "rks",
6136
+ "rld",
6137
+ "rly",
6138
+ "rms",
6139
+ "rna",
6140
+ "rnt",
6141
+ "road",
6142
+ "roblox",
6143
+ "rock",
6144
+ "rod",
6145
+ "rof",
6146
+ "rohan",
6147
+ "rol",
6148
+ "roll",
6149
+ "rolled",
6150
+ "rollerball",
6151
+ "rom",
6152
+ "ron",
6153
+ "roo",
6154
+ "room",
6155
+ "rooms",
6156
+ "rop",
6157
+ "ror",
6158
+ "ros",
6159
+ "rose",
6160
+ "rot",
6161
+ "rough",
6162
+ "round",
6163
+ "rounding",
6164
+ "roundneck",
6165
+ "routine",
6166
+ "royal",
6167
+ "rp.",
6168
+ "rro",
6169
+ "rry",
6170
+ "rs",
6171
+ "rs-",
6172
+ "rs.",
6173
+ "rse",
6174
+ "rta",
6175
+ "rte",
6176
+ "rth",
6177
+ "rtl",
6178
+ "rts",
6179
+ "rubber",
6180
+ "rubbish",
6181
+ "rue",
6182
+ "rug",
6183
+ "ruler",
6184
+ "rus",
6185
+ "rust",
6186
+ "rx10",
6187
+ "rxze2m114",
6188
+ "ry-",
6189
+ "s",
6190
+ "s$",
6191
+ "s's",
6192
+ "s.",
6193
+ "s.c.",
6194
+ "s2",
6195
+ "s8598",
6196
+ "s925",
6197
+ "sMOKE",
6198
+ "sa/",
6199
+ "safe",
6200
+ "safety",
6201
+ "sage",
6202
+ "sai",
6203
+ "sailor",
6204
+ "sal",
6205
+ "salad",
6206
+ "salary",
6207
+ "sales",
6208
+ "salmon",
6209
+ "salsa/",
6210
+ "salt",
6211
+ "sam",
6212
+ "same",
6213
+ "samples",
6214
+ "samwoh",
6215
+ "sand",
6216
+ "sangano",
6217
+ "santos",
6218
+ "sao",
6219
+ "sapphire",
6220
+ "sapporo",
6221
+ "sasha",
6222
+ "sashimi",
6223
+ "sata",
6224
+ "satin",
6225
+ "sauce",
6226
+ "sausage",
6227
+ "savage",
6228
+ "save95",
6229
+ "sbf",
6230
+ "sbp",
6231
+ "sca",
6232
+ "scale",
6233
+ "scarf",
6234
+ "scent",
6235
+ "scentsual",
6236
+ "scoop",
6237
+ "score",
6238
+ "scout",
6239
+ "scramble",
6240
+ "screwdriving",
6241
+ "scrunchmiez",
6242
+ "sda",
6243
+ "se",
6244
+ "sea",
6245
+ "seafood",
6246
+ "seal",
6247
+ "search",
6248
+ "season",
6249
+ "seat",
6250
+ "seats",
6251
+ "secateurs-",
6252
+ "seconds",
6253
+ "secretary",
6254
+ "security",
6255
+ "sed",
6256
+ "see",
6257
+ "seedless",
6258
+ "sel",
6259
+ "seletar",
6260
+ "self",
6261
+ "sell",
6262
+ "seller",
6263
+ "semi",
6264
+ "sen",
6265
+ "sen.",
6266
+ "senior",
6267
+ "sensor",
6268
+ "seo",
6269
+ "sep",
6270
+ "sep.",
6271
+ "sept",
6272
+ "sept.",
6273
+ "ser",
6274
+ "series",
6275
+ "serpent",
6276
+ "service",
6277
+ "services",
6278
+ "sesame",
6279
+ "session",
6280
+ "sessions",
6281
+ "set",
6282
+ "setup",
6283
+ "sewing",
6284
+ "sex",
6285
+ "sey",
6286
+ "sg",
6287
+ "sgd",
6288
+ "sh.",
6289
+ "sha",
6290
+ "shabu",
6291
+ "shake",
6292
+ "shall",
6293
+ "shampoo",
6294
+ "shape",
6295
+ "sharerholder",
6296
+ "she",
6297
+ "she's",
6298
+ "sheet",
6299
+ "shell",
6300
+ "she\u2019s",
6301
+ "shi",
6302
+ "shiny",
6303
+ "shipment",
6304
+ "shipping",
6305
+ "shipping(UK",
6306
+ "shipping(uk",
6307
+ "shiraz",
6308
+ "shirt",
6309
+ "shirts",
6310
+ "shish",
6311
+ "shoe",
6312
+ "shop",
6313
+ "shopee",
6314
+ "short",
6315
+ "shorts",
6316
+ "should",
6317
+ "shrew",
6318
+ "shutterstock",
6319
+ "sic",
6320
+ "side",
6321
+ "sides",
6322
+ "signature",
6323
+ "signet",
6324
+ "sii",
6325
+ "silicone",
6326
+ "silkscreen",
6327
+ "silver",
6328
+ "sim",
6329
+ "simha",
6330
+ "sin",
6331
+ "since",
6332
+ "singapore",
6333
+ "singaporeans",
6334
+ "sit",
6335
+ "site",
6336
+ "sites",
6337
+ "size",
6338
+ "size:1",
6339
+ "sizes",
6340
+ "skateboarding",
6341
+ "skater",
6342
+ "skeleton",
6343
+ "skin",
6344
+ "skp",
6345
+ "sku",
6346
+ "skull",
6347
+ "sl",
6348
+ "sla",
6349
+ "sleeve",
6350
+ "sleeve(Change",
6351
+ "sleeve(change",
6352
+ "sleeved",
6353
+ "sliding",
6354
+ "sm-1015",
6355
+ "sm/",
6356
+ "small",
6357
+ "smart",
6358
+ "smashers",
6359
+ "smoke",
6360
+ "smoking",
6361
+ "sngl",
6362
+ "snowflakes",
6363
+ "so",
6364
+ "social",
6365
+ "social-",
6366
+ "socket",
6367
+ "socks",
6368
+ "soda",
6369
+ "soft",
6370
+ "software",
6371
+ "sohpia",
6372
+ "soil",
6373
+ "solaris",
6374
+ "somethin",
6375
+ "somethin'",
6376
+ "something",
6377
+ "somethin\u2019",
6378
+ "son",
6379
+ "sonos",
6380
+ "sony",
6381
+ "sop",
6382
+ "sor",
6383
+ "sortso",
6384
+ "sour",
6385
+ "south",
6386
+ "sova",
6387
+ "sow",
6388
+ "spa",
6389
+ "space",
6390
+ "spark",
6391
+ "speakout",
6392
+ "spear",
6393
+ "special",
6394
+ "species",
6395
+ "spectacular",
6396
+ "spent",
6397
+ "spicy",
6398
+ "spinach",
6399
+ "sponsored",
6400
+ "sport",
6401
+ "sportsmask",
6402
+ "spread",
6403
+ "spritz",
6404
+ "sqt",
6405
+ "square",
6406
+ "squat",
6407
+ "sr",
6408
+ "srs",
6409
+ "ss",
6410
+ "ss.",
6411
+ "ssc",
6412
+ "sse",
6413
+ "ssn",
6414
+ "sso",
6415
+ "st",
6416
+ "st.",
6417
+ "sta",
6418
+ "stainless",
6419
+ "staircase",
6420
+ "stamp",
6421
+ "stamping",
6422
+ "stamps",
6423
+ "stand",
6424
+ "standard",
6425
+ "stapleton",
6426
+ "star",
6427
+ "stars",
6428
+ "start",
6429
+ "starter",
6430
+ "state",
6431
+ "stated",
6432
+ "states",
6433
+ "ste",
6434
+ "steamed",
6435
+ "steel",
6436
+ "stereo",
6437
+ "sticker",
6438
+ "stickers",
6439
+ "sticks",
6440
+ "sticky",
6441
+ "still",
6442
+ "sto",
6443
+ "stock",
6444
+ "stomach",
6445
+ "stone",
6446
+ "storage",
6447
+ "store",
6448
+ "str",
6449
+ "straighteners",
6450
+ "straw",
6451
+ "strawberries",
6452
+ "street",
6453
+ "streetwear",
6454
+ "stress",
6455
+ "stretch",
6456
+ "strike",
6457
+ "strings",
6458
+ "striped",
6459
+ "strong",
6460
+ "structure",
6461
+ "sts",
6462
+ "studded",
6463
+ "students",
6464
+ "study",
6465
+ "sty",
6466
+ "style",
6467
+ "sub",
6468
+ "sublimation",
6469
+ "submission",
6470
+ "subscription",
6471
+ "subscriptions",
6472
+ "subsctription",
6473
+ "sugar",
6474
+ "sum",
6475
+ "summer",
6476
+ "sunflower",
6477
+ "sunflowers",
6478
+ "sungold",
6479
+ "suntory",
6480
+ "sup",
6481
+ "super",
6482
+ "superb",
6483
+ "supp",
6484
+ "supplement",
6485
+ "supply",
6486
+ "support",
6487
+ "supporting",
6488
+ "supreme",
6489
+ "surcharges",
6490
+ "sushi",
6491
+ "suspensao",
6492
+ "sw",
6493
+ "swags",
6494
+ "swallow",
6495
+ "sweater",
6496
+ "sweatshirt",
6497
+ "sweatshirts",
6498
+ "swedish",
6499
+ "sweet",
6500
+ "swimming",
6501
+ "swshn11898412",
6502
+ "swshn11914182",
6503
+ "swshn11924931",
6504
+ "syllabus",
6505
+ "system",
6506
+ "systems",
6507
+ "sz",
6508
+ "s\u2019s",
6509
+ "t",
6510
+ "t's",
6511
+ "t-",
6512
+ "t-shirt",
6513
+ "t.",
6514
+ "t1z",
6515
+ "t35l4",
6516
+ "t65",
6517
+ "t71",
6518
+ "ta",
6519
+ "table",
6520
+ "tag",
6521
+ "tags",
6522
+ "tal",
6523
+ "tale",
6524
+ "tam",
6525
+ "tank",
6526
+ "tape",
6527
+ "tar",
6528
+ "tariff",
6529
+ "tarot",
6530
+ "tax",
6531
+ "taxes",
6532
+ "taxiturqoise",
6533
+ "taxiyellow",
6534
+ "tb",
6535
+ "tc",
6536
+ "tch",
6537
+ "td.",
6538
+ "tea",
6539
+ "teal",
6540
+ "team",
6541
+ "team_monthly",
6542
+ "technical",
6543
+ "technology",
6544
+ "ted",
6545
+ "teddy",
6546
+ "tee",
6547
+ "tek",
6548
+ "tel",
6549
+ "tem",
6550
+ "template",
6551
+ "tenn",
6552
+ "tenn.",
6553
+ "ter",
6554
+ "termination",
6555
+ "terms",
6556
+ "tes",
6557
+ "tesla",
6558
+ "testemonial",
6559
+ "text",
6560
+ "texture",
6561
+ "tg",
6562
+ "than",
6563
+ "that",
6564
+ "that's",
6565
+ "that\u2019s",
6566
+ "the",
6567
+ "thecothinkers.com",
6568
+ "them",
6569
+ "themes",
6570
+ "there",
6571
+ "there's",
6572
+ "there\u2019s",
6573
+ "thermal",
6574
+ "these",
6575
+ "they",
6576
+ "things",
6577
+ "thinking",
6578
+ "this",
6579
+ "this's",
6580
+ "this\u2019s",
6581
+ "those",
6582
+ "though",
6583
+ "thread",
6584
+ "through",
6585
+ "ths",
6586
+ "tic",
6587
+ "ticket",
6588
+ "tickle",
6589
+ "tie",
6590
+ "tiger",
6591
+ "til",
6592
+ "tile",
6593
+ "tiles",
6594
+ "timberland",
6595
+ "time",
6596
+ "timesheet",
6597
+ "timetable",
6598
+ "tin",
6599
+ "tinted",
6600
+ "tip",
6601
+ "tisserand",
6602
+ "tiv",
6603
+ "tl",
6604
+ "tl2",
6605
+ "tle",
6606
+ "tm2602",
6607
+ "to",
6608
+ "toast",
6609
+ "today",
6610
+ "toe",
6611
+ "tokyo",
6612
+ "toll",
6613
+ "tolls",
6614
+ "tom",
6615
+ "tomato",
6616
+ "tomatoe",
6617
+ "ton",
6618
+ "tone",
6619
+ "tonkotsu",
6620
+ "toothpaste",
6621
+ "top",
6622
+ "topics",
6623
+ "topmato",
6624
+ "tor",
6625
+ "tos",
6626
+ "total",
6627
+ "touch",
6628
+ "tox",
6629
+ "toy",
6630
+ "tp",
6631
+ "tr",
6632
+ "tra",
6633
+ "trace",
6634
+ "tracked",
6635
+ "tracking",
6636
+ "trading",
6637
+ "traditional",
6638
+ "traffic",
6639
+ "train",
6640
+ "trainer",
6641
+ "training",
6642
+ "training/",
6643
+ "trans",
6644
+ "transaction",
6645
+ "transfer",
6646
+ "transformers",
6647
+ "translation_eng",
6648
+ "transport",
6649
+ "transportation",
6650
+ "tray",
6651
+ "tre",
6652
+ "treatment",
6653
+ "treats",
6654
+ "trees",
6655
+ "trendy",
6656
+ "tri",
6657
+ "triangle",
6658
+ "trituradora",
6659
+ "tro",
6660
+ "trucking",
6661
+ "trust",
6662
+ "try",
6663
+ "ts-",
6664
+ "ts2",
6665
+ "tshirt",
6666
+ "tshirts",
6667
+ "tso",
6668
+ "tsu",
6669
+ "tsy",
6670
+ "tte",
6671
+ "tty",
6672
+ "tube",
6673
+ "tubing",
6674
+ "tuna",
6675
+ "tunic",
6676
+ "tup",
6677
+ "turner",
6678
+ "tus",
6679
+ "twing",
6680
+ "two",
6681
+ "t\u2019s",
6682
+ "u",
6683
+ "u.",
6684
+ "ual",
6685
+ "uat",
6686
+ "ube",
6687
+ "uce",
6688
+ "uch",
6689
+ "uck",
6690
+ "uct",
6691
+ "udy",
6692
+ "uel",
6693
+ "uff",
6694
+ "ug.",
6695
+ "ugh",
6696
+ "ugo",
6697
+ "ugreen",
6698
+ "ui",
6699
+ "uit",
6700
+ "uk",
6701
+ "ul.",
6702
+ "uld",
6703
+ "ule",
6704
+ "ulk",
6705
+ "ull",
6706
+ "ult",
6707
+ "ultra",
6708
+ "uly",
6709
+ "ume",
6710
+ "umn",
6711
+ "ump",
6712
+ "un.",
6713
+ "una",
6714
+ "unclaimed",
6715
+ "und",
6716
+ "une",
6717
+ "uni",
6718
+ "unisex",
6719
+ "unit",
6720
+ "united",
6721
+ "universe",
6722
+ "unlimited",
6723
+ "unstoppables",
6724
+ "unt",
6725
+ "up",
6726
+ "updates",
6727
+ "upgraded",
6728
+ "upp",
6729
+ "ur-",
6730
+ "urbanstyle",
6731
+ "ure",
6732
+ "urg",
6733
+ "uri",
6734
+ "urs",
6735
+ "uru",
6736
+ "ury",
6737
+ "us",
6738
+ "us+",
6739
+ "us4",
6740
+ "usage",
6741
+ "usb",
6742
+ "usd",
6743
+ "usda",
6744
+ "use",
6745
+ "ush",
6746
+ "ust",
6747
+ "utc",
6748
+ "ute",
6749
+ "uth",
6750
+ "ux",
6751
+ "uxe",
6752
+ "v",
6753
+ "v.",
6754
+ "v.s",
6755
+ "v.s.",
6756
+ "v.v",
6757
+ "v00",
6758
+ "v1",
6759
+ "v2",
6760
+ "v29",
6761
+ "vLead",
6762
+ "v_v",
6763
+ "va",
6764
+ "va.",
6765
+ "val",
6766
+ "valley",
6767
+ "valleys2785",
6768
+ "van",
6769
+ "variator",
6770
+ "vas",
6771
+ "ve",
6772
+ "ved",
6773
+ "vegan",
6774
+ "vel",
6775
+ "ven",
6776
+ "vendor",
6777
+ "venison",
6778
+ "vente",
6779
+ "ver",
6780
+ "vest",
6781
+ "veterinary",
6782
+ "vi3",
6783
+ "via",
6784
+ "video",
6785
+ "videos/",
6786
+ "views",
6787
+ "vil",
6788
+ "vimcal",
6789
+ "vin",
6790
+ "vintage",
6791
+ "vinyl",
6792
+ "vio",
6793
+ "vis",
6794
+ "visible",
6795
+ "visitor",
6796
+ "vistaprint",
6797
+ "visual",
6798
+ "vivo",
6799
+ "vlead",
6800
+ "vn-21391",
6801
+ "vneck",
6802
+ "voile",
6803
+ "volodymyr",
6804
+ "voltage",
6805
+ "von",
6806
+ "vpost",
6807
+ "vps-873e8821.vps.ovh.ca",
6808
+ "vs",
6809
+ "vs.",
6810
+ "vs1",
6811
+ "vvs1",
6812
+ "w",
6813
+ "w's",
6814
+ "w.",
6815
+ "w/o",
6816
+ "w12",
6817
+ "w9",
6818
+ "wHITE",
6819
+ "waffle",
6820
+ "wait",
6821
+ "wal",
6822
+ "wall",
6823
+ "walnut",
6824
+ "wang",
6825
+ "want",
6826
+ "wanted",
6827
+ "wardrobe",
6828
+ "warehouse",
6829
+ "warm",
6830
+ "wars",
6831
+ "warwick",
6832
+ "was",
6833
+ "wash",
6834
+ "wash.",
6835
+ "washable",
6836
+ "watching",
6837
+ "water",
6838
+ "watercolor",
6839
+ "watercolour",
6840
+ "waterfields",
6841
+ "wavy",
6842
+ "wax",
6843
+ "way",
6844
+ "we",
6845
+ "web",
6846
+ "webinvestor",
6847
+ "website",
6848
+ "wedding",
6849
+ "week",
6850
+ "weighing",
6851
+ "wenxi",
6852
+ "wer",
6853
+ "were",
6854
+ "wesley",
6855
+ "westcott",
6856
+ "western",
6857
+ "wet",
6858
+ "wh",
6859
+ "what",
6860
+ "what's",
6861
+ "what\u2019s",
6862
+ "wheat",
6863
+ "when",
6864
+ "when's",
6865
+ "when\u2019s",
6866
+ "where",
6867
+ "where's",
6868
+ "where\u2019s",
6869
+ "which",
6870
+ "whip",
6871
+ "whit",
6872
+ "white",
6873
+ "who",
6874
+ "who's",
6875
+ "wholesale",
6876
+ "wholsale",
6877
+ "who\u2019s",
6878
+ "why",
6879
+ "why's",
6880
+ "why\u2019s",
6881
+ "wi",
6882
+ "will",
6883
+ "william",
6884
+ "williamsii",
6885
+ "window",
6886
+ "winged",
6887
+ "wings",
6888
+ "wired",
6889
+ "wis",
6890
+ "wis.",
6891
+ "with",
6892
+ "without",
6893
+ "wo",
6894
+ "woh",
6895
+ "women",
6896
+ "womens",
6897
+ "woocommerce",
6898
+ "wood",
6899
+ "wooden",
6900
+ "words",
6901
+ "work",
6902
+ "works",
6903
+ "workspace",
6904
+ "world",
6905
+ "would",
6906
+ "woven",
6907
+ "wpa7617",
6908
+ "wpq",
6909
+ "wr",
6910
+ "wrapped",
6911
+ "write",
6912
+ "wsh",
6913
+ "wts",
6914
+ "wwe",
6915
+ "w\u2019s",
6916
+ "x",
6917
+ "x$",
6918
+ "x&x",
6919
+ "x'",
6920
+ "x'x",
6921
+ "x'xxxx",
6922
+ "x-",
6923
+ "x.",
6924
+ "x.X",
6925
+ "x.d",
6926
+ "x.ddd",
6927
+ "x.x",
6928
+ "x.x.",
6929
+ "x/",
6930
+ "x/8/7/6",
6931
+ "x/d/d/d",
6932
+ "x/x",
6933
+ "x10",
6934
+ "x14",
6935
+ "x8",
6936
+ "xD",
6937
+ "xDD",
6938
+ "xX",
6939
+ "xXX",
6940
+ "xXXXX",
6941
+ "xXdxx",
6942
+ "xXxx",
6943
+ "xXxxx",
6944
+ "xXxxxx",
6945
+ "x_X",
6946
+ "x_d",
6947
+ "x_x",
6948
+ "xbox",
6949
+ "xd",
6950
+ "xdd",
6951
+ "xddd",
6952
+ "xdddd",
6953
+ "xddddxxxdd",
6954
+ "xdddxxxxdx",
6955
+ "xddxd",
6956
+ "xddxddxxd",
6957
+ "xddxddxxxx",
6958
+ "xddxdxdxxd",
6959
+ "xddxxdxdxx",
6960
+ "xddxxdxxxd",
6961
+ "xddxxdxxxx",
6962
+ "xddxxxddxx",
6963
+ "xddxxxdxxd",
6964
+ "xddxxxx",
6965
+ "xddxxxxd",
6966
+ "xdxdddd",
6967
+ "xdxx",
6968
+ "xdxxxx",
6969
+ "xed",
6970
+ "xerophyte",
6971
+ "xes",
6972
+ "xi/2022",
6973
+ "xj",
6974
+ "xl",
6975
+ "xmirugai",
6976
+ "xr",
6977
+ "xs",
6978
+ "xt1",
6979
+ "xw1",
6980
+ "xx",
6981
+ "xx'",
6982
+ "xx'x",
6983
+ "xx'xx",
6984
+ "xx'xxxx",
6985
+ "xx-",
6986
+ "xx-dddd",
6987
+ "xx.",
6988
+ "xx.d",
6989
+ "xx/dddd",
6990
+ "xxd",
6991
+ "xxdd",
6992
+ "xxddd",
6993
+ "xxdddd",
6994
+ "xxddx",
6995
+ "xxddxdx",
6996
+ "xxdx",
6997
+ "xxdxd",
6998
+ "xxdxx",
6999
+ "xxl",
7000
+ "xxx",
7001
+ "xxx'dd",
7002
+ "xxx'x",
7003
+ "xxx(xx",
7004
+ "xxx,dddxxxx",
7005
+ "xxx-",
7006
+ "xxx-d",
7007
+ "xxx-dddd",
7008
+ "xxx-dddxdddd.xxx.xxx.xx",
7009
+ "xxx.",
7010
+ "xxx/",
7011
+ "xxx/dd",
7012
+ "xxx/xx",
7013
+ "xxx_xxxx",
7014
+ "xxxd",
7015
+ "xxxddd.x",
7016
+ "xxxdddd",
7017
+ "xxxx",
7018
+ "xxxx'",
7019
+ "xxxx'x",
7020
+ "xxxx(XX",
7021
+ "xxxx(Xxxxx",
7022
+ "xxxx(x",
7023
+ "xxxx(xx",
7024
+ "xxxx(xxxx",
7025
+ "xxxx+",
7026
+ "xxxx,$ddd",
7027
+ "xxxx,d.d",
7028
+ "xxxx-",
7029
+ "xxxx-xx.xxx",
7030
+ "xxxx-xxxx.xxx",
7031
+ "xxxx./xxx",
7032
+ "xxxx.xxx",
7033
+ "xxxx.xxxx",
7034
+ "xxxx/",
7035
+ "xxxx/dd/dd/dd",
7036
+ "xxxx:-",
7037
+ "xxxx://xxx.xxxx.xxx",
7038
+ "xxxx://xxxx.xxx/xxxx-xxx-xxxx-xxx-xxxx-xx",
7039
+ "xxxx:d",
7040
+ "xxxxX",
7041
+ "xxxxXxxx",
7042
+ "xxxx_ddddx",
7043
+ "xxxx_xxx",
7044
+ "xxxx_xxxx",
7045
+ "xxxxd",
7046
+ "xxxxdd",
7047
+ "xxxxdddd",
7048
+ "xxxxdxddd",
7049
+ "xxxx\u2019",
7050
+ "xxxx\u2019x",
7051
+ "xxxx\u201e\u00a2",
7052
+ "xxx\u2019x",
7053
+ "xx\u2019",
7054
+ "xx\u2019x",
7055
+ "xx\u2019xx",
7056
+ "x\u2019",
7057
+ "x\u2019x",
7058
+ "x\u2019xxxx",
7059
+ "x\ufe35x",
7060
+ "y",
7061
+ "y'",
7062
+ "y's",
7063
+ "y.",
7064
+ "yal",
7065
+ "yam",
7066
+ "yan",
7067
+ "yasmina",
7068
+ "yeah",
7069
+ "yearly",
7070
+ "years",
7071
+ "yellow",
7072
+ "yeong",
7073
+ "yer",
7074
+ "yet",
7075
+ "yle",
7076
+ "ylw",
7077
+ "yodel",
7078
+ "yolk",
7079
+ "york",
7080
+ "yosemite",
7081
+ "you",
7082
+ "your",
7083
+ "your-",
7084
+ "youth",
7085
+ "yrs",
7086
+ "ysl",
7087
+ "yte",
7088
+ "yuichiro",
7089
+ "yza",
7090
+ "y\u2019",
7091
+ "y\u2019s",
7092
+ "z",
7093
+ "z.",
7094
+ "z5e",
7095
+ "z6",
7096
+ "zed",
7097
+ "zen",
7098
+ "zer",
7099
+ "zero",
7100
+ "zerorised",
7101
+ "zes",
7102
+ "zespri",
7103
+ "zhuzhou",
7104
+ "zinfandel",
7105
+ "zip",
7106
+ "zon",
7107
+ "zuru",
7108
+ "|",
7109
+ "|Pulse",
7110
+ "|Xxxxx",
7111
+ "|pulse",
7112
+ "|xxxx",
7113
+ "}",
7114
+ "\u00a0",
7115
+ "\u00a3",
7116
+ "\u00ac",
7117
+ "\u00ac_\u00ac",
7118
+ "\u00ae",
7119
+ "\u00af",
7120
+ "\u00af\\(x)/\u00af",
7121
+ "\u00af\\(\u30c4)/\u00af",
7122
+ "\u00b0",
7123
+ "\u00b0C.",
7124
+ "\u00b0F.",
7125
+ "\u00b0K.",
7126
+ "\u00b0X.",
7127
+ "\u00b0c.",
7128
+ "\u00b0f.",
7129
+ "\u00b0k.",
7130
+ "\u00b0x.",
7131
+ "\u00c8ME",
7132
+ "\u00d7",
7133
+ "\u00e2\u201e\u00a2",
7134
+ "\u00e4",
7135
+ "\u00e4.",
7136
+ "\u00e7as",
7137
+ "\u00e8me",
7138
+ "\u00f6",
7139
+ "\u00f6.",
7140
+ "\u00fc",
7141
+ "\u00fc.",
7142
+ "\u0ca0",
7143
+ "\u0ca0_\u0ca0",
7144
+ "\u0ca0\ufe35\u0ca0",
7145
+ "\u2013",
7146
+ "\u2014",
7147
+ "\u2018",
7148
+ "\u2018S",
7149
+ "\u2018X",
7150
+ "\u2018s",
7151
+ "\u2018x",
7152
+ "\u2019",
7153
+ "\u2019-(",
7154
+ "\u2019-)",
7155
+ "\u2019Cause",
7156
+ "\u2019Cos",
7157
+ "\u2019Coz",
7158
+ "\u2019Cuz",
7159
+ "\u2019S",
7160
+ "\u2019X",
7161
+ "\u2019Xxx",
7162
+ "\u2019Xxxxx",
7163
+ "\u2019am",
7164
+ "\u2019bout",
7165
+ "\u2019cause",
7166
+ "\u2019cos",
7167
+ "\u2019coz",
7168
+ "\u2019cuz",
7169
+ "\u2019d",
7170
+ "\u2019em",
7171
+ "\u2019ll",
7172
+ "\u2019m",
7173
+ "\u2019nuff",
7174
+ "\u2019re",
7175
+ "\u2019s",
7176
+ "\u2019ve",
7177
+ "\u2019x",
7178
+ "\u2019xx",
7179
+ "\u2019xxx",
7180
+ "\u2019xxxx",
7181
+ "\u2019y",
7182
+ "\u2019\u2019",
7183
+ "\u201c",
7184
+ "\u2501",
7185
+ "\u253b",
7186
+ "\u253b\u2501\u253b",
7187
+ "\u256f",
7188
+ "\u25a1",
7189
+ "\ufe35",
7190
+ "\uff09"
7191
+ ]
vocab/vectors ADDED
Binary file (128 Bytes). View file
 
vocab/vectors.cfg ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+ "mode":"default"
3
+ }