Etietop commited on
Commit
4114c00
1 Parent(s): 115d4f6

Update spaCy pipeline

Browse files
.gitattributes CHANGED
@@ -33,3 +33,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ en_pipeline-any-py3-none-any.whl filter=lfs diff=lfs merge=lfs -text
37
+ tok2vec/model filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - spacy
4
+ - token-classification
5
+ language:
6
+ - en
7
+ model-index:
8
+ - name: en_pipeline
9
+ results:
10
+ - task:
11
+ name: NER
12
+ type: token-classification
13
+ metrics:
14
+ - name: NER Precision
15
+ type: precision
16
+ value: 0.9006239689
17
+ - name: NER Recall
18
+ type: recall
19
+ value: 1.0
20
+ - name: NER F Score
21
+ type: f_score
22
+ value: 0.9430596847
23
+ ---
24
+ | Feature | Description |
25
+ | --- | --- |
26
+ | **Name** | `en_pipeline` |
27
+ | **Version** | `0.0.0` |
28
+ | **spaCy** | `>=3.7.4,<3.8.0` |
29
+ | **Default Pipeline** | `tok2vec`, `ner` |
30
+ | **Components** | `tok2vec`, `ner` |
31
+ | **Vectors** | 0 keys, 0 unique vectors (0 dimensions) |
32
+ | **Sources** | n/a |
33
+ | **License** | n/a |
34
+ | **Author** | [n/a]() |
35
+
36
+ ### Label Scheme
37
+
38
+ <details>
39
+
40
+ <summary>View label scheme (9 labels for 1 components)</summary>
41
+
42
+ | Component | Labels |
43
+ | --- | --- |
44
+ | **`ner`** | `Certifications`, `Duties and Responsibilities`, `Education`, `Experience`, `Industry`, `Job Title`, `Skills`, `Soft Skills`, `Tools and Technologies` |
45
+
46
+ </details>
47
+
48
+ ### Accuracy
49
+
50
+ | Type | Score |
51
+ | --- | --- |
52
+ | `ENTS_F` | 94.31 |
53
+ | `ENTS_P` | 90.06 |
54
+ | `ENTS_R` | 100.00 |
55
+ | `TOK2VEC_LOSS` | 483216.60 |
56
+ | `NER_LOSS` | 858473.26 |
attribute_ruler/patterns ADDED
Binary file (14.7 kB). View file
 
config.cfg ADDED
@@ -0,0 +1,146 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [paths]
2
+ train = "/Volumes/Z9/transformers/career_chief/artifacts/training_data_spacy/train_2.spacy"
3
+ dev = "/Volumes/Z9/transformers/career_chief/artifacts/training_data_spacy/dev_2.spacy"
4
+ output = "/Volumes/Z9/transformers/career_chief/artifacts/training_data_spacy/output"
5
+ vectors = null
6
+ init_tok2vec = null
7
+
8
+ [system]
9
+ gpu_allocator = null
10
+ seed = 0
11
+
12
+ [nlp]
13
+ lang = "en"
14
+ pipeline = ["tok2vec","ner"]
15
+ batch_size = 1000
16
+ disabled = []
17
+ before_creation = null
18
+ after_creation = null
19
+ after_pipeline_creation = null
20
+ tokenizer = {"@tokenizers":"spacy.Tokenizer.v1"}
21
+ vectors = {"@vectors":"spacy.Vectors.v1"}
22
+
23
+ [components]
24
+
25
+ [components.ner]
26
+ factory = "ner"
27
+ incorrect_spans_key = null
28
+ moves = null
29
+ scorer = {"@scorers":"spacy.ner_scorer.v1"}
30
+ update_with_oracle_cut_size = 100
31
+
32
+ [components.ner.model]
33
+ @architectures = "spacy.TransitionBasedParser.v2"
34
+ state_type = "ner"
35
+ extra_state_tokens = false
36
+ hidden_width = 64
37
+ maxout_pieces = 2
38
+ use_upper = true
39
+ nO = null
40
+
41
+ [components.ner.model.tok2vec]
42
+ @architectures = "spacy.Tok2VecListener.v1"
43
+ width = ${components.tok2vec.model.encode.width}
44
+ upstream = "*"
45
+
46
+ [components.tok2vec]
47
+ factory = "tok2vec"
48
+
49
+ [components.tok2vec.model]
50
+ @architectures = "spacy.Tok2Vec.v2"
51
+
52
+ [components.tok2vec.model.embed]
53
+ @architectures = "spacy.MultiHashEmbed.v2"
54
+ width = ${components.tok2vec.model.encode.width}
55
+ attrs = ["ORTH","SHAPE"]
56
+ rows = [5000,2500]
57
+ include_static_vectors = false
58
+
59
+ [components.tok2vec.model.encode]
60
+ @architectures = "spacy.MaxoutWindowEncoder.v2"
61
+ width = 96
62
+ depth = 4
63
+ window_size = 1
64
+ maxout_pieces = 3
65
+
66
+ [corpora]
67
+
68
+ [corpora.dev]
69
+ @readers = "spacy.Corpus.v1"
70
+ path = ${paths.dev}
71
+ max_length = 0
72
+ gold_preproc = false
73
+ limit = 0
74
+ augmenter = null
75
+
76
+ [corpora.train]
77
+ @readers = "spacy.Corpus.v1"
78
+ path = ${paths.train}
79
+ max_length = 0
80
+ gold_preproc = false
81
+ limit = 0
82
+ augmenter = null
83
+
84
+ [training]
85
+ dev_corpus = "corpora.dev"
86
+ train_corpus = "corpora.train"
87
+ seed = ${system.seed}
88
+ gpu_allocator = ${system.gpu_allocator}
89
+ dropout = 0.15
90
+ accumulate_gradient = 1
91
+ patience = 1600
92
+ max_epochs = 0
93
+ max_steps = 2000
94
+ eval_frequency = 200
95
+ frozen_components = []
96
+ annotating_components = []
97
+ before_to_disk = null
98
+ before_update = null
99
+
100
+ [training.batcher]
101
+ @batchers = "spacy.batch_by_words.v1"
102
+ discard_oversize = false
103
+ tolerance = 0.2
104
+ get_length = null
105
+
106
+ [training.batcher.size]
107
+ @schedules = "compounding.v1"
108
+ start = 100
109
+ stop = 1000
110
+ compound = 1.001
111
+ t = 0.0
112
+
113
+ [training.logger]
114
+ @loggers = "spacy.ConsoleLogger.v1"
115
+ progress_bar = false
116
+
117
+ [training.optimizer]
118
+ @optimizers = "Adam.v1"
119
+ beta1 = 0.9
120
+ beta2 = 0.999
121
+ L2_is_weight_decay = true
122
+ L2 = 0.01
123
+ grad_clip = 1.0
124
+ use_averages = false
125
+ eps = 0.00000001
126
+ learn_rate = 0.0005
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_pipeline-any-py3-none-any.whl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:06e2b2b583795db65606ba2b2a564638b87c4f9b49e71a828082c6f846dabb79
3
+ size 5210007
lemmatizer/lookups/lookups.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:eb64f40c0f8396d1762730c0ddf4dad2a52d138f5a389f71a1a1d088173b7737
3
+ size 972893
meta.json ADDED
@@ -0,0 +1,97 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lang":"en",
3
+ "name":"pipeline",
4
+ "version":"0.0.0",
5
+ "description":"",
6
+ "author":"",
7
+ "email":"",
8
+ "url":"",
9
+ "license":"",
10
+ "spacy_version":">=3.7.4,<3.8.0",
11
+ "spacy_git_version":"bff8725f4",
12
+ "vectors":{
13
+ "width":0,
14
+ "vectors":0,
15
+ "keys":0,
16
+ "name":null
17
+ },
18
+ "labels":{
19
+ "tok2vec":[
20
+
21
+ ],
22
+ "ner":[
23
+ "Certifications",
24
+ "Duties and Responsibilities",
25
+ "Education",
26
+ "Experience",
27
+ "Industry",
28
+ "Job Title",
29
+ "Skills",
30
+ "Soft Skills",
31
+ "Tools and Technologies"
32
+ ]
33
+ },
34
+ "pipeline":[
35
+ "tok2vec",
36
+ "ner"
37
+ ],
38
+ "components":[
39
+ "tok2vec",
40
+ "ner"
41
+ ],
42
+ "disabled":[
43
+
44
+ ],
45
+ "performance":{
46
+ "ents_f":0.9430596847,
47
+ "ents_p":0.9006239689,
48
+ "ents_r":1.0,
49
+ "ents_per_type":{
50
+ "Job Title":{
51
+ "p":0.9285714286,
52
+ "r":1.0,
53
+ "f":0.9523809524
54
+ },
55
+ "Education":{
56
+ "p":0.962962963,
57
+ "r":1.0,
58
+ "f":0.9777777778
59
+ },
60
+ "Experience":{
61
+ "p":0.8147619048,
62
+ "r":1.0,
63
+ "f":0.8776710375
64
+ },
65
+ "Tools and Technologies":{
66
+ "p":0.9444444444,
67
+ "r":1.0,
68
+ "f":0.9676767677
69
+ },
70
+ "Soft Skills":{
71
+ "p":1.0,
72
+ "r":1.0,
73
+ "f":1.0
74
+ },
75
+ "Duties and Responsibilities":{
76
+ "p":0.865089456,
77
+ "r":0.9090909091,
78
+ "f":0.8852081896
79
+ },
80
+ "Skills":{
81
+ "p":0.8904761905,
82
+ "r":1.0,
83
+ "f":0.9320987654
84
+ },
85
+ "Certifications":{
86
+ "p":0.5,
87
+ "r":0.5,
88
+ "f":0.5
89
+ }
90
+ },
91
+ "tok2vec_loss":4832.1659794435,
92
+ "ner_loss":8584.7326485231
93
+ },
94
+ "requirements":[
95
+
96
+ ]
97
+ }
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 (136 kB). View file
 
ner/moves ADDED
@@ -0,0 +1 @@
 
 
1
+ ��moves��{"0":{},"1":{"Duties and Responsibilities":6134,"Experience":2662,"Skills":484,"Education":424,"Tools and Technologies":413,"Soft Skills":215,"Job Title":106,"Certifications":35,"Industry":33},"2":{"Duties and Responsibilities":6134,"Experience":2662,"Skills":484,"Education":424,"Tools and Technologies":413,"Soft Skills":215,"Job Title":106,"Certifications":35,"Industry":33},"3":{"Duties and Responsibilities":6134,"Experience":2662,"Skills":484,"Education":424,"Tools and Technologies":413,"Soft Skills":215,"Job Title":106,"Certifications":35,"Industry":33},"4":{"Duties and Responsibilities":6134,"Experience":2662,"Skills":484,"Education":424,"Tools and Technologies":413,"Soft Skills":215,"Job Title":106,"Certifications":35,"Industry":33,"":1},"5":{"":1}}�cfg��neg_key�
parser/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":30,
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
+ }
parser/model ADDED
Binary file (320 kB). View file
 
parser/moves ADDED
@@ -0,0 +1 @@
 
 
1
+ ��moves� {"0":{"":994332},"1":{"":999432},"2":{"det":172595,"nsubj":165748,"compound":116623,"amod":105184,"aux":86667,"punct":65478,"advmod":62763,"poss":36443,"mark":27941,"nummod":22598,"auxpass":15594,"prep":14001,"nsubjpass":13856,"neg":12357,"cc":10739,"nmod":9562,"advcl":9062,"npadvmod":8168,"quantmod":7101,"intj":6464,"ccomp":5896,"dobj":3427,"expl":3360,"dep":2871,"predet":1944,"parataxis":1837,"csubj":1428,"preconj":621,"pobj||prep":616,"attr":578,"meta":376,"advmod||conj":368,"dobj||xcomp":352,"acomp":284,"nsubj||ccomp":224,"dative":206,"advmod||xcomp":149,"dobj||ccomp":70,"csubjpass":64,"dobj||conj":62,"prep||conj":51,"acl":48,"prep||nsubj":41,"prep||dobj":36,"xcomp":34,"advmod||ccomp":32,"oprd":31},"3":{"punct":183790,"pobj":182191,"prep":174008,"dobj":89615,"conj":59687,"cc":51930,"ccomp":30385,"advmod":22861,"xcomp":21021,"relcl":20969,"advcl":19828,"attr":17741,"acomp":16922,"appos":15265,"case":13388,"acl":12085,"pcomp":10324,"dep":10116,"npadvmod":9796,"prt":8179,"agent":3903,"dative":3866,"nsubj":3470,"neg":2906,"amod":2839,"intj":2819,"nummod":2732,"oprd":2301,"parataxis":1261,"quantmod":319,"nmod":294,"acl||dobj":200,"prep||dobj":190,"prep||nsubj":162,"acl||nsubj":159,"appos||nsubj":145,"relcl||dobj":134,"relcl||nsubj":111,"aux":103,"expl":96,"meta":92,"appos||dobj":86,"preconj":71,"csubj":65,"prep||nsubjpass":55,"prep||advmod":54,"prep||acomp":53,"det":51,"nsubjpass":45,"relcl||pobj":42,"acl||nsubjpass":42,"mark":40,"auxpass":39,"prep||pobj":36,"relcl||nsubjpass":32,"appos||nsubjpass":31},"4":{"ROOT":111664}}�cfg��neg_key�
senter/cfg ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+ "overwrite":false
3
+ }
senter/model ADDED
Binary file (220 kB). View file
 
tagger/cfg ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "label_smoothing":0.0,
3
+ "labels":[
4
+ "$",
5
+ "''",
6
+ ",",
7
+ "-LRB-",
8
+ "-RRB-",
9
+ ".",
10
+ ":",
11
+ "ADD",
12
+ "AFX",
13
+ "CC",
14
+ "CD",
15
+ "DT",
16
+ "EX",
17
+ "FW",
18
+ "HYPH",
19
+ "IN",
20
+ "JJ",
21
+ "JJR",
22
+ "JJS",
23
+ "LS",
24
+ "MD",
25
+ "NFP",
26
+ "NN",
27
+ "NNP",
28
+ "NNPS",
29
+ "NNS",
30
+ "PDT",
31
+ "POS",
32
+ "PRP",
33
+ "PRP$",
34
+ "RB",
35
+ "RBR",
36
+ "RBS",
37
+ "RP",
38
+ "SYM",
39
+ "TO",
40
+ "UH",
41
+ "VB",
42
+ "VBD",
43
+ "VBG",
44
+ "VBN",
45
+ "VBP",
46
+ "VBZ",
47
+ "WDT",
48
+ "WP",
49
+ "WP$",
50
+ "WRB",
51
+ "XX",
52
+ "_SP",
53
+ "``"
54
+ ],
55
+ "neg_prefix":"!",
56
+ "overwrite":false
57
+ }
tagger/model ADDED
Binary file (19.8 kB). View file
 
