Spaces:
Running
on
Zero
Running
on
Zero
Merge into main
#1
by
mlwong
- opened
- .gitattributes +0 -2
- .gitignore +0 -2
- README.md +2 -2
- app.py +0 -169
- assets/header.html +0 -1
- assets/logo.png +0 -0
- examples.json +0 -12
- flagged/log.csv +0 -2
- models/npc-bert-best/config.json +0 -25
- models/npc-bert-best/generation_config.json +0 -5
- models/npc-bert-best/model.safetensors +0 -3
- models/npc-bert-best/special_tokens_map.json +0 -7
- models/npc-bert-best/tokenizer.json +0 -0
- models/npc-bert-best/tokenizer_config.json +0 -57
- models/npc-bert-best/training_args.bin +0 -3
- models/npc-bert-best/vocab.txt +0 -5745
- models/npc-bert-cls/config.json +0 -36
- models/npc-bert-cls/model.safetensors +0 -3
- models/npc-bert-cls/special_tokens_map.json +0 -37
- models/npc-bert-cls/tokenizer.json +0 -0
- models/npc-bert-cls/tokenizer_config.json +0 -57
- models/npc-bert-cls/training_args.bin +0 -3
- models/npc-bert-gpt2-best/added_tokens.json +0 -3
- models/npc-bert-gpt2-best/config.json +0 -186
- models/npc-bert-gpt2-best/generation_config.json +0 -7
- models/npc-bert-gpt2-best/model.safetensors +0 -3
- models/npc-bert-gpt2-best/special_tokens_map.json +0 -51
- models/npc-bert-gpt2-best/tokenizer.json +0 -0
- models/npc-bert-gpt2-best/tokenizer_config.json +0 -67
- models/npc-bert-gpt2-best/vocab.txt +0 -5744
- npc_bert_models/__init__.py +0 -0
- npc_bert_models/app_logger.py +0 -34
- npc_bert_models/cls_module.py +0 -84
- npc_bert_models/gradio_demo.py +0 -8
- npc_bert_models/mlm_module.py +0 -82
- npc_bert_models/summary_module.py +0 -82
- report_examples/NPC-report-1.txt +0 -24
- report_examples/NPC-report-2.txt +0 -28
- report_examples/benign-report-1.txt +0 -11
- report_examples/benign-report-2.txt +0 -18
- report_examples_summary/NPC-report-1.txt +0 -22
- report_examples_summary/NPC-report-2.txt +0 -25
- report_examples_summary/benign-report-1.txt +0 -9
- report_examples_summary/benign-report-2.txt +0 -15
- requirements.txt +0 -8
.gitattributes
CHANGED
@@ -33,5 +33,3 @@ 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
|
36 |
-
*safetensors filter=lfs diff=lfs merge=lfs -text
|
37 |
-
*bin 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
|
|
|
|
.gitignore
DELETED
@@ -1,2 +0,0 @@
|
|
1 |
-
*__pycache__*
|
2 |
-
*.pyc
|
|
|
|
|
|
README.md
CHANGED
@@ -4,9 +4,9 @@ emoji: 📈
|
|
4 |
colorFrom: red
|
5 |
colorTo: green
|
6 |
sdk: gradio
|
7 |
-
sdk_version: 4.
|
8 |
app_file: app.py
|
9 |
pinned: false
|
10 |
---
|
11 |
|
12 |
-
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
4 |
colorFrom: red
|
5 |
colorTo: green
|
6 |
sdk: gradio
|
7 |
+
sdk_version: 4.18.0
|
8 |
app_file: app.py
|
9 |
pinned: false
|
10 |
---
|
11 |
|
12 |
+
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
app.py
DELETED
@@ -1,169 +0,0 @@
|
|
1 |
-
from logging import PlaceHolder
|
2 |
-
import gradio as gr
|
3 |
-
import os, sys
|
4 |
-
import spaces
|
5 |
-
from npc_bert_models.gradio_demo import *
|
6 |
-
from npc_bert_models.mlm_module import NpcBertMLM
|
7 |
-
from npc_bert_models.cls_module import NpcBertCLS
|
8 |
-
from npc_bert_models.summary_module import NpcBertGPT2
|
9 |
-
from npc_bert_models.app_logger import get_logger
|
10 |
-
import json
|
11 |
-
|
12 |
-
class main_window():
|
13 |
-
logger = get_logger('main', log_level='debug')
|
14 |
-
def __init__(self):
|
15 |
-
self.interface = None
|
16 |
-
self.examples = json.load(open("examples.json", 'r'))
|
17 |
-
self.logger.info(f"Created {__class__.__name__} instance.")
|
18 |
-
|
19 |
-
def initialize(self):
|
20 |
-
#! Initialize MLM
|
21 |
-
self.logger.info("Loading MLM interface...")
|
22 |
-
self.npc_mlm = NpcBertMLM()
|
23 |
-
self.npc_mlm.load()
|
24 |
-
|
25 |
-
with gr.Blocks() as self.mlm_interface:
|
26 |
-
gr.Markdown("# Masked work prediction\n"
|
27 |
-
"Enter any sentence. Use the token `[MASK]` to see what the model predicts.\n"
|
28 |
-
"## Our examples:\n"
|
29 |
-
"|Input masked sequence|Ground-truth masked word|\n"
|
30 |
-
"|---------------------|------------------------|\n"
|
31 |
-
+ "\n".join([f"|{a}|{b}|" for a, b in zip(self.examples['mlm-inp'], self.examples['mlm-inp-GT'])]))
|
32 |
-
|
33 |
-
with gr.Row():
|
34 |
-
with gr.Column():
|
35 |
-
inp = gr.Textbox("The tumor is confined in the [MASK].", label='mlm-inp')
|
36 |
-
btn = gr.Button("Run", variant='primary')
|
37 |
-
|
38 |
-
with gr.Column():
|
39 |
-
out = gr.Label(num_top_classes=5)
|
40 |
-
|
41 |
-
|
42 |
-
gr.Examples(self.examples['mlm-inp'], inputs=inp, label='mlm-inp')
|
43 |
-
btn.click(fn=self.npc_mlm.__call__, inputs=inp, outputs=out)
|
44 |
-
inp.submit(fn=self.npc_mlm.__call__, inputs=inp, outputs=out)
|
45 |
-
|
46 |
-
#! Initialize report classification
|
47 |
-
self.logger.info("Loading BERTCLS interface...")
|
48 |
-
self.npc_cls = NpcBertCLS()
|
49 |
-
self.npc_cls.load()
|
50 |
-
|
51 |
-
with gr.Blocks() as self.cls_interface:
|
52 |
-
gr.Markdown("""
|
53 |
-
# Report discrimination
|
54 |
-
|
55 |
-
In this example we explored how the fine-tuned BERT aids downstream task. We further trained it
|
56 |
-
to do a simple task of discriminating between reports written for non-NPC patients and NPC patients.
|
57 |
-
|
58 |
-
# Disclaimer
|
59 |
-
|
60 |
-
The examples are mock reports that is created with reference to authentic reports, they do not
|
61 |
-
represent any real patients. However, it was written to be an authentic representation of NPC or
|
62 |
-
patient under investigation for suspected NPC but with negative imaging findings.
|
63 |
-
""")
|
64 |
-
|
65 |
-
with gr.Row():
|
66 |
-
with gr.Column():
|
67 |
-
inp = gr.TextArea(placeholder="Use examples at the bottom to load example text reports.")
|
68 |
-
inf = gr.File(file_types=['.txt'], label="Report file (plaintext)", show_label=True, interactive=True)
|
69 |
-
inf.upload(fn=self._set_report_file_helper, inputs=inf, outputs=inp)
|
70 |
-
inf.change(fn=self._set_report_file_helper, inputs=inf, outputs=inp)
|
71 |
-
btn = gr.Button("Run", variant='primary')
|
72 |
-
|
73 |
-
|
74 |
-
with gr.Column():
|
75 |
-
out = gr.Label(num_top_classes=2)
|
76 |
-
|
77 |
-
# gr.Examples(examples=list(self.examples['reports'].values()), inputs=inp)
|
78 |
-
gr.Examples(examples="./report_examples", inputs=inf)
|
79 |
-
btn.click(fn=self.npc_cls.__call__, inputs=inp, outputs=out)
|
80 |
-
inp.submit(fn=self.npc_cls.__call__, inputs=inp, outputs=out)
|
81 |
-
|
82 |
-
#! Initialize report conclusion generation
|
83 |
-
self.logger.info("Loading Bert-GPT2 interface...")
|
84 |
-
self.npc_summary = NpcBertGPT2()
|
85 |
-
self.npc_summary.load()
|
86 |
-
|
87 |
-
with gr.Blocks() as self.summary_interface:
|
88 |
-
gr.Markdown("""
|
89 |
-
# Report conclusion generation
|
90 |
-
|
91 |
-
In this example we explored how the fine-tunned BERT can aid summarizing the reported items and
|
92 |
-
generates a conclusion, which includes providing stages of the written reports.
|
93 |
-
|
94 |
-
> On this cloud node withonly 2 cpu, it takes ~60 second for this task.
|
95 |
-
|
96 |
-
# Disclaimer
|
97 |
-
|
98 |
-
Again, similar to the last experiement, the examples we list here are mock reports that are created
|
99 |
-
with reference to authentic reports and they do not represent any real patients. We essentiall used
|
100 |
-
the same reports as the last tab, but cropped away the "conclusion" part which we trian the network
|
101 |
-
to generate.
|
102 |
-
|
103 |
-
""")
|
104 |
-
|
105 |
-
with gr.Row():
|
106 |
-
with gr.Column():
|
107 |
-
inp = gr.TextArea(placeholder="Use examples at the bottom to load example text reports.")
|
108 |
-
inf = gr.File(file_types=['.txt'], label="Report file (plaintext)", show_label=True, interactive=True)
|
109 |
-
inf.upload(fn=self._set_report_file_helper, inputs=inf, outputs=inp)
|
110 |
-
inf.change(fn=self._set_report_file_helper, inputs=inf, outputs=inp)
|
111 |
-
btn = gr.Button("Run", variant='primary')
|
112 |
-
|
113 |
-
|
114 |
-
with gr.Column():
|
115 |
-
out = gr.TextArea(placeholder="Conclusion is generated here", interactive=False)
|
116 |
-
|
117 |
-
gr.Examples(examples="./report_examples_summary", inputs=inf)
|
118 |
-
btn.click(fn=self.npc_summary.__call__, inputs=inp, outputs=out)
|
119 |
-
inp.submit(fn=self.npc_summary.__call__, inputs=inp, outputs=out)
|
120 |
-
|
121 |
-
#! Create tab interface
|
122 |
-
with gr.Blocks() as self.interface:
|
123 |
-
# Logo
|
124 |
-
gr.HTML(open("./assets/header.html", 'r').read())
|
125 |
-
|
126 |
-
gr.Markdown("""
|
127 |
-
# Introduction
|
128 |
-
|
129 |
-
This demo aims to showcase the potential of language models fine-tuned using a meticulously curated dataset of
|
130 |
-
structured MRI radiology reports for the examination of nasopharyngeal carcinoma (NPC). Our team has a proven
|
131 |
-
track record in researching the role of AI for the early detection of NPC, having developed an AI system that
|
132 |
-
achieves high sensitivity and specificity, both exceeding 90%. However, the explainability of the system remains
|
133 |
-
a significant hurdle for clinical application. This challenge is not unique to our system but is pervasive in the
|
134 |
-
development of AI for radiology. Therefore, in this pilot study, we investigate the capacity of language models
|
135 |
-
to comprehend the context of the disease. Our aim is to explore the integration of language models into our
|
136 |
-
existing system to enhance its explainability.
|
137 |
-
|
138 |
-
# Affliations
|
139 |
-
|
140 |
-
* Dr. M.Lun Wong, Dept. Imaging and Interventional Radiology. The Chinese University of Hong Kong
|
141 |
-
|
142 |
-
# Disclaimer
|
143 |
-
|
144 |
-
This software is provided as is and it is not a clinically validated software. The authors disclaim any responsibility
|
145 |
-
arising as a consequence from using this demo.
|
146 |
-
""")
|
147 |
-
tabs = gr.TabbedInterface([self.mlm_interface, self.cls_interface, self.summary_interface],
|
148 |
-
tab_names=["Masked Language Model", "Report classification", "Report conclusion generation"])
|
149 |
-
|
150 |
-
def lauch(self):
|
151 |
-
self.interface.launch(allowed_paths=['assets'])
|
152 |
-
pass
|
153 |
-
|
154 |
-
def _set_report_file_helper(self, file_in):
|
155 |
-
try:
|
156 |
-
text = open(file_in, 'r').read()
|
157 |
-
return text
|
158 |
-
except:
|
159 |
-
print(f"Cannot read file {file_in}")
|
160 |
-
# Do nothing
|
161 |
-
pass
|
162 |
-
|
163 |
-
|
164 |
-
if __name__ == '__main__':
|
165 |
-
mw = main_window()
|
166 |
-
mw.initialize()
|
167 |
-
mw.lauch()
|
168 |
-
|
169 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/header.html
DELETED
@@ -1 +0,0 @@
|
|
1 |
-
<h1 style="border-bottom: 0.1em solid;background-image: url('/file=assets/logo.png');background-position: center right;background-size: auto 100%;background-repeat: no-repeat;padding-top:0.5em;font-size:32pt"> CUHK NPC-NLP Pilot Demo </h1>
|
|
|
|
assets/logo.png
DELETED
Binary file (64.3 kB)
|
|
examples.json
DELETED
@@ -1,12 +0,0 @@
|
|
1 |
-
{
|
2 |
-
"mlm-inp": [
|
3 |
-
"A 2cm metastatic node is present in the right upper internal jugular chain [MASK] to the vein.",
|
4 |
-
"The skull base and associated foraminal and [MASK] are unremarkable.",
|
5 |
-
"The cavernous sinus and sections of the [MASK] included on the scan are unremarkable"
|
6 |
-
],
|
7 |
-
"mlm-inp-GT": [
|
8 |
-
"posterior",
|
9 |
-
"fissures",
|
10 |
-
"cranium"
|
11 |
-
]
|
12 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
flagged/log.csv
DELETED
@@ -1,2 +0,0 @@
|
|
1 |
-
component 0,output,flag,username,timestamp
|
2 |
-
There is a [MASK] in the nasopharynx.,"[{'score': 0.9277202486991882, 'token': 168, 'token_str': 'tumour', 'sequence': 'there is a tumour in the nasopharynx.'}, {'score': 0.008515788242220879, 'token': 245, 'token_str': 'carcinoma', 'sequence': 'there is a carcinoma in the nasopharynx.'}, {'score': 0.007673648186028004, 'token': 1531, 'token_str': 'asymmetry', 'sequence': 'there is a asymmetry in the nasopharynx.'}, {'score': 0.007609423715621233, 'token': 626, 'token_str': 'hyperplasia', 'sequence': 'there is a hyperplasia in the nasopharynx.'}, {'score': 0.0075225927866995335, 'token': 871, 'token_str': 'mass', 'sequence': 'there is a mass in the nasopharynx.'}]",,,2024-02-13 19:40:36.404239
|
|
|
|
|
|
models/npc-bert-best/config.json
DELETED
@@ -1,25 +0,0 @@
|
|
1 |
-
{
|
2 |
-
"_name_or_path": "microsoft/BiomedNLP-BiomedBERT-base-uncased-abstract-fulltext",
|
3 |
-
"architectures": [
|
4 |
-
"BertForMaskedLM"
|
5 |
-
],
|
6 |
-
"attention_probs_dropout_prob": 0.1,
|
7 |
-
"classifier_dropout": null,
|
8 |
-
"hidden_act": "gelu",
|
9 |
-
"hidden_dropout_prob": 0.1,
|
10 |
-
"hidden_size": 768,
|
11 |
-
"initializer_range": 0.02,
|
12 |
-
"intermediate_size": 3072,
|
13 |
-
"layer_norm_eps": 1e-12,
|
14 |
-
"max_position_embeddings": 512,
|
15 |
-
"model_type": "bert",
|
16 |
-
"num_attention_heads": 12,
|
17 |
-
"num_hidden_layers": 12,
|
18 |
-
"pad_token_id": 0,
|
19 |
-
"position_embedding_type": "absolute",
|
20 |
-
"torch_dtype": "float32",
|
21 |
-
"transformers_version": "4.37.2",
|
22 |
-
"type_vocab_size": 2,
|
23 |
-
"use_cache": true,
|
24 |
-
"vocab_size": 30522
|
25 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
models/npc-bert-best/generation_config.json
DELETED
@@ -1,5 +0,0 @@
|
|
1 |
-
{
|
2 |
-
"_from_model_config": true,
|
3 |
-
"pad_token_id": 0,
|
4 |
-
"transformers_version": "4.37.2"
|
5 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
models/npc-bert-best/model.safetensors
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:ec20d1b1cec7c7152865f6757a492879c0ba9da788f98ec91d0bec95b2968537
|
3 |
-
size 438080896
|
|
|
|
|
|
|
|
models/npc-bert-best/special_tokens_map.json
DELETED
@@ -1,7 +0,0 @@
|
|
1 |
-
{
|
2 |
-
"cls_token": "[CLS]",
|
3 |
-
"mask_token": "[MASK]",
|
4 |
-
"pad_token": "[PAD]",
|
5 |
-
"sep_token": "[SEP]",
|
6 |
-
"unk_token": "[UNK]"
|
7 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
models/npc-bert-best/tokenizer.json
DELETED
The diff for this file is too large to render.
See raw diff
|
|
models/npc-bert-best/tokenizer_config.json
DELETED
@@ -1,57 +0,0 @@
|
|
1 |
-
{
|
2 |
-
"added_tokens_decoder": {
|
3 |
-
"0": {
|
4 |
-
"content": "[PAD]",
|
5 |
-
"lstrip": false,
|
6 |
-
"normalized": false,
|
7 |
-
"rstrip": false,
|
8 |
-
"single_word": false,
|
9 |
-
"special": true
|
10 |
-
},
|
11 |
-
"1": {
|
12 |
-
"content": "[UNK]",
|
13 |
-
"lstrip": false,
|
14 |
-
"normalized": false,
|
15 |
-
"rstrip": false,
|
16 |
-
"single_word": false,
|
17 |
-
"special": true
|
18 |
-
},
|
19 |
-
"2": {
|
20 |
-
"content": "[CLS]",
|
21 |
-
"lstrip": false,
|
22 |
-
"normalized": false,
|
23 |
-
"rstrip": false,
|
24 |
-
"single_word": false,
|
25 |
-
"special": true
|
26 |
-
},
|
27 |
-
"3": {
|
28 |
-
"content": "[SEP]",
|
29 |
-
"lstrip": false,
|
30 |
-
"normalized": false,
|
31 |
-
"rstrip": false,
|
32 |
-
"single_word": false,
|
33 |
-
"special": true
|
34 |
-
},
|
35 |
-
"4": {
|
36 |
-
"content": "[MASK]",
|
37 |
-
"lstrip": false,
|
38 |
-
"normalized": false,
|
39 |
-
"rstrip": false,
|
40 |
-
"single_word": false,
|
41 |
-
"special": true
|
42 |
-
}
|
43 |
-
},
|
44 |
-
"clean_up_tokenization_spaces": true,
|
45 |
-
"cls_token": "[CLS]",
|
46 |
-
"do_basic_tokenize": true,
|
47 |
-
"do_lower_case": true,
|
48 |
-
"mask_token": "[MASK]",
|
49 |
-
"model_max_length": 1000000000000000019884624838656,
|
50 |
-
"never_split": null,
|
51 |
-
"pad_token": "[PAD]",
|
52 |
-
"sep_token": "[SEP]",
|
53 |
-
"strip_accents": null,
|
54 |
-
"tokenize_chinese_chars": true,
|
55 |
-
"tokenizer_class": "BertTokenizer",
|
56 |
-
"unk_token": "[UNK]"
|
57 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
models/npc-bert-best/training_args.bin
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:deee75fd6b57b3902bf871073ec8284612eab39d821bfe989934ece9092bff46
|
3 |
-
size 4207
|
|
|
|
|
|
|
|
models/npc-bert-best/vocab.txt
DELETED
@@ -1,5745 +0,0 @@
|
|
1 |
-
[PAD]
|
2 |
-
[UNK]
|
3 |
-
[CLS]
|
4 |
-
[SEP]
|
5 |
-
[MASK]
|
6 |
-
"
|
7 |
-
%
|
8 |
-
&
|
9 |
-
'
|
10 |
-
(
|
11 |
-
)
|
12 |
-
*
|
13 |
-
+
|
14 |
-
,
|
15 |
-
-
|
16 |
-
.
|
17 |
-
/
|
18 |
-
0
|
19 |
-
1
|
20 |
-
2
|
21 |
-
3
|
22 |
-
4
|
23 |
-
5
|
24 |
-
6
|
25 |
-
7
|
26 |
-
8
|
27 |
-
9
|
28 |
-
:
|
29 |
-
;
|
30 |
-
<
|
31 |
-
=
|
32 |
-
>
|
33 |
-
?
|
34 |
-
[
|
35 |
-
\
|
36 |
-
a
|
37 |
-
b
|
38 |
-
c
|
39 |
-
d
|
40 |
-
e
|
41 |
-
f
|
42 |
-
g
|
43 |
-
h
|
44 |
-
i
|
45 |
-
j
|
46 |
-
k
|
47 |
-
l
|
48 |
-
m
|
49 |
-
n
|
50 |
-
o
|
51 |
-
p
|
52 |
-
q
|
53 |
-
r
|
54 |
-
s
|
55 |
-
t
|
56 |
-
u
|
57 |
-
v
|
58 |
-
w
|
59 |
-
x
|
60 |
-
y
|
61 |
-
z
|
62 |
-
~
|
63 |
-
×
|
64 |
-
–
|
65 |
-
##e
|
66 |
-
##n
|
67 |
-
##d
|
68 |
-
##r
|
69 |
-
##i
|
70 |
-
##g
|
71 |
-
##c
|
72 |
-
##u
|
73 |
-
##p
|
74 |
-
##o
|
75 |
-
##x
|
76 |
-
##m
|
77 |
-
##t
|
78 |
-
##y
|
79 |
-
##a
|
80 |
-
##s
|
81 |
-
##l
|
82 |
-
##v
|
83 |
-
##f
|
84 |
-
##b
|
85 |
-
##×
|
86 |
-
##3
|
87 |
-
##j
|
88 |
-
##k
|
89 |
-
##0
|
90 |
-
##1
|
91 |
-
##6
|
92 |
-
##h
|
93 |
-
##7
|
94 |
-
##9
|
95 |
-
##4
|
96 |
-
##q
|
97 |
-
##2
|
98 |
-
##w
|
99 |
-
##5
|
100 |
-
##z
|
101 |
-
##8
|
102 |
-
##he
|
103 |
-
the
|
104 |
-
##al
|
105 |
-
##ar
|
106 |
-
##as
|
107 |
-
##re
|
108 |
-
##er
|
109 |
-
##on
|
110 |
-
##in
|
111 |
-
in
|
112 |
-
##nd
|
113 |
-
and
|
114 |
-
##es
|
115 |
-
##or
|
116 |
-
##at
|
117 |
-
no
|
118 |
-
##ary
|
119 |
-
of
|
120 |
-
##ion
|
121 |
-
##us
|
122 |
-
##it
|
123 |
-
##id
|
124 |
-
##ph
|
125 |
-
##en
|
126 |
-
##ic
|
127 |
-
##aryn
|
128 |
-
##pharyn
|
129 |
-
##tas
|
130 |
-
##an
|
131 |
-
##opharyn
|
132 |
-
is
|
133 |
-
##ec
|
134 |
-
##os
|
135 |
-
are
|
136 |
-
##ge
|
137 |
-
there
|
138 |
-
##ter
|
139 |
-
nod
|
140 |
-
me
|
141 |
-
##um
|
142 |
-
le
|
143 |
-
##ed
|
144 |
-
##ou
|
145 |
-
##ig
|
146 |
-
##le
|
147 |
-
nas
|
148 |
-
##ing
|
149 |
-
##ul
|
150 |
-
metas
|
151 |
-
re
|
152 |
-
##igh
|
153 |
-
##ft
|
154 |
-
##ight
|
155 |
-
##geal
|
156 |
-
##ent
|
157 |
-
inv
|
158 |
-
left
|
159 |
-
##ith
|
160 |
-
with
|
161 |
-
right
|
162 |
-
nasopharyn
|
163 |
-
##is
|
164 |
-
tum
|
165 |
-
##om
|
166 |
-
##tr
|
167 |
-
##our
|
168 |
-
##ly
|
169 |
-
tumour
|
170 |
-
to
|
171 |
-
or
|
172 |
-
##il
|
173 |
-
nec
|
174 |
-
##ri
|
175 |
-
nodes
|
176 |
-
neck
|
177 |
-
sid
|
178 |
-
##ve
|
179 |
-
##per
|
180 |
-
##oid
|
181 |
-
metastas
|
182 |
-
##cl
|
183 |
-
metastases
|
184 |
-
ex
|
185 |
-
##ab
|
186 |
-
up
|
187 |
-
pos
|
188 |
-
##all
|
189 |
-
t1
|
190 |
-
##ular
|
191 |
-
un
|
192 |
-
##ial
|
193 |
-
side
|
194 |
-
con
|
195 |
-
##able
|
196 |
-
##ark
|
197 |
-
upper
|
198 |
-
t1w
|
199 |
-
##ol
|
200 |
-
##ior
|
201 |
-
##rem
|
202 |
-
##arkable
|
203 |
-
##eral
|
204 |
-
unrem
|
205 |
-
unremarkable
|
206 |
-
##ow
|
207 |
-
##ad
|
208 |
-
##ous
|
209 |
-
th
|
210 |
-
sp
|
211 |
-
par
|
212 |
-
car
|
213 |
-
##nal
|
214 |
-
ch
|
215 |
-
nasopharynx
|
216 |
-
ext
|
217 |
-
##oss
|
218 |
-
##ug
|
219 |
-
##if
|
220 |
-
##oma
|
221 |
-
##ac
|
222 |
-
##inus
|
223 |
-
sinus
|
224 |
-
invas
|
225 |
-
##ain
|
226 |
-
invasion
|
227 |
-
al
|
228 |
-
##ateral
|
229 |
-
ax
|
230 |
-
invol
|
231 |
-
##av
|
232 |
-
axial
|
233 |
-
##ant
|
234 |
-
nasopharyngeal
|
235 |
-
##tat
|
236 |
-
##ast
|
237 |
-
##tatic
|
238 |
-
metastatic
|
239 |
-
##ut
|
240 |
-
##terior
|
241 |
-
##ist
|
242 |
-
sm
|
243 |
-
small
|
244 |
-
##cin
|
245 |
-
carcin
|
246 |
-
carcinoma
|
247 |
-
t2
|
248 |
-
jug
|
249 |
-
cor
|
250 |
-
##ternal
|
251 |
-
foss
|
252 |
-
fossa
|
253 |
-
##usion
|
254 |
-
##th
|
255 |
-
jugular
|
256 |
-
inf
|
257 |
-
internal
|
258 |
-
on
|
259 |
-
cav
|
260 |
-
for
|
261 |
-
##por
|
262 |
-
##ase
|
263 |
-
##res
|
264 |
-
reg
|
265 |
-
coron
|
266 |
-
coronal
|
267 |
-
int
|
268 |
-
##rim
|
269 |
-
sc
|
270 |
-
nodal
|
271 |
-
prim
|
272 |
-
primary
|
273 |
-
region
|
274 |
-
##ding
|
275 |
-
##tery
|
276 |
-
posterior
|
277 |
-
##am
|
278 |
-
chain
|
279 |
-
wh
|
280 |
-
##ur
|
281 |
-
##cc
|
282 |
-
##ilateral
|
283 |
-
into
|
284 |
-
##ens
|
285 |
-
not
|
286 |
-
he
|
287 |
-
##ical
|
288 |
-
dist
|
289 |
-
##ate
|
290 |
-
##opharynx
|
291 |
-
distant
|
292 |
-
ptery
|
293 |
-
pteryg
|
294 |
-
retr
|
295 |
-
mid
|
296 |
-
##dent
|
297 |
-
##opharyngeal
|
298 |
-
##ied
|
299 |
-
ident
|
300 |
-
identif
|
301 |
-
##ich
|
302 |
-
which
|
303 |
-
identified
|
304 |
-
retropharyngeal
|
305 |
-
bilateral
|
306 |
-
scan
|
307 |
-
cl
|
308 |
-
sec
|
309 |
-
##sp
|
310 |
-
##vel
|
311 |
-
ear
|
312 |
-
##ue
|
313 |
-
head
|
314 |
-
level
|
315 |
-
##her
|
316 |
-
bon
|
317 |
-
de
|
318 |
-
hy
|
319 |
-
but
|
320 |
-
mri
|
321 |
-
##ther
|
322 |
-
base
|
323 |
-
##ot
|
324 |
-
##ges
|
325 |
-
involv
|
326 |
-
extens
|
327 |
-
##ine
|
328 |
-
##ull
|
329 |
-
##erv
|
330 |
-
##tion
|
331 |
-
##ax
|
332 |
-
para
|
333 |
-
##ures
|
334 |
-
st
|
335 |
-
parapharyn
|
336 |
-
##ity
|
337 |
-
##ir
|
338 |
-
parapharyngeal
|
339 |
-
en
|
340 |
-
foram
|
341 |
-
##iv
|
342 |
-
##ag
|
343 |
-
contr
|
344 |
-
ab
|
345 |
-
##ud
|
346 |
-
contrast
|
347 |
-
##end
|
348 |
-
cr
|
349 |
-
##pic
|
350 |
-
##ervical
|
351 |
-
nasal
|
352 |
-
##ym
|
353 |
-
pr
|
354 |
-
cervical
|
355 |
-
##fin
|
356 |
-
extend
|
357 |
-
su
|
358 |
-
##ation
|
359 |
-
post
|
360 |
-
fat
|
361 |
-
##age
|
362 |
-
##op
|
363 |
-
##clusion
|
364 |
-
conclusion
|
365 |
-
pre
|
366 |
-
##port
|
367 |
-
report
|
368 |
-
##ite
|
369 |
-
wall
|
370 |
-
sk
|
371 |
-
##ment
|
372 |
-
skull
|
373 |
-
##so
|
374 |
-
also
|
375 |
-
defin
|
376 |
-
cavity
|
377 |
-
be
|
378 |
-
can
|
379 |
-
##omin
|
380 |
-
an
|
381 |
-
##ition
|
382 |
-
ii
|
383 |
-
##dition
|
384 |
-
lym
|
385 |
-
lymph
|
386 |
-
hyp
|
387 |
-
##ious
|
388 |
-
##clud
|
389 |
-
##and
|
390 |
-
sus
|
391 |
-
involve
|
392 |
-
ap
|
393 |
-
##hn
|
394 |
-
##ening
|
395 |
-
##ern
|
396 |
-
cavern
|
397 |
-
involving
|
398 |
-
cavernous
|
399 |
-
other
|
400 |
-
##que
|
401 |
-
suspic
|
402 |
-
definite
|
403 |
-
##ory
|
404 |
-
tec
|
405 |
-
##hni
|
406 |
-
techni
|
407 |
-
##iss
|
408 |
-
oropharynx
|
409 |
-
technique
|
410 |
-
##out
|
411 |
-
extension
|
412 |
-
foramen
|
413 |
-
##spir
|
414 |
-
t2spir
|
415 |
-
##astoid
|
416 |
-
##bit
|
417 |
-
##orm
|
418 |
-
##itt
|
419 |
-
cliv
|
420 |
-
##ff
|
421 |
-
eff
|
422 |
-
acc
|
423 |
-
without
|
424 |
-
orbit
|
425 |
-
cran
|
426 |
-
bo
|
427 |
-
##arge
|
428 |
-
node
|
429 |
-
fin
|
430 |
-
effusion
|
431 |
-
early
|
432 |
-
suspicious
|
433 |
-
finding
|
434 |
-
canal
|
435 |
-
bones
|
436 |
-
t2w
|
437 |
-
noted
|
438 |
-
extends
|
439 |
-
##cluded
|
440 |
-
stage
|
441 |
-
findings
|
442 |
-
mus
|
443 |
-
##alat
|
444 |
-
##uc
|
445 |
-
low
|
446 |
-
##im
|
447 |
-
sinuses
|
448 |
-
##ib
|
449 |
-
##hen
|
450 |
-
pterygoid
|
451 |
-
##mpor
|
452 |
-
##mporal
|
453 |
-
sphen
|
454 |
-
##ond
|
455 |
-
aj
|
456 |
-
ajcc
|
457 |
-
lower
|
458 |
-
uic
|
459 |
-
uicc
|
460 |
-
##tions
|
461 |
-
edition
|
462 |
-
##otid
|
463 |
-
##ording
|
464 |
-
according
|
465 |
-
meas
|
466 |
-
sphenoid
|
467 |
-
##dle
|
468 |
-
middle
|
469 |
-
##alatine
|
470 |
-
fiss
|
471 |
-
second
|
472 |
-
##ong
|
473 |
-
infr
|
474 |
-
sag
|
475 |
-
##ick
|
476 |
-
##ang
|
477 |
-
thick
|
478 |
-
##ittal
|
479 |
-
sagittal
|
480 |
-
muc
|
481 |
-
thor
|
482 |
-
mastoid
|
483 |
-
regions
|
484 |
-
at
|
485 |
-
##atemporal
|
486 |
-
infratemporal
|
487 |
-
##gest
|
488 |
-
included
|
489 |
-
thorax
|
490 |
-
##ep
|
491 |
-
tumours
|
492 |
-
sat
|
493 |
-
##uration
|
494 |
-
hypopharynx
|
495 |
-
saturation
|
496 |
-
tri
|
497 |
-
thickening
|
498 |
-
triang
|
499 |
-
sections
|
500 |
-
mucos
|
501 |
-
##anc
|
502 |
-
clivus
|
503 |
-
bul
|
504 |
-
##ive
|
505 |
-
##ormal
|
506 |
-
walls
|
507 |
-
mil
|
508 |
-
crani
|
509 |
-
mild
|
510 |
-
mucosal
|
511 |
-
##ill
|
512 |
-
abut
|
513 |
-
##opalatine
|
514 |
-
##etr
|
515 |
-
##asal
|
516 |
-
sig
|
517 |
-
paran
|
518 |
-
ad
|
519 |
-
##ure
|
520 |
-
cranium
|
521 |
-
paranasal
|
522 |
-
##ob
|
523 |
-
chan
|
524 |
-
##ver
|
525 |
-
non
|
526 |
-
##spec
|
527 |
-
triangle
|
528 |
-
pterygopalatine
|
529 |
-
sh
|
530 |
-
##un
|
531 |
-
##large
|
532 |
-
enlarge
|
533 |
-
##m0
|
534 |
-
along
|
535 |
-
##cles
|
536 |
-
muscles
|
537 |
-
##ia
|
538 |
-
np
|
539 |
-
##oo
|
540 |
-
max
|
541 |
-
##low
|
542 |
-
enlarged
|
543 |
-
both
|
544 |
-
as
|
545 |
-
##oc
|
546 |
-
sub
|
547 |
-
ver
|
548 |
-
lateral
|
549 |
-
npc
|
550 |
-
roo
|
551 |
-
roof
|
552 |
-
promin
|
553 |
-
##ific
|
554 |
-
app
|
555 |
-
bulk
|
556 |
-
prominent
|
557 |
-
##te
|
558 |
-
involvement
|
559 |
-
note
|
560 |
-
##illary
|
561 |
-
##spect
|
562 |
-
aspect
|
563 |
-
##pl
|
564 |
-
signal
|
565 |
-
sided
|
566 |
-
##ap
|
567 |
-
##cm
|
568 |
-
lar
|
569 |
-
spac
|
570 |
-
petr
|
571 |
-
levels
|
572 |
-
ind
|
573 |
-
se
|
574 |
-
hyper
|
575 |
-
parotid
|
576 |
-
fe
|
577 |
-
li
|
578 |
-
this
|
579 |
-
##eter
|
580 |
-
##inate
|
581 |
-
##ance
|
582 |
-
##andib
|
583 |
-
pred
|
584 |
-
ar
|
585 |
-
predomin
|
586 |
-
##resent
|
587 |
-
##ess
|
588 |
-
##trac
|
589 |
-
##antly
|
590 |
-
abuts
|
591 |
-
gl
|
592 |
-
infer
|
593 |
-
predominantly
|
594 |
-
##amm
|
595 |
-
##lamm
|
596 |
-
inflamm
|
597 |
-
gland
|
598 |
-
inferior
|
599 |
-
bulky
|
600 |
-
di
|
601 |
-
##atory
|
602 |
-
##gh
|
603 |
-
##ough
|
604 |
-
##read
|
605 |
-
indeter
|
606 |
-
indeterm
|
607 |
-
very
|
608 |
-
##ear
|
609 |
-
spread
|
610 |
-
inflammatory
|
611 |
-
indeterminate
|
612 |
-
##own
|
613 |
-
show
|
614 |
-
##el
|
615 |
-
space
|
616 |
-
all
|
617 |
-
##asia
|
618 |
-
fissures
|
619 |
-
##ust
|
620 |
-
changes
|
621 |
-
##andibular
|
622 |
-
cm
|
623 |
-
##mm
|
624 |
-
##ral
|
625 |
-
appear
|
626 |
-
hyperpl
|
627 |
-
hyperplasia
|
628 |
-
subm
|
629 |
-
feat
|
630 |
-
measures
|
631 |
-
##normal
|
632 |
-
##ian
|
633 |
-
abnormal
|
634 |
-
features
|
635 |
-
hist
|
636 |
-
iii
|
637 |
-
submandibular
|
638 |
-
petrous
|
639 |
-
7th
|
640 |
-
effusions
|
641 |
-
down
|
642 |
-
lac
|
643 |
-
sug
|
644 |
-
##og
|
645 |
-
history
|
646 |
-
suggest
|
647 |
-
extensive
|
648 |
-
8th
|
649 |
-
it
|
650 |
-
prob
|
651 |
-
mo
|
652 |
-
min
|
653 |
-
##wi
|
654 |
-
dwi
|
655 |
-
fur
|
656 |
-
##erum
|
657 |
-
lacerum
|
658 |
-
further
|
659 |
-
canals
|
660 |
-
##aps
|
661 |
-
##osis
|
662 |
-
enh
|
663 |
-
##here
|
664 |
-
##ip
|
665 |
-
##icular
|
666 |
-
##hy
|
667 |
-
any
|
668 |
-
just
|
669 |
-
pat
|
670 |
-
t3
|
671 |
-
com
|
672 |
-
invad
|
673 |
-
lymphoid
|
674 |
-
##der
|
675 |
-
anterior
|
676 |
-
where
|
677 |
-
bony
|
678 |
-
##apsular
|
679 |
-
fl
|
680 |
-
##val
|
681 |
-
extrac
|
682 |
-
vid
|
683 |
-
vidian
|
684 |
-
##ex
|
685 |
-
due
|
686 |
-
apex
|
687 |
-
spec
|
688 |
-
specific
|
689 |
-
##dy
|
690 |
-
##ult
|
691 |
-
##unc
|
692 |
-
comp
|
693 |
-
extracapsular
|
694 |
-
nil
|
695 |
-
##iz
|
696 |
-
fissure
|
697 |
-
##unction
|
698 |
-
##oor
|
699 |
-
sup
|
700 |
-
##ra
|
701 |
-
junction
|
702 |
-
clin
|
703 |
-
chains
|
704 |
-
##ept
|
705 |
-
largest
|
706 |
-
clinical
|
707 |
-
below
|
708 |
-
med
|
709 |
-
##ew
|
710 |
-
##act
|
711 |
-
more
|
712 |
-
##ina
|
713 |
-
floor
|
714 |
-
body
|
715 |
-
##ated
|
716 |
-
fr
|
717 |
-
sl
|
718 |
-
bilaterally
|
719 |
-
##bral
|
720 |
-
foramina
|
721 |
-
by
|
722 |
-
present
|
723 |
-
##ct
|
724 |
-
##avicular
|
725 |
-
supra
|
726 |
-
slight
|
727 |
-
##clavicular
|
728 |
-
dis
|
729 |
-
##ever
|
730 |
-
how
|
731 |
-
oval
|
732 |
-
supraclavicular
|
733 |
-
however
|
734 |
-
medial
|
735 |
-
mar
|
736 |
-
tumor
|
737 |
-
alth
|
738 |
-
although
|
739 |
-
##se
|
740 |
-
slightly
|
741 |
-
##sib
|
742 |
-
possib
|
743 |
-
##ancement
|
744 |
-
##ay
|
745 |
-
enhancement
|
746 |
-
maxillary
|
747 |
-
large
|
748 |
-
##ely
|
749 |
-
normal
|
750 |
-
##tebral
|
751 |
-
ovale
|
752 |
-
maxim
|
753 |
-
cle
|
754 |
-
involves
|
755 |
-
bone
|
756 |
-
clear
|
757 |
-
##ound
|
758 |
-
##st
|
759 |
-
mult
|
760 |
-
musc
|
761 |
-
##iff
|
762 |
-
##rect
|
763 |
-
glands
|
764 |
-
direct
|
765 |
-
##ably
|
766 |
-
muscle
|
767 |
-
these
|
768 |
-
necr
|
769 |
-
##ell
|
770 |
-
cent
|
771 |
-
sides
|
772 |
-
carotid
|
773 |
-
##veral
|
774 |
-
cric
|
775 |
-
several
|
776 |
-
fol
|
777 |
-
may
|
778 |
-
cricoid
|
779 |
-
super
|
780 |
-
minor
|
781 |
-
follow
|
782 |
-
ner
|
783 |
-
##ension
|
784 |
-
lik
|
785 |
-
nerve
|
786 |
-
diff
|
787 |
-
##agn
|
788 |
-
dim
|
789 |
-
##reat
|
790 |
-
dimension
|
791 |
-
cy
|
792 |
-
##otu
|
793 |
-
maximum
|
794 |
-
cyst
|
795 |
-
##athy
|
796 |
-
##acent
|
797 |
-
rotu
|
798 |
-
##line
|
799 |
-
##jacent
|
800 |
-
##ndum
|
801 |
-
adjacent
|
802 |
-
rotundum
|
803 |
-
##til
|
804 |
-
cartil
|
805 |
-
probably
|
806 |
-
likely
|
807 |
-
##tain
|
808 |
-
##opathy
|
809 |
-
##ung
|
810 |
-
cartilage
|
811 |
-
deep
|
812 |
-
##omax
|
813 |
-
##omaxillary
|
814 |
-
##aden
|
815 |
-
pterygomaxillary
|
816 |
-
t3n
|
817 |
-
lung
|
818 |
-
cons
|
819 |
-
from
|
820 |
-
great
|
821 |
-
bor
|
822 |
-
##adenopathy
|
823 |
-
border
|
824 |
-
apic
|
825 |
-
t4
|
826 |
-
lymphadenopathy
|
827 |
-
##iple
|
828 |
-
multiple
|
829 |
-
apices
|
830 |
-
##loss
|
831 |
-
##ost
|
832 |
-
##cliv
|
833 |
-
##ogloss
|
834 |
-
##oglossal
|
835 |
-
mat
|
836 |
-
##aging
|
837 |
-
greater
|
838 |
-
##clival
|
839 |
-
that
|
840 |
-
gen
|
841 |
-
general
|
842 |
-
hypoglossal
|
843 |
-
##uring
|
844 |
-
measuring
|
845 |
-
##ld
|
846 |
-
cranial
|
847 |
-
##reening
|
848 |
-
screening
|
849 |
-
fossae
|
850 |
-
new
|
851 |
-
so
|
852 |
-
change
|
853 |
-
##onent
|
854 |
-
##ormed
|
855 |
-
component
|
856 |
-
staging
|
857 |
-
invades
|
858 |
-
addition
|
859 |
-
superior
|
860 |
-
t1n
|
861 |
-
spine
|
862 |
-
mas
|
863 |
-
sit
|
864 |
-
sept
|
865 |
-
clival
|
866 |
-
##ose
|
867 |
-
orbital
|
868 |
-
following
|
869 |
-
septum
|
870 |
-
##ould
|
871 |
-
prever
|
872 |
-
mass
|
873 |
-
prevertebral
|
874 |
-
lies
|
875 |
-
##row
|
876 |
-
##ient
|
877 |
-
##ual
|
878 |
-
patient
|
879 |
-
##ized
|
880 |
-
soft
|
881 |
-
most
|
882 |
-
possible
|
883 |
-
generalized
|
884 |
-
sites
|
885 |
-
##uding
|
886 |
-
##red
|
887 |
-
matt
|
888 |
-
lob
|
889 |
-
incl
|
890 |
-
including
|
891 |
-
suggested
|
892 |
-
pal
|
893 |
-
##ger
|
894 |
-
iv
|
895 |
-
per
|
896 |
-
va
|
897 |
-
##ons
|
898 |
-
tiss
|
899 |
-
unilateral
|
900 |
-
num
|
901 |
-
##ease
|
902 |
-
##2m0
|
903 |
-
##ially
|
904 |
-
larger
|
905 |
-
dur
|
906 |
-
disease
|
907 |
-
enc
|
908 |
-
##ocal
|
909 |
-
shows
|
910 |
-
##omastoid
|
911 |
-
##use
|
912 |
-
##enm
|
913 |
-
ros
|
914 |
-
rosenm
|
915 |
-
##ule
|
916 |
-
stud
|
917 |
-
study
|
918 |
-
rec
|
919 |
-
rep
|
920 |
-
close
|
921 |
-
ca
|
922 |
-
ple
|
923 |
-
wr
|
924 |
-
diagn
|
925 |
-
marrow
|
926 |
-
nodule
|
927 |
-
informed
|
928 |
-
lobe
|
929 |
-
represent
|
930 |
-
##sy
|
931 |
-
##ome
|
932 |
-
consent
|
933 |
-
extending
|
934 |
-
probable
|
935 |
-
##1m0
|
936 |
-
necrosis
|
937 |
-
##itten
|
938 |
-
inferiorly
|
939 |
-
written
|
940 |
-
##metr
|
941 |
-
##ymmetr
|
942 |
-
mark
|
943 |
-
thr
|
944 |
-
marked
|
945 |
-
##ross
|
946 |
-
rem
|
947 |
-
through
|
948 |
-
##moid
|
949 |
-
##ases
|
950 |
-
##imal
|
951 |
-
borderline
|
952 |
-
confin
|
953 |
-
some
|
954 |
-
##ately
|
955 |
-
aden
|
956 |
-
##yr
|
957 |
-
appears
|
958 |
-
##ogen
|
959 |
-
##iop
|
960 |
-
##ature
|
961 |
-
##thmoid
|
962 |
-
measure
|
963 |
-
artery
|
964 |
-
ethmoid
|
965 |
-
im
|
966 |
-
##eous
|
967 |
-
minimal
|
968 |
-
biop
|
969 |
-
m0
|
970 |
-
##ove
|
971 |
-
preclival
|
972 |
-
confined
|
973 |
-
nature
|
974 |
-
tons
|
975 |
-
part
|
976 |
-
##et
|
977 |
-
palate
|
978 |
-
biopsy
|
979 |
-
ot
|
980 |
-
involved
|
981 |
-
patc
|
982 |
-
t4n
|
983 |
-
##yroid
|
984 |
-
otomastoid
|
985 |
-
well
|
986 |
-
heter
|
987 |
-
clus
|
988 |
-
patchy
|
989 |
-
do
|
990 |
-
res
|
991 |
-
##od
|
992 |
-
##inal
|
993 |
-
heterogen
|
994 |
-
cluster
|
995 |
-
ct
|
996 |
-
vb
|
997 |
-
react
|
998 |
-
anteriorly
|
999 |
-
remain
|
1000 |
-
reactive
|
1001 |
-
case
|
1002 |
-
tonsil
|
1003 |
-
##ch
|
1004 |
-
excluded
|
1005 |
-
##ade
|
1006 |
-
ha
|
1007 |
-
##erous
|
1008 |
-
##iltr
|
1009 |
-
##uller
|
1010 |
-
siz
|
1011 |
-
infiltr
|
1012 |
-
marg
|
1013 |
-
numerous
|
1014 |
-
rosenmuller
|
1015 |
-
##nific
|
1016 |
-
##cer
|
1017 |
-
##cept
|
1018 |
-
thyroid
|
1019 |
-
signific
|
1020 |
-
above
|
1021 |
-
diffuse
|
1022 |
-
size
|
1023 |
-
gross
|
1024 |
-
does
|
1025 |
-
margin
|
1026 |
-
over
|
1027 |
-
tissue
|
1028 |
-
please
|
1029 |
-
##ile
|
1030 |
-
made
|
1031 |
-
metastasis
|
1032 |
-
posteriorly
|
1033 |
-
##eping
|
1034 |
-
adenoid
|
1035 |
-
ke
|
1036 |
-
keeping
|
1037 |
-
main
|
1038 |
-
site
|
1039 |
-
around
|
1040 |
-
dura
|
1041 |
-
##usual
|
1042 |
-
area
|
1043 |
-
unusual
|
1044 |
-
cann
|
1045 |
-
cannot
|
1046 |
-
c1
|
1047 |
-
palatine
|
1048 |
-
##ro
|
1049 |
-
uncer
|
1050 |
-
while
|
1051 |
-
uncertain
|
1052 |
-
except
|
1053 |
-
pet
|
1054 |
-
high
|
1055 |
-
len
|
1056 |
-
##gth
|
1057 |
-
cont
|
1058 |
-
length
|
1059 |
-
within
|
1060 |
-
central
|
1061 |
-
heterogeneous
|
1062 |
-
br
|
1063 |
-
ph
|
1064 |
-
##iew
|
1065 |
-
suggesting
|
1066 |
-
pharyn
|
1067 |
-
bases
|
1068 |
-
##ran
|
1069 |
-
mainly
|
1070 |
-
espec
|
1071 |
-
especially
|
1072 |
-
##ere
|
1073 |
-
##ach
|
1074 |
-
proc
|
1075 |
-
matted
|
1076 |
-
process
|
1077 |
-
##les
|
1078 |
-
spinal
|
1079 |
-
##ache
|
1080 |
-
diagnosis
|
1081 |
-
##otic
|
1082 |
-
mm
|
1083 |
-
##0m0
|
1084 |
-
spir
|
1085 |
-
air
|
1086 |
-
##ting
|
1087 |
-
intrac
|
1088 |
-
view
|
1089 |
-
cong
|
1090 |
-
pres
|
1091 |
-
##vious
|
1092 |
-
##ymmetrical
|
1093 |
-
have
|
1094 |
-
intracran
|
1095 |
-
##lom
|
1096 |
-
than
|
1097 |
-
enhanc
|
1098 |
-
conglom
|
1099 |
-
conglomer
|
1100 |
-
ve
|
1101 |
-
##ies
|
1102 |
-
laterally
|
1103 |
-
intracranial
|
1104 |
-
ret
|
1105 |
-
deg
|
1106 |
-
les
|
1107 |
-
spar
|
1108 |
-
lesion
|
1109 |
-
##oan
|
1110 |
-
vein
|
1111 |
-
could
|
1112 |
-
she
|
1113 |
-
##rel
|
1114 |
-
##ath
|
1115 |
-
choan
|
1116 |
-
remainder
|
1117 |
-
full
|
1118 |
-
focal
|
1119 |
-
##ty
|
1120 |
-
##enc
|
1121 |
-
correl
|
1122 |
-
fill
|
1123 |
-
necrotic
|
1124 |
-
centred
|
1125 |
-
has
|
1126 |
-
loc
|
1127 |
-
##ention
|
1128 |
-
access
|
1129 |
-
abutting
|
1130 |
-
appro
|
1131 |
-
enhancing
|
1132 |
-
##xim
|
1133 |
-
##ages
|
1134 |
-
##asc
|
1135 |
-
##ect
|
1136 |
-
##tric
|
1137 |
-
##ll
|
1138 |
-
retention
|
1139 |
-
approxim
|
1140 |
-
approximately
|
1141 |
-
##ural
|
1142 |
-
none
|
1143 |
-
images
|
1144 |
-
brain
|
1145 |
-
accessory
|
1146 |
-
##oph
|
1147 |
-
##qu
|
1148 |
-
they
|
1149 |
-
##ard
|
1150 |
-
triangles
|
1151 |
-
significance
|
1152 |
-
op
|
1153 |
-
infiltration
|
1154 |
-
cell
|
1155 |
-
ob
|
1156 |
-
##emporal
|
1157 |
-
##fact
|
1158 |
-
secre
|
1159 |
-
##tefact
|
1160 |
-
artefact
|
1161 |
-
long
|
1162 |
-
vol
|
1163 |
-
##ume
|
1164 |
-
##clude
|
1165 |
-
directly
|
1166 |
-
sheath
|
1167 |
-
cells
|
1168 |
-
volume
|
1169 |
-
scl
|
1170 |
-
##ging
|
1171 |
-
##ort
|
1172 |
-
petro
|
1173 |
-
scler
|
1174 |
-
c2
|
1175 |
-
palat
|
1176 |
-
##air
|
1177 |
-
bulges
|
1178 |
-
##em
|
1179 |
-
##gether
|
1180 |
-
extr
|
1181 |
-
magn
|
1182 |
-
together
|
1183 |
-
midline
|
1184 |
-
previous
|
1185 |
-
mildly
|
1186 |
-
seen
|
1187 |
-
cysts
|
1188 |
-
loss
|
1189 |
-
##ini
|
1190 |
-
##itary
|
1191 |
-
matting
|
1192 |
-
tu
|
1193 |
-
##ont
|
1194 |
-
suspicion
|
1195 |
-
bulging
|
1196 |
-
##plac
|
1197 |
-
appearance
|
1198 |
-
secretions
|
1199 |
-
tub
|
1200 |
-
##tic
|
1201 |
-
inc
|
1202 |
-
##ign
|
1203 |
-
vertebral
|
1204 |
-
recess
|
1205 |
-
petroclival
|
1206 |
-
magnum
|
1207 |
-
fasc
|
1208 |
-
pit
|
1209 |
-
##uitary
|
1210 |
-
##sess
|
1211 |
-
##3m0
|
1212 |
-
assess
|
1213 |
-
choana
|
1214 |
-
palatini
|
1215 |
-
pituitary
|
1216 |
-
3cm
|
1217 |
-
symmetrical
|
1218 |
-
intr
|
1219 |
-
fascia
|
1220 |
-
fair
|
1221 |
-
n1
|
1222 |
-
vel
|
1223 |
-
##mental
|
1224 |
-
located
|
1225 |
-
sclerosis
|
1226 |
-
fairly
|
1227 |
-
veli
|
1228 |
-
2cm
|
1229 |
-
##x1
|
1230 |
-
##ances
|
1231 |
-
appearances
|
1232 |
-
encase
|
1233 |
-
##ence
|
1234 |
-
spared
|
1235 |
-
##ophy
|
1236 |
-
fs
|
1237 |
-
##ven
|
1238 |
-
should
|
1239 |
-
superiorly
|
1240 |
-
degr
|
1241 |
-
tr
|
1242 |
-
tur
|
1243 |
-
##icult
|
1244 |
-
##ensity
|
1245 |
-
##erved
|
1246 |
-
difficult
|
1247 |
-
newly
|
1248 |
-
preserved
|
1249 |
-
5cm
|
1250 |
-
v3
|
1251 |
-
##ore
|
1252 |
-
##ilar
|
1253 |
-
axis
|
1254 |
-
##ineural
|
1255 |
-
turb
|
1256 |
-
temporal
|
1257 |
-
##uous
|
1258 |
-
##astric
|
1259 |
-
##ator
|
1260 |
-
caus
|
1261 |
-
correlation
|
1262 |
-
##ered
|
1263 |
-
##iated
|
1264 |
-
poster
|
1265 |
-
##ongue
|
1266 |
-
perineural
|
1267 |
-
degrad
|
1268 |
-
por
|
1269 |
-
##arotid
|
1270 |
-
##tern
|
1271 |
-
##igastric
|
1272 |
-
fatty
|
1273 |
-
##uct
|
1274 |
-
spaces
|
1275 |
-
highly
|
1276 |
-
##nt
|
1277 |
-
##ental
|
1278 |
-
defined
|
1279 |
-
invade
|
1280 |
-
t3n2m0
|
1281 |
-
tongue
|
1282 |
-
und
|
1283 |
-
##ates
|
1284 |
-
intensity
|
1285 |
-
pro
|
1286 |
-
contin
|
1287 |
-
##lying
|
1288 |
-
jugul
|
1289 |
-
displac
|
1290 |
-
degraded
|
1291 |
-
portion
|
1292 |
-
##ues
|
1293 |
-
few
|
1294 |
-
abnormality
|
1295 |
-
invaded
|
1296 |
-
##ontal
|
1297 |
-
6cm
|
1298 |
-
po
|
1299 |
-
vess
|
1300 |
-
##fore
|
1301 |
-
short
|
1302 |
-
submental
|
1303 |
-
see
|
1304 |
-
tonsils
|
1305 |
-
##aches
|
1306 |
-
vessel
|
1307 |
-
pl
|
1308 |
-
exclude
|
1309 |
-
t1n0m0
|
1310 |
-
particular
|
1311 |
-
pharyngeal
|
1312 |
-
jugulod
|
1313 |
-
foc
|
1314 |
-
##int
|
1315 |
-
##osed
|
1316 |
-
rel
|
1317 |
-
intact
|
1318 |
-
##udal
|
1319 |
-
longus
|
1320 |
-
jugulodigastric
|
1321 |
-
retain
|
1322 |
-
oropharyngeal
|
1323 |
-
being
|
1324 |
-
possibly
|
1325 |
-
tin
|
1326 |
-
##ative
|
1327 |
-
therefore
|
1328 |
-
##ility
|
1329 |
-
##ack
|
1330 |
-
regard
|
1331 |
-
recent
|
1332 |
-
regarded
|
1333 |
-
eval
|
1334 |
-
sur
|
1335 |
-
ul
|
1336 |
-
represents
|
1337 |
-
rest
|
1338 |
-
evalu
|
1339 |
-
7cm
|
1340 |
-
cere
|
1341 |
-
n2
|
1342 |
-
##vator
|
1343 |
-
##ities
|
1344 |
-
levator
|
1345 |
-
##ress
|
1346 |
-
iia
|
1347 |
-
t3n1m0
|
1348 |
-
conglomeration
|
1349 |
-
end
|
1350 |
-
occ
|
1351 |
-
round
|
1352 |
-
tip
|
1353 |
-
##ased
|
1354 |
-
contain
|
1355 |
-
orbits
|
1356 |
-
invading
|
1357 |
-
disc
|
1358 |
-
diagnosed
|
1359 |
-
opac
|
1360 |
-
tiny
|
1361 |
-
asymmetr
|
1362 |
-
moder
|
1363 |
-
partially
|
1364 |
-
particularly
|
1365 |
-
if
|
1366 |
-
mer
|
1367 |
-
##ire
|
1368 |
-
##tire
|
1369 |
-
entire
|
1370 |
-
dural
|
1371 |
-
retained
|
1372 |
-
moderate
|
1373 |
-
eust
|
1374 |
-
mal
|
1375 |
-
##pect
|
1376 |
-
##ail
|
1377 |
-
t2n
|
1378 |
-
frontal
|
1379 |
-
additional
|
1380 |
-
tissues
|
1381 |
-
##achian
|
1382 |
-
under
|
1383 |
-
eustachian
|
1384 |
-
malign
|
1385 |
-
10
|
1386 |
-
2m0
|
1387 |
-
##asilar
|
1388 |
-
reaches
|
1389 |
-
filling
|
1390 |
-
extra
|
1391 |
-
encasement
|
1392 |
-
evaluation
|
1393 |
-
ev
|
1394 |
-
str
|
1395 |
-
##ciated
|
1396 |
-
##x2
|
1397 |
-
##asound
|
1398 |
-
##entr
|
1399 |
-
##trasound
|
1400 |
-
##olateral
|
1401 |
-
incid
|
1402 |
-
ultrasound
|
1403 |
-
mandib
|
1404 |
-
v2
|
1405 |
-
##ber
|
1406 |
-
##iter
|
1407 |
-
reach
|
1408 |
-
one
|
1409 |
-
##ense
|
1410 |
-
tube
|
1411 |
-
##intense
|
1412 |
-
incidental
|
1413 |
-
mandible
|
1414 |
-
4cm
|
1415 |
-
prot
|
1416 |
-
caudal
|
1417 |
-
pharyng
|
1418 |
-
processes
|
1419 |
-
conglomerate
|
1420 |
-
##ise
|
1421 |
-
extent
|
1422 |
-
##obasilar
|
1423 |
-
possibility
|
1424 |
-
perf
|
1425 |
-
causing
|
1426 |
-
malignant
|
1427 |
-
evid
|
1428 |
-
pharyngobasilar
|
1429 |
-
12
|
1430 |
-
tens
|
1431 |
-
##uid
|
1432 |
-
##osc
|
1433 |
-
only
|
1434 |
-
form
|
1435 |
-
scf
|
1436 |
-
hem
|
1437 |
-
##sociated
|
1438 |
-
associated
|
1439 |
-
abnormalities
|
1440 |
-
##odular
|
1441 |
-
obs
|
1442 |
-
proven
|
1443 |
-
underlying
|
1444 |
-
performed
|
1445 |
-
tensor
|
1446 |
-
1cm
|
1447 |
-
ic
|
1448 |
-
ne
|
1449 |
-
##ring
|
1450 |
-
##edi
|
1451 |
-
##lete
|
1452 |
-
adv
|
1453 |
-
##ocol
|
1454 |
-
compress
|
1455 |
-
t1n1m0
|
1456 |
-
perip
|
1457 |
-
number
|
1458 |
-
protocol
|
1459 |
-
ln
|
1460 |
-
less
|
1461 |
-
mot
|
1462 |
-
##pos
|
1463 |
-
##01
|
1464 |
-
exophy
|
1465 |
-
apical
|
1466 |
-
complete
|
1467 |
-
endosc
|
1468 |
-
entirely
|
1469 |
-
ica
|
1470 |
-
exophytic
|
1471 |
-
cc
|
1472 |
-
mec
|
1473 |
-
##wise
|
1474 |
-
##arct
|
1475 |
-
##ules
|
1476 |
-
infarct
|
1477 |
-
otherwise
|
1478 |
-
suggestive
|
1479 |
-
maximal
|
1480 |
-
centered
|
1481 |
-
posterolateral
|
1482 |
-
related
|
1483 |
-
contains
|
1484 |
-
8mm
|
1485 |
-
ac
|
1486 |
-
equ
|
1487 |
-
n0
|
1488 |
-
##fic
|
1489 |
-
##kel
|
1490 |
-
##inodular
|
1491 |
-
##ital
|
1492 |
-
nodules
|
1493 |
-
##ised
|
1494 |
-
##ising
|
1495 |
-
exp
|
1496 |
-
smaller
|
1497 |
-
scar
|
1498 |
-
##amus
|
1499 |
-
##ivocal
|
1500 |
-
##anced
|
1501 |
-
##ification
|
1502 |
-
compar
|
1503 |
-
multinodular
|
1504 |
-
superfic
|
1505 |
-
encases
|
1506 |
-
throughout
|
1507 |
-
significant
|
1508 |
-
evidence
|
1509 |
-
advanced
|
1510 |
-
motion
|
1511 |
-
meckel
|
1512 |
-
equivocal
|
1513 |
-
8cm
|
1514 |
-
imm
|
1515 |
-
ins
|
1516 |
-
##astic
|
1517 |
-
sphenopalatine
|
1518 |
-
##epar
|
1519 |
-
mucosa
|
1520 |
-
t1n2m0
|
1521 |
-
rounded
|
1522 |
-
##ediately
|
1523 |
-
scarring
|
1524 |
-
immediately
|
1525 |
-
red
|
1526 |
-
##×2
|
1527 |
-
##reg
|
1528 |
-
##inates
|
1529 |
-
##aparotid
|
1530 |
-
fluid
|
1531 |
-
##ema
|
1532 |
-
asymmetry
|
1533 |
-
obstr
|
1534 |
-
5mm
|
1535 |
-
fav
|
1536 |
-
ir
|
1537 |
-
ib
|
1538 |
-
stern
|
1539 |
-
ts
|
1540 |
-
##round
|
1541 |
-
##tle
|
1542 |
-
##rete
|
1543 |
-
includ
|
1544 |
-
##itis
|
1545 |
-
##lyp
|
1546 |
-
such
|
1547 |
-
subtle
|
1548 |
-
cave
|
1549 |
-
assessment
|
1550 |
-
intraparotid
|
1551 |
-
turbinate
|
1552 |
-
turbinates
|
1553 |
-
continuous
|
1554 |
-
polyp
|
1555 |
-
discrete
|
1556 |
-
##regular
|
1557 |
-
irregular
|
1558 |
-
includes
|
1559 |
-
3n
|
1560 |
-
rat
|
1561 |
-
##nown
|
1562 |
-
##×3
|
1563 |
-
##idual
|
1564 |
-
cord
|
1565 |
-
cranioc
|
1566 |
-
enlargement
|
1567 |
-
cystic
|
1568 |
-
t4n2m0
|
1569 |
-
##acheal
|
1570 |
-
occip
|
1571 |
-
opacification
|
1572 |
-
merges
|
1573 |
-
superficial
|
1574 |
-
rather
|
1575 |
-
7mm
|
1576 |
-
aer
|
1577 |
-
des
|
1578 |
-
ramus
|
1579 |
-
##ide
|
1580 |
-
conf
|
1581 |
-
##ibr
|
1582 |
-
hyperintense
|
1583 |
-
arch
|
1584 |
-
##erent
|
1585 |
-
intra
|
1586 |
-
ag
|
1587 |
-
ben
|
1588 |
-
was
|
1589 |
-
##ted
|
1590 |
-
##ful
|
1591 |
-
##ating
|
1592 |
-
##oup
|
1593 |
-
##omy
|
1594 |
-
external
|
1595 |
-
condy
|
1596 |
-
retros
|
1597 |
-
##opy
|
1598 |
-
##opl
|
1599 |
-
clinically
|
1600 |
-
##odal
|
1601 |
-
surround
|
1602 |
-
6mm
|
1603 |
-
fn
|
1604 |
-
known
|
1605 |
-
##racheal
|
1606 |
-
##atracheal
|
1607 |
-
##idomastoid
|
1608 |
-
areas
|
1609 |
-
##leidomastoid
|
1610 |
-
##isp
|
1611 |
-
paratracheal
|
1612 |
-
##ocleidomastoid
|
1613 |
-
lie
|
1614 |
-
incre
|
1615 |
-
cerebral
|
1616 |
-
##entric
|
1617 |
-
periparotid
|
1618 |
-
endoscopy
|
1619 |
-
sternocleidomastoid
|
1620 |
-
11
|
1621 |
-
back
|
1622 |
-
fast
|
1623 |
-
fibr
|
1624 |
-
nerv
|
1625 |
-
out
|
1626 |
-
ra
|
1627 |
-
rim
|
1628 |
-
would
|
1629 |
-
##ank
|
1630 |
-
##olog
|
1631 |
-
thin
|
1632 |
-
those
|
1633 |
-
det
|
1634 |
-
depos
|
1635 |
-
cross
|
1636 |
-
been
|
1637 |
-
asymmetrical
|
1638 |
-
frank
|
1639 |
-
consid
|
1640 |
-
consist
|
1641 |
-
haem
|
1642 |
-
correlate
|
1643 |
-
extran
|
1644 |
-
foci
|
1645 |
-
focus
|
1646 |
-
##pective
|
1647 |
-
completely
|
1648 |
-
favour
|
1649 |
-
occipital
|
1650 |
-
nerves
|
1651 |
-
deposit
|
1652 |
-
13
|
1653 |
-
c3
|
1654 |
-
local
|
1655 |
-
tor
|
1656 |
-
us
|
1657 |
-
##ning
|
1658 |
-
##ying
|
1659 |
-
##bed
|
1660 |
-
##4mm
|
1661 |
-
white
|
1662 |
-
iib
|
1663 |
-
sequ
|
1664 |
-
supr
|
1665 |
-
matter
|
1666 |
-
t4n1m0
|
1667 |
-
contig
|
1668 |
-
extranodal
|
1669 |
-
line
|
1670 |
-
ma
|
1671 |
-
##mend
|
1672 |
-
##most
|
1673 |
-
indent
|
1674 |
-
##enous
|
1675 |
-
##ommend
|
1676 |
-
almost
|
1677 |
-
##ameter
|
1678 |
-
criter
|
1679 |
-
reporting
|
1680 |
-
diameter
|
1681 |
-
encased
|
1682 |
-
recommend
|
1683 |
-
residual
|
1684 |
-
overall
|
1685 |
-
continu
|
1686 |
-
again
|
1687 |
-
fnac
|
1688 |
-
contiguous
|
1689 |
-
criteria
|
1690 |
-
0cm
|
1691 |
-
ed
|
1692 |
-
stat
|
1693 |
-
venous
|
1694 |
-
##icated
|
1695 |
-
##vement
|
1696 |
-
subc
|
1697 |
-
##tex
|
1698 |
-
movement
|
1699 |
-
t3n1
|
1700 |
-
filled
|
1701 |
-
track
|
1702 |
-
hemisp
|
1703 |
-
across
|
1704 |
-
expand
|
1705 |
-
9cm
|
1706 |
-
c5
|
1707 |
-
capsular
|
1708 |
-
den
|
1709 |
-
ill
|
1710 |
-
n3
|
1711 |
-
##ius
|
1712 |
-
##ioma
|
1713 |
-
##pical
|
1714 |
-
##tical
|
1715 |
-
##ause
|
1716 |
-
##bra
|
1717 |
-
##5mm
|
1718 |
-
include
|
1719 |
-
##est
|
1720 |
-
##icul
|
1721 |
-
##trophy
|
1722 |
-
##olar
|
1723 |
-
verte
|
1724 |
-
arter
|
1725 |
-
foraminae
|
1726 |
-
presum
|
1727 |
-
10mm
|
1728 |
-
torus
|
1729 |
-
denerv
|
1730 |
-
vertebra
|
1731 |
-
bec
|
1732 |
-
dil
|
1733 |
-
gr
|
1734 |
-
nar
|
1735 |
-
##cri
|
1736 |
-
##ste
|
1737 |
-
##ener
|
1738 |
-
##aneous
|
1739 |
-
##ount
|
1740 |
-
identify
|
1741 |
-
##uell
|
1742 |
-
bet
|
1743 |
-
medially
|
1744 |
-
t3n3m0
|
1745 |
-
rosenmuell
|
1746 |
-
degener
|
1747 |
-
obvious
|
1748 |
-
pole
|
1749 |
-
cereb
|
1750 |
-
insepar
|
1751 |
-
retrospective
|
1752 |
-
consistent
|
1753 |
-
linear
|
1754 |
-
continuity
|
1755 |
-
status
|
1756 |
-
arteries
|
1757 |
-
denervation
|
1758 |
-
narrow
|
1759 |
-
##cribed
|
1760 |
-
rosenmueller
|
1761 |
-
inseparable
|
1762 |
-
am
|
1763 |
-
dri
|
1764 |
-
ventric
|
1765 |
-
##up
|
1766 |
-
##mon
|
1767 |
-
##to
|
1768 |
-
##ypical
|
1769 |
-
nodular
|
1770 |
-
##utaneous
|
1771 |
-
arising
|
1772 |
-
generalised
|
1773 |
-
periv
|
1774 |
-
clusters
|
1775 |
-
benign
|
1776 |
-
subcutaneous
|
1777 |
-
because
|
1778 |
-
cerebell
|
1779 |
-
driven
|
1780 |
-
3m0
|
1781 |
-
9mm
|
1782 |
-
duct
|
1783 |
-
man
|
1784 |
-
oed
|
1785 |
-
sim
|
1786 |
-
##iast
|
1787 |
-
##x3
|
1788 |
-
##6mm
|
1789 |
-
##arius
|
1790 |
-
inter
|
1791 |
-
##ace
|
1792 |
-
onto
|
1793 |
-
hypopl
|
1794 |
-
patent
|
1795 |
-
mediast
|
1796 |
-
adenoma
|
1797 |
-
partial
|
1798 |
-
choanal
|
1799 |
-
##ences
|
1800 |
-
##llar
|
1801 |
-
tubarius
|
1802 |
-
displacing
|
1803 |
-
##ails
|
1804 |
-
infarcts
|
1805 |
-
compared
|
1806 |
-
obstruct
|
1807 |
-
polypoid
|
1808 |
-
condyle
|
1809 |
-
##ology
|
1810 |
-
details
|
1811 |
-
considered
|
1812 |
-
sequences
|
1813 |
-
recommended
|
1814 |
-
group
|
1815 |
-
many
|
1816 |
-
oedema
|
1817 |
-
gang
|
1818 |
-
hard
|
1819 |
-
loo
|
1820 |
-
pp
|
1821 |
-
poor
|
1822 |
-
via
|
1823 |
-
were
|
1824 |
-
##een
|
1825 |
-
##ce
|
1826 |
-
##jor
|
1827 |
-
##ween
|
1828 |
-
##ans
|
1829 |
-
##ection
|
1830 |
-
##osely
|
1831 |
-
closely
|
1832 |
-
##illa
|
1833 |
-
shap
|
1834 |
-
palsy
|
1835 |
-
image
|
1836 |
-
t4n3m0
|
1837 |
-
overlying
|
1838 |
-
sparing
|
1839 |
-
displace
|
1840 |
-
aerated
|
1841 |
-
surrounding
|
1842 |
-
major
|
1843 |
-
between
|
1844 |
-
degenerative
|
1845 |
-
similar
|
1846 |
-
gangl
|
1847 |
-
look
|
1848 |
-
aur
|
1849 |
-
dx
|
1850 |
-
lying
|
1851 |
-
sal
|
1852 |
-
##rh
|
1853 |
-
##ium
|
1854 |
-
orific
|
1855 |
-
##ivary
|
1856 |
-
extraction
|
1857 |
-
t3n2
|
1858 |
-
heterogenous
|
1859 |
-
remains
|
1860 |
-
plan
|
1861 |
-
strip
|
1862 |
-
neur
|
1863 |
-
posterolaterally
|
1864 |
-
craniocervical
|
1865 |
-
described
|
1866 |
-
indenting
|
1867 |
-
hypoplastic
|
1868 |
-
polypoidal
|
1869 |
-
poorly
|
1870 |
-
salivary
|
1871 |
-
201
|
1872 |
-
dental
|
1873 |
-
tw
|
1874 |
-
tent
|
1875 |
-
##yl
|
1876 |
-
##ler
|
1877 |
-
##hes
|
1878 |
-
##asm
|
1879 |
-
##orph
|
1880 |
-
##orrh
|
1881 |
-
##orium
|
1882 |
-
naso
|
1883 |
-
##asellar
|
1884 |
-
retropharynx
|
1885 |
-
##velop
|
1886 |
-
##otemporal
|
1887 |
-
still
|
1888 |
-
parapharynx
|
1889 |
-
definitely
|
1890 |
-
##uction
|
1891 |
-
atypical
|
1892 |
-
its
|
1893 |
-
diffusion
|
1894 |
-
t3n0m0
|
1895 |
-
t4n3
|
1896 |
-
t4n1
|
1897 |
-
branc
|
1898 |
-
location
|
1899 |
-
##ectomy
|
1900 |
-
optic
|
1901 |
-
recesses
|
1902 |
-
relative
|
1903 |
-
reaching
|
1904 |
-
##iculotemporal
|
1905 |
-
amount
|
1906 |
-
auriculotemporal
|
1907 |
-
two
|
1908 |
-
tentorium
|
1909 |
-
4mm
|
1910 |
-
av
|
1911 |
-
che
|
1912 |
-
dou
|
1913 |
-
when
|
1914 |
-
##ned
|
1915 |
-
##other
|
1916 |
-
##tful
|
1917 |
-
##yond
|
1918 |
-
##side
|
1919 |
-
##lu
|
1920 |
-
##liter
|
1921 |
-
##btful
|
1922 |
-
##×1
|
1923 |
-
##7mm
|
1924 |
-
##orbit
|
1925 |
-
##ula
|
1926 |
-
too
|
1927 |
-
##ution
|
1928 |
-
distal
|
1929 |
-
beyond
|
1930 |
-
infra
|
1931 |
-
t3n3
|
1932 |
-
t1n0
|
1933 |
-
imaging
|
1934 |
-
minimally
|
1935 |
-
restric
|
1936 |
-
fills
|
1937 |
-
obliter
|
1938 |
-
vessels
|
1939 |
-
##pected
|
1940 |
-
conflu
|
1941 |
-
increased
|
1942 |
-
outside
|
1943 |
-
haemorrh
|
1944 |
-
presumably
|
1945 |
-
orifice
|
1946 |
-
doubtful
|
1947 |
-
##orbital
|
1948 |
-
4n
|
1949 |
-
er
|
1950 |
-
el
|
1951 |
-
go
|
1952 |
-
mening
|
1953 |
-
mastic
|
1954 |
-
old
|
1955 |
-
##gment
|
1956 |
-
##ole
|
1957 |
-
##fs
|
1958 |
-
##way
|
1959 |
-
##erm
|
1960 |
-
##onic
|
1961 |
-
##inum
|
1962 |
-
##ench
|
1963 |
-
##igin
|
1964 |
-
replac
|
1965 |
-
##omal
|
1966 |
-
##trance
|
1967 |
-
parench
|
1968 |
-
corres
|
1969 |
-
scanned
|
1970 |
-
develop
|
1971 |
-
##otty
|
1972 |
-
entrance
|
1973 |
-
hypo
|
1974 |
-
##ible
|
1975 |
-
secondary
|
1976 |
-
thicker
|
1977 |
-
shotty
|
1978 |
-
indicated
|
1979 |
-
segment
|
1980 |
-
hypertrophy
|
1981 |
-
common
|
1982 |
-
t1n1
|
1983 |
-
masses
|
1984 |
-
##onstr
|
1985 |
-
cause
|
1986 |
-
occup
|
1987 |
-
asymmetric
|
1988 |
-
##entricular
|
1989 |
-
usg
|
1990 |
-
suprasellar
|
1991 |
-
narrowing
|
1992 |
-
mediastinum
|
1993 |
-
confluent
|
1994 |
-
parenchym
|
1995 |
-
corresp
|
1996 |
-
18
|
1997 |
-
3mm
|
1998 |
-
cove
|
1999 |
-
derm
|
2000 |
-
laryn
|
2001 |
-
n2m0
|
2002 |
-
tail
|
2003 |
-
war
|
2004 |
-
##eph
|
2005 |
-
##monstr
|
2006 |
-
##tif
|
2007 |
-
##lp
|
2008 |
-
##ind
|
2009 |
-
##itre
|
2010 |
-
##ither
|
2011 |
-
met
|
2012 |
-
##omorph
|
2013 |
-
##oll
|
2014 |
-
##achn
|
2015 |
-
invasive
|
2016 |
-
cortex
|
2017 |
-
whole
|
2018 |
-
help
|
2019 |
-
demonstr
|
2020 |
-
anter
|
2021 |
-
artif
|
2022 |
-
arachn
|
2023 |
-
##reatment
|
2024 |
-
encro
|
2025 |
-
pleural
|
2026 |
-
pleomorph
|
2027 |
-
result
|
2028 |
-
overt
|
2029 |
-
##ascular
|
2030 |
-
causes
|
2031 |
-
forming
|
2032 |
-
fibrosis
|
2033 |
-
raising
|
2034 |
-
cerebellar
|
2035 |
-
ganglia
|
2036 |
-
looking
|
2037 |
-
striped
|
2038 |
-
tooth
|
2039 |
-
goitre
|
2040 |
-
covered
|
2041 |
-
##ephal
|
2042 |
-
artifact
|
2043 |
-
arachnoid
|
2044 |
-
pleomorphic
|
2045 |
-
14mm
|
2046 |
-
21
|
2047 |
-
bil
|
2048 |
-
cis
|
2049 |
-
dated
|
2050 |
-
either
|
2051 |
-
mandibular
|
2052 |
-
pons
|
2053 |
-
rt
|
2054 |
-
##ner
|
2055 |
-
##ronic
|
2056 |
-
##poma
|
2057 |
-
##mic
|
2058 |
-
##tal
|
2059 |
-
##aem
|
2060 |
-
##audal
|
2061 |
-
##atal
|
2062 |
-
##atible
|
2063 |
-
##usely
|
2064 |
-
##ulated
|
2065 |
-
##ises
|
2066 |
-
##vere
|
2067 |
-
unit
|
2068 |
-
chronic
|
2069 |
-
cortical
|
2070 |
-
##rimal
|
2071 |
-
severe
|
2072 |
-
lipoma
|
2073 |
-
showing
|
2074 |
-
pattern
|
2075 |
-
compatible
|
2076 |
-
different
|
2077 |
-
diffusely
|
2078 |
-
components
|
2079 |
-
t1n2
|
2080 |
-
t4n2
|
2081 |
-
opening
|
2082 |
-
merge
|
2083 |
-
t2n1m0
|
2084 |
-
struct
|
2085 |
-
compression
|
2086 |
-
3n2m0
|
2087 |
-
craniocaudal
|
2088 |
-
crosses
|
2089 |
-
13mm
|
2090 |
-
hemisphere
|
2091 |
-
vertebrae
|
2092 |
-
periventricular
|
2093 |
-
obstructed
|
2094 |
-
infraorbital
|
2095 |
-
developmental
|
2096 |
-
correspond
|
2097 |
-
helpful
|
2098 |
-
20
|
2099 |
-
22
|
2100 |
-
band
|
2101 |
-
co
|
2102 |
-
dd
|
2103 |
-
em
|
2104 |
-
hor
|
2105 |
-
ij
|
2106 |
-
ller
|
2107 |
-
n0m0
|
2108 |
-
ov
|
2109 |
-
oste
|
2110 |
-
separ
|
2111 |
-
wing
|
2112 |
-
##opic
|
2113 |
-
##ved
|
2114 |
-
##3mm
|
2115 |
-
##ward
|
2116 |
-
##atation
|
2117 |
-
isch
|
2118 |
-
total
|
2119 |
-
spond
|
2120 |
-
##ified
|
2121 |
-
##thin
|
2122 |
-
scans
|
2123 |
-
##irc
|
2124 |
-
##ymp
|
2125 |
-
suscept
|
2126 |
-
##ibility
|
2127 |
-
mucous
|
2128 |
-
bulge
|
2129 |
-
prominence
|
2130 |
-
aspects
|
2131 |
-
sell
|
2132 |
-
inflammation
|
2133 |
-
##earch
|
2134 |
-
##ifferent
|
2135 |
-
lobulated
|
2136 |
-
##omeatal
|
2137 |
-
research
|
2138 |
-
contact
|
2139 |
-
airway
|
2140 |
-
artefacts
|
2141 |
-
##ontine
|
2142 |
-
undifferent
|
2143 |
-
##ailable
|
2144 |
-
hemith
|
2145 |
-
lns
|
2146 |
-
increase
|
2147 |
-
dilatation
|
2148 |
-
ventricles
|
2149 |
-
##ylosis
|
2150 |
-
relatively
|
2151 |
-
masticator
|
2152 |
-
parenchymal
|
2153 |
-
dermat
|
2154 |
-
warthin
|
2155 |
-
cistern
|
2156 |
-
ddx
|
2157 |
-
ovoid
|
2158 |
-
##wards
|
2159 |
-
ischaem
|
2160 |
-
spondylosis
|
2161 |
-
susceptibility
|
2162 |
-
sella
|
2163 |
-
undifferentiated
|
2164 |
-
bas
|
2165 |
-
ball
|
2166 |
-
c4
|
2167 |
-
circ
|
2168 |
-
giv
|
2169 |
-
n1m0
|
2170 |
-
ost
|
2171 |
-
pri
|
2172 |
-
treatment
|
2173 |
-
vocal
|
2174 |
-
we
|
2175 |
-
##pinal
|
2176 |
-
##heres
|
2177 |
-
##art
|
2178 |
-
##aspinal
|
2179 |
-
##ined
|
2180 |
-
##osion
|
2181 |
-
##ison
|
2182 |
-
origin
|
2183 |
-
necks
|
2184 |
-
##owing
|
2185 |
-
thir
|
2186 |
-
paraspinal
|
2187 |
-
smoo
|
2188 |
-
##irm
|
2189 |
-
prel
|
2190 |
-
skin
|
2191 |
-
antr
|
2192 |
-
##tered
|
2193 |
-
##app
|
2194 |
-
appearing
|
2195 |
-
dimensions
|
2196 |
-
markedly
|
2197 |
-
infiltrated
|
2198 |
-
infiltrates
|
2199 |
-
adenoidal
|
2200 |
-
pharynx
|
2201 |
-
compressing
|
2202 |
-
expans
|
2203 |
-
comparison
|
2204 |
-
confirm
|
2205 |
-
deposits
|
2206 |
-
edema
|
2207 |
-
hemispheres
|
2208 |
-
expanded
|
2209 |
-
shape
|
2210 |
-
available
|
2211 |
-
haemorrhage
|
2212 |
-
erosion
|
2213 |
-
else
|
2214 |
-
structures
|
2215 |
-
corresponds
|
2216 |
-
ijv
|
2217 |
-
circum
|
2218 |
-
third
|
2219 |
-
smooth
|
2220 |
-
2n
|
2221 |
-
basal
|
2222 |
-
c6
|
2223 |
-
coll
|
2224 |
-
lat
|
2225 |
-
ques
|
2226 |
-
ser
|
2227 |
-
sol
|
2228 |
-
symp
|
2229 |
-
##iasm
|
2230 |
-
##iomeatal
|
2231 |
-
##ci
|
2232 |
-
##m1
|
2233 |
-
##bm0
|
2234 |
-
##×4
|
2235 |
-
their
|
2236 |
-
##one
|
2237 |
-
##inary
|
2238 |
-
nasol
|
2239 |
-
##trib
|
2240 |
-
##veolar
|
2241 |
-
contex
|
2242 |
-
chiasm
|
2243 |
-
alveolar
|
2244 |
-
##ame
|
2245 |
-
##urre
|
2246 |
-
notch
|
2247 |
-
##gestion
|
2248 |
-
##uced
|
2249 |
-
##iminary
|
2250 |
-
maxilla
|
2251 |
-
path
|
2252 |
-
comb
|
2253 |
-
##izontal
|
2254 |
-
distrib
|
2255 |
-
t1n3m0
|
2256 |
-
lobes
|
2257 |
-
##gery
|
2258 |
-
##yroidectomy
|
2259 |
-
infiltrating
|
2260 |
-
lengths
|
2261 |
-
centrally
|
2262 |
-
trache
|
2263 |
-
displaces
|
2264 |
-
plates
|
2265 |
-
surgery
|
2266 |
-
opacified
|
2267 |
-
compressed
|
2268 |
-
peripher
|
2269 |
-
irregularity
|
2270 |
-
aeration
|
2271 |
-
raises
|
2272 |
-
crossing
|
2273 |
-
haemang
|
2274 |
-
locally
|
2275 |
-
dilated
|
2276 |
-
meningioma
|
2277 |
-
replaced
|
2278 |
-
hypointense
|
2279 |
-
horizontal
|
2280 |
-
hemithyroidectomy
|
2281 |
-
ballo
|
2282 |
-
given
|
2283 |
-
ostiomeatal
|
2284 |
-
preliminary
|
2285 |
-
antrum
|
2286 |
-
question
|
2287 |
-
context
|
2288 |
-
distribution
|
2289 |
-
af
|
2290 |
-
bl
|
2291 |
-
cour
|
2292 |
-
coup
|
2293 |
-
ded
|
2294 |
-
gd
|
2295 |
-
hil
|
2296 |
-
ia
|
2297 |
-
lim
|
2298 |
-
oph
|
2299 |
-
pur
|
2300 |
-
run
|
2301 |
-
sw
|
2302 |
-
sent
|
2303 |
-
same
|
2304 |
-
vall
|
2305 |
-
wor
|
2306 |
-
##ness
|
2307 |
-
##sent
|
2308 |
-
##li
|
2309 |
-
##vate
|
2310 |
-
##view
|
2311 |
-
##fort
|
2312 |
-
##ald
|
2313 |
-
##alateral
|
2314 |
-
##almic
|
2315 |
-
##asing
|
2316 |
-
##asternal
|
2317 |
-
##ertebral
|
2318 |
-
##ination
|
2319 |
-
inner
|
2320 |
-
##athe
|
2321 |
-
##ecula
|
2322 |
-
##ositis
|
2323 |
-
requ
|
2324 |
-
review
|
2325 |
-
towards
|
2326 |
-
oral
|
2327 |
-
exc
|
2328 |
-
exam
|
2329 |
-
expected
|
2330 |
-
unfort
|
2331 |
-
##olaps
|
2332 |
-
##acic
|
2333 |
-
sinusitis
|
2334 |
-
axilla
|
2335 |
-
##thalmic
|
2336 |
-
dev
|
2337 |
-
enter
|
2338 |
-
contralateral
|
2339 |
-
prolaps
|
2340 |
-
effac
|
2341 |
-
t2wfs
|
2342 |
-
att
|
2343 |
-
##unately
|
2344 |
-
##apy
|
2345 |
-
indic
|
2346 |
-
palp
|
2347 |
-
palant
|
2348 |
-
remo
|
2349 |
-
clustering
|
2350 |
-
margins
|
2351 |
-
enhanced
|
2352 |
-
lesions
|
2353 |
-
sclerotic
|
2354 |
-
caused
|
2355 |
-
displaced
|
2356 |
-
plate
|
2357 |
-
12th
|
2358 |
-
##poses
|
2359 |
-
reduced
|
2360 |
-
obstruction
|
2361 |
-
polyposis
|
2362 |
-
##omyositis
|
2363 |
-
surrounds
|
2364 |
-
asymmetrically
|
2365 |
-
suprasternal
|
2366 |
-
##stem
|
2367 |
-
ventricle
|
2368 |
-
pps
|
2369 |
-
ppf
|
2370 |
-
displacement
|
2371 |
-
planning
|
2372 |
-
neuropathy
|
2373 |
-
branches
|
2374 |
-
chem
|
2375 |
-
##otherapy
|
2376 |
-
encroaches
|
2377 |
-
separate
|
2378 |
-
dermatomyositis
|
2379 |
-
ischaemia
|
2380 |
-
private
|
2381 |
-
latter
|
2382 |
-
combined
|
2383 |
-
couple
|
2384 |
-
dedicated
|
2385 |
-
ophthalmic
|
2386 |
-
purposes
|
2387 |
-
vallecula
|
2388 |
-
work
|
2389 |
-
unfortunately
|
2390 |
-
14
|
2391 |
-
1m0
|
2392 |
-
15mm
|
2393 |
-
2x
|
2394 |
-
3r
|
2395 |
-
9x
|
2396 |
-
atrophy
|
2397 |
-
bowing
|
2398 |
-
dr
|
2399 |
-
hal
|
2400 |
-
ham
|
2401 |
-
ling
|
2402 |
-
mr
|
2403 |
-
mic
|
2404 |
-
mac
|
2405 |
-
molar
|
2406 |
-
os
|
2407 |
-
qual
|
2408 |
-
sul
|
2409 |
-
wid
|
2410 |
-
##ek
|
2411 |
-
##ne
|
2412 |
-
##nw
|
2413 |
-
##dies
|
2414 |
-
##iation
|
2415 |
-
##cing
|
2416 |
-
##uated
|
2417 |
-
##pt
|
2418 |
-
##press
|
2419 |
-
##occ
|
2420 |
-
##oint
|
2421 |
-
##xus
|
2422 |
-
##la
|
2423 |
-
##fer
|
2424 |
-
##face
|
2425 |
-
##0mm
|
2426 |
-
##2mm
|
2427 |
-
##8mm
|
2428 |
-
##inct
|
2429 |
-
##pers
|
2430 |
-
congestion
|
2431 |
-
##acia
|
2432 |
-
##acrimal
|
2433 |
-
##istinct
|
2434 |
-
once
|
2435 |
-
##anding
|
2436 |
-
apart
|
2437 |
-
bodies
|
2438 |
-
mucus
|
2439 |
-
##illar
|
2440 |
-
adc
|
2441 |
-
appre
|
2442 |
-
indistinct
|
2443 |
-
like
|
2444 |
-
t3n0
|
2445 |
-
encephal
|
2446 |
-
encasing
|
2447 |
-
plexus
|
2448 |
-
tonsillar
|
2449 |
-
remaining
|
2450 |
-
infiltrative
|
2451 |
-
adenoids
|
2452 |
-
##ected
|
2453 |
-
temporalis
|
2454 |
-
protr
|
2455 |
-
ulcer
|
2456 |
-
tips
|
2457 |
-
endoscopic
|
2458 |
-
bene
|
2459 |
-
fibrous
|
2460 |
-
interval
|
2461 |
-
shaped
|
2462 |
-
branch
|
2463 |
-
restriction
|
2464 |
-
restricted
|
2465 |
-
##omalacia
|
2466 |
-
demonstrate
|
2467 |
-
resulting
|
2468 |
-
craniocaudally
|
2469 |
-
solid
|
2470 |
-
sympathe
|
2471 |
-
nasolacrimal
|
2472 |
-
##urrent
|
2473 |
-
peripheral
|
2474 |
-
haemangioma
|
2475 |
-
questionable
|
2476 |
-
examination
|
2477 |
-
removed
|
2478 |
-
3rd
|
2479 |
-
half
|
2480 |
-
lingual
|
2481 |
-
quality
|
2482 |
-
##nwald
|
2483 |
-
##occip
|
2484 |
-
sympathetic
|
2485 |
-
17
|
2486 |
-
19
|
2487 |
-
6×2
|
2488 |
-
7x
|
2489 |
-
8x1
|
2490 |
-
based
|
2491 |
-
dy
|
2492 |
-
digastric
|
2493 |
-
ep
|
2494 |
-
ecc
|
2495 |
-
ell
|
2496 |
-
ip
|
2497 |
-
joint
|
2498 |
-
near
|
2499 |
-
pul
|
2500 |
-
pne
|
2501 |
-
ris
|
2502 |
-
sing
|
2503 |
-
tou
|
2504 |
-
void
|
2505 |
-
vascular
|
2506 |
-
way
|
2507 |
-
##roc
|
2508 |
-
##ix
|
2509 |
-
##pty
|
2510 |
-
##tor
|
2511 |
-
##silateral
|
2512 |
-
##vin
|
2513 |
-
##kely
|
2514 |
-
##1mm
|
2515 |
-
##hind
|
2516 |
-
##ord
|
2517 |
-
##term
|
2518 |
-
##umat
|
2519 |
-
##omed
|
2520 |
-
##troph
|
2521 |
-
##allic
|
2522 |
-
unli
|
2523 |
-
convin
|
2524 |
-
parav
|
2525 |
-
##avic
|
2526 |
-
infection
|
2527 |
-
cavities
|
2528 |
-
##amina
|
2529 |
-
clavic
|
2530 |
-
section
|
2531 |
-
dep
|
2532 |
-
eng
|
2533 |
-
behind
|
2534 |
-
another
|
2535 |
-
suspected
|
2536 |
-
##quela
|
2537 |
-
effect
|
2538 |
-
find
|
2539 |
-
##ucos
|
2540 |
-
thickness
|
2541 |
-
thoracic
|
2542 |
-
add
|
2543 |
-
sequela
|
2544 |
-
histology
|
2545 |
-
##iptical
|
2546 |
-
comment
|
2547 |
-
##adenoma
|
2548 |
-
constric
|
2549 |
-
thyroidectomy
|
2550 |
-
##roadenoma
|
2551 |
-
heterogeneously
|
2552 |
-
presence
|
2553 |
-
brainstem
|
2554 |
-
secretion
|
2555 |
-
artefactual
|
2556 |
-
sheaths
|
2557 |
-
tract
|
2558 |
-
trace
|
2559 |
-
surface
|
2560 |
-
t2n1
|
2561 |
-
10x
|
2562 |
-
12mm
|
2563 |
-
need
|
2564 |
-
neopl
|
2565 |
-
inser
|
2566 |
-
3n1m0
|
2567 |
-
destr
|
2568 |
-
retrosternal
|
2569 |
-
detected
|
2570 |
-
consider
|
2571 |
-
usual
|
2572 |
-
interm
|
2573 |
-
obstructive
|
2574 |
-
larynx
|
2575 |
-
metallic
|
2576 |
-
severely
|
2577 |
-
differential
|
2578 |
-
empty
|
2579 |
-
osteophy
|
2580 |
-
expansion
|
2581 |
-
circumf
|
2582 |
-
pathology
|
2583 |
-
trachea
|
2584 |
-
after
|
2585 |
-
course
|
2586 |
-
hilum
|
2587 |
-
limit
|
2588 |
-
effaced
|
2589 |
-
palpable
|
2590 |
-
chemotherapy
|
2591 |
-
macroadenoma
|
2592 |
-
encephalomalacia
|
2593 |
-
beneath
|
2594 |
-
##nwaldt
|
2595 |
-
dysp
|
2596 |
-
elliptical
|
2597 |
-
ipsilateral
|
2598 |
-
pneumat
|
2599 |
-
risk
|
2600 |
-
single
|
2601 |
-
unlikely
|
2602 |
-
convincing
|
2603 |
-
paravertebral
|
2604 |
-
constrictor
|
2605 |
-
neoplasm
|
2606 |
-
17mm
|
2607 |
-
25
|
2608 |
-
2x1
|
2609 |
-
3x3
|
2610 |
-
4x2
|
2611 |
-
7x1
|
2612 |
-
9x1
|
2613 |
-
aud
|
2614 |
-
bu
|
2615 |
-
cer
|
2616 |
-
current
|
2617 |
-
dens
|
2618 |
-
ec
|
2619 |
-
even
|
2620 |
-
fac
|
2621 |
-
fore
|
2622 |
-
guid
|
2623 |
-
hom
|
2624 |
-
rid
|
2625 |
-
rad
|
2626 |
-
ray
|
2627 |
-
sj
|
2628 |
-
vi
|
2629 |
-
##of
|
2630 |
-
##xap
|
2631 |
-
##tes
|
2632 |
-
##ys
|
2633 |
-
##lf
|
2634 |
-
##lot
|
2635 |
-
##lasia
|
2636 |
-
##alk
|
2637 |
-
##arac
|
2638 |
-
##ren
|
2639 |
-
##ingeal
|
2640 |
-
##itory
|
2641 |
-
##eningeal
|
2642 |
-
##terist
|
2643 |
-
meat
|
2644 |
-
##oun
|
2645 |
-
##ision
|
2646 |
-
position
|
2647 |
-
thal
|
2648 |
-
paral
|
2649 |
-
charac
|
2650 |
-
axillary
|
2651 |
-
involution
|
2652 |
-
t2b
|
2653 |
-
fossas
|
2654 |
-
##amed
|
2655 |
-
determ
|
2656 |
-
stalk
|
2657 |
-
##ividual
|
2658 |
-
anomal
|
2659 |
-
##ancy
|
2660 |
-
abutt
|
2661 |
-
##unar
|
2662 |
-
##ock
|
2663 |
-
individual
|
2664 |
-
predominately
|
2665 |
-
showed
|
2666 |
-
submucos
|
2667 |
-
lacunar
|
2668 |
-
##ogren
|
2669 |
-
suggests
|
2670 |
-
tumors
|
2671 |
-
##seous
|
2672 |
-
##elling
|
2673 |
-
##tainty
|
2674 |
-
peri
|
2675 |
-
wraps
|
2676 |
-
##ching
|
2677 |
-
contour
|
2678 |
-
degre
|
2679 |
-
shelf
|
2680 |
-
tubes
|
2681 |
-
trapp
|
2682 |
-
plus
|
2683 |
-
plain
|
2684 |
-
recently
|
2685 |
-
evaluate
|
2686 |
-
t2n2m0
|
2687 |
-
t2n3m0
|
2688 |
-
malignancy
|
2689 |
-
obsc
|
2690 |
-
tsxap
|
2691 |
-
condyles
|
2692 |
-
11mm
|
2693 |
-
##ological
|
2694 |
-
sequence
|
2695 |
-
mak
|
2696 |
-
edge
|
2697 |
-
expanding
|
2698 |
-
n3b
|
2699 |
-
##monary
|
2700 |
-
perivascular
|
2701 |
-
groups
|
2702 |
-
obliterated
|
2703 |
-
occupying
|
2704 |
-
##inds
|
2705 |
-
basi
|
2706 |
-
weight
|
2707 |
-
running
|
2708 |
-
osseous
|
2709 |
-
sulci
|
2710 |
-
##pression
|
2711 |
-
pulmonary
|
2712 |
-
##ixed
|
2713 |
-
##omedial
|
2714 |
-
findinds
|
2715 |
-
dysplasia
|
2716 |
-
auditory
|
2717 |
-
certainty
|
2718 |
-
ecs
|
2719 |
-
guided
|
2720 |
-
homogen
|
2721 |
-
ridge
|
2722 |
-
sjogren
|
2723 |
-
##teristic
|
2724 |
-
characteristic
|
2725 |
-
involutional
|
2726 |
-
anomaly
|
2727 |
-
trapped
|
2728 |
-
0x1
|
2729 |
-
0x2
|
2730 |
-
16
|
2731 |
-
1x1
|
2732 |
-
1×2
|
2733 |
-
16mm
|
2734 |
-
24
|
2735 |
-
6x
|
2736 |
-
7x2
|
2737 |
-
8×2
|
2738 |
-
bx
|
2739 |
-
bre
|
2740 |
-
cap
|
2741 |
-
dec
|
2742 |
-
es
|
2743 |
-
found
|
2744 |
-
fung
|
2745 |
-
hu
|
2746 |
-
jd
|
2747 |
-
king
|
2748 |
-
ls
|
2749 |
-
lin
|
2750 |
-
mou
|
2751 |
-
map
|
2752 |
-
n3m0
|
2753 |
-
od
|
2754 |
-
pen
|
2755 |
-
ped
|
2756 |
-
pontine
|
2757 |
-
ring
|
2758 |
-
rib
|
2759 |
-
tag
|
2760 |
-
tran
|
2761 |
-
whe
|
2762 |
-
wide
|
2763 |
-
##ngeal
|
2764 |
-
##nce
|
2765 |
-
##droc
|
2766 |
-
##ier
|
2767 |
-
##ift
|
2768 |
-
##iet
|
2769 |
-
##ches
|
2770 |
-
##pontine
|
2771 |
-
##ak
|
2772 |
-
##sies
|
2773 |
-
##vant
|
2774 |
-
##×6
|
2775 |
-
##ales
|
2776 |
-
##arent
|
2777 |
-
now
|
2778 |
-
##tasis
|
2779 |
-
##ectasis
|
2780 |
-
##ged
|
2781 |
-
least
|
2782 |
-
##igone
|
2783 |
-
##ulous
|
2784 |
-
refer
|
2785 |
-
##omolar
|
2786 |
-
oro
|
2787 |
-
conver
|
2788 |
-
span
|
2789 |
-
paramed
|
2790 |
-
pariet
|
2791 |
-
##aceous
|
2792 |
-
altered
|
2793 |
-
##ute
|
2794 |
-
retro
|
2795 |
-
retroph
|
2796 |
-
retromolar
|
2797 |
-
scanning
|
2798 |
-
clavicular
|
2799 |
-
def
|
2800 |
-
hydroc
|
2801 |
-
##ullary
|
2802 |
-
##iver
|
2803 |
-
##agic
|
2804 |
-
absent
|
2805 |
-
prepontine
|
2806 |
-
lymphoma
|
2807 |
-
account
|
2808 |
-
staged
|
2809 |
-
##imum
|
2810 |
-
pterygoids
|
2811 |
-
much
|
2812 |
-
thornwaldt
|
2813 |
-
atel
|
2814 |
-
apparent
|
2815 |
-
##plied
|
2816 |
-
indetermin
|
2817 |
-
lacrimal
|
2818 |
-
minimum
|
2819 |
-
flat
|
2820 |
-
flair
|
2821 |
-
##ization
|
2822 |
-
supplied
|
2823 |
-
normally
|
2824 |
-
clearly
|
2825 |
-
t1n3
|
2826 |
-
situated
|
2827 |
-
##rowth
|
2828 |
-
ivim
|
2829 |
-
remarkable
|
2830 |
-
confines
|
2831 |
-
##ets
|
2832 |
-
t4n0
|
2833 |
-
respective
|
2834 |
-
significantly
|
2835 |
-
content
|
2836 |
-
##achment
|
2837 |
-
reticul
|
2838 |
-
spares
|
2839 |
-
veins
|
2840 |
-
##x11mm
|
2841 |
-
trigone
|
2842 |
-
t2n3
|
2843 |
-
evident
|
2844 |
-
acute
|
2845 |
-
reduction
|
2846 |
-
favor
|
2847 |
-
outline
|
2848 |
-
favours
|
2849 |
-
presumed
|
2850 |
-
narrowed
|
2851 |
-
mediastinal
|
2852 |
-
obliteration
|
2853 |
-
haemorrhagic
|
2854 |
-
laryng
|
2855 |
-
anteromedial
|
2856 |
-
##ephalus
|
2857 |
-
artifacts
|
2858 |
-
developmentally
|
2859 |
-
coales
|
2860 |
-
##apping
|
2861 |
-
collaps
|
2862 |
-
series
|
2863 |
-
balloon
|
2864 |
-
balloons
|
2865 |
-
swelling
|
2866 |
-
excised
|
2867 |
-
deviated
|
2868 |
-
prolapse
|
2869 |
-
hampers
|
2870 |
-
widening
|
2871 |
-
##occiput
|
2872 |
-
eccentric
|
2873 |
-
nearly
|
2874 |
-
clavicle
|
2875 |
-
insertion
|
2876 |
-
osteophytes
|
2877 |
-
circumferent
|
2878 |
-
pneumatization
|
2879 |
-
foreign
|
2880 |
-
##ysm
|
2881 |
-
meatus
|
2882 |
-
thalamus
|
2883 |
-
determine
|
2884 |
-
obscure
|
2885 |
-
basiocciput
|
2886 |
-
weighted
|
2887 |
-
characteristics
|
2888 |
-
capitis
|
2889 |
-
huge
|
2890 |
-
mouth
|
2891 |
-
penetr
|
2892 |
-
tags
|
2893 |
-
trans
|
2894 |
-
whether
|
2895 |
-
converted
|
2896 |
-
paramedian
|
2897 |
-
parietal
|
2898 |
-
hydrocephalus
|
2899 |
-
1x
|
2900 |
-
1×3
|
2901 |
-
27
|
2902 |
-
29
|
2903 |
-
2mm
|
2904 |
-
2×3
|
2905 |
-
30
|
2906 |
-
5x
|
2907 |
-
6x2
|
2908 |
-
6x3
|
2909 |
-
7×2
|
2910 |
-
8x
|
2911 |
-
8×3
|
2912 |
-
aort
|
2913 |
-
atroph
|
2914 |
-
bed
|
2915 |
-
bound
|
2916 |
-
basilar
|
2917 |
-
cs
|
2918 |
-
cal
|
2919 |
-
cre
|
2920 |
-
cen
|
2921 |
-
caps
|
2922 |
-
cest
|
2923 |
-
ele
|
2924 |
-
far
|
2925 |
-
ful
|
2926 |
-
fain
|
2927 |
-
flow
|
2928 |
-
function
|
2929 |
-
growth
|
2930 |
-
had
|
2931 |
-
hence
|
2932 |
-
lamina
|
2933 |
-
mixed
|
2934 |
-
oc
|
2935 |
-
sy
|
2936 |
-
sin
|
2937 |
-
te
|
2938 |
-
tn
|
2939 |
-
tim
|
2940 |
-
tra
|
2941 |
-
tort
|
2942 |
-
typical
|
2943 |
-
vs
|
2944 |
-
×2
|
2945 |
-
##eur
|
2946 |
-
##eity
|
2947 |
-
##de
|
2948 |
-
##ded
|
2949 |
-
##rit
|
2950 |
-
##gical
|
2951 |
-
##che
|
2952 |
-
##uper
|
2953 |
-
##pite
|
2954 |
-
##pigin
|
2955 |
-
##oad
|
2956 |
-
##ximal
|
2957 |
-
##mpt
|
2958 |
-
##ye
|
2959 |
-
##sal
|
2960 |
-
##scribed
|
2961 |
-
##×5
|
2962 |
-
##5×3
|
2963 |
-
##hel
|
2964 |
-
##arch
|
2965 |
-
##ass
|
2966 |
-
##asinus
|
2967 |
-
##ested
|
2968 |
-
##orged
|
2969 |
-
##atic
|
2970 |
-
##itate
|
2971 |
-
##itive
|
2972 |
-
##aryngeal
|
2973 |
-
##opharyng
|
2974 |
-
##oses
|
2975 |
-
##osterior
|
2976 |
-
##osuper
|
2977 |
-
##uma
|
2978 |
-
lept
|
2979 |
-
##iglot
|
2980 |
-
reac
|
2981 |
-
##ish
|
2982 |
-
toler
|
2983 |
-
##ilitate
|
2984 |
-
##rive
|
2985 |
-
##vex
|
2986 |
-
exact
|
2987 |
-
convex
|
2988 |
-
##remely
|
2989 |
-
thre
|
2990 |
-
thyr
|
2991 |
-
thrive
|
2992 |
-
extremely
|
2993 |
-
##thrit
|
2994 |
-
fors
|
2995 |
-
scm
|
2996 |
-
deb
|
2997 |
-
about
|
2998 |
-
##udes
|
2999 |
-
##endum
|
3000 |
-
prop
|
3001 |
-
##oposterior
|
3002 |
-
before
|
3003 |
-
ann
|
3004 |
-
aneur
|
3005 |
-
hypopharyngeal
|
3006 |
-
apx
|
3007 |
-
accoun
|
3008 |
-
##ucle
|
3009 |
-
lowest
|
3010 |
-
##ongly
|
3011 |
-
atte
|
3012 |
-
abutment
|
3013 |
-
sigmoid
|
3014 |
-
paranas
|
3015 |
-
##verse
|
3016 |
-
shad
|
3017 |
-
shift
|
3018 |
-
asap
|
3019 |
-
##ape
|
3020 |
-
set
|
3021 |
-
search
|
3022 |
-
hyperint
|
3023 |
-
arthrit
|
3024 |
-
spreads
|
3025 |
-
feature
|
3026 |
-
histological
|
3027 |
-
extensively
|
3028 |
-
frond
|
3029 |
-
cleft
|
3030 |
-
##standing
|
3031 |
-
centre
|
3032 |
-
mask
|
3033 |
-
masseter
|
3034 |
-
vault
|
3035 |
-
diagnoses
|
3036 |
-
imp
|
3037 |
-
impression
|
3038 |
-
heterogeneity
|
3039 |
-
unusually
|
3040 |
-
##ached
|
3041 |
-
conglomerated
|
3042 |
-
##ques
|
3043 |
-
longstanding
|
3044 |
-
assessed
|
3045 |
-
intrasinus
|
3046 |
-
##x10mm
|
3047 |
-
degrade
|
3048 |
-
degrades
|
3049 |
-
##uctive
|
3050 |
-
proximal
|
3051 |
-
containing
|
3052 |
-
t2n0m0
|
3053 |
-
strongly
|
3054 |
-
##ediate
|
3055 |
-
superficially
|
3056 |
-
sternum
|
3057 |
-
3n0m0
|
3058 |
-
occiput
|
3059 |
-
despite
|
3060 |
-
agg
|
3061 |
-
1101
|
3062 |
-
fibrotic
|
3063 |
-
##bedded
|
3064 |
-
expands
|
3065 |
-
amide
|
3066 |
-
cerebellum
|
3067 |
-
##acement
|
3068 |
-
ganglion
|
3069 |
-
neuroma
|
3070 |
-
2018
|
3071 |
-
t4n3m1
|
3072 |
-
t4n3bm0
|
3073 |
-
cheek
|
3074 |
-
t3n3bm0
|
3075 |
-
obliterating
|
3076 |
-
4n3m0
|
3077 |
-
erod
|
3078 |
-
180
|
3079 |
-
##ollen
|
3080 |
-
encroachment
|
3081 |
-
artifactual
|
3082 |
-
embedded
|
3083 |
-
contacting
|
3084 |
-
week
|
3085 |
-
expansile
|
3086 |
-
circumscribed
|
3087 |
-
2n1m0
|
3088 |
-
serpigin
|
3089 |
-
##ciable
|
3090 |
-
blur
|
3091 |
-
swollen
|
3092 |
-
request
|
3093 |
-
requested
|
3094 |
-
reviewed
|
3095 |
-
excision
|
3096 |
-
attn
|
3097 |
-
palanti
|
3098 |
-
workup
|
3099 |
-
appreciated
|
3100 |
-
appreciable
|
3101 |
-
epr
|
3102 |
-
touches
|
3103 |
-
depth
|
3104 |
-
engorged
|
3105 |
-
addendum
|
3106 |
-
destructive
|
3107 |
-
consideration
|
3108 |
-
usually
|
3109 |
-
intermediate
|
3110 |
-
facilitate
|
3111 |
-
radi
|
3112 |
-
submucosal
|
3113 |
-
degrees
|
3114 |
-
homogenous
|
3115 |
-
essent
|
3116 |
-
pedunc
|
3117 |
-
ribs
|
3118 |
-
spanning
|
3119 |
-
defect
|
3120 |
-
respectively
|
3121 |
-
laryngopharynx
|
3122 |
-
ballooning
|
3123 |
-
penetrating
|
3124 |
-
transverse
|
3125 |
-
atrophic
|
3126 |
-
center
|
3127 |
-
capsule
|
3128 |
-
fully
|
3129 |
-
faint
|
3130 |
-
functional
|
3131 |
-
since
|
3132 |
-
trauma
|
3133 |
-
tortuous
|
3134 |
-
##mpts
|
3135 |
-
##osuperior
|
3136 |
-
leptom
|
3137 |
-
reaction
|
3138 |
-
tolerate
|
3139 |
-
thyroglossal
|
3140 |
-
aneurysm
|
3141 |
-
accounting
|
3142 |
-
attempts
|
3143 |
-
hyperintensity
|
3144 |
-
arthritide
|
3145 |
-
serpiginous
|
3146 |
-
0×3
|
3147 |
-
1x2
|
3148 |
-
23mm
|
3149 |
-
34
|
3150 |
-
33mm
|
3151 |
-
3×4
|
3152 |
-
4x1
|
3153 |
-
46mm
|
3154 |
-
50
|
3155 |
-
5x2
|
3156 |
-
5×2
|
3157 |
-
5x3
|
3158 |
-
6×3
|
3159 |
-
7×1
|
3160 |
-
ble
|
3161 |
-
bif
|
3162 |
-
dor
|
3163 |
-
domin
|
3164 |
-
epic
|
3165 |
-
each
|
3166 |
-
eye
|
3167 |
-
fu
|
3168 |
-
ff
|
3169 |
-
fine
|
3170 |
-
hern
|
3171 |
-
lent
|
3172 |
-
lord
|
3173 |
-
liver
|
3174 |
-
m1
|
3175 |
-
mon
|
3176 |
-
morph
|
3177 |
-
mapping
|
3178 |
-
nucle
|
3179 |
-
pe
|
3180 |
-
pter
|
3181 |
-
pot
|
3182 |
-
ri
|
3183 |
-
rath
|
3184 |
-
syl
|
3185 |
-
sock
|
3186 |
-
tm
|
3187 |
-
ta
|
3188 |
-
targe
|
3189 |
-
uv
|
3190 |
-
vp
|
3191 |
-
var
|
3192 |
-
vis
|
3193 |
-
##ein
|
3194 |
-
##eper
|
3195 |
-
##equ
|
3196 |
-
##eved
|
3197 |
-
##roid
|
3198 |
-
##rade
|
3199 |
-
##iology
|
3200 |
-
##ga
|
3201 |
-
##gle
|
3202 |
-
##goid
|
3203 |
-
##ground
|
3204 |
-
##cal
|
3205 |
-
##con
|
3206 |
-
##coma
|
3207 |
-
##uvant
|
3208 |
-
##pou
|
3209 |
-
##posed
|
3210 |
-
##oe
|
3211 |
-
##oin
|
3212 |
-
##oax
|
3213 |
-
##xcc
|
3214 |
-
##mus
|
3215 |
-
##met
|
3216 |
-
##tl
|
3217 |
-
##tening
|
3218 |
-
##tosis
|
3219 |
-
##treatment
|
3220 |
-
##sum
|
3221 |
-
##lar
|
3222 |
-
##lly
|
3223 |
-
##lant
|
3224 |
-
##vian
|
3225 |
-
##form
|
3226 |
-
##3x1
|
3227 |
-
##jec
|
3228 |
-
##juvant
|
3229 |
-
##ke
|
3230 |
-
##ked
|
3231 |
-
##known
|
3232 |
-
##hanc
|
3233 |
-
##201
|
3234 |
-
##zius
|
3235 |
-
##ally
|
3236 |
-
##arcoma
|
3237 |
-
##onodular
|
3238 |
-
##inos
|
3239 |
-
##inodal
|
3240 |
-
inj
|
3241 |
-
insp
|
3242 |
-
##ndib
|
3243 |
-
##itongue
|
3244 |
-
##itier
|
3245 |
-
##enal
|
3246 |
-
##ened
|
3247 |
-
##enhanc
|
3248 |
-
##ice
|
3249 |
-
##ician
|
3250 |
-
isth
|
3251 |
-
ische
|
3252 |
-
##osarcoma
|
3253 |
-
##uminal
|
3254 |
-
##eding
|
3255 |
-
##lel
|
3256 |
-
nasoph
|
3257 |
-
##ulf
|
3258 |
-
##ulature
|
3259 |
-
rele
|
3260 |
-
##ently
|
3261 |
-
##ential
|
3262 |
-
##entered
|
3263 |
-
##trast
|
3264 |
-
##riform
|
3265 |
-
##abal
|
3266 |
-
##abol
|
3267 |
-
unknown
|
3268 |
-
conc
|
3269 |
-
though
|
3270 |
-
spans
|
3271 |
-
spinos
|
3272 |
-
##iform
|
3273 |
-
##omandib
|
3274 |
-
sinusal
|
3275 |
-
##ants
|
3276 |
-
t2fs
|
3277 |
-
corner
|
3278 |
-
##ths
|
3279 |
-
caves
|
3280 |
-
scal
|
3281 |
-
##ccal
|
3282 |
-
##ensen
|
3283 |
-
##ensatory
|
3284 |
-
notes
|
3285 |
-
here
|
3286 |
-
height
|
3287 |
-
retrog
|
3288 |
-
deline
|
3289 |
-
deeper
|
3290 |
-
hyoid
|
3291 |
-
stre
|
3292 |
-
stensen
|
3293 |
-
foraminal
|
3294 |
-
##agment
|
3295 |
-
abs
|
3296 |
-
critier
|
3297 |
-
protu
|
3298 |
-
pretreatment
|
3299 |
-
belly
|
3300 |
-
cancer
|
3301 |
-
angle
|
3302 |
-
lympho
|
3303 |
-
lymphatic
|
3304 |
-
others
|
3305 |
-
techniques
|
3306 |
-
##issated
|
3307 |
-
effacement
|
3308 |
-
##ucting
|
3309 |
-
##henoid
|
3310 |
-
atlant
|
3311 |
-
##eps
|
3312 |
-
craniopharyng
|
3313 |
-
abutted
|
3314 |
-
adequ
|
3315 |
-
##obe
|
3316 |
-
shun
|
3317 |
-
##ood
|
3318 |
-
suboccip
|
3319 |
-
vertical
|
3320 |
-
##ificial
|
3321 |
-
appt
|
3322 |
-
##plant
|
3323 |
-
##plate
|
3324 |
-
signals
|
3325 |
-
sellar
|
3326 |
-
seeding
|
3327 |
-
hypertroph
|
3328 |
-
hypermet
|
3329 |
-
globe
|
3330 |
-
##elf
|
3331 |
-
lack
|
3332 |
-
patulous
|
3333 |
-
compensatory
|
3334 |
-
clinoid
|
3335 |
-
clinician
|
3336 |
-
fragment
|
3337 |
-
slice
|
3338 |
-
presented
|
3339 |
-
largely
|
3340 |
-
superolateral
|
3341 |
-
superificial
|
3342 |
-
follows
|
3343 |
-
dimensional
|
3344 |
-
##athyroid
|
3345 |
-
##tained
|
3346 |
-
deeply
|
3347 |
-
greatest
|
3348 |
-
borders
|
3349 |
-
mature
|
3350 |
-
palsies
|
3351 |
-
perinodal
|
3352 |
-
rect
|
3353 |
-
repe
|
3354 |
-
##ogenic
|
3355 |
-
ethmoids
|
3356 |
-
implant
|
3357 |
-
parts
|
3358 |
-
t4n0m0
|
3359 |
-
resection
|
3360 |
-
marginal
|
3361 |
-
grossly
|
3362 |
-
##erence
|
3363 |
-
sheets
|
3364 |
-
focally
|
3365 |
-
obtained
|
3366 |
-
palatopharyngeal
|
3367 |
-
##airment
|
3368 |
-
magna
|
3369 |
-
previously
|
3370 |
-
symmetrically
|
3371 |
-
##x18mm
|
3372 |
-
tracheal
|
3373 |
-
trape
|
3374 |
-
portions
|
3375 |
-
projec
|
3376 |
-
jugulo
|
3377 |
-
pla
|
3378 |
-
surgical
|
3379 |
-
##ressive
|
3380 |
-
endplate
|
3381 |
-
opacity
|
3382 |
-
opacities
|
3383 |
-
merging
|
3384 |
-
t2n2
|
3385 |
-
protein
|
3386 |
-
12x
|
3387 |
-
hemitongue
|
3388 |
-
neoad
|
3389 |
-
obstructing
|
3390 |
-
3n3m0
|
3391 |
-
##ibrosarcoma
|
3392 |
-
condylar
|
3393 |
-
fna
|
3394 |
-
##isphenoid
|
3395 |
-
background
|
3396 |
-
outpou
|
3397 |
-
consists
|
3398 |
-
localised
|
3399 |
-
indents
|
3400 |
-
better
|
3401 |
-
obviously
|
3402 |
-
majority
|
3403 |
-
2016
|
3404 |
-
2015
|
3405 |
-
itself
|
3406 |
-
t4n3b
|
3407 |
-
avm
|
3408 |
-
4n2m0
|
3409 |
-
hypoenhanc
|
3410 |
-
segments
|
3411 |
-
occupy
|
3412 |
-
occupied
|
3413 |
-
occupies
|
3414 |
-
parenchyma
|
3415 |
-
18mm
|
3416 |
-
demonstrated
|
3417 |
-
demonstrates
|
3418 |
-
anterolateral
|
3419 |
-
bilat
|
3420 |
-
t4n2m1
|
3421 |
-
202
|
3422 |
-
22mm
|
3423 |
-
cover
|
3424 |
-
wings
|
3425 |
-
contacts
|
3426 |
-
dermatof
|
3427 |
-
cisterna
|
3428 |
-
ischaemic
|
3429 |
-
basisphenoid
|
3430 |
-
confirmed
|
3431 |
-
blood
|
3432 |
-
runs
|
3433 |
-
deviation
|
3434 |
-
enters
|
3435 |
-
entering
|
3436 |
-
prolapsing
|
3437 |
-
indicate
|
3438 |
-
indicative
|
3439 |
-
palantini
|
3440 |
-
2x0
|
3441 |
-
2x4
|
3442 |
-
micr
|
3443 |
-
micro
|
3444 |
-
##iations
|
3445 |
-
##ferior
|
3446 |
-
protrusion
|
3447 |
-
protrudes
|
3448 |
-
ulceration
|
3449 |
-
19mm
|
3450 |
-
touching
|
3451 |
-
engulf
|
3452 |
-
limited
|
3453 |
-
buccal
|
3454 |
-
paralaryngeal
|
3455 |
-
parallel
|
3456 |
-
makes
|
3457 |
-
making
|
3458 |
-
breach
|
3459 |
-
decre
|
3460 |
-
fungal
|
3461 |
-
lining
|
3462 |
-
atelectasis
|
3463 |
-
flattening
|
3464 |
-
reticulonodular
|
3465 |
-
coalesc
|
3466 |
-
collapse
|
3467 |
-
circumferential
|
3468 |
-
aortic
|
3469 |
-
bounded
|
3470 |
-
calc
|
3471 |
-
creeps
|
3472 |
-
time
|
3473 |
-
proptosis
|
3474 |
-
paranasopharyngeal
|
3475 |
-
shadowing
|
3476 |
-
impairment
|
3477 |
-
aggressive
|
3478 |
-
blurring
|
3479 |
-
essentially
|
3480 |
-
peduncle
|
3481 |
-
leptomeningeal
|
3482 |
-
blend
|
3483 |
-
dorsum
|
3484 |
-
dominant
|
3485 |
-
epicentered
|
3486 |
-
ffe
|
3487 |
-
lentiform
|
3488 |
-
lordosis
|
3489 |
-
months
|
3490 |
-
peg
|
3491 |
-
potential
|
3492 |
-
rathke
|
3493 |
-
sylvian
|
3494 |
-
tmj
|
3495 |
-
targeted
|
3496 |
-
uvula
|
3497 |
-
vari
|
3498 |
-
##contrast
|
3499 |
-
##oinferior
|
3500 |
-
##oaxial
|
3501 |
-
inspissated
|
3502 |
-
isthmus
|
3503 |
-
ischemic
|
3504 |
-
spinosum
|
3505 |
-
##omandibular
|
3506 |
-
retrograde
|
3507 |
-
delineate
|
3508 |
-
critieria
|
3509 |
-
protuber
|
3510 |
-
atlantoaxial
|
3511 |
-
craniopharyngioma
|
3512 |
-
adequately
|
3513 |
-
shunt
|
3514 |
-
suboccipital
|
3515 |
-
hypertrophied
|
3516 |
-
hypermetabol
|
3517 |
-
trapezius
|
3518 |
-
proteinaceous
|
3519 |
-
neoadjuvant
|
3520 |
-
outpouching
|
3521 |
-
hypoenhancing
|
3522 |
-
dermatofibrosarcoma
|
3523 |
-
0x
|
3524 |
-
07
|
3525 |
-
08
|
3526 |
-
0x3
|
3527 |
-
0×1
|
3528 |
-
1n
|
3529 |
-
15
|
3530 |
-
2b
|
3531 |
-
25mm
|
3532 |
-
26mm
|
3533 |
-
27mm
|
3534 |
-
23x1
|
3535 |
-
3d
|
3536 |
-
31
|
3537 |
-
37
|
3538 |
-
3×3
|
3539 |
-
35mm
|
3540 |
-
37mm
|
3541 |
-
32mm
|
3542 |
-
41
|
3543 |
-
4th
|
3544 |
-
401
|
3545 |
-
4x3
|
3546 |
-
42mm
|
3547 |
-
5×5
|
3548 |
-
6th
|
3549 |
-
6x1
|
3550 |
-
601
|
3551 |
-
6×1
|
3552 |
-
7×3
|
3553 |
-
8x2
|
3554 |
-
801
|
3555 |
-
9x2
|
3556 |
-
age
|
3557 |
-
aug
|
3558 |
-
aet
|
3559 |
-
aqu
|
3560 |
-
bar
|
3561 |
-
bia
|
3562 |
-
blow
|
3563 |
-
breat
|
3564 |
-
best
|
3565 |
-
c7
|
3566 |
-
col
|
3567 |
-
cerv
|
3568 |
-
diss
|
3569 |
-
during
|
3570 |
-
done
|
3571 |
-
diver
|
3572 |
-
eb
|
3573 |
-
edent
|
3574 |
-
ect
|
3575 |
-
fo
|
3576 |
-
fas
|
3577 |
-
fil
|
3578 |
-
fusion
|
3579 |
-
fib
|
3580 |
-
hn
|
3581 |
-
hin
|
3582 |
-
hos
|
3583 |
-
kn
|
3584 |
-
lon
|
3585 |
-
lig
|
3586 |
-
last
|
3587 |
-
litt
|
3588 |
-
luminal
|
3589 |
-
my
|
3590 |
-
nor
|
3591 |
-
nause
|
3592 |
-
ou
|
3593 |
-
om
|
3594 |
-
prem
|
3595 |
-
pain
|
3596 |
-
past
|
3597 |
-
page
|
3598 |
-
pap
|
3599 |
-
phy
|
3600 |
-
pach
|
3601 |
-
pans
|
3602 |
-
pock
|
3603 |
-
pass
|
3604 |
-
qu
|
3605 |
-
ro
|
3606 |
-
renal
|
3607 |
-
sess
|
3608 |
-
symmetr
|
3609 |
-
ty
|
3610 |
-
tb
|
3611 |
-
val
|
3612 |
-
vic
|
3613 |
-
ventricular
|
3614 |
-
wit
|
3615 |
-
xi
|
3616 |
-
zy
|
3617 |
-
##nel
|
3618 |
-
##nection
|
3619 |
-
##dit
|
3620 |
-
##day
|
3621 |
-
##ry
|
3622 |
-
##ris
|
3623 |
-
##ril
|
3624 |
-
##rosis
|
3625 |
-
##rup
|
3626 |
-
##rants
|
3627 |
-
##iph
|
3628 |
-
##iom
|
3629 |
-
##ily
|
3630 |
-
##ioc
|
3631 |
-
##ienc
|
3632 |
-
##iating
|
3633 |
-
##iectasis
|
3634 |
-
##ieved
|
3635 |
-
##cation
|
3636 |
-
##urem
|
3637 |
-
##uity
|
3638 |
-
##pe
|
3639 |
-
##pc
|
3640 |
-
##ple
|
3641 |
-
##pered
|
3642 |
-
##pital
|
3643 |
-
##ok
|
3644 |
-
##ointense
|
3645 |
-
##xon
|
3646 |
-
##ms
|
3647 |
-
##mun
|
3648 |
-
##tis
|
3649 |
-
##tom
|
3650 |
-
##yep
|
3651 |
-
##yst
|
3652 |
-
##ae
|
3653 |
-
##aic
|
3654 |
-
##sew
|
3655 |
-
##lr
|
3656 |
-
##lab
|
3657 |
-
##lies
|
3658 |
-
##ves
|
3659 |
-
##be
|
3660 |
-
##bus
|
3661 |
-
##baceous
|
3662 |
-
##1b
|
3663 |
-
##13
|
3664 |
-
##hing
|
3665 |
-
##hond
|
3666 |
-
##hord
|
3667 |
-
##7×2
|
3668 |
-
##9mm
|
3669 |
-
##2x2
|
3670 |
-
##8x1
|
3671 |
-
then
|
3672 |
-
##arm
|
3673 |
-
##arngeal
|
3674 |
-
##asion
|
3675 |
-
##erian
|
3676 |
-
##erted
|
3677 |
-
##onding
|
3678 |
-
##onch
|
3679 |
-
##inity
|
3680 |
-
##inting
|
3681 |
-
intern
|
3682 |
-
##ora
|
3683 |
-
##oroid
|
3684 |
-
##orax
|
3685 |
-
##oramina
|
3686 |
-
##ata
|
3687 |
-
##atine
|
3688 |
-
##attered
|
3689 |
-
##used
|
3690 |
-
##itect
|
3691 |
-
##ithel
|
3692 |
-
##idus
|
3693 |
-
##idging
|
3694 |
-
##phy
|
3695 |
-
##enital
|
3696 |
-
##ica
|
3697 |
-
##anal
|
3698 |
-
##anic
|
3699 |
-
isointense
|
3700 |
-
##ectr
|
3701 |
-
##ectatic
|
3702 |
-
mega
|
3703 |
-
##umour
|
3704 |
-
##educt
|
3705 |
-
##igation
|
3706 |
-
##iguration
|
3707 |
-
##leed
|
3708 |
-
nasopalatine
|
3709 |
-
##ulked
|
3710 |
-
rever
|
3711 |
-
reached
|
3712 |
-
invest
|
3713 |
-
inverted
|
3714 |
-
leftwards
|
3715 |
-
##isition
|
3716 |
-
##om0
|
3717 |
-
##ombus
|
3718 |
-
tumoural
|
3719 |
-
today
|
3720 |
-
##ried
|
3721 |
-
##veill
|
3722 |
-
##perineural
|
3723 |
-
##abial
|
3724 |
-
##abet
|
3725 |
-
positive
|
3726 |
-
unable
|
3727 |
-
condition
|
3728 |
-
congest
|
3729 |
-
conse
|
3730 |
-
connection
|
3731 |
-
##olist
|
3732 |
-
##adural
|
3733 |
-
##oustic
|
3734 |
-
thus
|
3735 |
-
parasellar
|
3736 |
-
parathyroid
|
3737 |
-
chord
|
3738 |
-
choroid
|
3739 |
-
##ifying
|
3740 |
-
##acuated
|
3741 |
-
##inusitis
|
3742 |
-
##ainage
|
3743 |
-
alread
|
3744 |
-
alone
|
3745 |
-
##tate
|
3746 |
-
##uted
|
3747 |
-
##portion
|
3748 |
-
scop
|
3749 |
-
scap
|
3750 |
-
scattered
|
3751 |
-
regional
|
3752 |
-
##am0
|
3753 |
-
##ament
|
3754 |
-
##urated
|
3755 |
-
##urately
|
3756 |
-
##urcation
|
3757 |
-
notoc
|
3758 |
-
##ically
|
3759 |
-
distort
|
3760 |
-
pteryoid
|
3761 |
-
pterygo
|
3762 |
-
retrot
|
3763 |
-
retromaxillary
|
3764 |
-
retrieved
|
3765 |
-
midportion
|
3766 |
-
class
|
3767 |
-
headache
|
3768 |
-
level1b
|
3769 |
-
##otopic
|
3770 |
-
sten
|
3771 |
-
stem
|
3772 |
-
standing
|
3773 |
-
##aglot
|
3774 |
-
##ending
|
3775 |
-
##endym
|
3776 |
-
##ymeningeal
|
3777 |
-
postcontrast
|
3778 |
-
##opontine
|
3779 |
-
prev
|
3780 |
-
wallerian
|
3781 |
-
definitive
|
3782 |
-
april
|
3783 |
-
foramena
|
3784 |
-
accurately
|
3785 |
-
##imposed
|
3786 |
-
##mporomandibular
|
3787 |
-
measurem
|
3788 |
-
##angiop
|
3789 |
-
thickened
|
3790 |
-
mucoc
|
3791 |
-
##epithel
|
3792 |
-
##ependym
|
3793 |
-
saturated
|
3794 |
-
mucositis
|
3795 |
-
##ively
|
3796 |
-
mils
|
3797 |
-
##illoma
|
3798 |
-
##obleed
|
3799 |
-
channel
|
3800 |
-
subtrac
|
3801 |
-
bulkier
|
3802 |
-
sebaceous
|
3803 |
-
arran
|
3804 |
-
aryep
|
3805 |
-
predominant
|
3806 |
-
dixon
|
3807 |
-
diabet
|
3808 |
-
suggestion
|
3809 |
-
8thdit
|
3810 |
-
probabal
|
3811 |
-
##ipidus
|
3812 |
-
##hyoid
|
3813 |
-
commun
|
3814 |
-
##ders
|
3815 |
-
whereas
|
3816 |
-
compr
|
3817 |
-
medullary
|
3818 |
-
##actic
|
3819 |
-
supracl
|
3820 |
-
##sem
|
3821 |
-
##ayr
|
3822 |
-
musculature
|
3823 |
-
fold
|
3824 |
-
maybe
|
3825 |
-
superimposed
|
3826 |
-
lungs
|
3827 |
-
greatly
|
3828 |
-
t1nom0
|
3829 |
-
##ualised
|
3830 |
-
encoun
|
3831 |
-
recurre
|
3832 |
-
recurrent
|
3833 |
-
wrapping
|
3834 |
-
thrombus
|
3835 |
-
adenopathy
|
3836 |
-
measured
|
3837 |
-
ethmoidal
|
3838 |
-
biopsies
|
3839 |
-
heterotopic
|
3840 |
-
clustered
|
3841 |
-
respect
|
3842 |
-
infiltrate
|
3843 |
-
overlies
|
3844 |
-
brach
|
3845 |
-
bronch
|
3846 |
-
bridging
|
3847 |
-
intracanal
|
3848 |
-
congenital
|
3849 |
-
intracranially
|
3850 |
-
reticular
|
3851 |
-
retension
|
3852 |
-
spare
|
3853 |
-
sheet
|
3854 |
-
##athic
|
3855 |
-
approaches
|
3856 |
-
##ectively
|
3857 |
-
brainlab
|
3858 |
-
##quently
|
3859 |
-
##quisition
|
3860 |
-
##ortical
|
3861 |
-
##ontoid
|
3862 |
-
tubular
|
3863 |
-
##ticula
|
3864 |
-
v3perineural
|
3865 |
-
posterosuperior
|
3866 |
-
posteroinferior
|
3867 |
-
##ucted
|
3868 |
-
proper
|
3869 |
-
pointing
|
3870 |
-
##atively
|
3871 |
-
surveill
|
3872 |
-
occasion
|
3873 |
-
roundish
|
3874 |
-
opacifying
|
3875 |
-
additionally
|
3876 |
-
underg
|
3877 |
-
underde
|
3878 |
-
evacuated
|
3879 |
-
strap
|
3880 |
-
striated
|
3881 |
-
stranding
|
3882 |
-
##x26mm
|
3883 |
-
forms
|
3884 |
-
advise
|
3885 |
-
lesser
|
3886 |
-
mottl
|
3887 |
-
acoustic
|
3888 |
-
acquisition
|
3889 |
-
insipidus
|
3890 |
-
polyps
|
3891 |
-
3n1
|
3892 |
-
configuration
|
3893 |
-
architect
|
3894 |
-
intraorbital
|
3895 |
-
##oplatine
|
3896 |
-
110
|
3897 |
-
raise
|
3898 |
-
rims
|
3899 |
-
thinning
|
3900 |
-
frankly
|
3901 |
-
consisting
|
3902 |
-
13x1
|
3903 |
-
tornwaldt
|
3904 |
-
used
|
3905 |
-
supraglot
|
3906 |
-
continuation
|
3907 |
-
edn
|
3908 |
-
station
|
3909 |
-
subcortical
|
3910 |
-
tracking
|
3911 |
-
degeneration
|
3912 |
-
perivertebral
|
3913 |
-
cerebellopontine
|
3914 |
-
ductal
|
3915 |
-
hypoplasia
|
3916 |
-
orifices
|
3917 |
-
planes
|
3918 |
-
stripes
|
3919 |
-
neurof
|
3920 |
-
neurogenic
|
3921 |
-
2013
|
3922 |
-
2017
|
3923 |
-
##hesis
|
3924 |
-
##veloped
|
3925 |
-
avid
|
3926 |
-
chest
|
3927 |
-
##ulae
|
3928 |
-
infraclavicular
|
3929 |
-
t3n3am0
|
3930 |
-
4n1
|
3931 |
-
4n2
|
3932 |
-
4n0m0
|
3933 |
-
elsew
|
3934 |
-
electr
|
3935 |
-
meningoma
|
3936 |
-
meningitis
|
3937 |
-
masticatory
|
3938 |
-
replace
|
3939 |
-
replacing
|
3940 |
-
corresponding
|
3941 |
-
3mmx
|
3942 |
-
dermis
|
3943 |
-
laryngeal
|
3944 |
-
warrants
|
3945 |
-
anteroposterior
|
3946 |
-
resultant
|
3947 |
-
210
|
3948 |
-
21mm
|
3949 |
-
units
|
3950 |
-
openings
|
3951 |
-
coil
|
3952 |
-
horn
|
3953 |
-
osteomeatal
|
3954 |
-
separated
|
3955 |
-
##ympanic
|
3956 |
-
hemithorax
|
3957 |
-
cisterns
|
3958 |
-
prior
|
3959 |
-
2n2m0
|
3960 |
-
2n0m0
|
3961 |
-
collection
|
3962 |
-
collectively
|
3963 |
-
solitary
|
3964 |
-
symptom
|
3965 |
-
nasolabial
|
3966 |
-
periphery
|
3967 |
-
haemangiom
|
3968 |
-
cours
|
3969 |
-
hila
|
3970 |
-
limb
|
3971 |
-
atten
|
3972 |
-
indicating
|
3973 |
-
palpation
|
3974 |
-
palantine
|
3975 |
-
9x5
|
3976 |
-
9x4mm
|
3977 |
-
drainage
|
3978 |
-
hampered
|
3979 |
-
microc
|
3980 |
-
sulcal
|
3981 |
-
protruding
|
3982 |
-
ulcerating
|
3983 |
-
branching
|
3984 |
-
peripherally
|
3985 |
-
7x4mm
|
3986 |
-
8x13mm
|
3987 |
-
epiglot
|
3988 |
-
ecchond
|
3989 |
-
voids
|
3990 |
-
clavicles
|
3991 |
-
effects
|
3992 |
-
adducted
|
3993 |
-
sequelae
|
3994 |
-
10x4mm
|
3995 |
-
10x5mm
|
3996 |
-
needs
|
3997 |
-
destruction
|
3998 |
-
intermus
|
3999 |
-
osteophyte
|
4000 |
-
circumference
|
4001 |
-
limits
|
4002 |
-
7x12mm
|
4003 |
-
7x18mm
|
4004 |
-
buried
|
4005 |
-
facial
|
4006 |
-
abutts
|
4007 |
-
individually
|
4008 |
-
submucosa
|
4009 |
-
degree
|
4010 |
-
homogeneous
|
4011 |
-
decom
|
4012 |
-
fungating
|
4013 |
-
liner
|
4014 |
-
odema
|
4015 |
-
odontoid
|
4016 |
-
##akable
|
4017 |
-
accounts
|
4018 |
-
atelectatic
|
4019 |
-
indeterminant
|
4020 |
-
indeterminated
|
4021 |
-
t1n3a
|
4022 |
-
reticulation
|
4023 |
-
t2n3m
|
4024 |
-
t2n3bm0
|
4025 |
-
collapsed
|
4026 |
-
circumferentially
|
4027 |
-
8x6mm
|
4028 |
-
csf
|
4029 |
-
elev
|
4030 |
-
element
|
4031 |
-
system
|
4032 |
-
temporomandibular
|
4033 |
-
tnm
|
4034 |
-
tnm0
|
4035 |
-
##saliph
|
4036 |
-
##heless
|
4037 |
-
##iglottic
|
4038 |
-
convexity
|
4039 |
-
debris
|
4040 |
-
debulked
|
4041 |
-
apxlr
|
4042 |
-
erodes
|
4043 |
-
radiotherapy
|
4044 |
-
bifurcation
|
4045 |
-
herniations
|
4046 |
-
morphology
|
4047 |
-
nucleus
|
4048 |
-
ptergoid
|
4049 |
-
socket
|
4050 |
-
tapers
|
4051 |
-
visualised
|
4052 |
-
##oele
|
4053 |
-
##2013
|
4054 |
-
injection
|
4055 |
-
relevant
|
4056 |
-
concentric
|
4057 |
-
corners
|
4058 |
-
scalen
|
4059 |
-
stret
|
4060 |
-
absence
|
4061 |
-
lymphoepithel
|
4062 |
-
rectus
|
4063 |
-
repeat
|
4064 |
-
marginally
|
4065 |
-
projecting
|
4066 |
-
plaque
|
4067 |
-
12x7mm
|
4068 |
-
2022
|
4069 |
-
coverage
|
4070 |
-
microbleed
|
4071 |
-
microangiop
|
4072 |
-
engulfed
|
4073 |
-
coalesces
|
4074 |
-
calcified
|
4075 |
-
blends
|
4076 |
-
variant
|
4077 |
-
protuberance
|
4078 |
-
hypermetabolic
|
4079 |
-
aetiology
|
4080 |
-
aqueduct
|
4081 |
-
biapical
|
4082 |
-
blowout
|
4083 |
-
breathing
|
4084 |
-
cervic
|
4085 |
-
dissection
|
4086 |
-
diverticula
|
4087 |
-
ebv
|
4088 |
-
edentulous
|
4089 |
-
ectactic
|
4090 |
-
fibres
|
4091 |
-
hinders
|
4092 |
-
hospital
|
4093 |
-
longest
|
4094 |
-
ligament
|
4095 |
-
little
|
4096 |
-
myel
|
4097 |
-
nausea
|
4098 |
-
outer
|
4099 |
-
paget
|
4100 |
-
papilloma
|
4101 |
-
physaliph
|
4102 |
-
pachymeningeal
|
4103 |
-
pansinusitis
|
4104 |
-
root
|
4105 |
-
sessile
|
4106 |
-
symmetric
|
4107 |
-
type
|
4108 |
-
value
|
4109 |
-
vicinity
|
4110 |
-
xii
|
4111 |
-
zyg
|
4112 |
-
##ysts
|
4113 |
-
##hordal
|
4114 |
-
reversal
|
4115 |
-
investigation
|
4116 |
-
conditions
|
4117 |
-
consequently
|
4118 |
-
##olisthesis
|
4119 |
-
chordoma
|
4120 |
-
already
|
4121 |
-
scope
|
4122 |
-
scapulae
|
4123 |
-
notochordal
|
4124 |
-
distorted
|
4125 |
-
retrotympanic
|
4126 |
-
classification
|
4127 |
-
measurement
|
4128 |
-
mucocoele
|
4129 |
-
##ependymal
|
4130 |
-
subtraction
|
4131 |
-
aryepiglottic
|
4132 |
-
diabetes
|
4133 |
-
8thditon
|
4134 |
-
communic
|
4135 |
-
encountered
|
4136 |
-
recurrence
|
4137 |
-
bronchiectasis
|
4138 |
-
surveillance
|
4139 |
-
occasionally
|
4140 |
-
underdeveloped
|
4141 |
-
architecture
|
4142 |
-
supraglottic
|
4143 |
-
neuroforamina
|
4144 |
-
elsewhere
|
4145 |
-
electronic
|
4146 |
-
symptoms
|
4147 |
-
haemangiomas
|
4148 |
-
microcysts
|
4149 |
-
epiglottis
|
4150 |
-
ecchondrosis
|
4151 |
-
lymphoepithelioma
|
4152 |
-
microangiopathic
|
4153 |
-
physaliphora
|
4154 |
-
03
|
4155 |
-
09
|
4156 |
-
0m0
|
4157 |
-
0mm
|
4158 |
-
0×2
|
4159 |
-
0×4
|
4160 |
-
1a
|
4161 |
-
1b
|
4162 |
-
1×4
|
4163 |
-
2m
|
4164 |
-
2a
|
4165 |
-
26
|
4166 |
-
2×2
|
4167 |
-
24mm
|
4168 |
-
2x3
|
4169 |
-
2×1
|
4170 |
-
2m1
|
4171 |
-
28mm
|
4172 |
-
2×6
|
4173 |
-
28x1
|
4174 |
-
3x
|
4175 |
-
39
|
4176 |
-
32
|
4177 |
-
35
|
4178 |
-
38
|
4179 |
-
3x1
|
4180 |
-
3x2
|
4181 |
-
3×2
|
4182 |
-
34mm
|
4183 |
-
3×1
|
4184 |
-
30mm
|
4185 |
-
3×6
|
4186 |
-
4x
|
4187 |
-
40
|
4188 |
-
42
|
4189 |
-
48
|
4190 |
-
4×2
|
4191 |
-
4×3
|
4192 |
-
44mm
|
4193 |
-
45mm
|
4194 |
-
4×1
|
4195 |
-
47mm
|
4196 |
-
43mm
|
4197 |
-
40mm
|
4198 |
-
41mm
|
4199 |
-
5t
|
4200 |
-
5a
|
4201 |
-
51
|
4202 |
-
56
|
4203 |
-
58
|
4204 |
-
5×3
|
4205 |
-
5×1
|
4206 |
-
5×4
|
4207 |
-
5tes
|
4208 |
-
5×6
|
4209 |
-
55×3
|
4210 |
-
6×
|
4211 |
-
60
|
4212 |
-
64
|
4213 |
-
65
|
4214 |
-
68
|
4215 |
-
61mm
|
4216 |
-
6×6
|
4217 |
-
6x11mm
|
4218 |
-
6×5
|
4219 |
-
6x10mm
|
4220 |
-
7m
|
4221 |
-
701
|
4222 |
-
7×4
|
4223 |
-
8×1
|
4224 |
-
8×4
|
4225 |
-
8×6
|
4226 |
-
9×
|
4227 |
-
90
|
4228 |
-
99
|
4229 |
-
901
|
4230 |
-
9×2
|
4231 |
-
9×3
|
4232 |
-
9x3
|
4233 |
-
9×5
|
4234 |
-
ae
|
4235 |
-
aid
|
4236 |
-
ahn
|
4237 |
-
aspir
|
4238 |
-
aver
|
4239 |
-
away
|
4240 |
-
bes
|
4241 |
-
bith
|
4242 |
-
bial
|
4243 |
-
bow
|
4244 |
-
bur
|
4245 |
-
buc
|
4246 |
-
bm0
|
4247 |
-
bap
|
4248 |
-
cn
|
4249 |
-
cat
|
4250 |
-
cri
|
4251 |
-
cant
|
4252 |
-
cut
|
4253 |
-
cres
|
4254 |
-
cur
|
4255 |
-
creat
|
4256 |
-
cathe
|
4257 |
-
ds
|
4258 |
-
did
|
4259 |
-
div
|
4260 |
-
doc
|
4261 |
-
day
|
4262 |
-
density
|
4263 |
-
dce
|
4264 |
-
data
|
4265 |
-
eg
|
4266 |
-
eas
|
4267 |
-
eral
|
4268 |
-
era
|
4269 |
-
est
|
4270 |
-
eber
|
4271 |
-
fd
|
4272 |
-
fal
|
4273 |
-
fer
|
4274 |
-
four
|
4275 |
-
fir
|
4276 |
-
fess
|
4277 |
-
fra
|
4278 |
-
filtr
|
4279 |
-
face
|
4280 |
-
fixed
|
4281 |
-
fift
|
4282 |
-
gamm
|
4283 |
-
gran
|
4284 |
-
ho
|
4285 |
-
hx
|
4286 |
-
hk
|
4287 |
-
hig
|
4288 |
-
hiv
|
4289 |
-
hand
|
4290 |
-
hong
|
4291 |
-
hilar
|
4292 |
-
hans
|
4293 |
-
hole
|
4294 |
-
i2
|
4295 |
-
iam
|
4296 |
-
ide
|
4297 |
-
iga
|
4298 |
-
jap
|
4299 |
-
ky
|
4300 |
-
kid
|
4301 |
-
kong
|
4302 |
-
lt
|
4303 |
-
ll
|
4304 |
-
lit
|
4305 |
-
light
|
4306 |
-
lab
|
4307 |
-
lay
|
4308 |
-
lod
|
4309 |
-
load
|
4310 |
-
md
|
4311 |
-
mx
|
4312 |
-
mul
|
4313 |
-
might
|
4314 |
-
mad
|
4315 |
-
mud
|
4316 |
-
miss
|
4317 |
-
mob
|
4318 |
-
mte
|
4319 |
-
mra
|
4320 |
-
mental
|
4321 |
-
myl
|
4322 |
-
meningeal
|
4323 |
-
mpc
|
4324 |
-
ns
|
4325 |
-
nk
|
4326 |
-
never
|
4327 |
-
nape
|
4328 |
-
oper
|
4329 |
-
pd
|
4330 |
-
pi
|
4331 |
-
py
|
4332 |
-
ps
|
4333 |
-
pf
|
4334 |
-
pad
|
4335 |
-
pte
|
4336 |
-
punc
|
4337 |
-
pell
|
4338 |
-
pyr
|
4339 |
-
pack
|
4340 |
-
ppos
|
4341 |
-
pending
|
4342 |
-
rp
|
4343 |
-
rar
|
4344 |
-
rig
|
4345 |
-
righ
|
4346 |
-
rent
|
4347 |
-
ross
|
4348 |
-
rud
|
4349 |
-
rap
|
4350 |
-
rind
|
4351 |
-
rises
|
4352 |
-
rumour
|
4353 |
-
sum
|
4354 |
-
sac
|
4355 |
-
sternal
|
4356 |
-
sate
|
4357 |
-
sep
|
4358 |
-
swi
|
4359 |
-
sized
|
4360 |
-
tx
|
4361 |
-
t0
|
4362 |
-
tre
|
4363 |
-
test
|
4364 |
-
term
|
4365 |
-
tak
|
4366 |
-
vc
|
4367 |
-
v1
|
4368 |
-
vas
|
4369 |
-
vom
|
4370 |
-
vir
|
4371 |
-
vasc
|
4372 |
-
vest
|
4373 |
-
vision
|
4374 |
-
will
|
4375 |
-
wald
|
4376 |
-
x3
|
4377 |
-
x1
|
4378 |
-
x6
|
4379 |
-
x4
|
4380 |
-
xap
|
4381 |
-
y1
|
4382 |
-
you
|
4383 |
-
##ey
|
4384 |
-
##eal
|
4385 |
-
##eth
|
4386 |
-
##eases
|
4387 |
-
##nx
|
4388 |
-
##n3
|
4389 |
-
##n0
|
4390 |
-
##nh
|
4391 |
-
##nit
|
4392 |
-
##num
|
4393 |
-
##nial
|
4394 |
-
##nch
|
4395 |
-
##nants
|
4396 |
-
##dis
|
4397 |
-
##dated
|
4398 |
-
##dered
|
4399 |
-
##diology
|
4400 |
-
##rf
|
4401 |
-
##ron
|
4402 |
-
##rax
|
4403 |
-
##rontal
|
4404 |
-
##rosc
|
4405 |
-
##rinates
|
4406 |
-
##iag
|
4407 |
-
##iment
|
4408 |
-
##ired
|
4409 |
-
##iosuperior
|
4410 |
-
##gion
|
4411 |
-
##gopalatine
|
4412 |
-
##gative
|
4413 |
-
##gital
|
4414 |
-
##gitis
|
4415 |
-
##growth
|
4416 |
-
##gye
|
4417 |
-
##c2
|
4418 |
-
##cent
|
4419 |
-
##cular
|
4420 |
-
##cav
|
4421 |
-
##cend
|
4422 |
-
##cess
|
4423 |
-
##cence
|
4424 |
-
##colog
|
4425 |
-
##cked
|
4426 |
-
##cica
|
4427 |
-
##cuted
|
4428 |
-
##uing
|
4429 |
-
##uate
|
4430 |
-
##uation
|
4431 |
-
##uff
|
4432 |
-
##uish
|
4433 |
-
##pon
|
4434 |
-
##ped
|
4435 |
-
##pious
|
4436 |
-
##plete
|
4437 |
-
##pness
|
4438 |
-
##oy
|
4439 |
-
##oz
|
4440 |
-
##oon
|
4441 |
-
##oes
|
4442 |
-
##oary
|
4443 |
-
##oic
|
4444 |
-
##oom
|
4445 |
-
##otr
|
4446 |
-
##oour
|
4447 |
-
##orem
|
4448 |
-
##oth
|
4449 |
-
##ohyoid
|
4450 |
-
##x5mm
|
4451 |
-
##x8x1
|
4452 |
-
##mi
|
4453 |
-
##mx
|
4454 |
-
##mary
|
4455 |
-
##more
|
4456 |
-
##misp
|
4457 |
-
##mixed
|
4458 |
-
##ts
|
4459 |
-
##t3
|
4460 |
-
##t1
|
4461 |
-
##ten
|
4462 |
-
##tist
|
4463 |
-
##tment
|
4464 |
-
##timal
|
4465 |
-
##tology
|
4466 |
-
##tak
|
4467 |
-
##taic
|
4468 |
-
##tumour
|
4469 |
-
##theless
|
4470 |
-
##yngeal
|
4471 |
-
##ygoid
|
4472 |
-
##aph
|
4473 |
-
##ageal
|
4474 |
-
##aug
|
4475 |
-
##sh
|
4476 |
-
##sion
|
4477 |
-
##sid
|
4478 |
-
##sist
|
4479 |
-
##sur
|
4480 |
-
##sory
|
4481 |
-
##sure
|
4482 |
-
##sification
|
4483 |
-
##sfs
|
4484 |
-
##spers
|
4485 |
-
##suing
|
4486 |
-
##lph
|
4487 |
-
##led
|
4488 |
-
##lis
|
4489 |
-
##land
|
4490 |
-
##var
|
4491 |
-
##vil
|
4492 |
-
##vance
|
4493 |
-
##vascular
|
4494 |
-
##fal
|
4495 |
-
##fit
|
4496 |
-
##fused
|
4497 |
-
##bar
|
4498 |
-
##bre
|
4499 |
-
##ball
|
4500 |
-
##bness
|
4501 |
-
##briform
|
4502 |
-
##3m
|
4503 |
-
##3x26mm
|
4504 |
-
##jug
|
4505 |
-
##ks
|
4506 |
-
##06
|
4507 |
-
##04
|
4508 |
-
##05
|
4509 |
-
##08
|
4510 |
-
##0x1
|
4511 |
-
##001
|
4512 |
-
##0×1
|
4513 |
-
##14
|
4514 |
-
##1x2
|
4515 |
-
##1tumour
|
4516 |
-
##1001
|
4517 |
-
##6x1
|
4518 |
-
##6x18mm
|
4519 |
-
##hc
|
4520 |
-
##hion
|
4521 |
-
##hus
|
4522 |
-
##han
|
4523 |
-
##his
|
4524 |
-
##haem
|
4525 |
-
##7×3
|
4526 |
-
##98
|
4527 |
-
##9x2
|
4528 |
-
##9x10mm
|
4529 |
-
##5cm
|
4530 |
-
##zy
|
4531 |
-
##8x3
|
4532 |
-
##hed
|
4533 |
-
##heal
|
4534 |
-
##held
|
4535 |
-
##hemisp
|
4536 |
-
them
|
4537 |
-
thecal
|
4538 |
-
thems
|
4539 |
-
##ale
|
4540 |
-
##aluminal
|
4541 |
-
##aring
|
4542 |
-
##arding
|
4543 |
-
##aract
|
4544 |
-
##arted
|
4545 |
-
##ar201
|
4546 |
-
##arakable
|
4547 |
-
##argye
|
4548 |
-
##arpness
|
4549 |
-
##astas
|
4550 |
-
##renal
|
4551 |
-
##ery
|
4552 |
-
##ers
|
4553 |
-
##erin
|
4554 |
-
##erus
|
4555 |
-
##ering
|
4556 |
-
##erable
|
4557 |
-
##erterm
|
4558 |
-
##onpc
|
4559 |
-
##inge
|
4560 |
-
##inoid
|
4561 |
-
##inine
|
4562 |
-
##inated
|
4563 |
-
##inuity
|
4564 |
-
##inuate
|
4565 |
-
init
|
4566 |
-
inspec
|
4567 |
-
inspect
|
4568 |
-
inwards
|
4569 |
-
innum
|
4570 |
-
ingrowth
|
4571 |
-
##ndering
|
4572 |
-
##esor
|
4573 |
-
##ester
|
4574 |
-
##ortion
|
4575 |
-
##oration
|
4576 |
-
##oracic
|
4577 |
-
##orudes
|
4578 |
-
##ativ
|
4579 |
-
##atomy
|
4580 |
-
##atysm
|
4581 |
-
nov
|
4582 |
-
##aryx
|
4583 |
-
##ussion
|
4584 |
-
##iting
|
4585 |
-
##itud
|
4586 |
-
##itple
|
4587 |
-
##idal
|
4588 |
-
##ides
|
4589 |
-
##idum
|
4590 |
-
##iderin
|
4591 |
-
##phopharyngeal
|
4592 |
-
##phosis
|
4593 |
-
##enge
|
4594 |
-
##enia
|
4595 |
-
##enral
|
4596 |
-
##icle
|
4597 |
-
##icuous
|
4598 |
-
##icienc
|
4599 |
-
##anasal
|
4600 |
-
island
|
4601 |
-
##osal
|
4602 |
-
##osiderin
|
4603 |
-
##teral
|
4604 |
-
means
|
4605 |
-
##umul
|
4606 |
-
##ument
|
4607 |
-
let
|
4608 |
-
leve
|
4609 |
-
leav
|
4610 |
-
leung
|
4611 |
-
##edullary
|
4612 |
-
##igest
|
4613 |
-
##leted
|
4614 |
-
nasog
|
4615 |
-
nasphopharyngeal
|
4616 |
-
##inguous
|
4617 |
-
##inguish
|
4618 |
-
##ingled
|
4619 |
-
##uloma
|
4620 |
-
##ulbar
|
4621 |
-
metastat
|
4622 |
-
metastaic
|
4623 |
-
refused
|
4624 |
-
rendering
|
4625 |
-
##entim
|
4626 |
-
withheld
|
4627 |
-
rightt
|
4628 |
-
nasopharyneal
|
4629 |
-
nasopharyngitis
|
4630 |
-
##ism
|
4631 |
-
##isation
|
4632 |
-
##isrup
|
4633 |
-
tumoour
|
4634 |
-
##omost
|
4635 |
-
##omises
|
4636 |
-
##omatic
|
4637 |
-
##omplete
|
4638 |
-
tof
|
4639 |
-
toc2
|
4640 |
-
oram
|
4641 |
-
##ilities
|
4642 |
-
##ilection
|
4643 |
-
necess
|
4644 |
-
##pering
|
4645 |
-
##perienc
|
4646 |
-
metastastic
|
4647 |
-
##clar
|
4648 |
-
exit
|
4649 |
-
exotr
|
4650 |
-
experienc
|
4651 |
-
##ablis
|
4652 |
-
updated
|
4653 |
-
uptak
|
4654 |
-
##allenge
|
4655 |
-
t1rh
|
4656 |
-
union
|
4657 |
-
unav
|
4658 |
-
unrel
|
4659 |
-
unsh
|
4660 |
-
unbre
|
4661 |
-
consp
|
4662 |
-
conch
|
4663 |
-
t1wfs
|
4664 |
-
##olester
|
4665 |
-
##reman
|
4666 |
-
unremarakable
|
4667 |
-
##owding
|
4668 |
-
spill
|
4669 |
-
spont
|
4670 |
-
spicul
|
4671 |
-
paracent
|
4672 |
-
carnial
|
4673 |
-
cardiology
|
4674 |
-
chun
|
4675 |
-
china
|
4676 |
-
challenge
|
4677 |
-
cholester
|
4678 |
-
nasopharynxl
|
4679 |
-
##ossible
|
4680 |
-
##ife
|
4681 |
-
##ifically
|
4682 |
-
##aced
|
4683 |
-
##acial
|
4684 |
-
invasin
|
4685 |
-
altern
|
4686 |
-
alto
|
4687 |
-
involuted
|
4688 |
-
##avity
|
4689 |
-
##aviv
|
4690 |
-
##avenous
|
4691 |
-
##avily
|
4692 |
-
##teriorly
|
4693 |
-
##isting
|
4694 |
-
##istax
|
4695 |
-
smok
|
4696 |
-
smalll
|
4697 |
-
smallish
|
4698 |
-
##cine
|
4699 |
-
##cinator
|
4700 |
-
t2a
|
4701 |
-
t2sfs
|
4702 |
-
cortic
|
4703 |
-
fossal
|
4704 |
-
jugulare
|
4705 |
-
inform
|
4706 |
-
infact
|
4707 |
-
ones
|
4708 |
-
onse
|
4709 |
-
oncolog
|
4710 |
-
cavum
|
4711 |
-
cavitary
|
4712 |
-
regarding
|
4713 |
-
corona
|
4714 |
-
intenral
|
4715 |
-
scaph
|
4716 |
-
##ami
|
4717 |
-
##amucos
|
4718 |
-
##amidal
|
4719 |
-
who
|
4720 |
-
whose
|
4721 |
-
##ury
|
4722 |
-
##urs
|
4723 |
-
notably
|
4724 |
-
heart
|
4725 |
-
hearing
|
4726 |
-
heavily
|
4727 |
-
distance
|
4728 |
-
distortion
|
4729 |
-
distinguish
|
4730 |
-
pterygomax
|
4731 |
-
pterygoplatine
|
4732 |
-
retrob
|
4733 |
-
retropharyng
|
4734 |
-
retromandibular
|
4735 |
-
retrolisthesis
|
4736 |
-
midly
|
4737 |
-
midway
|
4738 |
-
midjug
|
4739 |
-
scanner
|
4740 |
-
ears
|
4741 |
-
earli
|
4742 |
-
heads
|
4743 |
-
##heric
|
4744 |
-
depression
|
4745 |
-
delph
|
4746 |
-
dehis
|
4747 |
-
base0
|
4748 |
-
##otomy
|
4749 |
-
##inear
|
4750 |
-
##ullar
|
4751 |
-
##axillary
|
4752 |
-
paraest
|
4753 |
-
paraphy
|
4754 |
-
parafal
|
4755 |
-
styl
|
4756 |
-
start
|
4757 |
-
started
|
4758 |
-
##ircles
|
4759 |
-
enucle
|
4760 |
-
ensuing
|
4761 |
-
forament
|
4762 |
-
foramens
|
4763 |
-
abd
|
4764 |
-
able
|
4765 |
-
contrasting
|
4766 |
-
##endent
|
4767 |
-
##endage
|
4768 |
-
##endosc
|
4769 |
-
crcl
|
4770 |
-
crowding
|
4771 |
-
prog
|
4772 |
-
prorudes
|
4773 |
-
prossible
|
4774 |
-
extended
|
4775 |
-
postsur
|
4776 |
-
##opap
|
4777 |
-
##opically
|
4778 |
-
##optimal
|
4779 |
-
##openia
|
4780 |
-
pretrac
|
4781 |
-
precontrast
|
4782 |
-
precav
|
4783 |
-
##portance
|
4784 |
-
walled
|
4785 |
-
beli
|
4786 |
-
cana
|
4787 |
-
ant
|
4788 |
-
anatomy
|
4789 |
-
hypere
|
4790 |
-
##cluder
|
4791 |
-
##ands
|
4792 |
-
suspect
|
4793 |
-
suspious
|
4794 |
-
apt
|
4795 |
-
##eninges
|
4796 |
-
techniquee
|
4797 |
-
clivis
|
4798 |
-
accesor
|
4799 |
-
accumul
|
4800 |
-
book
|
4801 |
-
final
|
4802 |
-
earlyt3
|
4803 |
-
staget1
|
4804 |
-
##ucidum
|
4805 |
-
##imet
|
4806 |
-
##imural
|
4807 |
-
##ibules
|
4808 |
-
sphenoe
|
4809 |
-
sphenoplatine
|
4810 |
-
ajc
|
4811 |
-
sphenoidale
|
4812 |
-
fissural
|
4813 |
-
saggital
|
4814 |
-
mucle
|
4815 |
-
mastoiditis
|
4816 |
-
mucosing
|
4817 |
-
miller
|
4818 |
-
craniof
|
4819 |
-
craniotomy
|
4820 |
-
mucosally
|
4821 |
-
##illay
|
4822 |
-
admixed
|
4823 |
-
adrenal
|
4824 |
-
##obed
|
4825 |
-
nonet
|
4826 |
-
##oove
|
4827 |
-
asl
|
4828 |
-
asf
|
4829 |
-
subependymal
|
4830 |
-
subsid
|
4831 |
-
suboptimal
|
4832 |
-
lateraly
|
4833 |
-
laterality
|
4834 |
-
appoint
|
4835 |
-
appendage
|
4836 |
-
prominently
|
4837 |
-
##play
|
4838 |
-
##ploic
|
4839 |
-
larges
|
4840 |
-
index
|
4841 |
-
induced
|
4842 |
-
inderterm
|
4843 |
-
seem
|
4844 |
-
se1001
|
4845 |
-
hyperost
|
4846 |
-
parotiditis
|
4847 |
-
predilection
|
4848 |
-
arises
|
4849 |
-
arae
|
4850 |
-
##essory
|
4851 |
-
gls
|
4852 |
-
inferoan
|
4853 |
-
inferolateral
|
4854 |
-
inferoposterior
|
4855 |
-
inferomost
|
4856 |
-
inflammary
|
4857 |
-
die
|
4858 |
-
diploic
|
4859 |
-
indetermined
|
4860 |
-
##elung
|
4861 |
-
##elves
|
4862 |
-
appeared
|
4863 |
-
hyperplastic
|
4864 |
-
mok
|
4865 |
-
mode
|
4866 |
-
furtherr
|
4867 |
-
furthermore
|
4868 |
-
enhacement
|
4869 |
-
extracran
|
4870 |
-
vidial
|
4871 |
-
##existing
|
4872 |
-
specifically
|
4873 |
-
composed
|
4874 |
-
completed
|
4875 |
-
suppress
|
4876 |
-
medal
|
4877 |
-
floors
|
4878 |
-
froz
|
4879 |
-
slit
|
4880 |
-
slip
|
4881 |
-
supraorbital
|
4882 |
-
suprahyoid
|
4883 |
-
disrup
|
4884 |
-
diseases
|
4885 |
-
display
|
4886 |
-
mar2013
|
4887 |
-
tumoral
|
4888 |
-
possibilities
|
4889 |
-
##ayngeal
|
4890 |
-
multi
|
4891 |
-
muscosal
|
4892 |
-
centimet
|
4893 |
-
cricoary
|
4894 |
-
superoposterior
|
4895 |
-
difference
|
4896 |
-
cytology
|
4897 |
-
cartilages
|
4898 |
-
bordered
|
4899 |
-
bordering
|
4900 |
-
##ostomy
|
4901 |
-
##clivical
|
4902 |
-
match
|
4903 |
-
cranially
|
4904 |
-
changed
|
4905 |
-
t1no
|
4906 |
-
situ
|
4907 |
-
sited
|
4908 |
-
septal
|
4909 |
-
lobular
|
4910 |
-
persist
|
4911 |
-
perimural
|
4912 |
-
numbness
|
4913 |
-
numerus
|
4914 |
-
encirc
|
4915 |
-
encircles
|
4916 |
-
##enmuller
|
4917 |
-
rosenmullar
|
4918 |
-
reconstr
|
4919 |
-
representing
|
4920 |
-
##ometal
|
4921 |
-
remod
|
4922 |
-
remnants
|
4923 |
-
##yrygoid
|
4924 |
-
##thmoidal
|
4925 |
-
im14
|
4926 |
-
importance
|
4927 |
-
patch
|
4928 |
-
t4nm0
|
4929 |
-
otomastoids
|
4930 |
-
resected
|
4931 |
-
respon
|
4932 |
-
##odigest
|
4933 |
-
ctb
|
4934 |
-
hazy
|
4935 |
-
sizes
|
4936 |
-
sizable
|
4937 |
-
sizeable
|
4938 |
-
marginated
|
4939 |
-
mainy
|
4940 |
-
cannon
|
4941 |
-
##rovascular
|
4942 |
-
petct
|
4943 |
-
continguous
|
4944 |
-
##ereved
|
4945 |
-
##aching
|
4946 |
-
views
|
4947 |
-
viewed
|
4948 |
-
pressure
|
4949 |
-
presereved
|
4950 |
-
thank
|
4951 |
-
conglomerating
|
4952 |
-
locore
|
4953 |
-
##entioned
|
4954 |
-
accesssory
|
4955 |
-
##ximity
|
4956 |
-
##llite
|
4957 |
-
accessoryy
|
4958 |
-
##ophageal
|
4959 |
-
open
|
4960 |
-
opposed
|
4961 |
-
longer
|
4962 |
-
longitud
|
4963 |
-
petroclivical
|
4964 |
-
palati
|
4965 |
-
palatal
|
4966 |
-
palates
|
4967 |
-
extraparotid
|
4968 |
-
extramed
|
4969 |
-
extrathyroid
|
4970 |
-
extradural
|
4971 |
-
extramucos
|
4972 |
-
##ontinuity
|
4973 |
-
tubinate
|
4974 |
-
tuberous
|
4975 |
-
tubrinates
|
4976 |
-
incomplete
|
4977 |
-
fascial
|
4978 |
-
intradural
|
4979 |
-
intraluminal
|
4980 |
-
intranasal
|
4981 |
-
intravenous
|
4982 |
-
##x14mm
|
4983 |
-
##x12mm
|
4984 |
-
##x13x1
|
4985 |
-
##x12x2
|
4986 |
-
##x16x18mm
|
4987 |
-
turcica
|
4988 |
-
difficulty
|
4989 |
-
postero
|
4990 |
-
posteromedial
|
4991 |
-
##ternoon
|
4992 |
-
undisrup
|
4993 |
-
prof
|
4994 |
-
proves
|
4995 |
-
proximity
|
4996 |
-
continue
|
4997 |
-
continues
|
4998 |
-
shortly
|
4999 |
-
pls
|
5000 |
-
platysm
|
5001 |
-
placed
|
5002 |
-
jugulodiag
|
5003 |
-
relativ
|
5004 |
-
retains
|
5005 |
-
tin0m0
|
5006 |
-
tinnit
|
5007 |
-
tin1tumour
|
5008 |
-
evaluated
|
5009 |
-
conglomerations
|
5010 |
-
occurs
|
5011 |
-
contained
|
5012 |
-
discussion
|
5013 |
-
discontinuity
|
5014 |
-
moderately
|
5015 |
-
10cm
|
5016 |
-
10x2
|
5017 |
-
1001
|
5018 |
-
10x11mm
|
5019 |
-
event
|
5020 |
-
striations
|
5021 |
-
strands
|
5022 |
-
##x24mm
|
5023 |
-
##x22x2
|
5024 |
-
##x23x26mm
|
5025 |
-
##x26x1
|
5026 |
-
##x28x3
|
5027 |
-
incidenal
|
5028 |
-
incidentally
|
5029 |
-
pharyngo
|
5030 |
-
perforation
|
5031 |
-
1201
|
5032 |
-
12x11mm
|
5033 |
-
12aug
|
5034 |
-
12x13x1
|
5035 |
-
formation
|
5036 |
-
formamina
|
5037 |
-
scfs
|
5038 |
-
icas
|
5039 |
-
neural
|
5040 |
-
neither
|
5041 |
-
negative
|
5042 |
-
advised
|
5043 |
-
compressive
|
5044 |
-
endoscopically
|
5045 |
-
mechan
|
5046 |
-
ace
|
5047 |
-
acessory
|
5048 |
-
compare
|
5049 |
-
comparing
|
5050 |
-
comparatively
|
5051 |
-
compartment
|
5052 |
-
equivocally
|
5053 |
-
inside
|
5054 |
-
insuff
|
5055 |
-
insinuate
|
5056 |
-
##×25×3
|
5057 |
-
##×20×1
|
5058 |
-
##regate
|
5059 |
-
obstrcuted
|
5060 |
-
3n2
|
5061 |
-
##×37×2
|
5062 |
-
cords
|
5063 |
-
aerodigest
|
5064 |
-
descend
|
5065 |
-
confused
|
5066 |
-
surrounded
|
5067 |
-
11a
|
5068 |
-
11cm
|
5069 |
-
11x10mm
|
5070 |
-
fibroma
|
5071 |
-
raised
|
5072 |
-
thinned
|
5073 |
-
crossed
|
5074 |
-
haemosiderin
|
5075 |
-
extranodular
|
5076 |
-
134
|
5077 |
-
13cm
|
5078 |
-
13x5mm
|
5079 |
-
13x23x26mm
|
5080 |
-
localized
|
5081 |
-
tornwald
|
5082 |
-
contiguity
|
5083 |
-
indentation
|
5084 |
-
diameters
|
5085 |
-
continuing
|
5086 |
-
subcentim
|
5087 |
-
arterty
|
5088 |
-
presuming
|
5089 |
-
presumabal
|
5090 |
-
denervated
|
5091 |
-
became
|
5092 |
-
grade
|
5093 |
-
groove
|
5094 |
-
##stemic
|
5095 |
-
##aneously
|
5096 |
-
degenerated
|
5097 |
-
cerebrovascular
|
5098 |
-
cerebelli
|
5099 |
-
ducts
|
5100 |
-
simple
|
5101 |
-
interal
|
5102 |
-
interim
|
5103 |
-
interface
|
5104 |
-
interspers
|
5105 |
-
interhemisp
|
5106 |
-
grouping
|
5107 |
-
ppfs
|
5108 |
-
ganglioc
|
5109 |
-
auricular
|
5110 |
-
t3n2mx
|
5111 |
-
planum
|
5112 |
-
striping
|
5113 |
-
stripped
|
5114 |
-
neuro
|
5115 |
-
2010
|
5116 |
-
2014
|
5117 |
-
##hesia
|
5118 |
-
##orrhages
|
5119 |
-
nasoendosc
|
5120 |
-
t4n3a
|
5121 |
-
t4n3dis
|
5122 |
-
t4n3mi
|
5123 |
-
checked
|
5124 |
-
##×15
|
5125 |
-
##×17×2
|
5126 |
-
##×17×3
|
5127 |
-
t3n3m
|
5128 |
-
obliterate
|
5129 |
-
confluence
|
5130 |
-
4n1m0
|
5131 |
-
4n3m
|
5132 |
-
goiter
|
5133 |
-
meninges
|
5134 |
-
mastication
|
5135 |
-
replaces
|
5136 |
-
##omalacic
|
5137 |
-
developed
|
5138 |
-
development
|
5139 |
-
1801
|
5140 |
-
18x24mm
|
5141 |
-
mets
|
5142 |
-
anterosuperior
|
5143 |
-
anteroinferior
|
5144 |
-
anterolisthesis
|
5145 |
-
anteriosuperior
|
5146 |
-
encroaching
|
5147 |
-
results
|
5148 |
-
##ephalic
|
5149 |
-
212
|
5150 |
-
2101
|
5151 |
-
21x12mm
|
5152 |
-
bilobed
|
5153 |
-
cisternal
|
5154 |
-
chronicity
|
5155 |
-
differentiating
|
5156 |
-
t1n2c
|
5157 |
-
t4n2m
|
5158 |
-
structure
|
5159 |
-
structural
|
5160 |
-
20x26mm
|
5161 |
-
20x8x1
|
5162 |
-
2005
|
5163 |
-
20x14mm
|
5164 |
-
22x12x2
|
5165 |
-
22×37×2
|
5166 |
-
coexisting
|
5167 |
-
emphy
|
5168 |
-
ijc
|
5169 |
-
osteoma
|
5170 |
-
osteopenia
|
5171 |
-
osteometal
|
5172 |
-
separating
|
5173 |
-
lns1
|
5174 |
-
sellae
|
5175 |
-
basion
|
5176 |
-
basis
|
5177 |
-
gives
|
5178 |
-
ostium
|
5179 |
-
##artment
|
5180 |
-
prelaryngeal
|
5181 |
-
antra
|
5182 |
-
confirmation
|
5183 |
-
2n1
|
5184 |
-
2n3m0
|
5185 |
-
colli
|
5186 |
-
later
|
5187 |
-
ser13
|
5188 |
-
##×45×3
|
5189 |
-
pathway
|
5190 |
-
pathological
|
5191 |
-
combination
|
5192 |
-
tracheoes
|
5193 |
-
tracheostomy
|
5194 |
-
questioned
|
5195 |
-
aforem
|
5196 |
-
afternoon
|
5197 |
-
block
|
5198 |
-
bloom
|
5199 |
-
required
|
5200 |
-
deviating
|
5201 |
-
prolapses
|
5202 |
-
effaces
|
5203 |
-
effacing
|
5204 |
-
attachment
|
5205 |
-
attached
|
5206 |
-
indicates
|
5207 |
-
removal
|
5208 |
-
chemo
|
5209 |
-
chemort
|
5210 |
-
valleculae
|
5211 |
-
14cm
|
5212 |
-
14x10mm
|
5213 |
-
2x6
|
5214 |
-
2x5
|
5215 |
-
9x4
|
5216 |
-
9x7mm
|
5217 |
-
hamper
|
5218 |
-
macrosc
|
5219 |
-
molars
|
5220 |
-
osterior
|
5221 |
-
ossification
|
5222 |
-
wider
|
5223 |
-
widely
|
5224 |
-
widened
|
5225 |
-
##neys
|
5226 |
-
##pressive
|
5227 |
-
encephalomalacic
|
5228 |
-
ulcerative
|
5229 |
-
benefit
|
5230 |
-
17cm
|
5231 |
-
1704
|
5232 |
-
1998
|
5233 |
-
7x4
|
5234 |
-
7x5
|
5235 |
-
7x5mm
|
5236 |
-
7x8mm
|
5237 |
-
8x15mm
|
5238 |
-
epistax
|
5239 |
-
joints
|
5240 |
-
pulse
|
5241 |
-
##ixon
|
5242 |
-
##omedullary
|
5243 |
-
depending
|
5244 |
-
dependent
|
5245 |
-
department
|
5246 |
-
adds
|
5247 |
-
comments
|
5248 |
-
t2n12m0
|
5249 |
-
10x6mm
|
5250 |
-
10x7mm
|
5251 |
-
10x9x10mm
|
5252 |
-
needle
|
5253 |
-
insertions
|
5254 |
-
inserted
|
5255 |
-
destroy
|
5256 |
-
intermingled
|
5257 |
-
tracheaa
|
5258 |
-
dysprax
|
5259 |
-
pneumatised
|
5260 |
-
pneumatisation
|
5261 |
-
convincingly
|
5262 |
-
25x18mm
|
5263 |
-
25x26x1
|
5264 |
-
2x1x1
|
5265 |
-
9x1cm
|
5266 |
-
9x15mm
|
5267 |
-
buy
|
5268 |
-
forearm
|
5269 |
-
radical
|
5270 |
-
radiation
|
5271 |
-
rays
|
5272 |
-
meati
|
5273 |
-
##isions
|
5274 |
-
thalami
|
5275 |
-
t2bn3
|
5276 |
-
determined
|
5277 |
-
contours
|
5278 |
-
contouring
|
5279 |
-
obscures
|
5280 |
-
tsxapxcc
|
5281 |
-
##ologically
|
5282 |
-
16x11mm
|
5283 |
-
16x18mm
|
5284 |
-
1606
|
5285 |
-
16x16x18mm
|
5286 |
-
6x4
|
5287 |
-
6x4mm
|
5288 |
-
6x7mm
|
5289 |
-
6x9mm
|
5290 |
-
6x5cm
|
5291 |
-
breaches
|
5292 |
-
breached
|
5293 |
-
esrf
|
5294 |
-
odes
|
5295 |
-
pedicle
|
5296 |
-
##aky
|
5297 |
-
referring
|
5298 |
-
retrophx
|
5299 |
-
retropharngeal
|
5300 |
-
retrophayr
|
5301 |
-
retrophargye
|
5302 |
-
retrophayngeal
|
5303 |
-
define
|
5304 |
-
accountable
|
5305 |
-
indeterminent
|
5306 |
-
t1n3m1
|
5307 |
-
contents
|
5308 |
-
favors
|
5309 |
-
laryngo
|
5310 |
-
coalesce
|
5311 |
-
coalescing
|
5312 |
-
ballooned
|
5313 |
-
obscured
|
5314 |
-
penetration
|
5315 |
-
transependymal
|
5316 |
-
1x0
|
5317 |
-
1x6
|
5318 |
-
1x4
|
5319 |
-
270
|
5320 |
-
27x22x2
|
5321 |
-
27×17×3
|
5322 |
-
5x6
|
5323 |
-
5x5mm
|
5324 |
-
5x6mm
|
5325 |
-
6x2mm
|
5326 |
-
6x3mm
|
5327 |
-
8x5mm
|
5328 |
-
aorta
|
5329 |
-
boundary
|
5330 |
-
csi
|
5331 |
-
csae
|
5332 |
-
calvar
|
5333 |
-
creeping
|
5334 |
-
ocular
|
5335 |
-
occluded
|
5336 |
-
occlude
|
5337 |
-
occluder
|
5338 |
-
synch
|
5339 |
-
systemic
|
5340 |
-
team
|
5341 |
-
teeth
|
5342 |
-
times
|
5343 |
-
×21
|
5344 |
-
##ched
|
5345 |
-
##5×35
|
5346 |
-
propensity
|
5347 |
-
apxts
|
5348 |
-
paranasopharynx
|
5349 |
-
shadow
|
5350 |
-
sets
|
5351 |
-
setting
|
5352 |
-
settl
|
5353 |
-
histologically
|
5354 |
-
fronds
|
5355 |
-
impinge
|
5356 |
-
aggregate
|
5357 |
-
erode
|
5358 |
-
eroded
|
5359 |
-
weeks
|
5360 |
-
blurred
|
5361 |
-
radiating
|
5362 |
-
radiata
|
5363 |
-
homogenously
|
5364 |
-
essential
|
5365 |
-
pedunculated
|
5366 |
-
centering
|
5367 |
-
leptomeninges
|
5368 |
-
34×17×2
|
5369 |
-
bifrontal
|
5370 |
-
eyeball
|
5371 |
-
herniation
|
5372 |
-
morphologically
|
5373 |
-
nuclei
|
5374 |
-
ptergopalatine
|
5375 |
-
sockets
|
5376 |
-
tapering
|
5377 |
-
visible
|
5378 |
-
injury
|
5379 |
-
nasopharngeal
|
5380 |
-
nasophayr
|
5381 |
-
nasopharyx
|
5382 |
-
relevance
|
5383 |
-
concavity
|
5384 |
-
scalp
|
5385 |
-
streaky
|
5386 |
-
abscess
|
5387 |
-
lymphoadenopathy
|
5388 |
-
fragments
|
5389 |
-
fragmented
|
5390 |
-
superolaterally
|
5391 |
-
rectum
|
5392 |
-
repeated
|
5393 |
-
projections
|
5394 |
-
plaques
|
5395 |
-
12x8mm
|
5396 |
-
t4n3bm
|
5397 |
-
t4n3bm1
|
5398 |
-
2021
|
5399 |
-
covering
|
5400 |
-
micropap
|
5401 |
-
microhaem
|
5402 |
-
protrusions
|
5403 |
-
engulfing
|
5404 |
-
decrease
|
5405 |
-
decreased
|
5406 |
-
decreasing
|
5407 |
-
coalescent
|
5408 |
-
calcification
|
5409 |
-
variable
|
5410 |
-
protuberans
|
5411 |
-
hypermetabolism
|
5412 |
-
outpouchings
|
5413 |
-
0x0
|
5414 |
-
0x4
|
5415 |
-
1n1m0
|
5416 |
-
1n3m0
|
5417 |
-
15x11mm
|
5418 |
-
23x13mm
|
5419 |
-
23x11x2
|
5420 |
-
41x28x3
|
5421 |
-
5×5×4
|
5422 |
-
aug13
|
5423 |
-
coli
|
5424 |
-
colon
|
5425 |
-
foarm
|
5426 |
-
foreman
|
5427 |
-
fasica
|
5428 |
-
fashion
|
5429 |
-
filed
|
5430 |
-
films
|
5431 |
-
know
|
5432 |
-
knife
|
5433 |
-
ome
|
5434 |
-
premedullary
|
5435 |
-
premaxillary
|
5436 |
-
pocket
|
5437 |
-
pockets
|
5438 |
-
passes
|
5439 |
-
passing
|
5440 |
-
quite
|
5441 |
-
query
|
5442 |
-
##iocephalic
|
5443 |
-
interna
|
5444 |
-
internatal
|
5445 |
-
congested
|
5446 |
-
congestive
|
5447 |
-
choroidal
|
5448 |
-
stenosis
|
5449 |
-
stenosed
|
5450 |
-
prevent
|
5451 |
-
channels
|
5452 |
-
arrange
|
5453 |
-
arranged
|
5454 |
-
probabale
|
5455 |
-
probabaly
|
5456 |
-
comprised
|
5457 |
-
compromises
|
5458 |
-
supraclinoid
|
5459 |
-
supraclaviv
|
5460 |
-
##sema
|
5461 |
-
##seminated
|
5462 |
-
brachial
|
5463 |
-
brachiocephalic
|
5464 |
-
intracanalicular
|
5465 |
-
undergo
|
5466 |
-
undergone
|
5467 |
-
mottled
|
5468 |
-
mottling
|
5469 |
-
13x10x1
|
5470 |
-
13x19x2
|
5471 |
-
avidly
|
5472 |
-
replacement
|
5473 |
-
3mmx4mm
|
5474 |
-
3mmx6mm
|
5475 |
-
coiling
|
5476 |
-
courses
|
5477 |
-
coursing
|
5478 |
-
limbs
|
5479 |
-
attenuated
|
5480 |
-
attenuation
|
5481 |
-
intermuscular
|
5482 |
-
intermusclar
|
5483 |
-
homogeneously
|
5484 |
-
decompression
|
5485 |
-
decompressive
|
5486 |
-
elevated
|
5487 |
-
elevates
|
5488 |
-
elements
|
5489 |
-
apxlrxcc
|
5490 |
-
scalene
|
5491 |
-
scalenus
|
5492 |
-
stretches
|
5493 |
-
stretched
|
5494 |
-
cervicoth
|
5495 |
-
cervicomedullary
|
5496 |
-
myelopathy
|
5497 |
-
myelomalacia
|
5498 |
-
zygoma
|
5499 |
-
zygomatic
|
5500 |
-
investigations
|
5501 |
-
communicate
|
5502 |
-
communication
|
5503 |
-
26×15
|
5504 |
-
28x15mm
|
5505 |
-
3x0
|
5506 |
-
4x5
|
5507 |
-
40×20×1
|
5508 |
-
42×25×3
|
5509 |
-
5tesla
|
5510 |
-
55×35×35
|
5511 |
-
6×8
|
5512 |
-
60×45×3
|
5513 |
-
7mar201
|
5514 |
-
ahnh
|
5515 |
-
aspiration
|
5516 |
-
averaging
|
5517 |
-
besides
|
5518 |
-
bialteral
|
5519 |
-
bows
|
5520 |
-
burr
|
5521 |
-
buccinator
|
5522 |
-
baptist
|
5523 |
-
cataract
|
5524 |
-
cribriform
|
5525 |
-
canthus
|
5526 |
-
cuts
|
5527 |
-
crescent
|
5528 |
-
curvil
|
5529 |
-
creatinine
|
5530 |
-
catheter
|
5531 |
-
dsseminated
|
5532 |
-
divisions
|
5533 |
-
document
|
5534 |
-
easily
|
5535 |
-
eraly
|
5536 |
-
establis
|
5537 |
-
fdg
|
5538 |
-
falx
|
5539 |
-
ferry
|
5540 |
-
fourth
|
5541 |
-
first
|
5542 |
-
frail
|
5543 |
-
filtrated
|
5544 |
-
fifth
|
5545 |
-
gamma
|
5546 |
-
granuloma
|
5547 |
-
hkhc
|
5548 |
-
higher
|
5549 |
-
hanson
|
5550 |
-
ideally
|
5551 |
-
japan
|
5552 |
-
kyphosis
|
5553 |
-
kidneys
|
5554 |
-
layer
|
5555 |
-
lodes
|
5556 |
-
mdixon
|
5557 |
-
mulitple
|
5558 |
-
madelung
|
5559 |
-
missed
|
5560 |
-
mobile
|
5561 |
-
mteastas
|
5562 |
-
mylohyoid
|
5563 |
-
nsf
|
5564 |
-
nevertheless
|
5565 |
-
operative
|
5566 |
-
piriform
|
5567 |
-
pyriform
|
5568 |
-
psinal
|
5569 |
-
pfo
|
5570 |
-
pteyrygoid
|
5571 |
-
punctate
|
5572 |
-
pellucidum
|
5573 |
-
pyramidal
|
5574 |
-
packing
|
5575 |
-
pposterior
|
5576 |
-
rare
|
5577 |
-
rigth
|
5578 |
-
rentention
|
5579 |
-
rossenmuller
|
5580 |
-
rudiment
|
5581 |
-
rapid
|
5582 |
-
summary
|
5583 |
-
satellite
|
5584 |
-
septate
|
5585 |
-
treated
|
5586 |
-
tests
|
5587 |
-
terms
|
5588 |
-
taken
|
5589 |
-
vca
|
5590 |
-
vasogenic
|
5591 |
-
vomiting
|
5592 |
-
viral
|
5593 |
-
vasculature
|
5594 |
-
vestibules
|
5595 |
-
waldey
|
5596 |
-
##nhancement
|
5597 |
-
##ronous
|
5598 |
-
##gional
|
5599 |
-
##tenoid
|
5600 |
-
##082
|
5601 |
-
themselves
|
5602 |
-
##onpc082
|
5603 |
-
initial
|
5604 |
-
inspection
|
5605 |
-
inspected
|
5606 |
-
innumerable
|
5607 |
-
##iciency
|
5608 |
-
levei
|
5609 |
-
leaving
|
5610 |
-
nasogastric
|
5611 |
-
metastataic
|
5612 |
-
oramen
|
5613 |
-
necessary
|
5614 |
-
exotropic
|
5615 |
-
experienced
|
5616 |
-
uptake
|
5617 |
-
t1rhonpc082
|
5618 |
-
unavailable
|
5619 |
-
unrelated
|
5620 |
-
unsharpness
|
5621 |
-
unbreakable
|
5622 |
-
conspicuous
|
5623 |
-
concha
|
5624 |
-
spills
|
5625 |
-
spontaneously
|
5626 |
-
spiculated
|
5627 |
-
paracentral
|
5628 |
-
chunks
|
5629 |
-
cholesterol
|
5630 |
-
alternatively
|
5631 |
-
altogether
|
5632 |
-
smoking
|
5633 |
-
cortices
|
5634 |
-
information
|
5635 |
-
onset
|
5636 |
-
oncologist
|
5637 |
-
scaphoid
|
5638 |
-
pterygomaxillay
|
5639 |
-
retrobulbar
|
5640 |
-
retropharyngx
|
5641 |
-
midjugular
|
5642 |
-
earlier
|
5643 |
-
delphian
|
5644 |
-
dehiscence
|
5645 |
-
paraesthesia
|
5646 |
-
paraphyyngeal
|
5647 |
-
parafalcine
|
5648 |
-
styloid
|
5649 |
-
enucleation
|
5650 |
-
progress
|
5651 |
-
postsurgical
|
5652 |
-
pretracheal
|
5653 |
-
precaval
|
5654 |
-
believed
|
5655 |
-
hyperenhancement
|
5656 |
-
accesorry
|
5657 |
-
accumulation
|
5658 |
-
staget1n0
|
5659 |
-
sphenoethmoidal
|
5660 |
-
craniofacial
|
5661 |
-
nonetheless
|
5662 |
-
subsiding
|
5663 |
-
appointment
|
5664 |
-
inderterminate
|
5665 |
-
seems
|
5666 |
-
hyperostosis
|
5667 |
-
inferoanteriorly
|
5668 |
-
inferolaterally
|
5669 |
-
extracranial
|
5670 |
-
suppressed
|
5671 |
-
frozen
|
5672 |
-
disruption
|
5673 |
-
centimetre
|
5674 |
-
cricoarytenoid
|
5675 |
-
persistently
|
5676 |
-
encircle
|
5677 |
-
reconstruction
|
5678 |
-
remodelling
|
5679 |
-
response
|
5680 |
-
locoregional
|
5681 |
-
longitudinal
|
5682 |
-
extramedullary
|
5683 |
-
extramucosal
|
5684 |
-
undisrupted
|
5685 |
-
platysma
|
5686 |
-
jugulodiagastric
|
5687 |
-
relatives
|
5688 |
-
tinnitus
|
5689 |
-
10x20mm
|
5690 |
-
12aug2013
|
5691 |
-
12x13x16mm
|
5692 |
-
mechanical
|
5693 |
-
insufficiency
|
5694 |
-
aerodigestive
|
5695 |
-
descends
|
5696 |
-
subcentimeter
|
5697 |
-
presumabaly
|
5698 |
-
interspersed
|
5699 |
-
interhemispheric
|
5700 |
-
gangliocapsular
|
5701 |
-
nasoendoscopy
|
5702 |
-
t4n3disease
|
5703 |
-
anteroinferiorly
|
5704 |
-
20x8x16mm
|
5705 |
-
22x12x20mm
|
5706 |
-
22×37×26
|
5707 |
-
emphysema
|
5708 |
-
tracheoesophageal
|
5709 |
-
aforementioned
|
5710 |
-
blooming
|
5711 |
-
macroscopic
|
5712 |
-
epistaxis
|
5713 |
-
destroyed
|
5714 |
-
dyspraxia
|
5715 |
-
25x26x19mm
|
5716 |
-
retrophayrngeal
|
5717 |
-
retrophargyeal
|
5718 |
-
27x22x23mm
|
5719 |
-
27×17×31
|
5720 |
-
calvarial
|
5721 |
-
synchronous
|
5722 |
-
apxtsxcc
|
5723 |
-
settled
|
5724 |
-
impingement
|
5725 |
-
34×17×25
|
5726 |
-
nasophayrnx
|
5727 |
-
micropapillary
|
5728 |
-
microhaemorrhages
|
5729 |
-
23x11x23mm
|
5730 |
-
41x28x36mm
|
5731 |
-
foarmen
|
5732 |
-
supraclavivular
|
5733 |
-
13x10x15mm
|
5734 |
-
13x19x22mm
|
5735 |
-
cervicothoracic
|
5736 |
-
40×20×14
|
5737 |
-
42×25×30
|
5738 |
-
60×45×33
|
5739 |
-
7mar2012
|
5740 |
-
curvilinear
|
5741 |
-
documented
|
5742 |
-
established
|
5743 |
-
mteastases
|
5744 |
-
rudimentary
|
5745 |
-
waldeyers
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
models/npc-bert-cls/config.json
DELETED
@@ -1,36 +0,0 @@
|
|
1 |
-
{
|
2 |
-
"_name_or_path": "gradio_demo/models/npc-bert-best/",
|
3 |
-
"architectures": [
|
4 |
-
"BertForSequenceClassification"
|
5 |
-
],
|
6 |
-
"attention_probs_dropout_prob": 0.1,
|
7 |
-
"classifier_dropout": null,
|
8 |
-
"hidden_act": "gelu",
|
9 |
-
"hidden_dropout_prob": 0.1,
|
10 |
-
"hidden_size": 768,
|
11 |
-
"id2label": {
|
12 |
-
"0": "Benign/Healthy",
|
13 |
-
"1": "NPC",
|
14 |
-
"2": "Unknown/Out of Domain"
|
15 |
-
},
|
16 |
-
"initializer_range": 0.02,
|
17 |
-
"intermediate_size": 3072,
|
18 |
-
"label2id": {
|
19 |
-
"Benign/Healthy": 0,
|
20 |
-
"NPC": 1,
|
21 |
-
"Unknown/Out of Domain": 2
|
22 |
-
},
|
23 |
-
"layer_norm_eps": 1e-12,
|
24 |
-
"max_position_embeddings": 512,
|
25 |
-
"model_type": "bert",
|
26 |
-
"num_attention_heads": 12,
|
27 |
-
"num_hidden_layers": 12,
|
28 |
-
"pad_token_id": 0,
|
29 |
-
"position_embedding_type": "absolute",
|
30 |
-
"problem_type": "single_label_classification",
|
31 |
-
"torch_dtype": "float32",
|
32 |
-
"transformers_version": "4.37.2",
|
33 |
-
"type_vocab_size": 2,
|
34 |
-
"use_cache": true,
|
35 |
-
"vocab_size": 30522
|
36 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
models/npc-bert-cls/model.safetensors
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:4dfdc98e5c5ae51ec50742ae026b18e73540b58c6a465a83c9ca36525edaa710
|
3 |
-
size 437961724
|
|
|
|
|
|
|
|
models/npc-bert-cls/special_tokens_map.json
DELETED
@@ -1,37 +0,0 @@
|
|
1 |
-
{
|
2 |
-
"cls_token": {
|
3 |
-
"content": "[CLS]",
|
4 |
-
"lstrip": false,
|
5 |
-
"normalized": false,
|
6 |
-
"rstrip": false,
|
7 |
-
"single_word": false
|
8 |
-
},
|
9 |
-
"mask_token": {
|
10 |
-
"content": "[MASK]",
|
11 |
-
"lstrip": false,
|
12 |
-
"normalized": false,
|
13 |
-
"rstrip": false,
|
14 |
-
"single_word": false
|
15 |
-
},
|
16 |
-
"pad_token": {
|
17 |
-
"content": "[PAD]",
|
18 |
-
"lstrip": false,
|
19 |
-
"normalized": false,
|
20 |
-
"rstrip": false,
|
21 |
-
"single_word": false
|
22 |
-
},
|
23 |
-
"sep_token": {
|
24 |
-
"content": "[SEP]",
|
25 |
-
"lstrip": false,
|
26 |
-
"normalized": false,
|
27 |
-
"rstrip": false,
|
28 |
-
"single_word": false
|
29 |
-
},
|
30 |
-
"unk_token": {
|
31 |
-
"content": "[UNK]",
|
32 |
-
"lstrip": false,
|
33 |
-
"normalized": false,
|
34 |
-
"rstrip": false,
|
35 |
-
"single_word": false
|
36 |
-
}
|
37 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
models/npc-bert-cls/tokenizer.json
DELETED
The diff for this file is too large to render.
See raw diff
|
|
models/npc-bert-cls/tokenizer_config.json
DELETED
@@ -1,57 +0,0 @@
|
|
1 |
-
{
|
2 |
-
"added_tokens_decoder": {
|
3 |
-
"0": {
|
4 |
-
"content": "[PAD]",
|
5 |
-
"lstrip": false,
|
6 |
-
"normalized": false,
|
7 |
-
"rstrip": false,
|
8 |
-
"single_word": false,
|
9 |
-
"special": true
|
10 |
-
},
|
11 |
-
"1": {
|
12 |
-
"content": "[UNK]",
|
13 |
-
"lstrip": false,
|
14 |
-
"normalized": false,
|
15 |
-
"rstrip": false,
|
16 |
-
"single_word": false,
|
17 |
-
"special": true
|
18 |
-
},
|
19 |
-
"2": {
|
20 |
-
"content": "[CLS]",
|
21 |
-
"lstrip": false,
|
22 |
-
"normalized": false,
|
23 |
-
"rstrip": false,
|
24 |
-
"single_word": false,
|
25 |
-
"special": true
|
26 |
-
},
|
27 |
-
"3": {
|
28 |
-
"content": "[SEP]",
|
29 |
-
"lstrip": false,
|
30 |
-
"normalized": false,
|
31 |
-
"rstrip": false,
|
32 |
-
"single_word": false,
|
33 |
-
"special": true
|
34 |
-
},
|
35 |
-
"4": {
|
36 |
-
"content": "[MASK]",
|
37 |
-
"lstrip": false,
|
38 |
-
"normalized": false,
|
39 |
-
"rstrip": false,
|
40 |
-
"single_word": false,
|
41 |
-
"special": true
|
42 |
-
}
|
43 |
-
},
|
44 |
-
"clean_up_tokenization_spaces": true,
|
45 |
-
"cls_token": "[CLS]",
|
46 |
-
"do_basic_tokenize": true,
|
47 |
-
"do_lower_case": true,
|
48 |
-
"mask_token": "[MASK]",
|
49 |
-
"model_max_length": 1000000000000000019884624838656,
|
50 |
-
"never_split": null,
|
51 |
-
"pad_token": "[PAD]",
|
52 |
-
"sep_token": "[SEP]",
|
53 |
-
"strip_accents": null,
|
54 |
-
"tokenize_chinese_chars": true,
|
55 |
-
"tokenizer_class": "BertTokenizer",
|
56 |
-
"unk_token": "[UNK]"
|
57 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
models/npc-bert-cls/training_args.bin
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:3a0a0352080ce09549833a55f2979717a54dcc659c5f85b7b87a47b5eaa9d6cc
|
3 |
-
size 4664
|
|
|
|
|
|
|
|
models/npc-bert-gpt2-best/added_tokens.json
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
{
|
2 |
-
"[BOS]": 5744
|
3 |
-
}
|
|
|
|
|
|
|
|
models/npc-bert-gpt2-best/config.json
DELETED
@@ -1,186 +0,0 @@
|
|
1 |
-
{
|
2 |
-
"architectures": [
|
3 |
-
"EncoderDecoderModel"
|
4 |
-
],
|
5 |
-
"decoder": {
|
6 |
-
"_name_or_path": "openai-community/gpt2",
|
7 |
-
"activation_function": "gelu_new",
|
8 |
-
"add_cross_attention": true,
|
9 |
-
"architectures": [
|
10 |
-
"GPT2LMHeadModel"
|
11 |
-
],
|
12 |
-
"attn_pdrop": 0.1,
|
13 |
-
"bad_words_ids": null,
|
14 |
-
"begin_suppress_tokens": null,
|
15 |
-
"bos_token_id": 50256,
|
16 |
-
"chunk_size_feed_forward": 0,
|
17 |
-
"cross_attention_hidden_size": null,
|
18 |
-
"decoder_start_token_id": 5744,
|
19 |
-
"diversity_penalty": 0.0,
|
20 |
-
"do_sample": false,
|
21 |
-
"early_stopping": false,
|
22 |
-
"embd_pdrop": 0.1,
|
23 |
-
"encoder_no_repeat_ngram_size": 0,
|
24 |
-
"eos_token_id": 50256,
|
25 |
-
"exponential_decay_length_penalty": null,
|
26 |
-
"finetuning_task": null,
|
27 |
-
"forced_bos_token_id": null,
|
28 |
-
"forced_eos_token_id": null,
|
29 |
-
"id2label": {
|
30 |
-
"0": "LABEL_0",
|
31 |
-
"1": "LABEL_1"
|
32 |
-
},
|
33 |
-
"initializer_range": 0.02,
|
34 |
-
"is_decoder": true,
|
35 |
-
"is_encoder_decoder": false,
|
36 |
-
"label2id": {
|
37 |
-
"LABEL_0": 0,
|
38 |
-
"LABEL_1": 1
|
39 |
-
},
|
40 |
-
"layer_norm_epsilon": 1e-05,
|
41 |
-
"length_penalty": 1.0,
|
42 |
-
"max_length": 20,
|
43 |
-
"min_length": 0,
|
44 |
-
"model_type": "gpt2",
|
45 |
-
"n_ctx": 1024,
|
46 |
-
"n_embd": 768,
|
47 |
-
"n_head": 12,
|
48 |
-
"n_inner": null,
|
49 |
-
"n_layer": 12,
|
50 |
-
"n_positions": 1024,
|
51 |
-
"no_repeat_ngram_size": 0,
|
52 |
-
"num_beam_groups": 1,
|
53 |
-
"num_beams": 1,
|
54 |
-
"num_return_sequences": 1,
|
55 |
-
"output_attentions": false,
|
56 |
-
"output_hidden_states": false,
|
57 |
-
"output_scores": false,
|
58 |
-
"pad_token_id": null,
|
59 |
-
"prefix": null,
|
60 |
-
"problem_type": null,
|
61 |
-
"pruned_heads": {},
|
62 |
-
"remove_invalid_values": false,
|
63 |
-
"reorder_and_upcast_attn": false,
|
64 |
-
"repetition_penalty": 1.0,
|
65 |
-
"resid_pdrop": 0.1,
|
66 |
-
"return_dict": true,
|
67 |
-
"return_dict_in_generate": false,
|
68 |
-
"scale_attn_by_inverse_layer_idx": false,
|
69 |
-
"scale_attn_weights": true,
|
70 |
-
"sep_token_id": null,
|
71 |
-
"summary_activation": null,
|
72 |
-
"summary_first_dropout": 0.1,
|
73 |
-
"summary_proj_to_labels": true,
|
74 |
-
"summary_type": "cls_index",
|
75 |
-
"summary_use_proj": true,
|
76 |
-
"suppress_tokens": null,
|
77 |
-
"task_specific_params": {
|
78 |
-
"text-generation": {
|
79 |
-
"do_sample": true,
|
80 |
-
"max_length": 50
|
81 |
-
}
|
82 |
-
},
|
83 |
-
"temperature": 1.0,
|
84 |
-
"tf_legacy_loss": false,
|
85 |
-
"tie_encoder_decoder": false,
|
86 |
-
"tie_word_embeddings": true,
|
87 |
-
"tokenizer_class": null,
|
88 |
-
"top_k": 50,
|
89 |
-
"top_p": 1.0,
|
90 |
-
"torch_dtype": null,
|
91 |
-
"torchscript": false,
|
92 |
-
"typical_p": 1.0,
|
93 |
-
"use_bfloat16": false,
|
94 |
-
"use_cache": true,
|
95 |
-
"vocab_size": 50257
|
96 |
-
},
|
97 |
-
"decoder_start_token_id": 2,
|
98 |
-
"encoder": {
|
99 |
-
"_name_or_path": "gradio_demo/models/npc-bert-cls",
|
100 |
-
"add_cross_attention": false,
|
101 |
-
"architectures": [
|
102 |
-
"BertForSequenceClassification"
|
103 |
-
],
|
104 |
-
"attention_probs_dropout_prob": 0.1,
|
105 |
-
"bad_words_ids": null,
|
106 |
-
"begin_suppress_tokens": null,
|
107 |
-
"bos_token_id": 2,
|
108 |
-
"chunk_size_feed_forward": 0,
|
109 |
-
"classifier_dropout": null,
|
110 |
-
"cross_attention_hidden_size": null,
|
111 |
-
"decoder_start_token_id": null,
|
112 |
-
"diversity_penalty": 0.0,
|
113 |
-
"do_sample": false,
|
114 |
-
"early_stopping": false,
|
115 |
-
"encoder_no_repeat_ngram_size": 0,
|
116 |
-
"eos_token_id": 1,
|
117 |
-
"exponential_decay_length_penalty": null,
|
118 |
-
"finetuning_task": null,
|
119 |
-
"forced_bos_token_id": null,
|
120 |
-
"forced_eos_token_id": null,
|
121 |
-
"hidden_act": "gelu",
|
122 |
-
"hidden_dropout_prob": 0.1,
|
123 |
-
"hidden_size": 768,
|
124 |
-
"id2label": {
|
125 |
-
"0": "Benign/Healthy",
|
126 |
-
"1": "NPC",
|
127 |
-
"2": "Unknown/Out of Domain"
|
128 |
-
},
|
129 |
-
"initializer_range": 0.02,
|
130 |
-
"intermediate_size": 3072,
|
131 |
-
"is_decoder": false,
|
132 |
-
"is_encoder_decoder": false,
|
133 |
-
"label2id": {
|
134 |
-
"Benign/Healthy": 0,
|
135 |
-
"NPC": 1,
|
136 |
-
"Unknown/Out of Domain": 2
|
137 |
-
},
|
138 |
-
"layer_norm_eps": 1e-12,
|
139 |
-
"length_penalty": 1.0,
|
140 |
-
"max_length": 20,
|
141 |
-
"max_position_embeddings": 512,
|
142 |
-
"min_length": 0,
|
143 |
-
"model_type": "bert-generation",
|
144 |
-
"no_repeat_ngram_size": 0,
|
145 |
-
"num_attention_heads": 12,
|
146 |
-
"num_beam_groups": 1,
|
147 |
-
"num_beams": 1,
|
148 |
-
"num_hidden_layers": 12,
|
149 |
-
"num_return_sequences": 1,
|
150 |
-
"output_attentions": false,
|
151 |
-
"output_hidden_states": false,
|
152 |
-
"output_scores": false,
|
153 |
-
"pad_token_id": 0,
|
154 |
-
"position_embedding_type": "absolute",
|
155 |
-
"prefix": null,
|
156 |
-
"problem_type": "single_label_classification",
|
157 |
-
"pruned_heads": {},
|
158 |
-
"remove_invalid_values": false,
|
159 |
-
"repetition_penalty": 1.0,
|
160 |
-
"return_dict": true,
|
161 |
-
"return_dict_in_generate": false,
|
162 |
-
"sep_token_id": null,
|
163 |
-
"suppress_tokens": null,
|
164 |
-
"task_specific_params": null,
|
165 |
-
"temperature": 1.0,
|
166 |
-
"tf_legacy_loss": false,
|
167 |
-
"tie_encoder_decoder": false,
|
168 |
-
"tie_word_embeddings": true,
|
169 |
-
"tokenizer_class": null,
|
170 |
-
"top_k": 50,
|
171 |
-
"top_p": 1.0,
|
172 |
-
"torch_dtype": "float32",
|
173 |
-
"torchscript": false,
|
174 |
-
"type_vocab_size": 2,
|
175 |
-
"typical_p": 1.0,
|
176 |
-
"use_bfloat16": false,
|
177 |
-
"use_cache": true,
|
178 |
-
"vocab_size": 30522
|
179 |
-
},
|
180 |
-
"is_encoder_decoder": true,
|
181 |
-
"model_type": "encoder-decoder",
|
182 |
-
"pad_token_id": 0,
|
183 |
-
"torch_dtype": "float32",
|
184 |
-
"transformers_version": "4.37.2",
|
185 |
-
"vocab_size": 50257
|
186 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
models/npc-bert-gpt2-best/generation_config.json
DELETED
@@ -1,7 +0,0 @@
|
|
1 |
-
{
|
2 |
-
"_from_model_config": true,
|
3 |
-
"bos_token_id": 50256,
|
4 |
-
"decoder_start_token_id": 5744,
|
5 |
-
"eos_token_id": 50256,
|
6 |
-
"transformers_version": "4.37.2"
|
7 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
models/npc-bert-gpt2-best/model.safetensors
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:ddbf903b6f48ae6b9e950249c403ea0bb51060cff36457968fc932b0e22130c4
|
3 |
-
size 1046838512
|
|
|
|
|
|
|
|
models/npc-bert-gpt2-best/special_tokens_map.json
DELETED
@@ -1,51 +0,0 @@
|
|
1 |
-
{
|
2 |
-
"bos_token": {
|
3 |
-
"content": "[BOS]",
|
4 |
-
"lstrip": false,
|
5 |
-
"normalized": false,
|
6 |
-
"rstrip": false,
|
7 |
-
"single_word": false
|
8 |
-
},
|
9 |
-
"cls_token": {
|
10 |
-
"content": "[CLS]",
|
11 |
-
"lstrip": false,
|
12 |
-
"normalized": false,
|
13 |
-
"rstrip": false,
|
14 |
-
"single_word": false
|
15 |
-
},
|
16 |
-
"eos_token": {
|
17 |
-
"content": "[SEP]",
|
18 |
-
"lstrip": false,
|
19 |
-
"normalized": false,
|
20 |
-
"rstrip": false,
|
21 |
-
"single_word": false
|
22 |
-
},
|
23 |
-
"mask_token": {
|
24 |
-
"content": "[MASK]",
|
25 |
-
"lstrip": false,
|
26 |
-
"normalized": false,
|
27 |
-
"rstrip": false,
|
28 |
-
"single_word": false
|
29 |
-
},
|
30 |
-
"pad_token": {
|
31 |
-
"content": "[PAD]",
|
32 |
-
"lstrip": false,
|
33 |
-
"normalized": false,
|
34 |
-
"rstrip": false,
|
35 |
-
"single_word": false
|
36 |
-
},
|
37 |
-
"sep_token": {
|
38 |
-
"content": "[SEP]",
|
39 |
-
"lstrip": false,
|
40 |
-
"normalized": false,
|
41 |
-
"rstrip": false,
|
42 |
-
"single_word": false
|
43 |
-
},
|
44 |
-
"unk_token": {
|
45 |
-
"content": "[UNK]",
|
46 |
-
"lstrip": false,
|
47 |
-
"normalized": false,
|
48 |
-
"rstrip": false,
|
49 |
-
"single_word": false
|
50 |
-
}
|
51 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
models/npc-bert-gpt2-best/tokenizer.json
DELETED
The diff for this file is too large to render.
See raw diff
|
|
models/npc-bert-gpt2-best/tokenizer_config.json
DELETED
@@ -1,67 +0,0 @@
|
|
1 |
-
{
|
2 |
-
"added_tokens_decoder": {
|
3 |
-
"0": {
|
4 |
-
"content": "[PAD]",
|
5 |
-
"lstrip": false,
|
6 |
-
"normalized": false,
|
7 |
-
"rstrip": false,
|
8 |
-
"single_word": false,
|
9 |
-
"special": true
|
10 |
-
},
|
11 |
-
"1": {
|
12 |
-
"content": "[UNK]",
|
13 |
-
"lstrip": false,
|
14 |
-
"normalized": false,
|
15 |
-
"rstrip": false,
|
16 |
-
"single_word": false,
|
17 |
-
"special": true
|
18 |
-
},
|
19 |
-
"2": {
|
20 |
-
"content": "[CLS]",
|
21 |
-
"lstrip": false,
|
22 |
-
"normalized": false,
|
23 |
-
"rstrip": false,
|
24 |
-
"single_word": false,
|
25 |
-
"special": true
|
26 |
-
},
|
27 |
-
"3": {
|
28 |
-
"content": "[SEP]",
|
29 |
-
"lstrip": false,
|
30 |
-
"normalized": false,
|
31 |
-
"rstrip": false,
|
32 |
-
"single_word": false,
|
33 |
-
"special": true
|
34 |
-
},
|
35 |
-
"4": {
|
36 |
-
"content": "[MASK]",
|
37 |
-
"lstrip": false,
|
38 |
-
"normalized": false,
|
39 |
-
"rstrip": false,
|
40 |
-
"single_word": false,
|
41 |
-
"special": true
|
42 |
-
},
|
43 |
-
"5744": {
|
44 |
-
"content": "[BOS]",
|
45 |
-
"lstrip": false,
|
46 |
-
"normalized": false,
|
47 |
-
"rstrip": false,
|
48 |
-
"single_word": false,
|
49 |
-
"special": true
|
50 |
-
}
|
51 |
-
},
|
52 |
-
"bos_token": "[BOS]",
|
53 |
-
"clean_up_tokenization_spaces": true,
|
54 |
-
"cls_token": "[CLS]",
|
55 |
-
"do_basic_tokenize": true,
|
56 |
-
"do_lower_case": true,
|
57 |
-
"eos_token": "[SEP]",
|
58 |
-
"mask_token": "[MASK]",
|
59 |
-
"model_max_length": 1000000000000000019884624838656,
|
60 |
-
"never_split": null,
|
61 |
-
"pad_token": "[PAD]",
|
62 |
-
"sep_token": "[SEP]",
|
63 |
-
"strip_accents": null,
|
64 |
-
"tokenize_chinese_chars": true,
|
65 |
-
"tokenizer_class": "BertTokenizer",
|
66 |
-
"unk_token": "[UNK]"
|
67 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
models/npc-bert-gpt2-best/vocab.txt
DELETED
@@ -1,5744 +0,0 @@
|
|
1 |
-
[PAD]
|
2 |
-
[UNK]
|
3 |
-
[CLS]
|
4 |
-
[SEP]
|
5 |
-
[MASK]
|
6 |
-
"
|
7 |
-
%
|
8 |
-
&
|
9 |
-
'
|
10 |
-
(
|
11 |
-
)
|
12 |
-
*
|
13 |
-
+
|
14 |
-
,
|
15 |
-
-
|
16 |
-
.
|
17 |
-
/
|
18 |
-
0
|
19 |
-
1
|
20 |
-
2
|
21 |
-
3
|
22 |
-
4
|
23 |
-
5
|
24 |
-
6
|
25 |
-
7
|
26 |
-
8
|
27 |
-
9
|
28 |
-
:
|
29 |
-
;
|
30 |
-
<
|
31 |
-
=
|
32 |
-
>
|
33 |
-
?
|
34 |
-
[
|
35 |
-
\
|
36 |
-
a
|
37 |
-
b
|
38 |
-
c
|
39 |
-
d
|
40 |
-
e
|
41 |
-
f
|
42 |
-
g
|
43 |
-
h
|
44 |
-
i
|
45 |
-
j
|
46 |
-
k
|
47 |
-
l
|
48 |
-
m
|
49 |
-
n
|
50 |
-
o
|
51 |
-
p
|
52 |
-
q
|
53 |
-
r
|
54 |
-
s
|
55 |
-
t
|
56 |
-
u
|
57 |
-
v
|
58 |
-
w
|
59 |
-
x
|
60 |
-
y
|
61 |
-
z
|
62 |
-
~
|
63 |
-
×
|
64 |
-
–
|
65 |
-
##e
|
66 |
-
##m
|
67 |
-
##a
|
68 |
-
##i
|
69 |
-
##n
|
70 |
-
##g
|
71 |
-
##c
|
72 |
-
##r
|
73 |
-
##l
|
74 |
-
##x
|
75 |
-
##d
|
76 |
-
##o
|
77 |
-
##s
|
78 |
-
##u
|
79 |
-
##t
|
80 |
-
##p
|
81 |
-
##y
|
82 |
-
##h
|
83 |
-
##×
|
84 |
-
##2
|
85 |
-
##f
|
86 |
-
##v
|
87 |
-
##3
|
88 |
-
##1
|
89 |
-
##0
|
90 |
-
##5
|
91 |
-
##z
|
92 |
-
##b
|
93 |
-
##7
|
94 |
-
##4
|
95 |
-
##q
|
96 |
-
##k
|
97 |
-
##w
|
98 |
-
##6
|
99 |
-
##9
|
100 |
-
##8
|
101 |
-
##j
|
102 |
-
##he
|
103 |
-
the
|
104 |
-
##al
|
105 |
-
##ar
|
106 |
-
##as
|
107 |
-
##re
|
108 |
-
##er
|
109 |
-
##on
|
110 |
-
##in
|
111 |
-
in
|
112 |
-
##nd
|
113 |
-
and
|
114 |
-
##es
|
115 |
-
##or
|
116 |
-
##at
|
117 |
-
no
|
118 |
-
##ary
|
119 |
-
of
|
120 |
-
##ion
|
121 |
-
##us
|
122 |
-
##it
|
123 |
-
##id
|
124 |
-
##ph
|
125 |
-
##en
|
126 |
-
##ic
|
127 |
-
##aryn
|
128 |
-
##pharyn
|
129 |
-
##tas
|
130 |
-
##an
|
131 |
-
##opharyn
|
132 |
-
is
|
133 |
-
##ec
|
134 |
-
##os
|
135 |
-
are
|
136 |
-
##ge
|
137 |
-
there
|
138 |
-
##ter
|
139 |
-
nod
|
140 |
-
me
|
141 |
-
##um
|
142 |
-
le
|
143 |
-
##ed
|
144 |
-
##ou
|
145 |
-
##ig
|
146 |
-
##le
|
147 |
-
nas
|
148 |
-
##ing
|
149 |
-
##ul
|
150 |
-
metas
|
151 |
-
re
|
152 |
-
##igh
|
153 |
-
##ft
|
154 |
-
##ight
|
155 |
-
##geal
|
156 |
-
##ent
|
157 |
-
inv
|
158 |
-
left
|
159 |
-
##ith
|
160 |
-
with
|
161 |
-
right
|
162 |
-
nasopharyn
|
163 |
-
##is
|
164 |
-
tum
|
165 |
-
##om
|
166 |
-
##tr
|
167 |
-
##our
|
168 |
-
##ly
|
169 |
-
tumour
|
170 |
-
to
|
171 |
-
or
|
172 |
-
##il
|
173 |
-
nec
|
174 |
-
##ri
|
175 |
-
nodes
|
176 |
-
neck
|
177 |
-
sid
|
178 |
-
##ve
|
179 |
-
##per
|
180 |
-
##oid
|
181 |
-
metastas
|
182 |
-
##cl
|
183 |
-
metastases
|
184 |
-
ex
|
185 |
-
##ab
|
186 |
-
up
|
187 |
-
pos
|
188 |
-
##all
|
189 |
-
t1
|
190 |
-
##ular
|
191 |
-
un
|
192 |
-
##ial
|
193 |
-
side
|
194 |
-
con
|
195 |
-
##able
|
196 |
-
##ark
|
197 |
-
upper
|
198 |
-
t1w
|
199 |
-
##ol
|
200 |
-
##ior
|
201 |
-
##rem
|
202 |
-
##arkable
|
203 |
-
##eral
|
204 |
-
unrem
|
205 |
-
unremarkable
|
206 |
-
##ow
|
207 |
-
##ad
|
208 |
-
##ous
|
209 |
-
th
|
210 |
-
sp
|
211 |
-
par
|
212 |
-
car
|
213 |
-
##nal
|
214 |
-
ch
|
215 |
-
nasopharynx
|
216 |
-
ext
|
217 |
-
##oss
|
218 |
-
##ug
|
219 |
-
##if
|
220 |
-
##oma
|
221 |
-
##ac
|
222 |
-
##inus
|
223 |
-
sinus
|
224 |
-
invas
|
225 |
-
##ain
|
226 |
-
invasion
|
227 |
-
al
|
228 |
-
##ateral
|
229 |
-
ax
|
230 |
-
invol
|
231 |
-
##av
|
232 |
-
axial
|
233 |
-
##ant
|
234 |
-
nasopharyngeal
|
235 |
-
##tat
|
236 |
-
##ast
|
237 |
-
##tatic
|
238 |
-
metastatic
|
239 |
-
##ut
|
240 |
-
##terior
|
241 |
-
##ist
|
242 |
-
sm
|
243 |
-
small
|
244 |
-
##cin
|
245 |
-
carcin
|
246 |
-
carcinoma
|
247 |
-
t2
|
248 |
-
jug
|
249 |
-
cor
|
250 |
-
##ternal
|
251 |
-
foss
|
252 |
-
fossa
|
253 |
-
##usion
|
254 |
-
##th
|
255 |
-
jugular
|
256 |
-
inf
|
257 |
-
internal
|
258 |
-
on
|
259 |
-
cav
|
260 |
-
for
|
261 |
-
##por
|
262 |
-
##ase
|
263 |
-
##res
|
264 |
-
reg
|
265 |
-
coron
|
266 |
-
coronal
|
267 |
-
int
|
268 |
-
##rim
|
269 |
-
sc
|
270 |
-
nodal
|
271 |
-
prim
|
272 |
-
primary
|
273 |
-
region
|
274 |
-
##ding
|
275 |
-
##tery
|
276 |
-
posterior
|
277 |
-
##am
|
278 |
-
chain
|
279 |
-
wh
|
280 |
-
##ur
|
281 |
-
##cc
|
282 |
-
##ilateral
|
283 |
-
into
|
284 |
-
##ens
|
285 |
-
not
|
286 |
-
he
|
287 |
-
##ical
|
288 |
-
dist
|
289 |
-
##ate
|
290 |
-
##opharynx
|
291 |
-
distant
|
292 |
-
ptery
|
293 |
-
pteryg
|
294 |
-
retr
|
295 |
-
mid
|
296 |
-
##dent
|
297 |
-
##opharyngeal
|
298 |
-
##ied
|
299 |
-
ident
|
300 |
-
identif
|
301 |
-
##ich
|
302 |
-
which
|
303 |
-
identified
|
304 |
-
retropharyngeal
|
305 |
-
bilateral
|
306 |
-
scan
|
307 |
-
cl
|
308 |
-
sec
|
309 |
-
##sp
|
310 |
-
##vel
|
311 |
-
ear
|
312 |
-
##ue
|
313 |
-
head
|
314 |
-
level
|
315 |
-
##her
|
316 |
-
bon
|
317 |
-
de
|
318 |
-
hy
|
319 |
-
but
|
320 |
-
mri
|
321 |
-
##ther
|
322 |
-
base
|
323 |
-
##ot
|
324 |
-
##ges
|
325 |
-
involv
|
326 |
-
extens
|
327 |
-
##ine
|
328 |
-
##ull
|
329 |
-
##erv
|
330 |
-
##tion
|
331 |
-
##ax
|
332 |
-
para
|
333 |
-
##ures
|
334 |
-
st
|
335 |
-
parapharyn
|
336 |
-
##ity
|
337 |
-
##ir
|
338 |
-
parapharyngeal
|
339 |
-
en
|
340 |
-
foram
|
341 |
-
##iv
|
342 |
-
##ag
|
343 |
-
contr
|
344 |
-
ab
|
345 |
-
##ud
|
346 |
-
contrast
|
347 |
-
##end
|
348 |
-
cr
|
349 |
-
##pic
|
350 |
-
##ervical
|
351 |
-
nasal
|
352 |
-
##ym
|
353 |
-
pr
|
354 |
-
cervical
|
355 |
-
##fin
|
356 |
-
extend
|
357 |
-
su
|
358 |
-
##ation
|
359 |
-
post
|
360 |
-
fat
|
361 |
-
##age
|
362 |
-
##op
|
363 |
-
##clusion
|
364 |
-
conclusion
|
365 |
-
pre
|
366 |
-
##port
|
367 |
-
report
|
368 |
-
##ite
|
369 |
-
wall
|
370 |
-
sk
|
371 |
-
##ment
|
372 |
-
skull
|
373 |
-
##so
|
374 |
-
also
|
375 |
-
defin
|
376 |
-
cavity
|
377 |
-
be
|
378 |
-
can
|
379 |
-
##omin
|
380 |
-
an
|
381 |
-
##ition
|
382 |
-
ii
|
383 |
-
##dition
|
384 |
-
lym
|
385 |
-
lymph
|
386 |
-
hyp
|
387 |
-
##ious
|
388 |
-
##clud
|
389 |
-
##and
|
390 |
-
sus
|
391 |
-
involve
|
392 |
-
ap
|
393 |
-
##hn
|
394 |
-
##ening
|
395 |
-
##ern
|
396 |
-
cavern
|
397 |
-
involving
|
398 |
-
cavernous
|
399 |
-
other
|
400 |
-
##que
|
401 |
-
suspic
|
402 |
-
definite
|
403 |
-
##ory
|
404 |
-
tec
|
405 |
-
##hni
|
406 |
-
techni
|
407 |
-
##iss
|
408 |
-
oropharynx
|
409 |
-
technique
|
410 |
-
##out
|
411 |
-
extension
|
412 |
-
foramen
|
413 |
-
##spir
|
414 |
-
t2spir
|
415 |
-
##astoid
|
416 |
-
##bit
|
417 |
-
##orm
|
418 |
-
##itt
|
419 |
-
cliv
|
420 |
-
##ff
|
421 |
-
eff
|
422 |
-
acc
|
423 |
-
without
|
424 |
-
orbit
|
425 |
-
cran
|
426 |
-
bo
|
427 |
-
##arge
|
428 |
-
node
|
429 |
-
fin
|
430 |
-
effusion
|
431 |
-
early
|
432 |
-
suspicious
|
433 |
-
finding
|
434 |
-
canal
|
435 |
-
bones
|
436 |
-
t2w
|
437 |
-
noted
|
438 |
-
extends
|
439 |
-
##cluded
|
440 |
-
stage
|
441 |
-
findings
|
442 |
-
mus
|
443 |
-
##alat
|
444 |
-
##uc
|
445 |
-
low
|
446 |
-
##im
|
447 |
-
sinuses
|
448 |
-
##ib
|
449 |
-
##hen
|
450 |
-
pterygoid
|
451 |
-
##mpor
|
452 |
-
##mporal
|
453 |
-
sphen
|
454 |
-
##ond
|
455 |
-
aj
|
456 |
-
ajcc
|
457 |
-
lower
|
458 |
-
uic
|
459 |
-
uicc
|
460 |
-
##tions
|
461 |
-
edition
|
462 |
-
##otid
|
463 |
-
##ording
|
464 |
-
according
|
465 |
-
meas
|
466 |
-
sphenoid
|
467 |
-
##dle
|
468 |
-
middle
|
469 |
-
##alatine
|
470 |
-
fiss
|
471 |
-
second
|
472 |
-
##ong
|
473 |
-
infr
|
474 |
-
sag
|
475 |
-
##ick
|
476 |
-
##ang
|
477 |
-
thick
|
478 |
-
##ittal
|
479 |
-
sagittal
|
480 |
-
muc
|
481 |
-
thor
|
482 |
-
mastoid
|
483 |
-
regions
|
484 |
-
at
|
485 |
-
##atemporal
|
486 |
-
infratemporal
|
487 |
-
##gest
|
488 |
-
included
|
489 |
-
thorax
|
490 |
-
##ep
|
491 |
-
tumours
|
492 |
-
sat
|
493 |
-
##uration
|
494 |
-
hypopharynx
|
495 |
-
saturation
|
496 |
-
tri
|
497 |
-
thickening
|
498 |
-
triang
|
499 |
-
sections
|
500 |
-
mucos
|
501 |
-
##anc
|
502 |
-
clivus
|
503 |
-
bul
|
504 |
-
##ive
|
505 |
-
##ormal
|
506 |
-
walls
|
507 |
-
mil
|
508 |
-
crani
|
509 |
-
mild
|
510 |
-
mucosal
|
511 |
-
##ill
|
512 |
-
abut
|
513 |
-
##opalatine
|
514 |
-
##etr
|
515 |
-
##asal
|
516 |
-
sig
|
517 |
-
paran
|
518 |
-
ad
|
519 |
-
##ure
|
520 |
-
cranium
|
521 |
-
paranasal
|
522 |
-
##ob
|
523 |
-
chan
|
524 |
-
##ver
|
525 |
-
non
|
526 |
-
##spec
|
527 |
-
triangle
|
528 |
-
pterygopalatine
|
529 |
-
sh
|
530 |
-
##un
|
531 |
-
##large
|
532 |
-
enlarge
|
533 |
-
##m0
|
534 |
-
along
|
535 |
-
##cles
|
536 |
-
muscles
|
537 |
-
##ia
|
538 |
-
np
|
539 |
-
##oo
|
540 |
-
max
|
541 |
-
##low
|
542 |
-
enlarged
|
543 |
-
both
|
544 |
-
as
|
545 |
-
##oc
|
546 |
-
sub
|
547 |
-
ver
|
548 |
-
lateral
|
549 |
-
npc
|
550 |
-
roo
|
551 |
-
roof
|
552 |
-
promin
|
553 |
-
##ific
|
554 |
-
app
|
555 |
-
bulk
|
556 |
-
prominent
|
557 |
-
##te
|
558 |
-
involvement
|
559 |
-
note
|
560 |
-
##illary
|
561 |
-
##spect
|
562 |
-
aspect
|
563 |
-
##pl
|
564 |
-
signal
|
565 |
-
sided
|
566 |
-
##ap
|
567 |
-
##cm
|
568 |
-
lar
|
569 |
-
spac
|
570 |
-
petr
|
571 |
-
levels
|
572 |
-
ind
|
573 |
-
se
|
574 |
-
hyper
|
575 |
-
parotid
|
576 |
-
fe
|
577 |
-
li
|
578 |
-
this
|
579 |
-
##eter
|
580 |
-
##inate
|
581 |
-
##ance
|
582 |
-
##andib
|
583 |
-
pred
|
584 |
-
ar
|
585 |
-
predomin
|
586 |
-
##resent
|
587 |
-
##ess
|
588 |
-
##trac
|
589 |
-
##antly
|
590 |
-
abuts
|
591 |
-
gl
|
592 |
-
infer
|
593 |
-
predominantly
|
594 |
-
##amm
|
595 |
-
##lamm
|
596 |
-
inflamm
|
597 |
-
gland
|
598 |
-
inferior
|
599 |
-
bulky
|
600 |
-
di
|
601 |
-
##atory
|
602 |
-
##gh
|
603 |
-
##ough
|
604 |
-
##read
|
605 |
-
indeter
|
606 |
-
indeterm
|
607 |
-
very
|
608 |
-
##ear
|
609 |
-
spread
|
610 |
-
inflammatory
|
611 |
-
indeterminate
|
612 |
-
##own
|
613 |
-
show
|
614 |
-
##el
|
615 |
-
space
|
616 |
-
all
|
617 |
-
##asia
|
618 |
-
fissures
|
619 |
-
##ust
|
620 |
-
changes
|
621 |
-
##andibular
|
622 |
-
cm
|
623 |
-
##mm
|
624 |
-
##ral
|
625 |
-
appear
|
626 |
-
hyperpl
|
627 |
-
hyperplasia
|
628 |
-
subm
|
629 |
-
feat
|
630 |
-
measures
|
631 |
-
##ian
|
632 |
-
##normal
|
633 |
-
abnormal
|
634 |
-
features
|
635 |
-
hist
|
636 |
-
iii
|
637 |
-
submandibular
|
638 |
-
petrous
|
639 |
-
7th
|
640 |
-
effusions
|
641 |
-
down
|
642 |
-
lac
|
643 |
-
sug
|
644 |
-
##og
|
645 |
-
history
|
646 |
-
suggest
|
647 |
-
extensive
|
648 |
-
8th
|
649 |
-
it
|
650 |
-
prob
|
651 |
-
mo
|
652 |
-
min
|
653 |
-
##wi
|
654 |
-
dwi
|
655 |
-
fur
|
656 |
-
##erum
|
657 |
-
lacerum
|
658 |
-
further
|
659 |
-
canals
|
660 |
-
##aps
|
661 |
-
##osis
|
662 |
-
enh
|
663 |
-
##here
|
664 |
-
##ip
|
665 |
-
##icular
|
666 |
-
##hy
|
667 |
-
any
|
668 |
-
just
|
669 |
-
pat
|
670 |
-
t3
|
671 |
-
com
|
672 |
-
invad
|
673 |
-
lymphoid
|
674 |
-
##der
|
675 |
-
anterior
|
676 |
-
where
|
677 |
-
bony
|
678 |
-
##apsular
|
679 |
-
fl
|
680 |
-
##val
|
681 |
-
extrac
|
682 |
-
vid
|
683 |
-
vidian
|
684 |
-
##ex
|
685 |
-
due
|
686 |
-
apex
|
687 |
-
spec
|
688 |
-
specific
|
689 |
-
##dy
|
690 |
-
##ult
|
691 |
-
##unc
|
692 |
-
comp
|
693 |
-
extracapsular
|
694 |
-
nil
|
695 |
-
##iz
|
696 |
-
fissure
|
697 |
-
##unction
|
698 |
-
##oor
|
699 |
-
sup
|
700 |
-
##ra
|
701 |
-
junction
|
702 |
-
clin
|
703 |
-
chains
|
704 |
-
##ept
|
705 |
-
largest
|
706 |
-
clinical
|
707 |
-
below
|
708 |
-
med
|
709 |
-
##ew
|
710 |
-
##act
|
711 |
-
more
|
712 |
-
##ina
|
713 |
-
floor
|
714 |
-
body
|
715 |
-
##ated
|
716 |
-
fr
|
717 |
-
sl
|
718 |
-
bilaterally
|
719 |
-
##bral
|
720 |
-
foramina
|
721 |
-
by
|
722 |
-
present
|
723 |
-
##ct
|
724 |
-
##avicular
|
725 |
-
supra
|
726 |
-
slight
|
727 |
-
##clavicular
|
728 |
-
dis
|
729 |
-
##ever
|
730 |
-
how
|
731 |
-
oval
|
732 |
-
supraclavicular
|
733 |
-
however
|
734 |
-
medial
|
735 |
-
mar
|
736 |
-
tumor
|
737 |
-
alth
|
738 |
-
although
|
739 |
-
##se
|
740 |
-
slightly
|
741 |
-
##sib
|
742 |
-
possib
|
743 |
-
##ancement
|
744 |
-
##ay
|
745 |
-
enhancement
|
746 |
-
maxillary
|
747 |
-
large
|
748 |
-
##ely
|
749 |
-
normal
|
750 |
-
##tebral
|
751 |
-
ovale
|
752 |
-
maxim
|
753 |
-
cle
|
754 |
-
involves
|
755 |
-
bone
|
756 |
-
clear
|
757 |
-
##ound
|
758 |
-
##st
|
759 |
-
mult
|
760 |
-
musc
|
761 |
-
##iff
|
762 |
-
##rect
|
763 |
-
glands
|
764 |
-
direct
|
765 |
-
##ably
|
766 |
-
muscle
|
767 |
-
these
|
768 |
-
necr
|
769 |
-
##ell
|
770 |
-
cent
|
771 |
-
sides
|
772 |
-
carotid
|
773 |
-
##veral
|
774 |
-
cric
|
775 |
-
several
|
776 |
-
fol
|
777 |
-
may
|
778 |
-
cricoid
|
779 |
-
super
|
780 |
-
minor
|
781 |
-
follow
|
782 |
-
ner
|
783 |
-
##ension
|
784 |
-
lik
|
785 |
-
nerve
|
786 |
-
diff
|
787 |
-
##agn
|
788 |
-
dim
|
789 |
-
##reat
|
790 |
-
dimension
|
791 |
-
cy
|
792 |
-
##otu
|
793 |
-
maximum
|
794 |
-
cyst
|
795 |
-
##athy
|
796 |
-
##acent
|
797 |
-
rotu
|
798 |
-
##line
|
799 |
-
##jacent
|
800 |
-
##ndum
|
801 |
-
adjacent
|
802 |
-
rotundum
|
803 |
-
##til
|
804 |
-
cartil
|
805 |
-
probably
|
806 |
-
likely
|
807 |
-
##tain
|
808 |
-
##opathy
|
809 |
-
##ung
|
810 |
-
cartilage
|
811 |
-
deep
|
812 |
-
##omax
|
813 |
-
##omaxillary
|
814 |
-
##aden
|
815 |
-
pterygomaxillary
|
816 |
-
t3n
|
817 |
-
lung
|
818 |
-
cons
|
819 |
-
from
|
820 |
-
great
|
821 |
-
bor
|
822 |
-
##adenopathy
|
823 |
-
border
|
824 |
-
apic
|
825 |
-
t4
|
826 |
-
lymphadenopathy
|
827 |
-
##iple
|
828 |
-
multiple
|
829 |
-
apices
|
830 |
-
##loss
|
831 |
-
##ost
|
832 |
-
##cliv
|
833 |
-
##ogloss
|
834 |
-
##oglossal
|
835 |
-
mat
|
836 |
-
##aging
|
837 |
-
greater
|
838 |
-
##clival
|
839 |
-
that
|
840 |
-
gen
|
841 |
-
general
|
842 |
-
hypoglossal
|
843 |
-
##uring
|
844 |
-
measuring
|
845 |
-
##ld
|
846 |
-
cranial
|
847 |
-
##reening
|
848 |
-
screening
|
849 |
-
fossae
|
850 |
-
new
|
851 |
-
so
|
852 |
-
change
|
853 |
-
##onent
|
854 |
-
##ormed
|
855 |
-
component
|
856 |
-
staging
|
857 |
-
invades
|
858 |
-
addition
|
859 |
-
superior
|
860 |
-
t1n
|
861 |
-
spine
|
862 |
-
mas
|
863 |
-
sit
|
864 |
-
sept
|
865 |
-
clival
|
866 |
-
##ose
|
867 |
-
orbital
|
868 |
-
following
|
869 |
-
septum
|
870 |
-
##ould
|
871 |
-
prever
|
872 |
-
mass
|
873 |
-
prevertebral
|
874 |
-
lies
|
875 |
-
##ient
|
876 |
-
##row
|
877 |
-
##ual
|
878 |
-
patient
|
879 |
-
##ized
|
880 |
-
soft
|
881 |
-
most
|
882 |
-
possible
|
883 |
-
generalized
|
884 |
-
sites
|
885 |
-
##uding
|
886 |
-
##red
|
887 |
-
matt
|
888 |
-
lob
|
889 |
-
incl
|
890 |
-
including
|
891 |
-
suggested
|
892 |
-
pal
|
893 |
-
##ger
|
894 |
-
iv
|
895 |
-
per
|
896 |
-
va
|
897 |
-
##ons
|
898 |
-
tiss
|
899 |
-
unilateral
|
900 |
-
num
|
901 |
-
##ease
|
902 |
-
##2m0
|
903 |
-
##ially
|
904 |
-
larger
|
905 |
-
dur
|
906 |
-
disease
|
907 |
-
enc
|
908 |
-
##ocal
|
909 |
-
shows
|
910 |
-
##omastoid
|
911 |
-
##use
|
912 |
-
##enm
|
913 |
-
ros
|
914 |
-
rosenm
|
915 |
-
##ule
|
916 |
-
stud
|
917 |
-
study
|
918 |
-
rec
|
919 |
-
rep
|
920 |
-
close
|
921 |
-
ca
|
922 |
-
ple
|
923 |
-
wr
|
924 |
-
diagn
|
925 |
-
marrow
|
926 |
-
nodule
|
927 |
-
informed
|
928 |
-
lobe
|
929 |
-
represent
|
930 |
-
##sy
|
931 |
-
##ome
|
932 |
-
consent
|
933 |
-
extending
|
934 |
-
probable
|
935 |
-
##1m0
|
936 |
-
necrosis
|
937 |
-
##itten
|
938 |
-
inferiorly
|
939 |
-
written
|
940 |
-
##metr
|
941 |
-
##ymmetr
|
942 |
-
mark
|
943 |
-
thr
|
944 |
-
marked
|
945 |
-
##ross
|
946 |
-
rem
|
947 |
-
through
|
948 |
-
##moid
|
949 |
-
##ases
|
950 |
-
##imal
|
951 |
-
borderline
|
952 |
-
confin
|
953 |
-
some
|
954 |
-
##ately
|
955 |
-
aden
|
956 |
-
##yr
|
957 |
-
appears
|
958 |
-
##ogen
|
959 |
-
##iop
|
960 |
-
##ature
|
961 |
-
##thmoid
|
962 |
-
measure
|
963 |
-
artery
|
964 |
-
ethmoid
|
965 |
-
im
|
966 |
-
##eous
|
967 |
-
minimal
|
968 |
-
biop
|
969 |
-
m0
|
970 |
-
##ove
|
971 |
-
preclival
|
972 |
-
confined
|
973 |
-
nature
|
974 |
-
tons
|
975 |
-
part
|
976 |
-
##et
|
977 |
-
palate
|
978 |
-
biopsy
|
979 |
-
ot
|
980 |
-
involved
|
981 |
-
patc
|
982 |
-
t4n
|
983 |
-
##yroid
|
984 |
-
otomastoid
|
985 |
-
well
|
986 |
-
heter
|
987 |
-
clus
|
988 |
-
patchy
|
989 |
-
do
|
990 |
-
res
|
991 |
-
##od
|
992 |
-
##inal
|
993 |
-
heterogen
|
994 |
-
cluster
|
995 |
-
ct
|
996 |
-
vb
|
997 |
-
react
|
998 |
-
anteriorly
|
999 |
-
remain
|
1000 |
-
reactive
|
1001 |
-
case
|
1002 |
-
tonsil
|
1003 |
-
##ch
|
1004 |
-
excluded
|
1005 |
-
##ade
|
1006 |
-
ha
|
1007 |
-
##erous
|
1008 |
-
##iltr
|
1009 |
-
##uller
|
1010 |
-
siz
|
1011 |
-
infiltr
|
1012 |
-
marg
|
1013 |
-
numerous
|
1014 |
-
rosenmuller
|
1015 |
-
##nific
|
1016 |
-
##cer
|
1017 |
-
##cept
|
1018 |
-
thyroid
|
1019 |
-
signific
|
1020 |
-
above
|
1021 |
-
diffuse
|
1022 |
-
size
|
1023 |
-
gross
|
1024 |
-
does
|
1025 |
-
margin
|
1026 |
-
over
|
1027 |
-
tissue
|
1028 |
-
please
|
1029 |
-
##ile
|
1030 |
-
made
|
1031 |
-
metastasis
|
1032 |
-
posteriorly
|
1033 |
-
##eping
|
1034 |
-
adenoid
|
1035 |
-
ke
|
1036 |
-
keeping
|
1037 |
-
main
|
1038 |
-
site
|
1039 |
-
around
|
1040 |
-
dura
|
1041 |
-
##usual
|
1042 |
-
area
|
1043 |
-
unusual
|
1044 |
-
cann
|
1045 |
-
cannot
|
1046 |
-
c1
|
1047 |
-
palatine
|
1048 |
-
##ro
|
1049 |
-
uncer
|
1050 |
-
while
|
1051 |
-
uncertain
|
1052 |
-
except
|
1053 |
-
pet
|
1054 |
-
high
|
1055 |
-
len
|
1056 |
-
##gth
|
1057 |
-
cont
|
1058 |
-
length
|
1059 |
-
within
|
1060 |
-
central
|
1061 |
-
heterogeneous
|
1062 |
-
br
|
1063 |
-
ph
|
1064 |
-
##iew
|
1065 |
-
suggesting
|
1066 |
-
pharyn
|
1067 |
-
bases
|
1068 |
-
##ran
|
1069 |
-
mainly
|
1070 |
-
espec
|
1071 |
-
especially
|
1072 |
-
##ere
|
1073 |
-
##ach
|
1074 |
-
proc
|
1075 |
-
matted
|
1076 |
-
process
|
1077 |
-
##les
|
1078 |
-
spinal
|
1079 |
-
##ache
|
1080 |
-
diagnosis
|
1081 |
-
##otic
|
1082 |
-
mm
|
1083 |
-
##0m0
|
1084 |
-
spir
|
1085 |
-
air
|
1086 |
-
##ting
|
1087 |
-
intrac
|
1088 |
-
view
|
1089 |
-
cong
|
1090 |
-
pres
|
1091 |
-
##vious
|
1092 |
-
##ymmetrical
|
1093 |
-
have
|
1094 |
-
intracran
|
1095 |
-
##lom
|
1096 |
-
than
|
1097 |
-
enhanc
|
1098 |
-
conglom
|
1099 |
-
conglomer
|
1100 |
-
ve
|
1101 |
-
##ies
|
1102 |
-
laterally
|
1103 |
-
intracranial
|
1104 |
-
ret
|
1105 |
-
deg
|
1106 |
-
les
|
1107 |
-
spar
|
1108 |
-
lesion
|
1109 |
-
##oan
|
1110 |
-
vein
|
1111 |
-
could
|
1112 |
-
she
|
1113 |
-
##rel
|
1114 |
-
##ath
|
1115 |
-
choan
|
1116 |
-
remainder
|
1117 |
-
full
|
1118 |
-
focal
|
1119 |
-
##ty
|
1120 |
-
##enc
|
1121 |
-
correl
|
1122 |
-
fill
|
1123 |
-
necrotic
|
1124 |
-
centred
|
1125 |
-
has
|
1126 |
-
loc
|
1127 |
-
##ention
|
1128 |
-
access
|
1129 |
-
abutting
|
1130 |
-
appro
|
1131 |
-
enhancing
|
1132 |
-
##ages
|
1133 |
-
##xim
|
1134 |
-
##asc
|
1135 |
-
##ect
|
1136 |
-
##tric
|
1137 |
-
##ll
|
1138 |
-
retention
|
1139 |
-
approxim
|
1140 |
-
approximately
|
1141 |
-
##ural
|
1142 |
-
none
|
1143 |
-
images
|
1144 |
-
brain
|
1145 |
-
accessory
|
1146 |
-
##oph
|
1147 |
-
##qu
|
1148 |
-
they
|
1149 |
-
##ard
|
1150 |
-
triangles
|
1151 |
-
significance
|
1152 |
-
op
|
1153 |
-
infiltration
|
1154 |
-
cell
|
1155 |
-
ob
|
1156 |
-
##emporal
|
1157 |
-
##fact
|
1158 |
-
secre
|
1159 |
-
##tefact
|
1160 |
-
artefact
|
1161 |
-
long
|
1162 |
-
vol
|
1163 |
-
##ume
|
1164 |
-
##clude
|
1165 |
-
directly
|
1166 |
-
sheath
|
1167 |
-
cells
|
1168 |
-
volume
|
1169 |
-
scl
|
1170 |
-
##ging
|
1171 |
-
##ort
|
1172 |
-
petro
|
1173 |
-
scler
|
1174 |
-
c2
|
1175 |
-
palat
|
1176 |
-
##air
|
1177 |
-
bulges
|
1178 |
-
##em
|
1179 |
-
##gether
|
1180 |
-
extr
|
1181 |
-
magn
|
1182 |
-
together
|
1183 |
-
midline
|
1184 |
-
previous
|
1185 |
-
mildly
|
1186 |
-
seen
|
1187 |
-
cysts
|
1188 |
-
loss
|
1189 |
-
##ini
|
1190 |
-
##itary
|
1191 |
-
matting
|
1192 |
-
tu
|
1193 |
-
##ont
|
1194 |
-
suspicion
|
1195 |
-
bulging
|
1196 |
-
##plac
|
1197 |
-
appearance
|
1198 |
-
secretions
|
1199 |
-
tub
|
1200 |
-
##tic
|
1201 |
-
inc
|
1202 |
-
##ign
|
1203 |
-
vertebral
|
1204 |
-
recess
|
1205 |
-
petroclival
|
1206 |
-
magnum
|
1207 |
-
fasc
|
1208 |
-
pit
|
1209 |
-
##sess
|
1210 |
-
##uitary
|
1211 |
-
##3m0
|
1212 |
-
assess
|
1213 |
-
choana
|
1214 |
-
palatini
|
1215 |
-
pituitary
|
1216 |
-
3cm
|
1217 |
-
symmetrical
|
1218 |
-
intr
|
1219 |
-
fascia
|
1220 |
-
fair
|
1221 |
-
n1
|
1222 |
-
vel
|
1223 |
-
##mental
|
1224 |
-
located
|
1225 |
-
sclerosis
|
1226 |
-
fairly
|
1227 |
-
veli
|
1228 |
-
2cm
|
1229 |
-
##x1
|
1230 |
-
##ances
|
1231 |
-
appearances
|
1232 |
-
encase
|
1233 |
-
##ence
|
1234 |
-
spared
|
1235 |
-
##ophy
|
1236 |
-
fs
|
1237 |
-
##ven
|
1238 |
-
should
|
1239 |
-
superiorly
|
1240 |
-
degr
|
1241 |
-
tr
|
1242 |
-
tur
|
1243 |
-
##icult
|
1244 |
-
##ensity
|
1245 |
-
##erved
|
1246 |
-
difficult
|
1247 |
-
newly
|
1248 |
-
preserved
|
1249 |
-
5cm
|
1250 |
-
v3
|
1251 |
-
##ore
|
1252 |
-
##ilar
|
1253 |
-
axis
|
1254 |
-
##ineural
|
1255 |
-
turb
|
1256 |
-
temporal
|
1257 |
-
##uous
|
1258 |
-
##astric
|
1259 |
-
##ator
|
1260 |
-
caus
|
1261 |
-
correlation
|
1262 |
-
##ered
|
1263 |
-
##iated
|
1264 |
-
poster
|
1265 |
-
##ongue
|
1266 |
-
perineural
|
1267 |
-
degrad
|
1268 |
-
por
|
1269 |
-
##arotid
|
1270 |
-
##tern
|
1271 |
-
##igastric
|
1272 |
-
fatty
|
1273 |
-
##uct
|
1274 |
-
spaces
|
1275 |
-
highly
|
1276 |
-
##nt
|
1277 |
-
##ental
|
1278 |
-
defined
|
1279 |
-
invade
|
1280 |
-
t3n2m0
|
1281 |
-
tongue
|
1282 |
-
und
|
1283 |
-
##ates
|
1284 |
-
intensity
|
1285 |
-
pro
|
1286 |
-
contin
|
1287 |
-
##lying
|
1288 |
-
jugul
|
1289 |
-
displac
|
1290 |
-
degraded
|
1291 |
-
portion
|
1292 |
-
##ues
|
1293 |
-
few
|
1294 |
-
abnormality
|
1295 |
-
invaded
|
1296 |
-
##ontal
|
1297 |
-
6cm
|
1298 |
-
po
|
1299 |
-
vess
|
1300 |
-
##fore
|
1301 |
-
short
|
1302 |
-
submental
|
1303 |
-
see
|
1304 |
-
tonsils
|
1305 |
-
##aches
|
1306 |
-
vessel
|
1307 |
-
pl
|
1308 |
-
exclude
|
1309 |
-
t1n0m0
|
1310 |
-
particular
|
1311 |
-
pharyngeal
|
1312 |
-
jugulod
|
1313 |
-
foc
|
1314 |
-
##int
|
1315 |
-
##osed
|
1316 |
-
rel
|
1317 |
-
intact
|
1318 |
-
##udal
|
1319 |
-
longus
|
1320 |
-
jugulodigastric
|
1321 |
-
retain
|
1322 |
-
oropharyngeal
|
1323 |
-
being
|
1324 |
-
possibly
|
1325 |
-
tin
|
1326 |
-
##ative
|
1327 |
-
therefore
|
1328 |
-
##ility
|
1329 |
-
##ack
|
1330 |
-
regard
|
1331 |
-
recent
|
1332 |
-
regarded
|
1333 |
-
eval
|
1334 |
-
sur
|
1335 |
-
ul
|
1336 |
-
represents
|
1337 |
-
rest
|
1338 |
-
evalu
|
1339 |
-
7cm
|
1340 |
-
cere
|
1341 |
-
n2
|
1342 |
-
##vator
|
1343 |
-
##ities
|
1344 |
-
levator
|
1345 |
-
##ress
|
1346 |
-
iia
|
1347 |
-
t3n1m0
|
1348 |
-
conglomeration
|
1349 |
-
end
|
1350 |
-
occ
|
1351 |
-
round
|
1352 |
-
tip
|
1353 |
-
##ased
|
1354 |
-
contain
|
1355 |
-
orbits
|
1356 |
-
invading
|
1357 |
-
disc
|
1358 |
-
diagnosed
|
1359 |
-
opac
|
1360 |
-
tiny
|
1361 |
-
asymmetr
|
1362 |
-
moder
|
1363 |
-
partially
|
1364 |
-
particularly
|
1365 |
-
if
|
1366 |
-
mer
|
1367 |
-
##ire
|
1368 |
-
##tire
|
1369 |
-
entire
|
1370 |
-
dural
|
1371 |
-
retained
|
1372 |
-
moderate
|
1373 |
-
eust
|
1374 |
-
mal
|
1375 |
-
##ail
|
1376 |
-
##pect
|
1377 |
-
t2n
|
1378 |
-
frontal
|
1379 |
-
additional
|
1380 |
-
tissues
|
1381 |
-
##achian
|
1382 |
-
under
|
1383 |
-
eustachian
|
1384 |
-
malign
|
1385 |
-
10
|
1386 |
-
2m0
|
1387 |
-
##asilar
|
1388 |
-
reaches
|
1389 |
-
filling
|
1390 |
-
extra
|
1391 |
-
encasement
|
1392 |
-
evaluation
|
1393 |
-
ev
|
1394 |
-
str
|
1395 |
-
##ciated
|
1396 |
-
##x2
|
1397 |
-
##asound
|
1398 |
-
##entr
|
1399 |
-
##trasound
|
1400 |
-
##olateral
|
1401 |
-
incid
|
1402 |
-
ultrasound
|
1403 |
-
mandib
|
1404 |
-
v2
|
1405 |
-
##ber
|
1406 |
-
##iter
|
1407 |
-
reach
|
1408 |
-
one
|
1409 |
-
##ense
|
1410 |
-
tube
|
1411 |
-
##intense
|
1412 |
-
incidental
|
1413 |
-
mandible
|
1414 |
-
4cm
|
1415 |
-
prot
|
1416 |
-
caudal
|
1417 |
-
pharyng
|
1418 |
-
processes
|
1419 |
-
conglomerate
|
1420 |
-
##ise
|
1421 |
-
extent
|
1422 |
-
##obasilar
|
1423 |
-
possibility
|
1424 |
-
perf
|
1425 |
-
causing
|
1426 |
-
malignant
|
1427 |
-
evid
|
1428 |
-
pharyngobasilar
|
1429 |
-
12
|
1430 |
-
tens
|
1431 |
-
##uid
|
1432 |
-
##osc
|
1433 |
-
only
|
1434 |
-
form
|
1435 |
-
scf
|
1436 |
-
hem
|
1437 |
-
##sociated
|
1438 |
-
associated
|
1439 |
-
abnormalities
|
1440 |
-
##odular
|
1441 |
-
obs
|
1442 |
-
proven
|
1443 |
-
underlying
|
1444 |
-
performed
|
1445 |
-
tensor
|
1446 |
-
1cm
|
1447 |
-
ic
|
1448 |
-
ne
|
1449 |
-
##ring
|
1450 |
-
##edi
|
1451 |
-
##lete
|
1452 |
-
adv
|
1453 |
-
##ocol
|
1454 |
-
compress
|
1455 |
-
t1n1m0
|
1456 |
-
perip
|
1457 |
-
number
|
1458 |
-
protocol
|
1459 |
-
ln
|
1460 |
-
less
|
1461 |
-
mot
|
1462 |
-
##pos
|
1463 |
-
##01
|
1464 |
-
exophy
|
1465 |
-
apical
|
1466 |
-
complete
|
1467 |
-
endosc
|
1468 |
-
entirely
|
1469 |
-
ica
|
1470 |
-
exophytic
|
1471 |
-
cc
|
1472 |
-
mec
|
1473 |
-
##wise
|
1474 |
-
##arct
|
1475 |
-
##ules
|
1476 |
-
infarct
|
1477 |
-
otherwise
|
1478 |
-
suggestive
|
1479 |
-
maximal
|
1480 |
-
centered
|
1481 |
-
posterolateral
|
1482 |
-
related
|
1483 |
-
contains
|
1484 |
-
8mm
|
1485 |
-
ac
|
1486 |
-
equ
|
1487 |
-
n0
|
1488 |
-
##fic
|
1489 |
-
##kel
|
1490 |
-
##inodular
|
1491 |
-
##ital
|
1492 |
-
nodules
|
1493 |
-
##ised
|
1494 |
-
##ising
|
1495 |
-
exp
|
1496 |
-
smaller
|
1497 |
-
scar
|
1498 |
-
##amus
|
1499 |
-
##ivocal
|
1500 |
-
##anced
|
1501 |
-
##ification
|
1502 |
-
compar
|
1503 |
-
multinodular
|
1504 |
-
superfic
|
1505 |
-
encases
|
1506 |
-
throughout
|
1507 |
-
significant
|
1508 |
-
evidence
|
1509 |
-
advanced
|
1510 |
-
motion
|
1511 |
-
meckel
|
1512 |
-
equivocal
|
1513 |
-
8cm
|
1514 |
-
imm
|
1515 |
-
ins
|
1516 |
-
##astic
|
1517 |
-
sphenopalatine
|
1518 |
-
##epar
|
1519 |
-
mucosa
|
1520 |
-
t1n2m0
|
1521 |
-
rounded
|
1522 |
-
##ediately
|
1523 |
-
scarring
|
1524 |
-
immediately
|
1525 |
-
red
|
1526 |
-
##×2
|
1527 |
-
##reg
|
1528 |
-
##inates
|
1529 |
-
##aparotid
|
1530 |
-
fluid
|
1531 |
-
##ema
|
1532 |
-
asymmetry
|
1533 |
-
obstr
|
1534 |
-
5mm
|
1535 |
-
fav
|
1536 |
-
ir
|
1537 |
-
ib
|
1538 |
-
stern
|
1539 |
-
ts
|
1540 |
-
##round
|
1541 |
-
##tle
|
1542 |
-
##rete
|
1543 |
-
includ
|
1544 |
-
##itis
|
1545 |
-
##lyp
|
1546 |
-
such
|
1547 |
-
subtle
|
1548 |
-
cave
|
1549 |
-
assessment
|
1550 |
-
intraparotid
|
1551 |
-
turbinate
|
1552 |
-
turbinates
|
1553 |
-
continuous
|
1554 |
-
polyp
|
1555 |
-
discrete
|
1556 |
-
##regular
|
1557 |
-
irregular
|
1558 |
-
includes
|
1559 |
-
3n
|
1560 |
-
rat
|
1561 |
-
##nown
|
1562 |
-
##×3
|
1563 |
-
##idual
|
1564 |
-
cord
|
1565 |
-
cranioc
|
1566 |
-
enlargement
|
1567 |
-
cystic
|
1568 |
-
t4n2m0
|
1569 |
-
##acheal
|
1570 |
-
occip
|
1571 |
-
opacification
|
1572 |
-
merges
|
1573 |
-
superficial
|
1574 |
-
rather
|
1575 |
-
7mm
|
1576 |
-
aer
|
1577 |
-
des
|
1578 |
-
ramus
|
1579 |
-
##ide
|
1580 |
-
conf
|
1581 |
-
##ibr
|
1582 |
-
hyperintense
|
1583 |
-
arch
|
1584 |
-
##erent
|
1585 |
-
intra
|
1586 |
-
ag
|
1587 |
-
ben
|
1588 |
-
was
|
1589 |
-
##ted
|
1590 |
-
##ful
|
1591 |
-
##ating
|
1592 |
-
##oup
|
1593 |
-
##omy
|
1594 |
-
external
|
1595 |
-
condy
|
1596 |
-
retros
|
1597 |
-
##opl
|
1598 |
-
##opy
|
1599 |
-
clinically
|
1600 |
-
##odal
|
1601 |
-
surround
|
1602 |
-
6mm
|
1603 |
-
fn
|
1604 |
-
known
|
1605 |
-
##racheal
|
1606 |
-
##atracheal
|
1607 |
-
##idomastoid
|
1608 |
-
areas
|
1609 |
-
##leidomastoid
|
1610 |
-
##isp
|
1611 |
-
paratracheal
|
1612 |
-
##ocleidomastoid
|
1613 |
-
lie
|
1614 |
-
incre
|
1615 |
-
cerebral
|
1616 |
-
##entric
|
1617 |
-
periparotid
|
1618 |
-
endoscopy
|
1619 |
-
sternocleidomastoid
|
1620 |
-
11
|
1621 |
-
back
|
1622 |
-
fast
|
1623 |
-
fibr
|
1624 |
-
nerv
|
1625 |
-
out
|
1626 |
-
ra
|
1627 |
-
rim
|
1628 |
-
would
|
1629 |
-
##ank
|
1630 |
-
##olog
|
1631 |
-
thin
|
1632 |
-
those
|
1633 |
-
det
|
1634 |
-
depos
|
1635 |
-
cross
|
1636 |
-
been
|
1637 |
-
asymmetrical
|
1638 |
-
frank
|
1639 |
-
consid
|
1640 |
-
consist
|
1641 |
-
haem
|
1642 |
-
correlate
|
1643 |
-
extran
|
1644 |
-
foci
|
1645 |
-
focus
|
1646 |
-
##pective
|
1647 |
-
completely
|
1648 |
-
favour
|
1649 |
-
occipital
|
1650 |
-
nerves
|
1651 |
-
deposit
|
1652 |
-
13
|
1653 |
-
c3
|
1654 |
-
local
|
1655 |
-
tor
|
1656 |
-
us
|
1657 |
-
##ning
|
1658 |
-
##ying
|
1659 |
-
##bed
|
1660 |
-
##4mm
|
1661 |
-
white
|
1662 |
-
iib
|
1663 |
-
sequ
|
1664 |
-
supr
|
1665 |
-
matter
|
1666 |
-
t4n1m0
|
1667 |
-
contig
|
1668 |
-
extranodal
|
1669 |
-
line
|
1670 |
-
ma
|
1671 |
-
##mend
|
1672 |
-
##most
|
1673 |
-
indent
|
1674 |
-
##enous
|
1675 |
-
##ommend
|
1676 |
-
almost
|
1677 |
-
##ameter
|
1678 |
-
criter
|
1679 |
-
reporting
|
1680 |
-
diameter
|
1681 |
-
encased
|
1682 |
-
recommend
|
1683 |
-
residual
|
1684 |
-
overall
|
1685 |
-
continu
|
1686 |
-
again
|
1687 |
-
fnac
|
1688 |
-
contiguous
|
1689 |
-
criteria
|
1690 |
-
0cm
|
1691 |
-
ed
|
1692 |
-
stat
|
1693 |
-
venous
|
1694 |
-
##icated
|
1695 |
-
##vement
|
1696 |
-
subc
|
1697 |
-
##tex
|
1698 |
-
movement
|
1699 |
-
t3n1
|
1700 |
-
filled
|
1701 |
-
track
|
1702 |
-
hemisp
|
1703 |
-
across
|
1704 |
-
expand
|
1705 |
-
9cm
|
1706 |
-
c5
|
1707 |
-
capsular
|
1708 |
-
den
|
1709 |
-
ill
|
1710 |
-
n3
|
1711 |
-
##ause
|
1712 |
-
##ius
|
1713 |
-
##ioma
|
1714 |
-
##tical
|
1715 |
-
##pical
|
1716 |
-
##5mm
|
1717 |
-
##bra
|
1718 |
-
include
|
1719 |
-
##est
|
1720 |
-
##icul
|
1721 |
-
##trophy
|
1722 |
-
##olar
|
1723 |
-
verte
|
1724 |
-
arter
|
1725 |
-
foraminae
|
1726 |
-
presum
|
1727 |
-
10mm
|
1728 |
-
torus
|
1729 |
-
denerv
|
1730 |
-
vertebra
|
1731 |
-
bec
|
1732 |
-
dil
|
1733 |
-
gr
|
1734 |
-
nar
|
1735 |
-
##cri
|
1736 |
-
##ste
|
1737 |
-
##ener
|
1738 |
-
##aneous
|
1739 |
-
##ount
|
1740 |
-
identify
|
1741 |
-
##uell
|
1742 |
-
bet
|
1743 |
-
medially
|
1744 |
-
t3n3m0
|
1745 |
-
rosenmuell
|
1746 |
-
degener
|
1747 |
-
obvious
|
1748 |
-
pole
|
1749 |
-
cereb
|
1750 |
-
insepar
|
1751 |
-
retrospective
|
1752 |
-
consistent
|
1753 |
-
linear
|
1754 |
-
continuity
|
1755 |
-
status
|
1756 |
-
arteries
|
1757 |
-
denervation
|
1758 |
-
narrow
|
1759 |
-
##cribed
|
1760 |
-
rosenmueller
|
1761 |
-
inseparable
|
1762 |
-
am
|
1763 |
-
dri
|
1764 |
-
ventric
|
1765 |
-
##mon
|
1766 |
-
##up
|
1767 |
-
##to
|
1768 |
-
##ypical
|
1769 |
-
nodular
|
1770 |
-
##utaneous
|
1771 |
-
arising
|
1772 |
-
generalised
|
1773 |
-
periv
|
1774 |
-
clusters
|
1775 |
-
benign
|
1776 |
-
subcutaneous
|
1777 |
-
because
|
1778 |
-
cerebell
|
1779 |
-
driven
|
1780 |
-
3m0
|
1781 |
-
9mm
|
1782 |
-
duct
|
1783 |
-
man
|
1784 |
-
oed
|
1785 |
-
sim
|
1786 |
-
##iast
|
1787 |
-
##x3
|
1788 |
-
##6mm
|
1789 |
-
##arius
|
1790 |
-
inter
|
1791 |
-
##ace
|
1792 |
-
onto
|
1793 |
-
hypopl
|
1794 |
-
patent
|
1795 |
-
mediast
|
1796 |
-
adenoma
|
1797 |
-
partial
|
1798 |
-
choanal
|
1799 |
-
##ences
|
1800 |
-
##llar
|
1801 |
-
tubarius
|
1802 |
-
displacing
|
1803 |
-
##ails
|
1804 |
-
infarcts
|
1805 |
-
compared
|
1806 |
-
obstruct
|
1807 |
-
polypoid
|
1808 |
-
condyle
|
1809 |
-
##ology
|
1810 |
-
details
|
1811 |
-
considered
|
1812 |
-
sequences
|
1813 |
-
recommended
|
1814 |
-
group
|
1815 |
-
many
|
1816 |
-
oedema
|
1817 |
-
gang
|
1818 |
-
hard
|
1819 |
-
loo
|
1820 |
-
pp
|
1821 |
-
poor
|
1822 |
-
via
|
1823 |
-
were
|
1824 |
-
##een
|
1825 |
-
##ce
|
1826 |
-
##ween
|
1827 |
-
##jor
|
1828 |
-
##ans
|
1829 |
-
##ection
|
1830 |
-
##osely
|
1831 |
-
closely
|
1832 |
-
##illa
|
1833 |
-
shap
|
1834 |
-
palsy
|
1835 |
-
image
|
1836 |
-
t4n3m0
|
1837 |
-
overlying
|
1838 |
-
sparing
|
1839 |
-
displace
|
1840 |
-
aerated
|
1841 |
-
surrounding
|
1842 |
-
major
|
1843 |
-
between
|
1844 |
-
degenerative
|
1845 |
-
similar
|
1846 |
-
gangl
|
1847 |
-
look
|
1848 |
-
aur
|
1849 |
-
dx
|
1850 |
-
lying
|
1851 |
-
sal
|
1852 |
-
##ium
|
1853 |
-
##rh
|
1854 |
-
orific
|
1855 |
-
##ivary
|
1856 |
-
extraction
|
1857 |
-
t3n2
|
1858 |
-
heterogenous
|
1859 |
-
remains
|
1860 |
-
plan
|
1861 |
-
strip
|
1862 |
-
neur
|
1863 |
-
posterolaterally
|
1864 |
-
craniocervical
|
1865 |
-
described
|
1866 |
-
indenting
|
1867 |
-
hypoplastic
|
1868 |
-
polypoidal
|
1869 |
-
poorly
|
1870 |
-
salivary
|
1871 |
-
201
|
1872 |
-
dental
|
1873 |
-
tw
|
1874 |
-
tent
|
1875 |
-
##ler
|
1876 |
-
##yl
|
1877 |
-
##hes
|
1878 |
-
##asm
|
1879 |
-
##orph
|
1880 |
-
##orium
|
1881 |
-
##orrh
|
1882 |
-
naso
|
1883 |
-
##asellar
|
1884 |
-
retropharynx
|
1885 |
-
##velop
|
1886 |
-
##otemporal
|
1887 |
-
still
|
1888 |
-
parapharynx
|
1889 |
-
definitely
|
1890 |
-
##uction
|
1891 |
-
atypical
|
1892 |
-
its
|
1893 |
-
diffusion
|
1894 |
-
t3n0m0
|
1895 |
-
t4n3
|
1896 |
-
t4n1
|
1897 |
-
branc
|
1898 |
-
location
|
1899 |
-
##ectomy
|
1900 |
-
optic
|
1901 |
-
recesses
|
1902 |
-
relative
|
1903 |
-
reaching
|
1904 |
-
##iculotemporal
|
1905 |
-
amount
|
1906 |
-
auriculotemporal
|
1907 |
-
two
|
1908 |
-
tentorium
|
1909 |
-
4mm
|
1910 |
-
av
|
1911 |
-
che
|
1912 |
-
dou
|
1913 |
-
when
|
1914 |
-
##ned
|
1915 |
-
##lu
|
1916 |
-
##liter
|
1917 |
-
##other
|
1918 |
-
##side
|
1919 |
-
##tful
|
1920 |
-
##yond
|
1921 |
-
##×1
|
1922 |
-
##btful
|
1923 |
-
##7mm
|
1924 |
-
##orbit
|
1925 |
-
##ula
|
1926 |
-
too
|
1927 |
-
##ution
|
1928 |
-
distal
|
1929 |
-
beyond
|
1930 |
-
infra
|
1931 |
-
t3n3
|
1932 |
-
t1n0
|
1933 |
-
imaging
|
1934 |
-
minimally
|
1935 |
-
restric
|
1936 |
-
fills
|
1937 |
-
obliter
|
1938 |
-
vessels
|
1939 |
-
##pected
|
1940 |
-
conflu
|
1941 |
-
increased
|
1942 |
-
outside
|
1943 |
-
haemorrh
|
1944 |
-
presumably
|
1945 |
-
orifice
|
1946 |
-
doubtful
|
1947 |
-
##orbital
|
1948 |
-
4n
|
1949 |
-
er
|
1950 |
-
el
|
1951 |
-
go
|
1952 |
-
mening
|
1953 |
-
mastic
|
1954 |
-
old
|
1955 |
-
##gment
|
1956 |
-
##ole
|
1957 |
-
##fs
|
1958 |
-
##way
|
1959 |
-
##erm
|
1960 |
-
##onic
|
1961 |
-
##inum
|
1962 |
-
##ench
|
1963 |
-
##igin
|
1964 |
-
replac
|
1965 |
-
##omal
|
1966 |
-
##trance
|
1967 |
-
parench
|
1968 |
-
corres
|
1969 |
-
scanned
|
1970 |
-
develop
|
1971 |
-
##otty
|
1972 |
-
entrance
|
1973 |
-
hypo
|
1974 |
-
##ible
|
1975 |
-
secondary
|
1976 |
-
thicker
|
1977 |
-
shotty
|
1978 |
-
indicated
|
1979 |
-
segment
|
1980 |
-
hypertrophy
|
1981 |
-
common
|
1982 |
-
t1n1
|
1983 |
-
masses
|
1984 |
-
##onstr
|
1985 |
-
cause
|
1986 |
-
occup
|
1987 |
-
asymmetric
|
1988 |
-
##entricular
|
1989 |
-
usg
|
1990 |
-
suprasellar
|
1991 |
-
narrowing
|
1992 |
-
mediastinum
|
1993 |
-
confluent
|
1994 |
-
parenchym
|
1995 |
-
corresp
|
1996 |
-
18
|
1997 |
-
3mm
|
1998 |
-
cove
|
1999 |
-
derm
|
2000 |
-
laryn
|
2001 |
-
n2m0
|
2002 |
-
tail
|
2003 |
-
war
|
2004 |
-
##eph
|
2005 |
-
##monstr
|
2006 |
-
##lp
|
2007 |
-
##tif
|
2008 |
-
##ind
|
2009 |
-
##itre
|
2010 |
-
##ither
|
2011 |
-
met
|
2012 |
-
##omorph
|
2013 |
-
##oll
|
2014 |
-
##achn
|
2015 |
-
invasive
|
2016 |
-
cortex
|
2017 |
-
whole
|
2018 |
-
help
|
2019 |
-
demonstr
|
2020 |
-
anter
|
2021 |
-
artif
|
2022 |
-
arachn
|
2023 |
-
##reatment
|
2024 |
-
encro
|
2025 |
-
pleural
|
2026 |
-
pleomorph
|
2027 |
-
result
|
2028 |
-
overt
|
2029 |
-
##ascular
|
2030 |
-
causes
|
2031 |
-
forming
|
2032 |
-
fibrosis
|
2033 |
-
raising
|
2034 |
-
cerebellar
|
2035 |
-
ganglia
|
2036 |
-
looking
|
2037 |
-
striped
|
2038 |
-
tooth
|
2039 |
-
goitre
|
2040 |
-
covered
|
2041 |
-
##ephal
|
2042 |
-
artifact
|
2043 |
-
arachnoid
|
2044 |
-
pleomorphic
|
2045 |
-
14mm
|
2046 |
-
21
|
2047 |
-
bil
|
2048 |
-
cis
|
2049 |
-
dated
|
2050 |
-
either
|
2051 |
-
mandibular
|
2052 |
-
pons
|
2053 |
-
rt
|
2054 |
-
##mic
|
2055 |
-
##aem
|
2056 |
-
##audal
|
2057 |
-
##ner
|
2058 |
-
##ronic
|
2059 |
-
##tal
|
2060 |
-
##poma
|
2061 |
-
##atal
|
2062 |
-
##atible
|
2063 |
-
##usely
|
2064 |
-
##ulated
|
2065 |
-
##ises
|
2066 |
-
##vere
|
2067 |
-
unit
|
2068 |
-
chronic
|
2069 |
-
cortical
|
2070 |
-
##rimal
|
2071 |
-
severe
|
2072 |
-
lipoma
|
2073 |
-
showing
|
2074 |
-
pattern
|
2075 |
-
compatible
|
2076 |
-
different
|
2077 |
-
diffusely
|
2078 |
-
components
|
2079 |
-
t1n2
|
2080 |
-
t4n2
|
2081 |
-
opening
|
2082 |
-
merge
|
2083 |
-
t2n1m0
|
2084 |
-
struct
|
2085 |
-
compression
|
2086 |
-
3n2m0
|
2087 |
-
craniocaudal
|
2088 |
-
crosses
|
2089 |
-
13mm
|
2090 |
-
hemisphere
|
2091 |
-
vertebrae
|
2092 |
-
periventricular
|
2093 |
-
obstructed
|
2094 |
-
infraorbital
|
2095 |
-
developmental
|
2096 |
-
correspond
|
2097 |
-
helpful
|
2098 |
-
22
|
2099 |
-
20
|
2100 |
-
band
|
2101 |
-
co
|
2102 |
-
dd
|
2103 |
-
em
|
2104 |
-
hor
|
2105 |
-
ij
|
2106 |
-
ller
|
2107 |
-
n0m0
|
2108 |
-
ov
|
2109 |
-
oste
|
2110 |
-
separ
|
2111 |
-
wing
|
2112 |
-
##opic
|
2113 |
-
##ved
|
2114 |
-
##3mm
|
2115 |
-
##ward
|
2116 |
-
##atation
|
2117 |
-
isch
|
2118 |
-
total
|
2119 |
-
spond
|
2120 |
-
##ified
|
2121 |
-
##thin
|
2122 |
-
scans
|
2123 |
-
##irc
|
2124 |
-
##ymp
|
2125 |
-
suscept
|
2126 |
-
##ibility
|
2127 |
-
mucous
|
2128 |
-
bulge
|
2129 |
-
prominence
|
2130 |
-
aspects
|
2131 |
-
sell
|
2132 |
-
inflammation
|
2133 |
-
##earch
|
2134 |
-
##ifferent
|
2135 |
-
lobulated
|
2136 |
-
##omeatal
|
2137 |
-
research
|
2138 |
-
contact
|
2139 |
-
airway
|
2140 |
-
artefacts
|
2141 |
-
##ontine
|
2142 |
-
undifferent
|
2143 |
-
##ailable
|
2144 |
-
hemith
|
2145 |
-
lns
|
2146 |
-
increase
|
2147 |
-
dilatation
|
2148 |
-
ventricles
|
2149 |
-
##ylosis
|
2150 |
-
relatively
|
2151 |
-
masticator
|
2152 |
-
parenchymal
|
2153 |
-
dermat
|
2154 |
-
warthin
|
2155 |
-
cistern
|
2156 |
-
ddx
|
2157 |
-
ovoid
|
2158 |
-
##wards
|
2159 |
-
ischaem
|
2160 |
-
spondylosis
|
2161 |
-
susceptibility
|
2162 |
-
sella
|
2163 |
-
undifferentiated
|
2164 |
-
bas
|
2165 |
-
ball
|
2166 |
-
c4
|
2167 |
-
circ
|
2168 |
-
giv
|
2169 |
-
n1m0
|
2170 |
-
ost
|
2171 |
-
pri
|
2172 |
-
treatment
|
2173 |
-
vocal
|
2174 |
-
we
|
2175 |
-
##pinal
|
2176 |
-
##heres
|
2177 |
-
##art
|
2178 |
-
##aspinal
|
2179 |
-
##ined
|
2180 |
-
##osion
|
2181 |
-
##ison
|
2182 |
-
origin
|
2183 |
-
necks
|
2184 |
-
##owing
|
2185 |
-
thir
|
2186 |
-
paraspinal
|
2187 |
-
smoo
|
2188 |
-
##irm
|
2189 |
-
prel
|
2190 |
-
skin
|
2191 |
-
antr
|
2192 |
-
##tered
|
2193 |
-
##app
|
2194 |
-
appearing
|
2195 |
-
dimensions
|
2196 |
-
markedly
|
2197 |
-
infiltrated
|
2198 |
-
infiltrates
|
2199 |
-
adenoidal
|
2200 |
-
pharynx
|
2201 |
-
compressing
|
2202 |
-
expans
|
2203 |
-
comparison
|
2204 |
-
confirm
|
2205 |
-
deposits
|
2206 |
-
edema
|
2207 |
-
hemispheres
|
2208 |
-
expanded
|
2209 |
-
shape
|
2210 |
-
available
|
2211 |
-
haemorrhage
|
2212 |
-
erosion
|
2213 |
-
else
|
2214 |
-
structures
|
2215 |
-
corresponds
|
2216 |
-
ijv
|
2217 |
-
circum
|
2218 |
-
third
|
2219 |
-
smooth
|
2220 |
-
2n
|
2221 |
-
basal
|
2222 |
-
c6
|
2223 |
-
coll
|
2224 |
-
lat
|
2225 |
-
ques
|
2226 |
-
ser
|
2227 |
-
sol
|
2228 |
-
symp
|
2229 |
-
##m1
|
2230 |
-
##iasm
|
2231 |
-
##iomeatal
|
2232 |
-
##ci
|
2233 |
-
##×4
|
2234 |
-
##bm0
|
2235 |
-
their
|
2236 |
-
##one
|
2237 |
-
##inary
|
2238 |
-
nasol
|
2239 |
-
##trib
|
2240 |
-
##veolar
|
2241 |
-
contex
|
2242 |
-
chiasm
|
2243 |
-
alveolar
|
2244 |
-
##ame
|
2245 |
-
##urre
|
2246 |
-
notch
|
2247 |
-
##gestion
|
2248 |
-
##uced
|
2249 |
-
##iminary
|
2250 |
-
maxilla
|
2251 |
-
path
|
2252 |
-
comb
|
2253 |
-
##izontal
|
2254 |
-
distrib
|
2255 |
-
t1n3m0
|
2256 |
-
lobes
|
2257 |
-
##gery
|
2258 |
-
##yroidectomy
|
2259 |
-
infiltrating
|
2260 |
-
lengths
|
2261 |
-
centrally
|
2262 |
-
trache
|
2263 |
-
displaces
|
2264 |
-
plates
|
2265 |
-
surgery
|
2266 |
-
opacified
|
2267 |
-
compressed
|
2268 |
-
peripher
|
2269 |
-
irregularity
|
2270 |
-
aeration
|
2271 |
-
raises
|
2272 |
-
crossing
|
2273 |
-
haemang
|
2274 |
-
locally
|
2275 |
-
dilated
|
2276 |
-
meningioma
|
2277 |
-
replaced
|
2278 |
-
hypointense
|
2279 |
-
horizontal
|
2280 |
-
hemithyroidectomy
|
2281 |
-
ballo
|
2282 |
-
given
|
2283 |
-
ostiomeatal
|
2284 |
-
preliminary
|
2285 |
-
antrum
|
2286 |
-
question
|
2287 |
-
context
|
2288 |
-
distribution
|
2289 |
-
af
|
2290 |
-
bl
|
2291 |
-
cour
|
2292 |
-
coup
|
2293 |
-
ded
|
2294 |
-
gd
|
2295 |
-
hil
|
2296 |
-
ia
|
2297 |
-
lim
|
2298 |
-
oph
|
2299 |
-
pur
|
2300 |
-
run
|
2301 |
-
sw
|
2302 |
-
sent
|
2303 |
-
same
|
2304 |
-
vall
|
2305 |
-
wor
|
2306 |
-
##ness
|
2307 |
-
##li
|
2308 |
-
##sent
|
2309 |
-
##fort
|
2310 |
-
##vate
|
2311 |
-
##view
|
2312 |
-
##ald
|
2313 |
-
##alateral
|
2314 |
-
##almic
|
2315 |
-
##asing
|
2316 |
-
##asternal
|
2317 |
-
##ertebral
|
2318 |
-
##ination
|
2319 |
-
inner
|
2320 |
-
##athe
|
2321 |
-
##ecula
|
2322 |
-
##ositis
|
2323 |
-
requ
|
2324 |
-
review
|
2325 |
-
towards
|
2326 |
-
oral
|
2327 |
-
exc
|
2328 |
-
exam
|
2329 |
-
expected
|
2330 |
-
unfort
|
2331 |
-
##olaps
|
2332 |
-
##acic
|
2333 |
-
sinusitis
|
2334 |
-
axilla
|
2335 |
-
##thalmic
|
2336 |
-
dev
|
2337 |
-
enter
|
2338 |
-
contralateral
|
2339 |
-
prolaps
|
2340 |
-
effac
|
2341 |
-
t2wfs
|
2342 |
-
att
|
2343 |
-
##unately
|
2344 |
-
##apy
|
2345 |
-
indic
|
2346 |
-
palp
|
2347 |
-
palant
|
2348 |
-
remo
|
2349 |
-
clustering
|
2350 |
-
margins
|
2351 |
-
enhanced
|
2352 |
-
lesions
|
2353 |
-
sclerotic
|
2354 |
-
caused
|
2355 |
-
displaced
|
2356 |
-
plate
|
2357 |
-
12th
|
2358 |
-
##poses
|
2359 |
-
reduced
|
2360 |
-
obstruction
|
2361 |
-
polyposis
|
2362 |
-
##omyositis
|
2363 |
-
surrounds
|
2364 |
-
asymmetrically
|
2365 |
-
suprasternal
|
2366 |
-
##stem
|
2367 |
-
ventricle
|
2368 |
-
pps
|
2369 |
-
ppf
|
2370 |
-
displacement
|
2371 |
-
planning
|
2372 |
-
neuropathy
|
2373 |
-
branches
|
2374 |
-
chem
|
2375 |
-
##otherapy
|
2376 |
-
encroaches
|
2377 |
-
separate
|
2378 |
-
dermatomyositis
|
2379 |
-
ischaemia
|
2380 |
-
private
|
2381 |
-
latter
|
2382 |
-
combined
|
2383 |
-
couple
|
2384 |
-
dedicated
|
2385 |
-
ophthalmic
|
2386 |
-
purposes
|
2387 |
-
vallecula
|
2388 |
-
work
|
2389 |
-
unfortunately
|
2390 |
-
14
|
2391 |
-
1m0
|
2392 |
-
15mm
|
2393 |
-
2x
|
2394 |
-
3r
|
2395 |
-
9x
|
2396 |
-
atrophy
|
2397 |
-
bowing
|
2398 |
-
dr
|
2399 |
-
hal
|
2400 |
-
ham
|
2401 |
-
ling
|
2402 |
-
mr
|
2403 |
-
mic
|
2404 |
-
mac
|
2405 |
-
molar
|
2406 |
-
os
|
2407 |
-
qual
|
2408 |
-
sul
|
2409 |
-
wid
|
2410 |
-
##ek
|
2411 |
-
##iation
|
2412 |
-
##ne
|
2413 |
-
##nw
|
2414 |
-
##cing
|
2415 |
-
##la
|
2416 |
-
##xus
|
2417 |
-
##dies
|
2418 |
-
##occ
|
2419 |
-
##oint
|
2420 |
-
##uated
|
2421 |
-
##ts
|
2422 |
-
##press
|
2423 |
-
##2mm
|
2424 |
-
##fer
|
2425 |
-
##face
|
2426 |
-
##0mm
|
2427 |
-
##8mm
|
2428 |
-
##inct
|
2429 |
-
##pers
|
2430 |
-
congestion
|
2431 |
-
##acia
|
2432 |
-
##acrimal
|
2433 |
-
##istinct
|
2434 |
-
once
|
2435 |
-
##anding
|
2436 |
-
apart
|
2437 |
-
bodies
|
2438 |
-
mucus
|
2439 |
-
##illar
|
2440 |
-
adc
|
2441 |
-
appre
|
2442 |
-
indistinct
|
2443 |
-
like
|
2444 |
-
t3n0
|
2445 |
-
encephal
|
2446 |
-
encasing
|
2447 |
-
plexus
|
2448 |
-
tonsillar
|
2449 |
-
remaining
|
2450 |
-
infiltrative
|
2451 |
-
adenoids
|
2452 |
-
##ected
|
2453 |
-
temporalis
|
2454 |
-
protr
|
2455 |
-
ulcer
|
2456 |
-
tips
|
2457 |
-
endoscopic
|
2458 |
-
bene
|
2459 |
-
fibrous
|
2460 |
-
interval
|
2461 |
-
shaped
|
2462 |
-
branch
|
2463 |
-
restriction
|
2464 |
-
restricted
|
2465 |
-
##omalacia
|
2466 |
-
demonstrate
|
2467 |
-
resulting
|
2468 |
-
craniocaudally
|
2469 |
-
solid
|
2470 |
-
sympathe
|
2471 |
-
nasolacrimal
|
2472 |
-
##urrent
|
2473 |
-
peripheral
|
2474 |
-
haemangioma
|
2475 |
-
questionable
|
2476 |
-
examination
|
2477 |
-
removed
|
2478 |
-
3rd
|
2479 |
-
half
|
2480 |
-
lingual
|
2481 |
-
quality
|
2482 |
-
##nwald
|
2483 |
-
##occip
|
2484 |
-
sympathetic
|
2485 |
-
17
|
2486 |
-
19
|
2487 |
-
6×2
|
2488 |
-
7x
|
2489 |
-
8x1
|
2490 |
-
based
|
2491 |
-
dy
|
2492 |
-
digastric
|
2493 |
-
ep
|
2494 |
-
ecc
|
2495 |
-
ell
|
2496 |
-
ip
|
2497 |
-
joint
|
2498 |
-
near
|
2499 |
-
pul
|
2500 |
-
pne
|
2501 |
-
ris
|
2502 |
-
sing
|
2503 |
-
tou
|
2504 |
-
void
|
2505 |
-
vascular
|
2506 |
-
way
|
2507 |
-
##ix
|
2508 |
-
##roc
|
2509 |
-
##silateral
|
2510 |
-
##tor
|
2511 |
-
##pty
|
2512 |
-
##hind
|
2513 |
-
##vin
|
2514 |
-
##1mm
|
2515 |
-
##kely
|
2516 |
-
##ord
|
2517 |
-
##term
|
2518 |
-
##umat
|
2519 |
-
##omed
|
2520 |
-
##troph
|
2521 |
-
##allic
|
2522 |
-
unli
|
2523 |
-
convin
|
2524 |
-
parav
|
2525 |
-
##avic
|
2526 |
-
infection
|
2527 |
-
cavities
|
2528 |
-
##amina
|
2529 |
-
clavic
|
2530 |
-
section
|
2531 |
-
dep
|
2532 |
-
eng
|
2533 |
-
behind
|
2534 |
-
another
|
2535 |
-
suspected
|
2536 |
-
##quela
|
2537 |
-
effect
|
2538 |
-
find
|
2539 |
-
##ucos
|
2540 |
-
thickness
|
2541 |
-
thoracic
|
2542 |
-
add
|
2543 |
-
sequela
|
2544 |
-
histology
|
2545 |
-
##iptical
|
2546 |
-
comment
|
2547 |
-
##adenoma
|
2548 |
-
constric
|
2549 |
-
thyroidectomy
|
2550 |
-
##roadenoma
|
2551 |
-
heterogeneously
|
2552 |
-
presence
|
2553 |
-
brainstem
|
2554 |
-
secretion
|
2555 |
-
artefactual
|
2556 |
-
sheaths
|
2557 |
-
tract
|
2558 |
-
trace
|
2559 |
-
surface
|
2560 |
-
t2n1
|
2561 |
-
10x
|
2562 |
-
12mm
|
2563 |
-
need
|
2564 |
-
neopl
|
2565 |
-
inser
|
2566 |
-
3n1m0
|
2567 |
-
destr
|
2568 |
-
retrosternal
|
2569 |
-
detected
|
2570 |
-
consider
|
2571 |
-
usual
|
2572 |
-
interm
|
2573 |
-
obstructive
|
2574 |
-
larynx
|
2575 |
-
metallic
|
2576 |
-
severely
|
2577 |
-
differential
|
2578 |
-
empty
|
2579 |
-
osteophy
|
2580 |
-
expansion
|
2581 |
-
circumf
|
2582 |
-
pathology
|
2583 |
-
trachea
|
2584 |
-
after
|
2585 |
-
course
|
2586 |
-
hilum
|
2587 |
-
limit
|
2588 |
-
effaced
|
2589 |
-
palpable
|
2590 |
-
chemotherapy
|
2591 |
-
macroadenoma
|
2592 |
-
encephalomalacia
|
2593 |
-
beneath
|
2594 |
-
##nwaldt
|
2595 |
-
dysp
|
2596 |
-
elliptical
|
2597 |
-
ipsilateral
|
2598 |
-
pneumat
|
2599 |
-
risk
|
2600 |
-
single
|
2601 |
-
unlikely
|
2602 |
-
convincing
|
2603 |
-
paravertebral
|
2604 |
-
constrictor
|
2605 |
-
neoplasm
|
2606 |
-
17mm
|
2607 |
-
25
|
2608 |
-
2x1
|
2609 |
-
3x3
|
2610 |
-
4x2
|
2611 |
-
7x1
|
2612 |
-
9x1
|
2613 |
-
aud
|
2614 |
-
bu
|
2615 |
-
cer
|
2616 |
-
current
|
2617 |
-
dens
|
2618 |
-
ec
|
2619 |
-
even
|
2620 |
-
fac
|
2621 |
-
fore
|
2622 |
-
guid
|
2623 |
-
hom
|
2624 |
-
rid
|
2625 |
-
rad
|
2626 |
-
ray
|
2627 |
-
sj
|
2628 |
-
vi
|
2629 |
-
##lf
|
2630 |
-
##lot
|
2631 |
-
##lasia
|
2632 |
-
##xap
|
2633 |
-
##of
|
2634 |
-
##tes
|
2635 |
-
##tom
|
2636 |
-
##ys
|
2637 |
-
##alk
|
2638 |
-
##arac
|
2639 |
-
##ren
|
2640 |
-
##ingeal
|
2641 |
-
##itory
|
2642 |
-
##eningeal
|
2643 |
-
##terist
|
2644 |
-
meat
|
2645 |
-
##oun
|
2646 |
-
##ision
|
2647 |
-
position
|
2648 |
-
thal
|
2649 |
-
paral
|
2650 |
-
charac
|
2651 |
-
axillary
|
2652 |
-
involution
|
2653 |
-
t2b
|
2654 |
-
fossas
|
2655 |
-
##amed
|
2656 |
-
determ
|
2657 |
-
stalk
|
2658 |
-
##ividual
|
2659 |
-
anomal
|
2660 |
-
##ancy
|
2661 |
-
##unar
|
2662 |
-
##ock
|
2663 |
-
individual
|
2664 |
-
predominately
|
2665 |
-
showed
|
2666 |
-
submucos
|
2667 |
-
lacunar
|
2668 |
-
##ogren
|
2669 |
-
suggests
|
2670 |
-
tumors
|
2671 |
-
##seous
|
2672 |
-
##elling
|
2673 |
-
##tainty
|
2674 |
-
peri
|
2675 |
-
wraps
|
2676 |
-
##ching
|
2677 |
-
contour
|
2678 |
-
degre
|
2679 |
-
shelf
|
2680 |
-
tubes
|
2681 |
-
trapp
|
2682 |
-
plus
|
2683 |
-
plain
|
2684 |
-
recently
|
2685 |
-
evaluate
|
2686 |
-
t2n2m0
|
2687 |
-
t2n3m0
|
2688 |
-
malignancy
|
2689 |
-
obsc
|
2690 |
-
tsxap
|
2691 |
-
condyles
|
2692 |
-
11mm
|
2693 |
-
##ological
|
2694 |
-
sequence
|
2695 |
-
mak
|
2696 |
-
edge
|
2697 |
-
expanding
|
2698 |
-
n3b
|
2699 |
-
##monary
|
2700 |
-
perivascular
|
2701 |
-
groups
|
2702 |
-
obliterated
|
2703 |
-
occupying
|
2704 |
-
##inds
|
2705 |
-
basi
|
2706 |
-
weight
|
2707 |
-
running
|
2708 |
-
osseous
|
2709 |
-
sulci
|
2710 |
-
##pression
|
2711 |
-
pulmonary
|
2712 |
-
##ixed
|
2713 |
-
##omedial
|
2714 |
-
findinds
|
2715 |
-
dysplasia
|
2716 |
-
auditory
|
2717 |
-
certainty
|
2718 |
-
ecs
|
2719 |
-
guided
|
2720 |
-
homogen
|
2721 |
-
ridge
|
2722 |
-
sjogren
|
2723 |
-
##teristic
|
2724 |
-
characteristic
|
2725 |
-
involutional
|
2726 |
-
anomaly
|
2727 |
-
trapped
|
2728 |
-
0x1
|
2729 |
-
0x2
|
2730 |
-
16
|
2731 |
-
1x1
|
2732 |
-
1×2
|
2733 |
-
16mm
|
2734 |
-
24
|
2735 |
-
6x
|
2736 |
-
7x2
|
2737 |
-
8×2
|
2738 |
-
bx
|
2739 |
-
bre
|
2740 |
-
cap
|
2741 |
-
dec
|
2742 |
-
es
|
2743 |
-
found
|
2744 |
-
fung
|
2745 |
-
hu
|
2746 |
-
jd
|
2747 |
-
king
|
2748 |
-
ls
|
2749 |
-
lin
|
2750 |
-
mou
|
2751 |
-
map
|
2752 |
-
n3m0
|
2753 |
-
od
|
2754 |
-
pen
|
2755 |
-
ped
|
2756 |
-
pontine
|
2757 |
-
ring
|
2758 |
-
rib
|
2759 |
-
tag
|
2760 |
-
tran
|
2761 |
-
whe
|
2762 |
-
wide
|
2763 |
-
##ak
|
2764 |
-
##ier
|
2765 |
-
##ift
|
2766 |
-
##iet
|
2767 |
-
##ngeal
|
2768 |
-
##nce
|
2769 |
-
##ches
|
2770 |
-
##droc
|
2771 |
-
##sies
|
2772 |
-
##pontine
|
2773 |
-
##×6
|
2774 |
-
##vant
|
2775 |
-
##ales
|
2776 |
-
##arent
|
2777 |
-
now
|
2778 |
-
##tasis
|
2779 |
-
##ectasis
|
2780 |
-
##ged
|
2781 |
-
least
|
2782 |
-
##igone
|
2783 |
-
##ulous
|
2784 |
-
refer
|
2785 |
-
##omolar
|
2786 |
-
oro
|
2787 |
-
conver
|
2788 |
-
span
|
2789 |
-
paramed
|
2790 |
-
pariet
|
2791 |
-
##aceous
|
2792 |
-
altered
|
2793 |
-
##ute
|
2794 |
-
retro
|
2795 |
-
retroph
|
2796 |
-
retromolar
|
2797 |
-
scanning
|
2798 |
-
clavicular
|
2799 |
-
def
|
2800 |
-
hydroc
|
2801 |
-
##ullary
|
2802 |
-
##iver
|
2803 |
-
##agic
|
2804 |
-
absent
|
2805 |
-
prepontine
|
2806 |
-
lymphoma
|
2807 |
-
account
|
2808 |
-
staged
|
2809 |
-
##imum
|
2810 |
-
pterygoids
|
2811 |
-
much
|
2812 |
-
thornwaldt
|
2813 |
-
atel
|
2814 |
-
apparent
|
2815 |
-
##plied
|
2816 |
-
indetermin
|
2817 |
-
lacrimal
|
2818 |
-
minimum
|
2819 |
-
flat
|
2820 |
-
flair
|
2821 |
-
##ization
|
2822 |
-
supplied
|
2823 |
-
normally
|
2824 |
-
clearly
|
2825 |
-
t1n3
|
2826 |
-
situated
|
2827 |
-
##rowth
|
2828 |
-
ivim
|
2829 |
-
remarkable
|
2830 |
-
confines
|
2831 |
-
##ets
|
2832 |
-
t4n0
|
2833 |
-
respective
|
2834 |
-
significantly
|
2835 |
-
content
|
2836 |
-
##achment
|
2837 |
-
reticul
|
2838 |
-
spares
|
2839 |
-
veins
|
2840 |
-
##x11mm
|
2841 |
-
trigone
|
2842 |
-
t2n3
|
2843 |
-
evident
|
2844 |
-
acute
|
2845 |
-
reduction
|
2846 |
-
favor
|
2847 |
-
outline
|
2848 |
-
favours
|
2849 |
-
presumed
|
2850 |
-
narrowed
|
2851 |
-
mediastinal
|
2852 |
-
obliteration
|
2853 |
-
haemorrhagic
|
2854 |
-
laryng
|
2855 |
-
anteromedial
|
2856 |
-
##ephalus
|
2857 |
-
artifacts
|
2858 |
-
developmentally
|
2859 |
-
coales
|
2860 |
-
##apping
|
2861 |
-
collaps
|
2862 |
-
series
|
2863 |
-
balloon
|
2864 |
-
balloons
|
2865 |
-
swelling
|
2866 |
-
excised
|
2867 |
-
deviated
|
2868 |
-
prolapse
|
2869 |
-
hampers
|
2870 |
-
widening
|
2871 |
-
##occiput
|
2872 |
-
eccentric
|
2873 |
-
nearly
|
2874 |
-
clavicle
|
2875 |
-
insertion
|
2876 |
-
osteophytes
|
2877 |
-
circumferent
|
2878 |
-
pneumatization
|
2879 |
-
foreign
|
2880 |
-
##ysm
|
2881 |
-
meatus
|
2882 |
-
thalamus
|
2883 |
-
determine
|
2884 |
-
obscure
|
2885 |
-
basiocciput
|
2886 |
-
weighted
|
2887 |
-
characteristics
|
2888 |
-
capitis
|
2889 |
-
huge
|
2890 |
-
mouth
|
2891 |
-
penetr
|
2892 |
-
tags
|
2893 |
-
trans
|
2894 |
-
whether
|
2895 |
-
converted
|
2896 |
-
paramedian
|
2897 |
-
parietal
|
2898 |
-
hydrocephalus
|
2899 |
-
1x
|
2900 |
-
1×3
|
2901 |
-
27
|
2902 |
-
29
|
2903 |
-
2mm
|
2904 |
-
2×3
|
2905 |
-
30
|
2906 |
-
5x
|
2907 |
-
6x2
|
2908 |
-
6x3
|
2909 |
-
7×2
|
2910 |
-
8x
|
2911 |
-
8×3
|
2912 |
-
aort
|
2913 |
-
atroph
|
2914 |
-
bed
|
2915 |
-
bound
|
2916 |
-
basilar
|
2917 |
-
cs
|
2918 |
-
cal
|
2919 |
-
cre
|
2920 |
-
cen
|
2921 |
-
caps
|
2922 |
-
cest
|
2923 |
-
ele
|
2924 |
-
far
|
2925 |
-
ful
|
2926 |
-
fain
|
2927 |
-
flow
|
2928 |
-
function
|
2929 |
-
growth
|
2930 |
-
had
|
2931 |
-
hence
|
2932 |
-
lamina
|
2933 |
-
mixed
|
2934 |
-
oc
|
2935 |
-
sy
|
2936 |
-
sin
|
2937 |
-
te
|
2938 |
-
tn
|
2939 |
-
tim
|
2940 |
-
tra
|
2941 |
-
tort
|
2942 |
-
typical
|
2943 |
-
vs
|
2944 |
-
×2
|
2945 |
-
##eur
|
2946 |
-
##eity
|
2947 |
-
##mp
|
2948 |
-
##gical
|
2949 |
-
##che
|
2950 |
-
##rit
|
2951 |
-
##ximal
|
2952 |
-
##de
|
2953 |
-
##ded
|
2954 |
-
##oad
|
2955 |
-
##sal
|
2956 |
-
##scribed
|
2957 |
-
##uper
|
2958 |
-
##pite
|
2959 |
-
##pigin
|
2960 |
-
##ptom
|
2961 |
-
##ye
|
2962 |
-
##×5
|
2963 |
-
##5×3
|
2964 |
-
##hel
|
2965 |
-
##arch
|
2966 |
-
##ass
|
2967 |
-
##asinus
|
2968 |
-
##ested
|
2969 |
-
##orged
|
2970 |
-
##atic
|
2971 |
-
##itate
|
2972 |
-
##itive
|
2973 |
-
##aryngeal
|
2974 |
-
##opharyng
|
2975 |
-
##oses
|
2976 |
-
##osterior
|
2977 |
-
##osuper
|
2978 |
-
##uma
|
2979 |
-
leptom
|
2980 |
-
##iglot
|
2981 |
-
reac
|
2982 |
-
##ish
|
2983 |
-
toler
|
2984 |
-
##ilitate
|
2985 |
-
##rive
|
2986 |
-
##vex
|
2987 |
-
exact
|
2988 |
-
convex
|
2989 |
-
##remely
|
2990 |
-
thre
|
2991 |
-
thyr
|
2992 |
-
thrive
|
2993 |
-
extremely
|
2994 |
-
##thrit
|
2995 |
-
fors
|
2996 |
-
scm
|
2997 |
-
deb
|
2998 |
-
about
|
2999 |
-
##udes
|
3000 |
-
##endum
|
3001 |
-
prop
|
3002 |
-
##oposterior
|
3003 |
-
before
|
3004 |
-
ann
|
3005 |
-
aneur
|
3006 |
-
hypopharyngeal
|
3007 |
-
apx
|
3008 |
-
accoun
|
3009 |
-
##ucle
|
3010 |
-
lowest
|
3011 |
-
##ongly
|
3012 |
-
atte
|
3013 |
-
abutt
|
3014 |
-
abutment
|
3015 |
-
sigmoid
|
3016 |
-
paranas
|
3017 |
-
##verse
|
3018 |
-
shad
|
3019 |
-
shift
|
3020 |
-
asap
|
3021 |
-
##ape
|
3022 |
-
search
|
3023 |
-
hyperint
|
3024 |
-
arthrit
|
3025 |
-
spreads
|
3026 |
-
feature
|
3027 |
-
histological
|
3028 |
-
extensively
|
3029 |
-
frond
|
3030 |
-
cleft
|
3031 |
-
##standing
|
3032 |
-
centre
|
3033 |
-
mask
|
3034 |
-
masseter
|
3035 |
-
vault
|
3036 |
-
diagnoses
|
3037 |
-
imp
|
3038 |
-
impression
|
3039 |
-
heterogeneity
|
3040 |
-
unusually
|
3041 |
-
##ached
|
3042 |
-
conglomerated
|
3043 |
-
##ques
|
3044 |
-
longstanding
|
3045 |
-
assessed
|
3046 |
-
intrasinus
|
3047 |
-
##x10mm
|
3048 |
-
degrade
|
3049 |
-
degrades
|
3050 |
-
##uctive
|
3051 |
-
proximal
|
3052 |
-
containing
|
3053 |
-
t2n0m0
|
3054 |
-
strongly
|
3055 |
-
##ediate
|
3056 |
-
superficially
|
3057 |
-
sternum
|
3058 |
-
3n0m0
|
3059 |
-
occiput
|
3060 |
-
despite
|
3061 |
-
agg
|
3062 |
-
1101
|
3063 |
-
fibrotic
|
3064 |
-
##bedded
|
3065 |
-
expands
|
3066 |
-
amide
|
3067 |
-
cerebellum
|
3068 |
-
##acement
|
3069 |
-
ganglion
|
3070 |
-
neuroma
|
3071 |
-
2018
|
3072 |
-
t4n3m1
|
3073 |
-
t4n3bm0
|
3074 |
-
cheek
|
3075 |
-
t3n3bm0
|
3076 |
-
obliterating
|
3077 |
-
4n3m0
|
3078 |
-
erod
|
3079 |
-
180
|
3080 |
-
##ollen
|
3081 |
-
encroachment
|
3082 |
-
artifactual
|
3083 |
-
embedded
|
3084 |
-
contacting
|
3085 |
-
week
|
3086 |
-
expansile
|
3087 |
-
circumscribed
|
3088 |
-
2n1m0
|
3089 |
-
serpigin
|
3090 |
-
##ciable
|
3091 |
-
blur
|
3092 |
-
swollen
|
3093 |
-
request
|
3094 |
-
requested
|
3095 |
-
reviewed
|
3096 |
-
excision
|
3097 |
-
attn
|
3098 |
-
palanti
|
3099 |
-
workup
|
3100 |
-
appreciated
|
3101 |
-
appreciable
|
3102 |
-
epr
|
3103 |
-
touches
|
3104 |
-
depth
|
3105 |
-
engorged
|
3106 |
-
addendum
|
3107 |
-
destructive
|
3108 |
-
consideration
|
3109 |
-
usually
|
3110 |
-
intermediate
|
3111 |
-
facilitate
|
3112 |
-
radi
|
3113 |
-
submucosal
|
3114 |
-
degrees
|
3115 |
-
homogenous
|
3116 |
-
essent
|
3117 |
-
pedunc
|
3118 |
-
ribs
|
3119 |
-
spanning
|
3120 |
-
defect
|
3121 |
-
respectively
|
3122 |
-
laryngopharynx
|
3123 |
-
ballooning
|
3124 |
-
penetrating
|
3125 |
-
transverse
|
3126 |
-
atrophic
|
3127 |
-
center
|
3128 |
-
capsule
|
3129 |
-
fully
|
3130 |
-
faint
|
3131 |
-
functional
|
3132 |
-
since
|
3133 |
-
trauma
|
3134 |
-
tortuous
|
3135 |
-
##mpts
|
3136 |
-
##osuperior
|
3137 |
-
reaction
|
3138 |
-
tolerate
|
3139 |
-
thyroglossal
|
3140 |
-
aneurysm
|
3141 |
-
accounting
|
3142 |
-
attempts
|
3143 |
-
hyperintensity
|
3144 |
-
arthritide
|
3145 |
-
serpiginous
|
3146 |
-
0×3
|
3147 |
-
1x2
|
3148 |
-
23mm
|
3149 |
-
34
|
3150 |
-
33mm
|
3151 |
-
3×4
|
3152 |
-
4x1
|
3153 |
-
46mm
|
3154 |
-
50
|
3155 |
-
5x2
|
3156 |
-
5×2
|
3157 |
-
5x3
|
3158 |
-
6×3
|
3159 |
-
7×1
|
3160 |
-
ble
|
3161 |
-
bif
|
3162 |
-
dor
|
3163 |
-
domin
|
3164 |
-
epic
|
3165 |
-
each
|
3166 |
-
eye
|
3167 |
-
fu
|
3168 |
-
ff
|
3169 |
-
fine
|
3170 |
-
hern
|
3171 |
-
lent
|
3172 |
-
lord
|
3173 |
-
liver
|
3174 |
-
m1
|
3175 |
-
mon
|
3176 |
-
morph
|
3177 |
-
mapping
|
3178 |
-
nucle
|
3179 |
-
pe
|
3180 |
-
pter
|
3181 |
-
pot
|
3182 |
-
ri
|
3183 |
-
rath
|
3184 |
-
syl
|
3185 |
-
sock
|
3186 |
-
tm
|
3187 |
-
ta
|
3188 |
-
targe
|
3189 |
-
uv
|
3190 |
-
vp
|
3191 |
-
var
|
3192 |
-
vis
|
3193 |
-
##ein
|
3194 |
-
##eper
|
3195 |
-
##equ
|
3196 |
-
##eved
|
3197 |
-
##mus
|
3198 |
-
##met
|
3199 |
-
##iology
|
3200 |
-
##ga
|
3201 |
-
##gle
|
3202 |
-
##goid
|
3203 |
-
##ground
|
3204 |
-
##cal
|
3205 |
-
##con
|
3206 |
-
##coma
|
3207 |
-
##roid
|
3208 |
-
##rade
|
3209 |
-
##lar
|
3210 |
-
##led
|
3211 |
-
##lly
|
3212 |
-
##lant
|
3213 |
-
##xcc
|
3214 |
-
##oe
|
3215 |
-
##oin
|
3216 |
-
##oax
|
3217 |
-
##sum
|
3218 |
-
##uvant
|
3219 |
-
##tening
|
3220 |
-
##tosis
|
3221 |
-
##treatment
|
3222 |
-
##pou
|
3223 |
-
##posed
|
3224 |
-
##hanc
|
3225 |
-
##201
|
3226 |
-
##form
|
3227 |
-
##vian
|
3228 |
-
##3x1
|
3229 |
-
##zius
|
3230 |
-
##ke
|
3231 |
-
##ked
|
3232 |
-
##known
|
3233 |
-
##jec
|
3234 |
-
##juvant
|
3235 |
-
##ally
|
3236 |
-
##arcoma
|
3237 |
-
##onodular
|
3238 |
-
##inos
|
3239 |
-
##inodal
|
3240 |
-
inj
|
3241 |
-
insp
|
3242 |
-
##ndib
|
3243 |
-
##itongue
|
3244 |
-
##itier
|
3245 |
-
##enal
|
3246 |
-
##ened
|
3247 |
-
##enhanc
|
3248 |
-
##ice
|
3249 |
-
##ician
|
3250 |
-
isth
|
3251 |
-
ische
|
3252 |
-
##osarcoma
|
3253 |
-
##uminal
|
3254 |
-
##eding
|
3255 |
-
##lel
|
3256 |
-
nasoph
|
3257 |
-
##ulf
|
3258 |
-
##ulature
|
3259 |
-
rele
|
3260 |
-
##ently
|
3261 |
-
##ential
|
3262 |
-
##entered
|
3263 |
-
##trast
|
3264 |
-
##riform
|
3265 |
-
##abal
|
3266 |
-
##abol
|
3267 |
-
unknown
|
3268 |
-
conc
|
3269 |
-
though
|
3270 |
-
spans
|
3271 |
-
spinos
|
3272 |
-
##iform
|
3273 |
-
##omandib
|
3274 |
-
sinusal
|
3275 |
-
##ants
|
3276 |
-
t2fs
|
3277 |
-
corner
|
3278 |
-
##ths
|
3279 |
-
caves
|
3280 |
-
scal
|
3281 |
-
##ccal
|
3282 |
-
##ensen
|
3283 |
-
##ensatory
|
3284 |
-
notes
|
3285 |
-
here
|
3286 |
-
height
|
3287 |
-
retrog
|
3288 |
-
deline
|
3289 |
-
deeper
|
3290 |
-
hyoid
|
3291 |
-
stre
|
3292 |
-
stensen
|
3293 |
-
foraminal
|
3294 |
-
##agment
|
3295 |
-
abs
|
3296 |
-
critier
|
3297 |
-
protu
|
3298 |
-
pretreatment
|
3299 |
-
belly
|
3300 |
-
cancer
|
3301 |
-
angle
|
3302 |
-
lympho
|
3303 |
-
lymphatic
|
3304 |
-
others
|
3305 |
-
techniques
|
3306 |
-
##issated
|
3307 |
-
effacement
|
3308 |
-
##ucting
|
3309 |
-
##henoid
|
3310 |
-
atlant
|
3311 |
-
##eps
|
3312 |
-
craniopharyng
|
3313 |
-
abutted
|
3314 |
-
adequ
|
3315 |
-
##obe
|
3316 |
-
shun
|
3317 |
-
##ood
|
3318 |
-
suboccip
|
3319 |
-
vertical
|
3320 |
-
##ificial
|
3321 |
-
appt
|
3322 |
-
##plant
|
3323 |
-
##plate
|
3324 |
-
signals
|
3325 |
-
set
|
3326 |
-
sellar
|
3327 |
-
seeding
|
3328 |
-
hypertroph
|
3329 |
-
hypermet
|
3330 |
-
globe
|
3331 |
-
##elf
|
3332 |
-
lack
|
3333 |
-
patulous
|
3334 |
-
compensatory
|
3335 |
-
clinoid
|
3336 |
-
clinician
|
3337 |
-
fragment
|
3338 |
-
slice
|
3339 |
-
presented
|
3340 |
-
largely
|
3341 |
-
superolateral
|
3342 |
-
superificial
|
3343 |
-
follows
|
3344 |
-
dimensional
|
3345 |
-
##athyroid
|
3346 |
-
##tained
|
3347 |
-
deeply
|
3348 |
-
greatest
|
3349 |
-
borders
|
3350 |
-
mature
|
3351 |
-
palsies
|
3352 |
-
perinodal
|
3353 |
-
rect
|
3354 |
-
repe
|
3355 |
-
##ogenic
|
3356 |
-
ethmoids
|
3357 |
-
implant
|
3358 |
-
parts
|
3359 |
-
t4n0m0
|
3360 |
-
resection
|
3361 |
-
marginal
|
3362 |
-
grossly
|
3363 |
-
##erence
|
3364 |
-
sheets
|
3365 |
-
focally
|
3366 |
-
obtained
|
3367 |
-
palatopharyngeal
|
3368 |
-
##airment
|
3369 |
-
magna
|
3370 |
-
previously
|
3371 |
-
symmetrically
|
3372 |
-
##x18mm
|
3373 |
-
tracheal
|
3374 |
-
trape
|
3375 |
-
portions
|
3376 |
-
projec
|
3377 |
-
jugulo
|
3378 |
-
pla
|
3379 |
-
surgical
|
3380 |
-
##ressive
|
3381 |
-
endplate
|
3382 |
-
opacity
|
3383 |
-
opacities
|
3384 |
-
merging
|
3385 |
-
t2n2
|
3386 |
-
protein
|
3387 |
-
12x
|
3388 |
-
hemitongue
|
3389 |
-
neoad
|
3390 |
-
obstructing
|
3391 |
-
3n3m0
|
3392 |
-
##ibrosarcoma
|
3393 |
-
condylar
|
3394 |
-
fna
|
3395 |
-
##isphenoid
|
3396 |
-
background
|
3397 |
-
outpou
|
3398 |
-
consists
|
3399 |
-
localised
|
3400 |
-
indents
|
3401 |
-
better
|
3402 |
-
obviously
|
3403 |
-
majority
|
3404 |
-
2015
|
3405 |
-
2016
|
3406 |
-
itself
|
3407 |
-
t4n3b
|
3408 |
-
avm
|
3409 |
-
4n2m0
|
3410 |
-
hypoenhanc
|
3411 |
-
segments
|
3412 |
-
occupy
|
3413 |
-
occupied
|
3414 |
-
occupies
|
3415 |
-
parenchyma
|
3416 |
-
18mm
|
3417 |
-
demonstrated
|
3418 |
-
demonstrates
|
3419 |
-
anterolateral
|
3420 |
-
bilat
|
3421 |
-
t4n2m1
|
3422 |
-
22mm
|
3423 |
-
202
|
3424 |
-
cover
|
3425 |
-
wings
|
3426 |
-
contacts
|
3427 |
-
dermatof
|
3428 |
-
cisterna
|
3429 |
-
ischaemic
|
3430 |
-
basisphenoid
|
3431 |
-
confirmed
|
3432 |
-
blood
|
3433 |
-
runs
|
3434 |
-
deviation
|
3435 |
-
enters
|
3436 |
-
entering
|
3437 |
-
prolapsing
|
3438 |
-
indicate
|
3439 |
-
indicative
|
3440 |
-
palantini
|
3441 |
-
2x0
|
3442 |
-
2x4
|
3443 |
-
micr
|
3444 |
-
micro
|
3445 |
-
##iations
|
3446 |
-
##ferior
|
3447 |
-
protrusion
|
3448 |
-
protrudes
|
3449 |
-
ulceration
|
3450 |
-
19mm
|
3451 |
-
touching
|
3452 |
-
engulf
|
3453 |
-
limited
|
3454 |
-
buccal
|
3455 |
-
paralaryngeal
|
3456 |
-
parallel
|
3457 |
-
makes
|
3458 |
-
making
|
3459 |
-
breach
|
3460 |
-
decre
|
3461 |
-
fungal
|
3462 |
-
lining
|
3463 |
-
atelectasis
|
3464 |
-
flattening
|
3465 |
-
reticulonodular
|
3466 |
-
coalesc
|
3467 |
-
collapse
|
3468 |
-
circumferential
|
3469 |
-
aortic
|
3470 |
-
bounded
|
3471 |
-
calc
|
3472 |
-
creeps
|
3473 |
-
time
|
3474 |
-
leptomeningeal
|
3475 |
-
proptosis
|
3476 |
-
paranasopharyngeal
|
3477 |
-
shadowing
|
3478 |
-
impairment
|
3479 |
-
aggressive
|
3480 |
-
blurring
|
3481 |
-
essentially
|
3482 |
-
peduncle
|
3483 |
-
blend
|
3484 |
-
dorsum
|
3485 |
-
dominant
|
3486 |
-
epicentered
|
3487 |
-
ffe
|
3488 |
-
lentiform
|
3489 |
-
lordosis
|
3490 |
-
months
|
3491 |
-
peg
|
3492 |
-
potential
|
3493 |
-
rathke
|
3494 |
-
sylvian
|
3495 |
-
tmj
|
3496 |
-
targeted
|
3497 |
-
uvula
|
3498 |
-
vari
|
3499 |
-
##contrast
|
3500 |
-
##oinferior
|
3501 |
-
##oaxial
|
3502 |
-
inspissated
|
3503 |
-
isthmus
|
3504 |
-
ischemic
|
3505 |
-
spinosum
|
3506 |
-
##omandibular
|
3507 |
-
retrograde
|
3508 |
-
delineate
|
3509 |
-
critieria
|
3510 |
-
protuber
|
3511 |
-
atlantoaxial
|
3512 |
-
craniopharyngioma
|
3513 |
-
adequately
|
3514 |
-
shunt
|
3515 |
-
suboccipital
|
3516 |
-
hypertrophied
|
3517 |
-
hypermetabol
|
3518 |
-
trapezius
|
3519 |
-
proteinaceous
|
3520 |
-
neoadjuvant
|
3521 |
-
outpouching
|
3522 |
-
hypoenhancing
|
3523 |
-
dermatofibrosarcoma
|
3524 |
-
0x
|
3525 |
-
07
|
3526 |
-
08
|
3527 |
-
0x3
|
3528 |
-
0×1
|
3529 |
-
1n
|
3530 |
-
15
|
3531 |
-
2b
|
3532 |
-
25mm
|
3533 |
-
26mm
|
3534 |
-
27mm
|
3535 |
-
23x1
|
3536 |
-
3d
|
3537 |
-
31
|
3538 |
-
37
|
3539 |
-
3×3
|
3540 |
-
35mm
|
3541 |
-
37mm
|
3542 |
-
32mm
|
3543 |
-
41
|
3544 |
-
4th
|
3545 |
-
401
|
3546 |
-
4x3
|
3547 |
-
42mm
|
3548 |
-
5×5
|
3549 |
-
6th
|
3550 |
-
6x1
|
3551 |
-
601
|
3552 |
-
6×1
|
3553 |
-
7×3
|
3554 |
-
8x2
|
3555 |
-
801
|
3556 |
-
9x2
|
3557 |
-
age
|
3558 |
-
aug
|
3559 |
-
aet
|
3560 |
-
aqu
|
3561 |
-
bar
|
3562 |
-
bia
|
3563 |
-
blow
|
3564 |
-
breat
|
3565 |
-
best
|
3566 |
-
c7
|
3567 |
-
col
|
3568 |
-
cerv
|
3569 |
-
diss
|
3570 |
-
during
|
3571 |
-
done
|
3572 |
-
diver
|
3573 |
-
eb
|
3574 |
-
edent
|
3575 |
-
ect
|
3576 |
-
fo
|
3577 |
-
fas
|
3578 |
-
fil
|
3579 |
-
fusion
|
3580 |
-
fib
|
3581 |
-
hn
|
3582 |
-
hin
|
3583 |
-
hos
|
3584 |
-
kn
|
3585 |
-
lon
|
3586 |
-
lig
|
3587 |
-
last
|
3588 |
-
litt
|
3589 |
-
luminal
|
3590 |
-
my
|
3591 |
-
nor
|
3592 |
-
nause
|
3593 |
-
om
|
3594 |
-
ou
|
3595 |
-
prem
|
3596 |
-
pain
|
3597 |
-
past
|
3598 |
-
page
|
3599 |
-
pap
|
3600 |
-
phy
|
3601 |
-
pach
|
3602 |
-
pans
|
3603 |
-
pock
|
3604 |
-
pass
|
3605 |
-
qu
|
3606 |
-
ro
|
3607 |
-
renal
|
3608 |
-
sess
|
3609 |
-
symmetr
|
3610 |
-
ty
|
3611 |
-
tb
|
3612 |
-
val
|
3613 |
-
vic
|
3614 |
-
ventricular
|
3615 |
-
wit
|
3616 |
-
xi
|
3617 |
-
zy
|
3618 |
-
##ms
|
3619 |
-
##mun
|
3620 |
-
##ae
|
3621 |
-
##aic
|
3622 |
-
##iph
|
3623 |
-
##iom
|
3624 |
-
##ily
|
3625 |
-
##ioc
|
3626 |
-
##ienc
|
3627 |
-
##iating
|
3628 |
-
##iectasis
|
3629 |
-
##ieved
|
3630 |
-
##nel
|
3631 |
-
##nection
|
3632 |
-
##cation
|
3633 |
-
##ry
|
3634 |
-
##ris
|
3635 |
-
##ril
|
3636 |
-
##rosis
|
3637 |
-
##rup
|
3638 |
-
##rants
|
3639 |
-
##lr
|
3640 |
-
##lab
|
3641 |
-
##lies
|
3642 |
-
##xon
|
3643 |
-
##dit
|
3644 |
-
##day
|
3645 |
-
##ok
|
3646 |
-
##ointense
|
3647 |
-
##sew
|
3648 |
-
##urem
|
3649 |
-
##uity
|
3650 |
-
##tis
|
3651 |
-
##tled
|
3652 |
-
##pe
|
3653 |
-
##pc
|
3654 |
-
##ple
|
3655 |
-
##pered
|
3656 |
-
##pital
|
3657 |
-
##yep
|
3658 |
-
##yst
|
3659 |
-
##hing
|
3660 |
-
##hond
|
3661 |
-
##hord
|
3662 |
-
##2x2
|
3663 |
-
##ves
|
3664 |
-
##13
|
3665 |
-
##1b
|
3666 |
-
##be
|
3667 |
-
##bus
|
3668 |
-
##baceous
|
3669 |
-
##7×2
|
3670 |
-
##9mm
|
3671 |
-
##8x1
|
3672 |
-
then
|
3673 |
-
##arm
|
3674 |
-
##arngeal
|
3675 |
-
##asion
|
3676 |
-
##erian
|
3677 |
-
##erted
|
3678 |
-
##onding
|
3679 |
-
##onch
|
3680 |
-
##inity
|
3681 |
-
##inting
|
3682 |
-
intern
|
3683 |
-
##ora
|
3684 |
-
##oroid
|
3685 |
-
##orax
|
3686 |
-
##oramina
|
3687 |
-
##ata
|
3688 |
-
##atine
|
3689 |
-
##attered
|
3690 |
-
##used
|
3691 |
-
##itect
|
3692 |
-
##ithel
|
3693 |
-
##idus
|
3694 |
-
##idging
|
3695 |
-
##phy
|
3696 |
-
##enital
|
3697 |
-
##ica
|
3698 |
-
##anal
|
3699 |
-
##anic
|
3700 |
-
isointense
|
3701 |
-
##ectr
|
3702 |
-
##ectatic
|
3703 |
-
mega
|
3704 |
-
##umour
|
3705 |
-
##educt
|
3706 |
-
##igation
|
3707 |
-
##iguration
|
3708 |
-
##leed
|
3709 |
-
nasopalatine
|
3710 |
-
##ulked
|
3711 |
-
rever
|
3712 |
-
reached
|
3713 |
-
invest
|
3714 |
-
inverted
|
3715 |
-
leftwards
|
3716 |
-
##isition
|
3717 |
-
##om0
|
3718 |
-
##ombus
|
3719 |
-
tumoural
|
3720 |
-
today
|
3721 |
-
##ried
|
3722 |
-
##veill
|
3723 |
-
##perineural
|
3724 |
-
##abial
|
3725 |
-
##abet
|
3726 |
-
positive
|
3727 |
-
unable
|
3728 |
-
condition
|
3729 |
-
congest
|
3730 |
-
conse
|
3731 |
-
connection
|
3732 |
-
##olist
|
3733 |
-
##adural
|
3734 |
-
##oustic
|
3735 |
-
thus
|
3736 |
-
parasellar
|
3737 |
-
parathyroid
|
3738 |
-
chord
|
3739 |
-
choroid
|
3740 |
-
##ifying
|
3741 |
-
##acuated
|
3742 |
-
##inusitis
|
3743 |
-
##ainage
|
3744 |
-
alread
|
3745 |
-
alone
|
3746 |
-
##tate
|
3747 |
-
##uted
|
3748 |
-
##portion
|
3749 |
-
scop
|
3750 |
-
scap
|
3751 |
-
scattered
|
3752 |
-
regional
|
3753 |
-
##am0
|
3754 |
-
##ament
|
3755 |
-
##urated
|
3756 |
-
##urately
|
3757 |
-
##urcation
|
3758 |
-
notoc
|
3759 |
-
##ically
|
3760 |
-
distort
|
3761 |
-
pteryoid
|
3762 |
-
pterygo
|
3763 |
-
retrot
|
3764 |
-
retromaxillary
|
3765 |
-
retrieved
|
3766 |
-
midportion
|
3767 |
-
class
|
3768 |
-
headache
|
3769 |
-
level1b
|
3770 |
-
##otopic
|
3771 |
-
sten
|
3772 |
-
stem
|
3773 |
-
standing
|
3774 |
-
##aglot
|
3775 |
-
##ending
|
3776 |
-
##endym
|
3777 |
-
##ymeningeal
|
3778 |
-
postcontrast
|
3779 |
-
##opontine
|
3780 |
-
prev
|
3781 |
-
wallerian
|
3782 |
-
definitive
|
3783 |
-
april
|
3784 |
-
foramena
|
3785 |
-
accurately
|
3786 |
-
##imposed
|
3787 |
-
##mporomandibular
|
3788 |
-
measurem
|
3789 |
-
##angiop
|
3790 |
-
thickened
|
3791 |
-
mucoc
|
3792 |
-
##epithel
|
3793 |
-
##ependym
|
3794 |
-
saturated
|
3795 |
-
mucositis
|
3796 |
-
##ively
|
3797 |
-
mils
|
3798 |
-
##illoma
|
3799 |
-
abutts
|
3800 |
-
##obleed
|
3801 |
-
channel
|
3802 |
-
subtrac
|
3803 |
-
bulkier
|
3804 |
-
sebaceous
|
3805 |
-
arran
|
3806 |
-
aryep
|
3807 |
-
predominant
|
3808 |
-
dixon
|
3809 |
-
diabet
|
3810 |
-
suggestion
|
3811 |
-
8thdit
|
3812 |
-
probabal
|
3813 |
-
##ipidus
|
3814 |
-
##hyoid
|
3815 |
-
commun
|
3816 |
-
##ders
|
3817 |
-
whereas
|
3818 |
-
compr
|
3819 |
-
medullary
|
3820 |
-
##actic
|
3821 |
-
supracl
|
3822 |
-
##sem
|
3823 |
-
##ayr
|
3824 |
-
musculature
|
3825 |
-
fold
|
3826 |
-
maybe
|
3827 |
-
superimposed
|
3828 |
-
lungs
|
3829 |
-
greatly
|
3830 |
-
t1nom0
|
3831 |
-
##ualised
|
3832 |
-
encoun
|
3833 |
-
recurre
|
3834 |
-
recurrent
|
3835 |
-
wrapping
|
3836 |
-
thrombus
|
3837 |
-
adenopathy
|
3838 |
-
measured
|
3839 |
-
ethmoidal
|
3840 |
-
biopsies
|
3841 |
-
heterotopic
|
3842 |
-
clustered
|
3843 |
-
respect
|
3844 |
-
infiltrate
|
3845 |
-
overlies
|
3846 |
-
brach
|
3847 |
-
bronch
|
3848 |
-
bridging
|
3849 |
-
intracanal
|
3850 |
-
congenital
|
3851 |
-
intracranially
|
3852 |
-
reticular
|
3853 |
-
retension
|
3854 |
-
spare
|
3855 |
-
sheet
|
3856 |
-
##athic
|
3857 |
-
approaches
|
3858 |
-
##ectively
|
3859 |
-
brainlab
|
3860 |
-
##quently
|
3861 |
-
##quisition
|
3862 |
-
##ortical
|
3863 |
-
##ontoid
|
3864 |
-
tubular
|
3865 |
-
##ticula
|
3866 |
-
v3perineural
|
3867 |
-
posterosuperior
|
3868 |
-
posteroinferior
|
3869 |
-
##ucted
|
3870 |
-
proper
|
3871 |
-
pointing
|
3872 |
-
##atively
|
3873 |
-
surveill
|
3874 |
-
occasion
|
3875 |
-
roundish
|
3876 |
-
opacifying
|
3877 |
-
additionally
|
3878 |
-
underg
|
3879 |
-
underde
|
3880 |
-
evacuated
|
3881 |
-
strap
|
3882 |
-
striated
|
3883 |
-
stranding
|
3884 |
-
##x26mm
|
3885 |
-
forms
|
3886 |
-
advise
|
3887 |
-
lesser
|
3888 |
-
acoustic
|
3889 |
-
acquisition
|
3890 |
-
insipidus
|
3891 |
-
polyps
|
3892 |
-
3n1
|
3893 |
-
configuration
|
3894 |
-
architect
|
3895 |
-
intraorbital
|
3896 |
-
##oplatine
|
3897 |
-
110
|
3898 |
-
raise
|
3899 |
-
rims
|
3900 |
-
thinning
|
3901 |
-
frankly
|
3902 |
-
consisting
|
3903 |
-
13x1
|
3904 |
-
tornwaldt
|
3905 |
-
used
|
3906 |
-
supraglot
|
3907 |
-
continuation
|
3908 |
-
edn
|
3909 |
-
station
|
3910 |
-
subcortical
|
3911 |
-
tracking
|
3912 |
-
degeneration
|
3913 |
-
perivertebral
|
3914 |
-
cerebellopontine
|
3915 |
-
ductal
|
3916 |
-
hypoplasia
|
3917 |
-
orifices
|
3918 |
-
planes
|
3919 |
-
stripes
|
3920 |
-
neurof
|
3921 |
-
neurogenic
|
3922 |
-
2013
|
3923 |
-
2017
|
3924 |
-
##hesis
|
3925 |
-
##veloped
|
3926 |
-
avid
|
3927 |
-
chest
|
3928 |
-
##ulae
|
3929 |
-
infraclavicular
|
3930 |
-
t3n3am0
|
3931 |
-
4n2
|
3932 |
-
4n1
|
3933 |
-
4n0m0
|
3934 |
-
elsew
|
3935 |
-
electr
|
3936 |
-
meningoma
|
3937 |
-
meningitis
|
3938 |
-
masticatory
|
3939 |
-
replace
|
3940 |
-
replacing
|
3941 |
-
corresponding
|
3942 |
-
3mmx
|
3943 |
-
dermis
|
3944 |
-
laryngeal
|
3945 |
-
warrants
|
3946 |
-
anteroposterior
|
3947 |
-
resultant
|
3948 |
-
210
|
3949 |
-
21mm
|
3950 |
-
units
|
3951 |
-
openings
|
3952 |
-
coil
|
3953 |
-
horn
|
3954 |
-
osteomeatal
|
3955 |
-
separated
|
3956 |
-
##ympanic
|
3957 |
-
hemithorax
|
3958 |
-
cisterns
|
3959 |
-
prior
|
3960 |
-
2n2m0
|
3961 |
-
2n0m0
|
3962 |
-
collection
|
3963 |
-
collectively
|
3964 |
-
solitary
|
3965 |
-
symptom
|
3966 |
-
nasolabial
|
3967 |
-
periphery
|
3968 |
-
haemangiom
|
3969 |
-
cours
|
3970 |
-
hila
|
3971 |
-
limb
|
3972 |
-
atten
|
3973 |
-
indicating
|
3974 |
-
palpation
|
3975 |
-
palantine
|
3976 |
-
9x5
|
3977 |
-
9x4mm
|
3978 |
-
drainage
|
3979 |
-
hampered
|
3980 |
-
microc
|
3981 |
-
sulcal
|
3982 |
-
protruding
|
3983 |
-
ulcerating
|
3984 |
-
branching
|
3985 |
-
peripherally
|
3986 |
-
7x4mm
|
3987 |
-
8x13mm
|
3988 |
-
epiglot
|
3989 |
-
ecchond
|
3990 |
-
voids
|
3991 |
-
clavicles
|
3992 |
-
effects
|
3993 |
-
adducted
|
3994 |
-
sequelae
|
3995 |
-
10x4mm
|
3996 |
-
10x5mm
|
3997 |
-
needs
|
3998 |
-
destruction
|
3999 |
-
intermus
|
4000 |
-
osteophyte
|
4001 |
-
circumference
|
4002 |
-
limits
|
4003 |
-
7x12mm
|
4004 |
-
7x18mm
|
4005 |
-
buried
|
4006 |
-
facial
|
4007 |
-
individually
|
4008 |
-
submucosa
|
4009 |
-
degree
|
4010 |
-
homogeneous
|
4011 |
-
decom
|
4012 |
-
fungating
|
4013 |
-
liner
|
4014 |
-
odema
|
4015 |
-
odontoid
|
4016 |
-
##akable
|
4017 |
-
accounts
|
4018 |
-
atelectatic
|
4019 |
-
indeterminant
|
4020 |
-
indeterminated
|
4021 |
-
t1n3a
|
4022 |
-
reticulation
|
4023 |
-
t2n3m
|
4024 |
-
t2n3bm0
|
4025 |
-
collapsed
|
4026 |
-
circumferentially
|
4027 |
-
8x6mm
|
4028 |
-
csf
|
4029 |
-
elev
|
4030 |
-
element
|
4031 |
-
system
|
4032 |
-
temporomandibular
|
4033 |
-
tnm
|
4034 |
-
tnm0
|
4035 |
-
##saliph
|
4036 |
-
##heless
|
4037 |
-
##iglottic
|
4038 |
-
convexity
|
4039 |
-
debris
|
4040 |
-
debulked
|
4041 |
-
apxlr
|
4042 |
-
erodes
|
4043 |
-
radiotherapy
|
4044 |
-
bifurcation
|
4045 |
-
herniations
|
4046 |
-
morphology
|
4047 |
-
nucleus
|
4048 |
-
ptergoid
|
4049 |
-
socket
|
4050 |
-
tapers
|
4051 |
-
visualised
|
4052 |
-
##oele
|
4053 |
-
##2013
|
4054 |
-
injection
|
4055 |
-
relevant
|
4056 |
-
concentric
|
4057 |
-
corners
|
4058 |
-
scalen
|
4059 |
-
stret
|
4060 |
-
absence
|
4061 |
-
lymphoepithel
|
4062 |
-
rectus
|
4063 |
-
repeat
|
4064 |
-
marginally
|
4065 |
-
projecting
|
4066 |
-
plaque
|
4067 |
-
12x7mm
|
4068 |
-
2022
|
4069 |
-
coverage
|
4070 |
-
microbleed
|
4071 |
-
microangiop
|
4072 |
-
engulfed
|
4073 |
-
coalesces
|
4074 |
-
calcified
|
4075 |
-
blends
|
4076 |
-
variant
|
4077 |
-
protuberance
|
4078 |
-
hypermetabolic
|
4079 |
-
aetiology
|
4080 |
-
aqueduct
|
4081 |
-
biapical
|
4082 |
-
blowout
|
4083 |
-
breathing
|
4084 |
-
cervic
|
4085 |
-
dissection
|
4086 |
-
diverticula
|
4087 |
-
ebv
|
4088 |
-
edentulous
|
4089 |
-
ectactic
|
4090 |
-
fibres
|
4091 |
-
hinders
|
4092 |
-
hospital
|
4093 |
-
longest
|
4094 |
-
ligament
|
4095 |
-
little
|
4096 |
-
myel
|
4097 |
-
nausea
|
4098 |
-
outer
|
4099 |
-
paget
|
4100 |
-
papilloma
|
4101 |
-
physaliph
|
4102 |
-
pachymeningeal
|
4103 |
-
pansinusitis
|
4104 |
-
root
|
4105 |
-
sessile
|
4106 |
-
symmetric
|
4107 |
-
type
|
4108 |
-
value
|
4109 |
-
vicinity
|
4110 |
-
xii
|
4111 |
-
zyg
|
4112 |
-
##ysts
|
4113 |
-
##hordal
|
4114 |
-
reversal
|
4115 |
-
investigation
|
4116 |
-
conditions
|
4117 |
-
consequently
|
4118 |
-
##olisthesis
|
4119 |
-
chordoma
|
4120 |
-
already
|
4121 |
-
scope
|
4122 |
-
scapulae
|
4123 |
-
notochordal
|
4124 |
-
distorted
|
4125 |
-
retrotympanic
|
4126 |
-
classification
|
4127 |
-
measurement
|
4128 |
-
mucocoele
|
4129 |
-
##ependymal
|
4130 |
-
subtraction
|
4131 |
-
aryepiglottic
|
4132 |
-
diabetes
|
4133 |
-
8thditon
|
4134 |
-
communic
|
4135 |
-
encountered
|
4136 |
-
recurrence
|
4137 |
-
bronchiectasis
|
4138 |
-
surveillance
|
4139 |
-
occasionally
|
4140 |
-
underdeveloped
|
4141 |
-
architecture
|
4142 |
-
supraglottic
|
4143 |
-
neuroforamina
|
4144 |
-
elsewhere
|
4145 |
-
electronic
|
4146 |
-
symptoms
|
4147 |
-
haemangiomas
|
4148 |
-
microcysts
|
4149 |
-
epiglottis
|
4150 |
-
ecchondrosis
|
4151 |
-
lymphoepithelioma
|
4152 |
-
microangiopathic
|
4153 |
-
physaliphora
|
4154 |
-
03
|
4155 |
-
09
|
4156 |
-
0m0
|
4157 |
-
0mm
|
4158 |
-
0×2
|
4159 |
-
0×4
|
4160 |
-
1a
|
4161 |
-
1b
|
4162 |
-
1×4
|
4163 |
-
2m
|
4164 |
-
2a
|
4165 |
-
26
|
4166 |
-
2×2
|
4167 |
-
24mm
|
4168 |
-
2x3
|
4169 |
-
2×1
|
4170 |
-
2m1
|
4171 |
-
28mm
|
4172 |
-
2×6
|
4173 |
-
28x1
|
4174 |
-
3x
|
4175 |
-
32
|
4176 |
-
35
|
4177 |
-
39
|
4178 |
-
38
|
4179 |
-
3x1
|
4180 |
-
3x2
|
4181 |
-
3×2
|
4182 |
-
34mm
|
4183 |
-
3×1
|
4184 |
-
30mm
|
4185 |
-
3×6
|
4186 |
-
4x
|
4187 |
-
42
|
4188 |
-
40
|
4189 |
-
48
|
4190 |
-
4×2
|
4191 |
-
4×3
|
4192 |
-
44mm
|
4193 |
-
45mm
|
4194 |
-
4×1
|
4195 |
-
47mm
|
4196 |
-
43mm
|
4197 |
-
40mm
|
4198 |
-
41mm
|
4199 |
-
5a
|
4200 |
-
5t
|
4201 |
-
51
|
4202 |
-
56
|
4203 |
-
58
|
4204 |
-
5×3
|
4205 |
-
5×1
|
4206 |
-
5×4
|
4207 |
-
5tes
|
4208 |
-
5×6
|
4209 |
-
55×3
|
4210 |
-
6×
|
4211 |
-
60
|
4212 |
-
65
|
4213 |
-
64
|
4214 |
-
68
|
4215 |
-
61mm
|
4216 |
-
6×6
|
4217 |
-
6x11mm
|
4218 |
-
6×5
|
4219 |
-
6x10mm
|
4220 |
-
7m
|
4221 |
-
701
|
4222 |
-
7×4
|
4223 |
-
8×1
|
4224 |
-
8×4
|
4225 |
-
8×6
|
4226 |
-
9×
|
4227 |
-
90
|
4228 |
-
99
|
4229 |
-
901
|
4230 |
-
9×2
|
4231 |
-
9×3
|
4232 |
-
9x3
|
4233 |
-
9×5
|
4234 |
-
ae
|
4235 |
-
aid
|
4236 |
-
ahn
|
4237 |
-
aspir
|
4238 |
-
aver
|
4239 |
-
away
|
4240 |
-
bes
|
4241 |
-
bith
|
4242 |
-
bial
|
4243 |
-
bow
|
4244 |
-
bur
|
4245 |
-
buc
|
4246 |
-
bm0
|
4247 |
-
bap
|
4248 |
-
cn
|
4249 |
-
cat
|
4250 |
-
cri
|
4251 |
-
cant
|
4252 |
-
cut
|
4253 |
-
cres
|
4254 |
-
cur
|
4255 |
-
creat
|
4256 |
-
cathe
|
4257 |
-
ds
|
4258 |
-
did
|
4259 |
-
div
|
4260 |
-
doc
|
4261 |
-
day
|
4262 |
-
density
|
4263 |
-
dce
|
4264 |
-
data
|
4265 |
-
eg
|
4266 |
-
eas
|
4267 |
-
eral
|
4268 |
-
era
|
4269 |
-
est
|
4270 |
-
eber
|
4271 |
-
fd
|
4272 |
-
fal
|
4273 |
-
fer
|
4274 |
-
four
|
4275 |
-
fir
|
4276 |
-
fess
|
4277 |
-
fra
|
4278 |
-
filtr
|
4279 |
-
face
|
4280 |
-
fixed
|
4281 |
-
fift
|
4282 |
-
gamm
|
4283 |
-
gran
|
4284 |
-
hx
|
4285 |
-
ho
|
4286 |
-
hk
|
4287 |
-
hig
|
4288 |
-
hiv
|
4289 |
-
hand
|
4290 |
-
hong
|
4291 |
-
hilar
|
4292 |
-
hans
|
4293 |
-
hole
|
4294 |
-
i2
|
4295 |
-
iam
|
4296 |
-
ide
|
4297 |
-
iga
|
4298 |
-
jap
|
4299 |
-
ky
|
4300 |
-
kid
|
4301 |
-
kong
|
4302 |
-
ll
|
4303 |
-
lt
|
4304 |
-
lit
|
4305 |
-
light
|
4306 |
-
lab
|
4307 |
-
lay
|
4308 |
-
lod
|
4309 |
-
load
|
4310 |
-
mx
|
4311 |
-
md
|
4312 |
-
mul
|
4313 |
-
might
|
4314 |
-
mad
|
4315 |
-
mud
|
4316 |
-
miss
|
4317 |
-
mob
|
4318 |
-
mte
|
4319 |
-
mra
|
4320 |
-
mental
|
4321 |
-
myl
|
4322 |
-
meningeal
|
4323 |
-
mpc
|
4324 |
-
ns
|
4325 |
-
nk
|
4326 |
-
never
|
4327 |
-
nape
|
4328 |
-
oper
|
4329 |
-
pi
|
4330 |
-
pd
|
4331 |
-
ps
|
4332 |
-
py
|
4333 |
-
pf
|
4334 |
-
pad
|
4335 |
-
pte
|
4336 |
-
punc
|
4337 |
-
pell
|
4338 |
-
pyr
|
4339 |
-
pack
|
4340 |
-
ppos
|
4341 |
-
pending
|
4342 |
-
rp
|
4343 |
-
rar
|
4344 |
-
rig
|
4345 |
-
righ
|
4346 |
-
rent
|
4347 |
-
ross
|
4348 |
-
rud
|
4349 |
-
rap
|
4350 |
-
rind
|
4351 |
-
rises
|
4352 |
-
rumour
|
4353 |
-
sum
|
4354 |
-
sac
|
4355 |
-
sternal
|
4356 |
-
sate
|
4357 |
-
sep
|
4358 |
-
swi
|
4359 |
-
sized
|
4360 |
-
tx
|
4361 |
-
t0
|
4362 |
-
tre
|
4363 |
-
test
|
4364 |
-
term
|
4365 |
-
tak
|
4366 |
-
vc
|
4367 |
-
v1
|
4368 |
-
vas
|
4369 |
-
vom
|
4370 |
-
vir
|
4371 |
-
vasc
|
4372 |
-
vest
|
4373 |
-
vision
|
4374 |
-
will
|
4375 |
-
wald
|
4376 |
-
x3
|
4377 |
-
x1
|
4378 |
-
x4
|
4379 |
-
x6
|
4380 |
-
xap
|
4381 |
-
y1
|
4382 |
-
you
|
4383 |
-
##ey
|
4384 |
-
##eal
|
4385 |
-
##eth
|
4386 |
-
##eases
|
4387 |
-
##mi
|
4388 |
-
##mx
|
4389 |
-
##mary
|
4390 |
-
##more
|
4391 |
-
##misp
|
4392 |
-
##mixed
|
4393 |
-
##aph
|
4394 |
-
##ageal
|
4395 |
-
##aug
|
4396 |
-
##iag
|
4397 |
-
##iment
|
4398 |
-
##ired
|
4399 |
-
##iosuperior
|
4400 |
-
##nx
|
4401 |
-
##nh
|
4402 |
-
##n3
|
4403 |
-
##n0
|
4404 |
-
##nit
|
4405 |
-
##num
|
4406 |
-
##nial
|
4407 |
-
##nch
|
4408 |
-
##nants
|
4409 |
-
##gion
|
4410 |
-
##gopalatine
|
4411 |
-
##gative
|
4412 |
-
##gital
|
4413 |
-
##gitis
|
4414 |
-
##growth
|
4415 |
-
##gye
|
4416 |
-
##c2
|
4417 |
-
##cent
|
4418 |
-
##cular
|
4419 |
-
##cav
|
4420 |
-
##cend
|
4421 |
-
##cess
|
4422 |
-
##cence
|
4423 |
-
##colog
|
4424 |
-
##cked
|
4425 |
-
##cica
|
4426 |
-
##cuted
|
4427 |
-
##rf
|
4428 |
-
##ron
|
4429 |
-
##rax
|
4430 |
-
##rontal
|
4431 |
-
##rosc
|
4432 |
-
##rinates
|
4433 |
-
##lph
|
4434 |
-
##ling
|
4435 |
-
##lis
|
4436 |
-
##land
|
4437 |
-
##x5mm
|
4438 |
-
##x8x1
|
4439 |
-
##dis
|
4440 |
-
##dated
|
4441 |
-
##dered
|
4442 |
-
##diology
|
4443 |
-
##oy
|
4444 |
-
##oz
|
4445 |
-
##oon
|
4446 |
-
##oes
|
4447 |
-
##oary
|
4448 |
-
##oic
|
4449 |
-
##oom
|
4450 |
-
##otr
|
4451 |
-
##oour
|
4452 |
-
##orem
|
4453 |
-
##oth
|
4454 |
-
##ohyoid
|
4455 |
-
##su
|
4456 |
-
##sh
|
4457 |
-
##sion
|
4458 |
-
##sid
|
4459 |
-
##sist
|
4460 |
-
##sur
|
4461 |
-
##sory
|
4462 |
-
##sure
|
4463 |
-
##sification
|
4464 |
-
##sfs
|
4465 |
-
##spers
|
4466 |
-
##uate
|
4467 |
-
##uation
|
4468 |
-
##uff
|
4469 |
-
##uish
|
4470 |
-
##t3
|
4471 |
-
##t1
|
4472 |
-
##ten
|
4473 |
-
##tist
|
4474 |
-
##tment
|
4475 |
-
##timal
|
4476 |
-
##tology
|
4477 |
-
##tak
|
4478 |
-
##taic
|
4479 |
-
##tumour
|
4480 |
-
##theless
|
4481 |
-
##tling
|
4482 |
-
##pon
|
4483 |
-
##ped
|
4484 |
-
##pious
|
4485 |
-
##plete
|
4486 |
-
##pness
|
4487 |
-
##yngeal
|
4488 |
-
##ygoid
|
4489 |
-
##hc
|
4490 |
-
##hion
|
4491 |
-
##hus
|
4492 |
-
##han
|
4493 |
-
##his
|
4494 |
-
##haem
|
4495 |
-
##fal
|
4496 |
-
##fit
|
4497 |
-
##fused
|
4498 |
-
##var
|
4499 |
-
##vil
|
4500 |
-
##vance
|
4501 |
-
##vascular
|
4502 |
-
##3m
|
4503 |
-
##3x26mm
|
4504 |
-
##10
|
4505 |
-
##14
|
4506 |
-
##1x2
|
4507 |
-
##1tumour
|
4508 |
-
##05
|
4509 |
-
##04
|
4510 |
-
##06
|
4511 |
-
##08
|
4512 |
-
##0x1
|
4513 |
-
##0×1
|
4514 |
-
##5cm
|
4515 |
-
##zy
|
4516 |
-
##bar
|
4517 |
-
##bre
|
4518 |
-
##ball
|
4519 |
-
##bness
|
4520 |
-
##briform
|
4521 |
-
##7×3
|
4522 |
-
##ks
|
4523 |
-
##6x1
|
4524 |
-
##6x18mm
|
4525 |
-
##98
|
4526 |
-
##9x2
|
4527 |
-
##9x10mm
|
4528 |
-
##8x3
|
4529 |
-
##jug
|
4530 |
-
##hed
|
4531 |
-
##heal
|
4532 |
-
##held
|
4533 |
-
##hemisp
|
4534 |
-
them
|
4535 |
-
thecal
|
4536 |
-
thems
|
4537 |
-
##ale
|
4538 |
-
##aluminal
|
4539 |
-
##aring
|
4540 |
-
##arding
|
4541 |
-
##aract
|
4542 |
-
##arted
|
4543 |
-
##ar201
|
4544 |
-
##arakable
|
4545 |
-
##argye
|
4546 |
-
##arpness
|
4547 |
-
##astas
|
4548 |
-
##renal
|
4549 |
-
##ers
|
4550 |
-
##ery
|
4551 |
-
##erin
|
4552 |
-
##erus
|
4553 |
-
##ering
|
4554 |
-
##erable
|
4555 |
-
##erterm
|
4556 |
-
##onpc
|
4557 |
-
##inge
|
4558 |
-
##inoid
|
4559 |
-
##inine
|
4560 |
-
##inated
|
4561 |
-
##inuity
|
4562 |
-
##inuate
|
4563 |
-
init
|
4564 |
-
inspec
|
4565 |
-
inspect
|
4566 |
-
inwards
|
4567 |
-
innum
|
4568 |
-
ingrowth
|
4569 |
-
##ndering
|
4570 |
-
##esor
|
4571 |
-
##ester
|
4572 |
-
##ortion
|
4573 |
-
##oration
|
4574 |
-
##oracic
|
4575 |
-
##orudes
|
4576 |
-
##ativ
|
4577 |
-
##atomy
|
4578 |
-
##atysm
|
4579 |
-
nov
|
4580 |
-
##aryx
|
4581 |
-
##ussion
|
4582 |
-
##iting
|
4583 |
-
##itud
|
4584 |
-
##itple
|
4585 |
-
##idal
|
4586 |
-
##ides
|
4587 |
-
##idum
|
4588 |
-
##iderin
|
4589 |
-
##phopharyngeal
|
4590 |
-
##phosis
|
4591 |
-
##enge
|
4592 |
-
##enia
|
4593 |
-
##enral
|
4594 |
-
##icle
|
4595 |
-
##icuous
|
4596 |
-
##icienc
|
4597 |
-
##anasal
|
4598 |
-
island
|
4599 |
-
##osal
|
4600 |
-
##osiderin
|
4601 |
-
##teral
|
4602 |
-
means
|
4603 |
-
##umul
|
4604 |
-
##ument
|
4605 |
-
let
|
4606 |
-
leve
|
4607 |
-
leav
|
4608 |
-
leung
|
4609 |
-
##edullary
|
4610 |
-
##igest
|
4611 |
-
##leted
|
4612 |
-
nasog
|
4613 |
-
nasphopharyngeal
|
4614 |
-
##inguous
|
4615 |
-
##ingled
|
4616 |
-
##inguish
|
4617 |
-
##uloma
|
4618 |
-
##ulbar
|
4619 |
-
metastat
|
4620 |
-
metastaic
|
4621 |
-
refused
|
4622 |
-
rendering
|
4623 |
-
##entim
|
4624 |
-
withheld
|
4625 |
-
rightt
|
4626 |
-
nasopharyneal
|
4627 |
-
nasopharyngitis
|
4628 |
-
##ism
|
4629 |
-
##isation
|
4630 |
-
##isrup
|
4631 |
-
tumoour
|
4632 |
-
##omost
|
4633 |
-
##omises
|
4634 |
-
##omatic
|
4635 |
-
##omplete
|
4636 |
-
tof
|
4637 |
-
toc2
|
4638 |
-
oram
|
4639 |
-
##ilities
|
4640 |
-
##ilection
|
4641 |
-
necess
|
4642 |
-
##pering
|
4643 |
-
##perienc
|
4644 |
-
metastastic
|
4645 |
-
##clar
|
4646 |
-
exit
|
4647 |
-
exotr
|
4648 |
-
experienc
|
4649 |
-
##ablis
|
4650 |
-
updated
|
4651 |
-
uptak
|
4652 |
-
##allenge
|
4653 |
-
t1rh
|
4654 |
-
union
|
4655 |
-
unav
|
4656 |
-
unrel
|
4657 |
-
unsh
|
4658 |
-
unbre
|
4659 |
-
consp
|
4660 |
-
conch
|
4661 |
-
t1wfs
|
4662 |
-
##olester
|
4663 |
-
##reman
|
4664 |
-
unremarakable
|
4665 |
-
##owding
|
4666 |
-
spill
|
4667 |
-
spont
|
4668 |
-
spicul
|
4669 |
-
paracent
|
4670 |
-
carnial
|
4671 |
-
cardiology
|
4672 |
-
chun
|
4673 |
-
china
|
4674 |
-
challenge
|
4675 |
-
cholester
|
4676 |
-
nasopharynxl
|
4677 |
-
##ossible
|
4678 |
-
##ife
|
4679 |
-
##ifically
|
4680 |
-
##aced
|
4681 |
-
##acial
|
4682 |
-
invasin
|
4683 |
-
altern
|
4684 |
-
alto
|
4685 |
-
involuted
|
4686 |
-
##avity
|
4687 |
-
##aviv
|
4688 |
-
##avenous
|
4689 |
-
##avily
|
4690 |
-
##teriorly
|
4691 |
-
##isting
|
4692 |
-
##istax
|
4693 |
-
smok
|
4694 |
-
smalll
|
4695 |
-
smallish
|
4696 |
-
##cine
|
4697 |
-
##cinator
|
4698 |
-
t2a
|
4699 |
-
t2sfs
|
4700 |
-
cortic
|
4701 |
-
fossal
|
4702 |
-
jugulare
|
4703 |
-
inform
|
4704 |
-
infact
|
4705 |
-
ones
|
4706 |
-
onse
|
4707 |
-
oncolog
|
4708 |
-
cavum
|
4709 |
-
cavitary
|
4710 |
-
regarding
|
4711 |
-
corona
|
4712 |
-
intenral
|
4713 |
-
scaph
|
4714 |
-
##ami
|
4715 |
-
##amucos
|
4716 |
-
##amidal
|
4717 |
-
who
|
4718 |
-
whose
|
4719 |
-
##urs
|
4720 |
-
##ury
|
4721 |
-
notably
|
4722 |
-
heart
|
4723 |
-
hearing
|
4724 |
-
heavily
|
4725 |
-
distance
|
4726 |
-
distortion
|
4727 |
-
distinguish
|
4728 |
-
pterygomax
|
4729 |
-
pterygoplatine
|
4730 |
-
retrob
|
4731 |
-
retropharyng
|
4732 |
-
retromandibular
|
4733 |
-
retrolisthesis
|
4734 |
-
midly
|
4735 |
-
midway
|
4736 |
-
midjug
|
4737 |
-
scanner
|
4738 |
-
ears
|
4739 |
-
earli
|
4740 |
-
heads
|
4741 |
-
##heric
|
4742 |
-
depression
|
4743 |
-
delph
|
4744 |
-
dehis
|
4745 |
-
base0
|
4746 |
-
##otomy
|
4747 |
-
##inear
|
4748 |
-
##ullar
|
4749 |
-
##axillary
|
4750 |
-
paraest
|
4751 |
-
paraphy
|
4752 |
-
parafal
|
4753 |
-
styl
|
4754 |
-
start
|
4755 |
-
started
|
4756 |
-
##ircles
|
4757 |
-
enucle
|
4758 |
-
ensu
|
4759 |
-
forament
|
4760 |
-
foramens
|
4761 |
-
abd
|
4762 |
-
able
|
4763 |
-
contrasting
|
4764 |
-
##endent
|
4765 |
-
##endage
|
4766 |
-
##endosc
|
4767 |
-
crcl
|
4768 |
-
crowding
|
4769 |
-
prog
|
4770 |
-
prorudes
|
4771 |
-
prossible
|
4772 |
-
extended
|
4773 |
-
postsur
|
4774 |
-
##opap
|
4775 |
-
##opically
|
4776 |
-
##optimal
|
4777 |
-
##openia
|
4778 |
-
pretrac
|
4779 |
-
precontrast
|
4780 |
-
precav
|
4781 |
-
##portance
|
4782 |
-
walled
|
4783 |
-
beli
|
4784 |
-
cana
|
4785 |
-
ant
|
4786 |
-
anatomy
|
4787 |
-
hypere
|
4788 |
-
##cluder
|
4789 |
-
##ands
|
4790 |
-
suspect
|
4791 |
-
suspious
|
4792 |
-
apt
|
4793 |
-
##eninges
|
4794 |
-
techniquee
|
4795 |
-
clivis
|
4796 |
-
accesor
|
4797 |
-
accumul
|
4798 |
-
book
|
4799 |
-
final
|
4800 |
-
earlyt3
|
4801 |
-
staget1
|
4802 |
-
##ucidum
|
4803 |
-
##imet
|
4804 |
-
##imural
|
4805 |
-
##ibules
|
4806 |
-
sphenoe
|
4807 |
-
sphenoplatine
|
4808 |
-
ajc
|
4809 |
-
sphenoidale
|
4810 |
-
fissural
|
4811 |
-
saggital
|
4812 |
-
mucle
|
4813 |
-
mastoiditis
|
4814 |
-
mucosing
|
4815 |
-
miller
|
4816 |
-
craniof
|
4817 |
-
craniotomy
|
4818 |
-
mucosally
|
4819 |
-
##illay
|
4820 |
-
admixed
|
4821 |
-
adrenal
|
4822 |
-
##obed
|
4823 |
-
nonet
|
4824 |
-
##oove
|
4825 |
-
asl
|
4826 |
-
asf
|
4827 |
-
subependymal
|
4828 |
-
subsid
|
4829 |
-
suboptimal
|
4830 |
-
lateraly
|
4831 |
-
laterality
|
4832 |
-
appoint
|
4833 |
-
appendage
|
4834 |
-
prominently
|
4835 |
-
##play
|
4836 |
-
##ploic
|
4837 |
-
larges
|
4838 |
-
index
|
4839 |
-
induced
|
4840 |
-
inderterm
|
4841 |
-
seem
|
4842 |
-
sets
|
4843 |
-
se10
|
4844 |
-
hyperost
|
4845 |
-
parotiditis
|
4846 |
-
predilection
|
4847 |
-
arises
|
4848 |
-
arae
|
4849 |
-
##essory
|
4850 |
-
gls
|
4851 |
-
inferoan
|
4852 |
-
inferolateral
|
4853 |
-
inferoposterior
|
4854 |
-
inferomost
|
4855 |
-
inflammary
|
4856 |
-
die
|
4857 |
-
diploic
|
4858 |
-
indetermined
|
4859 |
-
##elung
|
4860 |
-
##elves
|
4861 |
-
appeared
|
4862 |
-
hyperplastic
|
4863 |
-
mok
|
4864 |
-
mode
|
4865 |
-
furtherr
|
4866 |
-
furthermore
|
4867 |
-
enhacement
|
4868 |
-
extracran
|
4869 |
-
vidial
|
4870 |
-
##existing
|
4871 |
-
specifically
|
4872 |
-
composed
|
4873 |
-
completed
|
4874 |
-
suppress
|
4875 |
-
medal
|
4876 |
-
floors
|
4877 |
-
froz
|
4878 |
-
slit
|
4879 |
-
slip
|
4880 |
-
supraorbital
|
4881 |
-
suprahyoid
|
4882 |
-
disrup
|
4883 |
-
diseases
|
4884 |
-
display
|
4885 |
-
mar2013
|
4886 |
-
tumoral
|
4887 |
-
possibilities
|
4888 |
-
##ayngeal
|
4889 |
-
multi
|
4890 |
-
muscosal
|
4891 |
-
centimet
|
4892 |
-
cricoary
|
4893 |
-
superoposterior
|
4894 |
-
difference
|
4895 |
-
cytology
|
4896 |
-
cartilages
|
4897 |
-
bordered
|
4898 |
-
bordering
|
4899 |
-
##ostomy
|
4900 |
-
##clivical
|
4901 |
-
match
|
4902 |
-
cranially
|
4903 |
-
changed
|
4904 |
-
t1no
|
4905 |
-
situ
|
4906 |
-
sited
|
4907 |
-
septal
|
4908 |
-
lobular
|
4909 |
-
persist
|
4910 |
-
perimural
|
4911 |
-
numbness
|
4912 |
-
numerus
|
4913 |
-
encirc
|
4914 |
-
encircles
|
4915 |
-
##enmuller
|
4916 |
-
rosenmullar
|
4917 |
-
reconstr
|
4918 |
-
representing
|
4919 |
-
##ometal
|
4920 |
-
remod
|
4921 |
-
remnants
|
4922 |
-
##yrygoid
|
4923 |
-
##thmoidal
|
4924 |
-
im14
|
4925 |
-
importance
|
4926 |
-
patch
|
4927 |
-
t4nm0
|
4928 |
-
otomastoids
|
4929 |
-
resected
|
4930 |
-
respon
|
4931 |
-
##odigest
|
4932 |
-
ctb
|
4933 |
-
hazy
|
4934 |
-
sizes
|
4935 |
-
sizable
|
4936 |
-
sizeable
|
4937 |
-
marginated
|
4938 |
-
mainy
|
4939 |
-
cannon
|
4940 |
-
##rovascular
|
4941 |
-
petct
|
4942 |
-
continguous
|
4943 |
-
##ereved
|
4944 |
-
##aching
|
4945 |
-
views
|
4946 |
-
viewed
|
4947 |
-
pressure
|
4948 |
-
presereved
|
4949 |
-
thank
|
4950 |
-
conglomerating
|
4951 |
-
locore
|
4952 |
-
##entioned
|
4953 |
-
accesssory
|
4954 |
-
##ximity
|
4955 |
-
##llite
|
4956 |
-
accessoryy
|
4957 |
-
##ophageal
|
4958 |
-
open
|
4959 |
-
opposed
|
4960 |
-
longer
|
4961 |
-
longitud
|
4962 |
-
petroclivical
|
4963 |
-
palati
|
4964 |
-
palatal
|
4965 |
-
palates
|
4966 |
-
extraparotid
|
4967 |
-
extramed
|
4968 |
-
extrathyroid
|
4969 |
-
extradural
|
4970 |
-
extramucos
|
4971 |
-
##ontinuity
|
4972 |
-
tubinate
|
4973 |
-
tuberous
|
4974 |
-
tubrinates
|
4975 |
-
incomplete
|
4976 |
-
fascial
|
4977 |
-
intradural
|
4978 |
-
intraluminal
|
4979 |
-
intranasal
|
4980 |
-
intravenous
|
4981 |
-
##x14mm
|
4982 |
-
##x12mm
|
4983 |
-
##x13x1
|
4984 |
-
##x12x2
|
4985 |
-
##x16x18mm
|
4986 |
-
turcica
|
4987 |
-
difficulty
|
4988 |
-
postero
|
4989 |
-
posteromedial
|
4990 |
-
##ternoon
|
4991 |
-
undisrup
|
4992 |
-
prof
|
4993 |
-
proves
|
4994 |
-
proximity
|
4995 |
-
continue
|
4996 |
-
continues
|
4997 |
-
shortly
|
4998 |
-
pls
|
4999 |
-
platysm
|
5000 |
-
placed
|
5001 |
-
jugulodiag
|
5002 |
-
relativ
|
5003 |
-
retains
|
5004 |
-
tin0m0
|
5005 |
-
tinnit
|
5006 |
-
tin1tumour
|
5007 |
-
evaluated
|
5008 |
-
conglomerations
|
5009 |
-
occurs
|
5010 |
-
contained
|
5011 |
-
discussion
|
5012 |
-
discontinuity
|
5013 |
-
moderately
|
5014 |
-
10cm
|
5015 |
-
10x2
|
5016 |
-
1001
|
5017 |
-
10x11mm
|
5018 |
-
event
|
5019 |
-
striations
|
5020 |
-
strands
|
5021 |
-
##x24mm
|
5022 |
-
##x22x2
|
5023 |
-
##x23x26mm
|
5024 |
-
##x26x1
|
5025 |
-
##x28x3
|
5026 |
-
incidenal
|
5027 |
-
incidentally
|
5028 |
-
pharyngo
|
5029 |
-
perforation
|
5030 |
-
1201
|
5031 |
-
12x11mm
|
5032 |
-
12aug
|
5033 |
-
12x13x1
|
5034 |
-
formation
|
5035 |
-
formamina
|
5036 |
-
scfs
|
5037 |
-
icas
|
5038 |
-
neural
|
5039 |
-
neither
|
5040 |
-
negative
|
5041 |
-
advised
|
5042 |
-
compressive
|
5043 |
-
mottled
|
5044 |
-
mottling
|
5045 |
-
endoscopically
|
5046 |
-
mechan
|
5047 |
-
ace
|
5048 |
-
acessory
|
5049 |
-
compare
|
5050 |
-
comparing
|
5051 |
-
comparatively
|
5052 |
-
compartment
|
5053 |
-
equivocally
|
5054 |
-
inside
|
5055 |
-
insuff
|
5056 |
-
insinuate
|
5057 |
-
##×25×3
|
5058 |
-
##×20×1
|
5059 |
-
##regate
|
5060 |
-
obstrcuted
|
5061 |
-
3n2
|
5062 |
-
##×37×2
|
5063 |
-
cords
|
5064 |
-
aerodigest
|
5065 |
-
descend
|
5066 |
-
confused
|
5067 |
-
surrounded
|
5068 |
-
11a
|
5069 |
-
11cm
|
5070 |
-
11x10mm
|
5071 |
-
fibroma
|
5072 |
-
raised
|
5073 |
-
thinned
|
5074 |
-
crossed
|
5075 |
-
haemosiderin
|
5076 |
-
extranodular
|
5077 |
-
134
|
5078 |
-
13cm
|
5079 |
-
13x5mm
|
5080 |
-
13x23x26mm
|
5081 |
-
localized
|
5082 |
-
tornwald
|
5083 |
-
contiguity
|
5084 |
-
indentation
|
5085 |
-
diameters
|
5086 |
-
continuing
|
5087 |
-
subcentim
|
5088 |
-
arterty
|
5089 |
-
presuming
|
5090 |
-
presumabal
|
5091 |
-
denervated
|
5092 |
-
became
|
5093 |
-
grade
|
5094 |
-
groove
|
5095 |
-
##stemic
|
5096 |
-
##aneously
|
5097 |
-
degenerated
|
5098 |
-
cerebrovascular
|
5099 |
-
cerebelli
|
5100 |
-
ducts
|
5101 |
-
simple
|
5102 |
-
interal
|
5103 |
-
interim
|
5104 |
-
interface
|
5105 |
-
interspers
|
5106 |
-
interhemisp
|
5107 |
-
grouping
|
5108 |
-
ppfs
|
5109 |
-
ganglioc
|
5110 |
-
auricular
|
5111 |
-
t3n2mx
|
5112 |
-
planum
|
5113 |
-
striping
|
5114 |
-
stripped
|
5115 |
-
neuro
|
5116 |
-
2010
|
5117 |
-
2014
|
5118 |
-
##hesia
|
5119 |
-
##orrhages
|
5120 |
-
nasoendosc
|
5121 |
-
t4n3a
|
5122 |
-
t4n3mi
|
5123 |
-
t4n3dis
|
5124 |
-
checked
|
5125 |
-
##×15
|
5126 |
-
##×17×2
|
5127 |
-
##×17×3
|
5128 |
-
t3n3m
|
5129 |
-
obliterate
|
5130 |
-
confluence
|
5131 |
-
4n1m0
|
5132 |
-
4n3m
|
5133 |
-
goiter
|
5134 |
-
meninges
|
5135 |
-
mastication
|
5136 |
-
replaces
|
5137 |
-
##omalacic
|
5138 |
-
developed
|
5139 |
-
development
|
5140 |
-
1801
|
5141 |
-
18x24mm
|
5142 |
-
mets
|
5143 |
-
anterosuperior
|
5144 |
-
anteroinferior
|
5145 |
-
anterolisthesis
|
5146 |
-
anteriosuperior
|
5147 |
-
encroaching
|
5148 |
-
results
|
5149 |
-
##ephalic
|
5150 |
-
212
|
5151 |
-
2101
|
5152 |
-
21x12mm
|
5153 |
-
bilobed
|
5154 |
-
cisternal
|
5155 |
-
chronicity
|
5156 |
-
differentiating
|
5157 |
-
t1n2c
|
5158 |
-
t4n2m
|
5159 |
-
structure
|
5160 |
-
structural
|
5161 |
-
22x12x2
|
5162 |
-
22×37×2
|
5163 |
-
20x26mm
|
5164 |
-
20x8x1
|
5165 |
-
2005
|
5166 |
-
20x14mm
|
5167 |
-
coexisting
|
5168 |
-
emphy
|
5169 |
-
ijc
|
5170 |
-
osteoma
|
5171 |
-
osteopenia
|
5172 |
-
osteometal
|
5173 |
-
separating
|
5174 |
-
lns1
|
5175 |
-
sellae
|
5176 |
-
basion
|
5177 |
-
basis
|
5178 |
-
gives
|
5179 |
-
ostium
|
5180 |
-
##artment
|
5181 |
-
prelaryngeal
|
5182 |
-
antra
|
5183 |
-
confirmation
|
5184 |
-
2n1
|
5185 |
-
2n3m0
|
5186 |
-
colli
|
5187 |
-
later
|
5188 |
-
ser13
|
5189 |
-
##×45×3
|
5190 |
-
pathway
|
5191 |
-
pathological
|
5192 |
-
combination
|
5193 |
-
tracheoes
|
5194 |
-
tracheostomy
|
5195 |
-
questioned
|
5196 |
-
aforem
|
5197 |
-
afternoon
|
5198 |
-
block
|
5199 |
-
bloom
|
5200 |
-
required
|
5201 |
-
deviating
|
5202 |
-
prolapses
|
5203 |
-
effaces
|
5204 |
-
effacing
|
5205 |
-
attachment
|
5206 |
-
attached
|
5207 |
-
indicates
|
5208 |
-
removal
|
5209 |
-
chemo
|
5210 |
-
chemort
|
5211 |
-
valleculae
|
5212 |
-
14cm
|
5213 |
-
14x10mm
|
5214 |
-
2x5
|
5215 |
-
2x6
|
5216 |
-
9x4
|
5217 |
-
9x7mm
|
5218 |
-
hamper
|
5219 |
-
macrosc
|
5220 |
-
molars
|
5221 |
-
osterior
|
5222 |
-
ossification
|
5223 |
-
wider
|
5224 |
-
widely
|
5225 |
-
widened
|
5226 |
-
##neys
|
5227 |
-
##tsxcc
|
5228 |
-
##pressive
|
5229 |
-
encephalomalacic
|
5230 |
-
ulcerative
|
5231 |
-
benefit
|
5232 |
-
17cm
|
5233 |
-
1704
|
5234 |
-
1998
|
5235 |
-
7x5
|
5236 |
-
7x4
|
5237 |
-
7x5mm
|
5238 |
-
7x8mm
|
5239 |
-
8x15mm
|
5240 |
-
epistax
|
5241 |
-
joints
|
5242 |
-
pulse
|
5243 |
-
##ixon
|
5244 |
-
##omedullary
|
5245 |
-
depending
|
5246 |
-
dependent
|
5247 |
-
department
|
5248 |
-
adds
|
5249 |
-
comments
|
5250 |
-
t2n12m0
|
5251 |
-
10x6mm
|
5252 |
-
10x7mm
|
5253 |
-
10x9x10mm
|
5254 |
-
needle
|
5255 |
-
insertions
|
5256 |
-
inserted
|
5257 |
-
destroy
|
5258 |
-
intermingled
|
5259 |
-
tracheaa
|
5260 |
-
dysprax
|
5261 |
-
pneumatised
|
5262 |
-
pneumatisation
|
5263 |
-
convincingly
|
5264 |
-
25x18mm
|
5265 |
-
25x26x1
|
5266 |
-
2x1x1
|
5267 |
-
9x1cm
|
5268 |
-
9x15mm
|
5269 |
-
buy
|
5270 |
-
forearm
|
5271 |
-
radical
|
5272 |
-
radiation
|
5273 |
-
rays
|
5274 |
-
meati
|
5275 |
-
##isions
|
5276 |
-
thalami
|
5277 |
-
t2bn3
|
5278 |
-
determined
|
5279 |
-
contours
|
5280 |
-
contouring
|
5281 |
-
obscures
|
5282 |
-
tsxapxcc
|
5283 |
-
##ologically
|
5284 |
-
16x11mm
|
5285 |
-
16x18mm
|
5286 |
-
1606
|
5287 |
-
16x16x18mm
|
5288 |
-
6x4
|
5289 |
-
6x4mm
|
5290 |
-
6x7mm
|
5291 |
-
6x9mm
|
5292 |
-
6x5cm
|
5293 |
-
breaches
|
5294 |
-
breached
|
5295 |
-
esrf
|
5296 |
-
odes
|
5297 |
-
pedicle
|
5298 |
-
##aky
|
5299 |
-
referring
|
5300 |
-
retrophx
|
5301 |
-
retropharngeal
|
5302 |
-
retrophayr
|
5303 |
-
retrophargye
|
5304 |
-
retrophayngeal
|
5305 |
-
define
|
5306 |
-
accountable
|
5307 |
-
indeterminent
|
5308 |
-
t1n3m1
|
5309 |
-
contents
|
5310 |
-
favors
|
5311 |
-
laryngo
|
5312 |
-
coalesce
|
5313 |
-
coalescing
|
5314 |
-
ballooned
|
5315 |
-
obscured
|
5316 |
-
penetration
|
5317 |
-
transependymal
|
5318 |
-
1x0
|
5319 |
-
1x4
|
5320 |
-
1x6
|
5321 |
-
270
|
5322 |
-
27x22x2
|
5323 |
-
27×17×3
|
5324 |
-
5x6
|
5325 |
-
5x5mm
|
5326 |
-
5x6mm
|
5327 |
-
6x2mm
|
5328 |
-
6x3mm
|
5329 |
-
8x5mm
|
5330 |
-
aorta
|
5331 |
-
boundary
|
5332 |
-
csi
|
5333 |
-
csae
|
5334 |
-
calvar
|
5335 |
-
creeping
|
5336 |
-
ocular
|
5337 |
-
occluded
|
5338 |
-
occlude
|
5339 |
-
occluder
|
5340 |
-
synch
|
5341 |
-
systemic
|
5342 |
-
team
|
5343 |
-
teeth
|
5344 |
-
times
|
5345 |
-
×21
|
5346 |
-
##ched
|
5347 |
-
##5×35
|
5348 |
-
leptomeninges
|
5349 |
-
propensity
|
5350 |
-
apxtsxcc
|
5351 |
-
paranasopharynx
|
5352 |
-
shadow
|
5353 |
-
histologically
|
5354 |
-
fronds
|
5355 |
-
impinge
|
5356 |
-
aggregate
|
5357 |
-
erode
|
5358 |
-
eroded
|
5359 |
-
weeks
|
5360 |
-
blurred
|
5361 |
-
radiating
|
5362 |
-
radiata
|
5363 |
-
homogenously
|
5364 |
-
essential
|
5365 |
-
pedunculated
|
5366 |
-
centering
|
5367 |
-
34×17×2
|
5368 |
-
bifrontal
|
5369 |
-
eyeball
|
5370 |
-
herniation
|
5371 |
-
morphologically
|
5372 |
-
nuclei
|
5373 |
-
ptergopalatine
|
5374 |
-
sockets
|
5375 |
-
tapering
|
5376 |
-
visible
|
5377 |
-
injury
|
5378 |
-
nasopharngeal
|
5379 |
-
nasophayr
|
5380 |
-
nasopharyx
|
5381 |
-
relevance
|
5382 |
-
concavity
|
5383 |
-
scalp
|
5384 |
-
streaky
|
5385 |
-
abscess
|
5386 |
-
lymphoadenopathy
|
5387 |
-
setting
|
5388 |
-
settled
|
5389 |
-
fragments
|
5390 |
-
fragmented
|
5391 |
-
superolaterally
|
5392 |
-
rectum
|
5393 |
-
repeated
|
5394 |
-
projections
|
5395 |
-
plaques
|
5396 |
-
12x8mm
|
5397 |
-
t4n3bm
|
5398 |
-
t4n3bm1
|
5399 |
-
2021
|
5400 |
-
covering
|
5401 |
-
micropap
|
5402 |
-
microhaem
|
5403 |
-
protrusions
|
5404 |
-
engulfing
|
5405 |
-
decrease
|
5406 |
-
decreased
|
5407 |
-
decreasing
|
5408 |
-
coalescent
|
5409 |
-
calcification
|
5410 |
-
variable
|
5411 |
-
protuberans
|
5412 |
-
hypermetabolism
|
5413 |
-
outpouchings
|
5414 |
-
0x0
|
5415 |
-
0x4
|
5416 |
-
1n1m0
|
5417 |
-
1n3m0
|
5418 |
-
15x11mm
|
5419 |
-
23x13mm
|
5420 |
-
23x11x2
|
5421 |
-
41x28x3
|
5422 |
-
5×5×4
|
5423 |
-
aug13
|
5424 |
-
coli
|
5425 |
-
colon
|
5426 |
-
foarm
|
5427 |
-
foreman
|
5428 |
-
fasica
|
5429 |
-
fashion
|
5430 |
-
filed
|
5431 |
-
films
|
5432 |
-
know
|
5433 |
-
knife
|
5434 |
-
ome
|
5435 |
-
premedullary
|
5436 |
-
premaxillary
|
5437 |
-
pocket
|
5438 |
-
pockets
|
5439 |
-
passes
|
5440 |
-
passing
|
5441 |
-
quite
|
5442 |
-
query
|
5443 |
-
##iocephalic
|
5444 |
-
interna
|
5445 |
-
internatal
|
5446 |
-
congested
|
5447 |
-
congestive
|
5448 |
-
choroidal
|
5449 |
-
stenosis
|
5450 |
-
stenosed
|
5451 |
-
prevent
|
5452 |
-
channels
|
5453 |
-
arrange
|
5454 |
-
arranged
|
5455 |
-
probabale
|
5456 |
-
probabaly
|
5457 |
-
comprised
|
5458 |
-
compromises
|
5459 |
-
supraclinoid
|
5460 |
-
supraclaviv
|
5461 |
-
##sema
|
5462 |
-
##seminated
|
5463 |
-
brachial
|
5464 |
-
brachiocephalic
|
5465 |
-
intracanalicular
|
5466 |
-
undergo
|
5467 |
-
undergone
|
5468 |
-
13x10x1
|
5469 |
-
13x19x2
|
5470 |
-
avidly
|
5471 |
-
replacement
|
5472 |
-
3mmx4mm
|
5473 |
-
3mmx6mm
|
5474 |
-
coiling
|
5475 |
-
courses
|
5476 |
-
coursing
|
5477 |
-
limbs
|
5478 |
-
attenuated
|
5479 |
-
attenuation
|
5480 |
-
intermuscular
|
5481 |
-
intermusclar
|
5482 |
-
homogeneously
|
5483 |
-
decompression
|
5484 |
-
decompressive
|
5485 |
-
elevated
|
5486 |
-
elevates
|
5487 |
-
elements
|
5488 |
-
apxlrxcc
|
5489 |
-
scalene
|
5490 |
-
scalenus
|
5491 |
-
stretches
|
5492 |
-
stretched
|
5493 |
-
cervicoth
|
5494 |
-
cervicomedullary
|
5495 |
-
myelopathy
|
5496 |
-
myelomalacia
|
5497 |
-
zygoma
|
5498 |
-
zygomatic
|
5499 |
-
investigations
|
5500 |
-
communicate
|
5501 |
-
communication
|
5502 |
-
26×15
|
5503 |
-
28x15mm
|
5504 |
-
3x0
|
5505 |
-
4x5
|
5506 |
-
42×25×3
|
5507 |
-
40×20×1
|
5508 |
-
5tesla
|
5509 |
-
55×35×35
|
5510 |
-
6×8
|
5511 |
-
60×45×3
|
5512 |
-
7mar201
|
5513 |
-
ahnh
|
5514 |
-
aspiration
|
5515 |
-
averaging
|
5516 |
-
besides
|
5517 |
-
bialteral
|
5518 |
-
bows
|
5519 |
-
burr
|
5520 |
-
buccinator
|
5521 |
-
baptist
|
5522 |
-
cataract
|
5523 |
-
cribriform
|
5524 |
-
canthus
|
5525 |
-
cuts
|
5526 |
-
crescent
|
5527 |
-
curvil
|
5528 |
-
creatinine
|
5529 |
-
catheter
|
5530 |
-
dsseminated
|
5531 |
-
divisions
|
5532 |
-
document
|
5533 |
-
easily
|
5534 |
-
eraly
|
5535 |
-
establis
|
5536 |
-
fdg
|
5537 |
-
falx
|
5538 |
-
ferry
|
5539 |
-
fourth
|
5540 |
-
first
|
5541 |
-
frail
|
5542 |
-
filtrated
|
5543 |
-
fifth
|
5544 |
-
gamma
|
5545 |
-
granuloma
|
5546 |
-
hkhc
|
5547 |
-
higher
|
5548 |
-
hanson
|
5549 |
-
ideally
|
5550 |
-
japan
|
5551 |
-
kyphosis
|
5552 |
-
kidneys
|
5553 |
-
layer
|
5554 |
-
lodes
|
5555 |
-
mdixon
|
5556 |
-
mulitple
|
5557 |
-
madelung
|
5558 |
-
missed
|
5559 |
-
mobile
|
5560 |
-
mteastas
|
5561 |
-
mylohyoid
|
5562 |
-
nsf
|
5563 |
-
nevertheless
|
5564 |
-
operative
|
5565 |
-
piriform
|
5566 |
-
psinal
|
5567 |
-
pyriform
|
5568 |
-
pfo
|
5569 |
-
pteyrygoid
|
5570 |
-
punctate
|
5571 |
-
pellucidum
|
5572 |
-
pyramidal
|
5573 |
-
packing
|
5574 |
-
pposterior
|
5575 |
-
rare
|
5576 |
-
rigth
|
5577 |
-
rentention
|
5578 |
-
rossenmuller
|
5579 |
-
rudiment
|
5580 |
-
rapid
|
5581 |
-
summary
|
5582 |
-
satellite
|
5583 |
-
septate
|
5584 |
-
treated
|
5585 |
-
tests
|
5586 |
-
terms
|
5587 |
-
taken
|
5588 |
-
vca
|
5589 |
-
vasogenic
|
5590 |
-
vomiting
|
5591 |
-
viral
|
5592 |
-
vasculature
|
5593 |
-
vestibules
|
5594 |
-
waldey
|
5595 |
-
##nhancement
|
5596 |
-
##gional
|
5597 |
-
##ronous
|
5598 |
-
##tenoid
|
5599 |
-
##082
|
5600 |
-
themselves
|
5601 |
-
##onpc082
|
5602 |
-
initial
|
5603 |
-
inspection
|
5604 |
-
inspected
|
5605 |
-
innumerable
|
5606 |
-
##iciency
|
5607 |
-
levei
|
5608 |
-
leaving
|
5609 |
-
nasogastric
|
5610 |
-
metastataic
|
5611 |
-
oramen
|
5612 |
-
necessary
|
5613 |
-
exotropic
|
5614 |
-
experienced
|
5615 |
-
uptake
|
5616 |
-
t1rhonpc082
|
5617 |
-
unavailable
|
5618 |
-
unrelated
|
5619 |
-
unsharpness
|
5620 |
-
unbreakable
|
5621 |
-
conspicuous
|
5622 |
-
concha
|
5623 |
-
spills
|
5624 |
-
spontaneously
|
5625 |
-
spiculated
|
5626 |
-
paracentral
|
5627 |
-
chunks
|
5628 |
-
cholesterol
|
5629 |
-
alternatively
|
5630 |
-
altogether
|
5631 |
-
smoking
|
5632 |
-
cortices
|
5633 |
-
information
|
5634 |
-
onset
|
5635 |
-
oncologist
|
5636 |
-
scaphoid
|
5637 |
-
pterygomaxillay
|
5638 |
-
retrobulbar
|
5639 |
-
retropharyngx
|
5640 |
-
midjugular
|
5641 |
-
earlier
|
5642 |
-
delphian
|
5643 |
-
dehiscence
|
5644 |
-
paraesthesia
|
5645 |
-
paraphyyngeal
|
5646 |
-
parafalcine
|
5647 |
-
styloid
|
5648 |
-
enucleation
|
5649 |
-
ensuing
|
5650 |
-
progress
|
5651 |
-
postsurgical
|
5652 |
-
pretracheal
|
5653 |
-
precaval
|
5654 |
-
believed
|
5655 |
-
hyperenhancement
|
5656 |
-
accesorry
|
5657 |
-
accumulation
|
5658 |
-
staget1n0
|
5659 |
-
sphenoethmoidal
|
5660 |
-
craniofacial
|
5661 |
-
nonetheless
|
5662 |
-
subsiding
|
5663 |
-
appointment
|
5664 |
-
inderterminate
|
5665 |
-
seems
|
5666 |
-
se1001
|
5667 |
-
hyperostosis
|
5668 |
-
inferoanteriorly
|
5669 |
-
inferolaterally
|
5670 |
-
extracranial
|
5671 |
-
suppressed
|
5672 |
-
frozen
|
5673 |
-
disruption
|
5674 |
-
centimetre
|
5675 |
-
cricoarytenoid
|
5676 |
-
persistently
|
5677 |
-
encircle
|
5678 |
-
reconstruction
|
5679 |
-
remodelling
|
5680 |
-
response
|
5681 |
-
locoregional
|
5682 |
-
longitudinal
|
5683 |
-
extramedullary
|
5684 |
-
extramucosal
|
5685 |
-
undisrupted
|
5686 |
-
platysma
|
5687 |
-
jugulodiagastric
|
5688 |
-
relatives
|
5689 |
-
tinnitus
|
5690 |
-
10x20mm
|
5691 |
-
12aug2013
|
5692 |
-
12x13x16mm
|
5693 |
-
mechanical
|
5694 |
-
insufficiency
|
5695 |
-
aerodigestive
|
5696 |
-
descends
|
5697 |
-
subcentimeter
|
5698 |
-
presumabaly
|
5699 |
-
interspersed
|
5700 |
-
interhemispheric
|
5701 |
-
gangliocapsular
|
5702 |
-
nasoendoscopy
|
5703 |
-
t4n3disease
|
5704 |
-
anteroinferiorly
|
5705 |
-
22x12x20mm
|
5706 |
-
22×37×26
|
5707 |
-
20x8x16mm
|
5708 |
-
emphysema
|
5709 |
-
tracheoesophageal
|
5710 |
-
aforementioned
|
5711 |
-
blooming
|
5712 |
-
macroscopic
|
5713 |
-
epistaxis
|
5714 |
-
destroyed
|
5715 |
-
dyspraxia
|
5716 |
-
25x26x19mm
|
5717 |
-
retrophayrngeal
|
5718 |
-
retrophargyeal
|
5719 |
-
27x22x23mm
|
5720 |
-
27×17×31
|
5721 |
-
calvarial
|
5722 |
-
synchronous
|
5723 |
-
impingement
|
5724 |
-
34×17×25
|
5725 |
-
nasophayrnx
|
5726 |
-
micropapillary
|
5727 |
-
microhaemorrhages
|
5728 |
-
23x11x23mm
|
5729 |
-
41x28x36mm
|
5730 |
-
foarmen
|
5731 |
-
supraclavivular
|
5732 |
-
13x10x15mm
|
5733 |
-
13x19x22mm
|
5734 |
-
cervicothoracic
|
5735 |
-
42×25×30
|
5736 |
-
40×20×14
|
5737 |
-
60×45×33
|
5738 |
-
7mar2012
|
5739 |
-
curvilinear
|
5740 |
-
documented
|
5741 |
-
established
|
5742 |
-
mteastases
|
5743 |
-
rudimentary
|
5744 |
-
waldeyers
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
npc_bert_models/__init__.py
DELETED
File without changes
|
npc_bert_models/app_logger.py
DELETED
@@ -1,34 +0,0 @@
|
|
1 |
-
import logging
|
2 |
-
import inspect
|
3 |
-
import sys
|
4 |
-
from pathlib import Path
|
5 |
-
|
6 |
-
log_format = "[%(asctime)-12s-%(levelname)s] (%(name)s) %(message)s"
|
7 |
-
|
8 |
-
def get_logger(logger_name: str = None, log_level: str = 'info') -> logging.Logger:
|
9 |
-
# Set up levels
|
10 |
-
log_levels = logging._nameToLevel
|
11 |
-
log_level = log_levels[log_level.upper()]
|
12 |
-
|
13 |
-
# Set up logger format
|
14 |
-
logger_name = logger_name or Path(inspect.getmodule(inspect.stack()[1][0]).__file__).name
|
15 |
-
logger = logging.getLogger(logger_name.rstrip('.py'))
|
16 |
-
logger.setLevel(log_level)
|
17 |
-
formatter = logging.Formatter(fmt = log_format)
|
18 |
-
handler = logging.StreamHandler(sys.stdout)
|
19 |
-
handler.setFormatter(formatter)
|
20 |
-
|
21 |
-
|
22 |
-
# Set up exception hook
|
23 |
-
if logger_name == 'main':
|
24 |
-
def exception_hook(*args):
|
25 |
-
gettrace = getattr(sys, 'gettrace', None)
|
26 |
-
if not gettrace():
|
27 |
-
logger.error('Uncaught exception:')
|
28 |
-
logger.exception(args[-1], exc_info=args)
|
29 |
-
sys.excepthook = exception_hook
|
30 |
-
|
31 |
-
# Add handler to logger
|
32 |
-
logger.addHandler(handler)
|
33 |
-
logger.info(f"Created {logger = }")
|
34 |
-
return logger
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
npc_bert_models/cls_module.py
DELETED
@@ -1,84 +0,0 @@
|
|
1 |
-
import spaces.zero
|
2 |
-
from transformers import AutoTokenizer, AutoModelForSequenceClassification
|
3 |
-
from transformers import pipeline as hf_pipeline
|
4 |
-
from pathlib import Path
|
5 |
-
from typing import Any, Dict
|
6 |
-
import spaces
|
7 |
-
from .app_logger import get_logger
|
8 |
-
|
9 |
-
class NpcBertCLS():
|
10 |
-
r"""A class for performing report classification with BERT.
|
11 |
-
|
12 |
-
This class facilitates report classification tasks using a BERT model
|
13 |
-
fine-tuned on NPC staging reports. The base model is an uncased model
|
14 |
-
released by Microsoft, which can be found on the Hugging Face model hub
|
15 |
-
under the name 'microsoft/BiomedNLP-PubMedBERT-base-uncased-abstract-fulltext'.
|
16 |
-
|
17 |
-
Attributes:
|
18 |
-
model (transformers.PreTrainedModel):
|
19 |
-
The fine-tuned BERT model for sequence classification.
|
20 |
-
tokenizer (transformers.PreTrainedTokenizer):
|
21 |
-
The tokenizer for the BERT model.
|
22 |
-
pipeline (transformers.text-classification):
|
23 |
-
The Hugging Face text-classification pipeline.
|
24 |
-
pretrained_model (str):
|
25 |
-
The path to the directory containing the fine-tuned model.
|
26 |
-
"""
|
27 |
-
logger = get_logger()
|
28 |
-
def __init__(self):
|
29 |
-
self.model = None
|
30 |
-
self.tokenizer = None
|
31 |
-
self.pipeline = None
|
32 |
-
# relative to app.py
|
33 |
-
self.pretrained_model = "./models/npc-bert-cls"
|
34 |
-
self.logger.info(f"Created {__class__.__name__} instance.")
|
35 |
-
|
36 |
-
def load(self) -> None:
|
37 |
-
"""Loads the fine-tuned BERT model and related components.
|
38 |
-
|
39 |
-
This method initializes the model, tokenizer, and pipeline for the
|
40 |
-
text classification tasks using the pre-trained weights from the
|
41 |
-
specified directory.
|
42 |
-
|
43 |
-
Raises:
|
44 |
-
FileNotFoundError: If the pretrained model directory is not found.
|
45 |
-
"""
|
46 |
-
if not Path(self.pretrained_model).is_dir():
|
47 |
-
raise FileNotFoundError(f"Cannot found pretrained model at: {self.pretrained_model}")
|
48 |
-
|
49 |
-
self.model = AutoModelForSequenceClassification.from_pretrained(self.pretrained_model)
|
50 |
-
self.tokenizer = AutoTokenizer.from_pretrained(self.pretrained_model)
|
51 |
-
self.pipeline = hf_pipeline("text-classification", model=self.model, tokenizer=self.tokenizer, device_map='auto')
|
52 |
-
|
53 |
-
@spaces.GPU
|
54 |
-
def __call__(self, *args: Any) -> Any:
|
55 |
-
"""Performs classification on the given reports.
|
56 |
-
|
57 |
-
This method should be called only after the `load` method has been executed
|
58 |
-
to ensure that the model and pipeline are properly initialized. It accepts
|
59 |
-
arguments to pass to the Hugging Face text-classification pipeline.
|
60 |
-
|
61 |
-
Args:
|
62 |
-
*args: Variable length argument list to pass to the pipeline.
|
63 |
-
|
64 |
-
Returns:
|
65 |
-
The output of the text-classification pipeline.
|
66 |
-
|
67 |
-
Raises:
|
68 |
-
BrokenPipeError: If the model has not been loaded before calling this method.
|
69 |
-
"""
|
70 |
-
self.logger.info(f"Called with {args = }")
|
71 |
-
if self.pipeline is None:
|
72 |
-
msg = "Model was not initialized, have you run load()?"
|
73 |
-
raise BrokenPipeError(msg)
|
74 |
-
|
75 |
-
# check length of text
|
76 |
-
if len(args[0]) < 10:
|
77 |
-
return "Not enough text for classification!"
|
78 |
-
|
79 |
-
self.logger.info(f"{self.pipeline.model.device = }")
|
80 |
-
|
81 |
-
pipe_out = self.pipeline(*args)
|
82 |
-
pipe_out = {o['label']: o['score'] for o in pipe_out}
|
83 |
-
return pipe_out
|
84 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
npc_bert_models/gradio_demo.py
DELETED
@@ -1,8 +0,0 @@
|
|
1 |
-
# import gradio as gr
|
2 |
-
# from .cls_module import NpcBertCLS
|
3 |
-
# from .mlm_module import NpcBertMLM
|
4 |
-
|
5 |
-
|
6 |
-
def greet(name):
|
7 |
-
return "Hello " + name
|
8 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
npc_bert_models/mlm_module.py
DELETED
@@ -1,82 +0,0 @@
|
|
1 |
-
from transformers import AutoTokenizer, AutoModelForMaskedLM
|
2 |
-
from transformers import pipeline as hf_pipeline
|
3 |
-
from pathlib import Path
|
4 |
-
from .app_logger import get_logger
|
5 |
-
import spaces
|
6 |
-
|
7 |
-
class NpcBertMLM():
|
8 |
-
r"""A class for performing masked language modeling with BERT.
|
9 |
-
|
10 |
-
This class provides functionality to perform masked language modeling
|
11 |
-
predictions using a BERT model fine-tuned on NPC staging reports. The
|
12 |
-
base model used is an uncased model released by Microsoft, and it can be
|
13 |
-
found on the Hugging Face model hub under the name
|
14 |
-
'microsoft/BiomedNLP-PubMedBERT-base-uncased-abstract-fulltext'.
|
15 |
-
|
16 |
-
Attributes:
|
17 |
-
model (transformers.PreTrainedModel):
|
18 |
-
The fine-tuned BERT model.
|
19 |
-
tokenizer (transformers.PreTrainedTokenizer):
|
20 |
-
The tokenizer for the BERT model.
|
21 |
-
pipeline (transformers.fill-mask):
|
22 |
-
The Hugging Face fill-mask pipeline.
|
23 |
-
pretrained_model (str): The path to
|
24 |
-
the directory containing the fine-tuned model.
|
25 |
-
"""
|
26 |
-
logger = get_logger()
|
27 |
-
def __init__(self):
|
28 |
-
self.model = None
|
29 |
-
self.tokenizer = None
|
30 |
-
self.pipeline = None
|
31 |
-
# relative to app.py
|
32 |
-
self.pretrained_model = "./models/npc-bert-best"
|
33 |
-
self.logger.info(f"Created {__class__.__name__} instance.")
|
34 |
-
|
35 |
-
def load(self):
|
36 |
-
"""Loads the fine-tuned BERT model and related components.
|
37 |
-
|
38 |
-
This method initializes the model, tokenizer, and pipeline for the
|
39 |
-
masked language modeling tasks using the pre-trained weights from the
|
40 |
-
specified directory.
|
41 |
-
|
42 |
-
Raises:
|
43 |
-
FileNotFoundError: If the pretrained model directory is not found.
|
44 |
-
"""
|
45 |
-
if not Path(self.pretrained_model).is_dir():
|
46 |
-
raise FileNotFoundError(f"Cannot found pretrained model at: {self.pretrained_model}")
|
47 |
-
|
48 |
-
self.model = AutoModelForMaskedLM.from_pretrained(self.pretrained_model)
|
49 |
-
self.tokenizer = AutoTokenizer.from_pretrained(self.pretrained_model)
|
50 |
-
self.pipeline = hf_pipeline("fill-mask", model=self.model, tokenizer=self.tokenizer, device_map='auto')
|
51 |
-
|
52 |
-
@spaces.GPU
|
53 |
-
def __call__(self, *args):
|
54 |
-
"""Performs masked language modeling prediction.
|
55 |
-
|
56 |
-
This method should be called only after the `load` method has been executed
|
57 |
-
to ensure that the model and pipeline are properly initialized. It accepts
|
58 |
-
arguments to pass to the Hugging Face fill-mask pipeline.
|
59 |
-
|
60 |
-
Args:
|
61 |
-
*args: Variable length argument list to pass to the pipeline.
|
62 |
-
|
63 |
-
Returns:
|
64 |
-
The output of the fill-mask pipeline.
|
65 |
-
|
66 |
-
Raises:
|
67 |
-
BrokenPipeError: If the model has not been loaded before calling this method.
|
68 |
-
"""
|
69 |
-
self.logger.info(f"Called with {args = }")
|
70 |
-
if self.pipeline is None:
|
71 |
-
msg = "Model was not initialized, have you run load()?"
|
72 |
-
raise BrokenPipeError(msg)
|
73 |
-
|
74 |
-
self.logger.info(f"{self.pipeline.model.device = }")
|
75 |
-
pipe_out = self.pipeline(*args)
|
76 |
-
# Just use the first output
|
77 |
-
if not isinstance(pipe_out[0], dict):
|
78 |
-
pipe_out = pipe_out[0]
|
79 |
-
|
80 |
-
pipe_out = {oo['token_str']: oo['score'] for oo in pipe_out}
|
81 |
-
return pipe_out
|
82 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
npc_bert_models/summary_module.py
DELETED
@@ -1,82 +0,0 @@
|
|
1 |
-
from transformers import AutoTokenizer, EncoderDecoderModel
|
2 |
-
from transformers import pipeline as hf_pipeline
|
3 |
-
from pathlib import Path
|
4 |
-
import spaces
|
5 |
-
import re
|
6 |
-
from .app_logger import get_logger
|
7 |
-
|
8 |
-
class NpcBertGPT2():
|
9 |
-
logger = get_logger()
|
10 |
-
def __init__(self):
|
11 |
-
self.model = None
|
12 |
-
self.tokenizer = None
|
13 |
-
self.pipeline = None
|
14 |
-
# relative to app.py
|
15 |
-
self.pretrained_model = "./models/npc-bert-gpt2-best"
|
16 |
-
self.logger.info(f"Created {__class__.__name__} instance.")
|
17 |
-
|
18 |
-
def load(self):
|
19 |
-
"""Loads the fine-tuned EncoderDecoder model and related components.
|
20 |
-
|
21 |
-
This method initializes the model, tokenizer, and pipeline for the
|
22 |
-
report conclusion generation task using the pre-trained weights from the
|
23 |
-
specified directory.
|
24 |
-
|
25 |
-
Raises:
|
26 |
-
FileNotFoundError: If the pretrained model directory is not found.
|
27 |
-
"""
|
28 |
-
if not Path(self.pretrained_model).is_dir():
|
29 |
-
raise FileNotFoundError(f"Cannot found pretrained model at: {self.pretrained_model}")
|
30 |
-
|
31 |
-
self.model = EncoderDecoderModel.from_pretrained(self.pretrained_model)
|
32 |
-
self.tokenizer = AutoTokenizer.from_pretrained(self.pretrained_model)
|
33 |
-
|
34 |
-
self.pipeline = hf_pipeline("text2text-generation",
|
35 |
-
model=self.model,
|
36 |
-
tokenizer=self.tokenizer,
|
37 |
-
device_map='auto',
|
38 |
-
num_beams=4,
|
39 |
-
do_sample=True,
|
40 |
-
top_k = 5,
|
41 |
-
temperature=.95,
|
42 |
-
early_stopping=True,
|
43 |
-
no_repeat_ngram_size=5,
|
44 |
-
max_new_tokens=60)
|
45 |
-
|
46 |
-
|
47 |
-
@spaces.GPU
|
48 |
-
def __call__(self, *args):
|
49 |
-
"""Performs masked language modeling prediction.
|
50 |
-
|
51 |
-
This method should be called only after the `load` method has been executed
|
52 |
-
to ensure that the model and pipeline are properly initialized. It accepts
|
53 |
-
arguments to pass to the Hugging Face fill-mask pipeline.
|
54 |
-
|
55 |
-
Args:
|
56 |
-
*args: Variable length argument list to pass to the pipeline.
|
57 |
-
|
58 |
-
Returns:
|
59 |
-
The output of the fill-mask pipeline.
|
60 |
-
|
61 |
-
Raises:
|
62 |
-
BrokenPipeError: If the model has not been loaded before calling this method.
|
63 |
-
"""
|
64 |
-
if self.pipeline is None:
|
65 |
-
msg = "Model was not initialized, have you run load()?"
|
66 |
-
raise BrokenPipeError(msg)
|
67 |
-
|
68 |
-
self.logger.info(f"Model: {self.pipeline.model.device = }")
|
69 |
-
pipe_out, = self.pipeline(*args)
|
70 |
-
pipe_out = pipe_out['generated_text']
|
71 |
-
self.logger.info(f"Generated text: {pipe_out}")
|
72 |
-
|
73 |
-
# remove repeated lines by hard coding
|
74 |
-
mo = re.search("\. (questionable|anterio|zius)", pipe_out)
|
75 |
-
|
76 |
-
if mo is not None:
|
77 |
-
end_sig = mo.start()
|
78 |
-
pipe_out = pipe_out[:end_sig + 1]
|
79 |
-
self.logger.info(f"Displayed text: {pipe_out}")
|
80 |
-
return pipe_out
|
81 |
-
|
82 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
report_examples/NPC-report-1.txt
DELETED
@@ -1,24 +0,0 @@
|
|
1 |
-
History
|
2 |
-
NPC for screening MRI
|
3 |
-
|
4 |
-
MRI Nasopharynx and Neck.
|
5 |
-
A full staging scan was performed in view of preliminary findings
|
6 |
-
Axial T1W
|
7 |
-
Coronal T2W
|
8 |
-
Axial T2 SPIR
|
9 |
-
Axial and coronal T1W post contrast
|
10 |
-
Axial T1W FS post contrast
|
11 |
-
|
12 |
-
REPORT:
|
13 |
-
|
14 |
-
Primary Tumour
|
15 |
-
There is a small primary nasopharyngeal carcinoma involving all walls, but predominantly the right side, of the nasopharynx.
|
16 |
-
The nasal cavity, oropharynx and parapharyngeal regions are unremarkable. There are small bilateral otomastoid effusions.
|
17 |
-
The skull base is unremarkable, except for a very small area of abnormal signal in the superior aspect of the clivus which is of uncertain significance. The paranasal sinuses are unremarkable.
|
18 |
-
The cavernous sinus and sections of the cranium included on the scan are unremarkable.
|
19 |
-
|
20 |
-
Nodal Metastases
|
21 |
-
There are a few metastatic right retropharyngeal nodes measuring up to 8mm in diameter as well as a couple of smaller left retropharyngeal nodes that are non specific. Shotty small nodes are seen in the remainder of the neck, which are not suspicious by MRI criteria.
|
22 |
-
|
23 |
-
Conclusion
|
24 |
-
Nasopharyngeal carcinoma predominantly in the right walls of the nasopharynx. There is possibly very early extension into the right cavernous sinus. Small volume metastatic right retropharyngeal nodes. T1/2 N1.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
report_examples/NPC-report-2.txt
DELETED
@@ -1,28 +0,0 @@
|
|
1 |
-
MRI Nasopharynx and Neck.
|
2 |
-
|
3 |
-
Axial T1W
|
4 |
-
Coronal T2W
|
5 |
-
Axial T2 SPIR
|
6 |
-
Axial and coronal T1W post contrast
|
7 |
-
|
8 |
-
REPORT:
|
9 |
-
|
10 |
-
Primary Tumour
|
11 |
-
There is a nasopharyngeal carcinoma involving predominantly the right side of the nasopharynx.
|
12 |
-
There is tumour extension into the right sided preclival muscles and early extension into the right parapharyngeal region. No tumour extension into the nasal cavity or oropharynx.
|
13 |
-
Early skull base invasion into the right pterygoid process is present and tumour involves the right pterygopalatine fossa and abuts the right foramen lacerum. There are minor mucosal inflammatory changes in the paranasal sinuses.
|
14 |
-
The cavernous sinus and sections of the cranium included on the scan are unremarkable.
|
15 |
-
There is a right middle ear and mastoid effusion.
|
16 |
-
|
17 |
-
Findings:
|
18 |
-
The nasal cavity and oropharynx are not involved.
|
19 |
-
The parapharyngeal regions are unremarkable and there are no middle ear or mastoid effusions.
|
20 |
-
The skull base is unremarkable.
|
21 |
-
The cavernous sinus and sections of the cranium included on the scan are unremarkable.
|
22 |
-
|
23 |
-
Distant metastases
|
24 |
-
No distant metastases or second primary tumours are identified in the head and neck, upper thorax or bones.
|
25 |
-
|
26 |
-
CONCLUSION
|
27 |
-
1. Nasopharyngeal carcinoma with predominant mucosa and submucosa involvement.
|
28 |
-
2.Enlarged nodes in retropharyngeal, jugulodigastric/upper jugular chain and right middle jugular regions. These are suspicious of nodal metastases.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
report_examples/benign-report-1.txt
DELETED
@@ -1,11 +0,0 @@
|
|
1 |
-
MRI Nasopharynx
|
2 |
-
Technique
|
3 |
-
Axial T1W and T2SPIR
|
4 |
-
Axial and coronal T1W post contrast
|
5 |
-
|
6 |
-
Report
|
7 |
-
A small focal area of mucosal thickening (depth approximately 8 mm) is present in the central portion of the superior roof of the nasopharynx which is only present on one slice and lies immediately below the skull base. In addition at this site there appears to be a defect just the right of the midline and it is uncertain whether this could be the site of a biopsy, please correlate clinically. The parapharyngeal regions are normal.
|
8 |
-
Several small unremarkable upper cervical lymph nodes are noted.
|
9 |
-
|
10 |
-
Conclusion
|
11 |
-
Mild mucosal thickening is probably due to lymphoid hyperplasia.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
report_examples/benign-report-2.txt
DELETED
@@ -1,18 +0,0 @@
|
|
1 |
-
MRI Nasopharynx
|
2 |
-
|
3 |
-
Technique
|
4 |
-
Screening protocol
|
5 |
-
Axial T1W and T2SPIR
|
6 |
-
Axial and coronal T1W post contrast
|
7 |
-
|
8 |
-
Report
|
9 |
-
There is very mild generalized thickening of the walls of the nasopharynx suggesting lymphoid hyperplasia.No nasopharyngeal carcinoma is identified.
|
10 |
-
The parapharyngeal regions are normal.
|
11 |
-
No cervical lymphadenopathy.
|
12 |
-
In addition there is greater thickening in the central roof in the region of the adenoid, which is mildly asymmetrical, but no definite nasopharyngeal carcinoma is identified.
|
13 |
-
Inflammatory mucosal thickening in the right maxillary sinus.
|
14 |
-
There is a borderline enlarged left retropharyngeal node and very small right retropharyngeal and upper cervical nodes but no nodes with any definite metastatic features are identified.
|
15 |
-
The remainder of the scan is unremarkable
|
16 |
-
|
17 |
-
Conclusion
|
18 |
-
Mild mucosal thickening is probably due to lymphoid hyperplasia.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
report_examples_summary/NPC-report-1.txt
DELETED
@@ -1,22 +0,0 @@
|
|
1 |
-
History
|
2 |
-
NPC for screening MRI
|
3 |
-
|
4 |
-
MRI Nasopharynx and Neck.
|
5 |
-
A full staging scan was performed in view of preliminary findings
|
6 |
-
Axial T1W
|
7 |
-
Coronal T2W
|
8 |
-
Axial T2 SPIR
|
9 |
-
Axial and coronal T1W post contrast
|
10 |
-
Axial T1W FS post contrast
|
11 |
-
|
12 |
-
REPORT:
|
13 |
-
|
14 |
-
Primary Tumour
|
15 |
-
There is a small primary nasopharyngeal carcinoma involving all walls, but predominantly the right side, of the nasopharynx.
|
16 |
-
The nasal cavity, oropharynx and parapharyngeal regions are unremarkable. There are small bilateral otomastoid effusions.
|
17 |
-
The skull base is unremarkable, except for a very small area of abnormal signal in the superior aspect of the clivus which is of uncertain significance. The paranasal sinuses are unremarkable.
|
18 |
-
The cavernous sinus and sections of the cranium included on the scan are unremarkable.
|
19 |
-
|
20 |
-
Nodal Metastases
|
21 |
-
There are a few metastatic right retropharyngeal nodes measuring up to 8mm in diameter as well as a couple of smaller left retropharyngeal nodes that are non specific. Shotty small nodes are seen in the remainder of the neck, which are not suspicious by MRI criteria.
|
22 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
report_examples_summary/NPC-report-2.txt
DELETED
@@ -1,25 +0,0 @@
|
|
1 |
-
MRI Nasopharynx and Neck.
|
2 |
-
|
3 |
-
Axial T1W
|
4 |
-
Coronal T2W
|
5 |
-
Axial T2 SPIR
|
6 |
-
Axial and coronal T1W post contrast
|
7 |
-
|
8 |
-
REPORT:
|
9 |
-
|
10 |
-
Primary Tumour
|
11 |
-
There is a nasopharyngeal carcinoma involving predominantly the right side of the nasopharynx.
|
12 |
-
There is tumour extension into the right sided preclival muscles and early extension into the right parapharyngeal region. No tumour extension into the nasal cavity or oropharynx.
|
13 |
-
Early skull base invasion into the right pterygoid process is present and tumour involves the right pterygopalatine fossa and abuts the right foramen lacerum. There are minor mucosal inflammatory changes in the paranasal sinuses.
|
14 |
-
The cavernous sinus and sections of the cranium included on the scan are unremarkable.
|
15 |
-
There is a right middle ear and mastoid effusion.
|
16 |
-
|
17 |
-
Findings:
|
18 |
-
The nasal cavity and oropharynx are not involved.
|
19 |
-
The parapharyngeal regions are unremarkable and there are no middle ear or mastoid effusions.
|
20 |
-
The skull base is unremarkable.
|
21 |
-
The cavernous sinus and sections of the cranium included on the scan are unremarkable.
|
22 |
-
|
23 |
-
Distant metastases
|
24 |
-
No distant metastases or second primary tumours are identified in the head and neck, upper thorax or bones.
|
25 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
report_examples_summary/benign-report-1.txt
DELETED
@@ -1,9 +0,0 @@
|
|
1 |
-
MRI Nasopharynx
|
2 |
-
Technique
|
3 |
-
Axial T1W and T2SPIR
|
4 |
-
Axial and coronal T1W post contrast
|
5 |
-
|
6 |
-
Report
|
7 |
-
A small focal area of mucosal thickening (depth approximately 8 mm) is present in the central portion of the superior roof of the nasopharynx which is only present on one slice and lies immediately below the skull base. In addition at this site there appears to be a defect just the right of the midline and it is uncertain whether this could be the site of a biopsy, please correlate clinically. The parapharyngeal regions are normal.
|
8 |
-
Several small unremarkable upper cervical lymph nodes are noted.
|
9 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
report_examples_summary/benign-report-2.txt
DELETED
@@ -1,15 +0,0 @@
|
|
1 |
-
MRI Nasopharynx
|
2 |
-
|
3 |
-
Technique
|
4 |
-
Screening protocol
|
5 |
-
Axial T1W and T2SPIR
|
6 |
-
Axial and coronal T1W post contrast
|
7 |
-
|
8 |
-
Report
|
9 |
-
There is very mild generalized thickening of the walls of the nasopharynx suggesting lymphoid hyperplasia.No nasopharyngeal carcinoma is identified.
|
10 |
-
The parapharyngeal regions are normal.
|
11 |
-
No cervical lymphadenopathy.
|
12 |
-
In addition there is greater thickening in the central roof in the region of the adenoid, which is mildly asymmetrical, but no definite nasopharyngeal carcinoma is identified.
|
13 |
-
Inflammatory mucosal thickening in the right maxillary sinus.
|
14 |
-
There is a borderline enlarged left retropharyngeal node and very small right retropharyngeal and upper cervical nodes but no nodes with any definite metastatic features are identified.
|
15 |
-
The remainder of the scan is unremarkable
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
requirements.txt
DELETED
@@ -1,8 +0,0 @@
|
|
1 |
-
torch == 2.2.2
|
2 |
-
scikit-learn >= 1.4.0
|
3 |
-
pandas >= 2.1.4
|
4 |
-
transformers >= 4.37.2, < 4.50
|
5 |
-
numpy >= 1.26, < 2.0
|
6 |
-
gradio >= 4.18, < 4.50
|
7 |
-
scipy >= 1.12
|
8 |
-
spaces
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|