Bharath18 commited on
Commit
322d76c
·
1 Parent(s): f73e8c8

Delete both_models

Browse files
Files changed (39) hide show
  1. both_models/sentence_transformer_model/README.md +0 -88
  2. both_models/sentence_transformer_model/config.json +0 -24
  3. both_models/sentence_transformer_model/config_sentence_transformers.json +0 -7
  4. both_models/sentence_transformer_model/modules.json +0 -20
  5. both_models/sentence_transformer_model/pytorch_model.bin +0 -3
  6. both_models/sentence_transformer_model/sentence_bert_config.json +0 -4
  7. both_models/sentence_transformer_model/special_tokens_map.json +0 -15
  8. both_models/sentence_transformer_model/tokenizer.json +0 -0
  9. both_models/sentence_transformer_model/tokenizer_config.json +0 -15
  10. both_models/sentence_transformer_model/vocab.txt +0 -0
  11. both_models/spacy_ner_model/MANIFEST.in +0 -4
  12. both_models/spacy_ner_model/README.md +0 -34
  13. both_models/spacy_ner_model/en_pipeline.egg-info/PKG-INFO +0 -41
  14. both_models/spacy_ner_model/en_pipeline.egg-info/SOURCES.txt +0 -29
  15. both_models/spacy_ner_model/en_pipeline.egg-info/dependency_links.txt +0 -1
  16. both_models/spacy_ner_model/en_pipeline.egg-info/entry_points.txt +0 -2
  17. both_models/spacy_ner_model/en_pipeline.egg-info/not-zip-safe +0 -1
  18. both_models/spacy_ner_model/en_pipeline.egg-info/requires.txt +0 -1
  19. both_models/spacy_ner_model/en_pipeline.egg-info/top_level.txt +0 -1
  20. both_models/spacy_ner_model/en_pipeline/__init__.py +0 -10
  21. both_models/spacy_ner_model/en_pipeline/en_pipeline-0.0.0/README.md +0 -34
  22. both_models/spacy_ner_model/en_pipeline/en_pipeline-0.0.0/config.cfg +0 -153
  23. both_models/spacy_ner_model/en_pipeline/en_pipeline-0.0.0/entity_ruler/cfg +0 -5
  24. both_models/spacy_ner_model/en_pipeline/en_pipeline-0.0.0/entity_ruler/patterns.jsonl +0 -101
  25. both_models/spacy_ner_model/en_pipeline/en_pipeline-0.0.0/meta.json +0 -68
  26. both_models/spacy_ner_model/en_pipeline/en_pipeline-0.0.0/ner/cfg +0 -13
  27. both_models/spacy_ner_model/en_pipeline/en_pipeline-0.0.0/ner/model +0 -0
  28. both_models/spacy_ner_model/en_pipeline/en_pipeline-0.0.0/ner/moves +0 -1
  29. both_models/spacy_ner_model/en_pipeline/en_pipeline-0.0.0/tok2vec/cfg +0 -3
  30. both_models/spacy_ner_model/en_pipeline/en_pipeline-0.0.0/tok2vec/model +0 -3
  31. both_models/spacy_ner_model/en_pipeline/en_pipeline-0.0.0/tokenizer +0 -3
  32. both_models/spacy_ner_model/en_pipeline/en_pipeline-0.0.0/vocab/key2row +0 -1
  33. both_models/spacy_ner_model/en_pipeline/en_pipeline-0.0.0/vocab/lookups.bin +0 -3
  34. both_models/spacy_ner_model/en_pipeline/en_pipeline-0.0.0/vocab/strings.json +0 -2572
  35. both_models/spacy_ner_model/en_pipeline/en_pipeline-0.0.0/vocab/vectors +0 -0
  36. both_models/spacy_ner_model/en_pipeline/en_pipeline-0.0.0/vocab/vectors.cfg +0 -3
  37. both_models/spacy_ner_model/en_pipeline/meta.json +0 -68
  38. both_models/spacy_ner_model/meta.json +0 -68
  39. both_models/spacy_ner_model/setup.py +0 -72
