oh201516 commited on
Commit
0fd12b7
1 Parent(s): d44ac5e

Update spaCy pipeline

Browse files
.gitattributes CHANGED
@@ -33,3 +33,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ en_setec_mk_tv-any-py3-none-any.whl filter=lfs diff=lfs merge=lfs -text
37
+ tok2vec/model filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - spacy
4
+ - token-classification
5
+ language:
6
+ - en
7
+ model-index:
8
+ - name: en_setec_mk_tv
9
+ results:
10
+ - task:
11
+ name: NER
12
+ type: token-classification
13
+ metrics:
14
+ - name: NER Precision
15
+ type: precision
16
+ value: 0.9864953887
17
+ - name: NER Recall
18
+ type: recall
19
+ value: 0.9861705631
20
+ - name: NER F Score
21
+ type: f_score
22
+ value: 0.9863329491
23
+ ---
24
+ | Feature | Description |
25
+ | --- | --- |
26
+ | **Name** | `en_setec_mk_tv` |
27
+ | **Version** | `0.0.0` |
28
+ | **spaCy** | `>=3.7.5,<3.8.0` |
29
+ | **Default Pipeline** | `tok2vec`, `ner` |
30
+ | **Components** | `tok2vec`, `ner` |
31
+ | **Vectors** | 0 keys, 0 unique vectors (0 dimensions) |
32
+ | **Sources** | n/a |
33
+ | **License** | n/a |
34
+ | **Author** | [n/a]() |
35
+
36
+ ### Label Scheme
37
+
38
+ <details>
39
+
40
+ <summary>View label scheme (11 labels for 1 components)</summary>
41
+
42
+ | Component | Labels |
43
+ | --- | --- |
44
+ | **`ner`** | `AUDIO_FEATURE`, `COLOR`, `CONNECTION`, `INCH`, `MOUNTING_FEATURE`, `OS`, `REFRESH_RATE`, `RESOLUTION`, `SOFTWARE_FEATURE`, `VIDEO_FEATURE`, `WIRELESS_FEATURE` |
45
+
46
+ </details>
47
+
48
+ ### Accuracy
49
+
50
+ | Type | Score |
51
+ | --- | --- |
52
+ | `ENTS_F` | 98.63 |
53
+ | `ENTS_P` | 98.65 |
54
+ | `ENTS_R` | 98.62 |
55
+ | `TOK2VEC_LOSS` | 54745.38 |
56
+ | `NER_LOSS` | 102750.09 |
config.cfg ADDED
@@ -0,0 +1,145 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [paths]
2
+ train = "./train.spacy"
3
+ dev = "./train.spacy"
4
+ vectors = null
5
+ init_tok2vec = null
6
+
7
+ [system]
8
+ gpu_allocator = null
9
+ seed = 0
10
+
11
+ [nlp]
12
+ lang = "en"
13
+ pipeline = ["tok2vec","ner"]
14
+ batch_size = 1000
15
+ disabled = []
16
+ before_creation = null
17
+ after_creation = null
18
+ after_pipeline_creation = null
19
+ tokenizer = {"@tokenizers":"spacy.Tokenizer.v1"}
20
+ vectors = {"@vectors":"spacy.Vectors.v1"}
21
+
22
+ [components]
23
+
24
+ [components.ner]
25
+ factory = "ner"
26
+ incorrect_spans_key = null
27
+ moves = null
28
+ scorer = {"@scorers":"spacy.ner_scorer.v1"}
29
+ update_with_oracle_cut_size = 100
30
+
31
+ [components.ner.model]
32
+ @architectures = "spacy.TransitionBasedParser.v2"
33
+ state_type = "ner"
34
+ extra_state_tokens = false
35
+ hidden_width = 64
36
+ maxout_pieces = 2
37
+ use_upper = true
38
+ nO = null
39
+
40
+ [components.ner.model.tok2vec]
41
+ @architectures = "spacy.Tok2VecListener.v1"
42
+ width = ${components.tok2vec.model.encode.width}
43
+ upstream = "*"
44
+
45
+ [components.tok2vec]
46
+ factory = "tok2vec"
47
+
48
+ [components.tok2vec.model]
49
+ @architectures = "spacy.Tok2Vec.v2"
50
+
51
+ [components.tok2vec.model.embed]
52
+ @architectures = "spacy.MultiHashEmbed.v2"
53
+ width = ${components.tok2vec.model.encode.width}
54
+ attrs = ["NORM","PREFIX","SUFFIX","SHAPE"]
55
+ rows = [5000,1000,2500,2500]
56
+ include_static_vectors = false
57
+
58
+ [components.tok2vec.model.encode]
59
+ @architectures = "spacy.MaxoutWindowEncoder.v2"
60
+ width = 96
61
+ depth = 4
62
+ window_size = 1
63
+ maxout_pieces = 3
64
+
65
+ [corpora]
66
+
67
+ [corpora.dev]
68
+ @readers = "spacy.Corpus.v1"
69
+ path = ${paths.dev}
70
+ max_length = 0
71
+ gold_preproc = false
72
+ limit = 0
73
+ augmenter = null
74
+
75
+ [corpora.train]
76
+ @readers = "spacy.Corpus.v1"
77
+ path = ${paths.train}
78
+ max_length = 0
79
+ gold_preproc = false
80
+ limit = 0
81
+ augmenter = null
82
+
83
+ [training]
84
+ dev_corpus = "corpora.dev"
85
+ train_corpus = "corpora.train"
86
+ seed = ${system.seed}
87
+ gpu_allocator = ${system.gpu_allocator}
88
+ dropout = 0.1
89
+ accumulate_gradient = 1
90
+ patience = 1600
91
+ max_epochs = 0
92
+ max_steps = 20000
93
+ eval_frequency = 200
94
+ frozen_components = []
95
+ annotating_components = []
96
+ before_to_disk = null
97
+ before_update = null
98
+
99
+ [training.batcher]
100
+ @batchers = "spacy.batch_by_words.v1"
101
+ discard_oversize = false
102
+ tolerance = 0.2
103
+ get_length = null
104
+
105
+ [training.batcher.size]
106
+ @schedules = "compounding.v1"
107
+ start = 100
108
+ stop = 1000
109
+ compound = 1.001
110
+ t = 0.0
111
+
112
+ [training.logger]
113
+ @loggers = "spacy.ConsoleLogger.v1"
114
+ progress_bar = false
115
+
116
+ [training.optimizer]
117
+ @optimizers = "Adam.v1"
118
+ beta1 = 0.9
119
+ beta2 = 0.999
120
+ L2_is_weight_decay = true
121
+ L2 = 0.01
122
+ grad_clip = 1.0
123
+ use_averages = false
124
+ eps = 0.00000001
125
+ learn_rate = 0.001
126
+
127
+ [training.score_weights]
128
+ ents_f = 1.0
129
+ ents_p = 0.0
130
+ ents_r = 0.0
131
+ ents_per_type = null
132
+
133
+ [pretraining]
134
+
135
+ [initialize]
136
+ vectors = ${paths.vectors}
137
+ init_tok2vec = ${paths.init_tok2vec}
138
+ vocab_data = null
139
+ lookups = null
140
+ before_init = null
141
+ after_init = null
142
+
143
+ [initialize.components]
144
+
145
+ [initialize.tokenizer]
en_setec_mk_tv-any-py3-none-any.whl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c821f75be9bdae6c213511d7a6721364f3a847360d63908a0fade595d6d51fac
3
+ size 5712333
meta.json ADDED
@@ -0,0 +1,114 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lang":"en",
3
+ "name":"setec_mk_tv",
4
+ "version":"0.0.0",
5
+ "description":"",
6
+ "author":"",
7
+ "email":"",
8
+ "url":"",
9
+ "license":"",
10
+ "spacy_version":">=3.7.5,<3.8.0",
11
+ "spacy_git_version":"a6d0fc360",
12
+ "vectors":{
13
+ "width":0,
14
+ "vectors":0,
15
+ "keys":0,
16
+ "name":null
17
+ },
18
+ "labels":{
19
+ "tok2vec":[
20
+
21
+ ],
22
+ "ner":[
23
+ "AUDIO_FEATURE",
24
+ "COLOR",
25
+ "CONNECTION",
26
+ "INCH",
27
+ "MOUNTING_FEATURE",
28
+ "OS",
29
+ "REFRESH_RATE",
30
+ "RESOLUTION",
31
+ "SOFTWARE_FEATURE",
32
+ "VIDEO_FEATURE",
33
+ "WIRELESS_FEATURE"
34
+ ]
35
+ },
36
+ "pipeline":[
37
+ "tok2vec",
38
+ "ner"
39
+ ],
40
+ "components":[
41
+ "tok2vec",
42
+ "ner"
43
+ ],
44
+ "disabled":[
45
+
46
+ ],
47
+ "performance":{
48
+ "ents_f":0.9863329491,
49
+ "ents_p":0.9864953887,
50
+ "ents_r":0.9861705631,
51
+ "ents_per_type":{
52
+ "INCH":{
53
+ "p":0.9966777409,
54
+ "r":0.9966777409,
55
+ "f":0.9966777409
56
+ },
57
+ "RESOLUTION":{
58
+ "p":0.961038961,
59
+ "r":0.9641693811,
60
+ "f":0.962601626
61
+ },
62
+ "REFRESH_RATE":{
63
+ "p":0.9702970297,
64
+ "r":0.98,
65
+ "f":0.9751243781
66
+ },
67
+ "OS":{
68
+ "p":0.9842105263,
69
+ "r":0.9689119171,
70
+ "f":0.9765013055
71
+ },
72
+ "VIDEO_FEATURE":{
73
+ "p":1.0,
74
+ "r":1.0,
75
+ "f":1.0
76
+ },
77
+ "SOFTWARE_FEATURE":{
78
+ "p":0.9888406696,
79
+ "r":0.9931506849,
80
+ "f":0.990990991
81
+ },
82
+ "AUDIO_FEATURE":{
83
+ "p":1.0,
84
+ "r":1.0,
85
+ "f":1.0
86
+ },
87
+ "WIRELESS_FEATURE":{
88
+ "p":0.9715447154,
89
+ "r":0.9540918164,
90
+ "f":0.9627391742
91
+ },
92
+ "CONNECTION":{
93
+ "p":0.9926818769,
94
+ "r":0.991827957,
95
+ "f":0.9922547332
96
+ },
97
+ "MOUNTING_FEATURE":{
98
+ "p":0.9925373134,
99
+ "r":1.0,
100
+ "f":0.9962546816
101
+ },
102
+ "COLOR":{
103
+ "p":0.9818181818,
104
+ "r":1.0,
105
+ "f":0.9908256881
106
+ }
107
+ },
108
+ "tok2vec_loss":547.4537577538,
109
+ "ner_loss":1027.5008638123
110
+ },
111
+ "requirements":[
112
+
113
+ ]
114
+ }
ner/cfg ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "moves":null,
3
+ "update_with_oracle_cut_size":100,
4
+ "multitasks":[
5
+
6
+ ],
7
+ "min_action_freq":1,
8
+ "learn_tokens":false,
9
+ "beam_width":1,
10
+ "beam_density":0.0,
11
+ "beam_update_prob":0.0,
12
+ "incorrect_spans_key":null
13
+ }
ner/model ADDED
Binary file (138 kB). View file
 