tok2vec/cfg ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+
3
+ }
tok2vec/model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:52a182414982b008adcf7e016d0c48a93a27865931cb91d9f539cf96090b7869
3
+ size 4443194
tokenizer ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ ��prefix_search� �^§|^%|^=|^—|^–|^\+(?![0-9])|^…|^……|^,|^:|^;|^\!|^\?|^¿|^؟|^¡|^\(|^\)|^\[|^\]|^\{|^\}|^<|^>|^_|^#|^\*|^&|^。|^?|^!|^,|^、|^;|^:|^~|^·|^।|^،|^۔|^؛|^٪|^\.\.+|^…|^\'|^"|^”|^“|^`|^‘|^´|^’|^‚|^,|^„|^»|^«|^「|^」|^『|^』|^(|^)|^〔|^〕|^【|^】|^《|^》|^〈|^〉|^〈|^〉|^⟦|^⟧|^\$|^£|^€|^¥|^฿|^US\$|^C\$|^A\$|^₽|^﷼|^₴|^₠|^₡|^₢|^₣|^₤|^₥|^₦|^₧|^₨|^₩|^₪|^₫|^€|^₭|^₮|^₯|^₰|^₱|^₲|^₳|^₴|^₵|^₶|^₷|^₸|^₹|^₺|^₻|^₼|^₽|^₾|^₿|^[\u00A6\u00A9\u00AE\u00B0\u0482\u058D\u058E\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u09FA\u0B70\u0BF3-\u0BF8\u0BFA\u0C7F\u0D4F\u0D79\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116\u2117\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u214A\u214C\u214D\u214F\u218A\u218B\u2195-\u2199\u219C-\u219F\u21A1\u21A2\u21A4\u21A5\u21A7-\u21AD\u21AF-\u21CD\u21D0\u21D1\u21D3\u21D5-\u21F3\u2300-\u2307\u230C-\u231F\u2322-\u2328\u232B-\u237B\u237D-\u239A\u23B4-\u23DB\u23E2-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u25B6\u25B8-\u25C0\u25C2-\u25F7\u2600-\u266E\u2670-\u2767\u2794-\u27BF\u2800-\u28FF\u2B00-\u2B2F\u2B45\u2B46\u2B4D-\u2B73\u2B76-\u2B95\u2B98-\u2BC8\u2BCA-\u2BFE\u2CE5-\u2CEA\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u32FE\u3300-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA828-\uA82B\uA836\uA837\uA839\uAA77-\uAA79\uFDFD\uFFE4\uFFE8\uFFED\uFFEE\uFFFC\uFFFD\U00010137-\U0001013F\U00010179-\U00010189\U0001018C-\U0001018E\U00010190-\U0001019B\U000101A0\U000101D0-\U000101FC\U00010877\U00010878\U00010AC8\U0001173F\U00016B3C-\U00016B3F\U00016B45\U0001BC9C\U0001D000-\U0001D0F5\U0001D100-\U0001D126\U0001D129-\U0001D164\U0001D16A-\U0001D16C\U0001D183\U0001D184\U0001D18C-\U0001D1A9\U0001D1AE-\U0001D1E8\U0001D200-\U0001D241\U0001D245\U0001D300-\U0001D356\U0001D800-\U0001D9FF\U0001DA37-\U0001DA3A\U0001DA6D-\U0001DA74\U0001DA76-\U0001DA83\U0001DA85\U0001DA86\U0001ECAC\U0001F000-\U0001F02B\U0001F030-\U0001F093\U0001F0A0-\U0001F0AE\U0001F0B1-\U0001F0BF\U0001F0C1-\U0001F0CF\U0001F0D1-\U0001F0F5\U0001F110-\U0001F16B\U0001F170-\U0001F1AC\U0001F1E6-\U0001F202\U0001F210-\U0001F23B\U0001F240-\U0001F248\U0001F250\U0001F251\U0001F260-\U0001F265\U0001F300-\U0001F3FA\U0001F400-\U0001F6D4\U0001F6E0-\U0001F6EC\U0001F6F0-\U0001F6F9\U0001F700-\U0001F773\U0001F780-\U0001F7D8\U0001F800-\U0001F80B\U0001F810-\U0001F847\U0001F850-\U0001F859\U0001F860-\U0001F887\U0001F890-\U0001F8AD\U0001F900-\U0001F90B\U0001F910-\U0001F93E\U0001F940-\U0001F970\U0001F973-\U0001F976\U0001F97A\U0001F97C-\U0001F9A2\U0001F9B0-\U0001F9B9\U0001F9C0-\U0001F9C2\U0001F9D0-\U0001F9FF\U0001FA60-\U0001FA6D]�suffix_search�2�…$|……$|,$|:$|;$|\!$|\?$|¿$|؟$|¡$|\($|\)$|\[$|\]$|\{$|\}$|<$|>$|_$|#$|\*$|&$|。$|?$|!$|,$|、$|;$|:$|~$|·$|।$|،$|۔$|؛$|٪$|\.\.+$|…$|\'$|"$|”$|“$|`$|‘$|´$|’$|‚$|,$|„$|»$|«$|「$|」$|『$|』$|($|)$|〔$|〕$|【$|】$|《$|》$|〈$|〉$|〈$|〉$|⟦$|⟧$|[\u00A6\u00A9\u00AE\u00B0\u0482\u058D\u058E\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u09FA\u0B70\u0BF3-\u0BF8\u0BFA\u0C7F\u0D4F\u0D79\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116\u2117\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u214A\u214C\u214D\u214F\u218A\u218B\u2195-\u2199\u219C-\u219F\u21A1\u21A2\u21A4\u21A5\u21A7-\u21AD\u21AF-\u21CD\u21D0\u21D1\u21D3\u21D5-\u21F3\u2300-\u2307\u230C-\u231F\u2322-\u2328\u232B-\u237B\u237D-\u239A\u23B4-\u23DB\u23E2-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u25B6\u25B8-\u25C0\u25C2-\u25F7\u2600-\u266E\u2670-\u2767\u2794-\u27BF\u2800-\u28FF\u2B00-\u2B2F\u2B45\u2B46\u2B4D-\u2B73\u2B76-\u2B95\u2B98-\u2BC8\u2BCA-\u2BFE\u2CE5-\u2CEA\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u32FE\u3300-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA828-\uA82B\uA836\uA837\uA839\uAA77-\uAA79\uFDFD\uFFE4\uFFE8\uFFED\uFFEE\uFFFC\uFFFD\U00010137-\U0001013F\U00010179-\U00010189\U0001018C-\U0001018E\U00010190-\U0001019B\U000101A0\U000101D0-\U000101FC\U00010877\U00010878\U00010AC8\U0001173F\U00016B3C-\U00016B3F\U00016B45\U0001BC9C\U0001D000-\U0001D0F5\U0001D100-\U0001D126\U0001D129-\U0001D164\U0001D16A-\U0001D16C\U0001D183\U0001D184\U0001D18C-\U0001D1A9\U0001D1AE-\U0001D1E8\U0001D200-\U0001D241\U0001D245\U0001D300-\U0001D356\U0001D800-\U0001D9FF\U0001DA37-\U0001DA3A\U0001DA6D-\U0001DA74\U0001DA76-\U0001DA83\U0001DA85\U0001DA86\U0001ECAC\U0001F000-\U0001F02B\U0001F030-\U0001F093\U0001F0A0-\U0001F0AE\U0001F0B1-\U0001F0BF\U0001F0C1-\U0001F0CF\U0001F0D1-\U0001F0F5\U0001F110-\U0001F16B\U0001F170-\U0001F1AC\U0001F1E6-\U0001F202\U0001F210-\U0001F23B\U0001F240-\U0001F248\U0001F250\U0001F251\U0001F260-\U0001F265\U0001F300-\U0001F3FA\U0001F400-\U0001F6D4\U0001F6E0-\U0001F6EC\U0001F6F0-\U0001F6F9\U0001F700-\U0001F773\U0001F780-\U0001F7D8\U0001F800-\U0001F80B\U0001F810-\U0001F847\U0001F850-\U0001F859\U0001F860-\U0001F887\U0001F890-\U0001F8AD\U0001F900-\U0001F90B\U0001F910-\U0001F93E\U0001F940-\U0001F970\U0001F973-\U0001F976\U0001F97A\U0001F97C-\U0001F9A2\U0001F9B0-\U0001F9B9\U0001F9C0-\U0001F9C2\U0001F9D0-\U0001F9FF\U0001FA60-\U0001FA6D]$|'s$|'S$|’s$|’S$|—$|–$|(?<=[0-9])\+$|(?<=°[FfCcKk])\.$|(?<=[0-9])(?:\$|£|€|¥|฿|US\$|C\$|A\$|₽|﷼|₴|₠|₡|₢|₣|₤|₥|₦|₧|₨|₩|₪|₫|€|₭|₮|₯|₰|₱|₲|₳|₴|₵|₶|₷|₸|₹|₺|₻|₼|₽|₾|₿)$|(?<=[0-9])(?:km|km²|km³|m|m²|m³|dm|dm²|dm³|cm|cm²|cm³|mm|mm²|mm³|ha|µm|nm|yd|in|ft|kg|g|mg|µg|t|lb|oz|m/s|km/h|kmh|mph|hPa|Pa|mbar|mb|MB|kb|KB|gb|GB|tb|TB|T|G|M|K|%|км|км²|км³|м|м²|м³|дм|дм²|дм³|см|см²|см³|мм|мм²|мм³|нм|кг|г|мг|м/с|км/ч|кПа|Па|мбар|Кб|КБ|кб|Мб|МБ|мб|Гб|ГБ|гб|Тб|ТБ|тбكم|كم²|كم³|م|م²|م³|سم|سم²|سم³|مم|مم²|مم³|كم|غرام|جرام|جم|كغ|ملغ|كوب|اكواب)$|(?<=[0-9a-z\uFF41-\uFF5A\u00DF-\u00F6\u00F8-\u00FF\u0101\u0103\u0105\u0107\u0109\u010B\u010D\u010F\u0111\u0113\u0115\u0117\u0119\u011B\u011D\u011F\u0121\u0123\u0125\u0127\u0129\u012B\u012D\u012F\u0131\u0133\u0135\u0137\u0138\u013A\u013C\u013E\u0140\u0142\u0144\u0146\u0148\u0149\u014B\u014D\u014F\u0151\u0153\u0155\u0157\u0159\u015B\u015D\u015F\u0161\u0163\u0165\u0167\u0169\u016B\u016D\u016F\u0171\u0173\u0175\u0177\u017A\u017C\u017E\u017F\u0180\u0183\u0185\u0188\u018C\u018D\u0192\u0195\u0199-\u019B\u019E\u01A1\u01A3\u01A5\u01A8\u01AA\u01AB\u01AD\u01B0\u01B4\u01B6\u01B9\u01BA\u01BD-\u01BF\u01C6\u01C9\u01CC\u01CE\u01D0\u01D2\u01D4\u01D6\u01D8\u01DA\u01DC\u01DD\u01DF\u01E1\u01E3\u01E5\u01E7\u01E9\u01EB\u01ED\u01EF\u01F0\u01F3\u01F5\u01F9\u01FB\u01FD\u01FF\u0201\u0203\u0205\u0207\u0209\u020B\u020D\u020F\u0211\u0213\u0215\u0217\u0219\u021B\u021D\u021F\u0221\u0223\u0225\u0227\u0229\u022B\u022D\u022F\u0231\u0233-\u0239\u023C\u023F\u0240\u0242\u0247\u0249\u024B\u024D\u024F\u2C61\u2C65\u2C66\u2C68\u2C6A\u2C6C\u2C71\u2C73\u2C74\u2C76-\u2C7B\uA723\uA725\uA727\uA729\uA72B\uA72D\uA72F-\uA731\uA733\uA735\uA737\uA739\uA73B\uA73D\uA73F\uA741\uA743\uA745\uA747\uA749\uA74B\uA74D\uA74F\uA751\uA753\uA755\uA757\uA759\uA75B\uA75D\uA75F\uA761\uA763\uA765\uA767\uA769\uA76B\uA76D\uA76F\uA771-\uA778\uA77A\uA77C\uA77F\uA781\uA783\uA785\uA787\uA78C\uA78E\uA791\uA793-\uA795\uA797\uA799\uA79B\uA79D\uA79F\uA7A1\uA7A3\uA7A5\uA7A7\uA7A9\uA7AF\uA7B5\uA7B7\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E01\u1E03\u1E05\u1E07\u1E09\u1E0B\u1E0D\u1E0F\u1E11\u1E13\u1E15\u1E17\u1E19\u1E1B\u1E1D\u1E1F\u1E21\u1E23\u1E25\u1E27\u1E29\u1E2B\u1E2D\u1E2F\u1E31\u1E33\u1E35\u1E37\u1E39\u1E3B\u1E3D\u1E3F\u1E41\u1E43\u1E45\u1E47\u1E49\u1E4B\u1E4D\u1E4F\u1E51\u1E53\u1E55\u1E57\u1E59\u1E5B\u1E5D\u1E5F\u1E61\u1E63\u1E65\u1E67\u1E69\u1E6B\u1E6D\u1E6F\u1E71\u1E73\u1E75\u1E77\u1E79\u1E7B\u1E7D\u1E7F\u1E81\u1E83\u1E85\u1E87\u1E89\u1E8B\u1E8D\u1E8F\u1E91\u1E93\u1E95-\u1E9D\u1E9F\u1EA1\u1EA3\u1EA5\u1EA7\u1EA9\u1EAB\u1EAD\u1EAF\u1EB1\u1EB3\u1EB5\u1EB7\u1EB9\u1EBB\u1EBD\u1EBF\u1EC1\u1EC3\u1EC5\u1EC7\u1EC9\u1ECB\u1ECD\u1ECF\u1ED1\u1ED3\u1ED5\u1ED7\u1ED9\u1EDB\u1EDD\u1EDF\u1EE1\u1EE3\u1EE5\u1EE7\u1EE9\u1EEB\u1EED\u1EEF\u1EF1\u1EF3\u1EF5\u1EF7\u1EF9\u1EFB\u1EFD\u1EFFёа-яәөүҗңһα-ωάέίόώήύа-щюяіїєґѓѕјљњќѐѝ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F%²\-\+…|……|,|:|;|\!|\?|¿|؟|¡|\(|\)|\[|\]|\{|\}|<|>|_|#|\*|&|。|?|!|,|、|;|:|~|·|।|،|۔|؛|٪(?:\'"”“`‘´’‚,„»«「」『』()〔〕【】《》〈〉〈〉⟦⟧)])\.$|(?<=[A-Z\uFF21-\uFF3A\u00C0-\u00D6\u00D8-\u00DE\u0100\u0102\u0104\u0106\u0108\u010A\u010C\u010E\u0110\u0112\u0114\u0116\u0118\u011A\u011C\u011E\u0120\u0122\u0124\u0126\u0128\u012A\u012C\u012E\u0130\u0132\u0134\u0136\u0139\u013B\u013D\u013F\u0141\u0143\u0145\u0147\u014A\u014C\u014E\u0150\u0152\u0154\u0156\u0158\u015A\u015C\u015E\u0160\u0162\u0164\u0166\u0168\u016A\u016C\u016E\u0170\u0172\u0174\u0176\u0178\u0179\u017B\u017D\u0181\u0182\u0184\u0186\u0187\u0189-\u018B\u018E-\u0191\u0193\u0194\u0196-\u0198\u019C\u019D\u019F\u01A0\u01A2\u01A4\u01A6\u01A7\u01A9\u01AC\u01AE\u01AF\u01B1-\u01B3\u01B5\u01B7\u01B8\u01BC\u01C4\u01C7\u01CA\u01CD\u01CF\u01D1\u01D3\u01D5\u01D7\u01D9\u01DB\u01DE\u01E0\u01E2\u01E4\u01E6\u01E8\u01EA\u01EC\u01EE\u01F1\u01F4\u01F6-\u01F8\u01FA\u01FC\u01FE\u0200\u0202\u0204\u0206\u0208\u020A\u020C\u020E\u0210\u0212\u0214\u0216\u0218\u021A\u021C\u021E\u0220\u0222\u0224\u0226\u0228\u022A\u022C\u022E\u0230\u0232\u023A\u023B\u023D\u023E\u0241\u0243-\u0246\u0248\u024A\u024C\u024E\u2C60\u2C62-\u2C64\u2C67\u2C69\u2C6B\u2C6D-\u2C70\u2C72\u2C75\u2C7E\u2C7F\uA722\uA724\uA726\uA728\uA72A\uA72C\uA72E\uA732\uA734\uA736\uA738\uA73A\uA73C\uA73E\uA740\uA742\uA744\uA746\uA748\uA74A\uA74C\uA74E\uA750\uA752\uA754\uA756\uA758\uA75A\uA75C\uA75E\uA760\uA762\uA764\uA766\uA768\uA76A\uA76C\uA76E\uA779\uA77B\uA77D\uA77E\uA780\uA782\uA784\uA786\uA78B\uA78D\uA790\uA792\uA796\uA798\uA79A\uA79C\uA79E\uA7A0\uA7A2\uA7A4\uA7A6\uA7A8\uA7AA-\uA7AE\uA7B0-\uA7B4\uA7B6\uA7B8\u1E00\u1E02\u1E04\u1E06\u1E08\u1E0A\u1E0C\u1E0E\u1E10\u1E12\u1E14\u1E16\u1E18\u1E1A\u1E1C\u1E1E\u1E20\u1E22\u1E24\u1E26\u1E28\u1E2A\u1E2C\u1E2E\u1E30\u1E32\u1E34\u1E36\u1E38\u1E3A\u1E3C\u1E3E\u1E40\u1E42\u1E44\u1E46\u1E48\u1E4A\u1E4C\u1E4E\u1E50\u1E52\u1E54\u1E56\u1E58\u1E5A\u1E5C\u1E5E\u1E60\u1E62\u1E64\u1E66\u1E68\u1E6A\u1E6C\u1E6E\u1E70\u1E72\u1E74\u1E76\u1E78\u1E7A\u1E7C\u1E7E\u1E80\u1E82\u1E84\u1E86\u1E88\u1E8A\u1E8C\u1E8E\u1E90\u1E92\u1E94\u1E9E\u1EA0\u1EA2\u1EA4\u1EA6\u1EA8\u1EAA\u1EAC\u1EAE\u1EB0\u1EB2\u1EB4\u1EB6\u1EB8\u1EBA\u1EBC\u1EBE\u1EC0\u1EC2\u1EC4\u1EC6\u1EC8\u1ECA\u1ECC\u1ECE\u1ED0\u1ED2\u1ED4\u1ED6\u1ED8\u1EDA\u1EDC\u1EDE\u1EE0\u1EE2\u1EE4\u1EE6\u1EE8\u1EEA\u1EEC\u1EEE\u1EF0\u1EF2\u1EF4\u1EF6\u1EF8\u1EFA\u1EFC\u1EFEЁА-ЯӘӨҮҖҢҺΑ-ΩΆΈΊΌΏΉΎА-ЩЮЯІЇЄҐЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F][A-Z\uFF21-\uFF3A\u00C0-\u00D6\u00D8-\u00DE\u0100\u0102\u0104\u0106\u0108\u010A\u010C\u010E\u0110\u0112\u0114\u0116\u0118\u011A\u011C\u011E\u0120\u0122\u0124\u0126\u0128\u012A\u012C\u012E\u0130\u0132\u0134\u0136\u0139\u013B\u013D\u013F\u0141\u0143\u0145\u0147\u014A\u014C\u014E\u0150\u0152\u0154\u0156\u0158\u015A\u015C\u015E\u0160\u0162\u0164\u0166\u0168\u016A\u016C\u016E\u0170\u0172\u0174\u0176\u0178\u0179\u017B\u017D\u0181\u0182\u0184\u0186\u0187\u0189-\u018B\u018E-\u0191\u0193\u0194\u0196-\u0198\u019C\u019D\u019F\u01A0\u01A2\u01A4\u01A6\u01A7\u01A9\u01AC\u01AE\u01AF\u01B1-\u01B3\u01B5\u01B7\u01B8\u01BC\u01C4\u01C7\u01CA\u01CD\u01CF\u01D1\u01D3\u01D5\u01D7\u01D9\u01DB\u01DE\u01E0\u01E2\u01E4\u01E6\u01E8\u01EA\u01EC\u01EE\u01F1\u01F4\u01F6-\u01F8\u01FA\u01FC\u01FE\u0200\u0202\u0204\u0206\u0208\u020A\u020C\u020E\u0210\u0212\u0214\u0216\u0218\u021A\u021C\u021E\u0220\u0222\u0224\u0226\u0228\u022A\u022C\u022E\u0230\u0232\u023A\u023B\u023D\u023E\u0241\u0243-\u0246\u0248\u024A\u024C\u024E\u2C60\u2C62-\u2C64\u2C67\u2C69\u2C6B\u2C6D-\u2C70\u2C72\u2C75\u2C7E\u2C7F\uA722\uA724\uA726\uA728\uA72A\uA72C\uA72E\uA732\uA734\uA736\uA738\uA73A\uA73C\uA73E\uA740\uA742\uA744\uA746\uA748\uA74A\uA74C\uA74E\uA750\uA752\uA754\uA756\uA758\uA75A\uA75C\uA75E\uA760\uA762\uA764\uA766\uA768\uA76A\uA76C\uA76E\uA779\uA77B\uA77D\uA77E\uA780\uA782\uA784\uA786\uA78B\uA78D\uA790\uA792\uA796\uA798\uA79A\uA79C\uA79E\uA7A0\uA7A2\uA7A4\uA7A6\uA7A8\uA7AA-\uA7AE\uA7B0-\uA7B4\uA7B6\uA7B8\u1E00\u1E02\u1E04\u1E06\u1E08\u1E0A\u1E0C\u1E0E\u1E10\u1E12\u1E14\u1E16\u1E18\u1E1A\u1E1C\u1E1E\u1E20\u1E22\u1E24\u1E26\u1E28\u1E2A\u1E2C\u1E2E\u1E30\u1E32\u1E34\u1E36\u1E38\u1E3A\u1E3C\u1E3E\u1E40\u1E42\u1E44\u1E46\u1E48\u1E4A\u1E4C\u1E4E\u1E50\u1E52\u1E54\u1E56\u1E58\u1E5A\u1E5C\u1E5E\u1E60\u1E62\u1E64\u1E66\u1E68\u1E6A\u1E6C\u1E6E\u1E70\u1E72\u1E74\u1E76\u1E78\u1E7A\u1E7C\u1E7E\u1E80\u1E82\u1E84\u1E86\u1E88\u1E8A\u1E8C\u1E8E\u1E90\u1E92\u1E94\u1E9E\u1EA0\u1EA2\u1EA4\u1EA6\u1EA8\u1EAA\u1EAC\u1EAE\u1EB0\u1EB2\u1EB4\u1EB6\u1EB8\u1EBA\u1EBC\u1EBE\u1EC0\u1EC2\u1EC4\u1EC6\u1EC8\u1ECA\u1ECC\u1ECE\u1ED0\u1ED2\u1ED4\u1ED6\u1ED8\u1EDA\u1EDC\u1EDE\u1EE0\u1EE2\u1EE4\u1EE6\u1EE8\u1EEA\u1EEC\u1EEE\u1EF0\u1EF2\u1EF4\u1EF6\u1EF8\u1EFA\u1EFC\u1EFEЁА-ЯӘӨҮҖҢҺΑ-ΩΆΈΊΌΏΉΎА-ЩЮЯІЇЄҐЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])\.$�infix_finditer�>�\.\.+|…|[\u00A6\u00A9\u00AE\u00B0\u0482\u058D\u058E\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u09FA\u0B70\u0BF3-\u0BF8\u0BFA\u0C7F\u0D4F\u0D79\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116\u2117\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u214A\u214C\u214D\u214F\u218A\u218B\u2195-\u2199\u219C-\u219F\u21A1\u21A2\u21A4\u21A5\u21A7-\u21AD\u21AF-\u21CD\u21D0\u21D1\u21D3\u21D5-\u21F3\u2300-\u2307\u230C-\u231F\u2322-\u2328\u232B-\u237B\u237D-\u239A\u23B4-\u23DB\u23E2-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u25B6\u25B8-\u25C0\u25C2-\u25F7\u2600-\u266E\u2670-\u2767\u2794-\u27BF\u2800-\u28FF\u2B00-\u2B2F\u2B45\u2B46\u2B4D-\u2B73\u2B76-\u2B95\u2B98-\u2BC8\u2BCA-\u2BFE\u2CE5-\u2CEA\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u32FE\u3300-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA828-\uA82B\uA836\uA837\uA839\uAA77-\uAA79\uFDFD\uFFE4\uFFE8\uFFED\uFFEE\uFFFC\uFFFD\U00010137-\U0001013F\U00010179-\U00010189\U0001018C-\U0001018E\U00010190-\U0001019B\U000101A0\U000101D0-\U000101FC\U00010877\U00010878\U00010AC8\U0001173F\U00016B3C-\U00016B3F\U00016B45\U0001BC9C\U0001D000-\U0001D0F5\U0001D100-\U0001D126\U0001D129-\U0001D164\U0001D16A-\U0001D16C\U0001D183\U0001D184\U0001D18C-\U0001D1A9\U0001D1AE-\U0001D1E8\U0001D200-\U0001D241\U0001D245\U0001D300-\U0001D356\U0001D800-\U0001D9FF\U0001DA37-\U0001DA3A\U0001DA6D-\U0001DA74\U0001DA76-\U0001DA83\U0001DA85\U0001DA86\U0001ECAC\U0001F000-\U0001F02B\U0001F030-\U0001F093\U0001F0A0-\U0001F0AE\U0001F0B1-\U0001F0BF\U0001F0C1-\U0001F0CF\U0001F0D1-\U0001F0F5\U0001F110-\U0001F16B\U0001F170-\U0001F1AC\U0001F1E6-\U0001F202\U0001F210-\U0001F23B\U0001F240-\U0001F248\U0001F250\U0001F251\U0001F260-\U0001F265\U0001F300-\U0001F3FA\U0001F400-\U0001F6D4\U0001F6E0-\U0001F6EC\U0001F6F0-\U0001F6F9\U0001F700-\U0001F773\U0001F780-\U0001F7D8\U0001F800-\U0001F80B\U0001F810-\U0001F847\U0001F850-\U0001F859\U0001F860-\U0001F887\U0001F890-\U0001F8AD\U0001F900-\U0001F90B\U0001F910-\U0001F93E\U0001F940-\U0001F970\U0001F973-\U0001F976\U0001F97A\U0001F97C-\U0001F9A2\U0001F9B0-\U0001F9B9\U0001F9C0-\U0001F9C2\U0001F9D0-\U0001F9FF\U0001FA60-\U0001FA6D]|(?<=[0-9])[+\-\*^](?=[0-9-])|(?<=[a-z\uFF41-\uFF5A\u00DF-\u00F6\u00F8-\u00FF\u0101\u0103\u0105\u0107\u0109\u010B\u010D\u010F\u0111\u0113\u0115\u0117\u0119\u011B\u011D\u011F\u0121\u0123\u0125\u0127\u0129\u012B\u012D\u012F\u0131\u0133\u0135\u0137\u0138\u013A\u013C\u013E\u0140\u0142\u0144\u0146\u0148\u0149\u014B\u014D\u014F\u0151\u0153\u0155\u0157\u0159\u015B\u015D\u015F\u0161\u0163\u0165\u0167\u0169\u016B\u016D\u016F\u0171\u0173\u0175\u0177\u017A\u017C\u017E\u017F\u0180\u0183\u0185\u0188\u018C\u018D\u0192\u0195\u0199-\u019B\u019E\u01A1\u01A3\u01A5\u01A8\u01AA\u01AB\u01AD\u01B0\u01B4\u01B6\u01B9\u01BA\u01BD-\u01BF\u01C6\u01C9\u01CC\u01CE\u01D0\u01D2\u01D4\u01D6\u01D8\u01DA\u01DC\u01DD\u01DF\u01E1\u01E3\u01E5\u01E7\u01E9\u01EB\u01ED\u01EF\u01F0\u01F3\u01F5\u01F9\u01FB\u01FD\u01FF\u0201\u0203\u0205\u0207\u0209\u020B\u020D\u020F\u0211\u0213\u0215\u0217\u0219\u021B\u021D\u021F\u0221\u0223\u0225\u0227\u0229\u022B\u022D\u022F\u0231\u0233-\u0239\u023C\u023F\u0240\u0242\u0247\u0249\u024B\u024D\u024F\u2C61\u2C65\u2C66\u2C68\u2C6A\u2C6C\u2C71\u2C73\u2C74\u2C76-\u2C7B\uA723\uA725\uA727\uA729\uA72B\uA72D\uA72F-\uA731\uA733\uA735\uA737\uA739\uA73B\uA73D\uA73F\uA741\uA743\uA745\uA747\uA749\uA74B\uA74D\uA74F\uA751\uA753\uA755\uA757\uA759\uA75B\uA75D\uA75F\uA761\uA763\uA765\uA767\uA769\uA76B\uA76D\uA76F\uA771-\uA778\uA77A\uA77C\uA77F\uA781\uA783\uA785\uA787\uA78C\uA78E\uA791\uA793-\uA795\uA797\uA799\uA79B\uA79D\uA79F\uA7A1\uA7A3\uA7A5\uA7A7\uA7A9\uA7AF\uA7B5\uA7B7\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E01\u1E03\u1E05\u1E07\u1E09\u1E0B\u1E0D\u1E0F\u1E11\u1E13\u1E15\u1E17\u1E19\u1E1B\u1E1D\u1E1F\u1E21\u1E23\u1E25\u1E27\u1E29\u1E2B\u1E2D\u1E2F\u1E31\u1E33\u1E35\u1E37\u1E39\u1E3B\u1E3D\u1E3F\u1E41\u1E43\u1E45\u1E47\u1E49\u1E4B\u1E4D\u1E4F\u1E51\u1E53\u1E55\u1E57\u1E59\u1E5B\u1E5D\u1E5F\u1E61\u1E63\u1E65\u1E67\u1E69\u1E6B\u1E6D\u1E6F\u1E71\u1E73\u1E75\u1E77\u1E79\u1E7B\u1E7D\u1E7F\u1E81\u1E83\u1E85\u1E87\u1E89\u1E8B\u1E8D\u1E8F\u1E91\u1E93\u1E95-\u1E9D\u1E9F\u1EA1\u1EA3\u1EA5\u1EA7\u1EA9\u1EAB\u1EAD\u1EAF\u1EB1\u1EB3\u1EB5\u1EB7\u1EB9\u1EBB\u1EBD\u1EBF\u1EC1\u1EC3\u1EC5\u1EC7\u1EC9\u1ECB\u1ECD\u1ECF\u1ED1\u1ED3\u1ED5\u1ED7\u1ED9\u1EDB\u1EDD\u1EDF\u1EE1\u1EE3\u1EE5\u1EE7\u1EE9\u1EEB\u1EED\u1EEF\u1EF1\u1EF3\u1EF5\u1EF7\u1EF9\u1EFB\u1EFD\u1EFFёа-яәөүҗңһα-ωάέίόώήύа-щюяіїєґѓѕјљњќѐѝ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F\'"”“`‘´’‚,„»«「」『』()〔〕【】《》〈〉〈〉⟦⟧])\.(?=[A-Z\uFF21-\uFF3A\u00C0-\u00D6\u00D8-\u00DE\u0100\u0102\u0104\u0106\u0108\u010A\u010C\u010E\u0110\u0112\u0114\u0116\u0118\u011A\u011C\u011E\u0120\u0122\u0124\u0126\u0128\u012A\u012C\u012E\u0130\u0132\u0134\u0136\u0139\u013B\u013D\u013F\u0141\u0143\u0145\u0147\u014A\u014C\u014E\u0150\u0152\u0154\u0156\u0158\u015A\u015C\u015E\u0160\u0162\u0164\u0166\u0168\u016A\u016C\u016E\u0170\u0172\u0174\u0176\u0178\u0179\u017B\u017D\u0181\u0182\u0184\u0186\u0187\u0189-\u018B\u018E-\u0191\u0193\u0194\u0196-\u0198\u019C\u019D\u019F\u01A0\u01A2\u01A4\u01A6\u01A7\u01A9\u01AC\u01AE\u01AF\u01B1-\u01B3\u01B5\u01B7\u01B8\u01BC\u01C4\u01C7\u01CA\u01CD\u01CF\u01D1\u01D3\u01D5\u01D7\u01D9\u01DB\u01DE\u01E0\u01E2\u01E4\u01E6\u01E8\u01EA\u01EC\u01EE\u01F1\u01F4\u01F6-\u01F8\u01FA\u01FC\u01FE\u0200\u0202\u0204\u0206\u0208\u020A\u020C\u020E\u0210\u0212\u0214\u0216\u0218\u021A\u021C\u021E\u0220\u0222\u0224\u0226\u0228\u022A\u022C\u022E\u0230\u0232\u023A\u023B\u023D\u023E\u0241\u0243-\u0246\u0248\u024A\u024C\u024E\u2C60\u2C62-\u2C64\u2C67\u2C69\u2C6B\u2C6D-\u2C70\u2C72\u2C75\u2C7E\u2C7F\uA722\uA724\uA726\uA728\uA72A\uA72C\uA72E\uA732\uA734\uA736\uA738\uA73A\uA73C\uA73E\uA740\uA742\uA744\uA746\uA748\uA74A\uA74C\uA74E\uA750\uA752\uA754\uA756\uA758\uA75A\uA75C\uA75E\uA760\uA762\uA764\uA766\uA768\uA76A\uA76C\uA76E\uA779\uA77B\uA77D\uA77E\uA780\uA782\uA784\uA786\uA78B\uA78D\uA790\uA792\uA796\uA798\uA79A\uA79C\uA79E\uA7A0\uA7A2\uA7A4\uA7A6\uA7A8\uA7AA-\uA7AE\uA7B0-\uA7B4\uA7B6\uA7B8\u1E00\u1E02\u1E04\u1E06\u1E08\u1E0A\u1E0C\u1E0E\u1E10\u1E12\u1E14\u1E16\u1E18\u1E1A\u1E1C\u1E1E\u1E20\u1E22\u1E24\u1E26\u1E28\u1E2A\u1E2C\u1E2E\u1E30\u1E32\u1E34\u1E36\u1E38\u1E3A\u1E3C\u1E3E\u1E40\u1E42\u1E44\u1E46\u1E48\u1E4A\u1E4C\u1E4E\u1E50\u1E52\u1E54\u1E56\u1E58\u1E5A\u1E5C\u1E5E\u1E60\u1E62\u1E64\u1E66\u1E68\u1E6A\u1E6C\u1E6E\u1E70\u1E72\u1E74\u1E76\u1E78\u1E7A\u1E7C\u1E7E\u1E80\u1E82\u1E84\u1E86\u1E88\u1E8A\u1E8C\u1E8E\u1E90\u1E92\u1E94\u1E9E\u1EA0\u1EA2\u1EA4\u1EA6\u1EA8\u1EAA\u1EAC\u1EAE\u1EB0\u1EB2\u1EB4\u1EB6\u1EB8\u1EBA\u1EBC\u1EBE\u1EC0\u1EC2\u1EC4\u1EC6\u1EC8\u1ECA\u1ECC\u1ECE\u1ED0\u1ED2\u1ED4\u1ED6\u1ED8\u1EDA\u1EDC\u1EDE\u1EE0\u1EE2\u1EE4\u1EE6\u1EE8\u1EEA\u1EEC\u1EEE\u1EF0\u1EF2\u1EF4\u1EF6\u1EF8\u1EFA\u1EFC\u1EFEЁА-ЯӘӨҮҖҢҺΑ-ΩΆΈΊΌΏΉΎА-ЩЮЯІЇЄҐЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F\'"”“`‘´’‚,„»«「」『』()〔〕【】《》〈〉〈〉⟦⟧])|(?<=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F]),(?=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])|(?<=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F0-9])(?:-|–|—|--|---|——|~)(?=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])|(?<=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F0-9])[:<>=/](?=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])�token_match��url_match�
2
+ ��A�
3
+ � ��A� �'��A�'�''��A�''�'Cause��A�'CauseC�because�'Cos��A�'CosC�because�'Coz��A�'CozC�because�'Cuz��A�'CuzC�because�'S��A�'SC�'s�'bout��A�'boutC�about�'cause��A�'causeC�because�'cos��A�'cosC�because�'coz��A�'cozC�because�'cuz��A�'cuzC�because�'d��A�'d�'em��A�'emC�them�'ll��A�'llC�will�'nuff��A�'nuffC�enough�'re��A�'reC�are�'s��A�'sC�'s�(*_*)��A�(*_*)�(-8��A�(-8�(-:��A�(-:�(-;��A�(-;�(-_-)��A�(-_-)�(._.)��A�(._.)�(:��A�(:�(;��A�(;�(=��A�(=�(>_<)��A�(>_<)�(^_^)��A�(^_^)�(o:��A�(o:�(¬_¬)��A�(¬_¬)�(ಠ_ಠ)��A�(ಠ_ಠ)�(╯°□°)╯︵┻━┻��A�(╯°□°)╯︵┻━┻�)-:��A�)-:�):��A�):�-_-��A�-_-�-__-��A�-__-�._.��A�._.�0.0��A�0.0�0.o��A�0.o�0_0��A�0_0�0_o��A�0_o�10a.m.��A�10�A�a.m.C�a.m.�10am��A�10�A�amC�a.m.�10p.m.��A�10�A�p.m.C�p.m.�10pm��A�10�A�pmC�p.m.�11a.m.��A�11�A�a.m.C�a.m.�11am��A�11�A�amC�a.m.�11p.m.��A�11�A�p.m.C�p.m.�11pm��A�11�A�pmC�p.m.�12a.m.��A�12�A�a.m.C�a.m.�12am��A�12�A�amC�a.m.�12p.m.��A�12�A�p.m.C�p.m.�12pm��A�12�A�pmC�p.m.�1a.m.��A�1�A�a.m.C�a.m.�1am��A�1�A�amC�a.m.�1p.m.��A�1�A�p.m.C�p.m.�1pm��A�1�A�pmC�p.m.�2a.m.��A�2�A�a.m.C�a.m.�2am��A�2�A�amC�a.m.�2p.m.��A�2�A�p.m.C�p.m.�2pm��A�2�A�pmC�p.m.�3a.m.��A�3�A�a.m.C�a.m.�3am��A�3�A�amC�a.m.�3p.m.��A�3�A�p.m.C�p.m.�3pm��A�3�A�pmC�p.m.�4a.m.��A�4�A�a.m.C�a.m.�4am��A�4�A�amC�a.m.�4p.m.��A�4�A�p.m.C�p.m.�4pm��A�4�A�pmC�p.m.�5a.m.��A�5�A�a.m.C�a.m.�5am��A�5�A�amC�a.m.�5p.m.��A�5�A�p.m.C�p.m.�5pm��A�5�A�pmC�p.m.�6a.m.��A�6�A�a.m.C�a.m.�6am��A�6�A�amC�a.m.�6p.m.��A�6�A�p.m.C�p.m.�6pm��A�6�A�pmC�p.m.�7a.m.��A�7�A�a.m.C�a.m.�7am��A�7�A�amC�a.m.�7p.m.��A�7�A�p.m.C�p.m.�7pm��A�7�A�pmC�p.m.�8)��A�8)�8-)��A�8-)�8-D��A�8-D�8D��A�8D�8a.m.��A�8�A�a.m.C�a.m.�8am��A�8�A�amC�a.m.�8p.m.��A�8�A�p.m.C�p.m.�8pm��A�8�A�pmC�p.m.�9a.m.��A�9�A�a.m.C�a.m.�9am��A�9�A�amC�a.m.�9p.m.��A�9�A�p.m.C�p.m.�9pm��A�9�A�pmC�p.m.�:'(��A�:'(�:')��A�:')�:'-(��A�:'-(�:'-)��A�:'-)�:(��A�:(�:((��A�:((�:(((��A�:(((�:()��A�:()�:)��A�:)�:))��A�:))�:)))��A�:)))�:*��A�:*�:-(��A�:-(�:-((��A�:-((�:-(((��A�:-(((�:-)��A�:-)�:-))��A�:-))�:-)))��A�:-)))�:-*��A�:-*�:-/��A�:-/�:-0��A�:-0�:-3��A�:-3�:->��A�:->�:-D��A�:-D�:-O��A�:-O�:-P��A�:-P�:-X��A�:-X�:-]��A�:-]�:-o��A�:-o�:-p��A�:-p�:-x��A�:-x�:-|��A�:-|�:-}��A�:-}�:/��A�:/�:0��A�:0�:1��A�:1�:3��A�:3�:>��A�:>�:D��A�:D�:O��A�:O�:P��A�:P�:X��A�:X�:]��A�:]�:o��A�:o�:o)��A�:o)�:p��A�:p�:x��A�:x�:|��A�:|�:}��A�:}�:’(��A�:’(�:’)��A�:’)�:’-(��A�:’-(�:’-)��A�:’-)�;)��A�;)�;-)��A�;-)�;-D��A�;-D�;D��A�;D�;_;��A�;_;�<.<��A�<.<�</3��A�</3�<3��A�<3�<33��A�<33�<333��A�<333�<space>��A�<space>�=(��A�=(�=)��A�=)�=/��A�=/�=3��A�=3�=D��A�=D�=[��A�=[�=]��A�=]�=|��A�=|�>.<��A�>.<�>.>��A�>.>�>:(��A�>:(�>:o��A�>:o�><(((*>��A�><(((*>�@_@��A�@_@�Adm.��A�Adm.�Ain't��A�Ai�A�n'tC�not�Aint��A�Ai�A�ntC�not�Ain’t��A�Ai�A�n’tC�not�Ak.��A�Ak.C�Alaska�Ala.��A�Ala.C�Alabama�Apr.��A�Apr.C�April�Aren't��A�AreC�are�A�n'tC�not�Arent��A�AreC�are�A�ntC�not�Aren’t��A�AreC�are�A�n’tC�not�Ariz.��A�Ariz.C�Arizona�Ark.��A�Ark.C�Arkansas�Aug.��A�Aug.C�August�Bros.��A�Bros.�C'mon��A�C'mC�come�A�on�C++��A�C++�Calif.��A�Calif.C�California�Can't��A�CaC�can�A�n'tC�not�Can't've��A�CaC�can�A�n'tC�not�A�'veC�have�Cannot��A�CanC�can�A�not�Cant��A�CaC�can�A�ntC�not�Cantve��A�CaC�can�A�ntC�not�A�veC�have�Can’t��A�CaC�can�A�n’tC�not�Can’t’ve��A�CaC�can�A�n’tC�not�A�’veC�have�Co.��A�Co.�Colo.��A�Colo.C�Colorado�Conn.��A�Conn.C�Connecticut�Corp.��A�Corp.�Could've��A�CouldC�could�A�'ve�Couldn't��A�CouldC�could�A�n'tC�not�Couldn't've��A�CouldC�could�A�n'tC�not�A�'veC�have�Couldnt��A�CouldC�could�A�ntC�not�Couldntve��A�CouldC�could�A�ntC�not�A�veC�have�Couldn’t��A�CouldC�could�A�n’tC�not�Couldn’t’ve��A�CouldC�could�A�n’tC�not�A�’veC�have�Couldve��A�CouldC�could�A�ve�Could’ve��A�CouldC�could�A�’ve�C’mon��A�C’mC�come�A�on�D.C.��A�D.C.�Daren't��A�DareC�dare�A�n'tC�not�Darent��A�DareC�dare�A�ntC�not�Daren’t��A�DareC�dare�A�n’tC�not�Dec.��A�Dec.C�December�Del.��A�Del.C�Delaware�Didn't��A�DidC�do�A�n'tC�not�Didn't've��A�DidC�do�A�n'tC�not�A�'veC�have�Didnt��A�DidC�do�A�ntC�not�Didntve��A�DidC�do�A�ntC�not�A�veC�have�Didn’t��A�DidC�do�A�n’tC�not�Didn’t’ve��A�DidC�do�A�n’tC�not�A�’veC�have�Doesn't��A�DoesC�does�A�n'tC�not�Doesn't've��A�DoesC�does�A�n'tC�not�A�'veC�have�Doesnt��A�DoesC�does�A�ntC�not�Doesntve��A�DoesC�does�A�ntC�not�A�veC�have�Doesn’t��A�DoesC�does�A�n’tC�not�Doesn’t’ve��A�DoesC�does�A�n’tC�not�A�’veC�have�Doin��A�DoinC�doing�Doin'��A�Doin'C�doing�Doin’��A�Doin’C�doing�Don't��A�DoC�do�A�n'tC�not�Don't've��A�DoC�do�A�n'tC�not�A�'veC�have�Dont��A�DoC�do�A�ntC�not�Dontve��A�DoC�do�A�ntC�not�A�veC�have�Don’t��A�DoC�do�A�n’tC�not�Don’t’ve��A�DoC�do�A�n’tC�not�A�’veC�have�Dr.��A�Dr.�E.G.��A�E.G.�E.g.��A�E.g.�Feb.��A�Feb.C�February�Fla.��A�Fla.C�Florida�Ga.��A�Ga.C�Georgia�Gen.��A�Gen.�Goin��A�GoinC�going�Goin'��A�Goin'C�going�Goin’��A�Goin’C�going�Gonna��A�GonC�going�A�naC�to�Gotta��A�GotC�got�A�taC�to�Gov.��A�Gov.�Hadn't��A�HadC�have�A�n'tC�not�Hadn't've��A�HadC�have�A�n'tC�not�A�'veC�have�Hadnt��A�HadC�have�A�ntC�not�Hadntve��A�HadC�have�A�ntC�not�A�veC�have�Hadn’t��A�HadC�have�A�n’tC�not�Hadn’t’ve��A�HadC�have�A�n’tC�not�A�’veC�have�Hasn't��A�HasC�has�A�n'tC�not�Hasnt��A�HasC�has�A�ntC�not�Hasn’t��A�HasC�has�A�n’tC�not�Haven't��A�HaveC�have�A�n'tC�not�Havent��A�HaveC�have�A�ntC�not�Haven’t��A�HaveC�have�A�n’tC�not�Havin��A�HavinC�having�Havin'��A�Havin'C�having�Havin’��A�Havin’C�having�He'd��A�HeC�he�A�'dC�'d�He'd've��A�HeC�he�A�'dC�would�A�'veC�have�He'll��A�HeC�he�A�'llC�will�He'll've��A�HeC�he�A�'llC�will�A�'veC�have�He's��A�HeC�he�A�'sC�'s�Hed��A�HeC�he�A�dC�'d�Hedve��A�HeC�he�A�dC�would�A�veC�have�Hellve��A�HeC�he�A�llC�will�A�veC�have�Hes��A�HeC�he�A�s�He’d��A�HeC�he�A�’dC�'d�He’d’ve��A�HeC�he�A�’dC�would�A�’veC�have�He’ll��A�HeC�he�A�’llC�will�He’ll’ve��A�HeC�he�A�’llC�will�A�’veC�have�He’s��A�HeC�he�A�’sC�'s�How'd��A�HowC�how�A�'dC�'d�How'd've��A�HowC�how�A�'dC�would�A�'veC�have�How'd'y��A�HowC�how�A�'d�A�'yC�you�How'll��A�HowC�how�A�'llC�will�How'll've��A�HowC�how�A�'llC�will�A�'veC�have�How're��A�HowC�how�A�'reC�are�How's��A�HowC�how�A�'sC�'s�How've��A�HowC�how�A�'ve�Howd��A�HowC�how�A�dC�'d�Howdve��A�HowC�how�A�dC�would�A�veC�have�Howll��A�HowC�how�A�llC�will�Howllve��A�HowC�how�A�llC�will�A�veC�have�Howre��A�HowC�how�A�reC�are�Hows��A�HowC�how�A�s�Howve��A�How�A�veC�have�How’d��A�HowC�how�A�’dC�'d�How’d’ve��A�HowC�how�A�’dC�would�A�’veC�have�How’d’y��A�HowC�how�A�’d�A�’yC�you�How’ll��A�HowC�how�A�’llC�will�How’ll’ve��A�HowC�how�A�’llC�will�A�’veC�have�How’re��A�HowC�how�A�’reC�are�How’s��A�HowC�how�A�’sC�'s�How’ve��A�HowC�how�A�’ve�I'd��A�IC�i�A�'dC�'d�I'd've��A�IC�i�A�'dC�would�A�'veC�have�I'll��A�IC�i�A�'llC�will�I'll've��A�IC�i�A�'llC�will�A�'veC�have�I'm��A�IC�i�A�'mC�am�I'ma��A�IC�i�A�'mC�am�A�aC�gonna�I've��A�IC�i�A�'veC�have�I.E.��A�I.E.�I.e.��A�I.e.�Ia.��A�Ia.C�Iowa�Id��A�IC�i�A�dC�'d�Id.��A�Id.C�Idaho�Idve��A�IC�i�A�dC�would�A�veC�have�Ill.��A�Ill.C�Illinois�Illve��A�IC�i�A�llC�will�A�veC�have�Im��A�IC�i�A�m�Ima��A�IC�i�A�mC�am�A�aC�gonna�Inc.��A�Inc.�Ind.��A�Ind.C�Indiana�Isn't��A�IsC�is�A�n'tC�not�Isnt��A�IsC�is�A�ntC�not�Isn’t��A�IsC�is�A�n’tC�not�It'd��A�ItC�it�A�'dC�'d�It'd've��A�ItC�it�A�'dC�would�A�'veC�have�It'll��A�ItC�it�A�'llC�will�It'll've��A�ItC�it�A�'llC�will�A�'veC�have�It's��A�ItC�it�A�'sC�'s�Itd��A�ItC�it�A�dC�'d�Itdve��A�ItC�it�A�dC�would�A�veC�have�Itll��A�ItC�it�A�llC�will�Itllve��A�ItC�it�A�llC�will�A�veC�have�It’d��A�ItC�it�A�’dC�'d�It’d’ve��A�ItC�it�A�’dC�would�A�’veC�have�It’ll��A�ItC�it�A�’llC�will�It’ll’ve��A�ItC�it�A�’llC�will�A�’veC�have�It’s��A�ItC�it�A�’sC�'s�Ive��A�IC�i�A�veC�have�I’d��A�IC�i�A�’dC�'d�I’d’ve��A�IC�i�A�’dC�would�A�’veC�have�I’ll��A�IC�i�A�’llC�will�I’ll’ve��A�IC�i�A�’llC�will�A�’veC�have�I’m��A�IC�i�A�’mC�am�I’ma��A�IC�i�A�’mC�am�A�aC�gonna�I’ve��A�IC�i�A�’veC�have�Jan.��A�Jan.C�January�Jr.��A�Jr.�Jul.��A�Jul.C�July�Jun.��A�Jun.C�June�Kan.��A�Kan.C�Kansas�Kans.��A�Kans.C�Kansas�Ky.��A�Ky.C�Kentucky�La.��A�La.C�Louisiana�Let's��A�LetC�let�A�'sC�us�Let’s��A�LetC�let�A�’sC�us�Lovin��A�LovinC�loving�Lovin'��A�Lovin'C�loving�Lovin’��A�Lovin’C�loving�Ltd.��A�Ltd.�Ma'am��A�Ma'amC�madam�Mar.��A�Mar.C�March�Mass.��A�Mass.C�Massachusetts�Mayn't��A�MayC�may�A�n'tC�not�Mayn't've��A�MayC�may�A�n'tC�not�A�'veC�have�Maynt��A�MayC�may�A�ntC�not�Mayntve��A�MayC�may�A�ntC�not�A�veC�have�Mayn’t��A�MayC�may�A�n’tC�not�Mayn’t’ve��A�MayC�may�A�n’tC�not�A�’veC�have�Ma’am��A�Ma’amC�madam�Md.��A�Md.�Messrs.��A�Messrs.�Mich.��A�Mich.C�Michigan�Might've��A�MightC�might�A�'ve�Mightn't��A�MightC�might�A�n'tC�not�Mightn't've��A�MightC�might�A�n'tC�not�A�'veC�have�Mightnt��A�MightC�might�A�ntC�not�Mightntve��A�MightC�might�A�ntC�not�A�veC�have�Mightn’t��A�MightC�might�A�n’tC�not�Mightn’t’ve��A�MightC�might�A�n’tC�not�A�’veC�have�Mightve��A�MightC�might�A�ve�Might’ve��A�MightC�might�A�’ve�Minn.��A�Minn.C�Minnesota�Miss.��A�Miss.C�Mississippi�Mo.��A�Mo.�Mont.��A�Mont.�Mr.��A�Mr.�Mrs.��A�Mrs.�Ms.��A�Ms.�Mt.��A�Mt.C�Mount�Must've��A�MustC�must�A�'ve�Mustn't��A�MustC�must�A�n'tC�not�Mustn't've��A�MustC�must�A�n'tC�not�A�'veC�have�Mustnt��A�MustC�must�A�ntC�not�Mustntve��A�MustC�must�A�ntC�not�A�veC�have�Mustn’t��A�MustC�must�A�n’tC�not�Mustn’t’ve��A�MustC�must�A�n’tC�not�A�’veC�have�Mustve��A�MustC�must�A�ve�Must’ve��A�MustC�must�A�’ve�N.C.��A�N.C.C�North Carolina�N.D.��A�N.D.C�North Dakota�N.H.��A�N.H.C�New Hampshire�N.J.��A�N.J.C�New Jersey�N.M.��A�N.M.C�New Mexico�N.Y.��A�N.Y.C�New York�Neb.��A�Neb.C�Nebraska�Nebr.��A�Nebr.C�Nebraska�Needn't��A�NeedC�need�A�n'tC�not�Needn't've��A�NeedC�need�A�n'tC�not�A�'veC�have�Neednt��A�NeedC�need�A�ntC�not�Needntve��A�NeedC�need�A�ntC�not�A�veC�have�Needn’t��A�NeedC�need�A�n’tC�not�Needn’t’ve��A�NeedC�need�A�n’tC�not�A�’veC�have�Nev.��A�Nev.C�Nevada�Not've��A�NotC�not�A�'veC�have�Nothin��A�NothinC�nothing�Nothin'��A�Nothin'C�nothing�Nothin’��A�Nothin’C�nothing�Notve��A�NotC�not�A�veC�have�Not’ve��A�NotC�not�A�’veC�have�Nov.��A�Nov.C�November�Nuthin��A�NuthinC�nothing�Nuthin'��A�Nuthin'C�nothing�Nuthin’��A�Nuthin’C�nothing�O'clock��A�O'clockC�o'clock�O.O��A�O.O�O.o��A�O.o�O_O��A�O_O�O_o��A�O_o�Oct.��A�Oct.C�October�Okla.��A�Okla.C�Oklahoma�Ol��A�OlC�old�Ol'��A�Ol'C�old�Ol’��A�Ol’C�old�Ore.��A�Ore.C�Oregon�Oughtn't��A�OughtC�ought�A�n'tC�not�Oughtn't've��A�OughtC�ought�A�n'tC�not�A�'veC�have�Oughtnt��A�OughtC�ought�A�ntC�not�Oughtntve��A�OughtC�ought�A�ntC�not�A�veC�have�Oughtn’t��A�OughtC�ought�A�n’tC�not�Oughtn’t’ve��A�OughtC�ought�A�n’tC�not�A�’veC�have�O’clock��A�O’clockC�o'clock�Pa.��A�Pa.C�Pennsylvania�Ph.D.��A�Ph.D.�Prof.��A�Prof.�Rep.��A�Rep.�Rev.��A�Rev.�S.C.��A�S.C.C�South Carolina�Sen.��A�Sen.�Sep.��A�Sep.C�September�Sept.��A�Sept.C�September�Shan't��A�ShaC�shall�A�n'tC�not�Shan't've��A�ShaC�shall�A�n'tC�not�A�'veC�have�Shant��A�ShaC�shall�A�ntC�not�Shantve��A�ShaC�shall�A�ntC�not�A�veC�have�Shan’t��A�ShaC�shall�A�n’tC�not�Shan’t’ve��A�ShaC�shall�A�n’tC�not�A�’veC�have�She'd��A�SheC�she�A�'dC�'d�She'd've��A�SheC�she�A�'dC�would�A�'veC�have�She'll��A�SheC�she�A�'llC�will�She'll've��A�SheC�she�A�'llC�will�A�'veC�have�She's��A�SheC�she�A�'sC�'s�Shedve��A�SheC�she�A�dC�would�A�veC�have�Shellve��A�SheC�she�A�llC�will�A�veC�have�Shes��A�SheC�she�A�s�She’d��A�SheC�she�A�’dC�'d�She’d’ve��A�SheC�she�A�’dC�would�A�’veC�have�She’ll��A�SheC�she�A�’llC�will�She’ll’ve��A�SheC�she�A�’llC�will�A�’veC�have�She’s��A�SheC�she�A�’sC�'s�Should've��A�ShouldC�should�A�'ve�Shouldn't��A�ShouldC�should�A�n'tC�not�Shouldn't've��A�ShouldC�should�A�n'tC�not�A�'veC�have�Shouldnt��A�ShouldC�should�A�ntC�not�Shouldntve��A�ShouldC�should�A�ntC�not�A�veC�have�Shouldn’t��A�ShouldC�should�A�n’tC�not�Shouldn’t’ve��A�ShouldC�should�A�n’tC�not�A�’veC�have�Shouldve��A�ShouldC�should�A�ve�Should’ve��A�ShouldC�should�A�’ve�Somethin��A�SomethinC�something�Somethin'��A�Somethin'C�something�Somethin’��A�Somethin’C�something�St.��A�St.�Tenn.��A�Tenn.C�Tennessee�That'd��A�ThatC�that�A�'dC�'d�That'd've��A�ThatC�that�A�'dC�would�A�'veC�have�That'll��A�ThatC�that�A�'llC�will�That'll've��A�ThatC�that�A�'llC�will�A�'veC�have�That's��A�ThatC�that�A�'sC�'s�Thatd��A�ThatC�that�A�dC�'d�Thatdve��A�ThatC�that�A�dC�would�A�veC�have�Thatll��A�ThatC�that�A�llC�will�Thatllve��A�ThatC�that�A�llC�will�A�veC�have�Thats��A�ThatC�that�A�s�That’d��A�ThatC�that�A�’dC�'d�That’d’ve��A�ThatC�that�A�’dC�would�A�’veC�have�That’ll��A�ThatC�that�A�’llC�will�That’ll’ve��A�ThatC�that�A�’llC�will�A�’veC�have�That’s��A�ThatC�that�A�’sC�'s�There'd��A�ThereC�there�A�'dC�'d�There'd've��A�ThereC�there�A�'dC�would�A�'veC�have�There'll��A�ThereC�there�A�'llC�will�There'll've��A�ThereC�there�A�'llC�will�A�'veC�have�There're��A�ThereC�there�A�'reC�are�There's��A�ThereC�there�A�'sC�'s�There've��A�ThereC�there�A�'ve�Thered��A�ThereC�there�A�dC�'d�Theredve��A�ThereC�there�A�dC�would�A�veC�have�Therell��A�ThereC�there�A�llC�will�Therellve��A�ThereC�there�A�llC�will�A�veC�have�Therere��A�ThereC�there�A�reC�are�Theres��A�ThereC�there�A�s�Thereve��A�There�A�veC�have�There’d��A�ThereC�there�A�’dC�'d�There’d’ve��A�ThereC�there�A�’dC�would�A�’veC�have�There’ll��A�ThereC�there�A�’llC�will�There’ll’ve��A�ThereC�there�A�’llC�will�A�’veC�have�There’re��A�ThereC�there�A�’reC�are�There’s��A�ThereC�there�A�’sC�'s�There’ve��A�ThereC�there�A�’ve�These'd��A�TheseC�these�A�'dC�'d�These'd've��A�TheseC�these�A�'dC�would�A�'veC�have�These'll��A�TheseC�these�A�'llC�will�These'll've��A�TheseC�these�A�'llC�will�A�'veC�have�These're��A�TheseC�these�A�'reC�are�These've��A�TheseC�these�A�'ve�Thesed��A�TheseC�these�A�dC�'d�Thesedve��A�TheseC�these�A�dC�would�A�veC�have�Thesell��A�TheseC�these�A�llC�will�Thesellve��A�TheseC�these�A�llC�will�A�veC�have�Thesere��A�TheseC�these�A�reC�are�Theseve��A�These�A�veC�have�These’d��A�TheseC�these�A�’dC�'d�These’d’ve��A�TheseC�these�A�’dC�would�A�’veC�have�These’ll��A�TheseC�these�A�’llC�will�These’ll’ve��A�TheseC�these�A�’llC�will�A�’veC�have�These’re��A�TheseC�these�A�’reC�are�These’ve��A�TheseC�these�A�’ve�They'd��A�TheyC�they�A�'dC�'d�They'd've��A�TheyC�they�A�'dC�would�A�'veC�have�They'll��A�TheyC�they�A�'llC�will�They'll've��A�TheyC�they�A�'llC�will�A�'veC�have�They're��A�TheyC�they�A�'reC�are�They've��A�TheyC�they�A�'veC�have�Theyd��A�TheyC�they�A�dC�'d�Theydve��A�TheyC�they�A�dC�would�A�veC�have�Theyll��A�TheyC�they�A�llC�will�Theyllve��A�TheyC�they�A�llC�will�A�veC�have�Theyre��A�TheyC�they�A�reC�are�Theyve��A�TheyC�they�A�veC�have�They’d��A�TheyC�they�A�’dC�'d�They’d’ve��A�TheyC�they�A�’dC�would�A�’veC�have�They’ll��A�TheyC�they�A�’llC�will�They’ll’ve��A�TheyC�they�A�’llC�will�A�’veC�have�They’re��A�TheyC�they�A�’reC�are�They’ve��A�TheyC�they�A�’veC�have�This'd��A�ThisC�this�A�'dC�'d�This'd've��A�ThisC�this�A�'dC�would�A�'veC�have�This'll��A�ThisC�this�A�'llC�will�This'll've��A�ThisC�this�A�'llC�will�A�'veC�have�This's��A�ThisC�this�A�'sC�'s�Thisd��A�ThisC�this�A�dC�'d�Thisdve��A�ThisC�this�A�dC�would�A�veC�have�Thisll��A�ThisC�this�A�llC�will�Thisllve��A�ThisC�this�A�llC�will�A�veC�have�Thiss��A�ThisC�this�A�s�This’d��A�ThisC�this�A�’dC�'d�This’d’ve��A�ThisC�this�A�’dC�would�A�’veC�have�This’ll��A�ThisC�this�A�’llC�will�This’ll’ve��A�ThisC�this�A�’llC�will�A�’veC�have�This’s��A�ThisC�this�A�’sC�'s�Those'd��A�ThoseC�those�A�'dC�'d�Those'd've��A�ThoseC�those�A�'dC�would�A�'veC�have�Those'll��A�ThoseC�those�A�'llC�will�Those'll've��A�ThoseC�those�A�'llC�will�A�'veC�have�Those're��A�ThoseC�those�A�'reC�are�Those've��A�ThoseC�those�A�'ve�Thosed��A�ThoseC�those�A�dC�'d�Thosedve��A�ThoseC�those�A�dC�would�A�veC�have�Thosell��A�ThoseC�those�A�llC�will�Thosellve��A�ThoseC�those�A�llC�will�A�veC�have�Thosere��A�ThoseC�those�A�reC�are�Thoseve��A�Those�A�veC�have�Those’d��A�ThoseC�those�A�’dC�'d�Those’d’ve��A�ThoseC�those�A�’dC�would�A�’veC�have�Those’ll��A�ThoseC�those�A�’llC�will�Those’ll’ve��A�ThoseC�those�A�’llC�will�A�’veC�have�Those’re��A�ThoseC�those�A�’reC�are�Those’ve��A�ThoseC�those�A�’ve�V.V��A�V.V�V_V��A�V_V�Va.��A�Va.C�Virginia�Wash.��A�Wash.C�Washington�Wasn't��A�WasC�was�A�n'tC�not�Wasnt��A�WasC�was�A�ntC�not�Wasn’t��A�WasC�was�A�n’tC�not�We'd��A�WeC�we�A�'dC�'d�We'd've��A�WeC�we�A�'dC�would�A�'veC�have�We'll��A�WeC�we�A�'llC�will�We'll've��A�WeC�we�A�'llC�will�A�'veC�have�We're��A�WeC�we�A�'reC�are�We've��A�WeC�we�A�'veC�have�Wed��A�WeC�we�A�dC�'d�Wedve��A�WeC�we�A�dC�would�A�veC�have�Wellve��A�WeC�we�A�llC�will�A�veC�have�Weren't��A�WereC�were�A�n'tC�not�Werent��A�WereC�were�A�ntC�not�Weren’t��A�WereC�were�A�n’tC�not�Weve��A�WeC�we�A�veC�have�We’d��A�WeC�we�A�’dC�'d�We’d’ve��A�WeC�we�A�’dC�would�A�’veC�have�We’ll��A�WeC�we�A�’llC�will�We’ll’ve��A�WeC�we�A�’llC�will�A�’veC�have�We’re��A�WeC�we�A�’reC�are�We’ve��A�WeC�we�A�’veC�have�What'd��A�WhatC�what�A�'dC�'d�What'd've��A�WhatC�what�A�'dC�would�A�'veC�have�What'll��A�WhatC�what�A�'llC�will�What'll've��A�WhatC�what�A�'llC�will�A�'veC�have�What're��A�WhatC�what�A�'reC�are�What's��A�WhatC�what�A�'sC�'s�What've��A�WhatC�what�A�'ve�Whatd��A�WhatC�what�A�dC�'d�Whatdve��A�WhatC�what�A�dC�would�A�veC�have�Whatll��A�WhatC�what�A�llC�will�Whatllve��A�WhatC�what�A�llC�will�A�veC�have�Whatre��A�WhatC�what�A�reC�are�Whats��A�WhatC�what�A�s�Whatve��A�What�A�veC�have�What’d��A�WhatC�what�A�’dC�'d�What’d’ve��A�WhatC�what�A�’dC�would�A�’veC�have�What’ll��A�WhatC�what�A�’llC�will�What’ll’ve��A�WhatC�what�A�’llC�will�A�’veC�have�What’re��A�WhatC�what�A�’reC�are�What’s��A�WhatC�what�A�’sC�'s�What’ve��A�WhatC�what�A�’ve�When'd��A�WhenC�when�A�'dC�'d�When'd've��A�WhenC�when�A�'dC�would�A�'veC�have�When'll��A�WhenC�when�A�'llC�will�When'll've��A�WhenC�when�A�'llC�will�A�'veC�have�When're��A�WhenC�when�A�'reC�are�When's��A�WhenC�when�A�'sC�'s�When've��A�WhenC�when�A�'ve�Whend��A�WhenC�when�A�dC�'d�Whendve��A�WhenC�when�A�dC�would�A�veC�have�Whenll��A�WhenC�when�A�llC�will�Whenllve��A�WhenC�when�A�llC�will�A�veC�have�Whenre��A�WhenC�when�A�reC�are�Whens��A�WhenC�when�A�s�Whenve��A�When�A�veC�have�When’d��A�WhenC�when�A�’dC�'d�When’d’ve��A�WhenC�when�A�’dC�would�A�’veC�have�When’ll��A�WhenC�when�A�’llC�will�When’ll’ve��A�WhenC�when�A�’llC�will�A�’veC�have�When’re��A�WhenC�when�A�’reC�are�When’s��A�WhenC�when�A�’sC�'s�When’ve��A�WhenC�when�A�’ve�Where'd��A�WhereC�where�A�'dC�'d�Where'd've��A�WhereC�where�A�'dC�would�A�'veC�have�Where'll��A�WhereC�where�A�'llC�will�Where'll've��A�WhereC�where�A�'llC�will�A�'veC�have�Where're��A�WhereC�where�A�'reC�are�Where's��A�WhereC�where�A�'sC�'s�Where've��A�WhereC�where�A�'ve�Whered��A�WhereC�where�A�dC�'d�Wheredve��A�WhereC�where�A�dC�would�A�veC�have�Wherell��A�WhereC�where�A�llC�will�Wherellve��A�WhereC�where�A�llC�will�A�veC�have�Wherere��A�WhereC�where�A�reC�are�Wheres��A�WhereC�where�A�s�Whereve��A�Where�A�veC�have�Where’d��A�WhereC�where�A�’dC�'d�Where’d’ve��A�WhereC�where�A�’dC�would�A�’veC�have�Where’ll��A�WhereC�where�A�’llC�will�Where’ll’ve��A�WhereC�where�A�’llC�will�A�’veC�have�Where’re��A�WhereC�where�A�’reC�are�Where’s��A�WhereC�where�A�’sC�'s�Where’ve��A�WhereC�where�A�’ve�Who'd��A�WhoC�who�A�'dC�'d�Who'd've��A�WhoC�who�A�'dC�would�A�'veC�have�Who'll��A�WhoC�who�A�'llC�will�Who'll've��A�WhoC�who�A�'llC�will�A�'veC�have�Who're��A�WhoC�who�A�'reC�are�Who's��A�WhoC�who�A�'sC�'s�Who've��A�WhoC�who�A�'ve�Whod��A�WhoC�who�A�dC�'d�Whodve��A�WhoC�who�A�dC�would�A�veC�have�Wholl��A�WhoC�who�A�llC�will�Whollve��A�WhoC�who�A�llC�will�A�veC�have�Whos��A�WhoC�who�A�s�Whove��A�Who�A�veC�have�Who’d��A�WhoC�who�A�’dC�'d�Who’d’ve��A�WhoC�who�A�’dC�would�A�’veC�have�Who’ll��A�WhoC�who�A�’llC�will�Who’ll’ve��A�WhoC�who�A�’llC�will�A�’veC�have�Who’re��A�WhoC�who�A�’reC�are�Who’s��A�WhoC�who�A�’sC�'s�Who’ve��A�WhoC�who�A�’ve�Why'd��A�WhyC�why�A�'dC�'d�Why'd've��A�WhyC�why�A�'dC�would�A�'veC�have�Why'll��A�WhyC�why�A�'llC�will�Why'll've��A�WhyC�why�A�'llC�will�A�'veC�have�Why're��A�WhyC�why�A�'reC�are�Why's��A�WhyC�why�A�'sC�'s�Why've��A�WhyC�why�A�'ve�Whyd��A�WhyC�why�A�dC�'d�Whydve��A�WhyC�why�A�dC�would�A�veC�have�Whyll��A�WhyC�why�A�llC�will�Whyllve��A�WhyC�why�A�llC�will�A�veC�have�Whyre��A�WhyC�why�A�reC�are�Whys��A�WhyC�why�A�s�Whyve��A�Why�A�veC�have�Why’d��A�WhyC�why�A�’dC�'d�Why’d’ve��A�WhyC�why�A�’dC�would�A�’veC�have�Why’ll��A�WhyC�why�A�’llC�will�Why’ll’ve��A�WhyC�why�A�’llC�will�A�’veC�have�Why’re��A�WhyC�why�A�’reC�are�Why’s��A�WhyC�why�A�’sC�'s�Why’ve��A�WhyC�why�A�’ve�Wis.��A�Wis.C�Wisconsin�Won't��A�WoC�will�A�n'tC�not�Won't've��A�WoC�will�A�n'tC�not�A�'veC�have�Wont��A�WoC�will�A�ntC�not�Wontve��A�WoC�will�A�ntC�not�A�veC�have�Won’t��A�WoC�will�A�n’tC�not�Won’t’ve��A�WoC�will�A�n’tC�not�A�’veC�have�Would've��A�WouldC�would�A�'ve�Wouldn't��A�WouldC�would�A�n'tC�not�Wouldn't've��A�WouldC�would�A�n'tC�not�A�'veC�have�Wouldnt��A�WouldC�would�A�ntC�not�Wouldntve��A�WouldC�would�A�ntC�not�A�veC�have�Wouldn’t��A�WouldC�would�A�n’tC�not�Wouldn’t’ve��A�WouldC�would�A�n’tC�not�A�’veC�have�Wouldve��A�WouldC�would�A�ve�Would’ve��A�WouldC�would�A�’ve�XD��A�XD�XDD��A�XDD�You'd��A�YouC�you�A�'dC�'d�You'd've��A�YouC�you�A�'dC�would�A�'veC�have�You'll��A�YouC�you�A�'llC�will�You'll've��A�YouC�you�A�'llC�will�A�'veC�have�You're��A�YouC�you�A�'reC�are�You've��A�YouC�you�A�'veC�have�Youd��A�YouC�you�A�dC�'d�Youdve��A�YouC�you�A�dC�would�A�veC�have�Youll��A�YouC�you�A�llC�will�Youllve��A�YouC�you�A�llC�will�A�veC�have�Youre��A�YouC�you�A�reC�are�Youve��A�YouC�you�A�veC�have�You’d��A�YouC�you�A�’dC�'d�You’d’ve��A�YouC�you�A�’dC�would�A�’veC�have�You’ll��A�YouC�you�A�’llC�will�You’ll’ve��A�YouC�you�A�’llC�will�A�’veC�have�You’re��A�YouC�you�A�’reC�are�You’ve��A�YouC�you�A�’veC�have�[-:��A�[-:�[:��A�[:�[=��A�[=�\")��A�\")�\n��A�\n�\t��A�\t�]=��A�]=�^_^��A�^_^�^__^��A�^__^�^___^��A�^___^�a.��A�a.�a.m.��A�a.m.�ain't��A�ai�A�n'tC�not�aint��A�ai�A�ntC�not�ain’t��A�ai�A�n’tC�not�and/or��A�and/orC�and/or�aren't��A�areC�are�A�n'tC�not�arent��A�areC�are�A�ntC�not�aren’t��A�areC�are�A�n’tC�not�b.��A�b.�c'mon��A�c'mC�come�A�on�c.��A�c.�can't��A�caC�can�A�n'tC�not�can't've��A�caC�can�A�n'tC�not�A�'veC�have�cannot��A�can�A�not�cant��A�caC�can�A�ntC�not�cantve��A�caC�can�A�ntC�not�A�veC�have�can’t��A�caC�can�A�n’tC�not�can’t’ve��A�caC�can�A�n’tC�not�A�’veC�have�co.��A�co.�could've��A�couldC�could�A�'ve�couldn't��A�couldC�could�A�n'tC�not�couldn't've��A�couldC�could�A�n'tC�not�A�'veC�have�couldnt��A�couldC�could�A�ntC�not�couldntve��A�couldC�could�A�ntC�not�A�veC�have�couldn’t��A�couldC�could�A�n’tC�not�couldn’t’ve��A�couldC�could�A�n’tC�not�A�’veC�have�couldve��A�couldC�could�A�ve�could’ve��A�couldC�could�A�’ve�c’mon��A�c’mC�come�A�on�d.��A�d.�daren't��A�dareC�dare�A�n'tC�not�darent��A�dareC�dare�A�ntC�not�daren’t��A�dareC�dare�A�n’tC�not�didn't��A�didC�do�A�n'tC�not�didn't've��A�didC�do�A�n'tC�not�A�'veC�have�didnt��A�didC�do�A�ntC�not�didntve��A�didC�do�A�ntC�not�A�veC�have�didn’t��A�didC�do�A�n’tC�not�didn’t’ve��A�didC�do�A�n’tC�not�A�’veC�have�doesn't��A�doesC�does�A�n'tC�not�doesn't've��A�doesC�does�A�n'tC�not�A�'veC�have�doesnt��A�doesC�does�A�ntC�not�doesntve��A�doesC�does�A�ntC�not�A�veC�have�doesn’t��A�doesC�does�A�n’tC�not�doesn’t’ve��A�doesC�does�A�n’tC�not�A�’veC�have�doin��A�doinC�doing�doin'��A�doin'C�doing�doin’��A�doin’C�doing�don't��A�doC�do�A�n'tC�not�don't've��A�doC�do�A�n'tC�not�A�'veC�have�dont��A�doC�do�A�ntC�not�dontve��A�doC�do�A�ntC�not�A�veC�have�don’t��A�doC�do�A�n’tC�not�don’t’ve��A�doC�do�A�n’tC�not�A�’veC�have�e.��A�e.�e.g.��A�e.g.�em��A�emC�them�f.��A�f.�g.��A�g.�goin��A�goinC�going�goin'��A�goin'C�going�goin’��A�goin’C�going�gonna��A�gonC�going�A�naC�to�gotta��A�got�A�taC�to�h.��A�h.�hadn't��A�hadC�have�A�n'tC�not�hadn't've��A�hadC�have�A�n'tC�not�A�'veC�have�hadnt��A�hadC�have�A�ntC�not�hadntve��A�hadC�have�A�ntC�not�A�veC�have�hadn’t��A�hadC�have�A�n’tC�not�hadn’t’ve��A�hadC�have�A�n’tC�not�A�’veC�have�hasn't��A�hasC�has�A�n'tC�not�hasnt��A�hasC�has�A�ntC�not�hasn’t��A�hasC�has�A�n’tC�not�haven't��A�haveC�have�A�n'tC�not�havent��A�haveC�have�A�ntC�not�haven’t��A�haveC�have�A�n’tC�not�havin��A�havinC�having�havin'��A�havin'C�having�havin’��A�havin’C�having�he'd��A�heC�he�A�'dC�'d�he'd've��A�heC�he�A�'dC�would�A�'veC�have�he'll��A�heC�he�A�'llC�will�he'll've��A�heC�he�A�'llC�will�A�'veC�have�he's��A�heC�he�A�'sC�'s�hed��A�heC�he�A�dC�'d�hedve��A�heC�he�A�dC�would�A�veC�have�hellve��A�heC�he�A�llC�will�A�veC�have�hes��A�heC�he�A�s�he’d��A�heC�he�A�’dC�'d�he’d’ve��A�heC�he�A�’dC�would�A�’veC�have�he’ll��A�heC�he�A�’llC�will�he’ll’ve��A�heC�he�A�’llC�will�A�’veC�have�he’s��A�heC�he�A�’sC�'s�how'd��A�howC�how�A�'dC�'d�how'd've��A�howC�how�A�'dC�would�A�'veC�have�how'd'y��A�how�A�'d�A�'yC�you�how'll��A�howC�how�A�'llC�will�how'll've��A�howC�how�A�'llC�will�A�'veC�have�how're��A�howC�how�A�'reC�are�how's��A�howC�how�A�'sC�'s�how've��A�howC�how�A�'ve�howd��A�howC�how�A�dC�'d�howdve��A�howC�how�A�dC�would�A�veC�have�howll��A�howC�how�A�llC�will�howllve��A�howC�how�A�llC�will�A�veC�have�howre��A�howC�how�A�reC�are�hows��A�howC�how�A�s�howve��A�how�A�veC�have�how’d��A�howC�how�A�’dC�'d�how’d’ve��A�howC�how�A���dC�would�A�’veC�have�how’d’y��A�how�A�’d�A�’yC�you�how’ll��A�howC�how�A�’llC�will�how’ll’ve��A�howC�how�A�’llC�will�A�’veC�have�how’re��A�howC�how�A�’reC�are�how’s��A�howC�how�A�’sC�'s�how’ve��A�howC�how�A�’ve�i'd��A�iC�i�A�'dC�'d�i'd've��A�iC�i�A�'dC�would�A�'veC�have�i'll��A�iC�i�A�'llC�will�i'll've��A�iC�i�A�'llC�will�A�'veC�have�i'm��A�iC�i�A�'mC�am�i'ma��A�iC�i�A�'mC�am�A�aC�gonna�i've��A�iC�i�A�'veC�have�i.��A�i.�i.e.��A�i.e.�id��A�iC�i�A�dC�'d�idve��A�iC�i�A�dC�would�A�veC�have�illve��A�iC�i�A�llC�will�A�veC�have�im��A�iC�i�A�m�ima��A�iC�i�A�mC�am�A�aC�gonna�isn't��A�isC�is�A�n'tC�not�isnt��A�isC�is�A�ntC�not�isn’t��A�isC�is�A�n’tC�not�it'd��A�itC�it�A�'dC�'d�it'd've��A�itC�it�A�'dC�would�A�'veC�have�it'll��A�itC�it�A�'llC�will�it'll've��A�itC�it�A�'llC�will�A�'veC�have�it's��A�itC�it�A�'sC�'s�itd��A�itC�it�A�dC�'d�itdve��A�itC�it�A�dC�would�A�veC�have�itll��A�itC�it�A�llC�will�itllve��A�itC�it�A�llC�will�A�veC�have�it’d��A�itC�it�A�’dC�'d�it’d’ve��A�itC�it�A�’dC�would�A�’veC�have�it’ll��A�itC�it�A�’llC�will�it’ll’ve��A�itC�it�A�’llC�will�A�’veC�have�it’s��A�itC�it�A�’sC�'s�ive��A�iC�i�A�veC�have�i’d��A�iC�i�A�’dC�'d�i’d’ve��A�iC�i�A�’dC�would�A�’veC�have�i’ll��A�iC�i�A�’llC�will�i’ll’ve��A�iC�i�A�’llC�will�A�’veC�have�i’m��A�iC�i�A�’mC�am�i’ma��A�iC�i�A�’mC�am�A�aC�gonna�i’ve��A�iC�i�A�’veC�have�j.��A�j.�k.��A�k.�l.��A�l.�let's��A�let�A�'sC�us�let’s��A�let�A�’sC�us�ll��A�llC�will�lovin��A�lovinC�loving�lovin'��A�lovin'C�loving�lovin’��A�lovin’C�loving�m.��A�m.�ma'am��A�ma'amC�madam�mayn't��A�mayC�may�A�n'tC�not�mayn't've��A�mayC�may�A�n'tC�not�A�'veC�have�maynt��A�mayC�may�A�ntC�not�mayntve��A�mayC�may�A�ntC�not�A�veC�have�mayn’t��A�mayC�may�A�n’tC�not�mayn’t’ve��A�mayC�may�A�n’tC�not�A�’veC�have�ma’am��A�ma’amC�madam�might've��A�mightC�might�A�'ve�mightn't��A�mightC�might�A�n'tC�not�mightn't've��A�mightC�might�A�n'tC�not�A�'veC�have�mightnt��A�mightC�might�A�ntC�not�mightntve��A�mightC�might�A�ntC�not�A�veC�have�mightn’t��A�mightC�might�A�n’tC�not�mightn’t’ve��A�mightC�might�A�n’tC�not�A�’veC�have�mightve��A�mightC�might�A�ve�might’ve��A�mightC�might�A�’ve�must've��A�mustC�must�A�'ve�mustn't��A�mustC�must�A�n'tC�not�mustn't've��A�mustC�must�A�n'tC�not�A�'veC�have�mustnt��A�mustC�must�A�ntC�not�mustntve��A�mustC�must�A�ntC�not�A�veC�have�mustn’t��A�mustC�must�A�n’tC�not�mustn’t’ve��A�mustC�must�A�n’tC�not�A�’veC�have�mustve��A�mustC�must�A�ve�must’ve��A�mustC�must�A�’ve�n.��A�n.�needn't��A�needC�need�A�n'tC�not�needn't've��A�needC�need�A�n'tC�not�A�'veC�have�neednt��A�needC�need�A�ntC�not�needntve��A�needC�need�A�ntC�not�A�veC�have�needn’t��A�needC�need�A�n’tC�not�needn’t’ve��A�needC�need�A�n’tC�not�A�’veC�have�not've��A�not�A�'veC�have�nothin��A�nothinC�nothing�nothin'��A�nothin'C�nothing�nothin’��A�nothin’C�nothing�notve��A�not�A�veC�have�not’ve��A�not�A�’veC�have�nuff��A�nuffC�enough�nuthin��A�nuthinC�nothing�nuthin'��A�nuthin'C�nothing�nuthin’��A�nuthin’C�nothing�o'clock��A�o'clockC�o'clock�o.��A�o.�o.0��A�o.0�o.O��A�o.O�o.o��A�o.o�o_0��A�o_0�o_O��A�o_O�o_o��A�o_o�ol��A�olC�old�ol'��A�ol'C�old�ol’��A�ol’C�old�oughtn't��A�oughtC�ought�A�n'tC�not�oughtn't've��A�oughtC�ought�A�n'tC�not�A�'veC�have�oughtnt��A�oughtC�ought�A�ntC�not�oughtntve��A�oughtC�ought�A�ntC�not�A�veC�have�oughtn’t��A�oughtC�ought�A�n’tC�not�oughtn’t’ve��A�oughtC�ought�A�n’tC�not�A�’veC�have�o’clock��A�o’clockC�o'clock�p.��A�p.�p.m.��A�p.m.�q.��A�q.�r.��A�r.�s.��A�s.�shan't��A�shaC�shall�A�n'tC�not�shan't've��A�shaC�shall�A�n'tC�not�A�'veC�have�shant��A�shaC�shall�A�ntC�not�shantve��A�shaC�shall�A�ntC�not�A�veC�have�shan’t��A�shaC�shall�A�n’tC�not�shan’t’ve��A�shaC�shall�A�n’tC�not�A�’veC�have�she'd��A�sheC�she�A�'dC�'d�she'd've��A�sheC�she�A�'dC�would�A�'veC�have�she'll��A�sheC�she�A�'llC�will�she'll've��A�sheC�she�A�'llC�will�A�'veC�have�she's��A�sheC�she�A�'sC�'s�shedve��A�sheC�she�A�dC�would�A�veC�have�shellve��A�sheC�she�A�llC�will�A�veC�have�shes��A�sheC�she�A�s�she’d��A�sheC�she�A�’dC�'d�she’d’ve��A�sheC�she�A�’dC�would�A�’veC�have�she’ll��A�sheC�she�A�’llC�will�she’ll’ve��A�sheC�she�A�’llC�will�A�’veC�have�she’s��A�sheC�she�A�’sC�'s�should've��A�shouldC�should�A�'ve�shouldn't��A�shouldC�should�A�n'tC�not�shouldn't've��A�shouldC�should�A�n'tC�not�A�'veC�have�shouldnt��A�shouldC�should�A�ntC�not�shouldntve��A�shouldC�should�A�ntC�not�A�veC�have�shouldn’t��A�shouldC�should�A�n’tC�not�shouldn’t’ve��A�shouldC�should�A�n’tC�not�A�’veC�have�shouldve��A�shouldC�should�A�ve�should’ve��A�shouldC�should�A�’ve�somethin��A�somethinC�something�somethin'��A�somethin'C�something�somethin’��A�somethin’C�something�t.��A�t.�that'd��A�thatC�that�A�'dC�'d�that'd've��A�thatC�that�A�'dC�would�A�'veC�have�that'll��A�thatC�that�A�'llC�will�that'll've��A�thatC�that�A�'llC�will�A�'veC�have�that's��A�thatC�that�A�'sC�'s�thatd��A�thatC�that�A�dC�'d�thatdve��A�thatC�that�A�dC�would�A�veC�have�thatll��A�thatC�that�A�llC�will�thatllve��A�thatC�that�A�llC�will�A�veC�have�thats��A�thatC�that�A�s�that’d��A�thatC�that�A�’dC�'d�that’d’ve��A�thatC�that�A�’dC�would�A�’veC�have�that’ll��A�thatC�that�A�’llC�will�that’ll’ve��A�thatC�that�A�’llC�will�A�’veC�have�that’s��A�thatC�that�A�’sC�'s�there'd��A�thereC�there�A�'dC�'d�there'd've��A�thereC�there�A�'dC�would�A�'veC�have�there'll��A�thereC�there�A�'llC�will�there'll've��A�thereC�there�A�'llC�will�A�'veC�have�there're��A�thereC�there�A�'reC�are�there's��A�thereC�there�A�'sC�'s�there've��A�thereC�there�A�'ve�thered��A�thereC�there�A�dC�'d�theredve��A�thereC�there�A�dC�would�A�veC�have�therell��A�thereC�there�A�llC�will�therellve��A�thereC�there�A�llC�will�A�veC�have�therere��A�thereC�there�A�reC�are�theres��A�thereC�there�A�s�thereve��A�there�A�veC�have�there’d��A�thereC�there�A�’dC�'d�there’d’ve��A�thereC�there�A�’dC�would�A�’veC�have�there’ll��A�thereC�there�A�’llC�will�there’ll’ve��A�thereC�there�A�’llC�will�A�’veC�have�there’re��A�thereC�there�A�’reC�are�there’s��A�thereC�there�A�’sC�'s�there’ve��A�thereC�there�A�’ve�these'd��A�theseC�these�A�'dC�'d�these'd've��A�theseC�these�A�'dC�would�A�'veC�have�these'll��A�theseC�these�A�'llC�will�these'll've��A�theseC�these�A�'llC�will�A�'veC�have�these're��A�theseC�these�A�'reC�are�these've��A�theseC�these�A�'ve�thesed��A�theseC�these�A�dC�'d�thesedve��A�theseC�these�A�dC�would�A�veC�have�thesell��A�theseC�these�A�llC�will�thesellve��A�theseC�these�A�llC�will�A�veC�have�thesere��A�theseC�these�A�reC�are�theseve��A�these�A�veC�have�these’d��A�theseC�these�A�’dC�'d�these’d’ve��A�theseC�these�A�’dC�would�A�’veC�have�these’ll��A�theseC�these�A�’llC�will�these’ll’ve��A�theseC�these�A�’llC�will�A�’veC�have�these’re��A�theseC�these�A�’reC�are�these’ve��A�theseC�these�A�’ve�they'd��A�theyC�they�A�'dC�'d�they'd've��A�theyC�they�A�'dC�would�A�'veC�have�they'll��A�theyC�they�A�'llC�will�they'll've��A�theyC�they�A�'llC�will�A�'veC�have�they're��A�theyC�they�A�'reC�are�they've��A�theyC�they�A�'veC�have�theyd��A�theyC�they�A�dC�'d�theydve��A�theyC�they�A�dC�would�A�veC�have�theyll��A�theyC�they�A�llC�will�theyllve��A�theyC�they�A�llC�will�A�veC�have�theyre��A�theyC�they�A�reC�are�theyve��A�theyC�they�A�veC�have�they’d��A�theyC�they�A�’dC�'d�they’d’ve��A�theyC�they�A�’dC�would�A�’veC�have�they’ll��A�theyC�they�A�’llC�will�they’ll’ve��A�theyC�they�A�’llC�will�A�’veC�have�they’re��A�theyC�they�A�’reC�are�they’ve��A�theyC�they�A�’veC�have�this'd��A�thisC�this�A�'dC�'d�this'd've��A�thisC�this�A�'dC�would�A�'veC�have�this'll��A�thisC�this�A�'llC�will�this'll've��A�thisC�this�A�'llC�will�A�'veC�have�this's��A�thisC�this�A�'sC�'s�thisd��A�thisC�this�A�dC�'d�thisdve��A�thisC�this�A�dC�would�A�veC�have�thisll��A�thisC�this�A�llC�will�thisllve��A�thisC�this�A�llC�will�A�veC�have�thiss��A�thisC�this�A�s�this’d��A�thisC�this�A�’dC�'d�this’d’ve��A�thisC�this�A�’dC�would�A�’veC�have�this’ll��A�thisC�this�A�’llC�will�this’ll’ve��A�thisC�this�A�’llC�will�A�’veC�have�this’s��A�thisC�this�A�’sC�'s�those'd��A�thoseC�those�A�'dC�'d�those'd've��A�thoseC�those�A�'dC�would�A�'veC�have�those'll��A�thoseC�those�A�'llC�will�those'll've��A�thoseC�those�A�'llC�will�A�'veC�have�those're��A�thoseC�those�A�'reC�are�those've��A�thoseC�those�A�'ve�thosed��A�thoseC�those�A�dC�'d�thosedve��A�thoseC�those�A�dC�would�A�veC�have�thosell��A�thoseC�those�A�llC�will�thosellve��A�thoseC�those�A�llC�will�A�veC�have�thosere��A�thoseC�those�A�reC�are�thoseve��A�those�A�veC�have�those’d��A�thoseC�those�A�’dC�'d�those’d’ve��A�thoseC�those�A�’dC�would�A�’veC�have�those’ll��A�thoseC�those�A�’llC�will�those’ll’ve��A�thoseC�those�A�’llC�will�A�’veC�have�those’re��A�thoseC�those�A�’reC�are�those’ve��A�thoseC�those�A�’ve�u.��A�u.�v.��A�v.�v.s.��A�v.s.�v.v��A�v.v�v_v��A�v_v�vs.��A�vs.�w.��A�w.�w/o��A�w/oC�without�wasn't��A�wasC�was�A�n'tC�not�wasnt��A�wasC�was�A�ntC�not�wasn’t��A�wasC�was�A�n’tC�not�we'd��A�weC�we�A�'dC�'d�we'd've��A�weC�we�A�'dC�would�A�'veC�have�we'll��A�weC�we�A�'llC�will�we'll've��A�weC�we�A�'llC�will�A�'veC�have�we're��A�weC�we�A�'reC�are�we've��A�weC�we�A�'veC�have�wed��A�weC�we�A�dC�'d�wedve��A�weC�we�A�dC�would�A�veC�have�wellve��A�weC�we�A�llC�will�A�veC�have�weren't��A�wereC�were�A�n'tC�not�werent��A�wereC�were�A�ntC�not�weren’t��A�wereC�were�A�n’tC�not�weve��A�weC�we�A�veC�have�we’d��A�weC�we�A�’dC�'d�we’d’ve��A�weC�we�A�’dC�would�A�’veC�have�we’ll��A�weC�we�A�’llC�will�we’ll’ve��A�weC�we�A�’llC�will�A�’veC�have�we’re��A�weC�we�A�’reC�are�we’ve��A�weC�we�A�’veC�have�what'd��A�whatC�what�A�'dC�'d�what'd've��A�whatC�what�A�'dC�would�A�'veC�have�what'll��A�whatC�what�A�'llC�will�what'll've��A�whatC�what�A�'llC�will�A�'veC�have�what're��A�whatC�what�A�'reC�are�what's��A�whatC�what�A�'sC�'s�what've��A�whatC�what�A�'ve�whatd��A�whatC�what�A�dC�'d�whatdve��A�whatC�what�A�dC�would�A�veC�have�whatll��A�whatC�what�A�llC�will�whatllve��A�whatC�what�A�llC�will�A�veC�have�whatre��A�whatC�what�A�reC�are�whats��A�whatC�what�A�s�whatve��A�what�A�veC�have�what’d��A�whatC�what�A�’dC�'d�what’d’ve��A�whatC�what�A�’dC�would�A�’veC�have�what’ll��A�whatC�what�A�’llC�will�what’ll’ve��A�whatC�what�A�’llC�will�A�’veC�have�what’re��A�whatC�what�A�’reC�are�what’s��A�whatC�what�A�’sC�'s�what’ve��A�whatC�what�A�’ve�when'd��A�whenC�when�A�'dC�'d�when'd've��A�whenC�when�A�'dC�would�A�'veC�have�when'll��A�whenC�when�A�'llC�will�when'll've��A�whenC�when�A�'llC�will�A�'veC�have�when're��A�whenC�when�A�'reC�are�when's��A�whenC�when�A�'sC�'s�when've��A�whenC�when�A�'ve�whend��A�whenC�when�A�dC�'d�whendve��A�whenC�when�A�dC�would�A�veC�have�whenll��A�whenC�when�A�llC�will�whenllve��A�whenC�when�A�llC�will�A�veC�have�whenre��A�whenC�when�A�reC�are�whens��A�whenC�when�A�s�whenve��A�when�A�veC�have�when’d��A�whenC�when�A�’dC�'d�when’d’ve��A�whenC�when�A�’dC�would�A�’veC�have�when’ll��A�whenC�when�A�’llC�will�when’ll’ve��A�whenC�when�A�’llC�will�A�’veC�have�when’re��A�whenC�when�A�’reC�are�when’s��A�whenC�when�A�’sC�'s�when’ve��A�whenC�when�A�’ve�where'd��A�whereC�where�A�'dC�'d�where'd've��A�whereC�where�A�'dC�would�A�'veC�have�where'll��A�whereC�where�A�'llC�will�where'll've��A�whereC�where�A�'llC�will�A�'veC�have�where're��A�whereC�where�A�'reC�are�where's��A�whereC�where�A�'sC�'s�where've��A�whereC�where�A�'ve�whered��A�whereC�where�A�dC�'d�wheredve��A�whereC�where�A�dC�would�A�veC�have�wherell��A�whereC�where�A�llC�will�wherellve��A�whereC�where�A�llC�will�A�veC�have�wherere��A�whereC�where�A�reC�are�wheres��A�whereC�where�A�s�whereve��A�where�A�veC�have�where’d��A�whereC�where�A�’dC�'d�where’d’ve��A�whereC�where�A�’dC�would�A�’veC�have�where’ll��A�whereC�where�A�’llC�will�where’ll’ve��A�whereC�where�A�’llC�will�A�’veC�have�where’re��A�whereC�where�A�’reC�are�where’s��A�whereC�where�A�’sC�'s�where’ve��A�whereC�where�A�’ve�who'd��A�whoC�who�A�'dC�'d�who'd've��A�whoC�who�A�'dC�would�A�'veC�have�who'll��A�whoC�who�A�'llC�will�who'll've��A�whoC�who�A�'llC�will�A�'veC�have�who're��A�whoC�who�A�'reC�are�who's��A�whoC�who�A�'sC�'s�who've��A�whoC�who�A�'ve�whod��A�whoC�who�A�dC�'d�whodve��A�whoC�who�A�dC�would�A�veC�have�wholl��A�whoC�who�A�llC�will�whollve��A�whoC�who�A�llC�will�A�veC�have�whos��A�whoC�who�A�s�whove��A�who�A�veC�have�who’d��A�whoC�who�A�’dC�'d�who’d’ve��A�whoC�who�A�’dC�would�A�’veC�have�who’ll��A�whoC�who�A�’llC�will�who’ll’ve��A�whoC�who�A�’llC�will�A�’veC�have�who’re��A�whoC�who�A�’reC�are�who’s��A�whoC�who�A�’sC�'s�who’ve��A�whoC�who�A�’ve�why'd��A�whyC�why�A�'dC�'d�why'd've��A�whyC�why�A�'dC�would�A�'veC�have�why'll��A�whyC�why�A�'llC�will�why'll've��A�whyC�why�A�'llC�will�A�'veC�have�why're��A�whyC�why�A�'reC�are�why's��A�whyC�why�A�'sC�'s�why've��A�whyC�why�A�'ve�whyd��A�whyC�why�A�dC�'d�whydve��A�whyC�why�A�dC�would�A�veC�have�whyll��A�whyC�why�A�llC�will�whyllve��A�whyC�why�A�llC�will�A�veC�have�whyre��A�whyC�why�A�reC�are�whys��A�whyC�why�A�s�whyve��A�why�A�veC�have�why’d��A�whyC�why�A�’dC�'d�why’d’ve��A�whyC�why�A�’dC�would�A�’veC�have�why’ll��A�whyC�why�A�’llC�will�why’ll’ve��A�whyC�why�A�’llC�will�A�’veC�have�why’re��A�whyC�why�A�’reC�are�why’s��A�whyC�why�A�’sC�'s�why’ve��A�whyC�why�A�’ve�won't��A�woC�will�A�n'tC�not�won't've��A�woC�will�A�n'tC�not�A�'veC�have�wont��A�woC�will�A�ntC�not�wontve��A�woC�will�A�ntC�not�A�veC�have�won’t��A�woC�will�A�n’tC�not�won’t’ve��A�woC�will�A�n’tC�not�A�’veC�have�would've��A�wouldC�would�A�'ve�wouldn't��A�wouldC�would�A�n'tC�not�wouldn't've��A�wouldC�would�A�n'tC�not�A�'veC�have�wouldnt��A�wouldC�would�A�ntC�not�wouldntve��A�wouldC�would�A�ntC�not�A�veC�have�wouldn’t��A�wouldC�would�A�n’tC�not�wouldn’t’ve��A�wouldC�would�A�n’tC�not�A�’veC�have�wouldve��A�wouldC�would�A�ve�would’ve��A�wouldC�would�A�’ve�x.��A�x.�xD��A�xD�xDD��A�xDD�y'all��A�y'C�you�A�all�y.��A�y.�yall��A�yC�you�A�all�you'd��A�youC�you�A�'dC�'d�you'd've��A�youC�you�A�'dC�would�A�'veC�have�you'll��A�youC�you�A�'llC�will�you'll've��A�youC�you�A�'llC�will�A�'veC�have�you're��A�youC�you�A�'reC�are�you've��A�youC�you�A�'veC�have�youd��A�youC�you�A�dC�'d�youdve��A�youC�you�A�dC�would�A�veC�have�youll��A�youC�you�A�llC�will�youllve��A�youC�you�A�llC�will�A�veC�have�youre��A�youC�you�A�reC�are�youve��A�youC�you�A�veC�have�you’d��A�youC�you�A�’dC�'d�you’d’ve��A�youC�you�A�’dC�would�A�’veC�have�you’ll��A�youC�you�A�’llC�will�you’ll’ve��A�youC�you�A�’llC�will�A�’veC�have�you’re��A�youC�you�A�’reC�are�you’ve��A�youC�you�A�’veC�have�y’all��A�y’C�you�A�all�z.��A�z.� ��A� C� �¯\(ツ)/¯��A�¯\(ツ)/¯�°C.��A�°�A�C�A�.�°F.��A�°�A�F�A�.�°K.��A�°�A�K�A�.�°c.��A�°�A�c�A�.�°f.��A�°�A�f�A�.�°k.��A�°�A�k�A�.�ä.��A�ä.�ö.��A�ö.�ü.��A�ü.�ಠ_ಠ��A�ಠ_ಠ�ಠ︵ಠ��A�ಠ︵ಠ�—��A�—�‘S��A�‘SC�'s�‘s��A�‘sC�'s�’��A�’�’Cause��A�’CauseC�because�’Cos��A�’CosC�because�’Coz��A�’CozC�because�’Cuz��A�’CuzC�because�’S��A�’SC�'s�’bout��A�’boutC�about�’cause��A�’causeC�because�’cos��A�’cosC�because�’coz��A�’cozC�because�’cuz��A�’cuzC�because�’d��A�’d�’em��A�’emC�them�’ll��A�’llC�will�’nuff��A�’nuffC�enough�’re��A�’reC�are�’s��A�’sC�'s�’’��A�’’�faster_heuristics�
vocab/key2row ADDED
@@ -0,0 +1 @@
 
 
1
+
vocab/lookups.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:76be8b528d0075f7aae98d6fa57a6d3c83ae480a8469e668d7b0af968995ac71
3
+ size 1
vocab/strings.json ADDED
@@ -0,0 +1,7066 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ "\t",
3
+ "\n",
4
+ "\n\n",
5
+ " ",
6
+ " ",
7
+ "!",
8
+ "\"",
9
+ "#",
10
+ "$",
11
+ "%",
12
+ "&",
13
+ "'",
14
+ "''",
15
+ "'-(",
16
+ "'-)",
17
+ "'Cause",
18
+ "'Cos",
19
+ "'Coz",
20
+ "'Cuz",
21
+ "'S",
22
+ "'X",
23
+ "'Xxx",
24
+ "'Xxxxx",
25
+ "'am",
26
+ "'bout",
27
+ "'cause",
28
+ "'cos",
29
+ "'coz",
30
+ "'cuz",
31
+ "'d",
32
+ "'em",
33
+ "'ll",
34
+ "'m",
35
+ "'nuff",
36
+ "'re",
37
+ "'s",
38
+ "'ve",
39
+ "'x",
40
+ "'xx",
41
+ "'xxx",
42
+ "'xxxx",
43
+ "'y",
44
+ "(",
45
+ "(((",
46
+ "(*>",
47
+ "(*_*)",
48
+ "(-8",
49
+ "(-:",
50
+ "(-;",
51
+ "(-_-)",
52
+ "(-d",
53
+ "(._.)",
54
+ "(:",
55
+ "(;",
56
+ "(=",
57
+ "(>_<)",
58
+ "(^_^)",
59
+ "(es",
60
+ "(o:",
61
+ "(x:",
62
+ "(x_x)",
63
+ "(\u00ac_\u00ac)",
64
+ "(\u0ca0_\u0ca0)",
65
+ "(\u256f\u00b0\u25a1\u00b0\uff09\u256f\ufe35\u253b\u2501\u253b",
66
+ ")",
67
+ ")))",
68
+ ")-:",
69
+ ")/\u00af",
70
+ "):",
71
+ "*",
72
+ "+",
73
+ "+1",
74
+ "+d",
75
+ ",",
76
+ "-",
77
+ "-((",
78
+ "-))",
79
+ "---",
80
+ "----",
81
+ "-----------------",
82
+ "-/",
83
+ "-0",
84
+ "-19",
85
+ "-3",
86
+ "-8",
87
+ "-Agility",
88
+ "-Credibility",
89
+ "-D",
90
+ "-O",
91
+ "-P",
92
+ "-X",
93
+ "-Xxx",
94
+ "-Xxxxx",
95
+ "-You",
96
+ "-_-",
97
+ "-__-",
98
+ "-agility",
99
+ "-credibility",
100
+ "-d",
101
+ "-o",
102
+ "-p",
103
+ "-x",
104
+ "-xxx",
105
+ "-xxxx",
106
+ "-you",
107
+ "-|",
108
+ ".",
109
+ "...",
110
+ ".00",
111
+ ".C.",
112
+ ".D.",
113
+ ".E.",
114
+ ".G.",
115
+ ".H.",
116
+ ".J.",
117
+ ".M.",
118
+ ".P.",
119
+ ".S.",
120
+ ".Y.",
121
+ "._.",
122
+ ".e.",
123
+ ".g.",
124
+ ".m.",
125
+ ".p.",
126
+ ".s.",
127
+ "/",
128
+ "/15",
129
+ "/3",
130
+ "/Operations",
131
+ "/Xxxxx",
132
+ "/d",
133
+ "/operations",
134
+ "/or",
135
+ "/quotes",
136
+ "/xxxx",
137
+ "0",
138
+ "0%-",
139
+ "0.0",
140
+ "0.o",
141
+ "000",
142
+ "008",
143
+ "009",
144
+ "01008",
145
+ "013",
146
+ "017",
147
+ "019",
148
+ "01k",
149
+ "020",
150
+ "021",
151
+ "022",
152
+ "023",
153
+ "024",
154
+ "047",
155
+ "050",
156
+ "08/19/2023",
157
+ "0M+",
158
+ "0_0",
159
+ "0_o",
160
+ "0am",
161
+ "0m+",
162
+ "0pm",
163
+ "1",
164
+ "1(k",
165
+ "1.2",
166
+ "10",
167
+ "10%-",
168
+ "10/12/2022",
169
+ "100",
170
+ "100,000",
171
+ "101",
172
+ "105",
173
+ "105,000",
174
+ "106,700.00",
175
+ "106916",
176
+ "108,500",
177
+ "10a.m",
178
+ "10a.m.",
179
+ "10p.m",
180
+ "10p.m.",
181
+ "11",
182
+ "115,575.00",
183
+ "115,600.00",
184
+ "11a.m",
185
+ "11a.m.",
186
+ "11p.m",
187
+ "11p.m.",
188
+ "12",
189
+ "120",
190
+ "12a.m",
191
+ "12a.m.",
192
+ "12p.m",
193
+ "12p.m.",
194
+ "130764",
195
+ "131",
196
+ "140",
197
+ "15",
198
+ "15,000",
199
+ "150,000",
200
+ "18",
201
+ "182047",
202
+ "19",
203
+ "1975",
204
+ "1983",
205
+ "1996",
206
+ "1ST",
207
+ "1a.m",
208
+ "1a.m.",
209
+ "1p.m",
210
+ "1p.m.",
211
+ "1st",
212
+ "2",
213
+ "2,000",
214
+ "2,600",
215
+ "20",
216
+ "200",
217
+ "2009",
218
+ "2019",
219
+ "2020",
220
+ "2021",
221
+ "2022",
222
+ "2024",
223
+ "2101",
224
+ "22",
225
+ "23,000",
226
+ "23rd",
227
+ "24/7",
228
+ "250",
229
+ "250,000",
230
+ "27001:2013",
231
+ "27001:2017",
232
+ "2C.",
233
+ "2IE",
234
+ "2a.m",
235
+ "2a.m.",
236
+ "2c.",
237
+ "2ie",
238
+ "2p.m",
239
+ "2p.m.",
240
+ "3",
241
+ "3)Write",
242
+ "3)write",
243
+ "30",
244
+ "30,000",
245
+ "304",
246
+ "3050",
247
+ "311",
248
+ "312",
249
+ "33",
250
+ "333",
251
+ "338",
252
+ "35",
253
+ "366",
254
+ "37",
255
+ "3a.m",
256
+ "3a.m.",
257
+ "3p.m",
258
+ "3p.m.",
259
+ "3rd",
260
+ "4",
261
+ "4,000",
262
+ "4/7",
263
+ "40",
264
+ "400",
265
+ "401(k",
266
+ "401k",
267
+ "4105",
268
+ "4304",
269
+ "45",
270
+ "4a.m",
271
+ "4a.m.",
272
+ "4p.m",
273
+ "4p.m.",
274
+ "5",
275
+ "5/15",
276
+ "50",
277
+ "50.00",
278
+ "500",
279
+ "54",
280
+ "543",
281
+ "550M+",
282
+ "550m+",
283
+ "553131",
284
+ "55hr",
285
+ "57,700.00",
286
+ "57.00",
287
+ "5:00",
288
+ "5a.m",
289
+ "5a.m.",
290
+ "5hr",
291
+ "5p.m",
292
+ "5p.m.",
293
+ "6",
294
+ "6,200",
295
+ "60",
296
+ "600",
297
+ "65,000",
298
+ "6947",
299
+ "6:00pm",
300
+ "6a.m",
301
+ "6a.m.",
302
+ "6p.m",
303
+ "6p.m.",
304
+ "6th",
305
+ "7",
306
+ "70",
307
+ "700",
308
+ "712",
309
+ "714",
310
+ "716",
311
+ "72712",
312
+ "72716",
313
+ "75,000.00",
314
+ "758",
315
+ "764",
316
+ "76798",
317
+ "77,000.00",
318
+ "78,800",
319
+ "798",
320
+ "7a.m",
321
+ "7a.m.",
322
+ "7p.m",
323
+ "7p.m.",
324
+ "8",
325
+ "8)",
326
+ "8-",
327
+ "8-)",
328
+ "8-D",
329
+ "8-d",
330
+ "80",
331
+ "80,000",
332
+ "800",
333
+ "801",
334
+ "85",
335
+ "8:00",
336
+ "8D",
337
+ "8a.m",
338
+ "8a.m.",
339
+ "8d",
340
+ "8p.m",
341
+ "8p.m.",
342
+ "9",
343
+ "90",
344
+ "916",
345
+ "924",
346
+ "947",
347
+ "975",
348
+ "983",
349
+ "996",
350
+ "9:00am",
351
+ "9a.m",
352
+ "9a.m.",
353
+ "9p.m",
354
+ "9p.m.",
355
+ ":",
356
+ ":'(",
357
+ ":')",
358
+ ":'-(",
359
+ ":'-)",
360
+ ":(",
361
+ ":((",
362
+ ":(((",
363
+ ":()",
364
+ ":)",
365
+ ":))",
366
+ ":)))",
367
+ ":*",
368
+ ":-(",
369
+ ":-((",
370
+ ":-(((",
371
+ ":-)",
372
+ ":-))",
373
+ ":-)))",
374
+ ":-*",
375
+ ":-/",
376
+ ":-0",
377
+ ":-3",
378
+ ":->",
379
+ ":-D",
380
+ ":-O",
381
+ ":-P",
382
+ ":-X",
383
+ ":-]",
384
+ ":-d",
385
+ ":-o",
386
+ ":-p",
387
+ ":-x",
388
+ ":-|",
389
+ ":-}",
390
+ ":/",
391
+ ":0",
392
+ ":00",
393
+ ":1",
394
+ ":3",
395
+ ":>",
396
+ ":D",
397
+ ":O",
398
+ ":P",
399
+ ":X",
400
+ ":]",
401
+ ":d",
402
+ ":o",
403
+ ":o)",
404
+ ":p",
405
+ ":x",
406
+ ":x)",
407
+ ":|",
408
+ ":}",
409
+ ":\u2019(",
410
+ ":\u2019)",
411
+ ":\u2019-(",
412
+ ":\u2019-)",
413
+ ";",
414
+ ";)",
415
+ ";-)",
416
+ ";-D",
417
+ ";-X",
418
+ ";-d",
419
+ ";D",
420
+ ";X",
421
+ ";_;",
422
+ ";d",
423
+ "<",
424
+ "<.<",
425
+ "</3",
426
+ "</d",
427
+ "<3",
428
+ "<33",
429
+ "<333",
430
+ "<d",
431
+ "<dd",
432
+ "<ddd",
433
+ "<space>",
434
+ "<xxxx>",
435
+ "=",
436
+ "=(",
437
+ "=)",
438
+ "=/",
439
+ "=3",
440
+ "=D",
441
+ "=X",
442
+ "=[",
443
+ "=]",
444
+ "=d",
445
+ "=|",
446
+ ">",
447
+ ">.<",
448
+ ">.>",
449
+ ">:(",
450
+ ">:o",
451
+ ">:x",
452
+ "><(((*>",
453
+ "?",
454
+ "@",
455
+ "@_@",
456
+ "A",
457
+ "A&C",
458
+ "A.",
459
+ "AA",
460
+ "ABILITIES",
461
+ "ABOUT",
462
+ "ACA",
463
+ "ACDA",
464
+ "ACL",
465
+ "ACO",
466
+ "ACS",
467
+ "ADA",
468
+ "ADF",
469
+ "ADO",
470
+ "ADSI",
471
+ "ADVANTAGES",
472
+ "AFB",
473
+ "AI",
474
+ "ALERT",
475
+ "ALL",
476
+ "AN",
477
+ "ANA",
478
+ "ANALYST",
479
+ "AND",
480
+ "APICS",
481
+ "APPOINTMENTS",
482
+ "APPROVAL",
483
+ "AR",
484
+ "ARD",
485
+ "ARE",
486
+ "ARY",
487
+ "AT",
488
+ "ATA",
489
+ "ATE",
490
+ "ATS",
491
+ "ATTRIBUTES",
492
+ "AWS",
493
+ "Abdul",
494
+ "Abilities",
495
+ "Ability",
496
+ "Able",
497
+ "About",
498
+ "Acceptance",
499
+ "Access",
500
+ "Account",
501
+ "Accountabilities",
502
+ "Accountability",
503
+ "Accountable",
504
+ "Accounting",
505
+ "Acquire",
506
+ "Act",
507
+ "Action",
508
+ "Active",
509
+ "Activities",
510
+ "Acts",
511
+ "Actuary",
512
+ "Ad",
513
+ "Adaptive",
514
+ "Add",
515
+ "Additional",
516
+ "Additionally",
517
+ "Address",
518
+ "Adept",
519
+ "Adheres",
520
+ "Adient",
521
+ "Adjustment",
522
+ "Adm",
523
+ "Adm.",
524
+ "Administers",
525
+ "Administration",
526
+ "Administrators",
527
+ "Adopts",
528
+ "Advanced",
529
+ "Advantage",
530
+ "Advises",
531
+ "Advisor",
532
+ "Affairs",
533
+ "Affirmative",
534
+ "Affordable",
535
+ "Agencies",
536
+ "Aggregate",
537
+ "Agile",
538
+ "Ago",
539
+ "Ai",
540
+ "Ak",
541
+ "Ak.",
542
+ "Ala",
543
+ "Ala.",
544
+ "Alabama",
545
+ "Alaska",
546
+ "Alation",
547
+ "All",
548
+ "Alternatively",
549
+ "Alteryx",
550
+ "Amadea",
551
+ "Amentum",
552
+ "America",
553
+ "Among",
554
+ "An",
555
+ "Analysis",
556
+ "Analyst",
557
+ "Analysts",
558
+ "Analytic",
559
+ "Analytical",
560
+ "Analytics",
561
+ "Analyze",
562
+ "Analyzes",
563
+ "And",
564
+ "Annual",
565
+ "Anticipates",
566
+ "Any",
567
+ "Apache",
568
+ "Applicant",
569
+ "Applicants",
570
+ "Application",
571
+ "Applications",
572
+ "Applies",
573
+ "Apply",
574
+ "Appointment",
575
+ "Approach",
576
+ "Apps",
577
+ "AppsFlyer",
578
+ "Apr",
579
+ "Apr.",
580
+ "April",
581
+ "Arabia",
582
+ "Architect",
583
+ "Architects",
584
+ "Architecture",
585
+ "Are",
586
+ "Area",
587
+ "Ariz",
588
+ "Ariz.",
589
+ "Arizona",
590
+ "Ark",
591
+ "Ark.",
592
+ "Arkansas",
593
+ "Articulate",
594
+ "Artificial",
595
+ "Arts",
596
+ "As",
597
+ "Ascension",
598
+ "Ascent",
599
+ "Assessments",
600
+ "Assist",
601
+ "Assistance",
602
+ "Assists",
603
+ "Associate",
604
+ "Associates",
605
+ "Assurance",
606
+ "Assure",
607
+ "At",
608
+ "Attention",
609
+ "Attn",
610
+ "Audit",
611
+ "Auditor",
612
+ "Aug",
613
+ "Aug.",
614
+ "Augmentation",
615
+ "August",
616
+ "Australia",
617
+ "Authorized",
618
+ "Automate",
619
+ "Automotive",
620
+ "Availability",
621
+ "Awards",
622
+ "Azure",
623
+ "B",
624
+ "B.",
625
+ "B.E",
626
+ "BA",
627
+ "BCBS",
628
+ "BENTONVILLE",
629
+ "BI",
630
+ "BMS",
631
+ "BN",
632
+ "BOM",
633
+ "BOS",
634
+ "BOULEVARD",
635
+ "BRD",
636
+ "BS",
637
+ "BSc",
638
+ "Bach",
639
+ "Bachelor",
640
+ "Bachelors",
641
+ "Bachelor\u2019s",
642
+ "Backfill",
643
+ "Background",
644
+ "Balance",
645
+ "Bank",
646
+ "Banking",
647
+ "Bari",
648
+ "Base",
649
+ "Based",
650
+ "Basic",
651
+ "Bay",
652
+ "Be",
653
+ "Because",
654
+ "Behavioral",
655
+ "Benefits",
656
+ "Best",
657
+ "Bibliography",
658
+ "Big",
659
+ "BigQuery",
660
+ "Billing",
661
+ "Birst",
662
+ "BlueWave",
663
+ "Bonus",
664
+ "Box",
665
+ "Branch",
666
+ "Bring",
667
+ "Brooklyn",
668
+ "Bros",
669
+ "Bros.",
670
+ "Build",
671
+ "Builder",
672
+ "Building",
673
+ "Builds",
674
+ "Business",
675
+ "But",
676
+ "By",
677
+ "C",
678
+ "C'm",
679
+ "C++",
680
+ "C.",
681
+ "C2C.",
682
+ "C2IE",
683
+ "C2h",
684
+ "CA",
685
+ "CAM",
686
+ "CBS",
687
+ "CCPA",
688
+ "CD",
689
+ "CDA",
690
+ "CDE",
691
+ "CDP",
692
+ "CEI",
693
+ "CERTIFICATES",
694
+ "CFE",
695
+ "CI",
696
+ "CIA",
697
+ "CIF",
698
+ "CISA",
699
+ "CLIENT",
700
+ "CMS",
701
+ "COVID",
702
+ "COVID-19",
703
+ "CPA",
704
+ "CS",
705
+ "CSE",
706
+ "CTO",
707
+ "CV",
708
+ "Ca",
709
+ "Calif",
710
+ "Calif.",
711
+ "California",
712
+ "Campaign",
713
+ "Can",
714
+ "Canada",
715
+ "Candidates",
716
+ "Capable",
717
+ "Carbon",
718
+ "Care",
719
+ "Career",
720
+ "Careers",
721
+ "Caregivers",
722
+ "Caresource",
723
+ "Catalog",
724
+ "Cataloging",
725
+ "Categories",
726
+ "Category",
727
+ "Cause",
728
+ "Center",
729
+ "CenterWell",
730
+ "Certificate",
731
+ "Certification",
732
+ "Certifications",
733
+ "Certified",
734
+ "Chain",
735
+ "Chakraborty",
736
+ "Champion",
737
+ "Change",
738
+ "Chase",
739
+ "Chief",
740
+ "Choice",
741
+ "Citi",
742
+ "City",
743
+ "Citywide",
744
+ "Claims",
745
+ "Clean",
746
+ "Clearinghouses",
747
+ "ClearlyRated",
748
+ "Client",
749
+ "Clinic",
750
+ "Close",
751
+ "Closed",
752
+ "Cloud",
753
+ "Cloudera",
754
+ "Club",
755
+ "Co",
756
+ "Co.",
757
+ "Code",
758
+ "Coding",
759
+ "Cognitive",
760
+ "Cognos",
761
+ "Collaborate",
762
+ "Collaborates",
763
+ "Collaboration",
764
+ "Collect",
765
+ "Collection",
766
+ "Collects",
767
+ "Colo",
768
+ "Colo.",
769
+ "Colorado",
770
+ "Combatant",
771
+ "Combined",
772
+ "Come",
773
+ "Comfortable",
774
+ "Command",
775
+ "Commerce",
776
+ "Commercial",
777
+ "Commitment",
778
+ "Common",
779
+ "CommsTech",
780
+ "Communicate",
781
+ "Communicates",
782
+ "Communicating",
783
+ "Communication",
784
+ "Communications",
785
+ "Comp",
786
+ "Companies",
787
+ "Company",
788
+ "Companys",
789
+ "Compensation",
790
+ "Competitive",
791
+ "Compile",
792
+ "Compiles",
793
+ "Complex",
794
+ "Compliance",
795
+ "Compliant",
796
+ "Complies",
797
+ "Comprehensive",
798
+ "Computer",
799
+ "Conceptualize",
800
+ "Conditions",
801
+ "Conduct",
802
+ "Conducts",
803
+ "Confident",
804
+ "Confidently",
805
+ "Confluence",
806
+ "Conjoint",
807
+ "Conn",
808
+ "Conn.",
809
+ "Connect",
810
+ "Connecticut",
811
+ "Conscientious",
812
+ "Console",
813
+ "Consultancy",
814
+ "Consulting",
815
+ "Consumer",
816
+ "Context",
817
+ "Contract",
818
+ "Contractors",
819
+ "Contributes",
820
+ "Contribution",
821
+ "Control",
822
+ "Controls",
823
+ "Coordinate",
824
+ "Coordinates",
825
+ "Core",
826
+ "Corp",
827
+ "Corp.",
828
+ "Corporate",
829
+ "Corporation",
830
+ "Correspondence",
831
+ "Cos",
832
+ "Cost",
833
+ "Could",
834
+ "Council",
835
+ "Courage",
836
+ "Cox",
837
+ "Coz",
838
+ "Create",
839
+ "Creates",
840
+ "Creating",
841
+ "Creative",
842
+ "Credit",
843
+ "Critical",
844
+ "Cross",
845
+ "Crypto",
846
+ "Cubes",
847
+ "Culture",
848
+ "Cupertino",
849
+ "Curiosity",
850
+ "Customer",
851
+ "Customize",
852
+ "Cuz",
853
+ "C\u2019m",
854
+ "D",
855
+ "D.",
856
+ "D.C.",
857
+ "DATA",
858
+ "DAX",
859
+ "DB",
860
+ "DB2",
861
+ "DEI",
862
+ "DESCRIPTIONWe",
863
+ "DGE",
864
+ "DI",
865
+ "DIS",
866
+ "DLC",
867
+ "DLP",
868
+ "DMR",
869
+ "DNA",
870
+ "DR",
871
+ "DRG",
872
+ "DSD",
873
+ "DSI",
874
+ "DUTIES",
875
+ "DW",
876
+ "Daily",
877
+ "Danville",
878
+ "Dare",
879
+ "Dash",
880
+ "Dashboard",
881
+ "Data",
882
+ "Database",
883
+ "Databricks",
884
+ "Dataiku",
885
+ "Date",
886
+ "Day",
887
+ "Days",
888
+ "Dec",
889
+ "Dec.",
890
+ "December",
891
+ "Decision",
892
+ "Defense",
893
+ "Define",
894
+ "Defines",
895
+ "Degree",
896
+ "Del",
897
+ "Del.",
898
+ "Delaware",
899
+ "Deliver",
900
+ "Delivers",
901
+ "Delivery",
902
+ "Deloitte",
903
+ "Delve",
904
+ "Demand",
905
+ "Demands",
906
+ "Demonstrate",
907
+ "Demonstrated",
908
+ "Demonstrates",
909
+ "Dental",
910
+ "Department",
911
+ "Departmental",
912
+ "Dependent",
913
+ "Deployment",
914
+ "Derive",
915
+ "Description",
916
+ "Design",
917
+ "Designer",
918
+ "Designs",
919
+ "Desirable",
920
+ "Desired",
921
+ "Desktop",
922
+ "Details",
923
+ "Determine",
924
+ "Dev",
925
+ "DevOps",
926
+ "Develop",
927
+ "Developers",
928
+ "Developing",
929
+ "Development",
930
+ "Develops",
931
+ "Dharshini",
932
+ "Dictionary",
933
+ "Did",
934
+ "Diego",
935
+ "Digi",
936
+ "DigiKey",
937
+ "Digital",
938
+ "Dimensional",
939
+ "Diploma",
940
+ "Direct",
941
+ "Directly",
942
+ "Director",
943
+ "Directory",
944
+ "Disability",
945
+ "Disabled",
946
+ "Disclaimer",
947
+ "Discovery",
948
+ "Discrimination",
949
+ "Displays",
950
+ "Distance",
951
+ "Distribution",
952
+ "Diversity",
953
+ "Division",
954
+ "Django",
955
+ "Do",
956
+ "DoITT",
957
+ "Document",
958
+ "Documentation",
959
+ "Documents",
960
+ "Does",
961
+ "Doin",
962
+ "Doin'",
963
+ "Doing",
964
+ "Doin\u2019",
965
+ "Domain",
966
+ "Domo",
967
+ "Done",
968
+ "Door",
969
+ "Dr",
970
+ "Dr.",
971
+ "Draft",
972
+ "Drive",
973
+ "Driver",
974
+ "Due",
975
+ "Duration",
976
+ "Duties",
977
+ "Duties and Responsibilities",
978
+ "E",
979
+ "E&E",
980
+ "E.G.",
981
+ "E.g",
982
+ "E.g.",
983
+ "EAP",
984
+ "ECT",
985
+ "EDI",
986
+ "EDLC",
987
+ "EDLP",
988
+ "EDUCATION",
989
+ "EDW",
990
+ "EEO",
991
+ "EHR",
992
+ "EIT",
993
+ "ELL",
994
+ "ENT",
995
+ "ER",
996
+ "ERN",
997
+ "ERP",
998
+ "ERPs",
999
+ "ERT",
1000
+ "ERWIN",
1001
+ "ERWin",
1002
+ "ESS",
1003
+ "ESSENTIAL",
1004
+ "EST",
1005
+ "ETC",
1006
+ "ETL",
1007
+ "EXCELLENT",
1008
+ "EXPERIENCE",
1009
+ "Eastern",
1010
+ "Economics",
1011
+ "Educate",
1012
+ "Education",
1013
+ "Educational",
1014
+ "Edward",
1015
+ "Effective",
1016
+ "Effectively",
1017
+ "Eight",
1018
+ "Electronic",
1019
+ "Elicit",
1020
+ "Eligible",
1021
+ "Embrace",
1022
+ "Embraces",
1023
+ "Emotional",
1024
+ "Emphasis",
1025
+ "Employee",
1026
+ "Employees",
1027
+ "Employer",
1028
+ "Employment",
1029
+ "End",
1030
+ "Engineer",
1031
+ "Engineering",
1032
+ "Engineers",
1033
+ "English",
1034
+ "Ensure",
1035
+ "Ensures",
1036
+ "Enterprise",
1037
+ "Entry",
1038
+ "Environment",
1039
+ "Environmental",
1040
+ "Epicor",
1041
+ "Equal",
1042
+ "Equality",
1043
+ "Equipment",
1044
+ "Equity",
1045
+ "Escalates",
1046
+ "Essential",
1047
+ "Establish",
1048
+ "Establishes",
1049
+ "Evaluate",
1050
+ "Evaluates",
1051
+ "Every",
1052
+ "Excel",
1053
+ "Excellence",
1054
+ "Excellent",
1055
+ "Excellus",
1056
+ "Exceptional",
1057
+ "Exchange",
1058
+ "Exciting",
1059
+ "Execute",
1060
+ "Execution",
1061
+ "Executive",
1062
+ "Exemplify",
1063
+ "Exerted",
1064
+ "Exhibits",
1065
+ "Existing",
1066
+ "Exp",
1067
+ "Expect",
1068
+ "Expectations",
1069
+ "Experience",
1070
+ "Expert",
1071
+ "Expertise",
1072
+ "Exploratory",
1073
+ "Explore",
1074
+ "Exposure",
1075
+ "Extensive",
1076
+ "External",
1077
+ "Extract",
1078
+ "Extremely",
1079
+ "F",
1080
+ "F.",
1081
+ "FAD",
1082
+ "FL",
1083
+ "FOR",
1084
+ "Facilitate",
1085
+ "Facilitates",
1086
+ "Facility",
1087
+ "Factory",
1088
+ "Falls",
1089
+ "Familiar",
1090
+ "Familiarity",
1091
+ "Families",
1092
+ "Feb",
1093
+ "Feb.",
1094
+ "February",
1095
+ "Federal",
1096
+ "Field",
1097
+ "Finalize",
1098
+ "Finance",
1099
+ "Financial",
1100
+ "Firm",
1101
+ "Firmwide",
1102
+ "Five",
1103
+ "Fla",
1104
+ "Fla.",
1105
+ "Flash",
1106
+ "Flex",
1107
+ "Flexcube",
1108
+ "Flexible",
1109
+ "Florida",
1110
+ "Focus",
1111
+ "Follow",
1112
+ "For",
1113
+ "Force",
1114
+ "Forecasting",
1115
+ "Format",
1116
+ "Forms",
1117
+ "Formulates",
1118
+ "Formulation",
1119
+ "Fortune",
1120
+ "Foster",
1121
+ "Fosters",
1122
+ "Foundation",
1123
+ "Four",
1124
+ "Freight",
1125
+ "Friday",
1126
+ "From",
1127
+ "Front",
1128
+ "Full",
1129
+ "Fully",
1130
+ "Function",
1131
+ "Functional",
1132
+ "Functions",
1133
+ "Furthermore",
1134
+ "G",
1135
+ "GA4",
1136
+ "GED",
1137
+ "GES",
1138
+ "GGplot",
1139
+ "GHT",
1140
+ "GHX",
1141
+ "GIS",
1142
+ "GPO",
1143
+ "GPS",
1144
+ "GTM",
1145
+ "GUARANTEE",
1146
+ "Ga",
1147
+ "Ga.",
1148
+ "Gainwell",
1149
+ "Gangotri",
1150
+ "Gathering",
1151
+ "Geisinger",
1152
+ "Gen",
1153
+ "Gen.",
1154
+ "Gender",
1155
+ "General",
1156
+ "Generally",
1157
+ "Generate",
1158
+ "Generates",
1159
+ "Geo",
1160
+ "Georgia",
1161
+ "Git",
1162
+ "Global",
1163
+ "Goin",
1164
+ "Goin'",
1165
+ "Goin\u2019",
1166
+ "Gold",
1167
+ "Gon",
1168
+ "Good",
1169
+ "Google",
1170
+ "Got",
1171
+ "Gov",
1172
+ "Gov.",
1173
+ "Governance",
1174
+ "Government",
1175
+ "Grant",
1176
+ "Great",
1177
+ "Group",
1178
+ "Groups",
1179
+ "Growth",
1180
+ "Guard",
1181
+ "Guide",
1182
+ "H",
1183
+ "H1B",
1184
+ "HANA",
1185
+ "HAT",
1186
+ "HEALTH",
1187
+ "HIPAA",
1188
+ "HIRE",
1189
+ "HL7",
1190
+ "HM",
1191
+ "HR",
1192
+ "HRServices@highmarkhealth.org",
1193
+ "HS",
1194
+ "HSE&E",
1195
+ "HTML",
1196
+ "Had",
1197
+ "Hadoop",
1198
+ "Hagerty",
1199
+ "Hand",
1200
+ "Handbook",
1201
+ "Hands",
1202
+ "Happiness",
1203
+ "Harvard",
1204
+ "Has",
1205
+ "Have",
1206
+ "Havin",
1207
+ "Havin'",
1208
+ "Havin\u2019",
1209
+ "He",
1210
+ "He's",
1211
+ "Headquartered",
1212
+ "Headquarters",
1213
+ "Health",
1214
+ "Healthcare",
1215
+ "Help",
1216
+ "Helping",
1217
+ "He\u2019s",
1218
+ "Hi",
1219
+ "High",
1220
+ "Highly",
1221
+ "Highmark",
1222
+ "Hire",
1223
+ "HireGenics",
1224
+ "Hive",
1225
+ "Hoc",
1226
+ "Hold",
1227
+ "Holdings",
1228
+ "Hope",
1229
+ "Hopkins",
1230
+ "Hourly",
1231
+ "Hours",
1232
+ "How",
1233
+ "How's",
1234
+ "How\u2019s",
1235
+ "Hub",
1236
+ "Human",
1237
+ "Humana",
1238
+ "Hybrid",
1239
+ "I",
1240
+ "I.E.",
1241
+ "I.e",
1242
+ "I.e.",
1243
+ "IAL",
1244
+ "IC",
1245
+ "ICA",
1246
+ "ICS",
1247
+ "IES",
1248
+ "IEW",
1249
+ "IFT",
1250
+ "II",
1251
+ "III",
1252
+ "ILL",
1253
+ "IME",
1254
+ "INDICATORS",
1255
+ "INFOR",
1256
+ "ING",
1257
+ "INTERVIEW",
1258
+ "ION",
1259
+ "IRA",
1260
+ "IRE",
1261
+ "IS",
1262
+ "ISA",
1263
+ "ISMS",
1264
+ "ISO",
1265
+ "ISTQB",
1266
+ "IT",
1267
+ "ITT",
1268
+ "IVE",
1269
+ "Ia",
1270
+ "Ia.",
1271
+ "Id",
1272
+ "Id.",
1273
+ "Idaho",
1274
+ "Ideate",
1275
+ "Identification",
1276
+ "Identifies",
1277
+ "Identify",
1278
+ "Identity",
1279
+ "If",
1280
+ "Ill",
1281
+ "Ill.",
1282
+ "Illinois",
1283
+ "Imperial",
1284
+ "Implement",
1285
+ "Implementation",
1286
+ "Implements",
1287
+ "In",
1288
+ "Inc",
1289
+ "Inc.",
1290
+ "Incentive",
1291
+ "Inclusion",
1292
+ "Ind",
1293
+ "Ind.",
1294
+ "Independently",
1295
+ "Index",
1296
+ "India",
1297
+ "Indiana",
1298
+ "Industrial",
1299
+ "Industry",
1300
+ "Influence",
1301
+ "Info",
1302
+ "Informatica",
1303
+ "Informatics",
1304
+ "Information",
1305
+ "Information-",
1306
+ "Initiate",
1307
+ "Initiatives",
1308
+ "Innovation",
1309
+ "Innovative",
1310
+ "Inquisitive",
1311
+ "Insight",
1312
+ "Institute",
1313
+ "Insurance",
1314
+ "Integrated",
1315
+ "Integration",
1316
+ "Integrity",
1317
+ "Intellectual",
1318
+ "Intelligence",
1319
+ "Interested",
1320
+ "Interface",
1321
+ "Intermediate",
1322
+ "Internal",
1323
+ "International",
1324
+ "Interpret",
1325
+ "Interpreting",
1326
+ "Interview",
1327
+ "Introduction",
1328
+ "Inventory",
1329
+ "Iowa",
1330
+ "Is",
1331
+ "It",
1332
+ "It's",
1333
+ "Item",
1334
+ "Iteratively",
1335
+ "It\u2019s",
1336
+ "J",
1337
+ "J.P.",
1338
+ "J228924",
1339
+ "JAD",
1340
+ "JD",
1341
+ "JIRA",
1342
+ "JOB",
1343
+ "JPMC",
1344
+ "JPMorgan",
1345
+ "Jan",
1346
+ "Jan.",
1347
+ "January",
1348
+ "Java",
1349
+ "JazzHR",
1350
+ "Jersey",
1351
+ "Jira",
1352
+ "Job",
1353
+ "Job Title",
1354
+ "Johnson",
1355
+ "Join",
1356
+ "Joining",
1357
+ "Joint",
1358
+ "Jones",
1359
+ "Jr",
1360
+ "Jr.",
1361
+ "Jul",
1362
+ "Jul.",
1363
+ "July",
1364
+ "Jun",
1365
+ "Jun.",
1366
+ "June",
1367
+ "Junior",
1368
+ "K",
1369
+ "K.",
1370
+ "KDD",
1371
+ "KEY",
1372
+ "KNIME",
1373
+ "KNOWLEDGE",
1374
+ "KPI",
1375
+ "KPIs",
1376
+ "KPMG",
1377
+ "Kan",
1378
+ "Kan.",
1379
+ "Kanban",
1380
+ "Kans",
1381
+ "Kans.",
1382
+ "Kansas",
1383
+ "Kentucky",
1384
+ "Key",
1385
+ "Kforce",
1386
+ "Kindly",
1387
+ "Kingdom",
1388
+ "Know",
1389
+ "Knowledge",
1390
+ "KnowledgeForce",
1391
+ "Known",
1392
+ "Ky",
1393
+ "Ky.",
1394
+ "L",
1395
+ "LANDsat",
1396
+ "LAs",
1397
+ "LBM",
1398
+ "LEAP",
1399
+ "LGBTQ+",
1400
+ "LGBTQ+Equality",
1401
+ "LI",
1402
+ "LICENSES",
1403
+ "LLC",
1404
+ "LLE",
1405
+ "LLP",
1406
+ "LLS",
1407
+ "LOCATION",
1408
+ "LOCATIONWest",
1409
+ "LTH",
1410
+ "LVHN",
1411
+ "La",
1412
+ "La.",
1413
+ "Lake",
1414
+ "Largest",
1415
+ "Launched",
1416
+ "Law",
1417
+ "Lawson",
1418
+ "Layer",
1419
+ "Lead",
1420
+ "Leaders",
1421
+ "Leadership",
1422
+ "Leads",
1423
+ "Lean",
1424
+ "Learn",
1425
+ "Length",
1426
+ "Let",
1427
+ "Let's",
1428
+ "Let\u2019s",
1429
+ "Lib",
1430
+ "Licensure",
1431
+ "Life",
1432
+ "Lifted",
1433
+ "Lincoln",
1434
+ "LinkedIn",
1435
+ "Lists",
1436
+ "Live",
1437
+ "Load",
1438
+ "Location",
1439
+ "Long",
1440
+ "Look",
1441
+ "Looker",
1442
+ "Looking",
1443
+ "Louis",
1444
+ "Louisiana",
1445
+ "Lovin",
1446
+ "Lovin'",
1447
+ "Lovin\u2019",
1448
+ "Ltd",
1449
+ "Ltd.",
1450
+ "M",
1451
+ "MAXIMUS",
1452
+ "MBA",
1453
+ "MBE",
1454
+ "MCO",
1455
+ "MCSE",
1456
+ "MDM",
1457
+ "MFG",
1458
+ "MIS",
1459
+ "ML",
1460
+ "MMSA",
1461
+ "MN",
1462
+ "MODERN",
1463
+ "MODIS",
1464
+ "MRP",
1465
+ "MRPs",
1466
+ "MS",
1467
+ "MSA",
1468
+ "MSP",
1469
+ "MUS",
1470
+ "MUST",
1471
+ "MVA",
1472
+ "Ma'am",
1473
+ "MacBook",
1474
+ "MacDill",
1475
+ "Magazine",
1476
+ "Mahout",
1477
+ "Maintain",
1478
+ "Maintains",
1479
+ "Make",
1480
+ "Manage",
1481
+ "Managed",
1482
+ "Management",
1483
+ "Manager",
1484
+ "Managerial",
1485
+ "Managers",
1486
+ "Manages",
1487
+ "Manufacturing",
1488
+ "Mar",
1489
+ "Mar.",
1490
+ "March",
1491
+ "Market",
1492
+ "Marketing",
1493
+ "Mart",
1494
+ "Mart(s",
1495
+ "Marts",
1496
+ "Mass",
1497
+ "Mass.",
1498
+ "Massachusetts",
1499
+ "Massive",
1500
+ "Master",
1501
+ "Masters",
1502
+ "MatPlotLib",
1503
+ "Material",
1504
+ "Materials",
1505
+ "Math",
1506
+ "Mathematics",
1507
+ "Matplotlib",
1508
+ "Max",
1509
+ "MaxDiff",
1510
+ "Maximum",
1511
+ "Maximus",
1512
+ "May",
1513
+ "Ma\u2019am",
1514
+ "Md",
1515
+ "Md.",
1516
+ "Meaningful",
1517
+ "Measure",
1518
+ "Medicaid",
1519
+ "Medical",
1520
+ "Medicare",
1521
+ "Meets",
1522
+ "Mentor",
1523
+ "Messaging",
1524
+ "Messrs",
1525
+ "Messrs.",
1526
+ "Mich",
1527
+ "Mich.",
1528
+ "Michigan",
1529
+ "MicroStrategy",
1530
+ "Microsoft",
1531
+ "Microstrategy",
1532
+ "Middle",
1533
+ "Might",
1534
+ "Migrations",
1535
+ "Millennials",
1536
+ "Min",
1537
+ "Mines",
1538
+ "Minimum",
1539
+ "Minn",
1540
+ "Minn.",
1541
+ "Minnesota",
1542
+ "Minorities",
1543
+ "Minority",
1544
+ "Miss",
1545
+ "Miss.",
1546
+ "Mission",
1547
+ "Missions",
1548
+ "Mississauga",
1549
+ "Mississippi",
1550
+ "Mo",
1551
+ "Mo.",
1552
+ "Model",
1553
+ "Modeling",
1554
+ "Modelling",
1555
+ "Models",
1556
+ "Moderate",
1557
+ "Modern",
1558
+ "Mohammed",
1559
+ "Monday",
1560
+ "Monitor",
1561
+ "Monitoring",
1562
+ "Monitors",
1563
+ "Monkey",
1564
+ "Mont",
1565
+ "Mont.",
1566
+ "More",
1567
+ "Morgan",
1568
+ "Most",
1569
+ "Mother",
1570
+ "Mount",
1571
+ "Mountain",
1572
+ "Mr",
1573
+ "Mr.",
1574
+ "Mrs",
1575
+ "Mrs.",
1576
+ "Ms",
1577
+ "Ms.",
1578
+ "Mt",
1579
+ "Mt.",
1580
+ "Multiple",
1581
+ "Munging",
1582
+ "Must",
1583
+ "MySQL",
1584
+ "N",
1585
+ "N.C.",
1586
+ "N.D.",
1587
+ "N.H.",
1588
+ "N.J.",
1589
+ "N.M.",
1590
+ "N.Y.",
1591
+ "NCE",
1592
+ "NGO",
1593
+ "NGS",
1594
+ "NLY",
1595
+ "NORTH",
1596
+ "NOT",
1597
+ "NRGs",
1598
+ "NTS",
1599
+ "NWe",
1600
+ "NY",
1601
+ "National",
1602
+ "Nearly",
1603
+ "Neb",
1604
+ "Neb.",
1605
+ "Nebr",
1606
+ "Nebr.",
1607
+ "Nebraska",
1608
+ "Need",
1609
+ "Network",
1610
+ "Nev",
1611
+ "Nev.",
1612
+ "Nevada",
1613
+ "New",
1614
+ "New Hampshire",
1615
+ "New Jersey",
1616
+ "New Mexico",
1617
+ "New York",
1618
+ "NexInfo",
1619
+ "Next",
1620
+ "Nice",
1621
+ "No",
1622
+ "NoSQL",
1623
+ "Noise",
1624
+ "Non",
1625
+ "None",
1626
+ "Normally",
1627
+ "North Carolina",
1628
+ "North Dakota",
1629
+ "Not",
1630
+ "Nothin",
1631
+ "Nothin'",
1632
+ "Nothin\u2019",
1633
+ "Notice",
1634
+ "Nov",
1635
+ "Nov.",
1636
+ "November",
1637
+ "Numpy",
1638
+ "Nuthin",
1639
+ "Nuthin'",
1640
+ "Nuthin\u2019",
1641
+ "O",
1642
+ "O'clock",
1643
+ "O.O",
1644
+ "O.o",
1645
+ "OABCDE",
1646
+ "OAD",
1647
+ "OC2",
1648
+ "ODS",
1649
+ "OF",
1650
+ "OLE",
1651
+ "ONLY",
1652
+ "ONS",
1653
+ "OR",
1654
+ "ORS",
1655
+ "ORY",
1656
+ "OST",
1657
+ "OT",
1658
+ "OTE",
1659
+ "OTI",
1660
+ "OTI(DoITT",
1661
+ "OUT",
1662
+ "OVERSIGHT",
1663
+ "O_O",
1664
+ "O_o",
1665
+ "Objects",
1666
+ "Oct",
1667
+ "Oct.",
1668
+ "October",
1669
+ "Of",
1670
+ "Office",
1671
+ "Officer",
1672
+ "Okla",
1673
+ "Okla.",
1674
+ "Oklahoma",
1675
+ "Ol",
1676
+ "Ol'",
1677
+ "Ol\u2019",
1678
+ "On",
1679
+ "Ongoing",
1680
+ "Online",
1681
+ "Only",
1682
+ "Onsite",
1683
+ "Open",
1684
+ "Operational",
1685
+ "Operations",
1686
+ "Opportunity",
1687
+ "Ops",
1688
+ "Option",
1689
+ "Oracle",
1690
+ "Ore",
1691
+ "Ore.",
1692
+ "Oregon",
1693
+ "Organization",
1694
+ "Organizational",
1695
+ "Organizations",
1696
+ "Organize",
1697
+ "Organizing",
1698
+ "Orientation",
1699
+ "Oriented",
1700
+ "Orlando",
1701
+ "Other",
1702
+ "Ought",
1703
+ "Our",
1704
+ "Outlined",
1705
+ "Outlook",
1706
+ "Outstanding",
1707
+ "Oversee",
1708
+ "Oversees",
1709
+ "Overview",
1710
+ "Owns",
1711
+ "O\u2019clock",
1712
+ "P",
1713
+ "PA",
1714
+ "PAA",
1715
+ "PAE",
1716
+ "PAs",
1717
+ "PCO",
1718
+ "PIM",
1719
+ "PIs",
1720
+ "PL",
1721
+ "PLE",
1722
+ "PMC",
1723
+ "PMG",
1724
+ "PO",
1725
+ "POST",
1726
+ "POSTING",
1727
+ "POWER",
1728
+ "PREFERRED",
1729
+ "PRN",
1730
+ "PSS",
1731
+ "PTO",
1732
+ "Pa",
1733
+ "Pa.",
1734
+ "Paid",
1735
+ "Pandas",
1736
+ "Parental",
1737
+ "Parses",
1738
+ "Participate",
1739
+ "Participates",
1740
+ "Partner",
1741
+ "Partners",
1742
+ "Party",
1743
+ "Passion",
1744
+ "Passionate",
1745
+ "Patient",
1746
+ "Pattern",
1747
+ "Pay",
1748
+ "Payer",
1749
+ "Payment",
1750
+ "Payrolling",
1751
+ "Pennsylvania",
1752
+ "People",
1753
+ "Perform",
1754
+ "Performance",
1755
+ "Performs",
1756
+ "Permanent",
1757
+ "Ph",
1758
+ "Ph.D.",
1759
+ "Pharmaceutical",
1760
+ "Pharmacy",
1761
+ "Phenomic",
1762
+ "Phone",
1763
+ "Physical",
1764
+ "Physics",
1765
+ "Pig",
1766
+ "Pilgrim",
1767
+ "Pipelines",
1768
+ "Pivots",
1769
+ "Place",
1770
+ "Places",
1771
+ "Plan",
1772
+ "Plan(s",
1773
+ "Planner",
1774
+ "Planning",
1775
+ "Platform",
1776
+ "Play",
1777
+ "Please",
1778
+ "Ploty",
1779
+ "Plusses",
1780
+ "Point",
1781
+ "Point32Health",
1782
+ "Policies",
1783
+ "Policy",
1784
+ "Political",
1785
+ "Poly",
1786
+ "Portability",
1787
+ "Position",
1788
+ "Possess",
1789
+ "Posted",
1790
+ "Poster",
1791
+ "Postrgres",
1792
+ "Potential",
1793
+ "Power",
1794
+ "PowerBI",
1795
+ "PowerPoint",
1796
+ "Powered",
1797
+ "Powerpoint",
1798
+ "Practices",
1799
+ "Precedence",
1800
+ "Prefer",
1801
+ "Preferably",
1802
+ "Preferences",
1803
+ "Preferred",
1804
+ "Premium",
1805
+ "Prepare",
1806
+ "Prepares",
1807
+ "Preparing",
1808
+ "Present",
1809
+ "Previous",
1810
+ "Pricing",
1811
+ "Primarily",
1812
+ "Primary",
1813
+ "Prior",
1814
+ "Prioritize",
1815
+ "Privacy",
1816
+ "Private",
1817
+ "Proactively",
1818
+ "Problem",
1819
+ "Procedures",
1820
+ "Process",
1821
+ "Product",
1822
+ "Productivity",
1823
+ "Products",
1824
+ "Prof",
1825
+ "Prof.",
1826
+ "Professional",
1827
+ "Proficiency",
1828
+ "Proficient",
1829
+ "Profile",
1830
+ "Program",
1831
+ "Project",
1832
+ "Promote",
1833
+ "Proposes",
1834
+ "Prosperity",
1835
+ "Protected",
1836
+ "Proven",
1837
+ "Provide",
1838
+ "Provider",
1839
+ "Providers",
1840
+ "Provides",
1841
+ "Psychology",
1842
+ "Public",
1843
+ "Python",
1844
+ "Q",
1845
+ "Q1",
1846
+ "QA",
1847
+ "QAD",
1848
+ "QUALIFICATIONS",
1849
+ "Qlik",
1850
+ "Qlikview",
1851
+ "Qual",
1852
+ "Qualification",
1853
+ "Qualifications",
1854
+ "Quality",
1855
+ "Qualtrics",
1856
+ "Query",
1857
+ "Question(s",
1858
+ "QuickSight",
1859
+ "R",
1860
+ "R3543",
1861
+ "R5758",
1862
+ "RAD",
1863
+ "RDBMS",
1864
+ "RECEIVE",
1865
+ "RED",
1866
+ "REMOTE",
1867
+ "REQ",
1868
+ "REQUIREMENTS",
1869
+ "RESPONSIBILITIES",
1870
+ "RESUME",
1871
+ "RGs",
1872
+ "ROLE",
1873
+ "ROOT",
1874
+ "RPs",
1875
+ "RTH",
1876
+ "RUM",
1877
+ "Ramachandran",
1878
+ "Range",
1879
+ "Rapid",
1880
+ "Rating",
1881
+ "Reaching",
1882
+ "React",
1883
+ "Ready",
1884
+ "Reasonable",
1885
+ "Recent",
1886
+ "Recognition",
1887
+ "Recognitions",
1888
+ "Recruiter",
1889
+ "Recruiting",
1890
+ "Referral",
1891
+ "Reform",
1892
+ "Regards",
1893
+ "Registry",
1894
+ "Related",
1895
+ "Release",
1896
+ "Relevant",
1897
+ "Relocation",
1898
+ "Remain",
1899
+ "Remote",
1900
+ "Rep",
1901
+ "Rep.",
1902
+ "Report",
1903
+ "Reporting",
1904
+ "Repos",
1905
+ "Represent",
1906
+ "Req",
1907
+ "Required",
1908
+ "Requirement",
1909
+ "Requirements",
1910
+ "Requires",
1911
+ "Research",
1912
+ "Reserves",
1913
+ "Residency",
1914
+ "Resource",
1915
+ "Resourcefulness",
1916
+ "Resources",
1917
+ "Responds",
1918
+ "Responsibilities",
1919
+ "ResponsibilitiesMaintains",
1920
+ "Responsibility",
1921
+ "Responsible",
1922
+ "ResultsSM",
1923
+ "Retail",
1924
+ "Retirement",
1925
+ "Rev",
1926
+ "Rev.",
1927
+ "Review",
1928
+ "Reviews",
1929
+ "Rights",
1930
+ "Risk",
1931
+ "River",
1932
+ "Riverside",
1933
+ "Robust",
1934
+ "Rochester",
1935
+ "Role",
1936
+ "Room",
1937
+ "S",
1938
+ "S.",
1939
+ "S.C.",
1940
+ "SA",
1941
+ "SAP",
1942
+ "SAS",
1943
+ "SAVINGS",
1944
+ "SCAM",
1945
+ "SCHEDULE",
1946
+ "SCI",
1947
+ "SCIF",
1948
+ "SCMPRIMARY",
1949
+ "SCRUM",
1950
+ "SDG",
1951
+ "SDLC",
1952
+ "SE",
1953
+ "SES",
1954
+ "SF",
1955
+ "SHIFT",
1956
+ "SIA",
1957
+ "SIMPLE",
1958
+ "SIS",
1959
+ "SKILLS",
1960
+ "SLAs",
1961
+ "SME",
1962
+ "SMS",
1963
+ "SOA",
1964
+ "SOC2",
1965
+ "SOP",
1966
+ "SPSS",
1967
+ "SQL",
1968
+ "SRS",
1969
+ "SSIS",
1970
+ "SSMS",
1971
+ "SSRS",
1972
+ "STEM",
1973
+ "STT",
1974
+ "SUBJECT",
1975
+ "SUBMISSION",
1976
+ "SUCCESS",
1977
+ "SUMMARY",
1978
+ "SUPERVISORY",
1979
+ "Safety",
1980
+ "Salary",
1981
+ "Salesforce",
1982
+ "Sam",
1983
+ "San",
1984
+ "Sanctions",
1985
+ "Saudi",
1986
+ "Scala",
1987
+ "Schedule",
1988
+ "Scheduled",
1989
+ "Scholarships",
1990
+ "School",
1991
+ "Sci",
1992
+ "Science",
1993
+ "Sciences",
1994
+ "Scientific",
1995
+ "Scientist",
1996
+ "Scientists",
1997
+ "Scikit",
1998
+ "Scipy",
1999
+ "Scope",
2000
+ "Scripting",
2001
+ "Scrum",
2002
+ "Security",
2003
+ "Seeking",
2004
+ "Segment",
2005
+ "Self",
2006
+ "Sen",
2007
+ "Sen.",
2008
+ "Senior",
2009
+ "Sep",
2010
+ "Sep.",
2011
+ "Sept",
2012
+ "Sept.",
2013
+ "September",
2014
+ "Servant",
2015
+ "Serve",
2016
+ "Server",
2017
+ "Serves",
2018
+ "Service",
2019
+ "Services",
2020
+ "Serving",
2021
+ "Set",
2022
+ "Sexual",
2023
+ "Sha",
2024
+ "Share",
2025
+ "SharePoint",
2026
+ "Sharepoint",
2027
+ "Shares",
2028
+ "She",
2029
+ "She's",
2030
+ "She\u2019s",
2031
+ "Shift",
2032
+ "Short",
2033
+ "Should",
2034
+ "Significant",
2035
+ "Similar",
2036
+ "Since",
2037
+ "Singapore",
2038
+ "Skills",
2039
+ "Snowflake",
2040
+ "Social",
2041
+ "Soft Skills",
2042
+ "Software",
2043
+ "Solid",
2044
+ "Solution",
2045
+ "Solutions",
2046
+ "Some",
2047
+ "Somethin",
2048
+ "Somethin'",
2049
+ "Somethin\u2019",
2050
+ "Source",
2051
+ "South Carolina",
2052
+ "Spanish",
2053
+ "Spark",
2054
+ "Specifications",
2055
+ "Sponsors",
2056
+ "Spotfire",
2057
+ "Sr",
2058
+ "St",
2059
+ "St.",
2060
+ "Staff",
2061
+ "Staffigo",
2062
+ "Staffing",
2063
+ "Stage",
2064
+ "Stakeholder",
2065
+ "Stakeholders",
2066
+ "Standards",
2067
+ "Star",
2068
+ "Stars",
2069
+ "Start",
2070
+ "State",
2071
+ "Statement",
2072
+ "States",
2073
+ "Statistical",
2074
+ "Statistics",
2075
+ "Step",
2076
+ "Store",
2077
+ "Straight",
2078
+ "Strategic",
2079
+ "Strategy",
2080
+ "Strong",
2081
+ "Studio",
2082
+ "Submit",
2083
+ "Substitution",
2084
+ "Successful",
2085
+ "Suite",
2086
+ "Suites",
2087
+ "Summary",
2088
+ "Superior",
2089
+ "Supplement",
2090
+ "Supplier",
2091
+ "Supply",
2092
+ "Support",
2093
+ "Supporting",
2094
+ "Supports",
2095
+ "Surge",
2096
+ "Surprise",
2097
+ "Survey",
2098
+ "Sys",
2099
+ "System",
2100
+ "Systems",
2101
+ "T",
2102
+ "TC2",
2103
+ "TEE",
2104
+ "TEM",
2105
+ "TES",
2106
+ "THAT",
2107
+ "TIL",
2108
+ "TITLE",
2109
+ "TLE",
2110
+ "TML",
2111
+ "TO",
2112
+ "TOAD",
2113
+ "TON",
2114
+ "TPAs",
2115
+ "TQ+",
2116
+ "TQB",
2117
+ "TS",
2118
+ "Tableau",
2119
+ "Take",
2120
+ "Talend",
2121
+ "Talent",
2122
+ "TalentBoost",
2123
+ "Talentify",
2124
+ "Target",
2125
+ "Targeting",
2126
+ "Tax",
2127
+ "Team",
2128
+ "Teams",
2129
+ "Tech",
2130
+ "Technical",
2131
+ "Technically",
2132
+ "Technology",
2133
+ "Technology-",
2134
+ "Tempe",
2135
+ "Tenn",
2136
+ "Tenn.",
2137
+ "Tennessee",
2138
+ "Teradata",
2139
+ "Term",
2140
+ "Test",
2141
+ "Testing",
2142
+ "Text",
2143
+ "Thanks",
2144
+ "That",
2145
+ "That's",
2146
+ "That\u2019s",
2147
+ "The",
2148
+ "There",
2149
+ "There's",
2150
+ "There\u2019s",
2151
+ "These",
2152
+ "They",
2153
+ "Thief",
2154
+ "Things",
2155
+ "Thinker",
2156
+ "Thinking",
2157
+ "Third",
2158
+ "This",
2159
+ "This's",
2160
+ "This\u2019s",
2161
+ "Those",
2162
+ "Through",
2163
+ "Ties",
2164
+ "Time",
2165
+ "Title",
2166
+ "To",
2167
+ "Together",
2168
+ "Tool",
2169
+ "Tools",
2170
+ "Tools and Technologies",
2171
+ "Top",
2172
+ "Tosca",
2173
+ "Track",
2174
+ "Train",
2175
+ "Traits",
2176
+ "Transform",
2177
+ "Transformation",
2178
+ "Translate",
2179
+ "Translates",
2180
+ "Transparency",
2181
+ "Travel",
2182
+ "Triple",
2183
+ "Trust",
2184
+ "Tufts",
2185
+ "Tuition",
2186
+ "Turn",
2187
+ "Type",
2188
+ "Typically",
2189
+ "Tyson",
2190
+ "U",
2191
+ "U.S.",
2192
+ "UAT",
2193
+ "ULE",
2194
+ "UME",
2195
+ "UNTIL",
2196
+ "US",
2197
+ "USA",
2198
+ "USD",
2199
+ "UST",
2200
+ "UX",
2201
+ "Under",
2202
+ "Undergraduate",
2203
+ "Understand",
2204
+ "Understanding",
2205
+ "Union",
2206
+ "Unit",
2207
+ "United",
2208
+ "Us",
2209
+ "Use",
2210
+ "User",
2211
+ "Uses",
2212
+ "Using",
2213
+ "Usually",
2214
+ "Utah",
2215
+ "Utilize",
2216
+ "Utilizes",
2217
+ "V",
2218
+ "V.V",
2219
+ "VA",
2220
+ "VAL",
2221
+ "VATICA",
2222
+ "VBA",
2223
+ "VBC",
2224
+ "VHN",
2225
+ "VID",
2226
+ "V_V",
2227
+ "Va",
2228
+ "Va.",
2229
+ "Validation",
2230
+ "Value",
2231
+ "Values",
2232
+ "Various",
2233
+ "Vatica",
2234
+ "Verbal",
2235
+ "Verification",
2236
+ "Verify",
2237
+ "Veteran",
2238
+ "Veterans",
2239
+ "Virginia",
2240
+ "Visa",
2241
+ "Vision",
2242
+ "Visit",
2243
+ "Visual",
2244
+ "Visualization",
2245
+ "Visualizations",
2246
+ "Voice",
2247
+ "W",
2248
+ "W2",
2249
+ "WALTON",
2250
+ "WELL",
2251
+ "WER",
2252
+ "WFH",
2253
+ "WILL",
2254
+ "WIM",
2255
+ "WIN",
2256
+ "WORKING",
2257
+ "Walmart",
2258
+ "Walton",
2259
+ "Warehouse",
2260
+ "Warehousing",
2261
+ "Warm",
2262
+ "Was",
2263
+ "Wash",
2264
+ "Wash.",
2265
+ "Washington",
2266
+ "Waterfall",
2267
+ "Ways",
2268
+ "We",
2269
+ "Web",
2270
+ "Webi",
2271
+ "Weekly",
2272
+ "Weight",
2273
+ "Were",
2274
+ "What",
2275
+ "What's",
2276
+ "What\u2019s",
2277
+ "When",
2278
+ "When's",
2279
+ "When\u2019s",
2280
+ "Where",
2281
+ "Where's",
2282
+ "Where\u2019s",
2283
+ "While",
2284
+ "Who",
2285
+ "Who's",
2286
+ "Who\u2019s",
2287
+ "Why",
2288
+ "Why's",
2289
+ "Why\u2019s",
2290
+ "Will",
2291
+ "Win",
2292
+ "Wis",
2293
+ "Wis.",
2294
+ "Wisconsin",
2295
+ "With",
2296
+ "Wo",
2297
+ "Women",
2298
+ "Word",
2299
+ "Work",
2300
+ "Workday",
2301
+ "Workforce",
2302
+ "Workfront",
2303
+ "Working",
2304
+ "Workplaces",
2305
+ "Works",
2306
+ "World",
2307
+ "Would",
2308
+ "Write",
2309
+ "X&X",
2310
+ "X'x",
2311
+ "X'xxxx",
2312
+ "X++",
2313
+ "X.",
2314
+ "X.X",
2315
+ "X.X.",
2316
+ "X.x",
2317
+ "X.x.",
2318
+ "XD",
2319
+ "XDD",
2320
+ "XML",
2321
+ "XX",
2322
+ "XXX",
2323
+ "XXX&X",
2324
+ "XXX(XxXXX",
2325
+ "XXXX",
2326
+ "XXXX+",
2327
+ "XXXX+Xxxxx",
2328
+ "XXXX-dd",
2329
+ "XXXXx",
2330
+ "XXXXxxx",
2331
+ "XXXd",
2332
+ "XXXx",
2333
+ "XXXxx",
2334
+ "XXXxxxx",
2335
+ "XXXxxxx@xxxx.xxx",
2336
+ "XXd",
2337
+ "XXx",
2338
+ "XXxxxx",
2339
+ "X_X",
2340
+ "X_x",
2341
+ "Xd",
2342
+ "XdX",
2343
+ "XdX.",
2344
+ "XdXX",
2345
+ "Xdddd",
2346
+ "Xdx",
2347
+ "Xx",
2348
+ "Xx'",
2349
+ "Xx'x",
2350
+ "Xx'xx",
2351
+ "Xx.",
2352
+ "Xx.X.",
2353
+ "XxXXX",
2354
+ "Xxx",
2355
+ "Xxx Xxxxx",
2356
+ "Xxx'x",
2357
+ "Xxx.",
2358
+ "XxxXxx",
2359
+ "XxxXxxx",
2360
+ "XxxXxxxXxx",
2361
+ "XxxXxxxx",
2362
+ "Xxxx",
2363
+ "Xxxx Xxxxx",
2364
+ "Xxxx'",
2365
+ "Xxxx'x",
2366
+ "Xxxx(x",
2367
+ "Xxxx.",
2368
+ "XxxxXX",
2369
+ "XxxxXxx",
2370
+ "XxxxXxxx",
2371
+ "XxxxXxxxx",
2372
+ "Xxxxx",
2373
+ "Xxxxx xxx Xxxxx",
2374
+ "Xxxxx'",
2375
+ "Xxxxx'x",
2376
+ "Xxxxx(x",
2377
+ "Xxxxx-",
2378
+ "Xxxxx.",
2379
+ "XxxxxXX",
2380
+ "XxxxxXx",
2381
+ "XxxxxXxxx",
2382
+ "XxxxxXxxxx",
2383
+ "XxxxxddXxxxx",
2384
+ "Xxxxx\u2019",
2385
+ "Xxxxx\u2019x",
2386
+ "Xxxx\u2019",
2387
+ "Xxxx\u2019x",
2388
+ "Xxx\u2019x",
2389
+ "Xx\u2019",
2390
+ "Xx\u2019x",
2391
+ "Xx\u2019xx",
2392
+ "X\u2019x",
2393
+ "X\u2019xxxx",
2394
+ "Y",
2395
+ "YOU",
2396
+ "YST",
2397
+ "Years",
2398
+ "Yes",
2399
+ "York",
2400
+ "You",
2401
+ "Your",
2402
+ "Yr",
2403
+ "Z",
2404
+ "Zelis",
2405
+ "[",
2406
+ "[-:",
2407
+ "[:",
2408
+ "[=",
2409
+ "\\",
2410
+ "\\\")",
2411
+ "\\n",
2412
+ "\\t",
2413
+ "\\x",
2414
+ "]",
2415
+ "]=",
2416
+ "^",
2417
+ "^_^",
2418
+ "^__^",
2419
+ "^___^",
2420
+ "_*)",
2421
+ "_-)",
2422
+ "_.)",
2423
+ "_<)",
2424
+ "_^)",
2425
+ "__-",
2426
+ "__^",
2427
+ "_\u00ac)",
2428
+ "_\u0ca0)",
2429
+ "a",
2430
+ "a&c",
2431
+ "a(s",
2432
+ "a.",
2433
+ "a.m",
2434
+ "a.m.",
2435
+ "aa",
2436
+ "abdul",
2437
+ "abide",
2438
+ "abilities",
2439
+ "ability",
2440
+ "able",
2441
+ "about",
2442
+ "above",
2443
+ "absorb",
2444
+ "abstract",
2445
+ "abstractly",
2446
+ "aca",
2447
+ "academic",
2448
+ "accelerate",
2449
+ "accept",
2450
+ "acceptance",
2451
+ "accepting",
2452
+ "accepts",
2453
+ "access",
2454
+ "accessibility",
2455
+ "accessible",
2456
+ "accidents",
2457
+ "accommodate",
2458
+ "accommodation",
2459
+ "accommodations",
2460
+ "accomplish",
2461
+ "accomplished",
2462
+ "accomplishments",
2463
+ "accordance",
2464
+ "according",
2465
+ "account",
2466
+ "accountabilities",
2467
+ "accountability",
2468
+ "accountable",
2469
+ "accounting",
2470
+ "accounts",
2471
+ "accredited",
2472
+ "accuracy",
2473
+ "accurate",
2474
+ "accurately",
2475
+ "acda",
2476
+ "ace",
2477
+ "ach",
2478
+ "achieve",
2479
+ "achievement",
2480
+ "achievements",
2481
+ "achieving",
2482
+ "ack",
2483
+ "aco",
2484
+ "acquire",
2485
+ "acquired",
2486
+ "acquisition",
2487
+ "across",
2488
+ "acs",
2489
+ "act",
2490
+ "acting",
2491
+ "action",
2492
+ "action(s",
2493
+ "actionable",
2494
+ "actions",
2495
+ "active",
2496
+ "actively",
2497
+ "activities",
2498
+ "activity",
2499
+ "actors",
2500
+ "acts",
2501
+ "actual",
2502
+ "actuary",
2503
+ "acumen",
2504
+ "acy",
2505
+ "ad",
2506
+ "ada",
2507
+ "adapt",
2508
+ "adapting",
2509
+ "adaptive",
2510
+ "add",
2511
+ "addition",
2512
+ "additional",
2513
+ "additionally",
2514
+ "additions",
2515
+ "address",
2516
+ "ade",
2517
+ "adept",
2518
+ "adequate",
2519
+ "adf",
2520
+ "adherence",
2521
+ "adheres",
2522
+ "adient",
2523
+ "adjudication",
2524
+ "adjust",
2525
+ "adjustment",
2526
+ "adjustments",
2527
+ "adm",
2528
+ "adm.",
2529
+ "administers",
2530
+ "administration",
2531
+ "administrative",
2532
+ "administrators",
2533
+ "ado",
2534
+ "adoption",
2535
+ "adopts",
2536
+ "ads",
2537
+ "adsi",
2538
+ "advance",
2539
+ "advanced",
2540
+ "advancement",
2541
+ "advancement-",
2542
+ "advantage",
2543
+ "advantages",
2544
+ "adventurous",
2545
+ "adversely",
2546
+ "advice",
2547
+ "advises",
2548
+ "advisor",
2549
+ "advisory",
2550
+ "ady",
2551
+ "afb",
2552
+ "afe",
2553
+ "aff",
2554
+ "affairs",
2555
+ "affect",
2556
+ "affiliated",
2557
+ "affiliates",
2558
+ "affirmative",
2559
+ "affordable",
2560
+ "aft",
2561
+ "after",
2562
+ "against",
2563
+ "age",
2564
+ "agencies",
2565
+ "agency",
2566
+ "aggregate",
2567
+ "aggregating",
2568
+ "aggressively",
2569
+ "agile",
2570
+ "aging",
2571
+ "agnostic",
2572
+ "ago",
2573
+ "ai",
2574
+ "aid",
2575
+ "ail",
2576
+ "aim",
2577
+ "ain",
2578
+ "ak",
2579
+ "ak.",
2580
+ "ake",
2581
+ "ala",
2582
+ "ala.",
2583
+ "alation",
2584
+ "ale",
2585
+ "alert",
2586
+ "alerts",
2587
+ "alf",
2588
+ "algorithms",
2589
+ "align",
2590
+ "aligned",
2591
+ "aligning",
2592
+ "alignment",
2593
+ "aligns",
2594
+ "alk",
2595
+ "all",
2596
+ "allocations",
2597
+ "allow",
2598
+ "allowing",
2599
+ "allows",
2600
+ "almost",
2601
+ "along",
2602
+ "als",
2603
+ "also",
2604
+ "altered",
2605
+ "alternatively",
2606
+ "alteryx",
2607
+ "always",
2608
+ "am",
2609
+ "amadea",
2610
+ "amazing",
2611
+ "ambiguous",
2612
+ "ambitious",
2613
+ "ame",
2614
+ "amentum",
2615
+ "america",
2616
+ "amnesty",
2617
+ "among",
2618
+ "amount",
2619
+ "amounts",
2620
+ "amplitude",
2621
+ "ams",
2622
+ "an",
2623
+ "an.",
2624
+ "ana",
2625
+ "analys",
2626
+ "analyses",
2627
+ "analysing",
2628
+ "analysis",
2629
+ "analysis(for",
2630
+ "analyst",
2631
+ "analysts",
2632
+ "analytic",
2633
+ "analytical",
2634
+ "analytics",
2635
+ "analyze",
2636
+ "analyzes",
2637
+ "analyzing",
2638
+ "ancestry",
2639
+ "and",
2640
+ "and/or",
2641
+ "ank",
2642
+ "annual",
2643
+ "annualized",
2644
+ "annually",
2645
+ "another",
2646
+ "ans",
2647
+ "answer",
2648
+ "answering",
2649
+ "ant",
2650
+ "anticipate",
2651
+ "anticipates",
2652
+ "any",
2653
+ "anyone",
2654
+ "anywhere",
2655
+ "apache",
2656
+ "ape",
2657
+ "apics",
2658
+ "appealing",
2659
+ "appearance",
2660
+ "applicability",
2661
+ "applicable",
2662
+ "applicant",
2663
+ "applicants",
2664
+ "application",
2665
+ "applications",
2666
+ "applied",
2667
+ "applies",
2668
+ "apply",
2669
+ "applying",
2670
+ "appointment",
2671
+ "appointments",
2672
+ "approach",
2673
+ "approach(es",
2674
+ "approaches",
2675
+ "appropriate",
2676
+ "appropriately",
2677
+ "approval",
2678
+ "approved",
2679
+ "approximately",
2680
+ "apps",
2681
+ "appsflyer",
2682
+ "apr",
2683
+ "apr.",
2684
+ "april",
2685
+ "aps",
2686
+ "apt",
2687
+ "aptitude",
2688
+ "ar",
2689
+ "ar.",
2690
+ "arabia",
2691
+ "architect",
2692
+ "architecting",
2693
+ "architects",
2694
+ "architecture",
2695
+ "architectures",
2696
+ "ard",
2697
+ "are",
2698
+ "area",
2699
+ "area(s",
2700
+ "areas",
2701
+ "areasResponsible",
2702
+ "areasresponsible",
2703
+ "arena",
2704
+ "arguments",
2705
+ "ari",
2706
+ "arise",
2707
+ "ariz",
2708
+ "ariz.",
2709
+ "ark",
2710
+ "ark.",
2711
+ "arm",
2712
+ "arn",
2713
+ "around",
2714
+ "arrangements",
2715
+ "ars",
2716
+ "art",
2717
+ "articulate",
2718
+ "artifact",
2719
+ "artificial",
2720
+ "arts",
2721
+ "ary",
2722
+ "as",
2723
+ "ascension",
2724
+ "ascent",
2725
+ "ase",
2726
+ "ash",
2727
+ "ask",
2728
+ "asked",
2729
+ "aspect",
2730
+ "aspects",
2731
+ "aspiration",
2732
+ "ass",
2733
+ "assess",
2734
+ "assessing",
2735
+ "assessment",
2736
+ "assessments",
2737
+ "asset",
2738
+ "assets",
2739
+ "assign",
2740
+ "assigned",
2741
+ "assignments",
2742
+ "assist",
2743
+ "assistance",
2744
+ "assistants",
2745
+ "assisting",
2746
+ "assists",
2747
+ "associate",
2748
+ "associated",
2749
+ "associates",
2750
+ "association",
2751
+ "assurance",
2752
+ "assure",
2753
+ "ast",
2754
+ "asy",
2755
+ "at",
2756
+ "ata",
2757
+ "ate",
2758
+ "ath",
2759
+ "atmosphere",
2760
+ "ats",
2761
+ "attendance",
2762
+ "attention",
2763
+ "attitude",
2764
+ "attn",
2765
+ "attribute",
2766
+ "attributes",
2767
+ "attrition",
2768
+ "audience",
2769
+ "audience(s",
2770
+ "audiences",
2771
+ "audiences-",
2772
+ "audit",
2773
+ "auditing",
2774
+ "auditor",
2775
+ "audits",
2776
+ "aug",
2777
+ "aug.",
2778
+ "augmentation",
2779
+ "august",
2780
+ "australia",
2781
+ "authentic",
2782
+ "authority",
2783
+ "authorized",
2784
+ "automa",
2785
+ "automate",
2786
+ "automated",
2787
+ "automates",
2788
+ "automation",
2789
+ "automotive",
2790
+ "autonomy",
2791
+ "ava",
2792
+ "availability",
2793
+ "available",
2794
+ "ave",
2795
+ "award",
2796
+ "awarded",
2797
+ "awards",
2798
+ "aware",
2799
+ "awareness",
2800
+ "away",
2801
+ "aws",
2802
+ "ays",
2803
+ "azure",
2804
+ "b",
2805
+ "b.",
2806
+ "b.e",
2807
+ "ba",
2808
+ "baccalaureate",
2809
+ "bach",
2810
+ "bachelor",
2811
+ "bachelors",
2812
+ "bachelor\u2019s",
2813
+ "back",
2814
+ "backfill",
2815
+ "background",
2816
+ "backgrounds",
2817
+ "backlog",
2818
+ "backup",
2819
+ "bal",
2820
+ "balance",
2821
+ "ban",
2822
+ "band",
2823
+ "bank",
2824
+ "banking",
2825
+ "bari",
2826
+ "barriers",
2827
+ "base",
2828
+ "based",
2829
+ "baselines",
2830
+ "basic",
2831
+ "basis",
2832
+ "bay",
2833
+ "bcbs",
2834
+ "be",
2835
+ "because",
2836
+ "become",
2837
+ "bed",
2838
+ "been",
2839
+ "before",
2840
+ "begin",
2841
+ "beginning",
2842
+ "behalf",
2843
+ "behavior",
2844
+ "behavioral",
2845
+ "behind",
2846
+ "being",
2847
+ "beliefs",
2848
+ "believe",
2849
+ "believed",
2850
+ "below",
2851
+ "benchmark",
2852
+ "benchmarking",
2853
+ "benchmarks",
2854
+ "benefit",
2855
+ "benefits",
2856
+ "bentonville",
2857
+ "ber",
2858
+ "bes",
2859
+ "best",
2860
+ "better",
2861
+ "between",
2862
+ "beyond",
2863
+ "bi",
2864
+ "bia",
2865
+ "bibliography",
2866
+ "big",
2867
+ "bigquery",
2868
+ "billing",
2869
+ "birst",
2870
+ "bit",
2871
+ "ble",
2872
+ "blend",
2873
+ "block",
2874
+ "bluewave",
2875
+ "bly",
2876
+ "bms",
2877
+ "bn",
2878
+ "boards",
2879
+ "bodies",
2880
+ "body",
2881
+ "bom",
2882
+ "bon",
2883
+ "bonus",
2884
+ "bonuses",
2885
+ "bos",
2886
+ "both",
2887
+ "boulevard",
2888
+ "boundaries",
2889
+ "bout",
2890
+ "box",
2891
+ "boxes",
2892
+ "br.",
2893
+ "branch",
2894
+ "brands",
2895
+ "brd",
2896
+ "brief",
2897
+ "bring",
2898
+ "bringing",
2899
+ "brings",
2900
+ "broad",
2901
+ "broadband",
2902
+ "broader",
2903
+ "broadest",
2904
+ "broadly",
2905
+ "brooklyn",
2906
+ "bros",
2907
+ "bros.",
2908
+ "bs",
2909
+ "bsc",
2910
+ "buddy",
2911
+ "budget",
2912
+ "build",
2913
+ "builder",
2914
+ "building",
2915
+ "builds",
2916
+ "bulk",
2917
+ "business",
2918
+ "businesses",
2919
+ "but",
2920
+ "buy",
2921
+ "by",
2922
+ "c",
2923
+ "c'm",
2924
+ "c++",
2925
+ "c.",
2926
+ "c2c.",
2927
+ "c2h",
2928
+ "c2ie",
2929
+ "ca",
2930
+ "cal",
2931
+ "calculations",
2932
+ "calif",
2933
+ "calif.",
2934
+ "california",
2935
+ "call",
2936
+ "calls",
2937
+ "cam",
2938
+ "campaign",
2939
+ "campaigns",
2940
+ "can",
2941
+ "canada",
2942
+ "cancelled",
2943
+ "candidate",
2944
+ "candidates",
2945
+ "cap",
2946
+ "capabilities",
2947
+ "capability",
2948
+ "capable",
2949
+ "capacity",
2950
+ "capitalizing",
2951
+ "capture",
2952
+ "captured",
2953
+ "capturing",
2954
+ "carbon",
2955
+ "card",
2956
+ "cardholder",
2957
+ "care",
2958
+ "career",
2959
+ "careers",
2960
+ "caregiver",
2961
+ "caregivers",
2962
+ "caresource",
2963
+ "carrier",
2964
+ "carrying",
2965
+ "case",
2966
+ "cases",
2967
+ "caste",
2968
+ "catalog",
2969
+ "cataloging",
2970
+ "catalogue",
2971
+ "categories",
2972
+ "category",
2973
+ "cause",
2974
+ "caused",
2975
+ "cbs",
2976
+ "ccpa",
2977
+ "cd",
2978
+ "cda",
2979
+ "cde",
2980
+ "cdp",
2981
+ "ce>",
2982
+ "ced",
2983
+ "cei",
2984
+ "cel",
2985
+ "cell",
2986
+ "center",
2987
+ "centered",
2988
+ "centers",
2989
+ "centerwell",
2990
+ "centralized",
2991
+ "cer",
2992
+ "certain",
2993
+ "certificate",
2994
+ "certificates",
2995
+ "certification",
2996
+ "certifications",
2997
+ "certified",
2998
+ "ces",
2999
+ "cfe",
3000
+ "ch.",
3001
+ "chain",
3002
+ "chakraborty",
3003
+ "challenge",
3004
+ "challenges",
3005
+ "challenging",
3006
+ "champion",
3007
+ "change",
3008
+ "changed",
3009
+ "changes",
3010
+ "changing",
3011
+ "channel",
3012
+ "channels",
3013
+ "character",
3014
+ "characteristic",
3015
+ "characteristics",
3016
+ "charge",
3017
+ "charged",
3018
+ "charges",
3019
+ "charity",
3020
+ "charts",
3021
+ "chase",
3022
+ "che",
3023
+ "check",
3024
+ "cheer",
3025
+ "chemicals",
3026
+ "chief",
3027
+ "childcare",
3028
+ "choice",
3029
+ "chronic",
3030
+ "chy",
3031
+ "ci",
3032
+ "cia",
3033
+ "cif",
3034
+ "cil",
3035
+ "circumstances",
3036
+ "cisa",
3037
+ "cit",
3038
+ "citi",
3039
+ "citizens",
3040
+ "citizenship",
3041
+ "city",
3042
+ "citywide",
3043
+ "civil",
3044
+ "civilian",
3045
+ "cks",
3046
+ "claim",
3047
+ "claims",
3048
+ "clarify",
3049
+ "clarity",
3050
+ "class",
3051
+ "classifying",
3052
+ "cle",
3053
+ "clean",
3054
+ "cleaning",
3055
+ "cleansing",
3056
+ "cleantech",
3057
+ "cleanup",
3058
+ "clear",
3059
+ "clearance",
3060
+ "clearinghouses",
3061
+ "clearly",
3062
+ "clearlyrated",
3063
+ "click",
3064
+ "client",
3065
+ "clients",
3066
+ "clinic",
3067
+ "clinical",
3068
+ "close",
3069
+ "closed",
3070
+ "closely",
3071
+ "closer",
3072
+ "closing",
3073
+ "closure",
3074
+ "cloud",
3075
+ "cloudera",
3076
+ "club",
3077
+ "clubs",
3078
+ "cms",
3079
+ "co",
3080
+ "co.",
3081
+ "coach",
3082
+ "coaching",
3083
+ "code",
3084
+ "coders",
3085
+ "coding",
3086
+ "cognitive",
3087
+ "cognos",
3088
+ "collaborate",
3089
+ "collaborates",
3090
+ "collaborating",
3091
+ "collaboration",
3092
+ "collaborative",
3093
+ "collaboratively",
3094
+ "collaborators",
3095
+ "colleagues",
3096
+ "collect",
3097
+ "collected",
3098
+ "collecting",
3099
+ "collection",
3100
+ "collectively",
3101
+ "collects",
3102
+ "college",
3103
+ "colo",
3104
+ "colo.",
3105
+ "color",
3106
+ "com",
3107
+ "combatant",
3108
+ "combination",
3109
+ "combined",
3110
+ "come",
3111
+ "comes",
3112
+ "comfortable",
3113
+ "coming",
3114
+ "command",
3115
+ "commensurate",
3116
+ "commerce",
3117
+ "commercial",
3118
+ "commitment",
3119
+ "committed",
3120
+ "committees",
3121
+ "committing",
3122
+ "commodities",
3123
+ "common",
3124
+ "comms",
3125
+ "commstech",
3126
+ "communicate",
3127
+ "communicated",
3128
+ "communicates",
3129
+ "communicating",
3130
+ "communication",
3131
+ "communications",
3132
+ "communicative",
3133
+ "communicator",
3134
+ "communities",
3135
+ "community",
3136
+ "comp",
3137
+ "companies",
3138
+ "company",
3139
+ "companys",
3140
+ "comparative",
3141
+ "comparing",
3142
+ "comparison",
3143
+ "comparisons",
3144
+ "compelling",
3145
+ "compensation",
3146
+ "competence",
3147
+ "competencies",
3148
+ "competing",
3149
+ "competitive",
3150
+ "competitors",
3151
+ "compilation",
3152
+ "compile",
3153
+ "compiles",
3154
+ "complement",
3155
+ "complete",
3156
+ "completed",
3157
+ "completeness",
3158
+ "completing",
3159
+ "completion",
3160
+ "complex",
3161
+ "complexity",
3162
+ "compliance",
3163
+ "compliant",
3164
+ "complicated",
3165
+ "complies",
3166
+ "comply",
3167
+ "component",
3168
+ "components",
3169
+ "comprehend",
3170
+ "comprehensible",
3171
+ "comprehensive",
3172
+ "computer",
3173
+ "computers",
3174
+ "computes",
3175
+ "computing",
3176
+ "concepts",
3177
+ "conceptual",
3178
+ "conceptualize",
3179
+ "concerns",
3180
+ "concise",
3181
+ "conclusions",
3182
+ "concrete",
3183
+ "concurrent",
3184
+ "condition",
3185
+ "conditions",
3186
+ "conduct",
3187
+ "conducting",
3188
+ "conducts",
3189
+ "conduit",
3190
+ "conference",
3191
+ "confidence",
3192
+ "confident",
3193
+ "confidential",
3194
+ "confidentiality",
3195
+ "confidently",
3196
+ "configuration",
3197
+ "configure",
3198
+ "confirms",
3199
+ "conflict",
3200
+ "conflicts",
3201
+ "confluence",
3202
+ "conjoint",
3203
+ "conjunction",
3204
+ "conn",
3205
+ "conn.",
3206
+ "connect",
3207
+ "connecting",
3208
+ "connection",
3209
+ "connections",
3210
+ "connectivity",
3211
+ "conscientious",
3212
+ "consecutive",
3213
+ "consensus",
3214
+ "consider",
3215
+ "consideration",
3216
+ "considerations",
3217
+ "considered",
3218
+ "considers",
3219
+ "consistent",
3220
+ "consistently",
3221
+ "console",
3222
+ "consolidate",
3223
+ "consolidated",
3224
+ "constantly",
3225
+ "construct",
3226
+ "consult",
3227
+ "consultancy",
3228
+ "consultant",
3229
+ "consultants",
3230
+ "consultation",
3231
+ "consulting",
3232
+ "consults",
3233
+ "consume",
3234
+ "consumer",
3235
+ "consumers",
3236
+ "consumption",
3237
+ "contact",
3238
+ "contacted",
3239
+ "contacting",
3240
+ "contain",
3241
+ "contains",
3242
+ "content",
3243
+ "context",
3244
+ "contingency",
3245
+ "continue",
3246
+ "continued",
3247
+ "continuing",
3248
+ "continuous",
3249
+ "continuously",
3250
+ "contract",
3251
+ "contracted",
3252
+ "contractors",
3253
+ "contracts",
3254
+ "contribute",
3255
+ "contributes",
3256
+ "contributing",
3257
+ "contribution",
3258
+ "contributions",
3259
+ "contributor",
3260
+ "control",
3261
+ "controls",
3262
+ "controversial",
3263
+ "conventional",
3264
+ "conversations",
3265
+ "conversion",
3266
+ "converting",
3267
+ "converts",
3268
+ "convey",
3269
+ "conveys",
3270
+ "coordinate",
3271
+ "coordinates",
3272
+ "copy",
3273
+ "cor",
3274
+ "core",
3275
+ "corp",
3276
+ "corp.",
3277
+ "corporate",
3278
+ "corporation",
3279
+ "corrected",
3280
+ "correctedResponsible",
3281
+ "correctedresponsible",
3282
+ "correcting",
3283
+ "corrections",
3284
+ "corrective",
3285
+ "corrects",
3286
+ "correlation",
3287
+ "correlations",
3288
+ "correspondence",
3289
+ "corrupt",
3290
+ "corruption",
3291
+ "cos",
3292
+ "cost",
3293
+ "costs",
3294
+ "could",
3295
+ "council",
3296
+ "counter",
3297
+ "counties",
3298
+ "country",
3299
+ "counts",
3300
+ "coupled",
3301
+ "courage",
3302
+ "courteous",
3303
+ "coverage",
3304
+ "covered",
3305
+ "coveted",
3306
+ "covid",
3307
+ "covid-19",
3308
+ "coworkers",
3309
+ "cox",
3310
+ "coz",
3311
+ "cpa",
3312
+ "create",
3313
+ "creates",
3314
+ "creating",
3315
+ "creation",
3316
+ "creative",
3317
+ "creatively",
3318
+ "creativity",
3319
+ "credit",
3320
+ "creed",
3321
+ "crisis",
3322
+ "criteria",
3323
+ "critical",
3324
+ "criticality",
3325
+ "critically",
3326
+ "cross",
3327
+ "crossing",
3328
+ "crucial",
3329
+ "crypto",
3330
+ "cs",
3331
+ "cse",
3332
+ "ct.",
3333
+ "ct/",
3334
+ "cto",
3335
+ "cts",
3336
+ "cube",
3337
+ "cubes",
3338
+ "culture",
3339
+ "cum",
3340
+ "cupertino",
3341
+ "cur",
3342
+ "curiosity",
3343
+ "curious",
3344
+ "current",
3345
+ "currently",
3346
+ "cus",
3347
+ "customer",
3348
+ "customers",
3349
+ "customize",
3350
+ "customized",
3351
+ "cutting",
3352
+ "cuz",
3353
+ "cv",
3354
+ "cybersecurity",
3355
+ "cycle",
3356
+ "c\u2019m",
3357
+ "d",
3358
+ "d)",
3359
+ "d)Xxxxx",
3360
+ "d)xxxx",
3361
+ "d,ddd",
3362
+ "d-",
3363
+ "d-)",
3364
+ "d-X",
3365
+ "d.",
3366
+ "d.c.",
3367
+ "d.d",
3368
+ "d.x",
3369
+ "d/dd",
3370
+ "d:dd",
3371
+ "d:ddxx",
3372
+ "dIn",
3373
+ "dX",
3374
+ "dXX",
3375
+ "d_d",
3376
+ "d_x",
3377
+ "daily",
3378
+ "danville",
3379
+ "dare",
3380
+ "das",
3381
+ "dash",
3382
+ "dashboard",
3383
+ "dashboarding",
3384
+ "dashboards",
3385
+ "data",
3386
+ "database",
3387
+ "databases",
3388
+ "databricks",
3389
+ "dataiku",
3390
+ "datasets",
3391
+ "datastores",
3392
+ "date",
3393
+ "dates",
3394
+ "dax",
3395
+ "day",
3396
+ "days",
3397
+ "db",
3398
+ "db2",
3399
+ "dd",
3400
+ "dd%-",
3401
+ "dd,ddd",
3402
+ "dd,ddd.dd",
3403
+ "dd.dd",
3404
+ "dd/d",
3405
+ "dd/dd/dddd",
3406
+ "ddd",
3407
+ "ddd(x",
3408
+ "ddd,ddd",
3409
+ "ddd,ddd.dd",
3410
+ "dddX+",
3411
+ "dddd",
3412
+ "dddd:dddd",
3413
+ "dddx",
3414
+ "dddx+",
3415
+ "ddx.x",
3416
+ "ddx.x.",
3417
+ "ddxx",
3418
+ "ddy",
3419
+ "dea",
3420
+ "deadlines",
3421
+ "debit",
3422
+ "dec",
3423
+ "dec.",
3424
+ "decide",
3425
+ "decision",
3426
+ "decisions",
3427
+ "decrease",
3428
+ "ded",
3429
+ "dedicated",
3430
+ "deductible",
3431
+ "deductions",
3432
+ "deduplication",
3433
+ "deems",
3434
+ "deep",
3435
+ "deepening",
3436
+ "deeply",
3437
+ "defects",
3438
+ "defense",
3439
+ "deferred",
3440
+ "define",
3441
+ "defined",
3442
+ "defines",
3443
+ "defining",
3444
+ "definition",
3445
+ "definitions",
3446
+ "deg",
3447
+ "degree",
3448
+ "degrees",
3449
+ "dei",
3450
+ "del",
3451
+ "del.",
3452
+ "delayed",
3453
+ "delays",
3454
+ "delegating",
3455
+ "deliver",
3456
+ "deliverable",
3457
+ "deliverables",
3458
+ "delivering",
3459
+ "delivers",
3460
+ "delivery",
3461
+ "deloitte",
3462
+ "delve",
3463
+ "demand",
3464
+ "demands",
3465
+ "demonstrate",
3466
+ "demonstrated",
3467
+ "demonstrates",
3468
+ "demonstrating",
3469
+ "den",
3470
+ "dental",
3471
+ "department",
3472
+ "departmental",
3473
+ "departments",
3474
+ "depend",
3475
+ "dependability",
3476
+ "dependencies",
3477
+ "dependent",
3478
+ "dependents",
3479
+ "deployment",
3480
+ "deployments",
3481
+ "depth",
3482
+ "der",
3483
+ "derive",
3484
+ "derived",
3485
+ "des",
3486
+ "described",
3487
+ "describing",
3488
+ "description",
3489
+ "descriptionwe",
3490
+ "descriptive",
3491
+ "deserves",
3492
+ "design",
3493
+ "designated",
3494
+ "designed",
3495
+ "designer",
3496
+ "designers",
3497
+ "designing",
3498
+ "designs",
3499
+ "desirable",
3500
+ "desire",
3501
+ "desired",
3502
+ "desiring",
3503
+ "desktop",
3504
+ "destination",
3505
+ "detail",
3506
+ "detailed",
3507
+ "details",
3508
+ "determine",
3509
+ "determined",
3510
+ "determining",
3511
+ "dev",
3512
+ "develop",
3513
+ "developed",
3514
+ "developers",
3515
+ "developing",
3516
+ "development",
3517
+ "develops",
3518
+ "deviation",
3519
+ "devices",
3520
+ "devise",
3521
+ "devops",
3522
+ "dex",
3523
+ "dge",
3524
+ "dharshini",
3525
+ "dharshini.ramachandran@nexinfo.com",
3526
+ "di",
3527
+ "dia",
3528
+ "diagnostic",
3529
+ "diagrams",
3530
+ "dictionaries",
3531
+ "dictionary",
3532
+ "did",
3533
+ "diego",
3534
+ "differ",
3535
+ "difference",
3536
+ "differences",
3537
+ "different",
3538
+ "differential",
3539
+ "differing",
3540
+ "digest",
3541
+ "digi",
3542
+ "digikey",
3543
+ "digital",
3544
+ "dimensional",
3545
+ "din",
3546
+ "dio",
3547
+ "diploma",
3548
+ "direct",
3549
+ "directing",
3550
+ "direction",
3551
+ "directly",
3552
+ "director",
3553
+ "directory",
3554
+ "dis",
3555
+ "disabilities",
3556
+ "disability",
3557
+ "disabled",
3558
+ "discipline",
3559
+ "disciplined",
3560
+ "disclaimer",
3561
+ "discount",
3562
+ "discover",
3563
+ "discovering",
3564
+ "discovery",
3565
+ "discrepancies",
3566
+ "discretionary",
3567
+ "discriminate",
3568
+ "discrimination",
3569
+ "discuss",
3570
+ "discussion",
3571
+ "discussions",
3572
+ "disease",
3573
+ "disparate",
3574
+ "display",
3575
+ "displayed",
3576
+ "displays",
3577
+ "disposition",
3578
+ "dispositioning",
3579
+ "disruption",
3580
+ "disseminate",
3581
+ "distance",
3582
+ "distill",
3583
+ "distributed",
3584
+ "distribution",
3585
+ "distributors",
3586
+ "dit",
3587
+ "diverse",
3588
+ "diversity",
3589
+ "diversity-",
3590
+ "division",
3591
+ "divisional",
3592
+ "django",
3593
+ "dlc",
3594
+ "dle",
3595
+ "dlp",
3596
+ "dly",
3597
+ "dm.",
3598
+ "dmr",
3599
+ "dna",
3600
+ "do",
3601
+ "document",
3602
+ "documentation",
3603
+ "documented",
3604
+ "documents",
3605
+ "does",
3606
+ "doin",
3607
+ "doin'",
3608
+ "doing",
3609
+ "doin\u2019",
3610
+ "doitt",
3611
+ "dollar",
3612
+ "dom",
3613
+ "domain",
3614
+ "domains",
3615
+ "domo",
3616
+ "done",
3617
+ "door",
3618
+ "dor",
3619
+ "down",
3620
+ "downtime",
3621
+ "dr",
3622
+ "dr.",
3623
+ "draft",
3624
+ "drafting",
3625
+ "drafts",
3626
+ "drastically",
3627
+ "draw",
3628
+ "drawing",
3629
+ "drg",
3630
+ "drill",
3631
+ "drive",
3632
+ "driven",
3633
+ "driver",
3634
+ "drivers",
3635
+ "drives",
3636
+ "driving",
3637
+ "drug",
3638
+ "dsd",
3639
+ "dsi",
3640
+ "dslocum@geisinger.edu",
3641
+ "due",
3642
+ "dul",
3643
+ "duration",
3644
+ "during",
3645
+ "duties",
3646
+ "duties and responsibilities",
3647
+ "duty",
3648
+ "dw",
3649
+ "dx",
3650
+ "dx.x",
3651
+ "dx.x.",
3652
+ "dxx",
3653
+ "dynamic",
3654
+ "e",
3655
+ "e&e",
3656
+ "e's",
3657
+ "e(s",
3658
+ "e.",
3659
+ "e.g",
3660
+ "e.g.",
3661
+ "eCommerce",
3662
+ "each",
3663
+ "ead",
3664
+ "eager",
3665
+ "eal",
3666
+ "eam",
3667
+ "ean",
3668
+ "eap",
3669
+ "ear",
3670
+ "early",
3671
+ "earned",
3672
+ "eas",
3673
+ "ease",
3674
+ "easier",
3675
+ "eastern",
3676
+ "easy",
3677
+ "eat",
3678
+ "eau",
3679
+ "eb.",
3680
+ "ebi",
3681
+ "ebr",
3682
+ "ec.",
3683
+ "ech",
3684
+ "eck",
3685
+ "ecommerce",
3686
+ "economic",
3687
+ "economics",
3688
+ "ecosystem",
3689
+ "ect",
3690
+ "edge",
3691
+ "edi",
3692
+ "editing",
3693
+ "edlc",
3694
+ "edlp",
3695
+ "eds",
3696
+ "edu",
3697
+ "educate",
3698
+ "education",
3699
+ "educational",
3700
+ "edw",
3701
+ "edward",
3702
+ "edy",
3703
+ "eed",
3704
+ "eek",
3705
+ "eel",
3706
+ "een",
3707
+ "eeo",
3708
+ "eep",
3709
+ "eer",
3710
+ "ees",
3711
+ "eet",
3712
+ "effective",
3713
+ "effectively",
3714
+ "effectiveness",
3715
+ "efficiencies",
3716
+ "efficiency",
3717
+ "efficient",
3718
+ "efficiently",
3719
+ "effort",
3720
+ "efforts",
3721
+ "efs",
3722
+ "eg",
3723
+ "ege",
3724
+ "ego",
3725
+ "egy",
3726
+ "ehr",
3727
+ "eight",
3728
+ "eir",
3729
+ "eit",
3730
+ "eks",
3731
+ "el.",
3732
+ "elaboration",
3733
+ "eld",
3734
+ "electronic",
3735
+ "element",
3736
+ "elements",
3737
+ "elevated",
3738
+ "elf",
3739
+ "elicit",
3740
+ "elicitation",
3741
+ "eligibility",
3742
+ "eligible",
3743
+ "eliminate",
3744
+ "ell",
3745
+ "elp",
3746
+ "els",
3747
+ "ely",
3748
+ "em",
3749
+ "ema",
3750
+ "email",
3751
+ "embedded",
3752
+ "embody",
3753
+ "embrace",
3754
+ "embraces",
3755
+ "emergencies",
3756
+ "emergency",
3757
+ "emerging",
3758
+ "emotional",
3759
+ "emphasis",
3760
+ "employ",
3761
+ "employee",
3762
+ "employees",
3763
+ "employer",
3764
+ "employers",
3765
+ "employment",
3766
+ "empower",
3767
+ "empowered",
3768
+ "empowering",
3769
+ "empowerment",
3770
+ "empowers",
3771
+ "ems",
3772
+ "en",
3773
+ "en.",
3774
+ "ena",
3775
+ "enable",
3776
+ "enabled",
3777
+ "enables",
3778
+ "enabling",
3779
+ "encompass",
3780
+ "encourage",
3781
+ "encourages",
3782
+ "end",
3783
+ "endeavor",
3784
+ "energy",
3785
+ "engage",
3786
+ "engagement",
3787
+ "engages",
3788
+ "engineer",
3789
+ "engineering",
3790
+ "engineers",
3791
+ "english",
3792
+ "enhance",
3793
+ "enhanced",
3794
+ "enhancements",
3795
+ "enhances",
3796
+ "enhancing",
3797
+ "enjoy",
3798
+ "enjoys",
3799
+ "enn",
3800
+ "enough",
3801
+ "ens",
3802
+ "ensure",
3803
+ "ensures",
3804
+ "ensuring",
3805
+ "ent",
3806
+ "enterprise",
3807
+ "enterprises",
3808
+ "enthusiastic",
3809
+ "entire",
3810
+ "entity",
3811
+ "entry",
3812
+ "environment",
3813
+ "environment-",
3814
+ "environmental",
3815
+ "environments",
3816
+ "envision",
3817
+ "ep.",
3818
+ "epicor",
3819
+ "epics",
3820
+ "eps",
3821
+ "ept",
3822
+ "equal",
3823
+ "equality",
3824
+ "equally",
3825
+ "equipment",
3826
+ "equipped",
3827
+ "equity",
3828
+ "equiv",
3829
+ "equivalent",
3830
+ "er",
3831
+ "era",
3832
+ "ere",
3833
+ "erm",
3834
+ "ern",
3835
+ "erp",
3836
+ "erps",
3837
+ "errors",
3838
+ "ers",
3839
+ "ert",
3840
+ "erwin",
3841
+ "ery",
3842
+ "es-",
3843
+ "es/",
3844
+ "escalates",
3845
+ "ese",
3846
+ "esh",
3847
+ "especially",
3848
+ "ess",
3849
+ "essential",
3850
+ "est",
3851
+ "establish",
3852
+ "established",
3853
+ "establishes",
3854
+ "establishing",
3855
+ "estimate",
3856
+ "etc",
3857
+ "ete",
3858
+ "ethic",
3859
+ "ethical",
3860
+ "ethics",
3861
+ "ethnic",
3862
+ "ethnicity",
3863
+ "etl",
3864
+ "ets",
3865
+ "ety",
3866
+ "ev.",
3867
+ "evaluate",
3868
+ "evaluates",
3869
+ "evaluation",
3870
+ "evaluations",
3871
+ "eve",
3872
+ "even",
3873
+ "evenings",
3874
+ "event",
3875
+ "events",
3876
+ "ever",
3877
+ "every",
3878
+ "everyone",
3879
+ "everything",
3880
+ "evolve",
3881
+ "evolving",
3882
+ "ews",
3883
+ "examination",
3884
+ "examine",
3885
+ "example",
3886
+ "exams",
3887
+ "excel",
3888
+ "excellence",
3889
+ "excellent",
3890
+ "excellus",
3891
+ "except",
3892
+ "exceptional",
3893
+ "exceptions",
3894
+ "exchange",
3895
+ "exciting",
3896
+ "exclusions",
3897
+ "execute",
3898
+ "executing",
3899
+ "execution",
3900
+ "executive",
3901
+ "executives",
3902
+ "exemplify",
3903
+ "exempt",
3904
+ "exemption",
3905
+ "exercising",
3906
+ "exerted",
3907
+ "exhibits",
3908
+ "existing",
3909
+ "exists",
3910
+ "exp",
3911
+ "expand",
3912
+ "expanded",
3913
+ "expect",
3914
+ "expectations",
3915
+ "expected",
3916
+ "expedite",
3917
+ "experience",
3918
+ "experienced",
3919
+ "experiences",
3920
+ "expert",
3921
+ "expertise",
3922
+ "experts",
3923
+ "explain",
3924
+ "explaining",
3925
+ "exploitation",
3926
+ "exploratory",
3927
+ "explore",
3928
+ "exploring",
3929
+ "exposure",
3930
+ "expression",
3931
+ "expressions",
3932
+ "ext",
3933
+ "extends",
3934
+ "extensive",
3935
+ "external",
3936
+ "extract",
3937
+ "extracting",
3938
+ "extraction",
3939
+ "extremely",
3940
+ "eys",
3941
+ "e\u2019s",
3942
+ "f",
3943
+ "f.",
3944
+ "face",
3945
+ "faces",
3946
+ "faceted",
3947
+ "facilitate",
3948
+ "facilitated",
3949
+ "facilitates",
3950
+ "facilitation",
3951
+ "facilities",
3952
+ "facility",
3953
+ "facing",
3954
+ "factors",
3955
+ "factory",
3956
+ "fad",
3957
+ "faith",
3958
+ "fallout",
3959
+ "falls",
3960
+ "familiar",
3961
+ "familiarity",
3962
+ "families",
3963
+ "family",
3964
+ "far",
3965
+ "fashion",
3966
+ "fast",
3967
+ "fastest",
3968
+ "favourably",
3969
+ "feature",
3970
+ "features",
3971
+ "featuring",
3972
+ "feb",
3973
+ "feb.",
3974
+ "federal",
3975
+ "feedback",
3976
+ "feeds",
3977
+ "feel",
3978
+ "fees",
3979
+ "feet",
3980
+ "fellow",
3981
+ "female",
3982
+ "fer",
3983
+ "few",
3984
+ "fewer",
3985
+ "ffs",
3986
+ "fic",
3987
+ "field",
3988
+ "fields",
3989
+ "file",
3990
+ "files",
3991
+ "filling",
3992
+ "filtering",
3993
+ "final",
3994
+ "finalize",
3995
+ "finance",
3996
+ "financial",
3997
+ "find",
3998
+ "finding",
3999
+ "findings",
4000
+ "firm",
4001
+ "firmwide",
4002
+ "first",
4003
+ "fit",
4004
+ "five",
4005
+ "fixing",
4006
+ "fl",
4007
+ "fla",
4008
+ "fla.",
4009
+ "flash",
4010
+ "flex",
4011
+ "flexcube",
4012
+ "flexibility",
4013
+ "flexible",
4014
+ "flow",
4015
+ "flows",
4016
+ "fluency",
4017
+ "focus",
4018
+ "focused",
4019
+ "focuses",
4020
+ "focusing",
4021
+ "follow",
4022
+ "following",
4023
+ "for",
4024
+ "force",
4025
+ "forecasting",
4026
+ "forefront",
4027
+ "foremost",
4028
+ "forest",
4029
+ "forging",
4030
+ "form",
4031
+ "formal",
4032
+ "formally",
4033
+ "format",
4034
+ "formats",
4035
+ "formatting",
4036
+ "forming",
4037
+ "forms",
4038
+ "formulas",
4039
+ "formulate",
4040
+ "formulates",
4041
+ "formulation",
4042
+ "forth",
4043
+ "fortune",
4044
+ "forward",
4045
+ "foster",
4046
+ "fostering",
4047
+ "fosters",
4048
+ "foundation",
4049
+ "founding",
4050
+ "four",
4051
+ "fourth",
4052
+ "frame",
4053
+ "framework",
4054
+ "frameworks",
4055
+ "fraudulent",
4056
+ "free",
4057
+ "freight",
4058
+ "fresh",
4059
+ "friday",
4060
+ "from",
4061
+ "front",
4062
+ "fts",
4063
+ "ful",
4064
+ "fulfill",
4065
+ "fulfilling",
4066
+ "full",
4067
+ "fully",
4068
+ "function",
4069
+ "functional",
4070
+ "functions",
4071
+ "fundamental",
4072
+ "fundamentals",
4073
+ "funding",
4074
+ "further",
4075
+ "furthermore",
4076
+ "future",
4077
+ "g",
4078
+ "g.",
4079
+ "ga",
4080
+ "ga.",
4081
+ "ga4",
4082
+ "gain",
4083
+ "gaining",
4084
+ "gainwell",
4085
+ "gal",
4086
+ "gan",
4087
+ "gangotri",
4088
+ "gap",
4089
+ "gaps",
4090
+ "garner",
4091
+ "gather",
4092
+ "gathering",
4093
+ "ged",
4094
+ "geisinger",
4095
+ "gen",
4096
+ "gen.",
4097
+ "gender",
4098
+ "general",
4099
+ "generally",
4100
+ "generate",
4101
+ "generates",
4102
+ "generating",
4103
+ "generation",
4104
+ "generous",
4105
+ "genetic",
4106
+ "genetics",
4107
+ "geo",
4108
+ "geographic",
4109
+ "georgia",
4110
+ "ger",
4111
+ "ges",
4112
+ "get",
4113
+ "ggplot",
4114
+ "ght",
4115
+ "ghx",
4116
+ "gia",
4117
+ "gic",
4118
+ "gift",
4119
+ "gin",
4120
+ "gis",
4121
+ "git",
4122
+ "give",
4123
+ "given",
4124
+ "gives",
4125
+ "giving",
4126
+ "gle",
4127
+ "global",
4128
+ "globally",
4129
+ "globe",
4130
+ "gly",
4131
+ "gns",
4132
+ "go",
4133
+ "goal",
4134
+ "goals",
4135
+ "goin",
4136
+ "goin'",
4137
+ "going",
4138
+ "goin\u2019",
4139
+ "gold",
4140
+ "gon",
4141
+ "gonna",
4142
+ "good",
4143
+ "google",
4144
+ "got",
4145
+ "gov",
4146
+ "gov.",
4147
+ "govern",
4148
+ "governance",
4149
+ "government",
4150
+ "governmental",
4151
+ "governments",
4152
+ "gpo",
4153
+ "gps",
4154
+ "grades",
4155
+ "grant",
4156
+ "granted",
4157
+ "grants",
4158
+ "graphical",
4159
+ "graphics",
4160
+ "graphs",
4161
+ "grasps",
4162
+ "great",
4163
+ "greater",
4164
+ "greatest",
4165
+ "greatly",
4166
+ "grooming",
4167
+ "group",
4168
+ "grouping",
4169
+ "groups",
4170
+ "grow",
4171
+ "growing",
4172
+ "grown",
4173
+ "grows",
4174
+ "growth",
4175
+ "gth",
4176
+ "gtm",
4177
+ "guarantee",
4178
+ "guaranteeing",
4179
+ "guard",
4180
+ "gue",
4181
+ "guidance",
4182
+ "guide",
4183
+ "guidelines",
4184
+ "gy-",
4185
+ "h",
4186
+ "h.",
4187
+ "h1b",
4188
+ "had",
4189
+ "hadoop",
4190
+ "hagerty",
4191
+ "han",
4192
+ "hana",
4193
+ "hand",
4194
+ "handbook",
4195
+ "handle",
4196
+ "handling",
4197
+ "hands",
4198
+ "happier",
4199
+ "happiness",
4200
+ "harassment",
4201
+ "hard",
4202
+ "hardest",
4203
+ "hardworking",
4204
+ "harvard",
4205
+ "has",
4206
+ "hat",
4207
+ "have",
4208
+ "haves",
4209
+ "havin",
4210
+ "havin'",
4211
+ "having",
4212
+ "havin\u2019",
4213
+ "he",
4214
+ "he's",
4215
+ "head",
4216
+ "headquartered",
4217
+ "headquarters",
4218
+ "health",
4219
+ "healthcare",
4220
+ "healthier",
4221
+ "hear",
4222
+ "hed",
4223
+ "held",
4224
+ "help",
4225
+ "helpful",
4226
+ "helping",
4227
+ "helps",
4228
+ "hem",
4229
+ "hen",
4230
+ "her",
4231
+ "here",
4232
+ "heritage",
4233
+ "hes",
4234
+ "hey",
4235
+ "he\u2019s",
4236
+ "hi",
4237
+ "hic",
4238
+ "hidden",
4239
+ "hierarchy",
4240
+ "high",
4241
+ "higher",
4242
+ "highest",
4243
+ "highly",
4244
+ "highmark",
4245
+ "hin",
4246
+ "hip",
4247
+ "hipaa",
4248
+ "hire",
4249
+ "hiregenics",
4250
+ "hires",
4251
+ "hiring",
4252
+ "his",
4253
+ "history",
4254
+ "hive",
4255
+ "hl7",
4256
+ "hly",
4257
+ "hm",
4258
+ "hms",
4259
+ "hoc",
4260
+ "hod",
4261
+ "hold",
4262
+ "holdings",
4263
+ "holds",
4264
+ "holiday",
4265
+ "holidays",
4266
+ "holistic",
4267
+ "hom",
4268
+ "home",
4269
+ "homeland",
4270
+ "homes",
4271
+ "hon",
4272
+ "honest",
4273
+ "hope",
4274
+ "hopkins",
4275
+ "hospitals",
4276
+ "hour",
4277
+ "hourly",
4278
+ "hours",
4279
+ "how",
4280
+ "how's",
4281
+ "how\u2019s",
4282
+ "hr",
4283
+ "hrservices@highmarkhealth.org",
4284
+ "hs",
4285
+ "hse&e",
4286
+ "html",
4287
+ "hts",
4288
+ "https://www.maximus.com",
4289
+ "hub",
4290
+ "human",
4291
+ "humana",
4292
+ "humanitarian",
4293
+ "humble",
4294
+ "humility",
4295
+ "hybrid",
4296
+ "hypotheses",
4297
+ "hypothesis",
4298
+ "i",
4299
+ "i.",
4300
+ "i.e",
4301
+ "i.e.",
4302
+ "ia",
4303
+ "ia.",
4304
+ "ial",
4305
+ "ian",
4306
+ "iar",
4307
+ "ic",
4308
+ "ica",
4309
+ "ice",
4310
+ "ich",
4311
+ "ick",
4312
+ "ics",
4313
+ "ict",
4314
+ "icy",
4315
+ "id",
4316
+ "id.",
4317
+ "ide",
4318
+ "idea",
4319
+ "ideal",
4320
+ "ideas",
4321
+ "ideate",
4322
+ "ideating",
4323
+ "identification",
4324
+ "identified",
4325
+ "identifies",
4326
+ "identify",
4327
+ "identifying",
4328
+ "identities",
4329
+ "identity",
4330
+ "ied",
4331
+ "ief",
4332
+ "ier",
4333
+ "ies",
4334
+ "ieu",
4335
+ "iew",
4336
+ "if",
4337
+ "if.",
4338
+ "ife",
4339
+ "iff",
4340
+ "ift",
4341
+ "ify",
4342
+ "igh",
4343
+ "igi",
4344
+ "ign",
4345
+ "igo",
4346
+ "ii",
4347
+ "iii",
4348
+ "ike",
4349
+ "iku",
4350
+ "ild",
4351
+ "ile",
4352
+ "ill",
4353
+ "ill.",
4354
+ "illnesses",
4355
+ "ils",
4356
+ "ily",
4357
+ "ime",
4358
+ "immediate",
4359
+ "impact",
4360
+ "impacted",
4361
+ "imperial",
4362
+ "implement",
4363
+ "implementation",
4364
+ "implementations",
4365
+ "implemented",
4366
+ "implementing",
4367
+ "implements",
4368
+ "implications",
4369
+ "importance",
4370
+ "important",
4371
+ "improve",
4372
+ "improved",
4373
+ "improvement",
4374
+ "improvements",
4375
+ "improving",
4376
+ "ims",
4377
+ "in",
4378
+ "in'",
4379
+ "inaccuracies",
4380
+ "inc",
4381
+ "inc.",
4382
+ "incentive",
4383
+ "incentives",
4384
+ "inception",
4385
+ "inches",
4386
+ "include",
4387
+ "included",
4388
+ "includes",
4389
+ "including",
4390
+ "inclusion",
4391
+ "inclusive",
4392
+ "inclusivity",
4393
+ "incoming",
4394
+ "incorporated",
4395
+ "incorporating",
4396
+ "increase",
4397
+ "increased",
4398
+ "increasing",
4399
+ "ind",
4400
+ "ind.",
4401
+ "independent",
4402
+ "independently",
4403
+ "index",
4404
+ "india",
4405
+ "indicate",
4406
+ "indicators",
4407
+ "individual",
4408
+ "individually",
4409
+ "individuals",
4410
+ "industrial",
4411
+ "industries",
4412
+ "industry",
4413
+ "ine",
4414
+ "inefficiencies",
4415
+ "infectious",
4416
+ "inferences",
4417
+ "influence",
4418
+ "influences",
4419
+ "influencing",
4420
+ "info",
4421
+ "infor",
4422
+ "inform",
4423
+ "informally",
4424
+ "informatica",
4425
+ "informatics",
4426
+ "information",
4427
+ "information-",
4428
+ "informed",
4429
+ "infrastructure",
4430
+ "ing",
4431
+ "ingrained",
4432
+ "ingredients",
4433
+ "ini",
4434
+ "initial",
4435
+ "initiate",
4436
+ "initiating",
4437
+ "initiation",
4438
+ "initiatives",
4439
+ "injury",
4440
+ "ink",
4441
+ "inn",
4442
+ "innovate",
4443
+ "innovation",
4444
+ "innovations",
4445
+ "innovative",
4446
+ "innovators",
4447
+ "ino",
4448
+ "input",
4449
+ "inquisitive",
4450
+ "ins",
4451
+ "insight",
4452
+ "insightful",
4453
+ "insights",
4454
+ "inspire",
4455
+ "instances",
4456
+ "instead",
4457
+ "institute",
4458
+ "institutional",
4459
+ "institutions",
4460
+ "instructions",
4461
+ "instrumental",
4462
+ "insurance",
4463
+ "insured",
4464
+ "insurers",
4465
+ "int",
4466
+ "integral",
4467
+ "integrate",
4468
+ "integrated",
4469
+ "integrating",
4470
+ "integration",
4471
+ "integrations",
4472
+ "integrity",
4473
+ "intellectual",
4474
+ "intelligence",
4475
+ "intelligent",
4476
+ "inter",
4477
+ "interact",
4478
+ "interacting",
4479
+ "interaction",
4480
+ "interactions",
4481
+ "interactive",
4482
+ "interagency",
4483
+ "interconnected",
4484
+ "interest",
4485
+ "interested",
4486
+ "interesting",
4487
+ "interests",
4488
+ "interface",
4489
+ "interfaces",
4490
+ "intermediate",
4491
+ "internal",
4492
+ "internally",
4493
+ "international",
4494
+ "internship",
4495
+ "interpersonal",
4496
+ "interplay",
4497
+ "interpret",
4498
+ "interpretations",
4499
+ "interpreter",
4500
+ "interpreting",
4501
+ "interruptions",
4502
+ "intervals",
4503
+ "interview",
4504
+ "interview(s",
4505
+ "interviewed",
4506
+ "interviewing",
4507
+ "interviews",
4508
+ "into",
4509
+ "introduction",
4510
+ "inventory",
4511
+ "investigating",
4512
+ "investigations",
4513
+ "investment",
4514
+ "investments",
4515
+ "investors",
4516
+ "invests",
4517
+ "invite",
4518
+ "inviting",
4519
+ "involve",
4520
+ "involved",
4521
+ "involvement",
4522
+ "involves",
4523
+ "involving",
4524
+ "in\u2019",
4525
+ "ion",
4526
+ "ior",
4527
+ "ios",
4528
+ "ips",
4529
+ "ipy",
4530
+ "ira",
4531
+ "ird",
4532
+ "ire",
4533
+ "irm",
4534
+ "irs",
4535
+ "is",
4536
+ "is.",
4537
+ "isa",
4538
+ "ise",
4539
+ "ish",
4540
+ "isk",
4541
+ "ism",
4542
+ "isms",
4543
+ "iso",
4544
+ "iss",
4545
+ "issue",
4546
+ "issue(s",
4547
+ "issues",
4548
+ "ist",
4549
+ "istqb",
4550
+ "it",
4551
+ "it's",
4552
+ "ite",
4553
+ "item",
4554
+ "items",
4555
+ "iterate",
4556
+ "iteratively",
4557
+ "ith",
4558
+ "iti",
4559
+ "its",
4560
+ "itt",
4561
+ "ity",
4562
+ "it\u2019s",
4563
+ "ium",
4564
+ "ive",
4565
+ "iz.",
4566
+ "ize",
4567
+ "j",
4568
+ "j.",
4569
+ "j.p.",
4570
+ "j228924",
4571
+ "jad",
4572
+ "jan",
4573
+ "jan.",
4574
+ "january",
4575
+ "java",
4576
+ "jazzhr",
4577
+ "jd",
4578
+ "jersey",
4579
+ "jira",
4580
+ "job",
4581
+ "job title",
4582
+ "jobs",
4583
+ "johnson",
4584
+ "join",
4585
+ "joining",
4586
+ "joint",
4587
+ "jones",
4588
+ "jor",
4589
+ "journey",
4590
+ "joy",
4591
+ "jpmc",
4592
+ "jpmorgan",
4593
+ "jr",
4594
+ "jr.",
4595
+ "judgement",
4596
+ "judgment",
4597
+ "jul",
4598
+ "jul.",
4599
+ "july",
4600
+ "jun",
4601
+ "jun.",
4602
+ "junior",
4603
+ "jury",
4604
+ "just",
4605
+ "justice",
4606
+ "justifying",
4607
+ "k",
4608
+ "k.",
4609
+ "kan",
4610
+ "kan.",
4611
+ "kanban",
4612
+ "kans",
4613
+ "kans.",
4614
+ "kdd",
4615
+ "ked",
4616
+ "keeping",
4617
+ "ker",
4618
+ "kes",
4619
+ "ket",
4620
+ "key",
4621
+ "keyboard",
4622
+ "kforce",
4623
+ "kinder",
4624
+ "kindly",
4625
+ "kingdom",
4626
+ "kit",
4627
+ "kla",
4628
+ "kle",
4629
+ "kly",
4630
+ "knime",
4631
+ "know",
4632
+ "knowing",
4633
+ "knowledge",
4634
+ "knowledgeforce",
4635
+ "known",
4636
+ "knows",
4637
+ "kpi",
4638
+ "kpis",
4639
+ "kpmg",
4640
+ "kup",
4641
+ "ky",
4642
+ "ky.",
4643
+ "l",
4644
+ "l.",
4645
+ "la",
4646
+ "la.",
4647
+ "laboratories",
4648
+ "lake",
4649
+ "lan",
4650
+ "landsat",
4651
+ "landscape",
4652
+ "language",
4653
+ "languages",
4654
+ "lar",
4655
+ "large",
4656
+ "largest",
4657
+ "las",
4658
+ "last",
4659
+ "later",
4660
+ "latest",
4661
+ "launched",
4662
+ "law",
4663
+ "laws",
4664
+ "lawson",
4665
+ "lay",
4666
+ "layer",
4667
+ "lbm",
4668
+ "lds",
4669
+ "lead",
4670
+ "leader",
4671
+ "leaders",
4672
+ "leadership",
4673
+ "leading",
4674
+ "leads",
4675
+ "lean",
4676
+ "leap",
4677
+ "learn",
4678
+ "learner",
4679
+ "learning",
4680
+ "least",
4681
+ "leave",
4682
+ "led",
4683
+ "legacy",
4684
+ "legal",
4685
+ "legally",
4686
+ "legitimate",
4687
+ "lem",
4688
+ "length",
4689
+ "ler",
4690
+ "les",
4691
+ "less",
4692
+ "let",
4693
+ "let's",
4694
+ "let\u2019s",
4695
+ "level",
4696
+ "levels",
4697
+ "leverage",
4698
+ "leverages",
4699
+ "leveraging",
4700
+ "lex",
4701
+ "lgbtq+",
4702
+ "lgbtq+equality",
4703
+ "li",
4704
+ "lia",
4705
+ "lib",
4706
+ "libraries",
4707
+ "lic",
4708
+ "licenses",
4709
+ "licensure",
4710
+ "lid",
4711
+ "lieu",
4712
+ "lif",
4713
+ "life",
4714
+ "lifecycle",
4715
+ "lifelong",
4716
+ "lift",
4717
+ "lifted",
4718
+ "light",
4719
+ "lik",
4720
+ "like",
4721
+ "likely",
4722
+ "limited",
4723
+ "limiting",
4724
+ "limits",
4725
+ "lincoln",
4726
+ "line",
4727
+ "lineage",
4728
+ "lines",
4729
+ "link",
4730
+ "linked",
4731
+ "linkedin",
4732
+ "lio",
4733
+ "lis",
4734
+ "list",
4735
+ "listed",
4736
+ "listen",
4737
+ "listening",
4738
+ "lists",
4739
+ "live",
4740
+ "lives",
4741
+ "living",
4742
+ "ll",
4743
+ "ll.",
4744
+ "llc",
4745
+ "lle",
4746
+ "llp",
4747
+ "lls",
4748
+ "lly",
4749
+ "lo.",
4750
+ "load",
4751
+ "loaded",
4752
+ "loading",
4753
+ "loans",
4754
+ "local",
4755
+ "located",
4756
+ "location",
4757
+ "locations",
4758
+ "locationwest",
4759
+ "locking",
4760
+ "log",
4761
+ "logic",
4762
+ "logical",
4763
+ "long",
4764
+ "look",
4765
+ "looker",
4766
+ "looking",
4767
+ "lookup",
4768
+ "lookups",
4769
+ "loop",
4770
+ "lop",
4771
+ "lor",
4772
+ "lot",
4773
+ "louis",
4774
+ "love",
4775
+ "lovin",
4776
+ "lovin'",
4777
+ "loving",
4778
+ "lovin\u2019",
4779
+ "low",
4780
+ "lower",
4781
+ "loy",
4782
+ "lps",
4783
+ "lso",
4784
+ "ltd",
4785
+ "ltd.",
4786
+ "lth",
4787
+ "lti",
4788
+ "lts",
4789
+ "lty",
4790
+ "lub",
4791
+ "lue",
4792
+ "lus",
4793
+ "lve",
4794
+ "lvhn",
4795
+ "lyn",
4796
+ "lys",
4797
+ "m",
4798
+ "m.",
4799
+ "ma'am",
4800
+ "macbook",
4801
+ "macdill",
4802
+ "machine",
4803
+ "macros",
4804
+ "macurecruiting@macu.com",
4805
+ "madam",
4806
+ "made",
4807
+ "magazine",
4808
+ "mahout",
4809
+ "maintain",
4810
+ "maintainable",
4811
+ "maintaining",
4812
+ "maintains",
4813
+ "maintenance",
4814
+ "major",
4815
+ "make",
4816
+ "maker",
4817
+ "makes",
4818
+ "making",
4819
+ "mal",
4820
+ "malicious",
4821
+ "man",
4822
+ "manage",
4823
+ "managed",
4824
+ "management",
4825
+ "managementResponsible",
4826
+ "managementresponsible",
4827
+ "manager",
4828
+ "managerial",
4829
+ "managers",
4830
+ "manages",
4831
+ "managing",
4832
+ "mandated",
4833
+ "manipulate",
4834
+ "manipulation",
4835
+ "manner",
4836
+ "manual",
4837
+ "manufacturing",
4838
+ "many",
4839
+ "map",
4840
+ "mapping",
4841
+ "mappings",
4842
+ "maps",
4843
+ "mar",
4844
+ "mar.",
4845
+ "march",
4846
+ "marital",
4847
+ "market",
4848
+ "marketing",
4849
+ "marketplace",
4850
+ "markets",
4851
+ "mart",
4852
+ "mart(s",
4853
+ "marts",
4854
+ "mas",
4855
+ "mask",
4856
+ "mass",
4857
+ "mass.",
4858
+ "massive",
4859
+ "master",
4860
+ "masters",
4861
+ "mat",
4862
+ "match",
4863
+ "matching",
4864
+ "material",
4865
+ "materials",
4866
+ "materialsResponsible",
4867
+ "materialsresponsible",
4868
+ "math",
4869
+ "mathematical",
4870
+ "mathematics",
4871
+ "matplotlib",
4872
+ "matrixed",
4873
+ "matter",
4874
+ "matters",
4875
+ "max",
4876
+ "maxdiff",
4877
+ "maximize",
4878
+ "maximum",
4879
+ "maximus",
4880
+ "may",
4881
+ "ma\u2019am",
4882
+ "mba",
4883
+ "mbe",
4884
+ "mco",
4885
+ "mcse",
4886
+ "md",
4887
+ "md.",
4888
+ "mdm",
4889
+ "me",
4890
+ "me/",
4891
+ "mean",
4892
+ "meaningful",
4893
+ "means",
4894
+ "measure",
4895
+ "measurement",
4896
+ "measures",
4897
+ "measuring",
4898
+ "med",
4899
+ "media",
4900
+ "median",
4901
+ "medicaid",
4902
+ "medical",
4903
+ "medicare",
4904
+ "medium",
4905
+ "meet",
4906
+ "meeting",
4907
+ "meetings",
4908
+ "meets",
4909
+ "member",
4910
+ "members",
4911
+ "membership",
4912
+ "memos",
4913
+ "men",
4914
+ "mental",
4915
+ "mentor",
4916
+ "mentoring",
4917
+ "mer",
4918
+ "merchandise",
4919
+ "merchandising",
4920
+ "merit",
4921
+ "meritocracy",
4922
+ "merits",
4923
+ "mes",
4924
+ "messages",
4925
+ "messaging",
4926
+ "messrs",
4927
+ "messrs.",
4928
+ "met",
4929
+ "metadata",
4930
+ "method",
4931
+ "methodologies",
4932
+ "methodology",
4933
+ "methods",
4934
+ "metrics",
4935
+ "mfg",
4936
+ "mic",
4937
+ "mich",
4938
+ "mich.",
4939
+ "microsoft",
4940
+ "microstrategy",
4941
+ "mid",
4942
+ "middle",
4943
+ "might",
4944
+ "migration",
4945
+ "migrations",
4946
+ "military",
4947
+ "millennials",
4948
+ "million",
4949
+ "millions",
4950
+ "min",
4951
+ "mind",
4952
+ "mindset",
4953
+ "mines",
4954
+ "minimal",
4955
+ "minimum",
4956
+ "mining",
4957
+ "ministry",
4958
+ "minn",
4959
+ "minn.",
4960
+ "minor",
4961
+ "minorities",
4962
+ "minority",
4963
+ "minute",
4964
+ "minutes",
4965
+ "mis",
4966
+ "miss",
4967
+ "miss.",
4968
+ "mission",
4969
+ "missions",
4970
+ "mississauga",
4971
+ "mit",
4972
+ "mix",
4973
+ "mixed",
4974
+ "ml",
4975
+ "mms",
4976
+ "mmsa",
4977
+ "mn",
4978
+ "mni",
4979
+ "mo",
4980
+ "mo.",
4981
+ "mode",
4982
+ "model",
4983
+ "modeling",
4984
+ "modelling",
4985
+ "models",
4986
+ "moderate",
4987
+ "modern",
4988
+ "modify",
4989
+ "modis",
4990
+ "modules",
4991
+ "mohammed",
4992
+ "mon",
4993
+ "monday",
4994
+ "money",
4995
+ "monitor",
4996
+ "monitoring",
4997
+ "monitors",
4998
+ "monkey",
4999
+ "mont",
5000
+ "mont.",
5001
+ "month",
5002
+ "monthly",
5003
+ "months",
5004
+ "more",
5005
+ "morgan",
5006
+ "mos",
5007
+ "most",
5008
+ "mother",
5009
+ "motion",
5010
+ "motions",
5011
+ "motivate",
5012
+ "motivated",
5013
+ "mountain",
5014
+ "mouse",
5015
+ "move",
5016
+ "moving",
5017
+ "mpe",
5018
+ "mpo",
5019
+ "mpt",
5020
+ "mpy",
5021
+ "mr",
5022
+ "mr.",
5023
+ "mrp",
5024
+ "mrps",
5025
+ "mrs",
5026
+ "mrs.",
5027
+ "ms",
5028
+ "ms-",
5029
+ "ms.",
5030
+ "msa",
5031
+ "msp",
5032
+ "mt",
5033
+ "mt.",
5034
+ "much",
5035
+ "multi",
5036
+ "multiple",
5037
+ "mum",
5038
+ "munging",
5039
+ "mus",
5040
+ "must",
5041
+ "mva",
5042
+ "mysql",
5043
+ "n",
5044
+ "n's",
5045
+ "n't",
5046
+ "n(s",
5047
+ "n.",
5048
+ "n.c.",
5049
+ "n.d.",
5050
+ "n.h.",
5051
+ "n.j.",
5052
+ "n.m.",
5053
+ "n.y.",
5054
+ "na",
5055
+ "nal",
5056
+ "named",
5057
+ "nation",
5058
+ "national",
5059
+ "nationwide",
5060
+ "native",
5061
+ "natural",
5062
+ "naturally",
5063
+ "nature",
5064
+ "navigate",
5065
+ "navigating",
5066
+ "navigation",
5067
+ "nc.",
5068
+ "nce",
5069
+ "nch",
5070
+ "ncy",
5071
+ "nd.",
5072
+ "ndo",
5073
+ "nds",
5074
+ "nearly",
5075
+ "neb",
5076
+ "neb.",
5077
+ "nebr",
5078
+ "nebr.",
5079
+ "necessary",
5080
+ "necessaryIdentifies",
5081
+ "necessaryidentifies",
5082
+ "ned",
5083
+ "need",
5084
+ "needed",
5085
+ "neededTracks",
5086
+ "neededtracks",
5087
+ "needing",
5088
+ "needs",
5089
+ "negative",
5090
+ "nel",
5091
+ "ner",
5092
+ "nes",
5093
+ "network",
5094
+ "networks",
5095
+ "nev",
5096
+ "nev.",
5097
+ "never",
5098
+ "new",
5099
+ "newly",
5100
+ "nexinfo",
5101
+ "next",
5102
+ "ney",
5103
+ "nfo",
5104
+ "nge",
5105
+ "ngo",
5106
+ "ngs",
5107
+ "nia",
5108
+ "nic",
5109
+ "nice",
5110
+ "nights",
5111
+ "nimble",
5112
+ "ninth",
5113
+ "nit",
5114
+ "nks",
5115
+ "nly",
5116
+ "nn.",
5117
+ "no",
5118
+ "noise",
5119
+ "non",
5120
+ "none",
5121
+ "nonprofit",
5122
+ "nor",
5123
+ "normal",
5124
+ "normalization",
5125
+ "normalize",
5126
+ "normally",
5127
+ "norms",
5128
+ "north",
5129
+ "nos",
5130
+ "nosql",
5131
+ "not",
5132
+ "note",
5133
+ "notes",
5134
+ "nothin",
5135
+ "nothin'",
5136
+ "nothing",
5137
+ "nothin\u2019",
5138
+ "notice",
5139
+ "notify",
5140
+ "nov",
5141
+ "nov.",
5142
+ "now",
5143
+ "nrgs",
5144
+ "ns.",
5145
+ "nse",
5146
+ "nst",
5147
+ "nt",
5148
+ "nt-",
5149
+ "nt.",
5150
+ "nth",
5151
+ "nto",
5152
+ "nts",
5153
+ "nue",
5154
+ "nuff",
5155
+ "numbers",
5156
+ "numpy",
5157
+ "nup",
5158
+ "nurse",
5159
+ "nus",
5160
+ "nuthin",
5161
+ "nuthin'",
5162
+ "nuthin\u2019",
5163
+ "nwe",
5164
+ "ny",
5165
+ "nys",
5166
+ "n\u2019s",
5167
+ "n\u2019t",
5168
+ "o",
5169
+ "o'clock",
5170
+ "o's",
5171
+ "o.",
5172
+ "o.0",
5173
+ "o.O",
5174
+ "o.o",
5175
+ "o_0",
5176
+ "o_O",
5177
+ "o_o",
5178
+ "oabcde",
5179
+ "oad",
5180
+ "oal",
5181
+ "obe",
5182
+ "objectives",
5183
+ "objects",
5184
+ "obs",
5185
+ "obsession",
5186
+ "obstacles",
5187
+ "obtain",
5188
+ "obtaining",
5189
+ "oc2",
5190
+ "occasionally",
5191
+ "occupational",
5192
+ "occur",
5193
+ "ock",
5194
+ "oct",
5195
+ "oct.",
5196
+ "ode",
5197
+ "ods",
5198
+ "ody",
5199
+ "oes",
5200
+ "of",
5201
+ "of.",
5202
+ "off",
5203
+ "offboarding",
5204
+ "offer",
5205
+ "offered",
5206
+ "offering",
5207
+ "offerings",
5208
+ "offers",
5209
+ "office",
5210
+ "officer",
5211
+ "offices",
5212
+ "official",
5213
+ "offs",
5214
+ "offshore",
5215
+ "oft",
5216
+ "often",
5217
+ "ogy",
5218
+ "oin",
5219
+ "okla",
5220
+ "okla.",
5221
+ "ol",
5222
+ "ol'",
5223
+ "old",
5224
+ "oldest",
5225
+ "ole",
5226
+ "oll",
5227
+ "oln",
5228
+ "olo",
5229
+ "ols",
5230
+ "oly",
5231
+ "ol\u2019",
5232
+ "oma",
5233
+ "ome",
5234
+ "omni",
5235
+ "omnimerchant",
5236
+ "omo",
5237
+ "omp",
5238
+ "omy",
5239
+ "on",
5240
+ "on-",
5241
+ "onboarding",
5242
+ "ond",
5243
+ "one",
5244
+ "oneself",
5245
+ "ong",
5246
+ "ongoing",
5247
+ "online",
5248
+ "only",
5249
+ "onn",
5250
+ "ons",
5251
+ "onsite",
5252
+ "ont",
5253
+ "ood",
5254
+ "oof",
5255
+ "ook",
5256
+ "ool",
5257
+ "oom",
5258
+ "oop",
5259
+ "oor",
5260
+ "oot",
5261
+ "ope",
5262
+ "open",
5263
+ "opened",
5264
+ "opening",
5265
+ "operate",
5266
+ "operated",
5267
+ "operating",
5268
+ "operation",
5269
+ "operational",
5270
+ "operationalized",
5271
+ "operations",
5272
+ "opinion",
5273
+ "opinions",
5274
+ "opportunities",
5275
+ "opportunity",
5276
+ "ops",
5277
+ "optimal",
5278
+ "optimization",
5279
+ "optimize",
5280
+ "option",
5281
+ "optional",
5282
+ "options",
5283
+ "opy",
5284
+ "or",
5285
+ "oracle",
5286
+ "oral",
5287
+ "orb",
5288
+ "orchestration",
5289
+ "ord",
5290
+ "order",
5291
+ "orders",
5292
+ "ore",
5293
+ "ore.",
5294
+ "org",
5295
+ "organization",
5296
+ "organizational",
5297
+ "organizations",
5298
+ "organize",
5299
+ "organized",
5300
+ "organizing",
5301
+ "orientation",
5302
+ "oriented",
5303
+ "origin",
5304
+ "ork",
5305
+ "orlando",
5306
+ "orm",
5307
+ "orp",
5308
+ "ors",
5309
+ "ort",
5310
+ "ory",
5311
+ "os.",
5312
+ "ose",
5313
+ "oss",
5314
+ "ost",
5315
+ "ot",
5316
+ "ote",
5317
+ "oth",
5318
+ "other",
5319
+ "others",
5320
+ "oti",
5321
+ "oti(doitt",
5322
+ "ots",
5323
+ "oty",
5324
+ "oud",
5325
+ "ought",
5326
+ "oup",
5327
+ "our",
5328
+ "ourselves",
5329
+ "ous",
5330
+ "out",
5331
+ "outcome",
5332
+ "outcomes",
5333
+ "outliers",
5334
+ "outlined",
5335
+ "outlook",
5336
+ "output",
5337
+ "outside",
5338
+ "outstanding",
5339
+ "ov.",
5340
+ "ove",
5341
+ "over",
5342
+ "overall",
5343
+ "overcome",
5344
+ "oversee",
5345
+ "overseeing",
5346
+ "oversees",
5347
+ "oversight",
5348
+ "overview",
5349
+ "own",
5350
+ "owner",
5351
+ "owners",
5352
+ "ownership",
5353
+ "owns",
5354
+ "ows",
5355
+ "oys",
5356
+ "o\u2019clock",
5357
+ "o\u2019s",
5358
+ "p",
5359
+ "p-5",
5360
+ "p.",
5361
+ "p.m",
5362
+ "p.m.",
5363
+ "pa",
5364
+ "pa.",
5365
+ "paa",
5366
+ "paced",
5367
+ "package",
5368
+ "packages",
5369
+ "packaging",
5370
+ "pae",
5371
+ "page",
5372
+ "paid",
5373
+ "pain",
5374
+ "pan",
5375
+ "pandas",
5376
+ "pandemic",
5377
+ "parameters",
5378
+ "parametersCreates",
5379
+ "parameterscreates",
5380
+ "parental",
5381
+ "parity",
5382
+ "parses",
5383
+ "part",
5384
+ "participate",
5385
+ "participates",
5386
+ "participating",
5387
+ "particular",
5388
+ "parties",
5389
+ "partner",
5390
+ "partnering",
5391
+ "partners",
5392
+ "partnership",
5393
+ "partnerships",
5394
+ "parts",
5395
+ "partsResponsible",
5396
+ "partsresponsible",
5397
+ "party",
5398
+ "pas",
5399
+ "passion",
5400
+ "passionate",
5401
+ "past",
5402
+ "path",
5403
+ "patient",
5404
+ "patients",
5405
+ "pattern",
5406
+ "patterns",
5407
+ "pay",
5408
+ "payer",
5409
+ "payers",
5410
+ "payment",
5411
+ "payments",
5412
+ "payrolling",
5413
+ "pco",
5414
+ "ped",
5415
+ "peer",
5416
+ "peers",
5417
+ "pen",
5418
+ "pending",
5419
+ "people",
5420
+ "per",
5421
+ "percent",
5422
+ "perception",
5423
+ "perform",
5424
+ "performance",
5425
+ "performed",
5426
+ "performers",
5427
+ "performing",
5428
+ "performs",
5429
+ "permanent",
5430
+ "permission",
5431
+ "permitted",
5432
+ "person",
5433
+ "personal",
5434
+ "personalizing",
5435
+ "persons",
5436
+ "perspective",
5437
+ "perspectives",
5438
+ "pertaining",
5439
+ "pertinent",
5440
+ "pes",
5441
+ "ph",
5442
+ "ph.d.",
5443
+ "pharmaceutical",
5444
+ "pharmacy",
5445
+ "phase",
5446
+ "phases",
5447
+ "phenomic",
5448
+ "philosophies",
5449
+ "phone",
5450
+ "phs",
5451
+ "phy",
5452
+ "physical",
5453
+ "physicians",
5454
+ "physics",
5455
+ "pid",
5456
+ "pig",
5457
+ "pilgrim",
5458
+ "pillars",
5459
+ "pim",
5460
+ "pipeline",
5461
+ "pipelines",
5462
+ "pis",
5463
+ "pivot",
5464
+ "pivots",
5465
+ "pl",
5466
+ "place",
5467
+ "places",
5468
+ "placing",
5469
+ "plan",
5470
+ "plan(s",
5471
+ "planner",
5472
+ "planning",
5473
+ "plans",
5474
+ "platform",
5475
+ "platforms",
5476
+ "play",
5477
+ "player",
5478
+ "plc",
5479
+ "ple",
5480
+ "please",
5481
+ "plots",
5482
+ "ploty",
5483
+ "plus",
5484
+ "plusMain",
5485
+ "plusmain",
5486
+ "plusses",
5487
+ "ply",
5488
+ "pm",
5489
+ "pmc",
5490
+ "pmg",
5491
+ "po",
5492
+ "point",
5493
+ "point32health",
5494
+ "points",
5495
+ "policies",
5496
+ "policy",
5497
+ "political",
5498
+ "poly",
5499
+ "pon",
5500
+ "population",
5501
+ "portability",
5502
+ "portfolio",
5503
+ "pos",
5504
+ "position",
5505
+ "positioned",
5506
+ "positions",
5507
+ "positive",
5508
+ "positively",
5509
+ "positivity",
5510
+ "possess",
5511
+ "possible",
5512
+ "post",
5513
+ "posted",
5514
+ "poster",
5515
+ "posting",
5516
+ "postrgres",
5517
+ "pot",
5518
+ "potential",
5519
+ "potentially",
5520
+ "pounds",
5521
+ "power",
5522
+ "powerbi",
5523
+ "powered",
5524
+ "powerpoint",
5525
+ "pps",
5526
+ "pr.",
5527
+ "practical",
5528
+ "practice",
5529
+ "practices",
5530
+ "practitioners",
5531
+ "pragmatic",
5532
+ "pre",
5533
+ "precedence",
5534
+ "precise",
5535
+ "precision",
5536
+ "predict",
5537
+ "predictable",
5538
+ "predictive",
5539
+ "prefer",
5540
+ "preferably",
5541
+ "preference",
5542
+ "preferences",
5543
+ "preferred",
5544
+ "pregnancy",
5545
+ "prem",
5546
+ "premier",
5547
+ "premium",
5548
+ "prepare",
5549
+ "preparedness",
5550
+ "prepares",
5551
+ "preparing",
5552
+ "preprocess",
5553
+ "prescreen",
5554
+ "prescription",
5555
+ "present",
5556
+ "presentation",
5557
+ "presentations",
5558
+ "presenting",
5559
+ "prestigious",
5560
+ "pretending",
5561
+ "prevent",
5562
+ "preventive",
5563
+ "previous",
5564
+ "price",
5565
+ "pricing",
5566
+ "pride",
5567
+ "primarily",
5568
+ "primary",
5569
+ "principle",
5570
+ "principles",
5571
+ "printers",
5572
+ "prior",
5573
+ "priorities",
5574
+ "prioritization",
5575
+ "prioritize",
5576
+ "prioritized",
5577
+ "priority",
5578
+ "privacy",
5579
+ "private",
5580
+ "privately",
5581
+ "prn",
5582
+ "proactive",
5583
+ "proactively",
5584
+ "probability",
5585
+ "problem",
5586
+ "problems",
5587
+ "procedures",
5588
+ "proceed",
5589
+ "process",
5590
+ "processes",
5591
+ "processing",
5592
+ "produce",
5593
+ "producing",
5594
+ "product",
5595
+ "product/",
5596
+ "production",
5597
+ "productivity",
5598
+ "products",
5599
+ "productsActively",
5600
+ "productsactively",
5601
+ "prof",
5602
+ "prof.",
5603
+ "professional",
5604
+ "professionalism",
5605
+ "professionally",
5606
+ "professionals",
5607
+ "proficiency",
5608
+ "proficient",
5609
+ "profile",
5610
+ "profiles",
5611
+ "profiling",
5612
+ "profit",
5613
+ "program",
5614
+ "programming",
5615
+ "programs",
5616
+ "progress",
5617
+ "progressive",
5618
+ "prohibit",
5619
+ "prohibited",
5620
+ "project",
5621
+ "projected",
5622
+ "projects",
5623
+ "projects-",
5624
+ "prominent",
5625
+ "promise",
5626
+ "promote",
5627
+ "promotes",
5628
+ "proof",
5629
+ "property",
5630
+ "proposals",
5631
+ "propose",
5632
+ "proposed",
5633
+ "proposes",
5634
+ "proposition",
5635
+ "prospective",
5636
+ "prosperity",
5637
+ "protected",
5638
+ "protection",
5639
+ "protocols",
5640
+ "prototypes",
5641
+ "proud",
5642
+ "proudly",
5643
+ "proven",
5644
+ "provide",
5645
+ "provided",
5646
+ "provider",
5647
+ "providers",
5648
+ "provides",
5649
+ "providing",
5650
+ "provision",
5651
+ "pss",
5652
+ "psychology",
5653
+ "pt.",
5654
+ "pth",
5655
+ "pto",
5656
+ "pts",
5657
+ "public",
5658
+ "publicEnsures",
5659
+ "publicensures",
5660
+ "published",
5661
+ "pull",
5662
+ "purchase",
5663
+ "purchasing",
5664
+ "purpose",
5665
+ "purposes",
5666
+ "pursuit",
5667
+ "pushing",
5668
+ "put",
5669
+ "putting",
5670
+ "python",
5671
+ "q",
5672
+ "q.",
5673
+ "q1",
5674
+ "qa",
5675
+ "qad",
5676
+ "qlik",
5677
+ "qlikview",
5678
+ "qual",
5679
+ "qualification",
5680
+ "qualifications",
5681
+ "qualified",
5682
+ "qualitative",
5683
+ "qualities",
5684
+ "quality",
5685
+ "qualtrics",
5686
+ "quantifying",
5687
+ "quantitative",
5688
+ "quantity",
5689
+ "que",
5690
+ "queries",
5691
+ "query",
5692
+ "querying",
5693
+ "question",
5694
+ "question(s",
5695
+ "questions",
5696
+ "quickly",
5697
+ "quicksight",
5698
+ "quo",
5699
+ "quote",
5700
+ "quotes",
5701
+ "r",
5702
+ "r.",
5703
+ "r3543",
5704
+ "r5758",
5705
+ "rBI",
5706
+ "race",
5707
+ "rad",
5708
+ "ral",
5709
+ "ram",
5710
+ "ramachandran",
5711
+ "ran",
5712
+ "range",
5713
+ "ranges",
5714
+ "ranked",
5715
+ "ranking",
5716
+ "rapid",
5717
+ "rapidly",
5718
+ "rates",
5719
+ "rating",
5720
+ "rational",
5721
+ "rationales",
5722
+ "raw",
5723
+ "rbi",
5724
+ "rce",
5725
+ "rch",
5726
+ "rdbms",
5727
+ "rds",
5728
+ "re",
5729
+ "re.",
5730
+ "rea",
5731
+ "reach",
5732
+ "reaching",
5733
+ "react",
5734
+ "read",
5735
+ "readiness",
5736
+ "ready",
5737
+ "real",
5738
+ "really",
5739
+ "reason",
5740
+ "reasonable",
5741
+ "reasons",
5742
+ "receive",
5743
+ "received",
5744
+ "receives",
5745
+ "recent",
5746
+ "recognition",
5747
+ "recognitions",
5748
+ "recognize",
5749
+ "recognized",
5750
+ "recognizes",
5751
+ "recognizing",
5752
+ "recommend",
5753
+ "recommendations",
5754
+ "recommended",
5755
+ "recommending",
5756
+ "recommends",
5757
+ "reconciliation",
5758
+ "reconciliations",
5759
+ "reconciling",
5760
+ "record",
5761
+ "recorded",
5762
+ "records",
5763
+ "recovery",
5764
+ "recoveryResponsible",
5765
+ "recoveryresponsible",
5766
+ "recruiter",
5767
+ "recruiters",
5768
+ "recruiting",
5769
+ "recruitment",
5770
+ "recurring",
5771
+ "red",
5772
+ "redesign",
5773
+ "reducing",
5774
+ "reduction",
5775
+ "ree",
5776
+ "reengineering",
5777
+ "reference",
5778
+ "referral",
5779
+ "refine",
5780
+ "reflect",
5781
+ "reflects",
5782
+ "reform",
5783
+ "regard",
5784
+ "regarded",
5785
+ "regarding",
5786
+ "regardless",
5787
+ "regards",
5788
+ "region",
5789
+ "regional",
5790
+ "registry",
5791
+ "regression",
5792
+ "regular",
5793
+ "regulations",
5794
+ "regulatory",
5795
+ "reimagine",
5796
+ "reimagining",
5797
+ "reimbursement",
5798
+ "rel",
5799
+ "relate",
5800
+ "related",
5801
+ "relates",
5802
+ "relational",
5803
+ "relationship",
5804
+ "relationships",
5805
+ "relative",
5806
+ "relaxed",
5807
+ "release",
5808
+ "releases",
5809
+ "relevant",
5810
+ "reliability",
5811
+ "reliable",
5812
+ "religion",
5813
+ "religious",
5814
+ "relocation",
5815
+ "rem",
5816
+ "remain",
5817
+ "remarkable",
5818
+ "remediation",
5819
+ "remedy",
5820
+ "remote",
5821
+ "remotely",
5822
+ "remove",
5823
+ "removing",
5824
+ "rep",
5825
+ "rep.",
5826
+ "repetitive",
5827
+ "replicated",
5828
+ "report",
5829
+ "reported",
5830
+ "reporting",
5831
+ "reports",
5832
+ "repos",
5833
+ "repository",
5834
+ "represent",
5835
+ "representation",
5836
+ "representations",
5837
+ "representative",
5838
+ "represents",
5839
+ "req",
5840
+ "request",
5841
+ "requested",
5842
+ "requests",
5843
+ "require",
5844
+ "required",
5845
+ "requiredReporting",
5846
+ "requiredreporting",
5847
+ "requirement",
5848
+ "requirements",
5849
+ "requires",
5850
+ "requiring",
5851
+ "requisition",
5852
+ "res",
5853
+ "research",
5854
+ "researchers",
5855
+ "researches",
5856
+ "researching",
5857
+ "reserves",
5858
+ "reshape",
5859
+ "residency",
5860
+ "resident",
5861
+ "residents",
5862
+ "resilience",
5863
+ "resiliency",
5864
+ "resilient",
5865
+ "resolution",
5866
+ "resolve",
5867
+ "resolving",
5868
+ "resource",
5869
+ "resourceful",
5870
+ "resourcefulness",
5871
+ "resources",
5872
+ "resourcing",
5873
+ "respect",
5874
+ "respected",
5875
+ "respecting",
5876
+ "respond",
5877
+ "responds",
5878
+ "response",
5879
+ "responsibilities",
5880
+ "responsibilitiesmaintains",
5881
+ "responsibility",
5882
+ "responsible",
5883
+ "responsive",
5884
+ "restructure",
5885
+ "result",
5886
+ "resulting",
5887
+ "results",
5888
+ "resultssm",
5889
+ "resume",
5890
+ "resumes",
5891
+ "ret",
5892
+ "retail",
5893
+ "retailer",
5894
+ "retaining",
5895
+ "retention",
5896
+ "retired",
5897
+ "retirement",
5898
+ "retrieval",
5899
+ "return",
5900
+ "rev",
5901
+ "rev.",
5902
+ "revenue",
5903
+ "reversibility",
5904
+ "review",
5905
+ "reviewed",
5906
+ "reviewing",
5907
+ "reviews",
5908
+ "reviews-",
5909
+ "revisions",
5910
+ "reward",
5911
+ "rewarded",
5912
+ "rewarding",
5913
+ "rewards",
5914
+ "rge",
5915
+ "rgs",
5916
+ "rgy",
5917
+ "rhythm",
5918
+ "ria",
5919
+ "rich",
5920
+ "richness",
5921
+ "rid",
5922
+ "right",
5923
+ "rights",
5924
+ "rigorous",
5925
+ "ril",
5926
+ "rim",
5927
+ "rio",
5928
+ "risk",
5929
+ "risks",
5930
+ "rit",
5931
+ "river",
5932
+ "riverside",
5933
+ "riz",
5934
+ "rk.",
5935
+ "rks",
5936
+ "rld",
5937
+ "rly",
5938
+ "rms",
5939
+ "rns",
5940
+ "road",
5941
+ "roadblocks",
5942
+ "roadmap",
5943
+ "robotic",
5944
+ "robotics",
5945
+ "robust",
5946
+ "rochester",
5947
+ "rof",
5948
+ "rol",
5949
+ "role",
5950
+ "roles",
5951
+ "roll",
5952
+ "rollout",
5953
+ "rom",
5954
+ "room",
5955
+ "ros",
5956
+ "roster",
5957
+ "rotating",
5958
+ "round",
5959
+ "routines",
5960
+ "row",
5961
+ "rp.",
5962
+ "rps",
5963
+ "rs.",
5964
+ "rse",
5965
+ "rst",
5966
+ "rt-",
5967
+ "rth",
5968
+ "rts",
5969
+ "rty",
5970
+ "rug",
5971
+ "rules",
5972
+ "rum",
5973
+ "run",
5974
+ "runs",
5975
+ "rus",
5976
+ "rve",
5977
+ "ryx",
5978
+ "r\u2019s",
5979
+ "s",
5980
+ "s's",
5981
+ "s.",
5982
+ "s.c.",
5983
+ "sSM",
5984
+ "sa",
5985
+ "safe",
5986
+ "safety",
5987
+ "salary",
5988
+ "sales",
5989
+ "salesforce",
5990
+ "sam",
5991
+ "san",
5992
+ "sanctions",
5993
+ "sap",
5994
+ "sas",
5995
+ "sat",
5996
+ "satisfaction",
5997
+ "satisfactory",
5998
+ "saudi",
5999
+ "saving",
6000
+ "savings",
6001
+ "savvy",
6002
+ "say",
6003
+ "sca",
6004
+ "scala",
6005
+ "scalable",
6006
+ "scale",
6007
+ "scam",
6008
+ "scams",
6009
+ "scenario",
6010
+ "scenarios",
6011
+ "schedule",
6012
+ "scheduled",
6013
+ "schedules",
6014
+ "scheduling",
6015
+ "schema",
6016
+ "schemas",
6017
+ "scholarships",
6018
+ "school",
6019
+ "sci",
6020
+ "science",
6021
+ "sciences",
6022
+ "scientific",
6023
+ "scientist",
6024
+ "scientists",
6025
+ "scif",
6026
+ "scikit",
6027
+ "scipy",
6028
+ "scmprimary",
6029
+ "scope",
6030
+ "scored",
6031
+ "screen",
6032
+ "screenings",
6033
+ "scripting",
6034
+ "scripts",
6035
+ "scrubs",
6036
+ "scrum",
6037
+ "sdg",
6038
+ "sdlc",
6039
+ "se",
6040
+ "seamless",
6041
+ "search",
6042
+ "seating",
6043
+ "secondary",
6044
+ "sectors",
6045
+ "secure",
6046
+ "securing",
6047
+ "security",
6048
+ "sed",
6049
+ "see",
6050
+ "seeking",
6051
+ "seeks",
6052
+ "segment",
6053
+ "segmentation",
6054
+ "select",
6055
+ "selected",
6056
+ "selection",
6057
+ "self",
6058
+ "selves",
6059
+ "sen",
6060
+ "sen.",
6061
+ "send",
6062
+ "senior",
6063
+ "seniority",
6064
+ "seniors",
6065
+ "sense",
6066
+ "sensitive",
6067
+ "sensitivity",
6068
+ "sep",
6069
+ "sep.",
6070
+ "sept",
6071
+ "sept.",
6072
+ "september",
6073
+ "sequence",
6074
+ "ser",
6075
+ "series",
6076
+ "serious",
6077
+ "servant",
6078
+ "serve",
6079
+ "served",
6080
+ "server",
6081
+ "serves",
6082
+ "service",
6083
+ "services",
6084
+ "serving",
6085
+ "ses",
6086
+ "sessions",
6087
+ "set",
6088
+ "setbacks",
6089
+ "sets",
6090
+ "setting",
6091
+ "settings",
6092
+ "setup",
6093
+ "setups",
6094
+ "seven",
6095
+ "sex",
6096
+ "sexual",
6097
+ "sey",
6098
+ "sf",
6099
+ "sh.",
6100
+ "sha",
6101
+ "shall",
6102
+ "shape",
6103
+ "share",
6104
+ "shared",
6105
+ "sharepoint",
6106
+ "shares",
6107
+ "sharing",
6108
+ "sharpen",
6109
+ "she",
6110
+ "she's",
6111
+ "sheets",
6112
+ "she\u2019s",
6113
+ "shift",
6114
+ "shifts",
6115
+ "ship",
6116
+ "short",
6117
+ "short-",
6118
+ "shortages",
6119
+ "should",
6120
+ "show",
6121
+ "shy",
6122
+ "sia",
6123
+ "sic",
6124
+ "sick",
6125
+ "side",
6126
+ "significant",
6127
+ "similar",
6128
+ "simple",
6129
+ "simplify",
6130
+ "simplifying",
6131
+ "simply",
6132
+ "simulation",
6133
+ "simultaneously",
6134
+ "since",
6135
+ "singapore",
6136
+ "sis",
6137
+ "sit",
6138
+ "site",
6139
+ "sites",
6140
+ "sitting",
6141
+ "situation",
6142
+ "situations",
6143
+ "six",
6144
+ "size",
6145
+ "sizes",
6146
+ "sizing",
6147
+ "skill",
6148
+ "skilled",
6149
+ "skills",
6150
+ "sks",
6151
+ "slas",
6152
+ "sleeves",
6153
+ "slides",
6154
+ "sly",
6155
+ "small",
6156
+ "smart",
6157
+ "sme",
6158
+ "smooth",
6159
+ "sms",
6160
+ "snowflake",
6161
+ "so",
6162
+ "soa",
6163
+ "soc2",
6164
+ "social",
6165
+ "soft skills",
6166
+ "software",
6167
+ "solicit",
6168
+ "solid",
6169
+ "solution",
6170
+ "solutions",
6171
+ "solve",
6172
+ "solver",
6173
+ "solvers",
6174
+ "solving",
6175
+ "some",
6176
+ "someone",
6177
+ "somethin",
6178
+ "somethin'",
6179
+ "something",
6180
+ "somethin\u2019",
6181
+ "son",
6182
+ "sooner",
6183
+ "sop",
6184
+ "sor",
6185
+ "sorting",
6186
+ "sought",
6187
+ "sound",
6188
+ "source",
6189
+ "sourced",
6190
+ "sources",
6191
+ "sourcing",
6192
+ "space",
6193
+ "span",
6194
+ "spanish",
6195
+ "spans",
6196
+ "spark",
6197
+ "special",
6198
+ "specialists",
6199
+ "specialization",
6200
+ "specialized",
6201
+ "specializes",
6202
+ "specialty",
6203
+ "specific",
6204
+ "specifically",
6205
+ "specification",
6206
+ "specifications",
6207
+ "specifics",
6208
+ "specified",
6209
+ "spectrum",
6210
+ "speed",
6211
+ "spend",
6212
+ "spending",
6213
+ "spirit",
6214
+ "sponsor",
6215
+ "sponsored",
6216
+ "sponsors",
6217
+ "sponsorship",
6218
+ "spot",
6219
+ "spotfire",
6220
+ "spotlight",
6221
+ "spouse",
6222
+ "spouses",
6223
+ "spread",
6224
+ "spreads",
6225
+ "spreadsheets",
6226
+ "spring",
6227
+ "sprint",
6228
+ "sps",
6229
+ "spss",
6230
+ "sql",
6231
+ "sr",
6232
+ "srs",
6233
+ "ss.",
6234
+ "ssis",
6235
+ "ssm",
6236
+ "ssms",
6237
+ "ssrs",
6238
+ "st",
6239
+ "st.",
6240
+ "stack",
6241
+ "staff",
6242
+ "staffigo",
6243
+ "staffing",
6244
+ "stage",
6245
+ "stakeholder",
6246
+ "stakeholders",
6247
+ "standard",
6248
+ "standardization",
6249
+ "standardized",
6250
+ "standardizing",
6251
+ "standards",
6252
+ "stands",
6253
+ "star",
6254
+ "stars",
6255
+ "start",
6256
+ "starting",
6257
+ "state",
6258
+ "statement",
6259
+ "states",
6260
+ "statistical",
6261
+ "statistics",
6262
+ "status",
6263
+ "stay",
6264
+ "staying",
6265
+ "stays",
6266
+ "ste",
6267
+ "stem",
6268
+ "step",
6269
+ "steps",
6270
+ "steward",
6271
+ "stock",
6272
+ "storage",
6273
+ "store",
6274
+ "stories",
6275
+ "storing",
6276
+ "story",
6277
+ "storytelling",
6278
+ "straight",
6279
+ "straightforward",
6280
+ "strategic",
6281
+ "strategies",
6282
+ "strategy",
6283
+ "streamline",
6284
+ "strength",
6285
+ "strengths",
6286
+ "striving",
6287
+ "strong",
6288
+ "strongly",
6289
+ "structure",
6290
+ "structured",
6291
+ "structures",
6292
+ "sts",
6293
+ "stt",
6294
+ "studio",
6295
+ "study",
6296
+ "studying",
6297
+ "sty",
6298
+ "style",
6299
+ "styles",
6300
+ "subject",
6301
+ "submission",
6302
+ "submit",
6303
+ "submits",
6304
+ "submitting",
6305
+ "subsequently",
6306
+ "subsidiaries",
6307
+ "substitution",
6308
+ "succeed",
6309
+ "success",
6310
+ "successful",
6311
+ "successfully",
6312
+ "such",
6313
+ "sue",
6314
+ "suit",
6315
+ "suitable",
6316
+ "suite",
6317
+ "suites",
6318
+ "summaries",
6319
+ "summarization",
6320
+ "summarize",
6321
+ "summary",
6322
+ "superior",
6323
+ "supervised",
6324
+ "supervises",
6325
+ "supervision",
6326
+ "supervisor",
6327
+ "supervisory",
6328
+ "supplement",
6329
+ "supplier",
6330
+ "supplierResponsible",
6331
+ "supplierresponsible",
6332
+ "suppliers",
6333
+ "suppliersResponsible",
6334
+ "suppliersresponsible",
6335
+ "supply",
6336
+ "support",
6337
+ "supporting",
6338
+ "supportive",
6339
+ "supports",
6340
+ "sure",
6341
+ "surge",
6342
+ "surprise",
6343
+ "survey",
6344
+ "surveys",
6345
+ "sus",
6346
+ "suspicious",
6347
+ "sustainability",
6348
+ "sustainable",
6349
+ "sweep",
6350
+ "synchronicity",
6351
+ "synthesis",
6352
+ "synthesize",
6353
+ "synthesizing",
6354
+ "sys",
6355
+ "system",
6356
+ "systemCommunicates",
6357
+ "systematically",
6358
+ "systemcommunicates",
6359
+ "systems",
6360
+ "s\u2019s",
6361
+ "t",
6362
+ "t's",
6363
+ "t(s",
6364
+ "t.",
6365
+ "ta",
6366
+ "table",
6367
+ "tableau",
6368
+ "tables",
6369
+ "tabulate",
6370
+ "tackle",
6371
+ "tackling",
6372
+ "tah",
6373
+ "tailor",
6374
+ "tailored",
6375
+ "take",
6376
+ "takes",
6377
+ "taking",
6378
+ "tal",
6379
+ "talend",
6380
+ "talent",
6381
+ "talentboost",
6382
+ "talented",
6383
+ "talentify",
6384
+ "talents",
6385
+ "talk",
6386
+ "tangible",
6387
+ "tapping",
6388
+ "tar",
6389
+ "target",
6390
+ "targeting",
6391
+ "targets",
6392
+ "task",
6393
+ "tasks",
6394
+ "tax",
6395
+ "taxonomy",
6396
+ "tay",
6397
+ "tc2",
6398
+ "tch",
6399
+ "td.",
6400
+ "team",
6401
+ "teammates",
6402
+ "teams",
6403
+ "teams-",
6404
+ "teamwork",
6405
+ "tech",
6406
+ "technical",
6407
+ "technically",
6408
+ "technique",
6409
+ "techniques",
6410
+ "techniques/",
6411
+ "technological",
6412
+ "technologies",
6413
+ "technology",
6414
+ "technology-",
6415
+ "ted",
6416
+ "tee",
6417
+ "telecom",
6418
+ "telecommunications",
6419
+ "tell",
6420
+ "telling",
6421
+ "tem",
6422
+ "tempe",
6423
+ "tempo",
6424
+ "ten",
6425
+ "tenn",
6426
+ "tenn.",
6427
+ "tep",
6428
+ "ter",
6429
+ "teradata",
6430
+ "term",
6431
+ "terms",
6432
+ "terrific",
6433
+ "tes",
6434
+ "test",
6435
+ "testing",
6436
+ "tests",
6437
+ "text",
6438
+ "than",
6439
+ "thanks",
6440
+ "that",
6441
+ "that's",
6442
+ "that\u2019s",
6443
+ "the",
6444
+ "their",
6445
+ "them",
6446
+ "then",
6447
+ "there",
6448
+ "there's",
6449
+ "there\u2019s",
6450
+ "these",
6451
+ "they",
6452
+ "thief",
6453
+ "thing",
6454
+ "things",
6455
+ "think",
6456
+ "thinker",
6457
+ "thinkers",
6458
+ "thinking",
6459
+ "third",
6460
+ "this",
6461
+ "this's",
6462
+ "this\u2019s",
6463
+ "thm",
6464
+ "thorough",
6465
+ "thoroughly",
6466
+ "those",
6467
+ "thought",
6468
+ "thoughtful",
6469
+ "thoughts",
6470
+ "threats",
6471
+ "three",
6472
+ "thresholds",
6473
+ "thrive",
6474
+ "thrived",
6475
+ "through",
6476
+ "throughout",
6477
+ "throughput",
6478
+ "ths",
6479
+ "tic",
6480
+ "tie",
6481
+ "ties",
6482
+ "tight",
6483
+ "til",
6484
+ "time",
6485
+ "time/",
6486
+ "timelines",
6487
+ "timely",
6488
+ "times",
6489
+ "timetables",
6490
+ "title",
6491
+ "titles",
6492
+ "tle",
6493
+ "tly",
6494
+ "tml",
6495
+ "to",
6496
+ "toad",
6497
+ "today",
6498
+ "together",
6499
+ "ton",
6500
+ "tool",
6501
+ "tooling",
6502
+ "tools",
6503
+ "tools and technologies",
6504
+ "tools(such",
6505
+ "top",
6506
+ "top-5",
6507
+ "tor",
6508
+ "tosca",
6509
+ "total",
6510
+ "touch",
6511
+ "touchless",
6512
+ "toward",
6513
+ "towards",
6514
+ "tpas",
6515
+ "tq+",
6516
+ "tqb",
6517
+ "trace",
6518
+ "traceability",
6519
+ "track",
6520
+ "tracking",
6521
+ "trade",
6522
+ "trading",
6523
+ "traditional",
6524
+ "traffic",
6525
+ "train",
6526
+ "training",
6527
+ "traits",
6528
+ "transaction",
6529
+ "transactional",
6530
+ "transactions",
6531
+ "transfer",
6532
+ "transform",
6533
+ "transformation",
6534
+ "transformational",
6535
+ "transformations",
6536
+ "transforming",
6537
+ "transition",
6538
+ "transitioning",
6539
+ "translate",
6540
+ "translates",
6541
+ "translating",
6542
+ "transparency",
6543
+ "transparent",
6544
+ "transportation",
6545
+ "travel",
6546
+ "treatment",
6547
+ "trend",
6548
+ "trends",
6549
+ "tri",
6550
+ "triage",
6551
+ "triangulate",
6552
+ "triple",
6553
+ "troubleshooting",
6554
+ "troves",
6555
+ "truly",
6556
+ "trust",
6557
+ "trusted",
6558
+ "trusting",
6559
+ "truth",
6560
+ "try",
6561
+ "trying",
6562
+ "ts",
6563
+ "ts-",
6564
+ "tte",
6565
+ "ttn",
6566
+ "tufts",
6567
+ "tuition",
6568
+ "tum",
6569
+ "tuning",
6570
+ "tup",
6571
+ "turn",
6572
+ "turnaround",
6573
+ "turns",
6574
+ "tus",
6575
+ "two",
6576
+ "ty-",
6577
+ "type",
6578
+ "types",
6579
+ "typical",
6580
+ "typically",
6581
+ "tyson",
6582
+ "t\u2019s",
6583
+ "u",
6584
+ "u.",
6585
+ "u.s.",
6586
+ "ual",
6587
+ "uat",
6588
+ "ube",
6589
+ "ubs",
6590
+ "uce",
6591
+ "uch",
6592
+ "uct",
6593
+ "ude",
6594
+ "udi",
6595
+ "udy",
6596
+ "ued",
6597
+ "ues",
6598
+ "uff",
6599
+ "ug.",
6600
+ "uga",
6601
+ "ugh",
6602
+ "uis",
6603
+ "uit",
6604
+ "uiv",
6605
+ "ul.",
6606
+ "uld",
6607
+ "ule",
6608
+ "ulk",
6609
+ "ull",
6610
+ "ult",
6611
+ "ultimate",
6612
+ "uly",
6613
+ "ume",
6614
+ "un.",
6615
+ "unable",
6616
+ "unanticipated",
6617
+ "uncover",
6618
+ "und",
6619
+ "under",
6620
+ "undergraduate",
6621
+ "underlying",
6622
+ "understand",
6623
+ "understanding",
6624
+ "understandings",
6625
+ "understands",
6626
+ "understood",
6627
+ "une",
6628
+ "union",
6629
+ "unique",
6630
+ "uniquely",
6631
+ "unit",
6632
+ "united",
6633
+ "university",
6634
+ "unless",
6635
+ "unlock",
6636
+ "unlocking",
6637
+ "unrelenting",
6638
+ "uns",
6639
+ "unsolicited",
6640
+ "unstructured",
6641
+ "unt",
6642
+ "until",
6643
+ "unused",
6644
+ "unusual",
6645
+ "up",
6646
+ "update",
6647
+ "updated",
6648
+ "updates",
6649
+ "upgrade",
6650
+ "upgraded",
6651
+ "upload",
6652
+ "uploading",
6653
+ "upon",
6654
+ "upper",
6655
+ "ups",
6656
+ "upstream",
6657
+ "upt",
6658
+ "ure",
6659
+ "urgency",
6660
+ "urn",
6661
+ "urs",
6662
+ "ury",
6663
+ "us",
6664
+ "usa",
6665
+ "usability",
6666
+ "usage",
6667
+ "usd",
6668
+ "use",
6669
+ "used",
6670
+ "user",
6671
+ "users",
6672
+ "uses",
6673
+ "using",
6674
+ "uss",
6675
+ "ust",
6676
+ "usually",
6677
+ "utah",
6678
+ "ute",
6679
+ "uth",
6680
+ "utilization",
6681
+ "utilize",
6682
+ "utilizes",
6683
+ "utilizing",
6684
+ "uty",
6685
+ "ux",
6686
+ "v",
6687
+ "v.",
6688
+ "v.s",
6689
+ "v.s.",
6690
+ "v.v",
6691
+ "v_v",
6692
+ "va",
6693
+ "va.",
6694
+ "vacation",
6695
+ "vaccinated",
6696
+ "vaccination",
6697
+ "vaccine",
6698
+ "val",
6699
+ "valid",
6700
+ "validate",
6701
+ "validated",
6702
+ "validates",
6703
+ "validating",
6704
+ "validation",
6705
+ "validations",
6706
+ "validity",
6707
+ "valuable",
6708
+ "valuation",
6709
+ "value",
6710
+ "values",
6711
+ "valuing",
6712
+ "vanguard",
6713
+ "variables",
6714
+ "variance",
6715
+ "variances",
6716
+ "variancesTracks",
6717
+ "variancestracks",
6718
+ "variate",
6719
+ "varied",
6720
+ "variety",
6721
+ "various",
6722
+ "vary",
6723
+ "varying",
6724
+ "vast",
6725
+ "vatica",
6726
+ "vba",
6727
+ "vbc",
6728
+ "ve",
6729
+ "ved",
6730
+ "vel",
6731
+ "ven",
6732
+ "vendor",
6733
+ "vendors",
6734
+ "ver",
6735
+ "verbal",
6736
+ "verification",
6737
+ "verifies",
6738
+ "verify",
6739
+ "vernacular",
6740
+ "versed",
6741
+ "version",
6742
+ "vertical",
6743
+ "very",
6744
+ "ves",
6745
+ "veteran",
6746
+ "veterans",
6747
+ "vey",
6748
+ "vhn",
6749
+ "via",
6750
+ "vid",
6751
+ "view",
6752
+ "vil",
6753
+ "vin",
6754
+ "virus",
6755
+ "visa",
6756
+ "visibility",
6757
+ "vision",
6758
+ "visit",
6759
+ "visitors",
6760
+ "visits",
6761
+ "visual",
6762
+ "visualising",
6763
+ "visualization",
6764
+ "visualizations",
6765
+ "visualize",
6766
+ "visualizing",
6767
+ "visually",
6768
+ "visuals",
6769
+ "voice",
6770
+ "volumes",
6771
+ "volunteer",
6772
+ "vor",
6773
+ "vot",
6774
+ "vs",
6775
+ "vs.",
6776
+ "vvy",
6777
+ "w",
6778
+ "w's",
6779
+ "w(s",
6780
+ "w.",
6781
+ "w/",
6782
+ "w/o",
6783
+ "w2",
6784
+ "wage",
6785
+ "waiting",
6786
+ "walls",
6787
+ "walmart",
6788
+ "walton",
6789
+ "want",
6790
+ "wanted",
6791
+ "wants",
6792
+ "warehouse",
6793
+ "warehousing",
6794
+ "warm",
6795
+ "was",
6796
+ "wash",
6797
+ "wash.",
6798
+ "waste",
6799
+ "waterfall",
6800
+ "way",
6801
+ "ways",
6802
+ "we",
6803
+ "wearing",
6804
+ "web",
6805
+ "webi",
6806
+ "website",
6807
+ "wed",
6808
+ "week",
6809
+ "weekends",
6810
+ "weekly",
6811
+ "weeks",
6812
+ "weight",
6813
+ "well",
6814
+ "wellbeing",
6815
+ "wellness",
6816
+ "wer",
6817
+ "were",
6818
+ "wfh",
6819
+ "what",
6820
+ "what's",
6821
+ "what\u2019s",
6822
+ "when",
6823
+ "when's",
6824
+ "whenever",
6825
+ "when\u2019s",
6826
+ "where",
6827
+ "where's",
6828
+ "where\u2019s",
6829
+ "which",
6830
+ "while",
6831
+ "who",
6832
+ "who's",
6833
+ "whole",
6834
+ "wholesale",
6835
+ "whom",
6836
+ "whomever",
6837
+ "who\u2019s",
6838
+ "why",
6839
+ "why's",
6840
+ "why\u2019s",
6841
+ "wide",
6842
+ "widely",
6843
+ "will",
6844
+ "willingly",
6845
+ "willingness",
6846
+ "wim",
6847
+ "win",
6848
+ "winner",
6849
+ "winning",
6850
+ "wis",
6851
+ "wis.",
6852
+ "with",
6853
+ "within",
6854
+ "without",
6855
+ "wk",
6856
+ "wly",
6857
+ "wns",
6858
+ "wo",
6859
+ "women",
6860
+ "wonder",
6861
+ "word",
6862
+ "work",
6863
+ "workday",
6864
+ "worked",
6865
+ "workflow",
6866
+ "workflows",
6867
+ "workforce",
6868
+ "workfront",
6869
+ "working",
6870
+ "workplace",
6871
+ "workplaces",
6872
+ "works",
6873
+ "workstation",
6874
+ "world",
6875
+ "worldwide",
6876
+ "would",
6877
+ "wrangling",
6878
+ "write",
6879
+ "writes",
6880
+ "writhing",
6881
+ "writing",
6882
+ "written",
6883
+ "ws-",
6884
+ "wth",
6885
+ "www.johnsoncontrols.com/careers",
6886
+ "w\u2019s",
6887
+ "x",
6888
+ "x&x",
6889
+ "x'",
6890
+ "x'x",
6891
+ "x'xxxx",
6892
+ "x.",
6893
+ "x.X",
6894
+ "x.d",
6895
+ "x.x",
6896
+ "x.x.",
6897
+ "x/",
6898
+ "x/x",
6899
+ "xD",
6900
+ "xDD",
6901
+ "xX",
6902
+ "xXX",
6903
+ "xXxxxx",
6904
+ "x_X",
6905
+ "x_d",
6906
+ "x_x",
6907
+ "xd",
6908
+ "xdd",
6909
+ "xdddd",
6910
+ "xdx",
6911
+ "xdx.",
6912
+ "xdxx",
6913
+ "xed",
6914
+ "xes",
6915
+ "xml",
6916
+ "xx",
6917
+ "xx'",
6918
+ "xx'x",
6919
+ "xx'xx",
6920
+ "xx.",
6921
+ "xxd",
6922
+ "xxx",
6923
+ "xxx&x",
6924
+ "xxx'x",
6925
+ "xxx(xxxx",
6926
+ "xxx-d",
6927
+ "xxx.",
6928
+ "xxx.xxxx.xxx/xxxx",
6929
+ "xxx/xx",
6930
+ "xxxd",
6931
+ "xxxx",
6932
+ "xxxx'",
6933
+ "xxxx'x",
6934
+ "xxxx(x",
6935
+ "xxxx(xx",
6936
+ "xxxx(xxx",
6937
+ "xxxx(xxxx",
6938
+ "xxxx+",
6939
+ "xxxx+xxxx",
6940
+ "xxxx-",
6941
+ "xxxx-dd",
6942
+ "xxxx.xxxx@xxxx.xxx",
6943
+ "xxxx/",
6944
+ "xxxx://xxx.xxxx.xxx",
6945
+ "xxxx@xxxx.xxx",
6946
+ "xxxxXxxx",
6947
+ "xxxxXxxxx",
6948
+ "xxxxddxxxx",
6949
+ "xxxx\u2019",
6950
+ "xxxx\u2019x",
6951
+ "xxx\u2019x",
6952
+ "xx\u2019",
6953
+ "xx\u2019x",
6954
+ "xx\u2019xx",
6955
+ "x\u2019",
6956
+ "x\u2019x",
6957
+ "x\u2019xxxx",
6958
+ "x\ufe35x",
6959
+ "y",
6960
+ "y'",
6961
+ "y's",
6962
+ "y.",
6963
+ "year",
6964
+ "years",
6965
+ "yed",
6966
+ "yee",
6967
+ "yer",
6968
+ "yes",
6969
+ "yle",
6970
+ "york",
6971
+ "you",
6972
+ "your",
6973
+ "ype",
6974
+ "yr",
6975
+ "yrs",
6976
+ "yst",
6977
+ "yze",
6978
+ "y\u2019",
6979
+ "y\u2019s",
6980
+ "z",
6981
+ "z.",
6982
+ "zHR",
6983
+ "zed",
6984
+ "zelis",
6985
+ "zes",
6986
+ "zhr",
6987
+ "zones",
6988
+ "|",
6989
+ "}",
6990
+ "\u00a0",
6991
+ "\u00ac",
6992
+ "\u00ac_\u00ac",
6993
+ "\u00ae",
6994
+ "\u00af",
6995
+ "\u00af\\(x)/\u00af",
6996
+ "\u00af\\(\u30c4)/\u00af",
6997
+ "\u00b0",
6998
+ "\u00b0C.",
6999
+ "\u00b0F.",
7000
+ "\u00b0K.",
7001
+ "\u00b0X.",
7002
+ "\u00b0c.",
7003
+ "\u00b0f.",
7004
+ "\u00b0k.",
7005
+ "\u00b0x.",
7006
+ "\u00b7",
7007
+ "\u00e4",
7008
+ "\u00e4.",
7009
+ "\u00f6",
7010
+ "\u00f6.",
7011
+ "\u00fc",
7012
+ "\u00fc.",
7013
+ "\u0ca0",
7014
+ "\u0ca0_\u0ca0",
7015
+ "\u0ca0\ufe35\u0ca0",
7016
+ "\u2013",
7017
+ "\u2014",
7018
+ "\u2018",
7019
+ "\u2018S",
7020
+ "\u2018X",
7021
+ "\u2018s",
7022
+ "\u2018x",
7023
+ "\u2019",
7024
+ "\u2019-(",
7025
+ "\u2019-)",
7026
+ "\u2019Cause",
7027
+ "\u2019Cos",
7028
+ "\u2019Coz",
7029
+ "\u2019Cuz",
7030
+ "\u2019S",
7031
+ "\u2019X",
7032
+ "\u2019Xxx",
7033
+ "\u2019Xxxxx",
7034
+ "\u2019am",
7035
+ "\u2019bout",
7036
+ "\u2019cause",
7037
+ "\u2019cos",
7038
+ "\u2019coz",
7039
+ "\u2019cuz",
7040
+ "\u2019d",
7041
+ "\u2019em",
7042
+ "\u2019ll",
7043
+ "\u2019m",
7044
+ "\u2019nuff",
7045
+ "\u2019re",
7046
+ "\u2019s",
7047
+ "\u2019ve",
7048
+ "\u2019x",
7049
+ "\u2019xx",
7050
+ "\u2019xxx",
7051
+ "\u2019xxxx",
7052
+ "\u2019y",
7053
+ "\u2019\u2019",
7054
+ "\u201c",
7055
+ "\u201d",
7056
+ "\u2022",
7057
+ "\u2026",
7058
+ "\u2122",
7059
+ "\u2501",
7060
+ "\u253b",
7061
+ "\u253b\u2501\u253b",
7062
+ "\u256f",
7063
+ "\u25a1",
7064
+ "\ufe35",
7065
+ "\uff09"
7066
+ ]
vocab/vectors ADDED
Binary file (128 Bytes). View file
 
vocab/vectors.cfg ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+ "mode":"default"
3
+ }