both_models/sentence_transformer_model/README.md DELETED
@@ -1,88 +0,0 @@
1
- ---
2
- pipeline_tag: sentence-similarity
3
- tags:
4
- - sentence-transformers
5
- - feature-extraction
6
- - sentence-similarity
7
-
8
- ---
9
-
10
- # {MODEL_NAME}
11
-
12
- This is a [sentence-transformers](https://www.SBERT.net) model: It maps sentences & paragraphs to a 768 dimensional dense vector space and can be used for tasks like clustering or semantic search.
13
-
14
- <!--- Describe your model here -->
15
-
16
- ## Usage (Sentence-Transformers)
17
-
18
- Using this model becomes easy when you have [sentence-transformers](https://www.SBERT.net) installed:
19
-
20
- ```
21
- pip install -U sentence-transformers
22
- ```
23
-
24
- Then you can use the model like this:
25
-
26
- ```python
27
- from sentence_transformers import SentenceTransformer
28
- sentences = ["This is an example sentence", "Each sentence is converted"]
29
-
30
- model = SentenceTransformer('{MODEL_NAME}')
31
- embeddings = model.encode(sentences)
32
- print(embeddings)
33
- ```
34
-
35
-
36
-
37
- ## Evaluation Results
38
-
39
- <!--- Describe how your model was evaluated -->
40
-
41
- For an automated evaluation of this model, see the *Sentence Embeddings Benchmark*: [https://seb.sbert.net](https://seb.sbert.net?model_name={MODEL_NAME})
42
-
43
-
44
- ## Training
45
- The model was trained with the parameters:
46
-
47
- **DataLoader**:
48
-
49
- `torch.utils.data.dataloader.DataLoader` of length 1 with parameters:
50
- ```
51
- {'batch_size': 5, 'sampler': 'torch.utils.data.sampler.RandomSampler', 'batch_sampler': 'torch.utils.data.sampler.BatchSampler'}
52
- ```
53
-
54
- **Loss**:
55
-
56
- `sentence_transformers.losses.CosineSimilarityLoss.CosineSimilarityLoss`
57
-
58
- Parameters of the fit()-Method:
59
- ```
60
- {
61
- "epochs": 2,
62
- "evaluation_steps": 1000,
63
- "evaluator": "NoneType",
64
- "max_grad_norm": 1,
65
- "optimizer_class": "<class 'torch.optim.adamw.AdamW'>",
66
- "optimizer_params": {
67
- "lr": 2e-05
68
- },
69
- "scheduler": "WarmupLinear",
70
- "steps_per_epoch": null,
71
- "warmup_steps": 100,
72
- "weight_decay": 0.01
73
- }
74
- ```
75
-
76
-
77
- ## Full Model Architecture
78
- ```
79
- SentenceTransformer(
80
- (0): Transformer({'max_seq_length': 384, 'do_lower_case': False}) with Transformer model: MPNetModel
81
- (1): Pooling({'word_embedding_dimension': 768, 'pooling_mode_cls_token': False, 'pooling_mode_mean_tokens': True, 'pooling_mode_max_tokens': False, 'pooling_mode_mean_sqrt_len_tokens': False})
82
- (2): Normalize()
83
- )
84
- ```
85
-
86
- ## Citing & Authors
87
-
88
- <!--- Describe where people can find more information -->
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
both_models/sentence_transformer_model/config.json DELETED
@@ -1,24 +0,0 @@
1
- {
2
- "_name_or_path": "/Users/bharathkumarnune/.cache/torch/sentence_transformers/sentence-transformers_all-mpnet-base-v2/",
3
- "architectures": [
4
- "MPNetModel"
5
- ],
6
- "attention_probs_dropout_prob": 0.1,
7
- "bos_token_id": 0,
8
- "eos_token_id": 2,
9
- "hidden_act": "gelu",
10
- "hidden_dropout_prob": 0.1,
11
- "hidden_size": 768,
12
- "initializer_range": 0.02,
13
- "intermediate_size": 3072,
14
- "layer_norm_eps": 1e-05,
15
- "max_position_embeddings": 514,
16
- "model_type": "mpnet",
17
- "num_attention_heads": 12,
18
- "num_hidden_layers": 12,
19
- "pad_token_id": 1,
20
- "relative_attention_num_buckets": 32,
21
- "torch_dtype": "float32",
22
- "transformers_version": "4.30.2",
23
- "vocab_size": 30527
24
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
both_models/sentence_transformer_model/config_sentence_transformers.json DELETED
@@ -1,7 +0,0 @@
1
- {
2
- "__version__": {
3
- "sentence_transformers": "2.0.0",
4
- "transformers": "4.6.1",
5
- "pytorch": "1.8.1"
6
- }
7
- }
 
 
 
 
 
 
 
 
both_models/sentence_transformer_model/modules.json DELETED
@@ -1,20 +0,0 @@
1
- [
2
- {
3
- "idx": 0,
4
- "name": "0",
5
- "path": "",
6
- "type": "sentence_transformers.models.Transformer"
7
- },
8
- {
9
- "idx": 1,
10
- "name": "1",
11
- "path": "1_Pooling",
12
- "type": "sentence_transformers.models.Pooling"
13
- },
14
- {
15
- "idx": 2,
16
- "name": "2",
17
- "path": "2_Normalize",
18
- "type": "sentence_transformers.models.Normalize"
19
- }
20
- ]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
both_models/sentence_transformer_model/pytorch_model.bin DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:cbdfdb6b06b9409c75d6c4ec7e4215de2ce5845fbb287dd31a3deb6525fead07
3
- size 438013677
 
 
 
 
both_models/sentence_transformer_model/sentence_bert_config.json DELETED
@@ -1,4 +0,0 @@
1
- {
2
- "max_seq_length": 384,
3
- "do_lower_case": false
4
- }
 
 
 
 
 
both_models/sentence_transformer_model/special_tokens_map.json DELETED
@@ -1,15 +0,0 @@
1
- {
2
- "bos_token": "<s>",
3
- "cls_token": "<s>",
4
- "eos_token": "</s>",
5
- "mask_token": {
6
- "content": "<mask>",
7
- "lstrip": true,
8
- "normalized": false,
9
- "rstrip": false,
10
- "single_word": false
11
- },
12
- "pad_token": "<pad>",
13
- "sep_token": "</s>",
14
- "unk_token": "[UNK]"
15
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
both_models/sentence_transformer_model/tokenizer.json DELETED
The diff for this file is too large to render. See raw diff
 
both_models/sentence_transformer_model/tokenizer_config.json DELETED
@@ -1,15 +0,0 @@
1
- {
2
- "bos_token": "<s>",
3
- "clean_up_tokenization_spaces": true,
4
- "cls_token": "<s>",
5
- "do_lower_case": true,
6
- "eos_token": "</s>",
7
- "mask_token": "<mask>",
8
- "model_max_length": 512,
9
- "pad_token": "<pad>",
10
- "sep_token": "</s>",
11
- "strip_accents": null,
12
- "tokenize_chinese_chars": true,
13
- "tokenizer_class": "MPNetTokenizer",
14
- "unk_token": "[UNK]"
15
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
both_models/sentence_transformer_model/vocab.txt DELETED
The diff for this file is too large to render. See raw diff
 
both_models/spacy_ner_model/MANIFEST.in DELETED
@@ -1,4 +0,0 @@
1
- include meta.json
2
- include LICENSE
3
- include LICENSES_SOURCES
4
- include README.md
 
 
 
 
 
both_models/spacy_ner_model/README.md DELETED
@@ -1,34 +0,0 @@
1
- | Feature | Description |
2
- | --- | --- |
3
- | **Name** | `en_pipeline` |
4
- | **Version** | `0.0.0` |
5
- | **spaCy** | `>=3.6.0,<3.7.0` |
6
- | **Default Pipeline** | `tok2vec`, `entity_ruler`, `ner` |
7
- | **Components** | `tok2vec`, `entity_ruler`, `ner` |
8
- | **Vectors** | 0 keys, 0 unique vectors (0 dimensions) |
9
- | **Sources** | n/a |
10
- | **License** | n/a |
11
- | **Author** | [n/a]() |
12
-
13
- ### Label Scheme
14
-
15
- <details>
16
-
17
- <summary>View label scheme (6 labels for 2 components)</summary>
18
-
19
- | Component | Labels |
20
- | --- | --- |
21
- | **`entity_ruler`** | `STATE`, `STATE_CODE`, `ZIPCODE` |
22
- | **`ner`** | `CITY`, `STATE`, `VERTICAL` |
23
-
24
- </details>
25
-
26
- ### Accuracy
27
-
28
- | Type | Score |
29
- | --- | --- |
30
- | `ENTS_F` | 99.82 |
31
- | `ENTS_P` | 99.91 |
32
- | `ENTS_R` | 99.73 |
33
- | `TOK2VEC_LOSS` | 20878.29 |
34
- | `NER_LOSS` | 2762.75 |
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
both_models/spacy_ner_model/en_pipeline.egg-info/PKG-INFO DELETED
@@ -1,41 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: en-pipeline
3
- Version: 0.0.0
4
- Home-page:
5
- Author:
6
- Author-email:
7
-
8
- | Feature | Description |
9
- | --- | --- |
10
- | **Name** | `en_pipeline` |
11
- | **Version** | `0.0.0` |
12
- | **spaCy** | `>=3.6.0,<3.7.0` |
13
- | **Default Pipeline** | `tok2vec`, `entity_ruler`, `ner` |
14
- | **Components** | `tok2vec`, `entity_ruler`, `ner` |
15
- | **Vectors** | 0 keys, 0 unique vectors (0 dimensions) |
16
- | **Sources** | n/a |
17
- | **License** | n/a |
18
- | **Author** | [n/a]() |
19
-
20
- ### Label Scheme
21
-
22
- <details>
23
-
24
- <summary>View label scheme (6 labels for 2 components)</summary>
25
-
26
- | Component | Labels |
27
- | --- | --- |
28
- | **`entity_ruler`** | `STATE`, `STATE_CODE`, `ZIPCODE` |
29
- | **`ner`** | `CITY`, `STATE`, `VERTICAL` |
30
-
31
- </details>
32
-
33
- ### Accuracy
34
-
35
- | Type | Score |
36
- | --- | --- |
37
- | `ENTS_F` | 99.82 |
38
- | `ENTS_P` | 99.91 |
39
- | `ENTS_R` | 99.73 |
40
- | `TOK2VEC_LOSS` | 20878.29 |
41
- | `NER_LOSS` | 2762.75 |
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
both_models/spacy_ner_model/en_pipeline.egg-info/SOURCES.txt DELETED
@@ -1,29 +0,0 @@
1
- MANIFEST.in
2
- README.md
3
- meta.json
4
- setup.py
5
- en_pipeline/__init__.py
6
- en_pipeline/meta.json
7
- en_pipeline.egg-info/PKG-INFO
8
- en_pipeline.egg-info/SOURCES.txt
9
- en_pipeline.egg-info/dependency_links.txt
10
- en_pipeline.egg-info/entry_points.txt
11
- en_pipeline.egg-info/not-zip-safe
12
- en_pipeline.egg-info/requires.txt
13
- en_pipeline.egg-info/top_level.txt
14
- en_pipeline/en_pipeline-0.0.0/README.md
15
- en_pipeline/en_pipeline-0.0.0/config.cfg
16
- en_pipeline/en_pipeline-0.0.0/meta.json
17
- en_pipeline/en_pipeline-0.0.0/tokenizer
18
- en_pipeline/en_pipeline-0.0.0/entity_ruler/cfg
19
- en_pipeline/en_pipeline-0.0.0/entity_ruler/patterns.jsonl
20
- en_pipeline/en_pipeline-0.0.0/ner/cfg
21
- en_pipeline/en_pipeline-0.0.0/ner/model
22
- en_pipeline/en_pipeline-0.0.0/ner/moves
23
- en_pipeline/en_pipeline-0.0.0/tok2vec/cfg
24
- en_pipeline/en_pipeline-0.0.0/tok2vec/model
25
- en_pipeline/en_pipeline-0.0.0/vocab/key2row
26
- en_pipeline/en_pipeline-0.0.0/vocab/lookups.bin
27
- en_pipeline/en_pipeline-0.0.0/vocab/strings.json
28
- en_pipeline/en_pipeline-0.0.0/vocab/vectors
29
- en_pipeline/en_pipeline-0.0.0/vocab/vectors.cfg
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
both_models/spacy_ner_model/en_pipeline.egg-info/dependency_links.txt DELETED
@@ -1 +0,0 @@
1
-
 
 
both_models/spacy_ner_model/en_pipeline.egg-info/entry_points.txt DELETED
@@ -1,2 +0,0 @@
1
- [spacy_models]
2
- en_pipeline = en_pipeline
 
 
 
both_models/spacy_ner_model/en_pipeline.egg-info/not-zip-safe DELETED
@@ -1 +0,0 @@
1
-
 
 
both_models/spacy_ner_model/en_pipeline.egg-info/requires.txt DELETED
@@ -1 +0,0 @@
1
- spacy<3.7.0,>=3.6.0
 
 
both_models/spacy_ner_model/en_pipeline.egg-info/top_level.txt DELETED
@@ -1 +0,0 @@
1
- en_pipeline
 
 
both_models/spacy_ner_model/en_pipeline/__init__.py DELETED
@@ -1,10 +0,0 @@
1
- from pathlib import Path
2
- from spacy.util import load_model_from_init_py, get_model_meta
3
-
4
-
5
-
6
- __version__ = get_model_meta(Path(__file__).parent)['version']
7
-
8
-
9
- def load(**overrides):
10
- return load_model_from_init_py(__file__, **overrides)
 
 
 
 
 
 
 
 
 
 
 
both_models/spacy_ner_model/en_pipeline/en_pipeline-0.0.0/README.md DELETED
@@ -1,34 +0,0 @@
1
- | Feature | Description |
2
- | --- | --- |
3
- | **Name** | `en_pipeline` |
4
- | **Version** | `0.0.0` |
5
- | **spaCy** | `>=3.6.0,<3.7.0` |
6
- | **Default Pipeline** | `tok2vec`, `entity_ruler`, `ner` |
7
- | **Components** | `tok2vec`, `entity_ruler`, `ner` |
8
- | **Vectors** | 0 keys, 0 unique vectors (0 dimensions) |
9
- | **Sources** | n/a |
10
- | **License** | n/a |
11
- | **Author** | [n/a]() |
12
-
13
- ### Label Scheme
14
-
15
- <details>
16
-
17
- <summary>View label scheme (6 labels for 2 components)</summary>
18
-
19
- | Component | Labels |
20
- | --- | --- |
21
- | **`entity_ruler`** | `STATE`, `STATE_CODE`, `ZIPCODE` |
22
- | **`ner`** | `CITY`, `STATE`, `VERTICAL` |
23
-
24
- </details>
25
-
26
- ### Accuracy
27
-
28
- | Type | Score |
29
- | --- | --- |
30
- | `ENTS_F` | 99.82 |
31
- | `ENTS_P` | 99.91 |
32
- | `ENTS_R` | 99.73 |
33
- | `TOK2VEC_LOSS` | 20878.29 |
34
- | `NER_LOSS` | 2762.75 |
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
both_models/spacy_ner_model/en_pipeline/en_pipeline-0.0.0/config.cfg DELETED
@@ -1,153 +0,0 @@
1
- [paths]
2
- train = "./train.spacy"
3
- dev = "./test.spacy"
4
- vectors = null
5
- init_tok2vec = null
6
-
7
- [system]
8
- gpu_allocator = null
9
- seed = 0
10
-
11
- [nlp]
12
- lang = "en"
13
- pipeline = ["tok2vec","entity_ruler","ner"]
14
- batch_size = 1000
15
- disabled = []
16
- before_creation = null
17
- after_creation = null
18
- after_pipeline_creation = null
19
- tokenizer = {"@tokenizers":"spacy.Tokenizer.v1"}
20
-
21
- [components]
22
-
23
- [components.entity_ruler]
24
- factory = "entity_ruler"
25
- ent_id_sep = "||"
26
- matcher_fuzzy_compare = {"@misc":"spacy.levenshtein_compare.v1"}
27
- overwrite_ents = false
28
- phrase_matcher_attr = null
29
- scorer = {"@scorers":"spacy.entity_ruler_scorer.v1"}
30
- validate = false
31
-
32
- [components.ner]
33
- factory = "ner"
34
- incorrect_spans_key = null
35
- moves = null
36
- scorer = {"@scorers":"spacy.ner_scorer.v1"}
37
- update_with_oracle_cut_size = 100
38
-
39
- [components.ner.model]
40
- @architectures = "spacy.TransitionBasedParser.v2"
41
- state_type = "ner"
42
- extra_state_tokens = false
43
- hidden_width = 64
44
- maxout_pieces = 2
45
- use_upper = true
46
- nO = null
47
-
48
- [components.ner.model.tok2vec]
49
- @architectures = "spacy.Tok2VecListener.v1"
50
- width = ${components.tok2vec.model.encode.width}
51
- upstream = "*"
52
-
53
- [components.tok2vec]
54
- factory = "tok2vec"
55
-
56
- [components.tok2vec.model]
57
- @architectures = "spacy.Tok2Vec.v2"
58
-
59
- [components.tok2vec.model.embed]
60
- @architectures = "spacy.MultiHashEmbed.v2"
61
- width = ${components.tok2vec.model.encode.width}
62
- attrs = ["NORM","PREFIX","SUFFIX","SHAPE"]
63
- rows = [5000,1000,2500,2500]
64
- include_static_vectors = false
65
-
66
- [components.tok2vec.model.encode]
67
- @architectures = "spacy.MaxoutWindowEncoder.v2"
68
- width = 96
69
- depth = 4
70
- window_size = 1
71
- maxout_pieces = 3
72
-
73
- [corpora]
74
-
75
- [corpora.dev]
76
- @readers = "spacy.Corpus.v1"
77
- path = ${paths.dev}
78
- max_length = 0
79
- gold_preproc = false
80
- limit = 0
81
- augmenter = null
82
-
83
- [corpora.train]
84
- @readers = "spacy.Corpus.v1"
85
- path = ${paths.train}
86
- max_length = 0
87
- gold_preproc = false
88
- limit = 0
89
- augmenter = null
90
-
91
- [training]
92
- dev_corpus = "corpora.dev"
93
- train_corpus = "corpora.train"
94
- seed = ${system.seed}
95
- gpu_allocator = ${system.gpu_allocator}
96
- dropout = 0.1
97
- accumulate_gradient = 1
98
- patience = 1600
99
- max_epochs = 0
100
- max_steps = 20000
101
- eval_frequency = 200
102
- frozen_components = []
103
- annotating_components = []
104
- before_to_disk = null
105
- before_update = null
106
-
107
- [training.batcher]
108
- @batchers = "spacy.batch_by_words.v1"
109
- discard_oversize = false
110
- tolerance = 0.2
111
- get_length = null
112
-
113
- [training.batcher.size]
114
- @schedules = "compounding.v1"
115
- start = 100
116
- stop = 1000
117
- compound = 1.001
118
- t = 0.0
119
-
120
- [training.logger]
121
- @loggers = "spacy.ConsoleLogger.v1"
122
- progress_bar = false
123
-
124
- [training.optimizer]
125
- @optimizers = "Adam.v1"
126
- beta1 = 0.9
127
- beta2 = 0.999
128
- L2_is_weight_decay = true
129
- L2 = 0.01
130
- grad_clip = 1.0
131
- use_averages = false
132
- eps = 0.00000001
133
- learn_rate = 0.001
134
-
135
- [training.score_weights]
136
- ents_f = 1.0
137
- ents_p = 0.0
138
- ents_r = 0.0
139
- ents_per_type = null
140
-
141
- [pretraining]
142
-
143
- [initialize]
144
- vectors = ${paths.vectors}
145
- init_tok2vec = ${paths.init_tok2vec}
146
- vocab_data = null
147
- lookups = null
148
- before_init = null
149
- after_init = null
150
-
151
- [initialize.components]
152
-
153
- [initialize.tokenizer]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
both_models/spacy_ner_model/en_pipeline/en_pipeline-0.0.0/entity_ruler/cfg DELETED
@@ -1,5 +0,0 @@
1
- {
2
- "overwrite":false,
3
- "phrase_matcher_attr":null,
4
- "ent_id_sep":"||"
5
- }
 
 
 
 
 
 
both_models/spacy_ner_model/en_pipeline/en_pipeline-0.0.0/entity_ruler/patterns.jsonl DELETED
@@ -1,101 +0,0 @@
1
- {"label":"ZIPCODE","pattern":[{"TEXT":{"REGEX":"\\b\\d{5}\\b"}}]}
2
- {"label":"STATE","pattern":"alabama"}
3
- {"label":"STATE","pattern":"alaska"}
4
- {"label":"STATE","pattern":"arizona"}
5
- {"label":"STATE","pattern":"arkansas"}
6
- {"label":"STATE","pattern":"california"}
7
- {"label":"STATE","pattern":"colorado"}
8
- {"label":"STATE","pattern":"connecticut"}
9
- {"label":"STATE","pattern":"delaware"}
10
- {"label":"STATE","pattern":"florida"}
11
- {"label":"STATE","pattern":"georgia"}
12
- {"label":"STATE","pattern":"hawaii"}
13
- {"label":"STATE","pattern":"idaho"}
14
- {"label":"STATE","pattern":"illinois"}
15
- {"label":"STATE","pattern":"indiana"}
16
- {"label":"STATE","pattern":"iowa"}
17
- {"label":"STATE","pattern":"kansas"}
18
- {"label":"STATE","pattern":"kentucky"}
19
- {"label":"STATE","pattern":"louisiana"}
20
- {"label":"STATE","pattern":"maine"}
21
- {"label":"STATE","pattern":"maryland"}
22
- {"label":"STATE","pattern":"massachusetts"}
23
- {"label":"STATE","pattern":"michigan"}
24
- {"label":"STATE","pattern":"minnesota"}
25
- {"label":"STATE","pattern":"mississippi"}
26
- {"label":"STATE","pattern":"missouri"}
27
- {"label":"STATE","pattern":"montana"}
28
- {"label":"STATE","pattern":"nebraska"}
29
- {"label":"STATE","pattern":"nevada"}
30
- {"label":"STATE","pattern":"new hampshire"}
31
- {"label":"STATE","pattern":"new jersey"}
32
- {"label":"STATE","pattern":"new mexico"}
33
- {"label":"STATE","pattern":"new york"}
34
- {"label":"STATE","pattern":"north carolina"}
35
- {"label":"STATE","pattern":"north dakota"}
36
- {"label":"STATE","pattern":"ohio"}
37
- {"label":"STATE","pattern":"oklahoma"}
38
- {"label":"STATE","pattern":"oregon"}
39
- {"label":"STATE","pattern":"pennsylvania"}
40
- {"label":"STATE","pattern":"rhode island"}
41
- {"label":"STATE","pattern":"south carolina"}
42
- {"label":"STATE","pattern":"south dakota"}
43
- {"label":"STATE","pattern":"tennessee"}
44
- {"label":"STATE","pattern":"texas"}
45
- {"label":"STATE","pattern":"utah"}
46
- {"label":"STATE","pattern":"vermont"}
47
- {"label":"STATE","pattern":"virginia"}
48
- {"label":"STATE","pattern":"washington"}
49
- {"label":"STATE","pattern":"west virginia"}
50
- {"label":"STATE","pattern":"wisconsin"}
51
- {"label":"STATE","pattern":"wyoming"}
52
- {"label":"STATE_CODE","pattern":"MT"}
53
- {"label":"STATE_CODE","pattern":"MS"}
54
- {"label":"STATE_CODE","pattern":"DE"}
55
- {"label":"STATE_CODE","pattern":"NM"}
56
- {"label":"STATE_CODE","pattern":"OK"}
57
- {"label":"STATE_CODE","pattern":"IA"}
58
- {"label":"STATE_CODE","pattern":"CT"}
59
- {"label":"STATE_CODE","pattern":"NE"}
60
- {"label":"STATE_CODE","pattern":"HI"}
61
- {"label":"STATE_CODE","pattern":"KS"}
62
- {"label":"STATE_CODE","pattern":"NV"}
63
- {"label":"STATE_CODE","pattern":"OR"}
64
- {"label":"STATE_CODE","pattern":"WV"}
65
- {"label":"STATE_CODE","pattern":"AR"}
66
- {"label":"STATE_CODE","pattern":"ID"}
67
- {"label":"STATE_CODE","pattern":"SD"}
68
- {"label":"STATE_CODE","pattern":"ND"}
69
- {"label":"STATE_CODE","pattern":"NH"}
70
- {"label":"STATE_CODE","pattern":"ME"}
71
- {"label":"STATE_CODE","pattern":"UT"}
72
- {"label":"STATE_CODE","pattern":"RI"}
73
- {"label":"STATE_CODE","pattern":"MT"}
74
- {"label":"STATE_CODE","pattern":"VT"}
75
- {"label":"STATE_CODE","pattern":"WY"}
76
- {"label":"STATE_CODE","pattern":"AK"}
77
- {"label":"STATE_CODE","pattern":"LA"}
78
- {"label":"STATE_CODE","pattern":"SC"}
79
- {"label":"STATE_CODE","pattern":"NJ"}
80
- {"label":"STATE_CODE","pattern":"NC"}
81
- {"label":"STATE_CODE","pattern":"AL"}
82
- {"label":"STATE_CODE","pattern":"KY"}
83
- {"label":"STATE_CODE","pattern":"MO"}
84
- {"label":"STATE_CODE","pattern":"WI"}
85
- {"label":"STATE_CODE","pattern":"MD"}
86
- {"label":"STATE_CODE","pattern":"MN"}
87
- {"label":"STATE_CODE","pattern":"CO"}
88
- {"label":"STATE_CODE","pattern":"TN"}
89
- {"label":"STATE_CODE","pattern":"AZ"}
90
- {"label":"STATE_CODE","pattern":"IN"}
91
- {"label":"STATE_CODE","pattern":"MA"}
92
- {"label":"STATE_CODE","pattern":"WA"}
93
- {"label":"STATE_CODE","pattern":"MI"}
94
- {"label":"STATE_CODE","pattern":"GA"}
95
- {"label":"STATE_CODE","pattern":"VA"}
96
- {"label":"STATE_CODE","pattern":"OH"}
97
- {"label":"STATE_CODE","pattern":"PA"}
98
- {"label":"STATE_CODE","pattern":"IL"}
99
- {"label":"STATE_CODE","pattern":"NY"}
100
- {"label":"STATE_CODE","pattern":"FL"}
101
- {"label":"STATE_CODE","pattern":"TX"}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
both_models/spacy_ner_model/en_pipeline/en_pipeline-0.0.0/meta.json DELETED
@@ -1,68 +0,0 @@
1
- {
2
- "lang":"en",
3
- "name":"pipeline",
4
- "version":"0.0.0",
5
- "description":"",
6
- "author":"",
7
- "email":"",
8
- "url":"",
9
- "license":"",
10
- "spacy_version":">=3.6.0,<3.7.0",
11
- "spacy_git_version":"6fc153a26",
12
- "vectors":{
13
- "width":0,
14
- "vectors":0,
15
- "keys":0,
16
- "name":null
17
- },
18
- "labels":{
19
- "tok2vec":[
20
-
21
- ],
22
- "entity_ruler":[
23
- "STATE",
24
- "STATE_CODE",
25
- "ZIPCODE"
26
- ],
27
- "ner":[
28
- "CITY",
29
- "STATE",
30
- "VERTICAL"
31
- ]
32
- },
33
- "pipeline":[
34
- "tok2vec",
35
- "entity_ruler",
36
- "ner"
37
- ],
38
- "components":[
39
- "tok2vec",
40
- "entity_ruler",
41
- "ner"
42
- ],
43
- "disabled":[
44
-
45
- ],
46
- "performance":{
47
- "ents_f":0.9981834696,
48
- "ents_p":0.9990909091,
49
- "ents_r":0.997277677,
50
- "ents_per_type":{
51
- "VERTICAL":{
52
- "p":1.0,
53
- "r":0.9966499162,
54
- "f":0.9983221477
55
- },
56
- "CITY":{
57
- "p":0.998019802,
58
- "r":0.998019802,
59
- "f":0.998019802
60
- }
61
- },
62
- "tok2vec_loss":208.7829439196,
63
- "ner_loss":27.6274758303
64
- },
65
- "requirements":[
66
-
67
- ]
68
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
both_models/spacy_ner_model/en_pipeline/en_pipeline-0.0.0/ner/cfg DELETED
@@ -1,13 +0,0 @@
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
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
both_models/spacy_ner_model/en_pipeline/en_pipeline-0.0.0/ner/model DELETED
Binary file (130 kB)
 
both_models/spacy_ner_model/en_pipeline/en_pipeline-0.0.0/ner/moves DELETED
@@ -1 +0,0 @@
1
- ��moves��{"0":{},"1":{"VERTICAL":593,"CITY":507,"STATE":-1},"2":{"VERTICAL":593,"CITY":507,"STATE":-1},"3":{"VERTICAL":593,"CITY":507,"STATE":-1},"4":{"VERTICAL":593,"CITY":507,"":1,"STATE":-1},"5":{"":1}}�cfg��neg_key�
 
 
both_models/spacy_ner_model/en_pipeline/en_pipeline-0.0.0/tok2vec/cfg DELETED
@@ -1,3 +0,0 @@
1
- {
2
-
3
- }
 
 
 
 
both_models/spacy_ner_model/en_pipeline/en_pipeline-0.0.0/tok2vec/model DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:98b24a06c56a831fcb9b1d93e25b3b87e9c3a30645af114c55590c3c6ed09d91
3
- size 6009091
 
 
 
 
both_models/spacy_ner_model/en_pipeline/en_pipeline-0.0.0/tokenizer DELETED
@@ -1,3 +0,0 @@
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�
 
 
 
 
both_models/spacy_ner_model/en_pipeline/en_pipeline-0.0.0/vocab/key2row DELETED
@@ -1 +0,0 @@
1
-
 
 
both_models/spacy_ner_model/en_pipeline/en_pipeline-0.0.0/vocab/lookups.bin DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:76be8b528d0075f7aae98d6fa57a6d3c83ae480a8469e668d7b0af968995ac71
3
- size 1
 
 
 
 
both_models/spacy_ner_model/en_pipeline/en_pipeline-0.0.0/vocab/strings.json DELETED
@@ -1,2572 +0,0 @@
1
- [
2
- "\t",
3
- "\n",
4
- " ",
5
- " ",
6
- "\"",
7
- "'",
8
- "''",
9
- "'-(",
10
- "'-)",
11
- "'Cause",
12
- "'Cos",
13
- "'Coz",
14
- "'Cuz",
15
- "'S",
16
- "'X",
17
- "'Xxx",
18
- "'Xxxxx",
19
- "'am",
20
- "'bout",
21
- "'cause",
22
- "'cos",
23
- "'coz",
24
- "'cuz",
25
- "'d",
26
- "'em",
27
- "'ll",
28
- "'m",
29
- "'nuff",
30
- "'re",
31
- "'s",
32
- "'ve",
33
- "'x",
34
- "'xx",
35
- "'xxx",
36
- "'xxxx",
37
- "'y",
38
- "(",
39
- "(((",
40
- "(*>",
41
- "(*_*)",
42
- "(-8",
43
- "(-:",
44
- "(-;",
45
- "(-_-)",
46
- "(-d",
47
- "(._.)",
48
- "(:",
49
- "(;",
50
- "(=",
51
- "(>_<)",
52
- "(^_^)",
53
- "(o:",
54
- "(x:",
55
- "(x_x)",
56
- "(\u00ac_\u00ac)",
57
- "(\u0ca0_\u0ca0)",
58
- "(\u256f\u00b0\u25a1\u00b0\uff09\u256f\ufe35\u253b\u2501\u253b",
59
- ")",
60
- ")))",
61
- ")-:",
62
- ")/\u00af",
63
- "):",
64
- "*",
65
- ",",
66
- "-",
67
- "-((",
68
- "-))",
69
- "-/",
70
- "-0",
71
- "-3",
72
- "-8",
73
- "-D",
74
- "-O",
75
- "-P",
76
- "-X",
77
- "-_-",
78
- "-__-",
79
- "-d",
80
- "-o",
81
- "-p",
82
- "-x",
83
- "-|",
84
- ".",
85
- ".C.",
86
- ".D.",
87
- ".E.",
88
- ".G.",
89
- ".H.",
90
- ".J.",
91
- ".M.",
92
- ".Y.",
93
- "._.",
94
- ".e.",
95
- ".g.",
96
- ".m.",
97
- ".s.",
98
- "/",
99
- "/3",
100
- "/d",
101
- "/or",
102
- "0",
103
- "0.0",
104
- "0.o",
105
- "0_0",
106
- "0_o",
107
- "1",
108
- "10",
109
- "10a.m",
110
- "10a.m.",
111
- "10p.m",
112
- "10p.m.",
113
- "11",
114
- "11a.m",
115
- "11a.m.",
116
- "11p.m",
117
- "11p.m.",
118
- "12",
119
- "12a.m",
120
- "12a.m.",
121
- "12p.m",
122
- "12p.m.",
123
- "1a.m",
124
- "1a.m.",
125
- "1p.m",
126
- "1p.m.",
127
- "2",
128
- "2a.m",
129
- "2a.m.",
130
- "2p.m",
131
- "2p.m.",
132
- "3",
133
- "33",
134
- "333",
135
- "3a.m",
136
- "3a.m.",
137
- "3p.m",
138
- "3p.m.",
139
- "4",
140
- "4a.m",
141
- "4a.m.",
142
- "4p.m",
143
- "4p.m.",
144
- "5",
145
- "5a.m",
146
- "5a.m.",
147
- "5p.m",
148
- "5p.m.",
149
- "6",
150
- "6a.m",
151
- "6a.m.",
152
- "6p.m",
153
- "6p.m.",
154
- "7",
155
- "7a.m",
156
- "7a.m.",
157
- "7p.m",
158
- "7p.m.",
159
- "8",
160
- "8)",
161
- "8-",
162
- "8-)",
163
- "8-D",
164
- "8-d",
165
- "8D",
166
- "8a.m",
167
- "8a.m.",
168
- "8d",
169
- "8p.m",
170
- "8p.m.",
171
- "9",
172
- "9a.m",
173
- "9a.m.",
174
- "9p.m",
175
- "9p.m.",
176
- ":",
177
- ":'(",
178
- ":')",
179
- ":'-(",
180
- ":'-)",
181
- ":(",
182
- ":((",
183
- ":(((",
184
- ":()",
185
- ":)",
186
- ":))",
187
- ":)))",
188
- ":*",
189
- ":-(",
190
- ":-((",
191
- ":-(((",
192
- ":-)",
193
- ":-))",
194
- ":-)))",
195
- ":-*",
196
- ":-/",
197
- ":-0",
198
- ":-3",
199
- ":->",
200
- ":-D",
201
- ":-O",
202
- ":-P",
203
- ":-X",
204
- ":-]",
205
- ":-d",
206
- ":-o",
207
- ":-p",
208
- ":-x",
209
- ":-|",
210
- ":-}",
211
- ":/",
212
- ":0",
213
- ":1",
214
- ":3",
215
- ":>",
216
- ":D",
217
- ":O",
218
- ":P",
219
- ":X",
220
- ":]",
221
- ":d",
222
- ":o",
223
- ":o)",
224
- ":p",
225
- ":x",
226
- ":x)",
227
- ":|",
228
- ":}",
229
- ":\u2019(",
230
- ":\u2019)",
231
- ":\u2019-(",
232
- ":\u2019-)",
233
- ";",
234
- ";)",
235
- ";-)",
236
- ";-D",
237
- ";-X",
238
- ";-d",
239
- ";D",
240
- ";X",
241
- ";_;",
242
- ";d",
243
- "<",
244
- "<.<",
245
- "</3",
246
- "</d",
247
- "<3",
248
- "<33",
249
- "<333",
250
- "<d",
251
- "<dd",
252
- "<ddd",
253
- "<space>",
254
- "<xxxx>",
255
- "=",
256
- "=(",
257
- "=)",
258
- "=/",
259
- "=3",
260
- "=D",
261
- "=X",
262
- "=[",
263
- "=]",
264
- "=d",
265
- "=|",
266
- ">",
267
- ">.<",
268
- ">.>",
269
- ">:(",
270
- ">:o",
271
- ">:x",
272
- "><(((*>",
273
- "?",
274
- "@",
275
- "@_@",
276
- "A",
277
- "AAP",
278
- "AK",
279
- "AL",
280
- "AR",
281
- "ATE",
282
- "AZ",
283
- "Adm",
284
- "Adm.",
285
- "Ai",
286
- "Ak",
287
- "Ak.",
288
- "Akron",
289
- "Ala",
290
- "Ala.",
291
- "Alabama",
292
- "Alaska",
293
- "Albuquerque",
294
- "Amarillo",
295
- "An",
296
- "Ana",
297
- "Anaheim",
298
- "Anchorage",
299
- "Angeles",
300
- "Antonio",
301
- "Apr",
302
- "Apr.",
303
- "April",
304
- "Are",
305
- "Ariz",
306
- "Ariz.",
307
- "Arizona",
308
- "Ark",
309
- "Ark.",
310
- "Arkansas",
311
- "Arlington",
312
- "Assets",
313
- "Atlanta",
314
- "Attend",
315
- "Aug",
316
- "Aug.",
317
- "August",
318
- "Aurora",
319
- "Austin",
320
- "B",
321
- "Bakersfield",
322
- "Baltimore",
323
- "Baton",
324
- "Beach",
325
- "Bernardino",
326
- "Birmingham",
327
- "Boise",
328
- "Boost",
329
- "Boston",
330
- "Bros",
331
- "Bros.",
332
- "Buffalo",
333
- "Build",
334
- "C",
335
- "C'm",
336
- "C++",
337
- "C.",
338
- "CAL",
339
- "CITY",
340
- "CO",
341
- "CT",
342
- "Ca",
343
- "Calif",
344
- "Calif.",
345
- "California",
346
- "Can",
347
- "Cause",
348
- "Chandler",
349
- "Charlotte",
350
- "Chesapeake",
351
- "Chicago",
352
- "Choose",
353
- "Christi",
354
- "Chula",
355
- "Cincinnati",
356
- "City",
357
- "Cleveland",
358
- "Co",
359
- "Co.",
360
- "Colo",
361
- "Colo.",
362
- "Colorado",
363
- "Columbus",
364
- "Conn",
365
- "Conn.",
366
- "Connect",
367
- "Connecticut",
368
- "Consult",
369
- "Contact",
370
- "Control",
371
- "Corp",
372
- "Corp.",
373
- "Corpus",
374
- "Cos",
375
- "Could",
376
- "Coz",
377
- "Create",
378
- "Curious",
379
- "Cut",
380
- "Cuz",
381
- "C\u2019m",
382
- "D",
383
- "D.",
384
- "D.C.",
385
- "DE",
386
- "Dallas",
387
- "Dare",
388
- "Debtor",
389
- "Dec",
390
- "Dec.",
391
- "December",
392
- "Del",
393
- "Del.",
394
- "Delaware",
395
- "Denver",
396
- "Des",
397
- "Detroit",
398
- "Did",
399
- "Diego",
400
- "Discover",
401
- "Do",
402
- "Does",
403
- "Doin",
404
- "Doin'",
405
- "Doin\u2019",
406
- "Dr",
407
- "Dr.",
408
- "Durham",
409
- "E",
410
- "E.G.",
411
- "E.g",
412
- "E.g.",
413
- "Effective",
414
- "Efficient",
415
- "El",
416
- "Enhance",
417
- "Ensure",
418
- "Experience",
419
- "Expert",
420
- "Explore",
421
- "F",
422
- "F.",
423
- "FL",
424
- "Feb",
425
- "Feb.",
426
- "February",
427
- "Find",
428
- "Finding",
429
- "Fla",
430
- "Fla.",
431
- "Florida",
432
- "Fontana",
433
- "Fort",
434
- "Francisco",
435
- "Fremont",
436
- "Fresno",
437
- "G",
438
- "GA",
439
- "GAAP",
440
- "Ga",
441
- "Ga.",
442
- "Garland",
443
- "Gen",
444
- "Gen.",
445
- "Georgia",
446
- "Get",
447
- "Getting",
448
- "Gilbert",
449
- "Glendale",
450
- "Goin",
451
- "Goin'",
452
- "Goin\u2019",
453
- "Gon",
454
- "Got",
455
- "Gov",
456
- "Gov.",
457
- "Grand",
458
- "Greensboro",
459
- "H",
460
- "HI",
461
- "Had",
462
- "Has",
463
- "Have",
464
- "Havin",
465
- "Havin'",
466
- "Havin\u2019",
467
- "He",
468
- "He's",
469
- "Henderson",
470
- "He\u2019s",
471
- "Hialeah",
472
- "Hire",
473
- "Honolulu",
474
- "Houston",
475
- "How",
476
- "How's",
477
- "How\u2019s",
478
- "Huntington",
479
- "I",
480
- "I.E.",
481
- "I.e",
482
- "I.e.",
483
- "IA",
484
- "IL",
485
- "IN",
486
- "ITY",
487
- "Ia",
488
- "Ia.",
489
- "Id",
490
- "Id.",
491
- "Idaho",
492
- "Ill",
493
- "Ill.",
494
- "Illinois",
495
- "Improve",
496
- "In",
497
- "Inc",
498
- "Inc.",
499
- "Ind",
500
- "Ind.",
501
- "Indiana",
502
- "Indianapolis",
503
- "Iowa",
504
- "Irvine",
505
- "Irving",
506
- "Is",
507
- "It",
508
- "It's",
509
- "It\u2019s",
510
- "J",
511
- "Jacksonville",
512
- "Jan",
513
- "Jan.",
514
- "January",
515
- "Jersey",
516
- "Join",
517
- "Jose",
518
- "Jr",
519
- "Jr.",
520
- "Jul",
521
- "Jul.",
522
- "July",
523
- "Jun",
524
- "Jun.",
525
- "June",
526
- "K",
527
- "K.",
528
- "KS",
529
- "KY",
530
- "Kan",
531
- "Kan.",
532
- "Kans",
533
- "Kans.",
534
- "Kansas",
535
- "Keep",
536
- "Kentucky",
537
- "Ky",
538
- "Ky.",
539
- "L",
540
- "LA",
541
- "La",
542
- "La.",
543
- "Laredo",
544
- "Las",
545
- "Learn",
546
- "Ledger",
547
- "Let",
548
- "Let's",
549
- "Let\u2019s",
550
- "Lexington",
551
- "Lincoln",
552
- "Long",
553
- "Looking",
554
- "Los",
555
- "Louis",
556
- "Louisiana",
557
- "Louisville",
558
- "Lovin",
559
- "Lovin'",
560
- "Lovin\u2019",
561
- "Ltd",
562
- "Ltd.",
563
- "Lubbock",
564
- "M",
565
- "MA",
566
- "MD",
567
- "ME",
568
- "MI",
569
- "MN",
570
- "MO",
571
- "MS",
572
- "MT",
573
- "Ma'am",
574
- "Madison",
575
- "Maintain",
576
- "Make",
577
- "Manage",
578
- "Mar",
579
- "Mar.",
580
- "March",
581
- "Mass",
582
- "Mass.",
583
- "Massachusetts",
584
- "May",
585
- "Ma\u2019am",
586
- "Md",
587
- "Md.",
588
- "Memphis",
589
- "Mesa",
590
- "Messrs",
591
- "Messrs.",
592
- "Miami",
593
- "Mich",
594
- "Mich.",
595
- "Michigan",
596
- "Might",
597
- "Milwaukee",
598
- "Minimize",
599
- "Minn",
600
- "Minn.",
601
- "Minneapolis",
602
- "Minnesota",
603
- "Miss",
604
- "Miss.",
605
- "Mississippi",
606
- "Mitigate",
607
- "Mo",
608
- "Mo.",
609
- "Modesto",
610
- "Moines",
611
- "Mont",
612
- "Mont.",
613
- "Mount",
614
- "Mr",
615
- "Mr.",
616
- "Mrs",
617
- "Mrs.",
618
- "Ms",
619
- "Ms.",
620
- "Mt",
621
- "Mt.",
622
- "Must",
623
- "N",
624
- "N.C.",
625
- "N.D.",
626
- "N.H.",
627
- "N.J.",
628
- "N.M.",
629
- "N.Y.",
630
- "NC",
631
- "ND",
632
- "NE",
633
- "NH",
634
- "NJ",
635
- "NM",
636
- "NV",
637
- "NY",
638
- "Nashville",
639
- "Neb",
640
- "Neb.",
641
- "Nebr",
642
- "Nebr.",
643
- "Nebraska",
644
- "Need",
645
- "Nev",
646
- "Nev.",
647
- "Nevada",
648
- "New",
649
- "New Hampshire",
650
- "New Jersey",
651
- "New Mexico",
652
- "New York",
653
- "Newark",
654
- "Norfolk",
655
- "North",
656
- "North Carolina",
657
- "North Dakota",
658
- "Not",
659
- "Nothin",
660
- "Nothin'",
661
- "Nothin\u2019",
662
- "Nov",
663
- "Nov.",
664
- "November",
665
- "Nuthin",
666
- "Nuthin'",
667
- "Nuthin\u2019",
668
- "O",
669
- "O'clock",
670
- "O.O",
671
- "O.o",
672
- "ODE",
673
- "OH",
674
- "OK",
675
- "OR",
676
- "O_O",
677
- "O_o",
678
- "Oakland",
679
- "Oct",
680
- "Oct.",
681
- "October",
682
- "Okla",
683
- "Okla.",
684
- "Oklahoma",
685
- "Ol",
686
- "Ol'",
687
- "Ol\u2019",
688
- "Omaha",
689
- "Opt",
690
- "Ore",
691
- "Ore.",
692
- "Oregon",
693
- "Orlando",
694
- "Orleans",
695
- "Ought",
696
- "O\u2019clock",
697
- "P",
698
- "PA",
699
- "Pa",
700
- "Pa.",
701
- "Paso",
702
- "Pennsylvania",
703
- "Petersburg",
704
- "Ph",
705
- "Ph.D.",
706
- "Philadelphia",
707
- "Phoenix",
708
- "Pittsburgh",
709
- "Plano",
710
- "Portland",
711
- "Preparing",
712
- "Prof",
713
- "Prof.",
714
- "R",
715
- "RI",
716
- "ROOT",
717
- "Raleigh",
718
- "Rapids",
719
- "Reach",
720
- "Reconciliation",
721
- "Reduce",
722
- "Rely",
723
- "Reno",
724
- "Rep",
725
- "Rep.",
726
- "Rev",
727
- "Rev.",
728
- "Richmond",
729
- "Riverside",
730
- "Rouge",
731
- "S",
732
- "S.C.",
733
- "SC",
734
- "SD",
735
- "STATE",
736
- "STATE_CODE",
737
- "Sacramento",
738
- "Salem",
739
- "San",
740
- "Santa",
741
- "Scottsdale",
742
- "Searching",
743
- "Seattle",
744
- "Secure",
745
- "Seek",
746
- "Seeking",
747
- "Selling",
748
- "Sen",
749
- "Sen.",
750
- "Sep",
751
- "Sep.",
752
- "Sept",
753
- "Sept.",
754
- "September",
755
- "Sha",
756
- "She",
757
- "She's",
758
- "She\u2019s",
759
- "Should",
760
- "Shreveport",
761
- "Somethin",
762
- "Somethin'",
763
- "Somethin\u2019",
764
- "South Carolina",
765
- "Spokane",
766
- "Springs",
767
- "St",
768
- "St.",
769
- "Staging",
770
- "Stay",
771
- "Stockton",
772
- "Streamline",
773
- "T",
774
- "TN",
775
- "TX",
776
- "Tacoma",
777
- "Take",
778
- "Tallahassee",
779
- "Tampa",
780
- "Tenn",
781
- "Tenn.",
782
- "Tennessee",
783
- "That",
784
- "That's",
785
- "That\u2019s",
786
- "The",
787
- "There",
788
- "There's",
789
- "There\u2019s",
790
- "These",
791
- "They",
792
- "This",
793
- "This's",
794
- "This\u2019s",
795
- "Those",
796
- "Toledo",
797
- "Top",
798
- "Tucson",
799
- "Tulsa",
800
- "U",
801
- "UT",
802
- "Understand",
803
- "Understanding",
804
- "V",
805
- "V.V",
806
- "VA",
807
- "VERTICAL",
808
- "VT",
809
- "V_V",
810
- "Va",
811
- "Va.",
812
- "Vegas",
813
- "Virginia",
814
- "Vista",
815
- "W",
816
- "WA",
817
- "WI",
818
- "WV",
819
- "WY",
820
- "Was",
821
- "Wash",
822
- "Wash.",
823
- "Washington",
824
- "Wayne",
825
- "We",
826
- "Were",
827
- "What",
828
- "What's",
829
- "What\u2019s",
830
- "When",
831
- "When's",
832
- "When\u2019s",
833
- "Where",
834
- "Where's",
835
- "Where\u2019s",
836
- "Who",
837
- "Who's",
838
- "Who\u2019s",
839
- "Why",
840
- "Why's",
841
- "Why\u2019s",
842
- "Wichita",
843
- "Winston",
844
- "Wis",
845
- "Wis.",
846
- "Wisconsin",
847
- "Wo",
848
- "Working",
849
- "Worth",
850
- "Would",
851
- "X'x",
852
- "X'xxxx",
853
- "X++",
854
- "X.",
855
- "X.X",
856
- "X.X.",
857
- "X.x",
858
- "X.x.",
859
- "XD",
860
- "XDD",
861
- "XX",
862
- "XXX",
863
- "XXXX",
864
- "XXXX_XXXX",
865
- "X_X",
866
- "X_x",
867
- "Xx",
868
- "Xx'",
869
- "Xx'x",
870
- "Xx'xx",
871
- "Xx.",
872
- "Xx.X.",
873
- "Xxx",
874
- "Xxx'x",
875
- "Xxx.",
876
- "Xxxx",
877
- "Xxxx'",
878
- "Xxxx'x",
879
- "Xxxx.",
880
- "Xxxxx",
881
- "Xxxxx'",
882
- "Xxxxx'x",
883
- "Xxxxx.",
884
- "Xxxxx\u2019",
885
- "Xxxxx\u2019x",
886
- "Xxxx\u2019",
887
- "Xxxx\u2019x",
888
- "Xxx\u2019x",
889
- "Xx\u2019",
890
- "Xx\u2019x",
891
- "Xx\u2019xx",
892
- "X\u2019x",
893
- "X\u2019xxxx",
894
- "Y",
895
- "Yonkers",
896
- "York",
897
- "You",
898
- "ZIPCODE",
899
- "[",
900
- "[-:",
901
- "[:",
902
- "[=",
903
- "\\",
904
- "\\\")",
905
- "\\n",
906
- "\\t",
907
- "\\x",
908
- "]",
909
- "]=",
910
- "^",
911
- "^_^",
912
- "^__^",
913
- "^___^",
914
- "_*)",
915
- "_-)",
916
- "_.)",
917
- "_<)",
918
- "_^)",
919
- "__-",
920
- "__^",
921
- "_\u00ac)",
922
- "_\u0ca0)",
923
- "a",
924
- "a.",
925
- "a.m",
926
- "a.m.",
927
- "aap",
928
- "about",
929
- "accountants",
930
- "accounting",
931
- "accounts",
932
- "accrual",
933
- "accurate",
934
- "accurately",
935
- "ace",
936
- "ach",
937
- "ack",
938
- "act",
939
- "actuaries",
940
- "actuary",
941
- "acumen",
942
- "ada",
943
- "adhering",
944
- "adjustable",
945
- "adm",
946
- "adm.",
947
- "ado",
948
- "advice",
949
- "advised",
950
- "advisor",
951
- "advisors",
952
- "advisory",
953
- "ady",
954
- "afloat",
955
- "aft",
956
- "age",
957
- "agencies",
958
- "agency",
959
- "agents",
960
- "ago",
961
- "agreement",
962
- "aha",
963
- "ahead",
964
- "aho",
965
- "ai",
966
- "aid",
967
- "aii",
968
- "ail",
969
- "aim",
970
- "ain",
971
- "ak",
972
- "ak.",
973
- "ake",
974
- "akron",
975
- "al",
976
- "ala",
977
- "ala.",
978
- "alabama",
979
- "alaska",
980
- "albuquerque",
981
- "ale",
982
- "all",
983
- "alo",
984
- "als",
985
- "am",
986
- "ama",
987
- "amarillo",
988
- "ami",
989
- "amount",
990
- "ams",
991
- "an",
992
- "an.",
993
- "ana",
994
- "anaheim",
995
- "analysis",
996
- "anchorage",
997
- "and",
998
- "and/or",
999
- "ane",
1000
- "angeles",
1001
- "annual",
1002
- "annuity",
1003
- "ano",
1004
- "ans",
1005
- "ant",
1006
- "antonio",
1007
- "any",
1008
- "anyone",
1009
- "appeal",
1010
- "application",
1011
- "apr",
1012
- "apr.",
1013
- "ar",
1014
- "ar.",
1015
- "ard",
1016
- "are",
1017
- "ariz",
1018
- "ariz.",
1019
- "arizona",
1020
- "ark",
1021
- "ark.",
1022
- "arkansas",
1023
- "arlington",
1024
- "arn",
1025
- "art",
1026
- "ary",
1027
- "ase",
1028
- "ash",
1029
- "aso",
1030
- "asp",
1031
- "ass",
1032
- "assessment",
1033
- "assets",
1034
- "assist",
1035
- "assistance",
1036
- "ast",
1037
- "asy",
1038
- "at",
1039
- "ata",
1040
- "ate",
1041
- "ati",
1042
- "atlanta",
1043
- "attend",
1044
- "audit",
1045
- "aug",
1046
- "aug.",
1047
- "aurora",
1048
- "austin",
1049
- "avail",
1050
- "available",
1051
- "ave",
1052
- "average",
1053
- "avoid",
1054
- "ays",
1055
- "az",
1056
- "b",
1057
- "b.",
1058
- "back",
1059
- "bakersfield",
1060
- "balance",
1061
- "baltimore",
1062
- "base",
1063
- "basics",
1064
- "basis",
1065
- "baton",
1066
- "be",
1067
- "beach",
1068
- "because",
1069
- "become",
1070
- "before",
1071
- "beneficiary",
1072
- "benefit",
1073
- "benefits",
1074
- "bernardino",
1075
- "best",
1076
- "better",
1077
- "birmingham",
1078
- "ble",
1079
- "bly",
1080
- "boise",
1081
- "books",
1082
- "boost",
1083
- "boston",
1084
- "bout",
1085
- "br.",
1086
- "broker",
1087
- "brokers",
1088
- "bros",
1089
- "bros.",
1090
- "buffalo",
1091
- "build",
1092
- "building",
1093
- "bus",
1094
- "business",
1095
- "businesses",
1096
- "buyer",
1097
- "buying",
1098
- "by",
1099
- "c",
1100
- "c'm",
1101
- "c++",
1102
- "c.",
1103
- "ca",
1104
- "cal",
1105
- "calculate",
1106
- "calculating",
1107
- "calculation",
1108
- "calif",
1109
- "calif.",
1110
- "california",
1111
- "can",
1112
- "carolina",
1113
- "case",
1114
- "cash",
1115
- "caters",
1116
- "cause",
1117
- "ce>",
1118
- "ced",
1119
- "ces",
1120
- "ch.",
1121
- "chandler",
1122
- "charlotte",
1123
- "chesapeake",
1124
- "chicago",
1125
- "choose",
1126
- "choosing",
1127
- "christi",
1128
- "chula",
1129
- "cincinnati",
1130
- "city",
1131
- "cky",
1132
- "claim",
1133
- "claims",
1134
- "clarity",
1135
- "clause",
1136
- "clauses",
1137
- "clean",
1138
- "clearly",
1139
- "cleveland",
1140
- "closing",
1141
- "co",
1142
- "co.",
1143
- "colo",
1144
- "colo.",
1145
- "colorado",
1146
- "columbus",
1147
- "come",
1148
- "commission",
1149
- "companies",
1150
- "company",
1151
- "compensation",
1152
- "competitive",
1153
- "complete",
1154
- "complex",
1155
- "compliance",
1156
- "compliant",
1157
- "component",
1158
- "components",
1159
- "comprehensive",
1160
- "conn",
1161
- "conn.",
1162
- "connect",
1163
- "connecticut",
1164
- "consider",
1165
- "considering",
1166
- "consult",
1167
- "consultancy",
1168
- "consultants",
1169
- "consultation",
1170
- "consulting",
1171
- "contact",
1172
- "contract",
1173
- "control",
1174
- "corp",
1175
- "corp.",
1176
- "corpus",
1177
- "correct",
1178
- "cos",
1179
- "costs",
1180
- "could",
1181
- "coverage",
1182
- "covered",
1183
- "coz",
1184
- "craft",
1185
- "crafting",
1186
- "create",
1187
- "creating",
1188
- "credible",
1189
- "credit",
1190
- "creditor",
1191
- "creditors",
1192
- "crucial",
1193
- "ct",
1194
- "ct.",
1195
- "cts",
1196
- "curious",
1197
- "cut",
1198
- "cuz",
1199
- "c\u2019m",
1200
- "d",
1201
- "d)",
1202
- "d-",
1203
- "d-)",
1204
- "d-X",
1205
- "d.",
1206
- "d.c.",
1207
- "d.d",
1208
- "d.x",
1209
- "dX",
1210
- "d_d",
1211
- "d_x",
1212
- "dakota",
1213
- "dallas",
1214
- "dare",
1215
- "data",
1216
- "day",
1217
- "dd",
1218
- "ddd",
1219
- "ddx.x",
1220
- "ddx.x.",
1221
- "de",
1222
- "deal",
1223
- "deals",
1224
- "debtor",
1225
- "debtors",
1226
- "dec",
1227
- "dec.",
1228
- "ded",
1229
- "deductible",
1230
- "deductibles",
1231
- "default",
1232
- "del",
1233
- "del.",
1234
- "delaware",
1235
- "denver",
1236
- "dependable",
1237
- "depreciation",
1238
- "der",
1239
- "des",
1240
- "designed",
1241
- "destination",
1242
- "detailed",
1243
- "details",
1244
- "detroit",
1245
- "did",
1246
- "diego",
1247
- "different",
1248
- "disability",
1249
- "discover",
1250
- "disposal",
1251
- "dit",
1252
- "diverse",
1253
- "dle",
1254
- "dm.",
1255
- "do",
1256
- "does",
1257
- "doin",
1258
- "doin'",
1259
- "doing",
1260
- "doin\u2019",
1261
- "down",
1262
- "dr",
1263
- "dr.",
1264
- "dream",
1265
- "durham",
1266
- "dx.x",
1267
- "dx.x.",
1268
- "dynamics",
1269
- "e",
1270
- "e's",
1271
- "e.",
1272
- "e.g",
1273
- "e.g.",
1274
- "ead",
1275
- "eah",
1276
- "eal",
1277
- "eam",
1278
- "ean",
1279
- "eas",
1280
- "easy",
1281
- "eat",
1282
- "eb.",
1283
- "ebr",
1284
- "ec.",
1285
- "ecosystem",
1286
- "ect",
1287
- "edo",
1288
- "eds",
1289
- "eed",
1290
- "eek",
1291
- "eep",
1292
- "ees",
1293
- "eet",
1294
- "effective",
1295
- "effectively",
1296
- "efficient",
1297
- "efficiently",
1298
- "ego",
1299
- "eim",
1300
- "eir",
1301
- "el",
1302
- "el.",
1303
- "eld",
1304
- "elevate",
1305
- "ell",
1306
- "elp",
1307
- "ely",
1308
- "em",
1309
- "en",
1310
- "en.",
1311
- "end",
1312
- "endorsement",
1313
- "enhance",
1314
- "enn",
1315
- "eno",
1316
- "enough",
1317
- "ens",
1318
- "ensure",
1319
- "ent",
1320
- "entail",
1321
- "enterprise",
1322
- "entrepreneurial",
1323
- "entry",
1324
- "ep.",
1325
- "ept",
1326
- "equity",
1327
- "ere",
1328
- "erm",
1329
- "ers",
1330
- "ert",
1331
- "ery",
1332
- "esa",
1333
- "escrow",
1334
- "ese",
1335
- "ess",
1336
- "essence",
1337
- "essential",
1338
- "est",
1339
- "estate",
1340
- "estimate",
1341
- "ete",
1342
- "ets",
1343
- "ev.",
1344
- "ews",
1345
- "excellent",
1346
- "exclusion",
1347
- "exclusions",
1348
- "existing",
1349
- "exlusion",
1350
- "expense",
1351
- "expenses",
1352
- "experience",
1353
- "experienced",
1354
- "expert",
1355
- "experts",
1356
- "explain",
1357
- "explanations",
1358
- "explore",
1359
- "exploring",
1360
- "extensive",
1361
- "e\u2019s",
1362
- "f",
1363
- "f.",
1364
- "facing",
1365
- "family",
1366
- "faster",
1367
- "favorable",
1368
- "feb",
1369
- "feb.",
1370
- "fee",
1371
- "fees",
1372
- "fer",
1373
- "file",
1374
- "finance",
1375
- "finances",
1376
- "financial",
1377
- "find",
1378
- "finding",
1379
- "finest",
1380
- "firms",
1381
- "fit",
1382
- "fixed",
1383
- "fl",
1384
- "fla",
1385
- "fla.",
1386
- "florida",
1387
- "flourish",
1388
- "flow",
1389
- "follows",
1390
- "fontana",
1391
- "for",
1392
- "foreclosure",
1393
- "fort",
1394
- "found",
1395
- "francisco",
1396
- "free",
1397
- "fremont",
1398
- "fresno",
1399
- "from",
1400
- "ful",
1401
- "fund",
1402
- "fundamentals",
1403
- "funding",
1404
- "future",
1405
- "g",
1406
- "g.",
1407
- "ga",
1408
- "ga.",
1409
- "gaap",
1410
- "gan",
1411
- "garland",
1412
- "gas",
1413
- "ged",
1414
- "gen",
1415
- "gen.",
1416
- "genuine",
1417
- "georgia",
1418
- "ger",
1419
- "ges",
1420
- "get",
1421
- "getting",
1422
- "ght",
1423
- "gia",
1424
- "gilbert",
1425
- "give",
1426
- "glendale",
1427
- "go",
1428
- "goin",
1429
- "goin'",
1430
- "going",
1431
- "goin\u2019",
1432
- "gon",
1433
- "gonna",
1434
- "good",
1435
- "gor",
1436
- "got",
1437
- "gov",
1438
- "gov.",
1439
- "grand",
1440
- "grasp",
1441
- "great",
1442
- "greatly",
1443
- "greensboro",
1444
- "grip",
1445
- "grow",
1446
- "growing",
1447
- "guarantee",
1448
- "guidance",
1449
- "guide",
1450
- "guidelines",
1451
- "h",
1452
- "h.",
1453
- "had",
1454
- "ham",
1455
- "hampshire",
1456
- "handle",
1457
- "happens",
1458
- "has",
1459
- "hassle",
1460
- "hat",
1461
- "have",
1462
- "havin",
1463
- "havin'",
1464
- "having",
1465
- "havin\u2019",
1466
- "hawaii",
1467
- "he",
1468
- "he's",
1469
- "health",
1470
- "healthy",
1471
- "heights",
1472
- "help",
1473
- "helped",
1474
- "hen",
1475
- "henderson",
1476
- "here",
1477
- "hey",
1478
- "he\u2019s",
1479
- "hi",
1480
- "hia",
1481
- "hialeah",
1482
- "high",
1483
- "hin",
1484
- "hio",
1485
- "hire",
1486
- "his",
1487
- "holds",
1488
- "home",
1489
- "homes",
1490
- "honolulu",
1491
- "hop",
1492
- "hosts",
1493
- "house",
1494
- "houston",
1495
- "how",
1496
- "how's",
1497
- "how\u2019s",
1498
- "hts",
1499
- "hub",
1500
- "huntington",
1501
- "i",
1502
- "i.",
1503
- "i.e",
1504
- "i.e.",
1505
- "ia",
1506
- "ia.",
1507
- "ial",
1508
- "ice",
1509
- "ich",
1510
- "ico",
1511
- "ics",
1512
- "icy",
1513
- "id",
1514
- "id.",
1515
- "ida",
1516
- "idaho",
1517
- "ide",
1518
- "ideal",
1519
- "ideas",
1520
- "ids",
1521
- "ien",
1522
- "ies",
1523
- "if",
1524
- "if.",
1525
- "ife",
1526
- "igh",
1527
- "ike",
1528
- "il",
1529
- "ild",
1530
- "ile",
1531
- "ill",
1532
- "ill.",
1533
- "illinois",
1534
- "ils",
1535
- "ily",
1536
- "ime",
1537
- "impact",
1538
- "impacts",
1539
- "implications",
1540
- "importance",
1541
- "impressive",
1542
- "improve",
1543
- "improved",
1544
- "ims",
1545
- "in",
1546
- "in'",
1547
- "ina",
1548
- "inc",
1549
- "inc.",
1550
- "income",
1551
- "increase",
1552
- "ind",
1553
- "ind.",
1554
- "indiana",
1555
- "indianapolis",
1556
- "industry",
1557
- "ine",
1558
- "info",
1559
- "information",
1560
- "ing",
1561
- "inn",
1562
- "ino",
1563
- "ins",
1564
- "insights",
1565
- "inspect",
1566
- "insurable",
1567
- "insurance",
1568
- "interest",
1569
- "interested",
1570
- "interests",
1571
- "intricacies",
1572
- "invest",
1573
- "in\u2019",
1574
- "ion",
1575
- "iowa",
1576
- "ipe",
1577
- "ips",
1578
- "ire",
1579
- "irvine",
1580
- "irving",
1581
- "is",
1582
- "is.",
1583
- "ise",
1584
- "ish",
1585
- "isk",
1586
- "island",
1587
- "iss",
1588
- "ist",
1589
- "it",
1590
- "it's",
1591
- "ita",
1592
- "ite",
1593
- "ith",
1594
- "its",
1595
- "ity",
1596
- "it\u2019s",
1597
- "ium",
1598
- "ive",
1599
- "iz.",
1600
- "ize",
1601
- "j",
1602
- "j.",
1603
- "jacksonville",
1604
- "jan",
1605
- "jan.",
1606
- "jersey",
1607
- "join",
1608
- "jose",
1609
- "journal",
1610
- "journey",
1611
- "jr",
1612
- "jr.",
1613
- "jul",
1614
- "jul.",
1615
- "jun",
1616
- "jun.",
1617
- "k",
1618
- "k.",
1619
- "kan",
1620
- "kan.",
1621
- "kans",
1622
- "kans.",
1623
- "kansas",
1624
- "kee",
1625
- "keep",
1626
- "ken",
1627
- "kentucky",
1628
- "ker",
1629
- "ket",
1630
- "kla",
1631
- "kly",
1632
- "know",
1633
- "ks",
1634
- "ky",
1635
- "ky.",
1636
- "l",
1637
- "l.",
1638
- "la",
1639
- "la.",
1640
- "lan",
1641
- "lar",
1642
- "laredo",
1643
- "large",
1644
- "las",
1645
- "latest",
1646
- "lawyer",
1647
- "lds",
1648
- "leaders",
1649
- "leading",
1650
- "learn",
1651
- "learning",
1652
- "led",
1653
- "ledger",
1654
- "lem",
1655
- "lender",
1656
- "lenders",
1657
- "ler",
1658
- "les",
1659
- "let",
1660
- "let's",
1661
- "let\u2019s",
1662
- "lex",
1663
- "lexington",
1664
- "liabilities",
1665
- "liability",
1666
- "lien",
1667
- "lif",
1668
- "life",
1669
- "like",
1670
- "limit",
1671
- "limits",
1672
- "lincoln",
1673
- "line",
1674
- "lis",
1675
- "ll",
1676
- "ll.",
1677
- "lla",
1678
- "lle",
1679
- "llo",
1680
- "lly",
1681
- "lo.",
1682
- "loan",
1683
- "loans",
1684
- "local",
1685
- "log",
1686
- "logs",
1687
- "long",
1688
- "look",
1689
- "looking",
1690
- "los",
1691
- "louis",
1692
- "louisiana",
1693
- "louisville",
1694
- "loved",
1695
- "lovin",
1696
- "lovin'",
1697
- "loving",
1698
- "lovin\u2019",
1699
- "low",
1700
- "lsa",
1701
- "ltd",
1702
- "ltd.",
1703
- "lth",
1704
- "lubbock",
1705
- "lue",
1706
- "m",
1707
- "m.",
1708
- "ma",
1709
- "ma'am",
1710
- "madam",
1711
- "madison",
1712
- "maine",
1713
- "maintain",
1714
- "maintaining",
1715
- "maintenance",
1716
- "make",
1717
- "manage",
1718
- "managed",
1719
- "management",
1720
- "managing",
1721
- "mar",
1722
- "mar.",
1723
- "market",
1724
- "maryland",
1725
- "mass",
1726
- "mass.",
1727
- "massachusetts",
1728
- "maximize",
1729
- "maximizing",
1730
- "may",
1731
- "ma\u2019am",
1732
- "md",
1733
- "md.",
1734
- "me",
1735
- "mean",
1736
- "meet",
1737
- "memphis",
1738
- "men",
1739
- "mes",
1740
- "mesa",
1741
- "messrs",
1742
- "messrs.",
1743
- "methods",
1744
- "meticulously",
1745
- "mexico",
1746
- "mi",
1747
- "miami",
1748
- "mich",
1749
- "mich.",
1750
- "michigan",
1751
- "might",
1752
- "milwaukee",
1753
- "minimize",
1754
- "minn",
1755
- "minn.",
1756
- "minneapolis",
1757
- "minnesota",
1758
- "miss",
1759
- "miss.",
1760
- "mississippi",
1761
- "missouri",
1762
- "mit",
1763
- "mitigate",
1764
- "mn",
1765
- "mo",
1766
- "mo.",
1767
- "modesto",
1768
- "moines",
1769
- "mont",
1770
- "mont.",
1771
- "montana",
1772
- "more",
1773
- "mortgage",
1774
- "mortgages",
1775
- "mortgagor",
1776
- "most",
1777
- "mpa",
1778
- "mr",
1779
- "mr.",
1780
- "mrs",
1781
- "mrs.",
1782
- "ms",
1783
- "ms.",
1784
- "mt",
1785
- "mt.",
1786
- "mum",
1787
- "must",
1788
- "my",
1789
- "n",
1790
- "n's",
1791
- "n't",
1792
- "n.",
1793
- "n.c.",
1794
- "n.d.",
1795
- "n.h.",
1796
- "n.j.",
1797
- "n.m.",
1798
- "n.y.",
1799
- "na",
1800
- "nal",
1801
- "nar",
1802
- "nashville",
1803
- "nc",
1804
- "nc.",
1805
- "nce",
1806
- "ncy",
1807
- "nd",
1808
- "nd.",
1809
- "ndo",
1810
- "nds",
1811
- "ne",
1812
- "neb",
1813
- "neb.",
1814
- "nebr",
1815
- "nebr.",
1816
- "nebraska",
1817
- "ned",
1818
- "need",
1819
- "needs",
1820
- "neighborhoods",
1821
- "nes",
1822
- "nev",
1823
- "nev.",
1824
- "nevada",
1825
- "new",
1826
- "newark",
1827
- "ney",
1828
- "nfo",
1829
- "nge",
1830
- "ngs",
1831
- "nh",
1832
- "nia",
1833
- "nio",
1834
- "nix",
1835
- "nj",
1836
- "nm",
1837
- "nn.",
1838
- "norfolk",
1839
- "north",
1840
- "not",
1841
- "notch",
1842
- "nothin",
1843
- "nothin'",
1844
- "nothing",
1845
- "nothin\u2019",
1846
- "nov",
1847
- "nov.",
1848
- "now",
1849
- "ns.",
1850
- "nse",
1851
- "nt",
1852
- "nt.",
1853
- "nta",
1854
- "nto",
1855
- "nts",
1856
- "nuances",
1857
- "nuff",
1858
- "nuthin",
1859
- "nuthin'",
1860
- "nuthin\u2019",
1861
- "nv",
1862
- "ny",
1863
- "n\u2019s",
1864
- "n\u2019t",
1865
- "o",
1866
- "o'clock",
1867
- "o's",
1868
- "o.",
1869
- "o.0",
1870
- "o.O",
1871
- "o.o",
1872
- "o_0",
1873
- "o_O",
1874
- "o_o",
1875
- "oakland",
1876
- "oan",
1877
- "oat",
1878
- "ock",
1879
- "oct",
1880
- "oct.",
1881
- "ode",
1882
- "ods",
1883
- "oes",
1884
- "of",
1885
- "of.",
1886
- "offer",
1887
- "offering",
1888
- "offerings",
1889
- "offers",
1890
- "ogs",
1891
- "oh",
1892
- "ohio",
1893
- "oid",
1894
- "oin",
1895
- "ois",
1896
- "oit",
1897
- "ok",
1898
- "okla",
1899
- "okla.",
1900
- "oklahoma",
1901
- "oks",
1902
- "ol",
1903
- "ol'",
1904
- "old",
1905
- "ole",
1906
- "olk",
1907
- "oln",
1908
- "olo",
1909
- "ol\u2019",
1910
- "oma",
1911
- "omaha",
1912
- "ome",
1913
- "on",
1914
- "ona",
1915
- "ond",
1916
- "one",
1917
- "ones",
1918
- "ong",
1919
- "onn",
1920
- "ons",
1921
- "ont",
1922
- "ood",
1923
- "ook",
1924
- "operations",
1925
- "opportunities",
1926
- "ops",
1927
- "opt",
1928
- "optimize",
1929
- "optimum",
1930
- "option",
1931
- "options",
1932
- "or",
1933
- "ora",
1934
- "ord",
1935
- "order",
1936
- "ore",
1937
- "ore.",
1938
- "oregon",
1939
- "organized",
1940
- "origination",
1941
- "ork",
1942
- "orlando",
1943
- "orleans",
1944
- "oro",
1945
- "orp",
1946
- "ors",
1947
- "ort",
1948
- "ory",
1949
- "os.",
1950
- "ose",
1951
- "ost",
1952
- "ota",
1953
- "oth",
1954
- "ought",
1955
- "our",
1956
- "ous",
1957
- "out",
1958
- "outs",
1959
- "ov.",
1960
- "ove",
1961
- "owa",
1962
- "own",
1963
- "ows",
1964
- "o\u2019clock",
1965
- "o\u2019s",
1966
- "p",
1967
- "p.",
1968
- "p.m",
1969
- "p.m.",
1970
- "pa",
1971
- "pa.",
1972
- "packages",
1973
- "pal",
1974
- "paperwork",
1975
- "paso",
1976
- "payment",
1977
- "payments",
1978
- "ped",
1979
- "pel",
1980
- "pennsylvania",
1981
- "perfect",
1982
- "petersburg",
1983
- "ph",
1984
- "ph.d.",
1985
- "philadelphia",
1986
- "phoenix",
1987
- "pittsburgh",
1988
- "place",
1989
- "plan",
1990
- "planning",
1991
- "plano",
1992
- "plans",
1993
- "pm",
1994
- "points",
1995
- "policies",
1996
- "policy",
1997
- "portland",
1998
- "positive",
1999
- "possible",
2000
- "ppi",
2001
- "pr.",
2002
- "precise",
2003
- "premium",
2004
- "preparation",
2005
- "prepare",
2006
- "prepared",
2007
- "preparing",
2008
- "present",
2009
- "prevention",
2010
- "principal",
2011
- "principles",
2012
- "pro",
2013
- "process",
2014
- "processes",
2015
- "prof",
2016
- "prof.",
2017
- "professional",
2018
- "professionals",
2019
- "proficiently",
2020
- "profit",
2021
- "profitable",
2022
- "profits",
2023
- "programs",
2024
- "propel",
2025
- "property",
2026
- "protect",
2027
- "protection",
2028
- "protects",
2029
- "proven",
2030
- "provide",
2031
- "provided",
2032
- "provider",
2033
- "providers",
2034
- "pt.",
2035
- "purchase",
2036
- "pus",
2037
- "q",
2038
- "q.",
2039
- "qualification",
2040
- "que",
2041
- "quickly",
2042
- "quite",
2043
- "r",
2044
- "r.",
2045
- "raleigh",
2046
- "range",
2047
- "rapids",
2048
- "rate",
2049
- "rates",
2050
- "rds",
2051
- "re",
2052
- "re.",
2053
- "reach",
2054
- "readily",
2055
- "ready",
2056
- "real",
2057
- "receivables",
2058
- "recommend",
2059
- "recommendations",
2060
- "reconciliation",
2061
- "record",
2062
- "records",
2063
- "red",
2064
- "reduce",
2065
- "reducing",
2066
- "reduction",
2067
- "ree",
2068
- "refinance",
2069
- "refinancing",
2070
- "reflects",
2071
- "regular",
2072
- "regulations",
2073
- "reliable",
2074
- "rely",
2075
- "reno",
2076
- "rep",
2077
- "rep.",
2078
- "report",
2079
- "reputable",
2080
- "reputation",
2081
- "reputed",
2082
- "requirements",
2083
- "res",
2084
- "responsibility",
2085
- "retirement",
2086
- "rev",
2087
- "rev.",
2088
- "reviewed",
2089
- "reviews",
2090
- "rge",
2091
- "rgh",
2092
- "rhode",
2093
- "ri",
2094
- "richmond",
2095
- "right",
2096
- "rightly",
2097
- "rights",
2098
- "rip",
2099
- "ripe",
2100
- "risk",
2101
- "riverside",
2102
- "riz",
2103
- "rk.",
2104
- "rks",
2105
- "rly",
2106
- "rms",
2107
- "robust",
2108
- "rof",
2109
- "rol",
2110
- "role",
2111
- "rom",
2112
- "ron",
2113
- "ros",
2114
- "rouge",
2115
- "row",
2116
- "rp.",
2117
- "rs.",
2118
- "rse",
2119
- "rth",
2120
- "rts",
2121
- "rty",
2122
- "rue",
2123
- "s",
2124
- "s's",
2125
- "s.",
2126
- "s.c.",
2127
- "sacramento",
2128
- "safeguard",
2129
- "sal",
2130
- "salem",
2131
- "san",
2132
- "santa",
2133
- "sas",
2134
- "save",
2135
- "savings",
2136
- "sc",
2137
- "sco",
2138
- "scottsdale",
2139
- "scratch",
2140
- "scrutinize",
2141
- "sd",
2142
- "seamless",
2143
- "seamlessly",
2144
- "searching",
2145
- "seasoned",
2146
- "seattle",
2147
- "secrets",
2148
- "secure",
2149
- "secures",
2150
- "sed",
2151
- "see",
2152
- "seek",
2153
- "seeking",
2154
- "seller",
2155
- "selling",
2156
- "seminar",
2157
- "sen",
2158
- "sen.",
2159
- "sep",
2160
- "sep.",
2161
- "sept",
2162
- "sept.",
2163
- "seriously",
2164
- "service",
2165
- "services",
2166
- "ses",
2167
- "sey",
2168
- "sh.",
2169
- "sha",
2170
- "shall",
2171
- "she",
2172
- "she's",
2173
- "sheet",
2174
- "she\u2019s",
2175
- "should",
2176
- "shreveport",
2177
- "significantly",
2178
- "sin",
2179
- "sis",
2180
- "ska",
2181
- "sle",
2182
- "sly",
2183
- "small",
2184
- "smart",
2185
- "smooth",
2186
- "sno",
2187
- "solutions",
2188
- "somethin",
2189
- "somethin'",
2190
- "something",
2191
- "somethin\u2019",
2192
- "son",
2193
- "sor",
2194
- "sound",
2195
- "south",
2196
- "space",
2197
- "specialists",
2198
- "specialized",
2199
- "spokane",
2200
- "springs",
2201
- "srs",
2202
- "ss.",
2203
- "st",
2204
- "st.",
2205
- "sta",
2206
- "stability",
2207
- "stable",
2208
- "staging",
2209
- "standards",
2210
- "standing",
2211
- "start",
2212
- "startup",
2213
- "state",
2214
- "state_code",
2215
- "statement",
2216
- "stay",
2217
- "steadily",
2218
- "step",
2219
- "sti",
2220
- "sto",
2221
- "stockton",
2222
- "strategically",
2223
- "strategies",
2224
- "streamline",
2225
- "streamlined",
2226
- "strong",
2227
- "structures",
2228
- "sts",
2229
- "substantial",
2230
- "successful",
2231
- "suggest",
2232
- "suggestions",
2233
- "suitable",
2234
- "suits",
2235
- "surprises",
2236
- "sustainable",
2237
- "sustainably",
2238
- "systematically",
2239
- "s\u2019s",
2240
- "t",
2241
- "t's",
2242
- "t.",
2243
- "ta",
2244
- "tab",
2245
- "tacoma",
2246
- "tah",
2247
- "tailored",
2248
- "take",
2249
- "taken",
2250
- "tal",
2251
- "tallahassee",
2252
- "tampa",
2253
- "tax",
2254
- "tay",
2255
- "tch",
2256
- "td.",
2257
- "teach",
2258
- "team",
2259
- "ted",
2260
- "tee",
2261
- "tem",
2262
- "tenn",
2263
- "tenn.",
2264
- "tennessee",
2265
- "tep",
2266
- "ter",
2267
- "term",
2268
- "terms",
2269
- "tes",
2270
- "texas",
2271
- "that",
2272
- "that's",
2273
- "that\u2019s",
2274
- "the",
2275
- "their",
2276
- "them",
2277
- "there",
2278
- "there's",
2279
- "there\u2019s",
2280
- "these",
2281
- "they",
2282
- "thinking",
2283
- "this",
2284
- "this's",
2285
- "this\u2019s",
2286
- "those",
2287
- "thrive",
2288
- "through",
2289
- "thy",
2290
- "time",
2291
- "tin",
2292
- "tips",
2293
- "tle",
2294
- "tly",
2295
- "tn",
2296
- "to",
2297
- "today",
2298
- "toledo",
2299
- "ton",
2300
- "top",
2301
- "tor",
2302
- "touch",
2303
- "towards",
2304
- "track",
2305
- "transaction",
2306
- "transactions",
2307
- "transparency",
2308
- "transparent",
2309
- "true",
2310
- "trusted",
2311
- "trustworthy",
2312
- "try",
2313
- "trying",
2314
- "tte",
2315
- "tts",
2316
- "tucson",
2317
- "tulsa",
2318
- "tup",
2319
- "tx",
2320
- "t\u2019s",
2321
- "u",
2322
- "u.",
2323
- "ual",
2324
- "uce",
2325
- "uch",
2326
- "uff",
2327
- "ug.",
2328
- "uge",
2329
- "ugh",
2330
- "uis",
2331
- "ul.",
2332
- "ula",
2333
- "uld",
2334
- "ult",
2335
- "ulu",
2336
- "umbrella",
2337
- "un.",
2338
- "und",
2339
- "understand",
2340
- "understanding",
2341
- "understands",
2342
- "underwater",
2343
- "underwriter",
2344
- "underwriters",
2345
- "underwriting",
2346
- "unnecessary",
2347
- "unt",
2348
- "updated",
2349
- "ure",
2350
- "urg",
2351
- "uri",
2352
- "us",
2353
- "use",
2354
- "ust",
2355
- "ut",
2356
- "utah",
2357
- "uth",
2358
- "uts",
2359
- "v",
2360
- "v.",
2361
- "v.s",
2362
- "v.s.",
2363
- "v.v",
2364
- "v_v",
2365
- "va",
2366
- "va.",
2367
- "valuation",
2368
- "value",
2369
- "various",
2370
- "vast",
2371
- "ve",
2372
- "ved",
2373
- "vegas",
2374
- "ven",
2375
- "ver",
2376
- "vermont",
2377
- "versed",
2378
- "vertical",
2379
- "very",
2380
- "vin",
2381
- "virginia",
2382
- "vista",
2383
- "vital",
2384
- "vs",
2385
- "vs.",
2386
- "vt",
2387
- "w",
2388
- "w's",
2389
- "w.",
2390
- "w/o",
2391
- "wa",
2392
- "want",
2393
- "was",
2394
- "wash",
2395
- "wash.",
2396
- "washington",
2397
- "way",
2398
- "wayne",
2399
- "ways",
2400
- "we",
2401
- "wed",
2402
- "well",
2403
- "wellbeing",
2404
- "were",
2405
- "west",
2406
- "what",
2407
- "what's",
2408
- "what\u2019s",
2409
- "when",
2410
- "when's",
2411
- "when\u2019s",
2412
- "where",
2413
- "where's",
2414
- "where\u2019s",
2415
- "who",
2416
- "who's",
2417
- "whole",
2418
- "who\u2019s",
2419
- "why",
2420
- "why's",
2421
- "why\u2019s",
2422
- "wi",
2423
- "wichita",
2424
- "wide",
2425
- "will",
2426
- "winston",
2427
- "wis",
2428
- "wis.",
2429
- "wisconsin",
2430
- "with",
2431
- "without",
2432
- "wo",
2433
- "work",
2434
- "working",
2435
- "works",
2436
- "workshop",
2437
- "workshops",
2438
- "worth",
2439
- "would",
2440
- "wv",
2441
- "wy",
2442
- "wyoming",
2443
- "w\u2019s",
2444
- "x",
2445
- "x'",
2446
- "x'x",
2447
- "x'xxxx",
2448
- "x.",
2449
- "x.X",
2450
- "x.d",
2451
- "x.x",
2452
- "x.x.",
2453
- "x/x",
2454
- "xD",
2455
- "xDD",
2456
- "xX",
2457
- "xXX",
2458
- "x_X",
2459
- "x_d",
2460
- "x_x",
2461
- "xas",
2462
- "xd",
2463
- "xdd",
2464
- "xed",
2465
- "xx",
2466
- "xx'",
2467
- "xx'x",
2468
- "xx'xx",
2469
- "xx.",
2470
- "xxx",
2471
- "xxx'x",
2472
- "xxx/xx",
2473
- "xxxx",
2474
- "xxxx'",
2475
- "xxxx'x",
2476
- "xxxx\u2019",
2477
- "xxxx\u2019x",
2478
- "xxx\u2019x",
2479
- "xx\u2019",
2480
- "xx\u2019x",
2481
- "xx\u2019xx",
2482
- "x\u2019",
2483
- "x\u2019x",
2484
- "x\u2019xxxx",
2485
- "x\ufe35x",
2486
- "y",
2487
- "y'",
2488
- "y's",
2489
- "y.",
2490
- "yer",
2491
- "yne",
2492
- "yonkers",
2493
- "york",
2494
- "you",
2495
- "your",
2496
- "y\u2019",
2497
- "y\u2019s",
2498
- "z",
2499
- "z.",
2500
- "zed",
2501
- "|",
2502
- "}",
2503
- "\u00a0",
2504
- "\u00ac",
2505
- "\u00ac_\u00ac",
2506
- "\u00af",
2507
- "\u00af\\(x)/\u00af",
2508
- "\u00af\\(\u30c4)/\u00af",
2509
- "\u00b0",
2510
- "\u00b0C.",
2511
- "\u00b0F.",
2512
- "\u00b0K.",
2513
- "\u00b0X.",
2514
- "\u00b0c.",
2515
- "\u00b0f.",
2516
- "\u00b0k.",
2517
- "\u00b0x.",
2518
- "\u00e4",
2519
- "\u00e4.",
2520
- "\u00f6",
2521
- "\u00f6.",
2522
- "\u00fc",
2523
- "\u00fc.",
2524
- "\u0ca0",
2525
- "\u0ca0_\u0ca0",
2526
- "\u0ca0\ufe35\u0ca0",
2527
- "\u2013",
2528
- "\u2014",
2529
- "\u2018",
2530
- "\u2018S",
2531
- "\u2018X",
2532
- "\u2018s",
2533
- "\u2018x",
2534
- "\u2019",
2535
- "\u2019-(",
2536
- "\u2019-)",
2537
- "\u2019Cause",
2538
- "\u2019Cos",
2539
- "\u2019Coz",
2540
- "\u2019Cuz",
2541
- "\u2019S",
2542
- "\u2019X",
2543
- "\u2019Xxx",
2544
- "\u2019Xxxxx",
2545
- "\u2019am",
2546
- "\u2019bout",
2547
- "\u2019cause",
2548
- "\u2019cos",
2549
- "\u2019coz",
2550
- "\u2019cuz",
2551
- "\u2019d",
2552
- "\u2019em",
2553
- "\u2019ll",
2554
- "\u2019m",
2555
- "\u2019nuff",
2556
- "\u2019re",
2557
- "\u2019s",
2558
- "\u2019ve",
2559
- "\u2019x",
2560
- "\u2019xx",
2561
- "\u2019xxx",
2562
- "\u2019xxxx",
2563
- "\u2019y",
2564
- "\u2019\u2019",
2565
- "\u2501",
2566
- "\u253b",
2567
- "\u253b\u2501\u253b",
2568
- "\u256f",
2569
- "\u25a1",
2570
- "\ufe35",
2571
- "\uff09"
2572
- ]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
both_models/spacy_ner_model/en_pipeline/en_pipeline-0.0.0/vocab/vectors DELETED
Binary file (128 Bytes)
 
both_models/spacy_ner_model/en_pipeline/en_pipeline-0.0.0/vocab/vectors.cfg DELETED
@@ -1,3 +0,0 @@
1
- {
2
- "mode":"default"
3
- }
 
 
 
 
both_models/spacy_ner_model/en_pipeline/meta.json DELETED
@@ -1,68 +0,0 @@
1
- {
2
- "lang":"en",
3
- "name":"pipeline",
4
- "version":"0.0.0",
5
- "description":"",
6
- "author":"",
7
- "email":"",
8
- "url":"",
9
- "license":"",
10
- "spacy_version":">=3.6.0,<3.7.0",
11
- "spacy_git_version":"6fc153a26",
12
- "vectors":{
13
- "width":0,
14
- "vectors":0,
15
- "keys":0,
16
- "name":null
17
- },
18
- "labels":{
19
- "tok2vec":[
20
-
21
- ],
22
- "entity_ruler":[
23
- "STATE",
24
- "STATE_CODE",
25
- "ZIPCODE"
26
- ],
27
- "ner":[
28
- "CITY",
29
- "STATE",
30
- "VERTICAL"
31
- ]
32
- },
33
- "pipeline":[
34
- "tok2vec",
35
- "entity_ruler",
36
- "ner"
37
- ],
38
- "components":[
39
- "tok2vec",
40
- "entity_ruler",
41
- "ner"
42
- ],
43
- "disabled":[
44
-
45
- ],
46
- "performance":{
47
- "ents_f":0.9981834696,
48
- "ents_p":0.9990909091,
49
- "ents_r":0.997277677,
50
- "ents_per_type":{
51
- "VERTICAL":{
52
- "p":1.0,
53
- "r":0.9966499162,
54
- "f":0.9983221477
55
- },
56
- "CITY":{
57
- "p":0.998019802,
58
- "r":0.998019802,
59
- "f":0.998019802
60
- }
61
- },
62
- "tok2vec_loss":208.7829439196,
63
- "ner_loss":27.6274758303
64
- },
65
- "requirements":[
66
-
67
- ]
68
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
both_models/spacy_ner_model/meta.json DELETED
@@ -1,68 +0,0 @@
1
- {
2
- "lang":"en",
3
- "name":"pipeline",
4
- "version":"0.0.0",
5
- "description":"",
6
- "author":"",
7
- "email":"",
8
- "url":"",
9
- "license":"",
10
- "spacy_version":">=3.6.0,<3.7.0",
11
- "spacy_git_version":"6fc153a26",
12
- "vectors":{
13
- "width":0,
14
- "vectors":0,
15
- "keys":0,
16
- "name":null
17
- },
18
- "labels":{
19
- "tok2vec":[
20
-
21
- ],
22
- "entity_ruler":[
23
- "STATE",
24
- "STATE_CODE",
25
- "ZIPCODE"
26
- ],
27
- "ner":[
28
- "CITY",
29
- "STATE",
30
- "VERTICAL"
31
- ]
32
- },
33
- "pipeline":[
34
- "tok2vec",
35
- "entity_ruler",
36
- "ner"
37
- ],
38
- "components":[
39
- "tok2vec",
40
- "entity_ruler",
41
- "ner"
42
- ],
43
- "disabled":[
44
-
45
- ],
46
- "performance":{
47
- "ents_f":0.9981834696,
48
- "ents_p":0.9990909091,
49
- "ents_r":0.997277677,
50
- "ents_per_type":{
51
- "VERTICAL":{
52
- "p":1.0,
53
- "r":0.9966499162,
54
- "f":0.9983221477
55
- },
56
- "CITY":{
57
- "p":0.998019802,
58
- "r":0.998019802,
59
- "f":0.998019802
60
- }
61
- },
62
- "tok2vec_loss":208.7829439196,
63
- "ner_loss":27.6274758303
64
- },
65
- "requirements":[
66
-
67
- ]
68
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
both_models/spacy_ner_model/setup.py DELETED
@@ -1,72 +0,0 @@
1
- #!/usr/bin/env python
2
- import io
3
- import json
4
- from os import path, walk
5
- from shutil import copy
6
- from setuptools import setup
7
-
8
-
9
- def load_meta(fp):
10
- with io.open(fp, encoding='utf8') as f:
11
- return json.load(f)
12
-
13
-
14
- def load_readme(fp):
15
- if path.exists(fp):
16
- with io.open(fp, encoding='utf8') as f:
17
- return f.read()
18
- return ""
19
-
20
-
21
- def list_files(data_dir):
22
- output = []
23
- for root, _, filenames in walk(data_dir):
24
- for filename in filenames:
25
- if not filename.startswith('.'):
26
- output.append(path.join(root, filename))
27
- output = [path.relpath(p, path.dirname(data_dir)) for p in output]
28
- output.append('meta.json')
29
- return output
30
-
31
-
32
- def list_requirements(meta):
33
- parent_package = meta.get('parent_package', 'spacy')
34
- requirements = [parent_package + meta['spacy_version']]
35
- if 'setup_requires' in meta:
36
- requirements += meta['setup_requires']
37
- if 'requirements' in meta:
38
- requirements += meta['requirements']
39
- return requirements
40
-
41
-
42
- def setup_package():
43
- root = path.abspath(path.dirname(__file__))
44
- meta_path = path.join(root, 'meta.json')
45
- meta = load_meta(meta_path)
46
- readme_path = path.join(root, 'README.md')
47
- readme = load_readme(readme_path)
48
- model_name = str(meta['lang'] + '_' + meta['name'])
49
- model_dir = path.join(model_name, model_name + '-' + meta['version'])
50
-
51
- copy(meta_path, path.join(model_name))
52
- copy(meta_path, model_dir)
53
-
54
- setup(
55
- name=model_name,
56
- description=meta.get('description'),
57
- long_description=readme,
58
- author=meta.get('author'),
59
- author_email=meta.get('email'),
60
- url=meta.get('url'),
61
- version=meta['version'],
62
- license=meta.get('license'),
63
- packages=[model_name],
64
- package_data={model_name: list_files(model_dir)},
65
- install_requires=list_requirements(meta),
66
- zip_safe=False,
67
- entry_points={'spacy_models': ['{m} = {m}'.format(m=model_name)]}
68
- )
69
-
70
-
71
- if __name__ == '__main__':
72
- setup_package()