Upload folder using huggingface_hub
Browse files- .gitattributes +1 -0
- README.md +28 -0
- medical-ner-task2/config.cfg +130 -0
- medical-ner-task2/meta.json +36 -0
- medical-ner-task2/ner/cfg +13 -0
- medical-ner-task2/ner/model +3 -0
- medical-ner-task2/ner/moves +1 -0
- medical-ner-task2/tokenizer +3 -0
- medical-ner-task2/vocab/key2row +1 -0
- medical-ner-task2/vocab/lookups.bin +3 -0
- medical-ner-task2/vocab/strings.json +5333 -0
- medical-ner-task2/vocab/vectors +0 -0
- medical-ner-task2/vocab/vectors.cfg +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
medical-ner-task2/ner/model filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
tags:
|
| 3 |
+
- spacy
|
| 4 |
+
- ner
|
| 5 |
+
- medical-ner
|
| 6 |
+
library_name: spacy
|
| 7 |
+
pipeline_tag: ner
|
| 8 |
+
language: en
|
| 9 |
+
license: mit
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
+
# Medical NER Model - medical-ner-task2
|
| 13 |
+
|
| 14 |
+
This model is trained to recognize medical entities including treatments, chronic diseases, cancers, and allergies.
|
| 15 |
+
|
| 16 |
+
## Model Details
|
| 17 |
+
- Task: medical-ner-task2
|
| 18 |
+
- Framework: spaCy
|
| 19 |
+
- Entity Types: TREATMENT, CHRONIC DISEASE, CANCER, ALLERGY, OTHER
|
| 20 |
+
|
| 21 |
+
## Usage
|
| 22 |
+
```python
|
| 23 |
+
import spacy
|
| 24 |
+
nlp = spacy.load("nitinyadav/continual_learning_ner_task2")
|
| 25 |
+
doc = nlp("Patient has been diagnosed with Type 2 Diabetes")
|
| 26 |
+
for ent in doc.ents:
|
| 27 |
+
print(ent.text, ent.label_)
|
| 28 |
+
```
|
medical-ner-task2/config.cfg
ADDED
|
@@ -0,0 +1,130 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[paths]
|
| 2 |
+
train = null
|
| 3 |
+
dev = null
|
| 4 |
+
vectors = null
|
| 5 |
+
init_tok2vec = null
|
| 6 |
+
|
| 7 |
+
[system]
|
| 8 |
+
seed = 0
|
| 9 |
+
gpu_allocator = null
|
| 10 |
+
|
| 11 |
+
[nlp]
|
| 12 |
+
lang = "en"
|
| 13 |
+
pipeline = ["ner"]
|
| 14 |
+
disabled = []
|
| 15 |
+
before_creation = null
|
| 16 |
+
after_creation = null
|
| 17 |
+
after_pipeline_creation = null
|
| 18 |
+
batch_size = 1000
|
| 19 |
+
tokenizer = {"@tokenizers":"spacy.Tokenizer.v1"}
|
| 20 |
+
vectors = {"@vectors":"spacy.Vectors.v1"}
|
| 21 |
+
|
| 22 |
+
[components]
|
| 23 |
+
|
| 24 |
+
[components.ner]
|
| 25 |
+
factory = "ner"
|
| 26 |
+
incorrect_spans_key = null
|
| 27 |
+
moves = null
|
| 28 |
+
scorer = {"@scorers":"spacy.ner_scorer.v1"}
|
| 29 |
+
update_with_oracle_cut_size = 100
|
| 30 |
+
|
| 31 |
+
[components.ner.model]
|
| 32 |
+
@architectures = "spacy.TransitionBasedParser.v2"
|
| 33 |
+
state_type = "ner"
|
| 34 |
+
extra_state_tokens = false
|
| 35 |
+
hidden_width = 64
|
| 36 |
+
maxout_pieces = 2
|
| 37 |
+
use_upper = true
|
| 38 |
+
nO = null
|
| 39 |
+
|
| 40 |
+
[components.ner.model.tok2vec]
|
| 41 |
+
@architectures = "spacy.HashEmbedCNN.v2"
|
| 42 |
+
pretrained_vectors = null
|
| 43 |
+
width = 96
|
| 44 |
+
depth = 4
|
| 45 |
+
embed_size = 2000
|
| 46 |
+
window_size = 1
|
| 47 |
+
maxout_pieces = 3
|
| 48 |
+
subword_features = true
|
| 49 |
+
|
| 50 |
+
[corpora]
|
| 51 |
+
|
| 52 |
+
[corpora.dev]
|
| 53 |
+
@readers = "spacy.Corpus.v1"
|
| 54 |
+
path = ${paths.dev}
|
| 55 |
+
gold_preproc = false
|
| 56 |
+
max_length = 0
|
| 57 |
+
limit = 0
|
| 58 |
+
augmenter = null
|
| 59 |
+
|
| 60 |
+
[corpora.train]
|
| 61 |
+
@readers = "spacy.Corpus.v1"
|
| 62 |
+
path = ${paths.train}
|
| 63 |
+
gold_preproc = false
|
| 64 |
+
max_length = 0
|
| 65 |
+
limit = 0
|
| 66 |
+
augmenter = null
|
| 67 |
+
|
| 68 |
+
[training]
|
| 69 |
+
seed = ${system.seed}
|
| 70 |
+
gpu_allocator = ${system.gpu_allocator}
|
| 71 |
+
dropout = 0.1
|
| 72 |
+
accumulate_gradient = 1
|
| 73 |
+
patience = 1600
|
| 74 |
+
max_epochs = 0
|
| 75 |
+
max_steps = 20000
|
| 76 |
+
eval_frequency = 200
|
| 77 |
+
frozen_components = []
|
| 78 |
+
annotating_components = []
|
| 79 |
+
dev_corpus = "corpora.dev"
|
| 80 |
+
train_corpus = "corpora.train"
|
| 81 |
+
before_to_disk = null
|
| 82 |
+
before_update = null
|
| 83 |
+
|
| 84 |
+
[training.batcher]
|
| 85 |
+
@batchers = "spacy.batch_by_words.v1"
|
| 86 |
+
discard_oversize = false
|
| 87 |
+
tolerance = 0.2
|
| 88 |
+
get_length = null
|
| 89 |
+
|
| 90 |
+
[training.batcher.size]
|
| 91 |
+
@schedules = "compounding.v1"
|
| 92 |
+
start = 100
|
| 93 |
+
stop = 1000
|
| 94 |
+
compound = 1.001
|
| 95 |
+
t = 0.0
|
| 96 |
+
|
| 97 |
+
[training.logger]
|
| 98 |
+
@loggers = "spacy.ConsoleLogger.v1"
|
| 99 |
+
progress_bar = false
|
| 100 |
+
|
| 101 |
+
[training.optimizer]
|
| 102 |
+
@optimizers = "Adam.v1"
|
| 103 |
+
beta1 = 0.9
|
| 104 |
+
beta2 = 0.999
|
| 105 |
+
L2_is_weight_decay = true
|
| 106 |
+
L2 = 0.01
|
| 107 |
+
grad_clip = 1.0
|
| 108 |
+
use_averages = false
|
| 109 |
+
eps = 0.00000001
|
| 110 |
+
learn_rate = 0.001
|
| 111 |
+
|
| 112 |
+
[training.score_weights]
|
| 113 |
+
ents_f = 1.0
|
| 114 |
+
ents_p = 0.0
|
| 115 |
+
ents_r = 0.0
|
| 116 |
+
ents_per_type = null
|
| 117 |
+
|
| 118 |
+
[pretraining]
|
| 119 |
+
|
| 120 |
+
[initialize]
|
| 121 |
+
vectors = ${paths.vectors}
|
| 122 |
+
init_tok2vec = ${paths.init_tok2vec}
|
| 123 |
+
vocab_data = null
|
| 124 |
+
lookups = null
|
| 125 |
+
before_init = null
|
| 126 |
+
after_init = null
|
| 127 |
+
|
| 128 |
+
[initialize.components]
|
| 129 |
+
|
| 130 |
+
[initialize.tokenizer]
|
medical-ner-task2/meta.json
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"lang":"en",
|
| 3 |
+
"name":"pipeline",
|
| 4 |
+
"version":"0.0.0",
|
| 5 |
+
"spacy_version":">=3.7.5,<3.8.0",
|
| 6 |
+
"description":"",
|
| 7 |
+
"author":"",
|
| 8 |
+
"email":"",
|
| 9 |
+
"url":"",
|
| 10 |
+
"license":"",
|
| 11 |
+
"spacy_git_version":"a6d0fc360",
|
| 12 |
+
"vectors":{
|
| 13 |
+
"width":0,
|
| 14 |
+
"vectors":0,
|
| 15 |
+
"keys":0,
|
| 16 |
+
"name":null,
|
| 17 |
+
"mode":"default"
|
| 18 |
+
},
|
| 19 |
+
"labels":{
|
| 20 |
+
"ner":[
|
| 21 |
+
"ALLERGY",
|
| 22 |
+
"CANCER",
|
| 23 |
+
"CHRONIC DISEASE",
|
| 24 |
+
"TREATMENT"
|
| 25 |
+
]
|
| 26 |
+
},
|
| 27 |
+
"pipeline":[
|
| 28 |
+
"ner"
|
| 29 |
+
],
|
| 30 |
+
"components":[
|
| 31 |
+
"ner"
|
| 32 |
+
],
|
| 33 |
+
"disabled":[
|
| 34 |
+
|
| 35 |
+
]
|
| 36 |
+
}
|
medical-ner-task2/ner/cfg
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"moves":null,
|
| 3 |
+
"update_with_oracle_cut_size":100,
|
| 4 |
+
"multitasks":[
|
| 5 |
+
|
| 6 |
+
],
|
| 7 |
+
"min_action_freq":1,
|
| 8 |
+
"learn_tokens":false,
|
| 9 |
+
"beam_width":1,
|
| 10 |
+
"beam_density":0.0,
|
| 11 |
+
"beam_update_prob":0.0,
|
| 12 |
+
"incorrect_spans_key":null
|
| 13 |
+
}
|
medical-ner-task2/ner/model
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:45f6a7b9cca349458346d75ad81be6b68bdcfb3e8c4c5a61b46e2b2c796295de
|
| 3 |
+
size 3836040
|
medical-ner-task2/ner/moves
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
��moves�${"0":{},"1":{"CANCER":-1,"CHRONIC DISEASE":-2,"TREATMENT":-3,"ALLERGY":-4},"2":{"CANCER":-1,"CHRONIC DISEASE":-2,"TREATMENT":-3,"ALLERGY":-4},"3":{"CANCER":-1,"CHRONIC DISEASE":-2,"TREATMENT":-3,"ALLERGY":-4},"4":{"":1,"CANCER":-1,"CHRONIC DISEASE":-2,"TREATMENT":-3,"ALLERGY":-4},"5":{"":1}}�cfg��neg_key�
|
medical-ner-task2/tokenizer
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
��prefix_search��^§|^%|^=|^—|^–|^\+(?![0-9])|^…|^……|^,|^:|^;|^\!|^\?|^¿|^؟|^¡|^\(|^\)|^\[|^\]|^\{|^\}|^<|^>|^_|^#|^\*|^&|^。|^?|^!|^,|^、|^;|^:|^~|^·|^।|^،|^۔|^؛|^٪|^\.\.+|^…|^\'|^"|^”|^“|^`|^‘|^´|^’|^‚|^,|^„|^»|^«|^「|^」|^『|^』|^(|^)|^〔|^〕|^【|^】|^《|^》|^〈|^〉|^〈|^〉|^⟦|^⟧|^\$|^£|^€|^¥|^฿|^US\$|^C\$|^A\$|^₽|^﷼|^₴|^₠|^₡|^₢|^₣|^₤|^₥|^₦|^₧|^₨|^₩|^₪|^₫|^€|^₭|^₮|^₯|^₰|^₱|^₲|^₳|^₴|^₵|^₶|^₷|^₸|^₹|^₺|^₻|^₼|^₽|^₾|^₿|^[\u00A6\u00A9\u00AE\u00B0\u0482\u058D\u058E\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u09FA\u0B70\u0BF3-\u0BF8\u0BFA\u0C7F\u0D4F\u0D79\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116\u2117\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u214A\u214C\u214D\u214F\u218A\u218B\u2195-\u2199\u219C-\u219F\u21A1\u21A2\u21A4\u21A5\u21A7-\u21AD\u21AF-\u21CD\u21D0\u21D1\u21D3\u21D5-\u21F3\u2300-\u2307\u230C-\u231F\u2322-\u2328\u232B-\u237B\u237D-\u239A\u23B4-\u23DB\u23E2-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u25B6\u25B8-\u25C0\u25C2-\u25F7\u2600-\u266E\u2670-\u2767\u2794-\u27BF\u2800-\u28FF\u2B00-\u2B2F\u2B45\u2B46\u2B4D-\u2B73\u2B76-\u2B95\u2B98-\u2BC8\u2BCA-\u2BFE\u2CE5-\u2CEA\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u32FE\u3300-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA828-\uA82B\uA836\uA837\uA839\uAA77-\uAA79\uFDFD\uFFE4\uFFE8\uFFED\uFFEE\uFFFC\uFFFD\U00010137-\U0001013F\U00010179-\U00010189\U0001018C-\U0001018E\U00010190-\U0001019B\U000101A0\U000101D0-\U000101FC\U00010877\U00010878\U00010AC8\U0001173F\U00016B3C-\U00016B3F\U00016B45\U0001BC9C\U0001D000-\U0001D0F5\U0001D100-\U0001D126\U0001D129-\U0001D164\U0001D16A-\U0001D16C\U0001D183\U0001D184\U0001D18C-\U0001D1A9\U0001D1AE-\U0001D1E8\U0001D200-\U0001D241\U0001D245\U0001D300-\U0001D356\U0001D800-\U0001D9FF\U0001DA37-\U0001DA3A\U0001DA6D-\U0001DA74\U0001DA76-\U0001DA83\U0001DA85\U0001DA86\U0001ECAC\U0001F000-\U0001F02B\U0001F030-\U0001F093\U0001F0A0-\U0001F0AE\U0001F0B1-\U0001F0BF\U0001F0C1-\U0001F0CF\U0001F0D1-\U0001F0F5\U0001F110-\U0001F16B\U0001F170-\U0001F1AC\U0001F1E6-\U0001F202\U0001F210-\U0001F23B\U0001F240-\U0001F248\U0001F250\U0001F251\U0001F260-\U0001F265\U0001F300-\U0001F3FA\U0001F400-\U0001F6D4\U0001F6E0-\U0001F6EC\U0001F6F0-\U0001F6F9\U0001F700-\U0001F773\U0001F780-\U0001F7D8\U0001F800-\U0001F80B\U0001F810-\U0001F847\U0001F850-\U0001F859\U0001F860-\U0001F887\U0001F890-\U0001F8AD\U0001F900-\U0001F90B\U0001F910-\U0001F93E\U0001F940-\U0001F970\U0001F973-\U0001F976\U0001F97A\U0001F97C-\U0001F9A2\U0001F9B0-\U0001F9B9\U0001F9C0-\U0001F9C2\U0001F9D0-\U0001F9FF\U0001FA60-\U0001FA6D]�suffix_search�2�…$|……$|,$|:$|;$|\!$|\?$|¿$|؟$|¡$|\($|\)$|\[$|\]$|\{$|\}$|<$|>$|_$|#$|\*$|&$|。$|?$|!$|,$|、$|;$|:$|~$|·$|।$|،$|۔$|؛$|٪$|\.\.+$|…$|\'$|"$|”$|“$|`$|‘$|´$|’$|‚$|,$|„$|»$|«$|「$|」$|『$|』$|($|)$|〔$|〕$|【$|】$|《$|》$|〈$|〉$|〈$|〉$|⟦$|⟧$|[\u00A6\u00A9\u00AE\u00B0\u0482\u058D\u058E\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u09FA\u0B70\u0BF3-\u0BF8\u0BFA\u0C7F\u0D4F\u0D79\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116\u2117\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u214A\u214C\u214D\u214F\u218A\u218B\u2195-\u2199\u219C-\u219F\u21A1\u21A2\u21A4\u21A5\u21A7-\u21AD\u21AF-\u21CD\u21D0\u21D1\u21D3\u21D5-\u21F3\u2300-\u2307\u230C-\u231F\u2322-\u2328\u232B-\u237B\u237D-\u239A\u23B4-\u23DB\u23E2-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u25B6\u25B8-\u25C0\u25C2-\u25F7\u2600-\u266E\u2670-\u2767\u2794-\u27BF\u2800-\u28FF\u2B00-\u2B2F\u2B45\u2B46\u2B4D-\u2B73\u2B76-\u2B95\u2B98-\u2BC8\u2BCA-\u2BFE\u2CE5-\u2CEA\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u32FE\u3300-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA828-\uA82B\uA836\uA837\uA839\uAA77-\uAA79\uFDFD\uFFE4\uFFE8\uFFED\uFFEE\uFFFC\uFFFD\U00010137-\U0001013F\U00010179-\U00010189\U0001018C-\U0001018E\U00010190-\U0001019B\U000101A0\U000101D0-\U000101FC\U00010877\U00010878\U00010AC8\U0001173F\U00016B3C-\U00016B3F\U00016B45\U0001BC9C\U0001D000-\U0001D0F5\U0001D100-\U0001D126\U0001D129-\U0001D164\U0001D16A-\U0001D16C\U0001D183\U0001D184\U0001D18C-\U0001D1A9\U0001D1AE-\U0001D1E8\U0001D200-\U0001D241\U0001D245\U0001D300-\U0001D356\U0001D800-\U0001D9FF\U0001DA37-\U0001DA3A\U0001DA6D-\U0001DA74\U0001DA76-\U0001DA83\U0001DA85\U0001DA86\U0001ECAC\U0001F000-\U0001F02B\U0001F030-\U0001F093\U0001F0A0-\U0001F0AE\U0001F0B1-\U0001F0BF\U0001F0C1-\U0001F0CF\U0001F0D1-\U0001F0F5\U0001F110-\U0001F16B\U0001F170-\U0001F1AC\U0001F1E6-\U0001F202\U0001F210-\U0001F23B\U0001F240-\U0001F248\U0001F250\U0001F251\U0001F260-\U0001F265\U0001F300-\U0001F3FA\U0001F400-\U0001F6D4\U0001F6E0-\U0001F6EC\U0001F6F0-\U0001F6F9\U0001F700-\U0001F773\U0001F780-\U0001F7D8\U0001F800-\U0001F80B\U0001F810-\U0001F847\U0001F850-\U0001F859\U0001F860-\U0001F887\U0001F890-\U0001F8AD\U0001F900-\U0001F90B\U0001F910-\U0001F93E\U0001F940-\U0001F970\U0001F973-\U0001F976\U0001F97A\U0001F97C-\U0001F9A2\U0001F9B0-\U0001F9B9\U0001F9C0-\U0001F9C2\U0001F9D0-\U0001F9FF\U0001FA60-\U0001FA6D]$|'s$|'S$|’s$|’S$|—$|–$|(?<=[0-9])\+$|(?<=°[FfCcKk])\.$|(?<=[0-9])(?:\$|£|€|¥|฿|US\$|C\$|A\$|₽|﷼|₴|₠|₡|₢|₣|₤|₥|₦|₧|₨|₩|₪|₫|€|₭|₮|₯|₰|₱|₲|₳|₴|₵|₶|₷|₸|₹|₺|₻|₼|₽|₾|₿)$|(?<=[0-9])(?:km|km²|km³|m|m²|m³|dm|dm²|dm³|cm|cm²|cm³|mm|mm²|mm³|ha|µm|nm|yd|in|ft|kg|g|mg|µg|t|lb|oz|m/s|km/h|kmh|mph|hPa|Pa|mbar|mb|MB|kb|KB|gb|GB|tb|TB|T|G|M|K|%|км|км²|км³|м|м²|м³|дм|дм²|дм³|см|см²|см³|мм|мм²|мм³|нм|кг|г|мг|м/с|км/ч|кПа|Па|мбар|Кб|КБ|кб|Мб|МБ|мб|Гб|ГБ|гб|Тб|ТБ|тбكم|كم²|كم³|م|م²|م³|سم|سم²|سم³|مم|مم²|مم³|كم|غرام|جرام|جم|كغ|ملغ|كوب|اكواب)$|(?<=[0-9a-z\uFF41-\uFF5A\u00DF-\u00F6\u00F8-\u00FF\u0101\u0103\u0105\u0107\u0109\u010B\u010D\u010F\u0111\u0113\u0115\u0117\u0119\u011B\u011D\u011F\u0121\u0123\u0125\u0127\u0129\u012B\u012D\u012F\u0131\u0133\u0135\u0137\u0138\u013A\u013C\u013E\u0140\u0142\u0144\u0146\u0148\u0149\u014B\u014D\u014F\u0151\u0153\u0155\u0157\u0159\u015B\u015D\u015F\u0161\u0163\u0165\u0167\u0169\u016B\u016D\u016F\u0171\u0173\u0175\u0177\u017A\u017C\u017E\u017F\u0180\u0183\u0185\u0188\u018C\u018D\u0192\u0195\u0199-\u019B\u019E\u01A1\u01A3\u01A5\u01A8\u01AA\u01AB\u01AD\u01B0\u01B4\u01B6\u01B9\u01BA\u01BD-\u01BF\u01C6\u01C9\u01CC\u01CE\u01D0\u01D2\u01D4\u01D6\u01D8\u01DA\u01DC\u01DD\u01DF\u01E1\u01E3\u01E5\u01E7\u01E9\u01EB\u01ED\u01EF\u01F0\u01F3\u01F5\u01F9\u01FB\u01FD\u01FF\u0201\u0203\u0205\u0207\u0209\u020B\u020D\u020F\u0211\u0213\u0215\u0217\u0219\u021B\u021D\u021F\u0221\u0223\u0225\u0227\u0229\u022B\u022D\u022F\u0231\u0233-\u0239\u023C\u023F\u0240\u0242\u0247\u0249\u024B\u024D\u024F\u2C61\u2C65\u2C66\u2C68\u2C6A\u2C6C\u2C71\u2C73\u2C74\u2C76-\u2C7B\uA723\uA725\uA727\uA729\uA72B\uA72D\uA72F-\uA731\uA733\uA735\uA737\uA739\uA73B\uA73D\uA73F\uA741\uA743\uA745\uA747\uA749\uA74B\uA74D\uA74F\uA751\uA753\uA755\uA757\uA759\uA75B\uA75D\uA75F\uA761\uA763\uA765\uA767\uA769\uA76B\uA76D\uA76F\uA771-\uA778\uA77A\uA77C\uA77F\uA781\uA783\uA785\uA787\uA78C\uA78E\uA791\uA793-\uA795\uA797\uA799\uA79B\uA79D\uA79F\uA7A1\uA7A3\uA7A5\uA7A7\uA7A9\uA7AF\uA7B5\uA7B7\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E01\u1E03\u1E05\u1E07\u1E09\u1E0B\u1E0D\u1E0F\u1E11\u1E13\u1E15\u1E17\u1E19\u1E1B\u1E1D\u1E1F\u1E21\u1E23\u1E25\u1E27\u1E29\u1E2B\u1E2D\u1E2F\u1E31\u1E33\u1E35\u1E37\u1E39\u1E3B\u1E3D\u1E3F\u1E41\u1E43\u1E45\u1E47\u1E49\u1E4B\u1E4D\u1E4F\u1E51\u1E53\u1E55\u1E57\u1E59\u1E5B\u1E5D\u1E5F\u1E61\u1E63\u1E65\u1E67\u1E69\u1E6B\u1E6D\u1E6F\u1E71\u1E73\u1E75\u1E77\u1E79\u1E7B\u1E7D\u1E7F\u1E81\u1E83\u1E85\u1E87\u1E89\u1E8B\u1E8D\u1E8F\u1E91\u1E93\u1E95-\u1E9D\u1E9F\u1EA1\u1EA3\u1EA5\u1EA7\u1EA9\u1EAB\u1EAD\u1EAF\u1EB1\u1EB3\u1EB5\u1EB7\u1EB9\u1EBB\u1EBD\u1EBF\u1EC1\u1EC3\u1EC5\u1EC7\u1EC9\u1ECB\u1ECD\u1ECF\u1ED1\u1ED3\u1ED5\u1ED7\u1ED9\u1EDB\u1EDD\u1EDF\u1EE1\u1EE3\u1EE5\u1EE7\u1EE9\u1EEB\u1EED\u1EEF\u1EF1\u1EF3\u1EF5\u1EF7\u1EF9\u1EFB\u1EFD\u1EFFёа-яәөүҗңһα-ωάέίόώήύа-щюяіїєґѓѕјљњќѐѝ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F%²\-\+…|……|,|:|;|\!|\?|¿|؟|¡|\(|\)|\[|\]|\{|\}|<|>|_|#|\*|&|。|?|!|,|、|;|:|~|·|।|،|۔|؛|٪(?:\'"”“`‘´’‚,„»«「」『』()〔〕【】《》〈〉〈〉⟦⟧)])\.$|(?<=[A-Z\uFF21-\uFF3A\u00C0-\u00D6\u00D8-\u00DE\u0100\u0102\u0104\u0106\u0108\u010A\u010C\u010E\u0110\u0112\u0114\u0116\u0118\u011A\u011C\u011E\u0120\u0122\u0124\u0126\u0128\u012A\u012C\u012E\u0130\u0132\u0134\u0136\u0139\u013B\u013D\u013F\u0141\u0143\u0145\u0147\u014A\u014C\u014E\u0150\u0152\u0154\u0156\u0158\u015A\u015C\u015E\u0160\u0162\u0164\u0166\u0168\u016A\u016C\u016E\u0170\u0172\u0174\u0176\u0178\u0179\u017B\u017D\u0181\u0182\u0184\u0186\u0187\u0189-\u018B\u018E-\u0191\u0193\u0194\u0196-\u0198\u019C\u019D\u019F\u01A0\u01A2\u01A4\u01A6\u01A7\u01A9\u01AC\u01AE\u01AF\u01B1-\u01B3\u01B5\u01B7\u01B8\u01BC\u01C4\u01C7\u01CA\u01CD\u01CF\u01D1\u01D3\u01D5\u01D7\u01D9\u01DB\u01DE\u01E0\u01E2\u01E4\u01E6\u01E8\u01EA\u01EC\u01EE\u01F1\u01F4\u01F6-\u01F8\u01FA\u01FC\u01FE\u0200\u0202\u0204\u0206\u0208\u020A\u020C\u020E\u0210\u0212\u0214\u0216\u0218\u021A\u021C\u021E\u0220\u0222\u0224\u0226\u0228\u022A\u022C\u022E\u0230\u0232\u023A\u023B\u023D\u023E\u0241\u0243-\u0246\u0248\u024A\u024C\u024E\u2C60\u2C62-\u2C64\u2C67\u2C69\u2C6B\u2C6D-\u2C70\u2C72\u2C75\u2C7E\u2C7F\uA722\uA724\uA726\uA728\uA72A\uA72C\uA72E\uA732\uA734\uA736\uA738\uA73A\uA73C\uA73E\uA740\uA742\uA744\uA746\uA748\uA74A\uA74C\uA74E\uA750\uA752\uA754\uA756\uA758\uA75A\uA75C\uA75E\uA760\uA762\uA764\uA766\uA768\uA76A\uA76C\uA76E\uA779\uA77B\uA77D\uA77E\uA780\uA782\uA784\uA786\uA78B\uA78D\uA790\uA792\uA796\uA798\uA79A\uA79C\uA79E\uA7A0\uA7A2\uA7A4\uA7A6\uA7A8\uA7AA-\uA7AE\uA7B0-\uA7B4\uA7B6\uA7B8\u1E00\u1E02\u1E04\u1E06\u1E08\u1E0A\u1E0C\u1E0E\u1E10\u1E12\u1E14\u1E16\u1E18\u1E1A\u1E1C\u1E1E\u1E20\u1E22\u1E24\u1E26\u1E28\u1E2A\u1E2C\u1E2E\u1E30\u1E32\u1E34\u1E36\u1E38\u1E3A\u1E3C\u1E3E\u1E40\u1E42\u1E44\u1E46\u1E48\u1E4A\u1E4C\u1E4E\u1E50\u1E52\u1E54\u1E56\u1E58\u1E5A\u1E5C\u1E5E\u1E60\u1E62\u1E64\u1E66\u1E68\u1E6A\u1E6C\u1E6E\u1E70\u1E72\u1E74\u1E76\u1E78\u1E7A\u1E7C\u1E7E\u1E80\u1E82\u1E84\u1E86\u1E88\u1E8A\u1E8C\u1E8E\u1E90\u1E92\u1E94\u1E9E\u1EA0\u1EA2\u1EA4\u1EA6\u1EA8\u1EAA\u1EAC\u1EAE\u1EB0\u1EB2\u1EB4\u1EB6\u1EB8\u1EBA\u1EBC\u1EBE\u1EC0\u1EC2\u1EC4\u1EC6\u1EC8\u1ECA\u1ECC\u1ECE\u1ED0\u1ED2\u1ED4\u1ED6\u1ED8\u1EDA\u1EDC\u1EDE\u1EE0\u1EE2\u1EE4\u1EE6\u1EE8\u1EEA\u1EEC\u1EEE\u1EF0\u1EF2\u1EF4\u1EF6\u1EF8\u1EFA\u1EFC\u1EFEЁА-ЯӘӨҮҖҢҺΑ-ΩΆΈΊΌΏΉΎА-ЩЮЯІЇЄҐЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F][A-Z\uFF21-\uFF3A\u00C0-\u00D6\u00D8-\u00DE\u0100\u0102\u0104\u0106\u0108\u010A\u010C\u010E\u0110\u0112\u0114\u0116\u0118\u011A\u011C\u011E\u0120\u0122\u0124\u0126\u0128\u012A\u012C\u012E\u0130\u0132\u0134\u0136\u0139\u013B\u013D\u013F\u0141\u0143\u0145\u0147\u014A\u014C\u014E\u0150\u0152\u0154\u0156\u0158\u015A\u015C\u015E\u0160\u0162\u0164\u0166\u0168\u016A\u016C\u016E\u0170\u0172\u0174\u0176\u0178\u0179\u017B\u017D\u0181\u0182\u0184\u0186\u0187\u0189-\u018B\u018E-\u0191\u0193\u0194\u0196-\u0198\u019C\u019D\u019F\u01A0\u01A2\u01A4\u01A6\u01A7\u01A9\u01AC\u01AE\u01AF\u01B1-\u01B3\u01B5\u01B7\u01B8\u01BC\u01C4\u01C7\u01CA\u01CD\u01CF\u01D1\u01D3\u01D5\u01D7\u01D9\u01DB\u01DE\u01E0\u01E2\u01E4\u01E6\u01E8\u01EA\u01EC\u01EE\u01F1\u01F4\u01F6-\u01F8\u01FA\u01FC\u01FE\u0200\u0202\u0204\u0206\u0208\u020A\u020C\u020E\u0210\u0212\u0214\u0216\u0218\u021A\u021C\u021E\u0220\u0222\u0224\u0226\u0228\u022A\u022C\u022E\u0230\u0232\u023A\u023B\u023D\u023E\u0241\u0243-\u0246\u0248\u024A\u024C\u024E\u2C60\u2C62-\u2C64\u2C67\u2C69\u2C6B\u2C6D-\u2C70\u2C72\u2C75\u2C7E\u2C7F\uA722\uA724\uA726\uA728\uA72A\uA72C\uA72E\uA732\uA734\uA736\uA738\uA73A\uA73C\uA73E\uA740\uA742\uA744\uA746\uA748\uA74A\uA74C\uA74E\uA750\uA752\uA754\uA756\uA758\uA75A\uA75C\uA75E\uA760\uA762\uA764\uA766\uA768\uA76A\uA76C\uA76E\uA779\uA77B\uA77D\uA77E\uA780\uA782\uA784\uA786\uA78B\uA78D\uA790\uA792\uA796\uA798\uA79A\uA79C\uA79E\uA7A0\uA7A2\uA7A4\uA7A6\uA7A8\uA7AA-\uA7AE\uA7B0-\uA7B4\uA7B6\uA7B8\u1E00\u1E02\u1E04\u1E06\u1E08\u1E0A\u1E0C\u1E0E\u1E10\u1E12\u1E14\u1E16\u1E18\u1E1A\u1E1C\u1E1E\u1E20\u1E22\u1E24\u1E26\u1E28\u1E2A\u1E2C\u1E2E\u1E30\u1E32\u1E34\u1E36\u1E38\u1E3A\u1E3C\u1E3E\u1E40\u1E42\u1E44\u1E46\u1E48\u1E4A\u1E4C\u1E4E\u1E50\u1E52\u1E54\u1E56\u1E58\u1E5A\u1E5C\u1E5E\u1E60\u1E62\u1E64\u1E66\u1E68\u1E6A\u1E6C\u1E6E\u1E70\u1E72\u1E74\u1E76\u1E78\u1E7A\u1E7C\u1E7E\u1E80\u1E82\u1E84\u1E86\u1E88\u1E8A\u1E8C\u1E8E\u1E90\u1E92\u1E94\u1E9E\u1EA0\u1EA2\u1EA4\u1EA6\u1EA8\u1EAA\u1EAC\u1EAE\u1EB0\u1EB2\u1EB4\u1EB6\u1EB8\u1EBA\u1EBC\u1EBE\u1EC0\u1EC2\u1EC4\u1EC6\u1EC8\u1ECA\u1ECC\u1ECE\u1ED0\u1ED2\u1ED4\u1ED6\u1ED8\u1EDA\u1EDC\u1EDE\u1EE0\u1EE2\u1EE4\u1EE6\u1EE8\u1EEA\u1EEC\u1EEE\u1EF0\u1EF2\u1EF4\u1EF6\u1EF8\u1EFA\u1EFC\u1EFEЁА-ЯӘӨҮҖҢҺΑ-ΩΆΈΊΌΏΉΎА-ЩЮЯІЇЄҐЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])\.$�infix_finditer�>�\.\.+|…|[\u00A6\u00A9\u00AE\u00B0\u0482\u058D\u058E\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u09FA\u0B70\u0BF3-\u0BF8\u0BFA\u0C7F\u0D4F\u0D79\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116\u2117\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u214A\u214C\u214D\u214F\u218A\u218B\u2195-\u2199\u219C-\u219F\u21A1\u21A2\u21A4\u21A5\u21A7-\u21AD\u21AF-\u21CD\u21D0\u21D1\u21D3\u21D5-\u21F3\u2300-\u2307\u230C-\u231F\u2322-\u2328\u232B-\u237B\u237D-\u239A\u23B4-\u23DB\u23E2-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u25B6\u25B8-\u25C0\u25C2-\u25F7\u2600-\u266E\u2670-\u2767\u2794-\u27BF\u2800-\u28FF\u2B00-\u2B2F\u2B45\u2B46\u2B4D-\u2B73\u2B76-\u2B95\u2B98-\u2BC8\u2BCA-\u2BFE\u2CE5-\u2CEA\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u32FE\u3300-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA828-\uA82B\uA836\uA837\uA839\uAA77-\uAA79\uFDFD\uFFE4\uFFE8\uFFED\uFFEE\uFFFC\uFFFD\U00010137-\U0001013F\U00010179-\U00010189\U0001018C-\U0001018E\U00010190-\U0001019B\U000101A0\U000101D0-\U000101FC\U00010877\U00010878\U00010AC8\U0001173F\U00016B3C-\U00016B3F\U00016B45\U0001BC9C\U0001D000-\U0001D0F5\U0001D100-\U0001D126\U0001D129-\U0001D164\U0001D16A-\U0001D16C\U0001D183\U0001D184\U0001D18C-\U0001D1A9\U0001D1AE-\U0001D1E8\U0001D200-\U0001D241\U0001D245\U0001D300-\U0001D356\U0001D800-\U0001D9FF\U0001DA37-\U0001DA3A\U0001DA6D-\U0001DA74\U0001DA76-\U0001DA83\U0001DA85\U0001DA86\U0001ECAC\U0001F000-\U0001F02B\U0001F030-\U0001F093\U0001F0A0-\U0001F0AE\U0001F0B1-\U0001F0BF\U0001F0C1-\U0001F0CF\U0001F0D1-\U0001F0F5\U0001F110-\U0001F16B\U0001F170-\U0001F1AC\U0001F1E6-\U0001F202\U0001F210-\U0001F23B\U0001F240-\U0001F248\U0001F250\U0001F251\U0001F260-\U0001F265\U0001F300-\U0001F3FA\U0001F400-\U0001F6D4\U0001F6E0-\U0001F6EC\U0001F6F0-\U0001F6F9\U0001F700-\U0001F773\U0001F780-\U0001F7D8\U0001F800-\U0001F80B\U0001F810-\U0001F847\U0001F850-\U0001F859\U0001F860-\U0001F887\U0001F890-\U0001F8AD\U0001F900-\U0001F90B\U0001F910-\U0001F93E\U0001F940-\U0001F970\U0001F973-\U0001F976\U0001F97A\U0001F97C-\U0001F9A2\U0001F9B0-\U0001F9B9\U0001F9C0-\U0001F9C2\U0001F9D0-\U0001F9FF\U0001FA60-\U0001FA6D]|(?<=[0-9])[+\-\*^](?=[0-9-])|(?<=[a-z\uFF41-\uFF5A\u00DF-\u00F6\u00F8-\u00FF\u0101\u0103\u0105\u0107\u0109\u010B\u010D\u010F\u0111\u0113\u0115\u0117\u0119\u011B\u011D\u011F\u0121\u0123\u0125\u0127\u0129\u012B\u012D\u012F\u0131\u0133\u0135\u0137\u0138\u013A\u013C\u013E\u0140\u0142\u0144\u0146\u0148\u0149\u014B\u014D\u014F\u0151\u0153\u0155\u0157\u0159\u015B\u015D\u015F\u0161\u0163\u0165\u0167\u0169\u016B\u016D\u016F\u0171\u0173\u0175\u0177\u017A\u017C\u017E\u017F\u0180\u0183\u0185\u0188\u018C\u018D\u0192\u0195\u0199-\u019B\u019E\u01A1\u01A3\u01A5\u01A8\u01AA\u01AB\u01AD\u01B0\u01B4\u01B6\u01B9\u01BA\u01BD-\u01BF\u01C6\u01C9\u01CC\u01CE\u01D0\u01D2\u01D4\u01D6\u01D8\u01DA\u01DC\u01DD\u01DF\u01E1\u01E3\u01E5\u01E7\u01E9\u01EB\u01ED\u01EF\u01F0\u01F3\u01F5\u01F9\u01FB\u01FD\u01FF\u0201\u0203\u0205\u0207\u0209\u020B\u020D\u020F\u0211\u0213\u0215\u0217\u0219\u021B\u021D\u021F\u0221\u0223\u0225\u0227\u0229\u022B\u022D\u022F\u0231\u0233-\u0239\u023C\u023F\u0240\u0242\u0247\u0249\u024B\u024D\u024F\u2C61\u2C65\u2C66\u2C68\u2C6A\u2C6C\u2C71\u2C73\u2C74\u2C76-\u2C7B\uA723\uA725\uA727\uA729\uA72B\uA72D\uA72F-\uA731\uA733\uA735\uA737\uA739\uA73B\uA73D\uA73F\uA741\uA743\uA745\uA747\uA749\uA74B\uA74D\uA74F\uA751\uA753\uA755\uA757\uA759\uA75B\uA75D\uA75F\uA761\uA763\uA765\uA767\uA769\uA76B\uA76D\uA76F\uA771-\uA778\uA77A\uA77C\uA77F\uA781\uA783\uA785\uA787\uA78C\uA78E\uA791\uA793-\uA795\uA797\uA799\uA79B\uA79D\uA79F\uA7A1\uA7A3\uA7A5\uA7A7\uA7A9\uA7AF\uA7B5\uA7B7\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E01\u1E03\u1E05\u1E07\u1E09\u1E0B\u1E0D\u1E0F\u1E11\u1E13\u1E15\u1E17\u1E19\u1E1B\u1E1D\u1E1F\u1E21\u1E23\u1E25\u1E27\u1E29\u1E2B\u1E2D\u1E2F\u1E31\u1E33\u1E35\u1E37\u1E39\u1E3B\u1E3D\u1E3F\u1E41\u1E43\u1E45\u1E47\u1E49\u1E4B\u1E4D\u1E4F\u1E51\u1E53\u1E55\u1E57\u1E59\u1E5B\u1E5D\u1E5F\u1E61\u1E63\u1E65\u1E67\u1E69\u1E6B\u1E6D\u1E6F\u1E71\u1E73\u1E75\u1E77\u1E79\u1E7B\u1E7D\u1E7F\u1E81\u1E83\u1E85\u1E87\u1E89\u1E8B\u1E8D\u1E8F\u1E91\u1E93\u1E95-\u1E9D\u1E9F\u1EA1\u1EA3\u1EA5\u1EA7\u1EA9\u1EAB\u1EAD\u1EAF\u1EB1\u1EB3\u1EB5\u1EB7\u1EB9\u1EBB\u1EBD\u1EBF\u1EC1\u1EC3\u1EC5\u1EC7\u1EC9\u1ECB\u1ECD\u1ECF\u1ED1\u1ED3\u1ED5\u1ED7\u1ED9\u1EDB\u1EDD\u1EDF\u1EE1\u1EE3\u1EE5\u1EE7\u1EE9\u1EEB\u1EED\u1EEF\u1EF1\u1EF3\u1EF5\u1EF7\u1EF9\u1EFB\u1EFD\u1EFFёа-яәөүҗңһα-ωάέίόώήύа-щюяіїєґѓѕјљњќѐѝ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F\'"”“`‘´’‚,„»«「」『』()〔〕【】《》〈〉〈〉⟦⟧])\.(?=[A-Z\uFF21-\uFF3A\u00C0-\u00D6\u00D8-\u00DE\u0100\u0102\u0104\u0106\u0108\u010A\u010C\u010E\u0110\u0112\u0114\u0116\u0118\u011A\u011C\u011E\u0120\u0122\u0124\u0126\u0128\u012A\u012C\u012E\u0130\u0132\u0134\u0136\u0139\u013B\u013D\u013F\u0141\u0143\u0145\u0147\u014A\u014C\u014E\u0150\u0152\u0154\u0156\u0158\u015A\u015C\u015E\u0160\u0162\u0164\u0166\u0168\u016A\u016C\u016E\u0170\u0172\u0174\u0176\u0178\u0179\u017B\u017D\u0181\u0182\u0184\u0186\u0187\u0189-\u018B\u018E-\u0191\u0193\u0194\u0196-\u0198\u019C\u019D\u019F\u01A0\u01A2\u01A4\u01A6\u01A7\u01A9\u01AC\u01AE\u01AF\u01B1-\u01B3\u01B5\u01B7\u01B8\u01BC\u01C4\u01C7\u01CA\u01CD\u01CF\u01D1\u01D3\u01D5\u01D7\u01D9\u01DB\u01DE\u01E0\u01E2\u01E4\u01E6\u01E8\u01EA\u01EC\u01EE\u01F1\u01F4\u01F6-\u01F8\u01FA\u01FC\u01FE\u0200\u0202\u0204\u0206\u0208\u020A\u020C\u020E\u0210\u0212\u0214\u0216\u0218\u021A\u021C\u021E\u0220\u0222\u0224\u0226\u0228\u022A\u022C\u022E\u0230\u0232\u023A\u023B\u023D\u023E\u0241\u0243-\u0246\u0248\u024A\u024C\u024E\u2C60\u2C62-\u2C64\u2C67\u2C69\u2C6B\u2C6D-\u2C70\u2C72\u2C75\u2C7E\u2C7F\uA722\uA724\uA726\uA728\uA72A\uA72C\uA72E\uA732\uA734\uA736\uA738\uA73A\uA73C\uA73E\uA740\uA742\uA744\uA746\uA748\uA74A\uA74C\uA74E\uA750\uA752\uA754\uA756\uA758\uA75A\uA75C\uA75E\uA760\uA762\uA764\uA766\uA768\uA76A\uA76C\uA76E\uA779\uA77B\uA77D\uA77E\uA780\uA782\uA784\uA786\uA78B\uA78D\uA790\uA792\uA796\uA798\uA79A\uA79C\uA79E\uA7A0\uA7A2\uA7A4\uA7A6\uA7A8\uA7AA-\uA7AE\uA7B0-\uA7B4\uA7B6\uA7B8\u1E00\u1E02\u1E04\u1E06\u1E08\u1E0A\u1E0C\u1E0E\u1E10\u1E12\u1E14\u1E16\u1E18\u1E1A\u1E1C\u1E1E\u1E20\u1E22\u1E24\u1E26\u1E28\u1E2A\u1E2C\u1E2E\u1E30\u1E32\u1E34\u1E36\u1E38\u1E3A\u1E3C\u1E3E\u1E40\u1E42\u1E44\u1E46\u1E48\u1E4A\u1E4C\u1E4E\u1E50\u1E52\u1E54\u1E56\u1E58\u1E5A\u1E5C\u1E5E\u1E60\u1E62\u1E64\u1E66\u1E68\u1E6A\u1E6C\u1E6E\u1E70\u1E72\u1E74\u1E76\u1E78\u1E7A\u1E7C\u1E7E\u1E80\u1E82\u1E84\u1E86\u1E88\u1E8A\u1E8C\u1E8E\u1E90\u1E92\u1E94\u1E9E\u1EA0\u1EA2\u1EA4\u1EA6\u1EA8\u1EAA\u1EAC\u1EAE\u1EB0\u1EB2\u1EB4\u1EB6\u1EB8\u1EBA\u1EBC\u1EBE\u1EC0\u1EC2\u1EC4\u1EC6\u1EC8\u1ECA\u1ECC\u1ECE\u1ED0\u1ED2\u1ED4\u1ED6\u1ED8\u1EDA\u1EDC\u1EDE\u1EE0\u1EE2\u1EE4\u1EE6\u1EE8\u1EEA\u1EEC\u1EEE\u1EF0\u1EF2\u1EF4\u1EF6\u1EF8\u1EFA\u1EFC\u1EFEЁА-ЯӘӨҮҖҢҺΑ-ΩΆΈΊΌΏΉΎА-ЩЮЯІЇЄҐЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F\'"”“`‘´’‚,„»«「」『』()〔〕【】《》〈〉〈〉⟦⟧])|(?<=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F]),(?=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])|(?<=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F0-9])(?:-|–|—|--|---|——|~)(?=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])|(?<=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F0-9])[:<>=/](?=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])�token_match��url_match�
|
| 2 |
+
��A�
|
| 3 |
+
� ��A� �'��A�'�''��A�''�'Cause��A�'CauseC�because�'Cos��A�'CosC�because�'Coz��A�'CozC�because�'Cuz��A�'CuzC�because�'S��A�'SC�'s�'bout��A�'boutC�about�'cause��A�'causeC�because�'cos��A�'cosC�because�'coz��A�'cozC�because�'cuz��A�'cuzC�because�'d��A�'d�'em��A�'emC�them�'ll��A�'llC�will�'nuff��A�'nuffC�enough�'re��A�'reC�are�'s��A�'sC�'s�(*_*)��A�(*_*)�(-8��A�(-8�(-:��A�(-:�(-;��A�(-;�(-_-)��A�(-_-)�(._.)��A�(._.)�(:��A�(:�(;��A�(;�(=��A�(=�(>_<)��A�(>_<)�(^_^)��A�(^_^)�(o:��A�(o:�(¬_¬)��A�(¬_¬)�(ಠ_ಠ)��A�(ಠ_ಠ)�(╯°□°)╯︵┻━┻��A�(╯°□°)╯︵┻━┻�)-:��A�)-:�):��A�):�-_-��A�-_-�-__-��A�-__-�._.��A�._.�0.0��A�0.0�0.o��A�0.o�0_0��A�0_0�0_o��A�0_o�10a.m.��A�10�A�a.m.C�a.m.�10am��A�10�A�amC�a.m.�10p.m.��A�10�A�p.m.C�p.m.�10pm��A�10�A�pmC�p.m.�11a.m.��A�11�A�a.m.C�a.m.�11am��A�11�A�amC�a.m.�11p.m.��A�11�A�p.m.C�p.m.�11pm��A�11�A�pmC�p.m.�12a.m.��A�12�A�a.m.C�a.m.�12am��A�12�A�amC�a.m.�12p.m.��A�12�A�p.m.C�p.m.�12pm��A�12�A�pmC�p.m.�1a.m.��A�1�A�a.m.C�a.m.�1am��A�1�A�amC�a.m.�1p.m.��A�1�A�p.m.C�p.m.�1pm��A�1�A�pmC�p.m.�2a.m.��A�2�A�a.m.C�a.m.�2am��A�2�A�amC�a.m.�2p.m.��A�2�A�p.m.C�p.m.�2pm��A�2�A�pmC�p.m.�3a.m.��A�3�A�a.m.C�a.m.�3am��A�3�A�amC�a.m.�3p.m.��A�3�A�p.m.C�p.m.�3pm��A�3�A�pmC�p.m.�4a.m.��A�4�A�a.m.C�a.m.�4am��A�4�A�amC�a.m.�4p.m.��A�4�A�p.m.C�p.m.�4pm��A�4�A�pmC�p.m.�5a.m.��A�5�A�a.m.C�a.m.�5am��A�5�A�amC�a.m.�5p.m.��A�5�A�p.m.C�p.m.�5pm��A�5�A�pmC�p.m.�6a.m.��A�6�A�a.m.C�a.m.�6am��A�6�A�amC�a.m.�6p.m.��A�6�A�p.m.C�p.m.�6pm��A�6�A�pmC�p.m.�7a.m.��A�7�A�a.m.C�a.m.�7am��A�7�A�amC�a.m.�7p.m.��A�7�A�p.m.C�p.m.�7pm��A�7�A�pmC�p.m.�8)��A�8)�8-)��A�8-)�8-D��A�8-D�8D��A�8D�8a.m.��A�8�A�a.m.C�a.m.�8am��A�8�A�amC�a.m.�8p.m.��A�8�A�p.m.C�p.m.�8pm��A�8�A�pmC�p.m.�9a.m.��A�9�A�a.m.C�a.m.�9am��A�9�A�amC�a.m.�9p.m.��A�9�A�p.m.C�p.m.�9pm��A�9�A�pmC�p.m.�:'(��A�:'(�:')��A�:')�:'-(��A�:'-(�:'-)��A�:'-)�:(��A�:(�:((��A�:((�:(((��A�:(((�:()��A�:()�:)��A�:)�:))��A�:))�:)))��A�:)))�:*��A�:*�:-(��A�:-(�:-((��A�:-((�:-(((��A�:-(((�:-)��A�:-)�:-))��A�:-))�:-)))��A�:-)))�:-*��A�:-*�:-/��A�:-/�:-0��A�:-0�:-3��A�:-3�:->��A�:->�:-D��A�:-D�:-O��A�:-O�:-P��A�:-P�:-X��A�:-X�:-]��A�:-]�:-o��A�:-o�:-p��A�:-p�:-x��A�:-x�:-|��A�:-|�:-}��A�:-}�:/��A�:/�:0��A�:0�:1��A�:1�:3��A�:3�:>��A�:>�:D��A�:D�:O��A�:O�:P��A�:P�:X��A�:X�:]��A�:]�:o��A�:o�:o)��A�:o)�:p��A�:p�:x��A�:x�:|��A�:|�:}��A�:}�:’(��A�:’(�:’)��A�:’)�:’-(��A�:’-(�:’-)��A�:’-)�;)��A�;)�;-)��A�;-)�;-D��A�;-D�;D��A�;D�;_;��A�;_;�<.<��A�<.<�</3��A�</3�<3��A�<3�<33��A�<33�<333��A�<333�<space>��A�<space>�=(��A�=(�=)��A�=)�=/��A�=/�=3��A�=3�=D��A�=D�=[��A�=[�=]��A�=]�=|��A�=|�>.<��A�>.<�>.>��A�>.>�>:(��A�>:(�>:o��A�>:o�><(((*>��A�><(((*>�@_@��A�@_@�Adm.��A�Adm.�Ain't��A�Ai�A�n'tC�not�Aint��A�Ai�A�ntC�not�Ain’t��A�Ai�A�n’tC�not�Ak.��A�Ak.C�Alaska�Ala.��A�Ala.C�Alabama�Apr.��A�Apr.C�April�Aren't��A�AreC�are�A�n'tC�not�Arent��A�AreC�are�A�ntC�not�Aren’t��A�AreC�are�A�n’tC�not�Ariz.��A�Ariz.C�Arizona�Ark.��A�Ark.C�Arkansas�Aug.��A�Aug.C�August�Bros.��A�Bros.�C'mon��A�C'mC�come�A�on�C++��A�C++�Calif.��A�Calif.C�California�Can't��A�CaC�can�A�n'tC�not�Can't've��A�CaC�can�A�n'tC�not�A�'veC�have�Cannot��A�CanC�can�A�not�Cant��A�CaC�can�A�ntC�not�Cantve��A�CaC�can�A�ntC�not�A�veC�have�Can’t��A�CaC�can�A�n’tC�not�Can’t’ve��A�CaC�can�A�n’tC�not�A�’veC�have�Co.��A�Co.�Colo.��A�Colo.C�Colorado�Conn.��A�Conn.C�Connecticut�Corp.��A�Corp.�Could've��A�CouldC�could�A�'ve�Couldn't��A�CouldC�could�A�n'tC�not�Couldn't've��A�CouldC�could�A�n'tC�not�A�'veC�have�Couldnt��A�CouldC�could�A�ntC�not�Couldntve��A�CouldC�could�A�ntC�not�A�veC�have�Couldn’t��A�CouldC�could�A�n’tC�not�Couldn’t’ve��A�CouldC�could�A�n’tC�not�A�’veC�have�Couldve��A�CouldC�could�A�ve�Could’ve��A�CouldC�could�A�’ve�C’mon��A�C’mC�come�A�on�D.C.��A�D.C.�Daren't��A�DareC�dare�A�n'tC�not�Darent��A�DareC�dare�A�ntC�not�Daren’t��A�DareC�dare�A�n’tC�not�Dec.��A�Dec.C�December�Del.��A�Del.C�Delaware�Didn't��A�DidC�do�A�n'tC�not�Didn't've��A�DidC�do�A�n'tC�not�A�'veC�have�Didnt��A�DidC�do�A�ntC�not�Didntve��A�DidC�do�A�ntC�not�A�veC�have�Didn’t��A�DidC�do�A�n’tC�not�Didn’t’ve��A�DidC�do�A�n’tC�not�A�’veC�have�Doesn't��A�DoesC�does�A�n'tC�not�Doesn't've��A�DoesC�does�A�n'tC�not�A�'veC�have�Doesnt��A�DoesC�does�A�ntC�not�Doesntve��A�DoesC�does�A�ntC�not�A�veC�have�Doesn’t��A�DoesC�does�A�n’tC�not�Doesn’t’ve��A�DoesC�does�A�n’tC�not�A�’veC�have�Doin��A�DoinC�doing�Doin'��A�Doin'C�doing�Doin’��A�Doin’C�doing�Don't��A�DoC�do�A�n'tC�not�Don't've��A�DoC�do�A�n'tC�not�A�'veC�have�Dont��A�DoC�do�A�ntC�not�Dontve��A�DoC�do�A�ntC�not�A�veC�have�Don’t��A�DoC�do�A�n’tC�not�Don’t’ve��A�DoC�do�A�n’tC�not�A�’veC�have�Dr.��A�Dr.�E.G.��A�E.G.�E.g.��A�E.g.�Feb.��A�Feb.C�February�Fla.��A�Fla.C�Florida�Ga.��A�Ga.C�Georgia�Gen.��A�Gen.�Goin��A�GoinC�going�Goin'��A�Goin'C�going�Goin’��A�Goin’C�going�Gonna��A�GonC�going�A�naC�to�Gotta��A�GotC�got�A�taC�to�Gov.��A�Gov.�Hadn't��A�HadC�have�A�n'tC�not�Hadn't've��A�HadC�have�A�n'tC�not�A�'veC�have�Hadnt��A�HadC�have�A�ntC�not�Hadntve��A�HadC�have�A�ntC�not�A�veC�have�Hadn’t��A�HadC�have�A�n’tC�not�Hadn’t’ve��A�HadC�have�A�n’tC�not�A�’veC�have�Hasn't��A�HasC�has�A�n'tC�not�Hasnt��A�HasC�has�A�ntC�not�Hasn’t��A�HasC�has�A�n’tC�not�Haven't��A�HaveC�have�A�n'tC�not�Havent��A�HaveC�have�A�ntC�not�Haven’t��A�HaveC�have�A�n’tC�not�Havin��A�HavinC�having�Havin'��A�Havin'C�having�Havin’��A�Havin’C�having�He'd��A�HeC�he�A�'dC�'d�He'd've��A�HeC�he�A�'dC�would�A�'veC�have�He'll��A�HeC�he�A�'llC�will�He'll've��A�HeC�he�A�'llC�will�A�'veC�have�He's��A�HeC�he�A�'sC�'s�Hed��A�HeC�he�A�dC�'d�Hedve��A�HeC�he�A�dC�would�A�veC�have�Hellve��A�HeC�he�A�llC�will�A�veC�have�Hes��A�HeC�he�A�s�He’d��A�HeC�he�A�’dC�'d�He’d’ve��A�HeC�he�A�’dC�would�A�’veC�have�He’ll��A�HeC�he�A�’llC�will�He’ll’ve��A�HeC�he�A�’llC�will�A�’veC�have�He’s��A�HeC�he�A�’sC�'s�How'd��A�HowC�how�A�'dC�'d�How'd've��A�HowC�how�A�'dC�would�A�'veC�have�How'd'y��A�HowC�how�A�'d�A�'yC�you�How'll��A�HowC�how�A�'llC�will�How'll've��A�HowC�how�A�'llC�will�A�'veC�have�How're��A�HowC�how�A�'reC�are�How's��A�HowC�how�A�'sC�'s�How've��A�HowC�how�A�'ve�Howd��A�HowC�how�A�dC�'d�Howdve��A�HowC�how�A�dC�would�A�veC�have�Howll��A�HowC�how�A�llC�will�Howllve��A�HowC�how�A�llC�will�A�veC�have�Howre��A�HowC�how�A�reC�are�Hows��A�HowC�how�A�s�Howve��A�How�A�veC�have�How’d��A�HowC�how�A�’dC�'d�How’d’ve��A�HowC�how�A�’dC�would�A�’veC�have�How’d’y��A�HowC�how�A�’d�A�’yC�you�How’ll��A�HowC�how�A�’llC�will�How’ll’ve��A�HowC�how�A�’llC�will�A�’veC�have�How’re��A�HowC�how�A�’reC�are�How’s��A�HowC�how�A�’sC�'s�How’ve��A�HowC�how�A�’ve�I'd��A�IC�i�A�'dC�'d�I'd've��A�IC�i�A�'dC�would�A�'veC�have�I'll��A�IC�i�A�'llC�will�I'll've��A�IC�i�A�'llC�will�A�'veC�have�I'm��A�IC�i�A�'mC�am�I'ma��A�IC�i�A�'mC�am�A�aC�gonna�I've��A�IC�i�A�'veC�have�I.E.��A�I.E.�I.e.��A�I.e.�Ia.��A�Ia.C�Iowa�Id��A�IC�i�A�dC�'d�Id.��A�Id.C�Idaho�Idve��A�IC�i�A�dC�would�A�veC�have�Ill.��A�Ill.C�Illinois�Illve��A�IC�i�A�llC�will�A�veC�have�Im��A�IC�i�A�m�Ima��A�IC�i�A�mC�am�A�aC�gonna�Inc.��A�Inc.�Ind.��A�Ind.C�Indiana�Isn't��A�IsC�is�A�n'tC�not�Isnt��A�IsC�is�A�ntC�not�Isn’t��A�IsC�is�A�n’tC�not�It'd��A�ItC�it�A�'dC�'d�It'd've��A�ItC�it�A�'dC�would�A�'veC�have�It'll��A�ItC�it�A�'llC�will�It'll've��A�ItC�it�A�'llC�will�A�'veC�have�It's��A�ItC�it�A�'sC�'s�Itd��A�ItC�it�A�dC�'d�Itdve��A�ItC�it�A�dC�would�A�veC�have�Itll��A�ItC�it�A�llC�will�Itllve��A�ItC�it�A�llC�will�A�veC�have�It’d��A�ItC�it�A�’dC�'d�It’d’ve��A�ItC�it�A�’dC�would�A�’veC�have�It’ll��A�ItC�it�A�’llC�will�It’ll’ve��A�ItC�it�A�’llC�will�A�’veC�have�It’s��A�ItC�it�A�’sC�'s�Ive��A�IC�i�A�veC�have�I’d��A�IC�i�A�’dC�'d�I’d’ve��A�IC�i�A�’dC�would�A�’veC�have�I’ll��A�IC�i�A�’llC�will�I’ll’ve��A�IC�i�A�’llC�will�A�’veC�have�I’m��A�IC�i�A�’mC�am�I’ma��A�IC�i�A�’mC�am�A�aC�gonna�I’ve��A�IC�i�A�’veC�have�Jan.��A�Jan.C�January�Jr.��A�Jr.�Jul.��A�Jul.C�July�Jun.��A�Jun.C�June�Kan.��A�Kan.C�Kansas�Kans.��A�Kans.C�Kansas�Ky.��A�Ky.C�Kentucky�La.��A�La.C�Louisiana�Let's��A�LetC�let�A�'sC�us�Let’s��A�LetC�let�A�’sC�us�Lovin��A�LovinC�loving�Lovin'��A�Lovin'C�loving�Lovin’��A�Lovin’C�loving�Ltd.��A�Ltd.�Ma'am��A�Ma'amC�madam�Mar.��A�Mar.C�March�Mass.��A�Mass.C�Massachusetts�Mayn't��A�MayC�may�A�n'tC�not�Mayn't've��A�MayC�may�A�n'tC�not�A�'veC�have�Maynt��A�MayC�may�A�ntC�not�Mayntve��A�MayC�may�A�ntC�not�A�veC�have�Mayn’t��A�MayC�may�A�n’tC�not�Mayn’t’ve��A�MayC�may�A�n’tC�not�A�’veC�have�Ma’am��A�Ma’amC�madam�Md.��A�Md.�Messrs.��A�Messrs.�Mich.��A�Mich.C�Michigan�Might've��A�MightC�might�A�'ve�Mightn't��A�MightC�might�A�n'tC�not�Mightn't've��A�MightC�might�A�n'tC�not�A�'veC�have�Mightnt��A�MightC�might�A�ntC�not�Mightntve��A�MightC�might�A�ntC�not�A�veC�have�Mightn’t��A�MightC�might�A�n’tC�not�Mightn’t’ve��A�MightC�might�A�n’tC�not�A�’veC�have�Mightve��A�MightC�might�A�ve�Might’ve��A�MightC�might�A�’ve�Minn.��A�Minn.C�Minnesota�Miss.��A�Miss.C�Mississippi�Mo.��A�Mo.�Mont.��A�Mont.�Mr.��A�Mr.�Mrs.��A�Mrs.�Ms.��A�Ms.�Mt.��A�Mt.C�Mount�Must've��A�MustC�must�A�'ve�Mustn't��A�MustC�must�A�n'tC�not�Mustn't've��A�MustC�must�A�n'tC�not�A�'veC�have�Mustnt��A�MustC�must�A�ntC�not�Mustntve��A�MustC�must�A�ntC�not�A�veC�have�Mustn’t��A�MustC�must�A�n’tC�not�Mustn’t’ve��A�MustC�must�A�n’tC�not�A�’veC�have�Mustve��A�MustC�must�A�ve�Must’ve��A�MustC�must�A�’ve�N.C.��A�N.C.C�North Carolina�N.D.��A�N.D.C�North Dakota�N.H.��A�N.H.C�New Hampshire�N.J.��A�N.J.C�New Jersey�N.M.��A�N.M.C�New Mexico�N.Y.��A�N.Y.C�New York�Neb.��A�Neb.C�Nebraska�Nebr.��A�Nebr.C�Nebraska�Needn't��A�NeedC�need�A�n'tC�not�Needn't've��A�NeedC�need�A�n'tC�not�A�'veC�have�Neednt��A�NeedC�need�A�ntC�not�Needntve��A�NeedC�need�A�ntC�not�A�veC�have�Needn’t��A�NeedC�need�A�n’tC�not�Needn’t’ve��A�NeedC�need�A�n’tC�not�A�’veC�have�Nev.��A�Nev.C�Nevada�Not've��A�NotC�not�A�'veC�have�Nothin��A�NothinC�nothing�Nothin'��A�Nothin'C�nothing�Nothin’��A�Nothin’C�nothing�Notve��A�NotC�not�A�veC�have�Not’ve��A�NotC�not�A�’veC�have�Nov.��A�Nov.C�November�Nuthin��A�NuthinC�nothing�Nuthin'��A�Nuthin'C�nothing�Nuthin’��A�Nuthin’C�nothing�O'clock��A�O'clockC�o'clock�O.O��A�O.O�O.o��A�O.o�O_O��A�O_O�O_o��A�O_o�Oct.��A�Oct.C�October�Okla.��A�Okla.C�Oklahoma�Ol��A�OlC�old�Ol'��A�Ol'C�old�Ol’��A�Ol’C�old�Ore.��A�Ore.C�Oregon�Oughtn't��A�OughtC�ought�A�n'tC�not�Oughtn't've��A�OughtC�ought�A�n'tC�not�A�'veC�have�Oughtnt��A�OughtC�ought�A�ntC�not�Oughtntve��A�OughtC�ought�A�ntC�not�A�veC�have�Oughtn’t��A�OughtC�ought�A�n’tC�not�Oughtn’t’ve��A�OughtC�ought�A�n’tC�not�A�’veC�have�O’clock��A�O’clockC�o'clock�Pa.��A�Pa.C�Pennsylvania�Ph.D.��A�Ph.D.�Prof.��A�Prof.�Rep.��A�Rep.�Rev.��A�Rev.�S.C.��A�S.C.C�South Carolina�Sen.��A�Sen.�Sep.��A�Sep.C�September�Sept.��A�Sept.C�September�Shan't��A�ShaC�shall�A�n'tC�not�Shan't've��A�ShaC�shall�A�n'tC�not�A�'veC�have�Shant��A�ShaC�shall�A�ntC�not�Shantve��A�ShaC�shall�A�ntC�not�A�veC�have�Shan’t��A�ShaC�shall�A�n’tC�not�Shan’t’ve��A�ShaC�shall�A�n’tC�not�A�’veC�have�She'd��A�SheC�she�A�'dC�'d�She'd've��A�SheC�she�A�'dC�would�A�'veC�have�She'll��A�SheC�she�A�'llC�will�She'll've��A�SheC�she�A�'llC�will�A�'veC�have�She's��A�SheC�she�A�'sC�'s�Shedve��A�SheC�she�A�dC�would�A�veC�have�Shellve��A�SheC�she�A�llC�will�A�veC�have�Shes��A�SheC�she�A�s�She’d��A�SheC�she�A�’dC�'d�She’d’ve��A�SheC�she�A�’dC�would�A�’veC�have�She’ll��A�SheC�she�A�’llC�will�She’ll’ve��A�SheC�she�A�’llC�will�A�’veC�have�She’s��A�SheC�she�A�’sC�'s�Should've��A�ShouldC�should�A�'ve�Shouldn't��A�ShouldC�should�A�n'tC�not�Shouldn't've��A�ShouldC�should�A�n'tC�not�A�'veC�have�Shouldnt��A�ShouldC�should�A�ntC�not�Shouldntve��A�ShouldC�should�A�ntC�not�A�veC�have�Shouldn’t��A�ShouldC�should�A�n’tC�not�Shouldn’t’ve��A�ShouldC�should�A�n’tC�not�A�’veC�have�Shouldve��A�ShouldC�should�A�ve�Should’ve��A�ShouldC�should�A�’ve�Somethin��A�SomethinC�something�Somethin'��A�Somethin'C�something�Somethin’��A�Somethin’C�something�St.��A�St.�Tenn.��A�Tenn.C�Tennessee�That'd��A�ThatC�that�A�'dC�'d�That'd've��A�ThatC�that�A�'dC�would�A�'veC�have�That'll��A�ThatC�that�A�'llC�will�That'll've��A�ThatC�that�A�'llC�will�A�'veC�have�That's��A�ThatC�that�A�'sC�'s�Thatd��A�ThatC�that�A�dC�'d�Thatdve��A�ThatC�that�A�dC�would�A�veC�have�Thatll��A�ThatC�that�A�llC�will�Thatllve��A�ThatC�that�A�llC�will�A�veC�have�Thats��A�ThatC�that�A�s�That’d��A�ThatC�that�A�’dC�'d�That’d’ve��A�ThatC�that�A�’dC�would�A�’veC�have�That’ll��A�ThatC�that�A�’llC�will�That’ll’ve��A�ThatC�that�A�’llC�will�A�’veC�have�That’s��A�ThatC�that�A�’sC�'s�There'd��A�ThereC�there�A�'dC�'d�There'd've��A�ThereC�there�A�'dC�would�A�'veC�have�There'll��A�ThereC�there�A�'llC�will�There'll've��A�ThereC�there�A�'llC�will�A�'veC�have�There're��A�ThereC�there�A�'reC�are�There's��A�ThereC�there�A�'sC�'s�There've��A�ThereC�there�A�'ve�Thered��A�ThereC�there�A�dC�'d�Theredve��A�ThereC�there�A�dC�would�A�veC�have�Therell��A�ThereC�there�A�llC�will�Therellve��A�ThereC�there�A�llC�will�A�veC�have�Therere��A�ThereC�there�A�reC�are�Theres��A�ThereC�there�A�s�Thereve��A�There�A�veC�have�There’d��A�ThereC�there�A�’dC�'d�There’d’ve��A�ThereC�there�A�’dC�would�A�’veC�have�There’ll��A�ThereC�there�A�’llC�will�There’ll’ve��A�ThereC�there�A�’llC�will�A�’veC�have�There’re��A�ThereC�there�A�’reC�are�There’s��A�ThereC�there�A�’sC�'s�There’ve��A�ThereC�there�A�’ve�These'd��A�TheseC�these�A�'dC�'d�These'd've��A�TheseC�these�A�'dC�would�A�'veC�have�These'll��A�TheseC�these�A�'llC�will�These'll've��A�TheseC�these�A�'llC�will�A�'veC�have�These're��A�TheseC�these�A�'reC�are�These've��A�TheseC�these�A�'ve�Thesed��A�TheseC�these�A�dC�'d�Thesedve��A�TheseC�these�A�dC�would�A�veC�have�Thesell��A�TheseC�these�A�llC�will�Thesellve��A�TheseC�these�A�llC�will�A�veC�have�Thesere��A�TheseC�these�A�reC�are�Theseve��A�These�A�veC�have�These’d��A�TheseC�these�A�’dC�'d�These’d’ve��A�TheseC�these�A�’dC�would�A�’veC�have�These’ll��A�TheseC�these�A�’llC�will�These’ll’ve��A�TheseC�these�A�’llC�will�A�’veC�have�These’re��A�TheseC�these�A�’reC�are�These’ve��A�TheseC�these�A�’ve�They'd��A�TheyC�they�A�'dC�'d�They'd've��A�TheyC�they�A�'dC�would�A�'veC�have�They'll��A�TheyC�they�A�'llC�will�They'll've��A�TheyC�they�A�'llC�will�A�'veC�have�They're��A�TheyC�they�A�'reC�are�They've��A�TheyC�they�A�'veC�have�Theyd��A�TheyC�they�A�dC�'d�Theydve��A�TheyC�they�A�dC�would�A�veC�have�Theyll��A�TheyC�they�A�llC�will�Theyllve��A�TheyC�they�A�llC�will�A�veC�have�Theyre��A�TheyC�they�A�reC�are�Theyve��A�TheyC�they�A�veC�have�They’d��A�TheyC�they�A�’dC�'d�They’d’ve��A�TheyC�they�A�’dC�would�A�’veC�have�They’ll��A�TheyC�they�A�’llC�will�They’ll’ve��A�TheyC�they�A�’llC�will�A�’veC�have�They’re��A�TheyC�they�A�’reC�are�They’ve��A�TheyC�they�A�’veC�have�This'd��A�ThisC�this�A�'dC�'d�This'd've��A�ThisC�this�A�'dC�would�A�'veC�have�This'll��A�ThisC�this�A�'llC�will�This'll've��A�ThisC�this�A�'llC�will�A�'veC�have�This's��A�ThisC�this�A�'sC�'s�Thisd��A�ThisC�this�A�dC�'d�Thisdve��A�ThisC�this�A�dC�would�A�veC�have�Thisll��A�ThisC�this�A�llC�will�Thisllve��A�ThisC�this�A�llC�will�A�veC�have�Thiss��A�ThisC�this�A�s�This’d��A�ThisC�this�A�’dC�'d�This’d’ve��A�ThisC�this�A�’dC�would�A�’veC�have�This’ll��A�ThisC�this�A�’llC�will�This’ll’ve��A�ThisC�this�A�’llC�will�A�’veC�have�This’s��A�ThisC�this�A�’sC�'s�Those'd��A�ThoseC�those�A�'dC�'d�Those'd've��A�ThoseC�those�A�'dC�would�A�'veC�have�Those'll��A�ThoseC�those�A�'llC�will�Those'll've��A�ThoseC�those�A�'llC�will�A�'veC�have�Those're��A�ThoseC�those�A�'reC�are�Those've��A�ThoseC�those�A�'ve�Thosed��A�ThoseC�those�A�dC�'d�Thosedve��A�ThoseC�those�A�dC�would�A�veC�have�Thosell��A�ThoseC�those�A�llC�will�Thosellve��A�ThoseC�those�A�llC�will�A�veC�have�Thosere��A�ThoseC�those�A�reC�are�Thoseve��A�Those�A�veC�have�Those’d��A�ThoseC�those�A�’dC�'d�Those’d’ve��A�ThoseC�those�A�’dC�would�A�’veC�have�Those’ll��A�ThoseC�those�A�’llC�will�Those’ll’ve��A�ThoseC�those�A�’llC�will�A�’veC�have�Those’re��A�ThoseC�those�A�’reC�are�Those’ve��A�ThoseC�those�A�’ve�V.V��A�V.V�V_V��A�V_V�Va.��A�Va.C�Virginia�Wash.��A�Wash.C�Washington�Wasn't��A�WasC�was�A�n'tC�not�Wasnt��A�WasC�was�A�ntC�not�Wasn’t��A�WasC�was�A�n’tC�not�We'd��A�WeC�we�A�'dC�'d�We'd've��A�WeC�we�A�'dC�would�A�'veC�have�We'll��A�WeC�we�A�'llC�will�We'll've��A�WeC�we�A�'llC�will�A�'veC�have�We're��A�WeC�we�A�'reC�are�We've��A�WeC�we�A�'veC�have�Wed��A�WeC�we�A�dC�'d�Wedve��A�WeC�we�A�dC�would�A�veC�have�Wellve��A�WeC�we�A�llC�will�A�veC�have�Weren't��A�WereC�were�A�n'tC�not�Werent��A�WereC�were�A�ntC�not�Weren’t��A�WereC�were�A�n’tC�not�Weve��A�WeC�we�A�veC�have�We’d��A�WeC�we�A�’dC�'d�We’d’ve��A�WeC�we�A�’dC�would�A�’veC�have�We’ll��A�WeC�we�A�’llC�will�We’ll’ve��A�WeC�we�A�’llC�will�A�’veC�have�We’re��A�WeC�we�A�’reC�are�We’ve��A�WeC�we�A�’veC�have�What'd��A�WhatC�what�A�'dC�'d�What'd've��A�WhatC�what�A�'dC�would�A�'veC�have�What'll��A�WhatC�what�A�'llC�will�What'll've��A�WhatC�what�A�'llC�will�A�'veC�have�What're��A�WhatC�what�A�'reC�are�What's��A�WhatC�what�A�'sC�'s�What've��A�WhatC�what�A�'ve�Whatd��A�WhatC�what�A�dC�'d�Whatdve��A�WhatC�what�A�dC�would�A�veC�have�Whatll��A�WhatC�what�A�llC�will�Whatllve��A�WhatC�what�A�llC�will�A�veC�have�Whatre��A�WhatC�what�A�reC�are�Whats��A�WhatC�what�A�s�Whatve��A�What�A�veC�have�What’d��A�WhatC�what�A�’dC�'d�What’d’ve��A�WhatC�what�A�’dC�would�A�’veC�have�What’ll��A�WhatC�what�A�’llC�will�What’ll’ve��A�WhatC�what�A�’llC�will�A�’veC�have�What’re��A�WhatC�what�A�’reC�are�What’s��A�WhatC�what�A�’sC�'s�What’ve��A�WhatC�what�A�’ve�When'd��A�WhenC�when�A�'dC�'d�When'd've��A�WhenC�when�A�'dC�would�A�'veC�have�When'll��A�WhenC�when�A�'llC�will�When'll've��A�WhenC�when�A�'llC�will�A�'veC�have�When're��A�WhenC�when�A�'reC�are�When's��A�WhenC�when�A�'sC�'s�When've��A�WhenC�when�A�'ve�Whend��A�WhenC�when�A�dC�'d�Whendve��A�WhenC�when�A�dC�would�A�veC�have�Whenll��A�WhenC�when�A�llC�will�Whenllve��A�WhenC�when�A�llC�will�A�veC�have�Whenre��A�WhenC�when�A�reC�are�Whens��A�WhenC�when�A�s�Whenve��A�When�A�veC�have�When’d��A�WhenC�when�A�’dC�'d�When’d’ve��A�WhenC�when�A�’dC�would�A�’veC�have�When’ll��A�WhenC�when�A�’llC�will�When’ll’ve��A�WhenC�when�A�’llC�will�A�’veC�have�When’re��A�WhenC�when�A�’reC�are�When’s��A�WhenC�when�A�’sC�'s�When’ve��A�WhenC�when�A�’ve�Where'd��A�WhereC�where�A�'dC�'d�Where'd've��A�WhereC�where�A�'dC�would�A�'veC�have�Where'll��A�WhereC�where�A�'llC�will�Where'll've��A�WhereC�where�A�'llC�will�A�'veC�have�Where're��A�WhereC�where�A�'reC�are�Where's��A�WhereC�where�A�'sC�'s�Where've��A�WhereC�where�A�'ve�Whered��A�WhereC�where�A�dC�'d�Wheredve��A�WhereC�where�A�dC�would�A�veC�have�Wherell��A�WhereC�where�A�llC�will�Wherellve��A�WhereC�where�A�llC�will�A�veC�have�Wherere��A�WhereC�where�A�reC�are�Wheres��A�WhereC�where�A�s�Whereve��A�Where�A�veC�have�Where’d��A�WhereC�where�A�’dC�'d�Where’d’ve��A�WhereC�where�A�’dC�would�A�’veC�have�Where’ll��A�WhereC�where�A�’llC�will�Where’ll’ve��A�WhereC�where�A�’llC�will�A�’veC�have�Where’re��A�WhereC�where�A�’reC�are�Where’s��A�WhereC�where�A�’sC�'s�Where’ve��A�WhereC�where�A�’ve�Who'd��A�WhoC�who�A�'dC�'d�Who'd've��A�WhoC�who�A�'dC�would�A�'veC�have�Who'll��A�WhoC�who�A�'llC�will�Who'll've��A�WhoC�who�A�'llC�will�A�'veC�have�Who're��A�WhoC�who�A�'reC�are�Who's��A�WhoC�who�A�'sC�'s�Who've��A�WhoC�who�A�'ve�Whod��A�WhoC�who�A�dC�'d�Whodve��A�WhoC�who�A�dC�would�A�veC�have�Wholl��A�WhoC�who�A�llC�will�Whollve��A�WhoC�who�A�llC�will�A�veC�have�Whos��A�WhoC�who�A�s�Whove��A�Who�A�veC�have�Who’d��A�WhoC�who�A�’dC�'d�Who’d’ve��A�WhoC�who�A�’dC�would�A�’veC�have�Who’ll��A�WhoC�who�A�’llC�will�Who’ll’ve��A�WhoC�who�A�’llC�will�A�’veC�have�Who’re��A�WhoC�who�A�’reC�are�Who’s��A�WhoC�who�A�’sC�'s�Who’ve��A�WhoC�who�A�’ve�Why'd��A�WhyC�why�A�'dC�'d�Why'd've��A�WhyC�why�A�'dC�would�A�'veC�have�Why'll��A�WhyC�why�A�'llC�will�Why'll've��A�WhyC�why�A�'llC�will�A�'veC�have�Why're��A�WhyC�why�A�'reC�are�Why's��A�WhyC�why�A�'sC�'s�Why've��A�WhyC�why�A�'ve�Whyd��A�WhyC�why�A�dC�'d�Whydve��A�WhyC�why�A�dC�would�A�veC�have�Whyll��A�WhyC�why�A�llC�will�Whyllve��A�WhyC�why�A�llC�will�A�veC�have�Whyre��A�WhyC�why�A�reC�are�Whys��A�WhyC�why�A�s�Whyve��A�Why�A�veC�have�Why’d��A�WhyC�why�A�’dC�'d�Why’d’ve��A�WhyC�why�A�’dC�would�A�’veC�have�Why’ll��A�WhyC�why�A�’llC�will�Why’ll’ve��A�WhyC�why�A�’llC�will�A�’veC�have�Why’re��A�WhyC�why�A�’reC�are�Why’s��A�WhyC�why�A�’sC�'s�Why’ve��A�WhyC�why�A�’ve�Wis.��A�Wis.C�Wisconsin�Won't��A�WoC�will�A�n'tC�not�Won't've��A�WoC�will�A�n'tC�not�A�'veC�have�Wont��A�WoC�will�A�ntC�not�Wontve��A�WoC�will�A�ntC�not�A�veC�have�Won’t��A�WoC�will�A�n’tC�not�Won’t’ve��A�WoC�will�A�n’tC�not�A�’veC�have�Would've��A�WouldC�would�A�'ve�Wouldn't��A�WouldC�would�A�n'tC�not�Wouldn't've��A�WouldC�would�A�n'tC�not�A�'veC�have�Wouldnt��A�WouldC�would�A�ntC�not�Wouldntve��A�WouldC�would�A�ntC�not�A�veC�have�Wouldn’t��A�WouldC�would�A�n’tC�not�Wouldn’t’ve��A�WouldC�would�A�n’tC�not�A�’veC�have�Wouldve��A�WouldC�would�A�ve�Would’ve��A�WouldC�would�A�’ve�XD��A�XD�XDD��A�XDD�You'd��A�YouC�you�A�'dC�'d�You'd've��A�YouC�you�A�'dC�would�A�'veC�have�You'll��A�YouC�you�A�'llC�will�You'll've��A�YouC�you�A�'llC�will�A�'veC�have�You're��A�YouC�you�A�'reC�are�You've��A�YouC�you�A�'veC�have�Youd��A�YouC�you�A�dC�'d�Youdve��A�YouC�you�A�dC�would�A�veC�have�Youll��A�YouC�you�A�llC�will�Youllve��A�YouC�you�A�llC�will�A�veC�have�Youre��A�YouC�you�A�reC�are�Youve��A�YouC�you�A�veC�have�You’d��A�YouC�you�A�’dC�'d�You’d’ve��A�YouC�you�A�’dC�would�A�’veC�have�You’ll��A�YouC�you�A�’llC�will�You’ll’ve��A�YouC�you�A�’llC�will�A�’veC�have�You’re��A�YouC�you�A�’reC�are�You’ve��A�YouC�you�A�’veC�have�[-:��A�[-:�[:��A�[:�[=��A�[=�\")��A�\")�\n��A�\n�\t��A�\t�]=��A�]=�^_^��A�^_^�^__^��A�^__^�^___^��A�^___^�a.��A�a.�a.m.��A�a.m.�ain't��A�ai�A�n'tC�not�aint��A�ai�A�ntC�not�ain’t��A�ai�A�n’tC�not�and/or��A�and/orC�and/or�aren't��A�areC�are�A�n'tC�not�arent��A�areC�are�A�ntC�not�aren’t��A�areC�are�A�n’tC�not�b.��A�b.�c'mon��A�c'mC�come�A�on�c.��A�c.�can't��A�caC�can�A�n'tC�not�can't've��A�caC�can�A�n'tC�not�A�'veC�have�cannot��A�can�A�not�cant��A�caC�can�A�ntC�not�cantve��A�caC�can�A�ntC�not�A�veC�have�can’t��A�caC�can�A�n’tC�not�can’t’ve��A�caC�can�A�n’tC�not�A�’veC�have�co.��A�co.�could've��A�couldC�could�A�'ve�couldn't��A�couldC�could�A�n'tC�not�couldn't've��A�couldC�could�A�n'tC�not�A�'veC�have�couldnt��A�couldC�could�A�ntC�not�couldntve��A�couldC�could�A�ntC�not�A�veC�have�couldn’t��A�couldC�could�A�n’tC�not�couldn’t’ve��A�couldC�could�A�n’tC�not�A�’veC�have�couldve��A�couldC�could�A�ve�could’ve��A�couldC�could�A�’ve�c’mon��A�c’mC�come�A�on�d.��A�d.�daren't��A�dareC�dare�A�n'tC�not�darent��A�dareC�dare�A�ntC�not�daren’t��A�dareC�dare�A�n’tC�not�didn't��A�didC�do�A�n'tC�not�didn't've��A�didC�do�A�n'tC�not�A�'veC�have�didnt��A�didC�do�A�ntC�not�didntve��A�didC�do�A�ntC�not�A�veC�have�didn’t��A�didC�do�A�n’tC�not�didn’t’ve��A�didC�do�A�n’tC�not�A�’veC�have�doesn't��A�doesC�does�A�n'tC�not�doesn't've��A�doesC�does�A�n'tC�not�A�'veC�have�doesnt��A�doesC�does�A�ntC�not�doesntve��A�doesC�does�A�ntC�not�A�veC�have�doesn’t��A�doesC�does�A�n’tC�not�doesn’t’ve��A�doesC�does�A�n’tC�not�A�’veC�have�doin��A�doinC�doing�doin'��A�doin'C�doing�doin’��A�doin’C�doing�don't��A�doC�do�A�n'tC�not�don't've��A�doC�do�A�n'tC�not�A�'veC�have�dont��A�doC�do�A�ntC�not�dontve��A�doC�do�A�ntC�not�A�veC�have�don’t��A�doC�do�A�n’tC�not�don’t’ve��A�doC�do�A�n’tC�not�A�’veC�have�e.��A�e.�e.g.��A�e.g.�em��A�emC�them�f.��A�f.�g.��A�g.�goin��A�goinC�going�goin'��A�goin'C�going�goin’��A�goin’C�going�gonna��A�gonC�going�A�naC�to�gotta��A�got�A�taC�to�h.��A�h.�hadn't��A�hadC�have�A�n'tC�not�hadn't've��A�hadC�have�A�n'tC�not�A�'veC�have�hadnt��A�hadC�have�A�ntC�not�hadntve��A�hadC�have�A�ntC�not�A�veC�have�hadn’t��A�hadC�have�A�n’tC�not�hadn’t’ve��A�hadC�have�A�n’tC�not�A�’veC�have�hasn't��A�hasC�has�A�n'tC�not�hasnt��A�hasC�has�A�ntC�not�hasn’t��A�hasC�has�A�n’tC�not�haven't��A�haveC�have�A�n'tC�not�havent��A�haveC�have�A�ntC�not�haven’t��A�haveC�have�A�n’tC�not�havin��A�havinC�having�havin'��A�havin'C�having�havin’��A�havin’C�having�he'd��A�heC�he�A�'dC�'d�he'd've��A�heC�he�A�'dC�would�A�'veC�have�he'll��A�heC�he�A�'llC�will�he'll've��A�heC�he�A�'llC�will�A�'veC�have�he's��A�heC�he�A�'sC�'s�hed��A�heC�he�A�dC�'d�hedve��A�heC�he�A�dC�would�A�veC�have�hellve��A�heC�he�A�llC�will�A�veC�have�hes��A�heC�he�A�s�he’d��A�heC�he�A�’dC�'d�he’d’ve��A�heC�he�A�’dC�would�A�’veC�have�he’ll��A�heC�he�A�’llC�will�he’ll’ve��A�heC�he�A�’llC�will�A�’veC�have�he’s��A�heC�he�A�’sC�'s�how'd��A�howC�how�A�'dC�'d�how'd've��A�howC�how�A�'dC�would�A�'veC�have�how'd'y��A�how�A�'d�A�'yC�you�how'll��A�howC�how�A�'llC�will�how'll've��A�howC�how�A�'llC�will�A�'veC�have�how're��A�howC�how�A�'reC�are�how's��A�howC�how�A�'sC�'s�how've��A�howC�how�A�'ve�howd��A�howC�how�A�dC�'d�howdve��A�howC�how�A�dC�would�A�veC�have�howll��A�howC�how�A�llC�will�howllve��A�howC�how�A�llC�will�A�veC�have�howre��A�howC�how�A�reC�are�hows��A�howC�how�A�s�howve��A�how�A�veC�have�how’d��A�howC�how�A�’dC�'d�how’d’ve��A�howC�how�A���dC�would�A�’veC�have�how’d’y��A�how�A�’d�A�’yC�you�how’ll��A�howC�how�A�’llC�will�how’ll’ve��A�howC�how�A�’llC�will�A�’veC�have�how’re��A�howC�how�A�’reC�are�how’s��A�howC�how�A�’sC�'s�how’ve��A�howC�how�A�’ve�i'd��A�iC�i�A�'dC�'d�i'd've��A�iC�i�A�'dC�would�A�'veC�have�i'll��A�iC�i�A�'llC�will�i'll've��A�iC�i�A�'llC�will�A�'veC�have�i'm��A�iC�i�A�'mC�am�i'ma��A�iC�i�A�'mC�am�A�aC�gonna�i've��A�iC�i�A�'veC�have�i.��A�i.�i.e.��A�i.e.�id��A�iC�i�A�dC�'d�idve��A�iC�i�A�dC�would�A�veC�have�illve��A�iC�i�A�llC�will�A�veC�have�im��A�iC�i�A�m�ima��A�iC�i�A�mC�am�A�aC�gonna�isn't��A�isC�is�A�n'tC�not�isnt��A�isC�is�A�ntC�not�isn’t��A�isC�is�A�n’tC�not�it'd��A�itC�it�A�'dC�'d�it'd've��A�itC�it�A�'dC�would�A�'veC�have�it'll��A�itC�it�A�'llC�will�it'll've��A�itC�it�A�'llC�will�A�'veC�have�it's��A�itC�it�A�'sC�'s�itd��A�itC�it�A�dC�'d�itdve��A�itC�it�A�dC�would�A�veC�have�itll��A�itC�it�A�llC�will�itllve��A�itC�it�A�llC�will�A�veC�have�it’d��A�itC�it�A�’dC�'d�it’d’ve��A�itC�it�A�’dC�would�A�’veC�have�it’ll��A�itC�it�A�’llC�will�it’ll’ve��A�itC�it�A�’llC�will�A�’veC�have�it’s��A�itC�it�A�’sC�'s�ive��A�iC�i�A�veC�have�i’d��A�iC�i�A�’dC�'d�i’d’ve��A�iC�i�A�’dC�would�A�’veC�have�i’ll��A�iC�i�A�’llC�will�i’ll’ve��A�iC�i�A�’llC�will�A�’veC�have�i’m��A�iC�i�A�’mC�am�i’ma��A�iC�i�A�’mC�am�A�aC�gonna�i’ve��A�iC�i�A�’veC�have�j.��A�j.�k.��A�k.�l.��A�l.�let's��A�let�A�'sC�us�let’s��A�let�A�’sC�us�ll��A�llC�will�lovin��A�lovinC�loving�lovin'��A�lovin'C�loving�lovin’��A�lovin’C�loving�m.��A�m.�ma'am��A�ma'amC�madam�mayn't��A�mayC�may�A�n'tC�not�mayn't've��A�mayC�may�A�n'tC�not�A�'veC�have�maynt��A�mayC�may�A�ntC�not�mayntve��A�mayC�may�A�ntC�not�A�veC�have�mayn’t��A�mayC�may�A�n’tC�not�mayn’t’ve��A�mayC�may�A�n’tC�not�A�’veC�have�ma’am��A�ma’amC�madam�might've��A�mightC�might�A�'ve�mightn't��A�mightC�might�A�n'tC�not�mightn't've��A�mightC�might�A�n'tC�not�A�'veC�have�mightnt��A�mightC�might�A�ntC�not�mightntve��A�mightC�might�A�ntC�not�A�veC�have�mightn’t��A�mightC�might�A�n’tC�not�mightn’t’ve��A�mightC�might�A�n’tC�not�A�’veC�have�mightve��A�mightC�might�A�ve�might’ve��A�mightC�might�A�’ve�must've��A�mustC�must�A�'ve�mustn't��A�mustC�must�A�n'tC�not�mustn't've��A�mustC�must�A�n'tC�not�A�'veC�have�mustnt��A�mustC�must�A�ntC�not�mustntve��A�mustC�must�A�ntC�not�A�veC�have�mustn’t��A�mustC�must�A�n’tC�not�mustn’t’ve��A�mustC�must�A�n’tC�not�A�’veC�have�mustve��A�mustC�must�A�ve�must’ve��A�mustC�must�A�’ve�n.��A�n.�needn't��A�needC�need�A�n'tC�not�needn't've��A�needC�need�A�n'tC�not�A�'veC�have�neednt��A�needC�need�A�ntC�not�needntve��A�needC�need�A�ntC�not�A�veC�have�needn’t��A�needC�need�A�n’tC�not�needn’t’ve��A�needC�need�A�n’tC�not�A�’veC�have�not've��A�not�A�'veC�have�nothin��A�nothinC�nothing�nothin'��A�nothin'C�nothing�nothin’��A�nothin’C�nothing�notve��A�not�A�veC�have�not’ve��A�not�A�’veC�have�nuff��A�nuffC�enough�nuthin��A�nuthinC�nothing�nuthin'��A�nuthin'C�nothing�nuthin’��A�nuthin’C�nothing�o'clock��A�o'clockC�o'clock�o.��A�o.�o.0��A�o.0�o.O��A�o.O�o.o��A�o.o�o_0��A�o_0�o_O��A�o_O�o_o��A�o_o�ol��A�olC�old�ol'��A�ol'C�old�ol’��A�ol’C�old�oughtn't��A�oughtC�ought�A�n'tC�not�oughtn't've��A�oughtC�ought�A�n'tC�not�A�'veC�have�oughtnt��A�oughtC�ought�A�ntC�not�oughtntve��A�oughtC�ought�A�ntC�not�A�veC�have�oughtn’t��A�oughtC�ought�A�n’tC�not�oughtn’t’ve��A�oughtC�ought�A�n’tC�not�A�’veC�have�o’clock��A�o’clockC�o'clock�p.��A�p.�p.m.��A�p.m.�q.��A�q.�r.��A�r.�s.��A�s.�shan't��A�shaC�shall�A�n'tC�not�shan't've��A�shaC�shall�A�n'tC�not�A�'veC�have�shant��A�shaC�shall�A�ntC�not�shantve��A�shaC�shall�A�ntC�not�A�veC�have�shan’t��A�shaC�shall�A�n’tC�not�shan’t’ve��A�shaC�shall�A�n’tC�not�A�’veC�have�she'd��A�sheC�she�A�'dC�'d�she'd've��A�sheC�she�A�'dC�would�A�'veC�have�she'll��A�sheC�she�A�'llC�will�she'll've��A�sheC�she�A�'llC�will�A�'veC�have�she's��A�sheC�she�A�'sC�'s�shedve��A�sheC�she�A�dC�would�A�veC�have�shellve��A�sheC�she�A�llC�will�A�veC�have�shes��A�sheC�she�A�s�she’d��A�sheC�she�A�’dC�'d�she’d’ve��A�sheC�she�A�’dC�would�A�’veC�have�she’ll��A�sheC�she�A�’llC�will�she’ll’ve��A�sheC�she�A�’llC�will�A�’veC�have�she’s��A�sheC�she�A�’sC�'s�should've��A�shouldC�should�A�'ve�shouldn't��A�shouldC�should�A�n'tC�not�shouldn't've��A�shouldC�should�A�n'tC�not�A�'veC�have�shouldnt��A�shouldC�should�A�ntC�not�shouldntve��A�shouldC�should�A�ntC�not�A�veC�have�shouldn’t��A�shouldC�should�A�n’tC�not�shouldn’t’ve��A�shouldC�should�A�n’tC�not�A�’veC�have�shouldve��A�shouldC�should�A�ve�should’ve��A�shouldC�should�A�’ve�somethin��A�somethinC�something�somethin'��A�somethin'C�something�somethin’��A�somethin’C�something�t.��A�t.�that'd��A�thatC�that�A�'dC�'d�that'd've��A�thatC�that�A�'dC�would�A�'veC�have�that'll��A�thatC�that�A�'llC�will�that'll've��A�thatC�that�A�'llC�will�A�'veC�have�that's��A�thatC�that�A�'sC�'s�thatd��A�thatC�that�A�dC�'d�thatdve��A�thatC�that�A�dC�would�A�veC�have�thatll��A�thatC�that�A�llC�will�thatllve��A�thatC�that�A�llC�will�A�veC�have�thats��A�thatC�that�A�s�that’d��A�thatC�that�A�’dC�'d�that’d’ve��A�thatC�that�A�’dC�would�A�’veC�have�that’ll��A�thatC�that�A�’llC�will�that’ll’ve��A�thatC�that�A�’llC�will�A�’veC�have�that’s��A�thatC�that�A�’sC�'s�there'd��A�thereC�there�A�'dC�'d�there'd've��A�thereC�there�A�'dC�would�A�'veC�have�there'll��A�thereC�there�A�'llC�will�there'll've��A�thereC�there�A�'llC�will�A�'veC�have�there're��A�thereC�there�A�'reC�are�there's��A�thereC�there�A�'sC�'s�there've��A�thereC�there�A�'ve�thered��A�thereC�there�A�dC�'d�theredve��A�thereC�there�A�dC�would�A�veC�have�therell��A�thereC�there�A�llC�will�therellve��A�thereC�there�A�llC�will�A�veC�have�therere��A�thereC�there�A�reC�are�theres��A�thereC�there�A�s�thereve��A�there�A�veC�have�there’d��A�thereC�there�A�’dC�'d�there’d’ve��A�thereC�there�A�’dC�would�A�’veC�have�there’ll��A�thereC�there�A�’llC�will�there’ll’ve��A�thereC�there�A�’llC�will�A�’veC�have�there’re��A�thereC�there�A�’reC�are�there’s��A�thereC�there�A�’sC�'s�there’ve��A�thereC�there�A�’ve�these'd��A�theseC�these�A�'dC�'d�these'd've��A�theseC�these�A�'dC�would�A�'veC�have�these'll��A�theseC�these�A�'llC�will�these'll've��A�theseC�these�A�'llC�will�A�'veC�have�these're��A�theseC�these�A�'reC�are�these've��A�theseC�these�A�'ve�thesed��A�theseC�these�A�dC�'d�thesedve��A�theseC�these�A�dC�would�A�veC�have�thesell��A�theseC�these�A�llC�will�thesellve��A�theseC�these�A�llC�will�A�veC�have�thesere��A�theseC�these�A�reC�are�theseve��A�these�A�veC�have�these’d��A�theseC�these�A�’dC�'d�these’d’ve��A�theseC�these�A�’dC�would�A�’veC�have�these’ll��A�theseC�these�A�’llC�will�these’ll’ve��A�theseC�these�A�’llC�will�A�’veC�have�these’re��A�theseC�these�A�’reC�are�these’ve��A�theseC�these�A�’ve�they'd��A�theyC�they�A�'dC�'d�they'd've��A�theyC�they�A�'dC�would�A�'veC�have�they'll��A�theyC�they�A�'llC�will�they'll've��A�theyC�they�A�'llC�will�A�'veC�have�they're��A�theyC�they�A�'reC�are�they've��A�theyC�they�A�'veC�have�theyd��A�theyC�they�A�dC�'d�theydve��A�theyC�they�A�dC�would�A�veC�have�theyll��A�theyC�they�A�llC�will�theyllve��A�theyC�they�A�llC�will�A�veC�have�theyre��A�theyC�they�A�reC�are�theyve��A�theyC�they�A�veC�have�they’d��A�theyC�they�A�’dC�'d�they’d’ve��A�theyC�they�A�’dC�would�A�’veC�have�they’ll��A�theyC�they�A�’llC�will�they’ll’ve��A�theyC�they�A�’llC�will�A�’veC�have�they’re��A�theyC�they�A�’reC�are�they’ve��A�theyC�they�A�’veC�have�this'd��A�thisC�this�A�'dC�'d�this'd've��A�thisC�this�A�'dC�would�A�'veC�have�this'll��A�thisC�this�A�'llC�will�this'll've��A�thisC�this�A�'llC�will�A�'veC�have�this's��A�thisC�this�A�'sC�'s�thisd��A�thisC�this�A�dC�'d�thisdve��A�thisC�this�A�dC�would�A�veC�have�thisll��A�thisC�this�A�llC�will�thisllve��A�thisC�this�A�llC�will�A�veC�have�thiss��A�thisC�this�A�s�this’d��A�thisC�this�A�’dC�'d�this’d’ve��A�thisC�this�A�’dC�would�A�’veC�have�this’ll��A�thisC�this�A�’llC�will�this’ll’ve��A�thisC�this�A�’llC�will�A�’veC�have�this’s��A�thisC�this�A�’sC�'s�those'd��A�thoseC�those�A�'dC�'d�those'd've��A�thoseC�those�A�'dC�would�A�'veC�have�those'll��A�thoseC�those�A�'llC�will�those'll've��A�thoseC�those�A�'llC�will�A�'veC�have�those're��A�thoseC�those�A�'reC�are�those've��A�thoseC�those�A�'ve�thosed��A�thoseC�those�A�dC�'d�thosedve��A�thoseC�those�A�dC�would�A�veC�have�thosell��A�thoseC�those�A�llC�will�thosellve��A�thoseC�those�A�llC�will�A�veC�have�thosere��A�thoseC�those�A�reC�are�thoseve��A�those�A�veC�have�those’d��A�thoseC�those�A�’dC�'d�those’d’ve��A�thoseC�those�A�’dC�would�A�’veC�have�those’ll��A�thoseC�those�A�’llC�will�those’ll’ve��A�thoseC�those�A�’llC�will�A�’veC�have�those’re��A�thoseC�those�A�’reC�are�those’ve��A�thoseC�those�A�’ve�u.��A�u.�v.��A�v.�v.s.��A�v.s.�v.v��A�v.v�v_v��A�v_v�vs.��A�vs.�w.��A�w.�w/o��A�w/oC�without�wasn't��A�wasC�was�A�n'tC�not�wasnt��A�wasC�was�A�ntC�not�wasn’t��A�wasC�was�A�n’tC�not�we'd��A�weC�we�A�'dC�'d�we'd've��A�weC�we�A�'dC�would�A�'veC�have�we'll��A�weC�we�A�'llC�will�we'll've��A�weC�we�A�'llC�will�A�'veC�have�we're��A�weC�we�A�'reC�are�we've��A�weC�we�A�'veC�have�wed��A�weC�we�A�dC�'d�wedve��A�weC�we�A�dC�would�A�veC�have�wellve��A�weC�we�A�llC�will�A�veC�have�weren't��A�wereC�were�A�n'tC�not�werent��A�wereC�were�A�ntC�not�weren’t��A�wereC�were�A�n’tC�not�weve��A�weC�we�A�veC�have�we’d��A�weC�we�A�’dC�'d�we’d’ve��A�weC�we�A�’dC�would�A�’veC�have�we’ll��A�weC�we�A�’llC�will�we’ll’ve��A�weC�we�A�’llC�will�A�’veC�have�we’re��A�weC�we�A�’reC�are�we’ve��A�weC�we�A�’veC�have�what'd��A�whatC�what�A�'dC�'d�what'd've��A�whatC�what�A�'dC�would�A�'veC�have�what'll��A�whatC�what�A�'llC�will�what'll've��A�whatC�what�A�'llC�will�A�'veC�have�what're��A�whatC�what�A�'reC�are�what's��A�whatC�what�A�'sC�'s�what've��A�whatC�what�A�'ve�whatd��A�whatC�what�A�dC�'d�whatdve��A�whatC�what�A�dC�would�A�veC�have�whatll��A�whatC�what�A�llC�will�whatllve��A�whatC�what�A�llC�will�A�veC�have�whatre��A�whatC�what�A�reC�are�whats��A�whatC�what�A�s�whatve��A�what�A�veC�have�what’d��A�whatC�what�A�’dC�'d�what’d’ve��A�whatC�what�A�’dC�would�A�’veC�have�what’ll��A�whatC�what�A�’llC�will�what’ll’ve��A�whatC�what�A�’llC�will�A�’veC�have�what’re��A�whatC�what�A�’reC�are�what’s��A�whatC�what�A�’sC�'s�what’ve��A�whatC�what�A�’ve�when'd��A�whenC�when�A�'dC�'d�when'd've��A�whenC�when�A�'dC�would�A�'veC�have�when'll��A�whenC�when�A�'llC�will�when'll've��A�whenC�when�A�'llC�will�A�'veC�have�when're��A�whenC�when�A�'reC�are�when's��A�whenC�when�A�'sC�'s�when've��A�whenC�when�A�'ve�whend��A�whenC�when�A�dC�'d�whendve��A�whenC�when�A�dC�would�A�veC�have�whenll��A�whenC�when�A�llC�will�whenllve��A�whenC�when�A�llC�will�A�veC�have�whenre��A�whenC�when�A�reC�are�whens��A�whenC�when�A�s�whenve��A�when�A�veC�have�when’d��A�whenC�when�A�’dC�'d�when’d’ve��A�whenC�when�A�’dC�would�A�’veC�have�when’ll��A�whenC�when�A�’llC�will�when’ll’ve��A�whenC�when�A�’llC�will�A�’veC�have�when’re��A�whenC�when�A�’reC�are�when’s��A�whenC�when�A�’sC�'s�when’ve��A�whenC�when�A�’ve�where'd��A�whereC�where�A�'dC�'d�where'd've��A�whereC�where�A�'dC�would�A�'veC�have�where'll��A�whereC�where�A�'llC�will�where'll've��A�whereC�where�A�'llC�will�A�'veC�have�where're��A�whereC�where�A�'reC�are�where's��A�whereC�where�A�'sC�'s�where've��A�whereC�where�A�'ve�whered��A�whereC�where�A�dC�'d�wheredve��A�whereC�where�A�dC�would�A�veC�have�wherell��A�whereC�where�A�llC�will�wherellve��A�whereC�where�A�llC�will�A�veC�have�wherere��A�whereC�where�A�reC�are�wheres��A�whereC�where�A�s�whereve��A�where�A�veC�have�where’d��A�whereC�where�A�’dC�'d�where’d’ve��A�whereC�where�A�’dC�would�A�’veC�have�where’ll��A�whereC�where�A�’llC�will�where’ll’ve��A�whereC�where�A�’llC�will�A�’veC�have�where’re��A�whereC�where�A�’reC�are�where’s��A�whereC�where�A�’sC�'s�where’ve��A�whereC�where�A�’ve�who'd��A�whoC�who�A�'dC�'d�who'd've��A�whoC�who�A�'dC�would�A�'veC�have�who'll��A�whoC�who�A�'llC�will�who'll've��A�whoC�who�A�'llC�will�A�'veC�have�who're��A�whoC�who�A�'reC�are�who's��A�whoC�who�A�'sC�'s�who've��A�whoC�who�A�'ve�whod��A�whoC�who�A�dC�'d�whodve��A�whoC�who�A�dC�would�A�veC�have�wholl��A�whoC�who�A�llC�will�whollve��A�whoC�who�A�llC�will�A�veC�have�whos��A�whoC�who�A�s�whove��A�who�A�veC�have�who’d��A�whoC�who�A�’dC�'d�who’d’ve��A�whoC�who�A�’dC�would�A�’veC�have�who’ll��A�whoC�who�A�’llC�will�who’ll’ve��A�whoC�who�A�’llC�will�A�’veC�have�who’re��A�whoC�who�A�’reC�are�who’s��A�whoC�who�A�’sC�'s�who’ve��A�whoC�who�A�’ve�why'd��A�whyC�why�A�'dC�'d�why'd've��A�whyC�why�A�'dC�would�A�'veC�have�why'll��A�whyC�why�A�'llC�will�why'll've��A�whyC�why�A�'llC�will�A�'veC�have�why're��A�whyC�why�A�'reC�are�why's��A�whyC�why�A�'sC�'s�why've��A�whyC�why�A�'ve�whyd��A�whyC�why�A�dC�'d�whydve��A�whyC�why�A�dC�would�A�veC�have�whyll��A�whyC�why�A�llC�will�whyllve��A�whyC�why�A�llC�will�A�veC�have�whyre��A�whyC�why�A�reC�are�whys��A�whyC�why�A�s�whyve��A�why�A�veC�have�why’d��A�whyC�why�A�’dC�'d�why’d’ve��A�whyC�why�A�’dC�would�A�’veC�have�why’ll��A�whyC�why�A�’llC�will�why’ll’ve��A�whyC�why�A�’llC�will�A�’veC�have�why’re��A�whyC�why�A�’reC�are�why’s��A�whyC�why�A�’sC�'s�why’ve��A�whyC�why�A�’ve�won't��A�woC�will�A�n'tC�not�won't've��A�woC�will�A�n'tC�not�A�'veC�have�wont��A�woC�will�A�ntC�not�wontve��A�woC�will�A�ntC�not�A�veC�have�won’t��A�woC�will�A�n’tC�not�won’t’ve��A�woC�will�A�n’tC�not�A�’veC�have�would've��A�wouldC�would�A�'ve�wouldn't��A�wouldC�would�A�n'tC�not�wouldn't've��A�wouldC�would�A�n'tC�not�A�'veC�have�wouldnt��A�wouldC�would�A�ntC�not�wouldntve��A�wouldC�would�A�ntC�not�A�veC�have�wouldn’t��A�wouldC�would�A�n’tC�not�wouldn’t’ve��A�wouldC�would�A�n’tC�not�A�’veC�have�wouldve��A�wouldC�would�A�ve�would’ve��A�wouldC�would�A�’ve�x.��A�x.�xD��A�xD�xDD��A�xDD�y'all��A�y'C�you�A�all�y.��A�y.�yall��A�yC�you�A�all�you'd��A�youC�you�A�'dC�'d�you'd've��A�youC�you�A�'dC�would�A�'veC�have�you'll��A�youC�you�A�'llC�will�you'll've��A�youC�you�A�'llC�will�A�'veC�have�you're��A�youC�you�A�'reC�are�you've��A�youC�you�A�'veC�have�youd��A�youC�you�A�dC�'d�youdve��A�youC�you�A�dC�would�A�veC�have�youll��A�youC�you�A�llC�will�youllve��A�youC�you�A�llC�will�A�veC�have�youre��A�youC�you�A�reC�are�youve��A�youC�you�A�veC�have�you’d��A�youC�you�A�’dC�'d�you’d’ve��A�youC�you�A�’dC�would�A�’veC�have�you’ll��A�youC�you�A�’llC�will�you’ll’ve��A�youC�you�A�’llC�will�A�’veC�have�you’re��A�youC�you�A�’reC�are�you’ve��A�youC�you�A�’veC�have�y’all��A�y’C�you�A�all�z.��A�z.� ��A� C� �¯\(ツ)/¯��A�¯\(ツ)/¯�°C.��A�°�A�C�A�.�°F.��A�°�A�F�A�.�°K.��A�°�A�K�A�.�°c.��A�°�A�c�A�.�°f.��A�°�A�f�A�.�°k.��A�°�A�k�A�.�ä.��A�ä.�ö.��A�ö.�ü.��A�ü.�ಠ_ಠ��A�ಠ_ಠ�ಠ︵ಠ��A�ಠ︵ಠ�—��A�—�‘S��A�‘SC�'s�‘s��A�‘sC�'s�’��A�’�’Cause��A�’CauseC�because�’Cos��A�’CosC�because�’Coz��A�’CozC�because�’Cuz��A�’CuzC�because�’S��A�’SC�'s�’bout��A�’boutC�about�’cause��A�’causeC�because�’cos��A�’cosC�because�’coz��A�’cozC�because�’cuz��A�’cuzC�because�’d��A�’d�’em��A�’emC�them�’ll��A�’llC�will�’nuff��A�’nuffC�enough�’re��A�’reC�are�’s��A�’sC�'s�’’��A�’’�faster_heuristics�
|
medical-ner-task2/vocab/key2row
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
�
|
medical-ner-task2/vocab/lookups.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:76be8b528d0075f7aae98d6fa57a6d3c83ae480a8469e668d7b0af968995ac71
|
| 3 |
+
size 1
|
medical-ner-task2/vocab/strings.json
ADDED
|
@@ -0,0 +1,5333 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
"\t",
|
| 3 |
+
"\n",
|
| 4 |
+
" ",
|
| 5 |
+
" ",
|
| 6 |
+
"!",
|
| 7 |
+
"\"",
|
| 8 |
+
"#",
|
| 9 |
+
"%",
|
| 10 |
+
"&",
|
| 11 |
+
"'",
|
| 12 |
+
"''",
|
| 13 |
+
"'-(",
|
| 14 |
+
"'-)",
|
| 15 |
+
"'Cause",
|
| 16 |
+
"'Cos",
|
| 17 |
+
"'Coz",
|
| 18 |
+
"'Cuz",
|
| 19 |
+
"'S",
|
| 20 |
+
"'X",
|
| 21 |
+
"'Xxx",
|
| 22 |
+
"'Xxxxx",
|
| 23 |
+
"'am",
|
| 24 |
+
"'bout",
|
| 25 |
+
"'cause",
|
| 26 |
+
"'cos",
|
| 27 |
+
"'coz",
|
| 28 |
+
"'cuz",
|
| 29 |
+
"'d",
|
| 30 |
+
"'em",
|
| 31 |
+
"'ll",
|
| 32 |
+
"'m",
|
| 33 |
+
"'nuff",
|
| 34 |
+
"'re",
|
| 35 |
+
"'s",
|
| 36 |
+
"'ve",
|
| 37 |
+
"'x",
|
| 38 |
+
"'xx",
|
| 39 |
+
"'xxx",
|
| 40 |
+
"'xxxx",
|
| 41 |
+
"'y",
|
| 42 |
+
"(",
|
| 43 |
+
"(((",
|
| 44 |
+
"(*>",
|
| 45 |
+
"(*_*)",
|
| 46 |
+
"(-8",
|
| 47 |
+
"(-:",
|
| 48 |
+
"(-;",
|
| 49 |
+
"(-_-)",
|
| 50 |
+
"(-d",
|
| 51 |
+
"(._.)",
|
| 52 |
+
"(:",
|
| 53 |
+
"(;",
|
| 54 |
+
"(=",
|
| 55 |
+
"(>_<)",
|
| 56 |
+
"(^_^)",
|
| 57 |
+
"(o:",
|
| 58 |
+
"(x:",
|
| 59 |
+
"(x_x)",
|
| 60 |
+
"(\u00ac_\u00ac)",
|
| 61 |
+
"(\u0ca0_\u0ca0)",
|
| 62 |
+
"(\u256f\u00b0\u25a1\u00b0\uff09\u256f\ufe35\u253b\u2501\u253b",
|
| 63 |
+
")",
|
| 64 |
+
")))",
|
| 65 |
+
")-:",
|
| 66 |
+
")-T",
|
| 67 |
+
")/\u00af",
|
| 68 |
+
")20",
|
| 69 |
+
"):",
|
| 70 |
+
"*",
|
| 71 |
+
"+",
|
| 72 |
+
"+1",
|
| 73 |
+
"+d",
|
| 74 |
+
",",
|
| 75 |
+
"-",
|
| 76 |
+
"-((",
|
| 77 |
+
"-))",
|
| 78 |
+
"-/",
|
| 79 |
+
"-0",
|
| 80 |
+
"-3",
|
| 81 |
+
"-4",
|
| 82 |
+
"-40",
|
| 83 |
+
"-8",
|
| 84 |
+
"-D",
|
| 85 |
+
"-O",
|
| 86 |
+
"-P",
|
| 87 |
+
"-X",
|
| 88 |
+
"-_-",
|
| 89 |
+
"-__-",
|
| 90 |
+
"-d",
|
| 91 |
+
"-o",
|
| 92 |
+
"-p",
|
| 93 |
+
"-x",
|
| 94 |
+
"-|",
|
| 95 |
+
".",
|
| 96 |
+
".73",
|
| 97 |
+
".C.",
|
| 98 |
+
".D.",
|
| 99 |
+
".E.",
|
| 100 |
+
".G.",
|
| 101 |
+
".H.",
|
| 102 |
+
".J.",
|
| 103 |
+
".M.",
|
| 104 |
+
".Y.",
|
| 105 |
+
"._.",
|
| 106 |
+
".e.",
|
| 107 |
+
".g.",
|
| 108 |
+
".m.",
|
| 109 |
+
".s.",
|
| 110 |
+
"/",
|
| 111 |
+
"/10",
|
| 112 |
+
"/3",
|
| 113 |
+
"/=",
|
| 114 |
+
"/d",
|
| 115 |
+
"/or",
|
| 116 |
+
"0",
|
| 117 |
+
"0.0",
|
| 118 |
+
"0.034",
|
| 119 |
+
"0.o",
|
| 120 |
+
"0/3",
|
| 121 |
+
"000",
|
| 122 |
+
"002",
|
| 123 |
+
"00E",
|
| 124 |
+
"034",
|
| 125 |
+
"0_0",
|
| 126 |
+
"0_o",
|
| 127 |
+
"0mg",
|
| 128 |
+
"0ms",
|
| 129 |
+
"1",
|
| 130 |
+
"1.0",
|
| 131 |
+
"1.1",
|
| 132 |
+
"1.3",
|
| 133 |
+
"1.5",
|
| 134 |
+
"1.75g",
|
| 135 |
+
"10",
|
| 136 |
+
"100",
|
| 137 |
+
"100,000",
|
| 138 |
+
"10a.m",
|
| 139 |
+
"10a.m.",
|
| 140 |
+
"10p.m",
|
| 141 |
+
"10p.m.",
|
| 142 |
+
"11",
|
| 143 |
+
"11a.m",
|
| 144 |
+
"11a.m.",
|
| 145 |
+
"11p.m",
|
| 146 |
+
"11p.m.",
|
| 147 |
+
"12",
|
| 148 |
+
"12.5",
|
| 149 |
+
"120",
|
| 150 |
+
"12a.m",
|
| 151 |
+
"12a.m.",
|
| 152 |
+
"12p.m",
|
| 153 |
+
"12p.m.",
|
| 154 |
+
"131",
|
| 155 |
+
"137",
|
| 156 |
+
"14",
|
| 157 |
+
"15",
|
| 158 |
+
"160/100",
|
| 159 |
+
"18",
|
| 160 |
+
"184",
|
| 161 |
+
"1PI",
|
| 162 |
+
"1a.m",
|
| 163 |
+
"1a.m.",
|
| 164 |
+
"1p.m",
|
| 165 |
+
"1p.m.",
|
| 166 |
+
"2",
|
| 167 |
+
"2.0",
|
| 168 |
+
"2.5",
|
| 169 |
+
"20",
|
| 170 |
+
"200",
|
| 171 |
+
"2002",
|
| 172 |
+
"20mg",
|
| 173 |
+
"21",
|
| 174 |
+
"22",
|
| 175 |
+
"23",
|
| 176 |
+
"24",
|
| 177 |
+
"25",
|
| 178 |
+
"25ml",
|
| 179 |
+
"28",
|
| 180 |
+
"29",
|
| 181 |
+
"2a.m",
|
| 182 |
+
"2a.m.",
|
| 183 |
+
"2p.m",
|
| 184 |
+
"2p.m.",
|
| 185 |
+
"3",
|
| 186 |
+
"3.1.1",
|
| 187 |
+
"30",
|
| 188 |
+
"300",
|
| 189 |
+
"325",
|
| 190 |
+
"33",
|
| 191 |
+
"333",
|
| 192 |
+
"35",
|
| 193 |
+
"35g",
|
| 194 |
+
"387",
|
| 195 |
+
"3A4",
|
| 196 |
+
"3A4/5",
|
| 197 |
+
"3a",
|
| 198 |
+
"3a.m",
|
| 199 |
+
"3a.m.",
|
| 200 |
+
"3a4/5",
|
| 201 |
+
"3m2",
|
| 202 |
+
"3p.m",
|
| 203 |
+
"3p.m.",
|
| 204 |
+
"4",
|
| 205 |
+
"4.0",
|
| 206 |
+
"4/5",
|
| 207 |
+
"40",
|
| 208 |
+
"42",
|
| 209 |
+
"430",
|
| 210 |
+
"438",
|
| 211 |
+
"440ms",
|
| 212 |
+
"45",
|
| 213 |
+
"450",
|
| 214 |
+
"48",
|
| 215 |
+
"480",
|
| 216 |
+
"4a.m",
|
| 217 |
+
"4a.m.",
|
| 218 |
+
"4p.m",
|
| 219 |
+
"4p.m.",
|
| 220 |
+
"5",
|
| 221 |
+
"50",
|
| 222 |
+
"50,000",
|
| 223 |
+
"500",
|
| 224 |
+
"5FU",
|
| 225 |
+
"5a.m",
|
| 226 |
+
"5a.m.",
|
| 227 |
+
"5fu",
|
| 228 |
+
"5ml",
|
| 229 |
+
"5p.m",
|
| 230 |
+
"5p.m.",
|
| 231 |
+
"5th",
|
| 232 |
+
"6",
|
| 233 |
+
"60",
|
| 234 |
+
"600",
|
| 235 |
+
"6a.m",
|
| 236 |
+
"6a.m.",
|
| 237 |
+
"6p.m",
|
| 238 |
+
"6p.m.",
|
| 239 |
+
"7",
|
| 240 |
+
"7.5",
|
| 241 |
+
"7/10",
|
| 242 |
+
"70",
|
| 243 |
+
"72",
|
| 244 |
+
"75",
|
| 245 |
+
"75g",
|
| 246 |
+
"7a.m",
|
| 247 |
+
"7a.m.",
|
| 248 |
+
"7p.m",
|
| 249 |
+
"7p.m.",
|
| 250 |
+
"8",
|
| 251 |
+
"8)",
|
| 252 |
+
"8-",
|
| 253 |
+
"8-)",
|
| 254 |
+
"8-D",
|
| 255 |
+
"8-d",
|
| 256 |
+
"81",
|
| 257 |
+
"84",
|
| 258 |
+
"8D",
|
| 259 |
+
"8a.m",
|
| 260 |
+
"8a.m.",
|
| 261 |
+
"8d",
|
| 262 |
+
"8p.m",
|
| 263 |
+
"8p.m.",
|
| 264 |
+
"9",
|
| 265 |
+
"9.0",
|
| 266 |
+
"90",
|
| 267 |
+
"94",
|
| 268 |
+
"9500/3",
|
| 269 |
+
"95th",
|
| 270 |
+
"9a.m",
|
| 271 |
+
"9a.m.",
|
| 272 |
+
"9p.m",
|
| 273 |
+
"9p.m.",
|
| 274 |
+
":",
|
| 275 |
+
":'(",
|
| 276 |
+
":')",
|
| 277 |
+
":'-(",
|
| 278 |
+
":'-)",
|
| 279 |
+
":(",
|
| 280 |
+
":((",
|
| 281 |
+
":(((",
|
| 282 |
+
":()",
|
| 283 |
+
":)",
|
| 284 |
+
":))",
|
| 285 |
+
":)))",
|
| 286 |
+
":*",
|
| 287 |
+
":-(",
|
| 288 |
+
":-((",
|
| 289 |
+
":-(((",
|
| 290 |
+
":-)",
|
| 291 |
+
":-))",
|
| 292 |
+
":-)))",
|
| 293 |
+
":-*",
|
| 294 |
+
":-/",
|
| 295 |
+
":-0",
|
| 296 |
+
":-3",
|
| 297 |
+
":->",
|
| 298 |
+
":-D",
|
| 299 |
+
":-O",
|
| 300 |
+
":-P",
|
| 301 |
+
":-X",
|
| 302 |
+
":-]",
|
| 303 |
+
":-d",
|
| 304 |
+
":-o",
|
| 305 |
+
":-p",
|
| 306 |
+
":-x",
|
| 307 |
+
":-|",
|
| 308 |
+
":-}",
|
| 309 |
+
":/",
|
| 310 |
+
":0",
|
| 311 |
+
":1",
|
| 312 |
+
":3",
|
| 313 |
+
":>",
|
| 314 |
+
":D",
|
| 315 |
+
":O",
|
| 316 |
+
":P",
|
| 317 |
+
":X",
|
| 318 |
+
":]",
|
| 319 |
+
":d",
|
| 320 |
+
":o",
|
| 321 |
+
":o)",
|
| 322 |
+
":p",
|
| 323 |
+
":x",
|
| 324 |
+
":x)",
|
| 325 |
+
":|",
|
| 326 |
+
":}",
|
| 327 |
+
":\u2019(",
|
| 328 |
+
":\u2019)",
|
| 329 |
+
":\u2019-(",
|
| 330 |
+
":\u2019-)",
|
| 331 |
+
";",
|
| 332 |
+
";)",
|
| 333 |
+
";-)",
|
| 334 |
+
";-D",
|
| 335 |
+
";-X",
|
| 336 |
+
";-d",
|
| 337 |
+
";D",
|
| 338 |
+
";X",
|
| 339 |
+
";_;",
|
| 340 |
+
";d",
|
| 341 |
+
"<",
|
| 342 |
+
"<.<",
|
| 343 |
+
"</3",
|
| 344 |
+
"</d",
|
| 345 |
+
"<3",
|
| 346 |
+
"<33",
|
| 347 |
+
"<333",
|
| 348 |
+
"<35",
|
| 349 |
+
"<45",
|
| 350 |
+
"<d",
|
| 351 |
+
"<dd",
|
| 352 |
+
"<ddd",
|
| 353 |
+
"<space>",
|
| 354 |
+
"<xxxx>",
|
| 355 |
+
"=",
|
| 356 |
+
"=(",
|
| 357 |
+
"=)",
|
| 358 |
+
"=/",
|
| 359 |
+
"=3",
|
| 360 |
+
"=D",
|
| 361 |
+
"=X",
|
| 362 |
+
"=[",
|
| 363 |
+
"=]",
|
| 364 |
+
"=d",
|
| 365 |
+
"=|",
|
| 366 |
+
">",
|
| 367 |
+
">.<",
|
| 368 |
+
">.>",
|
| 369 |
+
">15",
|
| 370 |
+
">:(",
|
| 371 |
+
">:o",
|
| 372 |
+
">:x",
|
| 373 |
+
"><(((*>",
|
| 374 |
+
"@",
|
| 375 |
+
"@_@",
|
| 376 |
+
"A",
|
| 377 |
+
"A-4",
|
| 378 |
+
"A1PI",
|
| 379 |
+
"ABG",
|
| 380 |
+
"ABP",
|
| 381 |
+
"ABS",
|
| 382 |
+
"ACC)/Heart",
|
| 383 |
+
"ACL",
|
| 384 |
+
"ADHD",
|
| 385 |
+
"ADIS-5",
|
| 386 |
+
"AET",
|
| 387 |
+
"AEs",
|
| 388 |
+
"AHA)/American",
|
| 389 |
+
"AHI)>15",
|
| 390 |
+
"AJCC",
|
| 391 |
+
"AKA",
|
| 392 |
+
"ALK",
|
| 393 |
+
"ALL",
|
| 394 |
+
"ALLERGY",
|
| 395 |
+
"ALS",
|
| 396 |
+
"ALT",
|
| 397 |
+
"AMC",
|
| 398 |
+
"AME",
|
| 399 |
+
"AML",
|
| 400 |
+
"APC",
|
| 401 |
+
"APS",
|
| 402 |
+
"ART",
|
| 403 |
+
"ASA",
|
| 404 |
+
"ASCT",
|
| 405 |
+
"ASD",
|
| 406 |
+
"AST",
|
| 407 |
+
"AT",
|
| 408 |
+
"AT13387",
|
| 409 |
+
"ATS",
|
| 410 |
+
"AV",
|
| 411 |
+
"Ability",
|
| 412 |
+
"Able",
|
| 413 |
+
"Abnormal",
|
| 414 |
+
"Active",
|
| 415 |
+
"Acute",
|
| 416 |
+
"Adequate",
|
| 417 |
+
"Adm",
|
| 418 |
+
"Adm.",
|
| 419 |
+
"Adolescents",
|
| 420 |
+
"Advanced",
|
| 421 |
+
"Adverse",
|
| 422 |
+
"Ag-",
|
| 423 |
+
"Agree",
|
| 424 |
+
"Ai",
|
| 425 |
+
"Ak",
|
| 426 |
+
"Ak.",
|
| 427 |
+
"Ala",
|
| 428 |
+
"Ala.",
|
| 429 |
+
"Alabama",
|
| 430 |
+
"Alaska",
|
| 431 |
+
"All",
|
| 432 |
+
"Allergic",
|
| 433 |
+
"Allergy",
|
| 434 |
+
"Alpha1",
|
| 435 |
+
"American",
|
| 436 |
+
"Amyotrophic",
|
| 437 |
+
"Anaphylactic",
|
| 438 |
+
"Angina",
|
| 439 |
+
"Anterior",
|
| 440 |
+
"Anticipate",
|
| 441 |
+
"Anticipation",
|
| 442 |
+
"Any",
|
| 443 |
+
"Aortic",
|
| 444 |
+
"Apixaban",
|
| 445 |
+
"Appropriate",
|
| 446 |
+
"Apr",
|
| 447 |
+
"Apr.",
|
| 448 |
+
"April",
|
| 449 |
+
"Are",
|
| 450 |
+
"Ariz",
|
| 451 |
+
"Ariz.",
|
| 452 |
+
"Arizona",
|
| 453 |
+
"Ark",
|
| 454 |
+
"Ark.",
|
| 455 |
+
"Arkansas",
|
| 456 |
+
"Arm",
|
| 457 |
+
"Arterial",
|
| 458 |
+
"Association",
|
| 459 |
+
"Asthma",
|
| 460 |
+
"AstraZeneca",
|
| 461 |
+
"At",
|
| 462 |
+
"Aug",
|
| 463 |
+
"Aug.",
|
| 464 |
+
"August",
|
| 465 |
+
"Autologous",
|
| 466 |
+
"Axis",
|
| 467 |
+
"B",
|
| 468 |
+
"B1",
|
| 469 |
+
"B2",
|
| 470 |
+
"B3",
|
| 471 |
+
"BC",
|
| 472 |
+
"BCL",
|
| 473 |
+
"BFR",
|
| 474 |
+
"BKA",
|
| 475 |
+
"BL",
|
| 476 |
+
"BMI",
|
| 477 |
+
"BNP",
|
| 478 |
+
"BRAF",
|
| 479 |
+
"BRT",
|
| 480 |
+
"BT",
|
| 481 |
+
"BTC",
|
| 482 |
+
"BWH",
|
| 483 |
+
"Babies",
|
| 484 |
+
"Bariatric",
|
| 485 |
+
"Because",
|
| 486 |
+
"Binge",
|
| 487 |
+
"Bipolar",
|
| 488 |
+
"Block",
|
| 489 |
+
"Blood",
|
| 490 |
+
"Botulinum",
|
| 491 |
+
"Brain",
|
| 492 |
+
"Branch",
|
| 493 |
+
"Breast",
|
| 494 |
+
"Bros",
|
| 495 |
+
"Bros.",
|
| 496 |
+
"Bundle",
|
| 497 |
+
"Burkitt",
|
| 498 |
+
"C",
|
| 499 |
+
"C'm",
|
| 500 |
+
"C++",
|
| 501 |
+
"C.",
|
| 502 |
+
"CABG",
|
| 503 |
+
"CAD",
|
| 504 |
+
"CAE",
|
| 505 |
+
"CAM",
|
| 506 |
+
"CANCER",
|
| 507 |
+
"CAPS",
|
| 508 |
+
"CAs",
|
| 509 |
+
"CBC",
|
| 510 |
+
"CBD",
|
| 511 |
+
"CBP",
|
| 512 |
+
"CC",
|
| 513 |
+
"CD)20",
|
| 514 |
+
"CD137",
|
| 515 |
+
"CD20",
|
| 516 |
+
"CD40",
|
| 517 |
+
"CD9",
|
| 518 |
+
"CDI",
|
| 519 |
+
"CGs",
|
| 520 |
+
"CHF",
|
| 521 |
+
"CHRONIC DISEASE",
|
| 522 |
+
"CIRS",
|
| 523 |
+
"CIS",
|
| 524 |
+
"CK",
|
| 525 |
+
"CKD",
|
| 526 |
+
"CLC",
|
| 527 |
+
"CLL",
|
| 528 |
+
"CML",
|
| 529 |
+
"CNS",
|
| 530 |
+
"COPD",
|
| 531 |
+
"CR",
|
| 532 |
+
"CR-",
|
| 533 |
+
"CRC",
|
| 534 |
+
"CRT",
|
| 535 |
+
"CSF",
|
| 536 |
+
"CT",
|
| 537 |
+
"CTCAE",
|
| 538 |
+
"CTEPH",
|
| 539 |
+
"CTLA-4",
|
| 540 |
+
"CTLA4",
|
| 541 |
+
"CV",
|
| 542 |
+
"CVA",
|
| 543 |
+
"CWP",
|
| 544 |
+
"CYP",
|
| 545 |
+
"CYP3A4",
|
| 546 |
+
"Ca",
|
| 547 |
+
"Calif",
|
| 548 |
+
"Calif.",
|
| 549 |
+
"California",
|
| 550 |
+
"Can",
|
| 551 |
+
"Cancer",
|
| 552 |
+
"Carcinoma",
|
| 553 |
+
"Cardiac",
|
| 554 |
+
"Cardiogenic",
|
| 555 |
+
"Cardiology",
|
| 556 |
+
"Cause",
|
| 557 |
+
"Causes",
|
| 558 |
+
"Cell",
|
| 559 |
+
"Center",
|
| 560 |
+
"Centrally",
|
| 561 |
+
"Chalazia",
|
| 562 |
+
"Checking",
|
| 563 |
+
"Chemotherapy",
|
| 564 |
+
"Child",
|
| 565 |
+
"Chronic",
|
| 566 |
+
"Cirrhosis",
|
| 567 |
+
"Class",
|
| 568 |
+
"Classification",
|
| 569 |
+
"Claustrophobia",
|
| 570 |
+
"Cleaning",
|
| 571 |
+
"Clinical",
|
| 572 |
+
"Clinically",
|
| 573 |
+
"Co",
|
| 574 |
+
"Co.",
|
| 575 |
+
"Coagulopathy",
|
| 576 |
+
"College",
|
| 577 |
+
"Colo",
|
| 578 |
+
"Colo.",
|
| 579 |
+
"Colorado",
|
| 580 |
+
"Colorectal",
|
| 581 |
+
"Complete",
|
| 582 |
+
"Completion",
|
| 583 |
+
"Concomitant",
|
| 584 |
+
"Concurrent",
|
| 585 |
+
"Confirmatory",
|
| 586 |
+
"Confirmed",
|
| 587 |
+
"Congenital",
|
| 588 |
+
"Conn",
|
| 589 |
+
"Conn.",
|
| 590 |
+
"Connecticut",
|
| 591 |
+
"Contamination",
|
| 592 |
+
"Contraindication",
|
| 593 |
+
"Contraindications",
|
| 594 |
+
"Cord",
|
| 595 |
+
"Corp",
|
| 596 |
+
"Corp.",
|
| 597 |
+
"Corticosteroid",
|
| 598 |
+
"Corticosteroids",
|
| 599 |
+
"Cos",
|
| 600 |
+
"Could",
|
| 601 |
+
"Coumadin",
|
| 602 |
+
"Count",
|
| 603 |
+
"Coz",
|
| 604 |
+
"Criteria",
|
| 605 |
+
"Crohn",
|
| 606 |
+
"Current",
|
| 607 |
+
"Currently",
|
| 608 |
+
"Cuz",
|
| 609 |
+
"Cycle",
|
| 610 |
+
"C\u2019m",
|
| 611 |
+
"D",
|
| 612 |
+
"D-1",
|
| 613 |
+
"D.",
|
| 614 |
+
"D.C.",
|
| 615 |
+
"D20",
|
| 616 |
+
"D40",
|
| 617 |
+
"DBS",
|
| 618 |
+
"DCIS",
|
| 619 |
+
"DHD",
|
| 620 |
+
"DI",
|
| 621 |
+
"DIC",
|
| 622 |
+
"DL1",
|
| 623 |
+
"DL2",
|
| 624 |
+
"DLBCL",
|
| 625 |
+
"DLCO",
|
| 626 |
+
"DNA",
|
| 627 |
+
"DNR",
|
| 628 |
+
"DOPC",
|
| 629 |
+
"DSM",
|
| 630 |
+
"DVT",
|
| 631 |
+
"Dabigatran",
|
| 632 |
+
"Daily",
|
| 633 |
+
"Danhlos",
|
| 634 |
+
"Dare",
|
| 635 |
+
"De",
|
| 636 |
+
"Dec",
|
| 637 |
+
"Dec.",
|
| 638 |
+
"December",
|
| 639 |
+
"Definitive",
|
| 640 |
+
"Del",
|
| 641 |
+
"Del.",
|
| 642 |
+
"Delaware",
|
| 643 |
+
"Dementia",
|
| 644 |
+
"Depression",
|
| 645 |
+
"Depressive",
|
| 646 |
+
"Diabetes",
|
| 647 |
+
"Diagnosed",
|
| 648 |
+
"Diagnosis",
|
| 649 |
+
"Diagnostic",
|
| 650 |
+
"Did",
|
| 651 |
+
"Direct",
|
| 652 |
+
"Disease",
|
| 653 |
+
"Diseases",
|
| 654 |
+
"Disorder",
|
| 655 |
+
"Disorders",
|
| 656 |
+
"Do",
|
| 657 |
+
"Documentation",
|
| 658 |
+
"Documented",
|
| 659 |
+
"Does",
|
| 660 |
+
"Doin",
|
| 661 |
+
"Doin'",
|
| 662 |
+
"Doin\u2019",
|
| 663 |
+
"Doppler",
|
| 664 |
+
"Dr",
|
| 665 |
+
"Dr.",
|
| 666 |
+
"Ductal",
|
| 667 |
+
"Due",
|
| 668 |
+
"E",
|
| 669 |
+
"E.G.",
|
| 670 |
+
"E.g",
|
| 671 |
+
"E.g.",
|
| 672 |
+
"EBRT",
|
| 673 |
+
"EBV",
|
| 674 |
+
"ECD",
|
| 675 |
+
"ECG",
|
| 676 |
+
"ECGs",
|
| 677 |
+
"EF",
|
| 678 |
+
"EKG",
|
| 679 |
+
"EMI",
|
| 680 |
+
"EPH",
|
| 681 |
+
"EPO",
|
| 682 |
+
"EPP",
|
| 683 |
+
"ER",
|
| 684 |
+
"ER+/HER2-",
|
| 685 |
+
"ER2",
|
| 686 |
+
"ERD",
|
| 687 |
+
"ERROR",
|
| 688 |
+
"ETT",
|
| 689 |
+
"EV1",
|
| 690 |
+
"Ehlers",
|
| 691 |
+
"Either",
|
| 692 |
+
"Ejection",
|
| 693 |
+
"Electrocardiogram",
|
| 694 |
+
"Elevated",
|
| 695 |
+
"End",
|
| 696 |
+
"Endometrial",
|
| 697 |
+
"Enlargement",
|
| 698 |
+
"EoE",
|
| 699 |
+
"EphA2",
|
| 700 |
+
"Epi",
|
| 701 |
+
"Epilepsy",
|
| 702 |
+
"Evaluation",
|
| 703 |
+
"Events",
|
| 704 |
+
"Evidence",
|
| 705 |
+
"Excessive",
|
| 706 |
+
"Exclusion",
|
| 707 |
+
"Existence",
|
| 708 |
+
"F",
|
| 709 |
+
"F.",
|
| 710 |
+
"FC",
|
| 711 |
+
"FCBP",
|
| 712 |
+
"FEV1",
|
| 713 |
+
"FIX",
|
| 714 |
+
"FL",
|
| 715 |
+
"FMISO",
|
| 716 |
+
"FNA",
|
| 717 |
+
"FOLFIRINOX",
|
| 718 |
+
"FVC",
|
| 719 |
+
"Farkas",
|
| 720 |
+
"Feb",
|
| 721 |
+
"Feb.",
|
| 722 |
+
"February",
|
| 723 |
+
"Fecal",
|
| 724 |
+
"Female",
|
| 725 |
+
"Females",
|
| 726 |
+
"Findings",
|
| 727 |
+
"First",
|
| 728 |
+
"Fla",
|
| 729 |
+
"Fla.",
|
| 730 |
+
"Florida",
|
| 731 |
+
"Fontan",
|
| 732 |
+
"For",
|
| 733 |
+
"Fraction",
|
| 734 |
+
"Fresh",
|
| 735 |
+
"Fridericia",
|
| 736 |
+
"Frozen",
|
| 737 |
+
"G",
|
| 738 |
+
"GAI",
|
| 739 |
+
"GBM",
|
| 740 |
+
"GCT",
|
| 741 |
+
"GD2",
|
| 742 |
+
"GEC",
|
| 743 |
+
"GERD",
|
| 744 |
+
"GFR",
|
| 745 |
+
"GI",
|
| 746 |
+
"GM",
|
| 747 |
+
"GRQ",
|
| 748 |
+
"GVAX",
|
| 749 |
+
"GVHD",
|
| 750 |
+
"Ga",
|
| 751 |
+
"Ga.",
|
| 752 |
+
"Gastrointestinal",
|
| 753 |
+
"Gen",
|
| 754 |
+
"Gen.",
|
| 755 |
+
"General",
|
| 756 |
+
"Georgia",
|
| 757 |
+
"Gilbert",
|
| 758 |
+
"Ginger",
|
| 759 |
+
"Ginkgo",
|
| 760 |
+
"Ginseng",
|
| 761 |
+
"Gliadel",
|
| 762 |
+
"Goin",
|
| 763 |
+
"Goin'",
|
| 764 |
+
"Goin\u2019",
|
| 765 |
+
"Gon",
|
| 766 |
+
"Got",
|
| 767 |
+
"Gov",
|
| 768 |
+
"Gov.",
|
| 769 |
+
"Grade",
|
| 770 |
+
"Group",
|
| 771 |
+
"H",
|
| 772 |
+
"H&N",
|
| 773 |
+
"HAART",
|
| 774 |
+
"HBV",
|
| 775 |
+
"HBsAg",
|
| 776 |
+
"HBsAg-",
|
| 777 |
+
"HCC",
|
| 778 |
+
"HCT",
|
| 779 |
+
"HCV",
|
| 780 |
+
"HDC)-ASCT",
|
| 781 |
+
"HER2",
|
| 782 |
+
"HF",
|
| 783 |
+
"HIV",
|
| 784 |
+
"HL",
|
| 785 |
+
"HMI",
|
| 786 |
+
"HPAH",
|
| 787 |
+
"HRS",
|
| 788 |
+
"HRT",
|
| 789 |
+
"HSCT",
|
| 790 |
+
"HSV",
|
| 791 |
+
"Had",
|
| 792 |
+
"Has",
|
| 793 |
+
"Hashimoto",
|
| 794 |
+
"Have",
|
| 795 |
+
"Havin",
|
| 796 |
+
"Havin'",
|
| 797 |
+
"Having",
|
| 798 |
+
"Havin\u2019",
|
| 799 |
+
"Hb",
|
| 800 |
+
"Hb-",
|
| 801 |
+
"HbS",
|
| 802 |
+
"He",
|
| 803 |
+
"He's",
|
| 804 |
+
"Head",
|
| 805 |
+
"Health",
|
| 806 |
+
"Heart",
|
| 807 |
+
"Hemodynamic",
|
| 808 |
+
"Hep",
|
| 809 |
+
"Hepatic",
|
| 810 |
+
"Hepatitis",
|
| 811 |
+
"Hereditable",
|
| 812 |
+
"He\u2019s",
|
| 813 |
+
"Hg",
|
| 814 |
+
"High",
|
| 815 |
+
"Hiltonol",
|
| 816 |
+
"Histologic",
|
| 817 |
+
"Histologically",
|
| 818 |
+
"History",
|
| 819 |
+
"Hodgkin",
|
| 820 |
+
"Hospital",
|
| 821 |
+
"How",
|
| 822 |
+
"How's",
|
| 823 |
+
"How\u2019s",
|
| 824 |
+
"Hurthle",
|
| 825 |
+
"Hx",
|
| 826 |
+
"Hyperkalemia",
|
| 827 |
+
"Hypersensitivity",
|
| 828 |
+
"Hypertrophic",
|
| 829 |
+
"Hypotension",
|
| 830 |
+
"I",
|
| 831 |
+
"I-131",
|
| 832 |
+
"I.E.",
|
| 833 |
+
"I.e",
|
| 834 |
+
"I.e.",
|
| 835 |
+
"IABP",
|
| 836 |
+
"IBG",
|
| 837 |
+
"IBS",
|
| 838 |
+
"ICD",
|
| 839 |
+
"ICD9",
|
| 840 |
+
"IDs",
|
| 841 |
+
"II",
|
| 842 |
+
"IIB",
|
| 843 |
+
"IIC",
|
| 844 |
+
"III",
|
| 845 |
+
"IIIB",
|
| 846 |
+
"IIIC",
|
| 847 |
+
"IL-2",
|
| 848 |
+
"IME",
|
| 849 |
+
"IMWG",
|
| 850 |
+
"IND",
|
| 851 |
+
"INR",
|
| 852 |
+
"IOL",
|
| 853 |
+
"IPHC",
|
| 854 |
+
"IQ",
|
| 855 |
+
"IRS",
|
| 856 |
+
"IS",
|
| 857 |
+
"ISO",
|
| 858 |
+
"IST",
|
| 859 |
+
"IU",
|
| 860 |
+
"IV",
|
| 861 |
+
"IVC",
|
| 862 |
+
"IVIg",
|
| 863 |
+
"Ia",
|
| 864 |
+
"Ia.",
|
| 865 |
+
"Id",
|
| 866 |
+
"Id.",
|
| 867 |
+
"Idaho",
|
| 868 |
+
"If",
|
| 869 |
+
"Ill",
|
| 870 |
+
"Ill.",
|
| 871 |
+
"Illinois",
|
| 872 |
+
"Immunocompromised",
|
| 873 |
+
"Immunosuppressive",
|
| 874 |
+
"Impending",
|
| 875 |
+
"In",
|
| 876 |
+
"Inability",
|
| 877 |
+
"Inc",
|
| 878 |
+
"Inc.",
|
| 879 |
+
"Inclusion",
|
| 880 |
+
"Increased",
|
| 881 |
+
"Ind",
|
| 882 |
+
"Ind.",
|
| 883 |
+
"Index",
|
| 884 |
+
"Indiana",
|
| 885 |
+
"Individuals",
|
| 886 |
+
"Infantile",
|
| 887 |
+
"Infectious",
|
| 888 |
+
"Inflammatory",
|
| 889 |
+
"Infusion",
|
| 890 |
+
"Inhibitor",
|
| 891 |
+
"Injury",
|
| 892 |
+
"Institute",
|
| 893 |
+
"Instruction",
|
| 894 |
+
"Insufficient",
|
| 895 |
+
"Intellectual",
|
| 896 |
+
"Intercurrent",
|
| 897 |
+
"Interleukin-2",
|
| 898 |
+
"International",
|
| 899 |
+
"Intolerance",
|
| 900 |
+
"Invasive",
|
| 901 |
+
"Investigator",
|
| 902 |
+
"Iowa",
|
| 903 |
+
"Is",
|
| 904 |
+
"Ischemic",
|
| 905 |
+
"Ishak",
|
| 906 |
+
"It",
|
| 907 |
+
"It's",
|
| 908 |
+
"It\u2019s",
|
| 909 |
+
"J",
|
| 910 |
+
"JCC",
|
| 911 |
+
"JHMI",
|
| 912 |
+
"Jan",
|
| 913 |
+
"Jan.",
|
| 914 |
+
"January",
|
| 915 |
+
"John",
|
| 916 |
+
"Jr",
|
| 917 |
+
"Jr.",
|
| 918 |
+
"Jul",
|
| 919 |
+
"Jul.",
|
| 920 |
+
"July",
|
| 921 |
+
"Jun",
|
| 922 |
+
"Jun.",
|
| 923 |
+
"June",
|
| 924 |
+
"K",
|
| 925 |
+
"K.",
|
| 926 |
+
"KIs",
|
| 927 |
+
"Kan",
|
| 928 |
+
"Kan.",
|
| 929 |
+
"Kans",
|
| 930 |
+
"Kans.",
|
| 931 |
+
"Kansas",
|
| 932 |
+
"Kentucky",
|
| 933 |
+
"Known",
|
| 934 |
+
"Ky",
|
| 935 |
+
"Ky.",
|
| 936 |
+
"L",
|
| 937 |
+
"L-2",
|
| 938 |
+
"L1",
|
| 939 |
+
"L2",
|
| 940 |
+
"LA4",
|
| 941 |
+
"LAPC",
|
| 942 |
+
"LBBB)>120",
|
| 943 |
+
"LCO",
|
| 944 |
+
"LD",
|
| 945 |
+
"LL",
|
| 946 |
+
"LMW",
|
| 947 |
+
"LPD",
|
| 948 |
+
"LV",
|
| 949 |
+
"LVEF)<35",
|
| 950 |
+
"La",
|
| 951 |
+
"La.",
|
| 952 |
+
"Laboratory",
|
| 953 |
+
"Language",
|
| 954 |
+
"Lateral",
|
| 955 |
+
"Learning",
|
| 956 |
+
"Left",
|
| 957 |
+
"Let",
|
| 958 |
+
"Let's",
|
| 959 |
+
"Let\u2019s",
|
| 960 |
+
"Likely",
|
| 961 |
+
"Linda",
|
| 962 |
+
"Lipid",
|
| 963 |
+
"Liver",
|
| 964 |
+
"Locally",
|
| 965 |
+
"Louisiana",
|
| 966 |
+
"Lovin",
|
| 967 |
+
"Lovin'",
|
| 968 |
+
"Lovin\u2019",
|
| 969 |
+
"Lower",
|
| 970 |
+
"Ltd",
|
| 971 |
+
"Ltd.",
|
| 972 |
+
"Lymphoepithelioma",
|
| 973 |
+
"Lymphoma",
|
| 974 |
+
"M",
|
| 975 |
+
"M0",
|
| 976 |
+
"M1",
|
| 977 |
+
"MB",
|
| 978 |
+
"MCL",
|
| 979 |
+
"MDD",
|
| 980 |
+
"MDE",
|
| 981 |
+
"MDS",
|
| 982 |
+
"MEK",
|
| 983 |
+
"MGH",
|
| 984 |
+
"MI",
|
| 985 |
+
"MIBG",
|
| 986 |
+
"MM",
|
| 987 |
+
"MMGCT",
|
| 988 |
+
"MMSE",
|
| 989 |
+
"MR",
|
| 990 |
+
"MRI",
|
| 991 |
+
"MS",
|
| 992 |
+
"MSE",
|
| 993 |
+
"MUGA",
|
| 994 |
+
"MWG",
|
| 995 |
+
"MYCN",
|
| 996 |
+
"MZ",
|
| 997 |
+
"Ma'am",
|
| 998 |
+
"Magnetic",
|
| 999 |
+
"Major",
|
| 1000 |
+
"Management",
|
| 1001 |
+
"Manual",
|
| 1002 |
+
"Mar",
|
| 1003 |
+
"Mar.",
|
| 1004 |
+
"March",
|
| 1005 |
+
"Marfans",
|
| 1006 |
+
"Mass",
|
| 1007 |
+
"Mass.",
|
| 1008 |
+
"Massachusetts",
|
| 1009 |
+
"Maternal",
|
| 1010 |
+
"May",
|
| 1011 |
+
"Ma\u2019am",
|
| 1012 |
+
"Md",
|
| 1013 |
+
"Md.",
|
| 1014 |
+
"Measurable",
|
| 1015 |
+
"Medically",
|
| 1016 |
+
"Meet",
|
| 1017 |
+
"Mellitus",
|
| 1018 |
+
"Mental",
|
| 1019 |
+
"Mercury",
|
| 1020 |
+
"Messrs",
|
| 1021 |
+
"Messrs.",
|
| 1022 |
+
"Mich",
|
| 1023 |
+
"Mich.",
|
| 1024 |
+
"Michigan",
|
| 1025 |
+
"Might",
|
| 1026 |
+
"Minn",
|
| 1027 |
+
"Minn.",
|
| 1028 |
+
"Minnesota",
|
| 1029 |
+
"Miss",
|
| 1030 |
+
"Miss.",
|
| 1031 |
+
"Mississippi",
|
| 1032 |
+
"MitraClip",
|
| 1033 |
+
"Mo",
|
| 1034 |
+
"Mo.",
|
| 1035 |
+
"Moderate",
|
| 1036 |
+
"Module",
|
| 1037 |
+
"Mont",
|
| 1038 |
+
"Mont.",
|
| 1039 |
+
"Mount",
|
| 1040 |
+
"Mr",
|
| 1041 |
+
"Mr.",
|
| 1042 |
+
"Mrs",
|
| 1043 |
+
"Mrs.",
|
| 1044 |
+
"Ms",
|
| 1045 |
+
"Ms.",
|
| 1046 |
+
"Mt",
|
| 1047 |
+
"Mt.",
|
| 1048 |
+
"Multiple",
|
| 1049 |
+
"Must",
|
| 1050 |
+
"Myelodysplastic",
|
| 1051 |
+
"Myeloma",
|
| 1052 |
+
"Myeloproliferative",
|
| 1053 |
+
"Myocardial",
|
| 1054 |
+
"N",
|
| 1055 |
+
"N.C.",
|
| 1056 |
+
"N.D.",
|
| 1057 |
+
"N.H.",
|
| 1058 |
+
"N.J.",
|
| 1059 |
+
"N.M.",
|
| 1060 |
+
"N.Y.",
|
| 1061 |
+
"N0",
|
| 1062 |
+
"N2",
|
| 1063 |
+
"N3",
|
| 1064 |
+
"NAC",
|
| 1065 |
+
"NAEPP",
|
| 1066 |
+
"NAS",
|
| 1067 |
+
"NAT",
|
| 1068 |
+
"NB",
|
| 1069 |
+
"NBC",
|
| 1070 |
+
"NCI]-Common",
|
| 1071 |
+
"NED",
|
| 1072 |
+
"NHL",
|
| 1073 |
+
"NK",
|
| 1074 |
+
"NOX",
|
| 1075 |
+
"NPWT",
|
| 1076 |
+
"NRI",
|
| 1077 |
+
"NRS",
|
| 1078 |
+
"NSAIDs",
|
| 1079 |
+
"NSCLC",
|
| 1080 |
+
"NSTEMI",
|
| 1081 |
+
"NT",
|
| 1082 |
+
"NTRK",
|
| 1083 |
+
"NYHA",
|
| 1084 |
+
"National",
|
| 1085 |
+
"Neb",
|
| 1086 |
+
"Neb.",
|
| 1087 |
+
"Nebr",
|
| 1088 |
+
"Nebr.",
|
| 1089 |
+
"Nebraska",
|
| 1090 |
+
"Need",
|
| 1091 |
+
"Negative",
|
| 1092 |
+
"Neurological",
|
| 1093 |
+
"Neuropathic",
|
| 1094 |
+
"Neuropathy",
|
| 1095 |
+
"Neutropenia",
|
| 1096 |
+
"Nev",
|
| 1097 |
+
"Nev.",
|
| 1098 |
+
"Nevada",
|
| 1099 |
+
"New",
|
| 1100 |
+
"New Hampshire",
|
| 1101 |
+
"New Jersey",
|
| 1102 |
+
"New Mexico",
|
| 1103 |
+
"New York",
|
| 1104 |
+
"Newly",
|
| 1105 |
+
"Night",
|
| 1106 |
+
"Nivolumab",
|
| 1107 |
+
"No",
|
| 1108 |
+
"Nonarteritic",
|
| 1109 |
+
"North",
|
| 1110 |
+
"North Carolina",
|
| 1111 |
+
"North Dakota",
|
| 1112 |
+
"Not",
|
| 1113 |
+
"Nothin",
|
| 1114 |
+
"Nothin'",
|
| 1115 |
+
"Nothin\u2019",
|
| 1116 |
+
"Nov",
|
| 1117 |
+
"Nov.",
|
| 1118 |
+
"November",
|
| 1119 |
+
"Null",
|
| 1120 |
+
"Nuthin",
|
| 1121 |
+
"Nuthin'",
|
| 1122 |
+
"Nuthin\u2019",
|
| 1123 |
+
"O",
|
| 1124 |
+
"O'clock",
|
| 1125 |
+
"O.O",
|
| 1126 |
+
"O.o",
|
| 1127 |
+
"O2",
|
| 1128 |
+
"OCD",
|
| 1129 |
+
"OPC",
|
| 1130 |
+
"OPD",
|
| 1131 |
+
"OR",
|
| 1132 |
+
"OSA",
|
| 1133 |
+
"OTC",
|
| 1134 |
+
"OX-40",
|
| 1135 |
+
"O_O",
|
| 1136 |
+
"O_o",
|
| 1137 |
+
"Oct",
|
| 1138 |
+
"Oct.",
|
| 1139 |
+
"October",
|
| 1140 |
+
"Of",
|
| 1141 |
+
"Okla",
|
| 1142 |
+
"Okla.",
|
| 1143 |
+
"Oklahoma",
|
| 1144 |
+
"Ol",
|
| 1145 |
+
"Ol'",
|
| 1146 |
+
"Ol\u2019",
|
| 1147 |
+
"Oncology",
|
| 1148 |
+
"One",
|
| 1149 |
+
"Opioid",
|
| 1150 |
+
"Optic",
|
| 1151 |
+
"Oral",
|
| 1152 |
+
"Ore",
|
| 1153 |
+
"Ore.",
|
| 1154 |
+
"Oregon",
|
| 1155 |
+
"Organ",
|
| 1156 |
+
"Osteoarthritis",
|
| 1157 |
+
"Other",
|
| 1158 |
+
"Ought",
|
| 1159 |
+
"Overweight",
|
| 1160 |
+
"O\u2019clock",
|
| 1161 |
+
"P",
|
| 1162 |
+
"P450",
|
| 1163 |
+
"PAH",
|
| 1164 |
+
"PCR",
|
| 1165 |
+
"PCR-",
|
| 1166 |
+
"PCWP",
|
| 1167 |
+
"PD",
|
| 1168 |
+
"PD-1",
|
| 1169 |
+
"PD1",
|
| 1170 |
+
"PDL1",
|
| 1171 |
+
"PDL2",
|
| 1172 |
+
"PET",
|
| 1173 |
+
"PH",
|
| 1174 |
+
"PHC",
|
| 1175 |
+
"PHQ-9",
|
| 1176 |
+
"PHT",
|
| 1177 |
+
"PI",
|
| 1178 |
+
"PKU",
|
| 1179 |
+
"PM060184",
|
| 1180 |
+
"PR",
|
| 1181 |
+
"PR+",
|
| 1182 |
+
"PRMC",
|
| 1183 |
+
"PRN",
|
| 1184 |
+
"PSA",
|
| 1185 |
+
"PTSD",
|
| 1186 |
+
"PTT",
|
| 1187 |
+
"PWT",
|
| 1188 |
+
"Pa",
|
| 1189 |
+
"Pa.",
|
| 1190 |
+
"Paget",
|
| 1191 |
+
"Pain",
|
| 1192 |
+
"Parental",
|
| 1193 |
+
"Parkinson",
|
| 1194 |
+
"Part",
|
| 1195 |
+
"Participant",
|
| 1196 |
+
"Participants",
|
| 1197 |
+
"Pathological",
|
| 1198 |
+
"Pathologically",
|
| 1199 |
+
"Patient",
|
| 1200 |
+
"Patients",
|
| 1201 |
+
"Pennsylvania",
|
| 1202 |
+
"Peripheral",
|
| 1203 |
+
"Permitted",
|
| 1204 |
+
"Ph",
|
| 1205 |
+
"Ph+",
|
| 1206 |
+
"Ph.D.",
|
| 1207 |
+
"Phenomenon",
|
| 1208 |
+
"Philadelphia",
|
| 1209 |
+
"Pi*Malton",
|
| 1210 |
+
"Pi*Null",
|
| 1211 |
+
"Pi*Z",
|
| 1212 |
+
"Planned",
|
| 1213 |
+
"Plasma",
|
| 1214 |
+
"Plexiform",
|
| 1215 |
+
"Poorly",
|
| 1216 |
+
"PrEP",
|
| 1217 |
+
"Pregnancy",
|
| 1218 |
+
"Prenatally",
|
| 1219 |
+
"Prescribed",
|
| 1220 |
+
"Presence",
|
| 1221 |
+
"Present",
|
| 1222 |
+
"Pressure",
|
| 1223 |
+
"Previous",
|
| 1224 |
+
"Previously",
|
| 1225 |
+
"Primary",
|
| 1226 |
+
"Principal",
|
| 1227 |
+
"Principle",
|
| 1228 |
+
"Prior",
|
| 1229 |
+
"Pro",
|
| 1230 |
+
"Prof",
|
| 1231 |
+
"Prof.",
|
| 1232 |
+
"Proteinase",
|
| 1233 |
+
"Psychiatric",
|
| 1234 |
+
"Pugh",
|
| 1235 |
+
"Pulmonary",
|
| 1236 |
+
"Q",
|
| 1237 |
+
"Q-9",
|
| 1238 |
+
"QRS",
|
| 1239 |
+
"QT",
|
| 1240 |
+
"QTC",
|
| 1241 |
+
"QTc",
|
| 1242 |
+
"QTcF",
|
| 1243 |
+
"Questionnaire",
|
| 1244 |
+
"R",
|
| 1245 |
+
"R2-",
|
| 1246 |
+
"RA",
|
| 1247 |
+
"RAF",
|
| 1248 |
+
"RAS",
|
| 1249 |
+
"RB",
|
| 1250 |
+
"RCC",
|
| 1251 |
+
"RDD",
|
| 1252 |
+
"RECIST",
|
| 1253 |
+
"RMC",
|
| 1254 |
+
"RNA",
|
| 1255 |
+
"ROOT",
|
| 1256 |
+
"ROR",
|
| 1257 |
+
"RP",
|
| 1258 |
+
"RPE",
|
| 1259 |
+
"RSV",
|
| 1260 |
+
"RT",
|
| 1261 |
+
"RVO",
|
| 1262 |
+
"Raynaud",
|
| 1263 |
+
"Receiving",
|
| 1264 |
+
"Recent",
|
| 1265 |
+
"Recipient",
|
| 1266 |
+
"Recovery",
|
| 1267 |
+
"Recurrent",
|
| 1268 |
+
"Refractory",
|
| 1269 |
+
"Region",
|
| 1270 |
+
"Relapsed",
|
| 1271 |
+
"Renal",
|
| 1272 |
+
"Rep",
|
| 1273 |
+
"Rep.",
|
| 1274 |
+
"Reported",
|
| 1275 |
+
"Require",
|
| 1276 |
+
"Requires",
|
| 1277 |
+
"Research",
|
| 1278 |
+
"Resolution",
|
| 1279 |
+
"Response",
|
| 1280 |
+
"Resting",
|
| 1281 |
+
"Rev",
|
| 1282 |
+
"Rev.",
|
| 1283 |
+
"RevAssist",
|
| 1284 |
+
"Rhythm",
|
| 1285 |
+
"Richters",
|
| 1286 |
+
"Ritalin",
|
| 1287 |
+
"Rivaroxaban",
|
| 1288 |
+
"S",
|
| 1289 |
+
"S-5",
|
| 1290 |
+
"S.C.",
|
| 1291 |
+
"S/",
|
| 1292 |
+
"SAB",
|
| 1293 |
+
"SAME",
|
| 1294 |
+
"SCCAs",
|
| 1295 |
+
"SCD",
|
| 1296 |
+
"SCI",
|
| 1297 |
+
"SCT",
|
| 1298 |
+
"SD",
|
| 1299 |
+
"SGRQ",
|
| 1300 |
+
"SHH",
|
| 1301 |
+
"SLE",
|
| 1302 |
+
"SLL",
|
| 1303 |
+
"SNRI",
|
| 1304 |
+
"SRI",
|
| 1305 |
+
"SSRI",
|
| 1306 |
+
"SVP",
|
| 1307 |
+
"SZ",
|
| 1308 |
+
"Saccular",
|
| 1309 |
+
"Satisfactory",
|
| 1310 |
+
"Scarring",
|
| 1311 |
+
"Scheduled",
|
| 1312 |
+
"Schizophrenia",
|
| 1313 |
+
"Sclerosis",
|
| 1314 |
+
"Screening",
|
| 1315 |
+
"Second",
|
| 1316 |
+
"Secondary",
|
| 1317 |
+
"Section",
|
| 1318 |
+
"Sen",
|
| 1319 |
+
"Sen.",
|
| 1320 |
+
"Sep",
|
| 1321 |
+
"Sep.",
|
| 1322 |
+
"Sept",
|
| 1323 |
+
"Sept.",
|
| 1324 |
+
"September",
|
| 1325 |
+
"Serious",
|
| 1326 |
+
"Seronegative",
|
| 1327 |
+
"Severe",
|
| 1328 |
+
"Sha",
|
| 1329 |
+
"She",
|
| 1330 |
+
"She's",
|
| 1331 |
+
"She\u2019s",
|
| 1332 |
+
"Should",
|
| 1333 |
+
"Significant",
|
| 1334 |
+
"Situ",
|
| 1335 |
+
"Size",
|
| 1336 |
+
"Skin",
|
| 1337 |
+
"Society",
|
| 1338 |
+
"Solid",
|
| 1339 |
+
"Somethin",
|
| 1340 |
+
"Somethin'",
|
| 1341 |
+
"Somethin\u2019",
|
| 1342 |
+
"South Carolina",
|
| 1343 |
+
"St",
|
| 1344 |
+
"St.",
|
| 1345 |
+
"Stage",
|
| 1346 |
+
"Staphylococcus",
|
| 1347 |
+
"Start",
|
| 1348 |
+
"Statistical",
|
| 1349 |
+
"Stem",
|
| 1350 |
+
"Stimulation",
|
| 1351 |
+
"Strong",
|
| 1352 |
+
"Structural",
|
| 1353 |
+
"Subject",
|
| 1354 |
+
"Subjects",
|
| 1355 |
+
"Suicidal",
|
| 1356 |
+
"Suspected",
|
| 1357 |
+
"Syndrome",
|
| 1358 |
+
"T",
|
| 1359 |
+
"T1",
|
| 1360 |
+
"T1c",
|
| 1361 |
+
"T2b",
|
| 1362 |
+
"TA",
|
| 1363 |
+
"TBI",
|
| 1364 |
+
"TCA",
|
| 1365 |
+
"THE",
|
| 1366 |
+
"TIA",
|
| 1367 |
+
"TKA",
|
| 1368 |
+
"TKI",
|
| 1369 |
+
"TKIs",
|
| 1370 |
+
"TLC<45",
|
| 1371 |
+
"TMA",
|
| 1372 |
+
"TMS",
|
| 1373 |
+
"TNBC",
|
| 1374 |
+
"TNF",
|
| 1375 |
+
"TR",
|
| 1376 |
+
"TREATMENT",
|
| 1377 |
+
"TRK",
|
| 1378 |
+
"TSD",
|
| 1379 |
+
"TWO",
|
| 1380 |
+
"Ta",
|
| 1381 |
+
"Taking",
|
| 1382 |
+
"Taxol",
|
| 1383 |
+
"TcF",
|
| 1384 |
+
"Temozolomide",
|
| 1385 |
+
"Tenn",
|
| 1386 |
+
"Tenn.",
|
| 1387 |
+
"Tennessee",
|
| 1388 |
+
"Terminology",
|
| 1389 |
+
"That",
|
| 1390 |
+
"That's",
|
| 1391 |
+
"That\u2019s",
|
| 1392 |
+
"The",
|
| 1393 |
+
"Therapy",
|
| 1394 |
+
"There",
|
| 1395 |
+
"There's",
|
| 1396 |
+
"There\u2019s",
|
| 1397 |
+
"These",
|
| 1398 |
+
"They",
|
| 1399 |
+
"This",
|
| 1400 |
+
"This's",
|
| 1401 |
+
"This\u2019s",
|
| 1402 |
+
"Thoracic",
|
| 1403 |
+
"Those",
|
| 1404 |
+
"Thyrogen",
|
| 1405 |
+
"Tis",
|
| 1406 |
+
"Toradol",
|
| 1407 |
+
"Transcranial",
|
| 1408 |
+
"Traumatic",
|
| 1409 |
+
"Treatment",
|
| 1410 |
+
"Troponin",
|
| 1411 |
+
"Tumor",
|
| 1412 |
+
"Tumors",
|
| 1413 |
+
"Turnstile",
|
| 1414 |
+
"Type",
|
| 1415 |
+
"U",
|
| 1416 |
+
"UGA",
|
| 1417 |
+
"ULN",
|
| 1418 |
+
"USAMC",
|
| 1419 |
+
"UV",
|
| 1420 |
+
"Unable",
|
| 1421 |
+
"Uncontrolled",
|
| 1422 |
+
"Uncuffed",
|
| 1423 |
+
"Unifocal",
|
| 1424 |
+
"Unstable",
|
| 1425 |
+
"Use",
|
| 1426 |
+
"V",
|
| 1427 |
+
"V.V",
|
| 1428 |
+
"V600E",
|
| 1429 |
+
"VAX",
|
| 1430 |
+
"VHD",
|
| 1431 |
+
"VIg",
|
| 1432 |
+
"VOC",
|
| 1433 |
+
"VT",
|
| 1434 |
+
"VWF",
|
| 1435 |
+
"V_V",
|
| 1436 |
+
"Va",
|
| 1437 |
+
"Va.",
|
| 1438 |
+
"Valproic",
|
| 1439 |
+
"Vasoactive",
|
| 1440 |
+
"Ventricle",
|
| 1441 |
+
"Ventricular",
|
| 1442 |
+
"Veteran",
|
| 1443 |
+
"Virginia",
|
| 1444 |
+
"Virus",
|
| 1445 |
+
"Visit",
|
| 1446 |
+
"Visual",
|
| 1447 |
+
"Vitamin",
|
| 1448 |
+
"W",
|
| 1449 |
+
"WHO",
|
| 1450 |
+
"Warfarin",
|
| 1451 |
+
"Was",
|
| 1452 |
+
"Wash",
|
| 1453 |
+
"Wash.",
|
| 1454 |
+
"Washington",
|
| 1455 |
+
"We",
|
| 1456 |
+
"Wellbutrin",
|
| 1457 |
+
"Were",
|
| 1458 |
+
"What",
|
| 1459 |
+
"What's",
|
| 1460 |
+
"What\u2019s",
|
| 1461 |
+
"When",
|
| 1462 |
+
"When's",
|
| 1463 |
+
"When\u2019s",
|
| 1464 |
+
"Where",
|
| 1465 |
+
"Where's",
|
| 1466 |
+
"Where\u2019s",
|
| 1467 |
+
"White",
|
| 1468 |
+
"Who",
|
| 1469 |
+
"Who's",
|
| 1470 |
+
"Who\u2019s",
|
| 1471 |
+
"Why",
|
| 1472 |
+
"Why's",
|
| 1473 |
+
"Why\u2019s",
|
| 1474 |
+
"Will",
|
| 1475 |
+
"Willebrand",
|
| 1476 |
+
"Willingness",
|
| 1477 |
+
"Wis",
|
| 1478 |
+
"Wis.",
|
| 1479 |
+
"Wisconsin",
|
| 1480 |
+
"Wo",
|
| 1481 |
+
"Wolff",
|
| 1482 |
+
"Women",
|
| 1483 |
+
"Working",
|
| 1484 |
+
"Would",
|
| 1485 |
+
"Wound",
|
| 1486 |
+
"X&X",
|
| 1487 |
+
"X'x",
|
| 1488 |
+
"X'xxxx",
|
| 1489 |
+
"X++",
|
| 1490 |
+
"X-ddd",
|
| 1491 |
+
"X.",
|
| 1492 |
+
"X.X",
|
| 1493 |
+
"X.X.",
|
| 1494 |
+
"X.x",
|
| 1495 |
+
"X.x.",
|
| 1496 |
+
"X/",
|
| 1497 |
+
"XD",
|
| 1498 |
+
"XDD",
|
| 1499 |
+
"XRT",
|
| 1500 |
+
"XX",
|
| 1501 |
+
"XX)dd",
|
| 1502 |
+
"XX+",
|
| 1503 |
+
"XX+/XXXd-",
|
| 1504 |
+
"XX-d",
|
| 1505 |
+
"XX-dd",
|
| 1506 |
+
"XXX",
|
| 1507 |
+
"XXX)-XXXX",
|
| 1508 |
+
"XXX)/Xxxxx",
|
| 1509 |
+
"XXX)>dd",
|
| 1510 |
+
"XXX-",
|
| 1511 |
+
"XXX-d",
|
| 1512 |
+
"XXX<dd",
|
| 1513 |
+
"XXXX",
|
| 1514 |
+
"XXXX)<dd",
|
| 1515 |
+
"XXXX)>ddd",
|
| 1516 |
+
"XXXX-d",
|
| 1517 |
+
"XXXXd",
|
| 1518 |
+
"XXXXx",
|
| 1519 |
+
"XXX]-Xxxxx",
|
| 1520 |
+
"XXXd",
|
| 1521 |
+
"XXXdXd",
|
| 1522 |
+
"XXXx",
|
| 1523 |
+
"XXd",
|
| 1524 |
+
"XXdd",
|
| 1525 |
+
"XXddd",
|
| 1526 |
+
"XXdddd",
|
| 1527 |
+
"XXx",
|
| 1528 |
+
"XXxX",
|
| 1529 |
+
"XXxXx",
|
| 1530 |
+
"XXxXx-",
|
| 1531 |
+
"X_X",
|
| 1532 |
+
"X_x",
|
| 1533 |
+
"Xd",
|
| 1534 |
+
"XdXX",
|
| 1535 |
+
"Xddd",
|
| 1536 |
+
"XdddX",
|
| 1537 |
+
"Xdx",
|
| 1538 |
+
"Xx",
|
| 1539 |
+
"Xx'",
|
| 1540 |
+
"Xx'x",
|
| 1541 |
+
"Xx'xx",
|
| 1542 |
+
"Xx*X",
|
| 1543 |
+
"Xx*Xxxx",
|
| 1544 |
+
"Xx*Xxxxx",
|
| 1545 |
+
"Xx+",
|
| 1546 |
+
"Xx-",
|
| 1547 |
+
"Xx.",
|
| 1548 |
+
"Xx.X.",
|
| 1549 |
+
"XxX",
|
| 1550 |
+
"XxXX",
|
| 1551 |
+
"Xxx",
|
| 1552 |
+
"Xxx'x",
|
| 1553 |
+
"Xxx.",
|
| 1554 |
+
"XxxXd",
|
| 1555 |
+
"XxxXxxxx",
|
| 1556 |
+
"Xxxx",
|
| 1557 |
+
"Xxxx'",
|
| 1558 |
+
"Xxxx'x",
|
| 1559 |
+
"Xxxx.",
|
| 1560 |
+
"Xxxxx",
|
| 1561 |
+
"Xxxxx'",
|
| 1562 |
+
"Xxxxx'x",
|
| 1563 |
+
"Xxxxx-d",
|
| 1564 |
+
"Xxxxx.",
|
| 1565 |
+
"XxxxxXxxx",
|
| 1566 |
+
"XxxxxXxxxx",
|
| 1567 |
+
"Xxxxxd",
|
| 1568 |
+
"Xxxxx\u2019",
|
| 1569 |
+
"Xxxxx\u2019x",
|
| 1570 |
+
"Xxxx\u2019",
|
| 1571 |
+
"Xxxx\u2019x",
|
| 1572 |
+
"Xxx\u2019x",
|
| 1573 |
+
"Xx\u2019",
|
| 1574 |
+
"Xx\u2019x",
|
| 1575 |
+
"Xx\u2019xx",
|
| 1576 |
+
"X\u2019x",
|
| 1577 |
+
"X\u2019xxxx",
|
| 1578 |
+
"Y",
|
| 1579 |
+
"YCN",
|
| 1580 |
+
"YHA",
|
| 1581 |
+
"York",
|
| 1582 |
+
"You",
|
| 1583 |
+
"Z",
|
| 1584 |
+
"[",
|
| 1585 |
+
"[-:",
|
| 1586 |
+
"[:",
|
| 1587 |
+
"[=",
|
| 1588 |
+
"\\",
|
| 1589 |
+
"\\\")",
|
| 1590 |
+
"\\n",
|
| 1591 |
+
"\\t",
|
| 1592 |
+
"\\x",
|
| 1593 |
+
"]",
|
| 1594 |
+
"]=",
|
| 1595 |
+
"^",
|
| 1596 |
+
"^_^",
|
| 1597 |
+
"^__^",
|
| 1598 |
+
"^___^",
|
| 1599 |
+
"_*)",
|
| 1600 |
+
"_-)",
|
| 1601 |
+
"_.)",
|
| 1602 |
+
"_<)",
|
| 1603 |
+
"_^)",
|
| 1604 |
+
"__-",
|
| 1605 |
+
"__^",
|
| 1606 |
+
"_\u00ac)",
|
| 1607 |
+
"_\u0ca0)",
|
| 1608 |
+
"a",
|
| 1609 |
+
"a-3",
|
| 1610 |
+
"a.",
|
| 1611 |
+
"a.m",
|
| 1612 |
+
"a.m.",
|
| 1613 |
+
"a1pi",
|
| 1614 |
+
"ab+",
|
| 1615 |
+
"abdominoplasty",
|
| 1616 |
+
"abemaciclib",
|
| 1617 |
+
"ability",
|
| 1618 |
+
"ablation",
|
| 1619 |
+
"ablative",
|
| 1620 |
+
"able",
|
| 1621 |
+
"abnormal",
|
| 1622 |
+
"abnormalities",
|
| 1623 |
+
"abnormality",
|
| 1624 |
+
"about",
|
| 1625 |
+
"above",
|
| 1626 |
+
"abrasions",
|
| 1627 |
+
"abs",
|
| 1628 |
+
"abscesses",
|
| 1629 |
+
"absence",
|
| 1630 |
+
"absolute",
|
| 1631 |
+
"absorb",
|
| 1632 |
+
"absorption",
|
| 1633 |
+
"abstain",
|
| 1634 |
+
"abstaining",
|
| 1635 |
+
"abstinence",
|
| 1636 |
+
"abuse",
|
| 1637 |
+
"acamprosate",
|
| 1638 |
+
"acc)/heart",
|
| 1639 |
+
"acceptable",
|
| 1640 |
+
"access",
|
| 1641 |
+
"accident",
|
| 1642 |
+
"accordance",
|
| 1643 |
+
"according",
|
| 1644 |
+
"ace",
|
| 1645 |
+
"acetate",
|
| 1646 |
+
"ach",
|
| 1647 |
+
"acid",
|
| 1648 |
+
"acids",
|
| 1649 |
+
"ack",
|
| 1650 |
+
"acne",
|
| 1651 |
+
"acquired",
|
| 1652 |
+
"act",
|
| 1653 |
+
"activated",
|
| 1654 |
+
"activator",
|
| 1655 |
+
"active",
|
| 1656 |
+
"activity",
|
| 1657 |
+
"acuity",
|
| 1658 |
+
"acute",
|
| 1659 |
+
"acyclovir",
|
| 1660 |
+
"adalimumab",
|
| 1661 |
+
"addition",
|
| 1662 |
+
"additional",
|
| 1663 |
+
"ade",
|
| 1664 |
+
"adenocarcinoma",
|
| 1665 |
+
"adequate",
|
| 1666 |
+
"adequately",
|
| 1667 |
+
"adhd",
|
| 1668 |
+
"adis-5",
|
| 1669 |
+
"adjunctive",
|
| 1670 |
+
"adjuvant",
|
| 1671 |
+
"adm",
|
| 1672 |
+
"adm.",
|
| 1673 |
+
"administered",
|
| 1674 |
+
"administration",
|
| 1675 |
+
"admission",
|
| 1676 |
+
"adolescents",
|
| 1677 |
+
"adults",
|
| 1678 |
+
"advanced",
|
| 1679 |
+
"adverse",
|
| 1680 |
+
"adversely",
|
| 1681 |
+
"aes",
|
| 1682 |
+
"aet",
|
| 1683 |
+
"afe",
|
| 1684 |
+
"affect",
|
| 1685 |
+
"affecting",
|
| 1686 |
+
"aft",
|
| 1687 |
+
"after",
|
| 1688 |
+
"again",
|
| 1689 |
+
"age",
|
| 1690 |
+
"agent(s",
|
| 1691 |
+
"agents",
|
| 1692 |
+
"aggressive",
|
| 1693 |
+
"agm",
|
| 1694 |
+
"agonists",
|
| 1695 |
+
"agree",
|
| 1696 |
+
"aha)/american",
|
| 1697 |
+
"ahi)>15",
|
| 1698 |
+
"ai",
|
| 1699 |
+
"aid",
|
| 1700 |
+
"ain",
|
| 1701 |
+
"air",
|
| 1702 |
+
"airflow",
|
| 1703 |
+
"airway",
|
| 1704 |
+
"ajcc",
|
| 1705 |
+
"ak",
|
| 1706 |
+
"ak.",
|
| 1707 |
+
"aka",
|
| 1708 |
+
"ake",
|
| 1709 |
+
"ala",
|
| 1710 |
+
"ala.",
|
| 1711 |
+
"alanine",
|
| 1712 |
+
"albumin",
|
| 1713 |
+
"alcohol",
|
| 1714 |
+
"alcoholic",
|
| 1715 |
+
"ale",
|
| 1716 |
+
"alf",
|
| 1717 |
+
"alimentation",
|
| 1718 |
+
"alk",
|
| 1719 |
+
"alkaline",
|
| 1720 |
+
"all",
|
| 1721 |
+
"allelic",
|
| 1722 |
+
"allergic",
|
| 1723 |
+
"allergies",
|
| 1724 |
+
"allergy",
|
| 1725 |
+
"allogeneic",
|
| 1726 |
+
"allowed",
|
| 1727 |
+
"alone",
|
| 1728 |
+
"alopecia",
|
| 1729 |
+
"alpha",
|
| 1730 |
+
"alpha1",
|
| 1731 |
+
"als",
|
| 1732 |
+
"also",
|
| 1733 |
+
"alt",
|
| 1734 |
+
"alter",
|
| 1735 |
+
"alternative",
|
| 1736 |
+
"although",
|
| 1737 |
+
"aly",
|
| 1738 |
+
"am",
|
| 1739 |
+
"amantadine",
|
| 1740 |
+
"ambulatory",
|
| 1741 |
+
"amenable",
|
| 1742 |
+
"american",
|
| 1743 |
+
"aminotransferase",
|
| 1744 |
+
"amiodarone",
|
| 1745 |
+
"aml",
|
| 1746 |
+
"amplified",
|
| 1747 |
+
"amputation",
|
| 1748 |
+
"ams",
|
| 1749 |
+
"amyotrophic",
|
| 1750 |
+
"an",
|
| 1751 |
+
"an.",
|
| 1752 |
+
"anabolic",
|
| 1753 |
+
"anakinra",
|
| 1754 |
+
"analysis",
|
| 1755 |
+
"anaphylactic",
|
| 1756 |
+
"anaphylaxis",
|
| 1757 |
+
"anaplastic",
|
| 1758 |
+
"anatomical",
|
| 1759 |
+
"and",
|
| 1760 |
+
"and/or",
|
| 1761 |
+
"ane",
|
| 1762 |
+
"anemia",
|
| 1763 |
+
"anesthesia",
|
| 1764 |
+
"aneurysm",
|
| 1765 |
+
"aneurysms",
|
| 1766 |
+
"angina",
|
| 1767 |
+
"anginal",
|
| 1768 |
+
"angiography",
|
| 1769 |
+
"angioplasty",
|
| 1770 |
+
"animal",
|
| 1771 |
+
"ank",
|
| 1772 |
+
"anomaly",
|
| 1773 |
+
"anorexia",
|
| 1774 |
+
"another",
|
| 1775 |
+
"ans",
|
| 1776 |
+
"ant",
|
| 1777 |
+
"anterior",
|
| 1778 |
+
"anthracyclines",
|
| 1779 |
+
"anti",
|
| 1780 |
+
"antiarrhythmic",
|
| 1781 |
+
"antibiotics",
|
| 1782 |
+
"antibodies",
|
| 1783 |
+
"antibody",
|
| 1784 |
+
"anticancer",
|
| 1785 |
+
"anticholinesterase",
|
| 1786 |
+
"anticipate",
|
| 1787 |
+
"anticipated",
|
| 1788 |
+
"anticipation",
|
| 1789 |
+
"anticoagulants",
|
| 1790 |
+
"anticoagulation",
|
| 1791 |
+
"anticonvulsant",
|
| 1792 |
+
"antidepressants",
|
| 1793 |
+
"antifungals",
|
| 1794 |
+
"antigen",
|
| 1795 |
+
"antihistamines",
|
| 1796 |
+
"antimicrobial",
|
| 1797 |
+
"antiphospholipid",
|
| 1798 |
+
"antipsychotic",
|
| 1799 |
+
"antipsychotics",
|
| 1800 |
+
"antiretroviral",
|
| 1801 |
+
"antirheumatic",
|
| 1802 |
+
"antiviral",
|
| 1803 |
+
"antivirals",
|
| 1804 |
+
"anxiety",
|
| 1805 |
+
"anxiolytics",
|
| 1806 |
+
"any",
|
| 1807 |
+
"aorta",
|
| 1808 |
+
"aortic",
|
| 1809 |
+
"aortoiliac",
|
| 1810 |
+
"apixaban",
|
| 1811 |
+
"aplasia",
|
| 1812 |
+
"apnea",
|
| 1813 |
+
"apparatus",
|
| 1814 |
+
"appearance",
|
| 1815 |
+
"appendectomy",
|
| 1816 |
+
"approach",
|
| 1817 |
+
"appropriate",
|
| 1818 |
+
"approval",
|
| 1819 |
+
"approved",
|
| 1820 |
+
"approximately",
|
| 1821 |
+
"apr",
|
| 1822 |
+
"apr.",
|
| 1823 |
+
"aprepitant",
|
| 1824 |
+
"apy",
|
| 1825 |
+
"ar.",
|
| 1826 |
+
"arch",
|
| 1827 |
+
"ard",
|
| 1828 |
+
"are",
|
| 1829 |
+
"area",
|
| 1830 |
+
"argon",
|
| 1831 |
+
"ariz",
|
| 1832 |
+
"ariz.",
|
| 1833 |
+
"ark",
|
| 1834 |
+
"ark.",
|
| 1835 |
+
"arm",
|
| 1836 |
+
"arms",
|
| 1837 |
+
"around",
|
| 1838 |
+
"arrhythmia",
|
| 1839 |
+
"arrhythmias",
|
| 1840 |
+
"arrhythmic",
|
| 1841 |
+
"ars",
|
| 1842 |
+
"art",
|
| 1843 |
+
"arterial",
|
| 1844 |
+
"artery",
|
| 1845 |
+
"arthritis",
|
| 1846 |
+
"arthropathy",
|
| 1847 |
+
"artificial",
|
| 1848 |
+
"ary",
|
| 1849 |
+
"as",
|
| 1850 |
+
"as/",
|
| 1851 |
+
"asa",
|
| 1852 |
+
"ascites",
|
| 1853 |
+
"asct",
|
| 1854 |
+
"asd",
|
| 1855 |
+
"ase",
|
| 1856 |
+
"ash",
|
| 1857 |
+
"aspartate",
|
| 1858 |
+
"aspirate",
|
| 1859 |
+
"aspirates",
|
| 1860 |
+
"aspirin",
|
| 1861 |
+
"ass",
|
| 1862 |
+
"assessed",
|
| 1863 |
+
"assessment",
|
| 1864 |
+
"associated",
|
| 1865 |
+
"associated)-T",
|
| 1866 |
+
"associated)-t",
|
| 1867 |
+
"association",
|
| 1868 |
+
"ast",
|
| 1869 |
+
"asthma",
|
| 1870 |
+
"astrazeneca",
|
| 1871 |
+
"asymptomatic",
|
| 1872 |
+
"at",
|
| 1873 |
+
"at13387",
|
| 1874 |
+
"ata",
|
| 1875 |
+
"ate",
|
| 1876 |
+
"ath",
|
| 1877 |
+
"atrial",
|
| 1878 |
+
"atriotomy",
|
| 1879 |
+
"atrioventricular",
|
| 1880 |
+
"ats",
|
| 1881 |
+
"attack",
|
| 1882 |
+
"attacks",
|
| 1883 |
+
"attributable",
|
| 1884 |
+
"atypical",
|
| 1885 |
+
"aud",
|
| 1886 |
+
"auditory",
|
| 1887 |
+
"aug",
|
| 1888 |
+
"aug.",
|
| 1889 |
+
"aureus",
|
| 1890 |
+
"autism",
|
| 1891 |
+
"autoimmune",
|
| 1892 |
+
"autologous",
|
| 1893 |
+
"av",
|
| 1894 |
+
"availability",
|
| 1895 |
+
"available",
|
| 1896 |
+
"ave",
|
| 1897 |
+
"average",
|
| 1898 |
+
"avian",
|
| 1899 |
+
"avoid",
|
| 1900 |
+
"aws",
|
| 1901 |
+
"axial",
|
| 1902 |
+
"axis",
|
| 1903 |
+
"ays",
|
| 1904 |
+
"azacitidine",
|
| 1905 |
+
"azathioprine",
|
| 1906 |
+
"b",
|
| 1907 |
+
"b.",
|
| 1908 |
+
"b1",
|
| 1909 |
+
"b2",
|
| 1910 |
+
"b3",
|
| 1911 |
+
"babies",
|
| 1912 |
+
"bacteremia",
|
| 1913 |
+
"bacterial",
|
| 1914 |
+
"bal",
|
| 1915 |
+
"balloon",
|
| 1916 |
+
"ban",
|
| 1917 |
+
"bar",
|
| 1918 |
+
"bariatric",
|
| 1919 |
+
"barrier",
|
| 1920 |
+
"basal",
|
| 1921 |
+
"based",
|
| 1922 |
+
"baseline",
|
| 1923 |
+
"bc",
|
| 1924 |
+
"be",
|
| 1925 |
+
"beam",
|
| 1926 |
+
"bearing",
|
| 1927 |
+
"because",
|
| 1928 |
+
"beclomethasone",
|
| 1929 |
+
"become",
|
| 1930 |
+
"bed",
|
| 1931 |
+
"been",
|
| 1932 |
+
"before",
|
| 1933 |
+
"begin",
|
| 1934 |
+
"beginning",
|
| 1935 |
+
"being",
|
| 1936 |
+
"believe",
|
| 1937 |
+
"below",
|
| 1938 |
+
"benefit",
|
| 1939 |
+
"benign",
|
| 1940 |
+
"ber",
|
| 1941 |
+
"beta",
|
| 1942 |
+
"better",
|
| 1943 |
+
"between",
|
| 1944 |
+
"bevacizumab",
|
| 1945 |
+
"bezoars",
|
| 1946 |
+
"bfr",
|
| 1947 |
+
"bia",
|
| 1948 |
+
"bilateral",
|
| 1949 |
+
"bile",
|
| 1950 |
+
"biliary",
|
| 1951 |
+
"bilirubin",
|
| 1952 |
+
"biloba",
|
| 1953 |
+
"bin",
|
| 1954 |
+
"binge",
|
| 1955 |
+
"biologic",
|
| 1956 |
+
"biological",
|
| 1957 |
+
"biologics",
|
| 1958 |
+
"biopsiable",
|
| 1959 |
+
"biopsies",
|
| 1960 |
+
"biopsy",
|
| 1961 |
+
"bipolar",
|
| 1962 |
+
"birth",
|
| 1963 |
+
"bisphosphonates",
|
| 1964 |
+
"bit",
|
| 1965 |
+
"bka",
|
| 1966 |
+
"bl",
|
| 1967 |
+
"bladder",
|
| 1968 |
+
"blasts",
|
| 1969 |
+
"ble",
|
| 1970 |
+
"bleeding",
|
| 1971 |
+
"blindness",
|
| 1972 |
+
"block",
|
| 1973 |
+
"blockage",
|
| 1974 |
+
"blockers",
|
| 1975 |
+
"blocking",
|
| 1976 |
+
"blood",
|
| 1977 |
+
"bly",
|
| 1978 |
+
"bmi",
|
| 1979 |
+
"boceprevir",
|
| 1980 |
+
"bodies",
|
| 1981 |
+
"body",
|
| 1982 |
+
"bone",
|
| 1983 |
+
"boron",
|
| 1984 |
+
"bortezomib",
|
| 1985 |
+
"both",
|
| 1986 |
+
"botulinum",
|
| 1987 |
+
"bout",
|
| 1988 |
+
"bovine",
|
| 1989 |
+
"bowel",
|
| 1990 |
+
"bowels",
|
| 1991 |
+
"br.",
|
| 1992 |
+
"brachytherapy",
|
| 1993 |
+
"bradycardia",
|
| 1994 |
+
"braf",
|
| 1995 |
+
"brain",
|
| 1996 |
+
"branch",
|
| 1997 |
+
"breast",
|
| 1998 |
+
"breastfeeding",
|
| 1999 |
+
"breathing",
|
| 2000 |
+
"brentuximab",
|
| 2001 |
+
"bronchi",
|
| 2002 |
+
"bronchial",
|
| 2003 |
+
"bronchiectasis",
|
| 2004 |
+
"bronchitis",
|
| 2005 |
+
"bronchus",
|
| 2006 |
+
"bros",
|
| 2007 |
+
"bros.",
|
| 2008 |
+
"bt",
|
| 2009 |
+
"btc",
|
| 2010 |
+
"budesonide",
|
| 2011 |
+
"bulimia",
|
| 2012 |
+
"bundle",
|
| 2013 |
+
"buprenorphine",
|
| 2014 |
+
"burkitt",
|
| 2015 |
+
"but",
|
| 2016 |
+
"bwh",
|
| 2017 |
+
"by",
|
| 2018 |
+
"bypass",
|
| 2019 |
+
"c",
|
| 2020 |
+
"c'm",
|
| 2021 |
+
"c++",
|
| 2022 |
+
"c.",
|
| 2023 |
+
"cGvHD",
|
| 2024 |
+
"ca",
|
| 2025 |
+
"cabg",
|
| 2026 |
+
"cad",
|
| 2027 |
+
"cal",
|
| 2028 |
+
"calculated",
|
| 2029 |
+
"calif",
|
| 2030 |
+
"calif.",
|
| 2031 |
+
"cam",
|
| 2032 |
+
"can",
|
| 2033 |
+
"cance",
|
| 2034 |
+
"cancer",
|
| 2035 |
+
"cancers",
|
| 2036 |
+
"candidate",
|
| 2037 |
+
"candidates",
|
| 2038 |
+
"cannabidiol",
|
| 2039 |
+
"caps",
|
| 2040 |
+
"carboplatin",
|
| 2041 |
+
"carcinoma",
|
| 2042 |
+
"carcinomas",
|
| 2043 |
+
"carcinomatous",
|
| 2044 |
+
"cardiac",
|
| 2045 |
+
"cardiogenic",
|
| 2046 |
+
"cardiology",
|
| 2047 |
+
"cardiomegaly",
|
| 2048 |
+
"cardiomyopathy",
|
| 2049 |
+
"cardiovascular",
|
| 2050 |
+
"care",
|
| 2051 |
+
"caregiver",
|
| 2052 |
+
"carfilzomib",
|
| 2053 |
+
"carina",
|
| 2054 |
+
"carrier",
|
| 2055 |
+
"cartilage",
|
| 2056 |
+
"cases",
|
| 2057 |
+
"castrate",
|
| 2058 |
+
"cataract",
|
| 2059 |
+
"catechol",
|
| 2060 |
+
"category",
|
| 2061 |
+
"catheter",
|
| 2062 |
+
"catheterization",
|
| 2063 |
+
"cause",
|
| 2064 |
+
"causes",
|
| 2065 |
+
"causing",
|
| 2066 |
+
"cavity",
|
| 2067 |
+
"cbc",
|
| 2068 |
+
"cbd",
|
| 2069 |
+
"cco",
|
| 2070 |
+
"cd)20",
|
| 2071 |
+
"cd137",
|
| 2072 |
+
"cd20",
|
| 2073 |
+
"cd40",
|
| 2074 |
+
"cdi",
|
| 2075 |
+
"ce>",
|
| 2076 |
+
"cea",
|
| 2077 |
+
"ced",
|
| 2078 |
+
"celiac",
|
| 2079 |
+
"cell",
|
| 2080 |
+
"cells",
|
| 2081 |
+
"center",
|
| 2082 |
+
"central",
|
| 2083 |
+
"centrally",
|
| 2084 |
+
"cer",
|
| 2085 |
+
"cerebellar",
|
| 2086 |
+
"cerebral",
|
| 2087 |
+
"cerebrovascular",
|
| 2088 |
+
"certain",
|
| 2089 |
+
"certolizumab",
|
| 2090 |
+
"cervical",
|
| 2091 |
+
"cervix",
|
| 2092 |
+
"ces",
|
| 2093 |
+
"cetuximab",
|
| 2094 |
+
"cgvhd",
|
| 2095 |
+
"ch.",
|
| 2096 |
+
"chalazia",
|
| 2097 |
+
"change",
|
| 2098 |
+
"changes",
|
| 2099 |
+
"characteristics",
|
| 2100 |
+
"characterized",
|
| 2101 |
+
"checking",
|
| 2102 |
+
"checkpoint",
|
| 2103 |
+
"chemical",
|
| 2104 |
+
"chemotherapy",
|
| 2105 |
+
"chemo\u2010RT",
|
| 2106 |
+
"chemo\u2010rt",
|
| 2107 |
+
"chest",
|
| 2108 |
+
"chf",
|
| 2109 |
+
"chi",
|
| 2110 |
+
"child",
|
| 2111 |
+
"childbearing",
|
| 2112 |
+
"children",
|
| 2113 |
+
"cholangiocarcinoma",
|
| 2114 |
+
"cholelithiasis",
|
| 2115 |
+
"cholesterol",
|
| 2116 |
+
"choose",
|
| 2117 |
+
"choriocarcinoma",
|
| 2118 |
+
"chronic",
|
| 2119 |
+
"chronically",
|
| 2120 |
+
"cia",
|
| 2121 |
+
"cic",
|
| 2122 |
+
"cid",
|
| 2123 |
+
"cigarette",
|
| 2124 |
+
"cimetidine",
|
| 2125 |
+
"cin",
|
| 2126 |
+
"circulation",
|
| 2127 |
+
"circulatory",
|
| 2128 |
+
"cirrhosis",
|
| 2129 |
+
"cirs",
|
| 2130 |
+
"cisplatin",
|
| 2131 |
+
"cit",
|
| 2132 |
+
"ck",
|
| 2133 |
+
"ckd",
|
| 2134 |
+
"cks",
|
| 2135 |
+
"clarithromycin",
|
| 2136 |
+
"class",
|
| 2137 |
+
"classification",
|
| 2138 |
+
"claustrophobia",
|
| 2139 |
+
"cle",
|
| 2140 |
+
"clean",
|
| 2141 |
+
"cleaning",
|
| 2142 |
+
"clearance",
|
| 2143 |
+
"cleared",
|
| 2144 |
+
"clearly",
|
| 2145 |
+
"clinical",
|
| 2146 |
+
"clinically",
|
| 2147 |
+
"clips",
|
| 2148 |
+
"cll",
|
| 2149 |
+
"clonal",
|
| 2150 |
+
"clotting",
|
| 2151 |
+
"cluster",
|
| 2152 |
+
"cm",
|
| 2153 |
+
"cm3",
|
| 2154 |
+
"cml",
|
| 2155 |
+
"cne",
|
| 2156 |
+
"cns",
|
| 2157 |
+
"co",
|
| 2158 |
+
"co.",
|
| 2159 |
+
"coagulant",
|
| 2160 |
+
"coagulation",
|
| 2161 |
+
"coagulopathy",
|
| 2162 |
+
"cochlear",
|
| 2163 |
+
"codes",
|
| 2164 |
+
"cognitive",
|
| 2165 |
+
"cognitively",
|
| 2166 |
+
"cohabitating",
|
| 2167 |
+
"cohort",
|
| 2168 |
+
"cohorts",
|
| 2169 |
+
"coil",
|
| 2170 |
+
"col",
|
| 2171 |
+
"cold",
|
| 2172 |
+
"colitis",
|
| 2173 |
+
"collagenosis",
|
| 2174 |
+
"college",
|
| 2175 |
+
"colo",
|
| 2176 |
+
"colo.",
|
| 2177 |
+
"colon",
|
| 2178 |
+
"colonic",
|
| 2179 |
+
"colonoscopy",
|
| 2180 |
+
"colorectal",
|
| 2181 |
+
"colostomy",
|
| 2182 |
+
"combination",
|
| 2183 |
+
"combinations",
|
| 2184 |
+
"combined",
|
| 2185 |
+
"come",
|
| 2186 |
+
"commit",
|
| 2187 |
+
"common",
|
| 2188 |
+
"compartment",
|
| 2189 |
+
"competence",
|
| 2190 |
+
"complementary",
|
| 2191 |
+
"complete",
|
| 2192 |
+
"completed",
|
| 2193 |
+
"completion",
|
| 2194 |
+
"compliance",
|
| 2195 |
+
"complications",
|
| 2196 |
+
"comply",
|
| 2197 |
+
"complying",
|
| 2198 |
+
"component",
|
| 2199 |
+
"components",
|
| 2200 |
+
"composed",
|
| 2201 |
+
"compounds",
|
| 2202 |
+
"comprehensive",
|
| 2203 |
+
"compressions",
|
| 2204 |
+
"compromise",
|
| 2205 |
+
"computed",
|
| 2206 |
+
"computerized",
|
| 2207 |
+
"concern",
|
| 2208 |
+
"concomitant",
|
| 2209 |
+
"concurrent",
|
| 2210 |
+
"condition",
|
| 2211 |
+
"conditions",
|
| 2212 |
+
"condom",
|
| 2213 |
+
"condoms",
|
| 2214 |
+
"confirmation",
|
| 2215 |
+
"confirmatory",
|
| 2216 |
+
"confirmed",
|
| 2217 |
+
"congenital",
|
| 2218 |
+
"congestive",
|
| 2219 |
+
"conivaptan",
|
| 2220 |
+
"conjugated",
|
| 2221 |
+
"conn",
|
| 2222 |
+
"conn.",
|
| 2223 |
+
"connective",
|
| 2224 |
+
"consent",
|
| 2225 |
+
"consequences",
|
| 2226 |
+
"considered",
|
| 2227 |
+
"considering",
|
| 2228 |
+
"consisted",
|
| 2229 |
+
"consistent",
|
| 2230 |
+
"consolidation",
|
| 2231 |
+
"constant",
|
| 2232 |
+
"consultation",
|
| 2233 |
+
"containing",
|
| 2234 |
+
"contamination",
|
| 2235 |
+
"context",
|
| 2236 |
+
"continuation",
|
| 2237 |
+
"continue",
|
| 2238 |
+
"continued",
|
| 2239 |
+
"contraception",
|
| 2240 |
+
"contraceptive",
|
| 2241 |
+
"contraceptives",
|
| 2242 |
+
"contracture",
|
| 2243 |
+
"contradiction",
|
| 2244 |
+
"contradicts",
|
| 2245 |
+
"contraindicate",
|
| 2246 |
+
"contraindication",
|
| 2247 |
+
"contraindications",
|
| 2248 |
+
"contrast",
|
| 2249 |
+
"contributing",
|
| 2250 |
+
"control",
|
| 2251 |
+
"controlled",
|
| 2252 |
+
"convey",
|
| 2253 |
+
"copd",
|
| 2254 |
+
"cord",
|
| 2255 |
+
"core",
|
| 2256 |
+
"corn",
|
| 2257 |
+
"corneal",
|
| 2258 |
+
"coronary",
|
| 2259 |
+
"corp",
|
| 2260 |
+
"corp.",
|
| 2261 |
+
"corrected",
|
| 2262 |
+
"corresponding",
|
| 2263 |
+
"corticosteroid",
|
| 2264 |
+
"corticosteroids",
|
| 2265 |
+
"cos",
|
| 2266 |
+
"cosmetic",
|
| 2267 |
+
"cough",
|
| 2268 |
+
"could",
|
| 2269 |
+
"coumadin",
|
| 2270 |
+
"count",
|
| 2271 |
+
"counter",
|
| 2272 |
+
"course",
|
| 2273 |
+
"courses",
|
| 2274 |
+
"coz",
|
| 2275 |
+
"cr",
|
| 2276 |
+
"craniofacial",
|
| 2277 |
+
"craniospinal",
|
| 2278 |
+
"craniotomy",
|
| 2279 |
+
"crc",
|
| 2280 |
+
"creatine",
|
| 2281 |
+
"creatinine",
|
| 2282 |
+
"criteria",
|
| 2283 |
+
"criterion",
|
| 2284 |
+
"crizotinib",
|
| 2285 |
+
"crohn",
|
| 2286 |
+
"crt",
|
| 2287 |
+
"cruciate",
|
| 2288 |
+
"cryosurgery",
|
| 2289 |
+
"cryotherapy",
|
| 2290 |
+
"csf",
|
| 2291 |
+
"ct",
|
| 2292 |
+
"ct.",
|
| 2293 |
+
"ctcae",
|
| 2294 |
+
"cteph",
|
| 2295 |
+
"ctla-4",
|
| 2296 |
+
"ctla4",
|
| 2297 |
+
"cts",
|
| 2298 |
+
"cuff",
|
| 2299 |
+
"culture",
|
| 2300 |
+
"cultures",
|
| 2301 |
+
"cumulative",
|
| 2302 |
+
"curative",
|
| 2303 |
+
"curatively",
|
| 2304 |
+
"curettage",
|
| 2305 |
+
"current",
|
| 2306 |
+
"currently",
|
| 2307 |
+
"cus",
|
| 2308 |
+
"cut",
|
| 2309 |
+
"cuz",
|
| 2310 |
+
"cv",
|
| 2311 |
+
"cva",
|
| 2312 |
+
"cyanotic",
|
| 2313 |
+
"cycle",
|
| 2314 |
+
"cycles",
|
| 2315 |
+
"cyclophosphamide",
|
| 2316 |
+
"cyclosporine",
|
| 2317 |
+
"cyp",
|
| 2318 |
+
"cyp3a4",
|
| 2319 |
+
"cystic",
|
| 2320 |
+
"cytochrome",
|
| 2321 |
+
"cytokine",
|
| 2322 |
+
"cytokines",
|
| 2323 |
+
"cytologically",
|
| 2324 |
+
"cytology",
|
| 2325 |
+
"cytoreductive",
|
| 2326 |
+
"cytotoxic",
|
| 2327 |
+
"c\u2019m",
|
| 2328 |
+
"d",
|
| 2329 |
+
"d)",
|
| 2330 |
+
"d-",
|
| 2331 |
+
"d-)",
|
| 2332 |
+
"d-X",
|
| 2333 |
+
"d.",
|
| 2334 |
+
"d.c.",
|
| 2335 |
+
"d.d",
|
| 2336 |
+
"d.d.d",
|
| 2337 |
+
"d.ddd",
|
| 2338 |
+
"d.ddx",
|
| 2339 |
+
"d.x",
|
| 2340 |
+
"d/d",
|
| 2341 |
+
"d/dd",
|
| 2342 |
+
"dL",
|
| 2343 |
+
"dX",
|
| 2344 |
+
"dXX",
|
| 2345 |
+
"dXd/d",
|
| 2346 |
+
"d_d",
|
| 2347 |
+
"d_x",
|
| 2348 |
+
"dabigatran",
|
| 2349 |
+
"daily",
|
| 2350 |
+
"dal",
|
| 2351 |
+
"danhlos",
|
| 2352 |
+
"dare",
|
| 2353 |
+
"dasatinib",
|
| 2354 |
+
"data",
|
| 2355 |
+
"day",
|
| 2356 |
+
"days",
|
| 2357 |
+
"dbs",
|
| 2358 |
+
"dcis",
|
| 2359 |
+
"dd",
|
| 2360 |
+
"dd,ddd",
|
| 2361 |
+
"dd.d",
|
| 2362 |
+
"ddd",
|
| 2363 |
+
"ddd,ddd",
|
| 2364 |
+
"ddd/ddd",
|
| 2365 |
+
"dddd",
|
| 2366 |
+
"dddd/d",
|
| 2367 |
+
"dddxx",
|
| 2368 |
+
"dds",
|
| 2369 |
+
"ddx",
|
| 2370 |
+
"ddx.x",
|
| 2371 |
+
"ddx.x.",
|
| 2372 |
+
"ddxx",
|
| 2373 |
+
"de",
|
| 2374 |
+
"death",
|
| 2375 |
+
"debulking",
|
| 2376 |
+
"dec",
|
| 2377 |
+
"dec.",
|
| 2378 |
+
"decompensated",
|
| 2379 |
+
"decrease",
|
| 2380 |
+
"decreased",
|
| 2381 |
+
"ded",
|
| 2382 |
+
"deemed",
|
| 2383 |
+
"deep",
|
| 2384 |
+
"defibrillator",
|
| 2385 |
+
"deficiencies",
|
| 2386 |
+
"deficiency",
|
| 2387 |
+
"deficit",
|
| 2388 |
+
"defined",
|
| 2389 |
+
"definitely",
|
| 2390 |
+
"definitive",
|
| 2391 |
+
"deformity",
|
| 2392 |
+
"degree",
|
| 2393 |
+
"degrees",
|
| 2394 |
+
"del",
|
| 2395 |
+
"del.",
|
| 2396 |
+
"delay",
|
| 2397 |
+
"delayed",
|
| 2398 |
+
"delineation",
|
| 2399 |
+
"delirium",
|
| 2400 |
+
"delivery",
|
| 2401 |
+
"dementia",
|
| 2402 |
+
"department",
|
| 2403 |
+
"depends",
|
| 2404 |
+
"depression",
|
| 2405 |
+
"depressive",
|
| 2406 |
+
"der",
|
| 2407 |
+
"derived",
|
| 2408 |
+
"des",
|
| 2409 |
+
"described",
|
| 2410 |
+
"desensitization",
|
| 2411 |
+
"despite",
|
| 2412 |
+
"detectable",
|
| 2413 |
+
"detected",
|
| 2414 |
+
"determinations",
|
| 2415 |
+
"determined",
|
| 2416 |
+
"detoxifications",
|
| 2417 |
+
"develop",
|
| 2418 |
+
"developing",
|
| 2419 |
+
"development",
|
| 2420 |
+
"developmental",
|
| 2421 |
+
"device",
|
| 2422 |
+
"devices",
|
| 2423 |
+
"dex",
|
| 2424 |
+
"dexrazoxane",
|
| 2425 |
+
"dextromethorphan",
|
| 2426 |
+
"di",
|
| 2427 |
+
"dia",
|
| 2428 |
+
"diabetes",
|
| 2429 |
+
"diabetic",
|
| 2430 |
+
"diagnosed",
|
| 2431 |
+
"diagnoses",
|
| 2432 |
+
"diagnosis",
|
| 2433 |
+
"diagnostic",
|
| 2434 |
+
"dialysis",
|
| 2435 |
+
"diameter",
|
| 2436 |
+
"diaphragm",
|
| 2437 |
+
"diarrhea",
|
| 2438 |
+
"diarrheal",
|
| 2439 |
+
"diastolic",
|
| 2440 |
+
"diathesis",
|
| 2441 |
+
"dic",
|
| 2442 |
+
"did",
|
| 2443 |
+
"diet",
|
| 2444 |
+
"different",
|
| 2445 |
+
"differential",
|
| 2446 |
+
"differentiation",
|
| 2447 |
+
"difficulty",
|
| 2448 |
+
"diffuse",
|
| 2449 |
+
"digital",
|
| 2450 |
+
"digoxin",
|
| 2451 |
+
"dil",
|
| 2452 |
+
"dimension",
|
| 2453 |
+
"dimethyl",
|
| 2454 |
+
"din",
|
| 2455 |
+
"diopters",
|
| 2456 |
+
"dipropionate",
|
| 2457 |
+
"direct",
|
| 2458 |
+
"directed",
|
| 2459 |
+
"directions",
|
| 2460 |
+
"disability",
|
| 2461 |
+
"discharge",
|
| 2462 |
+
"discontinuation",
|
| 2463 |
+
"discontinue",
|
| 2464 |
+
"discretion",
|
| 2465 |
+
"discussion",
|
| 2466 |
+
"disease",
|
| 2467 |
+
"diseases",
|
| 2468 |
+
"disfiguring",
|
| 2469 |
+
"disorder",
|
| 2470 |
+
"disordered",
|
| 2471 |
+
"disorders",
|
| 2472 |
+
"disseminated",
|
| 2473 |
+
"distal",
|
| 2474 |
+
"distant",
|
| 2475 |
+
"distress",
|
| 2476 |
+
"disulfiram",
|
| 2477 |
+
"diuretic",
|
| 2478 |
+
"diuretics",
|
| 2479 |
+
"dl",
|
| 2480 |
+
"dlbcl",
|
| 2481 |
+
"dlco",
|
| 2482 |
+
"dle",
|
| 2483 |
+
"dm.",
|
| 2484 |
+
"dna",
|
| 2485 |
+
"dnr",
|
| 2486 |
+
"do",
|
| 2487 |
+
"dobutamine",
|
| 2488 |
+
"dobutamine\u22655mcg",
|
| 2489 |
+
"documentation",
|
| 2490 |
+
"documented",
|
| 2491 |
+
"does",
|
| 2492 |
+
"doin",
|
| 2493 |
+
"doin'",
|
| 2494 |
+
"doing",
|
| 2495 |
+
"doin\u2019",
|
| 2496 |
+
"dol",
|
| 2497 |
+
"dom",
|
| 2498 |
+
"domperidone",
|
| 2499 |
+
"donation",
|
| 2500 |
+
"done",
|
| 2501 |
+
"donor",
|
| 2502 |
+
"dopamine",
|
| 2503 |
+
"dopc",
|
| 2504 |
+
"doppler",
|
| 2505 |
+
"dormant",
|
| 2506 |
+
"dosage",
|
| 2507 |
+
"dose",
|
| 2508 |
+
"doses",
|
| 2509 |
+
"dosing",
|
| 2510 |
+
"double",
|
| 2511 |
+
"dow",
|
| 2512 |
+
"dr",
|
| 2513 |
+
"dr.",
|
| 2514 |
+
"drainage",
|
| 2515 |
+
"draws",
|
| 2516 |
+
"drug",
|
| 2517 |
+
"drug(s",
|
| 2518 |
+
"drugs",
|
| 2519 |
+
"dryness",
|
| 2520 |
+
"dsm",
|
| 2521 |
+
"dual",
|
| 2522 |
+
"duct",
|
| 2523 |
+
"ductal",
|
| 2524 |
+
"due",
|
| 2525 |
+
"duodenal",
|
| 2526 |
+
"duration",
|
| 2527 |
+
"during",
|
| 2528 |
+
"dvt",
|
| 2529 |
+
"dx",
|
| 2530 |
+
"dx.x",
|
| 2531 |
+
"dx.x.",
|
| 2532 |
+
"dxx",
|
| 2533 |
+
"dysfunction",
|
| 2534 |
+
"dysphagia",
|
| 2535 |
+
"dyspnea",
|
| 2536 |
+
"e",
|
| 2537 |
+
"e's",
|
| 2538 |
+
"e.",
|
| 2539 |
+
"e.g",
|
| 2540 |
+
"e.g.",
|
| 2541 |
+
"ead",
|
| 2542 |
+
"eal",
|
| 2543 |
+
"eam",
|
| 2544 |
+
"ean",
|
| 2545 |
+
"ear",
|
| 2546 |
+
"earlier",
|
| 2547 |
+
"eas",
|
| 2548 |
+
"eating",
|
| 2549 |
+
"eb.",
|
| 2550 |
+
"ebr",
|
| 2551 |
+
"ebrt",
|
| 2552 |
+
"ebv",
|
| 2553 |
+
"ec.",
|
| 2554 |
+
"eca",
|
| 2555 |
+
"ecd",
|
| 2556 |
+
"ecg",
|
| 2557 |
+
"ecgs",
|
| 2558 |
+
"echocardiogram",
|
| 2559 |
+
"echocardiographic",
|
| 2560 |
+
"echocardiography",
|
| 2561 |
+
"eck",
|
| 2562 |
+
"ect",
|
| 2563 |
+
"eczema",
|
| 2564 |
+
"edema",
|
| 2565 |
+
"edition",
|
| 2566 |
+
"eed",
|
| 2567 |
+
"eek",
|
| 2568 |
+
"een",
|
| 2569 |
+
"eep",
|
| 2570 |
+
"ees",
|
| 2571 |
+
"eet",
|
| 2572 |
+
"ef",
|
| 2573 |
+
"effect",
|
| 2574 |
+
"effective",
|
| 2575 |
+
"effectively",
|
| 2576 |
+
"effects",
|
| 2577 |
+
"effusions",
|
| 2578 |
+
"eft",
|
| 2579 |
+
"eg",
|
| 2580 |
+
"ege",
|
| 2581 |
+
"ehlers",
|
| 2582 |
+
"eic",
|
| 2583 |
+
"ein",
|
| 2584 |
+
"eir",
|
| 2585 |
+
"either",
|
| 2586 |
+
"ejection",
|
| 2587 |
+
"ekg",
|
| 2588 |
+
"eks",
|
| 2589 |
+
"el.",
|
| 2590 |
+
"elapsed",
|
| 2591 |
+
"eld",
|
| 2592 |
+
"elective",
|
| 2593 |
+
"electrocardiogram",
|
| 2594 |
+
"electrocardiograms",
|
| 2595 |
+
"electroconvulsive",
|
| 2596 |
+
"elevated",
|
| 2597 |
+
"elevation",
|
| 2598 |
+
"elf",
|
| 2599 |
+
"eligibility",
|
| 2600 |
+
"eligible",
|
| 2601 |
+
"ell",
|
| 2602 |
+
"elo",
|
| 2603 |
+
"els",
|
| 2604 |
+
"eltrombopag",
|
| 2605 |
+
"ely",
|
| 2606 |
+
"em",
|
| 2607 |
+
"ema",
|
| 2608 |
+
"embolic",
|
| 2609 |
+
"embolism",
|
| 2610 |
+
"embryonal",
|
| 2611 |
+
"emergency",
|
| 2612 |
+
"ems",
|
| 2613 |
+
"en",
|
| 2614 |
+
"en.",
|
| 2615 |
+
"encephalopathy",
|
| 2616 |
+
"encompassing",
|
| 2617 |
+
"end",
|
| 2618 |
+
"endodermal",
|
| 2619 |
+
"endogenous",
|
| 2620 |
+
"endograft",
|
| 2621 |
+
"endometrial",
|
| 2622 |
+
"endometrioid",
|
| 2623 |
+
"endoscopic",
|
| 2624 |
+
"endotracheal",
|
| 2625 |
+
"endovascular",
|
| 2626 |
+
"ene",
|
| 2627 |
+
"enfortumab",
|
| 2628 |
+
"eng",
|
| 2629 |
+
"enhancement",
|
| 2630 |
+
"enlargement",
|
| 2631 |
+
"enlarging",
|
| 2632 |
+
"enn",
|
| 2633 |
+
"enough",
|
| 2634 |
+
"enrolled",
|
| 2635 |
+
"enrollment",
|
| 2636 |
+
"ens",
|
| 2637 |
+
"ent",
|
| 2638 |
+
"enter",
|
| 2639 |
+
"entered",
|
| 2640 |
+
"entinostat",
|
| 2641 |
+
"entire",
|
| 2642 |
+
"entry",
|
| 2643 |
+
"enzymes",
|
| 2644 |
+
"eoe",
|
| 2645 |
+
"eosinophilia",
|
| 2646 |
+
"eosinophils",
|
| 2647 |
+
"ep.",
|
| 2648 |
+
"epha2",
|
| 2649 |
+
"epi",
|
| 2650 |
+
"epidural",
|
| 2651 |
+
"epilepsy",
|
| 2652 |
+
"epileptic",
|
| 2653 |
+
"epinephrine",
|
| 2654 |
+
"episode",
|
| 2655 |
+
"epithelial",
|
| 2656 |
+
"epo",
|
| 2657 |
+
"ept",
|
| 2658 |
+
"equal",
|
| 2659 |
+
"equation",
|
| 2660 |
+
"equivalent",
|
| 2661 |
+
"er",
|
| 2662 |
+
"er+/her2-",
|
| 2663 |
+
"ere",
|
| 2664 |
+
"erm",
|
| 2665 |
+
"ern",
|
| 2666 |
+
"error",
|
| 2667 |
+
"ers",
|
| 2668 |
+
"ert",
|
| 2669 |
+
"ery",
|
| 2670 |
+
"erythematous",
|
| 2671 |
+
"erythroplakia",
|
| 2672 |
+
"escalation",
|
| 2673 |
+
"escitalopram",
|
| 2674 |
+
"ese",
|
| 2675 |
+
"esh",
|
| 2676 |
+
"esophageal",
|
| 2677 |
+
"esophagus",
|
| 2678 |
+
"ess",
|
| 2679 |
+
"essential",
|
| 2680 |
+
"est",
|
| 2681 |
+
"established",
|
| 2682 |
+
"estimated",
|
| 2683 |
+
"estrogen",
|
| 2684 |
+
"estrogens",
|
| 2685 |
+
"eta",
|
| 2686 |
+
"etanercept",
|
| 2687 |
+
"etc",
|
| 2688 |
+
"ete",
|
| 2689 |
+
"etiology",
|
| 2690 |
+
"etoposide",
|
| 2691 |
+
"ets",
|
| 2692 |
+
"ett",
|
| 2693 |
+
"ety",
|
| 2694 |
+
"eus",
|
| 2695 |
+
"ev.",
|
| 2696 |
+
"evaluated",
|
| 2697 |
+
"evaluation",
|
| 2698 |
+
"evaluations",
|
| 2699 |
+
"eve",
|
| 2700 |
+
"event",
|
| 2701 |
+
"events",
|
| 2702 |
+
"every",
|
| 2703 |
+
"evidence",
|
| 2704 |
+
"evidenced",
|
| 2705 |
+
"evident",
|
| 2706 |
+
"ews",
|
| 2707 |
+
"examination",
|
| 2708 |
+
"example",
|
| 2709 |
+
"exceed",
|
| 2710 |
+
"except",
|
| 2711 |
+
"exception",
|
| 2712 |
+
"exceptions",
|
| 2713 |
+
"excessive",
|
| 2714 |
+
"excipient",
|
| 2715 |
+
"excipients",
|
| 2716 |
+
"excluded",
|
| 2717 |
+
"excluding",
|
| 2718 |
+
"exclusion",
|
| 2719 |
+
"exclusionary",
|
| 2720 |
+
"exclusions",
|
| 2721 |
+
"exercise",
|
| 2722 |
+
"exert",
|
| 2723 |
+
"exhibiting",
|
| 2724 |
+
"exhibits",
|
| 2725 |
+
"exist",
|
| 2726 |
+
"existence",
|
| 2727 |
+
"existing",
|
| 2728 |
+
"exists",
|
| 2729 |
+
"expansion",
|
| 2730 |
+
"expected",
|
| 2731 |
+
"experienced",
|
| 2732 |
+
"experimental",
|
| 2733 |
+
"exposed",
|
| 2734 |
+
"exposure",
|
| 2735 |
+
"exposures",
|
| 2736 |
+
"expressing",
|
| 2737 |
+
"ext",
|
| 2738 |
+
"extend",
|
| 2739 |
+
"extended",
|
| 2740 |
+
"extensive",
|
| 2741 |
+
"extensively",
|
| 2742 |
+
"external",
|
| 2743 |
+
"extrahepatic",
|
| 2744 |
+
"extranodal",
|
| 2745 |
+
"extremity",
|
| 2746 |
+
"eye",
|
| 2747 |
+
"eyebrows",
|
| 2748 |
+
"eyeliner",
|
| 2749 |
+
"e\u2019s",
|
| 2750 |
+
"f",
|
| 2751 |
+
"f.",
|
| 2752 |
+
"face",
|
| 2753 |
+
"facial",
|
| 2754 |
+
"factor",
|
| 2755 |
+
"factors",
|
| 2756 |
+
"failed",
|
| 2757 |
+
"failing",
|
| 2758 |
+
"failure",
|
| 2759 |
+
"fallopian",
|
| 2760 |
+
"famciclovir",
|
| 2761 |
+
"family",
|
| 2762 |
+
"farkas",
|
| 2763 |
+
"fasting",
|
| 2764 |
+
"fatty",
|
| 2765 |
+
"fc",
|
| 2766 |
+
"fcbp",
|
| 2767 |
+
"features",
|
| 2768 |
+
"feb",
|
| 2769 |
+
"feb.",
|
| 2770 |
+
"fecal",
|
| 2771 |
+
"fed",
|
| 2772 |
+
"female",
|
| 2773 |
+
"females",
|
| 2774 |
+
"fen",
|
| 2775 |
+
"fer",
|
| 2776 |
+
"fetal",
|
| 2777 |
+
"fetus",
|
| 2778 |
+
"fev1",
|
| 2779 |
+
"fewer",
|
| 2780 |
+
"fibrillation",
|
| 2781 |
+
"fibrosarcoma",
|
| 2782 |
+
"fibrosis",
|
| 2783 |
+
"fic",
|
| 2784 |
+
"field",
|
| 2785 |
+
"fields",
|
| 2786 |
+
"filled",
|
| 2787 |
+
"final",
|
| 2788 |
+
"finding",
|
| 2789 |
+
"findings",
|
| 2790 |
+
"fine",
|
| 2791 |
+
"first",
|
| 2792 |
+
"fit",
|
| 2793 |
+
"five",
|
| 2794 |
+
"fix",
|
| 2795 |
+
"fl",
|
| 2796 |
+
"fla",
|
| 2797 |
+
"fla.",
|
| 2798 |
+
"flexion",
|
| 2799 |
+
"flow",
|
| 2800 |
+
"floxuridine",
|
| 2801 |
+
"flu",
|
| 2802 |
+
"fludarabine",
|
| 2803 |
+
"fluid",
|
| 2804 |
+
"fluids",
|
| 2805 |
+
"flutter",
|
| 2806 |
+
"fmiso",
|
| 2807 |
+
"fna",
|
| 2808 |
+
"focal",
|
| 2809 |
+
"focus",
|
| 2810 |
+
"folfirinox",
|
| 2811 |
+
"follicular",
|
| 2812 |
+
"follow",
|
| 2813 |
+
"followed",
|
| 2814 |
+
"following",
|
| 2815 |
+
"fontan",
|
| 2816 |
+
"for",
|
| 2817 |
+
"foreign",
|
| 2818 |
+
"form",
|
| 2819 |
+
"formal",
|
| 2820 |
+
"formulation",
|
| 2821 |
+
"fossa",
|
| 2822 |
+
"four",
|
| 2823 |
+
"fraction",
|
| 2824 |
+
"fragments",
|
| 2825 |
+
"frank",
|
| 2826 |
+
"free",
|
| 2827 |
+
"frequently",
|
| 2828 |
+
"fresh",
|
| 2829 |
+
"fridericia",
|
| 2830 |
+
"from",
|
| 2831 |
+
"front",
|
| 2832 |
+
"frozen",
|
| 2833 |
+
"ful",
|
| 2834 |
+
"full",
|
| 2835 |
+
"function",
|
| 2836 |
+
"functional",
|
| 2837 |
+
"fungal",
|
| 2838 |
+
"further",
|
| 2839 |
+
"fusion",
|
| 2840 |
+
"future",
|
| 2841 |
+
"fvc",
|
| 2842 |
+
"g",
|
| 2843 |
+
"g(s",
|
| 2844 |
+
"g.",
|
| 2845 |
+
"ga",
|
| 2846 |
+
"ga.",
|
| 2847 |
+
"gadolinium",
|
| 2848 |
+
"gai",
|
| 2849 |
+
"gal",
|
| 2850 |
+
"gallstones",
|
| 2851 |
+
"gan",
|
| 2852 |
+
"ganciclovir",
|
| 2853 |
+
"ganglioneuroblastoma",
|
| 2854 |
+
"gas",
|
| 2855 |
+
"gastrectomy",
|
| 2856 |
+
"gastric",
|
| 2857 |
+
"gastritis",
|
| 2858 |
+
"gastro",
|
| 2859 |
+
"gastrointestinal",
|
| 2860 |
+
"gbm",
|
| 2861 |
+
"gd2",
|
| 2862 |
+
"gec",
|
| 2863 |
+
"ged",
|
| 2864 |
+
"gemcitabine",
|
| 2865 |
+
"gen",
|
| 2866 |
+
"gen.",
|
| 2867 |
+
"gene",
|
| 2868 |
+
"general",
|
| 2869 |
+
"generalized",
|
| 2870 |
+
"generation",
|
| 2871 |
+
"genotype",
|
| 2872 |
+
"ger",
|
| 2873 |
+
"gerd",
|
| 2874 |
+
"germ",
|
| 2875 |
+
"germinoma",
|
| 2876 |
+
"ges",
|
| 2877 |
+
"get",
|
| 2878 |
+
"gfr",
|
| 2879 |
+
"ght",
|
| 2880 |
+
"gi",
|
| 2881 |
+
"gia",
|
| 2882 |
+
"gic",
|
| 2883 |
+
"gilbert",
|
| 2884 |
+
"gin",
|
| 2885 |
+
"ginger",
|
| 2886 |
+
"ginkgo",
|
| 2887 |
+
"ginseng",
|
| 2888 |
+
"given",
|
| 2889 |
+
"glaucoma",
|
| 2890 |
+
"gle",
|
| 2891 |
+
"gliadel",
|
| 2892 |
+
"glioblastoma",
|
| 2893 |
+
"gliomas",
|
| 2894 |
+
"gliosarcoma",
|
| 2895 |
+
"globin",
|
| 2896 |
+
"glucocorticoid",
|
| 2897 |
+
"glucocorticoids",
|
| 2898 |
+
"glucose",
|
| 2899 |
+
"gm",
|
| 2900 |
+
"gns",
|
| 2901 |
+
"goin",
|
| 2902 |
+
"goin'",
|
| 2903 |
+
"going",
|
| 2904 |
+
"goin\u2019",
|
| 2905 |
+
"golimumab",
|
| 2906 |
+
"gon",
|
| 2907 |
+
"gonna",
|
| 2908 |
+
"got",
|
| 2909 |
+
"gov",
|
| 2910 |
+
"gov.",
|
| 2911 |
+
"grade",
|
| 2912 |
+
"graft",
|
| 2913 |
+
"grafting",
|
| 2914 |
+
"gram",
|
| 2915 |
+
"grapefruit",
|
| 2916 |
+
"grasping",
|
| 2917 |
+
"greater",
|
| 2918 |
+
"greatest",
|
| 2919 |
+
"gross",
|
| 2920 |
+
"group",
|
| 2921 |
+
"growth",
|
| 2922 |
+
"gth",
|
| 2923 |
+
"guided",
|
| 2924 |
+
"guidelines",
|
| 2925 |
+
"gus",
|
| 2926 |
+
"gvax",
|
| 2927 |
+
"gvhd",
|
| 2928 |
+
"h",
|
| 2929 |
+
"h&n",
|
| 2930 |
+
"h.",
|
| 2931 |
+
"hA2",
|
| 2932 |
+
"ha1",
|
| 2933 |
+
"haart",
|
| 2934 |
+
"habitus",
|
| 2935 |
+
"had",
|
| 2936 |
+
"hak",
|
| 2937 |
+
"half",
|
| 2938 |
+
"han",
|
| 2939 |
+
"haploidentical",
|
| 2940 |
+
"has",
|
| 2941 |
+
"hashimoto",
|
| 2942 |
+
"hat",
|
| 2943 |
+
"have",
|
| 2944 |
+
"havin",
|
| 2945 |
+
"havin'",
|
| 2946 |
+
"having",
|
| 2947 |
+
"havin\u2019",
|
| 2948 |
+
"hb",
|
| 2949 |
+
"hb-",
|
| 2950 |
+
"hbs",
|
| 2951 |
+
"hbsag",
|
| 2952 |
+
"hbsag-",
|
| 2953 |
+
"hbv",
|
| 2954 |
+
"hcc",
|
| 2955 |
+
"hct",
|
| 2956 |
+
"hcv",
|
| 2957 |
+
"hdc)-asct",
|
| 2958 |
+
"he",
|
| 2959 |
+
"he's",
|
| 2960 |
+
"hea",
|
| 2961 |
+
"head",
|
| 2962 |
+
"health",
|
| 2963 |
+
"hearing",
|
| 2964 |
+
"heart",
|
| 2965 |
+
"hed",
|
| 2966 |
+
"hem",
|
| 2967 |
+
"hematologic",
|
| 2968 |
+
"hematological",
|
| 2969 |
+
"hematology",
|
| 2970 |
+
"hematopoietic",
|
| 2971 |
+
"hemodialysis",
|
| 2972 |
+
"hemodynamic",
|
| 2973 |
+
"hemoglobin",
|
| 2974 |
+
"hemophilia",
|
| 2975 |
+
"hemoptysis",
|
| 2976 |
+
"hemorrhage",
|
| 2977 |
+
"hemorrhagic",
|
| 2978 |
+
"hen",
|
| 2979 |
+
"hep",
|
| 2980 |
+
"heparin",
|
| 2981 |
+
"hepatic",
|
| 2982 |
+
"hepatitis",
|
| 2983 |
+
"her",
|
| 2984 |
+
"her2",
|
| 2985 |
+
"herbal",
|
| 2986 |
+
"hereditable",
|
| 2987 |
+
"herpes",
|
| 2988 |
+
"hetastarch",
|
| 2989 |
+
"heterosexual",
|
| 2990 |
+
"hey",
|
| 2991 |
+
"he\u2019s",
|
| 2992 |
+
"hf",
|
| 2993 |
+
"hg",
|
| 2994 |
+
"hia",
|
| 2995 |
+
"hic",
|
| 2996 |
+
"high",
|
| 2997 |
+
"higher",
|
| 2998 |
+
"highly",
|
| 2999 |
+
"hiltonol",
|
| 3000 |
+
"hin",
|
| 3001 |
+
"hip",
|
| 3002 |
+
"his",
|
| 3003 |
+
"histologic",
|
| 3004 |
+
"histological",
|
| 3005 |
+
"histologically",
|
| 3006 |
+
"histology",
|
| 3007 |
+
"history",
|
| 3008 |
+
"hiv",
|
| 3009 |
+
"hl",
|
| 3010 |
+
"hle",
|
| 3011 |
+
"hly",
|
| 3012 |
+
"hma",
|
| 3013 |
+
"hod",
|
| 3014 |
+
"hodgkin",
|
| 3015 |
+
"hol",
|
| 3016 |
+
"hom",
|
| 3017 |
+
"homicidal",
|
| 3018 |
+
"homolog",
|
| 3019 |
+
"hormonal",
|
| 3020 |
+
"hormone",
|
| 3021 |
+
"hormones",
|
| 3022 |
+
"hospital",
|
| 3023 |
+
"hospitalization",
|
| 3024 |
+
"host",
|
| 3025 |
+
"hour",
|
| 3026 |
+
"hours",
|
| 3027 |
+
"how",
|
| 3028 |
+
"how's",
|
| 3029 |
+
"how\u2019s",
|
| 3030 |
+
"hpah",
|
| 3031 |
+
"hrs",
|
| 3032 |
+
"hrt",
|
| 3033 |
+
"hsct",
|
| 3034 |
+
"hsv",
|
| 3035 |
+
"human",
|
| 3036 |
+
"hurthle",
|
| 3037 |
+
"hus",
|
| 3038 |
+
"hx",
|
| 3039 |
+
"hydroxyurea",
|
| 3040 |
+
"hyl",
|
| 3041 |
+
"hyperkalemia",
|
| 3042 |
+
"hyperparathyroidism",
|
| 3043 |
+
"hyperpigmentation",
|
| 3044 |
+
"hyperplasia",
|
| 3045 |
+
"hypersensitivity",
|
| 3046 |
+
"hypertension",
|
| 3047 |
+
"hypertriglyceridemia",
|
| 3048 |
+
"hypertrophic",
|
| 3049 |
+
"hypnotics",
|
| 3050 |
+
"hypogonadism",
|
| 3051 |
+
"hypogonadotropic",
|
| 3052 |
+
"hypotension",
|
| 3053 |
+
"hypothalamic",
|
| 3054 |
+
"hypothyroidism",
|
| 3055 |
+
"i",
|
| 3056 |
+
"i*Z",
|
| 3057 |
+
"i-131",
|
| 3058 |
+
"i.",
|
| 3059 |
+
"i.e",
|
| 3060 |
+
"i.e.",
|
| 3061 |
+
"ia",
|
| 3062 |
+
"ia.",
|
| 3063 |
+
"iabp",
|
| 3064 |
+
"iac",
|
| 3065 |
+
"ial",
|
| 3066 |
+
"ian",
|
| 3067 |
+
"ias",
|
| 3068 |
+
"ibrutinib",
|
| 3069 |
+
"ibs",
|
| 3070 |
+
"ibuprofen",
|
| 3071 |
+
"ica",
|
| 3072 |
+
"icd",
|
| 3073 |
+
"icd9",
|
| 3074 |
+
"ice",
|
| 3075 |
+
"ich",
|
| 3076 |
+
"ics",
|
| 3077 |
+
"id",
|
| 3078 |
+
"id.",
|
| 3079 |
+
"ide",
|
| 3080 |
+
"ideation",
|
| 3081 |
+
"identified",
|
| 3082 |
+
"idiopathic",
|
| 3083 |
+
"ids",
|
| 3084 |
+
"ied",
|
| 3085 |
+
"ier",
|
| 3086 |
+
"ies",
|
| 3087 |
+
"iet",
|
| 3088 |
+
"iew",
|
| 3089 |
+
"if",
|
| 3090 |
+
"if.",
|
| 3091 |
+
"ife",
|
| 3092 |
+
"ift",
|
| 3093 |
+
"ify",
|
| 3094 |
+
"igh",
|
| 3095 |
+
"ign",
|
| 3096 |
+
"igo",
|
| 3097 |
+
"ii",
|
| 3098 |
+
"iii",
|
| 3099 |
+
"iiib",
|
| 3100 |
+
"iiic",
|
| 3101 |
+
"ike",
|
| 3102 |
+
"il-2",
|
| 3103 |
+
"ild",
|
| 3104 |
+
"ile",
|
| 3105 |
+
"ileostomy",
|
| 3106 |
+
"ilk",
|
| 3107 |
+
"ill",
|
| 3108 |
+
"ill.",
|
| 3109 |
+
"illness",
|
| 3110 |
+
"ils",
|
| 3111 |
+
"ily",
|
| 3112 |
+
"image",
|
| 3113 |
+
"imaging",
|
| 3114 |
+
"imatinib",
|
| 3115 |
+
"imb",
|
| 3116 |
+
"ime",
|
| 3117 |
+
"immediately",
|
| 3118 |
+
"immune",
|
| 3119 |
+
"immunocompromised",
|
| 3120 |
+
"immunodeficiency",
|
| 3121 |
+
"immunomodulatory",
|
| 3122 |
+
"immunosuppression",
|
| 3123 |
+
"immunosuppressive",
|
| 3124 |
+
"immunotherapy",
|
| 3125 |
+
"impact",
|
| 3126 |
+
"impair",
|
| 3127 |
+
"impaired",
|
| 3128 |
+
"impairment",
|
| 3129 |
+
"impending",
|
| 3130 |
+
"implantation",
|
| 3131 |
+
"implants",
|
| 3132 |
+
"impose",
|
| 3133 |
+
"improvements",
|
| 3134 |
+
"imwg",
|
| 3135 |
+
"in",
|
| 3136 |
+
"in'",
|
| 3137 |
+
"ina",
|
| 3138 |
+
"inability",
|
| 3139 |
+
"inactive",
|
| 3140 |
+
"inadequately",
|
| 3141 |
+
"inc",
|
| 3142 |
+
"inc.",
|
| 3143 |
+
"incision",
|
| 3144 |
+
"include",
|
| 3145 |
+
"included",
|
| 3146 |
+
"includes",
|
| 3147 |
+
"including",
|
| 3148 |
+
"inclusion",
|
| 3149 |
+
"incontinence",
|
| 3150 |
+
"increase",
|
| 3151 |
+
"increased",
|
| 3152 |
+
"ind",
|
| 3153 |
+
"ind.",
|
| 3154 |
+
"index",
|
| 3155 |
+
"indicated",
|
| 3156 |
+
"indication",
|
| 3157 |
+
"indinavir",
|
| 3158 |
+
"individuals",
|
| 3159 |
+
"induce",
|
| 3160 |
+
"inducers",
|
| 3161 |
+
"induction",
|
| 3162 |
+
"ine",
|
| 3163 |
+
"ineffective",
|
| 3164 |
+
"ineligible",
|
| 3165 |
+
"infantile",
|
| 3166 |
+
"infarction",
|
| 3167 |
+
"infection",
|
| 3168 |
+
"infections",
|
| 3169 |
+
"infectious",
|
| 3170 |
+
"infiltration",
|
| 3171 |
+
"inflammation",
|
| 3172 |
+
"inflammatory",
|
| 3173 |
+
"infliximab",
|
| 3174 |
+
"inform",
|
| 3175 |
+
"informed",
|
| 3176 |
+
"infusion",
|
| 3177 |
+
"ing",
|
| 3178 |
+
"inherited",
|
| 3179 |
+
"inhibitor",
|
| 3180 |
+
"inhibitors",
|
| 3181 |
+
"initial",
|
| 3182 |
+
"initiating",
|
| 3183 |
+
"initiation",
|
| 3184 |
+
"injection",
|
| 3185 |
+
"injections",
|
| 3186 |
+
"injury",
|
| 3187 |
+
"inn",
|
| 3188 |
+
"inner",
|
| 3189 |
+
"inotrope",
|
| 3190 |
+
"inotropic",
|
| 3191 |
+
"inr",
|
| 3192 |
+
"ins",
|
| 3193 |
+
"inserted",
|
| 3194 |
+
"instability",
|
| 3195 |
+
"instance",
|
| 3196 |
+
"instead",
|
| 3197 |
+
"institute",
|
| 3198 |
+
"institutional",
|
| 3199 |
+
"instructed",
|
| 3200 |
+
"instruction",
|
| 3201 |
+
"insufficiency",
|
| 3202 |
+
"insufficient",
|
| 3203 |
+
"insulin",
|
| 3204 |
+
"int",
|
| 3205 |
+
"intact",
|
| 3206 |
+
"intake",
|
| 3207 |
+
"integrity",
|
| 3208 |
+
"intellectual",
|
| 3209 |
+
"intelligence",
|
| 3210 |
+
"intent",
|
| 3211 |
+
"inter",
|
| 3212 |
+
"interact",
|
| 3213 |
+
"interactions",
|
| 3214 |
+
"intercourse",
|
| 3215 |
+
"intercurrent",
|
| 3216 |
+
"interfere",
|
| 3217 |
+
"interferon",
|
| 3218 |
+
"interleukin-2",
|
| 3219 |
+
"intermedius",
|
| 3220 |
+
"intermittent",
|
| 3221 |
+
"international",
|
| 3222 |
+
"interpretation",
|
| 3223 |
+
"interstitial",
|
| 3224 |
+
"interval",
|
| 3225 |
+
"intervening",
|
| 3226 |
+
"intervention",
|
| 3227 |
+
"interview",
|
| 3228 |
+
"intestinal",
|
| 3229 |
+
"into",
|
| 3230 |
+
"intolerable",
|
| 3231 |
+
"intolerance",
|
| 3232 |
+
"intolerant",
|
| 3233 |
+
"intra",
|
| 3234 |
+
"intracardiac",
|
| 3235 |
+
"intracranial",
|
| 3236 |
+
"intraocular",
|
| 3237 |
+
"intrathecal",
|
| 3238 |
+
"intrauterine",
|
| 3239 |
+
"intravascular",
|
| 3240 |
+
"intravenous",
|
| 3241 |
+
"invading",
|
| 3242 |
+
"invasive",
|
| 3243 |
+
"investigation",
|
| 3244 |
+
"investigational",
|
| 3245 |
+
"investigator",
|
| 3246 |
+
"investigators",
|
| 3247 |
+
"involve",
|
| 3248 |
+
"involved",
|
| 3249 |
+
"involvement",
|
| 3250 |
+
"involving",
|
| 3251 |
+
"in\u2019",
|
| 3252 |
+
"iod",
|
| 3253 |
+
"iodine",
|
| 3254 |
+
"iol",
|
| 3255 |
+
"ion",
|
| 3256 |
+
"ior",
|
| 3257 |
+
"iphc",
|
| 3258 |
+
"ipilimumab",
|
| 3259 |
+
"ips",
|
| 3260 |
+
"iq",
|
| 3261 |
+
"ire",
|
| 3262 |
+
"irinotecan",
|
| 3263 |
+
"iron",
|
| 3264 |
+
"irradiation",
|
| 3265 |
+
"is",
|
| 3266 |
+
"is.",
|
| 3267 |
+
"ischemia",
|
| 3268 |
+
"ischemic",
|
| 3269 |
+
"ise",
|
| 3270 |
+
"ishak",
|
| 3271 |
+
"isk",
|
| 3272 |
+
"ism",
|
| 3273 |
+
"isolated",
|
| 3274 |
+
"iss",
|
| 3275 |
+
"issues",
|
| 3276 |
+
"ist",
|
| 3277 |
+
"it",
|
| 3278 |
+
"it's",
|
| 3279 |
+
"ite",
|
| 3280 |
+
"item",
|
| 3281 |
+
"ith",
|
| 3282 |
+
"itraconazole",
|
| 3283 |
+
"its",
|
| 3284 |
+
"itt",
|
| 3285 |
+
"itu",
|
| 3286 |
+
"ity",
|
| 3287 |
+
"it\u2019s",
|
| 3288 |
+
"iu",
|
| 3289 |
+
"ium",
|
| 3290 |
+
"ius",
|
| 3291 |
+
"iv",
|
| 3292 |
+
"ivc",
|
| 3293 |
+
"ive",
|
| 3294 |
+
"ivig",
|
| 3295 |
+
"ixazomib",
|
| 3296 |
+
"iz.",
|
| 3297 |
+
"ize",
|
| 3298 |
+
"j",
|
| 3299 |
+
"j.",
|
| 3300 |
+
"jan",
|
| 3301 |
+
"jan.",
|
| 3302 |
+
"jeopardize",
|
| 3303 |
+
"jhmi",
|
| 3304 |
+
"john",
|
| 3305 |
+
"joint",
|
| 3306 |
+
"jor",
|
| 3307 |
+
"jr",
|
| 3308 |
+
"jr.",
|
| 3309 |
+
"judgment",
|
| 3310 |
+
"juice",
|
| 3311 |
+
"jul",
|
| 3312 |
+
"jul.",
|
| 3313 |
+
"jun",
|
| 3314 |
+
"jun.",
|
| 3315 |
+
"june",
|
| 3316 |
+
"k",
|
| 3317 |
+
"k.",
|
| 3318 |
+
"kan",
|
| 3319 |
+
"kan.",
|
| 3320 |
+
"kans",
|
| 3321 |
+
"kans.",
|
| 3322 |
+
"kas",
|
| 3323 |
+
"kay",
|
| 3324 |
+
"ked",
|
| 3325 |
+
"ken",
|
| 3326 |
+
"ker",
|
| 3327 |
+
"ketoconazole",
|
| 3328 |
+
"ketorolac",
|
| 3329 |
+
"kg",
|
| 3330 |
+
"kgo",
|
| 3331 |
+
"kia",
|
| 3332 |
+
"kidney",
|
| 3333 |
+
"kin",
|
| 3334 |
+
"kinase",
|
| 3335 |
+
"kla",
|
| 3336 |
+
"kle",
|
| 3337 |
+
"knee",
|
| 3338 |
+
"know",
|
| 3339 |
+
"known",
|
| 3340 |
+
"ky",
|
| 3341 |
+
"ky.",
|
| 3342 |
+
"l",
|
| 3343 |
+
"l.",
|
| 3344 |
+
"l1",
|
| 3345 |
+
"l2",
|
| 3346 |
+
"la",
|
| 3347 |
+
"la.",
|
| 3348 |
+
"laboratory",
|
| 3349 |
+
"lac",
|
| 3350 |
+
"lacerations",
|
| 3351 |
+
"lacking",
|
| 3352 |
+
"lag",
|
| 3353 |
+
"lan",
|
| 3354 |
+
"landing",
|
| 3355 |
+
"language",
|
| 3356 |
+
"lap",
|
| 3357 |
+
"lapc",
|
| 3358 |
+
"lar",
|
| 3359 |
+
"large",
|
| 3360 |
+
"laser",
|
| 3361 |
+
"last",
|
| 3362 |
+
"lateral",
|
| 3363 |
+
"lay",
|
| 3364 |
+
"lbbb)>120",
|
| 3365 |
+
"ld",
|
| 3366 |
+
"lds",
|
| 3367 |
+
"lead",
|
| 3368 |
+
"leaflet",
|
| 3369 |
+
"learning",
|
| 3370 |
+
"least",
|
| 3371 |
+
"led",
|
| 3372 |
+
"left",
|
| 3373 |
+
"leiomyosarcoma",
|
| 3374 |
+
"lem",
|
| 3375 |
+
"lenalidomide",
|
| 3376 |
+
"ler",
|
| 3377 |
+
"les",
|
| 3378 |
+
"lesion",
|
| 3379 |
+
"lesions",
|
| 3380 |
+
"less",
|
| 3381 |
+
"let",
|
| 3382 |
+
"let's",
|
| 3383 |
+
"let\u2019s",
|
| 3384 |
+
"leucovorin",
|
| 3385 |
+
"leukemia",
|
| 3386 |
+
"leukoplakia",
|
| 3387 |
+
"level",
|
| 3388 |
+
"levels",
|
| 3389 |
+
"levodopa",
|
| 3390 |
+
"lff",
|
| 3391 |
+
"lia",
|
| 3392 |
+
"lib",
|
| 3393 |
+
"lic",
|
| 3394 |
+
"lid",
|
| 3395 |
+
"lidocaine",
|
| 3396 |
+
"lif",
|
| 3397 |
+
"life",
|
| 3398 |
+
"lifetime",
|
| 3399 |
+
"lift",
|
| 3400 |
+
"ligament",
|
| 3401 |
+
"light",
|
| 3402 |
+
"like",
|
| 3403 |
+
"likely",
|
| 3404 |
+
"limb",
|
| 3405 |
+
"limit",
|
| 3406 |
+
"limited",
|
| 3407 |
+
"limiting",
|
| 3408 |
+
"lin",
|
| 3409 |
+
"linda",
|
| 3410 |
+
"line",
|
| 3411 |
+
"lingular",
|
| 3412 |
+
"lip",
|
| 3413 |
+
"lipid",
|
| 3414 |
+
"liquid",
|
| 3415 |
+
"list",
|
| 3416 |
+
"lithium",
|
| 3417 |
+
"live",
|
| 3418 |
+
"liver",
|
| 3419 |
+
"lives",
|
| 3420 |
+
"ll",
|
| 3421 |
+
"ll.",
|
| 3422 |
+
"lla",
|
| 3423 |
+
"lle",
|
| 3424 |
+
"lls",
|
| 3425 |
+
"lly",
|
| 3426 |
+
"lmw",
|
| 3427 |
+
"lo.",
|
| 3428 |
+
"load",
|
| 3429 |
+
"lobe",
|
| 3430 |
+
"local",
|
| 3431 |
+
"localized",
|
| 3432 |
+
"locally",
|
| 3433 |
+
"located",
|
| 3434 |
+
"log",
|
| 3435 |
+
"lol",
|
| 3436 |
+
"lon",
|
| 3437 |
+
"long",
|
| 3438 |
+
"longer",
|
| 3439 |
+
"longest",
|
| 3440 |
+
"loop",
|
| 3441 |
+
"lop",
|
| 3442 |
+
"lopinavir",
|
| 3443 |
+
"los",
|
| 3444 |
+
"loss",
|
| 3445 |
+
"lovin",
|
| 3446 |
+
"lovin'",
|
| 3447 |
+
"loving",
|
| 3448 |
+
"lovin\u2019",
|
| 3449 |
+
"low",
|
| 3450 |
+
"lower",
|
| 3451 |
+
"lpd",
|
| 3452 |
+
"lse",
|
| 3453 |
+
"lso",
|
| 3454 |
+
"ltd",
|
| 3455 |
+
"ltd.",
|
| 3456 |
+
"lth",
|
| 3457 |
+
"lts",
|
| 3458 |
+
"lty",
|
| 3459 |
+
"lue",
|
| 3460 |
+
"lumbar",
|
| 3461 |
+
"lumpectomy",
|
| 3462 |
+
"lung",
|
| 3463 |
+
"lupus",
|
| 3464 |
+
"lus",
|
| 3465 |
+
"luteinizing",
|
| 3466 |
+
"lv",
|
| 3467 |
+
"lve",
|
| 3468 |
+
"lvef)<35",
|
| 3469 |
+
"lymph",
|
| 3470 |
+
"lymphadenopathy",
|
| 3471 |
+
"lymphocytic",
|
| 3472 |
+
"lymphodepletion",
|
| 3473 |
+
"lymphoepithelioma",
|
| 3474 |
+
"lymphoid",
|
| 3475 |
+
"lymphoma",
|
| 3476 |
+
"lymphopenia",
|
| 3477 |
+
"lymphoproliferative",
|
| 3478 |
+
"m",
|
| 3479 |
+
"m.",
|
| 3480 |
+
"m0",
|
| 3481 |
+
"m1",
|
| 3482 |
+
"m2",
|
| 3483 |
+
"mCi",
|
| 3484 |
+
"mHg",
|
| 3485 |
+
"mIU",
|
| 3486 |
+
"mL",
|
| 3487 |
+
"m^2",
|
| 3488 |
+
"ma'am",
|
| 3489 |
+
"mab",
|
| 3490 |
+
"macroprolactinoma",
|
| 3491 |
+
"madam",
|
| 3492 |
+
"magnetic",
|
| 3493 |
+
"main",
|
| 3494 |
+
"maintained",
|
| 3495 |
+
"maintenance",
|
| 3496 |
+
"major",
|
| 3497 |
+
"majority",
|
| 3498 |
+
"make",
|
| 3499 |
+
"mal",
|
| 3500 |
+
"malabsorption",
|
| 3501 |
+
"male",
|
| 3502 |
+
"malignancies",
|
| 3503 |
+
"malignancy",
|
| 3504 |
+
"malignant",
|
| 3505 |
+
"man",
|
| 3506 |
+
"managed",
|
| 3507 |
+
"management",
|
| 3508 |
+
"mandatory",
|
| 3509 |
+
"manifestations",
|
| 3510 |
+
"mannitol",
|
| 3511 |
+
"mantle",
|
| 3512 |
+
"manual",
|
| 3513 |
+
"mar",
|
| 3514 |
+
"mar.",
|
| 3515 |
+
"marfans",
|
| 3516 |
+
"marginal",
|
| 3517 |
+
"marked",
|
| 3518 |
+
"marrow",
|
| 3519 |
+
"mas",
|
| 3520 |
+
"mass",
|
| 3521 |
+
"mass.",
|
| 3522 |
+
"mast",
|
| 3523 |
+
"mastectomy",
|
| 3524 |
+
"material",
|
| 3525 |
+
"maternal",
|
| 3526 |
+
"max",
|
| 3527 |
+
"maximum",
|
| 3528 |
+
"may",
|
| 3529 |
+
"ma\u2019am",
|
| 3530 |
+
"mb",
|
| 3531 |
+
"mcg",
|
| 3532 |
+
"mci",
|
| 3533 |
+
"mcl",
|
| 3534 |
+
"md",
|
| 3535 |
+
"md.",
|
| 3536 |
+
"mdd",
|
| 3537 |
+
"mde",
|
| 3538 |
+
"mds",
|
| 3539 |
+
"mean",
|
| 3540 |
+
"meaningful",
|
| 3541 |
+
"measurable",
|
| 3542 |
+
"measured",
|
| 3543 |
+
"measures",
|
| 3544 |
+
"mechanical",
|
| 3545 |
+
"med",
|
| 3546 |
+
"media",
|
| 3547 |
+
"mediastinal",
|
| 3548 |
+
"mediated",
|
| 3549 |
+
"medical",
|
| 3550 |
+
"medically",
|
| 3551 |
+
"medicated",
|
| 3552 |
+
"medication",
|
| 3553 |
+
"medication(s",
|
| 3554 |
+
"medications",
|
| 3555 |
+
"medullary",
|
| 3556 |
+
"medulloblastoma",
|
| 3557 |
+
"meet",
|
| 3558 |
+
"megestrol",
|
| 3559 |
+
"mek",
|
| 3560 |
+
"melanoma",
|
| 3561 |
+
"mellitus",
|
| 3562 |
+
"melphalan",
|
| 3563 |
+
"men",
|
| 3564 |
+
"meningeal",
|
| 3565 |
+
"meningioma",
|
| 3566 |
+
"meningitis",
|
| 3567 |
+
"meniscus",
|
| 3568 |
+
"menopausal",
|
| 3569 |
+
"mental",
|
| 3570 |
+
"mercury",
|
| 3571 |
+
"mes",
|
| 3572 |
+
"mesh",
|
| 3573 |
+
"mesothelioma",
|
| 3574 |
+
"messrs",
|
| 3575 |
+
"messrs.",
|
| 3576 |
+
"met",
|
| 3577 |
+
"metabolic",
|
| 3578 |
+
"metabolism",
|
| 3579 |
+
"metal",
|
| 3580 |
+
"metastases",
|
| 3581 |
+
"metastasis",
|
| 3582 |
+
"metastatic",
|
| 3583 |
+
"metformin",
|
| 3584 |
+
"method",
|
| 3585 |
+
"methods",
|
| 3586 |
+
"methotrexate",
|
| 3587 |
+
"methyltransferase",
|
| 3588 |
+
"mg",
|
| 3589 |
+
"mgh",
|
| 3590 |
+
"mi",
|
| 3591 |
+
"mia",
|
| 3592 |
+
"mib",
|
| 3593 |
+
"mibefradil",
|
| 3594 |
+
"mibg",
|
| 3595 |
+
"mic",
|
| 3596 |
+
"mich",
|
| 3597 |
+
"mich.",
|
| 3598 |
+
"microcirculatory",
|
| 3599 |
+
"microscopically",
|
| 3600 |
+
"middle",
|
| 3601 |
+
"might",
|
| 3602 |
+
"mild",
|
| 3603 |
+
"milk",
|
| 3604 |
+
"milligram",
|
| 3605 |
+
"millimeter",
|
| 3606 |
+
"milliseconds",
|
| 3607 |
+
"milrinone",
|
| 3608 |
+
"min",
|
| 3609 |
+
"min/1.73",
|
| 3610 |
+
"min/1.73m2",
|
| 3611 |
+
"minerals",
|
| 3612 |
+
"minimally",
|
| 3613 |
+
"minimum",
|
| 3614 |
+
"minn",
|
| 3615 |
+
"minn.",
|
| 3616 |
+
"minors",
|
| 3617 |
+
"miss",
|
| 3618 |
+
"miss.",
|
| 3619 |
+
"mit",
|
| 3620 |
+
"mitochondria",
|
| 3621 |
+
"mitogen",
|
| 3622 |
+
"mitomycin",
|
| 3623 |
+
"mitotic",
|
| 3624 |
+
"mitraclip",
|
| 3625 |
+
"mitral",
|
| 3626 |
+
"miu",
|
| 3627 |
+
"mixed",
|
| 3628 |
+
"ml",
|
| 3629 |
+
"mm",
|
| 3630 |
+
"mmHg",
|
| 3631 |
+
"mmgct",
|
| 3632 |
+
"mmhg",
|
| 3633 |
+
"mmse",
|
| 3634 |
+
"mo",
|
| 3635 |
+
"mo.",
|
| 3636 |
+
"mobile",
|
| 3637 |
+
"moderate",
|
| 3638 |
+
"modifier",
|
| 3639 |
+
"modify",
|
| 3640 |
+
"modifying",
|
| 3641 |
+
"module",
|
| 3642 |
+
"mofetil",
|
| 3643 |
+
"molecular",
|
| 3644 |
+
"molecule",
|
| 3645 |
+
"mon",
|
| 3646 |
+
"monoamine",
|
| 3647 |
+
"monoclonal",
|
| 3648 |
+
"mont",
|
| 3649 |
+
"mont.",
|
| 3650 |
+
"month",
|
| 3651 |
+
"months",
|
| 3652 |
+
"mor",
|
| 3653 |
+
"morbidity",
|
| 3654 |
+
"more",
|
| 3655 |
+
"mornings",
|
| 3656 |
+
"morphine",
|
| 3657 |
+
"morphology",
|
| 3658 |
+
"motility",
|
| 3659 |
+
"motor",
|
| 3660 |
+
"mph",
|
| 3661 |
+
"mr",
|
| 3662 |
+
"mr.",
|
| 3663 |
+
"mri",
|
| 3664 |
+
"mrs",
|
| 3665 |
+
"mrs.",
|
| 3666 |
+
"ms",
|
| 3667 |
+
"ms-",
|
| 3668 |
+
"ms.",
|
| 3669 |
+
"msec",
|
| 3670 |
+
"mt",
|
| 3671 |
+
"mt.",
|
| 3672 |
+
"mucosa",
|
| 3673 |
+
"muga",
|
| 3674 |
+
"multifocal",
|
| 3675 |
+
"multiforme",
|
| 3676 |
+
"multiphasic",
|
| 3677 |
+
"multiple",
|
| 3678 |
+
"multivitamins",
|
| 3679 |
+
"mum",
|
| 3680 |
+
"mus",
|
| 3681 |
+
"muscle",
|
| 3682 |
+
"muscular",
|
| 3683 |
+
"must",
|
| 3684 |
+
"mutation",
|
| 3685 |
+
"myc",
|
| 3686 |
+
"mycn",
|
| 3687 |
+
"mycophenolate",
|
| 3688 |
+
"myelo",
|
| 3689 |
+
"myelocytomatosis",
|
| 3690 |
+
"myelodysplastic",
|
| 3691 |
+
"myeloid",
|
| 3692 |
+
"myeloma",
|
| 3693 |
+
"myeloproliferative",
|
| 3694 |
+
"myelosuppressive",
|
| 3695 |
+
"myocardial",
|
| 3696 |
+
"myopia",
|
| 3697 |
+
"myositis",
|
| 3698 |
+
"mz",
|
| 3699 |
+
"n",
|
| 3700 |
+
"n's",
|
| 3701 |
+
"n't",
|
| 3702 |
+
"n(s",
|
| 3703 |
+
"n-2",
|
| 3704 |
+
"n.",
|
| 3705 |
+
"n.c.",
|
| 3706 |
+
"n.d.",
|
| 3707 |
+
"n.h.",
|
| 3708 |
+
"n.j.",
|
| 3709 |
+
"n.m.",
|
| 3710 |
+
"n.y.",
|
| 3711 |
+
"n0",
|
| 3712 |
+
"n2",
|
| 3713 |
+
"n3",
|
| 3714 |
+
"na",
|
| 3715 |
+
"nab",
|
| 3716 |
+
"nac",
|
| 3717 |
+
"naepp",
|
| 3718 |
+
"naive",
|
| 3719 |
+
"nal",
|
| 3720 |
+
"naltrexone",
|
| 3721 |
+
"nas",
|
| 3722 |
+
"nat",
|
| 3723 |
+
"nata",
|
| 3724 |
+
"natal",
|
| 3725 |
+
"national",
|
| 3726 |
+
"native",
|
| 3727 |
+
"nature",
|
| 3728 |
+
"nausea",
|
| 3729 |
+
"nb",
|
| 3730 |
+
"nc.",
|
| 3731 |
+
"nce",
|
| 3732 |
+
"nch",
|
| 3733 |
+
"nci]-common",
|
| 3734 |
+
"ncy",
|
| 3735 |
+
"nd.",
|
| 3736 |
+
"nda",
|
| 3737 |
+
"nds",
|
| 3738 |
+
"nea",
|
| 3739 |
+
"near",
|
| 3740 |
+
"neb",
|
| 3741 |
+
"neb.",
|
| 3742 |
+
"nebr",
|
| 3743 |
+
"nebr.",
|
| 3744 |
+
"neck",
|
| 3745 |
+
"necrosis",
|
| 3746 |
+
"ned",
|
| 3747 |
+
"nee",
|
| 3748 |
+
"need",
|
| 3749 |
+
"needle",
|
| 3750 |
+
"nefazodone",
|
| 3751 |
+
"negative",
|
| 3752 |
+
"nel",
|
| 3753 |
+
"nelfinavir",
|
| 3754 |
+
"neoadjuvant",
|
| 3755 |
+
"neoplasms",
|
| 3756 |
+
"neoplastic",
|
| 3757 |
+
"nephrosis",
|
| 3758 |
+
"ner",
|
| 3759 |
+
"nerve",
|
| 3760 |
+
"nervosa",
|
| 3761 |
+
"nervous",
|
| 3762 |
+
"nes",
|
| 3763 |
+
"neuroblastoma",
|
| 3764 |
+
"neurodegenerative",
|
| 3765 |
+
"neurofibroma",
|
| 3766 |
+
"neuroimaging",
|
| 3767 |
+
"neuroleptics",
|
| 3768 |
+
"neurological",
|
| 3769 |
+
"neuromuscular",
|
| 3770 |
+
"neuropathic",
|
| 3771 |
+
"neuropathy",
|
| 3772 |
+
"neuropsychological",
|
| 3773 |
+
"neurostimulator",
|
| 3774 |
+
"neutropenia",
|
| 3775 |
+
"nev",
|
| 3776 |
+
"nev.",
|
| 3777 |
+
"new",
|
| 3778 |
+
"newly",
|
| 3779 |
+
"ney",
|
| 3780 |
+
"ng",
|
| 3781 |
+
"nge",
|
| 3782 |
+
"ngs",
|
| 3783 |
+
"nhl",
|
| 3784 |
+
"nia",
|
| 3785 |
+
"nib",
|
| 3786 |
+
"nic",
|
| 3787 |
+
"nicotine",
|
| 3788 |
+
"night",
|
| 3789 |
+
"nilotinib",
|
| 3790 |
+
"nin",
|
| 3791 |
+
"nipple",
|
| 3792 |
+
"nitrosourea",
|
| 3793 |
+
"nitrosoureas/",
|
| 3794 |
+
"nivolumab",
|
| 3795 |
+
"nk",
|
| 3796 |
+
"nly",
|
| 3797 |
+
"nn.",
|
| 3798 |
+
"no",
|
| 3799 |
+
"nodal",
|
| 3800 |
+
"nodes",
|
| 3801 |
+
"nol",
|
| 3802 |
+
"non",
|
| 3803 |
+
"nonarteritic",
|
| 3804 |
+
"nonparticipating",
|
| 3805 |
+
"nor",
|
| 3806 |
+
"norepinephrine",
|
| 3807 |
+
"normal",
|
| 3808 |
+
"north",
|
| 3809 |
+
"nos",
|
| 3810 |
+
"not",
|
| 3811 |
+
"note",
|
| 3812 |
+
"nothin",
|
| 3813 |
+
"nothin'",
|
| 3814 |
+
"nothing",
|
| 3815 |
+
"nothin\u2019",
|
| 3816 |
+
"nov",
|
| 3817 |
+
"nov.",
|
| 3818 |
+
"novo",
|
| 3819 |
+
"now",
|
| 3820 |
+
"npwt",
|
| 3821 |
+
"nra",
|
| 3822 |
+
"nrs",
|
| 3823 |
+
"ns.",
|
| 3824 |
+
"nsaids",
|
| 3825 |
+
"nsclc",
|
| 3826 |
+
"nse",
|
| 3827 |
+
"nstemi",
|
| 3828 |
+
"nt",
|
| 3829 |
+
"nt.",
|
| 3830 |
+
"nth",
|
| 3831 |
+
"nti",
|
| 3832 |
+
"nto",
|
| 3833 |
+
"ntrk",
|
| 3834 |
+
"nts",
|
| 3835 |
+
"nuclear",
|
| 3836 |
+
"nucleic",
|
| 3837 |
+
"nue",
|
| 3838 |
+
"nuff",
|
| 3839 |
+
"null",
|
| 3840 |
+
"nus",
|
| 3841 |
+
"nuthin",
|
| 3842 |
+
"nuthin'",
|
| 3843 |
+
"nuthin\u2019",
|
| 3844 |
+
"nyha",
|
| 3845 |
+
"n\u2019s",
|
| 3846 |
+
"n\u2019t",
|
| 3847 |
+
"o",
|
| 3848 |
+
"o'clock",
|
| 3849 |
+
"o's",
|
| 3850 |
+
"o.",
|
| 3851 |
+
"o.0",
|
| 3852 |
+
"o.O",
|
| 3853 |
+
"o.o",
|
| 3854 |
+
"o2",
|
| 3855 |
+
"o_0",
|
| 3856 |
+
"o_O",
|
| 3857 |
+
"o_o",
|
| 3858 |
+
"oad",
|
| 3859 |
+
"oba",
|
| 3860 |
+
"obe",
|
| 3861 |
+
"obese",
|
| 3862 |
+
"obesity",
|
| 3863 |
+
"objectives",
|
| 3864 |
+
"obstruction",
|
| 3865 |
+
"obstructive",
|
| 3866 |
+
"obtained",
|
| 3867 |
+
"occlusion",
|
| 3868 |
+
"occupational",
|
| 3869 |
+
"occurred",
|
| 3870 |
+
"ocd",
|
| 3871 |
+
"ock",
|
| 3872 |
+
"oct",
|
| 3873 |
+
"oct.",
|
| 3874 |
+
"ocular",
|
| 3875 |
+
"odds",
|
| 3876 |
+
"ode",
|
| 3877 |
+
"ods",
|
| 3878 |
+
"ody",
|
| 3879 |
+
"oes",
|
| 3880 |
+
"of",
|
| 3881 |
+
"of.",
|
| 3882 |
+
"off",
|
| 3883 |
+
"ogy",
|
| 3884 |
+
"ohn",
|
| 3885 |
+
"oic",
|
| 3886 |
+
"oid",
|
| 3887 |
+
"oil",
|
| 3888 |
+
"oin",
|
| 3889 |
+
"okay",
|
| 3890 |
+
"oke",
|
| 3891 |
+
"okla",
|
| 3892 |
+
"okla.",
|
| 3893 |
+
"ol",
|
| 3894 |
+
"ol'",
|
| 3895 |
+
"old",
|
| 3896 |
+
"older",
|
| 3897 |
+
"ole",
|
| 3898 |
+
"olk",
|
| 3899 |
+
"olo",
|
| 3900 |
+
"ol\u2019",
|
| 3901 |
+
"oma",
|
| 3902 |
+
"ome",
|
| 3903 |
+
"omega-3",
|
| 3904 |
+
"oms",
|
| 3905 |
+
"omy",
|
| 3906 |
+
"on",
|
| 3907 |
+
"oncocytic",
|
| 3908 |
+
"oncogene",
|
| 3909 |
+
"oncologist",
|
| 3910 |
+
"oncology",
|
| 3911 |
+
"ond",
|
| 3912 |
+
"one",
|
| 3913 |
+
"ong",
|
| 3914 |
+
"ongoing",
|
| 3915 |
+
"only",
|
| 3916 |
+
"onn",
|
| 3917 |
+
"ons",
|
| 3918 |
+
"ont",
|
| 3919 |
+
"ood",
|
| 3920 |
+
"oof",
|
| 3921 |
+
"oom",
|
| 3922 |
+
"oon",
|
| 3923 |
+
"oop",
|
| 3924 |
+
"oophorectomy",
|
| 3925 |
+
"oor",
|
| 3926 |
+
"oos",
|
| 3927 |
+
"opa",
|
| 3928 |
+
"ope",
|
| 3929 |
+
"open",
|
| 3930 |
+
"operations",
|
| 3931 |
+
"operative",
|
| 3932 |
+
"operatively",
|
| 3933 |
+
"opinion",
|
| 3934 |
+
"opioid",
|
| 3935 |
+
"opioids",
|
| 3936 |
+
"oppositionality",
|
| 3937 |
+
"optic",
|
| 3938 |
+
"opticoneuropathy",
|
| 3939 |
+
"options",
|
| 3940 |
+
"opy",
|
| 3941 |
+
"or",
|
| 3942 |
+
"oral",
|
| 3943 |
+
"orally",
|
| 3944 |
+
"oranges",
|
| 3945 |
+
"orb",
|
| 3946 |
+
"orbital",
|
| 3947 |
+
"ord",
|
| 3948 |
+
"ordinarily",
|
| 3949 |
+
"ore",
|
| 3950 |
+
"ore.",
|
| 3951 |
+
"organ",
|
| 3952 |
+
"origin",
|
| 3953 |
+
"ork",
|
| 3954 |
+
"orm",
|
| 3955 |
+
"orn",
|
| 3956 |
+
"orp",
|
| 3957 |
+
"ors",
|
| 3958 |
+
"ort",
|
| 3959 |
+
"ory",
|
| 3960 |
+
"os.",
|
| 3961 |
+
"osa",
|
| 3962 |
+
"ose",
|
| 3963 |
+
"oss",
|
| 3964 |
+
"ost",
|
| 3965 |
+
"osteoarthritis",
|
| 3966 |
+
"otc",
|
| 3967 |
+
"ote",
|
| 3968 |
+
"oth",
|
| 3969 |
+
"other",
|
| 3970 |
+
"otherwise",
|
| 3971 |
+
"oto",
|
| 3972 |
+
"ought",
|
| 3973 |
+
"oup",
|
| 3974 |
+
"our",
|
| 3975 |
+
"ous",
|
| 3976 |
+
"out",
|
| 3977 |
+
"outcome",
|
| 3978 |
+
"outside",
|
| 3979 |
+
"ov.",
|
| 3980 |
+
"ovarian",
|
| 3981 |
+
"ove",
|
| 3982 |
+
"over",
|
| 3983 |
+
"overdose",
|
| 3984 |
+
"overlap",
|
| 3985 |
+
"overload",
|
| 3986 |
+
"overweight",
|
| 3987 |
+
"ovo",
|
| 3988 |
+
"own",
|
| 3989 |
+
"ows",
|
| 3990 |
+
"ox-40",
|
| 3991 |
+
"oxaliplatin",
|
| 3992 |
+
"oxidase",
|
| 3993 |
+
"oximetry",
|
| 3994 |
+
"oxygen",
|
| 3995 |
+
"oxygenation",
|
| 3996 |
+
"o\u2019clock",
|
| 3997 |
+
"o\u2019s",
|
| 3998 |
+
"p",
|
| 3999 |
+
"p.",
|
| 4000 |
+
"p.m",
|
| 4001 |
+
"p.m.",
|
| 4002 |
+
"p450",
|
| 4003 |
+
"pa",
|
| 4004 |
+
"pa.",
|
| 4005 |
+
"paced",
|
| 4006 |
+
"pacemaker",
|
| 4007 |
+
"pacer",
|
| 4008 |
+
"paclitaxel",
|
| 4009 |
+
"pag",
|
| 4010 |
+
"paget",
|
| 4011 |
+
"pah",
|
| 4012 |
+
"pain",
|
| 4013 |
+
"pal",
|
| 4014 |
+
"palliative",
|
| 4015 |
+
"pancreas",
|
| 4016 |
+
"pancreatic",
|
| 4017 |
+
"panel",
|
| 4018 |
+
"papillary",
|
| 4019 |
+
"papulopustular",
|
| 4020 |
+
"paracentesis",
|
| 4021 |
+
"parent",
|
| 4022 |
+
"parental",
|
| 4023 |
+
"parkinson",
|
| 4024 |
+
"part",
|
| 4025 |
+
"participant",
|
| 4026 |
+
"participants",
|
| 4027 |
+
"participate",
|
| 4028 |
+
"participating",
|
| 4029 |
+
"participation",
|
| 4030 |
+
"particularly",
|
| 4031 |
+
"partner",
|
| 4032 |
+
"partners",
|
| 4033 |
+
"passes",
|
| 4034 |
+
"past",
|
| 4035 |
+
"pathological",
|
| 4036 |
+
"pathologically",
|
| 4037 |
+
"pathologies",
|
| 4038 |
+
"pathways",
|
| 4039 |
+
"patient",
|
| 4040 |
+
"patients",
|
| 4041 |
+
"pcr",
|
| 4042 |
+
"pcr-",
|
| 4043 |
+
"pcwp",
|
| 4044 |
+
"pd",
|
| 4045 |
+
"pd-1",
|
| 4046 |
+
"pd1",
|
| 4047 |
+
"pdl1",
|
| 4048 |
+
"pdl2",
|
| 4049 |
+
"peanuts",
|
| 4050 |
+
"pectoris",
|
| 4051 |
+
"pediatric",
|
| 4052 |
+
"peels",
|
| 4053 |
+
"pelvis",
|
| 4054 |
+
"pembrolizumab",
|
| 4055 |
+
"pen",
|
| 4056 |
+
"penile",
|
| 4057 |
+
"peptic",
|
| 4058 |
+
"per",
|
| 4059 |
+
"perampanel",
|
| 4060 |
+
"percentile",
|
| 4061 |
+
"percutaneous",
|
| 4062 |
+
"perforation",
|
| 4063 |
+
"perform",
|
| 4064 |
+
"performed",
|
| 4065 |
+
"periampullary",
|
| 4066 |
+
"pericardial",
|
| 4067 |
+
"pericarditis",
|
| 4068 |
+
"period",
|
| 4069 |
+
"peripheral",
|
| 4070 |
+
"peritoneal",
|
| 4071 |
+
"permanent",
|
| 4072 |
+
"permitted",
|
| 4073 |
+
"perpendicular",
|
| 4074 |
+
"pertuzumab",
|
| 4075 |
+
"pes",
|
| 4076 |
+
"pet",
|
| 4077 |
+
"pg",
|
| 4078 |
+
"ph",
|
| 4079 |
+
"ph+",
|
| 4080 |
+
"ph.d.",
|
| 4081 |
+
"pha",
|
| 4082 |
+
"pharmacokinetic",
|
| 4083 |
+
"pharmacologic",
|
| 4084 |
+
"phase",
|
| 4085 |
+
"phenomenon",
|
| 4086 |
+
"phenylketonuria",
|
| 4087 |
+
"philadelphia",
|
| 4088 |
+
"phosphatase",
|
| 4089 |
+
"photodermatoses",
|
| 4090 |
+
"photodynamic",
|
| 4091 |
+
"photosensitive",
|
| 4092 |
+
"phq-9",
|
| 4093 |
+
"pht",
|
| 4094 |
+
"phy",
|
| 4095 |
+
"physical",
|
| 4096 |
+
"physician",
|
| 4097 |
+
"physiology",
|
| 4098 |
+
"pi",
|
| 4099 |
+
"pi*malton",
|
| 4100 |
+
"pi*null",
|
| 4101 |
+
"pi*z",
|
| 4102 |
+
"pia",
|
| 4103 |
+
"pic",
|
| 4104 |
+
"pid",
|
| 4105 |
+
"pigment",
|
| 4106 |
+
"pills",
|
| 4107 |
+
"pin",
|
| 4108 |
+
"pituitary",
|
| 4109 |
+
"pku",
|
| 4110 |
+
"placement",
|
| 4111 |
+
"planned",
|
| 4112 |
+
"plans",
|
| 4113 |
+
"plasma",
|
| 4114 |
+
"plate",
|
| 4115 |
+
"platelet",
|
| 4116 |
+
"platelets",
|
| 4117 |
+
"platinum",
|
| 4118 |
+
"ple",
|
| 4119 |
+
"pleural",
|
| 4120 |
+
"plexiform",
|
| 4121 |
+
"plus",
|
| 4122 |
+
"ply",
|
| 4123 |
+
"pm",
|
| 4124 |
+
"pm060184",
|
| 4125 |
+
"pneumonia",
|
| 4126 |
+
"po",
|
| 4127 |
+
"pointes",
|
| 4128 |
+
"points1",
|
| 4129 |
+
"polymyalgia",
|
| 4130 |
+
"polymyositis",
|
| 4131 |
+
"polypeptide",
|
| 4132 |
+
"pon",
|
| 4133 |
+
"poor",
|
| 4134 |
+
"poorly",
|
| 4135 |
+
"porcine",
|
| 4136 |
+
"porphyria",
|
| 4137 |
+
"porphyrin",
|
| 4138 |
+
"portal",
|
| 4139 |
+
"portion",
|
| 4140 |
+
"posaconazole",
|
| 4141 |
+
"positioned",
|
| 4142 |
+
"positive",
|
| 4143 |
+
"positivity",
|
| 4144 |
+
"possible",
|
| 4145 |
+
"post",
|
| 4146 |
+
"posterior",
|
| 4147 |
+
"postmenopausal",
|
| 4148 |
+
"postural",
|
| 4149 |
+
"potential",
|
| 4150 |
+
"potentially",
|
| 4151 |
+
"powered",
|
| 4152 |
+
"pr",
|
| 4153 |
+
"pr+",
|
| 4154 |
+
"pr.",
|
| 4155 |
+
"practice",
|
| 4156 |
+
"pre",
|
| 4157 |
+
"preceding",
|
| 4158 |
+
"preclude",
|
| 4159 |
+
"predicted",
|
| 4160 |
+
"prednisone",
|
| 4161 |
+
"predominantly",
|
| 4162 |
+
"preexisting",
|
| 4163 |
+
"preferably",
|
| 4164 |
+
"pregnancy",
|
| 4165 |
+
"pregnant",
|
| 4166 |
+
"premalignant",
|
| 4167 |
+
"premature",
|
| 4168 |
+
"prenatally",
|
| 4169 |
+
"preoperative",
|
| 4170 |
+
"preparations",
|
| 4171 |
+
"prescribed",
|
| 4172 |
+
"prescribing",
|
| 4173 |
+
"prescription",
|
| 4174 |
+
"prescriptions",
|
| 4175 |
+
"presence",
|
| 4176 |
+
"present",
|
| 4177 |
+
"presentation",
|
| 4178 |
+
"pressor",
|
| 4179 |
+
"pressure",
|
| 4180 |
+
"prevent",
|
| 4181 |
+
"prevents",
|
| 4182 |
+
"previous",
|
| 4183 |
+
"previously",
|
| 4184 |
+
"priapism",
|
| 4185 |
+
"primaries",
|
| 4186 |
+
"primarily",
|
| 4187 |
+
"primary",
|
| 4188 |
+
"principal",
|
| 4189 |
+
"principle",
|
| 4190 |
+
"prior",
|
| 4191 |
+
"prmc",
|
| 4192 |
+
"prn",
|
| 4193 |
+
"pro",
|
| 4194 |
+
"proBNP",
|
| 4195 |
+
"probable",
|
| 4196 |
+
"problem",
|
| 4197 |
+
"problems",
|
| 4198 |
+
"probnp",
|
| 4199 |
+
"procedural",
|
| 4200 |
+
"procedure",
|
| 4201 |
+
"procedures",
|
| 4202 |
+
"process",
|
| 4203 |
+
"processes",
|
| 4204 |
+
"product",
|
| 4205 |
+
"products",
|
| 4206 |
+
"prof",
|
| 4207 |
+
"prof.",
|
| 4208 |
+
"proficient",
|
| 4209 |
+
"profiling",
|
| 4210 |
+
"progesterone",
|
| 4211 |
+
"program",
|
| 4212 |
+
"programmed",
|
| 4213 |
+
"progressed",
|
| 4214 |
+
"progression",
|
| 4215 |
+
"progressive",
|
| 4216 |
+
"prohibit",
|
| 4217 |
+
"prohibited",
|
| 4218 |
+
"prolapse",
|
| 4219 |
+
"proliferative",
|
| 4220 |
+
"prolong",
|
| 4221 |
+
"prolongation",
|
| 4222 |
+
"prolonged",
|
| 4223 |
+
"promotes",
|
| 4224 |
+
"promyelocytic",
|
| 4225 |
+
"proof",
|
| 4226 |
+
"properly",
|
| 4227 |
+
"properties",
|
| 4228 |
+
"prophylactic",
|
| 4229 |
+
"prophylaxis",
|
| 4230 |
+
"proposed",
|
| 4231 |
+
"proprioceptive",
|
| 4232 |
+
"prostate",
|
| 4233 |
+
"prostatectomy",
|
| 4234 |
+
"prosthetic",
|
| 4235 |
+
"protein",
|
| 4236 |
+
"proteinase",
|
| 4237 |
+
"proteinuria",
|
| 4238 |
+
"protocol",
|
| 4239 |
+
"proton",
|
| 4240 |
+
"proved",
|
| 4241 |
+
"proven",
|
| 4242 |
+
"provide",
|
| 4243 |
+
"providing",
|
| 4244 |
+
"proximal",
|
| 4245 |
+
"psa",
|
| 4246 |
+
"pse",
|
| 4247 |
+
"pseudoephedrine",
|
| 4248 |
+
"psoriasis",
|
| 4249 |
+
"psy",
|
| 4250 |
+
"psychiatric",
|
| 4251 |
+
"psychiatrist",
|
| 4252 |
+
"psychological",
|
| 4253 |
+
"psychomotor",
|
| 4254 |
+
"psychosis",
|
| 4255 |
+
"psychotic",
|
| 4256 |
+
"psychotropic",
|
| 4257 |
+
"pt.",
|
| 4258 |
+
"ptsd",
|
| 4259 |
+
"ptt",
|
| 4260 |
+
"pugh",
|
| 4261 |
+
"pulmonary",
|
| 4262 |
+
"pulse",
|
| 4263 |
+
"pump",
|
| 4264 |
+
"purpura",
|
| 4265 |
+
"pus",
|
| 4266 |
+
"pyschiatric",
|
| 4267 |
+
"pyschosis",
|
| 4268 |
+
"q",
|
| 4269 |
+
"q.",
|
| 4270 |
+
"qrs",
|
| 4271 |
+
"qt",
|
| 4272 |
+
"qtc",
|
| 4273 |
+
"qtcf",
|
| 4274 |
+
"qualitative",
|
| 4275 |
+
"questionnaire",
|
| 4276 |
+
"questions",
|
| 4277 |
+
"quotient",
|
| 4278 |
+
"r",
|
| 4279 |
+
"r.",
|
| 4280 |
+
"rEP",
|
| 4281 |
+
"rVWF",
|
| 4282 |
+
"ra",
|
| 4283 |
+
"radiation",
|
| 4284 |
+
"radical",
|
| 4285 |
+
"radioactive",
|
| 4286 |
+
"radiofrequency",
|
| 4287 |
+
"radiographically",
|
| 4288 |
+
"radiological",
|
| 4289 |
+
"radiotherapy",
|
| 4290 |
+
"raf",
|
| 4291 |
+
"ral",
|
| 4292 |
+
"ram",
|
| 4293 |
+
"ran",
|
| 4294 |
+
"randomization",
|
| 4295 |
+
"range",
|
| 4296 |
+
"ras",
|
| 4297 |
+
"rash",
|
| 4298 |
+
"rating",
|
| 4299 |
+
"ratio",
|
| 4300 |
+
"raynaud",
|
| 4301 |
+
"rays",
|
| 4302 |
+
"rb",
|
| 4303 |
+
"rcc",
|
| 4304 |
+
"rch",
|
| 4305 |
+
"rdd",
|
| 4306 |
+
"rds",
|
| 4307 |
+
"re",
|
| 4308 |
+
"re.",
|
| 4309 |
+
"rea",
|
| 4310 |
+
"reaction",
|
| 4311 |
+
"reactions",
|
| 4312 |
+
"reactive",
|
| 4313 |
+
"reason",
|
| 4314 |
+
"reasons",
|
| 4315 |
+
"receive",
|
| 4316 |
+
"received",
|
| 4317 |
+
"receiving",
|
| 4318 |
+
"recent",
|
| 4319 |
+
"recipient",
|
| 4320 |
+
"recist",
|
| 4321 |
+
"recommended",
|
| 4322 |
+
"reconstruction",
|
| 4323 |
+
"records",
|
| 4324 |
+
"recovered",
|
| 4325 |
+
"recovery",
|
| 4326 |
+
"recruitment",
|
| 4327 |
+
"rectal",
|
| 4328 |
+
"recurrence",
|
| 4329 |
+
"recurrent",
|
| 4330 |
+
"red",
|
| 4331 |
+
"reduced",
|
| 4332 |
+
"ree",
|
| 4333 |
+
"referred",
|
| 4334 |
+
"refractory",
|
| 4335 |
+
"regardless",
|
| 4336 |
+
"regime",
|
| 4337 |
+
"regimen",
|
| 4338 |
+
"regimens",
|
| 4339 |
+
"region",
|
| 4340 |
+
"registration",
|
| 4341 |
+
"regular",
|
| 4342 |
+
"regularly",
|
| 4343 |
+
"regurgitation",
|
| 4344 |
+
"relapse",
|
| 4345 |
+
"relapsed",
|
| 4346 |
+
"relapsing",
|
| 4347 |
+
"related",
|
| 4348 |
+
"relative",
|
| 4349 |
+
"relaxants",
|
| 4350 |
+
"releasing",
|
| 4351 |
+
"relevant",
|
| 4352 |
+
"remain",
|
| 4353 |
+
"remained",
|
| 4354 |
+
"remediation",
|
| 4355 |
+
"remission",
|
| 4356 |
+
"removable",
|
| 4357 |
+
"ren",
|
| 4358 |
+
"renal",
|
| 4359 |
+
"rendering",
|
| 4360 |
+
"rep",
|
| 4361 |
+
"rep.",
|
| 4362 |
+
"repair",
|
| 4363 |
+
"repeated",
|
| 4364 |
+
"replacement",
|
| 4365 |
+
"replacements",
|
| 4366 |
+
"report",
|
| 4367 |
+
"reported",
|
| 4368 |
+
"requested",
|
| 4369 |
+
"require",
|
| 4370 |
+
"required",
|
| 4371 |
+
"requirement",
|
| 4372 |
+
"requirements",
|
| 4373 |
+
"requires",
|
| 4374 |
+
"requiring",
|
| 4375 |
+
"res",
|
| 4376 |
+
"research",
|
| 4377 |
+
"resected",
|
| 4378 |
+
"resection",
|
| 4379 |
+
"resections",
|
| 4380 |
+
"reserve",
|
| 4381 |
+
"residual",
|
| 4382 |
+
"resistance",
|
| 4383 |
+
"resolution",
|
| 4384 |
+
"resolved",
|
| 4385 |
+
"resonance",
|
| 4386 |
+
"respiratory",
|
| 4387 |
+
"response",
|
| 4388 |
+
"responses",
|
| 4389 |
+
"responsible",
|
| 4390 |
+
"responsive",
|
| 4391 |
+
"rest",
|
| 4392 |
+
"resting",
|
| 4393 |
+
"restoration",
|
| 4394 |
+
"restriction",
|
| 4395 |
+
"restrictive",
|
| 4396 |
+
"result",
|
| 4397 |
+
"resulting",
|
| 4398 |
+
"results",
|
| 4399 |
+
"resume",
|
| 4400 |
+
"retain",
|
| 4401 |
+
"retinal",
|
| 4402 |
+
"retinopathy",
|
| 4403 |
+
"rev",
|
| 4404 |
+
"rev.",
|
| 4405 |
+
"revascularizing",
|
| 4406 |
+
"revassist",
|
| 4407 |
+
"revealing",
|
| 4408 |
+
"reversible",
|
| 4409 |
+
"rge",
|
| 4410 |
+
"rgo",
|
| 4411 |
+
"rgy",
|
| 4412 |
+
"rheumatica",
|
| 4413 |
+
"rhythm",
|
| 4414 |
+
"ria",
|
| 4415 |
+
"ribonucleic",
|
| 4416 |
+
"ric",
|
| 4417 |
+
"rich",
|
| 4418 |
+
"richters",
|
| 4419 |
+
"right",
|
| 4420 |
+
"rigidity",
|
| 4421 |
+
"rin",
|
| 4422 |
+
"ris",
|
| 4423 |
+
"rising",
|
| 4424 |
+
"risk",
|
| 4425 |
+
"risks",
|
| 4426 |
+
"ritalin",
|
| 4427 |
+
"ritonavir",
|
| 4428 |
+
"rituximab",
|
| 4429 |
+
"rivaroxaban",
|
| 4430 |
+
"riz",
|
| 4431 |
+
"rk.",
|
| 4432 |
+
"rly",
|
| 4433 |
+
"rma",
|
| 4434 |
+
"rme",
|
| 4435 |
+
"rms",
|
| 4436 |
+
"rna",
|
| 4437 |
+
"rof",
|
| 4438 |
+
"rol",
|
| 4439 |
+
"rom",
|
| 4440 |
+
"ron",
|
| 4441 |
+
"room",
|
| 4442 |
+
"ros",
|
| 4443 |
+
"rosacea",
|
| 4444 |
+
"rotator",
|
| 4445 |
+
"row",
|
| 4446 |
+
"rp",
|
| 4447 |
+
"rp.",
|
| 4448 |
+
"rpe",
|
| 4449 |
+
"rs.",
|
| 4450 |
+
"rse",
|
| 4451 |
+
"rst",
|
| 4452 |
+
"rsv",
|
| 4453 |
+
"rt",
|
| 4454 |
+
"rta",
|
| 4455 |
+
"rth",
|
| 4456 |
+
"rts",
|
| 4457 |
+
"rug",
|
| 4458 |
+
"rule",
|
| 4459 |
+
"rum",
|
| 4460 |
+
"rupture",
|
| 4461 |
+
"rus",
|
| 4462 |
+
"ruxolitinib",
|
| 4463 |
+
"rve",
|
| 4464 |
+
"rvo",
|
| 4465 |
+
"rvwf",
|
| 4466 |
+
"s",
|
| 4467 |
+
"s's",
|
| 4468 |
+
"s.",
|
| 4469 |
+
"s.c.",
|
| 4470 |
+
"s/",
|
| 4471 |
+
"sAg",
|
| 4472 |
+
"sab",
|
| 4473 |
+
"sac",
|
| 4474 |
+
"saccular",
|
| 4475 |
+
"safe",
|
| 4476 |
+
"safely",
|
| 4477 |
+
"safety",
|
| 4478 |
+
"sal",
|
| 4479 |
+
"salts",
|
| 4480 |
+
"salvage",
|
| 4481 |
+
"same",
|
| 4482 |
+
"sample",
|
| 4483 |
+
"saquinavir",
|
| 4484 |
+
"sarcoidosis",
|
| 4485 |
+
"sarcomas",
|
| 4486 |
+
"satisfactory",
|
| 4487 |
+
"saturation",
|
| 4488 |
+
"scale",
|
| 4489 |
+
"scan",
|
| 4490 |
+
"scanning",
|
| 4491 |
+
"scarring",
|
| 4492 |
+
"scars",
|
| 4493 |
+
"sccas",
|
| 4494 |
+
"scd",
|
| 4495 |
+
"scheduled",
|
| 4496 |
+
"schizophrenia",
|
| 4497 |
+
"sci",
|
| 4498 |
+
"scleroderma",
|
| 4499 |
+
"sclerosis",
|
| 4500 |
+
"scope",
|
| 4501 |
+
"score",
|
| 4502 |
+
"scores",
|
| 4503 |
+
"screened",
|
| 4504 |
+
"screening",
|
| 4505 |
+
"screws",
|
| 4506 |
+
"sct",
|
| 4507 |
+
"sd",
|
| 4508 |
+
"sea",
|
| 4509 |
+
"seafood",
|
| 4510 |
+
"seasonal",
|
| 4511 |
+
"sec",
|
| 4512 |
+
"second",
|
| 4513 |
+
"secondary",
|
| 4514 |
+
"section",
|
| 4515 |
+
"sed",
|
| 4516 |
+
"sedating",
|
| 4517 |
+
"sedative",
|
| 4518 |
+
"sedatives",
|
| 4519 |
+
"see",
|
| 4520 |
+
"segment",
|
| 4521 |
+
"seizure",
|
| 4522 |
+
"seizures",
|
| 4523 |
+
"self",
|
| 4524 |
+
"selinexor",
|
| 4525 |
+
"selumetinib",
|
| 4526 |
+
"sen",
|
| 4527 |
+
"sen.",
|
| 4528 |
+
"sensitivity",
|
| 4529 |
+
"sensitizer",
|
| 4530 |
+
"sensor",
|
| 4531 |
+
"sensory",
|
| 4532 |
+
"sep",
|
| 4533 |
+
"sep.",
|
| 4534 |
+
"separate",
|
| 4535 |
+
"separation",
|
| 4536 |
+
"sept",
|
| 4537 |
+
"sept.",
|
| 4538 |
+
"septal",
|
| 4539 |
+
"september",
|
| 4540 |
+
"septic",
|
| 4541 |
+
"ser",
|
| 4542 |
+
"serious",
|
| 4543 |
+
"serologically",
|
| 4544 |
+
"serology",
|
| 4545 |
+
"seronegative",
|
| 4546 |
+
"seropositive",
|
| 4547 |
+
"serous",
|
| 4548 |
+
"serum",
|
| 4549 |
+
"serve",
|
| 4550 |
+
"ses",
|
| 4551 |
+
"sessions",
|
| 4552 |
+
"setting",
|
| 4553 |
+
"settings",
|
| 4554 |
+
"severe",
|
| 4555 |
+
"severity",
|
| 4556 |
+
"seville",
|
| 4557 |
+
"sex",
|
| 4558 |
+
"sexual",
|
| 4559 |
+
"sgrq",
|
| 4560 |
+
"sh.",
|
| 4561 |
+
"sha",
|
| 4562 |
+
"shall",
|
| 4563 |
+
"she",
|
| 4564 |
+
"she's",
|
| 4565 |
+
"sheet",
|
| 4566 |
+
"she\u2019s",
|
| 4567 |
+
"shh",
|
| 4568 |
+
"shift",
|
| 4569 |
+
"shock",
|
| 4570 |
+
"shorter",
|
| 4571 |
+
"should",
|
| 4572 |
+
"shoulders",
|
| 4573 |
+
"showing",
|
| 4574 |
+
"shows",
|
| 4575 |
+
"shrapnel",
|
| 4576 |
+
"shunt",
|
| 4577 |
+
"shunts",
|
| 4578 |
+
"siRNA",
|
| 4579 |
+
"sia",
|
| 4580 |
+
"sic",
|
| 4581 |
+
"sickle",
|
| 4582 |
+
"sickling",
|
| 4583 |
+
"significant",
|
| 4584 |
+
"significantly",
|
| 4585 |
+
"signs",
|
| 4586 |
+
"sin",
|
| 4587 |
+
"since",
|
| 4588 |
+
"single",
|
| 4589 |
+
"sinonasal",
|
| 4590 |
+
"sinus",
|
| 4591 |
+
"sirna",
|
| 4592 |
+
"sis",
|
| 4593 |
+
"sit",
|
| 4594 |
+
"site",
|
| 4595 |
+
"situ",
|
| 4596 |
+
"situations",
|
| 4597 |
+
"six",
|
| 4598 |
+
"six(6)months",
|
| 4599 |
+
"size",
|
| 4600 |
+
"skeletal",
|
| 4601 |
+
"skin",
|
| 4602 |
+
"sks",
|
| 4603 |
+
"sle",
|
| 4604 |
+
"sleep",
|
| 4605 |
+
"sleeve",
|
| 4606 |
+
"sll",
|
| 4607 |
+
"sly",
|
| 4608 |
+
"sma",
|
| 4609 |
+
"small",
|
| 4610 |
+
"smoking",
|
| 4611 |
+
"sms",
|
| 4612 |
+
"snri",
|
| 4613 |
+
"social",
|
| 4614 |
+
"society",
|
| 4615 |
+
"solid",
|
| 4616 |
+
"solitary",
|
| 4617 |
+
"some",
|
| 4618 |
+
"someone",
|
| 4619 |
+
"somethin",
|
| 4620 |
+
"somethin'",
|
| 4621 |
+
"something",
|
| 4622 |
+
"somethin\u2019",
|
| 4623 |
+
"son",
|
| 4624 |
+
"sor",
|
| 4625 |
+
"sorafenib",
|
| 4626 |
+
"sores",
|
| 4627 |
+
"sotalol",
|
| 4628 |
+
"soybean",
|
| 4629 |
+
"space",
|
| 4630 |
+
"specific",
|
| 4631 |
+
"specifically",
|
| 4632 |
+
"specified",
|
| 4633 |
+
"spectrum",
|
| 4634 |
+
"spermicide",
|
| 4635 |
+
"spinal",
|
| 4636 |
+
"spine",
|
| 4637 |
+
"sputum",
|
| 4638 |
+
"squamous",
|
| 4639 |
+
"srs",
|
| 4640 |
+
"ss.",
|
| 4641 |
+
"ssa",
|
| 4642 |
+
"ssri",
|
| 4643 |
+
"st",
|
| 4644 |
+
"st.",
|
| 4645 |
+
"stable",
|
| 4646 |
+
"stage",
|
| 4647 |
+
"standard",
|
| 4648 |
+
"standards",
|
| 4649 |
+
"staphylococcus",
|
| 4650 |
+
"starfruit",
|
| 4651 |
+
"start",
|
| 4652 |
+
"started",
|
| 4653 |
+
"starting",
|
| 4654 |
+
"starts",
|
| 4655 |
+
"states",
|
| 4656 |
+
"statins",
|
| 4657 |
+
"statistical",
|
| 4658 |
+
"status",
|
| 4659 |
+
"stem",
|
| 4660 |
+
"stenosis",
|
| 4661 |
+
"stenting",
|
| 4662 |
+
"stents",
|
| 4663 |
+
"sterilized",
|
| 4664 |
+
"steroid",
|
| 4665 |
+
"steroids",
|
| 4666 |
+
"stimulant",
|
| 4667 |
+
"stimulants",
|
| 4668 |
+
"stimulating",
|
| 4669 |
+
"stimulation",
|
| 4670 |
+
"stimulator",
|
| 4671 |
+
"stomach",
|
| 4672 |
+
"stone",
|
| 4673 |
+
"stopping",
|
| 4674 |
+
"storage",
|
| 4675 |
+
"stratum",
|
| 4676 |
+
"strength",
|
| 4677 |
+
"stress",
|
| 4678 |
+
"stroke",
|
| 4679 |
+
"strong",
|
| 4680 |
+
"structural",
|
| 4681 |
+
"sts",
|
| 4682 |
+
"studied",
|
| 4683 |
+
"studies",
|
| 4684 |
+
"study",
|
| 4685 |
+
"sty",
|
| 4686 |
+
"subacute",
|
| 4687 |
+
"subcutaneous",
|
| 4688 |
+
"subfamily",
|
| 4689 |
+
"subject",
|
| 4690 |
+
"subjects",
|
| 4691 |
+
"subsequent",
|
| 4692 |
+
"substance",
|
| 4693 |
+
"substantial",
|
| 4694 |
+
"subtype",
|
| 4695 |
+
"subtypes",
|
| 4696 |
+
"such",
|
| 4697 |
+
"sue",
|
| 4698 |
+
"suffer",
|
| 4699 |
+
"suffering",
|
| 4700 |
+
"suggestive",
|
| 4701 |
+
"suicidal",
|
| 4702 |
+
"suitable",
|
| 4703 |
+
"sulfoxide",
|
| 4704 |
+
"superficial",
|
| 4705 |
+
"supplemental",
|
| 4706 |
+
"supplements",
|
| 4707 |
+
"support",
|
| 4708 |
+
"supportive",
|
| 4709 |
+
"surface",
|
| 4710 |
+
"surgeries",
|
| 4711 |
+
"surgery",
|
| 4712 |
+
"surgical",
|
| 4713 |
+
"surgically",
|
| 4714 |
+
"survivorship",
|
| 4715 |
+
"susceptible",
|
| 4716 |
+
"suspect",
|
| 4717 |
+
"suspected",
|
| 4718 |
+
"suspicion",
|
| 4719 |
+
"sustaining",
|
| 4720 |
+
"svp",
|
| 4721 |
+
"swallow",
|
| 4722 |
+
"swallowing",
|
| 4723 |
+
"sweats",
|
| 4724 |
+
"symptomatic",
|
| 4725 |
+
"symptoms",
|
| 4726 |
+
"symptoms-",
|
| 4727 |
+
"synchronous",
|
| 4728 |
+
"syncope",
|
| 4729 |
+
"syndrome",
|
| 4730 |
+
"syndromes",
|
| 4731 |
+
"system",
|
| 4732 |
+
"systemic",
|
| 4733 |
+
"systolic",
|
| 4734 |
+
"sz",
|
| 4735 |
+
"s\u2019s",
|
| 4736 |
+
"t",
|
| 4737 |
+
"t's",
|
| 4738 |
+
"t(s",
|
| 4739 |
+
"t.",
|
| 4740 |
+
"t1",
|
| 4741 |
+
"t1c",
|
| 4742 |
+
"t2b",
|
| 4743 |
+
"ta",
|
| 4744 |
+
"tachyarrhythmias",
|
| 4745 |
+
"tachycardia",
|
| 4746 |
+
"tacrolimus",
|
| 4747 |
+
"take",
|
| 4748 |
+
"taking",
|
| 4749 |
+
"tal",
|
| 4750 |
+
"tan",
|
| 4751 |
+
"tanning",
|
| 4752 |
+
"taper",
|
| 4753 |
+
"target",
|
| 4754 |
+
"targeted",
|
| 4755 |
+
"targeting",
|
| 4756 |
+
"tat",
|
| 4757 |
+
"tattoos",
|
| 4758 |
+
"taxol",
|
| 4759 |
+
"tbi",
|
| 4760 |
+
"tca",
|
| 4761 |
+
"td.",
|
| 4762 |
+
"team",
|
| 4763 |
+
"tear",
|
| 4764 |
+
"tears",
|
| 4765 |
+
"technician",
|
| 4766 |
+
"ted",
|
| 4767 |
+
"telaprevir",
|
| 4768 |
+
"telithromycin",
|
| 4769 |
+
"tem",
|
| 4770 |
+
"temozolomide",
|
| 4771 |
+
"temporary",
|
| 4772 |
+
"tenn",
|
| 4773 |
+
"tenn.",
|
| 4774 |
+
"ter",
|
| 4775 |
+
"teratogenic",
|
| 4776 |
+
"terminology",
|
| 4777 |
+
"tes",
|
| 4778 |
+
"tesamorelin",
|
| 4779 |
+
"test",
|
| 4780 |
+
"testing",
|
| 4781 |
+
"testosterone",
|
| 4782 |
+
"tests",
|
| 4783 |
+
"thalassemia",
|
| 4784 |
+
"thalidomide",
|
| 4785 |
+
"thallium",
|
| 4786 |
+
"than",
|
| 4787 |
+
"that",
|
| 4788 |
+
"that's",
|
| 4789 |
+
"that\u2019s",
|
| 4790 |
+
"the",
|
| 4791 |
+
"their",
|
| 4792 |
+
"them",
|
| 4793 |
+
"therapeutic",
|
| 4794 |
+
"therapies",
|
| 4795 |
+
"therapy",
|
| 4796 |
+
"there",
|
| 4797 |
+
"there's",
|
| 4798 |
+
"there\u2019s",
|
| 4799 |
+
"these",
|
| 4800 |
+
"they",
|
| 4801 |
+
"thiazide",
|
| 4802 |
+
"thickening",
|
| 4803 |
+
"this",
|
| 4804 |
+
"this's",
|
| 4805 |
+
"thistle",
|
| 4806 |
+
"this\u2019s",
|
| 4807 |
+
"thm",
|
| 4808 |
+
"thoracic",
|
| 4809 |
+
"those",
|
| 4810 |
+
"though",
|
| 4811 |
+
"threatening",
|
| 4812 |
+
"three",
|
| 4813 |
+
"thrombocythemia",
|
| 4814 |
+
"thrombocytopenia",
|
| 4815 |
+
"thrombocytopenic",
|
| 4816 |
+
"thromboembolic",
|
| 4817 |
+
"thromboembolism",
|
| 4818 |
+
"thrombosis",
|
| 4819 |
+
"through",
|
| 4820 |
+
"throughout",
|
| 4821 |
+
"ths",
|
| 4822 |
+
"thus",
|
| 4823 |
+
"thy",
|
| 4824 |
+
"thyrogen",
|
| 4825 |
+
"thyroid",
|
| 4826 |
+
"thyrotropin",
|
| 4827 |
+
"tia",
|
| 4828 |
+
"tic",
|
| 4829 |
+
"til",
|
| 4830 |
+
"time",
|
| 4831 |
+
"tin",
|
| 4832 |
+
"tio",
|
| 4833 |
+
"tis",
|
| 4834 |
+
"tissue",
|
| 4835 |
+
"tka",
|
| 4836 |
+
"tki",
|
| 4837 |
+
"tkis",
|
| 4838 |
+
"tlc<45",
|
| 4839 |
+
"tle",
|
| 4840 |
+
"tly",
|
| 4841 |
+
"tma",
|
| 4842 |
+
"tms",
|
| 4843 |
+
"tnbc",
|
| 4844 |
+
"tnf",
|
| 4845 |
+
"to",
|
| 4846 |
+
"tobacco",
|
| 4847 |
+
"tocilizumab",
|
| 4848 |
+
"toe",
|
| 4849 |
+
"tol",
|
| 4850 |
+
"tolerability",
|
| 4851 |
+
"tolerance",
|
| 4852 |
+
"tolerate",
|
| 4853 |
+
"tolvaptan",
|
| 4854 |
+
"tomography",
|
| 4855 |
+
"ton",
|
| 4856 |
+
"tor",
|
| 4857 |
+
"toradol",
|
| 4858 |
+
"torsades",
|
| 4859 |
+
"total",
|
| 4860 |
+
"touching",
|
| 4861 |
+
"toxicities",
|
| 4862 |
+
"toxicity",
|
| 4863 |
+
"toxin",
|
| 4864 |
+
"tr",
|
| 4865 |
+
"tra",
|
| 4866 |
+
"trabeculectomy",
|
| 4867 |
+
"tract",
|
| 4868 |
+
"training",
|
| 4869 |
+
"transcranial",
|
| 4870 |
+
"transformation",
|
| 4871 |
+
"transfusions",
|
| 4872 |
+
"transient",
|
| 4873 |
+
"transiently",
|
| 4874 |
+
"transmetatarsal",
|
| 4875 |
+
"transplant",
|
| 4876 |
+
"transplantation",
|
| 4877 |
+
"transthoracic",
|
| 4878 |
+
"trastuzumab",
|
| 4879 |
+
"trauma",
|
| 4880 |
+
"traumatic",
|
| 4881 |
+
"treated",
|
| 4882 |
+
"treating",
|
| 4883 |
+
"treatment",
|
| 4884 |
+
"tree",
|
| 4885 |
+
"tremens",
|
| 4886 |
+
"tremor",
|
| 4887 |
+
"trial",
|
| 4888 |
+
"triglycerides",
|
| 4889 |
+
"tro",
|
| 4890 |
+
"troponin",
|
| 4891 |
+
"try",
|
| 4892 |
+
"trypsin",
|
| 4893 |
+
"ts1",
|
| 4894 |
+
"tte",
|
| 4895 |
+
"tty",
|
| 4896 |
+
"tube",
|
| 4897 |
+
"tum",
|
| 4898 |
+
"tumor",
|
| 4899 |
+
"tumors",
|
| 4900 |
+
"turnstile",
|
| 4901 |
+
"tus",
|
| 4902 |
+
"twice",
|
| 4903 |
+
"two",
|
| 4904 |
+
"type",
|
| 4905 |
+
"types",
|
| 4906 |
+
"t\u2019s",
|
| 4907 |
+
"u",
|
| 4908 |
+
"u.",
|
| 4909 |
+
"ual",
|
| 4910 |
+
"ube",
|
| 4911 |
+
"uce",
|
| 4912 |
+
"uch",
|
| 4913 |
+
"uct",
|
| 4914 |
+
"ude",
|
| 4915 |
+
"udy",
|
| 4916 |
+
"ued",
|
| 4917 |
+
"ues",
|
| 4918 |
+
"uff",
|
| 4919 |
+
"ug.",
|
| 4920 |
+
"ugh",
|
| 4921 |
+
"ugs",
|
| 4922 |
+
"uid",
|
| 4923 |
+
"uit",
|
| 4924 |
+
"ul.",
|
| 4925 |
+
"ulcer",
|
| 4926 |
+
"ulcerative",
|
| 4927 |
+
"ulcers",
|
| 4928 |
+
"uld",
|
| 4929 |
+
"ule",
|
| 4930 |
+
"ull",
|
| 4931 |
+
"uln",
|
| 4932 |
+
"ulo",
|
| 4933 |
+
"ult",
|
| 4934 |
+
"ultrasound",
|
| 4935 |
+
"ultraviolet",
|
| 4936 |
+
"uma",
|
| 4937 |
+
"umbrella",
|
| 4938 |
+
"ume",
|
| 4939 |
+
"ump",
|
| 4940 |
+
"un.",
|
| 4941 |
+
"unable",
|
| 4942 |
+
"uncommon",
|
| 4943 |
+
"uncontrolled",
|
| 4944 |
+
"uncuffed",
|
| 4945 |
+
"und",
|
| 4946 |
+
"under",
|
| 4947 |
+
"undergo",
|
| 4948 |
+
"undergoing",
|
| 4949 |
+
"underlying",
|
| 4950 |
+
"understand",
|
| 4951 |
+
"understanding",
|
| 4952 |
+
"understood",
|
| 4953 |
+
"undertaken",
|
| 4954 |
+
"undetectable",
|
| 4955 |
+
"une",
|
| 4956 |
+
"ung",
|
| 4957 |
+
"unifocal",
|
| 4958 |
+
"unilateral",
|
| 4959 |
+
"unknown",
|
| 4960 |
+
"unless",
|
| 4961 |
+
"unlikely",
|
| 4962 |
+
"unmanaged",
|
| 4963 |
+
"unrelated",
|
| 4964 |
+
"unresectable",
|
| 4965 |
+
"unresolved",
|
| 4966 |
+
"unspecified",
|
| 4967 |
+
"unstable",
|
| 4968 |
+
"unsuitable",
|
| 4969 |
+
"unt",
|
| 4970 |
+
"until",
|
| 4971 |
+
"untreated",
|
| 4972 |
+
"unwilling",
|
| 4973 |
+
"up",
|
| 4974 |
+
"upon",
|
| 4975 |
+
"upper",
|
| 4976 |
+
"ura",
|
| 4977 |
+
"ure",
|
| 4978 |
+
"urine",
|
| 4979 |
+
"urologist",
|
| 4980 |
+
"urs",
|
| 4981 |
+
"ury",
|
| 4982 |
+
"us",
|
| 4983 |
+
"usamc",
|
| 4984 |
+
"use",
|
| 4985 |
+
"used",
|
| 4986 |
+
"using",
|
| 4987 |
+
"ust",
|
| 4988 |
+
"ute",
|
| 4989 |
+
"uterine",
|
| 4990 |
+
"uts",
|
| 4991 |
+
"uv",
|
| 4992 |
+
"v",
|
| 4993 |
+
"v)1.1",
|
| 4994 |
+
"v.",
|
| 4995 |
+
"v.s",
|
| 4996 |
+
"v.s.",
|
| 4997 |
+
"v.v",
|
| 4998 |
+
"v1.1",
|
| 4999 |
+
"v600e",
|
| 5000 |
+
"vHD",
|
| 5001 |
+
"v_v",
|
| 5002 |
+
"va",
|
| 5003 |
+
"va.",
|
| 5004 |
+
"vaccination",
|
| 5005 |
+
"vaccine",
|
| 5006 |
+
"val",
|
| 5007 |
+
"valacyclovir",
|
| 5008 |
+
"valid",
|
| 5009 |
+
"valproic",
|
| 5010 |
+
"value",
|
| 5011 |
+
"valve",
|
| 5012 |
+
"valvular",
|
| 5013 |
+
"var",
|
| 5014 |
+
"variable",
|
| 5015 |
+
"varicella",
|
| 5016 |
+
"various",
|
| 5017 |
+
"vascular",
|
| 5018 |
+
"vasoactive",
|
| 5019 |
+
"vasodilators",
|
| 5020 |
+
"vasopressin",
|
| 5021 |
+
"ve",
|
| 5022 |
+
"ved",
|
| 5023 |
+
"vedotin",
|
| 5024 |
+
"vein",
|
| 5025 |
+
"vel",
|
| 5026 |
+
"ven",
|
| 5027 |
+
"venous",
|
| 5028 |
+
"ventricle",
|
| 5029 |
+
"ventricular",
|
| 5030 |
+
"ventriculo",
|
| 5031 |
+
"ventriculotomy",
|
| 5032 |
+
"ver",
|
| 5033 |
+
"verified",
|
| 5034 |
+
"version",
|
| 5035 |
+
"ves",
|
| 5036 |
+
"vessels",
|
| 5037 |
+
"vestibular",
|
| 5038 |
+
"veteran",
|
| 5039 |
+
"vey",
|
| 5040 |
+
"via",
|
| 5041 |
+
"vigabatrin",
|
| 5042 |
+
"vin",
|
| 5043 |
+
"vir",
|
| 5044 |
+
"viral",
|
| 5045 |
+
"virus",
|
| 5046 |
+
"vis",
|
| 5047 |
+
"vision",
|
| 5048 |
+
"visit",
|
| 5049 |
+
"visits",
|
| 5050 |
+
"visual",
|
| 5051 |
+
"vitamin",
|
| 5052 |
+
"vitiligo",
|
| 5053 |
+
"vix",
|
| 5054 |
+
"voc",
|
| 5055 |
+
"volume",
|
| 5056 |
+
"vomiting",
|
| 5057 |
+
"von",
|
| 5058 |
+
"voriconazole",
|
| 5059 |
+
"vs",
|
| 5060 |
+
"vs.",
|
| 5061 |
+
"vt",
|
| 5062 |
+
"vulvar",
|
| 5063 |
+
"w",
|
| 5064 |
+
"w's",
|
| 5065 |
+
"w.",
|
| 5066 |
+
"w/o",
|
| 5067 |
+
"wafers",
|
| 5068 |
+
"wal",
|
| 5069 |
+
"warfarin",
|
| 5070 |
+
"was",
|
| 5071 |
+
"wash",
|
| 5072 |
+
"wash.",
|
| 5073 |
+
"washout",
|
| 5074 |
+
"way",
|
| 5075 |
+
"we",
|
| 5076 |
+
"wed",
|
| 5077 |
+
"week",
|
| 5078 |
+
"weeks",
|
| 5079 |
+
"weight",
|
| 5080 |
+
"wel",
|
| 5081 |
+
"welder",
|
| 5082 |
+
"wellbutrin",
|
| 5083 |
+
"wer",
|
| 5084 |
+
"were",
|
| 5085 |
+
"what",
|
| 5086 |
+
"what's",
|
| 5087 |
+
"what\u2019s",
|
| 5088 |
+
"when",
|
| 5089 |
+
"when's",
|
| 5090 |
+
"when\u2019s",
|
| 5091 |
+
"where",
|
| 5092 |
+
"where's",
|
| 5093 |
+
"where\u2019s",
|
| 5094 |
+
"which",
|
| 5095 |
+
"whichever",
|
| 5096 |
+
"while",
|
| 5097 |
+
"white",
|
| 5098 |
+
"who",
|
| 5099 |
+
"who's",
|
| 5100 |
+
"whom",
|
| 5101 |
+
"whose",
|
| 5102 |
+
"who\u2019s",
|
| 5103 |
+
"why",
|
| 5104 |
+
"why's",
|
| 5105 |
+
"why\u2019s",
|
| 5106 |
+
"will",
|
| 5107 |
+
"willebrand",
|
| 5108 |
+
"willing",
|
| 5109 |
+
"willingness",
|
| 5110 |
+
"window",
|
| 5111 |
+
"wires",
|
| 5112 |
+
"wis",
|
| 5113 |
+
"wis.",
|
| 5114 |
+
"with",
|
| 5115 |
+
"withdrawal",
|
| 5116 |
+
"within",
|
| 5117 |
+
"without",
|
| 5118 |
+
"wly",
|
| 5119 |
+
"wo",
|
| 5120 |
+
"wolff",
|
| 5121 |
+
"woman",
|
| 5122 |
+
"women",
|
| 5123 |
+
"worker",
|
| 5124 |
+
"working",
|
| 5125 |
+
"worse",
|
| 5126 |
+
"worsened",
|
| 5127 |
+
"wort",
|
| 5128 |
+
"would",
|
| 5129 |
+
"wound",
|
| 5130 |
+
"wrinkles",
|
| 5131 |
+
"wth",
|
| 5132 |
+
"w\u2019s",
|
| 5133 |
+
"x",
|
| 5134 |
+
"x'",
|
| 5135 |
+
"x'x",
|
| 5136 |
+
"x'xxxx",
|
| 5137 |
+
"x)d.d",
|
| 5138 |
+
"x+",
|
| 5139 |
+
"x.",
|
| 5140 |
+
"x.X",
|
| 5141 |
+
"x.d",
|
| 5142 |
+
"x.x",
|
| 5143 |
+
"x.x.",
|
| 5144 |
+
"x/x",
|
| 5145 |
+
"xD",
|
| 5146 |
+
"xDD",
|
| 5147 |
+
"xX",
|
| 5148 |
+
"xXX",
|
| 5149 |
+
"xXXX",
|
| 5150 |
+
"xXx",
|
| 5151 |
+
"xXxXX",
|
| 5152 |
+
"x^d",
|
| 5153 |
+
"x_X",
|
| 5154 |
+
"x_d",
|
| 5155 |
+
"x_x",
|
| 5156 |
+
"xd",
|
| 5157 |
+
"xd.d",
|
| 5158 |
+
"xdd",
|
| 5159 |
+
"xed",
|
| 5160 |
+
"xel",
|
| 5161 |
+
"xia",
|
| 5162 |
+
"xic",
|
| 5163 |
+
"xin",
|
| 5164 |
+
"xis",
|
| 5165 |
+
"xol",
|
| 5166 |
+
"xor",
|
| 5167 |
+
"xrt",
|
| 5168 |
+
"xx",
|
| 5169 |
+
"xx'",
|
| 5170 |
+
"xx'x",
|
| 5171 |
+
"xx'xx",
|
| 5172 |
+
"xx+",
|
| 5173 |
+
"xx.",
|
| 5174 |
+
"xxXXX",
|
| 5175 |
+
"xxXx",
|
| 5176 |
+
"xxd",
|
| 5177 |
+
"xxx",
|
| 5178 |
+
"xxx'x",
|
| 5179 |
+
"xxx(d)xxxx",
|
| 5180 |
+
"xxx/d.dd",
|
| 5181 |
+
"xxx/d.ddxd",
|
| 5182 |
+
"xxx/xx",
|
| 5183 |
+
"xxxXXX",
|
| 5184 |
+
"xxxx",
|
| 5185 |
+
"xxxx'",
|
| 5186 |
+
"xxxx'x",
|
| 5187 |
+
"xxxx(x",
|
| 5188 |
+
"xxxx)-X",
|
| 5189 |
+
"xxxx-",
|
| 5190 |
+
"xxxx-d",
|
| 5191 |
+
"xxxx/",
|
| 5192 |
+
"xxxxd",
|
| 5193 |
+
"xxxx\u2010XX",
|
| 5194 |
+
"xxxx\u2019",
|
| 5195 |
+
"xxxx\u2019x",
|
| 5196 |
+
"xxxx\u2265dxxx",
|
| 5197 |
+
"xxx\u2019x",
|
| 5198 |
+
"xx\u2019",
|
| 5199 |
+
"xx\u2019x",
|
| 5200 |
+
"xx\u2019xx",
|
| 5201 |
+
"x\u2019",
|
| 5202 |
+
"x\u2019x",
|
| 5203 |
+
"x\u2019xxxx",
|
| 5204 |
+
"x\ufe35x",
|
| 5205 |
+
"y",
|
| 5206 |
+
"y'",
|
| 5207 |
+
"y's",
|
| 5208 |
+
"y.",
|
| 5209 |
+
"year",
|
| 5210 |
+
"years",
|
| 5211 |
+
"yeast",
|
| 5212 |
+
"yed",
|
| 5213 |
+
"yolk",
|
| 5214 |
+
"york",
|
| 5215 |
+
"you",
|
| 5216 |
+
"ype",
|
| 5217 |
+
"ysm",
|
| 5218 |
+
"y\u2019",
|
| 5219 |
+
"y\u2019s",
|
| 5220 |
+
"z",
|
| 5221 |
+
"z.",
|
| 5222 |
+
"zed",
|
| 5223 |
+
"zen",
|
| 5224 |
+
"zer",
|
| 5225 |
+
"zia",
|
| 5226 |
+
"zone",
|
| 5227 |
+
"|",
|
| 5228 |
+
"}",
|
| 5229 |
+
"\u00a0",
|
| 5230 |
+
"\u00ac",
|
| 5231 |
+
"\u00ac_\u00ac",
|
| 5232 |
+
"\u00ae",
|
| 5233 |
+
"\u00af",
|
| 5234 |
+
"\u00af\\(x)/\u00af",
|
| 5235 |
+
"\u00af\\(\u30c4)/\u00af",
|
| 5236 |
+
"\u00b0",
|
| 5237 |
+
"\u00b0C.",
|
| 5238 |
+
"\u00b0F.",
|
| 5239 |
+
"\u00b0K.",
|
| 5240 |
+
"\u00b0X.",
|
| 5241 |
+
"\u00b0c.",
|
| 5242 |
+
"\u00b0f.",
|
| 5243 |
+
"\u00b0k.",
|
| 5244 |
+
"\u00b0x.",
|
| 5245 |
+
"\u00d7",
|
| 5246 |
+
"\u00e4",
|
| 5247 |
+
"\u00e4.",
|
| 5248 |
+
"\u00f6",
|
| 5249 |
+
"\u00f6.",
|
| 5250 |
+
"\u00fc",
|
| 5251 |
+
"\u00fc.",
|
| 5252 |
+
"\u03b2",
|
| 5253 |
+
"\u03b2+",
|
| 5254 |
+
"\u03b20",
|
| 5255 |
+
"\u03b2S",
|
| 5256 |
+
"\u03b2s",
|
| 5257 |
+
"\u03bc",
|
| 5258 |
+
"\u03bcL",
|
| 5259 |
+
"\u03bcM",
|
| 5260 |
+
"\u03bcl",
|
| 5261 |
+
"\u03bcm",
|
| 5262 |
+
"\u0ca0",
|
| 5263 |
+
"\u0ca0_\u0ca0",
|
| 5264 |
+
"\u0ca0\ufe35\u0ca0",
|
| 5265 |
+
"\u2010RT",
|
| 5266 |
+
"\u2014",
|
| 5267 |
+
"\u2018",
|
| 5268 |
+
"\u2018S",
|
| 5269 |
+
"\u2018X",
|
| 5270 |
+
"\u2018s",
|
| 5271 |
+
"\u2018x",
|
| 5272 |
+
"\u2019",
|
| 5273 |
+
"\u2019-(",
|
| 5274 |
+
"\u2019-)",
|
| 5275 |
+
"\u2019Cause",
|
| 5276 |
+
"\u2019Cos",
|
| 5277 |
+
"\u2019Coz",
|
| 5278 |
+
"\u2019Cuz",
|
| 5279 |
+
"\u2019S",
|
| 5280 |
+
"\u2019X",
|
| 5281 |
+
"\u2019Xxx",
|
| 5282 |
+
"\u2019Xxxxx",
|
| 5283 |
+
"\u2019am",
|
| 5284 |
+
"\u2019bout",
|
| 5285 |
+
"\u2019cause",
|
| 5286 |
+
"\u2019cos",
|
| 5287 |
+
"\u2019coz",
|
| 5288 |
+
"\u2019cuz",
|
| 5289 |
+
"\u2019d",
|
| 5290 |
+
"\u2019em",
|
| 5291 |
+
"\u2019ll",
|
| 5292 |
+
"\u2019m",
|
| 5293 |
+
"\u2019nuff",
|
| 5294 |
+
"\u2019re",
|
| 5295 |
+
"\u2019s",
|
| 5296 |
+
"\u2019ve",
|
| 5297 |
+
"\u2019x",
|
| 5298 |
+
"\u2019xx",
|
| 5299 |
+
"\u2019xxx",
|
| 5300 |
+
"\u2019xxxx",
|
| 5301 |
+
"\u2019y",
|
| 5302 |
+
"\u2019\u2019",
|
| 5303 |
+
"\u2022",
|
| 5304 |
+
"\u2264",
|
| 5305 |
+
"\u226411",
|
| 5306 |
+
"\u226414",
|
| 5307 |
+
"\u22647",
|
| 5308 |
+
"\u2264d",
|
| 5309 |
+
"\u2264dd",
|
| 5310 |
+
"\u2265",
|
| 5311 |
+
"\u22651",
|
| 5312 |
+
"\u22651.0",
|
| 5313 |
+
"\u226514",
|
| 5314 |
+
"\u226515",
|
| 5315 |
+
"\u22652.0",
|
| 5316 |
+
"\u22653",
|
| 5317 |
+
"\u2265300",
|
| 5318 |
+
"\u22655",
|
| 5319 |
+
"\u226550",
|
| 5320 |
+
"\u22655mcg",
|
| 5321 |
+
"\u2265d",
|
| 5322 |
+
"\u2265d.d",
|
| 5323 |
+
"\u2265dd",
|
| 5324 |
+
"\u2265ddd",
|
| 5325 |
+
"\u2265dxxx",
|
| 5326 |
+
"\u2501",
|
| 5327 |
+
"\u253b",
|
| 5328 |
+
"\u253b\u2501\u253b",
|
| 5329 |
+
"\u256f",
|
| 5330 |
+
"\u25a1",
|
| 5331 |
+
"\ufe35",
|
| 5332 |
+
"\uff09"
|
| 5333 |
+
]
|
medical-ner-task2/vocab/vectors
ADDED
|
Binary file (128 Bytes). View file
|
|
|
medical-ner-task2/vocab/vectors.cfg
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"mode":"default"
|
| 3 |
+
}
|