khanzaid commited on
Commit
e587c34
1 Parent(s): 5715d7a

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