khanzaid commited on
Commit
3bb86a4
·
1 Parent(s): b0e5df6

Update spaCy pipeline

Browse files
.gitattributes CHANGED
@@ -33,3 +33,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ en_pipeline-any-py3-none-any.whl filter=lfs diff=lfs merge=lfs -text
37
+ transformer/model filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - spacy
4
+ - token-classification
5
+ language:
6
+ - en
7
+ model-index:
8
+ - name: en_pipeline
9
+ results:
10
+ - task:
11
+ name: NER
12
+ type: token-classification
13
+ metrics:
14
+ - name: NER Precision
15
+ type: precision
16
+ value: 0.96
17
+ - name: NER Recall
18
+ type: recall
19
+ value: 0.9696969697
20
+ - name: NER F Score
21
+ type: f_score
22
+ value: 0.9648241206
23
+ ---
config.cfg ADDED
@@ -0,0 +1,146 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [paths]
2
+ train = "/content/training_data.spacy"
3
+ dev = "/content/training_data.spacy"
4
+ vectors = null
5
+ init_tok2vec = null
6
+
7
+ [system]
8
+ gpu_allocator = "pytorch"
9
+ seed = 0
10
+
11
+ [nlp]
12
+ lang = "en"
13
+ pipeline = ["transformer","ner"]
14
+ batch_size = 128
15
+ disabled = []
16
+ before_creation = null
17
+ after_creation = null
18
+ after_pipeline_creation = null
19
+ tokenizer = {"@tokenizers":"spacy.Tokenizer.v1"}
20
+
21
+ [components]
22
+
23
+ [components.ner]
24
+ factory = "ner"
25
+ incorrect_spans_key = null
26
+ moves = null
27
+ scorer = {"@scorers":"spacy.ner_scorer.v1"}
28
+ update_with_oracle_cut_size = 100
29
+
30
+ [components.ner.model]
31
+ @architectures = "spacy.TransitionBasedParser.v2"
32
+ state_type = "ner"
33
+ extra_state_tokens = false
34
+ hidden_width = 64
35
+ maxout_pieces = 2
36
+ use_upper = false
37
+ nO = null
38
+
39
+ [components.ner.model.tok2vec]
40
+ @architectures = "spacy-transformers.TransformerListener.v1"
41
+ grad_factor = 1.0
42
+ pooling = {"@layers":"reduce_mean.v1"}
43
+ upstream = "*"
44
+
45
+ [components.transformer]
46
+ factory = "transformer"
47
+ max_batch_items = 4096
48
+ set_extra_annotations = {"@annotation_setters":"spacy-transformers.null_annotation_setter.v1"}
49
+
50
+ [components.transformer.model]
51
+ @architectures = "spacy-transformers.TransformerModel.v3"
52
+ name = "roberta-base"
53
+ mixed_precision = false
54
+
55
+ [components.transformer.model.get_spans]
56
+ @span_getters = "spacy-transformers.strided_spans.v1"
57
+ window = 128
58
+ stride = 96
59
+
60
+ [components.transformer.model.grad_scaler_config]
61
+
62
+ [components.transformer.model.tokenizer_config]
63
+ use_fast = true
64
+
65
+ [components.transformer.model.transformer_config]
66
+
67
+ [corpora]
68
+
69
+ [corpora.dev]
70
+ @readers = "spacy.Corpus.v1"
71
+ path = ${paths.dev}
72
+ max_length = 0
73
+ gold_preproc = false
74
+ limit = 0
75
+ augmenter = null
76
+
77
+ [corpora.train]
78
+ @readers = "spacy.Corpus.v1"
79
+ path = ${paths.train}
80
+ max_length = 0
81
+ gold_preproc = false
82
+ limit = 0
83
+ augmenter = null
84
+
85
+ [training]
86
+ accumulate_gradient = 3
87
+ dev_corpus = "corpora.dev"
88
+ train_corpus = "corpora.train"
89
+ seed = ${system.seed}
90
+ gpu_allocator = ${system.gpu_allocator}
91
+ dropout = 0.1
92
+ patience = 1600
93
+ max_epochs = 30
94
+ max_steps = 20000
95
+ eval_frequency = 200
96
+ frozen_components = []
97
+ annotating_components = []
98
+ before_to_disk = null
99
+ before_update = null
100
+
101
+ [training.batcher]
102
+ @batchers = "spacy.batch_by_padded.v1"
103
+ discard_oversize = true
104
+ size = 2000
105
+ buffer = 256
106
+ get_length = null
107
+
108
+ [training.logger]
109
+ @loggers = "spacy.ConsoleLogger.v1"
110
+ progress_bar = false
111
+
112
+ [training.optimizer]
113
+ @optimizers = "Adam.v1"
114
+ beta1 = 0.9
115
+ beta2 = 0.999
116
+ L2_is_weight_decay = true
117
+ L2 = 0.01
118
+ grad_clip = 1.0
119
+ use_averages = false
120
+ eps = 0.00000001
121
+
122
+ [training.optimizer.learn_rate]
123
+ @schedules = "warmup_linear.v1"
124
+ warmup_steps = 250
125
+ total_steps = 20000
126
+ initial_rate = 0.00005
127
+
128
+ [training.score_weights]
129
+ ents_f = 1.0
130
+ ents_p = 0.0
131
+ ents_r = 0.0
132
+ ents_per_type = null
133
+
134
+ [pretraining]
135
+
136
+ [initialize]
137
+ vectors = ${paths.vectors}
138
+ init_tok2vec = ${paths.init_tok2vec}
139
+ vocab_data = null
140
+ lookups = null
141
+ before_init = null
142
+ after_init = null
143
+
144
+ [initialize.components]
145
+
146
+ [initialize.tokenizer]
dist/fine_tuned_spacy_model-0.1.0-py3-none-any.whl ADDED
Binary file (1.1 kB). View file
 
dist/fine_tuned_spacy_model-0.1.0.tar.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e7baad941690d93a01064af485bdc2a38d89f8ac8435dc33e725dceeab653a21
3
+ size 761
dist/industry_sector_ner-0.0.0-py3-none-any.whl ADDED
Binary file (1.08 kB). View file
 
dist/industry_sector_ner-0.0.0.tar.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:06cfb836d9933a86c40ac1fe45f15a5aa012a22a10a26a8fb5e47b02f61dcb9a
3
+ size 746
dist/industry_sector_ner_fine-tune-0.1.0.tar.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3ea434f13e9fa900b27c4c7c9cebb979bf9345706c6735881406cb873ab6231f
3
+ size 837
dist/industry_sector_ner_fine_tune-0.1.0-py3-none-any.whl ADDED
Binary file (1.17 kB). View file
 
dist/spacy_fine_tune_news-0.1.0-py3-none-any.whl ADDED
Binary file (1.08 kB). View file
 
dist/spacy_fine_tune_news-0.1.0.tar.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:30b500c62156673b070e23d01864ec9be2a8f01ce314f38a2dac42643f388f34
3
+ size 856
dist/your_spacy_model-0.1.0-py3-none-any.whl ADDED
Binary file (1.04 kB). View file
 
dist/your_spacy_model-0.1.0.tar.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:eeeed05bad122ca6f83ffc192150ba153d01f5727d9193f24bd64c16df838f8b
3
+ size 743
dist/your_spacy_model_name-0.1.0-py3-none-any.whl ADDED
Binary file (1.09 kB). View file
 
dist/your_spacy_model_name-0.1.0.tar.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6b2d177164abb3c47d30a3e029e7398db7b1bd48f444db967473c97cf12d959b
3
+ size 787
en_pipeline-any-py3-none-any.whl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ac4041447b077027f47f99e20e11e7a3af4564259b5224f20edfa625c6c9bdc1
3
+ size 428621803
meta.json ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lang":"en",
3
+ "name":"pipeline",
4
+ "version":"0.0.0",
5
+ "description":"",
6
+ "author":"",
7
+ "email":"",
8
+ "url":"",
9
+ "license":"",
10
+ "spacy_version":">=3.6.1,<3.7.0",
11
+ "spacy_git_version":"458bc5f45",
12
+ "vectors":{
13
+ "width":0,
14
+ "vectors":0,
15
+ "keys":0,
16
+ "name":null
17
+ },
18
+ "labels":{
19
+ "transformer":[
20
+
21
+ ],
22
+ "ner":[
23
+ "SECTOR"
24
+ ]
25
+ },
26
+ "pipeline":[
27
+ "transformer",
28
+ "ner"
29
+ ],
30
+ "components":[
31
+ "transformer",
32
+ "ner"
33
+ ],
34
+ "disabled":[
35
+
36
+ ],
37
+ "performance":{
38
+ "ents_f":0.9648241206,
39
+ "ents_p":0.96,
40
+ "ents_r":0.9696969697,
41
+ "ents_per_type":{
42
+ "SECTOR":{
43
+ "p":0.96,
44
+ "r":0.9696969697,
45
+ "f":0.9648241206
46
+ }
47
+ },
48
+ "transformer_loss":354.7826454542,
49
+ "ner_loss":450.1430266494
50
+ },
51
+ "requirements":[
52
+ "spacy-transformers>=1.3.4,<1.4.0"
53
+ ]
54
+ }
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 (207 kB). View file
 