ner/moves ADDED
@@ -0,0 +1 @@
 
 
1
+ ��moves�H{"0":{},"1":{"CONNECTION":8917,"SOFTWARE_FEATURE":3915,"WIRELESS_FEATURE":1441,"RESOLUTION":1383,"INCH":602,"OS":343,"MOUNTING_FEATURE":284,"VIDEO_FEATURE":278,"AUDIO_FEATURE":244,"COLOR":136,"REFRESH_RATE":126},"2":{"CONNECTION":8917,"SOFTWARE_FEATURE":3915,"WIRELESS_FEATURE":1441,"RESOLUTION":1383,"INCH":602,"OS":343,"MOUNTING_FEATURE":284,"VIDEO_FEATURE":278,"AUDIO_FEATURE":244,"COLOR":136,"REFRESH_RATE":126},"3":{"CONNECTION":8917,"SOFTWARE_FEATURE":3915,"WIRELESS_FEATURE":1441,"RESOLUTION":1383,"INCH":602,"OS":343,"MOUNTING_FEATURE":284,"VIDEO_FEATURE":278,"AUDIO_FEATURE":244,"COLOR":136,"REFRESH_RATE":126},"4":{"CONNECTION":8917,"SOFTWARE_FEATURE":3915,"WIRELESS_FEATURE":1441,"RESOLUTION":1383,"INCH":602,"OS":343,"MOUNTING_FEATURE":284,"VIDEO_FEATURE":278,"AUDIO_FEATURE":244,"COLOR":136,"REFRESH_RATE":126,"":1},"5":{"":1}}�cfg��neg_key�
tok2vec/cfg ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+
3
+ }
tok2vec/model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4d3c332aa18c168d05174979e47e41f8e7beb2375fff78918731fcb70bd05ac5
3
+ size 6009091
tokenizer ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ ��prefix_search� �^§|^%|^=|^—|^–|^\+(?![0-9])|^…|^……|^,|^:|^;|^\!|^\?|^¿|^؟|^¡|^\(|^\)|^\[|^\]|^\{|^\}|^<|^>|^_|^#|^\*|^&|^。|^?|^!|^,|^、|^;|^:|^~|^·|^।|^،|^۔|^؛|^٪|^\.\.+|^…|^\'|^"|^”|^“|^`|^‘|^´|^’|^‚|^,|^„|^»|^«|^「|^」|^『|^』|^(|^)|^〔|^〕|^【|^】|^《|^》|^〈|^〉|^〈|^〉|^⟦|^⟧|^\$|^£|^€|^¥|^฿|^US\$|^C\$|^A\$|^₽|^﷼|^₴|^₠|^₡|^₢|^₣|^₤|^₥|^₦|^₧|^₨|^₩|^₪|^₫|^€|^₭|^₮|^₯|^₰|^₱|^₲|^₳|^₴|^₵|^₶|^₷|^₸|^₹|^₺|^₻|^₼|^₽|^₾|^₿|^[\u00A6\u00A9\u00AE\u00B0\u0482\u058D\u058E\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u09FA\u0B70\u0BF3-\u0BF8\u0BFA\u0C7F\u0D4F\u0D79\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116\u2117\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u214A\u214C\u214D\u214F\u218A\u218B\u2195-\u2199\u219C-\u219F\u21A1\u21A2\u21A4\u21A5\u21A7-\u21AD\u21AF-\u21CD\u21D0\u21D1\u21D3\u21D5-\u21F3\u2300-\u2307\u230C-\u231F\u2322-\u2328\u232B-\u237B\u237D-\u239A\u23B4-\u23DB\u23E2-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u25B6\u25B8-\u25C0\u25C2-\u25F7\u2600-\u266E\u2670-\u2767\u2794-\u27BF\u2800-\u28FF\u2B00-\u2B2F\u2B45\u2B46\u2B4D-\u2B73\u2B76-\u2B95\u2B98-\u2BC8\u2BCA-\u2BFE\u2CE5-\u2CEA\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u32FE\u3300-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA828-\uA82B\uA836\uA837\uA839\uAA77-\uAA79\uFDFD\uFFE4\uFFE8\uFFED\uFFEE\uFFFC\uFFFD\U00010137-\U0001013F\U00010179-\U00010189\U0001018C-\U0001018E\U00010190-\U0001019B\U000101A0\U000101D0-\U000101FC\U00010877\U00010878\U00010AC8\U0001173F\U00016B3C-\U00016B3F\U00016B45\U0001BC9C\U0001D000-\U0001D0F5\U0001D100-\U0001D126\U0001D129-\U0001D164\U0001D16A-\U0001D16C\U0001D183\U0001D184\U0001D18C-\U0001D1A9\U0001D1AE-\U0001D1E8\U0001D200-\U0001D241\U0001D245\U0001D300-\U0001D356\U0001D800-\U0001D9FF\U0001DA37-\U0001DA3A\U0001DA6D-\U0001DA74\U0001DA76-\U0001DA83\U0001DA85\U0001DA86\U0001ECAC\U0001F000-\U0001F02B\U0001F030-\U0001F093\U0001F0A0-\U0001F0AE\U0001F0B1-\U0001F0BF\U0001F0C1-\U0001F0CF\U0001F0D1-\U0001F0F5\U0001F110-\U0001F16B\U0001F170-\U0001F1AC\U0001F1E6-\U0001F202\U0001F210-\U0001F23B\U0001F240-\U0001F248\U0001F250\U0001F251\U0001F260-\U0001F265\U0001F300-\U0001F3FA\U0001F400-\U0001F6D4\U0001F6E0-\U0001F6EC\U0001F6F0-\U0001F6F9\U0001F700-\U0001F773\U0001F780-\U0001F7D8\U0001F800-\U0001F80B\U0001F810-\U0001F847\U0001F850-\U0001F859\U0001F860-\U0001F887\U0001F890-\U0001F8AD\U0001F900-\U0001F90B\U0001F910-\U0001F93E\U0001F940-\U0001F970\U0001F973-\U0001F976\U0001F97A\U0001F97C-\U0001F9A2\U0001F9B0-\U0001F9B9\U0001F9C0-\U0001F9C2\U0001F9D0-\U0001F9FF\U0001FA60-\U0001FA6D]�suffix_search�2�…$|……$|,$|:$|;$|\!$|\?$|¿$|؟$|¡$|\($|\)$|\[$|\]$|\{$|\}$|<$|>$|_$|#$|\*$|&$|。$|?$|!$|,$|、$|;$|:$|~$|·$|।$|،$|۔$|؛$|٪$|\.\.+$|…$|\'$|"$|”$|“$|`$|‘$|´$|’$|‚$|,$|„$|»$|«$|「$|」$|『$|』$|($|)$|〔$|〕$|【$|】$|《$|》$|〈$|〉$|〈$|〉$|⟦$|⟧$|[\u00A6\u00A9\u00AE\u00B0\u0482\u058D\u058E\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u09FA\u0B70\u0BF3-\u0BF8\u0BFA\u0C7F\u0D4F\u0D79\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116\u2117\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u214A\u214C\u214D\u214F\u218A\u218B\u2195-\u2199\u219C-\u219F\u21A1\u21A2\u21A4\u21A5\u21A7-\u21AD\u21AF-\u21CD\u21D0\u21D1\u21D3\u21D5-\u21F3\u2300-\u2307\u230C-\u231F\u2322-\u2328\u232B-\u237B\u237D-\u239A\u23B4-\u23DB\u23E2-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u25B6\u25B8-\u25C0\u25C2-\u25F7\u2600-\u266E\u2670-\u2767\u2794-\u27BF\u2800-\u28FF\u2B00-\u2B2F\u2B45\u2B46\u2B4D-\u2B73\u2B76-\u2B95\u2B98-\u2BC8\u2BCA-\u2BFE\u2CE5-\u2CEA\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u32FE\u3300-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA828-\uA82B\uA836\uA837\uA839\uAA77-\uAA79\uFDFD\uFFE4\uFFE8\uFFED\uFFEE\uFFFC\uFFFD\U00010137-\U0001013F\U00010179-\U00010189\U0001018C-\U0001018E\U00010190-\U0001019B\U000101A0\U000101D0-\U000101FC\U00010877\U00010878\U00010AC8\U0001173F\U00016B3C-\U00016B3F\U00016B45\U0001BC9C\U0001D000-\U0001D0F5\U0001D100-\U0001D126\U0001D129-\U0001D164\U0001D16A-\U0001D16C\U0001D183\U0001D184\U0001D18C-\U0001D1A9\U0001D1AE-\U0001D1E8\U0001D200-\U0001D241\U0001D245\U0001D300-\U0001D356\U0001D800-\U0001D9FF\U0001DA37-\U0001DA3A\U0001DA6D-\U0001DA74\U0001DA76-\U0001DA83\U0001DA85\U0001DA86\U0001ECAC\U0001F000-\U0001F02B\U0001F030-\U0001F093\U0001F0A0-\U0001F0AE\U0001F0B1-\U0001F0BF\U0001F0C1-\U0001F0CF\U0001F0D1-\U0001F0F5\U0001F110-\U0001F16B\U0001F170-\U0001F1AC\U0001F1E6-\U0001F202\U0001F210-\U0001F23B\U0001F240-\U0001F248\U0001F250\U0001F251\U0001F260-\U0001F265\U0001F300-\U0001F3FA\U0001F400-\U0001F6D4\U0001F6E0-\U0001F6EC\U0001F6F0-\U0001F6F9\U0001F700-\U0001F773\U0001F780-\U0001F7D8\U0001F800-\U0001F80B\U0001F810-\U0001F847\U0001F850-\U0001F859\U0001F860-\U0001F887\U0001F890-\U0001F8AD\U0001F900-\U0001F90B\U0001F910-\U0001F93E\U0001F940-\U0001F970\U0001F973-\U0001F976\U0001F97A\U0001F97C-\U0001F9A2\U0001F9B0-\U0001F9B9\U0001F9C0-\U0001F9C2\U0001F9D0-\U0001F9FF\U0001FA60-\U0001FA6D]$|'s$|'S$|’s$|’S$|—$|–$|(?<=[0-9])\+$|(?<=°[FfCcKk])\.$|(?<=[0-9])(?:\$|£|€|¥|฿|US\$|C\$|A\$|₽|﷼|₴|₠|₡|₢|₣|₤|₥|₦|₧|₨|₩|₪|₫|€|₭|₮|₯|₰|₱|₲|₳|₴|₵|₶|₷|₸|₹|₺|₻|₼|₽|₾|₿)$|(?<=[0-9])(?:km|km²|km³|m|m²|m³|dm|dm²|dm³|cm|cm²|cm³|mm|mm²|mm³|ha|µm|nm|yd|in|ft|kg|g|mg|µg|t|lb|oz|m/s|km/h|kmh|mph|hPa|Pa|mbar|mb|MB|kb|KB|gb|GB|tb|TB|T|G|M|K|%|км|км²|км³|м|м²|м³|дм|дм²|дм³|см|см²|см³|мм|мм²|мм³|нм|кг|г|мг|м/с|км/ч|кПа|Па|мбар|Кб|КБ|кб|Мб|МБ|мб|Гб|ГБ|гб|Тб|ТБ|тбكم|كم²|كم³|م|م²|م³|سم|سم²|سم³|مم|مم²|مم³|كم|غرام|جرام|جم|كغ|ملغ|كوب|اكواب)$|(?<=[0-9a-z\uFF41-\uFF5A\u00DF-\u00F6\u00F8-\u00FF\u0101\u0103\u0105\u0107\u0109\u010B\u010D\u010F\u0111\u0113\u0115\u0117\u0119\u011B\u011D\u011F\u0121\u0123\u0125\u0127\u0129\u012B\u012D\u012F\u0131\u0133\u0135\u0137\u0138\u013A\u013C\u013E\u0140\u0142\u0144\u0146\u0148\u0149\u014B\u014D\u014F\u0151\u0153\u0155\u0157\u0159\u015B\u015D\u015F\u0161\u0163\u0165\u0167\u0169\u016B\u016D\u016F\u0171\u0173\u0175\u0177\u017A\u017C\u017E\u017F\u0180\u0183\u0185\u0188\u018C\u018D\u0192\u0195\u0199-\u019B\u019E\u01A1\u01A3\u01A5\u01A8\u01AA\u01AB\u01AD\u01B0\u01B4\u01B6\u01B9\u01BA\u01BD-\u01BF\u01C6\u01C9\u01CC\u01CE\u01D0\u01D2\u01D4\u01D6\u01D8\u01DA\u01DC\u01DD\u01DF\u01E1\u01E3\u01E5\u01E7\u01E9\u01EB\u01ED\u01EF\u01F0\u01F3\u01F5\u01F9\u01FB\u01FD\u01FF\u0201\u0203\u0205\u0207\u0209\u020B\u020D\u020F\u0211\u0213\u0215\u0217\u0219\u021B\u021D\u021F\u0221\u0223\u0225\u0227\u0229\u022B\u022D\u022F\u0231\u0233-\u0239\u023C\u023F\u0240\u0242\u0247\u0249\u024B\u024D\u024F\u2C61\u2C65\u2C66\u2C68\u2C6A\u2C6C\u2C71\u2C73\u2C74\u2C76-\u2C7B\uA723\uA725\uA727\uA729\uA72B\uA72D\uA72F-\uA731\uA733\uA735\uA737\uA739\uA73B\uA73D\uA73F\uA741\uA743\uA745\uA747\uA749\uA74B\uA74D\uA74F\uA751\uA753\uA755\uA757\uA759\uA75B\uA75D\uA75F\uA761\uA763\uA765\uA767\uA769\uA76B\uA76D\uA76F\uA771-\uA778\uA77A\uA77C\uA77F\uA781\uA783\uA785\uA787\uA78C\uA78E\uA791\uA793-\uA795\uA797\uA799\uA79B\uA79D\uA79F\uA7A1\uA7A3\uA7A5\uA7A7\uA7A9\uA7AF\uA7B5\uA7B7\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E01\u1E03\u1E05\u1E07\u1E09\u1E0B\u1E0D\u1E0F\u1E11\u1E13\u1E15\u1E17\u1E19\u1E1B\u1E1D\u1E1F\u1E21\u1E23\u1E25\u1E27\u1E29\u1E2B\u1E2D\u1E2F\u1E31\u1E33\u1E35\u1E37\u1E39\u1E3B\u1E3D\u1E3F\u1E41\u1E43\u1E45\u1E47\u1E49\u1E4B\u1E4D\u1E4F\u1E51\u1E53\u1E55\u1E57\u1E59\u1E5B\u1E5D\u1E5F\u1E61\u1E63\u1E65\u1E67\u1E69\u1E6B\u1E6D\u1E6F\u1E71\u1E73\u1E75\u1E77\u1E79\u1E7B\u1E7D\u1E7F\u1E81\u1E83\u1E85\u1E87\u1E89\u1E8B\u1E8D\u1E8F\u1E91\u1E93\u1E95-\u1E9D\u1E9F\u1EA1\u1EA3\u1EA5\u1EA7\u1EA9\u1EAB\u1EAD\u1EAF\u1EB1\u1EB3\u1EB5\u1EB7\u1EB9\u1EBB\u1EBD\u1EBF\u1EC1\u1EC3\u1EC5\u1EC7\u1EC9\u1ECB\u1ECD\u1ECF\u1ED1\u1ED3\u1ED5\u1ED7\u1ED9\u1EDB\u1EDD\u1EDF\u1EE1\u1EE3\u1EE5\u1EE7\u1EE9\u1EEB\u1EED\u1EEF\u1EF1\u1EF3\u1EF5\u1EF7\u1EF9\u1EFB\u1EFD\u1EFFёа-яәөүҗңһα-ωάέίόώήύа-щюяіїєґѓѕјљњќѐѝ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F%²\-\+…|……|,|:|;|\!|\?|¿|؟|¡|\(|\)|\[|\]|\{|\}|<|>|_|#|\*|&|。|?|!|,|、|;|:|~|·|।|،|۔|؛|٪(?:\'"”“`‘´’‚,„»«「」『』()〔〕【】《》〈〉〈〉⟦⟧)])\.$|(?<=[A-Z\uFF21-\uFF3A\u00C0-\u00D6\u00D8-\u00DE\u0100\u0102\u0104\u0106\u0108\u010A\u010C\u010E\u0110\u0112\u0114\u0116\u0118\u011A\u011C\u011E\u0120\u0122\u0124\u0126\u0128\u012A\u012C\u012E\u0130\u0132\u0134\u0136\u0139\u013B\u013D\u013F\u0141\u0143\u0145\u0147\u014A\u014C\u014E\u0150\u0152\u0154\u0156\u0158\u015A\u015C\u015E\u0160\u0162\u0164\u0166\u0168\u016A\u016C\u016E\u0170\u0172\u0174\u0176\u0178\u0179\u017B\u017D\u0181\u0182\u0184\u0186\u0187\u0189-\u018B\u018E-\u0191\u0193\u0194\u0196-\u0198\u019C\u019D\u019F\u01A0\u01A2\u01A4\u01A6\u01A7\u01A9\u01AC\u01AE\u01AF\u01B1-\u01B3\u01B5\u01B7\u01B8\u01BC\u01C4\u01C7\u01CA\u01CD\u01CF\u01D1\u01D3\u01D5\u01D7\u01D9\u01DB\u01DE\u01E0\u01E2\u01E4\u01E6\u01E8\u01EA\u01EC\u01EE\u01F1\u01F4\u01F6-\u01F8\u01FA\u01FC\u01FE\u0200\u0202\u0204\u0206\u0208\u020A\u020C\u020E\u0210\u0212\u0214\u0216\u0218\u021A\u021C\u021E\u0220\u0222\u0224\u0226\u0228\u022A\u022C\u022E\u0230\u0232\u023A\u023B\u023D\u023E\u0241\u0243-\u0246\u0248\u024A\u024C\u024E\u2C60\u2C62-\u2C64\u2C67\u2C69\u2C6B\u2C6D-\u2C70\u2C72\u2C75\u2C7E\u2C7F\uA722\uA724\uA726\uA728\uA72A\uA72C\uA72E\uA732\uA734\uA736\uA738\uA73A\uA73C\uA73E\uA740\uA742\uA744\uA746\uA748\uA74A\uA74C\uA74E\uA750\uA752\uA754\uA756\uA758\uA75A\uA75C\uA75E\uA760\uA762\uA764\uA766\uA768\uA76A\uA76C\uA76E\uA779\uA77B\uA77D\uA77E\uA780\uA782\uA784\uA786\uA78B\uA78D\uA790\uA792\uA796\uA798\uA79A\uA79C\uA79E\uA7A0\uA7A2\uA7A4\uA7A6\uA7A8\uA7AA-\uA7AE\uA7B0-\uA7B4\uA7B6\uA7B8\u1E00\u1E02\u1E04\u1E06\u1E08\u1E0A\u1E0C\u1E0E\u1E10\u1E12\u1E14\u1E16\u1E18\u1E1A\u1E1C\u1E1E\u1E20\u1E22\u1E24\u1E26\u1E28\u1E2A\u1E2C\u1E2E\u1E30\u1E32\u1E34\u1E36\u1E38\u1E3A\u1E3C\u1E3E\u1E40\u1E42\u1E44\u1E46\u1E48\u1E4A\u1E4C\u1E4E\u1E50\u1E52\u1E54\u1E56\u1E58\u1E5A\u1E5C\u1E5E\u1E60\u1E62\u1E64\u1E66\u1E68\u1E6A\u1E6C\u1E6E\u1E70\u1E72\u1E74\u1E76\u1E78\u1E7A\u1E7C\u1E7E\u1E80\u1E82\u1E84\u1E86\u1E88\u1E8A\u1E8C\u1E8E\u1E90\u1E92\u1E94\u1E9E\u1EA0\u1EA2\u1EA4\u1EA6\u1EA8\u1EAA\u1EAC\u1EAE\u1EB0\u1EB2\u1EB4\u1EB6\u1EB8\u1EBA\u1EBC\u1EBE\u1EC0\u1EC2\u1EC4\u1EC6\u1EC8\u1ECA\u1ECC\u1ECE\u1ED0\u1ED2\u1ED4\u1ED6\u1ED8\u1EDA\u1EDC\u1EDE\u1EE0\u1EE2\u1EE4\u1EE6\u1EE8\u1EEA\u1EEC\u1EEE\u1EF0\u1EF2\u1EF4\u1EF6\u1EF8\u1EFA\u1EFC\u1EFEЁА-ЯӘӨҮҖҢҺΑ-ΩΆΈΊΌΏΉΎА-ЩЮЯІЇЄҐЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F][A-Z\uFF21-\uFF3A\u00C0-\u00D6\u00D8-\u00DE\u0100\u0102\u0104\u0106\u0108\u010A\u010C\u010E\u0110\u0112\u0114\u0116\u0118\u011A\u011C\u011E\u0120\u0122\u0124\u0126\u0128\u012A\u012C\u012E\u0130\u0132\u0134\u0136\u0139\u013B\u013D\u013F\u0141\u0143\u0145\u0147\u014A\u014C\u014E\u0150\u0152\u0154\u0156\u0158\u015A\u015C\u015E\u0160\u0162\u0164\u0166\u0168\u016A\u016C\u016E\u0170\u0172\u0174\u0176\u0178\u0179\u017B\u017D\u0181\u0182\u0184\u0186\u0187\u0189-\u018B\u018E-\u0191\u0193\u0194\u0196-\u0198\u019C\u019D\u019F\u01A0\u01A2\u01A4\u01A6\u01A7\u01A9\u01AC\u01AE\u01AF\u01B1-\u01B3\u01B5\u01B7\u01B8\u01BC\u01C4\u01C7\u01CA\u01CD\u01CF\u01D1\u01D3\u01D5\u01D7\u01D9\u01DB\u01DE\u01E0\u01E2\u01E4\u01E6\u01E8\u01EA\u01EC\u01EE\u01F1\u01F4\u01F6-\u01F8\u01FA\u01FC\u01FE\u0200\u0202\u0204\u0206\u0208\u020A\u020C\u020E\u0210\u0212\u0214\u0216\u0218\u021A\u021C\u021E\u0220\u0222\u0224\u0226\u0228\u022A\u022C\u022E\u0230\u0232\u023A\u023B\u023D\u023E\u0241\u0243-\u0246\u0248\u024A\u024C\u024E\u2C60\u2C62-\u2C64\u2C67\u2C69\u2C6B\u2C6D-\u2C70\u2C72\u2C75\u2C7E\u2C7F\uA722\uA724\uA726\uA728\uA72A\uA72C\uA72E\uA732\uA734\uA736\uA738\uA73A\uA73C\uA73E\uA740\uA742\uA744\uA746\uA748\uA74A\uA74C\uA74E\uA750\uA752\uA754\uA756\uA758\uA75A\uA75C\uA75E\uA760\uA762\uA764\uA766\uA768\uA76A\uA76C\uA76E\uA779\uA77B\uA77D\uA77E\uA780\uA782\uA784\uA786\uA78B\uA78D\uA790\uA792\uA796\uA798\uA79A\uA79C\uA79E\uA7A0\uA7A2\uA7A4\uA7A6\uA7A8\uA7AA-\uA7AE\uA7B0-\uA7B4\uA7B6\uA7B8\u1E00\u1E02\u1E04\u1E06\u1E08\u1E0A\u1E0C\u1E0E\u1E10\u1E12\u1E14\u1E16\u1E18\u1E1A\u1E1C\u1E1E\u1E20\u1E22\u1E24\u1E26\u1E28\u1E2A\u1E2C\u1E2E\u1E30\u1E32\u1E34\u1E36\u1E38\u1E3A\u1E3C\u1E3E\u1E40\u1E42\u1E44\u1E46\u1E48\u1E4A\u1E4C\u1E4E\u1E50\u1E52\u1E54\u1E56\u1E58\u1E5A\u1E5C\u1E5E\u1E60\u1E62\u1E64\u1E66\u1E68\u1E6A\u1E6C\u1E6E\u1E70\u1E72\u1E74\u1E76\u1E78\u1E7A\u1E7C\u1E7E\u1E80\u1E82\u1E84\u1E86\u1E88\u1E8A\u1E8C\u1E8E\u1E90\u1E92\u1E94\u1E9E\u1EA0\u1EA2\u1EA4\u1EA6\u1EA8\u1EAA\u1EAC\u1EAE\u1EB0\u1EB2\u1EB4\u1EB6\u1EB8\u1EBA\u1EBC\u1EBE\u1EC0\u1EC2\u1EC4\u1EC6\u1EC8\u1ECA\u1ECC\u1ECE\u1ED0\u1ED2\u1ED4\u1ED6\u1ED8\u1EDA\u1EDC\u1EDE\u1EE0\u1EE2\u1EE4\u1EE6\u1EE8\u1EEA\u1EEC\u1EEE\u1EF0\u1EF2\u1EF4\u1EF6\u1EF8\u1EFA\u1EFC\u1EFEЁА-ЯӘӨҮҖҢҺΑ-ΩΆΈΊΌΏΉΎА-ЩЮЯІЇЄҐЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])\.$�infix_finditer�>�\.\.+|…|[\u00A6\u00A9\u00AE\u00B0\u0482\u058D\u058E\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u09FA\u0B70\u0BF3-\u0BF8\u0BFA\u0C7F\u0D4F\u0D79\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116\u2117\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u214A\u214C\u214D\u214F\u218A\u218B\u2195-\u2199\u219C-\u219F\u21A1\u21A2\u21A4\u21A5\u21A7-\u21AD\u21AF-\u21CD\u21D0\u21D1\u21D3\u21D5-\u21F3\u2300-\u2307\u230C-\u231F\u2322-\u2328\u232B-\u237B\u237D-\u239A\u23B4-\u23DB\u23E2-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u25B6\u25B8-\u25C0\u25C2-\u25F7\u2600-\u266E\u2670-\u2767\u2794-\u27BF\u2800-\u28FF\u2B00-\u2B2F\u2B45\u2B46\u2B4D-\u2B73\u2B76-\u2B95\u2B98-\u2BC8\u2BCA-\u2BFE\u2CE5-\u2CEA\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u32FE\u3300-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA828-\uA82B\uA836\uA837\uA839\uAA77-\uAA79\uFDFD\uFFE4\uFFE8\uFFED\uFFEE\uFFFC\uFFFD\U00010137-\U0001013F\U00010179-\U00010189\U0001018C-\U0001018E\U00010190-\U0001019B\U000101A0\U000101D0-\U000101FC\U00010877\U00010878\U00010AC8\U0001173F\U00016B3C-\U00016B3F\U00016B45\U0001BC9C\U0001D000-\U0001D0F5\U0001D100-\U0001D126\U0001D129-\U0001D164\U0001D16A-\U0001D16C\U0001D183\U0001D184\U0001D18C-\U0001D1A9\U0001D1AE-\U0001D1E8\U0001D200-\U0001D241\U0001D245\U0001D300-\U0001D356\U0001D800-\U0001D9FF\U0001DA37-\U0001DA3A\U0001DA6D-\U0001DA74\U0001DA76-\U0001DA83\U0001DA85\U0001DA86\U0001ECAC\U0001F000-\U0001F02B\U0001F030-\U0001F093\U0001F0A0-\U0001F0AE\U0001F0B1-\U0001F0BF\U0001F0C1-\U0001F0CF\U0001F0D1-\U0001F0F5\U0001F110-\U0001F16B\U0001F170-\U0001F1AC\U0001F1E6-\U0001F202\U0001F210-\U0001F23B\U0001F240-\U0001F248\U0001F250\U0001F251\U0001F260-\U0001F265\U0001F300-\U0001F3FA\U0001F400-\U0001F6D4\U0001F6E0-\U0001F6EC\U0001F6F0-\U0001F6F9\U0001F700-\U0001F773\U0001F780-\U0001F7D8\U0001F800-\U0001F80B\U0001F810-\U0001F847\U0001F850-\U0001F859\U0001F860-\U0001F887\U0001F890-\U0001F8AD\U0001F900-\U0001F90B\U0001F910-\U0001F93E\U0001F940-\U0001F970\U0001F973-\U0001F976\U0001F97A\U0001F97C-\U0001F9A2\U0001F9B0-\U0001F9B9\U0001F9C0-\U0001F9C2\U0001F9D0-\U0001F9FF\U0001FA60-\U0001FA6D]|(?<=[0-9])[+\-\*^](?=[0-9-])|(?<=[a-z\uFF41-\uFF5A\u00DF-\u00F6\u00F8-\u00FF\u0101\u0103\u0105\u0107\u0109\u010B\u010D\u010F\u0111\u0113\u0115\u0117\u0119\u011B\u011D\u011F\u0121\u0123\u0125\u0127\u0129\u012B\u012D\u012F\u0131\u0133\u0135\u0137\u0138\u013A\u013C\u013E\u0140\u0142\u0144\u0146\u0148\u0149\u014B\u014D\u014F\u0151\u0153\u0155\u0157\u0159\u015B\u015D\u015F\u0161\u0163\u0165\u0167\u0169\u016B\u016D\u016F\u0171\u0173\u0175\u0177\u017A\u017C\u017E\u017F\u0180\u0183\u0185\u0188\u018C\u018D\u0192\u0195\u0199-\u019B\u019E\u01A1\u01A3\u01A5\u01A8\u01AA\u01AB\u01AD\u01B0\u01B4\u01B6\u01B9\u01BA\u01BD-\u01BF\u01C6\u01C9\u01CC\u01CE\u01D0\u01D2\u01D4\u01D6\u01D8\u01DA\u01DC\u01DD\u01DF\u01E1\u01E3\u01E5\u01E7\u01E9\u01EB\u01ED\u01EF\u01F0\u01F3\u01F5\u01F9\u01FB\u01FD\u01FF\u0201\u0203\u0205\u0207\u0209\u020B\u020D\u020F\u0211\u0213\u0215\u0217\u0219\u021B\u021D\u021F\u0221\u0223\u0225\u0227\u0229\u022B\u022D\u022F\u0231\u0233-\u0239\u023C\u023F\u0240\u0242\u0247\u0249\u024B\u024D\u024F\u2C61\u2C65\u2C66\u2C68\u2C6A\u2C6C\u2C71\u2C73\u2C74\u2C76-\u2C7B\uA723\uA725\uA727\uA729\uA72B\uA72D\uA72F-\uA731\uA733\uA735\uA737\uA739\uA73B\uA73D\uA73F\uA741\uA743\uA745\uA747\uA749\uA74B\uA74D\uA74F\uA751\uA753\uA755\uA757\uA759\uA75B\uA75D\uA75F\uA761\uA763\uA765\uA767\uA769\uA76B\uA76D\uA76F\uA771-\uA778\uA77A\uA77C\uA77F\uA781\uA783\uA785\uA787\uA78C\uA78E\uA791\uA793-\uA795\uA797\uA799\uA79B\uA79D\uA79F\uA7A1\uA7A3\uA7A5\uA7A7\uA7A9\uA7AF\uA7B5\uA7B7\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E01\u1E03\u1E05\u1E07\u1E09\u1E0B\u1E0D\u1E0F\u1E11\u1E13\u1E15\u1E17\u1E19\u1E1B\u1E1D\u1E1F\u1E21\u1E23\u1E25\u1E27\u1E29\u1E2B\u1E2D\u1E2F\u1E31\u1E33\u1E35\u1E37\u1E39\u1E3B\u1E3D\u1E3F\u1E41\u1E43\u1E45\u1E47\u1E49\u1E4B\u1E4D\u1E4F\u1E51\u1E53\u1E55\u1E57\u1E59\u1E5B\u1E5D\u1E5F\u1E61\u1E63\u1E65\u1E67\u1E69\u1E6B\u1E6D\u1E6F\u1E71\u1E73\u1E75\u1E77\u1E79\u1E7B\u1E7D\u1E7F\u1E81\u1E83\u1E85\u1E87\u1E89\u1E8B\u1E8D\u1E8F\u1E91\u1E93\u1E95-\u1E9D\u1E9F\u1EA1\u1EA3\u1EA5\u1EA7\u1EA9\u1EAB\u1EAD\u1EAF\u1EB1\u1EB3\u1EB5\u1EB7\u1EB9\u1EBB\u1EBD\u1EBF\u1EC1\u1EC3\u1EC5\u1EC7\u1EC9\u1ECB\u1ECD\u1ECF\u1ED1\u1ED3\u1ED5\u1ED7\u1ED9\u1EDB\u1EDD\u1EDF\u1EE1\u1EE3\u1EE5\u1EE7\u1EE9\u1EEB\u1EED\u1EEF\u1EF1\u1EF3\u1EF5\u1EF7\u1EF9\u1EFB\u1EFD\u1EFFёа-яәөүҗңһα-ωάέίόώήύа-щюяіїєґѓѕјљњќѐѝ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F\'"”“`‘´’‚,„»«「」『』()〔〕【】《》〈〉〈〉⟦⟧])\.(?=[A-Z\uFF21-\uFF3A\u00C0-\u00D6\u00D8-\u00DE\u0100\u0102\u0104\u0106\u0108\u010A\u010C\u010E\u0110\u0112\u0114\u0116\u0118\u011A\u011C\u011E\u0120\u0122\u0124\u0126\u0128\u012A\u012C\u012E\u0130\u0132\u0134\u0136\u0139\u013B\u013D\u013F\u0141\u0143\u0145\u0147\u014A\u014C\u014E\u0150\u0152\u0154\u0156\u0158\u015A\u015C\u015E\u0160\u0162\u0164\u0166\u0168\u016A\u016C\u016E\u0170\u0172\u0174\u0176\u0178\u0179\u017B\u017D\u0181\u0182\u0184\u0186\u0187\u0189-\u018B\u018E-\u0191\u0193\u0194\u0196-\u0198\u019C\u019D\u019F\u01A0\u01A2\u01A4\u01A6\u01A7\u01A9\u01AC\u01AE\u01AF\u01B1-\u01B3\u01B5\u01B7\u01B8\u01BC\u01C4\u01C7\u01CA\u01CD\u01CF\u01D1\u01D3\u01D5\u01D7\u01D9\u01DB\u01DE\u01E0\u01E2\u01E4\u01E6\u01E8\u01EA\u01EC\u01EE\u01F1\u01F4\u01F6-\u01F8\u01FA\u01FC\u01FE\u0200\u0202\u0204\u0206\u0208\u020A\u020C\u020E\u0210\u0212\u0214\u0216\u0218\u021A\u021C\u021E\u0220\u0222\u0224\u0226\u0228\u022A\u022C\u022E\u0230\u0232\u023A\u023B\u023D\u023E\u0241\u0243-\u0246\u0248\u024A\u024C\u024E\u2C60\u2C62-\u2C64\u2C67\u2C69\u2C6B\u2C6D-\u2C70\u2C72\u2C75\u2C7E\u2C7F\uA722\uA724\uA726\uA728\uA72A\uA72C\uA72E\uA732\uA734\uA736\uA738\uA73A\uA73C\uA73E\uA740\uA742\uA744\uA746\uA748\uA74A\uA74C\uA74E\uA750\uA752\uA754\uA756\uA758\uA75A\uA75C\uA75E\uA760\uA762\uA764\uA766\uA768\uA76A\uA76C\uA76E\uA779\uA77B\uA77D\uA77E\uA780\uA782\uA784\uA786\uA78B\uA78D\uA790\uA792\uA796\uA798\uA79A\uA79C\uA79E\uA7A0\uA7A2\uA7A4\uA7A6\uA7A8\uA7AA-\uA7AE\uA7B0-\uA7B4\uA7B6\uA7B8\u1E00\u1E02\u1E04\u1E06\u1E08\u1E0A\u1E0C\u1E0E\u1E10\u1E12\u1E14\u1E16\u1E18\u1E1A\u1E1C\u1E1E\u1E20\u1E22\u1E24\u1E26\u1E28\u1E2A\u1E2C\u1E2E\u1E30\u1E32\u1E34\u1E36\u1E38\u1E3A\u1E3C\u1E3E\u1E40\u1E42\u1E44\u1E46\u1E48\u1E4A\u1E4C\u1E4E\u1E50\u1E52\u1E54\u1E56\u1E58\u1E5A\u1E5C\u1E5E\u1E60\u1E62\u1E64\u1E66\u1E68\u1E6A\u1E6C\u1E6E\u1E70\u1E72\u1E74\u1E76\u1E78\u1E7A\u1E7C\u1E7E\u1E80\u1E82\u1E84\u1E86\u1E88\u1E8A\u1E8C\u1E8E\u1E90\u1E92\u1E94\u1E9E\u1EA0\u1EA2\u1EA4\u1EA6\u1EA8\u1EAA\u1EAC\u1EAE\u1EB0\u1EB2\u1EB4\u1EB6\u1EB8\u1EBA\u1EBC\u1EBE\u1EC0\u1EC2\u1EC4\u1EC6\u1EC8\u1ECA\u1ECC\u1ECE\u1ED0\u1ED2\u1ED4\u1ED6\u1ED8\u1EDA\u1EDC\u1EDE\u1EE0\u1EE2\u1EE4\u1EE6\u1EE8\u1EEA\u1EEC\u1EEE\u1EF0\u1EF2\u1EF4\u1EF6\u1EF8\u1EFA\u1EFC\u1EFEЁА-ЯӘӨҮҖҢҺΑ-ΩΆΈΊΌΏΉΎА-ЩЮЯІЇЄҐЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F\'"”“`‘´’‚,„»«「」『』()〔〕【】《》〈〉〈〉⟦⟧])|(?<=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F]),(?=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])|(?<=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F0-9])(?:-|–|—|--|---|——|~)(?=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])|(?<=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F0-9])[:<>=/](?=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])�token_match��url_match�
2
+ ��A�
3
+ � ��A� �'��A�'�''��A�''�'Cause��A�'CauseC�because�'Cos��A�'CosC�because�'Coz��A�'CozC�because�'Cuz��A�'CuzC�because�'S��A�'SC�'s�'bout��A�'boutC�about�'cause��A�'causeC�because�'cos��A�'cosC�because�'coz��A�'cozC�because�'cuz��A�'cuzC�because�'d��A�'d�'em��A�'emC�them�'ll��A�'llC�will�'nuff��A�'nuffC�enough�'re��A�'reC�are�'s��A�'sC�'s�(*_*)��A�(*_*)�(-8��A�(-8�(-:��A�(-:�(-;��A�(-;�(-_-)��A�(-_-)�(._.)��A�(._.)�(:��A�(:�(;��A�(;�(=��A�(=�(>_<)��A�(>_<)�(^_^)��A�(^_^)�(o:��A�(o:�(¬_¬)��A�(¬_¬)�(ಠ_ಠ)��A�(ಠ_ಠ)�(╯°□°)╯︵┻━┻��A�(╯°□°)╯︵┻━┻�)-:��A�)-:�):��A�):�-_-��A�-_-�-__-��A�-__-�._.��A�._.�0.0��A�0.0�0.o��A�0.o�0_0��A�0_0�0_o��A�0_o�10a.m.��A�10�A�a.m.C�a.m.�10am��A�10�A�amC�a.m.�10p.m.��A�10�A�p.m.C�p.m.�10pm��A�10�A�pmC�p.m.�11a.m.��A�11�A�a.m.C�a.m.�11am��A�11�A�amC�a.m.�11p.m.��A�11�A�p.m.C�p.m.�11pm��A�11�A�pmC�p.m.�12a.m.��A�12�A�a.m.C�a.m.�12am��A�12�A�amC�a.m.�12p.m.��A�12�A�p.m.C�p.m.�12pm��A�12�A�pmC�p.m.�1a.m.��A�1�A�a.m.C�a.m.�1am��A�1�A�amC�a.m.�1p.m.��A�1�A�p.m.C�p.m.�1pm��A�1�A�pmC�p.m.�2a.m.��A�2�A�a.m.C�a.m.�2am��A�2�A�amC�a.m.�2p.m.��A�2�A�p.m.C�p.m.�2pm��A�2�A�pmC�p.m.�3a.m.��A�3�A�a.m.C�a.m.�3am��A�3�A�amC�a.m.�3p.m.��A�3�A�p.m.C�p.m.�3pm��A�3�A�pmC�p.m.�4a.m.��A�4�A�a.m.C�a.m.�4am��A�4�A�amC�a.m.�4p.m.��A�4�A�p.m.C�p.m.�4pm��A�4�A�pmC�p.m.�5a.m.��A�5�A�a.m.C�a.m.�5am��A�5�A�amC�a.m.�5p.m.��A�5�A�p.m.C�p.m.�5pm��A�5�A�pmC�p.m.�6a.m.��A�6�A�a.m.C�a.m.�6am��A�6�A�amC�a.m.�6p.m.��A�6�A�p.m.C�p.m.�6pm��A�6�A�pmC�p.m.�7a.m.��A�7�A�a.m.C�a.m.�7am��A�7�A�amC�a.m.�7p.m.��A�7�A�p.m.C�p.m.�7pm��A�7�A�pmC�p.m.�8)��A�8)�8-)��A�8-)�8-D��A�8-D�8D��A�8D�8a.m.��A�8�A�a.m.C�a.m.�8am��A�8�A�amC�a.m.�8p.m.��A�8�A�p.m.C�p.m.�8pm��A�8�A�pmC�p.m.�9a.m.��A�9�A�a.m.C�a.m.�9am��A�9�A�amC�a.m.�9p.m.��A�9�A�p.m.C�p.m.�9pm��A�9�A�pmC�p.m.�:'(��A�:'(�:')��A�:')�:'-(��A�:'-(�:'-)��A�:'-)�:(��A�:(�:((��A�:((�:(((��A�:(((�:()��A�:()�:)��A�:)�:))��A�:))�:)))��A�:)))�:*��A�:*�:-(��A�:-(�:-((��A�:-((�:-(((��A�:-(((�:-)��A�:-)�:-))��A�:-))�:-)))��A�:-)))�:-*��A�:-*�:-/��A�:-/�:-0��A�:-0�:-3��A�:-3�:->��A�:->�:-D��A�:-D�:-O��A�:-O�:-P��A�:-P�:-X��A�:-X�:-]��A�:-]�:-o��A�:-o�:-p��A�:-p�:-x��A�:-x�:-|��A�:-|�:-}��A�:-}�:/��A�:/�:0��A�:0�:1��A�:1�:3��A�:3�:>��A�:>�:D��A�:D�:O��A�:O�:P��A�:P�:X��A�:X�:]��A�:]�:o��A�:o�:o)��A�:o)�:p��A�:p�:x��A�:x�:|��A�:|�:}��A�:}�:’(��A�:’(�:’)��A�:’)�:’-(��A�:’-(�:’-)��A�:’-)�;)��A�;)�;-)��A�;-)�;-D��A�;-D�;D��A�;D�;_;��A�;_;�<.<��A�<.<�</3��A�</3�<3��A�<3�<33��A�<33�<333��A�<333�<space>��A�<space>�=(��A�=(�=)��A�=)�=/��A�=/�=3��A�=3�=D��A�=D�=[��A�=[�=]��A�=]�=|��A�=|�>.<��A�>.<�>.>��A�>.>�>:(��A�>:(�>:o��A�>:o�><(((*>��A�><(((*>�@_@��A�@_@�Adm.��A�Adm.�Ain't��A�Ai�A�n'tC�not�Aint��A�Ai�A�ntC�not�Ain’t��A�Ai�A�n’tC�not�Ak.��A�Ak.C�Alaska�Ala.��A�Ala.C�Alabama�Apr.��A�Apr.C�April�Aren't��A�AreC�are�A�n'tC�not�Arent��A�AreC�are�A�ntC�not�Aren’t��A�AreC�are�A�n’tC�not�Ariz.��A�Ariz.C�Arizona�Ark.��A�Ark.C�Arkansas�Aug.��A�Aug.C�August�Bros.��A�Bros.�C'mon��A�C'mC�come�A�on�C++��A�C++�Calif.��A�Calif.C�California�Can't��A�CaC�can�A�n'tC�not�Can't've��A�CaC�can�A�n'tC�not�A�'veC�have�Cannot��A�CanC�can�A�not�Cant��A�CaC�can�A�ntC�not�Cantve��A�CaC�can�A�ntC�not�A�veC�have�Can’t��A�CaC�can�A�n’tC�not�Can’t’ve��A�CaC�can�A�n’tC�not�A�’veC�have�Co.��A�Co.�Colo.��A�Colo.C�Colorado�Conn.��A�Conn.C�Connecticut�Corp.��A�Corp.�Could've��A�CouldC�could�A�'ve�Couldn't��A�CouldC�could�A�n'tC�not�Couldn't've��A�CouldC�could�A�n'tC�not�A�'veC�have�Couldnt��A�CouldC�could�A�ntC�not�Couldntve��A�CouldC�could�A�ntC�not�A�veC�have�Couldn’t��A�CouldC�could�A�n’tC�not�Couldn’t’ve��A�CouldC�could�A�n’tC�not�A�’veC�have�Couldve��A�CouldC�could�A�ve�Could’ve��A�CouldC�could�A�’ve�C’mon��A�C’mC�come�A�on�D.C.��A�D.C.�Daren't��A�DareC�dare�A�n'tC�not�Darent��A�DareC�dare�A�ntC�not�Daren’t��A�DareC�dare�A�n’tC�not�Dec.��A�Dec.C�December�Del.��A�Del.C�Delaware�Didn't��A�DidC�do�A�n'tC�not�Didn't've��A�DidC�do�A�n'tC�not�A�'veC�have�Didnt��A�DidC�do�A�ntC�not�Didntve��A�DidC�do�A�ntC�not�A�veC�have�Didn’t��A�DidC�do�A�n’tC�not�Didn’t’ve��A�DidC�do�A�n’tC�not�A�’veC�have�Doesn't��A�DoesC�does�A�n'tC�not�Doesn't've��A�DoesC�does�A�n'tC�not�A�'veC�have�Doesnt��A�DoesC�does�A�ntC�not�Doesntve��A�DoesC�does�A�ntC�not�A�veC�have�Doesn’t��A�DoesC�does�A�n’tC�not�Doesn’t’ve��A�DoesC�does�A�n’tC�not�A�’veC�have�Doin��A�DoinC�doing�Doin'��A�Doin'C�doing�Doin’��A�Doin’C�doing�Don't��A�DoC�do�A�n'tC�not�Don't've��A�DoC�do�A�n'tC�not�A�'veC�have�Dont��A�DoC�do�A�ntC�not�Dontve��A�DoC�do�A�ntC�not�A�veC�have�Don’t��A�DoC�do�A�n’tC�not�Don’t’ve��A�DoC�do�A�n’tC�not�A�’veC�have�Dr.��A�Dr.�E.G.��A�E.G.�E.g.��A�E.g.�Feb.��A�Feb.C�February�Fla.��A�Fla.C�Florida�Ga.��A�Ga.C�Georgia�Gen.��A�Gen.�Goin��A�GoinC�going�Goin'��A�Goin'C�going�Goin’��A�Goin’C�going�Gonna��A�GonC�going�A�naC�to�Gotta��A�GotC�got�A�taC�to�Gov.��A�Gov.�Hadn't��A�HadC�have�A�n'tC�not�Hadn't've��A�HadC�have�A�n'tC�not�A�'veC�have�Hadnt��A�HadC�have�A�ntC�not�Hadntve��A�HadC�have�A�ntC�not�A�veC�have�Hadn’t��A�HadC�have�A�n’tC�not�Hadn’t’ve��A�HadC�have�A�n’tC�not�A�’veC�have�Hasn't��A�HasC�has�A�n'tC�not�Hasnt��A�HasC�has�A�ntC�not�Hasn’t��A�HasC�has�A�n’tC�not�Haven't��A�HaveC�have�A�n'tC�not�Havent��A�HaveC�have�A�ntC�not�Haven’t��A�HaveC�have�A�n’tC�not�Havin��A�HavinC�having�Havin'��A�Havin'C�having�Havin’��A�Havin’C�having�He'd��A�HeC�he�A�'dC�'d�He'd've��A�HeC�he�A�'dC�would�A�'veC�have�He'll��A�HeC�he�A�'llC�will�He'll've��A�HeC�he�A�'llC�will�A�'veC�have�He's��A�HeC�he�A�'sC�'s�Hed��A�HeC�he�A�dC�'d�Hedve��A�HeC�he�A�dC�would�A�veC�have�Hellve��A�HeC�he�A�llC�will�A�veC�have�Hes��A�HeC�he�A�s�He’d��A�HeC�he�A�’dC�'d�He’d’ve��A�HeC�he�A�’dC�would�A�’veC�have�He’ll��A�HeC�he�A�’llC�will�He’ll’ve��A�HeC�he�A�’llC�will�A�’veC�have�He’s��A�HeC�he�A�’sC�'s�How'd��A�HowC�how�A�'dC�'d�How'd've��A�HowC�how�A�'dC�would�A�'veC�have�How'd'y��A�HowC�how�A�'d�A�'yC�you�How'll��A�HowC�how�A�'llC�will�How'll've��A�HowC�how�A�'llC�will�A�'veC�have�How're��A�HowC�how�A�'reC�are�How's��A�HowC�how�A�'sC�'s�How've��A�HowC�how�A�'ve�Howd��A�HowC�how�A�dC�'d�Howdve��A�HowC�how�A�dC�would�A�veC�have�Howll��A�HowC�how�A�llC�will�Howllve��A�HowC�how�A�llC�will�A�veC�have�Howre��A�HowC�how�A�reC�are�Hows��A�HowC�how�A�s�Howve��A�How�A�veC�have�How’d��A�HowC�how�A�’dC�'d�How’d’ve��A�HowC�how�A�’dC�would�A�’veC�have�How’d’y��A�HowC�how�A�’d�A�’yC�you�How’ll��A�HowC�how�A�’llC�will�How’ll’ve��A�HowC�how�A�’llC�will�A�’veC�have�How’re��A�HowC�how�A�’reC�are�How’s��A�HowC�how�A�’sC�'s�How’ve��A�HowC�how�A�’ve�I'd��A�IC�i�A�'dC�'d�I'd've��A�IC�i�A�'dC�would�A�'veC�have�I'll��A�IC�i�A�'llC�will�I'll've��A�IC�i�A�'llC�will�A�'veC�have�I'm��A�IC�i�A�'mC�am�I'ma��A�IC�i�A�'mC�am�A�aC�gonna�I've��A�IC�i�A�'veC�have�I.E.��A�I.E.�I.e.��A�I.e.�Ia.��A�Ia.C�Iowa�Id��A�IC�i�A�dC�'d�Id.��A�Id.C�Idaho�Idve��A�IC�i�A�dC�would�A�veC�have�Ill.��A�Ill.C�Illinois�Illve��A�IC�i�A�llC�will�A�veC�have�Im��A�IC�i�A�m�Ima��A�IC�i�A�mC�am�A�aC�gonna�Inc.��A�Inc.�Ind.��A�Ind.C�Indiana�Isn't��A�IsC�is�A�n'tC�not�Isnt��A�IsC�is�A�ntC�not�Isn’t��A�IsC�is�A�n’tC�not�It'd��A�ItC�it�A�'dC�'d�It'd've��A�ItC�it�A�'dC�would�A�'veC�have�It'll��A�ItC�it�A�'llC�will�It'll've��A�ItC�it�A�'llC�will�A�'veC�have�It's��A�ItC�it�A�'sC�'s�Itd��A�ItC�it�A�dC�'d�Itdve��A�ItC�it�A�dC�would�A�veC�have�Itll��A�ItC�it�A�llC�will�Itllve��A�ItC�it�A�llC�will�A�veC�have�It’d��A�ItC�it�A�’dC�'d�It’d’ve��A�ItC�it�A�’dC�would�A�’veC�have�It’ll��A�ItC�it�A�’llC�will�It’ll’ve��A�ItC�it�A�’llC�will�A�’veC�have�It’s��A�ItC�it�A�’sC�'s�Ive��A�IC�i�A�veC�have�I’d��A�IC�i�A�’dC�'d�I’d’ve��A�IC�i�A�’dC�would�A�’veC�have�I’ll��A�IC�i�A�’llC�will�I’ll’ve��A�IC�i�A�’llC�will�A�’veC�have�I’m��A�IC�i�A�’mC�am�I’ma��A�IC�i�A�’mC�am�A�aC�gonna�I’ve��A�IC�i�A�’veC�have�Jan.��A�Jan.C�January�Jr.��A�Jr.�Jul.��A�Jul.C�July�Jun.��A�Jun.C�June�Kan.��A�Kan.C�Kansas�Kans.��A�Kans.C�Kansas�Ky.��A�Ky.C�Kentucky�La.��A�La.C�Louisiana�Let's��A�LetC�let�A�'sC�us�Let’s��A�LetC�let�A�’sC�us�Lovin��A�LovinC�loving�Lovin'��A�Lovin'C�loving�Lovin’��A�Lovin’C�loving�Ltd.��A�Ltd.�Ma'am��A�Ma'amC�madam�Mar.��A�Mar.C�March�Mass.��A�Mass.C�Massachusetts�Mayn't��A�MayC�may�A�n'tC�not�Mayn't've��A�MayC�may�A�n'tC�not�A�'veC�have�Maynt��A�MayC�may�A�ntC�not�Mayntve��A�MayC�may�A�ntC�not�A�veC�have�Mayn’t��A�MayC�may�A�n’tC�not�Mayn’t’ve��A�MayC�may�A�n’tC�not�A�’veC�have�Ma’am��A�Ma’amC�madam�Md.��A�Md.�Messrs.��A�Messrs.�Mich.��A�Mich.C�Michigan�Might've��A�MightC�might�A�'ve�Mightn't��A�MightC�might�A�n'tC�not�Mightn't've��A�MightC�might�A�n'tC�not�A�'veC�have�Mightnt��A�MightC�might�A�ntC�not�Mightntve��A�MightC�might�A�ntC�not�A�veC�have�Mightn’t��A�MightC�might�A�n’tC�not�Mightn’t’ve��A�MightC�might�A�n’tC�not�A�’veC�have�Mightve��A�MightC�might�A�ve�Might’ve��A�MightC�might�A�’ve�Minn.��A�Minn.C�Minnesota�Miss.��A�Miss.C�Mississippi�Mo.��A�Mo.�Mont.��A�Mont.�Mr.��A�Mr.�Mrs.��A�Mrs.�Ms.��A�Ms.�Mt.��A�Mt.C�Mount�Must've��A�MustC�must�A�'ve�Mustn't��A�MustC�must�A�n'tC�not�Mustn't've��A�MustC�must�A�n'tC�not�A�'veC�have�Mustnt��A�MustC�must�A�ntC�not�Mustntve��A�MustC�must�A�ntC�not�A�veC�have�Mustn’t��A�MustC�must�A�n’tC�not�Mustn’t’ve��A�MustC�must�A�n’tC�not�A�’veC�have�Mustve��A�MustC�must�A�ve�Must’ve��A�MustC�must�A�’ve�N.C.��A�N.C.C�North Carolina�N.D.��A�N.D.C�North Dakota�N.H.��A�N.H.C�New Hampshire�N.J.��A�N.J.C�New Jersey�N.M.��A�N.M.C�New Mexico�N.Y.��A�N.Y.C�New York�Neb.��A�Neb.C�Nebraska�Nebr.��A�Nebr.C�Nebraska�Needn't��A�NeedC�need�A�n'tC�not�Needn't've��A�NeedC�need�A�n'tC�not�A�'veC�have�Neednt��A�NeedC�need�A�ntC�not�Needntve��A�NeedC�need�A�ntC�not�A�veC�have�Needn’t��A�NeedC�need�A�n’tC�not�Needn’t’ve��A�NeedC�need�A�n’tC�not�A�’veC�have�Nev.��A�Nev.C�Nevada�Not've��A�NotC�not�A�'veC�have�Nothin��A�NothinC�nothing�Nothin'��A�Nothin'C�nothing�Nothin’��A�Nothin’C�nothing�Notve��A�NotC�not�A�veC�have�Not’ve��A�NotC�not�A�’veC�have�Nov.��A�Nov.C�November�Nuthin��A�NuthinC�nothing�Nuthin'��A�Nuthin'C�nothing�Nuthin’��A�Nuthin’C�nothing�O'clock��A�O'clockC�o'clock�O.O��A�O.O�O.o��A�O.o�O_O��A�O_O�O_o��A�O_o�Oct.��A�Oct.C�October�Okla.��A�Okla.C�Oklahoma�Ol��A�OlC�old�Ol'��A�Ol'C�old�Ol’��A�Ol’C�old�Ore.��A�Ore.C�Oregon�Oughtn't��A�OughtC�ought�A�n'tC�not�Oughtn't've��A�OughtC�ought�A�n'tC�not�A�'veC�have�Oughtnt��A�OughtC�ought�A�ntC�not�Oughtntve��A�OughtC�ought�A�ntC�not�A�veC�have�Oughtn’t��A�OughtC�ought�A�n’tC�not�Oughtn’t’ve��A�OughtC�ought�A�n’tC�not�A�’veC�have�O’clock��A�O’clockC�o'clock�Pa.��A�Pa.C�Pennsylvania�Ph.D.��A�Ph.D.�Prof.��A�Prof.�Rep.��A�Rep.�Rev.��A�Rev.�S.C.��A�S.C.C�South Carolina�Sen.��A�Sen.�Sep.��A�Sep.C�September�Sept.��A�Sept.C�September�Shan't��A�ShaC�shall�A�n'tC�not�Shan't've��A�ShaC�shall�A�n'tC�not�A�'veC�have�Shant��A�ShaC�shall�A�ntC�not�Shantve��A�ShaC�shall�A�ntC�not�A�veC�have�Shan’t��A�ShaC�shall�A�n’tC�not�Shan’t’ve��A�ShaC�shall�A�n’tC�not�A�’veC�have�She'd��A�SheC�she�A�'dC�'d�She'd've��A�SheC�she�A�'dC�would�A�'veC�have�She'll��A�SheC�she�A�'llC�will�She'll've��A�SheC�she�A�'llC�will�A�'veC�have�She's��A�SheC�she�A�'sC�'s�Shedve��A�SheC�she�A�dC�would�A�veC�have�Shellve��A�SheC�she�A�llC�will�A�veC�have�Shes��A�SheC�she�A�s�She’d��A�SheC�she�A�’dC�'d�She’d’ve��A�SheC�she�A�’dC�would�A�’veC�have�She’ll��A�SheC�she�A�’llC�will�She’ll’ve��A�SheC�she�A�’llC�will�A�’veC�have�She’s��A�SheC�she�A�’sC�'s�Should've��A�ShouldC�should�A�'ve�Shouldn't��A�ShouldC�should�A�n'tC�not�Shouldn't've��A�ShouldC�should�A�n'tC�not�A�'veC�have�Shouldnt��A�ShouldC�should�A�ntC�not�Shouldntve��A�ShouldC�should�A�ntC�not�A�veC�have�Shouldn’t��A�ShouldC�should�A�n’tC�not�Shouldn’t’ve��A�ShouldC�should�A�n’tC�not�A�’veC�have�Shouldve��A�ShouldC�should�A�ve�Should’ve��A�ShouldC�should�A�’ve�Somethin��A�SomethinC�something�Somethin'��A�Somethin'C�something�Somethin’��A�Somethin’C�something�St.��A�St.�Tenn.��A�Tenn.C�Tennessee�That'd��A�ThatC�that�A�'dC�'d�That'd've��A�ThatC�that�A�'dC�would�A�'veC�have�That'll��A�ThatC�that�A�'llC�will�That'll've��A�ThatC�that�A�'llC�will�A�'veC�have�That's��A�ThatC�that�A�'sC�'s�Thatd��A�ThatC�that�A�dC�'d�Thatdve��A�ThatC�that�A�dC�would�A�veC�have�Thatll��A�ThatC�that�A�llC�will�Thatllve��A�ThatC�that�A�llC�will�A�veC�have�Thats��A�ThatC�that�A�s�That’d��A�ThatC�that�A�’dC�'d�That’d’ve��A�ThatC�that�A�’dC�would�A�’veC�have�That’ll��A�ThatC�that�A�’llC�will�That’ll’ve��A�ThatC�that�A�’llC�will�A�’veC�have�That’s��A�ThatC�that�A�’sC�'s�There'd��A�ThereC�there�A�'dC�'d�There'd've��A�ThereC�there�A�'dC�would�A�'veC�have�There'll��A�ThereC�there�A�'llC�will�There'll've��A�ThereC�there�A�'llC�will�A�'veC�have�There're��A�ThereC�there�A�'reC�are�There's��A�ThereC�there�A�'sC�'s�There've��A�ThereC�there�A�'ve�Thered��A�ThereC�there�A�dC�'d�Theredve��A�ThereC�there�A�dC�would�A�veC�have�Therell��A�ThereC�there�A�llC�will�Therellve��A�ThereC�there�A�llC�will�A�veC�have�Therere��A�ThereC�there�A�reC�are�Theres��A�ThereC�there�A�s�Thereve��A�There�A�veC�have�There’d��A�ThereC�there�A�’dC�'d�There’d’ve��A�ThereC�there�A�’dC�would�A�’veC�have�There’ll��A�ThereC�there�A�’llC�will�There’ll’ve��A�ThereC�there�A�’llC�will�A�’veC�have�There’re��A�ThereC�there�A�’reC�are�There’s��A�ThereC�there�A�’sC�'s�There’ve��A�ThereC�there�A�’ve�These'd��A�TheseC�these�A�'dC�'d�These'd've��A�TheseC�these�A�'dC�would�A�'veC�have�These'll��A�TheseC�these�A�'llC�will�These'll've��A�TheseC�these�A�'llC�will�A�'veC�have�These're��A�TheseC�these�A�'reC�are�These've��A�TheseC�these�A�'ve�Thesed��A�TheseC�these�A�dC�'d�Thesedve��A�TheseC�these�A�dC�would�A�veC�have�Thesell��A�TheseC�these�A�llC�will�Thesellve��A�TheseC�these�A�llC�will�A�veC�have�Thesere��A�TheseC�these�A�reC�are�Theseve��A�These�A�veC�have�These’d��A�TheseC�these�A�’dC�'d�These’d’ve��A�TheseC�these�A�’dC�would�A�’veC�have�These’ll��A�TheseC�these�A�’llC�will�These’ll’ve��A�TheseC�these�A�’llC�will�A�’veC�have�These’re��A�TheseC�these�A�’reC�are�These’ve��A�TheseC�these�A�’ve�They'd��A�TheyC�they�A�'dC�'d�They'd've��A�TheyC�they�A�'dC�would�A�'veC�have�They'll��A�TheyC�they�A�'llC�will�They'll've��A�TheyC�they�A�'llC�will�A�'veC�have�They're��A�TheyC�they�A�'reC�are�They've��A�TheyC�they�A�'veC�have�Theyd��A�TheyC�they�A�dC�'d�Theydve��A�TheyC�they�A�dC�would�A�veC�have�Theyll��A�TheyC�they�A�llC�will�Theyllve��A�TheyC�they�A�llC�will�A�veC�have�Theyre��A�TheyC�they�A�reC�are�Theyve��A�TheyC�they�A�veC�have�They’d��A�TheyC�they�A�’dC�'d�They’d’ve��A�TheyC�they�A�’dC�would�A�’veC�have�They’ll��A�TheyC�they�A�’llC�will�They’ll’ve��A�TheyC�they�A�’llC�will�A�’veC�have�They’re��A�TheyC�they�A�’reC�are�They’ve��A�TheyC�they�A�’veC�have�This'd��A�ThisC�this�A�'dC�'d�This'd've��A�ThisC�this�A�'dC�would�A�'veC�have�This'll��A�ThisC�this�A�'llC�will�This'll've��A�ThisC�this�A�'llC�will�A�'veC�have�This's��A�ThisC�this�A�'sC�'s�Thisd��A�ThisC�this�A�dC�'d�Thisdve��A�ThisC�this�A�dC�would�A�veC�have�Thisll��A�ThisC�this�A�llC�will�Thisllve��A�ThisC�this�A�llC�will�A�veC�have�Thiss��A�ThisC�this�A�s�This’d��A�ThisC�this�A�’dC�'d�This’d’ve��A�ThisC�this�A�’dC�would�A�’veC�have�This’ll��A�ThisC�this�A�’llC�will�This’ll’ve��A�ThisC�this�A�’llC�will�A�’veC�have�This’s��A�ThisC�this�A�’sC�'s�Those'd��A�ThoseC�those�A�'dC�'d�Those'd've��A�ThoseC�those�A�'dC�would�A�'veC�have�Those'll��A�ThoseC�those�A�'llC�will�Those'll've��A�ThoseC�those�A�'llC�will�A�'veC�have�Those're��A�ThoseC�those�A�'reC�are�Those've��A�ThoseC�those�A�'ve�Thosed��A�ThoseC�those�A�dC�'d�Thosedve��A�ThoseC�those�A�dC�would�A�veC�have�Thosell��A�ThoseC�those�A�llC�will�Thosellve��A�ThoseC�those�A�llC�will�A�veC�have�Thosere��A�ThoseC�those�A�reC�are�Thoseve��A�Those�A�veC�have�Those’d��A�ThoseC�those�A�’dC�'d�Those’d’ve��A�ThoseC�those�A�’dC�would�A�’veC�have�Those’ll��A�ThoseC�those�A�’llC�will�Those’ll’ve��A�ThoseC�those�A�’llC�will�A�’veC�have�Those’re��A�ThoseC�those�A�’reC�are�Those’ve��A�ThoseC�those�A�’ve�V.V��A�V.V�V_V��A�V_V�Va.��A�Va.C�Virginia�Wash.��A�Wash.C�Washington�Wasn't��A�WasC�was�A�n'tC�not�Wasnt��A�WasC�was�A�ntC�not�Wasn’t��A�WasC�was�A�n’tC�not�We'd��A�WeC�we�A�'dC�'d�We'd've��A�WeC�we�A�'dC�would�A�'veC�have�We'll��A�WeC�we�A�'llC�will�We'll've��A�WeC�we�A�'llC�will�A�'veC�have�We're��A�WeC�we�A�'reC�are�We've��A�WeC�we�A�'veC�have�Wed��A�WeC�we�A�dC�'d�Wedve��A�WeC�we�A�dC�would�A�veC�have�Wellve��A�WeC�we�A�llC�will�A�veC�have�Weren't��A�WereC�were�A�n'tC�not�Werent��A�WereC�were�A�ntC�not�Weren’t��A�WereC�were�A�n’tC�not�Weve��A�WeC�we�A�veC�have�We’d��A�WeC�we�A�’dC�'d�We’d’ve��A�WeC�we�A�’dC�would�A�’veC�have�We’ll��A�WeC�we�A�’llC�will�We’ll’ve��A�WeC�we�A�’llC�will�A�’veC�have�We’re��A�WeC�we�A�’reC�are�We’ve��A�WeC�we�A�’veC�have�What'd��A�WhatC�what�A�'dC�'d�What'd've��A�WhatC�what�A�'dC�would�A�'veC�have�What'll��A�WhatC�what�A�'llC�will�What'll've��A�WhatC�what�A�'llC�will�A�'veC�have�What're��A�WhatC�what�A�'reC�are�What's��A�WhatC�what�A�'sC�'s�What've��A�WhatC�what�A�'ve�Whatd��A�WhatC�what�A�dC�'d�Whatdve��A�WhatC�what�A�dC�would�A�veC�have�Whatll��A�WhatC�what�A�llC�will�Whatllve��A�WhatC�what�A�llC�will�A�veC�have�Whatre��A�WhatC�what�A�reC�are�Whats��A�WhatC�what�A�s�Whatve��A�What�A�veC�have�What’d��A�WhatC�what�A�’dC�'d�What’d’ve��A�WhatC�what�A�’dC�would�A�’veC�have�What’ll��A�WhatC�what�A�’llC�will�What’ll’ve��A�WhatC�what�A�’llC�will�A�’veC�have�What’re��A�WhatC�what�A�’reC�are�What’s��A�WhatC�what�A�’sC�'s�What’ve��A�WhatC�what�A�’ve�When'd��A�WhenC�when�A�'dC�'d�When'd've��A�WhenC�when�A�'dC�would�A�'veC�have�When'll��A�WhenC�when�A�'llC�will�When'll've��A�WhenC�when�A�'llC�will�A�'veC�have�When're��A�WhenC�when�A�'reC�are�When's��A�WhenC�when�A�'sC�'s�When've��A�WhenC�when�A�'ve�Whend��A�WhenC�when�A�dC�'d�Whendve��A�WhenC�when�A�dC�would�A�veC�have�Whenll��A�WhenC�when�A�llC�will�Whenllve��A�WhenC�when�A�llC�will�A�veC�have�Whenre��A�WhenC�when�A�reC�are�Whens��A�WhenC�when�A�s�Whenve��A�When�A�veC�have�When’d��A�WhenC�when�A�’dC�'d�When’d’ve��A�WhenC�when�A�’dC�would�A�’veC�have�When’ll��A�WhenC�when�A�’llC�will�When’ll’ve��A�WhenC�when�A�’llC�will�A�’veC�have�When’re��A�WhenC�when�A�’reC�are�When’s��A�WhenC�when�A�’sC�'s�When’ve��A�WhenC�when�A�’ve�Where'd��A�WhereC�where�A�'dC�'d�Where'd've��A�WhereC�where�A�'dC�would�A�'veC�have�Where'll��A�WhereC�where�A�'llC�will�Where'll've��A�WhereC�where�A�'llC�will�A�'veC�have�Where're��A�WhereC�where�A�'reC�are�Where's��A�WhereC�where�A�'sC�'s�Where've��A�WhereC�where�A�'ve�Whered��A�WhereC�where�A�dC�'d�Wheredve��A�WhereC�where�A�dC�would�A�veC�have�Wherell��A�WhereC�where�A�llC�will�Wherellve��A�WhereC�where�A�llC�will�A�veC�have�Wherere��A�WhereC�where�A�reC�are�Wheres��A�WhereC�where�A�s�Whereve��A�Where�A�veC�have�Where’d��A�WhereC�where�A�’dC�'d�Where’d’ve��A�WhereC�where�A�’dC�would�A�’veC�have�Where’ll��A�WhereC�where�A�’llC�will�Where’ll’ve��A�WhereC�where�A�’llC�will�A�’veC�have�Where’re��A�WhereC�where�A�’reC�are�Where’s��A�WhereC�where�A�’sC�'s�Where’ve��A�WhereC�where�A�’ve�Who'd��A�WhoC�who�A�'dC�'d�Who'd've��A�WhoC�who�A�'dC�would�A�'veC�have�Who'll��A�WhoC�who�A�'llC�will�Who'll've��A�WhoC�who�A�'llC�will�A�'veC�have�Who're��A�WhoC�who�A�'reC�are�Who's��A�WhoC�who�A�'sC�'s�Who've��A�WhoC�who�A�'ve�Whod��A�WhoC�who�A�dC�'d�Whodve��A�WhoC�who�A�dC�would�A�veC�have�Wholl��A�WhoC�who�A�llC�will�Whollve��A�WhoC�who�A�llC�will�A�veC�have�Whos��A�WhoC�who�A�s�Whove��A�Who�A�veC�have�Who’d��A�WhoC�who�A�’dC�'d�Who’d’ve��A�WhoC�who�A�’dC�would�A�’veC�have�Who’ll��A�WhoC�who�A�’llC�will�Who’ll’ve��A�WhoC�who�A�’llC�will�A�’veC�have�Who’re��A�WhoC�who�A�’reC�are�Who’s��A�WhoC�who�A�’sC�'s�Who’ve��A�WhoC�who�A�’ve�Why'd��A�WhyC�why�A�'dC�'d�Why'd've��A�WhyC�why�A�'dC�would�A�'veC�have�Why'll��A�WhyC�why�A�'llC�will�Why'll've��A�WhyC�why�A�'llC�will�A�'veC�have�Why're��A�WhyC�why�A�'reC�are�Why's��A�WhyC�why�A�'sC�'s�Why've��A�WhyC�why�A�'ve�Whyd��A�WhyC�why�A�dC�'d�Whydve��A�WhyC�why�A�dC�would�A�veC�have�Whyll��A�WhyC�why�A�llC�will�Whyllve��A�WhyC�why�A�llC�will�A�veC�have�Whyre��A�WhyC�why�A�reC�are�Whys��A�WhyC�why�A�s�Whyve��A�Why�A�veC�have�Why’d��A�WhyC�why�A�’dC�'d�Why’d’ve��A�WhyC�why�A�’dC�would�A�’veC�have�Why’ll��A�WhyC�why�A�’llC�will�Why’ll’ve��A�WhyC�why�A�’llC�will�A�’veC�have�Why’re��A�WhyC�why�A�’reC�are�Why’s��A�WhyC�why�A�’sC�'s�Why’ve��A�WhyC�why�A�’ve�Wis.��A�Wis.C�Wisconsin�Won't��A�WoC�will�A�n'tC�not�Won't've��A�WoC�will�A�n'tC�not�A�'veC�have�Wont��A�WoC�will�A�ntC�not�Wontve��A�WoC�will�A�ntC�not�A�veC�have�Won’t��A�WoC�will�A�n’tC�not�Won’t’ve��A�WoC�will�A�n’tC�not�A�’veC�have�Would've��A�WouldC�would�A�'ve�Wouldn't��A�WouldC�would�A�n'tC�not�Wouldn't've��A�WouldC�would�A�n'tC�not�A�'veC�have�Wouldnt��A�WouldC�would�A�ntC�not�Wouldntve��A�WouldC�would�A�ntC�not�A�veC�have�Wouldn’t��A�WouldC�would�A�n’tC�not�Wouldn’t’ve��A�WouldC�would�A�n’tC�not�A�’veC�have�Wouldve��A�WouldC�would�A�ve�Would’ve��A�WouldC�would�A�’ve�XD��A�XD�XDD��A�XDD�You'd��A�YouC�you�A�'dC�'d�You'd've��A�YouC�you�A�'dC�would�A�'veC�have�You'll��A�YouC�you�A�'llC�will�You'll've��A�YouC�you�A�'llC�will�A�'veC�have�You're��A�YouC�you�A�'reC�are�You've��A�YouC�you�A�'veC�have�Youd��A�YouC�you�A�dC�'d�Youdve��A�YouC�you�A�dC�would�A�veC�have�Youll��A�YouC�you�A�llC�will�Youllve��A�YouC�you�A�llC�will�A�veC�have�Youre��A�YouC�you�A�reC�are�Youve��A�YouC�you�A�veC�have�You’d��A�YouC�you�A�’dC�'d�You’d’ve��A�YouC�you�A�’dC�would�A�’veC�have�You’ll��A�YouC�you�A�’llC�will�You’ll’ve��A�YouC�you�A�’llC�will�A�’veC�have�You’re��A�YouC�you�A�’reC�are�You’ve��A�YouC�you�A�’veC�have�[-:��A�[-:�[:��A�[:�[=��A�[=�\")��A�\")�\n��A�\n�\t��A�\t�]=��A�]=�^_^��A�^_^�^__^��A�^__^�^___^��A�^___^�a.��A�a.�a.m.��A�a.m.�ain't��A�ai�A�n'tC�not�aint��A�ai�A�ntC�not�ain’t��A�ai�A�n’tC�not�and/or��A�and/orC�and/or�aren't��A�areC�are�A�n'tC�not�arent��A�areC�are�A�ntC�not�aren’t��A�areC�are�A�n’tC�not�b.��A�b.�c'mon��A�c'mC�come�A�on�c.��A�c.�can't��A�caC�can�A�n'tC�not�can't've��A�caC�can�A�n'tC�not�A�'veC�have�cannot��A�can�A�not�cant��A�caC�can�A�ntC�not�cantve��A�caC�can�A�ntC�not�A�veC�have�can’t��A�caC�can�A�n’tC�not�can’t’ve��A�caC�can�A�n’tC�not�A�’veC�have�co.��A�co.�could've��A�couldC�could�A�'ve�couldn't��A�couldC�could�A�n'tC�not�couldn't've��A�couldC�could�A�n'tC�not�A�'veC�have�couldnt��A�couldC�could�A�ntC�not�couldntve��A�couldC�could�A�ntC�not�A�veC�have�couldn’t��A�couldC�could�A�n’tC�not�couldn’t’ve��A�couldC�could�A�n’tC�not�A�’veC�have�couldve��A�couldC�could�A�ve�could’ve��A�couldC�could�A�’ve�c’mon��A�c’mC�come�A�on�d.��A�d.�daren't��A�dareC�dare�A�n'tC�not�darent��A�dareC�dare�A�ntC�not�daren’t��A�dareC�dare�A�n’tC�not�didn't��A�didC�do�A�n'tC�not�didn't've��A�didC�do�A�n'tC�not�A�'veC�have�didnt��A�didC�do�A�ntC�not�didntve��A�didC�do�A�ntC�not�A�veC�have�didn’t��A�didC�do�A�n’tC�not�didn’t’ve��A�didC�do�A�n’tC�not�A�’veC�have�doesn't��A�doesC�does�A�n'tC�not�doesn't've��A�doesC�does�A�n'tC�not�A�'veC�have�doesnt��A�doesC�does�A�ntC�not�doesntve��A�doesC�does�A�ntC�not�A�veC�have�doesn’t��A�doesC�does�A�n’tC�not�doesn’t’ve��A�doesC�does�A�n’tC�not�A�’veC�have�doin��A�doinC�doing�doin'��A�doin'C�doing�doin’��A�doin’C�doing�don't��A�doC�do�A�n'tC�not�don't've��A�doC�do�A�n'tC�not�A�'veC�have�dont��A�doC�do�A�ntC�not�dontve��A�doC�do�A�ntC�not�A�veC�have�don’t��A�doC�do�A�n’tC�not�don’t’ve��A�doC�do�A�n’tC�not�A�’veC�have�e.��A�e.�e.g.��A�e.g.�em��A�emC�them�f.��A�f.�g.��A�g.�goin��A�goinC�going�goin'��A�goin'C�going�goin’��A�goin’C�going�gonna��A�gonC�going�A�naC�to�gotta��A�got�A�taC�to�h.��A�h.�hadn't��A�hadC�have�A�n'tC�not�hadn't've��A�hadC�have�A�n'tC�not�A�'veC�have�hadnt��A�hadC�have�A�ntC�not�hadntve��A�hadC�have�A�ntC�not�A�veC�have�hadn’t��A�hadC�have�A�n’tC�not�hadn’t’ve��A�hadC�have�A�n’tC�not�A�’veC�have�hasn't��A�hasC�has�A�n'tC�not�hasnt��A�hasC�has�A�ntC�not�hasn’t��A�hasC�has�A�n’tC�not�haven't��A�haveC�have�A�n'tC�not�havent��A�haveC�have�A�ntC�not�haven’t��A�haveC�have�A�n’tC�not�havin��A�havinC�having�havin'��A�havin'C�having�havin’��A�havin’C�having�he'd��A�heC�he�A�'dC�'d�he'd've��A�heC�he�A�'dC�would�A�'veC�have�he'll��A�heC�he�A�'llC�will�he'll've��A�heC�he�A�'llC�will�A�'veC�have�he's��A�heC�he�A�'sC�'s�hed��A�heC�he�A�dC�'d�hedve��A�heC�he�A�dC�would�A�veC�have�hellve��A�heC�he�A�llC�will�A�veC�have�hes��A�heC�he�A�s�he’d��A�heC�he�A�’dC�'d�he’d’ve��A�heC�he�A�’dC�would�A�’veC�have�he’ll��A�heC�he�A�’llC�will�he’ll’ve��A�heC�he�A�’llC�will�A�’veC�have�he’s��A�heC�he�A�’sC�'s�how'd��A�howC�how�A�'dC�'d�how'd've��A�howC�how�A�'dC�would�A�'veC�have�how'd'y��A�how�A�'d�A�'yC�you�how'll��A�howC�how�A�'llC�will�how'll've��A�howC�how�A�'llC�will�A�'veC�have�how're��A�howC�how�A�'reC�are�how's��A�howC�how�A�'sC�'s�how've��A�howC�how�A�'ve�howd��A�howC�how�A�dC�'d�howdve��A�howC�how�A�dC�would�A�veC�have�howll��A�howC�how�A�llC�will�howllve��A�howC�how�A�llC�will�A�veC�have�howre��A�howC�how�A�reC�are�hows��A�howC�how�A�s�howve��A�how�A�veC�have�how’d��A�howC�how�A�’dC�'d�how’d’ve��A�howC�how�A���dC�would�A�’veC�have�how’d’y��A�how�A�’d�A�’yC�you�how’ll��A�howC�how�A�’llC�will�how’ll’ve��A�howC�how�A�’llC�will�A�’veC�have�how’re��A�howC�how�A�’reC�are�how’s��A�howC�how�A�’sC�'s�how’ve��A�howC�how�A�’ve�i'd��A�iC�i�A�'dC�'d�i'd've��A�iC�i�A�'dC�would�A�'veC�have�i'll��A�iC�i�A�'llC�will�i'll've��A�iC�i�A�'llC�will�A�'veC�have�i'm��A�iC�i�A�'mC�am�i'ma��A�iC�i�A�'mC�am�A�aC�gonna�i've��A�iC�i�A�'veC�have�i.��A�i.�i.e.��A�i.e.�id��A�iC�i�A�dC�'d�idve��A�iC�i�A�dC�would�A�veC�have�illve��A�iC�i�A�llC�will�A�veC�have�im��A�iC�i�A�m�ima��A�iC�i�A�mC�am�A�aC�gonna�isn't��A�isC�is�A�n'tC�not�isnt��A�isC�is�A�ntC�not�isn’t��A�isC�is�A�n’tC�not�it'd��A�itC�it�A�'dC�'d�it'd've��A�itC�it�A�'dC�would�A�'veC�have�it'll��A�itC�it�A�'llC�will�it'll've��A�itC�it�A�'llC�will�A�'veC�have�it's��A�itC�it�A�'sC�'s�itd��A�itC�it�A�dC�'d�itdve��A�itC�it�A�dC�would�A�veC�have�itll��A�itC�it�A�llC�will�itllve��A�itC�it�A�llC�will�A�veC�have�it’d��A�itC�it�A�’dC�'d�it’d’ve��A�itC�it�A�’dC�would�A�’veC�have�it’ll��A�itC�it�A�’llC�will�it’ll’ve��A�itC�it�A�’llC�will�A�’veC�have�it’s��A�itC�it�A�’sC�'s�ive��A�iC�i�A�veC�have�i’d��A�iC�i�A�’dC�'d�i’d’ve��A�iC�i�A�’dC�would�A�’veC�have�i’ll��A�iC�i�A�’llC�will�i’ll’ve��A�iC�i�A�’llC�will�A�’veC�have�i’m��A�iC�i�A�’mC�am�i’ma��A�iC�i�A�’mC�am�A�aC�gonna�i’ve��A�iC�i�A�’veC�have�j.��A�j.�k.��A�k.�l.��A�l.�let's��A�let�A�'sC�us�let’s��A�let�A�’sC�us�ll��A�llC�will�lovin��A�lovinC�loving�lovin'��A�lovin'C�loving�lovin’��A�lovin’C�loving�m.��A�m.�ma'am��A�ma'amC�madam�mayn't��A�mayC�may�A�n'tC�not�mayn't've��A�mayC�may�A�n'tC�not�A�'veC�have�maynt��A�mayC�may�A�ntC�not�mayntve��A�mayC�may�A�ntC�not�A�veC�have�mayn’t��A�mayC�may�A�n’tC�not�mayn’t’ve��A�mayC�may�A�n’tC�not�A�’veC�have�ma’am��A�ma’amC�madam�might've��A�mightC�might�A�'ve�mightn't��A�mightC�might�A�n'tC�not�mightn't've��A�mightC�might�A�n'tC�not�A�'veC�have�mightnt��A�mightC�might�A�ntC�not�mightntve��A�mightC�might�A�ntC�not�A�veC�have�mightn’t��A�mightC�might�A�n’tC�not�mightn’t’ve��A�mightC�might�A�n’tC�not�A�’veC�have�mightve��A�mightC�might�A�ve�might’ve��A�mightC�might�A�’ve�must've��A�mustC�must�A�'ve�mustn't��A�mustC�must�A�n'tC�not�mustn't've��A�mustC�must�A�n'tC�not�A�'veC�have�mustnt��A�mustC�must�A�ntC�not�mustntve��A�mustC�must�A�ntC�not�A�veC�have�mustn’t��A�mustC�must�A�n’tC�not�mustn’t’ve��A�mustC�must�A�n’tC�not�A�’veC�have�mustve��A�mustC�must�A�ve�must’ve��A�mustC�must�A�’ve�n.��A�n.�needn't��A�needC�need�A�n'tC�not�needn't've��A�needC�need�A�n'tC�not�A�'veC�have�neednt��A�needC�need�A�ntC�not�needntve��A�needC�need�A�ntC�not�A�veC�have�needn’t��A�needC�need�A�n’tC�not�needn’t’ve��A�needC�need�A�n’tC�not�A�’veC�have�not've��A�not�A�'veC�have�nothin��A�nothinC�nothing�nothin'��A�nothin'C�nothing�nothin’��A�nothin’C�nothing�notve��A�not�A�veC�have�not’ve��A�not�A�’veC�have�nuff��A�nuffC�enough�nuthin��A�nuthinC�nothing�nuthin'��A�nuthin'C�nothing�nuthin’��A�nuthin’C�nothing�o'clock��A�o'clockC�o'clock�o.��A�o.�o.0��A�o.0�o.O��A�o.O�o.o��A�o.o�o_0��A�o_0�o_O��A�o_O�o_o��A�o_o�ol��A�olC�old�ol'��A�ol'C�old�ol’��A�ol’C�old�oughtn't��A�oughtC�ought�A�n'tC�not�oughtn't've��A�oughtC�ought�A�n'tC�not�A�'veC�have�oughtnt��A�oughtC�ought�A�ntC�not�oughtntve��A�oughtC�ought�A�ntC�not�A�veC�have�oughtn’t��A�oughtC�ought�A�n’tC�not�oughtn’t’ve��A�oughtC�ought�A�n’tC�not�A�’veC�have�o’clock��A�o’clockC�o'clock�p.��A�p.�p.m.��A�p.m.�q.��A�q.�r.��A�r.�s.��A�s.�shan't��A�shaC�shall�A�n'tC�not�shan't've��A�shaC�shall�A�n'tC�not�A�'veC�have�shant��A�shaC�shall�A�ntC�not�shantve��A�shaC�shall�A�ntC�not�A�veC�have�shan’t��A�shaC�shall�A�n’tC�not�shan’t’ve��A�shaC�shall�A�n’tC�not�A�’veC�have�she'd��A�sheC�she�A�'dC�'d�she'd've��A�sheC�she�A�'dC�would�A�'veC�have�she'll��A�sheC�she�A�'llC�will�she'll've��A�sheC�she�A�'llC�will�A�'veC�have�she's��A�sheC�she�A�'sC�'s�shedve��A�sheC�she�A�dC�would�A�veC�have�shellve��A�sheC�she�A�llC�will�A�veC�have�shes��A�sheC�she�A�s�she’d��A�sheC�she�A�’dC�'d�she’d’ve��A�sheC�she�A�’dC�would�A�’veC�have�she’ll��A�sheC�she�A�’llC�will�she’ll’ve��A�sheC�she�A�’llC�will�A�’veC�have�she’s��A�sheC�she�A�’sC�'s�should've��A�shouldC�should�A�'ve�shouldn't��A�shouldC�should�A�n'tC�not�shouldn't've��A�shouldC�should�A�n'tC�not�A�'veC�have�shouldnt��A�shouldC�should�A�ntC�not�shouldntve��A�shouldC�should�A�ntC�not�A�veC�have�shouldn’t��A�shouldC�should�A�n’tC�not�shouldn’t’ve��A�shouldC�should�A�n’tC�not�A�’veC�have�shouldve��A�shouldC�should�A�ve�should’ve��A�shouldC�should�A�’ve�somethin��A�somethinC�something�somethin'��A�somethin'C�something�somethin’��A�somethin’C�something�t.��A�t.�that'd��A�thatC�that�A�'dC�'d�that'd've��A�thatC�that�A�'dC�would�A�'veC�have�that'll��A�thatC�that�A�'llC�will�that'll've��A�thatC�that�A�'llC�will�A�'veC�have�that's��A�thatC�that�A�'sC�'s�thatd��A�thatC�that�A�dC�'d�thatdve��A�thatC�that�A�dC�would�A�veC�have�thatll��A�thatC�that�A�llC�will�thatllve��A�thatC�that�A�llC�will�A�veC�have�thats��A�thatC�that�A�s�that’d��A�thatC�that�A�’dC�'d�that’d’ve��A�thatC�that�A�’dC�would�A�’veC�have�that’ll��A�thatC�that�A�’llC�will�that’ll’ve��A�thatC�that�A�’llC�will�A�’veC�have�that’s��A�thatC�that�A�’sC�'s�there'd��A�thereC�there�A�'dC�'d�there'd've��A�thereC�there�A�'dC�would�A�'veC�have�there'll��A�thereC�there�A�'llC�will�there'll've��A�thereC�there�A�'llC�will�A�'veC�have�there're��A�thereC�there�A�'reC�are�there's��A�thereC�there�A�'sC�'s�there've��A�thereC�there�A�'ve�thered��A�thereC�there�A�dC�'d�theredve��A�thereC�there�A�dC�would�A�veC�have�therell��A�thereC�there�A�llC�will�therellve��A�thereC�there�A�llC�will�A�veC�have�therere��A�thereC�there�A�reC�are�theres��A�thereC�there�A�s�thereve��A�there�A�veC�have�there’d��A�thereC�there�A�’dC�'d�there’d’ve��A�thereC�there�A�’dC�would�A�’veC�have�there’ll��A�thereC�there�A�’llC�will�there’ll’ve��A�thereC�there�A�’llC�will�A�’veC�have�there’re��A�thereC�there�A�’reC�are�there’s��A�thereC�there�A�’sC�'s�there’ve��A�thereC�there�A�’ve�these'd��A�theseC�these�A�'dC�'d�these'd've��A�theseC�these�A�'dC�would�A�'veC�have�these'll��A�theseC�these�A�'llC�will�these'll've��A�theseC�these�A�'llC�will�A�'veC�have�these're��A�theseC�these�A�'reC�are�these've��A�theseC�these�A�'ve�thesed��A�theseC�these�A�dC�'d�thesedve��A�theseC�these�A�dC�would�A�veC�have�thesell��A�theseC�these�A�llC�will�thesellve��A�theseC�these�A�llC�will�A�veC�have�thesere��A�theseC�these�A�reC�are�theseve��A�these�A�veC�have�these’d��A�theseC�these�A�’dC�'d�these’d’ve��A�theseC�these�A�’dC�would�A�’veC�have�these’ll��A�theseC�these�A�’llC�will�these’ll’ve��A�theseC�these�A�’llC�will�A�’veC�have�these’re��A�theseC�these�A�’reC�are�these’ve��A�theseC�these�A�’ve�they'd��A�theyC�they�A�'dC�'d�they'd've��A�theyC�they�A�'dC�would�A�'veC�have�they'll��A�theyC�they�A�'llC�will�they'll've��A�theyC�they�A�'llC�will�A�'veC�have�they're��A�theyC�they�A�'reC�are�they've��A�theyC�they�A�'veC�have�theyd��A�theyC�they�A�dC�'d�theydve��A�theyC�they�A�dC�would�A�veC�have�theyll��A�theyC�they�A�llC�will�theyllve��A�theyC�they�A�llC�will�A�veC�have�theyre��A�theyC�they�A�reC�are�theyve��A�theyC�they�A�veC�have�they’d��A�theyC�they�A�’dC�'d�they’d’ve��A�theyC�they�A�’dC�would�A�’veC�have�they’ll��A�theyC�they�A�’llC�will�they’ll’ve��A�theyC�they�A�’llC�will�A�’veC�have�they’re��A�theyC�they�A�’reC�are�they’ve��A�theyC�they�A�’veC�have�this'd��A�thisC�this�A�'dC�'d�this'd've��A�thisC�this�A�'dC�would�A�'veC�have�this'll��A�thisC�this�A�'llC�will�this'll've��A�thisC�this�A�'llC�will�A�'veC�have�this's��A�thisC�this�A�'sC�'s�thisd��A�thisC�this�A�dC�'d�thisdve��A�thisC�this�A�dC�would�A�veC�have�thisll��A�thisC�this�A�llC�will�thisllve��A�thisC�this�A�llC�will�A�veC�have�thiss��A�thisC�this�A�s�this’d��A�thisC�this�A�’dC�'d�this’d’ve��A�thisC�this�A�’dC�would�A�’veC�have�this’ll��A�thisC�this�A�’llC�will�this’ll’ve��A�thisC�this�A�’llC�will�A�’veC�have�this’s��A�thisC�this�A�’sC�'s�those'd��A�thoseC�those�A�'dC�'d�those'd've��A�thoseC�those�A�'dC�would�A�'veC�have�those'll��A�thoseC�those�A�'llC�will�those'll've��A�thoseC�those�A�'llC�will�A�'veC�have�those're��A�thoseC�those�A�'reC�are�those've��A�thoseC�those�A�'ve�thosed��A�thoseC�those�A�dC�'d�thosedve��A�thoseC�those�A�dC�would�A�veC�have�thosell��A�thoseC�those�A�llC�will�thosellve��A�thoseC�those�A�llC�will�A�veC�have�thosere��A�thoseC�those�A�reC�are�thoseve��A�those�A�veC�have�those’d��A�thoseC�those�A�’dC�'d�those’d’ve��A�thoseC�those�A�’dC�would�A�’veC�have�those’ll��A�thoseC�those�A�’llC�will�those’ll’ve��A�thoseC�those�A�’llC�will�A�’veC�have�those’re��A�thoseC�those�A�’reC�are�those’ve��A�thoseC�those�A�’ve�u.��A�u.�v.��A�v.�v.s.��A�v.s.�v.v��A�v.v�v_v��A�v_v�vs.��A�vs.�w.��A�w.�w/o��A�w/oC�without�wasn't��A�wasC�was�A�n'tC�not�wasnt��A�wasC�was�A�ntC�not�wasn’t��A�wasC�was�A�n’tC�not�we'd��A�weC�we�A�'dC�'d�we'd've��A�weC�we�A�'dC�would�A�'veC�have�we'll��A�weC�we�A�'llC�will�we'll've��A�weC�we�A�'llC�will�A�'veC�have�we're��A�weC�we�A�'reC�are�we've��A�weC�we�A�'veC�have�wed��A�weC�we�A�dC�'d�wedve��A�weC�we�A�dC�would�A�veC�have�wellve��A�weC�we�A�llC�will�A�veC�have�weren't��A�wereC�were�A�n'tC�not�werent��A�wereC�were�A�ntC�not�weren’t��A�wereC�were�A�n’tC�not�weve��A�weC�we�A�veC�have�we’d��A�weC�we�A�’dC�'d�we’d’ve��A�weC�we�A�’dC�would�A�’veC�have�we’ll��A�weC�we�A�’llC�will�we’ll’ve��A�weC�we�A�’llC�will�A�’veC�have�we’re��A�weC�we�A�’reC�are�we’ve��A�weC�we�A�’veC�have�what'd��A�whatC�what�A�'dC�'d�what'd've��A�whatC�what�A�'dC�would�A�'veC�have�what'll��A�whatC�what�A�'llC�will�what'll've��A�whatC�what�A�'llC�will�A�'veC�have�what're��A�whatC�what�A�'reC�are�what's��A�whatC�what�A�'sC�'s�what've��A�whatC�what�A�'ve�whatd��A�whatC�what�A�dC�'d�whatdve��A�whatC�what�A�dC�would�A�veC�have�whatll��A�whatC�what�A�llC�will�whatllve��A�whatC�what�A�llC�will�A�veC�have�whatre��A�whatC�what�A�reC�are�whats��A�whatC�what�A�s�whatve��A�what�A�veC�have�what’d��A�whatC�what�A�’dC�'d�what’d’ve��A�whatC�what�A�’dC�would�A�’veC�have�what’ll��A�whatC�what�A�’llC�will�what’ll’ve��A�whatC�what�A�’llC�will�A�’veC�have�what’re��A�whatC�what�A�’reC�are�what’s��A�whatC�what�A�’sC�'s�what’ve��A�whatC�what�A�’ve�when'd��A�whenC�when�A�'dC�'d�when'd've��A�whenC�when�A�'dC�would�A�'veC�have�when'll��A�whenC�when�A�'llC�will�when'll've��A�whenC�when�A�'llC�will�A�'veC�have�when're��A�whenC�when�A�'reC�are�when's��A�whenC�when�A�'sC�'s�when've��A�whenC�when�A�'ve�whend��A�whenC�when�A�dC�'d�whendve��A�whenC�when�A�dC�would�A�veC�have�whenll��A�whenC�when�A�llC�will�whenllve��A�whenC�when�A�llC�will�A�veC�have�whenre��A�whenC�when�A�reC�are�whens��A�whenC�when�A�s�whenve��A�when�A�veC�have�when’d��A�whenC�when�A�’dC�'d�when’d’ve��A�whenC�when�A�’dC�would�A�’veC�have�when’ll��A�whenC�when�A�’llC�will�when’ll’ve��A�whenC�when�A�’llC�will�A�’veC�have�when’re��A�whenC�when�A�’reC�are�when’s��A�whenC�when�A�’sC�'s�when’ve��A�whenC�when�A�’ve�where'd��A�whereC�where�A�'dC�'d�where'd've��A�whereC�where�A�'dC�would�A�'veC�have�where'll��A�whereC�where�A�'llC�will�where'll've��A�whereC�where�A�'llC�will�A�'veC�have�where're��A�whereC�where�A�'reC�are�where's��A�whereC�where�A�'sC�'s�where've��A�whereC�where�A�'ve�whered��A�whereC�where�A�dC�'d�wheredve��A�whereC�where�A�dC�would�A�veC�have�wherell��A�whereC�where�A�llC�will�wherellve��A�whereC�where�A�llC�will�A�veC�have�wherere��A�whereC�where�A�reC�are�wheres��A�whereC�where�A�s�whereve��A�where�A�veC�have�where’d��A�whereC�where�A�’dC�'d�where’d’ve��A�whereC�where�A�’dC�would�A�’veC�have�where’ll��A�whereC�where�A�’llC�will�where’ll’ve��A�whereC�where�A�’llC�will�A�’veC�have�where’re��A�whereC�where�A�’reC�are�where’s��A�whereC�where�A�’sC�'s�where’ve��A�whereC�where�A�’ve�who'd��A�whoC�who�A�'dC�'d�who'd've��A�whoC�who�A�'dC�would�A�'veC�have�who'll��A�whoC�who�A�'llC�will�who'll've��A�whoC�who�A�'llC�will�A�'veC�have�who're��A�whoC�who�A�'reC�are�who's��A�whoC�who�A�'sC�'s�who've��A�whoC�who�A�'ve�whod��A�whoC�who�A�dC�'d�whodve��A�whoC�who�A�dC�would�A�veC�have�wholl��A�whoC�who�A�llC�will�whollve��A�whoC�who�A�llC�will�A�veC�have�whos��A�whoC�who�A�s�whove��A�who�A�veC�have�who’d��A�whoC�who�A�’dC�'d�who’d’ve��A�whoC�who�A�’dC�would�A�’veC�have�who’ll��A�whoC�who�A�’llC�will�who’ll’ve��A�whoC�who�A�’llC�will�A�’veC�have�who’re��A�whoC�who�A�’reC�are�who’s��A�whoC�who�A�’sC�'s�who’ve��A�whoC�who�A�’ve�why'd��A�whyC�why�A�'dC�'d�why'd've��A�whyC�why�A�'dC�would�A�'veC�have�why'll��A�whyC�why�A�'llC�will�why'll've��A�whyC�why�A�'llC�will�A�'veC�have�why're��A�whyC�why�A�'reC�are�why's��A�whyC�why�A�'sC�'s�why've��A�whyC�why�A�'ve�whyd��A�whyC�why�A�dC�'d�whydve��A�whyC�why�A�dC�would�A�veC�have�whyll��A�whyC�why�A�llC�will�whyllve��A�whyC�why�A�llC�will�A�veC�have�whyre��A�whyC�why�A�reC�are�whys��A�whyC�why�A�s�whyve��A�why�A�veC�have�why’d��A�whyC�why�A�’dC�'d�why’d’ve��A�whyC�why�A�’dC�would�A�’veC�have�why’ll��A�whyC�why�A�’llC�will�why’ll’ve��A�whyC�why�A�’llC�will�A�’veC�have�why’re��A�whyC�why�A�’reC�are�why’s��A�whyC�why�A�’sC�'s�why’ve��A�whyC�why�A�’ve�won't��A�woC�will�A�n'tC�not�won't've��A�woC�will�A�n'tC�not�A�'veC�have�wont��A�woC�will�A�ntC�not�wontve��A�woC�will�A�ntC�not�A�veC�have�won’t��A�woC�will�A�n’tC�not�won’t’ve��A�woC�will�A�n’tC�not�A�’veC�have�would've��A�wouldC�would�A�'ve�wouldn't��A�wouldC�would�A�n'tC�not�wouldn't've��A�wouldC�would�A�n'tC�not�A�'veC�have�wouldnt��A�wouldC�would�A�ntC�not�wouldntve��A�wouldC�would�A�ntC�not�A�veC�have�wouldn’t��A�wouldC�would�A�n’tC�not�wouldn’t’ve��A�wouldC�would�A�n’tC�not�A�’veC�have�wouldve��A�wouldC�would�A�ve�would’ve��A�wouldC�would�A�’ve�x.��A�x.�xD��A�xD�xDD��A�xDD�y'all��A�y'C�you�A�all�y.��A�y.�yall��A�yC�you�A�all�you'd��A�youC�you�A�'dC�'d�you'd've��A�youC�you�A�'dC�would�A�'veC�have�you'll��A�youC�you�A�'llC�will�you'll've��A�youC�you�A�'llC�will�A�'veC�have�you're��A�youC�you�A�'reC�are�you've��A�youC�you�A�'veC�have�youd��A�youC�you�A�dC�'d�youdve��A�youC�you�A�dC�would�A�veC�have�youll��A�youC�you�A�llC�will�youllve��A�youC�you�A�llC�will�A�veC�have�youre��A�youC�you�A�reC�are�youve��A�youC�you�A�veC�have�you’d��A�youC�you�A�’dC�'d�you’d’ve��A�youC�you�A�’dC�would�A�’veC�have�you’ll��A�youC�you�A�’llC�will�you’ll’ve��A�youC�you�A�’llC�will�A�’veC�have�you’re��A�youC�you�A�’reC�are�you’ve��A�youC�you�A�’veC�have�y’all��A�y’C�you�A�all�z.��A�z.� ��A� C� �¯\(ツ)/¯��A�¯\(ツ)/¯�°C.��A�°�A�C�A�.�°F.��A�°�A�F�A�.�°K.��A�°�A�K�A�.�°c.��A�°�A�c�A�.�°f.��A�°�A�f�A�.�°k.��A�°�A�k�A�.�ä.��A�ä.�ö.��A�ö.�ü.��A�ü.�ಠ_ಠ��A�ಠ_ಠ�ಠ︵ಠ��A�ಠ︵ಠ�—��A�—�‘S��A�‘SC�'s�‘s��A�‘sC�'s�’��A�’�’Cause��A�’CauseC�because�’Cos��A�’CosC�because�’Coz��A�’CozC�because�’Cuz��A�’CuzC�because�’S��A�’SC�'s�’bout��A�’boutC�about�’cause��A�’causeC�because�’cos��A�’cosC�because�’coz��A�’cozC�because�’cuz��A�’cuzC�because�’d��A�’d�’em��A�’emC�them�’ll��A�’llC�will�’nuff��A�’nuffC�enough�’re��A�’reC�are�’s��A�’sC�'s�’’��A�’’�faster_heuristics�
vocab/key2row ADDED
@@ -0,0 +1 @@
 
 
1
+
vocab/lookups.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:76be8b528d0075f7aae98d6fa57a6d3c83ae480a8469e668d7b0af968995ac71
3
+ size 1
vocab/strings.json ADDED
@@ -0,0 +1,2909 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ "\t",
3
+ "\n",
4
+ " ",
5
+ " ",
6
+ "\"",
7
+ "%",
8
+ "&",
9
+ "'",
10
+ "''",
11
+ "'-(",
12
+ "'-)",
13
+ "'Cause",
14
+ "'Cos",
15
+ "'Coz",
16
+ "'Cuz",
17
+ "'S",
18
+ "'X",
19
+ "'Xxx",
20
+ "'Xxxxx",
21
+ "'am",
22
+ "'bout",
23
+ "'cause",
24
+ "'cos",
25
+ "'coz",
26
+ "'cuz",
27
+ "'d",
28
+ "'em",
29
+ "'ll",
30
+ "'m",
31
+ "'nuff",
32
+ "'re",
33
+ "'s",
34
+ "'ve",
35
+ "'x",
36
+ "'xx",
37
+ "'xxx",
38
+ "'xxxx",
39
+ "'y",
40
+ "(",
41
+ "(((",
42
+ "(*>",
43
+ "(*_*)",
44
+ "(-8",
45
+ "(-:",
46
+ "(-;",
47
+ "(-_-)",
48
+ "(-d",
49
+ "(._.)",
50
+ "(:",
51
+ "(;",
52
+ "(=",
53
+ "(>_<)",
54
+ "(PC",
55
+ "(^_^)",
56
+ "(o:",
57
+ "(pc",
58
+ "(x:",
59
+ "(x_x)",
60
+ "(\u00ac_\u00ac)",
61
+ "(\u0ca0_\u0ca0)",
62
+ "(\u256f\u00b0\u25a1\u00b0\uff09\u256f\ufe35\u253b\u2501\u253b",
63
+ ")",
64
+ ")))",
65
+ ")-:",
66
+ ")/\u00af",
67
+ "):",
68
+ "*",
69
+ "+",
70
+ ",",
71
+ "-",
72
+ "-((",
73
+ "-))",
74
+ "-/",
75
+ "-0",
76
+ "-3",
77
+ "-45",
78
+ "-8",
79
+ "-D",
80
+ "-O",
81
+ "-P",
82
+ "-X",
83
+ "-_-",
84
+ "-__-",
85
+ "-d",
86
+ "-o",
87
+ "-p",
88
+ "-x",
89
+ "-|",
90
+ ".",
91
+ ".11",
92
+ ".C.",
93
+ ".D.",
94
+ ".E.",
95
+ ".G.",
96
+ ".H.",
97
+ ".I.",
98
+ ".J.",
99
+ ".M.",
100
+ ".Y.",
101
+ "._.",
102
+ ".e.",
103
+ ".g.",
104
+ ".i.",
105
+ ".m.",
106
+ ".s.",
107
+ "/",
108
+ "/12",
109
+ "/3",
110
+ "/d",
111
+ "/dd",
112
+ "/or",
113
+ "0",
114
+ "0.0",
115
+ "0.o",
116
+ "000",
117
+ "02",
118
+ "05w",
119
+ "080",
120
+ "0HZ",
121
+ "0Hz",
122
+ "0MP",
123
+ "0_0",
124
+ "0_o",
125
+ "0hz",
126
+ "0mp",
127
+ "1",
128
+ "1,6",
129
+ "1.080",
130
+ "1.2",
131
+ "1.366",
132
+ "1.5",
133
+ "1.920",
134
+ "10",
135
+ "100",
136
+ "100/120Hz",
137
+ "100/120hz",
138
+ "1000",
139
+ "100HZ",
140
+ "100Hz",
141
+ "100hz",
142
+ "102",
143
+ "107",
144
+ "108",
145
+ "1080",
146
+ "1080p",
147
+ "109",
148
+ "10W",
149
+ "10a.m",
150
+ "10a.m.",
151
+ "10p.m",
152
+ "10p.m.",
153
+ "10w",
154
+ "11",
155
+ "11a.m",
156
+ "11a.m.",
157
+ "11n",
158
+ "11p.m",
159
+ "11p.m.",
160
+ "12",
161
+ "120",
162
+ "120Hz",
163
+ "120Hz100",
164
+ "120hz",
165
+ "120hz100",
166
+ "123",
167
+ "126",
168
+ "127",
169
+ "1280",
170
+ "12a.m",
171
+ "12a.m.",
172
+ "12p.m",
173
+ "12p.m.",
174
+ "13",
175
+ "1300",
176
+ "1366",
177
+ "1366x768",
178
+ "138",
179
+ "139",
180
+ "13S",
181
+ "13s",
182
+ "140",
183
+ "144",
184
+ "144Hz",
185
+ "144hz",
186
+ "147",
187
+ "1500",
188
+ "15W",
189
+ "15w",
190
+ "16",
191
+ "160",
192
+ "1600",
193
+ "164",
194
+ "165",
195
+ "16W",
196
+ "16w",
197
+ "17,9",
198
+ "1700",
199
+ "178",
200
+ "179",
201
+ "189",
202
+ "190",
203
+ "1920",
204
+ "1920x1080",
205
+ "195",
206
+ "1a.m",
207
+ "1a.m.",
208
+ "1ch",
209
+ "1p.m",
210
+ "1p.m.",
211
+ "1x",
212
+ "2",
213
+ "2.0",
214
+ "2.0.2CH",
215
+ "2.0.2Ch",
216
+ "2.0.2ch",
217
+ "2.1",
218
+ "2.1.2",
219
+ "2.160",
220
+ "2.2",
221
+ "2.2.2",
222
+ "2.2CH",
223
+ "2.2ch",
224
+ "200",
225
+ "2000",
226
+ "200Hz",
227
+ "200PPI",
228
+ "200hz",
229
+ "200ppi",
230
+ "20W",
231
+ "20p",
232
+ "20w",
233
+ "21,6",
234
+ "2100",
235
+ "215",
236
+ "216",
237
+ "2200",
238
+ "230",
239
+ "240Hz",
240
+ "240hz",
241
+ "249",
242
+ "24x",
243
+ "253",
244
+ "254",
245
+ "256",
246
+ "25W",
247
+ "25w",
248
+ "265",
249
+ "2700",
250
+ "280",
251
+ "2800",
252
+ "289",
253
+ "29,5",
254
+ "2CH",
255
+ "2Ch",
256
+ "2a.m",
257
+ "2a.m.",
258
+ "2ch",
259
+ "2p.m",
260
+ "2p.m.",
261
+ "2x",
262
+ "2x10W",
263
+ "2x10w",
264
+ "2x15W",
265
+ "2x15w",
266
+ "2x2",
267
+ "2x6W",
268
+ "2x6w",
269
+ "2x7W",
270
+ "2x7w",
271
+ "2x8W",
272
+ "2x8w",
273
+ "3",
274
+ "3,5",
275
+ "3.0",
276
+ "3.1.2",
277
+ "3.5",
278
+ "3.840",
279
+ "30\"-100",
280
+ "300",
281
+ "3000",
282
+ "3100",
283
+ "32",
284
+ "320",
285
+ "32PHS6808/12",
286
+ "32phs6808/12",
287
+ "33",
288
+ "3300",
289
+ "333",
290
+ "3400",
291
+ "3500",
292
+ "366",
293
+ "3800",
294
+ "3840x2160",
295
+ "3a.m",
296
+ "3a.m.",
297
+ "3p.m",
298
+ "3p.m.",
299
+ "3x",
300
+ "4",
301
+ "4.0",
302
+ "4.000",
303
+ "4.2",
304
+ "4.2.2CH",
305
+ "4.2.2ch",
306
+ "4.6",
307
+ "40",
308
+ "400",
309
+ "4000",
310
+ "40W",
311
+ "40w",
312
+ "42",
313
+ "4200",
314
+ "43",
315
+ "4300",
316
+ "4320",
317
+ "43PFS6805/12",
318
+ "43PFS6808/12",
319
+ "43PUS7009/12",
320
+ "43PUS7506/12",
321
+ "43PUS7607/12",
322
+ "43PUS7608/12",
323
+ "43PUS7855/12",
324
+ "43PUS7906/12",
325
+ "43PUS7956/12",
326
+ "43PUS8007/12",
327
+ "43PUS8079/12",
328
+ "43PUS8507/12",
329
+ "43pfs6805/12",
330
+ "43pfs6808/12",
331
+ "43pus7009/12",
332
+ "43pus7506/12",
333
+ "43pus7607/12",
334
+ "43pus7608/12",
335
+ "43pus7855/12",
336
+ "43pus7906/12",
337
+ "43pus7956/12",
338
+ "43pus8007/12",
339
+ "43pus8079/12",
340
+ "43pus8507/12",
341
+ "4500",
342
+ "48",
343
+ "4800",
344
+ "4CH",
345
+ "4Hz",
346
+ "4K/2",
347
+ "4a.m",
348
+ "4a.m.",
349
+ "4ch",
350
+ "4hz",
351
+ "4k",
352
+ "4k/2",
353
+ "4p.m",
354
+ "4p.m.",
355
+ "4x",
356
+ "5",
357
+ "5.0",
358
+ "5.000",
359
+ "5.1ch",
360
+ "5.2",
361
+ "50",
362
+ "500",
363
+ "5000",
364
+ "506",
365
+ "50PUS7409/12",
366
+ "50PUS7608/12",
367
+ "50PUS8079/12",
368
+ "50PUS8118/12",
369
+ "50PUS8507/12",
370
+ "50PUS8518/12",
371
+ "50W",
372
+ "50pus7409/12",
373
+ "50pus7608/12",
374
+ "50pus8079/12",
375
+ "50pus8118/12",
376
+ "50pus8507/12",
377
+ "50pus8518/12",
378
+ "50w",
379
+ "513S",
380
+ "513s",
381
+ "54.7x15.8x34.6",
382
+ "55",
383
+ "55OLED707/12",
384
+ "55OLED718/12",
385
+ "55OLED935/12",
386
+ "55PUS7009/12",
387
+ "55PUS7409/12",
388
+ "55PUS7607/12",
389
+ "55PUS7608/12",
390
+ "55PUS8007/12",
391
+ "55PUS8079/12",
392
+ "55PUS8518/12",
393
+ "55PUS8818/12",
394
+ "55oled707/12",
395
+ "55oled718/12",
396
+ "55oled935/12",
397
+ "55pus7009/12",
398
+ "55pus7409/12",
399
+ "55pus7607/12",
400
+ "55pus7608/12",
401
+ "55pus8007/12",
402
+ "55pus8079/12",
403
+ "55pus8518/12",
404
+ "55pus8818/12",
405
+ "58",
406
+ "58PUS8507/12",
407
+ "58pus8507/12",
408
+ "5V",
409
+ "5W",
410
+ "5a.m",
411
+ "5a.m.",
412
+ "5p.m",
413
+ "5p.m.",
414
+ "5v",
415
+ "5w",
416
+ "6",
417
+ "6.2.2CH",
418
+ "6.2.2ch",
419
+ "6.2.4CH",
420
+ "6.2.4ch",
421
+ "60",
422
+ "600",
423
+ "632",
424
+ "65",
425
+ "65OLED707/12",
426
+ "65OLED907/12",
427
+ "65PUS7008/12",
428
+ "65PUS7009/12",
429
+ "65PUS7409/12",
430
+ "65PUS7506/12",
431
+ "65PUS7608/12",
432
+ "65PUS8118/12",
433
+ "65PUS8505/12",
434
+ "65PUS8818/12",
435
+ "65oled707/12",
436
+ "65oled907/12",
437
+ "65pus7008/12",
438
+ "65pus7009/12",
439
+ "65pus7409/12",
440
+ "65pus7506/12",
441
+ "65pus7608/12",
442
+ "65pus8118/12",
443
+ "65pus8505/12",
444
+ "65pus8818/12",
445
+ "680",
446
+ "68p",
447
+ "6a.m",
448
+ "6a.m.",
449
+ "6p.m",
450
+ "6p.m.",
451
+ "7",
452
+ "7,9",
453
+ "7.1",
454
+ "70",
455
+ "700",
456
+ "70PUS8118/12",
457
+ "70W",
458
+ "70pus8118/12",
459
+ "70w",
460
+ "720",
461
+ "720p",
462
+ "75",
463
+ "750MHz",
464
+ "750mhz",
465
+ "75PUS7009/12",
466
+ "75PUS8079/12",
467
+ "75PUS8506/12",
468
+ "75PUS8807/12",
469
+ "75pus7009/12",
470
+ "75pus8079/12",
471
+ "75pus8506/12",
472
+ "75pus8807/12",
473
+ "768",
474
+ "7680",
475
+ "768p",
476
+ "77",
477
+ "7a.m",
478
+ "7a.m.",
479
+ "7p.m",
480
+ "7p.m.",
481
+ "8",
482
+ "8)",
483
+ "8-",
484
+ "8-)",
485
+ "8-D",
486
+ "8-d",
487
+ "80",
488
+ "800",
489
+ "802.11",
490
+ "80p",
491
+ "82",
492
+ "840",
493
+ "85",
494
+ "8D",
495
+ "8a.m",
496
+ "8a.m.",
497
+ "8d",
498
+ "8p.m",
499
+ "8p.m.",
500
+ "9",
501
+ "9,5",
502
+ "920",
503
+ "9256",
504
+ "9632",
505
+ "98",
506
+ "99",
507
+ "99cm)FullHD",
508
+ "99cm)fullhd",
509
+ "9a.m",
510
+ "9a.m.",
511
+ "9p.m",
512
+ "9p.m.",
513
+ ":",
514
+ ":'(",
515
+ ":')",
516
+ ":'-(",
517
+ ":'-)",
518
+ ":(",
519
+ ":((",
520
+ ":(((",
521
+ ":()",
522
+ ":)",
523
+ ":))",
524
+ ":)))",
525
+ ":*",
526
+ ":-(",
527
+ ":-((",
528
+ ":-(((",
529
+ ":-)",
530
+ ":-))",
531
+ ":-)))",
532
+ ":-*",
533
+ ":-/",
534
+ ":-0",
535
+ ":-3",
536
+ ":->",
537
+ ":-D",
538
+ ":-O",
539
+ ":-P",
540
+ ":-X",
541
+ ":-]",
542
+ ":-d",
543
+ ":-o",
544
+ ":-p",
545
+ ":-x",
546
+ ":-|",
547
+ ":-}",
548
+ ":/",
549
+ ":0",
550
+ ":1",
551
+ ":3",
552
+ ":60",
553
+ ":>",
554
+ ":D",
555
+ ":O",
556
+ ":P",
557
+ ":X",
558
+ ":]",
559
+ ":d",
560
+ ":o",
561
+ ":o)",
562
+ ":p",
563
+ ":x",
564
+ ":x)",
565
+ ":|",
566
+ ":}",
567
+ ":\u2019(",
568
+ ":\u2019)",
569
+ ":\u2019-(",
570
+ ":\u2019-)",
571
+ ";",
572
+ ";)",
573
+ ";-)",
574
+ ";-D",
575
+ ";-X",
576
+ ";-d",
577
+ ";D",
578
+ ";X",
579
+ ";_;",
580
+ ";d",
581
+ "<",
582
+ "<.<",
583
+ "</3",
584
+ "</d",
585
+ "<3",
586
+ "<33",
587
+ "<333",
588
+ "<d",
589
+ "<dd",
590
+ "<ddd",
591
+ "<space>",
592
+ "<xxxx>",
593
+ "=",
594
+ "=(",
595
+ "=)",
596
+ "=/",
597
+ "=3",
598
+ "=D",
599
+ "=X",
600
+ "=[",
601
+ "=]",
602
+ "=d",
603
+ "=|",
604
+ ">",
605
+ ">.<",
606
+ ">.>",
607
+ ">:(",
608
+ ">:o",
609
+ ">:x",
610
+ "><(((*>",
611
+ "@",
612
+ "@1.3GHz",
613
+ "@1.3ghz",
614
+ "@2GHz",
615
+ "@2ghz",
616
+ "@_@",
617
+ "@d.dXXx",
618
+ "@d.dxxx",
619
+ "@dXXx",
620
+ "@dxxx",
621
+ "A",
622
+ "A+",
623
+ "A.I.",
624
+ "A53",
625
+ "A7",
626
+ "AHD",
627
+ "AI",
628
+ "AIPQ",
629
+ "AIPQ2.0",
630
+ "AIRPLAY",
631
+ "ALD",
632
+ "ALLM",
633
+ "ANDROID",
634
+ "ANSI",
635
+ "APPLE",
636
+ "ARM",
637
+ "ART",
638
+ "AST",
639
+ "ATE",
640
+ "AUDIO_FEATURE",
641
+ "AV",
642
+ "Accelerator",
643
+ "Adm",
644
+ "Adm.",
645
+ "Ai",
646
+ "AiPQ",
647
+ "AirPlay",
648
+ "AirSlim",
649
+ "Airplay",
650
+ "Ak",
651
+ "Ak.",
652
+ "Ala",
653
+ "Ala.",
654
+ "Alabama",
655
+ "Alaska",
656
+ "Alexa",
657
+ "Amazon",
658
+ "Ambient",
659
+ "Ambilight",
660
+ "Ambilight+hue",
661
+ "Amlogic",
662
+ "Android",
663
+ "AndroidTV",
664
+ "Antenna",
665
+ "Anyview",
666
+ "App",
667
+ "Apple",
668
+ "Apr",
669
+ "Apr.",
670
+ "April",
671
+ "Are",
672
+ "Ariz",
673
+ "Ariz.",
674
+ "Arizona",
675
+ "Ark",
676
+ "Ark.",
677
+ "Arkansas",
678
+ "Array",
679
+ "Assistant",
680
+ "Atmos",
681
+ "Audio",
682
+ "Aug",
683
+ "Aug.",
684
+ "August",
685
+ "Auto",
686
+ "AutoMagic",
687
+ "B",
688
+ "BLUETOOTH",
689
+ "BRAVIA",
690
+ "BUILT",
691
+ "Bezel",
692
+ "Bezeless",
693
+ "Black",
694
+ "Bluetooth",
695
+ "Blutooth",
696
+ "Booster",
697
+ "Bowers&Wilkins",
698
+ "Bracket",
699
+ "Bravia",
700
+ "Braviacam",
701
+ "Bright",
702
+ "Bros",
703
+ "Bros.",
704
+ "Brushed",
705
+ "Built",
706
+ "Bulit",
707
+ "C",
708
+ "C'm",
709
+ "C++",
710
+ "C.",
711
+ "C75",
712
+ "CAM",
713
+ "CH",
714
+ "CHROMECAST",
715
+ "CI",
716
+ "CI+",
717
+ "CMP",
718
+ "COLOR",
719
+ "CONNECTION",
720
+ "CORE",
721
+ "CPU",
722
+ "CVBS",
723
+ "CVT",
724
+ "CVTE",
725
+ "CVTE713S",
726
+ "Ca",
727
+ "Cable",
728
+ "Cable/",
729
+ "Calif",
730
+ "Calif.",
731
+ "California",
732
+ "Can",
733
+ "Carbon",
734
+ "Card",
735
+ "Cast",
736
+ "Cause",
737
+ "Central",
738
+ "Channel",
739
+ "Clarity",
740
+ "Clariy",
741
+ "Clear",
742
+ "ClearAudio+",
743
+ "Co",
744
+ "Co.",
745
+ "Coaxial",
746
+ "Cognitive",
747
+ "Colo",
748
+ "Colo.",
749
+ "Color",
750
+ "Colorado",
751
+ "Colour",
752
+ "Comfort",
753
+ "Common",
754
+ "Component",
755
+ "Composite",
756
+ "Computer",
757
+ "Conn",
758
+ "Conn.",
759
+ "Connect",
760
+ "ConnectShare",
761
+ "Connecticut",
762
+ "Connections",
763
+ "Connector",
764
+ "Contrast",
765
+ "Control",
766
+ "Core",
767
+ "Corp",
768
+ "Corp.",
769
+ "Cortex",
770
+ "Cos",
771
+ "Could",
772
+ "Coz",
773
+ "Crystal",
774
+ "Cuz",
775
+ "C\u2019m",
776
+ "D",
777
+ "D.",
778
+ "D.C.",
779
+ "DAA",
780
+ "DC",
781
+ "DCI",
782
+ "DDR3",
783
+ "DLG",
784
+ "DLNA",
785
+ "DMI",
786
+ "DR+",
787
+ "DR3",
788
+ "DRx",
789
+ "DTS",
790
+ "DUAL",
791
+ "DVB",
792
+ "DVB-",
793
+ "Dare",
794
+ "Daylight",
795
+ "Dec",
796
+ "Dec.",
797
+ "December",
798
+ "Deep",
799
+ "Del",
800
+ "Del.",
801
+ "Delaware",
802
+ "Depth",
803
+ "Design",
804
+ "Did",
805
+ "Digital",
806
+ "Diming",
807
+ "Dimming",
808
+ "Dinamic",
809
+ "Disney+",
810
+ "Do",
811
+ "Does",
812
+ "Doin",
813
+ "Doin'",
814
+ "Doin\u2019",
815
+ "Dolby",
816
+ "Dot",
817
+ "Dots",
818
+ "Dr",
819
+ "Dr.",
820
+ "Dual",
821
+ "Dymamic",
822
+ "Dynamic",
823
+ "E",
824
+ "E.G.",
825
+ "E.g",
826
+ "E.g.",
827
+ "ED+",
828
+ "EG4",
829
+ "ESH",
830
+ "ESS",
831
+ "EVC",
832
+ "Earphone",
833
+ "Elite",
834
+ "Engine",
835
+ "Enhanced",
836
+ "Enhancement",
837
+ "Enhancer",
838
+ "Ethernet",
839
+ "Eye",
840
+ "F",
841
+ "F.",
842
+ "FALD",
843
+ "FI",
844
+ "FRAMELESS",
845
+ "FULLHD",
846
+ "Feb",
847
+ "Feb.",
848
+ "February",
849
+ "Fi",
850
+ "Fla",
851
+ "Fla.",
852
+ "Florida",
853
+ "Force",
854
+ "Format",
855
+ "Frame",
856
+ "Frameless",
857
+ "Free",
858
+ "FreeSync",
859
+ "Freestyle",
860
+ "Front",
861
+ "Full",
862
+ "FullHD",
863
+ "Fusion",
864
+ "G",
865
+ "GB",
866
+ "GHz",
867
+ "GPU",
868
+ "Ga",
869
+ "Ga.",
870
+ "Game",
871
+ "Gaming",
872
+ "Gamma",
873
+ "Gamut",
874
+ "Gen",
875
+ "Gen.",
876
+ "Gen2",
877
+ "Georgia",
878
+ "Goin",
879
+ "Goin'",
880
+ "Goin\u2019",
881
+ "Gon",
882
+ "Google",
883
+ "GoogleTV",
884
+ "Got",
885
+ "Gov",
886
+ "Gov.",
887
+ "Gray",
888
+ "H",
889
+ "H.265",
890
+ "HD",
891
+ "HDD",
892
+ "HDMI",
893
+ "HDR",
894
+ "HDR+",
895
+ "HDR10",
896
+ "HDReady",
897
+ "HDRx",
898
+ "HEVC",
899
+ "HLG",
900
+ "HUB",
901
+ "Had",
902
+ "Hands",
903
+ "Hardware",
904
+ "Has",
905
+ "Have",
906
+ "Havin",
907
+ "Havin'",
908
+ "Havin\u2019",
909
+ "He",
910
+ "He's",
911
+ "Headphone",
912
+ "He\u2019s",
913
+ "Hi",
914
+ "High",
915
+ "HomeKit",
916
+ "Hospitality",
917
+ "Hotel",
918
+ "How",
919
+ "How's",
920
+ "How\u2019s",
921
+ "Hybrid",
922
+ "Hz",
923
+ "I",
924
+ "I.E.",
925
+ "I.e",
926
+ "I.e.",
927
+ "IEC75",
928
+ "IFI",
929
+ "ILT",
930
+ "IMAX",
931
+ "IN",
932
+ "INCH",
933
+ "ION",
934
+ "IPQ",
935
+ "IPS",
936
+ "IQ",
937
+ "IUM",
938
+ "Ia",
939
+ "Ia.",
940
+ "Id",
941
+ "Id.",
942
+ "Idaho",
943
+ "Ill",
944
+ "Ill.",
945
+ "Illinois",
946
+ "In",
947
+ "Inc",
948
+ "Inc.",
949
+ "Incredible",
950
+ "Ind",
951
+ "Ind.",
952
+ "Index",
953
+ "Indiana",
954
+ "Infinity",
955
+ "Input",
956
+ "Interface",
957
+ "Iowa",
958
+ "Is",
959
+ "It",
960
+ "It's",
961
+ "It\u2019s",
962
+ "J",
963
+ "J45",
964
+ "Jan",
965
+ "Jan.",
966
+ "January",
967
+ "Jr",
968
+ "Jr.",
969
+ "Jul",
970
+ "Jul.",
971
+ "July",
972
+ "Jun",
973
+ "Jun.",
974
+ "June",
975
+ "K",
976
+ "K.",
977
+ "K/2",
978
+ "KYO",
979
+ "Kan",
980
+ "Kan.",
981
+ "Kans",
982
+ "Kans.",
983
+ "Kansas",
984
+ "Kentucky",
985
+ "Kit",
986
+ "Ky",
987
+ "Ky.",
988
+ "L",
989
+ "LAN",
990
+ "LAY",
991
+ "LED",
992
+ "LHD",
993
+ "LIX",
994
+ "LLM",
995
+ "LNA",
996
+ "LOR",
997
+ "LP73",
998
+ "La",
999
+ "La.",
1000
+ "Laser",
1001
+ "LaserSlim",
1002
+ "Learning",
1003
+ "Let",
1004
+ "Let's",
1005
+ "Let\u2019s",
1006
+ "Light",
1007
+ "Lite",
1008
+ "Local",
1009
+ "Log",
1010
+ "Louisiana",
1011
+ "Lovin",
1012
+ "Lovin'",
1013
+ "Lovin\u2019",
1014
+ "Ltd",
1015
+ "Ltd.",
1016
+ "Lumens",
1017
+ "Luminance",
1018
+ "M",
1019
+ "MAX",
1020
+ "MAXHUB",
1021
+ "MHz",
1022
+ "MOUNTING_FEATURE",
1023
+ "MPEG4",
1024
+ "MS12",
1025
+ "Ma'am",
1026
+ "Mali-450MP",
1027
+ "Mali400MPx2",
1028
+ "Mar",
1029
+ "Mar.",
1030
+ "March",
1031
+ "Mass",
1032
+ "Mass.",
1033
+ "Massachusetts",
1034
+ "Master",
1035
+ "Matrix",
1036
+ "May",
1037
+ "Ma\u2019am",
1038
+ "Md",
1039
+ "Md.",
1040
+ "Medium",
1041
+ "Mega",
1042
+ "Memory",
1043
+ "Messrs",
1044
+ "Messrs.",
1045
+ "Metallic",
1046
+ "Mich",
1047
+ "Mich.",
1048
+ "Michigan",
1049
+ "Micro",
1050
+ "Might",
1051
+ "Mini",
1052
+ "MiniLED",
1053
+ "Minimalistic",
1054
+ "Minn",
1055
+ "Minn.",
1056
+ "Minnesota",
1057
+ "Miss",
1058
+ "Miss.",
1059
+ "Mississippi",
1060
+ "Mo",
1061
+ "Mo.",
1062
+ "Mobile",
1063
+ "Mode",
1064
+ "Mont",
1065
+ "Mont.",
1066
+ "Motion",
1067
+ "Motionflow",
1068
+ "Mount",
1069
+ "Mr",
1070
+ "Mr.",
1071
+ "Mrs",
1072
+ "Mrs.",
1073
+ "Ms",
1074
+ "Ms.",
1075
+ "Mt",
1076
+ "Mt.",
1077
+ "Multi",
1078
+ "Multiroom",
1079
+ "Multy",
1080
+ "Music",
1081
+ "Must",
1082
+ "N",
1083
+ "N.C.",
1084
+ "N.D.",
1085
+ "N.H.",
1086
+ "N.J.",
1087
+ "N.M.",
1088
+ "N.Y.",
1089
+ "NCH",
1090
+ "NEL",
1091
+ "NEO",
1092
+ "NETFLIX",
1093
+ "NOS",
1094
+ "NQ4",
1095
+ "NSI",
1096
+ "Nano",
1097
+ "Native",
1098
+ "Natural",
1099
+ "Neb",
1100
+ "Neb.",
1101
+ "Nebr",
1102
+ "Nebr.",
1103
+ "Nebraska",
1104
+ "Need",
1105
+ "Neo",
1106
+ "Netfl",
1107
+ "Netflix",
1108
+ "Neural",
1109
+ "Nev",
1110
+ "Nev.",
1111
+ "Nevada",
1112
+ "New",
1113
+ "New Hampshire",
1114
+ "New Jersey",
1115
+ "New Mexico",
1116
+ "New York",
1117
+ "Noise",
1118
+ "North Carolina",
1119
+ "North Dakota",
1120
+ "Not",
1121
+ "Nothin",
1122
+ "Nothin'",
1123
+ "Nothin\u2019",
1124
+ "Nougat",
1125
+ "Nov",
1126
+ "Nov.",
1127
+ "November",
1128
+ "Nuthin",
1129
+ "Nuthin'",
1130
+ "Nuthin\u2019",
1131
+ "O",
1132
+ "O'clock",
1133
+ "O.O",
1134
+ "O.o",
1135
+ "OID",
1136
+ "OLED",
1137
+ "OLED+",
1138
+ "ONKYO",
1139
+ "ORE",
1140
+ "OS",
1141
+ "OTH",
1142
+ "OTS",
1143
+ "O_O",
1144
+ "O_o",
1145
+ "Oct",
1146
+ "Oct.",
1147
+ "October",
1148
+ "Okla",
1149
+ "Okla.",
1150
+ "Oklahoma",
1151
+ "Ol",
1152
+ "Ol'",
1153
+ "Ol\u2019",
1154
+ "One",
1155
+ "Onkyo",
1156
+ "Operating",
1157
+ "Optic",
1158
+ "Optical",
1159
+ "Ore",
1160
+ "Ore.",
1161
+ "Oregon",
1162
+ "Ought",
1163
+ "Out",
1164
+ "Output",
1165
+ "Output(Coaxial",
1166
+ "O\u2019clock",
1167
+ "P",
1168
+ "P3",
1169
+ "P5",
1170
+ "P73",
1171
+ "PANEL",
1172
+ "PC",
1173
+ "PLE",
1174
+ "PN",
1175
+ "PPI",
1176
+ "PQI",
1177
+ "PREMIUM",
1178
+ "PRO",
1179
+ "PROCESSOR",
1180
+ "PVR",
1181
+ "Pa",
1182
+ "Pa.",
1183
+ "Panel",
1184
+ "Passive",
1185
+ "Pb",
1186
+ "Pennsylvania",
1187
+ "Penta",
1188
+ "Perfect",
1189
+ "Performance",
1190
+ "Ph",
1191
+ "Ph.D.",
1192
+ "Phase",
1193
+ "Philips",
1194
+ "Picture",
1195
+ "Pixel",
1196
+ "Plus",
1197
+ "Power",
1198
+ "Powerful",
1199
+ "Pr",
1200
+ "Precise",
1201
+ "Premium",
1202
+ "Pro",
1203
+ "Processor",
1204
+ "Prof",
1205
+ "Prof.",
1206
+ "Projector",
1207
+ "Protection",
1208
+ "Protsessor",
1209
+ "Pur",
1210
+ "Px2",
1211
+ "Q",
1212
+ "QE55Q80CATXXH",
1213
+ "QE55QN90BATXXH",
1214
+ "QE55QN90CATXXH",
1215
+ "QE55S90CATXXH",
1216
+ "QE55S95BATXXH",
1217
+ "QE65Q80AATXXH",
1218
+ "QE65Q80BATXXH",
1219
+ "QE65QN900AATXXH",
1220
+ "QE65QN900CTXXH",
1221
+ "QE65QN90CATXXH",
1222
+ "QE65S90CATXXH",
1223
+ "QE85Q80CATXXH",
1224
+ "QE85QN900CTXXH",
1225
+ "QE98Q80CATXXH",
1226
+ "QLED",
1227
+ "QUAD",
1228
+ "Quad",
1229
+ "Quantum",
1230
+ "R",
1231
+ "R10",
1232
+ "R45",
1233
+ "RAM",
1234
+ "RATE",
1235
+ "REFRESH",
1236
+ "REFRESH_RATE",
1237
+ "RESOLUTION",
1238
+ "RF",
1239
+ "RJ-45",
1240
+ "RJ45",
1241
+ "RMS",
1242
+ "ROM",
1243
+ "ROOT",
1244
+ "Range",
1245
+ "Rate",
1246
+ "Razor",
1247
+ "Ready",
1248
+ "Reality",
1249
+ "Recording",
1250
+ "Reduction",
1251
+ "Refresh",
1252
+ "Remaster",
1253
+ "Remastering",
1254
+ "Remote",
1255
+ "Rep",
1256
+ "Rep.",
1257
+ "Resolution",
1258
+ "Return",
1259
+ "Rev",
1260
+ "Rev.",
1261
+ "Ring",
1262
+ "S",
1263
+ "S.C.",
1264
+ "S12",
1265
+ "S2",
1266
+ "S2(HEVC",
1267
+ "S506",
1268
+ "S905w",
1269
+ "SCART",
1270
+ "SK",
1271
+ "SMART",
1272
+ "SOFTWARE_FEATURE",
1273
+ "SOR",
1274
+ "SR",
1275
+ "ST",
1276
+ "SUB",
1277
+ "Satelite",
1278
+ "Satellite",
1279
+ "Scaling",
1280
+ "Scart",
1281
+ "Screen",
1282
+ "Sen",
1283
+ "Sen.",
1284
+ "Sep",
1285
+ "Sep.",
1286
+ "Sept",
1287
+ "Sept.",
1288
+ "September",
1289
+ "Sha",
1290
+ "She",
1291
+ "She's",
1292
+ "She\u2019s",
1293
+ "Should",
1294
+ "Silver",
1295
+ "Simfonija",
1296
+ "Size",
1297
+ "Sk",
1298
+ "Slim",
1299
+ "Slot",
1300
+ "Smart",
1301
+ "Smooth",
1302
+ "Smoothing",
1303
+ "Soft",
1304
+ "Somethin",
1305
+ "Somethin'",
1306
+ "Somethin\u2019",
1307
+ "Sound",
1308
+ "South Carolina",
1309
+ "Speakers",
1310
+ "St",
1311
+ "St.",
1312
+ "Stand",
1313
+ "Sticks",
1314
+ "Superior",
1315
+ "Support",
1316
+ "Supreme",
1317
+ "Surround",
1318
+ "Symphony",
1319
+ "T",
1320
+ "T2",
1321
+ "TAN",
1322
+ "TITAN",
1323
+ "TRA",
1324
+ "TRILUMINOS",
1325
+ "TV",
1326
+ "TX3",
1327
+ "Technology",
1328
+ "Tenn",
1329
+ "Tenn.",
1330
+ "Tennessee",
1331
+ "Terrestrial",
1332
+ "That",
1333
+ "That's",
1334
+ "That\u2019s",
1335
+ "The",
1336
+ "There",
1337
+ "There's",
1338
+ "There\u2019s",
1339
+ "These",
1340
+ "They",
1341
+ "This",
1342
+ "This's",
1343
+ "This\u2019s",
1344
+ "Those",
1345
+ "Titan",
1346
+ "Total",
1347
+ "Triluminos",
1348
+ "Triple",
1349
+ "Tuner",
1350
+ "Turbo+",
1351
+ "U",
1352
+ "U4",
1353
+ "U4.0",
1354
+ "U5",
1355
+ "U6",
1356
+ "U7",
1357
+ "UAD",
1358
+ "UAL",
1359
+ "UE32T4002AKXXH",
1360
+ "UE65AU7172UXXH",
1361
+ "UE70AU7172UXXH",
1362
+ "UHD",
1363
+ "ULED",
1364
+ "ULTRA",
1365
+ "ULTRAHD",
1366
+ "URE",
1367
+ "USB",
1368
+ "USB2.0",
1369
+ "Ultimate",
1370
+ "Ultra",
1371
+ "UltraHD",
1372
+ "Up",
1373
+ "Upscaling",
1374
+ "Use",
1375
+ "V",
1376
+ "V.V",
1377
+ "VB-",
1378
+ "VBS",
1379
+ "VGA",
1380
+ "VGA(PC",
1381
+ "VIA",
1382
+ "VIDAA",
1383
+ "VIDEO_FEATURE",
1384
+ "VRR",
1385
+ "VTE",
1386
+ "V_V",
1387
+ "Va",
1388
+ "Va.",
1389
+ "Vesa",
1390
+ "Video",
1391
+ "View",
1392
+ "Virginia",
1393
+ "Virtual",
1394
+ "Visible",
1395
+ "Vision",
1396
+ "Voice",
1397
+ "Volume",
1398
+ "Vsync",
1399
+ "W",
1400
+ "WI",
1401
+ "WIFI",
1402
+ "WIRELESS_FEATURE",
1403
+ "Was",
1404
+ "Wash",
1405
+ "Wash.",
1406
+ "Washington",
1407
+ "We",
1408
+ "Were",
1409
+ "What",
1410
+ "What's",
1411
+ "What\u2019s",
1412
+ "When",
1413
+ "When's",
1414
+ "When\u2019s",
1415
+ "Where",
1416
+ "Where's",
1417
+ "Where\u2019s",
1418
+ "Who",
1419
+ "Who's",
1420
+ "Who\u2019s",
1421
+ "Why",
1422
+ "Why's",
1423
+ "Why\u2019s",
1424
+ "Wi",
1425
+ "WiFi",
1426
+ "Wide",
1427
+ "Wifi",
1428
+ "Wis",
1429
+ "Wis.",
1430
+ "Wisconsin",
1431
+ "Wo",
1432
+ "Works",
1433
+ "Would",
1434
+ "X'x",
1435
+ "X'xxxx",
1436
+ "X+",
1437
+ "X++",
1438
+ "X.",
1439
+ "X.X",
1440
+ "X.X.",
1441
+ "X.ddd",
1442
+ "X.x",
1443
+ "X.x.",
1444
+ "X1",
1445
+ "XD",
1446
+ "XDD",
1447
+ "XR",
1448
+ "XR400",
1449
+ "XX",
1450
+ "XX+",
1451
+ "XX-dd",
1452
+ "XXH",
1453
+ "XXX",
1454
+ "XXX(XX",
1455
+ "XXX+",
1456
+ "XXX-",
1457
+ "XXXX",
1458
+ "XXXX+",
1459
+ "XXXX_XXXX",
1460
+ "XXXXd",
1461
+ "XXXXd.d",
1462
+ "XXXXdddX",
1463
+ "XXXd",
1464
+ "XXXd.d",
1465
+ "XXXdd",
1466
+ "XXXx",
1467
+ "XXXxxxx",
1468
+ "XXd",
1469
+ "XXdd",
1470
+ "XXddXXddXXXX",
1471
+ "XXddXXdddXXXX",
1472
+ "XXddXXddddXXXX",
1473
+ "XXddXddXXXX",
1474
+ "XXddXddddXXXX",
1475
+ "XXddd",
1476
+ "X_X",
1477
+ "X_x",
1478
+ "Xcelerator",
1479
+ "Xd",
1480
+ "Xd(XXXX",
1481
+ "Xd.d",
1482
+ "Xdd",
1483
+ "Xddd",
1484
+ "Xdddx",
1485
+ "Xx",
1486
+ "Xx'",
1487
+ "Xx'x",
1488
+ "Xx'xx",
1489
+ "Xx.",
1490
+ "Xx.X.",
1491
+ "XxXX",
1492
+ "XxXx",
1493
+ "Xxx",
1494
+ "Xxx'x",
1495
+ "Xxx.",
1496
+ "XxxXxxx",
1497
+ "Xxxd",
1498
+ "Xxxx",
1499
+ "Xxxx'",
1500
+ "Xxxx'x",
1501
+ "Xxxx-dddXX",
1502
+ "Xxxx.",
1503
+ "XxxxXX",
1504
+ "XxxxXXX",
1505
+ "XxxxXxx",
1506
+ "XxxxXxxx",
1507
+ "XxxxXxxxx",
1508
+ "XxxxdddXXxd",
1509
+ "Xxxxx",
1510
+ "Xxxxx&Xxxxx",
1511
+ "Xxxxx'",
1512
+ "Xxxxx'x",
1513
+ "Xxxxx(Xxxxx",
1514
+ "Xxxxx+",
1515
+ "Xxxxx+xxx",
1516
+ "Xxxxx.",
1517
+ "Xxxxx/",
1518
+ "XxxxxXX",
1519
+ "XxxxxXxxx",
1520
+ "XxxxxXxxxx",
1521
+ "XxxxxXxxxx+",
1522
+ "Xxxxx\u2019",
1523
+ "Xxxxx\u2019x",
1524
+ "Xxxx\u2019",
1525
+ "Xxxx\u2019x",
1526
+ "Xxx\u2019x",
1527
+ "Xx\u2019",
1528
+ "Xx\u2019x",
1529
+ "Xx\u2019xx",
1530
+ "X\u2019x",
1531
+ "X\u2019xxxx",
1532
+ "Y",
1533
+ "You",
1534
+ "YouTube",
1535
+ "Youtube",
1536
+ "[",
1537
+ "[-:",
1538
+ "[:",
1539
+ "[=",
1540
+ "\\",
1541
+ "\\\")",
1542
+ "\\n",
1543
+ "\\t",
1544
+ "\\x",
1545
+ "]",
1546
+ "]=",
1547
+ "^",
1548
+ "^_^",
1549
+ "^__^",
1550
+ "^___^",
1551
+ "_*)",
1552
+ "_-)",
1553
+ "_.)",
1554
+ "_<)",
1555
+ "_^)",
1556
+ "__-",
1557
+ "__^",
1558
+ "_\u00ac)",
1559
+ "_\u0ca0)",
1560
+ "a",
1561
+ "a+",
1562
+ "a.",
1563
+ "a.i.",
1564
+ "a.m",
1565
+ "a.m.",
1566
+ "a53",
1567
+ "a7",
1568
+ "aHD",
1569
+ "about",
1570
+ "accelerator",
1571
+ "ace",
1572
+ "ack",
1573
+ "adm",
1574
+ "adm.",
1575
+ "ady",
1576
+ "ahd",
1577
+ "ai",
1578
+ "ain",
1579
+ "aipq",
1580
+ "aipq2.0",
1581
+ "airplay",
1582
+ "airslim",
1583
+ "ak",
1584
+ "ak.",
1585
+ "ala",
1586
+ "ala.",
1587
+ "ald",
1588
+ "ale",
1589
+ "alexa",
1590
+ "all",
1591
+ "allm",
1592
+ "am",
1593
+ "amazon",
1594
+ "ambient",
1595
+ "ambilight",
1596
+ "ambilight+hue",
1597
+ "ame",
1598
+ "amlogic",
1599
+ "an.",
1600
+ "analog",
1601
+ "and",
1602
+ "and/or",
1603
+ "android",
1604
+ "androidtv",
1605
+ "ano",
1606
+ "ans",
1607
+ "ansi",
1608
+ "ant",
1609
+ "antenna",
1610
+ "anyview",
1611
+ "app",
1612
+ "apple",
1613
+ "apr",
1614
+ "apr.",
1615
+ "ar.",
1616
+ "ard",
1617
+ "are",
1618
+ "ariz",
1619
+ "ariz.",
1620
+ "ark",
1621
+ "ark.",
1622
+ "arm",
1623
+ "array",
1624
+ "art",
1625
+ "ase",
1626
+ "ash",
1627
+ "ass",
1628
+ "assistant",
1629
+ "ast",
1630
+ "ate",
1631
+ "atmos",
1632
+ "audio",
1633
+ "audio_feature",
1634
+ "aug",
1635
+ "aug.",
1636
+ "auto",
1637
+ "automagic",
1638
+ "av",
1639
+ "ave",
1640
+ "b",
1641
+ "b.",
1642
+ "bPr",
1643
+ "because",
1644
+ "bezel",
1645
+ "bezeless",
1646
+ "black",
1647
+ "ble",
1648
+ "bluetooth",
1649
+ "blutooth",
1650
+ "bo+",
1651
+ "bon",
1652
+ "booster",
1653
+ "bout",
1654
+ "bowers&wilkins",
1655
+ "bpr",
1656
+ "br.",
1657
+ "bracket",
1658
+ "bravia",
1659
+ "braviacam",
1660
+ "bright",
1661
+ "brightness",
1662
+ "bros",
1663
+ "bros.",
1664
+ "brushed",
1665
+ "built",
1666
+ "bulit",
1667
+ "by",
1668
+ "c",
1669
+ "c'm",
1670
+ "c++",
1671
+ "c.",
1672
+ "c75",
1673
+ "ca",
1674
+ "cable",
1675
+ "cable/",
1676
+ "cal",
1677
+ "calif",
1678
+ "calif.",
1679
+ "cam",
1680
+ "can",
1681
+ "carbon",
1682
+ "card",
1683
+ "cast",
1684
+ "cause",
1685
+ "ce>",
1686
+ "ced",
1687
+ "central",
1688
+ "cer",
1689
+ "ch",
1690
+ "ch.",
1691
+ "channel",
1692
+ "chromecast",
1693
+ "ci",
1694
+ "ci+",
1695
+ "cks",
1696
+ "clarity",
1697
+ "clariy",
1698
+ "clear",
1699
+ "clearaudio+",
1700
+ "cm",
1701
+ "cmp",
1702
+ "co",
1703
+ "co.",
1704
+ "coaxial",
1705
+ "codec",
1706
+ "cognitive",
1707
+ "colo",
1708
+ "colo.",
1709
+ "color",
1710
+ "colour",
1711
+ "come",
1712
+ "comfort",
1713
+ "common",
1714
+ "component",
1715
+ "composite",
1716
+ "computer",
1717
+ "conn",
1718
+ "conn.",
1719
+ "connect",
1720
+ "connection",
1721
+ "connections",
1722
+ "connector",
1723
+ "connectshare",
1724
+ "content",
1725
+ "contrast",
1726
+ "control",
1727
+ "controller",
1728
+ "core",
1729
+ "corp",
1730
+ "corp.",
1731
+ "cortex",
1732
+ "cos",
1733
+ "could",
1734
+ "cover",
1735
+ "coz",
1736
+ "cpu",
1737
+ "cro",
1738
+ "crystal",
1739
+ "ct.",
1740
+ "cuz",
1741
+ "cvbs",
1742
+ "cvt",
1743
+ "cvte",
1744
+ "cvte713s",
1745
+ "c\u2019m",
1746
+ "d",
1747
+ "d)",
1748
+ "d,d",
1749
+ "d-",
1750
+ "d-)",
1751
+ "d-X",
1752
+ "d.",
1753
+ "d.c.",
1754
+ "d.d",
1755
+ "d.d.d",
1756
+ "d.d.dXX",
1757
+ "d.d.dXx",
1758
+ "d.d.dxx",
1759
+ "d.dXX",
1760
+ "d.ddd",
1761
+ "d.dxx",
1762
+ "d.x",
1763
+ "dTV",
1764
+ "dX",
1765
+ "dX/d",
1766
+ "d_d",
1767
+ "d_x",
1768
+ "daa",
1769
+ "dare",
1770
+ "dark",
1771
+ "daylight",
1772
+ "dc",
1773
+ "dci",
1774
+ "dd",
1775
+ "dd\"-ddd",
1776
+ "dd,d",
1777
+ "dd.dxdd.dxdd.d",
1778
+ "ddX",
1779
+ "ddXXXXddd/dd",
1780
+ "ddXXXdddd/dd",
1781
+ "ddd",
1782
+ "ddd.dd",
1783
+ "ddd/dddXx",
1784
+ "ddd/dddxx",
1785
+ "dddX",
1786
+ "dddXX",
1787
+ "dddXXX",
1788
+ "dddXXx",
1789
+ "dddXx",
1790
+ "dddXxddd",
1791
+ "dddd",
1792
+ "ddddx",
1793
+ "ddddxddd",
1794
+ "ddddxdddd",
1795
+ "dddx",
1796
+ "dddxx",
1797
+ "dddxxddd",
1798
+ "dddxxx",
1799
+ "ddr3",
1800
+ "ddx",
1801
+ "ddx.x",
1802
+ "ddx.x.",
1803
+ "ddxx)XxxxXX",
1804
+ "ddxx)xxxx",
1805
+ "ddxxxdddd/dd",
1806
+ "ddxxxxddd/dd",
1807
+ "dec",
1808
+ "dec.",
1809
+ "decoding",
1810
+ "ded",
1811
+ "deep",
1812
+ "del",
1813
+ "del.",
1814
+ "deo",
1815
+ "depth",
1816
+ "design",
1817
+ "dex",
1818
+ "did",
1819
+ "digital",
1820
+ "diming",
1821
+ "dimming",
1822
+ "dinamic",
1823
+ "dio",
1824
+ "disain",
1825
+ "disk",
1826
+ "disney+",
1827
+ "dlg",
1828
+ "dlna",
1829
+ "dm.",
1830
+ "dmi",
1831
+ "do",
1832
+ "does",
1833
+ "doin",
1834
+ "doin'",
1835
+ "doing",
1836
+ "doin\u2019",
1837
+ "dolby",
1838
+ "dot",
1839
+ "dots",
1840
+ "dr",
1841
+ "dr+",
1842
+ "dr.",
1843
+ "dr3",
1844
+ "drx",
1845
+ "dts",
1846
+ "dtv",
1847
+ "dual",
1848
+ "dvb",
1849
+ "dvb-",
1850
+ "dx",
1851
+ "dx.x",
1852
+ "dx.x.",
1853
+ "dx/d",
1854
+ "dxd",
1855
+ "dxdX",
1856
+ "dxddX",
1857
+ "dxddx",
1858
+ "dxdx",
1859
+ "dymamic",
1860
+ "dynamic",
1861
+ "e",
1862
+ "e's",
1863
+ "e.",
1864
+ "e.g",
1865
+ "e.g.",
1866
+ "eTV",
1867
+ "ear",
1868
+ "earphone",
1869
+ "eb.",
1870
+ "ebr",
1871
+ "ec.",
1872
+ "ect",
1873
+ "ed+",
1874
+ "eed",
1875
+ "een",
1876
+ "eep",
1877
+ "eg4",
1878
+ "ega",
1879
+ "el.",
1880
+ "elite",
1881
+ "els",
1882
+ "em",
1883
+ "eme",
1884
+ "en",
1885
+ "en.",
1886
+ "en2",
1887
+ "engine",
1888
+ "enhanced",
1889
+ "enhancement",
1890
+ "enhancer",
1891
+ "enn",
1892
+ "enough",
1893
+ "ens",
1894
+ "ent",
1895
+ "eos",
1896
+ "ep.",
1897
+ "ept",
1898
+ "ere",
1899
+ "ers",
1900
+ "ery",
1901
+ "esa",
1902
+ "ese",
1903
+ "esh",
1904
+ "esolution",
1905
+ "ess",
1906
+ "ethernet",
1907
+ "etv",
1908
+ "ev.",
1909
+ "evc",
1910
+ "exa",
1911
+ "ey+",
1912
+ "eye",
1913
+ "e\u2019s",
1914
+ "f",
1915
+ "f.",
1916
+ "fald",
1917
+ "features",
1918
+ "feb",
1919
+ "feb.",
1920
+ "fi",
1921
+ "fla",
1922
+ "fla.",
1923
+ "for",
1924
+ "force",
1925
+ "format",
1926
+ "frame",
1927
+ "frameless",
1928
+ "free",
1929
+ "freestyle",
1930
+ "freesync",
1931
+ "frequency",
1932
+ "front",
1933
+ "ful",
1934
+ "full",
1935
+ "fullhd",
1936
+ "fusion",
1937
+ "g",
1938
+ "g.",
1939
+ "ga",
1940
+ "ga.",
1941
+ "gallery",
1942
+ "game",
1943
+ "gaming",
1944
+ "gamma",
1945
+ "gamut",
1946
+ "gat",
1947
+ "gb",
1948
+ "gen",
1949
+ "gen.",
1950
+ "gen2",
1951
+ "ght",
1952
+ "ghz",
1953
+ "gic",
1954
+ "gle",
1955
+ "goin",
1956
+ "goin'",
1957
+ "going",
1958
+ "goin\u2019",
1959
+ "gon",
1960
+ "gonna",
1961
+ "google",
1962
+ "googletv",
1963
+ "got",
1964
+ "gov",
1965
+ "gov.",
1966
+ "gpu",
1967
+ "gray",
1968
+ "h",
1969
+ "h.",
1970
+ "h.265",
1971
+ "had",
1972
+ "hands",
1973
+ "hardware",
1974
+ "has",
1975
+ "hat",
1976
+ "have",
1977
+ "havin",
1978
+ "havin'",
1979
+ "having",
1980
+ "havin\u2019",
1981
+ "hd",
1982
+ "hdd",
1983
+ "hdmi",
1984
+ "hdr",
1985
+ "hdr+",
1986
+ "hdr10",
1987
+ "hdready",
1988
+ "hdrx",
1989
+ "he",
1990
+ "he's",
1991
+ "headphone",
1992
+ "hed",
1993
+ "hen",
1994
+ "hevc",
1995
+ "hey",
1996
+ "he\u2019s",
1997
+ "hi",
1998
+ "high",
1999
+ "hin",
2000
+ "his",
2001
+ "hlg",
2002
+ "homekit",
2003
+ "hospitality",
2004
+ "hotel",
2005
+ "how",
2006
+ "how's",
2007
+ "how\u2019s",
2008
+ "hub",
2009
+ "hue",
2010
+ "hybrid",
2011
+ "hz",
2012
+ "i",
2013
+ "i.",
2014
+ "i.e",
2015
+ "i.e.",
2016
+ "iFi",
2017
+ "iPQ",
2018
+ "ia",
2019
+ "ia.",
2020
+ "ial",
2021
+ "ice",
2022
+ "ich",
2023
+ "id",
2024
+ "id.",
2025
+ "ide",
2026
+ "iec75",
2027
+ "iew",
2028
+ "if.",
2029
+ "ifi",
2030
+ "igh",
2031
+ "ign",
2032
+ "ija",
2033
+ "ile",
2034
+ "ill",
2035
+ "ill.",
2036
+ "ilt",
2037
+ "imax",
2038
+ "in",
2039
+ "in'",
2040
+ "in(YPbPr",
2041
+ "in(ypbpr",
2042
+ "inc",
2043
+ "inc.",
2044
+ "inch",
2045
+ "incredible",
2046
+ "ind",
2047
+ "ind.",
2048
+ "index",
2049
+ "ine",
2050
+ "infinity",
2051
+ "ing",
2052
+ "ini",
2053
+ "ink",
2054
+ "inn",
2055
+ "input",
2056
+ "ins",
2057
+ "integrated",
2058
+ "interface",
2059
+ "in\u2019",
2060
+ "io+",
2061
+ "ion",
2062
+ "ior",
2063
+ "ipq",
2064
+ "ips",
2065
+ "iq",
2066
+ "is",
2067
+ "is.",
2068
+ "ise",
2069
+ "isk",
2070
+ "iss",
2071
+ "it",
2072
+ "it's",
2073
+ "ite",
2074
+ "ith",
2075
+ "its",
2076
+ "ity",
2077
+ "it\u2019s",
2078
+ "ium",
2079
+ "ive",
2080
+ "ix",
2081
+ "iz.",
2082
+ "ize",
2083
+ "j",
2084
+ "j.",
2085
+ "j45",
2086
+ "jack",
2087
+ "jan",
2088
+ "jan.",
2089
+ "jr",
2090
+ "jr.",
2091
+ "jul",
2092
+ "jul.",
2093
+ "jun",
2094
+ "jun.",
2095
+ "k",
2096
+ "k.",
2097
+ "k/2",
2098
+ "kan",
2099
+ "kan.",
2100
+ "kans",
2101
+ "kans.",
2102
+ "ker",
2103
+ "ket",
2104
+ "kit",
2105
+ "kla",
2106
+ "ky",
2107
+ "ky.",
2108
+ "kyo",
2109
+ "l",
2110
+ "l.",
2111
+ "lHD",
2112
+ "la",
2113
+ "la.",
2114
+ "lan",
2115
+ "laser",
2116
+ "laserslim",
2117
+ "lay",
2118
+ "lby",
2119
+ "le/",
2120
+ "learning",
2121
+ "led",
2122
+ "ler",
2123
+ "less",
2124
+ "let",
2125
+ "let's",
2126
+ "let\u2019s",
2127
+ "lhd",
2128
+ "lic",
2129
+ "lif",
2130
+ "light",
2131
+ "lim",
2132
+ "link",
2133
+ "lit",
2134
+ "lite",
2135
+ "lix",
2136
+ "ll",
2137
+ "ll.",
2138
+ "llm",
2139
+ "lna",
2140
+ "lo.",
2141
+ "local",
2142
+ "log",
2143
+ "lor",
2144
+ "lot",
2145
+ "lovin",
2146
+ "lovin'",
2147
+ "loving",
2148
+ "lovin\u2019",
2149
+ "low",
2150
+ "lp73",
2151
+ "ltd",
2152
+ "ltd.",
2153
+ "lti",
2154
+ "lty",
2155
+ "lumens",
2156
+ "luminance",
2157
+ "lus",
2158
+ "m",
2159
+ "m.",
2160
+ "ma'am",
2161
+ "madam",
2162
+ "mali-450mp",
2163
+ "mali400mpx2",
2164
+ "mar",
2165
+ "mar.",
2166
+ "mass",
2167
+ "mass.",
2168
+ "master",
2169
+ "mat",
2170
+ "matrix",
2171
+ "max",
2172
+ "maxhub",
2173
+ "may",
2174
+ "ma\u2019am",
2175
+ "md",
2176
+ "md.",
2177
+ "medium",
2178
+ "mega",
2179
+ "memory",
2180
+ "messrs",
2181
+ "messrs.",
2182
+ "metal",
2183
+ "metallic",
2184
+ "mhz",
2185
+ "mic",
2186
+ "mich",
2187
+ "mich.",
2188
+ "micro",
2189
+ "might",
2190
+ "mini",
2191
+ "miniLED",
2192
+ "miniled",
2193
+ "minimalistic",
2194
+ "minn",
2195
+ "minn.",
2196
+ "mirroring",
2197
+ "miss",
2198
+ "miss.",
2199
+ "mm",
2200
+ "mma",
2201
+ "mo",
2202
+ "mo.",
2203
+ "mobile",
2204
+ "mode",
2205
+ "mon",
2206
+ "monitor",
2207
+ "mont",
2208
+ "mont.",
2209
+ "mos",
2210
+ "motion",
2211
+ "motionflow",
2212
+ "motions",
2213
+ "mounting_feature",
2214
+ "mpeg4",
2215
+ "mr",
2216
+ "mr.",
2217
+ "mrs",
2218
+ "mrs.",
2219
+ "ms",
2220
+ "ms.",
2221
+ "ms12",
2222
+ "mt",
2223
+ "mt.",
2224
+ "multi",
2225
+ "multiroom",
2226
+ "multy",
2227
+ "music",
2228
+ "must",
2229
+ "mut",
2230
+ "n",
2231
+ "n's",
2232
+ "n't",
2233
+ "n.",
2234
+ "n.c.",
2235
+ "n.d.",
2236
+ "n.h.",
2237
+ "n.j.",
2238
+ "n.m.",
2239
+ "n.y.",
2240
+ "na",
2241
+ "nano",
2242
+ "native",
2243
+ "natural",
2244
+ "nc.",
2245
+ "nce",
2246
+ "ncy",
2247
+ "nd.",
2248
+ "nds",
2249
+ "neb",
2250
+ "neb.",
2251
+ "nebr",
2252
+ "nebr.",
2253
+ "need",
2254
+ "nel",
2255
+ "neo",
2256
+ "ner",
2257
+ "net",
2258
+ "netfl",
2259
+ "netflix",
2260
+ "neural",
2261
+ "nev",
2262
+ "nev.",
2263
+ "new",
2264
+ "nge",
2265
+ "nit",
2266
+ "nits",
2267
+ "nn.",
2268
+ "nna",
2269
+ "no",
2270
+ "noise",
2271
+ "nos",
2272
+ "not",
2273
+ "nothin",
2274
+ "nothin'",
2275
+ "nothing",
2276
+ "nothin\u2019",
2277
+ "nougat",
2278
+ "nov",
2279
+ "nov.",
2280
+ "nq4",
2281
+ "ns.",
2282
+ "nsi",
2283
+ "nt",
2284
+ "nt.",
2285
+ "nta",
2286
+ "nuff",
2287
+ "nuthin",
2288
+ "nuthin'",
2289
+ "nuthin\u2019",
2290
+ "n\u2019s",
2291
+ "n\u2019t",
2292
+ "o",
2293
+ "o'clock",
2294
+ "o's",
2295
+ "o.",
2296
+ "o.0",
2297
+ "o.O",
2298
+ "o.o",
2299
+ "o_0",
2300
+ "o_O",
2301
+ "o_o",
2302
+ "ock",
2303
+ "oct",
2304
+ "oct.",
2305
+ "ode",
2306
+ "oes",
2307
+ "of.",
2308
+ "oft",
2309
+ "ogy",
2310
+ "oid",
2311
+ "oin",
2312
+ "okla",
2313
+ "okla.",
2314
+ "ol",
2315
+ "ol'",
2316
+ "old",
2317
+ "oled",
2318
+ "oled+",
2319
+ "olo",
2320
+ "ol\u2019",
2321
+ "on",
2322
+ "one",
2323
+ "onkyo",
2324
+ "online",
2325
+ "onn",
2326
+ "ons",
2327
+ "ont",
2328
+ "ony",
2329
+ "oom",
2330
+ "operating",
2331
+ "optic",
2332
+ "optical",
2333
+ "option",
2334
+ "or",
2335
+ "ore",
2336
+ "ore.",
2337
+ "orm",
2338
+ "orp",
2339
+ "ort",
2340
+ "ory",
2341
+ "os",
2342
+ "os.",
2343
+ "ose",
2344
+ "ote",
2345
+ "oth",
2346
+ "ots",
2347
+ "ought",
2348
+ "our",
2349
+ "out",
2350
+ "output",
2351
+ "output(coaxial",
2352
+ "ov.",
2353
+ "o\u2019clock",
2354
+ "o\u2019s",
2355
+ "p",
2356
+ "p.",
2357
+ "p.m",
2358
+ "p.m.",
2359
+ "p3",
2360
+ "p5",
2361
+ "p73",
2362
+ "pa",
2363
+ "pa.",
2364
+ "panel",
2365
+ "passive",
2366
+ "pb",
2367
+ "pc",
2368
+ "penta",
2369
+ "perfect",
2370
+ "performance",
2371
+ "ph",
2372
+ "ph.d.",
2373
+ "phase",
2374
+ "philips",
2375
+ "picture",
2376
+ "pixel",
2377
+ "pixels",
2378
+ "platform",
2379
+ "playing",
2380
+ "ple",
2381
+ "plus",
2382
+ "pm",
2383
+ "pn",
2384
+ "port",
2385
+ "ports",
2386
+ "power",
2387
+ "powerful",
2388
+ "ppi",
2389
+ "pqi",
2390
+ "pr",
2391
+ "pr.",
2392
+ "precise",
2393
+ "premium",
2394
+ "pro",
2395
+ "procesor",
2396
+ "processor",
2397
+ "prof",
2398
+ "prof.",
2399
+ "projector",
2400
+ "protection",
2401
+ "protsessor",
2402
+ "pt.",
2403
+ "pth",
2404
+ "pto",
2405
+ "pur",
2406
+ "put",
2407
+ "pvr",
2408
+ "px2",
2409
+ "q",
2410
+ "q.",
2411
+ "qe55q80catxxh",
2412
+ "qe55qn90batxxh",
2413
+ "qe55qn90catxxh",
2414
+ "qe55s90catxxh",
2415
+ "qe55s95batxxh",
2416
+ "qe65q80aatxxh",
2417
+ "qe65q80batxxh",
2418
+ "qe65qn900aatxxh",
2419
+ "qe65qn900ctxxh",
2420
+ "qe65qn90catxxh",
2421
+ "qe65s90catxxh",
2422
+ "qe85q80catxxh",
2423
+ "qe85qn900ctxxh",
2424
+ "qe98q80catxxh",
2425
+ "qled",
2426
+ "quad",
2427
+ "quantum",
2428
+ "r",
2429
+ "r.",
2430
+ "r10",
2431
+ "r45",
2432
+ "ral",
2433
+ "ram",
2434
+ "range",
2435
+ "rate",
2436
+ "rate:60",
2437
+ "ray",
2438
+ "razor",
2439
+ "rce",
2440
+ "re",
2441
+ "re.",
2442
+ "ready",
2443
+ "reality",
2444
+ "recording",
2445
+ "reduction",
2446
+ "ree",
2447
+ "refresh",
2448
+ "refresh_rate",
2449
+ "remaster",
2450
+ "remastering",
2451
+ "remote",
2452
+ "rep",
2453
+ "rep.",
2454
+ "res",
2455
+ "resolution",
2456
+ "return",
2457
+ "rev",
2458
+ "rev.",
2459
+ "rf",
2460
+ "rid",
2461
+ "ring",
2462
+ "rix",
2463
+ "riy",
2464
+ "riz",
2465
+ "rj-45",
2466
+ "rj45",
2467
+ "rk.",
2468
+ "rks",
2469
+ "rms",
2470
+ "rof",
2471
+ "rol",
2472
+ "rom",
2473
+ "ros",
2474
+ "rp.",
2475
+ "rs.",
2476
+ "rts",
2477
+ "s",
2478
+ "s's",
2479
+ "s.",
2480
+ "s.c.",
2481
+ "s12",
2482
+ "s2",
2483
+ "s2(hevc",
2484
+ "s506",
2485
+ "s905w",
2486
+ "satelite",
2487
+ "satellite",
2488
+ "scaling",
2489
+ "scart",
2490
+ "screen",
2491
+ "sen",
2492
+ "sen.",
2493
+ "sep",
2494
+ "sep.",
2495
+ "sept",
2496
+ "sept.",
2497
+ "ser",
2498
+ "sh.",
2499
+ "sha",
2500
+ "shall",
2501
+ "share",
2502
+ "she",
2503
+ "she's",
2504
+ "she\u2019s",
2505
+ "should",
2506
+ "sic",
2507
+ "sided",
2508
+ "silver",
2509
+ "simfonija",
2510
+ "size",
2511
+ "sk",
2512
+ "slim",
2513
+ "slot",
2514
+ "smart",
2515
+ "smartphone",
2516
+ "smooth",
2517
+ "smoothing",
2518
+ "soft",
2519
+ "software_feature",
2520
+ "somethin",
2521
+ "somethin'",
2522
+ "something",
2523
+ "somethin\u2019",
2524
+ "sor",
2525
+ "sound",
2526
+ "space",
2527
+ "speaker",
2528
+ "speakers",
2529
+ "sr",
2530
+ "srs",
2531
+ "ss.",
2532
+ "st",
2533
+ "st.",
2534
+ "stand",
2535
+ "sticks",
2536
+ "sub",
2537
+ "superior",
2538
+ "support",
2539
+ "supreme",
2540
+ "surround",
2541
+ "symphony",
2542
+ "system",
2543
+ "s\u2019s",
2544
+ "t",
2545
+ "t's",
2546
+ "t.",
2547
+ "t2",
2548
+ "ta",
2549
+ "tal",
2550
+ "tan",
2551
+ "td.",
2552
+ "technology",
2553
+ "ted",
2554
+ "tel",
2555
+ "tem",
2556
+ "tenn",
2557
+ "tenn.",
2558
+ "ter",
2559
+ "terrestrial",
2560
+ "tex",
2561
+ "tfl",
2562
+ "that",
2563
+ "that's",
2564
+ "that\u2019s",
2565
+ "the",
2566
+ "them",
2567
+ "there",
2568
+ "there's",
2569
+ "there\u2019s",
2570
+ "these",
2571
+ "they",
2572
+ "this",
2573
+ "this's",
2574
+ "this\u2019s",
2575
+ "those",
2576
+ "tic",
2577
+ "titan",
2578
+ "titanium",
2579
+ "to",
2580
+ "tor",
2581
+ "total",
2582
+ "tra",
2583
+ "triluminos",
2584
+ "triple",
2585
+ "tum",
2586
+ "tuner",
2587
+ "turbo+",
2588
+ "tv",
2589
+ "tx3",
2590
+ "t\u2019s",
2591
+ "u",
2592
+ "u.",
2593
+ "u4",
2594
+ "u4.0",
2595
+ "u5",
2596
+ "u6",
2597
+ "u7",
2598
+ "uad",
2599
+ "ual",
2600
+ "ube",
2601
+ "ue32t4002akxxh",
2602
+ "ue65au7172uxxh",
2603
+ "ue70au7172uxxh",
2604
+ "uff",
2605
+ "ug.",
2606
+ "uhd",
2607
+ "ul.",
2608
+ "uld",
2609
+ "uled",
2610
+ "ull",
2611
+ "ultimate",
2612
+ "ultra",
2613
+ "ultrahd",
2614
+ "ume",
2615
+ "un.",
2616
+ "und",
2617
+ "up",
2618
+ "upgradable",
2619
+ "upscale",
2620
+ "upscaling",
2621
+ "upto",
2622
+ "ure",
2623
+ "urn",
2624
+ "us",
2625
+ "usb",
2626
+ "usb2.0",
2627
+ "use",
2628
+ "ust",
2629
+ "uto",
2630
+ "v",
2631
+ "v.",
2632
+ "v.s",
2633
+ "v.s.",
2634
+ "v.v",
2635
+ "v_v",
2636
+ "va",
2637
+ "va.",
2638
+ "vb-",
2639
+ "vbs",
2640
+ "ve",
2641
+ "ver",
2642
+ "vesa",
2643
+ "vga",
2644
+ "vga(pc",
2645
+ "via",
2646
+ "vidaa",
2647
+ "video",
2648
+ "video_feature",
2649
+ "videos",
2650
+ "view",
2651
+ "vin",
2652
+ "virtual",
2653
+ "visible",
2654
+ "vision",
2655
+ "voice",
2656
+ "volume",
2657
+ "vrr",
2658
+ "vs",
2659
+ "vs.",
2660
+ "vsync",
2661
+ "vte",
2662
+ "w",
2663
+ "w's",
2664
+ "w.",
2665
+ "w/o",
2666
+ "was",
2667
+ "wash",
2668
+ "wash.",
2669
+ "we",
2670
+ "wer",
2671
+ "were",
2672
+ "what",
2673
+ "what's",
2674
+ "what\u2019s",
2675
+ "when",
2676
+ "when's",
2677
+ "when\u2019s",
2678
+ "where",
2679
+ "where's",
2680
+ "where\u2019s",
2681
+ "who",
2682
+ "who's",
2683
+ "who\u2019s",
2684
+ "why",
2685
+ "why's",
2686
+ "why\u2019s",
2687
+ "wi",
2688
+ "wide",
2689
+ "wifi",
2690
+ "will",
2691
+ "wireless_feature",
2692
+ "wis",
2693
+ "wis.",
2694
+ "with",
2695
+ "without",
2696
+ "wo",
2697
+ "works",
2698
+ "would",
2699
+ "w\u2019s",
2700
+ "x",
2701
+ "x'",
2702
+ "x'x",
2703
+ "x'xxxx",
2704
+ "x+",
2705
+ "x.",
2706
+ "x.X",
2707
+ "x.d",
2708
+ "x.ddd",
2709
+ "x.x",
2710
+ "x.x.",
2711
+ "x/x",
2712
+ "x1",
2713
+ "x1,HDMI",
2714
+ "x1,hdmi",
2715
+ "x2",
2716
+ "x3",
2717
+ "x4",
2718
+ "x6W",
2719
+ "x6w",
2720
+ "x7W",
2721
+ "x7w",
2722
+ "x8W",
2723
+ "x8w",
2724
+ "xD",
2725
+ "xDD",
2726
+ "xX",
2727
+ "xXX",
2728
+ "x_X",
2729
+ "x_d",
2730
+ "x_x",
2731
+ "xcelerator",
2732
+ "xd",
2733
+ "xd(xxxx",
2734
+ "xd,XXXX",
2735
+ "xd,xxxx",
2736
+ "xd.d",
2737
+ "xdd",
2738
+ "xddd",
2739
+ "xdddx",
2740
+ "xel",
2741
+ "xr",
2742
+ "xr400",
2743
+ "xx",
2744
+ "xx'",
2745
+ "xx'x",
2746
+ "xx'xx",
2747
+ "xx(XXxXx",
2748
+ "xx(xxxx",
2749
+ "xx+",
2750
+ "xx-dd",
2751
+ "xx.",
2752
+ "xxd",
2753
+ "xxdd",
2754
+ "xxddd",
2755
+ "xxddxddddxxxx",
2756
+ "xxddxddxxxx",
2757
+ "xxddxxddddxxxx",
2758
+ "xxddxxdddxxxx",
2759
+ "xxddxxddxxxx",
2760
+ "xxh",
2761
+ "xxx",
2762
+ "xxx'x",
2763
+ "xxx(xx",
2764
+ "xxx+",
2765
+ "xxx-",
2766
+ "xxx/xx",
2767
+ "xxxd",
2768
+ "xxxd.d",
2769
+ "xxxdd",
2770
+ "xxxx",
2771
+ "xxxx&xxxx",
2772
+ "xxxx'",
2773
+ "xxxx'x",
2774
+ "xxxx(xxxx",
2775
+ "xxxx+",
2776
+ "xxxx+xxx",
2777
+ "xxxx-dddxx",
2778
+ "xxxx/",
2779
+ "xxxx:dd",
2780
+ "xxxxXXX",
2781
+ "xxxxd",
2782
+ "xxxxd.d",
2783
+ "xxxxdddx",
2784
+ "xxxxdddxxxd",
2785
+ "xxxx\u2019",
2786
+ "xxxx\u2019x",
2787
+ "xxx\u2019x",
2788
+ "xx\u2019",
2789
+ "xx\u2019x",
2790
+ "xx\u2019xx",
2791
+ "x\u2019",
2792
+ "x\u2019x",
2793
+ "x\u2019xxxx",
2794
+ "x\ufe35x",
2795
+ "y",
2796
+ "y'",
2797
+ "y's",
2798
+ "y.",
2799
+ "yle",
2800
+ "ync",
2801
+ "you",
2802
+ "youtube",
2803
+ "y\u2019",
2804
+ "y\u2019s",
2805
+ "z",
2806
+ "z.",
2807
+ "zel",
2808
+ "zon",
2809
+ "zor",
2810
+ "|",
2811
+ "}",
2812
+ "\u00a0",
2813
+ "\u00ac",
2814
+ "\u00ac_\u00ac",
2815
+ "\u00af",
2816
+ "\u00af\\(x)/\u00af",
2817
+ "\u00af\\(\u30c4)/\u00af",
2818
+ "\u00b0",
2819
+ "\u00b0C.",
2820
+ "\u00b0F.",
2821
+ "\u00b0K.",
2822
+ "\u00b0X.",
2823
+ "\u00b0c.",
2824
+ "\u00b0f.",
2825
+ "\u00b0k.",
2826
+ "\u00b0x.",
2827
+ "\u00b7",
2828
+ "\u00d7",
2829
+ "\u00e4",
2830
+ "\u00e4.",
2831
+ "\u00f6",
2832
+ "\u00f6.",
2833
+ "\u00fc",
2834
+ "\u00fc.",
2835
+ "\u0420",
2836
+ "\u0420\u0435\u0437\u043e\u043b\u0443\u0446\u0438\u0458\u0430",
2837
+ "\u0430\u0441\u0442",
2838
+ "\u0432",
2839
+ "\u0432\u0433\u0440\u0430\u0434\u0435\u043d",
2840
+ "\u0432\u0433\u0440\u0430\u0434\u0435\u043d\u043e",
2841
+ "\u0432\u043b\u0435\u0437",
2842
+ "\u0434\u0435\u043d",
2843
+ "\u0435\u043d\u043e",
2844
+ "\u0437\u043e\u0440",
2845
+ "\u0438",
2846
+ "\u0438\u0437\u043b\u0435\u0437",
2847
+ "\u0438\u0437\u043b\u0435\u0437put",
2848
+ "\u0438\u0458\u0430",
2849
+ "\u043a",
2850
+ "\u043a\u043e\u043d\u0442\u0440\u0430\u0441\u0442",
2851
+ "\u043b\u0435\u0437",
2852
+ "\u043e",
2853
+ "\u043e\u043f\u0446\u0438\u0458\u0430",
2854
+ "\u043f",
2855
+ "\u043f\u0440\u043e\u0446\u0435\u0441\u043e\u0440",
2856
+ "\u0440",
2857
+ "\u0440\u0435\u0437\u043e\u043b\u0443\u0446\u0438\u0458\u0430",
2858
+ "\u0441\u043e\u0440",
2859
+ "\u0442",
2860
+ "\u0442\u0435\u043b\u0435\u0432\u0438\u0437\u043e\u0440",
2861
+ "\u0ca0",
2862
+ "\u0ca0_\u0ca0",
2863
+ "\u0ca0\ufe35\u0ca0",
2864
+ "\u2014",
2865
+ "\u2018",
2866
+ "\u2018S",
2867
+ "\u2018X",
2868
+ "\u2018s",
2869
+ "\u2018x",
2870
+ "\u2019",
2871
+ "\u2019-(",
2872
+ "\u2019-)",
2873
+ "\u2019Cause",
2874
+ "\u2019Cos",
2875
+ "\u2019Coz",
2876
+ "\u2019Cuz",
2877
+ "\u2019S",
2878
+ "\u2019X",
2879
+ "\u2019Xxx",
2880
+ "\u2019Xxxxx",
2881
+ "\u2019am",
2882
+ "\u2019bout",
2883
+ "\u2019cause",
2884
+ "\u2019cos",
2885
+ "\u2019coz",
2886
+ "\u2019cuz",
2887
+ "\u2019d",
2888
+ "\u2019em",
2889
+ "\u2019ll",
2890
+ "\u2019m",
2891
+ "\u2019nuff",
2892
+ "\u2019re",
2893
+ "\u2019s",
2894
+ "\u2019ve",
2895
+ "\u2019x",
2896
+ "\u2019xx",
2897
+ "\u2019xxx",
2898
+ "\u2019xxxx",
2899
+ "\u2019y",
2900
+ "\u2019\u2019",
2901
+ "\u201d",
2902
+ "\u2501",
2903
+ "\u253b",
2904
+ "\u253b\u2501\u253b",
2905
+ "\u256f",
2906
+ "\u25a1",
2907
+ "\ufe35",
2908
+ "\uff09"
2909
+ ]
vocab/vectors ADDED
Binary file (128 Bytes). View file
 
vocab/vectors.cfg ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+ "mode":"default"
3
+ }