andreids commited on
Commit
9943fb4
·
1 Parent(s): e63e859

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_textcat_multilabel_demo-any-py3-none-any.whl filter=lfs diff=lfs merge=lfs -text
36
+ textcat_multilabel/model filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - spacy
4
+ - text-classification
5
+ language:
6
+ - en
7
+ model-index:
8
+ - name: en_textcat_multilabel_demo
9
+ results: []
10
+ ---
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_multilabel"]
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_multilabel]
24
+ factory = "textcat_multilabel"
25
+ scorer = {"@scorers":"spacy.textcat_multilabel_scorer.v1"}
26
+ threshold = 0.5
27
+
28
+ [components.textcat_multilabel.model]
29
+ @architectures = "spacy.TextCatEnsemble.v2"
30
+ nO = null
31
+
32
+ [components.textcat_multilabel.model.linear_model]
33
+ @architectures = "spacy.TextCatBOW.v1"
34
+ exclusive_classes = false
35
+ ngram_size = 1
36
+ no_output_layer = false
37
+ nO = null
38
+
39
+ [components.textcat_multilabel.model.tok2vec]
40
+ @architectures = "spacy.Tok2Vec.v2"
41
+
42
+ [components.textcat_multilabel.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_multilabel.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 = 2000
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 = 1.0
119
+ cats_score_desc = null
120
+ cats_micro_p = null
121
+ cats_micro_r = null
122
+ cats_micro_f = null
123
+ cats_macro_p = null
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_textcat_multilabel_demo-any-py3-none-any.whl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:834bacd45b3efd4b2ff8035a3254797e1bdb177b614aa7e4d5d868e235551f41
3
+ size 2617494
meta.json ADDED
@@ -0,0 +1,109 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lang":"en",
3
+ "name":"textcat_multilabel_demo",
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_multilabel":[
20
+ "shirt",
21
+ "decor",
22
+ "iphone",
23
+ "balloon",
24
+ "cream",
25
+ "socks",
26
+ "pants",
27
+ "shampoo",
28
+ "toy",
29
+ "sweater"
30
+ ]
31
+ },
32
+ "pipeline":[
33
+ "textcat_multilabel"
34
+ ],
35
+ "components":[
36
+ "textcat_multilabel"
37
+ ],
38
+ "disabled":[
39
+
40
+ ],
41
+ "performance":{
42
+ "cats_score":0.9594542729,
43
+ "cats_score_desc":"macro AUC",
44
+ "cats_micro_p":0.8555891628,
45
+ "cats_micro_r":0.8537485953,
46
+ "cats_micro_f":0.8546678881,
47
+ "cats_macro_p":0.8467342177,
48
+ "cats_macro_r":0.8687908218,
49
+ "cats_macro_f":0.8489179669,
50
+ "cats_macro_auc":0.9594542729,
51
+ "cats_f_per_type":{
52
+ "shirt":{
53
+ "p":1.0,
54
+ "r":0.9991258741,
55
+ "f":0.999562746
56
+ },
57
+ "decor":{
58
+ "p":0.5247226112,
59
+ "r":0.9878320827,
60
+ "f":0.6853806107
61
+ },
62
+ "iphone":{
63
+ "p":1.0,
64
+ "r":0.9911504425,
65
+ "f":0.9955555556
66
+ },
67
+ "balloon":{
68
+ "p":0.9957557707,
69
+ "r":0.7522641616,
70
+ "f":0.8570513026
71
+ },
72
+ "cream":{
73
+ "p":1.0,
74
+ "r":0.9753483387,
75
+ "f":0.9875203473
76
+ },
77
+ "socks":{
78
+ "p":0.9828125,
79
+ "r":1.0,
80
+ "f":0.9913317573
81
+ },
82
+ "pants":{
83
+ "p":0.9987333756,
84
+ "r":0.9887147335,
85
+ "f":0.9936988028
86
+ },
87
+ "shampoo":{
88
+ "p":0.0,
89
+ "r":0.0,
90
+ "f":0.0
91
+ },
92
+ "toy":{
93
+ "p":1.0,
94
+ "r":0.9934725849,
95
+ "f":0.9967256058
96
+ },
97
+ "sweater":{
98
+ "p":0.9653179191,
99
+ "r":1.0,
100
+ "f":0.9823529412
101
+ }
102
+ },
103
+ "cats_macro_auc_per_type":0.0,
104
+ "textcat_multilabel_loss":1.6177284059
105
+ },
106
+ "requirements":[
107
+
108
+ ]
109
+ }
textcat_multilabel/cfg ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "labels":[
3
+ "shirt",
4
+ "decor",
5
+ "iphone",
6
+ "balloon",
7
+ "cream",
8
+ "socks",
9
+ "pants",
10
+ "shampoo",
11
+ "toy",
12
+ "sweater"
13
+ ],
14
+ "threshold":0.5
15
+ }
textcat_multilabel/model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5eb35519c7e6d69f75c25f8249b6863f1d0695325eaf55b9d4329e46de41449c
3
+ size 13190504
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,5333 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ "\t",
3
+ "\n",
4
+ " ",
5
+ " ",
6
+ "!",
7
+ "\"",
8
+ "\"x5",
9
+ "$",
10
+ "%",
11
+ "&",
12
+ "'",
13
+ "''",
14
+ "'-(",
15
+ "'-)",
16
+ "'Cause",
17
+ "'Cos",
18
+ "'Coz",
19
+ "'Cuz",
20
+ "'S",
21
+ "'X",
22
+ "'Xxx",
23
+ "'Xxxxx",
24
+ "'am",
25
+ "'bout",
26
+ "'cause",
27
+ "'cos",
28
+ "'coz",
29
+ "'cuz",
30
+ "'d",
31
+ "'em",
32
+ "'ll",
33
+ "'m",
34
+ "'nuff",
35
+ "'re",
36
+ "'s",
37
+ "'ve",
38
+ "'x",
39
+ "'xx",
40
+ "'xxx",
41
+ "'xxxx",
42
+ "'y",
43
+ "(",
44
+ "(((",
45
+ "(*>",
46
+ "(*_*)",
47
+ "(-8",
48
+ "(-:",
49
+ "(-;",
50
+ "(-_-)",
51
+ "(-d",
52
+ "(._.)",
53
+ "(:",
54
+ "(;",
55
+ "(=",
56
+ "(>_<)",
57
+ "(^_^)",
58
+ "(o:",
59
+ "(x:",
60
+ "(x_x)",
61
+ "(\u00ac_\u00ac)",
62
+ "(\u0ca0_\u0ca0)",
63
+ "(\u256f\u00b0\u25a1\u00b0\uff09\u256f\ufe35\u253b\u2501\u253b",
64
+ ")",
65
+ ")))",
66
+ ")-:",
67
+ ")/\u00af",
68
+ "):",
69
+ "*",
70
+ "+",
71
+ ",",
72
+ "-",
73
+ "-((",
74
+ "-))",
75
+ "--",
76
+ "-/",
77
+ "-0",
78
+ "-11",
79
+ "-13",
80
+ "-3",
81
+ "-8",
82
+ "-D",
83
+ "-May",
84
+ "-O",
85
+ "-P",
86
+ "-X",
87
+ "-Xxx",
88
+ "-_-",
89
+ "-__-",
90
+ "-a",
91
+ "-d",
92
+ "-may",
93
+ "-o",
94
+ "-p",
95
+ "-x",
96
+ "-xxx",
97
+ "-|",
98
+ ".",
99
+ "...",
100
+ ".00",
101
+ ".05",
102
+ ".10",
103
+ ".20",
104
+ ".30",
105
+ ".80",
106
+ ".99",
107
+ ".C.",
108
+ ".D.",
109
+ ".E.",
110
+ ".G.",
111
+ ".H.",
112
+ ".J.",
113
+ ".M.",
114
+ ".Y.",
115
+ "._.",
116
+ ".e.",
117
+ ".g.",
118
+ ".m.",
119
+ ".s.",
120
+ "/",
121
+ "//",
122
+ "/12",
123
+ "/28",
124
+ "/3",
125
+ "/d",
126
+ "/or",
127
+ "0",
128
+ "0,3",
129
+ "0.0",
130
+ "0.o",
131
+ "000",
132
+ "003",
133
+ "004",
134
+ "005",
135
+ "019",
136
+ "021",
137
+ "022",
138
+ "023",
139
+ "032",
140
+ "04.08.2023",
141
+ "040",
142
+ "05.08.2022",
143
+ "058",
144
+ "0ML",
145
+ "0_0",
146
+ "0_o",
147
+ "0ml",
148
+ "0pc",
149
+ "0th",
150
+ "1",
151
+ "1,090.80",
152
+ "1.2",
153
+ "1.5",
154
+ "1/12",
155
+ "1/28",
156
+ "1/4",
157
+ "10",
158
+ "100",
159
+ "1000ml",
160
+ "1000pcs",
161
+ "100ML",
162
+ "100ml",
163
+ "100pcs",
164
+ "10a.m",
165
+ "10a.m.",
166
+ "10p.m",
167
+ "10p.m.",
168
+ "10pc",
169
+ "11",
170
+ "1159",
171
+ "1183",
172
+ "11a.m",
173
+ "11a.m.",
174
+ "11p.m",
175
+ "11p.m.",
176
+ "12",
177
+ "12,7",
178
+ "122",
179
+ "12423",
180
+ "12428",
181
+ "124504307501026757",
182
+ "128",
183
+ "12AX-13",
184
+ "12V/24v",
185
+ "12a.m",
186
+ "12a.m.",
187
+ "12ax-13",
188
+ "12p.m",
189
+ "12p.m.",
190
+ "12v/24v",
191
+ "13",
192
+ "14",
193
+ "15",
194
+ "159",
195
+ "16",
196
+ "16.5",
197
+ "17,5",
198
+ "17.05",
199
+ "18",
200
+ "18.00",
201
+ "182",
202
+ "183",
203
+ "19",
204
+ "19,1",
205
+ "1970",
206
+ "1984",
207
+ "1a.m",
208
+ "1a.m.",
209
+ "1p.m",
210
+ "1p.m.",
211
+ "1st",
212
+ "2",
213
+ "2,7",
214
+ "2.5",
215
+ "2/2",
216
+ "20",
217
+ "20,3",
218
+ "20.00",
219
+ "200",
220
+ "2000141399511",
221
+ "2000141451912",
222
+ "2000143537515",
223
+ "2005",
224
+ "200ml",
225
+ "2019",
226
+ "202",
227
+ "2021",
228
+ "2022",
229
+ "20pc",
230
+ "21",
231
+ "22",
232
+ "225ml",
233
+ "23",
234
+ "236ml",
235
+ "24",
236
+ "24.99",
237
+ "246",
238
+ "24v",
239
+ "25",
240
+ "250gsm",
241
+ "26",
242
+ "269",
243
+ "28",
244
+ "28.00",
245
+ "280P",
246
+ "280POL",
247
+ "280POLY",
248
+ "280p",
249
+ "280pol",
250
+ "280poly",
251
+ "2E96",
252
+ "2XL",
253
+ "2XS",
254
+ "2Y",
255
+ "2a.m",
256
+ "2a.m.",
257
+ "2e96",
258
+ "2p.m",
259
+ "2p.m.",
260
+ "2pcs\u3011Solar",
261
+ "2pcs\u3011solar",
262
+ "2xl",
263
+ "2xs",
264
+ "2y",
265
+ "3",
266
+ "3.5",
267
+ "3/4",
268
+ "30",
269
+ "300",
270
+ "3097808347",
271
+ "31058",
272
+ "3108254839",
273
+ "32",
274
+ "33",
275
+ "333",
276
+ "34",
277
+ "347",
278
+ "350gsm",
279
+ "36",
280
+ "37",
281
+ "38",
282
+ "39",
283
+ "3D",
284
+ "3XL",
285
+ "3XS",
286
+ "3Y",
287
+ "3a.m",
288
+ "3a.m.",
289
+ "3d",
290
+ "3ml",
291
+ "3p.m",
292
+ "3p.m.",
293
+ "3x3",
294
+ "3x3x3",
295
+ "3xl",
296
+ "3xs",
297
+ "3y",
298
+ "4",
299
+ "4\"x5",
300
+ "40",
301
+ "400",
302
+ "400ml",
303
+ "400x600",
304
+ "40th",
305
+ "41",
306
+ "41072044933269",
307
+ "412",
308
+ "42",
309
+ "423",
310
+ "42435848372456",
311
+ "42435922362600",
312
+ "428",
313
+ "432",
314
+ "44",
315
+ "4432",
316
+ "45",
317
+ "456",
318
+ "473ml",
319
+ "490",
320
+ "490ml",
321
+ "4XL",
322
+ "4XS",
323
+ "4Y",
324
+ "4a.m",
325
+ "4a.m.",
326
+ "4p.m",
327
+ "4p.m.",
328
+ "4x6",
329
+ "4xl",
330
+ "4xs",
331
+ "4y",
332
+ "5",
333
+ "5.5",
334
+ "50",
335
+ "500",
336
+ "500x600",
337
+ "500x750",
338
+ "50pc",
339
+ "511",
340
+ "512",
341
+ "515",
342
+ "589",
343
+ "5Inch",
344
+ "5L4",
345
+ "5Y",
346
+ "5a.m",
347
+ "5a.m.",
348
+ "5inch",
349
+ "5l4",
350
+ "5ml",
351
+ "5p.m",
352
+ "5p.m.",
353
+ "5y",
354
+ "6",
355
+ "6\"x2.5",
356
+ "6.5",
357
+ "600",
358
+ "600x400",
359
+ "600x600",
360
+ "600x800",
361
+ "600x900",
362
+ "60MPH",
363
+ "60mph",
364
+ "6109.10",
365
+ "6110.20",
366
+ "6206.30",
367
+ "63000",
368
+ "63V00",
369
+ "63v00",
370
+ "67",
371
+ "6PC",
372
+ "6W",
373
+ "6Y",
374
+ "6a.m",
375
+ "6a.m.",
376
+ "6ml",
377
+ "6p.m",
378
+ "6p.m.",
379
+ "6pc",
380
+ "6w",
381
+ "6y",
382
+ "7",
383
+ "7,5",
384
+ "7.5",
385
+ "700",
386
+ "700x700",
387
+ "72",
388
+ "750",
389
+ "754",
390
+ "757",
391
+ "75SG-11",
392
+ "75sg-11",
393
+ "76",
394
+ "765",
395
+ "794",
396
+ "7a.m",
397
+ "7a.m.",
398
+ "7p.m",
399
+ "7p.m.",
400
+ "8",
401
+ "8)",
402
+ "8-",
403
+ "8-)",
404
+ "8-D",
405
+ "8-d",
406
+ "800",
407
+ "800x800",
408
+ "80P",
409
+ "80p",
410
+ "8150591015499589",
411
+ "8150711639669589",
412
+ "8150831886579589",
413
+ "8150899142219589",
414
+ "8151908232967754",
415
+ "8153244425999589",
416
+ "8154283708689589",
417
+ "8156736629569589",
418
+ "8156926051129589",
419
+ "839",
420
+ "83922E45",
421
+ "83922e45",
422
+ "87-",
423
+ "88500",
424
+ "88600",
425
+ "887",
426
+ "8BD69D478AD7",
427
+ "8D",
428
+ "8Y",
429
+ "8a.m",
430
+ "8a.m.",
431
+ "8bd69d478ad7",
432
+ "8d",
433
+ "8p.m",
434
+ "8p.m.",
435
+ "8y",
436
+ "9",
437
+ "9,1",
438
+ "900",
439
+ "900x600",
440
+ "90s",
441
+ "912",
442
+ "929",
443
+ "931",
444
+ "946ml",
445
+ "969",
446
+ "970",
447
+ "984",
448
+ "989",
449
+ "999",
450
+ "9E87-",
451
+ "9a.m",
452
+ "9a.m.",
453
+ "9e87-",
454
+ "9p.m",
455
+ "9p.m.",
456
+ ":",
457
+ ":'(",
458
+ ":')",
459
+ ":'-(",
460
+ ":'-)",
461
+ ":(",
462
+ ":((",
463
+ ":(((",
464
+ ":()",
465
+ ":)",
466
+ ":))",
467
+ ":)))",
468
+ ":*",
469
+ ":-(",
470
+ ":-((",
471
+ ":-(((",
472
+ ":-)",
473
+ ":-))",
474
+ ":-)))",
475
+ ":-*",
476
+ ":-/",
477
+ ":-0",
478
+ ":-3",
479
+ ":->",
480
+ ":-D",
481
+ ":-O",
482
+ ":-P",
483
+ ":-X",
484
+ ":-]",
485
+ ":-d",
486
+ ":-o",
487
+ ":-p",
488
+ ":-x",
489
+ ":-|",
490
+ ":-}",
491
+ ":/",
492
+ ":0",
493
+ ":1",
494
+ ":3",
495
+ ":>",
496
+ ":D",
497
+ ":O",
498
+ ":P",
499
+ ":X",
500
+ ":]",
501
+ ":d",
502
+ ":o",
503
+ ":o)",
504
+ ":p",
505
+ ":x",
506
+ ":x)",
507
+ ":|",
508
+ ":}",
509
+ ":\u2019(",
510
+ ":\u2019)",
511
+ ":\u2019-(",
512
+ ":\u2019-)",
513
+ ";",
514
+ ";)",
515
+ ";-)",
516
+ ";-D",
517
+ ";-X",
518
+ ";-d",
519
+ ";D",
520
+ ";X",
521
+ ";_;",
522
+ ";d",
523
+ "<",
524
+ "<.<",
525
+ "</3",
526
+ "</d",
527
+ "<3",
528
+ "<33",
529
+ "<333",
530
+ "<d",
531
+ "<dd",
532
+ "<ddd",
533
+ "<space>",
534
+ "<xxxx>",
535
+ "=",
536
+ "=(",
537
+ "=)",
538
+ "=/",
539
+ "=3",
540
+ "=D",
541
+ "=X",
542
+ "=[",
543
+ "=]",
544
+ "=d",
545
+ "=|",
546
+ ">",
547
+ ">.<",
548
+ ">.>",
549
+ ">:(",
550
+ ">:o",
551
+ ">:x",
552
+ "><(((*>",
553
+ "@",
554
+ "@_@",
555
+ "A",
556
+ "A3",
557
+ "A4",
558
+ "ABCs",
559
+ "ABS",
560
+ "ACK",
561
+ "AD7",
562
+ "AFE",
563
+ "ALL",
564
+ "AMY",
565
+ "APC",
566
+ "ASE",
567
+ "Abe",
568
+ "Academy",
569
+ "Accessories",
570
+ "Acid",
571
+ "Acrylic",
572
+ "Action",
573
+ "Activity",
574
+ "Add",
575
+ "Addition",
576
+ "Adidas",
577
+ "Adm",
578
+ "Adm.",
579
+ "Adoucissant",
580
+ "Adult",
581
+ "Ages",
582
+ "Aging",
583
+ "Agnes",
584
+ "Ai",
585
+ "Air",
586
+ "Ak",
587
+ "Ak.",
588
+ "Ala",
589
+ "Ala.",
590
+ "Alabama",
591
+ "Alandy",
592
+ "Alaska",
593
+ "All",
594
+ "Almohada",
595
+ "Alphabets/",
596
+ "Alphonse",
597
+ "Alternate",
598
+ "Alu",
599
+ "Aluminium",
600
+ "Amber",
601
+ "Amethyst",
602
+ "Amil",
603
+ "Aminalize",
604
+ "Ancient",
605
+ "Angel",
606
+ "Angels",
607
+ "Animal",
608
+ "Animals",
609
+ "Animaux",
610
+ "Anime",
611
+ "Anti",
612
+ "Apple",
613
+ "Apr",
614
+ "Apr.",
615
+ "April",
616
+ "Aqua",
617
+ "Archie",
618
+ "Arctic",
619
+ "Are",
620
+ "Ariz",
621
+ "Ariz.",
622
+ "Arizona",
623
+ "Ark",
624
+ "Ark.",
625
+ "Arkansas",
626
+ "Armadillo",
627
+ "Armor",
628
+ "Aron",
629
+ "Art",
630
+ "As",
631
+ "Ash",
632
+ "Asian",
633
+ "Attack",
634
+ "Auction",
635
+ "Aug",
636
+ "Aug.",
637
+ "Augen",
638
+ "August",
639
+ "Automatic",
640
+ "Autumn",
641
+ "Avery",
642
+ "Axolotl",
643
+ "Axolotl-",
644
+ "B",
645
+ "BCs",
646
+ "BEL",
647
+ "BLACK",
648
+ "BNWTs",
649
+ "BO38246",
650
+ "Babs",
651
+ "Baby",
652
+ "Back",
653
+ "Backpack",
654
+ "Bag",
655
+ "Baiden",
656
+ "Baking",
657
+ "Balance",
658
+ "Ball",
659
+ "Balloon",
660
+ "Balloons",
661
+ "Ban",
662
+ "Bandana",
663
+ "Banner",
664
+ "Baptism",
665
+ "Bara",
666
+ "Barbe",
667
+ "Barbour",
668
+ "Barley",
669
+ "Basic",
670
+ "Basics",
671
+ "Batcopter",
672
+ "Batman",
673
+ "Batteries",
674
+ "Bear",
675
+ "Bearded",
676
+ "Beautifully",
677
+ "Beaver",
678
+ "Bee",
679
+ "Beech",
680
+ "Beige",
681
+ "Believe",
682
+ "Bell",
683
+ "Bella",
684
+ "Belle",
685
+ "Belly",
686
+ "Ben",
687
+ "Bergit",
688
+ "Berry",
689
+ "Betty",
690
+ "Beula",
691
+ "Bigfoot",
692
+ "Bird",
693
+ "Birthday",
694
+ "Biscuit",
695
+ "Black",
696
+ "Blend",
697
+ "Bloody",
698
+ "Blue",
699
+ "Bluey",
700
+ "Blush",
701
+ "Board",
702
+ "Boba",
703
+ "Bobo",
704
+ "Body",
705
+ "Bodyshell",
706
+ "Bois",
707
+ "Bolas",
708
+ "Bold",
709
+ "Bolsas",
710
+ "Boop",
711
+ "Boss",
712
+ "Bow",
713
+ "Bowser",
714
+ "Box",
715
+ "Boxed",
716
+ "Boy",
717
+ "Boys",
718
+ "Brand",
719
+ "Bread",
720
+ "Bridal",
721
+ "Britta",
722
+ "Broken",
723
+ "Bros",
724
+ "Bros.",
725
+ "Brown",
726
+ "Bruce",
727
+ "Brush",
728
+ "Bubba",
729
+ "Bubble",
730
+ "Buddy",
731
+ "Buds",
732
+ "Buffalo",
733
+ "Buggy",
734
+ "Bugs",
735
+ "Bulgarian",
736
+ "Bumblebee",
737
+ "Burnt",
738
+ "Buttercream",
739
+ "Butterflies",
740
+ "Butterfly",
741
+ "Buy",
742
+ "By",
743
+ "C",
744
+ "C'm",
745
+ "C++",
746
+ "C.",
747
+ "C01",
748
+ "C72",
749
+ "CAL",
750
+ "CASE",
751
+ "CD",
752
+ "CHIA",
753
+ "CHICK",
754
+ "CLEAR",
755
+ "COMEX",
756
+ "CREAM",
757
+ "CT71",
758
+ "CTS2",
759
+ "CVD",
760
+ "Ca",
761
+ "Cable",
762
+ "Cactacea",
763
+ "Cactaceae",
764
+ "Cacti",
765
+ "Cake",
766
+ "Calif",
767
+ "Calif.",
768
+ "California",
769
+ "Call",
770
+ "Camel",
771
+ "Camilo",
772
+ "Can",
773
+ "Canda",
774
+ "Canvas",
775
+ "Car",
776
+ "Caramel",
777
+ "Cardigan",
778
+ "Carlos",
779
+ "Carmelita",
780
+ "Carnage",
781
+ "Carol",
782
+ "Cases",
783
+ "Cashmere",
784
+ "Cat",
785
+ "Caterpillar",
786
+ "Caticorn",
787
+ "Cause",
788
+ "Celestina",
789
+ "Celestite",
790
+ "Ceramic",
791
+ "Chairs",
792
+ "Chalk",
793
+ "Chaps",
794
+ "Characters",
795
+ "Charcoal",
796
+ "Charge",
797
+ "Charity",
798
+ "Chasman",
799
+ "Chicken",
800
+ "Chicken-",
801
+ "Child",
802
+ "Children",
803
+ "Chinchilla",
804
+ "Chinese",
805
+ "Chloe",
806
+ "Chocolate",
807
+ "Choose",
808
+ "Christening",
809
+ "Christmas",
810
+ "Chuey",
811
+ "Cigar",
812
+ "Citron",
813
+ "City",
814
+ "Classic",
815
+ "Claus",
816
+ "Clear",
817
+ "Clip",
818
+ "Clips",
819
+ "Clock",
820
+ "Cloth",
821
+ "Clothing",
822
+ "Co",
823
+ "Co.",
824
+ "Cobra",
825
+ "Cocoa",
826
+ "Code",
827
+ "Collar",
828
+ "Collection",
829
+ "Collector",
830
+ "Colo",
831
+ "Colo.",
832
+ "Color",
833
+ "ColorCAUTION",
834
+ "Colorado",
835
+ "Colors",
836
+ "Colour",
837
+ "Combination",
838
+ "Come",
839
+ "Comfy",
840
+ "Comic",
841
+ "Comics",
842
+ "Commonly",
843
+ "Communion",
844
+ "Concrete",
845
+ "Cone",
846
+ "Confirmation",
847
+ "Conn",
848
+ "Conn.",
849
+ "Connecticut",
850
+ "Connor",
851
+ "Copiapoa",
852
+ "Cor",
853
+ "Corgi",
854
+ "Corp",
855
+ "Corp.",
856
+ "Cos",
857
+ "Cotton",
858
+ "Could",
859
+ "Course",
860
+ "Cow",
861
+ "Cowgirl",
862
+ "Coz",
863
+ "Crab",
864
+ "Cracked",
865
+ "Crafts",
866
+ "Crazy",
867
+ "Cream",
868
+ "Creator",
869
+ "Crewneck",
870
+ "Crop",
871
+ "Cross",
872
+ "Cube",
873
+ "Cubo",
874
+ "Cuencos",
875
+ "Cuff",
876
+ "Cuffed",
877
+ "Cult",
878
+ "Curious",
879
+ "Curry",
880
+ "Cushion",
881
+ "Cust",
882
+ "Custom",
883
+ "Customised",
884
+ "Customize",
885
+ "Cute",
886
+ "Cuz",
887
+ "Cyber",
888
+ "Cybersecurity",
889
+ "Cybertron",
890
+ "Cyberverse",
891
+ "C\u2019m",
892
+ "D",
893
+ "D.",
894
+ "D.C.",
895
+ "D06",
896
+ "D4UWS8001090666765",
897
+ "DC",
898
+ "DINGDING",
899
+ "DIY",
900
+ "DRY",
901
+ "DRY-",
902
+ "DWF",
903
+ "Dalmatian",
904
+ "Dancer",
905
+ "Dare",
906
+ "Dark",
907
+ "Death",
908
+ "Dec",
909
+ "Dec.",
910
+ "December",
911
+ "Decor",
912
+ "Decoration",
913
+ "Decorations",
914
+ "Decorativa",
915
+ "Decorativas",
916
+ "Decorative",
917
+ "Decoupes",
918
+ "Deep",
919
+ "Deeto",
920
+ "Del",
921
+ "Del.",
922
+ "Delaware",
923
+ "Delivery",
924
+ "Desert",
925
+ "Design",
926
+ "Designs",
927
+ "Devor\u00e9",
928
+ "Dexter",
929
+ "Did",
930
+ "Dining",
931
+ "Dinosaur",
932
+ "Dinosaurier",
933
+ "Dinosaurs",
934
+ "Director",
935
+ "Disco",
936
+ "Discount",
937
+ "Dish",
938
+ "Disney",
939
+ "Diwali",
940
+ "Dixie",
941
+ "Do",
942
+ "Does",
943
+ "Dog",
944
+ "Doin",
945
+ "Doin'",
946
+ "Doin\u2019",
947
+ "Doll",
948
+ "Dollgraduation",
949
+ "Dolls",
950
+ "Domino",
951
+ "Dominoes",
952
+ "Donkey",
953
+ "Doos",
954
+ "Dr",
955
+ "Dr.",
956
+ "Dragon",
957
+ "Dragonfly",
958
+ "Drella",
959
+ "Dress",
960
+ "Dried",
961
+ "Drifit",
962
+ "Drive",
963
+ "Dry",
964
+ "Duck",
965
+ "Dustin",
966
+ "Dusty",
967
+ "Dye",
968
+ "E",
969
+ "E.G.",
970
+ "E.g",
971
+ "E.g.",
972
+ "E45",
973
+ "E96",
974
+ "EAM",
975
+ "EAR",
976
+ "EASTER",
977
+ "ECE",
978
+ "EGO",
979
+ "ELL",
980
+ "ENS",
981
+ "ERS",
982
+ "EU",
983
+ "EX",
984
+ "Each",
985
+ "Eagle",
986
+ "Early",
987
+ "Earth",
988
+ "Earth-",
989
+ "Earthrise",
990
+ "Easter",
991
+ "Edition",
992
+ "Educational",
993
+ "Edward",
994
+ "Egg",
995
+ "Elephant",
996
+ "Elida",
997
+ "Elkanah",
998
+ "Ellen",
999
+ "Embroidered",
1000
+ "Emery",
1001
+ "Emotional",
1002
+ "End",
1003
+ "Ends",
1004
+ "Energy",
1005
+ "Enthusiasts",
1006
+ "Estate",
1007
+ "European",
1008
+ "Eva",
1009
+ "Everett",
1010
+ "Exclusive",
1011
+ "Expand",
1012
+ "Expense",
1013
+ "Expert",
1014
+ "Exquisite",
1015
+ "Eyelet",
1016
+ "F",
1017
+ "F.",
1018
+ "FC",
1019
+ "FIORE",
1020
+ "FOC",
1021
+ "FU",
1022
+ "Fabiola",
1023
+ "Fabriqu\u00e9",
1024
+ "Face",
1025
+ "Fairy",
1026
+ "Family",
1027
+ "Farberhaltendes",
1028
+ "Farm",
1029
+ "Faultier",
1030
+ "Faulty",
1031
+ "Feb",
1032
+ "Feb.",
1033
+ "February",
1034
+ "Fee",
1035
+ "Feeder",
1036
+ "Felting",
1037
+ "Ferdie",
1038
+ "Fifi",
1039
+ "Figure",
1040
+ "Finger",
1041
+ "Finley",
1042
+ "Firming",
1043
+ "First",
1044
+ "Fish",
1045
+ "Fisher",
1046
+ "Fit",
1047
+ "Fitness",
1048
+ "Fla",
1049
+ "Fla.",
1050
+ "Flawored",
1051
+ "Fleece",
1052
+ "Flip",
1053
+ "Flora",
1054
+ "Floral",
1055
+ "Florida",
1056
+ "Flowers",
1057
+ "Floyd",
1058
+ "Fly",
1059
+ "For",
1060
+ "Forest",
1061
+ "Fox",
1062
+ "Fragile",
1063
+ "Frame",
1064
+ "Free",
1065
+ "FreeKids",
1066
+ "Freedom",
1067
+ "Fresh",
1068
+ "Fridge",
1069
+ "Friends",
1070
+ "Fries",
1071
+ "Frilly",
1072
+ "Frog",
1073
+ "Front",
1074
+ "Frost",
1075
+ "Fruits",
1076
+ "Fuck",
1077
+ "Full",
1078
+ "Fun",
1079
+ "Fuzz",
1080
+ "G",
1081
+ "GABRIEL",
1082
+ "GB",
1083
+ "GBP",
1084
+ "GEEKCELL",
1085
+ "GHT",
1086
+ "GO",
1087
+ "GYC72",
1088
+ "Ga",
1089
+ "Ga.",
1090
+ "Gal",
1091
+ "Game",
1092
+ "Garden",
1093
+ "Garment",
1094
+ "Gary",
1095
+ "GeekCell",
1096
+ "Gel",
1097
+ "Gen",
1098
+ "Gen.",
1099
+ "Generations",
1100
+ "Genuine",
1101
+ "Georgia",
1102
+ "Ghost",
1103
+ "Gift",
1104
+ "Gifts",
1105
+ "Gildan",
1106
+ "Giraffe",
1107
+ "Girl",
1108
+ "Girls",
1109
+ "Gisela",
1110
+ "Glass",
1111
+ "Glasses",
1112
+ "Glider",
1113
+ "Go",
1114
+ "Goat",
1115
+ "Goes",
1116
+ "Gogh",
1117
+ "Goin",
1118
+ "Goin'",
1119
+ "Goin\u2019",
1120
+ "Goji",
1121
+ "Gold",
1122
+ "Gon",
1123
+ "Goofy",
1124
+ "Gordon",
1125
+ "Gore",
1126
+ "Gorilla",
1127
+ "Got",
1128
+ "Gov",
1129
+ "Gov.",
1130
+ "Gr",
1131
+ "Grade",
1132
+ "Graduation",
1133
+ "Granite",
1134
+ "Grant",
1135
+ "Grasshopper",
1136
+ "Great",
1137
+ "Grecia",
1138
+ "Green",
1139
+ "Greg",
1140
+ "Grey",
1141
+ "Gr\u00fcn",
1142
+ "Guide",
1143
+ "Guinea",
1144
+ "Gustavus",
1145
+ "Gym",
1146
+ "Gypsum",
1147
+ "H",
1148
+ "HC01",
1149
+ "HIA",
1150
+ "HOP",
1151
+ "HS",
1152
+ "Haar",
1153
+ "Haarshampoo",
1154
+ "Hacked",
1155
+ "Hacker",
1156
+ "Hacking",
1157
+ "Had",
1158
+ "Hai",
1159
+ "Half",
1160
+ "Halloween",
1161
+ "Hand",
1162
+ "Handmade",
1163
+ "Hands",
1164
+ "Hanging",
1165
+ "Hanon",
1166
+ "Hans",
1167
+ "Happy",
1168
+ "Harrison",
1169
+ "Has",
1170
+ "Hat",
1171
+ "Have",
1172
+ "Havin",
1173
+ "Havin'",
1174
+ "Havin\u2019",
1175
+ "He",
1176
+ "He's",
1177
+ "Heart",
1178
+ "Heather",
1179
+ "Hechas",
1180
+ "Hectico",
1181
+ "Hedgehog",
1182
+ "Helium",
1183
+ "Hello",
1184
+ "HelloCube",
1185
+ "Hen",
1186
+ "Henry",
1187
+ "Hermes",
1188
+ "Hermosas",
1189
+ "He\u2019s",
1190
+ "High",
1191
+ "Hokusai",
1192
+ "Holiday",
1193
+ "Holly",
1194
+ "Holy",
1195
+ "Homme",
1196
+ "Honey",
1197
+ "Honeycomb",
1198
+ "Hooded",
1199
+ "Hoodie",
1200
+ "Hoodies",
1201
+ "Horn",
1202
+ "Horse",
1203
+ "Hot",
1204
+ "How",
1205
+ "How's",
1206
+ "How\u2019s",
1207
+ "Hug",
1208
+ "Hugo",
1209
+ "Hyaluronic",
1210
+ "Hyena",
1211
+ "I",
1212
+ "I.E.",
1213
+ "I.e",
1214
+ "I.e.",
1215
+ "ICA",
1216
+ "ICK",
1217
+ "IEL",
1218
+ "II",
1219
+ "ING",
1220
+ "ION",
1221
+ "IOR",
1222
+ "IP11674794",
1223
+ "IUM",
1224
+ "Ia",
1225
+ "Ia.",
1226
+ "Ice",
1227
+ "Icelandic",
1228
+ "Id",
1229
+ "Id.",
1230
+ "Idaho",
1231
+ "Ideal",
1232
+ "Ill",
1233
+ "Ill.",
1234
+ "Illinois",
1235
+ "Imaginext",
1236
+ "Import",
1237
+ "In",
1238
+ "Inc",
1239
+ "Inc.",
1240
+ "Inch",
1241
+ "Inches",
1242
+ "Ind",
1243
+ "Ind.",
1244
+ "India",
1245
+ "Indiana",
1246
+ "Indie",
1247
+ "Indigo",
1248
+ "Inez",
1249
+ "Inf",
1250
+ "Ink",
1251
+ "Inspired",
1252
+ "Intense",
1253
+ "Interviews",
1254
+ "Iowa",
1255
+ "Iron",
1256
+ "Is",
1257
+ "Issues",
1258
+ "It",
1259
+ "It's",
1260
+ "Italie",
1261
+ "Item",
1262
+ "It\u2019s",
1263
+ "J",
1264
+ "Jacket",
1265
+ "Jan",
1266
+ "Jan.",
1267
+ "Janet",
1268
+ "January",
1269
+ "Japanese",
1270
+ "Jar",
1271
+ "Jason",
1272
+ "Jay",
1273
+ "Jellyfish",
1274
+ "Jer",
1275
+ "Jersey",
1276
+ "Joxtine",
1277
+ "Joy",
1278
+ "Jr",
1279
+ "Jr.",
1280
+ "Judas",
1281
+ "Juego",
1282
+ "Jul",
1283
+ "Jul.",
1284
+ "July",
1285
+ "Jumper",
1286
+ "Jun",
1287
+ "Jun.",
1288
+ "June",
1289
+ "K",
1290
+ "K.",
1291
+ "K969",
1292
+ "K989",
1293
+ "K999",
1294
+ "KBDfans",
1295
+ "KENNY",
1296
+ "Kalari",
1297
+ "Kan",
1298
+ "Kan.",
1299
+ "Kans",
1300
+ "Kans.",
1301
+ "Kansas",
1302
+ "Kbd",
1303
+ "Kbdfans",
1304
+ "Kellytoy",
1305
+ "Kellytoys",
1306
+ "Kenny",
1307
+ "Kentucky",
1308
+ "Key",
1309
+ "Keyboard",
1310
+ "Keychain",
1311
+ "Kick",
1312
+ "Kid",
1313
+ "Kids",
1314
+ "KidsColor",
1315
+ "King",
1316
+ "Kirk",
1317
+ "Kiss",
1318
+ "Kit",
1319
+ "Kitchen",
1320
+ "Kitty",
1321
+ "Kittycat",
1322
+ "Knight",
1323
+ "Knit",
1324
+ "Koala",
1325
+ "Kodak",
1326
+ "Koopa",
1327
+ "Koopaling",
1328
+ "Kult",
1329
+ "Ky",
1330
+ "Ky.",
1331
+ "Kyla",
1332
+ "L",
1333
+ "L'Or\u00e9al",
1334
+ "LARGE",
1335
+ "LED",
1336
+ "LEE",
1337
+ "LEGO",
1338
+ "LENS",
1339
+ "LER",
1340
+ "LF",
1341
+ "LIGHT",
1342
+ "LIGHTERIOR",
1343
+ "LINDA",
1344
+ "LLA",
1345
+ "LOCAL",
1346
+ "LOW",
1347
+ "LP",
1348
+ "LP-004",
1349
+ "La",
1350
+ "La.",
1351
+ "Label",
1352
+ "Labels",
1353
+ "Lace",
1354
+ "Ladies",
1355
+ "Ladybug-",
1356
+ "Lamp",
1357
+ "Lanacane",
1358
+ "Lantern",
1359
+ "Large",
1360
+ "Last",
1361
+ "Latex",
1362
+ "Latte",
1363
+ "Lauren",
1364
+ "Lavender",
1365
+ "Laying",
1366
+ "Learning",
1367
+ "Led",
1368
+ "Left",
1369
+ "Leg",
1370
+ "Leggings",
1371
+ "Legs",
1372
+ "Lemon",
1373
+ "Lemur",
1374
+ "Leopard",
1375
+ "Let",
1376
+ "Let's",
1377
+ "Letters/",
1378
+ "Let\u2019s",
1379
+ "Levi",
1380
+ "License",
1381
+ "Licensed",
1382
+ "Life",
1383
+ "Light",
1384
+ "Lighting",
1385
+ "Lightning",
1386
+ "Lights",
1387
+ "Lightsfever",
1388
+ "Lightsfevers",
1389
+ "Lilac",
1390
+ "Limited",
1391
+ "Line",
1392
+ "Lino",
1393
+ "Little",
1394
+ "Livvy",
1395
+ "Llama",
1396
+ "Llamacorn",
1397
+ "Lobi",
1398
+ "Local",
1399
+ "LocalSeller",
1400
+ "LocalStock",
1401
+ "Logo",
1402
+ "Lola",
1403
+ "London",
1404
+ "Long",
1405
+ "Loopback",
1406
+ "Lophophora",
1407
+ "Lot",
1408
+ "Louisa",
1409
+ "Louisiana",
1410
+ "Lounge",
1411
+ "Lovin",
1412
+ "Lovin'",
1413
+ "Lovin\u2019",
1414
+ "Ltd",
1415
+ "Ltd.",
1416
+ "Lucia",
1417
+ "Lucy",
1418
+ "Luna",
1419
+ "Luscious",
1420
+ "Luxmen",
1421
+ "M",
1422
+ "MAGSAFE",
1423
+ "MASTERPIECE",
1424
+ "MAX",
1425
+ "MEDIUM",
1426
+ "METALLICA",
1427
+ "MEX",
1428
+ "MIllyRose",
1429
+ "MPH",
1430
+ "MQLITTLESHOP",
1431
+ "MQLITTLESHOP][LocalSeller",
1432
+ "Ma'am",
1433
+ "Macho",
1434
+ "Mad",
1435
+ "Madam",
1436
+ "MadeByPaulinaUK",
1437
+ "Madness",
1438
+ "Magela",
1439
+ "Maggie",
1440
+ "Magical",
1441
+ "Magnet",
1442
+ "Magnet/",
1443
+ "Magnetic",
1444
+ "Make",
1445
+ "Malcolm",
1446
+ "Mallow",
1447
+ "Mallows",
1448
+ "Malva",
1449
+ "Man",
1450
+ "Manhattan",
1451
+ "Mano",
1452
+ "Many",
1453
+ "Mar",
1454
+ "Mar.",
1455
+ "March",
1456
+ "Mario",
1457
+ "Masala",
1458
+ "Mass",
1459
+ "Mass.",
1460
+ "Massachusetts",
1461
+ "Mat",
1462
+ "Matching",
1463
+ "Mateo",
1464
+ "Maths",
1465
+ "Matisse",
1466
+ "Matters",
1467
+ "Max",
1468
+ "May",
1469
+ "Ma\u2019am",
1470
+ "Md",
1471
+ "Md.",
1472
+ "Me",
1473
+ "Meaning",
1474
+ "Medium",
1475
+ "Medix",
1476
+ "Mees",
1477
+ "Meg",
1478
+ "Melenge",
1479
+ "Melody",
1480
+ "Men",
1481
+ "Mens",
1482
+ "Messrs",
1483
+ "Messrs.",
1484
+ "Metal",
1485
+ "Mich",
1486
+ "Mich.",
1487
+ "Michigan",
1488
+ "Micro",
1489
+ "Might",
1490
+ "Mighty",
1491
+ "Mikah",
1492
+ "Mila",
1493
+ "Military",
1494
+ "Mimi",
1495
+ "Mineral",
1496
+ "Minga",
1497
+ "Mini",
1498
+ "Minn",
1499
+ "Minn.",
1500
+ "Minnesota",
1501
+ "Mint",
1502
+ "Miss",
1503
+ "Miss.",
1504
+ "Mississippi",
1505
+ "Missouri",
1506
+ "Mit",
1507
+ "Mo",
1508
+ "Mo.",
1509
+ "MoN",
1510
+ "Models",
1511
+ "Modern",
1512
+ "ModuSpec",
1513
+ "Moist",
1514
+ "Mold",
1515
+ "Mom",
1516
+ "Monkey",
1517
+ "Monsters",
1518
+ "Mont",
1519
+ "Mont.",
1520
+ "Montessori",
1521
+ "Month",
1522
+ "Monthly",
1523
+ "Moon",
1524
+ "Moonstone",
1525
+ "Moose",
1526
+ "Morpeko",
1527
+ "Moss",
1528
+ "Mount",
1529
+ "Mr",
1530
+ "Mr.",
1531
+ "Mrs",
1532
+ "Mrs.",
1533
+ "Ms",
1534
+ "Ms.",
1535
+ "Mt",
1536
+ "Mt.",
1537
+ "Mucha",
1538
+ "Multicolor",
1539
+ "Multicolored",
1540
+ "Mushroom",
1541
+ "Music",
1542
+ "Must",
1543
+ "Mustard",
1544
+ "My",
1545
+ "Mystery",
1546
+ "N",
1547
+ "N.C.",
1548
+ "N.D.",
1549
+ "N.H.",
1550
+ "N.J.",
1551
+ "N.M.",
1552
+ "N.Y.",
1553
+ "N20",
1554
+ "N62",
1555
+ "N70501900296003",
1556
+ "NDA",
1557
+ "NNY",
1558
+ "NO",
1559
+ "Nabila",
1560
+ "Name",
1561
+ "Naomi",
1562
+ "Narwhal",
1563
+ "Nasty",
1564
+ "National",
1565
+ "Navy",
1566
+ "Neb",
1567
+ "Neb.",
1568
+ "Nebr",
1569
+ "Nebr.",
1570
+ "Nebraska",
1571
+ "Neck",
1572
+ "Neckline",
1573
+ "Need",
1574
+ "Needle",
1575
+ "Negras",
1576
+ "Net",
1577
+ "Nettoyant",
1578
+ "Neutral",
1579
+ "Nev",
1580
+ "Nev.",
1581
+ "Nevada",
1582
+ "Never",
1583
+ "New",
1584
+ "New Hampshire",
1585
+ "New Jersey",
1586
+ "New Mexico",
1587
+ "New York",
1588
+ "Newborn",
1589
+ "Nia",
1590
+ "Nicky",
1591
+ "Nico",
1592
+ "Nike",
1593
+ "Ninja",
1594
+ "Nixie",
1595
+ "No",
1596
+ "Noodle",
1597
+ "Norman",
1598
+ "North Carolina",
1599
+ "North Dakota",
1600
+ "Not",
1601
+ "Nothin",
1602
+ "Nothin'",
1603
+ "Nothin\u2019",
1604
+ "Nov",
1605
+ "Nov.",
1606
+ "November",
1607
+ "Number",
1608
+ "Numbers",
1609
+ "Nuthin",
1610
+ "Nuthin'",
1611
+ "Nuthin\u2019",
1612
+ "Nutty",
1613
+ "Nylon",
1614
+ "O",
1615
+ "O'clock",
1616
+ "O.O",
1617
+ "O.o",
1618
+ "OCK",
1619
+ "OLY",
1620
+ "ONE",
1621
+ "OOI",
1622
+ "ORE",
1623
+ "OS",
1624
+ "OUR",
1625
+ "O_O",
1626
+ "O_o",
1627
+ "Oats",
1628
+ "Oct",
1629
+ "Oct.",
1630
+ "October",
1631
+ "Octopus",
1632
+ "Odile",
1633
+ "Of",
1634
+ "Office",
1635
+ "Official",
1636
+ "Offizielles",
1637
+ "Oficial",
1638
+ "Okla",
1639
+ "Okla.",
1640
+ "Oklahoma",
1641
+ "Ol",
1642
+ "Ol'",
1643
+ "Olga",
1644
+ "Olive",
1645
+ "Ol\u2019",
1646
+ "On",
1647
+ "One",
1648
+ "Ones",
1649
+ "Onyx",
1650
+ "Open",
1651
+ "Option",
1652
+ "Orange",
1653
+ "Orangutan",
1654
+ "Order",
1655
+ "Ore",
1656
+ "Ore.",
1657
+ "Oregon",
1658
+ "Original",
1659
+ "Orzella",
1660
+ "Other",
1661
+ "Ought",
1662
+ "Our",
1663
+ "Outdoor",
1664
+ "Oval",
1665
+ "Over",
1666
+ "Oversized",
1667
+ "Overthinker",
1668
+ "Owl",
1669
+ "Owl-",
1670
+ "O\u2019clock",
1671
+ "P",
1672
+ "P929",
1673
+ "PAC",
1674
+ "PCS",
1675
+ "PHONE",
1676
+ "POL",
1677
+ "PPE",
1678
+ "Pa",
1679
+ "Pa.",
1680
+ "Pack",
1681
+ "Packing",
1682
+ "Paint",
1683
+ "Painting",
1684
+ "Pairs",
1685
+ "Pal",
1686
+ "Palitoy",
1687
+ "Panda",
1688
+ "Pandacorn",
1689
+ "Pania",
1690
+ "Papiers",
1691
+ "Parfum",
1692
+ "Paris",
1693
+ "Park",
1694
+ "Parker",
1695
+ "Participants",
1696
+ "Parts",
1697
+ "Party",
1698
+ "Pastel",
1699
+ "Patio",
1700
+ "Pegacorn",
1701
+ "Peluche",
1702
+ "Pen",
1703
+ "Penguin",
1704
+ "Penguin-",
1705
+ "Pennsylvania",
1706
+ "Pens",
1707
+ "Pentester",
1708
+ "Peppa",
1709
+ "Personalized",
1710
+ "Pet",
1711
+ "Ph",
1712
+ "Ph.D.",
1713
+ "Philip",
1714
+ "Picasso",
1715
+ "Picture",
1716
+ "Piece",
1717
+ "Piezas",
1718
+ "Pig",
1719
+ "Pilar",
1720
+ "Pillow",
1721
+ "Pine",
1722
+ "Pink",
1723
+ "Pins",
1724
+ "Pistachio",
1725
+ "Plaid",
1726
+ "Planet",
1727
+ "Plaster",
1728
+ "Play",
1729
+ "Plexi",
1730
+ "Plexiglass",
1731
+ "Plush",
1732
+ "Plushie",
1733
+ "Pl\u00fcschtier",
1734
+ "PoK\u00e9MoN",
1735
+ "Pokemon",
1736
+ "Pok\u00e9mon",
1737
+ "Polo",
1738
+ "Pompa",
1739
+ "Pompe",
1740
+ "Poodle",
1741
+ "Pool",
1742
+ "Ports",
1743
+ "Post",
1744
+ "Pot",
1745
+ "Powder",
1746
+ "Pr",
1747
+ "Prawn",
1748
+ "Pre",
1749
+ "Premium",
1750
+ "Preschool",
1751
+ "Price",
1752
+ "Priest",
1753
+ "Prim",
1754
+ "Prince",
1755
+ "Princess",
1756
+ "Print",
1757
+ "Printing",
1758
+ "Pro",
1759
+ "Process",
1760
+ "Product",
1761
+ "Prof",
1762
+ "Prof.",
1763
+ "Professionnel",
1764
+ "Program",
1765
+ "Proraso",
1766
+ "Proration",
1767
+ "Prussion",
1768
+ "Pterodactyl",
1769
+ "Puff",
1770
+ "Pug",
1771
+ "Pullover",
1772
+ "Puppy",
1773
+ "Pure",
1774
+ "Purple",
1775
+ "Puzzles",
1776
+ "Pygmy",
1777
+ "Pyramid",
1778
+ "Q",
1779
+ "Q21",
1780
+ "QD06",
1781
+ "Qty",
1782
+ "Quality",
1783
+ "Quantity",
1784
+ "Queen",
1785
+ "R",
1786
+ "RC",
1787
+ "REBEL",
1788
+ "RGE",
1789
+ "RIP",
1790
+ "ROSIE",
1791
+ "RY-",
1792
+ "Raglan",
1793
+ "Rail",
1794
+ "Rainbow",
1795
+ "Ralph",
1796
+ "Randy",
1797
+ "Raquel",
1798
+ "Rare",
1799
+ "Raspberry",
1800
+ "Ready",
1801
+ "Reality",
1802
+ "Rear",
1803
+ "Receive",
1804
+ "Recruitment",
1805
+ "Red",
1806
+ "Reebok",
1807
+ "Regina",
1808
+ "Reindeer",
1809
+ "Rep",
1810
+ "Rep.",
1811
+ "Replacement",
1812
+ "Resale",
1813
+ "Research",
1814
+ "Resistain",
1815
+ "Resveratrol",
1816
+ "Retro",
1817
+ "Rev",
1818
+ "Rev.",
1819
+ "Rex",
1820
+ "Rhinestone",
1821
+ "Rib",
1822
+ "Ribbed",
1823
+ "Rich",
1824
+ "Rings",
1825
+ "River",
1826
+ "Robb",
1827
+ "Rocio",
1828
+ "Rock",
1829
+ "Rohan",
1830
+ "Rolled",
1831
+ "Roman",
1832
+ "Room",
1833
+ "Rooster",
1834
+ "Rose",
1835
+ "Rosie",
1836
+ "Rottweiler",
1837
+ "Round",
1838
+ "Roundneck",
1839
+ "Rue",
1840
+ "Rufus",
1841
+ "Rust",
1842
+ "Rutabaga",
1843
+ "S",
1844
+ "S.C.",
1845
+ "S24",
1846
+ "S39",
1847
+ "SELLER",
1848
+ "SG",
1849
+ "SIE",
1850
+ "SILVER",
1851
+ "SKU",
1852
+ "SMALL",
1853
+ "SQ21",
1854
+ "SQJW22",
1855
+ "SQUASHMALLOW",
1856
+ "STOCK",
1857
+ "SWSHN11898412",
1858
+ "SWSHN11914182",
1859
+ "SWSHN11924931",
1860
+ "Sage",
1861
+ "Sailor",
1862
+ "Salt",
1863
+ "Sam",
1864
+ "Samir",
1865
+ "Sand",
1866
+ "Santa",
1867
+ "Sapphire",
1868
+ "Sauce",
1869
+ "Savage",
1870
+ "Scale",
1871
+ "Scandinavian",
1872
+ "Scarlet",
1873
+ "School",
1874
+ "Scoop",
1875
+ "Scooter",
1876
+ "Scream",
1877
+ "Screaming",
1878
+ "Scrunch",
1879
+ "Scrunchie",
1880
+ "Sculpture",
1881
+ "Sea",
1882
+ "Seal",
1883
+ "Seamless",
1884
+ "Sebastian",
1885
+ "Seconds",
1886
+ "Secret",
1887
+ "Seller",
1888
+ "Sen",
1889
+ "Sen.",
1890
+ "Sensory",
1891
+ "Sep",
1892
+ "Sep.",
1893
+ "Sept",
1894
+ "Sept.",
1895
+ "September",
1896
+ "Sequin",
1897
+ "Serie",
1898
+ "Series",
1899
+ "Serpent",
1900
+ "Service",
1901
+ "Services",
1902
+ "Set",
1903
+ "Sex",
1904
+ "Sha",
1905
+ "Shaft",
1906
+ "Shampoing",
1907
+ "Shampoo",
1908
+ "Shantira",
1909
+ "Shark",
1910
+ "She",
1911
+ "She's",
1912
+ "She\u2019s",
1913
+ "Ship",
1914
+ "Shirt",
1915
+ "Shiseido",
1916
+ "Shop",
1917
+ "Short",
1918
+ "Should",
1919
+ "Shrew",
1920
+ "Siege",
1921
+ "Sign",
1922
+ "Signature",
1923
+ "Silicone",
1924
+ "Silkscreen",
1925
+ "Silver",
1926
+ "Simha",
1927
+ "Simulation",
1928
+ "Single",
1929
+ "Size",
1930
+ "Sized",
1931
+ "Skateboarding",
1932
+ "Skeleton",
1933
+ "Sleepover",
1934
+ "Sleepy",
1935
+ "Sleeve",
1936
+ "Sleeved",
1937
+ "Sloth",
1938
+ "Small",
1939
+ "Smores",
1940
+ "Snow",
1941
+ "Snowman",
1942
+ "Socks",
1943
+ "Soft",
1944
+ "Sofy",
1945
+ "Soin",
1946
+ "Solar",
1947
+ "Solaris",
1948
+ "Somethin",
1949
+ "Somethin'",
1950
+ "Somethin\u2019",
1951
+ "Source",
1952
+ "South Carolina",
1953
+ "Space",
1954
+ "Spark",
1955
+ "Special",
1956
+ "Species",
1957
+ "Spider",
1958
+ "Sport",
1959
+ "Spotted",
1960
+ "Spread",
1961
+ "Squad",
1962
+ "Squeeze",
1963
+ "Squish",
1964
+ "Squishmallow",
1965
+ "Squishmallows",
1966
+ "Squishy",
1967
+ "St",
1968
+ "St.",
1969
+ "Stackable",
1970
+ "Standard",
1971
+ "Stands",
1972
+ "Stapleton",
1973
+ "Star",
1974
+ "Starscream",
1975
+ "States",
1976
+ "Stick",
1977
+ "Stickers",
1978
+ "Sticks",
1979
+ "Stingray",
1980
+ "Stitch",
1981
+ "Stock",
1982
+ "Stofftier",
1983
+ "Stomach",
1984
+ "Stone",
1985
+ "Straight",
1986
+ "Strawberry",
1987
+ "Streetwear",
1988
+ "Strike",
1989
+ "Striped",
1990
+ "Student",
1991
+ "Studio",
1992
+ "Stuffed",
1993
+ "Style",
1994
+ "Sublimation",
1995
+ "Subtraction",
1996
+ "Sugar",
1997
+ "Suit",
1998
+ "Summer",
1999
+ "Sunflower",
2000
+ "Sunflowers",
2001
+ "Sunny",
2002
+ "Sunscreen",
2003
+ "Super",
2004
+ "Superb",
2005
+ "Sw",
2006
+ "Sweater",
2007
+ "Sweatpants",
2008
+ "Sweatshirt",
2009
+ "Sweatshirts",
2010
+ "T",
2011
+ "T-",
2012
+ "T35L4",
2013
+ "T71",
2014
+ "TER",
2015
+ "TOXIC",
2016
+ "TRANSFORMERS",
2017
+ "TREASURE",
2018
+ "TS2",
2019
+ "Tabby",
2020
+ "Table",
2021
+ "Tags",
2022
+ "Talisa",
2023
+ "Tally",
2024
+ "Tam",
2025
+ "Tapered",
2026
+ "Taupe",
2027
+ "Tax",
2028
+ "Tea",
2029
+ "Teal",
2030
+ "Team",
2031
+ "TeamViewer",
2032
+ "Teddy",
2033
+ "Teether",
2034
+ "Teething",
2035
+ "Tenn",
2036
+ "Tenn.",
2037
+ "Tennessee",
2038
+ "Terrazzo",
2039
+ "Tesla",
2040
+ "Text",
2041
+ "That",
2042
+ "That's",
2043
+ "That\u2019s",
2044
+ "The",
2045
+ "There",
2046
+ "There's",
2047
+ "There\u2019s",
2048
+ "These",
2049
+ "They",
2050
+ "Thigh",
2051
+ "Things",
2052
+ "Thinking",
2053
+ "This",
2054
+ "This's",
2055
+ "This\u2019s",
2056
+ "Thompson",
2057
+ "Those",
2058
+ "Thread",
2059
+ "Tie",
2060
+ "Timberland",
2061
+ "To",
2062
+ "Toast",
2063
+ "Todd",
2064
+ "Toddler",
2065
+ "Toddlers",
2066
+ "Toffee",
2067
+ "Token",
2068
+ "Tomar",
2069
+ "Top",
2070
+ "Topper",
2071
+ "Total",
2072
+ "Touch",
2073
+ "Toy",
2074
+ "Toys",
2075
+ "Tra",
2076
+ "Train",
2077
+ "Transaction",
2078
+ "Transformers",
2079
+ "Transparent",
2080
+ "Tray",
2081
+ "Tree",
2082
+ "Trees",
2083
+ "Triceratops",
2084
+ "Tristan",
2085
+ "Truck",
2086
+ "Trudy",
2087
+ "Trust",
2088
+ "Tshirt",
2089
+ "Tsubaki",
2090
+ "Tunic",
2091
+ "Turmeric",
2092
+ "Turtle",
2093
+ "U",
2094
+ "UK",
2095
+ "UP",
2096
+ "UPC:8001090666765",
2097
+ "URE",
2098
+ "USB",
2099
+ "UV",
2100
+ "Ultimate",
2101
+ "Ultra",
2102
+ "Ultrasoft",
2103
+ "Unboxing",
2104
+ "Unicorn",
2105
+ "Uniqua",
2106
+ "Unisex",
2107
+ "Unit",
2108
+ "United",
2109
+ "Unlimited",
2110
+ "Up",
2111
+ "UrbanStyle",
2112
+ "V",
2113
+ "V.V",
2114
+ "V00",
2115
+ "V1",
2116
+ "VER",
2117
+ "V_V",
2118
+ "Va",
2119
+ "Va.",
2120
+ "Van",
2121
+ "Vanilla",
2122
+ "Vanquish",
2123
+ "Vee",
2124
+ "Vegetables",
2125
+ "Velvet",
2126
+ "Vengeance",
2127
+ "Venom",
2128
+ "Veronica",
2129
+ "Very",
2130
+ "Vi",
2131
+ "Vindaloo",
2132
+ "Vintage",
2133
+ "Vinyl",
2134
+ "Virginia",
2135
+ "Visage",
2136
+ "Vision",
2137
+ "VistaPrint",
2138
+ "Vitamin",
2139
+ "Vitamino",
2140
+ "Vneck",
2141
+ "Voyager",
2142
+ "W",
2143
+ "W22",
2144
+ "WELLA",
2145
+ "WFC",
2146
+ "WH",
2147
+ "WLtoys",
2148
+ "WTs",
2149
+ "WWE",
2150
+ "Waffle",
2151
+ "Waisted",
2152
+ "Waived",
2153
+ "Wall",
2154
+ "Walrus",
2155
+ "Wand",
2156
+ "Want",
2157
+ "Wanted",
2158
+ "War",
2159
+ "Warm",
2160
+ "Was",
2161
+ "Wash",
2162
+ "Wash.",
2163
+ "Washable",
2164
+ "Washington",
2165
+ "Watch",
2166
+ "Watching",
2167
+ "Water",
2168
+ "Watermelon",
2169
+ "We",
2170
+ "Web",
2171
+ "Wedding",
2172
+ "Wendy",
2173
+ "Were",
2174
+ "What",
2175
+ "What's",
2176
+ "What\u2019s",
2177
+ "When",
2178
+ "When's",
2179
+ "When\u2019s",
2180
+ "Where",
2181
+ "Where's",
2182
+ "Where\u2019s",
2183
+ "Whit",
2184
+ "White",
2185
+ "Whitening",
2186
+ "Who",
2187
+ "Who's",
2188
+ "Wholesale",
2189
+ "Who\u2019s",
2190
+ "Why",
2191
+ "Why's",
2192
+ "Why\u2019s",
2193
+ "Wildflower",
2194
+ "Will",
2195
+ "Winged",
2196
+ "Wings",
2197
+ "Winkel",
2198
+ "Wis",
2199
+ "Wis.",
2200
+ "Wisconsin",
2201
+ "Witch",
2202
+ "With",
2203
+ "Wo",
2204
+ "Women",
2205
+ "Wood",
2206
+ "Wooden",
2207
+ "Woodland",
2208
+ "Work",
2209
+ "Would",
2210
+ "Wrecker",
2211
+ "X'Xxxxx",
2212
+ "X'x",
2213
+ "X'xxxx",
2214
+ "X++",
2215
+ "X-",
2216
+ "X.",
2217
+ "X.X",
2218
+ "X.X.",
2219
+ "X.x",
2220
+ "X.x.",
2221
+ "XD",
2222
+ "XDD",
2223
+ "XIC",
2224
+ "XL",
2225
+ "XS",
2226
+ "XX",
2227
+ "XX-ddd",
2228
+ "XXL",
2229
+ "XXX",
2230
+ "XXX-",
2231
+ "XXX:dddd",
2232
+ "XXXX",
2233
+ "XXXX][XxxxxXxxxx",
2234
+ "XXXXdd",
2235
+ "XXXXdddd",
2236
+ "XXXXx",
2237
+ "XXXd",
2238
+ "XXXdd",
2239
+ "XXXx",
2240
+ "XXXxxxx",
2241
+ "XXdd",
2242
+ "XXdddd",
2243
+ "XXxxxXxxx",
2244
+ "XXxxxx",
2245
+ "X_X",
2246
+ "X_x",
2247
+ "Xd",
2248
+ "XdXXXdddd",
2249
+ "Xdd",
2250
+ "XddXd",
2251
+ "Xddd",
2252
+ "Xdddd",
2253
+ "Xerophyte",
2254
+ "Xx",
2255
+ "Xx'",
2256
+ "Xx'x",
2257
+ "Xx'xx",
2258
+ "Xx.",
2259
+ "Xx.X.",
2260
+ "XxXxXxX",
2261
+ "Xxx",
2262
+ "Xxx'x",
2263
+ "Xxx-",
2264
+ "Xxx.",
2265
+ "Xxxx",
2266
+ "Xxxx'",
2267
+ "Xxxx'x",
2268
+ "Xxxx.",
2269
+ "XxxxXxXxxxxXX",
2270
+ "XxxxXxxx",
2271
+ "XxxxXxxxx",
2272
+ "Xxxxx",
2273
+ "Xxxxx'",
2274
+ "Xxxxx'x",
2275
+ "Xxxxx-",
2276
+ "Xxxxx.",
2277
+ "Xxxxx/",
2278
+ "XxxxxXXXX",
2279
+ "XxxxxXxxx",
2280
+ "XxxxxXxxxx",
2281
+ "Xxxxx\u2019",
2282
+ "Xxxxx\u2019x",
2283
+ "Xxxx\u2019",
2284
+ "Xxxx\u2019x",
2285
+ "Xxx\u2019x",
2286
+ "Xx\u2019",
2287
+ "Xx\u2019x",
2288
+ "Xx\u2019xx",
2289
+ "X\u2019x",
2290
+ "X\u2019xxxx",
2291
+ "Y",
2292
+ "YOUR",
2293
+ "YSL",
2294
+ "Yeah",
2295
+ "Year",
2296
+ "Yellow",
2297
+ "Yoga",
2298
+ "Yosemite",
2299
+ "You",
2300
+ "Your",
2301
+ "Youth",
2302
+ "Z",
2303
+ "Zaylee",
2304
+ "Zip",
2305
+ "[",
2306
+ "[-:",
2307
+ "[:",
2308
+ "[=",
2309
+ "\\",
2310
+ "\\\")",
2311
+ "\\n",
2312
+ "\\t",
2313
+ "\\x",
2314
+ "]",
2315
+ "]=",
2316
+ "^",
2317
+ "^_^",
2318
+ "^__^",
2319
+ "^___^",
2320
+ "_*)",
2321
+ "_-)",
2322
+ "_.)",
2323
+ "_<)",
2324
+ "_^)",
2325
+ "__-",
2326
+ "__^",
2327
+ "_\u00ac)",
2328
+ "_\u0ca0)",
2329
+ "a",
2330
+ "a.",
2331
+ "a.m",
2332
+ "a.m.",
2333
+ "a3",
2334
+ "a4",
2335
+ "aUK",
2336
+ "aar",
2337
+ "abc/",
2338
+ "abcs",
2339
+ "abe",
2340
+ "about",
2341
+ "abs",
2342
+ "aby",
2343
+ "academy",
2344
+ "accent",
2345
+ "accessories",
2346
+ "ace",
2347
+ "ach",
2348
+ "acid",
2349
+ "ack",
2350
+ "acrylic",
2351
+ "action",
2352
+ "activity",
2353
+ "ad7",
2354
+ "ada",
2355
+ "add",
2356
+ "addition",
2357
+ "ade",
2358
+ "adhesive",
2359
+ "adidas",
2360
+ "adm",
2361
+ "adm.",
2362
+ "adoucissant",
2363
+ "ads",
2364
+ "adult",
2365
+ "adventure",
2366
+ "ady",
2367
+ "afe",
2368
+ "aft",
2369
+ "aga",
2370
+ "age",
2371
+ "ages",
2372
+ "aging",
2373
+ "agnes",
2374
+ "ags",
2375
+ "ai",
2376
+ "aid",
2377
+ "ail",
2378
+ "ain",
2379
+ "air",
2380
+ "ak",
2381
+ "ak.",
2382
+ "ake",
2383
+ "aki",
2384
+ "ala",
2385
+ "ala.",
2386
+ "alandy",
2387
+ "ale",
2388
+ "alf",
2389
+ "ali",
2390
+ "alk",
2391
+ "all",
2392
+ "alm",
2393
+ "almohada",
2394
+ "alo",
2395
+ "alphabets/",
2396
+ "alphonse",
2397
+ "als",
2398
+ "alt",
2399
+ "alternate",
2400
+ "alu",
2401
+ "aluminium",
2402
+ "am",
2403
+ "am-",
2404
+ "ama",
2405
+ "amber",
2406
+ "amblyopia",
2407
+ "ame",
2408
+ "amethyst",
2409
+ "amil",
2410
+ "aminalize",
2411
+ "amp",
2412
+ "amy",
2413
+ "an",
2414
+ "an.",
2415
+ "ana",
2416
+ "anaesthetic",
2417
+ "ancient",
2418
+ "and",
2419
+ "and/or",
2420
+ "ane",
2421
+ "angel",
2422
+ "angels",
2423
+ "animal",
2424
+ "animales",
2425
+ "animals",
2426
+ "animaux",
2427
+ "anime",
2428
+ "anniversary",
2429
+ "ano",
2430
+ "ans",
2431
+ "ant",
2432
+ "anti",
2433
+ "any",
2434
+ "apc",
2435
+ "aph",
2436
+ "apocalypse",
2437
+ "apple",
2438
+ "applied",
2439
+ "apr",
2440
+ "apr.",
2441
+ "aps",
2442
+ "aqua",
2443
+ "ar.",
2444
+ "ara",
2445
+ "archie",
2446
+ "arctic",
2447
+ "ard",
2448
+ "are",
2449
+ "arf",
2450
+ "ari",
2451
+ "ariz",
2452
+ "ariz.",
2453
+ "ark",
2454
+ "ark.",
2455
+ "arm",
2456
+ "armadillo",
2457
+ "armor",
2458
+ "aron",
2459
+ "ars",
2460
+ "art",
2461
+ "ary",
2462
+ "as",
2463
+ "ase",
2464
+ "ash",
2465
+ "ashtray",
2466
+ "asian",
2467
+ "aso",
2468
+ "ass",
2469
+ "assembly",
2470
+ "ast",
2471
+ "ate",
2472
+ "ath",
2473
+ "atoderm",
2474
+ "ats",
2475
+ "attack",
2476
+ "attire",
2477
+ "auction",
2478
+ "aug",
2479
+ "aug.",
2480
+ "augen",
2481
+ "auk",
2482
+ "aur",
2483
+ "aus",
2484
+ "automatic",
2485
+ "autumn",
2486
+ "ave",
2487
+ "avery",
2488
+ "avy",
2489
+ "awn",
2490
+ "axolotl",
2491
+ "axolotl-",
2492
+ "azy",
2493
+ "b",
2494
+ "b.",
2495
+ "babs",
2496
+ "baby",
2497
+ "back",
2498
+ "backpack",
2499
+ "bad",
2500
+ "bag",
2501
+ "bags",
2502
+ "baiden",
2503
+ "baking",
2504
+ "balance",
2505
+ "ball",
2506
+ "balloon",
2507
+ "balloons",
2508
+ "balls",
2509
+ "balm",
2510
+ "ban",
2511
+ "banana",
2512
+ "bandana",
2513
+ "bandejas",
2514
+ "banner",
2515
+ "baptism",
2516
+ "bara",
2517
+ "barbe",
2518
+ "barbour",
2519
+ "barley",
2520
+ "base",
2521
+ "basic",
2522
+ "basics",
2523
+ "batch",
2524
+ "batcopter",
2525
+ "bath",
2526
+ "bathe",
2527
+ "bathroom",
2528
+ "batman",
2529
+ "batteries",
2530
+ "bba",
2531
+ "bby",
2532
+ "bc/",
2533
+ "bcs",
2534
+ "be",
2535
+ "beaded",
2536
+ "beads",
2537
+ "bear",
2538
+ "bearded",
2539
+ "beautifully",
2540
+ "beaver",
2541
+ "because",
2542
+ "bed",
2543
+ "bee",
2544
+ "beech",
2545
+ "beginnerser",
2546
+ "beige",
2547
+ "bel",
2548
+ "believe",
2549
+ "bell",
2550
+ "bella",
2551
+ "belle",
2552
+ "belly",
2553
+ "belt",
2554
+ "ben",
2555
+ "ber",
2556
+ "bergit",
2557
+ "berry",
2558
+ "betty",
2559
+ "beula",
2560
+ "bigfoot",
2561
+ "bike",
2562
+ "biodegradable",
2563
+ "bioderma",
2564
+ "bird",
2565
+ "birthday",
2566
+ "biscuit",
2567
+ "bite",
2568
+ "black",
2569
+ "blanca",
2570
+ "ble",
2571
+ "blend",
2572
+ "block",
2573
+ "blocks",
2574
+ "bloody",
2575
+ "blue",
2576
+ "bluey",
2577
+ "blush",
2578
+ "bly",
2579
+ "bnwts",
2580
+ "bo38246",
2581
+ "board",
2582
+ "boba",
2583
+ "bobo",
2584
+ "boda",
2585
+ "body",
2586
+ "bodyshell",
2587
+ "boho",
2588
+ "bois",
2589
+ "bok",
2590
+ "bolas",
2591
+ "bold",
2592
+ "bolsas",
2593
+ "bon",
2594
+ "bonnie",
2595
+ "boop",
2596
+ "bos",
2597
+ "boss",
2598
+ "bounce",
2599
+ "bouncy",
2600
+ "bouquet",
2601
+ "bout",
2602
+ "bow",
2603
+ "bowl",
2604
+ "bowser",
2605
+ "box",
2606
+ "boxed",
2607
+ "boy",
2608
+ "boys",
2609
+ "br.",
2610
+ "bra",
2611
+ "bracelet",
2612
+ "brand",
2613
+ "bread",
2614
+ "bricks",
2615
+ "bridal",
2616
+ "bride",
2617
+ "brightening",
2618
+ "britta",
2619
+ "broken",
2620
+ "bros",
2621
+ "bros.",
2622
+ "brown",
2623
+ "bruce",
2624
+ "brush",
2625
+ "btsw-105887",
2626
+ "bubba",
2627
+ "bubble",
2628
+ "buddy",
2629
+ "buds",
2630
+ "buffalo",
2631
+ "buggy",
2632
+ "bugs",
2633
+ "building",
2634
+ "bulgarian",
2635
+ "bumblebee",
2636
+ "burnt",
2637
+ "business",
2638
+ "buttercream",
2639
+ "butterflies",
2640
+ "butterfly",
2641
+ "buy",
2642
+ "by",
2643
+ "c",
2644
+ "c'm",
2645
+ "c++",
2646
+ "c.",
2647
+ "c01",
2648
+ "c72",
2649
+ "ca",
2650
+ "caballo",
2651
+ "cable",
2652
+ "cactacea",
2653
+ "cactaceae",
2654
+ "cacti",
2655
+ "cake",
2656
+ "cal",
2657
+ "calendar",
2658
+ "calif",
2659
+ "calif.",
2660
+ "call",
2661
+ "camel",
2662
+ "camilo",
2663
+ "can",
2664
+ "canda",
2665
+ "candle",
2666
+ "candlestick",
2667
+ "canvas",
2668
+ "car",
2669
+ "caramel",
2670
+ "cardigan",
2671
+ "carlos",
2672
+ "carmelita",
2673
+ "carnage",
2674
+ "carol",
2675
+ "carpark",
2676
+ "cartoon",
2677
+ "case",
2678
+ "cases",
2679
+ "cashmere",
2680
+ "cat",
2681
+ "catch",
2682
+ "caterpillar",
2683
+ "caticorn",
2684
+ "cause",
2685
+ "cd",
2686
+ "ce>",
2687
+ "cea",
2688
+ "ced",
2689
+ "ceiling",
2690
+ "celestina",
2691
+ "celestite",
2692
+ "centerpiece",
2693
+ "cer",
2694
+ "ceramic",
2695
+ "ces",
2696
+ "ch.",
2697
+ "cha",
2698
+ "chain",
2699
+ "chairs",
2700
+ "chalk",
2701
+ "channel",
2702
+ "chaps",
2703
+ "characters",
2704
+ "charcoal",
2705
+ "charge",
2706
+ "charity",
2707
+ "chasman",
2708
+ "che",
2709
+ "check",
2710
+ "checked",
2711
+ "cheval",
2712
+ "chew",
2713
+ "chia",
2714
+ "chick",
2715
+ "chicken",
2716
+ "chicken-",
2717
+ "child",
2718
+ "children",
2719
+ "chinchilla",
2720
+ "chinese",
2721
+ "chip",
2722
+ "chloe",
2723
+ "cho",
2724
+ "chocolate",
2725
+ "choose",
2726
+ "christening",
2727
+ "christmas",
2728
+ "chuey",
2729
+ "cia",
2730
+ "cid",
2731
+ "cigar",
2732
+ "cinerea",
2733
+ "cio",
2734
+ "citrine",
2735
+ "citron",
2736
+ "city",
2737
+ "cks",
2738
+ "cky",
2739
+ "classic",
2740
+ "claus",
2741
+ "cle",
2742
+ "clean",
2743
+ "cleaning",
2744
+ "cleansing",
2745
+ "clear",
2746
+ "clip",
2747
+ "clips",
2748
+ "clock",
2749
+ "clockwork",
2750
+ "cloth",
2751
+ "clothing",
2752
+ "cm",
2753
+ "co",
2754
+ "co.",
2755
+ "coa",
2756
+ "cobra",
2757
+ "cocoa",
2758
+ "code",
2759
+ "coffee",
2760
+ "cold",
2761
+ "collar",
2762
+ "collection",
2763
+ "collector",
2764
+ "colo",
2765
+ "colo.",
2766
+ "color",
2767
+ "colorcaution",
2768
+ "coloriertes",
2769
+ "colors",
2770
+ "colour",
2771
+ "combination",
2772
+ "come",
2773
+ "comex",
2774
+ "comfy",
2775
+ "comic",
2776
+ "comics",
2777
+ "commonly",
2778
+ "communion",
2779
+ "complementing",
2780
+ "compound",
2781
+ "computer",
2782
+ "computers",
2783
+ "con",
2784
+ "concrete",
2785
+ "concurrent",
2786
+ "conditioner",
2787
+ "cone",
2788
+ "confirmation",
2789
+ "confirmed",
2790
+ "conn",
2791
+ "conn.",
2792
+ "connection",
2793
+ "connections",
2794
+ "connor",
2795
+ "cooling",
2796
+ "copiapoa",
2797
+ "cor",
2798
+ "corgi",
2799
+ "corp",
2800
+ "corp.",
2801
+ "cos",
2802
+ "cosplay",
2803
+ "cost",
2804
+ "cotton",
2805
+ "could",
2806
+ "course",
2807
+ "cow",
2808
+ "cowgirl",
2809
+ "coz",
2810
+ "crab",
2811
+ "cracked",
2812
+ "craft",
2813
+ "crafts",
2814
+ "crawling",
2815
+ "crazy",
2816
+ "cream",
2817
+ "cream-",
2818
+ "creative",
2819
+ "creator",
2820
+ "crewneck",
2821
+ "cro",
2822
+ "crop",
2823
+ "cross",
2824
+ "crow",
2825
+ "crystal",
2826
+ "ct.",
2827
+ "ct71",
2828
+ "cti",
2829
+ "cts2",
2830
+ "cube",
2831
+ "cubo",
2832
+ "cuddling",
2833
+ "cuencos",
2834
+ "cuff",
2835
+ "cuffed",
2836
+ "cult",
2837
+ "curious",
2838
+ "curry",
2839
+ "cushion",
2840
+ "cust",
2841
+ "custom",
2842
+ "customised",
2843
+ "customize",
2844
+ "cut",
2845
+ "cute",
2846
+ "cuz",
2847
+ "cvd",
2848
+ "cyber",
2849
+ "cybersecurity",
2850
+ "cybertron",
2851
+ "cyberverse",
2852
+ "c\u2019m",
2853
+ "d",
2854
+ "d\"xd",
2855
+ "d\"xd.d",
2856
+ "d)",
2857
+ "d,ddd.dd",
2858
+ "d-",
2859
+ "d-)",
2860
+ "d-X",
2861
+ "d.",
2862
+ "d.c.",
2863
+ "d.d",
2864
+ "d.x",
2865
+ "d/d",
2866
+ "d/dd",
2867
+ "d06",
2868
+ "d4uws8001090666765",
2869
+ "dX",
2870
+ "dXX",
2871
+ "dXXddXdddXXd",
2872
+ "dXdd",
2873
+ "dXdd-",
2874
+ "dXxxx",
2875
+ "d_d",
2876
+ "d_x",
2877
+ "dak",
2878
+ "dal",
2879
+ "dalmatian",
2880
+ "dam",
2881
+ "damaged",
2882
+ "dan",
2883
+ "dance",
2884
+ "dancer",
2885
+ "dar",
2886
+ "dare",
2887
+ "dark",
2888
+ "das",
2889
+ "day",
2890
+ "dc",
2891
+ "dd",
2892
+ "dd,d",
2893
+ "dd.d",
2894
+ "dd.dd",
2895
+ "dd.dd.dddd",
2896
+ "ddX/ddx",
2897
+ "ddXX-dd",
2898
+ "ddXXX",
2899
+ "ddXdd",
2900
+ "ddd",
2901
+ "dddX",
2902
+ "dddXX",
2903
+ "dddXXX",
2904
+ "dddXXXX",
2905
+ "dddd",
2906
+ "dddd.dd",
2907
+ "ddddXdd",
2908
+ "ddddxdd",
2909
+ "ddddxx",
2910
+ "ddddxxx",
2911
+ "dddx",
2912
+ "dddxddd",
2913
+ "dddxx",
2914
+ "dddxxx",
2915
+ "dddxxxx",
2916
+ "ddx",
2917
+ "ddx.x",
2918
+ "ddx.x.",
2919
+ "ddx/ddx",
2920
+ "ddxdd",
2921
+ "ddxx",
2922
+ "ddxx-dd",
2923
+ "ddxxx",
2924
+ "ddy",
2925
+ "de",
2926
+ "deadstock",
2927
+ "death",
2928
+ "dec",
2929
+ "dec.",
2930
+ "decompression",
2931
+ "decor",
2932
+ "decoraci\u00f3n",
2933
+ "decorated",
2934
+ "decorating",
2935
+ "decoration",
2936
+ "decorations",
2937
+ "decorations(6",
2938
+ "decorativa",
2939
+ "decorativas",
2940
+ "decorative",
2941
+ "decoupes",
2942
+ "ded",
2943
+ "deep",
2944
+ "deeto",
2945
+ "del",
2946
+ "del.",
2947
+ "delivery",
2948
+ "den",
2949
+ "der",
2950
+ "des",
2951
+ "desert",
2952
+ "design",
2953
+ "designer",
2954
+ "designs",
2955
+ "desk",
2956
+ "dessert",
2957
+ "devices",
2958
+ "devor\u00e9",
2959
+ "dexter",
2960
+ "dge",
2961
+ "di",
2962
+ "dia",
2963
+ "diameter",
2964
+ "dic",
2965
+ "did",
2966
+ "die",
2967
+ "dingding",
2968
+ "dining",
2969
+ "dinner",
2970
+ "dinosaur",
2971
+ "dinosaurier",
2972
+ "dinosaurs",
2973
+ "dio",
2974
+ "director",
2975
+ "disassembly",
2976
+ "disco",
2977
+ "discount",
2978
+ "dise\u00f1o",
2979
+ "dish",
2980
+ "disney",
2981
+ "diwali",
2982
+ "dix",
2983
+ "dixie",
2984
+ "diy",
2985
+ "dle",
2986
+ "dm.",
2987
+ "dmx512",
2988
+ "do",
2989
+ "document",
2990
+ "does",
2991
+ "dog",
2992
+ "doin",
2993
+ "doin'",
2994
+ "doing",
2995
+ "doin\u2019",
2996
+ "doll",
2997
+ "dollgraduation",
2998
+ "dolls",
2999
+ "dom",
3000
+ "domino",
3001
+ "dominoes",
3002
+ "don",
3003
+ "donkey",
3004
+ "door",
3005
+ "doos",
3006
+ "dr",
3007
+ "dr.",
3008
+ "dragon",
3009
+ "dragonfly",
3010
+ "drella",
3011
+ "dress",
3012
+ "dried",
3013
+ "drifit",
3014
+ "drink",
3015
+ "drive",
3016
+ "dry",
3017
+ "dry-",
3018
+ "duck",
3019
+ "dustin",
3020
+ "dusty",
3021
+ "dwf",
3022
+ "dx",
3023
+ "dx.x",
3024
+ "dx.x.",
3025
+ "dxd",
3026
+ "dxdd",
3027
+ "dxdd-",
3028
+ "dxdxd",
3029
+ "dxx",
3030
+ "dxxddxdddxxd",
3031
+ "dxxxx",
3032
+ "dxxx\u3011Xxxxx",
3033
+ "dxxx\u3011xxxx",
3034
+ "dye",
3035
+ "e",
3036
+ "e's",
3037
+ "e.",
3038
+ "e.g",
3039
+ "e.g.",
3040
+ "e45",
3041
+ "e96",
3042
+ "each",
3043
+ "ead",
3044
+ "eae",
3045
+ "eagle",
3046
+ "eah",
3047
+ "eal",
3048
+ "eam",
3049
+ "ean",
3050
+ "ear",
3051
+ "early",
3052
+ "earth",
3053
+ "earth-",
3054
+ "earthrise",
3055
+ "easter",
3056
+ "eat",
3057
+ "eb.",
3058
+ "ebr",
3059
+ "ec.",
3060
+ "ece",
3061
+ "ech",
3062
+ "eck",
3063
+ "ed",
3064
+ "edition",
3065
+ "educational",
3066
+ "edward",
3067
+ "eed",
3068
+ "een",
3069
+ "eep",
3070
+ "eer",
3071
+ "ees",
3072
+ "effortlessly",
3073
+ "eft",
3074
+ "ege",
3075
+ "egg",
3076
+ "ego",
3077
+ "egs",
3078
+ "eko",
3079
+ "el.",
3080
+ "ela",
3081
+ "elephant",
3082
+ "elida",
3083
+ "elkanah",
3084
+ "ell",
3085
+ "ellen",
3086
+ "els",
3087
+ "elt",
3088
+ "em",
3089
+ "embroidered",
3090
+ "emery",
3091
+ "emi",
3092
+ "emotional",
3093
+ "ems",
3094
+ "emy",
3095
+ "en",
3096
+ "en-",
3097
+ "en.",
3098
+ "ena",
3099
+ "end",
3100
+ "ends",
3101
+ "ene",
3102
+ "energy",
3103
+ "engineering",
3104
+ "enn",
3105
+ "enough",
3106
+ "ens",
3107
+ "ent",
3108
+ "enthusiasts",
3109
+ "ep.",
3110
+ "ept",
3111
+ "epy",
3112
+ "er/",
3113
+ "erb",
3114
+ "ere",
3115
+ "erkys",
3116
+ "erm",
3117
+ "ern",
3118
+ "ers",
3119
+ "ert",
3120
+ "ery",
3121
+ "esa",
3122
+ "ese",
3123
+ "esh",
3124
+ "esk",
3125
+ "ess",
3126
+ "est",
3127
+ "estate",
3128
+ "et",
3129
+ "et/",
3130
+ "ete",
3131
+ "eto",
3132
+ "ett",
3133
+ "eu",
3134
+ "european",
3135
+ "ev.",
3136
+ "eva",
3137
+ "eve",
3138
+ "everett",
3139
+ "evi",
3140
+ "ews",
3141
+ "ex",
3142
+ "exclusive",
3143
+ "exi",
3144
+ "expand",
3145
+ "expense",
3146
+ "expenses",
3147
+ "expert",
3148
+ "exquisite",
3149
+ "ext",
3150
+ "eyelet",
3151
+ "eze",
3152
+ "e\u00f1o",
3153
+ "e\u2019s",
3154
+ "f",
3155
+ "f.",
3156
+ "fabiola",
3157
+ "fabriqu\u00e9",
3158
+ "face",
3159
+ "factory",
3160
+ "fairy",
3161
+ "family",
3162
+ "farberhaltendes",
3163
+ "farm",
3164
+ "faultier",
3165
+ "faulty",
3166
+ "fc",
3167
+ "feb",
3168
+ "feb.",
3169
+ "fed",
3170
+ "fee",
3171
+ "feeder",
3172
+ "fees",
3173
+ "felting",
3174
+ "fer",
3175
+ "ferdie",
3176
+ "ffe",
3177
+ "fidget",
3178
+ "fifi",
3179
+ "figure",
3180
+ "figures",
3181
+ "find",
3182
+ "fine",
3183
+ "finger",
3184
+ "finley",
3185
+ "fiore",
3186
+ "firming",
3187
+ "first",
3188
+ "fish",
3189
+ "fisher",
3190
+ "fit",
3191
+ "fitness",
3192
+ "fix",
3193
+ "fla",
3194
+ "fla.",
3195
+ "flannel",
3196
+ "flawored",
3197
+ "fle",
3198
+ "fleece",
3199
+ "flip",
3200
+ "floating",
3201
+ "floor",
3202
+ "flora",
3203
+ "floral",
3204
+ "flower",
3205
+ "flowers",
3206
+ "floyd",
3207
+ "fly",
3208
+ "foc",
3209
+ "fog",
3210
+ "foil",
3211
+ "fold",
3212
+ "folded",
3213
+ "folding",
3214
+ "food",
3215
+ "for",
3216
+ "forest",
3217
+ "fountain",
3218
+ "fox",
3219
+ "fragile",
3220
+ "frame",
3221
+ "free",
3222
+ "freedom",
3223
+ "freekids",
3224
+ "fresh",
3225
+ "fridge",
3226
+ "friends",
3227
+ "fries",
3228
+ "frill",
3229
+ "frilly",
3230
+ "frog",
3231
+ "from",
3232
+ "front",
3233
+ "frost",
3234
+ "fruits",
3235
+ "fts",
3236
+ "ftt",
3237
+ "fu",
3238
+ "fuck",
3239
+ "full",
3240
+ "fum",
3241
+ "fun",
3242
+ "function",
3243
+ "funny",
3244
+ "fus",
3245
+ "fuzz",
3246
+ "f\u00fcr",
3247
+ "g",
3248
+ "g.",
3249
+ "ga",
3250
+ "ga.",
3251
+ "gabriel",
3252
+ "gal",
3253
+ "game",
3254
+ "gan",
3255
+ "gar",
3256
+ "garden",
3257
+ "garment",
3258
+ "gary",
3259
+ "gb",
3260
+ "gbp",
3261
+ "gbw",
3262
+ "gear",
3263
+ "ged",
3264
+ "geekcell",
3265
+ "gel",
3266
+ "gen",
3267
+ "gen.",
3268
+ "generations",
3269
+ "genuine",
3270
+ "geometric",
3271
+ "ger",
3272
+ "ges",
3273
+ "get",
3274
+ "ggy",
3275
+ "ghost",
3276
+ "ght",
3277
+ "gic",
3278
+ "gie",
3279
+ "gift",
3280
+ "giftboxes",
3281
+ "gifts",
3282
+ "gildan",
3283
+ "giraffe",
3284
+ "girl",
3285
+ "girls",
3286
+ "gisela",
3287
+ "git",
3288
+ "giving",
3289
+ "glass",
3290
+ "glasses",
3291
+ "gle",
3292
+ "glider",
3293
+ "globo",
3294
+ "globos",
3295
+ "gmy",
3296
+ "gns",
3297
+ "go",
3298
+ "goat",
3299
+ "goes",
3300
+ "gogh",
3301
+ "goin",
3302
+ "goin'",
3303
+ "going",
3304
+ "goin\u2019",
3305
+ "goji",
3306
+ "gold",
3307
+ "gon",
3308
+ "gonna",
3309
+ "goodie",
3310
+ "goofy",
3311
+ "gordon",
3312
+ "gore",
3313
+ "gorilla",
3314
+ "got",
3315
+ "gov",
3316
+ "gov.",
3317
+ "gr",
3318
+ "grade",
3319
+ "graduatio",
3320
+ "graduation",
3321
+ "graham",
3322
+ "granite",
3323
+ "grant",
3324
+ "grass",
3325
+ "grasshopper",
3326
+ "great",
3327
+ "grecia",
3328
+ "green",
3329
+ "greg",
3330
+ "grey",
3331
+ "grid",
3332
+ "gr\u00fcn",
3333
+ "gsm",
3334
+ "guide",
3335
+ "guinea",
3336
+ "gustavus",
3337
+ "gyc72",
3338
+ "gym",
3339
+ "gypsum",
3340
+ "h",
3341
+ "h.",
3342
+ "haar",
3343
+ "haarshampoo",
3344
+ "hack",
3345
+ "hacked",
3346
+ "hacker",
3347
+ "hacking",
3348
+ "had",
3349
+ "hai",
3350
+ "hair",
3351
+ "hal",
3352
+ "half",
3353
+ "halloween",
3354
+ "ham",
3355
+ "han",
3356
+ "hand",
3357
+ "handbag",
3358
+ "handles",
3359
+ "handmade",
3360
+ "hands",
3361
+ "hanging",
3362
+ "hanon",
3363
+ "hans",
3364
+ "happy",
3365
+ "harrison",
3366
+ "has",
3367
+ "hat",
3368
+ "have",
3369
+ "havin",
3370
+ "havin'",
3371
+ "having",
3372
+ "havin\u2019",
3373
+ "hc01",
3374
+ "he",
3375
+ "he's",
3376
+ "head",
3377
+ "headband",
3378
+ "heart",
3379
+ "heat",
3380
+ "heather",
3381
+ "hechas",
3382
+ "hectico",
3383
+ "hedgehog",
3384
+ "helicopter",
3385
+ "helium",
3386
+ "hello",
3387
+ "hellocube",
3388
+ "hen",
3389
+ "henry",
3390
+ "her",
3391
+ "hermes",
3392
+ "hermosas",
3393
+ "hes",
3394
+ "hew",
3395
+ "hey",
3396
+ "he\u2019s",
3397
+ "hia",
3398
+ "hie",
3399
+ "high",
3400
+ "hin",
3401
+ "hio",
3402
+ "hip",
3403
+ "his",
3404
+ "hit",
3405
+ "hly",
3406
+ "hoe",
3407
+ "hog",
3408
+ "hokusai",
3409
+ "holder",
3410
+ "holders",
3411
+ "holiday",
3412
+ "holly",
3413
+ "holy",
3414
+ "hom",
3415
+ "home",
3416
+ "homme",
3417
+ "honey",
3418
+ "honeycomb",
3419
+ "hooded",
3420
+ "hoodie",
3421
+ "hoodies",
3422
+ "hop",
3423
+ "horn",
3424
+ "horse",
3425
+ "host",
3426
+ "hot",
3427
+ "hours",
3428
+ "house",
3429
+ "how",
3430
+ "how's",
3431
+ "how\u2019s",
3432
+ "hr",
3433
+ "hrs",
3434
+ "hs",
3435
+ "hscode",
3436
+ "hts",
3437
+ "hty",
3438
+ "hug",
3439
+ "hugo",
3440
+ "hunger",
3441
+ "hyaluronic",
3442
+ "hydrating",
3443
+ "hyena",
3444
+ "i",
3445
+ "i.",
3446
+ "i.e",
3447
+ "i.e.",
3448
+ "iPhone",
3449
+ "ia",
3450
+ "ia.",
3451
+ "ial",
3452
+ "ian",
3453
+ "ias",
3454
+ "ica",
3455
+ "ice",
3456
+ "icecream",
3457
+ "iced",
3458
+ "icelandic",
3459
+ "ich",
3460
+ "icing",
3461
+ "ick",
3462
+ "ico",
3463
+ "ics",
3464
+ "id",
3465
+ "id.",
3466
+ "ida",
3467
+ "ide",
3468
+ "ideal",
3469
+ "ido",
3470
+ "ids",
3471
+ "ied",
3472
+ "iel",
3473
+ "ier",
3474
+ "ies",
3475
+ "if.",
3476
+ "ife",
3477
+ "ifi",
3478
+ "ift",
3479
+ "ige",
3480
+ "igh",
3481
+ "ign",
3482
+ "igo",
3483
+ "ii",
3484
+ "ike",
3485
+ "ila",
3486
+ "ild",
3487
+ "ile",
3488
+ "ilk",
3489
+ "ill",
3490
+ "ill.",
3491
+ "ilo",
3492
+ "ily",
3493
+ "imaginative",
3494
+ "imaginext",
3495
+ "ime",
3496
+ "imi",
3497
+ "import",
3498
+ "in",
3499
+ "in'",
3500
+ "in-",
3501
+ "ina",
3502
+ "inc",
3503
+ "inc.",
3504
+ "inch",
3505
+ "inches",
3506
+ "included",
3507
+ "inclusive",
3508
+ "ind",
3509
+ "ind.",
3510
+ "india",
3511
+ "indie",
3512
+ "indigo",
3513
+ "ine",
3514
+ "inez",
3515
+ "inf",
3516
+ "ing",
3517
+ "ini",
3518
+ "ink",
3519
+ "inn",
3520
+ "ino",
3521
+ "ins",
3522
+ "inspired",
3523
+ "instuctions",
3524
+ "int",
3525
+ "intelligence",
3526
+ "intense",
3527
+ "interactive",
3528
+ "interior",
3529
+ "interviews",
3530
+ "in\u2019",
3531
+ "ion",
3532
+ "ior",
3533
+ "ip11674794",
3534
+ "iphone",
3535
+ "ips",
3536
+ "ira",
3537
+ "ird",
3538
+ "ire",
3539
+ "irk",
3540
+ "irl",
3541
+ "iron",
3542
+ "irs",
3543
+ "irt",
3544
+ "iry",
3545
+ "is",
3546
+ "is.",
3547
+ "isa",
3548
+ "ise",
3549
+ "ish",
3550
+ "ism",
3551
+ "iss",
3552
+ "issues",
3553
+ "ist",
3554
+ "it",
3555
+ "it's",
3556
+ "ita",
3557
+ "italie",
3558
+ "ite",
3559
+ "item",
3560
+ "ith",
3561
+ "its",
3562
+ "itt",
3563
+ "ity",
3564
+ "it\u2019s",
3565
+ "ium",
3566
+ "iva",
3567
+ "ive",
3568
+ "iz.",
3569
+ "ize",
3570
+ "i\u00f3n",
3571
+ "j",
3572
+ "j.",
3573
+ "jacket",
3574
+ "jan",
3575
+ "jan.",
3576
+ "janet",
3577
+ "japanese",
3578
+ "jar",
3579
+ "jas",
3580
+ "jason",
3581
+ "jay",
3582
+ "jellyfish",
3583
+ "jer",
3584
+ "jersey",
3585
+ "jesmonite",
3586
+ "jewellery",
3587
+ "joxtine",
3588
+ "joy",
3589
+ "jr",
3590
+ "jr.",
3591
+ "judas",
3592
+ "juego",
3593
+ "jul",
3594
+ "jul.",
3595
+ "jumper",
3596
+ "jumping",
3597
+ "jun",
3598
+ "jun.",
3599
+ "k",
3600
+ "k.",
3601
+ "k969",
3602
+ "k989",
3603
+ "k999",
3604
+ "kah",
3605
+ "kalari",
3606
+ "kan",
3607
+ "kan.",
3608
+ "kans",
3609
+ "kans.",
3610
+ "kbd",
3611
+ "kbdfans",
3612
+ "ked",
3613
+ "kel",
3614
+ "kellytoy",
3615
+ "kellytoys",
3616
+ "ken",
3617
+ "kenny",
3618
+ "ker",
3619
+ "ket",
3620
+ "key",
3621
+ "keyboard",
3622
+ "keychain",
3623
+ "kick",
3624
+ "kid",
3625
+ "kids",
3626
+ "kidscolor",
3627
+ "kin",
3628
+ "king",
3629
+ "kingdom",
3630
+ "kirk",
3631
+ "kiss",
3632
+ "kit",
3633
+ "kit-3",
3634
+ "kitchen",
3635
+ "kits",
3636
+ "kitty",
3637
+ "kittycat",
3638
+ "kla",
3639
+ "knee",
3640
+ "knight",
3641
+ "knit",
3642
+ "knob",
3643
+ "koala",
3644
+ "kodak",
3645
+ "koopa",
3646
+ "koopaling",
3647
+ "kult",
3648
+ "ky",
3649
+ "ky.",
3650
+ "kyla",
3651
+ "kys",
3652
+ "l",
3653
+ "l'or\u00e9al",
3654
+ "l.",
3655
+ "la",
3656
+ "la.",
3657
+ "label",
3658
+ "labels",
3659
+ "labelsIron",
3660
+ "labelshirt",
3661
+ "labelsiron",
3662
+ "lac",
3663
+ "lace",
3664
+ "ladies",
3665
+ "ladybug-",
3666
+ "lamp",
3667
+ "lan",
3668
+ "lanacane",
3669
+ "lantern",
3670
+ "lar",
3671
+ "large",
3672
+ "las",
3673
+ "last",
3674
+ "latex",
3675
+ "latte",
3676
+ "lauren",
3677
+ "lavender",
3678
+ "lay",
3679
+ "laying",
3680
+ "lcd",
3681
+ "learning",
3682
+ "leaves",
3683
+ "led",
3684
+ "lee",
3685
+ "left",
3686
+ "leg",
3687
+ "legends",
3688
+ "leggings",
3689
+ "lego",
3690
+ "legs",
3691
+ "lemon",
3692
+ "lemur",
3693
+ "len",
3694
+ "lens",
3695
+ "leopard",
3696
+ "ler",
3697
+ "les",
3698
+ "let",
3699
+ "let's",
3700
+ "letters",
3701
+ "letters/",
3702
+ "let\u2019s",
3703
+ "levels",
3704
+ "levi",
3705
+ "ley",
3706
+ "lf",
3707
+ "lga",
3708
+ "lic",
3709
+ "license",
3710
+ "licensed",
3711
+ "lid",
3712
+ "lie",
3713
+ "lif",
3714
+ "life",
3715
+ "lifelike",
3716
+ "light",
3717
+ "lighterior",
3718
+ "lighting",
3719
+ "lightning",
3720
+ "lights",
3721
+ "lightsfever",
3722
+ "lightsfevers",
3723
+ "lilac",
3724
+ "limited",
3725
+ "linda",
3726
+ "line",
3727
+ "lined",
3728
+ "lines",
3729
+ "lino",
3730
+ "lip",
3731
+ "liquid",
3732
+ "lite",
3733
+ "litre",
3734
+ "litro",
3735
+ "little",
3736
+ "living",
3737
+ "livvy",
3738
+ "ll",
3739
+ "ll.",
3740
+ "lla",
3741
+ "llama",
3742
+ "llamacorn",
3743
+ "lle",
3744
+ "llo",
3745
+ "lls",
3746
+ "lly",
3747
+ "lo.",
3748
+ "lobi",
3749
+ "local",
3750
+ "localseller",
3751
+ "localstock",
3752
+ "lockdown",
3753
+ "loe",
3754
+ "logo",
3755
+ "loki",
3756
+ "lola",
3757
+ "lon",
3758
+ "london",
3759
+ "long",
3760
+ "loo",
3761
+ "loopback",
3762
+ "lophophora",
3763
+ "lor",
3764
+ "los",
3765
+ "lot",
3766
+ "lotus",
3767
+ "louisa",
3768
+ "lounge",
3769
+ "love",
3770
+ "lovin",
3771
+ "lovin'",
3772
+ "loving",
3773
+ "lovin\u2019",
3774
+ "low",
3775
+ "lowercase",
3776
+ "lp",
3777
+ "lp-004",
3778
+ "lph",
3779
+ "ltd",
3780
+ "ltd.",
3781
+ "lti",
3782
+ "lty",
3783
+ "luces",
3784
+ "lucia",
3785
+ "lucy",
3786
+ "lue",
3787
+ "lullaby",
3788
+ "luminarias",
3789
+ "luna",
3790
+ "luscious",
3791
+ "luxmen",
3792
+ "luxury",
3793
+ "luz",
3794
+ "lva",
3795
+ "l\u00e4chelnde",
3796
+ "m",
3797
+ "m.",
3798
+ "ma'am",
3799
+ "macho",
3800
+ "mad",
3801
+ "madam",
3802
+ "madebypaulinauk",
3803
+ "madness",
3804
+ "magela",
3805
+ "maggie",
3806
+ "magic",
3807
+ "magical",
3808
+ "magico",
3809
+ "magnet",
3810
+ "magnet/",
3811
+ "magnetic",
3812
+ "magsafe",
3813
+ "make",
3814
+ "making",
3815
+ "mal",
3816
+ "malcolm",
3817
+ "mallow",
3818
+ "mallows",
3819
+ "malva",
3820
+ "man",
3821
+ "managed",
3822
+ "manhattan",
3823
+ "mano",
3824
+ "many",
3825
+ "mar",
3826
+ "mar.",
3827
+ "mario",
3828
+ "marvel",
3829
+ "mas",
3830
+ "masala",
3831
+ "mass",
3832
+ "mass.",
3833
+ "masterpiece",
3834
+ "mat",
3835
+ "matching",
3836
+ "mateo",
3837
+ "maths",
3838
+ "matisse",
3839
+ "matters",
3840
+ "max",
3841
+ "may",
3842
+ "ma\u2019am",
3843
+ "md",
3844
+ "md.",
3845
+ "me",
3846
+ "meaning",
3847
+ "med",
3848
+ "medication",
3849
+ "medium",
3850
+ "medix",
3851
+ "mees",
3852
+ "meeting",
3853
+ "meg",
3854
+ "mel",
3855
+ "melenge",
3856
+ "melody",
3857
+ "men",
3858
+ "mens",
3859
+ "mer",
3860
+ "mes",
3861
+ "mesa",
3862
+ "messrs",
3863
+ "messrs.",
3864
+ "metal",
3865
+ "metallica",
3866
+ "meter",
3867
+ "mex",
3868
+ "mfy",
3869
+ "mha",
3870
+ "mic",
3871
+ "mich",
3872
+ "mich.",
3873
+ "micro",
3874
+ "mid",
3875
+ "might",
3876
+ "mighty",
3877
+ "mikah",
3878
+ "mil",
3879
+ "mila",
3880
+ "military",
3881
+ "milk",
3882
+ "millyrose",
3883
+ "mimi",
3884
+ "min",
3885
+ "mineral",
3886
+ "minga",
3887
+ "mini",
3888
+ "minimalist",
3889
+ "minn",
3890
+ "minn.",
3891
+ "mins",
3892
+ "mint",
3893
+ "mir",
3894
+ "miss",
3895
+ "miss.",
3896
+ "missouri",
3897
+ "mit",
3898
+ "mixed",
3899
+ "ml",
3900
+ "mm",
3901
+ "mme",
3902
+ "mo",
3903
+ "mo.",
3904
+ "model",
3905
+ "models",
3906
+ "modern",
3907
+ "moduspec",
3908
+ "moist",
3909
+ "molars",
3910
+ "mold",
3911
+ "mom",
3912
+ "mon",
3913
+ "monkey",
3914
+ "monsters",
3915
+ "mont",
3916
+ "mont.",
3917
+ "montessori",
3918
+ "month",
3919
+ "monthly",
3920
+ "months",
3921
+ "moon",
3922
+ "moonstone",
3923
+ "moose",
3924
+ "mor",
3925
+ "morpeko",
3926
+ "moss",
3927
+ "motoko",
3928
+ "mould",
3929
+ "mountain",
3930
+ "mouth",
3931
+ "mpa",
3932
+ "mpe",
3933
+ "mph",
3934
+ "mps",
3935
+ "mqlittleshop",
3936
+ "mqlittleshop][localseller",
3937
+ "mr",
3938
+ "mr.",
3939
+ "mrk",
3940
+ "mrs",
3941
+ "mrs.",
3942
+ "ms",
3943
+ "ms.",
3944
+ "mt",
3945
+ "mt.",
3946
+ "mucha",
3947
+ "multi",
3948
+ "multicolor",
3949
+ "multicolored",
3950
+ "multifunctional",
3951
+ "mur",
3952
+ "mushroom",
3953
+ "music",
3954
+ "must",
3955
+ "mustard",
3956
+ "my",
3957
+ "mystery",
3958
+ "n",
3959
+ "n's",
3960
+ "n't",
3961
+ "n.",
3962
+ "n.c.",
3963
+ "n.d.",
3964
+ "n.h.",
3965
+ "n.j.",
3966
+ "n.m.",
3967
+ "n.y.",
3968
+ "n20",
3969
+ "n62",
3970
+ "n70501900296003",
3971
+ "na",
3972
+ "nabila",
3973
+ "nah",
3974
+ "nal",
3975
+ "name",
3976
+ "naomi",
3977
+ "narwhal",
3978
+ "nasty",
3979
+ "national",
3980
+ "natural",
3981
+ "navy",
3982
+ "nc.",
3983
+ "nca",
3984
+ "nce",
3985
+ "nch",
3986
+ "ncy",
3987
+ "nd.",
3988
+ "nda",
3989
+ "nde",
3990
+ "nds",
3991
+ "ndy",
3992
+ "nea",
3993
+ "neb",
3994
+ "neb.",
3995
+ "nebr",
3996
+ "nebr.",
3997
+ "neck",
3998
+ "necklace",
3999
+ "neckline",
4000
+ "ned",
4001
+ "nee",
4002
+ "need",
4003
+ "needed",
4004
+ "needle",
4005
+ "negras",
4006
+ "nel",
4007
+ "ner",
4008
+ "nes",
4009
+ "net",
4010
+ "nettoyant",
4011
+ "neutral",
4012
+ "nev",
4013
+ "nev.",
4014
+ "never",
4015
+ "new",
4016
+ "newborn",
4017
+ "ney",
4018
+ "nez",
4019
+ "nga",
4020
+ "nge",
4021
+ "ngs",
4022
+ "nia",
4023
+ "nic",
4024
+ "nicky",
4025
+ "nico",
4026
+ "nie",
4027
+ "night",
4028
+ "nike",
4029
+ "ninja",
4030
+ "nit",
4031
+ "nixie",
4032
+ "nja",
4033
+ "nks",
4034
+ "nly",
4035
+ "nn.",
4036
+ "nny",
4037
+ "no",
4038
+ "nob",
4039
+ "node",
4040
+ "nom",
4041
+ "non",
4042
+ "noodle",
4043
+ "nor",
4044
+ "norman",
4045
+ "not",
4046
+ "nothin",
4047
+ "nothin'",
4048
+ "nothing",
4049
+ "nothin\u2019",
4050
+ "nov",
4051
+ "nov.",
4052
+ "now",
4053
+ "nry",
4054
+ "ns.",
4055
+ "nse",
4056
+ "nt",
4057
+ "nt.",
4058
+ "nta",
4059
+ "nte",
4060
+ "nth",
4061
+ "nti",
4062
+ "nts",
4063
+ "nuff",
4064
+ "number/",
4065
+ "numbers",
4066
+ "nut",
4067
+ "nuthin",
4068
+ "nuthin'",
4069
+ "nuthin\u2019",
4070
+ "nutty",
4071
+ "nyl",
4072
+ "nylon",
4073
+ "nyx",
4074
+ "n\u2019s",
4075
+ "n\u2019t",
4076
+ "o",
4077
+ "o'clock",
4078
+ "o's",
4079
+ "o.",
4080
+ "o.0",
4081
+ "o.O",
4082
+ "o.o",
4083
+ "o_0",
4084
+ "o_O",
4085
+ "o_o",
4086
+ "oad",
4087
+ "oal",
4088
+ "oap",
4089
+ "oat",
4090
+ "oats",
4091
+ "oba",
4092
+ "obb",
4093
+ "obi",
4094
+ "obo",
4095
+ "ock",
4096
+ "oct",
4097
+ "oct.",
4098
+ "octopus",
4099
+ "oda",
4100
+ "odd",
4101
+ "ode",
4102
+ "odile",
4103
+ "ody",
4104
+ "oes",
4105
+ "of",
4106
+ "of.",
4107
+ "office",
4108
+ "official",
4109
+ "officielle",
4110
+ "offizielles",
4111
+ "oficial",
4112
+ "oft",
4113
+ "ofy",
4114
+ "oga",
4115
+ "ogh",
4116
+ "ogo",
4117
+ "oho",
4118
+ "oil",
4119
+ "oin",
4120
+ "ois",
4121
+ "oji",
4122
+ "oki",
4123
+ "okla",
4124
+ "okla.",
4125
+ "oko",
4126
+ "ol",
4127
+ "ol'",
4128
+ "ola",
4129
+ "old",
4130
+ "oled",
4131
+ "olga",
4132
+ "olive",
4133
+ "oll",
4134
+ "olm",
4135
+ "olo",
4136
+ "ols",
4137
+ "oly",
4138
+ "ol\u2019",
4139
+ "om",
4140
+ "omar",
4141
+ "omb",
4142
+ "ome",
4143
+ "omi",
4144
+ "on",
4145
+ "one",
4146
+ "ones",
4147
+ "ong",
4148
+ "onn",
4149
+ "ons",
4150
+ "ont",
4151
+ "onyx",
4152
+ "ood",
4153
+ "oof",
4154
+ "ooi",
4155
+ "ool",
4156
+ "oom",
4157
+ "oon",
4158
+ "oop",
4159
+ "oor",
4160
+ "oos",
4161
+ "oot",
4162
+ "opa",
4163
+ "ope",
4164
+ "open",
4165
+ "ops",
4166
+ "option",
4167
+ "or",
4168
+ "ora",
4169
+ "orange",
4170
+ "orangutan",
4171
+ "orb",
4172
+ "orchids",
4173
+ "order",
4174
+ "ore",
4175
+ "ore.",
4176
+ "ori",
4177
+ "original",
4178
+ "ork",
4179
+ "orn",
4180
+ "ornaments",
4181
+ "orp",
4182
+ "ors",
4183
+ "ort",
4184
+ "ory",
4185
+ "orzella",
4186
+ "or\u00e9",
4187
+ "os",
4188
+ "os.",
4189
+ "ose",
4190
+ "oss",
4191
+ "ost",
4192
+ "oth",
4193
+ "other",
4194
+ "otl",
4195
+ "ots",
4196
+ "ought",
4197
+ "our",
4198
+ "ous",
4199
+ "out",
4200
+ "outdoor",
4201
+ "ov.",
4202
+ "oval",
4203
+ "ove",
4204
+ "over",
4205
+ "oversized",
4206
+ "overthinker",
4207
+ "owl",
4208
+ "owl-",
4209
+ "own",
4210
+ "ows",
4211
+ "oy/",
4212
+ "oyd",
4213
+ "oys",
4214
+ "oz",
4215
+ "o\u2019clock",
4216
+ "o\u2019s",
4217
+ "p",
4218
+ "p.",
4219
+ "p.m",
4220
+ "p.m.",
4221
+ "p929",
4222
+ "pa",
4223
+ "pa.",
4224
+ "pac",
4225
+ "pacifier",
4226
+ "pack",
4227
+ "packing",
4228
+ "paint",
4229
+ "painting",
4230
+ "pairs",
4231
+ "pal",
4232
+ "palitoy",
4233
+ "palos",
4234
+ "pampas",
4235
+ "panda",
4236
+ "pandacorn",
4237
+ "pania",
4238
+ "pantene",
4239
+ "pants",
4240
+ "papel",
4241
+ "paper",
4242
+ "paperbag",
4243
+ "papiers",
4244
+ "par",
4245
+ "para",
4246
+ "paragraph",
4247
+ "parfum",
4248
+ "paris",
4249
+ "park",
4250
+ "parker",
4251
+ "parking",
4252
+ "participants",
4253
+ "participants=",
4254
+ "parts",
4255
+ "party",
4256
+ "pas",
4257
+ "pastel",
4258
+ "patio",
4259
+ "pattern",
4260
+ "patterys",
4261
+ "payment",
4262
+ "pcs",
4263
+ "pec",
4264
+ "ped",
4265
+ "pegacorn",
4266
+ "pel",
4267
+ "peluche",
4268
+ "pen",
4269
+ "penetraitt",
4270
+ "penguin",
4271
+ "penguin-",
4272
+ "pens",
4273
+ "pentester",
4274
+ "peppa",
4275
+ "per",
4276
+ "performance",
4277
+ "permanent",
4278
+ "personalized",
4279
+ "pes",
4280
+ "pet",
4281
+ "ph",
4282
+ "ph.d.",
4283
+ "philip",
4284
+ "phone",
4285
+ "pia",
4286
+ "picasso",
4287
+ "picks",
4288
+ "picture",
4289
+ "piece",
4290
+ "pieces",
4291
+ "piezas",
4292
+ "pig",
4293
+ "piggy",
4294
+ "pilar",
4295
+ "pillow",
4296
+ "pine",
4297
+ "pink",
4298
+ "pins",
4299
+ "pistachio",
4300
+ "plaid",
4301
+ "plane",
4302
+ "planet",
4303
+ "plant",
4304
+ "planter",
4305
+ "plaster",
4306
+ "plastic",
4307
+ "play",
4308
+ "playhouse",
4309
+ "ple",
4310
+ "plexi",
4311
+ "plexiglass",
4312
+ "plush",
4313
+ "plushie",
4314
+ "pl\u00fcschtier",
4315
+ "pm",
4316
+ "poa",
4317
+ "pokemon",
4318
+ "pok\u00e9mon",
4319
+ "pol",
4320
+ "polo",
4321
+ "polyester",
4322
+ "pompa",
4323
+ "pompe",
4324
+ "poo",
4325
+ "poodle",
4326
+ "pool",
4327
+ "ports",
4328
+ "posing",
4329
+ "post",
4330
+ "pot",
4331
+ "pour",
4332
+ "powder",
4333
+ "ppa",
4334
+ "ppe",
4335
+ "ppy",
4336
+ "pr",
4337
+ "pr.",
4338
+ "prawn",
4339
+ "pre",
4340
+ "precut",
4341
+ "premium",
4342
+ "preschool",
4343
+ "press",
4344
+ "price",
4345
+ "priest",
4346
+ "prim",
4347
+ "prince",
4348
+ "princess",
4349
+ "print",
4350
+ "printcube",
4351
+ "printed",
4352
+ "printing",
4353
+ "pro",
4354
+ "process",
4355
+ "product",
4356
+ "prof",
4357
+ "prof.",
4358
+ "professional",
4359
+ "professionnel",
4360
+ "program",
4361
+ "properties",
4362
+ "props",
4363
+ "proraso",
4364
+ "proration",
4365
+ "prussion",
4366
+ "pse",
4367
+ "pt.",
4368
+ "pterodactyl",
4369
+ "puff",
4370
+ "pug",
4371
+ "pulgadas",
4372
+ "pull",
4373
+ "pullover",
4374
+ "pumps",
4375
+ "puppy",
4376
+ "pure",
4377
+ "purple",
4378
+ "pus",
4379
+ "puzzle",
4380
+ "puzzles",
4381
+ "pygmy",
4382
+ "pyramid",
4383
+ "q",
4384
+ "q.",
4385
+ "q21",
4386
+ "qd06",
4387
+ "qty",
4388
+ "qua",
4389
+ "quality",
4390
+ "quantity",
4391
+ "queen",
4392
+ "qu\u00e9",
4393
+ "r",
4394
+ "r.",
4395
+ "rab",
4396
+ "raglan",
4397
+ "rail",
4398
+ "rainbow",
4399
+ "ral",
4400
+ "ralph",
4401
+ "ram",
4402
+ "randy",
4403
+ "raquel",
4404
+ "rare",
4405
+ "ras",
4406
+ "raspberry",
4407
+ "rattle",
4408
+ "raw",
4409
+ "ray",
4410
+ "rbe",
4411
+ "rc",
4412
+ "rce",
4413
+ "rch",
4414
+ "rds",
4415
+ "re",
4416
+ "re.",
4417
+ "rea",
4418
+ "ready",
4419
+ "real",
4420
+ "realistic",
4421
+ "reality",
4422
+ "rear",
4423
+ "rebel",
4424
+ "receive",
4425
+ "rechargeable",
4426
+ "recruitment",
4427
+ "red",
4428
+ "ree",
4429
+ "reebok",
4430
+ "reference",
4431
+ "reg",
4432
+ "regina",
4433
+ "reindeer",
4434
+ "ren",
4435
+ "rep",
4436
+ "rep.",
4437
+ "replacement",
4438
+ "res",
4439
+ "resale",
4440
+ "research",
4441
+ "resin",
4442
+ "resistain",
4443
+ "restaurant",
4444
+ "resveratrol",
4445
+ "ret",
4446
+ "retro",
4447
+ "reusable",
4448
+ "reutilizables",
4449
+ "rev",
4450
+ "rev.",
4451
+ "rew",
4452
+ "rex",
4453
+ "rey",
4454
+ "rgbw",
4455
+ "rge",
4456
+ "rgi",
4457
+ "rgy",
4458
+ "rhinestone",
4459
+ "rib",
4460
+ "ribbed",
4461
+ "ribbon",
4462
+ "ribbons",
4463
+ "ric",
4464
+ "rich",
4465
+ "rid",
4466
+ "ride",
4467
+ "rie",
4468
+ "rim",
4469
+ "rinforzante",
4470
+ "ring",
4471
+ "rings",
4472
+ "rio",
4473
+ "rip",
4474
+ "ris",
4475
+ "ristrutturante",
4476
+ "river",
4477
+ "riz",
4478
+ "rk.",
4479
+ "rld",
4480
+ "rls",
4481
+ "rly",
4482
+ "rma",
4483
+ "rnt",
4484
+ "road",
4485
+ "robb",
4486
+ "rocio",
4487
+ "rock",
4488
+ "rof",
4489
+ "rog",
4490
+ "rohan",
4491
+ "rol",
4492
+ "rolled",
4493
+ "rom",
4494
+ "roman",
4495
+ "romantic",
4496
+ "ron",
4497
+ "room",
4498
+ "rooster",
4499
+ "rop",
4500
+ "rope",
4501
+ "ros",
4502
+ "rose",
4503
+ "rosie",
4504
+ "rottweiler",
4505
+ "rough",
4506
+ "round",
4507
+ "roundneck",
4508
+ "row",
4509
+ "rp.",
4510
+ "rry",
4511
+ "rs.",
4512
+ "rs/",
4513
+ "rse",
4514
+ "rst",
4515
+ "rth",
4516
+ "rts",
4517
+ "rty",
4518
+ "rude",
4519
+ "rue",
4520
+ "rufus",
4521
+ "rus",
4522
+ "rust",
4523
+ "rustic",
4524
+ "rutabaga",
4525
+ "ry-",
4526
+ "rys",
4527
+ "r\u00fcn",
4528
+ "s",
4529
+ "s's",
4530
+ "s(6",
4531
+ "s.",
4532
+ "s.c.",
4533
+ "s24",
4534
+ "s39",
4535
+ "safe",
4536
+ "sage",
4537
+ "sai",
4538
+ "sailor",
4539
+ "salt",
4540
+ "sam",
4541
+ "same",
4542
+ "samir",
4543
+ "samples",
4544
+ "sand",
4545
+ "santa",
4546
+ "sapphire",
4547
+ "sas",
4548
+ "satin",
4549
+ "sauce",
4550
+ "savage",
4551
+ "scale",
4552
+ "scandinavian",
4553
+ "scarf",
4554
+ "scarlet",
4555
+ "schlafenden",
4556
+ "school",
4557
+ "sco",
4558
+ "scoop",
4559
+ "scooter",
4560
+ "scream",
4561
+ "screaming",
4562
+ "scrunch",
4563
+ "scrunchie",
4564
+ "sculpture",
4565
+ "sea",
4566
+ "seal",
4567
+ "seamless",
4568
+ "sebastian",
4569
+ "seconds",
4570
+ "secret",
4571
+ "security",
4572
+ "sed",
4573
+ "seller",
4574
+ "semi",
4575
+ "sen",
4576
+ "sen.",
4577
+ "sensitive",
4578
+ "sensory",
4579
+ "sep",
4580
+ "sep.",
4581
+ "separate",
4582
+ "sept",
4583
+ "sept.",
4584
+ "sequin",
4585
+ "ser",
4586
+ "serie",
4587
+ "series",
4588
+ "serpent",
4589
+ "service",
4590
+ "services",
4591
+ "ses",
4592
+ "sessions",
4593
+ "set",
4594
+ "sex",
4595
+ "sey",
4596
+ "sg",
4597
+ "sh.",
4598
+ "sha",
4599
+ "shaft",
4600
+ "shall",
4601
+ "shampoing",
4602
+ "shampoo",
4603
+ "shampooing",
4604
+ "shantira",
4605
+ "shark",
4606
+ "she",
4607
+ "she's",
4608
+ "sheep",
4609
+ "shell",
4610
+ "she\u2019s",
4611
+ "ship",
4612
+ "shirt",
4613
+ "shirts",
4614
+ "shiseido",
4615
+ "shoe",
4616
+ "shoes",
4617
+ "shop",
4618
+ "short",
4619
+ "should",
4620
+ "shower",
4621
+ "shrew",
4622
+ "shy",
4623
+ "sic",
4624
+ "sides",
4625
+ "sie",
4626
+ "siege",
4627
+ "sign",
4628
+ "signature",
4629
+ "sii",
4630
+ "silicone",
4631
+ "silkscreen",
4632
+ "silver",
4633
+ "simha",
4634
+ "simulation",
4635
+ "sin",
4636
+ "singing",
4637
+ "single",
4638
+ "size",
4639
+ "sized",
4640
+ "skateboarding",
4641
+ "skeleton",
4642
+ "skin",
4643
+ "sku",
4644
+ "skull",
4645
+ "sla",
4646
+ "sle",
4647
+ "sleepover",
4648
+ "sleepy",
4649
+ "sleeve",
4650
+ "sleeved",
4651
+ "sliding",
4652
+ "slime",
4653
+ "sloth",
4654
+ "sly",
4655
+ "small",
4656
+ "smiling",
4657
+ "smores",
4658
+ "snow",
4659
+ "snowman",
4660
+ "soap",
4661
+ "socks",
4662
+ "soft",
4663
+ "sofy",
4664
+ "soin",
4665
+ "solar",
4666
+ "solaris",
4667
+ "somethin",
4668
+ "somethin'",
4669
+ "something",
4670
+ "somethin\u2019",
4671
+ "son",
4672
+ "soothing",
4673
+ "soportes",
4674
+ "sound",
4675
+ "sounds",
4676
+ "source",
4677
+ "space",
4678
+ "spark",
4679
+ "special",
4680
+ "species",
4681
+ "speech",
4682
+ "speed",
4683
+ "spelling",
4684
+ "spider",
4685
+ "spiritual",
4686
+ "spongieuse",
4687
+ "sport",
4688
+ "spots",
4689
+ "spotted",
4690
+ "spraying",
4691
+ "spread",
4692
+ "sq21",
4693
+ "sqjw22",
4694
+ "squad",
4695
+ "squashmallow",
4696
+ "squeeze",
4697
+ "squish",
4698
+ "squishmallow",
4699
+ "squishmallows",
4700
+ "squishy",
4701
+ "srs",
4702
+ "ss.",
4703
+ "sse",
4704
+ "sso",
4705
+ "st",
4706
+ "st.",
4707
+ "stackable",
4708
+ "standard",
4709
+ "stands",
4710
+ "stapleton",
4711
+ "star",
4712
+ "starscream",
4713
+ "start",
4714
+ "states",
4715
+ "stems",
4716
+ "stick",
4717
+ "sticker",
4718
+ "stickers",
4719
+ "sticks",
4720
+ "stingray",
4721
+ "stir",
4722
+ "stirrers",
4723
+ "stitch",
4724
+ "stock",
4725
+ "stofftier",
4726
+ "stomach",
4727
+ "stomper",
4728
+ "stone",
4729
+ "stones",
4730
+ "storage",
4731
+ "store",
4732
+ "straight",
4733
+ "strawberry",
4734
+ "streetwear",
4735
+ "stretch",
4736
+ "strike",
4737
+ "striped",
4738
+ "sts",
4739
+ "student",
4740
+ "studio",
4741
+ "stuffed",
4742
+ "stunning",
4743
+ "sty",
4744
+ "style",
4745
+ "suave",
4746
+ "sublimation",
4747
+ "submarine",
4748
+ "subtraction",
4749
+ "sugar",
4750
+ "suit",
4751
+ "suitable",
4752
+ "sum",
4753
+ "summer",
4754
+ "sun",
4755
+ "sunflower",
4756
+ "sunflowers",
4757
+ "sunny",
4758
+ "sunscreen",
4759
+ "super",
4760
+ "superb",
4761
+ "supporting",
4762
+ "surname",
4763
+ "sw",
4764
+ "sweater",
4765
+ "sweatpants",
4766
+ "sweatshirt",
4767
+ "sweatshirts",
4768
+ "swimming",
4769
+ "swizzle",
4770
+ "swshn11898412",
4771
+ "swshn11914182",
4772
+ "swshn11924931",
4773
+ "sztslight",
4774
+ "s\u2019s",
4775
+ "t",
4776
+ "t's",
4777
+ "t-",
4778
+ "t-3",
4779
+ "t.",
4780
+ "t35l4",
4781
+ "t71",
4782
+ "ta",
4783
+ "tabby",
4784
+ "table",
4785
+ "tabletop",
4786
+ "tabs",
4787
+ "tag",
4788
+ "tags",
4789
+ "tal",
4790
+ "talisa",
4791
+ "talking",
4792
+ "tally",
4793
+ "tam",
4794
+ "tan",
4795
+ "tapered",
4796
+ "tar",
4797
+ "tassle",
4798
+ "taupe",
4799
+ "tax",
4800
+ "tch",
4801
+ "td.",
4802
+ "tea",
4803
+ "teach",
4804
+ "teahouse",
4805
+ "teal",
4806
+ "team",
4807
+ "teamviewer",
4808
+ "ted",
4809
+ "teddy",
4810
+ "teether",
4811
+ "teething",
4812
+ "tel",
4813
+ "tem",
4814
+ "tenn",
4815
+ "tenn.",
4816
+ "tent",
4817
+ "teo",
4818
+ "ter",
4819
+ "terrazzo",
4820
+ "tes",
4821
+ "tesla",
4822
+ "tex",
4823
+ "text",
4824
+ "th-",
4825
+ "thanks",
4826
+ "that",
4827
+ "that's",
4828
+ "that\u2019s",
4829
+ "the",
4830
+ "them",
4831
+ "there",
4832
+ "there's",
4833
+ "there\u2019s",
4834
+ "these",
4835
+ "they",
4836
+ "thigh",
4837
+ "things",
4838
+ "thinking",
4839
+ "this",
4840
+ "this's",
4841
+ "this\u2019s",
4842
+ "thompson",
4843
+ "those",
4844
+ "thread",
4845
+ "three",
4846
+ "ths",
4847
+ "tic",
4848
+ "tie",
4849
+ "tier",
4850
+ "tik",
4851
+ "timberland",
4852
+ "time",
4853
+ "tin",
4854
+ "tio",
4855
+ "tir",
4856
+ "tl-",
4857
+ "tle",
4858
+ "to",
4859
+ "toast",
4860
+ "todd",
4861
+ "toddler",
4862
+ "toddlers",
4863
+ "toffee",
4864
+ "tok",
4865
+ "token",
4866
+ "tom",
4867
+ "tomar",
4868
+ "ton",
4869
+ "tool",
4870
+ "tools",
4871
+ "top",
4872
+ "topper",
4873
+ "toppers",
4874
+ "tor",
4875
+ "total",
4876
+ "touch",
4877
+ "toxic",
4878
+ "toy",
4879
+ "toy/",
4880
+ "toy_gift",
4881
+ "toy_giftt",
4882
+ "toybox",
4883
+ "toys",
4884
+ "toys/",
4885
+ "tra",
4886
+ "track",
4887
+ "train",
4888
+ "trainer",
4889
+ "transaction",
4890
+ "transfer",
4891
+ "transformers",
4892
+ "transparent",
4893
+ "transparentes",
4894
+ "tray",
4895
+ "tre",
4896
+ "treasure",
4897
+ "tree",
4898
+ "trees",
4899
+ "triceratops",
4900
+ "tricycle",
4901
+ "trinket",
4902
+ "tristan",
4903
+ "tro",
4904
+ "truck",
4905
+ "trudy",
4906
+ "trust",
4907
+ "ts/",
4908
+ "ts2",
4909
+ "ts=",
4910
+ "tshirt",
4911
+ "tshirts",
4912
+ "tsubaki",
4913
+ "tta",
4914
+ "tte",
4915
+ "tty",
4916
+ "tunic",
4917
+ "tunnel",
4918
+ "turmeric",
4919
+ "turtle",
4920
+ "tus",
4921
+ "tyl",
4922
+ "t\u2019s",
4923
+ "u",
4924
+ "u.",
4925
+ "uad",
4926
+ "ual",
4927
+ "ube",
4928
+ "ubo",
4929
+ "uce",
4930
+ "uch",
4931
+ "uck",
4932
+ "uct",
4933
+ "ucy",
4934
+ "ude",
4935
+ "uds",
4936
+ "udy",
4937
+ "uel",
4938
+ "ues",
4939
+ "uet",
4940
+ "uey",
4941
+ "uff",
4942
+ "ug-",
4943
+ "ug.",
4944
+ "ugh",
4945
+ "ugo",
4946
+ "ugs",
4947
+ "uid",
4948
+ "uin",
4949
+ "uit",
4950
+ "uiuoutoy",
4951
+ "uk",
4952
+ "ul.",
4953
+ "ula",
4954
+ "uld",
4955
+ "ull",
4956
+ "ult",
4957
+ "ultimate",
4958
+ "ultra",
4959
+ "ultrasoft",
4960
+ "umn",
4961
+ "un.",
4962
+ "una",
4963
+ "unboxing",
4964
+ "und",
4965
+ "underwater",
4966
+ "unicorn",
4967
+ "uniqua",
4968
+ "unisex",
4969
+ "unit",
4970
+ "united",
4971
+ "universe",
4972
+ "unlimited",
4973
+ "unt",
4974
+ "up",
4975
+ "upc:8001090666765",
4976
+ "upe",
4977
+ "uppercase",
4978
+ "urbanstyle",
4979
+ "ure",
4980
+ "uri",
4981
+ "urs",
4982
+ "ury",
4983
+ "us",
4984
+ "usb",
4985
+ "use",
4986
+ "user",
4987
+ "users",
4988
+ "ush",
4989
+ "uso",
4990
+ "ust",
4991
+ "ute",
4992
+ "uth",
4993
+ "uv",
4994
+ "uzz",
4995
+ "v",
4996
+ "v.",
4997
+ "v.s",
4998
+ "v.s.",
4999
+ "v.v",
5000
+ "v00",
5001
+ "v1",
5002
+ "v2",
5003
+ "v_v",
5004
+ "va",
5005
+ "va.",
5006
+ "val",
5007
+ "van",
5008
+ "vanilla",
5009
+ "vanity",
5010
+ "vanquish",
5011
+ "vas",
5012
+ "vase",
5013
+ "ve",
5014
+ "ved",
5015
+ "vee",
5016
+ "vegetables",
5017
+ "vehicle",
5018
+ "vel",
5019
+ "velvet",
5020
+ "ven",
5021
+ "vengeance",
5022
+ "venom",
5023
+ "vent",
5024
+ "ver",
5025
+ "veronica",
5026
+ "very",
5027
+ "ves",
5028
+ "vet",
5029
+ "vi",
5030
+ "vin",
5031
+ "vindaloo",
5032
+ "vintage",
5033
+ "vinyl",
5034
+ "visage",
5035
+ "vision",
5036
+ "vistaprint",
5037
+ "vitamin",
5038
+ "vitamino",
5039
+ "vneck",
5040
+ "voyager",
5041
+ "vs",
5042
+ "vs.",
5043
+ "vus",
5044
+ "vvy",
5045
+ "w",
5046
+ "w's",
5047
+ "w.",
5048
+ "w/o",
5049
+ "w22",
5050
+ "waffle",
5051
+ "waisted",
5052
+ "waived",
5053
+ "wall",
5054
+ "walrus",
5055
+ "wand",
5056
+ "want",
5057
+ "wanted",
5058
+ "war",
5059
+ "warm",
5060
+ "wars",
5061
+ "was",
5062
+ "wash",
5063
+ "wash.",
5064
+ "washable",
5065
+ "watch",
5066
+ "watching",
5067
+ "water",
5068
+ "waterfall",
5069
+ "watermelon",
5070
+ "waterproof",
5071
+ "we",
5072
+ "web",
5073
+ "wedding",
5074
+ "weddings",
5075
+ "weiches",
5076
+ "weights",
5077
+ "wella",
5078
+ "wendy",
5079
+ "wer",
5080
+ "were",
5081
+ "western",
5082
+ "wfc",
5083
+ "wh",
5084
+ "what",
5085
+ "what's",
5086
+ "what\u2019s",
5087
+ "when",
5088
+ "when's",
5089
+ "when\u2019s",
5090
+ "where",
5091
+ "where's",
5092
+ "where\u2019s",
5093
+ "whipping",
5094
+ "whiskey",
5095
+ "whit",
5096
+ "white",
5097
+ "whitening",
5098
+ "who",
5099
+ "who's",
5100
+ "wholesale",
5101
+ "who\u2019s",
5102
+ "why",
5103
+ "why's",
5104
+ "why\u2019s",
5105
+ "wildflower",
5106
+ "will",
5107
+ "williamsii",
5108
+ "wind",
5109
+ "winding",
5110
+ "winged",
5111
+ "wings",
5112
+ "winkel",
5113
+ "wis",
5114
+ "wis.",
5115
+ "witch",
5116
+ "with",
5117
+ "without",
5118
+ "wl-",
5119
+ "wltoys",
5120
+ "wo",
5121
+ "women",
5122
+ "wood",
5123
+ "wooden",
5124
+ "woodland",
5125
+ "words",
5126
+ "work",
5127
+ "world",
5128
+ "worn",
5129
+ "would",
5130
+ "woven",
5131
+ "wrecker",
5132
+ "wrinkles",
5133
+ "wts",
5134
+ "wwe",
5135
+ "w\u2019s",
5136
+ "x",
5137
+ "x'",
5138
+ "x'x",
5139
+ "x'xxxx",
5140
+ "x-",
5141
+ "x.",
5142
+ "x.X",
5143
+ "x.d",
5144
+ "x.x",
5145
+ "x.x.",
5146
+ "x/x",
5147
+ "xD",
5148
+ "xDD",
5149
+ "xX",
5150
+ "xXX",
5151
+ "xXxxxx",
5152
+ "x_X",
5153
+ "x_d",
5154
+ "x_x",
5155
+ "xd",
5156
+ "xdd",
5157
+ "xddd",
5158
+ "xdddd",
5159
+ "xddxd",
5160
+ "xdxxxdddd",
5161
+ "xed",
5162
+ "xerophyte",
5163
+ "xes",
5164
+ "xic",
5165
+ "xie",
5166
+ "xl",
5167
+ "xmas",
5168
+ "xs",
5169
+ "xx",
5170
+ "xx'",
5171
+ "xx'x",
5172
+ "xx'xx",
5173
+ "xx-ddd",
5174
+ "xx.",
5175
+ "xxdd",
5176
+ "xxdddd",
5177
+ "xxl",
5178
+ "xxx",
5179
+ "xxx'x",
5180
+ "xxx-",
5181
+ "xxx-d",
5182
+ "xxx.",
5183
+ "xxx/",
5184
+ "xxx/xx",
5185
+ "xxx:dddd",
5186
+ "xxx_xxxx",
5187
+ "xxxd",
5188
+ "xxxdd",
5189
+ "xxxddd",
5190
+ "xxxx",
5191
+ "xxxx'",
5192
+ "xxxx'x",
5193
+ "xxxx(d",
5194
+ "xxxx-",
5195
+ "xxxx-dddd",
5196
+ "xxxx/",
5197
+ "xxxx=",
5198
+ "xxxxXxxx",
5199
+ "xxxx][xxxx",
5200
+ "xxxxdd",
5201
+ "xxxxdddd",
5202
+ "xxxx\u2019",
5203
+ "xxxx\u2019x",
5204
+ "xxx\u2019x",
5205
+ "xx\u2019",
5206
+ "xx\u2019x",
5207
+ "xx\u2019xx",
5208
+ "x\u2019",
5209
+ "x\u2019x",
5210
+ "x\u2019xxxx",
5211
+ "x\ufe35x",
5212
+ "y",
5213
+ "y'",
5214
+ "y's",
5215
+ "y.",
5216
+ "yeah",
5217
+ "year",
5218
+ "years",
5219
+ "yellow",
5220
+ "yla",
5221
+ "yle",
5222
+ "yoga",
5223
+ "yosemite",
5224
+ "you",
5225
+ "your",
5226
+ "youth",
5227
+ "ys/",
5228
+ "ysl",
5229
+ "yst",
5230
+ "yte",
5231
+ "y\u2019",
5232
+ "y\u2019s",
5233
+ "z",
5234
+ "z.",
5235
+ "zas",
5236
+ "zaylee",
5237
+ "zed",
5238
+ "zen",
5239
+ "zip",
5240
+ "zle",
5241
+ "zzo",
5242
+ "|",
5243
+ "}",
5244
+ "\u00a0",
5245
+ "\u00a3",
5246
+ "\u00ac",
5247
+ "\u00ac_\u00ac",
5248
+ "\u00ae",
5249
+ "\u00af",
5250
+ "\u00af\\(x)/\u00af",
5251
+ "\u00af\\(\u30c4)/\u00af",
5252
+ "\u00b0",
5253
+ "\u00b0C.",
5254
+ "\u00b0F.",
5255
+ "\u00b0K.",
5256
+ "\u00b0X.",
5257
+ "\u00b0c.",
5258
+ "\u00b0f.",
5259
+ "\u00b0k.",
5260
+ "\u00b0x.",
5261
+ "\u00c9",
5262
+ "\u00c9pice",
5263
+ "\u00d7",
5264
+ "\u00e0",
5265
+ "\u00e4",
5266
+ "\u00e4.",
5267
+ "\u00e9",
5268
+ "\u00e9al",
5269
+ "\u00e9pice",
5270
+ "\u00f6",
5271
+ "\u00f6.",
5272
+ "\u00fc",
5273
+ "\u00fc.",
5274
+ "\u0ca0",
5275
+ "\u0ca0_\u0ca0",
5276
+ "\u0ca0\ufe35\u0ca0",
5277
+ "\u2013",
5278
+ "\u2014",
5279
+ "\u2018",
5280
+ "\u2018S",
5281
+ "\u2018X",
5282
+ "\u2018s",
5283
+ "\u2018x",
5284
+ "\u2019",
5285
+ "\u2019-(",
5286
+ "\u2019-)",
5287
+ "\u2019Cause",
5288
+ "\u2019Cos",
5289
+ "\u2019Coz",
5290
+ "\u2019Cuz",
5291
+ "\u2019S",
5292
+ "\u2019X",
5293
+ "\u2019Xxx",
5294
+ "\u2019Xxxxx",
5295
+ "\u2019am",
5296
+ "\u2019bout",
5297
+ "\u2019cause",
5298
+ "\u2019cos",
5299
+ "\u2019coz",
5300
+ "\u2019cuz",
5301
+ "\u2019d",
5302
+ "\u2019em",
5303
+ "\u2019ll",
5304
+ "\u2019m",
5305
+ "\u2019nuff",
5306
+ "\u2019re",
5307
+ "\u2019s",
5308
+ "\u2019ve",
5309
+ "\u2019x",
5310
+ "\u2019xx",
5311
+ "\u2019xxx",
5312
+ "\u2019xxxx",
5313
+ "\u2019y",
5314
+ "\u2019\u2019",
5315
+ "\u2022",
5316
+ "\u2122",
5317
+ "\u2501",
5318
+ "\u253b",
5319
+ "\u253b\u2501\u253b",
5320
+ "\u256f",
5321
+ "\u25a1",
5322
+ "\u2605",
5323
+ "\u3010",
5324
+ "\u6e05",
5325
+ "\u6e05\u6d01\u5242",
5326
+ "\u751f\u7b52\u889c",
5327
+ "\u8fc7",
5328
+ "\u8fc7\u819d\u957f\u5b66\u751f\u7b52\u889c",
5329
+ "\ufe35",
5330
+ "\uff09",
5331
+ "\ud83c\uddec",
5332
+ "\ud83c\uddf8"
5333
+ ]
vocab/vectors ADDED
Binary file (128 Bytes). View file
 
vocab/vectors.cfg ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+ "mode":"default"
3
+ }