ner/moves ADDED
@@ -0,0 +1 @@
 
 
1
+ ��moves�d{"0":{},"1":{"SECTOR":214},"2":{"SECTOR":214},"3":{"SECTOR":214},"4":{"SECTOR":214,"":1},"5":{"":1}}�cfg��neg_key�
setup.py ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name='spacy_fine_tune_news',
5
+ version='0.1.0',
6
+ packages=find_packages(),
7
+ package_data={'spacy_fine_tune_news': ['/content/drive/MyDrive/industry_sector_NER/model/model-best/transformer/*']}, # Include model data
8
+ include_package_data=True,
9
+ install_requires=[
10
+ 'spacy>=3.0.0', # Declare spaCy dependency
11
+ # Other dependencies if needed
12
+ ],
13
+ )
tokenizer ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ ��prefix_search� �^§|^%|^=|^—|^–|^\+(?![0-9])|^…|^……|^,|^:|^;|^\!|^\?|^¿|^؟|^¡|^\(|^\)|^\[|^\]|^\{|^\}|^<|^>|^_|^#|^\*|^&|^。|^?|^!|^,|^、|^;|^:|^~|^·|^।|^،|^۔|^؛|^٪|^\.\.+|^…|^\'|^"|^”|^“|^`|^‘|^´|^’|^‚|^,|^„|^»|^«|^「|^」|^『|^』|^(|^)|^〔|^〕|^【|^】|^《|^》|^〈|^〉|^〈|^〉|^⟦|^⟧|^\$|^£|^€|^¥|^฿|^US\$|^C\$|^A\$|^₽|^﷼|^₴|^₠|^₡|^₢|^₣|^₤|^₥|^₦|^₧|^₨|^₩|^₪|^₫|^€|^₭|^₮|^₯|^₰|^₱|^₲|^₳|^₴|^₵|^₶|^₷|^₸|^₹|^₺|^₻|^₼|^₽|^₾|^₿|^[\u00A6\u00A9\u00AE\u00B0\u0482\u058D\u058E\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u09FA\u0B70\u0BF3-\u0BF8\u0BFA\u0C7F\u0D4F\u0D79\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116\u2117\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u214A\u214C\u214D\u214F\u218A\u218B\u2195-\u2199\u219C-\u219F\u21A1\u21A2\u21A4\u21A5\u21A7-\u21AD\u21AF-\u21CD\u21D0\u21D1\u21D3\u21D5-\u21F3\u2300-\u2307\u230C-\u231F\u2322-\u2328\u232B-\u237B\u237D-\u239A\u23B4-\u23DB\u23E2-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u25B6\u25B8-\u25C0\u25C2-\u25F7\u2600-\u266E\u2670-\u2767\u2794-\u27BF\u2800-\u28FF\u2B00-\u2B2F\u2B45\u2B46\u2B4D-\u2B73\u2B76-\u2B95\u2B98-\u2BC8\u2BCA-\u2BFE\u2CE5-\u2CEA\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u32FE\u3300-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA828-\uA82B\uA836\uA837\uA839\uAA77-\uAA79\uFDFD\uFFE4\uFFE8\uFFED\uFFEE\uFFFC\uFFFD\U00010137-\U0001013F\U00010179-\U00010189\U0001018C-\U0001018E\U00010190-\U0001019B\U000101A0\U000101D0-\U000101FC\U00010877\U00010878\U00010AC8\U0001173F\U00016B3C-\U00016B3F\U00016B45\U0001BC9C\U0001D000-\U0001D0F5\U0001D100-\U0001D126\U0001D129-\U0001D164\U0001D16A-\U0001D16C\U0001D183\U0001D184\U0001D18C-\U0001D1A9\U0001D1AE-\U0001D1E8\U0001D200-\U0001D241\U0001D245\U0001D300-\U0001D356\U0001D800-\U0001D9FF\U0001DA37-\U0001DA3A\U0001DA6D-\U0001DA74\U0001DA76-\U0001DA83\U0001DA85\U0001DA86\U0001ECAC\U0001F000-\U0001F02B\U0001F030-\U0001F093\U0001F0A0-\U0001F0AE\U0001F0B1-\U0001F0BF\U0001F0C1-\U0001F0CF\U0001F0D1-\U0001F0F5\U0001F110-\U0001F16B\U0001F170-\U0001F1AC\U0001F1E6-\U0001F202\U0001F210-\U0001F23B\U0001F240-\U0001F248\U0001F250\U0001F251\U0001F260-\U0001F265\U0001F300-\U0001F3FA\U0001F400-\U0001F6D4\U0001F6E0-\U0001F6EC\U0001F6F0-\U0001F6F9\U0001F700-\U0001F773\U0001F780-\U0001F7D8\U0001F800-\U0001F80B\U0001F810-\U0001F847\U0001F850-\U0001F859\U0001F860-\U0001F887\U0001F890-\U0001F8AD\U0001F900-\U0001F90B\U0001F910-\U0001F93E\U0001F940-\U0001F970\U0001F973-\U0001F976\U0001F97A\U0001F97C-\U0001F9A2\U0001F9B0-\U0001F9B9\U0001F9C0-\U0001F9C2\U0001F9D0-\U0001F9FF\U0001FA60-\U0001FA6D]�suffix_search�2�…$|……$|,$|:$|;$|\!$|\?$|¿$|؟$|¡$|\($|\)$|\[$|\]$|\{$|\}$|<$|>$|_$|#$|\*$|&$|。$|?$|!$|,$|、$|;$|:$|~$|·$|।$|،$|۔$|؛$|٪$|\.\.+$|…$|\'$|"$|”$|“$|`$|‘$|´$|’$|‚$|,$|„$|»$|«$|「$|」$|『$|』$|($|)$|〔$|〕$|【$|】$|《$|》$|〈$|〉$|〈$|〉$|⟦$|⟧$|[\u00A6\u00A9\u00AE\u00B0\u0482\u058D\u058E\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u09FA\u0B70\u0BF3-\u0BF8\u0BFA\u0C7F\u0D4F\u0D79\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116\u2117\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u214A\u214C\u214D\u214F\u218A\u218B\u2195-\u2199\u219C-\u219F\u21A1\u21A2\u21A4\u21A5\u21A7-\u21AD\u21AF-\u21CD\u21D0\u21D1\u21D3\u21D5-\u21F3\u2300-\u2307\u230C-\u231F\u2322-\u2328\u232B-\u237B\u237D-\u239A\u23B4-\u23DB\u23E2-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u25B6\u25B8-\u25C0\u25C2-\u25F7\u2600-\u266E\u2670-\u2767\u2794-\u27BF\u2800-\u28FF\u2B00-\u2B2F\u2B45\u2B46\u2B4D-\u2B73\u2B76-\u2B95\u2B98-\u2BC8\u2BCA-\u2BFE\u2CE5-\u2CEA\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u32FE\u3300-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA828-\uA82B\uA836\uA837\uA839\uAA77-\uAA79\uFDFD\uFFE4\uFFE8\uFFED\uFFEE\uFFFC\uFFFD\U00010137-\U0001013F\U00010179-\U00010189\U0001018C-\U0001018E\U00010190-\U0001019B\U000101A0\U000101D0-\U000101FC\U00010877\U00010878\U00010AC8\U0001173F\U00016B3C-\U00016B3F\U00016B45\U0001BC9C\U0001D000-\U0001D0F5\U0001D100-\U0001D126\U0001D129-\U0001D164\U0001D16A-\U0001D16C\U0001D183\U0001D184\U0001D18C-\U0001D1A9\U0001D1AE-\U0001D1E8\U0001D200-\U0001D241\U0001D245\U0001D300-\U0001D356\U0001D800-\U0001D9FF\U0001DA37-\U0001DA3A\U0001DA6D-\U0001DA74\U0001DA76-\U0001DA83\U0001DA85\U0001DA86\U0001ECAC\U0001F000-\U0001F02B\U0001F030-\U0001F093\U0001F0A0-\U0001F0AE\U0001F0B1-\U0001F0BF\U0001F0C1-\U0001F0CF\U0001F0D1-\U0001F0F5\U0001F110-\U0001F16B\U0001F170-\U0001F1AC\U0001F1E6-\U0001F202\U0001F210-\U0001F23B\U0001F240-\U0001F248\U0001F250\U0001F251\U0001F260-\U0001F265\U0001F300-\U0001F3FA\U0001F400-\U0001F6D4\U0001F6E0-\U0001F6EC\U0001F6F0-\U0001F6F9\U0001F700-\U0001F773\U0001F780-\U0001F7D8\U0001F800-\U0001F80B\U0001F810-\U0001F847\U0001F850-\U0001F859\U0001F860-\U0001F887\U0001F890-\U0001F8AD\U0001F900-\U0001F90B\U0001F910-\U0001F93E\U0001F940-\U0001F970\U0001F973-\U0001F976\U0001F97A\U0001F97C-\U0001F9A2\U0001F9B0-\U0001F9B9\U0001F9C0-\U0001F9C2\U0001F9D0-\U0001F9FF\U0001FA60-\U0001FA6D]$|'s$|'S$|’s$|’S$|—$|–$|(?<=[0-9])\+$|(?<=°[FfCcKk])\.$|(?<=[0-9])(?:\$|£|€|¥|฿|US\$|C\$|A\$|₽|﷼|₴|₠|₡|₢|₣|₤|₥|₦|₧|₨|₩|₪|₫|€|₭|₮|₯|₰|₱|₲|₳|₴|₵|₶|₷|₸|₹|₺|₻|₼|₽|₾|₿)$|(?<=[0-9])(?:km|km²|km³|m|m²|m³|dm|dm²|dm³|cm|cm²|cm³|mm|mm²|mm³|ha|µm|nm|yd|in|ft|kg|g|mg|µg|t|lb|oz|m/s|km/h|kmh|mph|hPa|Pa|mbar|mb|MB|kb|KB|gb|GB|tb|TB|T|G|M|K|%|км|км²|км³|м|м²|м³|дм|дм²|дм³|см|см²|см³|мм|мм²|мм³|нм|кг|г|мг|м/с|км/ч|кПа|Па|мбар|Кб|КБ|кб|Мб|МБ|мб|Гб|ГБ|гб|Тб|ТБ|тбكم|كم²|كم³|م|م²|م³|سم|سم²|سم³|مم|مم²|مم³|كم|غرام|جرام|جم|كغ|ملغ|كوب|اكواب)$|(?<=[0-9a-z\uFF41-\uFF5A\u00DF-\u00F6\u00F8-\u00FF\u0101\u0103\u0105\u0107\u0109\u010B\u010D\u010F\u0111\u0113\u0115\u0117\u0119\u011B\u011D\u011F\u0121\u0123\u0125\u0127\u0129\u012B\u012D\u012F\u0131\u0133\u0135\u0137\u0138\u013A\u013C\u013E\u0140\u0142\u0144\u0146\u0148\u0149\u014B\u014D\u014F\u0151\u0153\u0155\u0157\u0159\u015B\u015D\u015F\u0161\u0163\u0165\u0167\u0169\u016B\u016D\u016F\u0171\u0173\u0175\u0177\u017A\u017C\u017E\u017F\u0180\u0183\u0185\u0188\u018C\u018D\u0192\u0195\u0199-\u019B\u019E\u01A1\u01A3\u01A5\u01A8\u01AA\u01AB\u01AD\u01B0\u01B4\u01B6\u01B9\u01BA\u01BD-\u01BF\u01C6\u01C9\u01CC\u01CE\u01D0\u01D2\u01D4\u01D6\u01D8\u01DA\u01DC\u01DD\u01DF\u01E1\u01E3\u01E5\u01E7\u01E9\u01EB\u01ED\u01EF\u01F0\u01F3\u01F5\u01F9\u01FB\u01FD\u01FF\u0201\u0203\u0205\u0207\u0209\u020B\u020D\u020F\u0211\u0213\u0215\u0217\u0219\u021B\u021D\u021F\u0221\u0223\u0225\u0227\u0229\u022B\u022D\u022F\u0231\u0233-\u0239\u023C\u023F\u0240\u0242\u0247\u0249\u024B\u024D\u024F\u2C61\u2C65\u2C66\u2C68\u2C6A\u2C6C\u2C71\u2C73\u2C74\u2C76-\u2C7B\uA723\uA725\uA727\uA729\uA72B\uA72D\uA72F-\uA731\uA733\uA735\uA737\uA739\uA73B\uA73D\uA73F\uA741\uA743\uA745\uA747\uA749\uA74B\uA74D\uA74F\uA751\uA753\uA755\uA757\uA759\uA75B\uA75D\uA75F\uA761\uA763\uA765\uA767\uA769\uA76B\uA76D\uA76F\uA771-\uA778\uA77A\uA77C\uA77F\uA781\uA783\uA785\uA787\uA78C\uA78E\uA791\uA793-\uA795\uA797\uA799\uA79B\uA79D\uA79F\uA7A1\uA7A3\uA7A5\uA7A7\uA7A9\uA7AF\uA7B5\uA7B7\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E01\u1E03\u1E05\u1E07\u1E09\u1E0B\u1E0D\u1E0F\u1E11\u1E13\u1E15\u1E17\u1E19\u1E1B\u1E1D\u1E1F\u1E21\u1E23\u1E25\u1E27\u1E29\u1E2B\u1E2D\u1E2F\u1E31\u1E33\u1E35\u1E37\u1E39\u1E3B\u1E3D\u1E3F\u1E41\u1E43\u1E45\u1E47\u1E49\u1E4B\u1E4D\u1E4F\u1E51\u1E53\u1E55\u1E57\u1E59\u1E5B\u1E5D\u1E5F\u1E61\u1E63\u1E65\u1E67\u1E69\u1E6B\u1E6D\u1E6F\u1E71\u1E73\u1E75\u1E77\u1E79\u1E7B\u1E7D\u1E7F\u1E81\u1E83\u1E85\u1E87\u1E89\u1E8B\u1E8D\u1E8F\u1E91\u1E93\u1E95-\u1E9D\u1E9F\u1EA1\u1EA3\u1EA5\u1EA7\u1EA9\u1EAB\u1EAD\u1EAF\u1EB1\u1EB3\u1EB5\u1EB7\u1EB9\u1EBB\u1EBD\u1EBF\u1EC1\u1EC3\u1EC5\u1EC7\u1EC9\u1ECB\u1ECD\u1ECF\u1ED1\u1ED3\u1ED5\u1ED7\u1ED9\u1EDB\u1EDD\u1EDF\u1EE1\u1EE3\u1EE5\u1EE7\u1EE9\u1EEB\u1EED\u1EEF\u1EF1\u1EF3\u1EF5\u1EF7\u1EF9\u1EFB\u1EFD\u1EFFёа-яәөүҗңһα-ωάέίόώήύа-щюяіїєґѓѕјљњќѐѝ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F%²\-\+…|……|,|:|;|\!|\?|¿|؟|¡|\(|\)|\[|\]|\{|\}|<|>|_|#|\*|&|。|?|!|,|、|;|:|~|·|।|،|۔|؛|٪(?:\'"”“`‘´’‚,„»«「」『』()〔〕【】《》〈〉〈〉⟦⟧)])\.$|(?<=[A-Z\uFF21-\uFF3A\u00C0-\u00D6\u00D8-\u00DE\u0100\u0102\u0104\u0106\u0108\u010A\u010C\u010E\u0110\u0112\u0114\u0116\u0118\u011A\u011C\u011E\u0120\u0122\u0124\u0126\u0128\u012A\u012C\u012E\u0130\u0132\u0134\u0136\u0139\u013B\u013D\u013F\u0141\u0143\u0145\u0147\u014A\u014C\u014E\u0150\u0152\u0154\u0156\u0158\u015A\u015C\u015E\u0160\u0162\u0164\u0166\u0168\u016A\u016C\u016E\u0170\u0172\u0174\u0176\u0178\u0179\u017B\u017D\u0181\u0182\u0184\u0186\u0187\u0189-\u018B\u018E-\u0191\u0193\u0194\u0196-\u0198\u019C\u019D\u019F\u01A0\u01A2\u01A4\u01A6\u01A7\u01A9\u01AC\u01AE\u01AF\u01B1-\u01B3\u01B5\u01B7\u01B8\u01BC\u01C4\u01C7\u01CA\u01CD\u01CF\u01D1\u01D3\u01D5\u01D7\u01D9\u01DB\u01DE\u01E0\u01E2\u01E4\u01E6\u01E8\u01EA\u01EC\u01EE\u01F1\u01F4\u01F6-\u01F8\u01FA\u01FC\u01FE\u0200\u0202\u0204\u0206\u0208\u020A\u020C\u020E\u0210\u0212\u0214\u0216\u0218\u021A\u021C\u021E\u0220\u0222\u0224\u0226\u0228\u022A\u022C\u022E\u0230\u0232\u023A\u023B\u023D\u023E\u0241\u0243-\u0246\u0248\u024A\u024C\u024E\u2C60\u2C62-\u2C64\u2C67\u2C69\u2C6B\u2C6D-\u2C70\u2C72\u2C75\u2C7E\u2C7F\uA722\uA724\uA726\uA728\uA72A\uA72C\uA72E\uA732\uA734\uA736\uA738\uA73A\uA73C\uA73E\uA740\uA742\uA744\uA746\uA748\uA74A\uA74C\uA74E\uA750\uA752\uA754\uA756\uA758\uA75A\uA75C\uA75E\uA760\uA762\uA764\uA766\uA768\uA76A\uA76C\uA76E\uA779\uA77B\uA77D\uA77E\uA780\uA782\uA784\uA786\uA78B\uA78D\uA790\uA792\uA796\uA798\uA79A\uA79C\uA79E\uA7A0\uA7A2\uA7A4\uA7A6\uA7A8\uA7AA-\uA7AE\uA7B0-\uA7B4\uA7B6\uA7B8\u1E00\u1E02\u1E04\u1E06\u1E08\u1E0A\u1E0C\u1E0E\u1E10\u1E12\u1E14\u1E16\u1E18\u1E1A\u1E1C\u1E1E\u1E20\u1E22\u1E24\u1E26\u1E28\u1E2A\u1E2C\u1E2E\u1E30\u1E32\u1E34\u1E36\u1E38\u1E3A\u1E3C\u1E3E\u1E40\u1E42\u1E44\u1E46\u1E48\u1E4A\u1E4C\u1E4E\u1E50\u1E52\u1E54\u1E56\u1E58\u1E5A\u1E5C\u1E5E\u1E60\u1E62\u1E64\u1E66\u1E68\u1E6A\u1E6C\u1E6E\u1E70\u1E72\u1E74\u1E76\u1E78\u1E7A\u1E7C\u1E7E\u1E80\u1E82\u1E84\u1E86\u1E88\u1E8A\u1E8C\u1E8E\u1E90\u1E92\u1E94\u1E9E\u1EA0\u1EA2\u1EA4\u1EA6\u1EA8\u1EAA\u1EAC\u1EAE\u1EB0\u1EB2\u1EB4\u1EB6\u1EB8\u1EBA\u1EBC\u1EBE\u1EC0\u1EC2\u1EC4\u1EC6\u1EC8\u1ECA\u1ECC\u1ECE\u1ED0\u1ED2\u1ED4\u1ED6\u1ED8\u1EDA\u1EDC\u1EDE\u1EE0\u1EE2\u1EE4\u1EE6\u1EE8\u1EEA\u1EEC\u1EEE\u1EF0\u1EF2\u1EF4\u1EF6\u1EF8\u1EFA\u1EFC\u1EFEЁА-ЯӘӨҮҖҢҺΑ-ΩΆΈΊΌΏΉΎА-ЩЮЯІЇЄҐЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F][A-Z\uFF21-\uFF3A\u00C0-\u00D6\u00D8-\u00DE\u0100\u0102\u0104\u0106\u0108\u010A\u010C\u010E\u0110\u0112\u0114\u0116\u0118\u011A\u011C\u011E\u0120\u0122\u0124\u0126\u0128\u012A\u012C\u012E\u0130\u0132\u0134\u0136\u0139\u013B\u013D\u013F\u0141\u0143\u0145\u0147\u014A\u014C\u014E\u0150\u0152\u0154\u0156\u0158\u015A\u015C\u015E\u0160\u0162\u0164\u0166\u0168\u016A\u016C\u016E\u0170\u0172\u0174\u0176\u0178\u0179\u017B\u017D\u0181\u0182\u0184\u0186\u0187\u0189-\u018B\u018E-\u0191\u0193\u0194\u0196-\u0198\u019C\u019D\u019F\u01A0\u01A2\u01A4\u01A6\u01A7\u01A9\u01AC\u01AE\u01AF\u01B1-\u01B3\u01B5\u01B7\u01B8\u01BC\u01C4\u01C7\u01CA\u01CD\u01CF\u01D1\u01D3\u01D5\u01D7\u01D9\u01DB\u01DE\u01E0\u01E2\u01E4\u01E6\u01E8\u01EA\u01EC\u01EE\u01F1\u01F4\u01F6-\u01F8\u01FA\u01FC\u01FE\u0200\u0202\u0204\u0206\u0208\u020A\u020C\u020E\u0210\u0212\u0214\u0216\u0218\u021A\u021C\u021E\u0220\u0222\u0224\u0226\u0228\u022A\u022C\u022E\u0230\u0232\u023A\u023B\u023D\u023E\u0241\u0243-\u0246\u0248\u024A\u024C\u024E\u2C60\u2C62-\u2C64\u2C67\u2C69\u2C6B\u2C6D-\u2C70\u2C72\u2C75\u2C7E\u2C7F\uA722\uA724\uA726\uA728\uA72A\uA72C\uA72E\uA732\uA734\uA736\uA738\uA73A\uA73C\uA73E\uA740\uA742\uA744\uA746\uA748\uA74A\uA74C\uA74E\uA750\uA752\uA754\uA756\uA758\uA75A\uA75C\uA75E\uA760\uA762\uA764\uA766\uA768\uA76A\uA76C\uA76E\uA779\uA77B\uA77D\uA77E\uA780\uA782\uA784\uA786\uA78B\uA78D\uA790\uA792\uA796\uA798\uA79A\uA79C\uA79E\uA7A0\uA7A2\uA7A4\uA7A6\uA7A8\uA7AA-\uA7AE\uA7B0-\uA7B4\uA7B6\uA7B8\u1E00\u1E02\u1E04\u1E06\u1E08\u1E0A\u1E0C\u1E0E\u1E10\u1E12\u1E14\u1E16\u1E18\u1E1A\u1E1C\u1E1E\u1E20\u1E22\u1E24\u1E26\u1E28\u1E2A\u1E2C\u1E2E\u1E30\u1E32\u1E34\u1E36\u1E38\u1E3A\u1E3C\u1E3E\u1E40\u1E42\u1E44\u1E46\u1E48\u1E4A\u1E4C\u1E4E\u1E50\u1E52\u1E54\u1E56\u1E58\u1E5A\u1E5C\u1E5E\u1E60\u1E62\u1E64\u1E66\u1E68\u1E6A\u1E6C\u1E6E\u1E70\u1E72\u1E74\u1E76\u1E78\u1E7A\u1E7C\u1E7E\u1E80\u1E82\u1E84\u1E86\u1E88\u1E8A\u1E8C\u1E8E\u1E90\u1E92\u1E94\u1E9E\u1EA0\u1EA2\u1EA4\u1EA6\u1EA8\u1EAA\u1EAC\u1EAE\u1EB0\u1EB2\u1EB4\u1EB6\u1EB8\u1EBA\u1EBC\u1EBE\u1EC0\u1EC2\u1EC4\u1EC6\u1EC8\u1ECA\u1ECC\u1ECE\u1ED0\u1ED2\u1ED4\u1ED6\u1ED8\u1EDA\u1EDC\u1EDE\u1EE0\u1EE2\u1EE4\u1EE6\u1EE8\u1EEA\u1EEC\u1EEE\u1EF0\u1EF2\u1EF4\u1EF6\u1EF8\u1EFA\u1EFC\u1EFEЁА-ЯӘӨҮҖҢҺΑ-ΩΆΈΊΌΏΉΎА-ЩЮЯІЇЄҐЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])\.$�infix_finditer�>�\.\.+|…|[\u00A6\u00A9\u00AE\u00B0\u0482\u058D\u058E\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u09FA\u0B70\u0BF3-\u0BF8\u0BFA\u0C7F\u0D4F\u0D79\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116\u2117\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u214A\u214C\u214D\u214F\u218A\u218B\u2195-\u2199\u219C-\u219F\u21A1\u21A2\u21A4\u21A5\u21A7-\u21AD\u21AF-\u21CD\u21D0\u21D1\u21D3\u21D5-\u21F3\u2300-\u2307\u230C-\u231F\u2322-\u2328\u232B-\u237B\u237D-\u239A\u23B4-\u23DB\u23E2-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u25B6\u25B8-\u25C0\u25C2-\u25F7\u2600-\u266E\u2670-\u2767\u2794-\u27BF\u2800-\u28FF\u2B00-\u2B2F\u2B45\u2B46\u2B4D-\u2B73\u2B76-\u2B95\u2B98-\u2BC8\u2BCA-\u2BFE\u2CE5-\u2CEA\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u32FE\u3300-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA828-\uA82B\uA836\uA837\uA839\uAA77-\uAA79\uFDFD\uFFE4\uFFE8\uFFED\uFFEE\uFFFC\uFFFD\U00010137-\U0001013F\U00010179-\U00010189\U0001018C-\U0001018E\U00010190-\U0001019B\U000101A0\U000101D0-\U000101FC\U00010877\U00010878\U00010AC8\U0001173F\U00016B3C-\U00016B3F\U00016B45\U0001BC9C\U0001D000-\U0001D0F5\U0001D100-\U0001D126\U0001D129-\U0001D164\U0001D16A-\U0001D16C\U0001D183\U0001D184\U0001D18C-\U0001D1A9\U0001D1AE-\U0001D1E8\U0001D200-\U0001D241\U0001D245\U0001D300-\U0001D356\U0001D800-\U0001D9FF\U0001DA37-\U0001DA3A\U0001DA6D-\U0001DA74\U0001DA76-\U0001DA83\U0001DA85\U0001DA86\U0001ECAC\U0001F000-\U0001F02B\U0001F030-\U0001F093\U0001F0A0-\U0001F0AE\U0001F0B1-\U0001F0BF\U0001F0C1-\U0001F0CF\U0001F0D1-\U0001F0F5\U0001F110-\U0001F16B\U0001F170-\U0001F1AC\U0001F1E6-\U0001F202\U0001F210-\U0001F23B\U0001F240-\U0001F248\U0001F250\U0001F251\U0001F260-\U0001F265\U0001F300-\U0001F3FA\U0001F400-\U0001F6D4\U0001F6E0-\U0001F6EC\U0001F6F0-\U0001F6F9\U0001F700-\U0001F773\U0001F780-\U0001F7D8\U0001F800-\U0001F80B\U0001F810-\U0001F847\U0001F850-\U0001F859\U0001F860-\U0001F887\U0001F890-\U0001F8AD\U0001F900-\U0001F90B\U0001F910-\U0001F93E\U0001F940-\U0001F970\U0001F973-\U0001F976\U0001F97A\U0001F97C-\U0001F9A2\U0001F9B0-\U0001F9B9\U0001F9C0-\U0001F9C2\U0001F9D0-\U0001F9FF\U0001FA60-\U0001FA6D]|(?<=[0-9])[+\-\*^](?=[0-9-])|(?<=[a-z\uFF41-\uFF5A\u00DF-\u00F6\u00F8-\u00FF\u0101\u0103\u0105\u0107\u0109\u010B\u010D\u010F\u0111\u0113\u0115\u0117\u0119\u011B\u011D\u011F\u0121\u0123\u0125\u0127\u0129\u012B\u012D\u012F\u0131\u0133\u0135\u0137\u0138\u013A\u013C\u013E\u0140\u0142\u0144\u0146\u0148\u0149\u014B\u014D\u014F\u0151\u0153\u0155\u0157\u0159\u015B\u015D\u015F\u0161\u0163\u0165\u0167\u0169\u016B\u016D\u016F\u0171\u0173\u0175\u0177\u017A\u017C\u017E\u017F\u0180\u0183\u0185\u0188\u018C\u018D\u0192\u0195\u0199-\u019B\u019E\u01A1\u01A3\u01A5\u01A8\u01AA\u01AB\u01AD\u01B0\u01B4\u01B6\u01B9\u01BA\u01BD-\u01BF\u01C6\u01C9\u01CC\u01CE\u01D0\u01D2\u01D4\u01D6\u01D8\u01DA\u01DC\u01DD\u01DF\u01E1\u01E3\u01E5\u01E7\u01E9\u01EB\u01ED\u01EF\u01F0\u01F3\u01F5\u01F9\u01FB\u01FD\u01FF\u0201\u0203\u0205\u0207\u0209\u020B\u020D\u020F\u0211\u0213\u0215\u0217\u0219\u021B\u021D\u021F\u0221\u0223\u0225\u0227\u0229\u022B\u022D\u022F\u0231\u0233-\u0239\u023C\u023F\u0240\u0242\u0247\u0249\u024B\u024D\u024F\u2C61\u2C65\u2C66\u2C68\u2C6A\u2C6C\u2C71\u2C73\u2C74\u2C76-\u2C7B\uA723\uA725\uA727\uA729\uA72B\uA72D\uA72F-\uA731\uA733\uA735\uA737\uA739\uA73B\uA73D\uA73F\uA741\uA743\uA745\uA747\uA749\uA74B\uA74D\uA74F\uA751\uA753\uA755\uA757\uA759\uA75B\uA75D\uA75F\uA761\uA763\uA765\uA767\uA769\uA76B\uA76D\uA76F\uA771-\uA778\uA77A\uA77C\uA77F\uA781\uA783\uA785\uA787\uA78C\uA78E\uA791\uA793-\uA795\uA797\uA799\uA79B\uA79D\uA79F\uA7A1\uA7A3\uA7A5\uA7A7\uA7A9\uA7AF\uA7B5\uA7B7\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E01\u1E03\u1E05\u1E07\u1E09\u1E0B\u1E0D\u1E0F\u1E11\u1E13\u1E15\u1E17\u1E19\u1E1B\u1E1D\u1E1F\u1E21\u1E23\u1E25\u1E27\u1E29\u1E2B\u1E2D\u1E2F\u1E31\u1E33\u1E35\u1E37\u1E39\u1E3B\u1E3D\u1E3F\u1E41\u1E43\u1E45\u1E47\u1E49\u1E4B\u1E4D\u1E4F\u1E51\u1E53\u1E55\u1E57\u1E59\u1E5B\u1E5D\u1E5F\u1E61\u1E63\u1E65\u1E67\u1E69\u1E6B\u1E6D\u1E6F\u1E71\u1E73\u1E75\u1E77\u1E79\u1E7B\u1E7D\u1E7F\u1E81\u1E83\u1E85\u1E87\u1E89\u1E8B\u1E8D\u1E8F\u1E91\u1E93\u1E95-\u1E9D\u1E9F\u1EA1\u1EA3\u1EA5\u1EA7\u1EA9\u1EAB\u1EAD\u1EAF\u1EB1\u1EB3\u1EB5\u1EB7\u1EB9\u1EBB\u1EBD\u1EBF\u1EC1\u1EC3\u1EC5\u1EC7\u1EC9\u1ECB\u1ECD\u1ECF\u1ED1\u1ED3\u1ED5\u1ED7\u1ED9\u1EDB\u1EDD\u1EDF\u1EE1\u1EE3\u1EE5\u1EE7\u1EE9\u1EEB\u1EED\u1EEF\u1EF1\u1EF3\u1EF5\u1EF7\u1EF9\u1EFB\u1EFD\u1EFFёа-яәөүҗңһα-ωάέίόώήύа-щюяіїєґѓѕјљњќѐѝ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F\'"”“`‘´’‚,„»«「」『』()〔〕【】《》〈〉〈〉⟦⟧])\.(?=[A-Z\uFF21-\uFF3A\u00C0-\u00D6\u00D8-\u00DE\u0100\u0102\u0104\u0106\u0108\u010A\u010C\u010E\u0110\u0112\u0114\u0116\u0118\u011A\u011C\u011E\u0120\u0122\u0124\u0126\u0128\u012A\u012C\u012E\u0130\u0132\u0134\u0136\u0139\u013B\u013D\u013F\u0141\u0143\u0145\u0147\u014A\u014C\u014E\u0150\u0152\u0154\u0156\u0158\u015A\u015C\u015E\u0160\u0162\u0164\u0166\u0168\u016A\u016C\u016E\u0170\u0172\u0174\u0176\u0178\u0179\u017B\u017D\u0181\u0182\u0184\u0186\u0187\u0189-\u018B\u018E-\u0191\u0193\u0194\u0196-\u0198\u019C\u019D\u019F\u01A0\u01A2\u01A4\u01A6\u01A7\u01A9\u01AC\u01AE\u01AF\u01B1-\u01B3\u01B5\u01B7\u01B8\u01BC\u01C4\u01C7\u01CA\u01CD\u01CF\u01D1\u01D3\u01D5\u01D7\u01D9\u01DB\u01DE\u01E0\u01E2\u01E4\u01E6\u01E8\u01EA\u01EC\u01EE\u01F1\u01F4\u01F6-\u01F8\u01FA\u01FC\u01FE\u0200\u0202\u0204\u0206\u0208\u020A\u020C\u020E\u0210\u0212\u0214\u0216\u0218\u021A\u021C\u021E\u0220\u0222\u0224\u0226\u0228\u022A\u022C\u022E\u0230\u0232\u023A\u023B\u023D\u023E\u0241\u0243-\u0246\u0248\u024A\u024C\u024E\u2C60\u2C62-\u2C64\u2C67\u2C69\u2C6B\u2C6D-\u2C70\u2C72\u2C75\u2C7E\u2C7F\uA722\uA724\uA726\uA728\uA72A\uA72C\uA72E\uA732\uA734\uA736\uA738\uA73A\uA73C\uA73E\uA740\uA742\uA744\uA746\uA748\uA74A\uA74C\uA74E\uA750\uA752\uA754\uA756\uA758\uA75A\uA75C\uA75E\uA760\uA762\uA764\uA766\uA768\uA76A\uA76C\uA76E\uA779\uA77B\uA77D\uA77E\uA780\uA782\uA784\uA786\uA78B\uA78D\uA790\uA792\uA796\uA798\uA79A\uA79C\uA79E\uA7A0\uA7A2\uA7A4\uA7A6\uA7A8\uA7AA-\uA7AE\uA7B0-\uA7B4\uA7B6\uA7B8\u1E00\u1E02\u1E04\u1E06\u1E08\u1E0A\u1E0C\u1E0E\u1E10\u1E12\u1E14\u1E16\u1E18\u1E1A\u1E1C\u1E1E\u1E20\u1E22\u1E24\u1E26\u1E28\u1E2A\u1E2C\u1E2E\u1E30\u1E32\u1E34\u1E36\u1E38\u1E3A\u1E3C\u1E3E\u1E40\u1E42\u1E44\u1E46\u1E48\u1E4A\u1E4C\u1E4E\u1E50\u1E52\u1E54\u1E56\u1E58\u1E5A\u1E5C\u1E5E\u1E60\u1E62\u1E64\u1E66\u1E68\u1E6A\u1E6C\u1E6E\u1E70\u1E72\u1E74\u1E76\u1E78\u1E7A\u1E7C\u1E7E\u1E80\u1E82\u1E84\u1E86\u1E88\u1E8A\u1E8C\u1E8E\u1E90\u1E92\u1E94\u1E9E\u1EA0\u1EA2\u1EA4\u1EA6\u1EA8\u1EAA\u1EAC\u1EAE\u1EB0\u1EB2\u1EB4\u1EB6\u1EB8\u1EBA\u1EBC\u1EBE\u1EC0\u1EC2\u1EC4\u1EC6\u1EC8\u1ECA\u1ECC\u1ECE\u1ED0\u1ED2\u1ED4\u1ED6\u1ED8\u1EDA\u1EDC\u1EDE\u1EE0\u1EE2\u1EE4\u1EE6\u1EE8\u1EEA\u1EEC\u1EEE\u1EF0\u1EF2\u1EF4\u1EF6\u1EF8\u1EFA\u1EFC\u1EFEЁА-ЯӘӨҮҖҢҺΑ-ΩΆΈΊΌΏΉΎА-ЩЮЯІЇЄҐЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F\'"”“`‘´’‚,„»«「」『』()〔〕【】《》〈〉〈〉⟦⟧])|(?<=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F]),(?=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])|(?<=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F0-9])(?:-|–|—|--|---|——|~)(?=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])|(?<=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F0-9])[:<>=/](?=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])�token_match��url_match�
2
+ ��A�
3
+ � ��A� �'��A�'�''��A�''�'Cause��A�'CauseC�because�'Cos��A�'CosC�because�'Coz��A�'CozC�because�'Cuz��A�'CuzC�because�'S��A�'SC�'s�'bout��A�'boutC�about�'cause��A�'causeC�because�'cos��A�'cosC�because�'coz��A�'cozC�because�'cuz��A�'cuzC�because�'d��A�'d�'em��A�'emC�them�'ll��A�'llC�will�'nuff��A�'nuffC�enough�'re��A�'reC�are�'s��A�'sC�'s�(*_*)��A�(*_*)�(-8��A�(-8�(-:��A�(-:�(-;��A�(-;�(-_-)��A�(-_-)�(._.)��A�(._.)�(:��A�(:�(;��A�(;�(=��A�(=�(>_<)��A�(>_<)�(^_^)��A�(^_^)�(o:��A�(o:�(¬_¬)��A�(¬_¬)�(ಠ_ಠ)��A�(ಠ_ಠ)�(╯°□°)╯︵┻━┻��A�(╯°□°)╯︵┻━┻�)-:��A�)-:�):��A�):�-_-��A�-_-�-__-��A�-__-�._.��A�._.�0.0��A�0.0�0.o��A�0.o�0_0��A�0_0�0_o��A�0_o�10a.m.��A�10�A�a.m.C�a.m.�10am��A�10�A�amC�a.m.�10p.m.��A�10�A�p.m.C�p.m.�10pm��A�10�A�pmC�p.m.�11a.m.��A�11�A�a.m.C�a.m.�11am��A�11�A�amC�a.m.�11p.m.��A�11�A�p.m.C�p.m.�11pm��A�11�A�pmC�p.m.�12a.m.��A�12�A�a.m.C�a.m.�12am��A�12�A�amC�a.m.�12p.m.��A�12�A�p.m.C�p.m.�12pm��A�12�A�pmC�p.m.�1a.m.��A�1�A�a.m.C�a.m.�1am��A�1�A�amC�a.m.�1p.m.��A�1�A�p.m.C�p.m.�1pm��A�1�A�pmC�p.m.�2a.m.��A�2�A�a.m.C�a.m.�2am��A�2�A�amC�a.m.�2p.m.��A�2�A�p.m.C�p.m.�2pm��A�2�A�pmC�p.m.�3a.m.��A�3�A�a.m.C�a.m.�3am��A�3�A�amC�a.m.�3p.m.��A�3�A�p.m.C�p.m.�3pm��A�3�A�pmC�p.m.�4a.m.��A�4�A�a.m.C�a.m.�4am��A�4�A�amC�a.m.�4p.m.��A�4�A�p.m.C�p.m.�4pm��A�4�A�pmC�p.m.�5a.m.��A�5�A�a.m.C�a.m.�5am��A�5�A�amC�a.m.�5p.m.��A�5�A�p.m.C�p.m.�5pm��A�5�A�pmC�p.m.�6a.m.��A�6�A�a.m.C�a.m.�6am��A�6�A�amC�a.m.�6p.m.��A�6�A�p.m.C�p.m.�6pm��A�6�A�pmC�p.m.�7a.m.��A�7�A�a.m.C�a.m.�7am��A�7�A�amC�a.m.�7p.m.��A�7�A�p.m.C�p.m.�7pm��A�7�A�pmC�p.m.�8)��A�8)�8-)��A�8-)�8-D��A�8-D�8D��A�8D�8a.m.��A�8�A�a.m.C�a.m.�8am��A�8�A�amC�a.m.�8p.m.��A�8�A�p.m.C�p.m.�8pm��A�8�A�pmC�p.m.�9a.m.��A�9�A�a.m.C�a.m.�9am��A�9�A�amC�a.m.�9p.m.��A�9�A�p.m.C�p.m.�9pm��A�9�A�pmC�p.m.�:'(��A�:'(�:')��A�:')�:'-(��A�:'-(�:'-)��A�:'-)�:(��A�:(�:((��A�:((�:(((��A�:(((�:()��A�:()�:)��A�:)�:))��A�:))�:)))��A�:)))�:*��A�:*�:-(��A�:-(�:-((��A�:-((�:-(((��A�:-(((�:-)��A�:-)�:-))��A�:-))�:-)))��A�:-)))�:-*��A�:-*�:-/��A�:-/�:-0��A�:-0�:-3��A�:-3�:->��A�:->�:-D��A�:-D�:-O��A�:-O�:-P��A�:-P�:-X��A�:-X�:-]��A�:-]�:-o��A�:-o�:-p��A�:-p�:-x��A�:-x�:-|��A�:-|�:-}��A�:-}�:/��A�:/�:0��A�:0�:1��A�:1�:3��A�:3�:>��A�:>�:D��A�:D�:O��A�:O�:P��A�:P�:X��A�:X�:]��A�:]�:o��A�:o�:o)��A�:o)�:p��A�:p�:x��A�:x�:|��A�:|�:}��A�:}�:’(��A�:’(�:’)��A�:’)�:’-(��A�:’-(�:’-)��A�:’-)�;)��A�;)�;-)��A�;-)�;-D��A�;-D�;D��A�;D�;_;��A�;_;�<.<��A�<.<�</3��A�</3�<3��A�<3�<33��A�<33�<333��A�<333�<space>��A�<space>�=(��A�=(�=)��A�=)�=/��A�=/�=3��A�=3�=D��A�=D�=[��A�=[�=]��A�=]�=|��A�=|�>.<��A�>.<�>.>��A�>.>�>:(��A�>:(�>:o��A�>:o�><(((*>��A�><(((*>�@_@��A�@_@�Adm.��A�Adm.�Ain't��A�Ai�A�n'tC�not�Aint��A�Ai�A�ntC�not�Ain’t��A�Ai�A�n’tC�not�Ak.��A�Ak.C�Alaska�Ala.��A�Ala.C�Alabama�Apr.��A�Apr.C�April�Aren't��A�AreC�are�A�n'tC�not�Arent��A�AreC�are�A�ntC�not�Aren’t��A�AreC�are�A�n’tC�not�Ariz.��A�Ariz.C�Arizona�Ark.��A�Ark.C�Arkansas�Aug.��A�Aug.C�August�Bros.��A�Bros.�C'mon��A�C'mC�come�A�on�C++��A�C++�Calif.��A�Calif.C�California�Can't��A�CaC�can�A�n'tC�not�Can't've��A�CaC�can�A�n'tC�not�A�'veC�have�Cannot��A�CanC�can�A�not�Cant��A�CaC�can�A�ntC�not�Cantve��A�CaC�can�A�ntC�not�A�veC�have�Can’t��A�CaC�can�A�n’tC�not�Can’t’ve��A�CaC�can�A�n’tC�not�A�’veC�have�Co.��A�Co.�Colo.��A�Colo.C�Colorado�Conn.��A�Conn.C�Connecticut�Corp.��A�Corp.�Could've��A�CouldC�could�A�'ve�Couldn't��A�CouldC�could�A�n'tC�not�Couldn't've��A�CouldC�could�A�n'tC�not�A�'veC�have�Couldnt��A�CouldC�could�A�ntC�not�Couldntve��A�CouldC�could�A�ntC�not�A�veC�have�Couldn’t��A�CouldC�could�A�n’tC�not�Couldn’t’ve��A�CouldC�could�A�n’tC�not�A�’veC�have�Couldve��A�CouldC�could�A�ve�Could’ve��A�CouldC�could�A�’ve�C’mon��A�C’mC�come�A�on�D.C.��A�D.C.�Daren't��A�DareC�dare�A�n'tC�not�Darent��A�DareC�dare�A�ntC�not�Daren’t��A�DareC�dare�A�n’tC�not�Dec.��A�Dec.C�December�Del.��A�Del.C�Delaware�Didn't��A�DidC�do�A�n'tC�not�Didn't've��A�DidC�do�A�n'tC�not�A�'veC�have�Didnt��A�DidC�do�A�ntC�not�Didntve��A�DidC�do�A�ntC�not�A�veC�have�Didn’t��A�DidC�do�A�n’tC�not�Didn’t’ve��A�DidC�do�A�n’tC�not�A�’veC�have�Doesn't��A�DoesC�does�A�n'tC�not�Doesn't've��A�DoesC�does�A�n'tC�not�A�'veC�have�Doesnt��A�DoesC�does�A�ntC�not�Doesntve��A�DoesC�does�A�ntC�not�A�veC�have�Doesn’t��A�DoesC�does�A�n’tC�not�Doesn’t’ve��A�DoesC�does�A�n’tC�not�A�’veC�have�Doin��A�DoinC�doing�Doin'��A�Doin'C�doing�Doin’��A�Doin’C�doing�Don't��A�DoC�do�A�n'tC�not�Don't've��A�DoC�do�A�n'tC�not�A�'veC�have�Dont��A�DoC�do�A�ntC�not�Dontve��A�DoC�do�A�ntC�not�A�veC�have�Don’t��A�DoC�do�A�n’tC�not�Don’t’ve��A�DoC�do�A�n’tC�not�A�’veC�have�Dr.��A�Dr.�E.G.��A�E.G.�E.g.��A�E.g.�Feb.��A�Feb.C�February�Fla.��A�Fla.C�Florida�Ga.��A�Ga.C�Georgia�Gen.��A�Gen.�Goin��A�GoinC�going�Goin'��A�Goin'C�going�Goin’��A�Goin’C�going�Gonna��A�GonC�going�A�naC�to�Gotta��A�GotC�got�A�taC�to�Gov.��A�Gov.�Hadn't��A�HadC�have�A�n'tC�not�Hadn't've��A�HadC�have�A�n'tC�not�A�'veC�have�Hadnt��A�HadC�have�A�ntC�not�Hadntve��A�HadC�have�A�ntC�not�A�veC�have�Hadn’t��A�HadC�have�A�n’tC�not�Hadn’t’ve��A�HadC�have�A�n’tC�not�A�’veC�have�Hasn't��A�HasC�has�A�n'tC�not�Hasnt��A�HasC�has�A�ntC�not�Hasn’t��A�HasC�has�A�n’tC�not�Haven't��A�HaveC�have�A�n'tC�not�Havent��A�HaveC�have�A�ntC�not�Haven’t��A�HaveC�have�A�n’tC�not�Havin��A�HavinC�having�Havin'��A�Havin'C�having�Havin’��A�Havin’C�having�He'd��A�HeC�he�A�'dC�'d�He'd've��A�HeC�he�A�'dC�would�A�'veC�have�He'll��A�HeC�he�A�'llC�will�He'll've��A�HeC�he�A�'llC�will�A�'veC�have�He's��A�HeC�he�A�'sC�'s�Hed��A�HeC�he�A�dC�'d�Hedve��A�HeC�he�A�dC�would�A�veC�have�Hellve��A�HeC�he�A�llC�will�A�veC�have�Hes��A�HeC�he�A�s�He’d��A�HeC�he�A�’dC�'d�He’d’ve��A�HeC�he�A�’dC�would�A�’veC�have�He’ll��A�HeC�he�A�’llC�will�He’ll’ve��A�HeC�he�A�’llC�will�A�’veC�have�He’s��A�HeC�he�A�’sC�'s�How'd��A�HowC�how�A�'dC�'d�How'd've��A�HowC�how�A�'dC�would�A�'veC�have�How'd'y��A�HowC�how�A�'d�A�'yC�you�How'll��A�HowC�how�A�'llC�will�How'll've��A�HowC�how�A�'llC�will�A�'veC�have�How're��A�HowC�how�A�'reC�are�How's��A�HowC�how�A�'sC�'s�How've��A�HowC�how�A�'ve�Howd��A�HowC�how�A�dC�'d�Howdve��A�HowC�how�A�dC�would�A�veC�have�Howll��A�HowC�how�A�llC�will�Howllve��A�HowC�how�A�llC�will�A�veC�have�Howre��A�HowC�how�A�reC�are�Hows��A�HowC�how�A�s�Howve��A�How�A�veC�have�How’d��A�HowC�how�A�’dC�'d�How’d’ve��A�HowC�how�A�’dC�would�A�’veC�have�How’d’y��A�HowC�how�A�’d�A�’yC�you�How’ll��A�HowC�how�A�’llC�will�How’ll’ve��A�HowC�how�A�’llC�will�A�’veC�have�How’re��A�HowC�how�A�’reC�are�How’s��A�HowC�how�A�’sC�'s�How’ve��A�HowC�how�A�’ve�I'd��A�IC�i�A�'dC�'d�I'd've��A�IC�i�A�'dC�would�A�'veC�have�I'll��A�IC�i�A�'llC�will�I'll've��A�IC�i�A�'llC�will�A�'veC�have�I'm��A�IC�i�A�'mC�am�I'ma��A�IC�i�A�'mC�am�A�aC�gonna�I've��A�IC�i�A�'veC�have�I.E.��A�I.E.�I.e.��A�I.e.�Ia.��A�Ia.C�Iowa�Id��A�IC�i�A�dC�'d�Id.��A�Id.C�Idaho�Idve��A�IC�i�A�dC�would�A�veC�have�Ill.��A�Ill.C�Illinois�Illve��A�IC�i�A�llC�will�A�veC�have�Im��A�IC�i�A�m�Ima��A�IC�i�A�mC�am�A�aC�gonna�Inc.��A�Inc.�Ind.��A�Ind.C�Indiana�Isn't��A�IsC�is�A�n'tC�not�Isnt��A�IsC�is�A�ntC�not�Isn’t��A�IsC�is�A�n’tC�not�It'd��A�ItC�it�A�'dC�'d�It'd've��A�ItC�it�A�'dC�would�A�'veC�have�It'll��A�ItC�it�A�'llC�will�It'll've��A�ItC�it�A�'llC�will�A�'veC�have�It's��A�ItC�it�A�'sC�'s�Itd��A�ItC�it�A�dC�'d�Itdve��A�ItC�it�A�dC�would�A�veC�have�Itll��A�ItC�it�A�llC�will�Itllve��A�ItC�it�A�llC�will�A�veC�have�It’d��A�ItC�it�A�’dC�'d�It’d’ve��A�ItC�it�A�’dC�would�A�’veC�have�It’ll��A�ItC�it�A�’llC�will�It’ll’ve��A�ItC�it�A�’llC�will�A�’veC�have�It’s��A�ItC�it�A�’sC�'s�Ive��A�IC�i�A�veC�have�I’d��A�IC�i�A�’dC�'d�I’d’ve��A�IC�i�A�’dC�would�A�’veC�have�I’ll��A�IC�i�A�’llC�will�I’ll’ve��A�IC�i�A�’llC�will�A�’veC�have�I’m��A�IC�i�A�’mC�am�I’ma��A�IC�i�A�’mC�am�A�aC�gonna�I’ve��A�IC�i�A�’veC�have�Jan.��A�Jan.C�January�Jr.��A�Jr.�Jul.��A�Jul.C�July�Jun.��A�Jun.C�June�Kan.��A�Kan.C�Kansas�Kans.��A�Kans.C�Kansas�Ky.��A�Ky.C�Kentucky�La.��A�La.C�Louisiana�Let's��A�LetC�let�A�'sC�us�Let’s��A�LetC�let�A�’sC�us�Lovin��A�LovinC�loving�Lovin'��A�Lovin'C�loving�Lovin’��A�Lovin’C�loving�Ltd.��A�Ltd.�Ma'am��A�Ma'amC�madam�Mar.��A�Mar.C�March�Mass.��A�Mass.C�Massachusetts�Mayn't��A�MayC�may�A�n'tC�not�Mayn't've��A�MayC�may�A�n'tC�not�A�'veC�have�Maynt��A�MayC�may�A�ntC�not�Mayntve��A�MayC�may�A�ntC�not�A�veC�have�Mayn’t��A�MayC�may�A�n’tC�not�Mayn’t’ve��A�MayC�may�A�n’tC�not�A�’veC�have�Ma’am��A�Ma’amC�madam�Md.��A�Md.�Messrs.��A�Messrs.�Mich.��A�Mich.C�Michigan�Might've��A�MightC�might�A�'ve�Mightn't��A�MightC�might�A�n'tC�not�Mightn't've��A�MightC�might�A�n'tC�not�A�'veC�have�Mightnt��A�MightC�might�A�ntC�not�Mightntve��A�MightC�might�A�ntC�not�A�veC�have�Mightn’t��A�MightC�might�A�n’tC�not�Mightn’t’ve��A�MightC�might�A�n’tC�not�A�’veC�have�Mightve��A�MightC�might�A�ve�Might’ve��A�MightC�might�A�’ve�Minn.��A�Minn.C�Minnesota�Miss.��A�Miss.C�Mississippi�Mo.��A�Mo.�Mont.��A�Mont.�Mr.��A�Mr.�Mrs.��A�Mrs.�Ms.��A�Ms.�Mt.��A�Mt.C�Mount�Must've��A�MustC�must�A�'ve�Mustn't��A�MustC�must�A�n'tC�not�Mustn't've��A�MustC�must�A�n'tC�not�A�'veC�have�Mustnt��A�MustC�must�A�ntC�not�Mustntve��A�MustC�must�A�ntC�not�A�veC�have�Mustn’t��A�MustC�must�A�n’tC�not�Mustn’t’ve��A�MustC�must�A�n’tC�not�A�’veC�have�Mustve��A�MustC�must�A�ve�Must’ve��A�MustC�must�A�’ve�N.C.��A�N.C.C�North Carolina�N.D.��A�N.D.C�North Dakota�N.H.��A�N.H.C�New Hampshire�N.J.��A�N.J.C�New Jersey�N.M.��A�N.M.C�New Mexico�N.Y.��A�N.Y.C�New York�Neb.��A�Neb.C�Nebraska�Nebr.��A�Nebr.C�Nebraska�Needn't��A�NeedC�need�A�n'tC�not�Needn't've��A�NeedC�need�A�n'tC�not�A�'veC�have�Neednt��A�NeedC�need�A�ntC�not�Needntve��A�NeedC�need�A�ntC�not�A�veC�have�Needn’t��A�NeedC�need�A�n’tC�not�Needn’t’ve��A�NeedC�need�A�n’tC�not�A�’veC�have�Nev.��A�Nev.C�Nevada�Not've��A�NotC�not�A�'veC�have�Nothin��A�NothinC�nothing�Nothin'��A�Nothin'C�nothing�Nothin’��A�Nothin’C�nothing�Notve��A�NotC�not�A�veC�have�Not’ve��A�NotC�not�A�’veC�have�Nov.��A�Nov.C�November�Nuthin��A�NuthinC�nothing�Nuthin'��A�Nuthin'C�nothing�Nuthin’��A�Nuthin’C�nothing�O'clock��A�O'clockC�o'clock�O.O��A�O.O�O.o��A�O.o�O_O��A�O_O�O_o��A�O_o�Oct.��A�Oct.C�October�Okla.��A�Okla.C�Oklahoma�Ol��A�OlC�old�Ol'��A�Ol'C�old�Ol’��A�Ol’C�old�Ore.��A�Ore.C�Oregon�Oughtn't��A�OughtC�ought�A�n'tC�not�Oughtn't've��A�OughtC�ought�A�n'tC�not�A�'veC�have�Oughtnt��A�OughtC�ought�A�ntC�not�Oughtntve��A�OughtC�ought�A�ntC�not�A�veC�have�Oughtn’t��A�OughtC�ought�A�n’tC�not�Oughtn’t’ve��A�OughtC�ought�A�n’tC�not�A�’veC�have�O’clock��A�O’clockC�o'clock�Pa.��A�Pa.C�Pennsylvania�Ph.D.��A�Ph.D.�Prof.��A�Prof.�Rep.��A�Rep.�Rev.��A�Rev.�S.C.��A�S.C.C�South Carolina�Sen.��A�Sen.�Sep.��A�Sep.C�September�Sept.��A�Sept.C�September�Shan't��A�ShaC�shall�A�n'tC�not�Shan't've��A�ShaC�shall�A�n'tC�not�A�'veC�have�Shant��A�ShaC�shall�A�ntC�not�Shantve��A�ShaC�shall�A�ntC�not�A�veC�have�Shan’t��A�ShaC�shall�A�n’tC�not�Shan’t’ve��A�ShaC�shall�A�n’tC�not�A�’veC�have�She'd��A�SheC�she�A�'dC�'d�She'd've��A�SheC�she�A�'dC�would�A�'veC�have�She'll��A�SheC�she�A�'llC�will�She'll've��A�SheC�she�A�'llC�will�A�'veC�have�She's��A�SheC�she�A�'sC�'s�Shedve��A�SheC�she�A�dC�would�A�veC�have�Shellve��A�SheC�she�A�llC�will�A�veC�have�Shes��A�SheC�she�A�s�She’d��A�SheC�she�A�’dC�'d�She’d’ve��A�SheC�she�A�’dC�would�A�’veC�have�She’ll��A�SheC�she�A�’llC�will�She’ll’ve��A�SheC�she�A�’llC�will�A�’veC�have�She’s��A�SheC�she�A�’sC�'s�Should've��A�ShouldC�should�A�'ve�Shouldn't��A�ShouldC�should�A�n'tC�not�Shouldn't've��A�ShouldC�should�A�n'tC�not�A�'veC�have�Shouldnt��A�ShouldC�should�A�ntC�not�Shouldntve��A�ShouldC�should�A�ntC�not�A�veC�have�Shouldn’t��A�ShouldC�should�A�n’tC�not�Shouldn’t’ve��A�ShouldC�should�A�n’tC�not�A�’veC�have�Shouldve��A�ShouldC�should�A�ve�Should’ve��A�ShouldC�should�A�’ve�Somethin��A�SomethinC�something�Somethin'��A�Somethin'C�something�Somethin’��A�Somethin’C�something�St.��A�St.�Tenn.��A�Tenn.C�Tennessee�That'd��A�ThatC�that�A�'dC�'d�That'd've��A�ThatC�that�A�'dC�would�A�'veC�have�That'll��A�ThatC�that�A�'llC�will�That'll've��A�ThatC�that�A�'llC�will�A�'veC�have�That's��A�ThatC�that�A�'sC�'s�Thatd��A�ThatC�that�A�dC�'d�Thatdve��A�ThatC�that�A�dC�would�A�veC�have�Thatll��A�ThatC�that�A�llC�will�Thatllve��A�ThatC�that�A�llC�will�A�veC�have�Thats��A�ThatC�that�A�s�That’d��A�ThatC�that�A�’dC�'d�That’d’ve��A�ThatC�that�A�’dC�would�A�’veC�have�That’ll��A�ThatC�that�A�’llC�will�That’ll’ve��A�ThatC�that�A�’llC�will�A�’veC�have�That’s��A�ThatC�that�A�’sC�'s�There'd��A�ThereC�there�A�'dC�'d�There'd've��A�ThereC�there�A�'dC�would�A�'veC�have�There'll��A�ThereC�there�A�'llC�will�There'll've��A�ThereC�there�A�'llC�will�A�'veC�have�There're��A�ThereC�there�A�'reC�are�There's��A�ThereC�there�A�'sC�'s�There've��A�ThereC�there�A�'ve�Thered��A�ThereC�there�A�dC�'d�Theredve��A�ThereC�there�A�dC�would�A�veC�have�Therell��A�ThereC�there�A�llC�will�Therellve��A�ThereC�there�A�llC�will�A�veC�have�Therere��A�ThereC�there�A�reC�are�Theres��A�ThereC�there�A�s�Thereve��A�There�A�veC�have�There’d��A�ThereC�there�A�’dC�'d�There’d’ve��A�ThereC�there�A�’dC�would�A�’veC�have�There’ll��A�ThereC�there�A�’llC�will�There’ll’ve��A�ThereC�there�A�’llC�will�A�’veC�have�There’re��A�ThereC�there�A�’reC�are�There’s��A�ThereC�there�A�’sC�'s�There’ve��A�ThereC�there�A�’ve�These'd��A�TheseC�these�A�'dC�'d�These'd've��A�TheseC�these�A�'dC�would�A�'veC�have�These'll��A�TheseC�these�A�'llC�will�These'll've��A�TheseC�these�A�'llC�will�A�'veC�have�These're��A�TheseC�these�A�'reC�are�These've��A�TheseC�these�A�'ve�Thesed��A�TheseC�these�A�dC�'d�Thesedve��A�TheseC�these�A�dC�would�A�veC�have�Thesell��A�TheseC�these�A�llC�will�Thesellve��A�TheseC�these�A�llC�will�A�veC�have�Thesere��A�TheseC�these�A�reC�are�Theseve��A�These�A�veC�have�These’d��A�TheseC�these�A�’dC�'d�These’d’ve��A�TheseC�these�A�’dC�would�A�’veC�have�These’ll��A�TheseC�these�A�’llC�will�These’ll’ve��A�TheseC�these�A�’llC�will�A�’veC�have�These’re��A�TheseC�these�A�’reC�are�These’ve��A�TheseC�these�A�’ve�They'd��A�TheyC�they�A�'dC�'d�They'd've��A�TheyC�they�A�'dC�would�A�'veC�have�They'll��A�TheyC�they�A�'llC�will�They'll've��A�TheyC�they�A�'llC�will�A�'veC�have�They're��A�TheyC�they�A�'reC�are�They've��A�TheyC�they�A�'veC�have�Theyd��A�TheyC�they�A�dC�'d�Theydve��A�TheyC�they�A�dC�would�A�veC�have�Theyll��A�TheyC�they�A�llC�will�Theyllve��A�TheyC�they�A�llC�will�A�veC�have�Theyre��A�TheyC�they�A�reC�are�Theyve��A�TheyC�they�A�veC�have�They’d��A�TheyC�they�A�’dC�'d�They’d’ve��A�TheyC�they�A�’dC�would�A�’veC�have�They’ll��A�TheyC�they�A�’llC�will�They’ll’ve��A�TheyC�they�A�’llC�will�A�’veC�have�They’re��A�TheyC�they�A�’reC�are�They’ve��A�TheyC�they�A�’veC�have�This'd��A�ThisC�this�A�'dC�'d�This'd've��A�ThisC�this�A�'dC�would�A�'veC�have�This'll��A�ThisC�this�A�'llC�will�This'll've��A�ThisC�this�A�'llC�will�A�'veC�have�This's��A�ThisC�this�A�'sC�'s�Thisd��A�ThisC�this�A�dC�'d�Thisdve��A�ThisC�this�A�dC�would�A�veC�have�Thisll��A�ThisC�this�A�llC�will�Thisllve��A�ThisC�this�A�llC�will�A�veC�have�Thiss��A�ThisC�this�A�s�This’d��A�ThisC�this�A�’dC�'d�This’d’ve��A�ThisC�this�A�’dC�would�A�’veC�have�This’ll��A�ThisC�this�A�’llC�will�This’ll’ve��A�ThisC�this�A�’llC�will�A�’veC�have�This’s��A�ThisC�this�A�’sC�'s�Those'd��A�ThoseC�those�A�'dC�'d�Those'd've��A�ThoseC�those�A�'dC�would�A�'veC�have�Those'll��A�ThoseC�those�A�'llC�will�Those'll've��A�ThoseC�those�A�'llC�will�A�'veC�have�Those're��A�ThoseC�those�A�'reC�are�Those've��A�ThoseC�those�A�'ve�Thosed��A�ThoseC�those�A�dC�'d�Thosedve��A�ThoseC�those�A�dC�would�A�veC�have�Thosell��A�ThoseC�those�A�llC�will�Thosellve��A�ThoseC�those�A�llC�will�A�veC�have�Thosere��A�ThoseC�those�A�reC�are�Thoseve��A�Those�A�veC�have�Those’d��A�ThoseC�those�A�’dC�'d�Those’d’ve��A�ThoseC�those�A�’dC�would�A�’veC�have�Those’ll��A�ThoseC�those�A�’llC�will�Those’ll’ve��A�ThoseC�those�A�’llC�will�A�’veC�have�Those’re��A�ThoseC�those�A�’reC�are�Those’ve��A�ThoseC�those�A�’ve�V.V��A�V.V�V_V��A�V_V�Va.��A�Va.C�Virginia�Wash.��A�Wash.C�Washington�Wasn't��A�WasC�was�A�n'tC�not�Wasnt��A�WasC�was�A�ntC�not�Wasn’t��A�WasC�was�A�n’tC�not�We'd��A�WeC�we�A�'dC�'d�We'd've��A�WeC�we�A�'dC�would�A�'veC�have�We'll��A�WeC�we�A�'llC�will�We'll've��A�WeC�we�A�'llC�will�A�'veC�have�We're��A�WeC�we�A�'reC�are�We've��A�WeC�we�A�'veC�have�Wed��A�WeC�we�A�dC�'d�Wedve��A�WeC�we�A�dC�would�A�veC�have�Wellve��A�WeC�we�A�llC�will�A�veC�have�Weren't��A�WereC�were�A�n'tC�not�Werent��A�WereC�were�A�ntC�not�Weren’t��A�WereC�were�A�n’tC�not�Weve��A�WeC�we�A�veC�have�We’d��A�WeC�we�A�’dC�'d�We’d’ve��A�WeC�we�A�’dC�would�A�’veC�have�We’ll��A�WeC�we�A�’llC�will�We’ll’ve��A�WeC�we�A�’llC�will�A�’veC�have�We’re��A�WeC�we�A�’reC�are�We’ve��A�WeC�we�A�’veC�have�What'd��A�WhatC�what�A�'dC�'d�What'd've��A�WhatC�what�A�'dC�would�A�'veC�have�What'll��A�WhatC�what�A�'llC�will�What'll've��A�WhatC�what�A�'llC�will�A�'veC�have�What're��A�WhatC�what�A�'reC�are�What's��A�WhatC�what�A�'sC�'s�What've��A�WhatC�what�A�'ve�Whatd��A�WhatC�what�A�dC�'d�Whatdve��A�WhatC�what�A�dC�would�A�veC�have�Whatll��A�WhatC�what�A�llC�will�Whatllve��A�WhatC�what�A�llC�will�A�veC�have�Whatre��A�WhatC�what�A�reC�are�Whats��A�WhatC�what�A�s�Whatve��A�What�A�veC�have�What’d��A�WhatC�what�A�’dC�'d�What’d’ve��A�WhatC�what�A�’dC�would�A�’veC�have�What’ll��A�WhatC�what�A�’llC�will�What’ll’ve��A�WhatC�what�A�’llC�will�A�’veC�have�What’re��A�WhatC�what�A�’reC�are�What’s��A�WhatC�what�A�’sC�'s�What’ve��A�WhatC�what�A�’ve�When'd��A�WhenC�when�A�'dC�'d�When'd've��A�WhenC�when�A�'dC�would�A�'veC�have�When'll��A�WhenC�when�A�'llC�will�When'll've��A�WhenC�when�A�'llC�will�A�'veC�have�When're��A�WhenC�when�A�'reC�are�When's��A�WhenC�when�A�'sC�'s�When've��A�WhenC�when�A�'ve�Whend��A�WhenC�when�A�dC�'d�Whendve��A�WhenC�when�A�dC�would�A�veC�have�Whenll��A�WhenC�when�A�llC�will�Whenllve��A�WhenC�when�A�llC�will�A�veC�have�Whenre��A�WhenC�when�A�reC�are�Whens��A�WhenC�when�A�s�Whenve��A�When�A�veC�have�When’d��A�WhenC�when�A�’dC�'d�When’d’ve��A�WhenC�when�A�’dC�would�A�’veC�have�When’ll��A�WhenC�when�A�’llC�will�When’ll’ve��A�WhenC�when�A�’llC�will�A�’veC�have�When’re��A�WhenC�when�A�’reC�are�When’s��A�WhenC�when�A�’sC�'s�When’ve��A�WhenC�when�A�’ve�Where'd��A�WhereC�where�A�'dC�'d�Where'd've��A�WhereC�where�A�'dC�would�A�'veC�have�Where'll��A�WhereC�where�A�'llC�will�Where'll've��A�WhereC�where�A�'llC�will�A�'veC�have�Where're��A�WhereC�where�A�'reC�are�Where's��A�WhereC�where�A�'sC�'s�Where've��A�WhereC�where�A�'ve�Whered��A�WhereC�where�A�dC�'d�Wheredve��A�WhereC�where�A�dC�would�A�veC�have�Wherell��A�WhereC�where�A�llC�will�Wherellve��A�WhereC�where�A�llC�will�A�veC�have�Wherere��A�WhereC�where�A�reC�are�Wheres��A�WhereC�where�A�s�Whereve��A�Where�A�veC�have�Where’d��A�WhereC�where�A�’dC�'d�Where’d’ve��A�WhereC�where�A�’dC�would�A�’veC�have�Where’ll��A�WhereC�where�A�’llC�will�Where’ll’ve��A�WhereC�where�A�’llC�will�A�’veC�have�Where’re��A�WhereC�where�A�’reC�are�Where’s��A�WhereC�where�A�’sC�'s�Where’ve��A�WhereC�where�A�’ve�Who'd��A�WhoC�who�A�'dC�'d�Who'd've��A�WhoC�who�A�'dC�would�A�'veC�have�Who'll��A�WhoC�who�A�'llC�will�Who'll've��A�WhoC�who�A�'llC�will�A�'veC�have�Who're��A�WhoC�who�A�'reC�are�Who's��A�WhoC�who�A�'sC�'s�Who've��A�WhoC�who�A�'ve�Whod��A�WhoC�who�A�dC�'d�Whodve��A�WhoC�who�A�dC�would�A�veC�have�Wholl��A�WhoC�who�A�llC�will�Whollve��A�WhoC�who�A�llC�will�A�veC�have�Whos��A�WhoC�who�A�s�Whove��A�Who�A�veC�have�Who’d��A�WhoC�who�A�’dC�'d�Who’d’ve��A�WhoC�who�A�’dC�would�A�’veC�have�Who’ll��A�WhoC�who�A�’llC�will�Who’ll’ve��A�WhoC�who�A�’llC�will�A�’veC�have�Who’re��A�WhoC�who�A�’reC�are�Who’s��A�WhoC�who�A�’sC�'s�Who’ve��A�WhoC�who�A�’ve�Why'd��A�WhyC�why�A�'dC�'d�Why'd've��A�WhyC�why�A�'dC�would�A�'veC�have�Why'll��A�WhyC�why�A�'llC�will�Why'll've��A�WhyC�why�A�'llC�will�A�'veC�have�Why're��A�WhyC�why�A�'reC�are�Why's��A�WhyC�why�A�'sC�'s�Why've��A�WhyC�why�A�'ve�Whyd��A�WhyC�why�A�dC�'d�Whydve��A�WhyC�why�A�dC�would�A�veC�have�Whyll��A�WhyC�why�A�llC�will�Whyllve��A�WhyC�why�A�llC�will�A�veC�have�Whyre��A�WhyC�why�A�reC�are�Whys��A�WhyC�why�A�s�Whyve��A�Why�A�veC�have�Why’d��A�WhyC�why�A�’dC�'d�Why’d’ve��A�WhyC�why�A�’dC�would�A�’veC�have�Why’ll��A�WhyC�why�A�’llC�will�Why’ll’ve��A�WhyC�why�A�’llC�will�A�’veC�have�Why’re��A�WhyC�why�A�’reC�are�Why’s��A�WhyC�why�A�’sC�'s�Why’ve��A�WhyC�why�A�’ve�Wis.��A�Wis.C�Wisconsin�Won't��A�WoC�will�A�n'tC�not�Won't've��A�WoC�will�A�n'tC�not�A�'veC�have�Wont��A�WoC�will�A�ntC�not�Wontve��A�WoC�will�A�ntC�not�A�veC�have�Won’t��A�WoC�will�A�n’tC�not�Won’t’ve��A�WoC�will�A�n’tC�not�A�’veC�have�Would've��A�WouldC�would�A�'ve�Wouldn't��A�WouldC�would�A�n'tC�not�Wouldn't've��A�WouldC�would�A�n'tC�not�A�'veC�have�Wouldnt��A�WouldC�would�A�ntC�not�Wouldntve��A�WouldC�would�A�ntC�not�A�veC�have�Wouldn’t��A�WouldC�would�A�n’tC�not�Wouldn’t’ve��A�WouldC�would�A�n’tC�not�A�’veC�have�Wouldve��A�WouldC�would�A�ve�Would’ve��A�WouldC�would�A�’ve�XD��A�XD�XDD��A�XDD�You'd��A�YouC�you�A�'dC�'d�You'd've��A�YouC�you�A�'dC�would�A�'veC�have�You'll��A�YouC�you�A�'llC�will�You'll've��A�YouC�you�A�'llC�will�A�'veC�have�You're��A�YouC�you�A�'reC�are�You've��A�YouC�you�A�'veC�have�Youd��A�YouC�you�A�dC�'d�Youdve��A�YouC�you�A�dC�would�A�veC�have�Youll��A�YouC�you�A�llC�will�Youllve��A�YouC�you�A�llC�will�A�veC�have�Youre��A�YouC�you�A�reC�are�Youve��A�YouC�you�A�veC�have�You’d��A�YouC�you�A�’dC�'d�You’d’ve��A�YouC�you�A�’dC�would�A�’veC�have�You’ll��A�YouC�you�A�’llC�will�You’ll’ve��A�YouC�you�A�’llC�will�A�’veC�have�You’re��A�YouC�you�A�’reC�are�You’ve��A�YouC�you�A�’veC�have�[-:��A�[-:�[:��A�[:�[=��A�[=�\")��A�\")�\n��A�\n�\t��A�\t�]=��A�]=�^_^��A�^_^�^__^��A�^__^�^___^��A�^___^�a.��A�a.�a.m.��A�a.m.�ain't��A�ai�A�n'tC�not�aint��A�ai�A�ntC�not�ain’t��A�ai�A�n’tC�not�and/or��A�and/orC�and/or�aren't��A�areC�are�A�n'tC�not�arent��A�areC�are�A�ntC�not�aren’t��A�areC�are�A�n’tC�not�b.��A�b.�c'mon��A�c'mC�come�A�on�c.��A�c.�can't��A�caC�can�A�n'tC�not�can't've��A�caC�can�A�n'tC�not�A�'veC�have�cannot��A�can�A�not�cant��A�caC�can�A�ntC�not�cantve��A�caC�can�A�ntC�not�A�veC�have�can’t��A�caC�can�A�n’tC�not�can’t’ve��A�caC�can�A�n’tC�not�A�’veC�have�co.��A�co.�could've��A�couldC�could�A�'ve�couldn't��A�couldC�could�A�n'tC�not�couldn't've��A�couldC�could�A�n'tC�not�A�'veC�have�couldnt��A�couldC�could�A�ntC�not�couldntve��A�couldC�could�A�ntC�not�A�veC�have�couldn’t��A�couldC�could�A�n’tC�not�couldn’t’ve��A�couldC�could�A�n’tC�not�A�’veC�have�couldve��A�couldC�could�A�ve�could’ve��A�couldC�could�A�’ve�c’mon��A�c’mC�come�A�on�d.��A�d.�daren't��A�dareC�dare�A�n'tC�not�darent��A�dareC�dare�A�ntC�not�daren’t��A�dareC�dare�A�n’tC�not�didn't��A�didC�do�A�n'tC�not�didn't've��A�didC�do�A�n'tC�not�A�'veC�have�didnt��A�didC�do�A�ntC�not�didntve��A�didC�do�A�ntC�not�A�veC�have�didn’t��A�didC�do�A�n’tC�not�didn’t’ve��A�didC�do�A�n’tC�not�A�’veC�have�doesn't��A�doesC�does�A�n'tC�not�doesn't've��A�doesC�does�A�n'tC�not�A�'veC�have�doesnt��A�doesC�does�A�ntC�not�doesntve��A�doesC�does�A�ntC�not�A�veC�have�doesn’t��A�doesC�does�A�n’tC�not�doesn’t’ve��A�doesC�does�A�n’tC�not�A�’veC�have�doin��A�doinC�doing�doin'��A�doin'C�doing�doin’��A�doin’C�doing�don't��A�doC�do�A�n'tC�not�don't've��A�doC�do�A�n'tC�not�A�'veC�have�dont��A�doC�do�A�ntC�not�dontve��A�doC�do�A�ntC�not�A�veC�have�don’t��A�doC�do�A�n’tC�not�don’t’ve��A�doC�do�A�n’tC�not�A�’veC�have�e.��A�e.�e.g.��A�e.g.�em��A�emC�them�f.��A�f.�g.��A�g.�goin��A�goinC�going�goin'��A�goin'C�going�goin’��A�goin’C�going�gonna��A�gonC�going�A�naC�to�gotta��A�got�A�taC�to�h.��A�h.�hadn't��A�hadC�have�A�n'tC�not�hadn't've��A�hadC�have�A�n'tC�not�A�'veC�have�hadnt��A�hadC�have�A�ntC�not�hadntve��A�hadC�have�A�ntC�not�A�veC�have�hadn’t��A�hadC�have�A�n’tC�not�hadn’t’ve��A�hadC�have�A�n’tC�not�A�’veC�have�hasn't��A�hasC�has�A�n'tC�not�hasnt��A�hasC�has�A�ntC�not�hasn’t��A�hasC�has�A�n’tC�not�haven't��A�haveC�have�A�n'tC�not�havent��A�haveC�have�A�ntC�not�haven’t��A�haveC�have�A�n’tC�not�havin��A�havinC�having�havin'��A�havin'C�having�havin’��A�havin’C�having�he'd��A�heC�he�A�'dC�'d�he'd've��A�heC�he�A�'dC�would�A�'veC�have�he'll��A�heC�he�A�'llC�will�he'll've��A�heC�he�A�'llC�will�A�'veC�have�he's��A�heC�he�A�'sC�'s�hed��A�heC�he�A�dC�'d�hedve��A�heC�he�A�dC�would�A�veC�have�hellve��A�heC�he�A�llC�will�A�veC�have�hes��A�heC�he�A�s�he’d��A�heC�he�A�’dC�'d�he’d’ve��A�heC�he�A�’dC�would�A�’veC�have�he’ll��A�heC�he�A�’llC�will�he’ll’ve��A�heC�he�A�’llC�will�A�’veC�have�he’s��A�heC�he�A�’sC�'s�how'd��A�howC�how�A�'dC�'d�how'd've��A�howC�how�A�'dC�would�A�'veC�have�how'd'y��A�how�A�'d�A�'yC�you�how'll��A�howC�how�A�'llC�will�how'll've��A�howC�how�A�'llC�will�A�'veC�have�how're��A�howC�how�A�'reC�are�how's��A�howC�how�A�'sC�'s�how've��A�howC�how�A�'ve�howd��A�howC�how�A�dC�'d�howdve��A�howC�how�A�dC�would�A�veC�have�howll��A�howC�how�A�llC�will�howllve��A�howC�how�A�llC�will�A�veC�have�howre��A�howC�how�A�reC�are�hows��A�howC�how�A�s�howve��A�how�A�veC�have�how’d��A�howC�how�A�’dC�'d�how’d’ve��A�howC�how�A���dC�would�A�’veC�have�how’d’y��A�how�A�’d�A�’yC�you�how’ll��A�howC�how�A�’llC�will�how’ll’ve��A�howC�how�A�’llC�will�A�’veC�have�how’re��A�howC�how�A�’reC�are�how’s��A�howC�how�A�’sC�'s�how’ve��A�howC�how�A�’ve�i'd��A�iC�i�A�'dC�'d�i'd've��A�iC�i�A�'dC�would�A�'veC�have�i'll��A�iC�i�A�'llC�will�i'll've��A�iC�i�A�'llC�will�A�'veC�have�i'm��A�iC�i�A�'mC�am�i'ma��A�iC�i�A�'mC�am�A�aC�gonna�i've��A�iC�i�A�'veC�have�i.��A�i.�i.e.��A�i.e.�id��A�iC�i�A�dC�'d�idve��A�iC�i�A�dC�would�A�veC�have�illve��A�iC�i�A�llC�will�A�veC�have�im��A�iC�i�A�m�ima��A�iC�i�A�mC�am�A�aC�gonna�isn't��A�isC�is�A�n'tC�not�isnt��A�isC�is�A�ntC�not�isn’t��A�isC�is�A�n’tC�not�it'd��A�itC�it�A�'dC�'d�it'd've��A�itC�it�A�'dC�would�A�'veC�have�it'll��A�itC�it�A�'llC�will�it'll've��A�itC�it�A�'llC�will�A�'veC�have�it's��A�itC�it�A�'sC�'s�itd��A�itC�it�A�dC�'d�itdve��A�itC�it�A�dC�would�A�veC�have�itll��A�itC�it�A�llC�will�itllve��A�itC�it�A�llC�will�A�veC�have�it’d��A�itC�it�A�’dC�'d�it’d’ve��A�itC�it�A�’dC�would�A�’veC�have�it’ll��A�itC�it�A�’llC�will�it’ll’ve��A�itC�it�A�’llC�will�A�’veC�have�it’s��A�itC�it�A�’sC�'s�ive��A�iC�i�A�veC�have�i’d��A�iC�i�A�’dC�'d�i’d’ve��A�iC�i�A�’dC�would�A�’veC�have�i’ll��A�iC�i�A�’llC�will�i’ll’ve��A�iC�i�A�’llC�will�A�’veC�have�i’m��A�iC�i�A�’mC�am�i’ma��A�iC�i�A�’mC�am�A�aC�gonna�i’ve��A�iC�i�A�’veC�have�j.��A�j.�k.��A�k.�l.��A�l.�let's��A�let�A�'sC�us�let’s��A�let�A�’sC�us�ll��A�llC�will�lovin��A�lovinC�loving�lovin'��A�lovin'C�loving�lovin’��A�lovin’C�loving�m.��A�m.�ma'am��A�ma'amC�madam�mayn't��A�mayC�may�A�n'tC�not�mayn't've��A�mayC�may�A�n'tC�not�A�'veC�have�maynt��A�mayC�may�A�ntC�not�mayntve��A�mayC�may�A�ntC�not�A�veC�have�mayn’t��A�mayC�may�A�n’tC�not�mayn’t’ve��A�mayC�may�A�n’tC�not�A�’veC�have�ma’am��A�ma’amC�madam�might've��A�mightC�might�A�'ve�mightn't��A�mightC�might�A�n'tC�not�mightn't've��A�mightC�might�A�n'tC�not�A�'veC�have�mightnt��A�mightC�might�A�ntC�not�mightntve��A�mightC�might�A�ntC�not�A�veC�have�mightn’t��A�mightC�might�A�n’tC�not�mightn’t’ve��A�mightC�might�A�n’tC�not�A�’veC�have�mightve��A�mightC�might�A�ve�might’ve��A�mightC�might�A�’ve�must've��A�mustC�must�A�'ve�mustn't��A�mustC�must�A�n'tC�not�mustn't've��A�mustC�must�A�n'tC�not�A�'veC�have�mustnt��A�mustC�must�A�ntC�not�mustntve��A�mustC�must�A�ntC�not�A�veC�have�mustn’t��A�mustC�must�A�n’tC�not�mustn’t’ve��A�mustC�must�A�n’tC�not�A�’veC�have�mustve��A�mustC�must�A�ve�must’ve��A�mustC�must�A�’ve�n.��A�n.�needn't��A�needC�need�A�n'tC�not�needn't've��A�needC�need�A�n'tC�not�A�'veC�have�neednt��A�needC�need�A�ntC�not�needntve��A�needC�need�A�ntC�not�A�veC�have�needn’t��A�needC�need�A�n’tC�not�needn’t’ve��A�needC�need�A�n’tC�not�A�’veC�have�not've��A�not�A�'veC�have�nothin��A�nothinC�nothing�nothin'��A�nothin'C�nothing�nothin’��A�nothin’C�nothing�notve��A�not�A�veC�have�not’ve��A�not�A�’veC�have�nuff��A�nuffC�enough�nuthin��A�nuthinC�nothing�nuthin'��A�nuthin'C�nothing�nuthin’��A�nuthin’C�nothing�o'clock��A�o'clockC�o'clock�o.��A�o.�o.0��A�o.0�o.O��A�o.O�o.o��A�o.o�o_0��A�o_0�o_O��A�o_O�o_o��A�o_o�ol��A�olC�old�ol'��A�ol'C�old�ol’��A�ol’C�old�oughtn't��A�oughtC�ought�A�n'tC�not�oughtn't've��A�oughtC�ought�A�n'tC�not�A�'veC�have�oughtnt��A�oughtC�ought�A�ntC�not�oughtntve��A�oughtC�ought�A�ntC�not�A�veC�have�oughtn’t��A�oughtC�ought�A�n’tC�not�oughtn’t’ve��A�oughtC�ought�A�n’tC�not�A�’veC�have�o’clock��A�o’clockC�o'clock�p.��A�p.�p.m.��A�p.m.�q.��A�q.�r.��A�r.�s.��A�s.�shan't��A�shaC�shall�A�n'tC�not�shan't've��A�shaC�shall�A�n'tC�not�A�'veC�have�shant��A�shaC�shall�A�ntC�not�shantve��A�shaC�shall�A�ntC�not�A�veC�have�shan’t��A�shaC�shall�A�n’tC�not�shan’t’ve��A�shaC�shall�A�n’tC�not�A�’veC�have�she'd��A�sheC�she�A�'dC�'d�she'd've��A�sheC�she�A�'dC�would�A�'veC�have�she'll��A�sheC�she�A�'llC�will�she'll've��A�sheC�she�A�'llC�will�A�'veC�have�she's��A�sheC�she�A�'sC�'s�shedve��A�sheC�she�A�dC�would�A�veC�have�shellve��A�sheC�she�A�llC�will�A�veC�have�shes��A�sheC�she�A�s�she’d��A�sheC�she�A�’dC�'d�she’d’ve��A�sheC�she�A�’dC�would�A�’veC�have�she’ll��A�sheC�she�A�’llC�will�she’ll’ve��A�sheC�she�A�’llC�will�A�’veC�have�she’s��A�sheC�she�A�’sC�'s�should've��A�shouldC�should�A�'ve�shouldn't��A�shouldC�should�A�n'tC�not�shouldn't've��A�shouldC�should�A�n'tC�not�A�'veC�have�shouldnt��A�shouldC�should�A�ntC�not�shouldntve��A�shouldC�should�A�ntC�not�A�veC�have�shouldn’t��A�shouldC�should�A�n’tC�not�shouldn’t’ve��A�shouldC�should�A�n’tC�not�A�’veC�have�shouldve��A�shouldC�should�A�ve�should’ve��A�shouldC�should�A�’ve�somethin��A�somethinC�something�somethin'��A�somethin'C�something�somethin’��A�somethin’C�something�t.��A�t.�that'd��A�thatC�that�A�'dC�'d�that'd've��A�thatC�that�A�'dC�would�A�'veC�have�that'll��A�thatC�that�A�'llC�will�that'll've��A�thatC�that�A�'llC�will�A�'veC�have�that's��A�thatC�that�A�'sC�'s�thatd��A�thatC�that�A�dC�'d�thatdve��A�thatC�that�A�dC�would�A�veC�have�thatll��A�thatC�that�A�llC�will�thatllve��A�thatC�that�A�llC�will�A�veC�have�thats��A�thatC�that�A�s�that’d��A�thatC�that�A�’dC�'d�that’d’ve��A�thatC�that�A�’dC�would�A�’veC�have�that’ll��A�thatC�that�A�’llC�will�that’ll’ve��A�thatC�that�A�’llC�will�A�’veC�have�that’s��A�thatC�that�A�’sC�'s�there'd��A�thereC�there�A�'dC�'d�there'd've��A�thereC�there�A�'dC�would�A�'veC�have�there'll��A�thereC�there�A�'llC�will�there'll've��A�thereC�there�A�'llC�will�A�'veC�have�there're��A�thereC�there�A�'reC�are�there's��A�thereC�there�A�'sC�'s�there've��A�thereC�there�A�'ve�thered��A�thereC�there�A�dC�'d�theredve��A�thereC�there�A�dC�would�A�veC�have�therell��A�thereC�there�A�llC�will�therellve��A�thereC�there�A�llC�will�A�veC�have�therere��A�thereC�there�A�reC�are�theres��A�thereC�there�A�s�thereve��A�there�A�veC�have�there’d��A�thereC�there�A�’dC�'d�there’d’ve��A�thereC�there�A�’dC�would�A�’veC�have�there’ll��A�thereC�there�A�’llC�will�there’ll’ve��A�thereC�there�A�’llC�will�A�’veC�have�there’re��A�thereC�there�A�’reC�are�there’s��A�thereC�there�A�’sC�'s�there’ve��A�thereC�there�A�’ve�these'd��A�theseC�these�A�'dC�'d�these'd've��A�theseC�these�A�'dC�would�A�'veC�have�these'll��A�theseC�these�A�'llC�will�these'll've��A�theseC�these�A�'llC�will�A�'veC�have�these're��A�theseC�these�A�'reC�are�these've��A�theseC�these�A�'ve�thesed��A�theseC�these�A�dC�'d�thesedve��A�theseC�these�A�dC�would�A�veC�have�thesell��A�theseC�these�A�llC�will�thesellve��A�theseC�these�A�llC�will�A�veC�have�thesere��A�theseC�these�A�reC�are�theseve��A�these�A�veC�have�these’d��A�theseC�these�A�’dC�'d�these’d’ve��A�theseC�these�A�’dC�would�A�’veC�have�these’ll��A�theseC�these�A�’llC�will�these’ll’ve��A�theseC�these�A�’llC�will�A�’veC�have�these’re��A�theseC�these�A�’reC�are�these’ve��A�theseC�these�A�’ve�they'd��A�theyC�they�A�'dC�'d�they'd've��A�theyC�they�A�'dC�would�A�'veC�have�they'll��A�theyC�they�A�'llC�will�they'll've��A�theyC�they�A�'llC�will�A�'veC�have�they're��A�theyC�they�A�'reC�are�they've��A�theyC�they�A�'veC�have�theyd��A�theyC�they�A�dC�'d�theydve��A�theyC�they�A�dC�would�A�veC�have�theyll��A�theyC�they�A�llC�will�theyllve��A�theyC�they�A�llC�will�A�veC�have�theyre��A�theyC�they�A�reC�are�theyve��A�theyC�they�A�veC�have�they’d��A�theyC�they�A�’dC�'d�they’d’ve��A�theyC�they�A�’dC�would�A�’veC�have�they’ll��A�theyC�they�A�’llC�will�they’ll’ve��A�theyC�they�A�’llC�will�A�’veC�have�they’re��A�theyC�they�A�’reC�are�they’ve��A�theyC�they�A�’veC�have�this'd��A�thisC�this�A�'dC�'d�this'd've��A�thisC�this�A�'dC�would�A�'veC�have�this'll��A�thisC�this�A�'llC�will�this'll've��A�thisC�this�A�'llC�will�A�'veC�have�this's��A�thisC�this�A�'sC�'s�thisd��A�thisC�this�A�dC�'d�thisdve��A�thisC�this�A�dC�would�A�veC�have�thisll��A�thisC�this�A�llC�will�thisllve��A�thisC�this�A�llC�will�A�veC�have�thiss��A�thisC�this�A�s�this’d��A�thisC�this�A�’dC�'d�this’d’ve��A�thisC�this�A�’dC�would�A�’veC�have�this’ll��A�thisC�this�A�’llC�will�this’ll’ve��A�thisC�this�A�’llC�will�A�’veC�have�this’s��A�thisC�this�A�’sC�'s�those'd��A�thoseC�those�A�'dC�'d�those'd've��A�thoseC�those�A�'dC�would�A�'veC�have�those'll��A�thoseC�those�A�'llC�will�those'll've��A�thoseC�those�A�'llC�will�A�'veC�have�those're��A�thoseC�those�A�'reC�are�those've��A�thoseC�those�A�'ve�thosed��A�thoseC�those�A�dC�'d�thosedve��A�thoseC�those�A�dC�would�A�veC�have�thosell��A�thoseC�those�A�llC�will�thosellve��A�thoseC�those�A�llC�will�A�veC�have�thosere��A�thoseC�those�A�reC�are�thoseve��A�those�A�veC�have�those’d��A�thoseC�those�A�’dC�'d�those’d’ve��A�thoseC�those�A�’dC�would�A�’veC�have�those’ll��A�thoseC�those�A�’llC�will�those’ll’ve��A�thoseC�those�A�’llC�will�A�’veC�have�those’re��A�thoseC�those�A�’reC�are�those’ve��A�thoseC�those�A�’ve�u.��A�u.�v.��A�v.�v.s.��A�v.s.�v.v��A�v.v�v_v��A�v_v�vs.��A�vs.�w.��A�w.�w/o��A�w/oC�without�wasn't��A�wasC�was�A�n'tC�not�wasnt��A�wasC�was�A�ntC�not�wasn’t��A�wasC�was�A�n’tC�not�we'd��A�weC�we�A�'dC�'d�we'd've��A�weC�we�A�'dC�would�A�'veC�have�we'll��A�weC�we�A�'llC�will�we'll've��A�weC�we�A�'llC�will�A�'veC�have�we're��A�weC�we�A�'reC�are�we've��A�weC�we�A�'veC�have�wed��A�weC�we�A�dC�'d�wedve��A�weC�we�A�dC�would�A�veC�have�wellve��A�weC�we�A�llC�will�A�veC�have�weren't��A�wereC�were�A�n'tC�not�werent��A�wereC�were�A�ntC�not�weren’t��A�wereC�were�A�n’tC�not�weve��A�weC�we�A�veC�have�we’d��A�weC�we�A�’dC�'d�we’d’ve��A�weC�we�A�’dC�would�A�’veC�have�we’ll��A�weC�we�A�’llC�will�we’ll’ve��A�weC�we�A�’llC�will�A�’veC�have�we’re��A�weC�we�A�’reC�are�we’ve��A�weC�we�A�’veC�have�what'd��A�whatC�what�A�'dC�'d�what'd've��A�whatC�what�A�'dC�would�A�'veC�have�what'll��A�whatC�what�A�'llC�will�what'll've��A�whatC�what�A�'llC�will�A�'veC�have�what're��A�whatC�what�A�'reC�are�what's��A�whatC�what�A�'sC�'s�what've��A�whatC�what�A�'ve�whatd��A�whatC�what�A�dC�'d�whatdve��A�whatC�what�A�dC�would�A�veC�have�whatll��A�whatC�what�A�llC�will�whatllve��A�whatC�what�A�llC�will�A�veC�have�whatre��A�whatC�what�A�reC�are�whats��A�whatC�what�A�s�whatve��A�what�A�veC�have�what’d��A�whatC�what�A�’dC�'d�what’d’ve��A�whatC�what�A�’dC�would�A�’veC�have�what’ll��A�whatC�what�A�’llC�will�what’ll’ve��A�whatC�what�A�’llC�will�A�’veC�have�what’re��A�whatC�what�A�’reC�are�what’s��A�whatC�what�A�’sC�'s�what’ve��A�whatC�what�A�’ve�when'd��A�whenC�when�A�'dC�'d�when'd've��A�whenC�when�A�'dC�would�A�'veC�have�when'll��A�whenC�when�A�'llC�will�when'll've��A�whenC�when�A�'llC�will�A�'veC�have�when're��A�whenC�when�A�'reC�are�when's��A�whenC�when�A�'sC�'s�when've��A�whenC�when�A�'ve�whend��A�whenC�when�A�dC�'d�whendve��A�whenC�when�A�dC�would�A�veC�have�whenll��A�whenC�when�A�llC�will�whenllve��A�whenC�when�A�llC�will�A�veC�have�whenre��A�whenC�when�A�reC�are�whens��A�whenC�when�A�s�whenve��A�when�A�veC�have�when’d��A�whenC�when�A�’dC�'d�when’d’ve��A�whenC�when�A�’dC�would�A�’veC�have�when’ll��A�whenC�when�A�’llC�will�when’ll’ve��A�whenC�when�A�’llC�will�A�’veC�have�when’re��A�whenC�when�A�’reC�are�when’s��A�whenC�when�A�’sC�'s�when’ve��A�whenC�when�A�’ve�where'd��A�whereC�where�A�'dC�'d�where'd've��A�whereC�where�A�'dC�would�A�'veC�have�where'll��A�whereC�where�A�'llC�will�where'll've��A�whereC�where�A�'llC�will�A�'veC�have�where're��A�whereC�where�A�'reC�are�where's��A�whereC�where�A�'sC�'s�where've��A�whereC�where�A�'ve�whered��A�whereC�where�A�dC�'d�wheredve��A�whereC�where�A�dC�would�A�veC�have�wherell��A�whereC�where�A�llC�will�wherellve��A�whereC�where�A�llC�will�A�veC�have�wherere��A�whereC�where�A�reC�are�wheres��A�whereC�where�A�s�whereve��A�where�A�veC�have�where’d��A�whereC�where�A�’dC�'d�where’d’ve��A�whereC�where�A�’dC�would�A�’veC�have�where’ll��A�whereC�where�A�’llC�will�where’ll’ve��A�whereC�where�A�’llC�will�A�’veC�have�where’re��A�whereC�where�A�’reC�are�where’s��A�whereC�where�A�’sC�'s�where’ve��A�whereC�where�A�’ve�who'd��A�whoC�who�A�'dC�'d�who'd've��A�whoC�who�A�'dC�would�A�'veC�have�who'll��A�whoC�who�A�'llC�will�who'll've��A�whoC�who�A�'llC�will�A�'veC�have�who're��A�whoC�who�A�'reC�are�who's��A�whoC�who�A�'sC�'s�who've��A�whoC�who�A�'ve�whod��A�whoC�who�A�dC�'d�whodve��A�whoC�who�A�dC�would�A�veC�have�wholl��A�whoC�who�A�llC�will�whollve��A�whoC�who�A�llC�will�A�veC�have�whos��A�whoC�who�A�s�whove��A�who�A�veC�have�who’d��A�whoC�who�A�’dC�'d�who’d’ve��A�whoC�who�A�’dC�would�A�’veC�have�who’ll��A�whoC�who�A�’llC�will�who’ll’ve��A�whoC�who�A�’llC�will�A�’veC�have�who’re��A�whoC�who�A�’reC�are�who’s��A�whoC�who�A�’sC�'s�who’ve��A�whoC�who�A�’ve�why'd��A�whyC�why�A�'dC�'d�why'd've��A�whyC�why�A�'dC�would�A�'veC�have�why'll��A�whyC�why�A�'llC�will�why'll've��A�whyC�why�A�'llC�will�A�'veC�have�why're��A�whyC�why�A�'reC�are�why's��A�whyC�why�A�'sC�'s�why've��A�whyC�why�A�'ve�whyd��A�whyC�why�A�dC�'d�whydve��A�whyC�why�A�dC�would�A�veC�have�whyll��A�whyC�why�A�llC�will�whyllve��A�whyC�why�A�llC�will�A�veC�have�whyre��A�whyC�why�A�reC�are�whys��A�whyC�why�A�s�whyve��A�why�A�veC�have�why’d��A�whyC�why�A�’dC�'d�why’d’ve��A�whyC�why�A�’dC�would�A�’veC�have�why’ll��A�whyC�why�A�’llC�will�why’ll’ve��A�whyC�why�A�’llC�will�A�’veC�have�why’re��A�whyC�why�A�’reC�are�why’s��A�whyC�why�A�’sC�'s�why’ve��A�whyC�why�A�’ve�won't��A�woC�will�A�n'tC�not�won't've��A�woC�will�A�n'tC�not�A�'veC�have�wont��A�woC�will�A�ntC�not�wontve��A�woC�will�A�ntC�not�A�veC�have�won’t��A�woC�will�A�n’tC�not�won’t’ve��A�woC�will�A�n’tC�not�A�’veC�have�would've��A�wouldC�would�A�'ve�wouldn't��A�wouldC�would�A�n'tC�not�wouldn't've��A�wouldC�would�A�n'tC�not�A�'veC�have�wouldnt��A�wouldC�would�A�ntC�not�wouldntve��A�wouldC�would�A�ntC�not�A�veC�have�wouldn’t��A�wouldC�would�A�n’tC�not�wouldn’t’ve��A�wouldC�would�A�n’tC�not�A�’veC�have�wouldve��A�wouldC�would�A�ve�would’ve��A�wouldC�would�A�’ve�x.��A�x.�xD��A�xD�xDD��A�xDD�y'all��A�y'C�you�A�all�y.��A�y.�yall��A�yC�you�A�all�you'd��A�youC�you�A�'dC�'d�you'd've��A�youC�you�A�'dC�would�A�'veC�have�you'll��A�youC�you�A�'llC�will�you'll've��A�youC�you�A�'llC�will�A�'veC�have�you're��A�youC�you�A�'reC�are�you've��A�youC�you�A�'veC�have�youd��A�youC�you�A�dC�'d�youdve��A�youC�you�A�dC�would�A�veC�have�youll��A�youC�you�A�llC�will�youllve��A�youC�you�A�llC�will�A�veC�have�youre��A�youC�you�A�reC�are�youve��A�youC�you�A�veC�have�you’d��A�youC�you�A�’dC�'d�you’d’ve��A�youC�you�A�’dC�would�A�’veC�have�you’ll��A�youC�you�A�’llC�will�you’ll’ve��A�youC�you�A�’llC�will�A�’veC�have�you’re��A�youC�you�A�’reC�are�you’ve��A�youC�you�A�’veC�have�y’all��A�y’C�you�A�all�z.��A�z.� ��A� C� �¯\(ツ)/¯��A�¯\(ツ)/¯�°C.��A�°�A�C�A�.�°F.��A�°�A�F�A�.�°K.��A�°�A�K�A�.�°c.��A�°�A�c�A�.�°f.��A�°�A�f�A�.�°k.��A�°�A�k�A�.�ä.��A�ä.�ö.��A�ö.�ü.��A�ü.�ಠ_ಠ��A�ಠ_ಠ�ಠ︵ಠ��A�ಠ︵ಠ�—��A�—�‘S��A�‘SC�'s�‘s��A�‘sC�'s�’��A�’�’Cause��A�’CauseC�because�’Cos��A�’CosC�because�’Coz��A�’CozC�because�’Cuz��A�’CuzC�because�’S��A�’SC�'s�’bout��A�’boutC�about�’cause��A�’causeC�because�’cos��A�’cosC�because�’coz��A�’cozC�because�’cuz��A�’cuzC�because�’d��A�’d�’em��A�’emC�them�’ll��A�’llC�will�’nuff��A�’nuffC�enough�’re��A�’reC�are�’s��A�’sC�'s�’’��A�’’�faster_heuristics�
transformer/cfg ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+ "max_batch_items":4096
3
+ }
transformer/model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7ca533612cbd82442fe52578cc8c98da642bcf51a07a1530479d8aea19b0d9be
3
+ size 502027402
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,6670 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ "\t",
3
+ "\n",
4
+ "\r",
5
+ " ",
6
+ " \r",
7
+ " ",
8
+ "\"",
9
+ "\"Activity",
10
+ "\"India",
11
+ "\"Japanese",
12
+ "\"Master",
13
+ "\"On",
14
+ "\"The",
15
+ "\"Thirteen",
16
+ "\"Xx",
17
+ "\"Xxx",
18
+ "\"Xxxxx",
19
+ "\"activity",
20
+ "\"india",
21
+ "\"japanese",
22
+ "\"master",
23
+ "\"on",
24
+ "\"the",
25
+ "\"thirteen",
26
+ "\"xx",
27
+ "\"xxx",
28
+ "\"xxxx",
29
+ "$",
30
+ "%",
31
+ "%-5",
32
+ "&",
33
+ "&D.",
34
+ "&d.",
35
+ "'",
36
+ "''",
37
+ "'-(",
38
+ "'-)",
39
+ "'Cause",
40
+ "'Cos",
41
+ "'Coz",
42
+ "'Cuz",
43
+ "'S",
44
+ "'X",
45
+ "'Xxx",
46
+ "'Xxxxx",
47
+ "'am",
48
+ "'bout",
49
+ "'cause",
50
+ "'cos",
51
+ "'coz",
52
+ "'cuz",
53
+ "'d",
54
+ "'em",
55
+ "'ll",
56
+ "'m",
57
+ "'nuff",
58
+ "'re",
59
+ "'s",
60
+ "'ve",
61
+ "'x",
62
+ "'xx",
63
+ "'xxx",
64
+ "'xxxx",
65
+ "'y",
66
+ "(",
67
+ "(((",
68
+ "(*>",
69
+ "(*_*)",
70
+ "(-8",
71
+ "(-:",
72
+ "(-;",
73
+ "(-_-)",
74
+ "(-d",
75
+ "(._.)",
76
+ "(:",
77
+ "(;",
78
+ "(=",
79
+ "(>_<)",
80
+ "(^_^)",
81
+ "(o:",
82
+ "(x:",
83
+ "(x_x)",
84
+ "(\u00ac_\u00ac)",
85
+ "(\u0ca0_\u0ca0)",
86
+ "(\u256f\u00b0\u25a1\u00b0\uff09\u256f\ufe35\u253b\u2501\u253b",
87
+ ")",
88
+ ")))",
89
+ ")-:",
90
+ ").2",
91
+ ").4",
92
+ ")/\u00af",
93
+ "):",
94
+ "*",
95
+ ",",
96
+ "-",
97
+ "-((",
98
+ "-))",
99
+ "-/",
100
+ "-0",
101
+ "-19",
102
+ "-3",
103
+ "-8",
104
+ "-D",
105
+ "-O",
106
+ "-P",
107
+ "-X",
108
+ "-_-",
109
+ "-__-",
110
+ "-d",
111
+ "-o",
112
+ "-p",
113
+ "-x",
114
+ "-|",
115
+ ".",
116
+ "..",
117
+ "...",
118
+ ".00",
119
+ ".01",
120
+ ".04",
121
+ ".08",
122
+ ".10",
123
+ ".11",
124
+ ".14",
125
+ ".18",
126
+ ".25",
127
+ ".26",
128
+ ".33",
129
+ ".34",
130
+ ".38",
131
+ ".40",
132
+ ".43",
133
+ ".45",
134
+ ".65",
135
+ ".75",
136
+ ".80",
137
+ ".83",
138
+ ".84",
139
+ ".85",
140
+ ".87",
141
+ ".C.",
142
+ ".D.",
143
+ ".E.",
144
+ ".G.",
145
+ ".H.",
146
+ ".J.",
147
+ ".M.",
148
+ ".S.",
149
+ ".Y.",
150
+ "._.",
151
+ ".e.",
152
+ ".g.",
153
+ ".m.",
154
+ ".s.",
155
+ "/",
156
+ "/3",
157
+ "/d",
158
+ "/or",
159
+ "0",
160
+ "0.0",
161
+ "0.1",
162
+ "0.2",
163
+ "0.4",
164
+ "0.7",
165
+ "0.8",
166
+ "0.o",
167
+ "000",
168
+ "004",
169
+ "005",
170
+ "00L",
171
+ "00l",
172
+ "010",
173
+ "011",
174
+ "012",
175
+ "013",
176
+ "015",
177
+ "016",
178
+ "018",
179
+ "019",
180
+ "020",
181
+ "021",
182
+ "022",
183
+ "023",
184
+ "024",
185
+ "025",
186
+ "030",
187
+ "032",
188
+ "040",
189
+ "047",
190
+ "050",
191
+ "0Gt",
192
+ "0_0",
193
+ "0_o",
194
+ "0gt",
195
+ "0th",
196
+ "1",
197
+ "1).4",
198
+ "1,355",
199
+ "1,442",
200
+ "1,637",
201
+ "1.0",
202
+ "1.1",
203
+ "1.2",
204
+ "1.4",
205
+ "1.5",
206
+ "1.8",
207
+ "1/-",
208
+ "10",
209
+ "10.1",
210
+ "10.2",
211
+ "100",
212
+ "100,000",
213
+ "1000",
214
+ "103.80",
215
+ "109",
216
+ "10a.m",
217
+ "10a.m.",
218
+ "10p.m",
219
+ "10p.m.",
220
+ "10th",
221
+ "11",
222
+ "11.4",
223
+ "11.5",
224
+ "114",
225
+ "116.34",
226
+ "118.75",
227
+ "119",
228
+ "11:4",
229
+ "11a.m",
230
+ "11a.m.",
231
+ "11p.m",
232
+ "11p.m.",
233
+ "12",
234
+ "12.18",
235
+ "120",
236
+ "12a.m",
237
+ "12a.m.",
238
+ "12p.m",
239
+ "12p.m.",
240
+ "13",
241
+ "13.1",
242
+ "13.6",
243
+ "130",
244
+ "134",
245
+ "135",
246
+ "135.40",
247
+ "13:47",
248
+ "13D",
249
+ "13d",
250
+ "14",
251
+ "14%.Shares",
252
+ "14%.shares",
253
+ "15",
254
+ "15.25",
255
+ "15.8",
256
+ "150",
257
+ "151.4%.One",
258
+ "151.4%.one",
259
+ "155",
260
+ "156.6",
261
+ "157",
262
+ "158bn",
263
+ "16",
264
+ "16,969.85",
265
+ "16.5",
266
+ "17",
267
+ "179",
268
+ "17th",
269
+ "18",
270
+ "18.1",
271
+ "18.3",
272
+ "180",
273
+ "19",
274
+ "19,036.83",
275
+ "1948",
276
+ "1950",
277
+ "1961",
278
+ "197.33",
279
+ "198",
280
+ "198.45",
281
+ "19th",
282
+ "1:4",
283
+ "1a.m",
284
+ "1a.m.",
285
+ "1bn",
286
+ "1p.m",
287
+ "1p.m.",
288
+ "2",
289
+ "2%-5",
290
+ "2,300",
291
+ "2,500",
292
+ "2,790",
293
+ "2,954",
294
+ "2.14",
295
+ "2.4",
296
+ "2.5",
297
+ "2.6",
298
+ "2.8",
299
+ "2.9",
300
+ "20",
301
+ "20.1",
302
+ "200",
303
+ "2004",
304
+ "2005",
305
+ "2010",
306
+ "2011",
307
+ "2012",
308
+ "2013",
309
+ "2015",
310
+ "2016",
311
+ "2018",
312
+ "2019",
313
+ "2020",
314
+ "2021",
315
+ "2021.However",
316
+ "2021.however",
317
+ "2022",
318
+ "2022.Consensus",
319
+ "2022.consensus",
320
+ "2023",
321
+ "2023\u2019-",
322
+ "2024",
323
+ "2025",
324
+ "2030",
325
+ "2030\"",
326
+ "2032",
327
+ "2040",
328
+ "2047.Expected",
329
+ "2047.While",
330
+ "2047.expected",
331
+ "2047.while",
332
+ "2050",
333
+ "21",
334
+ "21,664",
335
+ "213",
336
+ "215",
337
+ "215.1",
338
+ "218",
339
+ "22",
340
+ "22.4",
341
+ "220",
342
+ "23",
343
+ "23.04",
344
+ "23.Farmers",
345
+ "23.farmers",
346
+ "232",
347
+ "24",
348
+ "24,712.26",
349
+ "246",
350
+ "24th",
351
+ "25",
352
+ "25E",
353
+ "25L",
354
+ "25e",
355
+ "25l",
356
+ "26",
357
+ "262",
358
+ "265",
359
+ "27",
360
+ "28",
361
+ "28,480.10",
362
+ "28.Nirmal",
363
+ "28.nirmal",
364
+ "280",
365
+ "28030.84",
366
+ "281",
367
+ "285",
368
+ "29",
369
+ "29.2",
370
+ "291",
371
+ "296.75",
372
+ "2a.m",
373
+ "2a.m.",
374
+ "2p.m",
375
+ "2p.m.",
376
+ "3",
377
+ "3,134",
378
+ "3,198",
379
+ "3,777",
380
+ "3.01",
381
+ "3.1",
382
+ "3.11",
383
+ "3.34",
384
+ "3.4",
385
+ "3.5",
386
+ "3.6",
387
+ "3.9%.Buildings",
388
+ "3.9%.buildings",
389
+ "30",
390
+ "30\"",
391
+ "30.7",
392
+ "300",
393
+ "31",
394
+ "31,95,213",
395
+ "32",
396
+ "326",
397
+ "33",
398
+ "333",
399
+ "34",
400
+ "35",
401
+ "35,233.38",
402
+ "35.38",
403
+ "355",
404
+ "37",
405
+ "37,93,584",
406
+ "370",
407
+ "38",
408
+ "39",
409
+ "392",
410
+ "3a.m",
411
+ "3a.m.",
412
+ "3p.m",
413
+ "3p.m.",
414
+ "3\u2019-",
415
+ "4",
416
+ "4,180",
417
+ "4,280",
418
+ "4,326",
419
+ "4,96,047",
420
+ "4.0",
421
+ "4.00",
422
+ "4.1",
423
+ "4.4",
424
+ "4.8",
425
+ "40",
426
+ "40.1bn",
427
+ "41",
428
+ "42",
429
+ "42.8",
430
+ "422",
431
+ "426",
432
+ "43.6",
433
+ "44.4",
434
+ "442",
435
+ "45",
436
+ "45.4",
437
+ "48.7",
438
+ "49.2",
439
+ "49.9",
440
+ "494",
441
+ "49bn",
442
+ "4a.m",
443
+ "4a.m.",
444
+ "4p.m",
445
+ "4p.m.",
446
+ "4th",
447
+ "5",
448
+ "5,47,246",
449
+ "5,672",
450
+ "5.1",
451
+ "5.2",
452
+ "5.4",
453
+ "5.5",
454
+ "5.8",
455
+ "50",
456
+ "50.08",
457
+ "50.45",
458
+ "50.7",
459
+ "500",
460
+ "500L",
461
+ "500l",
462
+ "51",
463
+ "51.1",
464
+ "52.3.The",
465
+ "52.3.the",
466
+ "53.1",
467
+ "53.6",
468
+ "54",
469
+ "54,722",
470
+ "54.0",
471
+ "549.14",
472
+ "55.1",
473
+ "55.2",
474
+ "56.3",
475
+ "57.9",
476
+ "584",
477
+ "584375000",
478
+ "589",
479
+ "59.0",
480
+ "5G.",
481
+ "5a.m",
482
+ "5a.m.",
483
+ "5g.",
484
+ "5p.m",
485
+ "5p.m.",
486
+ "6",
487
+ "6.3",
488
+ "6.4",
489
+ "6.5",
490
+ "6.6",
491
+ "60",
492
+ "60.4",
493
+ "600",
494
+ "6000",
495
+ "60Gt",
496
+ "60gt",
497
+ "62",
498
+ "637",
499
+ "65",
500
+ "66.87",
501
+ "664",
502
+ "67,849.26",
503
+ "672",
504
+ "69",
505
+ "69.4",
506
+ "6G.",
507
+ "6a.m",
508
+ "6a.m.",
509
+ "6g.",
510
+ "6p.m",
511
+ "6p.m.",
512
+ "7",
513
+ "7.5",
514
+ "7.8",
515
+ "7.9",
516
+ "70",
517
+ "708",
518
+ "722",
519
+ "73",
520
+ "73.5",
521
+ "75",
522
+ "777",
523
+ "77th",
524
+ "79.18",
525
+ "790",
526
+ "7a.m",
527
+ "7a.m.",
528
+ "7p.m",
529
+ "7p.m.",
530
+ "7th",
531
+ "8",
532
+ "8)",
533
+ "8-",
534
+ "8-)",
535
+ "8-D",
536
+ "8-d",
537
+ "8.1",
538
+ "8.3",
539
+ "8.5",
540
+ "8.6",
541
+ "8.7",
542
+ "8.8bn",
543
+ "85",
544
+ "86,200.65",
545
+ "880",
546
+ "89,155",
547
+ "8D",
548
+ "8a.m",
549
+ "8a.m.",
550
+ "8bn",
551
+ "8d",
552
+ "8p.m",
553
+ "8p.m.",
554
+ "9",
555
+ "9.0",
556
+ "9.2",
557
+ "9.4",
558
+ "9.43",
559
+ "9.9",
560
+ "90",
561
+ "948",
562
+ "950",
563
+ "954",
564
+ "961",
565
+ "9a.m",
566
+ "9a.m.",
567
+ "9bn",
568
+ "9p.m",
569
+ "9p.m.",
570
+ "9th",
571
+ ":",
572
+ ":'(",
573
+ ":')",
574
+ ":'-(",
575
+ ":'-)",
576
+ ":(",
577
+ ":((",
578
+ ":(((",
579
+ ":()",
580
+ ":)",
581
+ ":))",
582
+ ":)))",
583
+ ":*",
584
+ ":-(",
585
+ ":-((",
586
+ ":-(((",
587
+ ":-)",
588
+ ":-))",
589
+ ":-)))",
590
+ ":-*",
591
+ ":-/",
592
+ ":-0",
593
+ ":-3",
594
+ ":->",
595
+ ":-D",
596
+ ":-O",
597
+ ":-P",
598
+ ":-X",
599
+ ":-]",
600
+ ":-d",
601
+ ":-o",
602
+ ":-p",
603
+ ":-x",
604
+ ":-|",
605
+ ":-}",
606
+ ":/",
607
+ ":0",
608
+ ":1",
609
+ ":3",
610
+ ":47",
611
+ ":>",
612
+ ":D",
613
+ ":O",
614
+ ":P",
615
+ ":X",
616
+ ":]",
617
+ ":d",
618
+ ":o",
619
+ ":o)",
620
+ ":p",
621
+ ":x",
622
+ ":x)",
623
+ ":|",
624
+ ":}",
625
+ ":\u2019(",
626
+ ":\u2019)",
627
+ ":\u2019-(",
628
+ ":\u2019-)",
629
+ ";",
630
+ ";)",
631
+ ";-)",
632
+ ";-D",
633
+ ";-X",
634
+ ";-d",
635
+ ";D",
636
+ ";X",
637
+ ";_;",
638
+ ";d",
639
+ "<",
640
+ "<.<",
641
+ "</3",
642
+ "</d",
643
+ "<3",
644
+ "<33",
645
+ "<333",
646
+ "<d",
647
+ "<dd",
648
+ "<ddd",
649
+ "<space>",
650
+ "<xxxx>",
651
+ "=",
652
+ "=(",
653
+ "=)",
654
+ "=/",
655
+ "=3",
656
+ "=D",
657
+ "=X",
658
+ "=[",
659
+ "=]",
660
+ "=d",
661
+ "=|",
662
+ ">",
663
+ ">.<",
664
+ ">.>",
665
+ ">:(",
666
+ ">:o",
667
+ ">:x",
668
+ "><(((*>",
669
+ "?",
670
+ "@",
671
+ "@_@",
672
+ "A",
673
+ "AASHA",
674
+ "ABB",
675
+ "ACI",
676
+ "ACK",
677
+ "ADA",
678
+ "AGR",
679
+ "AI",
680
+ "AIF",
681
+ "AIL",
682
+ "AMCAR",
683
+ "API",
684
+ "APIs",
685
+ "AR-",
686
+ "ARI",
687
+ "ASF",
688
+ "ASP",
689
+ "ATM",
690
+ "AUs",
691
+ "Aayog",
692
+ "Abdulrahman",
693
+ "About",
694
+ "Accenture",
695
+ "According",
696
+ "Act",
697
+ "Activity",
698
+ "Added",
699
+ "Additionally",
700
+ "Addressing",
701
+ "Adityanath",
702
+ "Adm",
703
+ "Adm.",
704
+ "Advisors",
705
+ "Affairs",
706
+ "After",
707
+ "Agency",
708
+ "Agri",
709
+ "Agricultural",
710
+ "Agriculture",
711
+ "Ahlia",
712
+ "Ai",
713
+ "AirFiber",
714
+ "Airtel",
715
+ "Ak",
716
+ "Ak.",
717
+ "Al",
718
+ "Ala",
719
+ "Ala.",
720
+ "Alabama",
721
+ "Alagarasan",
722
+ "Alaska",
723
+ "All",
724
+ "Alleging",
725
+ "Alliance",
726
+ "Alphabet",
727
+ "Also",
728
+ "Alternate",
729
+ "Alternatively",
730
+ "Although",
731
+ "Amazon",
732
+ "Amber",
733
+ "Ambika",
734
+ "AmeriCredit",
735
+ "America",
736
+ "American",
737
+ "Americans",
738
+ "Americas",
739
+ "Ammapalayam",
740
+ "Among",
741
+ "An",
742
+ "And",
743
+ "Anna",
744
+ "Another",
745
+ "Anthony",
746
+ "Anurag",
747
+ "Apparel",
748
+ "Apple",
749
+ "Approach",
750
+ "Apr",
751
+ "Apr.",
752
+ "April",
753
+ "Archean",
754
+ "Are",
755
+ "Area",
756
+ "Arena",
757
+ "Ariz",
758
+ "Ariz.",
759
+ "Arizona",
760
+ "Ark",
761
+ "Ark.",
762
+ "Arkansas",
763
+ "Around",
764
+ "Artificial",
765
+ "Arun",
766
+ "Arvinder",
767
+ "As",
768
+ "Aside",
769
+ "Assembly",
770
+ "Assessment",
771
+ "Association",
772
+ "At",
773
+ "Athavanad",
774
+ "Atma",
775
+ "Aug",
776
+ "Aug.",
777
+ "August",
778
+ "Aurobindo",
779
+ "Authority",
780
+ "Automatic",
781
+ "Automobile",
782
+ "Aviation",
783
+ "Azerbaijan",
784
+ "B",
785
+ "BASF",
786
+ "BENGALURU",
787
+ "BFSI",
788
+ "BS",
789
+ "BSE",
790
+ "BSS",
791
+ "Back",
792
+ "Baleno",
793
+ "Bang",
794
+ "Bangladesh",
795
+ "Bangladeshi",
796
+ "Bank",
797
+ "Banks",
798
+ "Baroda",
799
+ "Baroka",
800
+ "Bartolini",
801
+ "Basic",
802
+ "Basically",
803
+ "Because",
804
+ "Bechu",
805
+ "Bench",
806
+ "Benchmark",
807
+ "Besides",
808
+ "Best",
809
+ "Better",
810
+ "Between",
811
+ "Beyond",
812
+ "Bharat",
813
+ "Bhatti",
814
+ "Bhgwant",
815
+ "Bihar",
816
+ "Bill",
817
+ "Billion",
818
+ "Biotechnology",
819
+ "Board",
820
+ "BofA",
821
+ "Bonds",
822
+ "Boots",
823
+ "Both",
824
+ "Bothra",
825
+ "Branded",
826
+ "Broadcasting",
827
+ "Broadcom",
828
+ "Bros",
829
+ "Bros.",
830
+ "Buffett",
831
+ "Business",
832
+ "But",
833
+ "By",
834
+ "C",
835
+ "C'm",
836
+ "C++",
837
+ "C.",
838
+ "CAGR",
839
+ "CAR",
840
+ "CATCO2NVERS",
841
+ "CDMO",
842
+ "CEO",
843
+ "CETP",
844
+ "CHCs",
845
+ "CLSA",
846
+ "CMOs",
847
+ "CMR",
848
+ "CO2",
849
+ "CO2SMOS",
850
+ "COVID-19",
851
+ "CROs",
852
+ "CSPs",
853
+ "CY22",
854
+ "CYTD",
855
+ "Ca",
856
+ "Calif",
857
+ "Calif.",
858
+ "California",
859
+ "Call",
860
+ "Can",
861
+ "Canada",
862
+ "Canadian",
863
+ "Capital",
864
+ "Cards",
865
+ "Category",
866
+ "Cause",
867
+ "Centenary",
868
+ "Center",
869
+ "Central",
870
+ "Centre",
871
+ "Centres",
872
+ "Chand",
873
+ "Check",
874
+ "Chemical",
875
+ "Chemicals",
876
+ "Chemicals(link",
877
+ "Chicago",
878
+ "Chief",
879
+ "China",
880
+ "Chinese",
881
+ "Ciaz",
882
+ "Cisco",
883
+ "Civil",
884
+ "Classification",
885
+ "Climate",
886
+ "Co",
887
+ "Co.",
888
+ "CoEs",
889
+ "Code",
890
+ "Colo",
891
+ "Colo.",
892
+ "Colorado",
893
+ "Commerce",
894
+ "Commission",
895
+ "Committee",
896
+ "Common",
897
+ "Communication",
898
+ "Communications",
899
+ "Companies",
900
+ "Company",
901
+ "Concerns",
902
+ "Conn",
903
+ "Conn.",
904
+ "Connect",
905
+ "Connecticut",
906
+ "Constant",
907
+ "Construction",
908
+ "Content",
909
+ "Control",
910
+ "Convert",
911
+ "Cooperative",
912
+ "Corona",
913
+ "Coronavirus",
914
+ "Corp",
915
+ "Corp.",
916
+ "Corporate",
917
+ "Cos",
918
+ "Costs",
919
+ "Cotton",
920
+ "Could",
921
+ "Council",
922
+ "Coupled",
923
+ "Court",
924
+ "Covid",
925
+ "Coz",
926
+ "Create",
927
+ "Creating",
928
+ "Credit",
929
+ "Criteria",
930
+ "Crore",
931
+ "Crores",
932
+ "Currency",
933
+ "Current",
934
+ "Custom",
935
+ "Cuz",
936
+ "Cyient",
937
+ "C\u2019m",
938
+ "D",
939
+ "D.",
940
+ "D.C.",
941
+ "DECC",
942
+ "DMO",
943
+ "DP",
944
+ "DRDO",
945
+ "Dare",
946
+ "Data",
947
+ "Date",
948
+ "David",
949
+ "Dec",
950
+ "Dec.",
951
+ "December",
952
+ "Declared",
953
+ "Decomposer",
954
+ "Deep",
955
+ "Del",
956
+ "Del.",
957
+ "Delaware",
958
+ "Delhi",
959
+ "Demand",
960
+ "Department",
961
+ "Dependencies",
962
+ "Despite",
963
+ "Developing",
964
+ "Development",
965
+ "Dhanteras",
966
+ "Did",
967
+ "Digging",
968
+ "Direct",
969
+ "Director",
970
+ "Dissemination",
971
+ "Dividend",
972
+ "Do",
973
+ "Does",
974
+ "Doha",
975
+ "Doin",
976
+ "Doin'",
977
+ "Doin\u2019",
978
+ "Domestic",
979
+ "Donald",
980
+ "Donear",
981
+ "Dr",
982
+ "Dr.",
983
+ "Driven",
984
+ "Drones",
985
+ "During",
986
+ "E",
987
+ "E.",
988
+ "E.G.",
989
+ "E.g",
990
+ "E.g.",
991
+ "ECC",
992
+ "EPACK",
993
+ "ERS",
994
+ "ERs",
995
+ "ETF",
996
+ "ETFs",
997
+ "ETP",
998
+ "EU",
999
+ "EY",
1000
+ "Each",
1001
+ "Earth",
1002
+ "East",
1003
+ "Economic",
1004
+ "Economy",
1005
+ "Education",
1006
+ "Efforts",
1007
+ "Emkay",
1008
+ "Emphasizing",
1009
+ "Energy",
1010
+ "Engineering",
1011
+ "England",
1012
+ "English",
1013
+ "Enterprise",
1014
+ "Entrup",
1015
+ "Environmentally",
1016
+ "Eon",
1017
+ "Equities",
1018
+ "Equity",
1019
+ "Estate",
1020
+ "Europe",
1021
+ "European",
1022
+ "Even",
1023
+ "Excellence",
1024
+ "Excellences",
1025
+ "Exchange",
1026
+ "Executive",
1027
+ "Executives",
1028
+ "Exhibit",
1029
+ "F",
1030
+ "F&O",
1031
+ "F.",
1032
+ "FAANGs",
1033
+ "FADA",
1034
+ "FBY",
1035
+ "FCI",
1036
+ "FIIs",
1037
+ "FPI",
1038
+ "FPOs",
1039
+ "FPOs?and",
1040
+ "FSI",
1041
+ "FTSE",
1042
+ "FWA",
1043
+ "FY",
1044
+ "FY22",
1045
+ "FY24",
1046
+ "FY25E",
1047
+ "Facebook",
1048
+ "Family",
1049
+ "Farm",
1050
+ "Farmers",
1051
+ "FasalBimaYojna",
1052
+ "Feb",
1053
+ "Feb.",
1054
+ "February",
1055
+ "Fertilizers",
1056
+ "Finally",
1057
+ "Finance",
1058
+ "Financial",
1059
+ "First",
1060
+ "Fiserv",
1061
+ "Fitch",
1062
+ "Fixes",
1063
+ "Fla",
1064
+ "Fla.",
1065
+ "Florida",
1066
+ "For",
1067
+ "Foreign",
1068
+ "Fortnightly",
1069
+ "Forty",
1070
+ "Four",
1071
+ "Frankfurt",
1072
+ "Fraud",
1073
+ "Friday",
1074
+ "From",
1075
+ "Fronx",
1076
+ "Fund",
1077
+ "Funds",
1078
+ "Further",
1079
+ "Furthermore",
1080
+ "G",
1081
+ "GDP",
1082
+ "GICS",
1083
+ "GSDP",
1084
+ "GSVA",
1085
+ "GVA",
1086
+ "Ga",
1087
+ "Ga.",
1088
+ "Gahlot",
1089
+ "Gartner",
1090
+ "Gen",
1091
+ "Gen.",
1092
+ "General",
1093
+ "Georgia",
1094
+ "German",
1095
+ "Germany",
1096
+ "Ghosh",
1097
+ "Given",
1098
+ "Global",
1099
+ "Goin",
1100
+ "Goin'",
1101
+ "Going",
1102
+ "Goin\u2019",
1103
+ "Gon",
1104
+ "Google",
1105
+ "Got",
1106
+ "Gov",
1107
+ "Gov.",
1108
+ "Government",
1109
+ "Govindarajan",
1110
+ "Goyal",
1111
+ "Grama",
1112
+ "Grand",
1113
+ "Green",
1114
+ "Gross",
1115
+ "Group",
1116
+ "Growth",
1117
+ "Gro\u00dfe",
1118
+ "Gujarat",
1119
+ "H",
1120
+ "HCL",
1121
+ "HCs",
1122
+ "HVAC",
1123
+ "Had",
1124
+ "Haidar",
1125
+ "Harvard",
1126
+ "Has",
1127
+ "Have",
1128
+ "Havin",
1129
+ "Havin'",
1130
+ "Havin\u2019",
1131
+ "Hazardous",
1132
+ "He",
1133
+ "He's",
1134
+ "Head",
1135
+ "Health",
1136
+ "Held",
1137
+ "Hence",
1138
+ "Here",
1139
+ "He\u2019s",
1140
+ "Hi",
1141
+ "High",
1142
+ "Highlighting",
1143
+ "Himalayas",
1144
+ "Hindalco",
1145
+ "Hiring",
1146
+ "His",
1147
+ "Hong",
1148
+ "Households",
1149
+ "How",
1150
+ "How's",
1151
+ "However",
1152
+ "How\u2019s",
1153
+ "Hubs",
1154
+ "Hurun",
1155
+ "Hyundai",
1156
+ "I",
1157
+ "I.E.",
1158
+ "I.e",
1159
+ "I.e.",
1160
+ "IARI",
1161
+ "IBS",
1162
+ "ICAR",
1163
+ "ICAR-",
1164
+ "ICMR",
1165
+ "ICS",
1166
+ "IFP",
1167
+ "II",
1168
+ "IIOF",
1169
+ "IIs",
1170
+ "IMPS",
1171
+ "IOF",
1172
+ "IPA",
1173
+ "IPO",
1174
+ "IS",
1175
+ "ISM",
1176
+ "IST",
1177
+ "IST.Debjani",
1178
+ "IT",
1179
+ "ITI",
1180
+ "IYW",
1181
+ "Ia",
1182
+ "Ia.",
1183
+ "Id",
1184
+ "Id.",
1185
+ "Idaho",
1186
+ "If",
1187
+ "Ignis",
1188
+ "Ill",
1189
+ "Ill.",
1190
+ "Illegal",
1191
+ "Illinois",
1192
+ "Impact",
1193
+ "Implementation",
1194
+ "Important",
1195
+ "In",
1196
+ "Inc",
1197
+ "Inc.",
1198
+ "IncomeThe",
1199
+ "Ind",
1200
+ "Ind.",
1201
+ "Index",
1202
+ "India",
1203
+ "Indian",
1204
+ "Indiana",
1205
+ "Indians",
1206
+ "Industrial",
1207
+ "Industries",
1208
+ "Industry",
1209
+ "Ineffective",
1210
+ "Inegi",
1211
+ "Inflection",
1212
+ "Information",
1213
+ "Infosys",
1214
+ "Infrastructure",
1215
+ "Initiative",
1216
+ "Instead",
1217
+ "Institute",
1218
+ "Institutes",
1219
+ "Institutional",
1220
+ "Institutions",
1221
+ "Integrated",
1222
+ "Intelligence",
1223
+ "Inter",
1224
+ "Interim",
1225
+ "Internal",
1226
+ "International",
1227
+ "Internet",
1228
+ "Invesco",
1229
+ "Investmart",
1230
+ "Investment",
1231
+ "Investments",
1232
+ "InvestmentsThe",
1233
+ "Investors",
1234
+ "Iowa",
1235
+ "Ireland",
1236
+ "Is",
1237
+ "It",
1238
+ "It's",
1239
+ "Its",
1240
+ "It\u2019s",
1241
+ "J",
1242
+ "JSW",
1243
+ "Jan",
1244
+ "Jan.",
1245
+ "January",
1246
+ "Japan",
1247
+ "Japanese",
1248
+ "Jaspal",
1249
+ "Jefferies",
1250
+ "Jibun",
1251
+ "Jimny",
1252
+ "Jindal",
1253
+ "Jio",
1254
+ "John",
1255
+ "Joshi",
1256
+ "Jr",
1257
+ "Jr.",
1258
+ "Judge",
1259
+ "Jul",
1260
+ "Jul.",
1261
+ "July",
1262
+ "Jun",
1263
+ "Jun.",
1264
+ "June",
1265
+ "Justice",
1266
+ "Jyotiraditya",
1267
+ "K",
1268
+ "K.",
1269
+ "KCC",
1270
+ "KISAN",
1271
+ "KSY",
1272
+ "KVKs",
1273
+ "KYC",
1274
+ "Kailash",
1275
+ "Kalaignar",
1276
+ "Kan",
1277
+ "Kan.",
1278
+ "Kans",
1279
+ "Kans.",
1280
+ "Kansas",
1281
+ "Kapil",
1282
+ "Kapoor",
1283
+ "Karnataka",
1284
+ "Keltbray",
1285
+ "Kentucky",
1286
+ "Kerala",
1287
+ "Kharif",
1288
+ "Kisan",
1289
+ "Known",
1290
+ "Krishi",
1291
+ "KrishiVigyanKendras",
1292
+ "Kumaralingapuram",
1293
+ "Kunnu",
1294
+ "Kurian",
1295
+ "Kuwait",
1296
+ "Kuwiati",
1297
+ "Ky",
1298
+ "Ky.",
1299
+ "L",
1300
+ "LSA",
1301
+ "La",
1302
+ "La.",
1303
+ "Last",
1304
+ "Launched",
1305
+ "Law",
1306
+ "Learning",
1307
+ "Let",
1308
+ "Let's",
1309
+ "Let\u2019s",
1310
+ "Levene",
1311
+ "Library",
1312
+ "Limited",
1313
+ "Littmann",
1314
+ "Local",
1315
+ "Lok",
1316
+ "Looking",
1317
+ "Loss",
1318
+ "Louisiana",
1319
+ "Lovin",
1320
+ "Lovin'",
1321
+ "Lovin\u2019",
1322
+ "Ltd",
1323
+ "Ltd.",
1324
+ "Ludwigshafen",
1325
+ "M",
1326
+ "M&A",
1327
+ "M&E",
1328
+ "MD",
1329
+ "MIT",
1330
+ "MITRA",
1331
+ "MK",
1332
+ "MOS",
1333
+ "MOs",
1334
+ "MPS",
1335
+ "MSCI",
1336
+ "MSP",
1337
+ "MSPs",
1338
+ "Ma'am",
1339
+ "Machinery",
1340
+ "Madhya",
1341
+ "Madurai",
1342
+ "Maharashtra",
1343
+ "Maharatna",
1344
+ "Mahindra",
1345
+ "Make",
1346
+ "Malappuram",
1347
+ "Malone",
1348
+ "Management",
1349
+ "Manager",
1350
+ "Managers",
1351
+ "Mandaviya",
1352
+ "Mann",
1353
+ "Mansukh",
1354
+ "Mantri",
1355
+ "Manufacturing",
1356
+ "Many",
1357
+ "Mar",
1358
+ "Mar.",
1359
+ "March",
1360
+ "Market",
1361
+ "Marketing",
1362
+ "Marriott",
1363
+ "Maruti",
1364
+ "Mass",
1365
+ "Mass.",
1366
+ "Massachusetts",
1367
+ "Master",
1368
+ "Mastercard",
1369
+ "Matthew",
1370
+ "May",
1371
+ "Ma\u2019am",
1372
+ "McKinsey",
1373
+ "Md",
1374
+ "Md.",
1375
+ "Meanwhile",
1376
+ "Medical",
1377
+ "Medium",
1378
+ "Meena",
1379
+ "Meeting",
1380
+ "Mega",
1381
+ "Megh",
1382
+ "Messrs",
1383
+ "Messrs.",
1384
+ "Meta",
1385
+ "Metal",
1386
+ "Metals",
1387
+ "Mexico",
1388
+ "Mich",
1389
+ "Mich.",
1390
+ "Michigan",
1391
+ "Microsoft",
1392
+ "Might",
1393
+ "Mills",
1394
+ "Minimum",
1395
+ "Mining",
1396
+ "Minister",
1397
+ "Ministerial",
1398
+ "Ministry",
1399
+ "Minn",
1400
+ "Minn.",
1401
+ "Minnesota",
1402
+ "Mishra",
1403
+ "Miss",
1404
+ "Miss.",
1405
+ "Mississippi",
1406
+ "Mizoram",
1407
+ "Mo",
1408
+ "Mo.",
1409
+ "MoSPI",
1410
+ "MoU",
1411
+ "Model(link",
1412
+ "Modi",
1413
+ "Mohammed",
1414
+ "Mohan",
1415
+ "Monday",
1416
+ "Mont",
1417
+ "Mont.",
1418
+ "Morales",
1419
+ "Moreover",
1420
+ "Morningstar",
1421
+ "Motors",
1422
+ "Mount",
1423
+ "Moya",
1424
+ "Mr",
1425
+ "Mr.",
1426
+ "Mrs",
1427
+ "Mrs.",
1428
+ "Ms",
1429
+ "Ms.",
1430
+ "Mshaimesh",
1431
+ "Mt",
1432
+ "Mt.",
1433
+ "Mudon",
1434
+ "Mumbai",
1435
+ "Murdoch",
1436
+ "Murugappa",
1437
+ "Must",
1438
+ "N",
1439
+ "N.C.",
1440
+ "N.D.",
1441
+ "N.H.",
1442
+ "N.J.",
1443
+ "N.M.",
1444
+ "N.Y.",
1445
+ "NGs",
1446
+ "NI",
1447
+ "NIPER",
1448
+ "NIPERs",
1449
+ "NITI",
1450
+ "NSDL",
1451
+ "NSE",
1452
+ "NSO",
1453
+ "NSSO",
1454
+ "Nadu",
1455
+ "Nahar",
1456
+ "Nanda",
1457
+ "Narendra",
1458
+ "Nasdaq",
1459
+ "Nasscom",
1460
+ "National",
1461
+ "Navigating",
1462
+ "Navratri",
1463
+ "Neb",
1464
+ "Neb.",
1465
+ "Nebr",
1466
+ "Nebr.",
1467
+ "Nebraska",
1468
+ "Need",
1469
+ "Neelkanth",
1470
+ "Nellithada",
1471
+ "Netflix",
1472
+ "Network",
1473
+ "Nev",
1474
+ "Nev.",
1475
+ "Nevada",
1476
+ "New",
1477
+ "New Hampshire",
1478
+ "New Jersey",
1479
+ "New Mexico",
1480
+ "New York",
1481
+ "Newhouse",
1482
+ "Nexa",
1483
+ "NielsenIQ",
1484
+ "Nieves",
1485
+ "Nifty",
1486
+ "Nigeria",
1487
+ "Nikhil",
1488
+ "Nirbhar",
1489
+ "Nirmala",
1490
+ "Nitin",
1491
+ "Nomura",
1492
+ "None",
1493
+ "North Carolina",
1494
+ "North Dakota",
1495
+ "Northern",
1496
+ "Not",
1497
+ "Notably",
1498
+ "Nothin",
1499
+ "Nothin'",
1500
+ "Nothin\u2019",
1501
+ "Nov",
1502
+ "Nov.",
1503
+ "November",
1504
+ "Now",
1505
+ "Nuthin",
1506
+ "Nuthin'",
1507
+ "Nuthin\u2019",
1508
+ "Nvidia",
1509
+ "O",
1510
+ "O'clock",
1511
+ "O.O",
1512
+ "O.o",
1513
+ "OCE",
1514
+ "OCS",
1515
+ "OPEC",
1516
+ "O_O",
1517
+ "O_o",
1518
+ "Oct",
1519
+ "Oct.",
1520
+ "October",
1521
+ "Of",
1522
+ "Office",
1523
+ "Officer",
1524
+ "Officers",
1525
+ "Okla",
1526
+ "Okla.",
1527
+ "Oklahoma",
1528
+ "Ol",
1529
+ "Ol'",
1530
+ "Ol\u2019",
1531
+ "On",
1532
+ "One",
1533
+ "Only",
1534
+ "Operational",
1535
+ "Opportunity",
1536
+ "Ore",
1537
+ "Ore.",
1538
+ "Oregon",
1539
+ "Organizations",
1540
+ "Ought",
1541
+ "Our",
1542
+ "Outlook",
1543
+ "Outlooks",
1544
+ "Outstanding",
1545
+ "Over",
1546
+ "Overall",
1547
+ "O\u2019clock",
1548
+ "P",
1549
+ "PDR",
1550
+ "PEC",
1551
+ "PER",
1552
+ "PIs",
1553
+ "PM",
1554
+ "PM2.5",
1555
+ "PMFBY",
1556
+ "PMI",
1557
+ "PMKSY",
1558
+ "PMS",
1559
+ "PMV",
1560
+ "POs",
1561
+ "PRA",
1562
+ "PSU",
1563
+ "PSUs",
1564
+ "Pa",
1565
+ "Pa.",
1566
+ "Pakistan",
1567
+ "Pal",
1568
+ "Palanivel",
1569
+ "Panaji",
1570
+ "Panchayat",
1571
+ "Pantomath",
1572
+ "Parks",
1573
+ "Parviz",
1574
+ "Pathway",
1575
+ "Pathway(link",
1576
+ "Patna",
1577
+ "PayChex",
1578
+ "PayPal",
1579
+ "Payment",
1580
+ "Pennsylvania",
1581
+ "PepsiCo",
1582
+ "Petrochemicals",
1583
+ "Ph",
1584
+ "Ph.D.",
1585
+ "Pharma",
1586
+ "Pharmaceutical",
1587
+ "Pharmacy",
1588
+ "Pinterest",
1589
+ "Piyush",
1590
+ "Planet",
1591
+ "Pointing",
1592
+ "Policies",
1593
+ "Portfolio",
1594
+ "Positive",
1595
+ "Power",
1596
+ "Pradesh",
1597
+ "Pradhan",
1598
+ "Prefab",
1599
+ "President",
1600
+ "Price",
1601
+ "Primary",
1602
+ "Prime",
1603
+ "Private",
1604
+ "Processing",
1605
+ "Producers",
1606
+ "Product",
1607
+ "Production",
1608
+ "Prof",
1609
+ "Prof.",
1610
+ "Programmatic",
1611
+ "Programme",
1612
+ "Project",
1613
+ "Prudential",
1614
+ "Public",
1615
+ "Punjab",
1616
+ "Purchasing",
1617
+ "Pusa",
1618
+ "Q",
1619
+ "Q2",
1620
+ "QQQ",
1621
+ "Qatar",
1622
+ "R",
1623
+ "R&D",
1624
+ "R&D.",
1625
+ "RDO",
1626
+ "ROCE",
1627
+ "ROOT",
1628
+ "ROs",
1629
+ "RSMW",
1630
+ "RSWM",
1631
+ "RTOs",
1632
+ "Rabi",
1633
+ "Rajan",
1634
+ "Ramadan",
1635
+ "Ramesh",
1636
+ "Rating",
1637
+ "Ratings",
1638
+ "Re",
1639
+ "Read",
1640
+ "Real",
1641
+ "Receivables",
1642
+ "Recent",
1643
+ "Recently",
1644
+ "Record",
1645
+ "Red",
1646
+ "ReelStar",
1647
+ "Region",
1648
+ "Regions",
1649
+ "Regulation",
1650
+ "Relations",
1651
+ "Reliance",
1652
+ "Renowned",
1653
+ "Rep",
1654
+ "Rep.",
1655
+ "Reported",
1656
+ "Rescuers",
1657
+ "Research",
1658
+ "Resilience",
1659
+ "Reuters",
1660
+ "Rev",
1661
+ "Rev.",
1662
+ "Revenue",
1663
+ "Revolution",
1664
+ "Rhetan",
1665
+ "Richard",
1666
+ "Risk",
1667
+ "Rooted",
1668
+ "Rs",
1669
+ "Rs.10218",
1670
+ "Rs.3000",
1671
+ "Rs.5.00",
1672
+ "Rs.6000",
1673
+ "Rs.6426",
1674
+ "Rupert",
1675
+ "Rural",
1676
+ "Russell",
1677
+ "Russia",
1678
+ "Russian",
1679
+ "S",
1680
+ "S&P",
1681
+ "S.C.",
1682
+ "SAIL",
1683
+ "SAN",
1684
+ "SAS",
1685
+ "SAUs",
1686
+ "SBI",
1687
+ "SCI",
1688
+ "SDL",
1689
+ "SDP",
1690
+ "SECTOR",
1691
+ "SHA",
1692
+ "SIM",
1693
+ "SMW",
1694
+ "SPDR",
1695
+ "SPI",
1696
+ "SPs",
1697
+ "SSO",
1698
+ "SUVs",
1699
+ "SUs",
1700
+ "SVA",
1701
+ "SVB",
1702
+ "SWM",
1703
+ "Sabha",
1704
+ "Saharanpur",
1705
+ "Salem",
1706
+ "Sales",
1707
+ "Salesforce",
1708
+ "Sanjay",
1709
+ "Santhapettai",
1710
+ "Santosh",
1711
+ "Saravanan",
1712
+ "Sarees",
1713
+ "Schedule",
1714
+ "School",
1715
+ "Scientific",
1716
+ "Scindia",
1717
+ "Secretary",
1718
+ "Sector",
1719
+ "Securities",
1720
+ "Select",
1721
+ "Selling",
1722
+ "Sellschop",
1723
+ "Sen",
1724
+ "Sen.",
1725
+ "Senior",
1726
+ "Sep",
1727
+ "Sep.",
1728
+ "Separate",
1729
+ "Sept",
1730
+ "Sept.",
1731
+ "September",
1732
+ "Service",
1733
+ "Services",
1734
+ "Several",
1735
+ "Sha",
1736
+ "Shah",
1737
+ "Shahbazov",
1738
+ "Shares",
1739
+ "Shashank",
1740
+ "She",
1741
+ "She's",
1742
+ "Sheikh",
1743
+ "Sheng",
1744
+ "She\u2019s",
1745
+ "Shifting",
1746
+ "Shortages",
1747
+ "Should",
1748
+ "Silicon",
1749
+ "Since",
1750
+ "Sinchai",
1751
+ "Singh",
1752
+ "Single",
1753
+ "Sitharaman",
1754
+ "Situation",
1755
+ "Situations",
1756
+ "Sizable",
1757
+ "Small",
1758
+ "Smart",
1759
+ "Snap",
1760
+ "So",
1761
+ "Society",
1762
+ "Some",
1763
+ "Somethin",
1764
+ "Somethin'",
1765
+ "Somethin\u2019",
1766
+ "South Carolina",
1767
+ "Speaking",
1768
+ "Specifically",
1769
+ "Spinners",
1770
+ "Spinning",
1771
+ "Srivastava",
1772
+ "St",
1773
+ "St.",
1774
+ "Stalin",
1775
+ "Standards",
1776
+ "Start",
1777
+ "Starting",
1778
+ "State",
1779
+ "StateBihar",
1780
+ "States",
1781
+ "Statistical",
1782
+ "Statistics",
1783
+ "Status",
1784
+ "Steel",
1785
+ "Stepping",
1786
+ "Stock",
1787
+ "Street",
1788
+ "Strengthen",
1789
+ "Strong",
1790
+ "Stubble",
1791
+ "Students",
1792
+ "Such",
1793
+ "Suisse",
1794
+ "Summit",
1795
+ "Suppliers",
1796
+ "Supply",
1797
+ "Support",
1798
+ "Survey",
1799
+ "Suzuki",
1800
+ "Swastika",
1801
+ "System",
1802
+ "Systems",
1803
+ "T",
1804
+ "TCS",
1805
+ "TFs",
1806
+ "TII",
1807
+ "TMT",
1808
+ "TOR",
1809
+ "TOs",
1810
+ "TRA",
1811
+ "TSE",
1812
+ "TSR",
1813
+ "Tamil",
1814
+ "Tantalum",
1815
+ "Tata",
1816
+ "Tech",
1817
+ "Technical",
1818
+ "Technologies",
1819
+ "Technology",
1820
+ "Telangana",
1821
+ "Telecom",
1822
+ "TelecomTalk",
1823
+ "Tenn",
1824
+ "Tenn.",
1825
+ "Tennessee",
1826
+ "Testing",
1827
+ "Tex",
1828
+ "Textile",
1829
+ "Textiles",
1830
+ "Thakur",
1831
+ "Thani",
1832
+ "That",
1833
+ "That's",
1834
+ "That\u2019s",
1835
+ "The",
1836
+ "Their",
1837
+ "There",
1838
+ "There's",
1839
+ "Therefore",
1840
+ "There\u2019s",
1841
+ "These",
1842
+ "They",
1843
+ "Thiaga",
1844
+ "Thirugnanam",
1845
+ "This",
1846
+ "This's",
1847
+ "This\u2019s",
1848
+ "Thomas",
1849
+ "Thomson",
1850
+ "Those",
1851
+ "Thursday",
1852
+ "Thus",
1853
+ "To",
1854
+ "Today",
1855
+ "Tomar",
1856
+ "Total",
1857
+ "Tottolo",
1858
+ "Towards",
1859
+ "Tower",
1860
+ "Traditional",
1861
+ "Training",
1862
+ "Transforming",
1863
+ "Transition",
1864
+ "Tridens",
1865
+ "Trusts",
1866
+ "Tube",
1867
+ "Tuesday",
1868
+ "Turkey",
1869
+ "Twitter",
1870
+ "Typically",
1871
+ "U",
1872
+ "U.S.",
1873
+ "UAE",
1874
+ "UCO",
1875
+ "UK",
1876
+ "URU",
1877
+ "US",
1878
+ "US$",
1879
+ "USA",
1880
+ "USD",
1881
+ "UVs",
1882
+ "Ukraine",
1883
+ "Ultimately",
1884
+ "Under",
1885
+ "Undertakings",
1886
+ "Union",
1887
+ "United",
1888
+ "Universities",
1889
+ "Until",
1890
+ "Upcoming",
1891
+ "Ups",
1892
+ "Usamah",
1893
+ "Uttar",
1894
+ "V",
1895
+ "V.V",
1896
+ "VAC",
1897
+ "VCI",
1898
+ "VGT",
1899
+ "VIVALDIPablo",
1900
+ "VKs",
1901
+ "V_V",
1902
+ "Va",
1903
+ "Va.",
1904
+ "Valley",
1905
+ "Value",
1906
+ "Vanguard",
1907
+ "Vardhman",
1908
+ "Variety",
1909
+ "Vedanta",
1910
+ "Vice",
1911
+ "Villagers",
1912
+ "Virginia",
1913
+ "Virudhunagar",
1914
+ "Visa",
1915
+ "Vitara",
1916
+ "Vivek",
1917
+ "W",
1918
+ "Walgreens",
1919
+ "Warren",
1920
+ "Was",
1921
+ "Wash",
1922
+ "Wash.",
1923
+ "Washington",
1924
+ "We",
1925
+ "Web2",
1926
+ "Web3",
1927
+ "Wednesday",
1928
+ "Welfare",
1929
+ "Were",
1930
+ "What",
1931
+ "What's",
1932
+ "Whatever",
1933
+ "What\u2019s",
1934
+ "When",
1935
+ "When's",
1936
+ "When\u2019s",
1937
+ "Where",
1938
+ "Where's",
1939
+ "Whereas",
1940
+ "Where\u2019s",
1941
+ "While",
1942
+ "Who",
1943
+ "Who's",
1944
+ "Who\u2019s",
1945
+ "Why",
1946
+ "Why's",
1947
+ "Why\u2019s",
1948
+ "Wipro",
1949
+ "Wis",
1950
+ "Wis.",
1951
+ "Wisconsin",
1952
+ "With",
1953
+ "Within",
1954
+ "Wo",
1955
+ "Wolfgang",
1956
+ "World",
1957
+ "Would",
1958
+ "X&X",
1959
+ "X&X.",
1960
+ "X'x",
1961
+ "X'xxxx",
1962
+ "X++",
1963
+ "X.",
1964
+ "X.X",
1965
+ "X.X.",
1966
+ "X.x",
1967
+ "X.x.",
1968
+ "XD",
1969
+ "XDD",
1970
+ "XL6",
1971
+ "XLK",
1972
+ "XX",
1973
+ "XX$",
1974
+ "XXX",
1975
+ "XXX.Xxxxx",
1976
+ "XXXX",
1977
+ "XXXX-",
1978
+ "XXXX-dd",
1979
+ "XXXXdXXXX",
1980
+ "XXXXx",
1981
+ "XXXXxxxx",
1982
+ "XXXx",
1983
+ "XXXx?xxx",
1984
+ "XXd",
1985
+ "XXd.d",
1986
+ "XXdXXXX",
1987
+ "XXdd",
1988
+ "XXddX",
1989
+ "X_X",
1990
+ "X_x",
1991
+ "Xd",
1992
+ "Xx",
1993
+ "Xx'",
1994
+ "Xx'x",
1995
+ "Xx'xx",
1996
+ "Xx.",
1997
+ "Xx.X.",
1998
+ "Xx.d.dd",
1999
+ "Xx.dddd",
2000
+ "XxX",
2001
+ "XxXXX",
2002
+ "XxXx",
2003
+ "XxXxxxx",
2004
+ "Xxx",
2005
+ "Xxx'x",
2006
+ "Xxx.",
2007
+ "XxxX",
2008
+ "XxxXxx",
2009
+ "XxxXxxx",
2010
+ "XxxXxxxx",
2011
+ "Xxxd",
2012
+ "Xxxx",
2013
+ "Xxxx'",
2014
+ "Xxxx'x",
2015
+ "Xxxx.",
2016
+ "XxxxXxxx",
2017
+ "Xxxxx",
2018
+ "Xxxxx'",
2019
+ "Xxxxx'x",
2020
+ "Xxxxx(xxxx",
2021
+ "Xxxxx.",
2022
+ "XxxxxXX",
2023
+ "XxxxxXx",
2024
+ "XxxxxXxx",
2025
+ "XxxxxXxxx",
2026
+ "XxxxxXxxxXxxxx",
2027
+ "XxxxxXxxxx",
2028
+ "XxxxxXxxxxXxxxx",
2029
+ "Xxxxx\u2019",
2030
+ "Xxxxx\u2019x",
2031
+ "Xxxx\u2019",
2032
+ "Xxxx\u2019x",
2033
+ "Xxx\u2019x",
2034
+ "Xx\u2019",
2035
+ "Xx\u2019x",
2036
+ "Xx\u2019xx",
2037
+ "X\u2019x",
2038
+ "X\u2019xxxx",
2039
+ "Y",
2040
+ "Y22",
2041
+ "Y24",
2042
+ "YTD",
2043
+ "Yet",
2044
+ "Yogi",
2045
+ "Yojana",
2046
+ "You",
2047
+ "Z",
2048
+ "Zakir",
2049
+ "Zoramthanga",
2050
+ "[",
2051
+ "[-:",
2052
+ "[:",
2053
+ "[=",
2054
+ "\\",
2055
+ "\\\")",
2056
+ "\\n",
2057
+ "\\t",
2058
+ "\\x",
2059
+ "]",
2060
+ "]=",
2061
+ "^",
2062
+ "^_^",
2063
+ "^__^",
2064
+ "^___^",
2065
+ "_*)",
2066
+ "_-)",
2067
+ "_.)",
2068
+ "_<)",
2069
+ "_^)",
2070
+ "__-",
2071
+ "__^",
2072
+ "_\u00ac)",
2073
+ "_\u0ca0)",
2074
+ "`",
2075
+ "a",
2076
+ "a.",
2077
+ "a.m",
2078
+ "a.m.",
2079
+ "aasha",
2080
+ "aayog",
2081
+ "abate",
2082
+ "abb",
2083
+ "abdulrahman",
2084
+ "abi",
2085
+ "ability",
2086
+ "able",
2087
+ "about",
2088
+ "above",
2089
+ "absence",
2090
+ "accelerate",
2091
+ "accelerated",
2092
+ "accelerating",
2093
+ "accenture",
2094
+ "acceptance",
2095
+ "access",
2096
+ "accessible",
2097
+ "accolades",
2098
+ "according",
2099
+ "account",
2100
+ "accounted",
2101
+ "accumulating",
2102
+ "accurate",
2103
+ "ace",
2104
+ "ach",
2105
+ "achieve",
2106
+ "achieved",
2107
+ "achieving",
2108
+ "aci",
2109
+ "acid",
2110
+ "ack",
2111
+ "acknowledge",
2112
+ "acquired",
2113
+ "acquirers",
2114
+ "acquiring",
2115
+ "acquisition",
2116
+ "acres",
2117
+ "acronyms",
2118
+ "across",
2119
+ "act",
2120
+ "acting",
2121
+ "actions",
2122
+ "active",
2123
+ "activities",
2124
+ "activity",
2125
+ "acts",
2126
+ "actual",
2127
+ "actually",
2128
+ "acy",
2129
+ "ada",
2130
+ "adapt",
2131
+ "adaptation",
2132
+ "add",
2133
+ "added",
2134
+ "adding",
2135
+ "addition",
2136
+ "additional",
2137
+ "additionally",
2138
+ "additive",
2139
+ "address",
2140
+ "addressing",
2141
+ "adds",
2142
+ "ade",
2143
+ "adequate",
2144
+ "adityanath",
2145
+ "adjacency",
2146
+ "adjusted",
2147
+ "adm",
2148
+ "adm.",
2149
+ "adopt",
2150
+ "adopted",
2151
+ "adopting",
2152
+ "adoption",
2153
+ "ads",
2154
+ "adu",
2155
+ "advance",
2156
+ "advanced",
2157
+ "advancements",
2158
+ "advances",
2159
+ "adverse",
2160
+ "adversely",
2161
+ "adversity",
2162
+ "advised",
2163
+ "advisors",
2164
+ "advisory",
2165
+ "ady",
2166
+ "afe",
2167
+ "affairs",
2168
+ "affected",
2169
+ "afford",
2170
+ "affordable",
2171
+ "aft",
2172
+ "after",
2173
+ "aga",
2174
+ "again",
2175
+ "against",
2176
+ "age",
2177
+ "aged",
2178
+ "agencies",
2179
+ "agency",
2180
+ "agenda",
2181
+ "aggregate",
2182
+ "aggressive",
2183
+ "agnostic",
2184
+ "ago",
2185
+ "agr",
2186
+ "agri",
2187
+ "agricultural",
2188
+ "agriculture",
2189
+ "agtech",
2190
+ "ahead",
2191
+ "ahlia",
2192
+ "ai",
2193
+ "aid",
2194
+ "aif",
2195
+ "ail",
2196
+ "aims",
2197
+ "ain",
2198
+ "air",
2199
+ "airfiber",
2200
+ "airtel",
2201
+ "ait",
2202
+ "aji",
2203
+ "ak",
2204
+ "ak.",
2205
+ "aka",
2206
+ "ake",
2207
+ "akh",
2208
+ "al",
2209
+ "ala",
2210
+ "ala.",
2211
+ "alagarasan",
2212
+ "albeit",
2213
+ "ald",
2214
+ "ale",
2215
+ "alf",
2216
+ "ali",
2217
+ "aligned",
2218
+ "alk",
2219
+ "all",
2220
+ "alleged",
2221
+ "alleging",
2222
+ "alliance",
2223
+ "allied",
2224
+ "allocated",
2225
+ "allocation",
2226
+ "allocations",
2227
+ "allotment",
2228
+ "almost",
2229
+ "alone",
2230
+ "along",
2231
+ "alongside",
2232
+ "alphabet",
2233
+ "already",
2234
+ "als",
2235
+ "also",
2236
+ "alternate",
2237
+ "alternatively",
2238
+ "alternatives",
2239
+ "although",
2240
+ "am",
2241
+ "ama",
2242
+ "amass",
2243
+ "amazon",
2244
+ "amber",
2245
+ "ambika",
2246
+ "ambitious",
2247
+ "amcar",
2248
+ "ame",
2249
+ "america",
2250
+ "american",
2251
+ "americans",
2252
+ "americas",
2253
+ "americredit",
2254
+ "amid",
2255
+ "ammapalayam",
2256
+ "among",
2257
+ "amongst",
2258
+ "amount",
2259
+ "ams",
2260
+ "an",
2261
+ "an.",
2262
+ "ana",
2263
+ "anaemia",
2264
+ "analysing",
2265
+ "analysis",
2266
+ "analyst",
2267
+ "analysts",
2268
+ "analyzing",
2269
+ "and",
2270
+ "and/or",
2271
+ "anemia",
2272
+ "ang",
2273
+ "ani",
2274
+ "animals",
2275
+ "ank",
2276
+ "ann",
2277
+ "anna",
2278
+ "anniversarization",
2279
+ "announce",
2280
+ "announced",
2281
+ "announcement",
2282
+ "announcements",
2283
+ "annual",
2284
+ "another",
2285
+ "ans",
2286
+ "ant",
2287
+ "anthony",
2288
+ "anticipate",
2289
+ "anurag",
2290
+ "any",
2291
+ "ape",
2292
+ "api",
2293
+ "apis",
2294
+ "app",
2295
+ "apparel",
2296
+ "apparels",
2297
+ "appears",
2298
+ "apple",
2299
+ "application",
2300
+ "applications",
2301
+ "applied",
2302
+ "appoint",
2303
+ "appreciate",
2304
+ "apprehension",
2305
+ "approach",
2306
+ "approached",
2307
+ "appropriate",
2308
+ "approved",
2309
+ "approximately",
2310
+ "apps",
2311
+ "apr",
2312
+ "apr.",
2313
+ "april",
2314
+ "aps",
2315
+ "apt",
2316
+ "ar-",
2317
+ "ar.",
2318
+ "ara",
2319
+ "archean",
2320
+ "archetype",
2321
+ "archetypes",
2322
+ "ard",
2323
+ "are",
2324
+ "area",
2325
+ "areas",
2326
+ "arena",
2327
+ "argue",
2328
+ "ari",
2329
+ "ariz",
2330
+ "ariz.",
2331
+ "ark",
2332
+ "ark.",
2333
+ "arm",
2334
+ "arn",
2335
+ "around",
2336
+ "arp",
2337
+ "arrival",
2338
+ "ars",
2339
+ "art",
2340
+ "article",
2341
+ "articulate",
2342
+ "articulated",
2343
+ "artificial",
2344
+ "artists",
2345
+ "arun",
2346
+ "arvinder",
2347
+ "ary",
2348
+ "as",
2349
+ "ase",
2350
+ "asf",
2351
+ "ash",
2352
+ "aside",
2353
+ "asked",
2354
+ "asp",
2355
+ "aspirants",
2356
+ "ass",
2357
+ "assembly",
2358
+ "assess",
2359
+ "assessment",
2360
+ "assets",
2361
+ "assigned",
2362
+ "assistance",
2363
+ "associated",
2364
+ "association",
2365
+ "assumed",
2366
+ "assuming",
2367
+ "assumption",
2368
+ "assured",
2369
+ "ast",
2370
+ "asy",
2371
+ "at",
2372
+ "ata",
2373
+ "ate",
2374
+ "ath",
2375
+ "athavanad",
2376
+ "ati",
2377
+ "atm",
2378
+ "atma",
2379
+ "atom",
2380
+ "atomic",
2381
+ "ats",
2382
+ "attack",
2383
+ "attain",
2384
+ "attend",
2385
+ "attendees",
2386
+ "attention",
2387
+ "attract",
2388
+ "attracted",
2389
+ "attributed",
2390
+ "au",
2391
+ "aud",
2392
+ "audience",
2393
+ "audio",
2394
+ "aug",
2395
+ "aug.",
2396
+ "augmented",
2397
+ "august",
2398
+ "aurobindo",
2399
+ "aus",
2400
+ "authority",
2401
+ "authors",
2402
+ "auto",
2403
+ "automate",
2404
+ "automatic",
2405
+ "automation",
2406
+ "automobile",
2407
+ "automotive",
2408
+ "ava",
2409
+ "availability",
2410
+ "available",
2411
+ "ave",
2412
+ "avenue",
2413
+ "average",
2414
+ "aviation",
2415
+ "avoid",
2416
+ "avy",
2417
+ "awaited",
2418
+ "awareness",
2419
+ "ays",
2420
+ "azerbaijan",
2421
+ "b",
2422
+ "b.",
2423
+ "back",
2424
+ "backbone",
2425
+ "backdrop",
2426
+ "bagger",
2427
+ "baggers",
2428
+ "bai",
2429
+ "bal",
2430
+ "balance",
2431
+ "baleno",
2432
+ "ban",
2433
+ "bang",
2434
+ "bangladesh",
2435
+ "bangladeshi",
2436
+ "bank",
2437
+ "bankers",
2438
+ "banking",
2439
+ "banks",
2440
+ "banned",
2441
+ "bargain",
2442
+ "baroda",
2443
+ "baroka",
2444
+ "barrier",
2445
+ "barring",
2446
+ "bartolini",
2447
+ "base",
2448
+ "base4",
2449
+ "baseball",
2450
+ "based",
2451
+ "basf",
2452
+ "basic",
2453
+ "basically",
2454
+ "basis",
2455
+ "basket",
2456
+ "be",
2457
+ "bear",
2458
+ "bearish",
2459
+ "became",
2460
+ "because",
2461
+ "bechu",
2462
+ "become",
2463
+ "becomes",
2464
+ "becoming",
2465
+ "bed",
2466
+ "beef",
2467
+ "been",
2468
+ "before",
2469
+ "began",
2470
+ "begun",
2471
+ "behaviors",
2472
+ "behaviours",
2473
+ "behind",
2474
+ "being",
2475
+ "believe",
2476
+ "bench",
2477
+ "benchmark",
2478
+ "benefit",
2479
+ "bengaluru",
2480
+ "ber",
2481
+ "besides",
2482
+ "best",
2483
+ "bet",
2484
+ "bets",
2485
+ "better",
2486
+ "between",
2487
+ "beyond",
2488
+ "bfsi",
2489
+ "bha",
2490
+ "bharat",
2491
+ "bhatti",
2492
+ "bhgwant",
2493
+ "bibliophiles",
2494
+ "big",
2495
+ "bigger",
2496
+ "biggest",
2497
+ "bihar",
2498
+ "bill",
2499
+ "billing",
2500
+ "billion",
2501
+ "billionaires",
2502
+ "billions",
2503
+ "bin",
2504
+ "biotechnology",
2505
+ "bit",
2506
+ "black",
2507
+ "ble",
2508
+ "blended",
2509
+ "blo",
2510
+ "blockbuster",
2511
+ "blocked",
2512
+ "blockers",
2513
+ "blue",
2514
+ "bly",
2515
+ "bn",
2516
+ "board",
2517
+ "bob",
2518
+ "body",
2519
+ "bofa",
2520
+ "bon",
2521
+ "bond",
2522
+ "bonds",
2523
+ "bonus",
2524
+ "books",
2525
+ "boom",
2526
+ "boost",
2527
+ "boosting",
2528
+ "boosts",
2529
+ "boots",
2530
+ "bor",
2531
+ "border",
2532
+ "borders",
2533
+ "both",
2534
+ "bothra",
2535
+ "bottom",
2536
+ "bouncing",
2537
+ "bout",
2538
+ "box",
2539
+ "br.",
2540
+ "brand",
2541
+ "branded",
2542
+ "brands",
2543
+ "break",
2544
+ "breaking",
2545
+ "breakout",
2546
+ "brewing",
2547
+ "brightened",
2548
+ "bring",
2549
+ "bringing",
2550
+ "broad",
2551
+ "broadband",
2552
+ "broadcasting",
2553
+ "broadcom",
2554
+ "broader",
2555
+ "broadly",
2556
+ "broke",
2557
+ "brokerage",
2558
+ "brokerages",
2559
+ "bros",
2560
+ "bros.",
2561
+ "brothers",
2562
+ "brought",
2563
+ "bs",
2564
+ "bse",
2565
+ "bss",
2566
+ "budget",
2567
+ "budgetary",
2568
+ "buffett",
2569
+ "build",
2570
+ "building",
2571
+ "buildings",
2572
+ "built",
2573
+ "bun",
2574
+ "buoyant",
2575
+ "burning",
2576
+ "burnout",
2577
+ "business",
2578
+ "businesses",
2579
+ "businessline",
2580
+ "businessmen",
2581
+ "but",
2582
+ "buy",
2583
+ "buyers",
2584
+ "buying",
2585
+ "by",
2586
+ "c",
2587
+ "c'm",
2588
+ "c++",
2589
+ "c.",
2590
+ "ca",
2591
+ "cagr",
2592
+ "cal",
2593
+ "calif",
2594
+ "calif.",
2595
+ "call",
2596
+ "called",
2597
+ "cam",
2598
+ "came",
2599
+ "can",
2600
+ "canada",
2601
+ "canadian",
2602
+ "cap",
2603
+ "capabilities",
2604
+ "capability",
2605
+ "capacities",
2606
+ "capacity",
2607
+ "capita",
2608
+ "capital",
2609
+ "capitalisation",
2610
+ "capitalisations",
2611
+ "capitalise",
2612
+ "capitalize",
2613
+ "caps",
2614
+ "capsules",
2615
+ "captured",
2616
+ "car",
2617
+ "carbon",
2618
+ "cards",
2619
+ "care",
2620
+ "carried",
2621
+ "cars",
2622
+ "cas",
2623
+ "cases",
2624
+ "cash",
2625
+ "catch",
2626
+ "catco2nvers",
2627
+ "categories",
2628
+ "categories).2",
2629
+ "category",
2630
+ "cause",
2631
+ "caused",
2632
+ "causes",
2633
+ "causing",
2634
+ "cautionary",
2635
+ "cautious",
2636
+ "cdmo",
2637
+ "ce>",
2638
+ "ced",
2639
+ "cell",
2640
+ "cent",
2641
+ "centenary",
2642
+ "center",
2643
+ "centers",
2644
+ "central",
2645
+ "centre",
2646
+ "centres",
2647
+ "ceo",
2648
+ "cer",
2649
+ "certified",
2650
+ "ces",
2651
+ "cetp",
2652
+ "ch.",
2653
+ "chain",
2654
+ "chains",
2655
+ "chair",
2656
+ "challenge",
2657
+ "challenger",
2658
+ "challenges",
2659
+ "challenging",
2660
+ "chance",
2661
+ "chand",
2662
+ "change",
2663
+ "changed",
2664
+ "changer",
2665
+ "changers",
2666
+ "changes",
2667
+ "channel",
2668
+ "chapters",
2669
+ "characteristics",
2670
+ "charge",
2671
+ "chart",
2672
+ "charts",
2673
+ "chcs",
2674
+ "cheat",
2675
+ "check",
2676
+ "cheer",
2677
+ "chemical",
2678
+ "chemicals",
2679
+ "chemicals(link",
2680
+ "chicago",
2681
+ "chief",
2682
+ "children",
2683
+ "china",
2684
+ "chinese",
2685
+ "chip",
2686
+ "choose",
2687
+ "chu",
2688
+ "ciaz",
2689
+ "cid",
2690
+ "cil",
2691
+ "circles",
2692
+ "circular",
2693
+ "cisco",
2694
+ "cities",
2695
+ "citing",
2696
+ "citizens",
2697
+ "city",
2698
+ "civil",
2699
+ "cks",
2700
+ "clarified",
2701
+ "class",
2702
+ "classed",
2703
+ "classes",
2704
+ "classification",
2705
+ "classify",
2706
+ "cle",
2707
+ "clear",
2708
+ "clearly",
2709
+ "client",
2710
+ "clients",
2711
+ "climate",
2712
+ "climbed",
2713
+ "climbing",
2714
+ "climbs",
2715
+ "clocked",
2716
+ "close",
2717
+ "closely",
2718
+ "closer",
2719
+ "closing",
2720
+ "closure",
2721
+ "cloud",
2722
+ "clsa",
2723
+ "clues",
2724
+ "cmos",
2725
+ "cmr",
2726
+ "co",
2727
+ "co.",
2728
+ "co2",
2729
+ "co2smos",
2730
+ "code",
2731
+ "coes",
2732
+ "collaboration",
2733
+ "collaborations",
2734
+ "collapse",
2735
+ "collated",
2736
+ "college",
2737
+ "colleges",
2738
+ "colo",
2739
+ "colo.",
2740
+ "coloring",
2741
+ "colouring",
2742
+ "com",
2743
+ "combine",
2744
+ "combined",
2745
+ "combines",
2746
+ "combining",
2747
+ "come",
2748
+ "comes",
2749
+ "coming",
2750
+ "commentary",
2751
+ "comments",
2752
+ "commerce",
2753
+ "commercial",
2754
+ "commercialization",
2755
+ "commercially",
2756
+ "commission",
2757
+ "commitment",
2758
+ "committee",
2759
+ "commodity",
2760
+ "common",
2761
+ "communication",
2762
+ "communications",
2763
+ "communicators",
2764
+ "community",
2765
+ "companies",
2766
+ "company",
2767
+ "compared",
2768
+ "comparing",
2769
+ "comparison",
2770
+ "compendium",
2771
+ "compensate",
2772
+ "compete",
2773
+ "competes",
2774
+ "competitive",
2775
+ "compilation",
2776
+ "complete",
2777
+ "completed",
2778
+ "complexities",
2779
+ "complexity",
2780
+ "component",
2781
+ "components",
2782
+ "composite",
2783
+ "compound",
2784
+ "comprehensive",
2785
+ "compulsorily",
2786
+ "computer",
2787
+ "computing",
2788
+ "con",
2789
+ "concentrated",
2790
+ "concentration",
2791
+ "concern",
2792
+ "concerns",
2793
+ "conclusion",
2794
+ "conditioning",
2795
+ "conditions",
2796
+ "conducted",
2797
+ "conference",
2798
+ "confidence",
2799
+ "confident",
2800
+ "confluence",
2801
+ "confront",
2802
+ "confusing",
2803
+ "conn",
2804
+ "conn.",
2805
+ "connect",
2806
+ "connected",
2807
+ "connecting",
2808
+ "connection",
2809
+ "connections",
2810
+ "connectivity",
2811
+ "consecutive",
2812
+ "consent",
2813
+ "conservation",
2814
+ "consider",
2815
+ "considerable",
2816
+ "considerably",
2817
+ "considerations",
2818
+ "considered",
2819
+ "considering",
2820
+ "considers",
2821
+ "consistency",
2822
+ "consistently",
2823
+ "consolidation",
2824
+ "consortium",
2825
+ "constant",
2826
+ "constitute",
2827
+ "constituted",
2828
+ "construction",
2829
+ "consultations",
2830
+ "consumer",
2831
+ "consumers",
2832
+ "consuming",
2833
+ "consumption",
2834
+ "containing",
2835
+ "contemporary",
2836
+ "content",
2837
+ "contingency",
2838
+ "contingent",
2839
+ "continually",
2840
+ "continue",
2841
+ "continued",
2842
+ "continues",
2843
+ "continuity",
2844
+ "continuously",
2845
+ "contract",
2846
+ "contraction",
2847
+ "contrast",
2848
+ "contribute",
2849
+ "contributed",
2850
+ "contributes",
2851
+ "contribution",
2852
+ "contributions",
2853
+ "control",
2854
+ "controls",
2855
+ "conventional",
2856
+ "convert",
2857
+ "convertible",
2858
+ "cooperative",
2859
+ "coordination",
2860
+ "coping",
2861
+ "core",
2862
+ "corona",
2863
+ "coronavirus",
2864
+ "corp",
2865
+ "corp.",
2866
+ "corporate",
2867
+ "correction",
2868
+ "corrective",
2869
+ "corrosion",
2870
+ "cos",
2871
+ "cost",
2872
+ "costs",
2873
+ "cotton",
2874
+ "could",
2875
+ "council",
2876
+ "counter",
2877
+ "countries",
2878
+ "country",
2879
+ "coupled",
2880
+ "course",
2881
+ "court",
2882
+ "cover",
2883
+ "covering",
2884
+ "covers",
2885
+ "covid",
2886
+ "covid-19",
2887
+ "coz",
2888
+ "craftsmanship",
2889
+ "crash",
2890
+ "create",
2891
+ "created",
2892
+ "creates",
2893
+ "creating",
2894
+ "creation",
2895
+ "creative",
2896
+ "creativity",
2897
+ "creators",
2898
+ "credibility",
2899
+ "credit",
2900
+ "creditors",
2901
+ "crisis",
2902
+ "criteria",
2903
+ "criterion",
2904
+ "critical",
2905
+ "cro",
2906
+ "crop",
2907
+ "crops",
2908
+ "crore",
2909
+ "crore.n",
2910
+ "crores",
2911
+ "cros",
2912
+ "crossed",
2913
+ "crucial",
2914
+ "csps",
2915
+ "ct.",
2916
+ "cts",
2917
+ "cue",
2918
+ "cultivation",
2919
+ "cultural",
2920
+ "culture",
2921
+ "cultureAn",
2922
+ "culturean",
2923
+ "cumulative",
2924
+ "cur",
2925
+ "curb",
2926
+ "curbs",
2927
+ "currency",
2928
+ "current",
2929
+ "currently",
2930
+ "cus",
2931
+ "custom",
2932
+ "customer",
2933
+ "customers",
2934
+ "cut",
2935
+ "cutting",
2936
+ "cuz",
2937
+ "cy22",
2938
+ "cyber",
2939
+ "cybersecurity",
2940
+ "cycber",
2941
+ "cycle",
2942
+ "cyient",
2943
+ "cytd",
2944
+ "c\u2019m",
2945
+ "d",
2946
+ "d%-d",
2947
+ "d)",
2948
+ "d).d",
2949
+ "d,dd,ddd",
2950
+ "d,ddd",
2951
+ "d-",
2952
+ "d-)",
2953
+ "d-X",
2954
+ "d.",
2955
+ "d.c.",
2956
+ "d.d",
2957
+ "d.d%.Xxxxx",
2958
+ "d.d%.xxxx",
2959
+ "d.dd",
2960
+ "d.dxx",
2961
+ "d.x",
2962
+ "d/-",
2963
+ "dX",
2964
+ "dX.",
2965
+ "d_d",
2966
+ "d_x",
2967
+ "dai",
2968
+ "dal",
2969
+ "dampen",
2970
+ "dan",
2971
+ "daq",
2972
+ "dar",
2973
+ "dare",
2974
+ "data",
2975
+ "date",
2976
+ "daunting",
2977
+ "david",
2978
+ "day",
2979
+ "days",
2980
+ "dd",
2981
+ "dd%.Xxxxx",
2982
+ "dd%.xxxx",
2983
+ "dd,dd,ddd",
2984
+ "dd,ddd",
2985
+ "dd,ddd.dd",
2986
+ "dd.Xxxxx",
2987
+ "dd.d",
2988
+ "dd.d.Xxx",
2989
+ "dd.d.xxx",
2990
+ "dd.dd",
2991
+ "dd.dxx",
2992
+ "dd.xxxx",
2993
+ "dd:d",
2994
+ "dd:dd",
2995
+ "ddX",
2996
+ "ddXx",
2997
+ "ddd",
2998
+ "ddd,ddd",
2999
+ "ddd.d",
3000
+ "ddd.d%.Xxx",
3001
+ "ddd.d%.xxx",
3002
+ "ddd.dd",
3003
+ "dddX",
3004
+ "dddd",
3005
+ "dddd\"",
3006
+ "dddd.Xxxxx",
3007
+ "dddd.dd",
3008
+ "dddd.xxxx",
3009
+ "dddd\u2019-",
3010
+ "dddx",
3011
+ "dddxx",
3012
+ "dds",
3013
+ "ddx",
3014
+ "ddx.x",
3015
+ "ddx.x.",
3016
+ "ddxx",
3017
+ "ddy",
3018
+ "deal",
3019
+ "dealers",
3020
+ "deals",
3021
+ "debris",
3022
+ "debt",
3023
+ "dec",
3024
+ "dec.",
3025
+ "decade",
3026
+ "decades",
3027
+ "decarbonisation",
3028
+ "decarbonization",
3029
+ "decc",
3030
+ "december",
3031
+ "decided",
3032
+ "decision",
3033
+ "decisions",
3034
+ "declared",
3035
+ "decline",
3036
+ "declined",
3037
+ "decomposer",
3038
+ "decomposition",
3039
+ "decoupling",
3040
+ "decrease",
3041
+ "decreased",
3042
+ "decreasing",
3043
+ "ded",
3044
+ "dedicated",
3045
+ "deducting",
3046
+ "deep",
3047
+ "deeper",
3048
+ "defence",
3049
+ "defense",
3050
+ "define",
3051
+ "defined",
3052
+ "definition",
3053
+ "definitions",
3054
+ "deflationary",
3055
+ "degradation",
3056
+ "degraded",
3057
+ "degrees",
3058
+ "del",
3059
+ "del.",
3060
+ "delayed",
3061
+ "delhi",
3062
+ "deliveries",
3063
+ "delivering",
3064
+ "delivers",
3065
+ "demand",
3066
+ "demanded",
3067
+ "demands",
3068
+ "democratizing",
3069
+ "demographics",
3070
+ "demonstrate",
3071
+ "demonstrated",
3072
+ "demonstrates",
3073
+ "demonstrating",
3074
+ "demonstration",
3075
+ "demonstrations",
3076
+ "den",
3077
+ "dented",
3078
+ "denuded",
3079
+ "deo",
3080
+ "department",
3081
+ "dependencies",
3082
+ "depends",
3083
+ "deploying",
3084
+ "deployment",
3085
+ "depositors",
3086
+ "depository",
3087
+ "deposits",
3088
+ "depreciation",
3089
+ "der",
3090
+ "derived",
3091
+ "des",
3092
+ "design",
3093
+ "designed",
3094
+ "despite",
3095
+ "determining",
3096
+ "develop",
3097
+ "developed",
3098
+ "developing",
3099
+ "development",
3100
+ "developmental",
3101
+ "developments",
3102
+ "devices",
3103
+ "dex",
3104
+ "dge",
3105
+ "dhanteras",
3106
+ "dhotis",
3107
+ "dia",
3108
+ "did",
3109
+ "diesel",
3110
+ "differ",
3111
+ "difference",
3112
+ "different",
3113
+ "difficult",
3114
+ "difficulties",
3115
+ "digging",
3116
+ "digital",
3117
+ "digitalisation",
3118
+ "digitization",
3119
+ "diluted",
3120
+ "dio",
3121
+ "dioxide",
3122
+ "direct",
3123
+ "direction",
3124
+ "directly",
3125
+ "director",
3126
+ "disclose",
3127
+ "disclosure",
3128
+ "discover",
3129
+ "discretionary",
3130
+ "disinfectants",
3131
+ "disparity",
3132
+ "dispensing",
3133
+ "display",
3134
+ "disrupted",
3135
+ "disruption",
3136
+ "disruptions",
3137
+ "disruptive",
3138
+ "dissemination",
3139
+ "distance",
3140
+ "distorted",
3141
+ "district",
3142
+ "disturbance",
3143
+ "disturbed",
3144
+ "dit",
3145
+ "diverse",
3146
+ "diversified",
3147
+ "divide",
3148
+ "dividend",
3149
+ "dly",
3150
+ "dm.",
3151
+ "dmo",
3152
+ "do",
3153
+ "document",
3154
+ "does",
3155
+ "doha",
3156
+ "doin",
3157
+ "doin'",
3158
+ "doing",
3159
+ "doin\u2019",
3160
+ "dollar",
3161
+ "dollars",
3162
+ "dom",
3163
+ "domains",
3164
+ "domestic",
3165
+ "dominance",
3166
+ "dominant",
3167
+ "don",
3168
+ "donald",
3169
+ "done",
3170
+ "donear",
3171
+ "double",
3172
+ "doubling",
3173
+ "doubt",
3174
+ "down",
3175
+ "downgrades",
3176
+ "downside",
3177
+ "downsizing",
3178
+ "downturns",
3179
+ "downward",
3180
+ "dp",
3181
+ "dr",
3182
+ "dr.",
3183
+ "dra",
3184
+ "draft",
3185
+ "dramatic",
3186
+ "dramatically",
3187
+ "drastically",
3188
+ "drdo",
3189
+ "dream",
3190
+ "drills",
3191
+ "drive",
3192
+ "driven",
3193
+ "driver",
3194
+ "driving",
3195
+ "drone",
3196
+ "drones",
3197
+ "drop",
3198
+ "drugs",
3199
+ "due",
3200
+ "duping",
3201
+ "durables",
3202
+ "during",
3203
+ "dust",
3204
+ "duty",
3205
+ "dwindling",
3206
+ "dx.",
3207
+ "dx.x",
3208
+ "dx.x.",
3209
+ "dyeing",
3210
+ "dynamic",
3211
+ "e",
3212
+ "e's",
3213
+ "e.",
3214
+ "e.g",
3215
+ "e.g.",
3216
+ "e.n",
3217
+ "eAn",
3218
+ "each",
3219
+ "ead",
3220
+ "eak",
3221
+ "eal",
3222
+ "eam",
3223
+ "ean",
3224
+ "ear",
3225
+ "earlier",
3226
+ "early",
3227
+ "earner",
3228
+ "earning",
3229
+ "earnings",
3230
+ "earth",
3231
+ "eas",
3232
+ "easier",
3233
+ "easily",
3234
+ "easing",
3235
+ "east",
3236
+ "easy",
3237
+ "eat",
3238
+ "eb.",
3239
+ "eb2",
3240
+ "eb3",
3241
+ "ebr",
3242
+ "ebt",
3243
+ "eby",
3244
+ "ec.",
3245
+ "ecc",
3246
+ "ece",
3247
+ "ech",
3248
+ "eck",
3249
+ "economic",
3250
+ "economics",
3251
+ "economies",
3252
+ "economist",
3253
+ "economy",
3254
+ "ecosystem",
3255
+ "ect",
3256
+ "ede",
3257
+ "edge",
3258
+ "edition",
3259
+ "editions",
3260
+ "eds",
3261
+ "education",
3262
+ "eed",
3263
+ "eef",
3264
+ "eek",
3265
+ "eel",
3266
+ "een",
3267
+ "eep",
3268
+ "eer",
3269
+ "ees",
3270
+ "eet",
3271
+ "effect",
3272
+ "effective",
3273
+ "effectively",
3274
+ "effects",
3275
+ "efficiency",
3276
+ "effluent",
3277
+ "effort",
3278
+ "efforts",
3279
+ "ega",
3280
+ "ege",
3281
+ "egh",
3282
+ "egi",
3283
+ "egy",
3284
+ "eight",
3285
+ "eir",
3286
+ "eit",
3287
+ "eks",
3288
+ "el.",
3289
+ "eld",
3290
+ "electricity",
3291
+ "element",
3292
+ "elements",
3293
+ "elf",
3294
+ "eligible",
3295
+ "eliminating",
3296
+ "ell",
3297
+ "elp",
3298
+ "els",
3299
+ "ely",
3300
+ "em",
3301
+ "embedded",
3302
+ "embedding",
3303
+ "embracing",
3304
+ "eme",
3305
+ "emerge",
3306
+ "emerged",
3307
+ "emerging",
3308
+ "emission",
3309
+ "emissions",
3310
+ "emitting",
3311
+ "emkay",
3312
+ "emphasis",
3313
+ "emphasizing",
3314
+ "employed",
3315
+ "employees",
3316
+ "employment",
3317
+ "empower",
3318
+ "ems",
3319
+ "en",
3320
+ "en.",
3321
+ "ena",
3322
+ "enable",
3323
+ "enabled",
3324
+ "enables",
3325
+ "encourage",
3326
+ "encouraged",
3327
+ "encourages",
3328
+ "end",
3329
+ "ended",
3330
+ "ending",
3331
+ "ends",
3332
+ "ene",
3333
+ "energy",
3334
+ "eng",
3335
+ "engage",
3336
+ "engaged",
3337
+ "engagement",
3338
+ "engagers",
3339
+ "engine",
3340
+ "engineering",
3341
+ "england",
3342
+ "english",
3343
+ "enhance",
3344
+ "enhanced",
3345
+ "enhancing",
3346
+ "enn",
3347
+ "eno",
3348
+ "enough",
3349
+ "ens",
3350
+ "ensure",
3351
+ "ensures",
3352
+ "ensuring",
3353
+ "ent",
3354
+ "enterprise",
3355
+ "enterprises",
3356
+ "entertainment",
3357
+ "entrepreneurs",
3358
+ "entrup",
3359
+ "enumerates",
3360
+ "environment",
3361
+ "environmental",
3362
+ "environmentally",
3363
+ "environments",
3364
+ "eon",
3365
+ "ep.",
3366
+ "epack",
3367
+ "epicenters",
3368
+ "epicentres",
3369
+ "eps",
3370
+ "ept",
3371
+ "equal",
3372
+ "equipment",
3373
+ "equipped",
3374
+ "equitable",
3375
+ "equities",
3376
+ "equity",
3377
+ "era",
3378
+ "ere",
3379
+ "erm",
3380
+ "ern",
3381
+ "ero",
3382
+ "errors",
3383
+ "ers",
3384
+ "erstwhile",
3385
+ "ert",
3386
+ "erv",
3387
+ "ery",
3388
+ "escalate",
3389
+ "escape",
3390
+ "escaped",
3391
+ "escue",
3392
+ "ese",
3393
+ "esh",
3394
+ "especially",
3395
+ "ess",
3396
+ "essential",
3397
+ "est",
3398
+ "establish",
3399
+ "established",
3400
+ "establishing",
3401
+ "establishment",
3402
+ "establishments",
3403
+ "estate",
3404
+ "estimate",
3405
+ "estimated",
3406
+ "estimates",
3407
+ "eta",
3408
+ "etc",
3409
+ "ete",
3410
+ "etf",
3411
+ "etfs",
3412
+ "ethical",
3413
+ "etp",
3414
+ "ets",
3415
+ "ett",
3416
+ "ety",
3417
+ "eu",
3418
+ "europe",
3419
+ "european",
3420
+ "euros",
3421
+ "ev.",
3422
+ "eve",
3423
+ "even",
3424
+ "event",
3425
+ "everyone",
3426
+ "everything",
3427
+ "evidenced",
3428
+ "evolves",
3429
+ "evolving",
3430
+ "evy",
3431
+ "ews",
3432
+ "exa",
3433
+ "exacerbated",
3434
+ "exam",
3435
+ "examine",
3436
+ "examines",
3437
+ "example",
3438
+ "exceed",
3439
+ "excellence",
3440
+ "excellences",
3441
+ "except",
3442
+ "exchange",
3443
+ "exciting",
3444
+ "excluding",
3445
+ "exclusive",
3446
+ "exclusively",
3447
+ "execution",
3448
+ "executive",
3449
+ "executives",
3450
+ "exercise",
3451
+ "exhibit",
3452
+ "exhibiting",
3453
+ "exhibition",
3454
+ "exhibitors",
3455
+ "exist",
3456
+ "existing",
3457
+ "expand",
3458
+ "expanded",
3459
+ "expanding",
3460
+ "expansion",
3461
+ "expect",
3462
+ "expectations",
3463
+ "expected",
3464
+ "expects",
3465
+ "expenditure",
3466
+ "expenditures",
3467
+ "expenses",
3468
+ "expensive",
3469
+ "experience",
3470
+ "experienced",
3471
+ "experiencing",
3472
+ "expert",
3473
+ "expertise",
3474
+ "explained",
3475
+ "explains",
3476
+ "explore",
3477
+ "export",
3478
+ "exporter",
3479
+ "exporting",
3480
+ "exports",
3481
+ "exposed",
3482
+ "exposition",
3483
+ "exposure",
3484
+ "exposures",
3485
+ "ext",
3486
+ "extending",
3487
+ "extensive",
3488
+ "extent",
3489
+ "external",
3490
+ "extra",
3491
+ "extraction",
3492
+ "extremely",
3493
+ "ey",
3494
+ "eye",
3495
+ "eyeing",
3496
+ "eyes",
3497
+ "eys",
3498
+ "e\u2019s",
3499
+ "f",
3500
+ "f&o",
3501
+ "f.",
3502
+ "faangs",
3503
+ "fab",
3504
+ "face",
3505
+ "facebook",
3506
+ "faced",
3507
+ "faces",
3508
+ "facilitate",
3509
+ "facilities",
3510
+ "facility",
3511
+ "facing",
3512
+ "fact",
3513
+ "factor",
3514
+ "factored",
3515
+ "factories",
3516
+ "factors",
3517
+ "fada",
3518
+ "failure",
3519
+ "failures",
3520
+ "fair",
3521
+ "fall",
3522
+ "fallen",
3523
+ "falling",
3524
+ "falls",
3525
+ "family",
3526
+ "far",
3527
+ "faring",
3528
+ "farm",
3529
+ "farmers",
3530
+ "farming",
3531
+ "fasalbimayojna",
3532
+ "fast",
3533
+ "faster",
3534
+ "fastest",
3535
+ "favorite",
3536
+ "favorites",
3537
+ "favourite",
3538
+ "favourites",
3539
+ "fby",
3540
+ "fci",
3541
+ "feb",
3542
+ "feb.",
3543
+ "february",
3544
+ "federal",
3545
+ "feed",
3546
+ "feedback",
3547
+ "feedstock",
3548
+ "feels",
3549
+ "fees",
3550
+ "feet",
3551
+ "fell",
3552
+ "fen",
3553
+ "fer",
3554
+ "ferrous",
3555
+ "fertilizers",
3556
+ "festive",
3557
+ "few",
3558
+ "ffs",
3559
+ "fi",
3560
+ "fiber",
3561
+ "fic",
3562
+ "field",
3563
+ "fields",
3564
+ "fierce",
3565
+ "fifth",
3566
+ "figure",
3567
+ "figures",
3568
+ "fiis",
3569
+ "filed",
3570
+ "filing",
3571
+ "filtration",
3572
+ "final",
3573
+ "finally",
3574
+ "finance",
3575
+ "financial",
3576
+ "financials",
3577
+ "financing",
3578
+ "find",
3579
+ "finding",
3580
+ "finishing",
3581
+ "firm",
3582
+ "firms",
3583
+ "first",
3584
+ "fiscal",
3585
+ "fiserv",
3586
+ "fit",
3587
+ "fitch",
3588
+ "five",
3589
+ "fixed",
3590
+ "fixes",
3591
+ "fla",
3592
+ "fla.",
3593
+ "flagship",
3594
+ "flash",
3595
+ "flood",
3596
+ "flow",
3597
+ "flows",
3598
+ "focus",
3599
+ "focused",
3600
+ "follow",
3601
+ "followed",
3602
+ "follows",
3603
+ "food",
3604
+ "for",
3605
+ "foray",
3606
+ "force",
3607
+ "forcing",
3608
+ "forecast",
3609
+ "forefront",
3610
+ "foreign",
3611
+ "foremost",
3612
+ "foresees",
3613
+ "form",
3614
+ "formal",
3615
+ "former",
3616
+ "forms",
3617
+ "formula",
3618
+ "formulation",
3619
+ "forthcoming",
3620
+ "fortnight",
3621
+ "fortnightly",
3622
+ "fortunes",
3623
+ "forty",
3624
+ "fossil",
3625
+ "found",
3626
+ "foundation",
3627
+ "foundations",
3628
+ "four",
3629
+ "fourth",
3630
+ "fpi",
3631
+ "fpos",
3632
+ "fpos?and",
3633
+ "framework",
3634
+ "frankfurt",
3635
+ "fraud",
3636
+ "frauds",
3637
+ "fraudulent",
3638
+ "free",
3639
+ "freedom",
3640
+ "freeing",
3641
+ "fresh",
3642
+ "friday",
3643
+ "from",
3644
+ "frontline",
3645
+ "fronx",
3646
+ "fsi",
3647
+ "fth",
3648
+ "ftse",
3649
+ "fty",
3650
+ "fuelled",
3651
+ "fuels",
3652
+ "ful",
3653
+ "full",
3654
+ "fully",
3655
+ "functioning",
3656
+ "fund",
3657
+ "fundamental",
3658
+ "funding",
3659
+ "fundraise",
3660
+ "funds",
3661
+ "further",
3662
+ "furthermore",
3663
+ "future",
3664
+ "fwa",
3665
+ "fy",
3666
+ "fy22",
3667
+ "fy24",
3668
+ "fy25e",
3669
+ "g",
3670
+ "g.",
3671
+ "ga",
3672
+ "ga.",
3673
+ "gahlot",
3674
+ "gain",
3675
+ "gained",
3676
+ "gal",
3677
+ "game",
3678
+ "gaming",
3679
+ "gan",
3680
+ "gap",
3681
+ "gaps",
3682
+ "gar",
3683
+ "garments",
3684
+ "gartner",
3685
+ "gas",
3686
+ "gases",
3687
+ "gasses",
3688
+ "gdp",
3689
+ "gearing",
3690
+ "ged",
3691
+ "gen",
3692
+ "gen.",
3693
+ "general",
3694
+ "generally",
3695
+ "generate",
3696
+ "generated",
3697
+ "generation",
3698
+ "generative",
3699
+ "generic",
3700
+ "geopolitical",
3701
+ "ger",
3702
+ "german",
3703
+ "germany",
3704
+ "ges",
3705
+ "get",
3706
+ "gets",
3707
+ "getting",
3708
+ "ghosh",
3709
+ "ghs",
3710
+ "ght",
3711
+ "giant",
3712
+ "gic",
3713
+ "gics",
3714
+ "gin",
3715
+ "give",
3716
+ "given",
3717
+ "giving",
3718
+ "gle",
3719
+ "global",
3720
+ "globally",
3721
+ "globe",
3722
+ "gly",
3723
+ "gns",
3724
+ "go",
3725
+ "goal",
3726
+ "goin",
3727
+ "goin'",
3728
+ "going",
3729
+ "goin\u2019",
3730
+ "gon",
3731
+ "gone",
3732
+ "gonna",
3733
+ "good",
3734
+ "goods",
3735
+ "google",
3736
+ "got",
3737
+ "gov",
3738
+ "gov.",
3739
+ "governance",
3740
+ "governing",
3741
+ "government",
3742
+ "governments",
3743
+ "govindarajan",
3744
+ "goyal",
3745
+ "gradual",
3746
+ "gradually",
3747
+ "graduates",
3748
+ "grama",
3749
+ "grand",
3750
+ "grant",
3751
+ "granted",
3752
+ "grants",
3753
+ "graphene",
3754
+ "gray",
3755
+ "great",
3756
+ "greater",
3757
+ "greatest",
3758
+ "green",
3759
+ "grew",
3760
+ "grey",
3761
+ "gri",
3762
+ "gross",
3763
+ "group",
3764
+ "grow",
3765
+ "growing",
3766
+ "grown",
3767
+ "growth",
3768
+ "gro\u00dfe",
3769
+ "gsdp",
3770
+ "gst",
3771
+ "gsva",
3772
+ "gth",
3773
+ "gue",
3774
+ "guidelines",
3775
+ "gujarat",
3776
+ "gun",
3777
+ "gva",
3778
+ "h",
3779
+ "h.",
3780
+ "ha",
3781
+ "had",
3782
+ "hah",
3783
+ "hai",
3784
+ "haidar",
3785
+ "half",
3786
+ "hampering",
3787
+ "han",
3788
+ "hand",
3789
+ "handful",
3790
+ "handlooms",
3791
+ "hands",
3792
+ "happen",
3793
+ "happening",
3794
+ "har",
3795
+ "hard",
3796
+ "harder",
3797
+ "harvard",
3798
+ "harvested",
3799
+ "has",
3800
+ "hat",
3801
+ "have",
3802
+ "havin",
3803
+ "havin'",
3804
+ "having",
3805
+ "havin\u2019",
3806
+ "hazard",
3807
+ "hazardous",
3808
+ "hcl",
3809
+ "hcs",
3810
+ "he",
3811
+ "he's",
3812
+ "head",
3813
+ "headed",
3814
+ "headmaster",
3815
+ "headroom",
3816
+ "headwinds",
3817
+ "health",
3818
+ "healthcare",
3819
+ "heat",
3820
+ "heating",
3821
+ "heavily",
3822
+ "heavy",
3823
+ "hectare",
3824
+ "hectares",
3825
+ "hed",
3826
+ "hefty",
3827
+ "height",
3828
+ "heightened",
3829
+ "held",
3830
+ "help",
3831
+ "helped",
3832
+ "hem",
3833
+ "hen",
3834
+ "hence",
3835
+ "her",
3836
+ "here",
3837
+ "heritage",
3838
+ "hero",
3839
+ "hes",
3840
+ "hew",
3841
+ "hex",
3842
+ "hey",
3843
+ "he\u2019s",
3844
+ "hi",
3845
+ "high",
3846
+ "higher",
3847
+ "highest",
3848
+ "highlight",
3849
+ "highlighted",
3850
+ "highlighting",
3851
+ "highlights",
3852
+ "highs",
3853
+ "hike",
3854
+ "hil",
3855
+ "hilly",
3856
+ "him",
3857
+ "himalayas",
3858
+ "hin",
3859
+ "hindalco",
3860
+ "hinder",
3861
+ "hindering",
3862
+ "hinterlands",
3863
+ "hip",
3864
+ "hire",
3865
+ "hiring",
3866
+ "his",
3867
+ "historical",
3868
+ "historically",
3869
+ "hit",
3870
+ "hitting",
3871
+ "hly",
3872
+ "hold",
3873
+ "holistic",
3874
+ "hong",
3875
+ "hop",
3876
+ "hope",
3877
+ "hoped",
3878
+ "hopeful",
3879
+ "hopes",
3880
+ "horizontal",
3881
+ "hospitals",
3882
+ "host",
3883
+ "hosted",
3884
+ "hot",
3885
+ "hours",
3886
+ "housed",
3887
+ "household",
3888
+ "households",
3889
+ "housing",
3890
+ "how",
3891
+ "how's",
3892
+ "however",
3893
+ "how\u2019s",
3894
+ "hra",
3895
+ "hts",
3896
+ "hub",
3897
+ "hubs",
3898
+ "huge",
3899
+ "human",
3900
+ "humans",
3901
+ "hundreds",
3902
+ "hunting",
3903
+ "hurun",
3904
+ "hus",
3905
+ "hvac",
3906
+ "hya",
3907
+ "hyundai",
3908
+ "i",
3909
+ "i.",
3910
+ "i.e",
3911
+ "i.e.",
3912
+ "iCo",
3913
+ "iShares",
3914
+ "ia",
3915
+ "ia.",
3916
+ "ial",
3917
+ "ian",
3918
+ "iari",
3919
+ "iaz",
3920
+ "ibs",
3921
+ "ica",
3922
+ "icar",
3923
+ "icar-",
3924
+ "ice",
3925
+ "ich",
3926
+ "ick",
3927
+ "icmr",
3928
+ "ico",
3929
+ "ics",
3930
+ "ict",
3931
+ "icy",
3932
+ "id",
3933
+ "id.",
3934
+ "ide",
3935
+ "ideal",
3936
+ "identical",
3937
+ "identifiable",
3938
+ "identified",
3939
+ "identify",
3940
+ "identifying",
3941
+ "ied",
3942
+ "ief",
3943
+ "ier",
3944
+ "ies",
3945
+ "iew",
3946
+ "if",
3947
+ "if.",
3948
+ "ife",
3949
+ "ifp",
3950
+ "ift",
3951
+ "ify",
3952
+ "igh",
3953
+ "ign",
3954
+ "ignis",
3955
+ "ignoring",
3956
+ "ii",
3957
+ "iiof",
3958
+ "iis",
3959
+ "ika",
3960
+ "ike",
3961
+ "ikh",
3962
+ "ild",
3963
+ "ile",
3964
+ "ill",
3965
+ "ill.",
3966
+ "illegal",
3967
+ "ils",
3968
+ "ilt",
3969
+ "ily",
3970
+ "ime",
3971
+ "impact",
3972
+ "impacts",
3973
+ "impede",
3974
+ "implement",
3975
+ "implementation",
3976
+ "implemented",
3977
+ "implementing",
3978
+ "implements",
3979
+ "import",
3980
+ "importance",
3981
+ "important",
3982
+ "imported",
3983
+ "imports",
3984
+ "imposed",
3985
+ "imposition",
3986
+ "impressed",
3987
+ "impressive",
3988
+ "improve",
3989
+ "improved",
3990
+ "improvement",
3991
+ "improves",
3992
+ "imps",
3993
+ "ims",
3994
+ "in",
3995
+ "in'",
3996
+ "in-",
3997
+ "ina",
3998
+ "inaugurated",
3999
+ "inc",
4000
+ "inc.",
4001
+ "incentives",
4002
+ "incident",
4003
+ "include",
4004
+ "included",
4005
+ "includes",
4006
+ "including",
4007
+ "income",
4008
+ "income-",
4009
+ "incomes",
4010
+ "incomethe",
4011
+ "incorporate",
4012
+ "increase",
4013
+ "increased",
4014
+ "increasing",
4015
+ "increasingly",
4016
+ "incumbent",
4017
+ "ind",
4018
+ "ind.",
4019
+ "index",
4020
+ "india",
4021
+ "indian",
4022
+ "indians",
4023
+ "indicate",
4024
+ "indicated",
4025
+ "indicates",
4026
+ "indicator",
4027
+ "indicators",
4028
+ "indices",
4029
+ "indirect",
4030
+ "individuals",
4031
+ "indulge",
4032
+ "industrial",
4033
+ "industrialist",
4034
+ "industrials",
4035
+ "industries",
4036
+ "industries.1",
4037
+ "industry",
4038
+ "ine",
4039
+ "ineffective",
4040
+ "inegi",
4041
+ "infamous",
4042
+ "infections",
4043
+ "inflation",
4044
+ "inflection",
4045
+ "inflows",
4046
+ "influencers",
4047
+ "informal",
4048
+ "information",
4049
+ "informed",
4050
+ "infosys",
4051
+ "infrastructure",
4052
+ "infrastructures",
4053
+ "ing",
4054
+ "ingredient",
4055
+ "ingredients",
4056
+ "ini",
4057
+ "initiated",
4058
+ "initiative",
4059
+ "initiatives",
4060
+ "injuries",
4061
+ "ink",
4062
+ "inn",
4063
+ "innovate",
4064
+ "innovation",
4065
+ "innovations",
4066
+ "innovative",
4067
+ "inputs",
4068
+ "ins",
4069
+ "inside",
4070
+ "insights",
4071
+ "instability",
4072
+ "installation",
4073
+ "installments",
4074
+ "instance",
4075
+ "instances",
4076
+ "instead",
4077
+ "institute",
4078
+ "institutes",
4079
+ "institution",
4080
+ "institutional",
4081
+ "institutions",
4082
+ "insurance",
4083
+ "int",
4084
+ "intact",
4085
+ "integrated",
4086
+ "integrating",
4087
+ "integration",
4088
+ "integrity",
4089
+ "intelligence",
4090
+ "intends",
4091
+ "intensified",
4092
+ "intensive",
4093
+ "intent",
4094
+ "inter",
4095
+ "interact",
4096
+ "interaction",
4097
+ "interactions",
4098
+ "interacts",
4099
+ "interconnected",
4100
+ "interest",
4101
+ "interests",
4102
+ "interim",
4103
+ "interior",
4104
+ "intermediaries",
4105
+ "internal",
4106
+ "international",
4107
+ "internet",
4108
+ "intervals",
4109
+ "interventions",
4110
+ "into",
4111
+ "intra",
4112
+ "introduce",
4113
+ "introduced",
4114
+ "introduction",
4115
+ "invesco",
4116
+ "invest",
4117
+ "invested",
4118
+ "investing",
4119
+ "investmart",
4120
+ "investment",
4121
+ "investments",
4122
+ "investmentsthe",
4123
+ "investor",
4124
+ "investors",
4125
+ "invests",
4126
+ "involved",
4127
+ "in\u2019",
4128
+ "iod",
4129
+ "iof",
4130
+ "ion",
4131
+ "ior",
4132
+ "ios",
4133
+ "ipa",
4134
+ "ipo",
4135
+ "ips",
4136
+ "ipt",
4137
+ "ird",
4138
+ "ire",
4139
+ "ireland",
4140
+ "irm",
4141
+ "irrespective",
4142
+ "irrigation",
4143
+ "irs",
4144
+ "is",
4145
+ "is.",
4146
+ "isa",
4147
+ "ise",
4148
+ "ish",
4149
+ "ishares",
4150
+ "isk",
4151
+ "ism",
4152
+ "isolation",
4153
+ "iss",
4154
+ "issue",
4155
+ "issued",
4156
+ "issuer",
4157
+ "issuers",
4158
+ "issues",
4159
+ "ist",
4160
+ "ist.debjani",
4161
+ "it",
4162
+ "it's",
4163
+ "ita",
4164
+ "ite",
4165
+ "iterations",
4166
+ "ith",
4167
+ "iti",
4168
+ "its",
4169
+ "itself",
4170
+ "itu",
4171
+ "ity",
4172
+ "it\u2019s",
4173
+ "ium",
4174
+ "ive",
4175
+ "iya",
4176
+ "iyw",
4177
+ "iz.",
4178
+ "ize",
4179
+ "j",
4180
+ "j.",
4181
+ "jab",
4182
+ "jan",
4183
+ "jan.",
4184
+ "january",
4185
+ "japan",
4186
+ "japanese",
4187
+ "jaspal",
4188
+ "jay",
4189
+ "jefferies",
4190
+ "jibun",
4191
+ "jig",
4192
+ "jimny",
4193
+ "jindal",
4194
+ "jio",
4195
+ "jna",
4196
+ "job",
4197
+ "jobs",
4198
+ "john",
4199
+ "jointly",
4200
+ "jor",
4201
+ "joshi",
4202
+ "jr",
4203
+ "jr.",
4204
+ "jsw",
4205
+ "judge",
4206
+ "jul",
4207
+ "jul.",
4208
+ "july",
4209
+ "jump",
4210
+ "jumped",
4211
+ "jun",
4212
+ "jun.",
4213
+ "june",
4214
+ "just",
4215
+ "justice",
4216
+ "jyotiraditya",
4217
+ "k",
4218
+ "k.",
4219
+ "kailash",
4220
+ "kalaignar",
4221
+ "kan",
4222
+ "kan.",
4223
+ "kans",
4224
+ "kans.",
4225
+ "kapil",
4226
+ "kapoor",
4227
+ "karnataka",
4228
+ "kay",
4229
+ "kcc",
4230
+ "ked",
4231
+ "keep",
4232
+ "keeping",
4233
+ "keltbray",
4234
+ "ken",
4235
+ "ker",
4236
+ "kerala",
4237
+ "kes",
4238
+ "ket",
4239
+ "key",
4240
+ "kharif",
4241
+ "khs",
4242
+ "kind",
4243
+ "kir",
4244
+ "kisan",
4245
+ "kla",
4246
+ "kle",
4247
+ "kly",
4248
+ "km",
4249
+ "knew",
4250
+ "knowledge",
4251
+ "known",
4252
+ "krishi",
4253
+ "krishivigyankendras",
4254
+ "ksy",
4255
+ "kumaralingapuram",
4256
+ "kunnu",
4257
+ "kur",
4258
+ "kurian",
4259
+ "kuwait",
4260
+ "kuwiati",
4261
+ "kvks",
4262
+ "ky",
4263
+ "ky.",
4264
+ "kyc",
4265
+ "l",
4266
+ "l.",
4267
+ "la",
4268
+ "la.",
4269
+ "lab",
4270
+ "labor",
4271
+ "laborers",
4272
+ "labour",
4273
+ "labourers",
4274
+ "lack",
4275
+ "lagged",
4276
+ "laid",
4277
+ "lakh",
4278
+ "lakhs",
4279
+ "lan",
4280
+ "land",
4281
+ "lands",
4282
+ "landscape",
4283
+ "landslide",
4284
+ "language",
4285
+ "languages",
4286
+ "lar",
4287
+ "large",
4288
+ "largely",
4289
+ "larger",
4290
+ "largest",
4291
+ "last",
4292
+ "lasted",
4293
+ "latency",
4294
+ "later",
4295
+ "latest",
4296
+ "launched",
4297
+ "launchpad",
4298
+ "law",
4299
+ "lay",
4300
+ "layer",
4301
+ "lco",
4302
+ "lds",
4303
+ "lead",
4304
+ "leaders",
4305
+ "leadership",
4306
+ "leading",
4307
+ "leads",
4308
+ "learn",
4309
+ "learning",
4310
+ "leasing",
4311
+ "least",
4312
+ "leaving",
4313
+ "led",
4314
+ "lem",
4315
+ "len",
4316
+ "lens",
4317
+ "ler",
4318
+ "les",
4319
+ "less",
4320
+ "let",
4321
+ "let's",
4322
+ "lets",
4323
+ "let\u2019s",
4324
+ "level",
4325
+ "levels",
4326
+ "levene",
4327
+ "leveraging",
4328
+ "levers",
4329
+ "levy",
4330
+ "ley",
4331
+ "lge",
4332
+ "lh",
4333
+ "lhi",
4334
+ "lia",
4335
+ "liabilities",
4336
+ "library",
4337
+ "lic",
4338
+ "lid",
4339
+ "lif",
4340
+ "life",
4341
+ "light",
4342
+ "like",
4343
+ "likelihood",
4344
+ "likely",
4345
+ "likes",
4346
+ "limited",
4347
+ "limits",
4348
+ "lin",
4349
+ "line",
4350
+ "link",
4351
+ "linked",
4352
+ "lio",
4353
+ "lion",
4354
+ "liquid",
4355
+ "list",
4356
+ "listed",
4357
+ "literature",
4358
+ "little",
4359
+ "littmann",
4360
+ "living",
4361
+ "lix",
4362
+ "ll",
4363
+ "ll.",
4364
+ "lls",
4365
+ "lly",
4366
+ "lo.",
4367
+ "loan",
4368
+ "local",
4369
+ "locations",
4370
+ "logistics",
4371
+ "lok",
4372
+ "long",
4373
+ "longer",
4374
+ "look",
4375
+ "looked",
4376
+ "looking",
4377
+ "looming",
4378
+ "looms",
4379
+ "loop",
4380
+ "lop",
4381
+ "loss",
4382
+ "lost",
4383
+ "lot",
4384
+ "lovin",
4385
+ "lovin'",
4386
+ "loving",
4387
+ "lovin\u2019",
4388
+ "low",
4389
+ "lower",
4390
+ "lows",
4391
+ "lry",
4392
+ "lsa",
4393
+ "lso",
4394
+ "ltd",
4395
+ "ltd.",
4396
+ "lth",
4397
+ "lti",
4398
+ "ludwigshafen",
4399
+ "lue",
4400
+ "lum",
4401
+ "lus",
4402
+ "lve",
4403
+ "m",
4404
+ "m&a",
4405
+ "m&e",
4406
+ "m.",
4407
+ "ma'am",
4408
+ "machinery",
4409
+ "machines",
4410
+ "macro",
4411
+ "madam",
4412
+ "made",
4413
+ "madhya",
4414
+ "madurai",
4415
+ "mah",
4416
+ "maharashtra",
4417
+ "maharatna",
4418
+ "mahindra",
4419
+ "main",
4420
+ "mainstream",
4421
+ "maintain",
4422
+ "maintaining",
4423
+ "major",
4424
+ "majority",
4425
+ "make",
4426
+ "makes",
4427
+ "making",
4428
+ "mal",
4429
+ "malappuram",
4430
+ "malone",
4431
+ "man",
4432
+ "managed",
4433
+ "management",
4434
+ "manager",
4435
+ "managers",
4436
+ "mandated",
4437
+ "mandaviya",
4438
+ "manifest",
4439
+ "mann",
4440
+ "mansukh",
4441
+ "mantri",
4442
+ "manufactured",
4443
+ "manufacturers",
4444
+ "manufacturing",
4445
+ "many",
4446
+ "mar",
4447
+ "mar.",
4448
+ "march",
4449
+ "margin",
4450
+ "marginal",
4451
+ "market",
4452
+ "marketing",
4453
+ "markets",
4454
+ "marks",
4455
+ "marriott",
4456
+ "maruti",
4457
+ "mas",
4458
+ "mass",
4459
+ "mass.",
4460
+ "masses",
4461
+ "massive",
4462
+ "master",
4463
+ "mastercard",
4464
+ "material",
4465
+ "materials",
4466
+ "matters",
4467
+ "matthew",
4468
+ "maxed",
4469
+ "maximize",
4470
+ "maximum",
4471
+ "may",
4472
+ "ma\u2019am",
4473
+ "mbs",
4474
+ "mckinsey",
4475
+ "md",
4476
+ "md.",
4477
+ "me-",
4478
+ "mean",
4479
+ "meaningful",
4480
+ "means",
4481
+ "meantime",
4482
+ "meanwhile",
4483
+ "measure",
4484
+ "measures",
4485
+ "mechanical",
4486
+ "med",
4487
+ "media",
4488
+ "medical",
4489
+ "medication",
4490
+ "medicine",
4491
+ "medium",
4492
+ "medium-",
4493
+ "meena",
4494
+ "meet",
4495
+ "meeting",
4496
+ "mega",
4497
+ "megh",
4498
+ "meltdown",
4499
+ "melting",
4500
+ "member",
4501
+ "men",
4502
+ "mer",
4503
+ "merchants",
4504
+ "mere",
4505
+ "merely",
4506
+ "mes",
4507
+ "messages",
4508
+ "messaging",
4509
+ "messrs",
4510
+ "messrs.",
4511
+ "met",
4512
+ "metal",
4513
+ "metals",
4514
+ "meters",
4515
+ "mexico",
4516
+ "mia",
4517
+ "mic",
4518
+ "mich",
4519
+ "mich.",
4520
+ "microbial",
4521
+ "microsoft",
4522
+ "mid",
4523
+ "midcap",
4524
+ "midsize",
4525
+ "might",
4526
+ "mil",
4527
+ "milestone",
4528
+ "million",
4529
+ "mills",
4530
+ "minimise",
4531
+ "minimize",
4532
+ "minimum",
4533
+ "mining",
4534
+ "minister",
4535
+ "ministerial",
4536
+ "ministry",
4537
+ "minn",
4538
+ "minn.",
4539
+ "minor",
4540
+ "minted",
4541
+ "mis",
4542
+ "mishra",
4543
+ "misleading",
4544
+ "miss",
4545
+ "miss.",
4546
+ "mission",
4547
+ "mistakes",
4548
+ "misunderstood",
4549
+ "mit",
4550
+ "mitigating",
4551
+ "mitra",
4552
+ "mixed",
4553
+ "mizoram",
4554
+ "mk",
4555
+ "mly",
4556
+ "mme",
4557
+ "mmy",
4558
+ "mny",
4559
+ "mo",
4560
+ "mo.",
4561
+ "mobile",
4562
+ "model",
4563
+ "model(link",
4564
+ "models",
4565
+ "modern",
4566
+ "modi",
4567
+ "modified",
4568
+ "mohammed",
4569
+ "mohan",
4570
+ "molecules",
4571
+ "moment",
4572
+ "momentum",
4573
+ "mon",
4574
+ "monday",
4575
+ "monetization",
4576
+ "monetize",
4577
+ "money",
4578
+ "monitor",
4579
+ "mont",
4580
+ "mont.",
4581
+ "month",
4582
+ "monthly",
4583
+ "months",
4584
+ "mop",
4585
+ "morales",
4586
+ "more",
4587
+ "moreover",
4588
+ "morningstar",
4589
+ "mos",
4590
+ "mospi",
4591
+ "most",
4592
+ "mostly",
4593
+ "motor",
4594
+ "motors",
4595
+ "mou",
4596
+ "mouths",
4597
+ "move",
4598
+ "moves",
4599
+ "moving",
4600
+ "moya",
4601
+ "mps",
4602
+ "mr",
4603
+ "mr.",
4604
+ "mrs",
4605
+ "mrs.",
4606
+ "ms",
4607
+ "ms.",
4608
+ "msci",
4609
+ "mshaimesh",
4610
+ "msp",
4611
+ "msps",
4612
+ "mt",
4613
+ "mt.",
4614
+ "much",
4615
+ "mudon",
4616
+ "multi",
4617
+ "multibagger",
4618
+ "multitude",
4619
+ "mum",
4620
+ "mumbai",
4621
+ "mural",
4622
+ "murdoch",
4623
+ "murugappa",
4624
+ "muscle",
4625
+ "must",
4626
+ "n",
4627
+ "n's",
4628
+ "n't",
4629
+ "n.",
4630
+ "n.c.",
4631
+ "n.d.",
4632
+ "n.h.",
4633
+ "n.j.",
4634
+ "n.m.",
4635
+ "n.y.",
4636
+ "nIQ",
4637
+ "na",
4638
+ "nad",
4639
+ "nadu",
4640
+ "nahar",
4641
+ "nal",
4642
+ "nam",
4643
+ "namely",
4644
+ "names",
4645
+ "nan",
4646
+ "nanda",
4647
+ "nap",
4648
+ "nar",
4649
+ "narendra",
4650
+ "narrow",
4651
+ "nascent",
4652
+ "nasdaq",
4653
+ "nasscom",
4654
+ "nation",
4655
+ "national",
4656
+ "nations",
4657
+ "natural",
4658
+ "nature",
4659
+ "navigate",
4660
+ "navigating",
4661
+ "navratri",
4662
+ "nc.",
4663
+ "nce",
4664
+ "nch",
4665
+ "ncy",
4666
+ "nd.",
4667
+ "nda",
4668
+ "ndo",
4669
+ "nds",
4670
+ "near",
4671
+ "nearby",
4672
+ "nearly",
4673
+ "neb",
4674
+ "neb.",
4675
+ "nebr",
4676
+ "nebr.",
4677
+ "necessary",
4678
+ "ned",
4679
+ "need",
4680
+ "needed",
4681
+ "needs",
4682
+ "neelkanth",
4683
+ "negative",
4684
+ "neighbor",
4685
+ "neighboring",
4686
+ "neighbour",
4687
+ "neighbouring",
4688
+ "nel",
4689
+ "nellithada",
4690
+ "ner",
4691
+ "nes",
4692
+ "net",
4693
+ "netflix",
4694
+ "network",
4695
+ "networks",
4696
+ "neutral",
4697
+ "nev",
4698
+ "nev.",
4699
+ "new",
4700
+ "newest",
4701
+ "newhouse",
4702
+ "newly",
4703
+ "news",
4704
+ "nexa",
4705
+ "next",
4706
+ "ney",
4707
+ "nga",
4708
+ "nge",
4709
+ "ngh",
4710
+ "ngs",
4711
+ "ni",
4712
+ "nic",
4713
+ "nielseniq",
4714
+ "nieves",
4715
+ "nifty",
4716
+ "nigeria",
4717
+ "nikhil",
4718
+ "nine",
4719
+ "niper",
4720
+ "nipers",
4721
+ "niq",
4722
+ "nirbhar",
4723
+ "nirmala",
4724
+ "nis",
4725
+ "niti",
4726
+ "nitin",
4727
+ "nks",
4728
+ "nly",
4729
+ "nn.",
4730
+ "nna",
4731
+ "nnu",
4732
+ "nny",
4733
+ "no",
4734
+ "nobody",
4735
+ "nodal",
4736
+ "nomura",
4737
+ "non",
4738
+ "none",
4739
+ "nonprofit",
4740
+ "nor",
4741
+ "northern",
4742
+ "not",
4743
+ "notably",
4744
+ "note",
4745
+ "noted",
4746
+ "notes",
4747
+ "noteworthy",
4748
+ "nothin",
4749
+ "nothin'",
4750
+ "nothing",
4751
+ "nothin\u2019",
4752
+ "notice",
4753
+ "noticed",
4754
+ "nov",
4755
+ "nov.",
4756
+ "november",
4757
+ "now",
4758
+ "now?There",
4759
+ "now?there",
4760
+ "ns.",
4761
+ "nsdl",
4762
+ "nse",
4763
+ "nso",
4764
+ "nsso",
4765
+ "nst",
4766
+ "nt",
4767
+ "nt.",
4768
+ "nta",
4769
+ "nth",
4770
+ "nto",
4771
+ "nts",
4772
+ "nue",
4773
+ "nuff",
4774
+ "numbers",
4775
+ "numerous",
4776
+ "nurture",
4777
+ "nus",
4778
+ "nuthin",
4779
+ "nuthin'",
4780
+ "nuthin\u2019",
4781
+ "nvidia",
4782
+ "n\u2019s",
4783
+ "n\u2019t",
4784
+ "o",
4785
+ "o'clock",
4786
+ "o's",
4787
+ "o.",
4788
+ "o.0",
4789
+ "o.O",
4790
+ "o.o",
4791
+ "oEs",
4792
+ "o_0",
4793
+ "o_O",
4794
+ "o_o",
4795
+ "oad",
4796
+ "oal",
4797
+ "oan",
4798
+ "obe",
4799
+ "objectives",
4800
+ "obs",
4801
+ "observations",
4802
+ "observed",
4803
+ "obtained",
4804
+ "occur",
4805
+ "oce",
4806
+ "och",
4807
+ "ock",
4808
+ "ocs",
4809
+ "oct",
4810
+ "oct.",
4811
+ "october",
4812
+ "oda",
4813
+ "ode",
4814
+ "odi",
4815
+ "ods",
4816
+ "ody",
4817
+ "oes",
4818
+ "of",
4819
+ "of.",
4820
+ "ofA",
4821
+ "ofa",
4822
+ "off",
4823
+ "offer",
4824
+ "offered",
4825
+ "offering",
4826
+ "offers",
4827
+ "office",
4828
+ "officer",
4829
+ "officers",
4830
+ "offices",
4831
+ "official",
4832
+ "oft",
4833
+ "often",
4834
+ "ogi",
4835
+ "ogy",
4836
+ "oha",
4837
+ "ohn",
4838
+ "oid",
4839
+ "oil",
4840
+ "oin",
4841
+ "oka",
4842
+ "oke",
4843
+ "okla",
4844
+ "okla.",
4845
+ "oks",
4846
+ "ol",
4847
+ "ol'",
4848
+ "old",
4849
+ "ole",
4850
+ "oll",
4851
+ "olo",
4852
+ "ols",
4853
+ "ol\u2019",
4854
+ "ome",
4855
+ "oms",
4856
+ "omy",
4857
+ "on",
4858
+ "ona",
4859
+ "once",
4860
+ "ond",
4861
+ "one",
4862
+ "ones",
4863
+ "ong",
4864
+ "ongoing",
4865
+ "online",
4866
+ "only",
4867
+ "onn",
4868
+ "ons",
4869
+ "ont",
4870
+ "onx",
4871
+ "ony",
4872
+ "ood",
4873
+ "oof",
4874
+ "ook",
4875
+ "ool",
4876
+ "oom",
4877
+ "oon",
4878
+ "oop",
4879
+ "oor",
4880
+ "ope",
4881
+ "opec",
4882
+ "open",
4883
+ "operates",
4884
+ "operating",
4885
+ "operation",
4886
+ "operational",
4887
+ "operations",
4888
+ "operator",
4889
+ "operators",
4890
+ "opportunities",
4891
+ "opportunity",
4892
+ "opposite",
4893
+ "ops",
4894
+ "opt",
4895
+ "optimal",
4896
+ "optimism",
4897
+ "optimistic",
4898
+ "options",
4899
+ "or",
4900
+ "ord",
4901
+ "order",
4902
+ "orders",
4903
+ "ore",
4904
+ "ore.",
4905
+ "organic",
4906
+ "organisation",
4907
+ "organisations",
4908
+ "organization",
4909
+ "organizational",
4910
+ "organizations",
4911
+ "oriented",
4912
+ "ork",
4913
+ "orm",
4914
+ "orp",
4915
+ "ors",
4916
+ "ort",
4917
+ "ory",
4918
+ "os.",
4919
+ "ose",
4920
+ "osh",
4921
+ "oss",
4922
+ "ost",
4923
+ "ote",
4924
+ "oth",
4925
+ "other",
4926
+ "others",
4927
+ "ots",
4928
+ "ott",
4929
+ "oud",
4930
+ "ought",
4931
+ "oup",
4932
+ "our",
4933
+ "ous",
4934
+ "out",
4935
+ "outcome",
4936
+ "outflows",
4937
+ "outlets",
4938
+ "outlook",
4939
+ "outlooks",
4940
+ "outperformance",
4941
+ "outperformed",
4942
+ "outperforming",
4943
+ "output",
4944
+ "outside",
4945
+ "outstanding",
4946
+ "ov.",
4947
+ "ove",
4948
+ "over",
4949
+ "overage",
4950
+ "overall",
4951
+ "overcome",
4952
+ "overdue",
4953
+ "overexposed",
4954
+ "overload",
4955
+ "overloaded",
4956
+ "overlooked",
4957
+ "overreliance",
4958
+ "overseas",
4959
+ "overview",
4960
+ "overweight",
4961
+ "overwhelmed",
4962
+ "own",
4963
+ "owned",
4964
+ "ownership",
4965
+ "ows",
4966
+ "oxide",
4967
+ "oya",
4968
+ "o\u00dfe",
4969
+ "o\u2019clock",
4970
+ "o\u2019s",
4971
+ "p",
4972
+ "p.",
4973
+ "p.m",
4974
+ "p.m.",
4975
+ "pa",
4976
+ "pa.",
4977
+ "pace",
4978
+ "paced",
4979
+ "pad",
4980
+ "paddy",
4981
+ "paid",
4982
+ "pakistan",
4983
+ "pal",
4984
+ "palanivel",
4985
+ "pan",
4986
+ "panaji",
4987
+ "panchayat",
4988
+ "pandemic",
4989
+ "pantomath",
4990
+ "paper",
4991
+ "parali",
4992
+ "parameters",
4993
+ "parent",
4994
+ "park",
4995
+ "parks",
4996
+ "part",
4997
+ "participants",
4998
+ "participation",
4999
+ "particularly",
5000
+ "particulates",
5001
+ "parties",
5002
+ "partnerships",
5003
+ "parts",
5004
+ "parviz",
5005
+ "passenger",
5006
+ "passing",
5007
+ "passions",
5008
+ "past",
5009
+ "patents",
5010
+ "path",
5011
+ "pathway",
5012
+ "pathway(link",
5013
+ "pathways",
5014
+ "patna",
5015
+ "patronage",
5016
+ "paving",
5017
+ "pay",
5018
+ "paychex",
5019
+ "paying",
5020
+ "payment",
5021
+ "paypal",
5022
+ "payroll",
5023
+ "pdr",
5024
+ "pec",
5025
+ "ped",
5026
+ "pee",
5027
+ "peers",
5028
+ "pen",
5029
+ "penny",
5030
+ "people",
5031
+ "pepsico",
5032
+ "per",
5033
+ "percent",
5034
+ "percentage",
5035
+ "performance",
5036
+ "period",
5037
+ "periods",
5038
+ "permission",
5039
+ "permit",
5040
+ "permitted",
5041
+ "persistent",
5042
+ "person",
5043
+ "perspective",
5044
+ "pes",
5045
+ "petrochemical",
5046
+ "petrochemicals",
5047
+ "petrol",
5048
+ "ph",
5049
+ "ph.d.",
5050
+ "pharma",
5051
+ "pharmaceutical",
5052
+ "pharmaceuticals",
5053
+ "pharmacies",
5054
+ "pharmacy",
5055
+ "phase",
5056
+ "philosophy",
5057
+ "phone",
5058
+ "phy",
5059
+ "pick",
5060
+ "pickers",
5061
+ "picks",
5062
+ "picture",
5063
+ "pid",
5064
+ "piece",
5065
+ "pil",
5066
+ "pillars",
5067
+ "pinterest",
5068
+ "pipeline",
5069
+ "pis",
5070
+ "piyush",
5071
+ "place",
5072
+ "plan",
5073
+ "planet",
5074
+ "planned",
5075
+ "planning",
5076
+ "plans",
5077
+ "plants",
5078
+ "plastics).Lara",
5079
+ "plastics).lara",
5080
+ "platform",
5081
+ "platforms",
5082
+ "play",
5083
+ "played",
5084
+ "player",
5085
+ "players",
5086
+ "plays",
5087
+ "ple",
5088
+ "pleasant",
5089
+ "pleased",
5090
+ "plough",
5091
+ "plow",
5092
+ "ply",
5093
+ "plying",
5094
+ "pm",
5095
+ "pm2.5",
5096
+ "pmfby",
5097
+ "pmi",
5098
+ "pmksy",
5099
+ "pms",
5100
+ "pmv",
5101
+ "podcast",
5102
+ "point",
5103
+ "pointing",
5104
+ "points",
5105
+ "poised",
5106
+ "policies",
5107
+ "policy",
5108
+ "policymakers",
5109
+ "pollution",
5110
+ "pon",
5111
+ "pool",
5112
+ "poor",
5113
+ "popularity",
5114
+ "population",
5115
+ "portfolio",
5116
+ "portfolios",
5117
+ "pos",
5118
+ "positional",
5119
+ "positive",
5120
+ "positives",
5121
+ "possesses",
5122
+ "possible",
5123
+ "post",
5124
+ "posted",
5125
+ "posting",
5126
+ "potential",
5127
+ "power",
5128
+ "powerful",
5129
+ "powers",
5130
+ "ppa",
5131
+ "pps",
5132
+ "pr.",
5133
+ "pra",
5134
+ "practical",
5135
+ "practices",
5136
+ "practitioner",
5137
+ "pradesh",
5138
+ "pradhan",
5139
+ "pre",
5140
+ "preceding",
5141
+ "precise",
5142
+ "predicted",
5143
+ "prefab",
5144
+ "prefer",
5145
+ "preference",
5146
+ "premium",
5147
+ "prepare",
5148
+ "prepares",
5149
+ "preparing",
5150
+ "present",
5151
+ "presented",
5152
+ "presential",
5153
+ "president",
5154
+ "pressure",
5155
+ "pressures",
5156
+ "pretend",
5157
+ "prevent",
5158
+ "preventive",
5159
+ "previous",
5160
+ "previously",
5161
+ "price",
5162
+ "prices",
5163
+ "pricing",
5164
+ "primarily",
5165
+ "primary",
5166
+ "prime",
5167
+ "primer",
5168
+ "prior",
5169
+ "prioritises",
5170
+ "prioritizes",
5171
+ "priority",
5172
+ "privacy",
5173
+ "private",
5174
+ "pro",
5175
+ "proactive",
5176
+ "probably",
5177
+ "process",
5178
+ "processes",
5179
+ "processing",
5180
+ "procure",
5181
+ "procurement",
5182
+ "produced",
5183
+ "producers",
5184
+ "producing",
5185
+ "product",
5186
+ "production",
5187
+ "productive",
5188
+ "productivity",
5189
+ "products",
5190
+ "prof",
5191
+ "prof.",
5192
+ "profession",
5193
+ "professional",
5194
+ "professionals",
5195
+ "profiles",
5196
+ "profit",
5197
+ "profitability",
5198
+ "profitable",
5199
+ "profits",
5200
+ "program",
5201
+ "programmatic",
5202
+ "programme",
5203
+ "programmes",
5204
+ "programs",
5205
+ "progress",
5206
+ "prohibitively",
5207
+ "project",
5208
+ "projected",
5209
+ "projections",
5210
+ "projects",
5211
+ "prominent",
5212
+ "promise",
5213
+ "promising",
5214
+ "promote",
5215
+ "promotes",
5216
+ "promoting",
5217
+ "promotion",
5218
+ "pronged",
5219
+ "propeller",
5220
+ "property",
5221
+ "proposed",
5222
+ "proposes",
5223
+ "prospects",
5224
+ "protect",
5225
+ "protected",
5226
+ "protons",
5227
+ "prove",
5228
+ "provide",
5229
+ "provided",
5230
+ "providers",
5231
+ "provides",
5232
+ "prowess",
5233
+ "prudential",
5234
+ "pse",
5235
+ "psu",
5236
+ "psus",
5237
+ "pt.",
5238
+ "public",
5239
+ "publication",
5240
+ "publications",
5241
+ "published",
5242
+ "publishing",
5243
+ "pulling",
5244
+ "punjab",
5245
+ "pur",
5246
+ "purchase",
5247
+ "purchases",
5248
+ "purchasing",
5249
+ "pursued",
5250
+ "pusa",
5251
+ "push",
5252
+ "pushing",
5253
+ "put",
5254
+ "putting",
5255
+ "q",
5256
+ "q.",
5257
+ "q2",
5258
+ "qatar",
5259
+ "qqq",
5260
+ "quality",
5261
+ "quarter",
5262
+ "quarterly",
5263
+ "quarters",
5264
+ "que",
5265
+ "question",
5266
+ "quickly",
5267
+ "quite",
5268
+ "quo",
5269
+ "quoting",
5270
+ "r",
5271
+ "r&d",
5272
+ "r&d.",
5273
+ "r.",
5274
+ "rabi",
5275
+ "racks",
5276
+ "rag",
5277
+ "rai",
5278
+ "raise",
5279
+ "raised",
5280
+ "raises",
5281
+ "rajan",
5282
+ "ral",
5283
+ "rally",
5284
+ "ram",
5285
+ "ramadan",
5286
+ "ramesh",
5287
+ "ramping",
5288
+ "range",
5289
+ "ranging",
5290
+ "ranked",
5291
+ "ranks",
5292
+ "rapid",
5293
+ "rapidly",
5294
+ "rare",
5295
+ "ras",
5296
+ "rat",
5297
+ "rate",
5298
+ "rates",
5299
+ "rather",
5300
+ "rating",
5301
+ "ratings",
5302
+ "ratio",
5303
+ "raw",
5304
+ "ray",
5305
+ "rbs",
5306
+ "rby",
5307
+ "rce",
5308
+ "rch",
5309
+ "rdo",
5310
+ "rds",
5311
+ "re",
5312
+ "re.",
5313
+ "rea",
5314
+ "reach",
5315
+ "reached",
5316
+ "reactions",
5317
+ "read",
5318
+ "readers",
5319
+ "reading",
5320
+ "real",
5321
+ "realisations",
5322
+ "reality",
5323
+ "realizations",
5324
+ "realize",
5325
+ "really",
5326
+ "reason",
5327
+ "reasons",
5328
+ "receded",
5329
+ "receding",
5330
+ "receipt",
5331
+ "receivables",
5332
+ "receive",
5333
+ "received",
5334
+ "recent",
5335
+ "recently",
5336
+ "recession",
5337
+ "reclassified",
5338
+ "recognised",
5339
+ "recognized",
5340
+ "recommend",
5341
+ "record",
5342
+ "recover",
5343
+ "recovery",
5344
+ "recruits",
5345
+ "recycling",
5346
+ "red",
5347
+ "reduce",
5348
+ "reduced",
5349
+ "reduces",
5350
+ "reduction",
5351
+ "reductions",
5352
+ "ree",
5353
+ "reeling",
5354
+ "reelstar",
5355
+ "referring",
5356
+ "reflected",
5357
+ "reforms",
5358
+ "reformulating",
5359
+ "regard",
5360
+ "regarding",
5361
+ "region",
5362
+ "regional",
5363
+ "regions",
5364
+ "registered",
5365
+ "registering",
5366
+ "registration",
5367
+ "regularly",
5368
+ "regulated",
5369
+ "regulation",
5370
+ "regulations",
5371
+ "regulators",
5372
+ "regulatory",
5373
+ "reinforce",
5374
+ "reinforced",
5375
+ "reinvesting",
5376
+ "reiterated",
5377
+ "rejig",
5378
+ "rel",
5379
+ "relating",
5380
+ "relations",
5381
+ "relationship",
5382
+ "relative",
5383
+ "relatively",
5384
+ "release",
5385
+ "released",
5386
+ "relevance",
5387
+ "relevant",
5388
+ "reliable",
5389
+ "reliance",
5390
+ "relied",
5391
+ "relies",
5392
+ "rely",
5393
+ "relying",
5394
+ "remain",
5395
+ "remained",
5396
+ "remaining",
5397
+ "remains",
5398
+ "remarkable",
5399
+ "remediation",
5400
+ "reminder",
5401
+ "remove",
5402
+ "removed",
5403
+ "ren",
5404
+ "renew",
5405
+ "renewable",
5406
+ "renewed",
5407
+ "renowned",
5408
+ "rental",
5409
+ "rep",
5410
+ "rep.",
5411
+ "repeal",
5412
+ "repercussions",
5413
+ "repetitive",
5414
+ "replace",
5415
+ "repoening",
5416
+ "report",
5417
+ "reported",
5418
+ "reporters",
5419
+ "reporting",
5420
+ "reports",
5421
+ "repository",
5422
+ "representing",
5423
+ "represents",
5424
+ "reputation",
5425
+ "request",
5426
+ "required",
5427
+ "requirements",
5428
+ "requires",
5429
+ "requiring",
5430
+ "requisite",
5431
+ "res",
5432
+ "rescue",
5433
+ "rescuers",
5434
+ "research",
5435
+ "researchers",
5436
+ "residents",
5437
+ "resilience",
5438
+ "resilient",
5439
+ "resistance",
5440
+ "resistant",
5441
+ "resources",
5442
+ "respect",
5443
+ "respective",
5444
+ "respond",
5445
+ "responded",
5446
+ "respondent",
5447
+ "respondents",
5448
+ "response",
5449
+ "responsibility",
5450
+ "responsible",
5451
+ "rest",
5452
+ "restrictions",
5453
+ "result",
5454
+ "resulted",
5455
+ "retail",
5456
+ "retails",
5457
+ "retain",
5458
+ "retrofitting",
5459
+ "return",
5460
+ "returned",
5461
+ "returns",
5462
+ "reuters",
5463
+ "rev",
5464
+ "rev.",
5465
+ "revealed",
5466
+ "reveals",
5467
+ "revenue",
5468
+ "review",
5469
+ "revised",
5470
+ "revitalize",
5471
+ "revival",
5472
+ "revolution",
5473
+ "revolve",
5474
+ "rew",
5475
+ "rey",
5476
+ "rge",
5477
+ "rgy",
5478
+ "rhetan",
5479
+ "ria",
5480
+ "ric",
5481
+ "rice",
5482
+ "rich",
5483
+ "richard",
5484
+ "rif",
5485
+ "right",
5486
+ "ril",
5487
+ "rim",
5488
+ "ris",
5489
+ "rise",
5490
+ "risen",
5491
+ "rising",
5492
+ "risk",
5493
+ "risks",
5494
+ "rivalry",
5495
+ "riz",
5496
+ "rk.",
5497
+ "rks",
5498
+ "rld",
5499
+ "rly",
5500
+ "rma",
5501
+ "rms",
5502
+ "rns",
5503
+ "roads",
5504
+ "robbing",
5505
+ "robust",
5506
+ "robustness",
5507
+ "roce",
5508
+ "rof",
5509
+ "rol",
5510
+ "role",
5511
+ "roll",
5512
+ "rolling",
5513
+ "rollout",
5514
+ "rom",
5515
+ "roof",
5516
+ "rooted",
5517
+ "rop",
5518
+ "roped",
5519
+ "ros",
5520
+ "rose",
5521
+ "rough",
5522
+ "roughly",
5523
+ "round",
5524
+ "row",
5525
+ "rp.",
5526
+ "rry",
5527
+ "rs",
5528
+ "rs.",
5529
+ "rs.10218",
5530
+ "rs.3000",
5531
+ "rs.5.00",
5532
+ "rs.6000",
5533
+ "rs.6426",
5534
+ "rse",
5535
+ "rsmw",
5536
+ "rst",
5537
+ "rswm",
5538
+ "rth",
5539
+ "rtos",
5540
+ "rts",
5541
+ "rty",
5542
+ "rum",
5543
+ "run",
5544
+ "rup",
5545
+ "rupee",
5546
+ "rupees",
5547
+ "rupert",
5548
+ "rural",
5549
+ "rus",
5550
+ "russell",
5551
+ "russia",
5552
+ "russian",
5553
+ "s",
5554
+ "s&p",
5555
+ "s's",
5556
+ "s,3",
5557
+ "s.",
5558
+ "s.1",
5559
+ "s.c.",
5560
+ "sabha",
5561
+ "safe",
5562
+ "safety",
5563
+ "saharanpur",
5564
+ "said",
5565
+ "sail",
5566
+ "sal",
5567
+ "salem",
5568
+ "sales",
5569
+ "salesforce",
5570
+ "same",
5571
+ "san",
5572
+ "sanitation",
5573
+ "sanjay",
5574
+ "santhapettai",
5575
+ "santosh",
5576
+ "saravanan",
5577
+ "sarees",
5578
+ "sas",
5579
+ "satisfy",
5580
+ "saus",
5581
+ "savings",
5582
+ "saw",
5583
+ "say",
5584
+ "says",
5585
+ "sbi",
5586
+ "scale",
5587
+ "scaled",
5588
+ "scam",
5589
+ "scammers",
5590
+ "scams",
5591
+ "scarce",
5592
+ "scenarios",
5593
+ "schedule",
5594
+ "scheduled",
5595
+ "schemes",
5596
+ "school",
5597
+ "schools",
5598
+ "sci",
5599
+ "science",
5600
+ "scientific",
5601
+ "scindia",
5602
+ "sco",
5603
+ "scrapped",
5604
+ "sdl",
5605
+ "sdp",
5606
+ "se",
5607
+ "se4",
5608
+ "season",
5609
+ "seasonally",
5610
+ "second",
5611
+ "secretary",
5612
+ "section",
5613
+ "sections",
5614
+ "sector",
5615
+ "sectoral",
5616
+ "sectors",
5617
+ "secures",
5618
+ "securities",
5619
+ "security",
5620
+ "sed",
5621
+ "see",
5622
+ "seeing",
5623
+ "seeking",
5624
+ "seeks",
5625
+ "seems",
5626
+ "seen",
5627
+ "segment",
5628
+ "segmented",
5629
+ "segments",
5630
+ "sel",
5631
+ "select",
5632
+ "self",
5633
+ "sell",
5634
+ "selling",
5635
+ "sells",
5636
+ "sellschop",
5637
+ "sen",
5638
+ "sen.",
5639
+ "senior",
5640
+ "sense",
5641
+ "sent",
5642
+ "sep",
5643
+ "sep.",
5644
+ "separate",
5645
+ "separates",
5646
+ "sept",
5647
+ "sept.",
5648
+ "september",
5649
+ "ser",
5650
+ "series",
5651
+ "server",
5652
+ "serves",
5653
+ "service",
5654
+ "services",
5655
+ "services,3",
5656
+ "ses",
5657
+ "sessions",
5658
+ "set",
5659
+ "setting",
5660
+ "seven",
5661
+ "several",
5662
+ "severely",
5663
+ "sey",
5664
+ "sfy",
5665
+ "sh.",
5666
+ "sha",
5667
+ "shah",
5668
+ "shahbazov",
5669
+ "shake",
5670
+ "shall",
5671
+ "shape",
5672
+ "shaping",
5673
+ "share",
5674
+ "shareholders",
5675
+ "shares",
5676
+ "sharp",
5677
+ "sharpest",
5678
+ "shashank",
5679
+ "she",
5680
+ "she's",
5681
+ "sheer",
5682
+ "sheikh",
5683
+ "sheng",
5684
+ "she\u2019s",
5685
+ "shi",
5686
+ "shift",
5687
+ "shifting",
5688
+ "shipped",
5689
+ "shockwaves",
5690
+ "shop",
5691
+ "short",
5692
+ "shortage",
5693
+ "shortages",
5694
+ "shortcomings",
5695
+ "should",
5696
+ "show",
5697
+ "showcase",
5698
+ "showcasing",
5699
+ "showed",
5700
+ "showing",
5701
+ "shown",
5702
+ "shrank",
5703
+ "shutting",
5704
+ "sia",
5705
+ "sic",
5706
+ "sickle",
5707
+ "side",
5708
+ "sidelines",
5709
+ "signal",
5710
+ "signaled",
5711
+ "signaling",
5712
+ "signalled",
5713
+ "signals",
5714
+ "signed",
5715
+ "significance",
5716
+ "significant",
5717
+ "significantly",
5718
+ "signs",
5719
+ "sil",
5720
+ "silicon",
5721
+ "sim",
5722
+ "similar",
5723
+ "simple",
5724
+ "simply",
5725
+ "since",
5726
+ "sinchai",
5727
+ "singh",
5728
+ "single",
5729
+ "sis",
5730
+ "sisters",
5731
+ "site",
5732
+ "sites",
5733
+ "sitharaman",
5734
+ "sitting",
5735
+ "situ",
5736
+ "situated",
5737
+ "situation",
5738
+ "situations",
5739
+ "sixth",
5740
+ "sizable",
5741
+ "size",
5742
+ "skilled",
5743
+ "skills",
5744
+ "sks",
5745
+ "slightly",
5746
+ "slipped",
5747
+ "slow",
5748
+ "slowdown",
5749
+ "slower",
5750
+ "sluggish",
5751
+ "slumped",
5752
+ "sly",
5753
+ "small",
5754
+ "smaller",
5755
+ "smart",
5756
+ "smw",
5757
+ "snap",
5758
+ "so",
5759
+ "soared",
5760
+ "social",
5761
+ "societal",
5762
+ "society",
5763
+ "soil",
5764
+ "sold",
5765
+ "solid",
5766
+ "solutions",
5767
+ "some",
5768
+ "somethin",
5769
+ "somethin'",
5770
+ "something",
5771
+ "somethin\u2019",
5772
+ "sometimes",
5773
+ "somewhat",
5774
+ "son",
5775
+ "soon",
5776
+ "sophisticated",
5777
+ "sought",
5778
+ "soundness",
5779
+ "source",
5780
+ "sources",
5781
+ "sown",
5782
+ "space",
5783
+ "spdr",
5784
+ "speak",
5785
+ "speaking",
5786
+ "special",
5787
+ "specific",
5788
+ "specifically",
5789
+ "spectrum",
5790
+ "speed",
5791
+ "spend",
5792
+ "spenders",
5793
+ "spending",
5794
+ "spi",
5795
+ "spike",
5796
+ "spinners",
5797
+ "spinning",
5798
+ "spoke",
5799
+ "sponsored",
5800
+ "spread",
5801
+ "sps",
5802
+ "spurs",
5803
+ "square",
5804
+ "srivastava",
5805
+ "srs",
5806
+ "ss.",
5807
+ "sse",
5808
+ "sso",
5809
+ "st",
5810
+ "st.",
5811
+ "stabilise",
5812
+ "stability",
5813
+ "stabilize",
5814
+ "stable",
5815
+ "stage",
5816
+ "stages",
5817
+ "stagnant",
5818
+ "stake",
5819
+ "stakeholder",
5820
+ "stakeholders",
5821
+ "stakes",
5822
+ "stalin",
5823
+ "stance",
5824
+ "standard",
5825
+ "standardised",
5826
+ "standardized",
5827
+ "standards",
5828
+ "standout",
5829
+ "stark",
5830
+ "start",
5831
+ "started",
5832
+ "starting",
5833
+ "starts",
5834
+ "state",
5835
+ "statebihar",
5836
+ "stated",
5837
+ "states",
5838
+ "statistical",
5839
+ "statistics",
5840
+ "stats",
5841
+ "status",
5842
+ "stay",
5843
+ "staying",
5844
+ "steadily",
5845
+ "steady",
5846
+ "steel",
5847
+ "step",
5848
+ "stepping",
5849
+ "steps",
5850
+ "stick",
5851
+ "still",
5852
+ "stock",
5853
+ "stocks",
5854
+ "stone",
5855
+ "stop",
5856
+ "storage",
5857
+ "storey",
5858
+ "story",
5859
+ "straight",
5860
+ "strategic",
5861
+ "strategically",
5862
+ "strategies",
5863
+ "strategy",
5864
+ "straw",
5865
+ "streaming",
5866
+ "streamlined",
5867
+ "streams",
5868
+ "street",
5869
+ "strength",
5870
+ "strengthen",
5871
+ "strengthened",
5872
+ "strengthening",
5873
+ "strengths",
5874
+ "stress",
5875
+ "strictly",
5876
+ "stringent",
5877
+ "stripped",
5878
+ "strives",
5879
+ "strong",
5880
+ "stronger",
5881
+ "strongest",
5882
+ "strongly",
5883
+ "structure",
5884
+ "sts",
5885
+ "stubble",
5886
+ "student",
5887
+ "students",
5888
+ "study",
5889
+ "stunted",
5890
+ "sub",
5891
+ "subindex",
5892
+ "subindexes",
5893
+ "subject",
5894
+ "subjects",
5895
+ "submitted",
5896
+ "subsector",
5897
+ "subsidiary",
5898
+ "subsidies",
5899
+ "substantially",
5900
+ "success",
5901
+ "successes",
5902
+ "successful",
5903
+ "such",
5904
+ "sudden",
5905
+ "sue",
5906
+ "suffering",
5907
+ "sufficient",
5908
+ "suggest",
5909
+ "suggested",
5910
+ "suggests",
5911
+ "suisse",
5912
+ "suitable",
5913
+ "sum",
5914
+ "summit",
5915
+ "supervision",
5916
+ "supplement",
5917
+ "supplementary",
5918
+ "supplemented",
5919
+ "supplements",
5920
+ "suppliers",
5921
+ "supply",
5922
+ "support",
5923
+ "supporting",
5924
+ "supports",
5925
+ "surged",
5926
+ "surging",
5927
+ "surplus",
5928
+ "surprise",
5929
+ "survey",
5930
+ "surveys",
5931
+ "sus",
5932
+ "suspicious",
5933
+ "sustainability",
5934
+ "sustainable",
5935
+ "sustainably",
5936
+ "sustained",
5937
+ "sustaining",
5938
+ "sustenance",
5939
+ "suvs",
5940
+ "suzuki",
5941
+ "sva",
5942
+ "svb",
5943
+ "swastika",
5944
+ "swings",
5945
+ "swm",
5946
+ "swung",
5947
+ "synergize",
5948
+ "sys",
5949
+ "system",
5950
+ "systems",
5951
+ "s\u2019s",
5952
+ "t",
5953
+ "t's",
5954
+ "t.",
5955
+ "ta",
5956
+ "tabled",
5957
+ "tackle",
5958
+ "tactical",
5959
+ "tai",
5960
+ "take",
5961
+ "taken",
5962
+ "taking",
5963
+ "tal",
5964
+ "tall",
5965
+ "tamil",
5966
+ "tan",
5967
+ "tantalum",
5968
+ "tar",
5969
+ "target",
5970
+ "targeting",
5971
+ "targets",
5972
+ "tariffs",
5973
+ "tata",
5974
+ "tay",
5975
+ "tch",
5976
+ "tcs",
5977
+ "td.",
5978
+ "teams",
5979
+ "tech",
5980
+ "technical",
5981
+ "technically",
5982
+ "techniques",
5983
+ "technological",
5984
+ "technologies",
5985
+ "technologists",
5986
+ "technology",
5987
+ "ted",
5988
+ "tedious",
5989
+ "tee",
5990
+ "tel",
5991
+ "telangana",
5992
+ "telco",
5993
+ "telecom",
5994
+ "telecommunication",
5995
+ "telecommunications",
5996
+ "telecoms",
5997
+ "telecomtalk",
5998
+ "tells",
5999
+ "tem",
6000
+ "ten",
6001
+ "tenn",
6002
+ "tenn.",
6003
+ "tensions",
6004
+ "tep",
6005
+ "ter",
6006
+ "term",
6007
+ "terms",
6008
+ "terrain",
6009
+ "terrains",
6010
+ "tertiary",
6011
+ "tes",
6012
+ "test",
6013
+ "testing",
6014
+ "tex",
6015
+ "textile",
6016
+ "textiles",
6017
+ "tfs",
6018
+ "thakur",
6019
+ "than",
6020
+ "thani",
6021
+ "thanks",
6022
+ "that",
6023
+ "that's",
6024
+ "that\u2019s",
6025
+ "the",
6026
+ "their",
6027
+ "them",
6028
+ "theme",
6029
+ "themes",
6030
+ "then",
6031
+ "theoretical",
6032
+ "there",
6033
+ "there's",
6034
+ "thereby",
6035
+ "therefore",
6036
+ "there\u2019s",
6037
+ "these",
6038
+ "theses",
6039
+ "they",
6040
+ "thiaga",
6041
+ "things",
6042
+ "think",
6043
+ "third",
6044
+ "thirds",
6045
+ "thirugnanam",
6046
+ "this",
6047
+ "this's",
6048
+ "this./als",
6049
+ "this\u2019s",
6050
+ "thomas",
6051
+ "thomson",
6052
+ "those",
6053
+ "though",
6054
+ "thought",
6055
+ "thousands",
6056
+ "three",
6057
+ "thresholds",
6058
+ "thrive",
6059
+ "through",
6060
+ "throughout",
6061
+ "ths",
6062
+ "thursday",
6063
+ "thus",
6064
+ "thy",
6065
+ "tic",
6066
+ "tier",
6067
+ "tight",
6068
+ "tightly",
6069
+ "tii",
6070
+ "til",
6071
+ "till",
6072
+ "time",
6073
+ "timely",
6074
+ "times",
6075
+ "tin",
6076
+ "tio",
6077
+ "tis",
6078
+ "titans",
6079
+ "tle",
6080
+ "tly",
6081
+ "tma",
6082
+ "tmt",
6083
+ "tna",
6084
+ "to",
6085
+ "today",
6086
+ "together",
6087
+ "told",
6088
+ "tolerance",
6089
+ "tolerances",
6090
+ "tom",
6091
+ "tomar",
6092
+ "ton",
6093
+ "tone",
6094
+ "tonnes",
6095
+ "tons",
6096
+ "too",
6097
+ "took",
6098
+ "tools",
6099
+ "top",
6100
+ "topics",
6101
+ "tor",
6102
+ "tos",
6103
+ "total",
6104
+ "tottolo",
6105
+ "touch",
6106
+ "tough",
6107
+ "tougher",
6108
+ "tourism",
6109
+ "towards",
6110
+ "tower",
6111
+ "tra",
6112
+ "track",
6113
+ "tracked",
6114
+ "tracking",
6115
+ "tracks",
6116
+ "tractors",
6117
+ "trade",
6118
+ "traded",
6119
+ "trades",
6120
+ "trading",
6121
+ "traditional",
6122
+ "train",
6123
+ "training",
6124
+ "tranches",
6125
+ "transactions",
6126
+ "transfers",
6127
+ "transform",
6128
+ "transformation",
6129
+ "transformationsThe",
6130
+ "transformationsthe",
6131
+ "transforming",
6132
+ "transition",
6133
+ "translational",
6134
+ "transmit",
6135
+ "transport",
6136
+ "trapped",
6137
+ "travel",
6138
+ "tre",
6139
+ "treatment",
6140
+ "trend",
6141
+ "trends",
6142
+ "tri",
6143
+ "tribal",
6144
+ "tridens",
6145
+ "trillion",
6146
+ "troubles",
6147
+ "truly",
6148
+ "trusts",
6149
+ "try",
6150
+ "tse",
6151
+ "tsr",
6152
+ "tti",
6153
+ "tube",
6154
+ "tuesday",
6155
+ "tum",
6156
+ "tumultuous",
6157
+ "tunnel",
6158
+ "turkey",
6159
+ "turn",
6160
+ "turning",
6161
+ "tus",
6162
+ "tweet",
6163
+ "twitter",
6164
+ "two",
6165
+ "tya",
6166
+ "type",
6167
+ "typically",
6168
+ "t\u2019s",
6169
+ "u",
6170
+ "u.",
6171
+ "u.s.",
6172
+ "uae",
6173
+ "ual",
6174
+ "ube",
6175
+ "ubs",
6176
+ "ubt",
6177
+ "uce",
6178
+ "uch",
6179
+ "uco",
6180
+ "uct",
6181
+ "ude",
6182
+ "uds",
6183
+ "udy",
6184
+ "ued",
6185
+ "uer",
6186
+ "ues",
6187
+ "uff",
6188
+ "ug.",
6189
+ "uge",
6190
+ "ugh",
6191
+ "ugs",
6192
+ "uid",
6193
+ "uk",
6194
+ "ukh",
6195
+ "uki",
6196
+ "ukraine",
6197
+ "ul.",
6198
+ "ula",
6199
+ "uld",
6200
+ "ule",
6201
+ "ull",
6202
+ "ult",
6203
+ "ultimately",
6204
+ "uly",
6205
+ "um-",
6206
+ "ume",
6207
+ "ump",
6208
+ "un.",
6209
+ "unaffected",
6210
+ "unaffordable",
6211
+ "uncertainties",
6212
+ "uncontrolled",
6213
+ "und",
6214
+ "under",
6215
+ "underline",
6216
+ "underlying",
6217
+ "underperformance",
6218
+ "underpinning",
6219
+ "understaffing",
6220
+ "understand",
6221
+ "understanding",
6222
+ "understood",
6223
+ "undertakings",
6224
+ "underutilizing",
6225
+ "underweight",
6226
+ "undoubtedly",
6227
+ "une",
6228
+ "unequivocal",
6229
+ "unfavorable",
6230
+ "unfavourable",
6231
+ "ung",
6232
+ "uniformly",
6233
+ "union",
6234
+ "unique",
6235
+ "united",
6236
+ "units",
6237
+ "universal",
6238
+ "universe",
6239
+ "universities",
6240
+ "unlike",
6241
+ "unlocking",
6242
+ "unparalleled",
6243
+ "unprecedented",
6244
+ "unstructured",
6245
+ "unt",
6246
+ "until",
6247
+ "unwilling",
6248
+ "up",
6249
+ "upcoming",
6250
+ "upgrade",
6251
+ "upgrading",
6252
+ "upon",
6253
+ "ups",
6254
+ "upside",
6255
+ "upswing",
6256
+ "uptick",
6257
+ "upturn",
6258
+ "ura",
6259
+ "urb",
6260
+ "urban",
6261
+ "urbanization",
6262
+ "ure",
6263
+ "urgent",
6264
+ "urn",
6265
+ "urs",
6266
+ "urt",
6267
+ "uru",
6268
+ "us",
6269
+ "us$",
6270
+ "usa",
6271
+ "usage",
6272
+ "usamah",
6273
+ "usd",
6274
+ "use",
6275
+ "used",
6276
+ "useful",
6277
+ "user",
6278
+ "users",
6279
+ "ush",
6280
+ "using",
6281
+ "ust",
6282
+ "usual",
6283
+ "usually",
6284
+ "ute",
6285
+ "uti",
6286
+ "utilized",
6287
+ "uto",
6288
+ "uts",
6289
+ "uttar",
6290
+ "uty",
6291
+ "uvs",
6292
+ "v",
6293
+ "v.",
6294
+ "v.s",
6295
+ "v.s.",
6296
+ "v.v",
6297
+ "v_v",
6298
+ "va",
6299
+ "va.",
6300
+ "vac",
6301
+ "vaccinations",
6302
+ "vaccines",
6303
+ "val",
6304
+ "valid",
6305
+ "valley",
6306
+ "value",
6307
+ "valued",
6308
+ "vanguard",
6309
+ "vardhman",
6310
+ "variety",
6311
+ "various",
6312
+ "vary",
6313
+ "vci",
6314
+ "ve",
6315
+ "ved",
6316
+ "vedanta",
6317
+ "vehicle",
6318
+ "vehicles",
6319
+ "vek",
6320
+ "vel",
6321
+ "ven",
6322
+ "ventilation",
6323
+ "ver",
6324
+ "verifying",
6325
+ "version",
6326
+ "very",
6327
+ "ves",
6328
+ "vey",
6329
+ "vgt",
6330
+ "viable",
6331
+ "vibrant",
6332
+ "vice",
6333
+ "vid",
6334
+ "video",
6335
+ "view",
6336
+ "viewed",
6337
+ "vil",
6338
+ "villagers",
6339
+ "vin",
6340
+ "virtual",
6341
+ "virudhunagar",
6342
+ "vis",
6343
+ "visa",
6344
+ "visibility",
6345
+ "vision",
6346
+ "visitors",
6347
+ "vital",
6348
+ "vitara",
6349
+ "vivaldipablo",
6350
+ "vivek",
6351
+ "viz",
6352
+ "vks",
6353
+ "volatile",
6354
+ "volatility",
6355
+ "volume",
6356
+ "volumes",
6357
+ "vs",
6358
+ "vs.",
6359
+ "vulnerabilities",
6360
+ "w",
6361
+ "w's",
6362
+ "w.",
6363
+ "w/o",
6364
+ "wages",
6365
+ "wake",
6366
+ "walgreens",
6367
+ "waning",
6368
+ "want",
6369
+ "wants",
6370
+ "war",
6371
+ "warns",
6372
+ "warren",
6373
+ "was",
6374
+ "wash",
6375
+ "wash.",
6376
+ "watched",
6377
+ "water",
6378
+ "waters",
6379
+ "watershed",
6380
+ "way",
6381
+ "ways",
6382
+ "we",
6383
+ "weak",
6384
+ "weakening",
6385
+ "wealthiest",
6386
+ "weather",
6387
+ "web2",
6388
+ "web3",
6389
+ "website",
6390
+ "wed",
6391
+ "wednesday",
6392
+ "week",
6393
+ "weekly",
6394
+ "weight",
6395
+ "weighted",
6396
+ "weighting",
6397
+ "weights",
6398
+ "wel",
6399
+ "welcome",
6400
+ "welcomed",
6401
+ "welfare",
6402
+ "well",
6403
+ "wellness",
6404
+ "went",
6405
+ "wer",
6406
+ "were",
6407
+ "whammy",
6408
+ "what",
6409
+ "what's",
6410
+ "whatever",
6411
+ "what\u2019s",
6412
+ "when",
6413
+ "when's",
6414
+ "when\u2019s",
6415
+ "where",
6416
+ "where's",
6417
+ "whereas",
6418
+ "where\u2019s",
6419
+ "whether",
6420
+ "which",
6421
+ "while",
6422
+ "who",
6423
+ "who's",
6424
+ "whole",
6425
+ "wholesale",
6426
+ "whose",
6427
+ "who\u2019s",
6428
+ "why",
6429
+ "why's",
6430
+ "why\u2019s",
6431
+ "wide",
6432
+ "widely",
6433
+ "wider",
6434
+ "widespread",
6435
+ "will",
6436
+ "willing",
6437
+ "winning",
6438
+ "wipro",
6439
+ "wireless",
6440
+ "wis",
6441
+ "wis.",
6442
+ "with",
6443
+ "withdrawing",
6444
+ "within",
6445
+ "without",
6446
+ "withstand",
6447
+ "witnessing",
6448
+ "wly",
6449
+ "wo",
6450
+ "wolfgang",
6451
+ "wonder",
6452
+ "words",
6453
+ "work",
6454
+ "worker",
6455
+ "workers",
6456
+ "workforce",
6457
+ "working",
6458
+ "works",
6459
+ "workshops",
6460
+ "world",
6461
+ "worldwide",
6462
+ "worry",
6463
+ "worsens",
6464
+ "worth",
6465
+ "would",
6466
+ "write",
6467
+ "writer",
6468
+ "wrote",
6469
+ "wth",
6470
+ "w\u2019s",
6471
+ "x",
6472
+ "x&x",
6473
+ "x&x.",
6474
+ "x'",
6475
+ "x'x",
6476
+ "x'xxxx",
6477
+ "x.",
6478
+ "x.X",
6479
+ "x.d",
6480
+ "x.x",
6481
+ "x.x.",
6482
+ "x/x",
6483
+ "xD",
6484
+ "xDD",
6485
+ "xX",
6486
+ "xXX",
6487
+ "xXxxxx",
6488
+ "x_X",
6489
+ "x_d",
6490
+ "x_x",
6491
+ "xam",
6492
+ "xd",
6493
+ "xdd",
6494
+ "xed",
6495
+ "xes",
6496
+ "xl6",
6497
+ "xlk",
6498
+ "xth",
6499
+ "xx",
6500
+ "xx'",
6501
+ "xx'x",
6502
+ "xx'xx",
6503
+ "xx-",
6504
+ "xx.",
6505
+ "xx.d.dd",
6506
+ "xx.dddd",
6507
+ "xxd",
6508
+ "xxd.d",
6509
+ "xxdd",
6510
+ "xxddx",
6511
+ "xxdxxxx",
6512
+ "xxx",
6513
+ "xxx'x",
6514
+ "xxx.",
6515
+ "xxx.xxxx",
6516
+ "xxx/xx",
6517
+ "xxx?Xxxxx",
6518
+ "xxx?xxxx",
6519
+ "xxxd",
6520
+ "xxxx",
6521
+ "xxxx'",
6522
+ "xxxx'x",
6523
+ "xxxx(xxxx",
6524
+ "xxxx).Xxxx",
6525
+ "xxxx).d",
6526
+ "xxxx).xxxx",
6527
+ "xxxx,d",
6528
+ "xxxx-",
6529
+ "xxxx-dd",
6530
+ "xxxx./xxx",
6531
+ "xxxx.d",
6532
+ "xxxx.x",
6533
+ "xxxx?xxx",
6534
+ "xxxxXx",
6535
+ "xxxxXxx",
6536
+ "xxxxd",
6537
+ "xxxxdxxxx",
6538
+ "xxxx\u2019",
6539
+ "xxxx\u2019x",
6540
+ "xxx\u2019x",
6541
+ "xx\u2019",
6542
+ "xx\u2019x",
6543
+ "xx\u2019xx",
6544
+ "x\u2019",
6545
+ "x\u2019x",
6546
+ "x\u2019xxxx",
6547
+ "x\ufe35x",
6548
+ "y",
6549
+ "y'",
6550
+ "y's",
6551
+ "y.",
6552
+ "y22",
6553
+ "y24",
6554
+ "yal",
6555
+ "yam",
6556
+ "yarn",
6557
+ "yas",
6558
+ "yat",
6559
+ "year",
6560
+ "years",
6561
+ "yed",
6562
+ "yer",
6563
+ "yes",
6564
+ "yet",
6565
+ "yields",
6566
+ "yms",
6567
+ "yog",
6568
+ "yogi",
6569
+ "yojana",
6570
+ "you",
6571
+ "ype",
6572
+ "yst",
6573
+ "ytd",
6574
+ "y\u2019",
6575
+ "y\u2019s",
6576
+ "z",
6577
+ "z.",
6578
+ "zakir",
6579
+ "zed",
6580
+ "zes",
6581
+ "zon",
6582
+ "zone",
6583
+ "zones",
6584
+ "zoramthanga",
6585
+ "zov",
6586
+ "|",
6587
+ "}",
6588
+ "\u00a0",
6589
+ "\u00ac",
6590
+ "\u00ac_\u00ac",
6591
+ "\u00af",
6592
+ "\u00af\\(x)/\u00af",
6593
+ "\u00af\\(\u30c4)/\u00af",
6594
+ "\u00b0",
6595
+ "\u00b0C.",
6596
+ "\u00b0F.",
6597
+ "\u00b0K.",
6598
+ "\u00b0X.",
6599
+ "\u00b0c.",
6600
+ "\u00b0f.",
6601
+ "\u00b0k.",
6602
+ "\u00b0x.",
6603
+ "\u00e0",
6604
+ "\u00e4",
6605
+ "\u00e4.",
6606
+ "\u00f6",
6607
+ "\u00f6.",
6608
+ "\u00fc",
6609
+ "\u00fc.",
6610
+ "\u0ca0",
6611
+ "\u0ca0_\u0ca0",
6612
+ "\u0ca0\ufe35\u0ca0",
6613
+ "\u2013",
6614
+ "\u2014",
6615
+ "\u2018",
6616
+ "\u2018S",
6617
+ "\u2018X",
6618
+ "\u2018s",
6619
+ "\u2018x",
6620
+ "\u2019",
6621
+ "\u2019-(",
6622
+ "\u2019-)",
6623
+ "\u2019Cause",
6624
+ "\u2019Cos",
6625
+ "\u2019Coz",
6626
+ "\u2019Cuz",
6627
+ "\u2019S",
6628
+ "\u2019X",
6629
+ "\u2019Xxx",
6630
+ "\u2019Xxxxx",
6631
+ "\u2019am",
6632
+ "\u2019bout",
6633
+ "\u2019cause",
6634
+ "\u2019cos",
6635
+ "\u2019coz",
6636
+ "\u2019cuz",
6637
+ "\u2019d",
6638
+ "\u2019em",
6639
+ "\u2019ll",
6640
+ "\u2019m",
6641
+ "\u2019nuff",
6642
+ "\u2019re",
6643
+ "\u2019s",
6644
+ "\u2019ve",
6645
+ "\u2019x",
6646
+ "\u2019xx",
6647
+ "\u2019xxx",
6648
+ "\u2019xxxx",
6649
+ "\u2019y",
6650
+ "\u2019\u2019",
6651
+ "\u201c",
6652
+ "\u201cThe",
6653
+ "\u201cXxx",
6654
+ "\u201cthe",
6655
+ "\u201cxxx",
6656
+ "\u201d",
6657
+ "\u201dFinance",
6658
+ "\u201dSince",
6659
+ "\u201dXxxxx",
6660
+ "\u201dfinance",
6661
+ "\u201dsince",
6662
+ "\u201dxxxx",
6663
+ "\u2501",
6664
+ "\u253b",
6665
+ "\u253b\u2501\u253b",
6666
+ "\u256f",
6667
+ "\u25a1",
6668
+ "\ufe35",
6669
+ "\uff09"
6670
+ ]
vocab/vectors ADDED
Binary file (128 Bytes). View file
 
vocab/vectors.cfg ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+ "mode":"default"
3
+ }