Vsevolod Ignatyev commited on
Deploy TinyModel1 from GitHub Actions
Browse files- README.md +25 -21
- artifact.json +20 -5
- config.json +1 -1
- eval_report.json +209 -0
- misclassified_sample.jsonl +100 -0
- model.safetensors +1 -1
- tokenizer.json +1199 -1199
- tokenizer_config.json +2 -2
README.md
CHANGED
|
@@ -3,14 +3,13 @@ license: apache-2.0
|
|
| 3 |
library_name: transformers
|
| 4 |
pipeline_tag: text-classification
|
| 5 |
datasets:
|
| 6 |
-
- ag_news
|
| 7 |
language:
|
| 8 |
- en
|
| 9 |
tags:
|
| 10 |
- tiny
|
| 11 |
- bert
|
| 12 |
- text-classification
|
| 13 |
-
- ag-news
|
| 14 |
---
|
| 15 |
|
| 16 |
<div align="center">
|
|
@@ -19,7 +18,7 @@ tags:
|
|
| 19 |
|
| 20 |
# TinyModel1
|
| 21 |
|
| 22 |
-
**TinyModel1** is a compact **encoder** model for **news topic classification
|
| 23 |
|
| 24 |
## Links
|
| 25 |
|
|
@@ -35,6 +34,7 @@ tags:
|
|
| 35 |
|:--|:--|
|
| 36 |
| **Task** | Text classification (single-label, 4 classes) |
|
| 37 |
| **Labels** | World, Sports, Business, Sci/Tech |
|
|
|
|
| 38 |
| **Architecture** | Tiny BERT-style encoder (`BertForSequenceClassification`) |
|
| 39 |
| **Parameters** | 1,339,268 (~1.34M) |
|
| 40 |
| **Max sequence length** | 128 tokens (training & inference) |
|
|
@@ -44,13 +44,13 @@ tags:
|
|
| 44 |
|
| 45 |
## Model overview
|
| 46 |
|
| 47 |
-
|
| 48 |
|
| 49 |
### **Core capabilities**
|
| 50 |
|
| 51 |
-
- **
|
| 52 |
-
- **Low latency** — small parameter count
|
| 53 |
-
- **Fine-tuning base** — swap labels or
|
| 54 |
|
| 55 |
---
|
| 56 |
|
|
@@ -58,8 +58,8 @@ This release fits a **small footprint** so you can run batch or interactive clas
|
|
| 58 |
|
| 59 |
| Setting | Value |
|
| 60 |
|:--|:--|
|
| 61 |
-
| **Train samples** | 3000 |
|
| 62 |
-
| **Eval samples** | 600 |
|
| 63 |
| **Epochs** | 2 |
|
| 64 |
| **Batch size** | 16 |
|
| 65 |
| **Learning rate** | 0.0001 |
|
|
@@ -71,10 +71,14 @@ This release fits a **small footprint** so you can run batch or interactive clas
|
|
| 71 |
|
| 72 |
| Metric | Value |
|
| 73 |
|:--|:--|
|
| 74 |
-
| **
|
| 75 |
-
| **
|
|
|
|
|
|
|
| 76 |
|
| 77 |
-
|
|
|
|
|
|
|
| 78 |
|
| 79 |
---
|
| 80 |
|
|
@@ -87,38 +91,38 @@ from transformers import pipeline
|
|
| 87 |
|
| 88 |
clf = pipeline(
|
| 89 |
"text-classification",
|
| 90 |
-
model="TinyModel1",
|
| 91 |
tokenizer="TinyModel1",
|
| 92 |
top_k=None,
|
| 93 |
)
|
| 94 |
-
text = "
|
| 95 |
print(clf(text))
|
| 96 |
```
|
| 97 |
|
| 98 |
-
Use `top_k=None` (or your Transformers version’s equivalent)
|
| 99 |
|
| 100 |
---
|
| 101 |
|
| 102 |
## Training data
|
| 103 |
|
| 104 |
-
- **Dataset:**
|
| 105 |
- **Preprocessing:** tokenizer trained on training texts; sequences truncated to 128 tokens.
|
| 106 |
|
| 107 |
---
|
| 108 |
|
| 109 |
## Intended use
|
| 110 |
|
| 111 |
-
- Prototyping **routing**, **tagging**, and **dashboard** features over
|
| 112 |
- Teaching and benchmarking small-classification setups.
|
| 113 |
-
- Starting point for **domain adaptation**
|
| 114 |
|
| 115 |
---
|
| 116 |
|
| 117 |
## Limitations
|
| 118 |
|
| 119 |
-
- **Accuracy** is modest by design;
|
| 120 |
-
- **
|
| 121 |
-
- **
|
| 122 |
|
| 123 |
---
|
| 124 |
|
|
|
|
| 3 |
library_name: transformers
|
| 4 |
pipeline_tag: text-classification
|
| 5 |
datasets:
|
| 6 |
+
- fancyzhx/ag_news
|
| 7 |
language:
|
| 8 |
- en
|
| 9 |
tags:
|
| 10 |
- tiny
|
| 11 |
- bert
|
| 12 |
- text-classification
|
|
|
|
| 13 |
---
|
| 14 |
|
| 15 |
<div align="center">
|
|
|
|
| 18 |
|
| 19 |
# TinyModel1
|
| 20 |
|
| 21 |
+
**TinyModel1** is a compact **encoder** model for **news topic classification, trained on the AG News dataset. It targets fast CPU/GPU inference and use as a baseline.**
|
| 22 |
|
| 23 |
## Links
|
| 24 |
|
|
|
|
| 34 |
|:--|:--|
|
| 35 |
| **Task** | Text classification (single-label, 4 classes) |
|
| 36 |
| **Labels** | World, Sports, Business, Sci/Tech |
|
| 37 |
+
| **Dataset** | `fancyzhx/ag_news` |
|
| 38 |
| **Architecture** | Tiny BERT-style encoder (`BertForSequenceClassification`) |
|
| 39 |
| **Parameters** | 1,339,268 (~1.34M) |
|
| 40 |
| **Max sequence length** | 128 tokens (training & inference) |
|
|
|
|
| 44 |
|
| 45 |
## Model overview
|
| 46 |
|
| 47 |
+
Trained with a WordPiece tokenizer fit on the training split and a shallow BERT stack. Replace the dataset and labels via `scripts/train_tinymodel1_classifier.py` for your own taxonomy.
|
| 48 |
|
| 49 |
### **Core capabilities**
|
| 50 |
|
| 51 |
+
- **Text routing** — assign one class per input for search, feeds, or triage.
|
| 52 |
+
- **Low latency** — small parameter count suits edge and serverless setups.
|
| 53 |
+
- **Fine-tuning base** — swap labels or data for your domain while keeping the same architecture.
|
| 54 |
|
| 55 |
---
|
| 56 |
|
|
|
|
| 58 |
|
| 59 |
| Setting | Value |
|
| 60 |
|:--|:--|
|
| 61 |
+
| **Train samples (cap)** | 3000 |
|
| 62 |
+
| **Eval samples (cap)** | 600 |
|
| 63 |
| **Epochs** | 2 |
|
| 64 |
| **Batch size** | 16 |
|
| 65 |
| **Learning rate** | 0.0001 |
|
|
|
|
| 71 |
|
| 72 |
| Metric | Value |
|
| 73 |
|:--|:--|
|
| 74 |
+
| **Accuracy** | 0.5150 |
|
| 75 |
+
| **Macro F1** | 0.4262 |
|
| 76 |
+
| **Weighted F1** | 0.4240 |
|
| 77 |
+
| **Final train loss** | 1.1535 |
|
| 78 |
|
| 79 |
+
Per-class F1 and the confusion matrix are saved in `eval_report.json` in this model directory.
|
| 80 |
+
|
| 81 |
+
Metrics are computed on the held-out eval subset (see `eval_report.json` → `reproducibility`); treat them as a **sanity-check baseline**, not a production SLA.
|
| 82 |
|
| 83 |
---
|
| 84 |
|
|
|
|
| 91 |
|
| 92 |
clf = pipeline(
|
| 93 |
"text-classification",
|
| 94 |
+
model="TinyModel1",
|
| 95 |
tokenizer="TinyModel1",
|
| 96 |
top_k=None,
|
| 97 |
)
|
| 98 |
+
text = "Your input text here."
|
| 99 |
print(clf(text))
|
| 100 |
```
|
| 101 |
|
| 102 |
+
Use `top_k=None` (or your Transformers version’s equivalent) for scores for **all** labels. Replace `"TinyModel1"` with your Hub model id when loading from the Hub.
|
| 103 |
|
| 104 |
---
|
| 105 |
|
| 106 |
## Training data
|
| 107 |
|
| 108 |
+
- **Dataset:** `fancyzhx/ag_news` (text column mapped for training; see `artifact.json`).
|
| 109 |
- **Preprocessing:** tokenizer trained on training texts; sequences truncated to 128 tokens.
|
| 110 |
|
| 111 |
---
|
| 112 |
|
| 113 |
## Intended use
|
| 114 |
|
| 115 |
+
- Prototyping **routing**, **tagging**, and **dashboard** features over short text.
|
| 116 |
- Teaching and benchmarking small-classification setups.
|
| 117 |
+
- Starting point for **domain adaptation** with your own labels.
|
| 118 |
|
| 119 |
---
|
| 120 |
|
| 121 |
## Limitations
|
| 122 |
|
| 123 |
+
- **Accuracy** is modest by design; validate on your data before high-stakes use.
|
| 124 |
+
- **Not a general-purpose language model** — classification head only; for generation use an LM.
|
| 125 |
+
- **Tokenizer and labels** are tied to this training run; mismatched inputs may degrade.
|
| 126 |
|
| 127 |
---
|
| 128 |
|
artifact.json
CHANGED
|
@@ -1,8 +1,13 @@
|
|
| 1 |
{
|
| 2 |
"name": "TinyModel1",
|
| 3 |
-
"version": "0.
|
| 4 |
"task": "text-classification",
|
| 5 |
-
"dataset": "ag_news",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
"base_model": "tinymodel1-bert-scratch",
|
| 7 |
"labels": [
|
| 8 |
"World",
|
|
@@ -10,12 +15,22 @@
|
|
| 10 |
"Business",
|
| 11 |
"Sci/Tech"
|
| 12 |
],
|
| 13 |
-
"eval_accuracy": 0.
|
| 14 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 15 |
"num_parameters": 1339268,
|
| 16 |
"max_train_samples": 3000,
|
| 17 |
"max_eval_samples": 600,
|
|
|
|
| 18 |
"epochs": 2,
|
| 19 |
"batch_size": 16,
|
| 20 |
-
"learning_rate": 0.0001
|
|
|
|
| 21 |
}
|
|
|
|
| 1 |
{
|
| 2 |
"name": "TinyModel1",
|
| 3 |
+
"version": "0.3.0",
|
| 4 |
"task": "text-classification",
|
| 5 |
+
"dataset": "fancyzhx/ag_news",
|
| 6 |
+
"dataset_config": null,
|
| 7 |
+
"train_split": "train",
|
| 8 |
+
"eval_split": "test",
|
| 9 |
+
"text_column": "text",
|
| 10 |
+
"label_column": "label",
|
| 11 |
"base_model": "tinymodel1-bert-scratch",
|
| 12 |
"labels": [
|
| 13 |
"World",
|
|
|
|
| 15 |
"Business",
|
| 16 |
"Sci/Tech"
|
| 17 |
],
|
| 18 |
+
"eval_accuracy": 0.515,
|
| 19 |
+
"eval_macro_f1": 0.4262,
|
| 20 |
+
"eval_weighted_f1": 0.424,
|
| 21 |
+
"eval_per_class_f1": {
|
| 22 |
+
"World": 0.4268,
|
| 23 |
+
"Sports": 0.7114,
|
| 24 |
+
"Business": 0.0,
|
| 25 |
+
"Sci/Tech": 0.5665
|
| 26 |
+
},
|
| 27 |
+
"train_loss": 1.1535,
|
| 28 |
"num_parameters": 1339268,
|
| 29 |
"max_train_samples": 3000,
|
| 30 |
"max_eval_samples": 600,
|
| 31 |
+
"max_seq_length": 128,
|
| 32 |
"epochs": 2,
|
| 33 |
"batch_size": 16,
|
| 34 |
+
"learning_rate": 0.0001,
|
| 35 |
+
"seed": 42
|
| 36 |
}
|
config.json
CHANGED
|
@@ -34,7 +34,7 @@
|
|
| 34 |
"pad_token_id": 0,
|
| 35 |
"problem_type": "single_label_classification",
|
| 36 |
"tie_word_embeddings": true,
|
| 37 |
-
"transformers_version": "5.
|
| 38 |
"type_vocab_size": 2,
|
| 39 |
"use_cache": true,
|
| 40 |
"vocab_size": 8000
|
|
|
|
| 34 |
"pad_token_id": 0,
|
| 35 |
"problem_type": "single_label_classification",
|
| 36 |
"tie_word_embeddings": true,
|
| 37 |
+
"transformers_version": "5.8.0",
|
| 38 |
"type_vocab_size": 2,
|
| 39 |
"use_cache": true,
|
| 40 |
"vocab_size": 8000
|
eval_report.json
ADDED
|
@@ -0,0 +1,209 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"reproducibility": {
|
| 3 |
+
"seed": 42,
|
| 4 |
+
"dataset": "fancyzhx/ag_news",
|
| 5 |
+
"dataset_config": null,
|
| 6 |
+
"train_split": "train",
|
| 7 |
+
"eval_split": "test",
|
| 8 |
+
"text_column": "text",
|
| 9 |
+
"label_column": "label",
|
| 10 |
+
"max_train_samples": 3000,
|
| 11 |
+
"max_eval_samples": 600,
|
| 12 |
+
"note": "Train and eval rows are the first N after shuffle(seed) of each split; see texts/eval-reproducibility.md."
|
| 13 |
+
},
|
| 14 |
+
"metrics": {
|
| 15 |
+
"accuracy": 0.515,
|
| 16 |
+
"macro_f1": 0.426181,
|
| 17 |
+
"weighted_f1": 0.424034,
|
| 18 |
+
"per_class_f1": {
|
| 19 |
+
"World": 0.426778,
|
| 20 |
+
"Sports": 0.711443,
|
| 21 |
+
"Business": 0.0,
|
| 22 |
+
"Sci/Tech": 0.566502
|
| 23 |
+
},
|
| 24 |
+
"confusion_matrix": [
|
| 25 |
+
[
|
| 26 |
+
51,
|
| 27 |
+
82,
|
| 28 |
+
0,
|
| 29 |
+
15
|
| 30 |
+
],
|
| 31 |
+
[
|
| 32 |
+
1,
|
| 33 |
+
143,
|
| 34 |
+
1,
|
| 35 |
+
2
|
| 36 |
+
],
|
| 37 |
+
[
|
| 38 |
+
18,
|
| 39 |
+
13,
|
| 40 |
+
0,
|
| 41 |
+
121
|
| 42 |
+
],
|
| 43 |
+
[
|
| 44 |
+
21,
|
| 45 |
+
17,
|
| 46 |
+
0,
|
| 47 |
+
115
|
| 48 |
+
]
|
| 49 |
+
],
|
| 50 |
+
"confusion_matrix_axis": "rows=true class, columns=predicted class",
|
| 51 |
+
"label_order": [
|
| 52 |
+
"World",
|
| 53 |
+
"Sports",
|
| 54 |
+
"Business",
|
| 55 |
+
"Sci/Tech"
|
| 56 |
+
]
|
| 57 |
+
},
|
| 58 |
+
"dataset_quality": {
|
| 59 |
+
"class_distribution": {
|
| 60 |
+
"train": {
|
| 61 |
+
"counts_by_label": {
|
| 62 |
+
"World": 771,
|
| 63 |
+
"Sports": 742,
|
| 64 |
+
"Business": 691,
|
| 65 |
+
"Sci/Tech": 796
|
| 66 |
+
},
|
| 67 |
+
"proportions_by_label": {
|
| 68 |
+
"World": 0.257,
|
| 69 |
+
"Sports": 0.247333,
|
| 70 |
+
"Business": 0.230333,
|
| 71 |
+
"Sci/Tech": 0.265333
|
| 72 |
+
},
|
| 73 |
+
"total": 3000
|
| 74 |
+
},
|
| 75 |
+
"eval": {
|
| 76 |
+
"counts_by_label": {
|
| 77 |
+
"World": 148,
|
| 78 |
+
"Sports": 147,
|
| 79 |
+
"Business": 152,
|
| 80 |
+
"Sci/Tech": 153
|
| 81 |
+
},
|
| 82 |
+
"proportions_by_label": {
|
| 83 |
+
"World": 0.246667,
|
| 84 |
+
"Sports": 0.245,
|
| 85 |
+
"Business": 0.253333,
|
| 86 |
+
"Sci/Tech": 0.255
|
| 87 |
+
},
|
| 88 |
+
"total": 600
|
| 89 |
+
}
|
| 90 |
+
}
|
| 91 |
+
},
|
| 92 |
+
"error_analysis": {
|
| 93 |
+
"top_confusions": [
|
| 94 |
+
{
|
| 95 |
+
"true_label": "Business",
|
| 96 |
+
"predicted_label": "Sci/Tech",
|
| 97 |
+
"count": 121
|
| 98 |
+
},
|
| 99 |
+
{
|
| 100 |
+
"true_label": "World",
|
| 101 |
+
"predicted_label": "Sports",
|
| 102 |
+
"count": 82
|
| 103 |
+
},
|
| 104 |
+
{
|
| 105 |
+
"true_label": "Sci/Tech",
|
| 106 |
+
"predicted_label": "World",
|
| 107 |
+
"count": 21
|
| 108 |
+
},
|
| 109 |
+
{
|
| 110 |
+
"true_label": "Business",
|
| 111 |
+
"predicted_label": "World",
|
| 112 |
+
"count": 18
|
| 113 |
+
},
|
| 114 |
+
{
|
| 115 |
+
"true_label": "Sci/Tech",
|
| 116 |
+
"predicted_label": "Sports",
|
| 117 |
+
"count": 17
|
| 118 |
+
},
|
| 119 |
+
{
|
| 120 |
+
"true_label": "World",
|
| 121 |
+
"predicted_label": "Sci/Tech",
|
| 122 |
+
"count": 15
|
| 123 |
+
},
|
| 124 |
+
{
|
| 125 |
+
"true_label": "Business",
|
| 126 |
+
"predicted_label": "Sports",
|
| 127 |
+
"count": 13
|
| 128 |
+
},
|
| 129 |
+
{
|
| 130 |
+
"true_label": "Sports",
|
| 131 |
+
"predicted_label": "Sci/Tech",
|
| 132 |
+
"count": 2
|
| 133 |
+
},
|
| 134 |
+
{
|
| 135 |
+
"true_label": "Sports",
|
| 136 |
+
"predicted_label": "World",
|
| 137 |
+
"count": 1
|
| 138 |
+
},
|
| 139 |
+
{
|
| 140 |
+
"true_label": "Sports",
|
| 141 |
+
"predicted_label": "Business",
|
| 142 |
+
"count": 1
|
| 143 |
+
}
|
| 144 |
+
]
|
| 145 |
+
},
|
| 146 |
+
"calibration": {
|
| 147 |
+
"max_prob_histogram": {
|
| 148 |
+
"num_bins": 10,
|
| 149 |
+
"bins": [
|
| 150 |
+
{
|
| 151 |
+
"bin_low": 0.0,
|
| 152 |
+
"bin_high": 0.1,
|
| 153 |
+
"count": 0
|
| 154 |
+
},
|
| 155 |
+
{
|
| 156 |
+
"bin_low": 0.1,
|
| 157 |
+
"bin_high": 0.2,
|
| 158 |
+
"count": 0
|
| 159 |
+
},
|
| 160 |
+
{
|
| 161 |
+
"bin_low": 0.2,
|
| 162 |
+
"bin_high": 0.3,
|
| 163 |
+
"count": 1
|
| 164 |
+
},
|
| 165 |
+
{
|
| 166 |
+
"bin_low": 0.3,
|
| 167 |
+
"bin_high": 0.4,
|
| 168 |
+
"count": 24
|
| 169 |
+
},
|
| 170 |
+
{
|
| 171 |
+
"bin_low": 0.4,
|
| 172 |
+
"bin_high": 0.5,
|
| 173 |
+
"count": 237
|
| 174 |
+
},
|
| 175 |
+
{
|
| 176 |
+
"bin_low": 0.5,
|
| 177 |
+
"bin_high": 0.6,
|
| 178 |
+
"count": 175
|
| 179 |
+
},
|
| 180 |
+
{
|
| 181 |
+
"bin_low": 0.6,
|
| 182 |
+
"bin_high": 0.7,
|
| 183 |
+
"count": 163
|
| 184 |
+
},
|
| 185 |
+
{
|
| 186 |
+
"bin_low": 0.7,
|
| 187 |
+
"bin_high": 0.8,
|
| 188 |
+
"count": 0
|
| 189 |
+
},
|
| 190 |
+
{
|
| 191 |
+
"bin_low": 0.8,
|
| 192 |
+
"bin_high": 0.9,
|
| 193 |
+
"count": 0
|
| 194 |
+
},
|
| 195 |
+
{
|
| 196 |
+
"bin_low": 0.9,
|
| 197 |
+
"bin_high": 1.0,
|
| 198 |
+
"count": 0
|
| 199 |
+
}
|
| 200 |
+
],
|
| 201 |
+
"note": "Each eval example contributes one max softmax probability (winner class)."
|
| 202 |
+
}
|
| 203 |
+
},
|
| 204 |
+
"routing": {
|
| 205 |
+
"fallback_behavior": "At inference, if the maximum softmax probability is below `min_confidence`, treat the prediction as low-confidence: route to human review, a secondary model, or a safe default class\u2014choose per product.",
|
| 206 |
+
"min_confidence": null,
|
| 207 |
+
"comment": "`min_confidence` is not set by training; typical starting range is 0.5\u20130.7 for routing. Tune on a validation set using `max_prob` histogram and error analysis."
|
| 208 |
+
}
|
| 209 |
+
}
|
misclassified_sample.jsonl
ADDED
|
@@ -0,0 +1,100 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{"text": "Indian board plans own telecast of Australia series The Indian cricket board said on Wednesday it was making arrangements on its own to broadcast next month #39;s test series against Australia, which is under threat because of a raging TV rights dispute.", "true_label": "Sports", "predicted_label": "World", "max_prob": 0.485279}
|
| 2 |
+
{"text": "Stocks Higher on Drop in Jobless Claims A sharp drop in initial unemployment claims and bullish forecasts from Nokia and Texas Instruments sent stocks slightly higher in early trading Thursday.", "true_label": "Business", "predicted_label": "Sci/Tech", "max_prob": 0.445942}
|
| 3 |
+
{"text": "Stocks Higher on Drop in Jobless Claims A sharp drop in initial unemployment claims and bullish forecasts from Nokia and Texas Instruments sent stocks higher in early trading Thursday.", "true_label": "Business", "predicted_label": "Sci/Tech", "max_prob": 0.449751}
|
| 4 |
+
{"text": "REVIEW: 'Half-Life 2' a Tech Masterpiece (AP) AP - It's been six years since Valve Corp. perfected the first-person shooter with \"Half-Life.\" Video games have come a long way since, with better graphics and more options than ever. Still, relatively few games have mustered this one's memorable characters and original science fiction story.", "true_label": "Sci/Tech", "predicted_label": "World", "max_prob": 0.409015}
|
| 5 |
+
{"text": "China's inflation rate slows sharply but problems remain (AFP) AFP - China's inflation rate eased sharply in October as government efforts to cool the economy began to really bite, with food prices, one of the main culprits, showing some signs of slowing, official data showed.", "true_label": "World", "predicted_label": "Sci/Tech", "max_prob": 0.467996}
|
| 6 |
+
{"text": "ADV: Try Currency Trading Risk-Free 30 Days 24-hour commission-free trading, 100-to-1 leverage of your capital, and Dealbook Fx 2 - our free advanced trading software. Sign up for our free 30-day trial and receive one-on-one training.", "true_label": "Business", "predicted_label": "Sci/Tech", "max_prob": 0.496622}
|
| 7 |
+
{"text": "OPEC Can Raise Output Capacity by 1 Mln Barrels/Day (Update1) The Organization of Petroleum Exporting Countries, which supplies a third of the world #39;s crude oil, can raise production capacity by 1 million barrels a day by year-end, OPEC President Purnomo Yusgiantoro said.", "true_label": "Business", "predicted_label": "World", "max_prob": 0.444693}
|
| 8 |
+
{"text": "Amazon Snaps Up China's Largest Web Retailer (NewsFactor) NewsFactor - Amazon.com (Nasdaq: AMZN) has said it will buy Joyo.com Limited -- a British Virgin Islands company that operates the largest Internet retail Web site in China -- for US #36;75 million.", "true_label": "Business", "predicted_label": "Sci/Tech", "max_prob": 0.496007}
|
| 9 |
+
{"text": "Bookies take bets on new Band Aid Bookies take bets on a new Band Aid single being Christmas No 1, expected to be confirmed by Midge Ure.", "true_label": "World", "predicted_label": "Sports", "max_prob": 0.601988}
|
| 10 |
+
{"text": "Microsoft, EU Officials in Procedure Meeting Microsoft (Quote, Chart) and representatives of the European Union #39;s Competition Commission will sit down at the table together on Thursday, but it won #39;t be to eat.", "true_label": "Business", "predicted_label": "Sci/Tech", "max_prob": 0.511439}
|
| 11 |
+
{"text": "Nevada Implements 1st Touch-Screen Voting Machines With Paper-Trail By RACHEL KONRAD CARSON CITY, Nev. (AP) -- In what could become a model for other states, Nevada voters on Tuesday became the first in the nation to cast ballots in a statewide election on computers that printed paper records of electronic ballots...", "true_label": "Sci/Tech", "predicted_label": "World", "max_prob": 0.520874}
|
| 12 |
+
{"text": "UN aid plane shot at in Ivory Coast Abidjan - A United Nations World Food Programme (WFP) plane was met with gunfire and threats when it arrived in Man, western Ivory Coast, the UN said in a statement on Saturday.", "true_label": "World", "predicted_label": "Sports", "max_prob": 0.564946}
|
| 13 |
+
{"text": "Vampire: The Masquerade - Bloodlines Review November 17, 2004 - Most of us who #39;ve been gamers for a while are familiar with the history behind Troika, which was formed from key members of the Black Isle group that made the Fallout, among other talented individuals.", "true_label": "Sci/Tech", "predicted_label": "Sports", "max_prob": 0.467514}
|
| 14 |
+
{"text": "Israel Destroys Refugee Homes, Kills One GAZA CITY, Gaza Strip - A day after a mortar round killed an Israeli-American woman in a nearby settlement, the Israeli army charged into a Palestinian refugee camp Saturday, killing one person and tearing down 35 homes, witnesses and a U.N. aid official said...", "true_label": "World", "predicted_label": "Sports", "max_prob": 0.495682}
|
| 15 |
+
{"text": "Kerry assails Bush troop withdrawal plan (AFP) AFP - Democratic White House hopeful Senator John Kerry warned that President George W. Bush's plan to withdraw 70,000 troops from Europe and Asia would hinder the war on terrorism and embolden North Korea.", "true_label": "World", "predicted_label": "Sports", "max_prob": 0.528166}
|
| 16 |
+
{"text": "TSA Deal Overpaid Boeing, Report Says Boeing Co. received at least \\$49 million in excessive profits on a \\$1.2 billion contract to supply explosives-detection systems to hundreds of the nation #39;s airports, the Department of Homeland ", "true_label": "Business", "predicted_label": "Sci/Tech", "max_prob": 0.463929}
|
| 17 |
+
{"text": "Shares Gain While Oil Holds Near \\$50 LONDON (Reuters) - European stock markets rose and absorbed three separate share placings on Wednesday, boosted by Wall Street's strong finish while oil prices held close to \\$50 a barrel ahead of U.S. oil inventory data.", "true_label": "Business", "predicted_label": "Sci/Tech", "max_prob": 0.489279}
|
| 18 |
+
{"text": "Red Hat replaces CFO Red Hat on Thursday named Charles Peters Jr. as executive vice president and chief financial officer. Peters replaces Kevin Thompson, who unexpectedly announced his resignation in June, a few days before the ", "true_label": "Business", "predicted_label": "Sports", "max_prob": 0.651315}
|
| 19 |
+
{"text": "Jobless Claims Rise Unexpectedly WASHINGTON (Reuters) - The number of Americans filing initial claims for jobless pay grew unexpectedly last week to 357,000, Labor Department data showed on Thursday, but an official said an increase in the week after a public holiday was typical.", "true_label": "Business", "predicted_label": "Sci/Tech", "max_prob": 0.478942}
|
| 20 |
+
{"text": "Auto Parts Sector Falls on Delphi News Investors sold off shares of auto parts makers Friday after Delphi Corp. issued a profit warning and said it would cut nearly 5 percent of its work force next year.", "true_label": "Business", "predicted_label": "Sci/Tech", "max_prob": 0.492736}
|
| 21 |
+
{"text": "Hasbro's No Conehead Its Saturday Night Live version of \"Trivial Pursuit\" is good strategy for staying ahead of age compression.", "true_label": "Business", "predicted_label": "Sports", "max_prob": 0.627061}
|
| 22 |
+
{"text": "Intel dauphin Otellini becomes king Intel #39;s board has given the go ahead for the long anticipated shift in power from current CEO Craig Barrett to current President Paul Otellini Come May 18, Otellini will take over the chipmaker and become its fifth ever CEO.", "true_label": "Business", "predicted_label": "Sci/Tech", "max_prob": 0.452937}
|
| 23 |
+
{"text": "India's Tata expands regional footprint via NatSteel buyout (AFP) AFP - India's Tata Iron and Steel Company Ltd. took a strategic step to expand its Asian footprint with the announcement it will buy the Asia-Pacific steel operations of Singapore's NatSteel Ltd.", "true_label": "World", "predicted_label": "Sci/Tech", "max_prob": 0.490368}
|
| 24 |
+
{"text": "Ken Caminiti, 1996 NL MVP, Dies at Age 41 NEW YORK - Ken Caminiti, the 1996 National League MVP who later admitted using steroids during his major league career, died Sunday. He was 41...", "true_label": "World", "predicted_label": "Sports", "max_prob": 0.680263}
|
| 25 |
+
{"text": "The Next Shock: Not Oil, but Debt The American economic ship, which has weathered the recent run-up in crude oil prices, may be more vulnerable to sudden surges in the price of money.", "true_label": "Business", "predicted_label": "Sci/Tech", "max_prob": 0.462241}
|
| 26 |
+
{"text": "One held in Jakarta embassy blast probe Indonesian police said on Friday they had made their first arrest directly linked to last week #39;s deadly embassy bombing in Jakarta, detaining a man who delivered explosives to those blamed for the attack.", "true_label": "World", "predicted_label": "Sports", "max_prob": 0.579313}
|
| 27 |
+
{"text": "Oil price rise adds to airlines woes as losses continue The global airline industry is forecast to have made net losses of \\$4.8bn this year, as the rise in the oil price has overwhelmed efforts by carriers to cut costs.", "true_label": "Business", "predicted_label": "Sci/Tech", "max_prob": 0.49329}
|
| 28 |
+
{"text": "United #39;s pension dilemma United Airlines says it likely will end funding for employee pension plans, a move that would be the largest ever default by a US company and could lead to a taxpayer-funded bailout rivaling the savings-and-loan fiasco of the 1980s.", "true_label": "Business", "predicted_label": "Sci/Tech", "max_prob": 0.484973}
|
| 29 |
+
{"text": "UN 'must ignore cloning ban call' The UK's Royal Society urges the UN to ignore a call by President Bush to ban all forms of human cloning.", "true_label": "Sci/Tech", "predicted_label": "World", "max_prob": 0.493441}
|
| 30 |
+
{"text": "UPDATE 1-UPS buys CNF #39;s Menlo Worldwide United Parcel Service Inc. (UPS.N: Quote, Profile, Research) agreed to buy Menlo Worldwide Forwarding, a unit of CNF Inc. (CNF.N: Quote, Profile, Research) , for \\$150 million in ", "true_label": "Business", "predicted_label": "Sci/Tech", "max_prob": 0.495311}
|
| 31 |
+
{"text": "Hewlett-Packard buys Synstar Palo Alto-based Hewlett-Packard Co. has bought IT services company Synstar plc, of Bracknell, England for about \\$293.3 million. Synstar has some 1,500 customers across Europe, selling IT support for various computer platforms.", "true_label": "Business", "predicted_label": "Sci/Tech", "max_prob": 0.496921}
|
| 32 |
+
{"text": "N.Korea called worst for press freedom Media watchdog Reporters Without Borders has labeled North Korea and Cuba the worst countries in terms of press freedom, with Denmark being the best.", "true_label": "World", "predicted_label": "Sports", "max_prob": 0.522785}
|
| 33 |
+
{"text": "Headshake to the SETI Headfake Did the famous screensaver, SETIhome, uncover the first strong evidence for an extraterrestrial signal? The SETI Institute's Seth Shostak discusses how hyperbole can misrepresent the last addition to a list of stellar candidates.", "true_label": "Sci/Tech", "predicted_label": "World", "max_prob": 0.490704}
|
| 34 |
+
{"text": "UnitedHealthcare pays \\$3.5M to settle Medicare fraud claim UnitedHealthcare Insurance Co., a branch of UnitedHealth Group, will pay \\$3.5 million to settle charges that it defrauded the Medicare program, the US Department of Justice announced Monday.", "true_label": "Business", "predicted_label": "Sci/Tech", "max_prob": 0.452892}
|
| 35 |
+
{"text": "Level 3 Acquires Sprint #39;s Wholesale Dial-Up Internet Business Level 3 today announced that it has purchased Sprint #39;s wholesale dial-up Internet access business for \\$34 million in cash. Sprint is one of the largest providers of wholesale dial-up service to ISPs in North America.", "true_label": "Business", "predicted_label": "Sci/Tech", "max_prob": 0.501144}
|
| 36 |
+
{"text": "Dodgers Nip Giants 3-2 in Crucial Series SAN FRANCISCO - Shawn Green can sit out Saturday knowing he was a huge help to the Dodgers during their crucial series against San Francisco. Green hit a two-run homer in Los Angeles' 3-2 victory over the Giants on Friday night, a day before the first baseman will miss a game to observe the Jewish holiday Yom Kippur...", "true_label": "World", "predicted_label": "Sports", "max_prob": 0.662953}
|
| 37 |
+
{"text": "CHUCK JAFFE BOSTON (CBS.MW) -- A lot of people got excited when Fidelity Investments announced recently that it was cutting fees on five index mutual funds.", "true_label": "Business", "predicted_label": "World", "max_prob": 0.461596}
|
| 38 |
+
{"text": "Roundup: Pleasantly Perfect takes Pacific Classic Favored Pleasantly Perfect took charge down the stretch to win by a length in the 14th running of the \\$1 million Pacific Classic yesterday at Del Mar. Pleasantly ", "true_label": "Sports", "predicted_label": "Business", "max_prob": 0.275798}
|
| 39 |
+
{"text": "Update 1: UAL Posts \\$274M Loss, Capping Bad Quarter Record fuel costs and low air fares contributed to a \\$274 million third-quarter loss for United Airlines #39; parent company, which warned again that labor costs must be slashed again soon in order for it to emerge from bankruptcy.", "true_label": "Business", "predicted_label": "Sci/Tech", "max_prob": 0.492365}
|
| 40 |
+
{"text": "Sharon 'at risk of assassination' Israel's opposition leader warns that the prime minister risks being assassinated over his Gaza disengagement plan.", "true_label": "World", "predicted_label": "Sports", "max_prob": 0.549887}
|
| 41 |
+
{"text": "Arson attack on Jewish centre in Paris (AFP) AFP - A Jewish social centre in central Paris was destroyed by fire overnight in an anti-Semitic arson attack, city authorities said.", "true_label": "World", "predicted_label": "Sports", "max_prob": 0.548172}
|
| 42 |
+
{"text": "Consumer spending jumped in September WASHINGTON - Consumers, who substantially slowed down their spending in late summer, roared back to life in September, boosting their purchases by 0.6 percent.", "true_label": "Business", "predicted_label": "Sci/Tech", "max_prob": 0.486617}
|
| 43 |
+
{"text": "Editorial: Sub incident shows China #39;s stripes After days of speculation and a chase by Japanese destroyers and a surveillance plane, it has finally been determined that the nuclear submarine that intruded into Japanese territorial water between Okinawa and Taiwan was Chinese.", "true_label": "World", "predicted_label": "Sports", "max_prob": 0.462702}
|
| 44 |
+
{"text": "Rebound in US consumer spending US consumer spending rebounded in July, a sign the economy may be emerging from an early summer decline. Consumer spending rose 0.8 last month, boosted by car and retail sales.", "true_label": "Business", "predicted_label": "Sci/Tech", "max_prob": 0.486717}
|
| 45 |
+
{"text": "Oil Falls to 4-Month Low on Signs of Heating-Oil Supply Rise Crude oil fell to the lowest in more than four months on speculation that warm weather and increased refinery production bolstered US heating-oil stockpiles last week.", "true_label": "Business", "predicted_label": "Sci/Tech", "max_prob": 0.483435}
|
| 46 |
+
{"text": "Wall St.'s Nest Egg - the Housing Sector NEW YORK (Reuters) - If there were any doubts that we're still living in the era of the stay-at-home economy, the rows of empty seats at the Athens Olympics should help erase them.", "true_label": "Business", "predicted_label": "Sports", "max_prob": 0.50777}
|
| 47 |
+
{"text": "Deutsche Bank to Sell Scudder Business to Legg Mason Deutsche Bank AG of Germany plans to sell its New York, Philadelphia, Cincinnati and Chicago offices of Scudder Private Investment Counsel to Legg Mason Inc. for \\$55 million, plus payments of up to \\$26 million, the company said Monday.", "true_label": "Business", "predicted_label": "Sci/Tech", "max_prob": 0.493886}
|
| 48 |
+
{"text": "Oil Prices Sink to a Four-Month Low LONDON (Reuters) - Oil prices sank to a four-month low below \\$41 for U.S. crude on Wednesday after leading OPEC producer Saudi Arabia questioned the need for the cartel to curb supplies.", "true_label": "Business", "predicted_label": "Sci/Tech", "max_prob": 0.476556}
|
| 49 |
+
{"text": "Symantec Said to Be in Talks for Veritas Symantec, which produces the Norton line of computer products, is in talks to acquire Veritas Software, a maker of data backup programs.", "true_label": "Business", "predicted_label": "Sci/Tech", "max_prob": 0.502015}
|
| 50 |
+
{"text": "Gold Fields loses high court bid to halt Harmony takeover South African mining giant Gold Fields lost a high court bid to halt a hostile takeover by rival Harmony Gold, which is seeking to create the world #39;s biggest gold producer, a court official said.", "true_label": "Business", "predicted_label": "Sci/Tech", "max_prob": 0.420627}
|
| 51 |
+
{"text": "The Handbag? Total Knockoff. The Price Tag? All Too Real. It is as much a rite of the New York holiday season as sidewalk Santas or crowded Fifth Avenue sidewalks: the proliferation of hawkers selling counterfeit products like the fake Fendi handbag, the replica Rolex watch and the pirated DVD.", "true_label": "Business", "predicted_label": "World", "max_prob": 0.480361}
|
| 52 |
+
{"text": "Bedding Blip? Go Back to Sleep This is getting old. Every time Hidden Gems selection Select Comfort (Nasdaq: SCSS) gets settled in and ready for a long night #39;s rest full of dreams of two-times-in-three-years capital gains, along ", "true_label": "Business", "predicted_label": "Sports", "max_prob": 0.568377}
|
| 53 |
+
{"text": "Mars water tops science honours The discovery that salty, acidic water once flowed across the surface of Mars has topped a list of the 10 key scientific advances of 2004.", "true_label": "World", "predicted_label": "Sci/Tech", "max_prob": 0.331842}
|
| 54 |
+
{"text": "France, Ivory Coast relations worsen Nine French peacekeepers were killed during an air raid by Ivorian bombers more than a week ago. France responded by destroying most of the Ivorian air force.", "true_label": "World", "predicted_label": "Sports", "max_prob": 0.518902}
|
| 55 |
+
{"text": "WordsWorth Books files Chapter 11 WordsWorth Books, a Harvard Square institution for 29 years, yesterday filed for bankruptcy protection, as its owners seek a buyer or investor to help the independent bookseller compete with giant rivals like Amazon.com.", "true_label": "Business", "predicted_label": "Sci/Tech", "max_prob": 0.480633}
|
| 56 |
+
{"text": "Toys Will Be Toys Trust me, you don #39;t want to see desperate parents shopping over the holidays. I was at Circuit City (NYSE: CC) last week and saw a mother pleading with a sales clerk for a Nintendo DS portable video game system.", "true_label": "Sci/Tech", "predicted_label": "World", "max_prob": 0.383977}
|
| 57 |
+
{"text": "Vodafone begins 3G service Vodafone launches its third-generation services for mobile phones, offering video calls, music downloads and games.", "true_label": "Business", "predicted_label": "Sci/Tech", "max_prob": 0.504971}
|
| 58 |
+
{"text": "Georgia Evolution Dispute Embarrasses Some Atlanta, Nov. 11 - First, Georgia #39;s education chief tried to take the word quot;evolution quot; out of the state #39;s science curriculum.", "true_label": "Sci/Tech", "predicted_label": "Sports", "max_prob": 0.495901}
|
| 59 |
+
{"text": "Oil Down 3 Pct. as U.S. Winter Stays Mild NEW YORK (Reuters) - Oil prices slid 3 percent on Monday on expectations that more mild U.S. weather at the start of the New Year will limit heating oil demand.", "true_label": "Business", "predicted_label": "Sci/Tech", "max_prob": 0.481833}
|
| 60 |
+
{"text": "Lucent's history a case study in wild rides If you've ever wondered what ignited America's late-1990s obsession with telecom and tech stocks, you could well argue it all started with Lucent Technologies .", "true_label": "Business", "predicted_label": "Sci/Tech", "max_prob": 0.35487}
|
| 61 |
+
{"text": "General Mills converting all US cereals to whole grain GOLDEN VALLEY, Minn. -- Breakfast cereal maker General Mills is converting all of its cereals to whole grain. The company says it becomes the first leading food company to make the move involving cereals.", "true_label": "Business", "predicted_label": "Sci/Tech", "max_prob": 0.494894}
|
| 62 |
+
{"text": "Taking Advantage of the Terminally Stupid Would you pay \\$4 for something that, at best, is worth a dime? Concord Communications shareholders would.", "true_label": "Business", "predicted_label": "Sci/Tech", "max_prob": 0.394048}
|
| 63 |
+
{"text": "West Japan on Guard for Aftershocks After Quakes TOKYO (Reuters) - Residents of western Japan were warned of possible aftershocks on Monday after two strong earthquakes the previous day but authorities said the tremors were not directly linked to a cycle of major seismic activity that hits the region every century or so.", "true_label": "World", "predicted_label": "Sports", "max_prob": 0.58476}
|
| 64 |
+
{"text": "Bush Blames Poorly Made Shirt for Bulge (AP) AP - President Bush sees the value #151; and the humor #151; in the idea that aides could secretly feed him advice through a radio receiver hidden on his back.", "true_label": "World", "predicted_label": "Sports", "max_prob": 0.61032}
|
| 65 |
+
{"text": "Black Watch troops move into position The first units of a Black Watch battlegroup are due to arrive today in their new positions south of Baghdad as Tony Blair indicated that more British troops may replace them in the American-controlled zone before the end of the year.", "true_label": "World", "predicted_label": "Sports", "max_prob": 0.512313}
|
| 66 |
+
{"text": "BSkyB sees profits rise after strong subscriber growth (AFP) AFP - British satellite broadcaster BSkyB said profit rose by 16 percent in the first quarter as the group enjoyed strong subscriber growth in the run-up to the key Christmas trading period.", "true_label": "World", "predicted_label": "Sci/Tech", "max_prob": 0.484029}
|
| 67 |
+
{"text": "Al Qaeda Urge Wide-Scale Muslim Resistance Al Qaeda #39;s No. 2 man Ayman Zawahiri called for an all-out armed resistance in the Muslim world against the West and Jews whom he described as crusaders.", "true_label": "World", "predicted_label": "Sports", "max_prob": 0.638306}
|
| 68 |
+
{"text": "Final Round in Cable-ISP Fight The U.S. Supreme Court has agreed to hear whether cable operators must give access to their lines to third-party ISPs. Michael Grebb reports from Washington.", "true_label": "Sci/Tech", "predicted_label": "Sports", "max_prob": 0.596346}
|
| 69 |
+
{"text": "PeopleSofts big bash See you next year in Las Vegas , proclaimed a marquee at the PeopleSoft user conference in San Francisco in late September. It was one of many not-so-subtle attempts by the company to reassure its customers ", "true_label": "Business", "predicted_label": "Sci/Tech", "max_prob": 0.488586}
|
| 70 |
+
{"text": "EBay #39;s Buy Of Rent.com May Lack Strategic Sense Standard amp; Poor #39;s Equity Research said the purchase of Rent.com by eBay (nasdaq: EBAY - news - people ) could be a bit of a miscalculation.", "true_label": "Business", "predicted_label": "Sci/Tech", "max_prob": 0.495739}
|
| 71 |
+
{"text": "Sharon to Hold Tense Meeting With Settlers JERUSALEM - After more than a year of avoiding Jewish settlers, Israeli Prime Minister Ariel Sharon has decided to directly confront his former supporters in a meeting about his contentious plan to withdraw from the Gaza Strip and part of the West Bank. Sharon invited settler leaders to meet with him in Jerusalem on Sunday, just a week before he presents his \"disengagement\" plan to parliament...", "true_label": "World", "predicted_label": "Sports", "max_prob": 0.614542}
|
| 72 |
+
{"text": "Black Market in British Treasure Sold on EBay (Reuters) Reuters - Pieces of Britain's past, including a\\second-century silver ring and a 500-year-old Tudor trade\\weight, are among artifacts being peddled daily on the Internet\\to the alarm of experts at the British Museum.", "true_label": "World", "predicted_label": "Sci/Tech", "max_prob": 0.410666}
|
| 73 |
+
{"text": "Dollar Stuck, CPI Offers Little Direction TOKYO (Reuters) - The dollar moved in tight ranges on Wednesday as most investors shrugged off lower-than-expected U.S. inflation data and stuck to the view the U.S. Federal Reserve would continue raising rates.", "true_label": "Business", "predicted_label": "Sci/Tech", "max_prob": 0.479432}
|
| 74 |
+
{"text": "Chile's Lagos Receives Torture Commission Report <p></p><p> By Ignacio Badal</p><p> SANTIAGO, Chile (Reuters) - Chilean President Ricardo Lagosreceived a chilling report on Wednesday from a governmentcommission that interviewed more than 30,000 victims tochronicle for the first time the systematic use of tortureduring Augusto Pinochet's 1973-1990 dictatorship.</p>", "true_label": "World", "predicted_label": "Sci/Tech", "max_prob": 0.442196}
|
| 75 |
+
{"text": "Greenspan Worried Congress to Bar Options Expensing WASHINGTON (Reuters) - Federal Reserve Chairman Alan Greenspan on Friday said he was very worried Congress would try to thwart efforts by the Financial Accounting Standards Board to require expensing of stock options.", "true_label": "Business", "predicted_label": "World", "max_prob": 0.498896}
|
| 76 |
+
{"text": "NASA Leader Cites Finances and Submits His Resignation Sean O #39;Keefe resigned as NASA administrator on Monday, saying he is leaving the position he has held for three years to pursue better economic opportunity for his family.", "true_label": "Sci/Tech", "predicted_label": "Sports", "max_prob": 0.604052}
|
| 77 |
+
{"text": "Bad Day for Drug Companies - and Patients LONDON (Reuters) - Investors in pharmaceuticals were dealt a triple whammy on Friday as Pfizer Inc, AstraZeneca Plc and Eli Lilly and Co all shocked the market with bad news about key products.", "true_label": "Business", "predicted_label": "Sci/Tech", "max_prob": 0.495296}
|
| 78 |
+
{"text": "Why Putin is backing Kyoto again Why did Russian President Vladimir Putin decide to ratify the Kyoto Protocol on climate change last week, only six months after his top adviser, Andrei Illarionov, called it a quot;death treaty?", "true_label": "World", "predicted_label": "Sports", "max_prob": 0.648978}
|
| 79 |
+
{"text": "An Afghan 'hanging chad' dispute An independent inquiry is helping to defuse a controversy over ink used in Saturday's election.", "true_label": "World", "predicted_label": "Sports", "max_prob": 0.571217}
|
| 80 |
+
{"text": "Calif. Mental Health Services May Expand (AP) AP - As pressures increase on California's mental health system, its workers and advocates say they are forced to do more with a supply of money that seems to shrink each year.", "true_label": "World", "predicted_label": "Sci/Tech", "max_prob": 0.470756}
|
| 81 |
+
{"text": "Stability Control Systems Can Save Lives (AP) AP - Stability control systems could save up to 7,000 lives each year if they were standard equipment on all vehicles, according to a study by the insurance industry.", "true_label": "World", "predicted_label": "Sci/Tech", "max_prob": 0.44314}
|
| 82 |
+
{"text": "Two hurricanes = two deductibles Many homeowners in the Orlando area suffered a double blow when hurricanes Charley and Frances struck in quick succession. Now, they #39;re smarting from a financial one-two punch - two insurance deductibles.", "true_label": "Business", "predicted_label": "Sports", "max_prob": 0.532307}
|
| 83 |
+
{"text": "Stocks Seen Flat as Earnings Pour In US stock futures pointed to a flat market open Thursday as a rush of quarterly earnings reports painted a mixed picture for corporate profits amid lingering worries over the high price of oil.", "true_label": "Business", "predicted_label": "Sci/Tech", "max_prob": 0.482357}
|
| 84 |
+
{"text": "Thaksin in the Firing Line After Massacre BANGKOK/JEDDAH, 29 October 2004 - A bomb ripped through two bars in southern Thailand yesterday, killing two people and wounding about 20, in what could be the first reaction to the deaths of 78 Muslims in police custody this week.", "true_label": "World", "predicted_label": "Sports", "max_prob": 0.517503}
|
| 85 |
+
{"text": "Fannie Mae agrees to accounting changes Fannie Mae, facing questions about its accounting similar to those that shook up Freddie Mac last year, has agreed to changes that will bring it in compliance with accounting standards.", "true_label": "Business", "predicted_label": "Sci/Tech", "max_prob": 0.487456}
|
| 86 |
+
{"text": "PeopleSoft gives in to Oracle, takes bid PeopleSoft Inc. capitulated to Oracle Corp., accepting a sweetened \\$10.3 billion takeover offer to end an 18-month battle that pitted PeopleSoft against its investors and led to the ouster of its chief executive.", "true_label": "Business", "predicted_label": "Sci/Tech", "max_prob": 0.495211}
|
| 87 |
+
{"text": "Secretary Rumsfeld Remarks En Route to El Salvador SEC. RUMSFELD: As you know, were going to be stopping in El Salvador and Nicaragua and Panama and Ecuador. The first stops will be visits to the places, particularly El Salvador and Nicaragua - countries ", "true_label": "World", "predicted_label": "Sports", "max_prob": 0.522648}
|
| 88 |
+
{"text": "Virus writers look for work THE WRITERS of the MyDoom viruses are encoding job applications into the latest variants of the bug. According to Sophos the plea for work was found when its boffins were stripping the code of the MyDoom-U and MyDoom-V variants.", "true_label": "Sci/Tech", "predicted_label": "Sports", "max_prob": 0.461721}
|
| 89 |
+
{"text": "Key Martha Witness Gets Wrist Slap (CBS/AP) A former brokerage assistant who helped Martha Stewart make her fateful stock trade and later emerged as a key government witness was spared both prison and probation Friday for accepting a payoff during the government #39;s investigation.", "true_label": "Business", "predicted_label": "World", "max_prob": 0.509705}
|
| 90 |
+
{"text": "Australia turns down plea for more troops to protect UN staff in Iraq (AFP) AFP - Australia has turned down a diplomatic plea for a contribution to a military force to protect United Nations (UN) personnel in Iraq.", "true_label": "World", "predicted_label": "Sports", "max_prob": 0.477345}
|
| 91 |
+
{"text": "Oracle #39;s sweet on PeopleSoft Oracle sweetened its hostile bid for rival business software maker PeopleSoft to \\$9.2 billion, a 14 increase aimed at resolving the long-running takeover battle between the bitter foes.", "true_label": "Business", "predicted_label": "Sci/Tech", "max_prob": 0.501009}
|
| 92 |
+
{"text": "Chirac #39;s tour of China magnifies partnership Dialogue between China and France, two countries which highly value cultural diversity and pluralism in international politics, is no doubt conducive to world peace.", "true_label": "World", "predicted_label": "Sports", "max_prob": 0.597438}
|
| 93 |
+
{"text": "Philippine Rebels Free Troops, Talks in Doubt PRESENTACION, Philippines (Reuters) - Philippine communist rebels freed Wednesday two soldiers they had held as \"prisoners of war\" for more than five months, saying they wanted to rebuild confidence in peace talks with the government.", "true_label": "World", "predicted_label": "Sports", "max_prob": 0.553101}
|
| 94 |
+
{"text": "September Retail Sales Up by 1.5 Percent WASHINGTON - Shoppers got their buying groove back last month, propelling sales at the nation's retailers by a strong 1.5 percent. It was the best showing since March...", "true_label": "World", "predicted_label": "Sci/Tech", "max_prob": 0.47643}
|
| 95 |
+
{"text": "Parmalat Investors Flock to Court Seeking Damages (Update2) Hundreds of Italians who lost savings in the collapse of food company Parmalat Finanziaria SpA flocked to Milan #39;s courthouse, seeking to recover damages as part of the criminal investigation of Italy #39; biggest bankruptcy.", "true_label": "Business", "predicted_label": "Sci/Tech", "max_prob": 0.490151}
|
| 96 |
+
{"text": "Eight children stabbed to death as they sleep A man broke into a school dormitory and stabbed eight sleeping children to death before fleeing. The murders at the Ruzhou No2 Senior Middle School in Pingdingshan, in the central province of Henan, was the ", "true_label": "World", "predicted_label": "Sports", "max_prob": 0.639374}
|
| 97 |
+
{"text": "Eurostocks Nudge Up on Ericsson PARIS (Reuters) - European shares nosed up on Wednesday as Ericsson gained on news it had won part of \\$4-billion Cingular deal and with Glaxo buoyed after Pfizer affirmed its outlook.", "true_label": "Business", "predicted_label": "Sci/Tech", "max_prob": 0.479547}
|
| 98 |
+
{"text": "Siemens Says Cellphone Flaw May Hurt Users and Its Profit Siemens, the world #39;s fourth-largest maker of mobile phones, said Friday that a software flaw that can create a piercing ring in its newest phone models might hurt earnings in its handset division.", "true_label": "Business", "predicted_label": "Sci/Tech", "max_prob": 0.503006}
|
| 99 |
+
{"text": "Strong Earthquake Strikes Central Calif. PARKFIELD, Calif. - A strong earthquake struck Central California on Tuesday that was felt from San Francisco to the Los Angeles area...", "true_label": "World", "predicted_label": "Sports", "max_prob": 0.599114}
|
| 100 |
+
{"text": "Update 8: Crude Oil Futures Sink to \\$46 Per Barrel December delivery crude on the New York Mercantile Exchange dropped 76 cents to \\$46.11 per barrel. The benchmark light, sweet crude remained about \\$8 a barrel cheaper than its closing record of \\$55.17 recorded Oct. 22 and Oct. 26.", "true_label": "Business", "predicted_label": "Sci/Tech", "max_prob": 0.490082}
|
model.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 5361600
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:85c65e6ac208c96098a76133e4b2ba6d32f81f36b7be6e46a069c7f855bd1fef
|
| 3 |
size 5361600
|
tokenizer.json
CHANGED
|
@@ -10,7 +10,7 @@
|
|
| 10 |
"added_tokens": [
|
| 11 |
{
|
| 12 |
"id": 0,
|
| 13 |
-
"content": "
|
| 14 |
"single_word": false,
|
| 15 |
"lstrip": false,
|
| 16 |
"rstrip": false,
|
|
@@ -19,7 +19,7 @@
|
|
| 19 |
},
|
| 20 |
{
|
| 21 |
"id": 1,
|
| 22 |
-
"content": "
|
| 23 |
"single_word": false,
|
| 24 |
"lstrip": false,
|
| 25 |
"rstrip": false,
|
|
@@ -149,12 +149,12 @@
|
|
| 149 |
"decoder": null,
|
| 150 |
"model": {
|
| 151 |
"type": "WordPiece",
|
| 152 |
-
"unk_token": "
|
| 153 |
"continuing_subword_prefix": "##",
|
| 154 |
"max_input_chars_per_word": 100,
|
| 155 |
"vocab": {
|
| 156 |
-
"
|
| 157 |
-
"
|
| 158 |
"[CLS]": 2,
|
| 159 |
"[SEP]": 3,
|
| 160 |
"[MASK]": 4,
|
|
@@ -214,56 +214,56 @@
|
|
| 214 |
"y": 58,
|
| 215 |
"z": 59,
|
| 216 |
"##e": 60,
|
| 217 |
-
"##
|
| 218 |
-
"##
|
| 219 |
-
"##
|
| 220 |
-
"##
|
| 221 |
-
"##
|
| 222 |
-
"##
|
| 223 |
-
"##
|
| 224 |
-
"##
|
| 225 |
-
"##
|
| 226 |
-
"##
|
| 227 |
-
"##
|
| 228 |
-
"##
|
| 229 |
-
"##
|
| 230 |
-
"##
|
| 231 |
-
"##
|
| 232 |
-
"##
|
| 233 |
"##h": 77,
|
| 234 |
-
"##
|
| 235 |
-
"##
|
| 236 |
-
"##
|
| 237 |
"##f": 81,
|
| 238 |
-
"##
|
| 239 |
-
"##
|
| 240 |
-
"##
|
| 241 |
-
"##
|
| 242 |
-
"##
|
| 243 |
-
"##
|
| 244 |
-
"##
|
| 245 |
-
"##
|
| 246 |
-
"##
|
| 247 |
-
"##
|
| 248 |
-
"##
|
| 249 |
-
"##
|
| 250 |
-
"##
|
| 251 |
-
"##
|
| 252 |
-
"##
|
| 253 |
-
"##
|
| 254 |
-
"##
|
| 255 |
-
"##
|
| 256 |
"##:": 100,
|
| 257 |
-
"##
|
| 258 |
-
"##
|
| 259 |
"##,": 103,
|
| 260 |
-
"##
|
| 261 |
-
"##
|
| 262 |
-
"##
|
| 263 |
-
"##
|
| 264 |
-
"##
|
| 265 |
"###": 109,
|
| 266 |
-
"##
|
| 267 |
"##er": 111,
|
| 268 |
"th": 112,
|
| 269 |
"##in": 113,
|
|
@@ -690,11 +690,11 @@
|
|
| 690 |
"##ood": 534,
|
| 691 |
"li": 535,
|
| 692 |
"tech": 536,
|
| 693 |
-
"##
|
| 694 |
-
"##
|
| 695 |
"##yst": 539,
|
| 696 |
-
"##
|
| 697 |
-
"##
|
| 698 |
"week": 542,
|
| 699 |
"##ason": 543,
|
| 700 |
"##ounc": 544,
|
|
@@ -761,8 +761,8 @@
|
|
| 761 |
"##ely": 605,
|
| 762 |
"ass": 606,
|
| 763 |
"news": 607,
|
| 764 |
-
"##
|
| 765 |
-
"##
|
| 766 |
"##orts": 610,
|
| 767 |
"afp": 611,
|
| 768 |
"milit": 612,
|
|
@@ -782,8 +782,8 @@
|
|
| 782 |
"stocks": 626,
|
| 783 |
"red": 627,
|
| 784 |
"ter": 628,
|
| 785 |
-
"##
|
| 786 |
-
"##
|
| 787 |
"fed": 631,
|
| 788 |
"par": 632,
|
| 789 |
"shar": 633,
|
|
@@ -890,10 +890,10 @@
|
|
| 890 |
"##ards": 734,
|
| 891 |
"years": 735,
|
| 892 |
"help": 736,
|
| 893 |
-
"##
|
| 894 |
-
"##
|
| 895 |
-
"##
|
| 896 |
-
"##
|
| 897 |
"near": 741,
|
| 898 |
"launch": 742,
|
| 899 |
"##int": 743,
|
|
@@ -914,8 +914,8 @@
|
|
| 914 |
"col": 758,
|
| 915 |
"day": 759,
|
| 916 |
"jap": 760,
|
| 917 |
-
"##
|
| 918 |
-
"##
|
| 919 |
"##ony": 763,
|
| 920 |
"champ": 764,
|
| 921 |
"aw": 765,
|
|
@@ -988,8 +988,8 @@
|
|
| 988 |
"killed": 832,
|
| 989 |
"home": 833,
|
| 990 |
"job": 834,
|
| 991 |
-
"##
|
| 992 |
-
"##
|
| 993 |
"##inian": 837,
|
| 994 |
"##orn": 838,
|
| 995 |
"##ures": 839,
|
|
@@ -998,8 +998,8 @@
|
|
| 998 |
"ca": 842,
|
| 999 |
"fall": 843,
|
| 1000 |
"tra": 844,
|
| 1001 |
-
"##
|
| 1002 |
-
"##
|
| 1003 |
"##ants": 847,
|
| 1004 |
"ins": 848,
|
| 1005 |
"plans": 849,
|
|
@@ -1111,8 +1111,8 @@
|
|
| 1111 |
"ed": 955,
|
| 1112 |
"loss": 956,
|
| 1113 |
"publ": 957,
|
| 1114 |
-
"##
|
| 1115 |
-
"##
|
| 1116 |
"##ving": 960,
|
| 1117 |
"stre": 961,
|
| 1118 |
"##use": 962,
|
|
@@ -1136,9 +1136,9 @@
|
|
| 1136 |
"19": 980,
|
| 1137 |
"11": 981,
|
| 1138 |
"san": 982,
|
| 1139 |
-
"##
|
| 1140 |
-
"##
|
| 1141 |
-
"##
|
| 1142 |
"##ons": 986,
|
| 1143 |
"##ities": 987,
|
| 1144 |
"##eld": 988,
|
|
@@ -1150,8 +1150,8 @@
|
|
| 1150 |
"pakistan": 994,
|
| 1151 |
"her": 995,
|
| 1152 |
"way": 996,
|
| 1153 |
-
"##
|
| 1154 |
-
"##
|
| 1155 |
"##pr": 999,
|
| 1156 |
"stock": 1000,
|
| 1157 |
"leader": 1001,
|
|
@@ -1188,10 +1188,10 @@
|
|
| 1188 |
"tick": 1032,
|
| 1189 |
"##eb": 1033,
|
| 1190 |
"##eep": 1034,
|
| 1191 |
-
"##
|
| 1192 |
-
"##
|
| 1193 |
-
"##
|
| 1194 |
-
"##
|
| 1195 |
"##ank": 1039,
|
| 1196 |
"##round": 1040,
|
| 1197 |
"##isco": 1041,
|
|
@@ -1225,8 +1225,8 @@
|
|
| 1225 |
"baghdad": 1069,
|
| 1226 |
"cust": 1070,
|
| 1227 |
"nas": 1071,
|
| 1228 |
-
"##
|
| 1229 |
-
"##
|
| 1230 |
"there": 1074,
|
| 1231 |
"##ects": 1075,
|
| 1232 |
"being": 1076,
|
|
@@ -1267,8 +1267,8 @@
|
|
| 1267 |
"gre": 1111,
|
| 1268 |
"make": 1112,
|
| 1269 |
"##eks": 1113,
|
| 1270 |
-
"##
|
| 1271 |
-
"##
|
| 1272 |
"##ility": 1116,
|
| 1273 |
"before": 1117,
|
| 1274 |
"dev": 1118,
|
|
@@ -1327,9 +1327,9 @@
|
|
| 1327 |
"mid": 1171,
|
| 1328 |
"riv": 1172,
|
| 1329 |
"sold": 1173,
|
| 1330 |
-
"##
|
| 1331 |
-
"##
|
| 1332 |
-
"##
|
| 1333 |
"stud": 1177,
|
| 1334 |
"##ution": 1178,
|
| 1335 |
"prime": 1179,
|
|
@@ -1355,11 +1355,11 @@
|
|
| 1355 |
"many": 1199,
|
| 1356 |
"round": 1200,
|
| 1357 |
"ww": 1201,
|
| 1358 |
-
"##
|
| 1359 |
-
"##
|
| 1360 |
-
"##
|
| 1361 |
"##aw": 1205,
|
| 1362 |
-
"##
|
| 1363 |
"##fat": 1207,
|
| 1364 |
"##ene": 1208,
|
| 1365 |
"##ication": 1209,
|
|
@@ -1460,8 +1460,8 @@
|
|
| 1460 |
"poss": 1304,
|
| 1461 |
"six": 1305,
|
| 1462 |
"tur": 1306,
|
| 1463 |
-
"##
|
| 1464 |
-
"##
|
| 1465 |
"##ject": 1309,
|
| 1466 |
"##ind": 1310,
|
| 1467 |
"##elf": 1311,
|
|
@@ -1475,9 +1475,9 @@
|
|
| 1475 |
"num": 1319,
|
| 1476 |
"tim": 1320,
|
| 1477 |
"your": 1321,
|
| 1478 |
-
"##
|
| 1479 |
"##ior": 1323,
|
| 1480 |
-
"##
|
| 1481 |
"##ham": 1325,
|
| 1482 |
"##pite": 1326,
|
| 1483 |
"##erry": 1327,
|
|
@@ -1523,8 +1523,8 @@
|
|
| 1523 |
"lif": 1367,
|
| 1524 |
"past": 1368,
|
| 1525 |
"rul": 1369,
|
| 1526 |
-
"##
|
| 1527 |
-
"##
|
| 1528 |
"##info": 1372,
|
| 1529 |
"##iting": 1373,
|
| 1530 |
"##ised": 1374,
|
|
@@ -1657,13 +1657,13 @@
|
|
| 1657 |
"sent": 1501,
|
| 1658 |
"soc": 1502,
|
| 1659 |
"##ev": 1503,
|
| 1660 |
-
"##
|
| 1661 |
-
"##
|
| 1662 |
-
"##
|
| 1663 |
-
"##
|
| 1664 |
-
"##
|
| 1665 |
-
"##
|
| 1666 |
-
"##
|
| 1667 |
"##ator": 1511,
|
| 1668 |
"##ida": 1512,
|
| 1669 |
"chr": 1513,
|
|
@@ -1718,9 +1718,9 @@
|
|
| 1718 |
"men": 1562,
|
| 1719 |
"match": 1563,
|
| 1720 |
"val": 1564,
|
| 1721 |
-
"##
|
| 1722 |
-
"##
|
| 1723 |
-
"##
|
| 1724 |
"##van": 1568,
|
| 1725 |
"inf": 1569,
|
| 1726 |
"##ally": 1570,
|
|
@@ -1755,14 +1755,14 @@
|
|
| 1755 |
"lo": 1599,
|
| 1756 |
"mal": 1600,
|
| 1757 |
"ur": 1601,
|
| 1758 |
-
"##
|
| 1759 |
-
"##
|
| 1760 |
-
"##
|
| 1761 |
-
"##
|
| 1762 |
-
"##
|
| 1763 |
-
"##
|
| 1764 |
-
"##
|
| 1765 |
-
"##
|
| 1766 |
"##ered": 1610,
|
| 1767 |
"##ench": 1611,
|
| 1768 |
"##row": 1612,
|
|
@@ -1797,11 +1797,11 @@
|
|
| 1797 |
"vo": 1641,
|
| 1798 |
"want": 1642,
|
| 1799 |
"##ta": 1643,
|
| 1800 |
-
"##
|
| 1801 |
-
"##
|
| 1802 |
-
"##
|
| 1803 |
-
"##
|
| 1804 |
-
"##
|
| 1805 |
"toky": 1649,
|
| 1806 |
"stop": 1650,
|
| 1807 |
"reven": 1651,
|
|
@@ -1839,10 +1839,10 @@
|
|
| 1839 |
"mail": 1683,
|
| 1840 |
"much": 1684,
|
| 1841 |
"outs": 1685,
|
| 1842 |
-
"##
|
| 1843 |
-
"##
|
| 1844 |
-
"##
|
| 1845 |
-
"##
|
| 1846 |
"##att": 1690,
|
| 1847 |
"anal": 1691,
|
| 1848 |
"##chester": 1692,
|
|
@@ -1884,13 +1884,13 @@
|
|
| 1884 |
"pur": 1728,
|
| 1885 |
"sn": 1729,
|
| 1886 |
"tv": 1730,
|
| 1887 |
-
"##
|
| 1888 |
-
"##
|
| 1889 |
-
"##
|
| 1890 |
-
"##
|
| 1891 |
-
"##
|
| 1892 |
-
"##
|
| 1893 |
-
"##
|
| 1894 |
"##atic": 1738,
|
| 1895 |
"##ative": 1739,
|
| 1896 |
"inform": 1740,
|
|
@@ -1940,14 +1940,14 @@
|
|
| 1940 |
"rise": 1784,
|
| 1941 |
"##ex": 1785,
|
| 1942 |
"##eal": 1786,
|
| 1943 |
-
"##
|
| 1944 |
-
"##
|
| 1945 |
-
"##
|
| 1946 |
-
"##
|
| 1947 |
-
"##
|
| 1948 |
"##esh": 1792,
|
| 1949 |
-
"##
|
| 1950 |
-
"##
|
| 1951 |
"forces": 1795,
|
| 1952 |
"univers": 1796,
|
| 1953 |
"##rial": 1797,
|
|
@@ -1979,10 +1979,10 @@
|
|
| 1979 |
"rates": 1823,
|
| 1980 |
"rank": 1824,
|
| 1981 |
"xp": 1825,
|
| 1982 |
-
"##
|
| 1983 |
-
"##
|
| 1984 |
-
"##
|
| 1985 |
-
"##
|
| 1986 |
"##ink": 1830,
|
| 1987 |
"##ests": 1831,
|
| 1988 |
"##ater": 1832,
|
|
@@ -2103,9 +2103,9 @@
|
|
| 2103 |
"sil": 1947,
|
| 2104 |
"sim": 1948,
|
| 2105 |
"sum": 1949,
|
| 2106 |
-
"##
|
| 2107 |
-
"##
|
| 2108 |
-
"##
|
| 2109 |
"##enal": 1953,
|
| 2110 |
"##ale": 1954,
|
| 2111 |
"prison": 1955,
|
|
@@ -2158,14 +2158,14 @@
|
|
| 2158 |
"wound": 2002,
|
| 2159 |
"wild": 2003,
|
| 2160 |
"##eat": 2004,
|
| 2161 |
-
"##
|
| 2162 |
-
"##
|
| 2163 |
-
"##
|
| 2164 |
"##ij": 2008,
|
| 2165 |
"##ience": 2009,
|
| 2166 |
"##ket": 2010,
|
| 2167 |
-
"##
|
| 2168 |
-
"##
|
| 2169 |
"##ining": 2013,
|
| 2170 |
"##ately": 2014,
|
| 2171 |
"infl": 2015,
|
|
@@ -2275,10 +2275,10 @@
|
|
| 2275 |
"yards": 2119,
|
| 2276 |
"##ef": 2120,
|
| 2277 |
"##ees": 2121,
|
| 2278 |
-
"##
|
| 2279 |
-
"##
|
| 2280 |
-
"##
|
| 2281 |
-
"##
|
| 2282 |
"##ert": 2126,
|
| 2283 |
"though": 2127,
|
| 2284 |
"##inal": 2128,
|
|
@@ -2332,12 +2332,12 @@
|
|
| 2332 |
"sir": 2176,
|
| 2333 |
"youn": 2177,
|
| 2334 |
"yasser": 2178,
|
| 2335 |
-
"##
|
| 2336 |
-
"##
|
| 2337 |
-
"##
|
| 2338 |
"##ways": 2182,
|
| 2339 |
-
"##
|
| 2340 |
-
"##
|
| 2341 |
"those": 2185,
|
| 2342 |
"##ined": 2186,
|
| 2343 |
"##orks": 2187,
|
|
@@ -2472,8 +2472,8 @@
|
|
| 2472 |
"rout": 2316,
|
| 2473 |
"vol": 2317,
|
| 2474 |
"wants": 2318,
|
| 2475 |
-
"##
|
| 2476 |
-
"##
|
| 2477 |
"##arm": 2321,
|
| 2478 |
"##ared": 2322,
|
| 2479 |
"##itness": 2323,
|
|
@@ -2530,16 +2530,16 @@
|
|
| 2530 |
"roy": 2374,
|
| 2531 |
"rising": 2375,
|
| 2532 |
"yah": 2376,
|
| 2533 |
-
"##
|
| 2534 |
-
"##
|
| 2535 |
-
"##
|
| 2536 |
-
"##
|
| 2537 |
-
"##
|
| 2538 |
-
"##
|
| 2539 |
-
"##
|
| 2540 |
-
"##
|
| 2541 |
-
"##
|
| 2542 |
-
"##
|
| 2543 |
"##ona": 2387,
|
| 2544 |
"town": 2388,
|
| 2545 |
"##icip": 2389,
|
|
@@ -2605,13 +2605,13 @@
|
|
| 2605 |
"penn": 2449,
|
| 2606 |
"rap": 2450,
|
| 2607 |
"witness": 2451,
|
| 2608 |
-
"##
|
| 2609 |
-
"##
|
| 2610 |
-
"##
|
| 2611 |
-
"##
|
| 2612 |
-
"##
|
| 2613 |
-
"##
|
| 2614 |
-
"##
|
| 2615 |
"##val": 2459,
|
| 2616 |
"##vet": 2460,
|
| 2617 |
"##50": 2461,
|
|
@@ -2697,16 +2697,16 @@
|
|
| 2697 |
"same": 2541,
|
| 2698 |
"vill": 2542,
|
| 2699 |
"##ric": 2543,
|
| 2700 |
-
"##
|
| 2701 |
-
"##
|
| 2702 |
-
"##
|
| 2703 |
-
"##
|
| 2704 |
-
"##
|
| 2705 |
-
"##
|
| 2706 |
-
"##
|
| 2707 |
-
"##
|
| 2708 |
-
"##
|
| 2709 |
-
"##
|
| 2710 |
"##xic": 2554,
|
| 2711 |
"##ino": 2555,
|
| 2712 |
"##ories": 2556,
|
|
@@ -2804,12 +2804,12 @@
|
|
| 2804 |
"vent": 2648,
|
| 2805 |
"vote": 2649,
|
| 2806 |
"western": 2650,
|
| 2807 |
-
"##
|
| 2808 |
-
"##
|
| 2809 |
-
"##
|
| 2810 |
-
"##
|
| 2811 |
-
"##
|
| 2812 |
-
"##
|
| 2813 |
"##inc": 2657,
|
| 2814 |
"##ana": 2658,
|
| 2815 |
"##atory": 2659,
|
|
@@ -2897,17 +2897,17 @@
|
|
| 2897 |
"wid": 2741,
|
| 2898 |
"wood": 2742,
|
| 2899 |
"yuk": 2743,
|
| 2900 |
-
"##
|
| 2901 |
-
"##
|
| 2902 |
-
"##
|
| 2903 |
-
"##
|
| 2904 |
-
"##
|
| 2905 |
-
"##
|
| 2906 |
-
"##
|
| 2907 |
-
"##
|
| 2908 |
-
"##
|
| 2909 |
-
"##
|
| 2910 |
-
"##
|
| 2911 |
"thin": 2755,
|
| 2912 |
"##ann": 2756,
|
| 2913 |
"##ening": 2757,
|
|
@@ -3015,20 +3015,20 @@
|
|
| 3015 |
"size": 2859,
|
| 3016 |
"sites": 2860,
|
| 3017 |
"tem": 2861,
|
| 3018 |
-
"##
|
| 3019 |
-
"##
|
| 3020 |
-
"##
|
| 3021 |
-
"##
|
| 3022 |
-
"##
|
| 3023 |
-
"##
|
| 3024 |
-
"##
|
| 3025 |
"##aa": 2869,
|
| 3026 |
"##ait": 2870,
|
| 3027 |
-
"##
|
| 3028 |
-
"##
|
| 3029 |
"##wood": 2873,
|
| 3030 |
-
"##
|
| 3031 |
-
"##
|
| 3032 |
"##ery": 2876,
|
| 3033 |
"thail": 2877,
|
| 3034 |
"##onment": 2878,
|
|
@@ -3139,17 +3139,17 @@
|
|
| 3139 |
"view": 2983,
|
| 3140 |
"water": 2984,
|
| 3141 |
"##eg": 2985,
|
| 3142 |
-
"##
|
| 3143 |
-
"##
|
| 3144 |
-
"##
|
| 3145 |
-
"##
|
| 3146 |
-
"##
|
| 3147 |
-
"##
|
| 3148 |
"##pon": 2992,
|
| 3149 |
-
"##
|
| 3150 |
-
"##
|
| 3151 |
-
"##
|
| 3152 |
-
"##
|
| 3153 |
"##ville": 2997,
|
| 3154 |
"##erent": 2998,
|
| 3155 |
"then": 2999,
|
|
@@ -3288,18 +3288,18 @@
|
|
| 3288 |
"wel": 3132,
|
| 3289 |
"went": 3133,
|
| 3290 |
"##egr": 3134,
|
| 3291 |
-
"##
|
| 3292 |
-
"##
|
| 3293 |
-
"##
|
| 3294 |
-
"##
|
| 3295 |
-
"##
|
| 3296 |
-
"##
|
| 3297 |
-
"##
|
| 3298 |
-
"##
|
| 3299 |
-
"##
|
| 3300 |
-
"##
|
| 3301 |
-
"##
|
| 3302 |
-
"##
|
| 3303 |
"##inth": 3147,
|
| 3304 |
"theft": 3148,
|
| 3305 |
"##itz": 3149,
|
|
@@ -3425,8 +3425,8 @@
|
|
| 3425 |
".'": 3269,
|
| 3426 |
"70": 3270,
|
| 3427 |
"ba": 3271,
|
| 3428 |
-
"
|
| 3429 |
-
"
|
| 3430 |
"cat": 3274,
|
| 3431 |
"cro": 3275,
|
| 3432 |
"catch": 3276,
|
|
@@ -3459,22 +3459,22 @@
|
|
| 3459 |
"wrap": 3303,
|
| 3460 |
"zone": 3304,
|
| 3461 |
"zeal": 3305,
|
| 3462 |
-
"##
|
| 3463 |
-
"##
|
| 3464 |
-
"##
|
| 3465 |
-
"##
|
| 3466 |
-
"##
|
| 3467 |
-
"##
|
| 3468 |
-
"##
|
| 3469 |
-
"##
|
| 3470 |
-
"##
|
| 3471 |
-
"##
|
| 3472 |
-
"##
|
| 3473 |
-
"##
|
| 3474 |
-
"##
|
| 3475 |
-
"##
|
| 3476 |
-
"##
|
| 3477 |
-
"##
|
| 3478 |
"threw": 3322,
|
| 3479 |
"##ored": 3323,
|
| 3480 |
"##ati": 3324,
|
|
@@ -3641,22 +3641,22 @@
|
|
| 3641 |
"ways": 3485,
|
| 3642 |
"wond": 3486,
|
| 3643 |
"zar": 3487,
|
| 3644 |
-
"##
|
| 3645 |
-
"##
|
| 3646 |
-
"##
|
| 3647 |
-
"##
|
| 3648 |
"##rone": 3492,
|
| 3649 |
-
"##
|
| 3650 |
-
"##
|
| 3651 |
-
"##
|
| 3652 |
-
"##
|
| 3653 |
"##kes": 3497,
|
| 3654 |
-
"##
|
| 3655 |
-
"##
|
| 3656 |
-
"##
|
| 3657 |
"##field": 3501,
|
| 3658 |
-
"##
|
| 3659 |
-
"##
|
| 3660 |
"##xx": 3504,
|
| 3661 |
"##inos": 3505,
|
| 3662 |
"##anch": 3506,
|
|
@@ -3860,8 +3860,8 @@
|
|
| 3860 |
"dial": 3704,
|
| 3861 |
"done": 3705,
|
| 3862 |
"donald": 3706,
|
| 3863 |
-
"
|
| 3864 |
-
"
|
| 3865 |
"eth": 3709,
|
| 3866 |
"egy": 3710,
|
| 3867 |
"eastern": 3711,
|
|
@@ -3891,21 +3891,21 @@
|
|
| 3891 |
"##eas": 3735,
|
| 3892 |
"##east": 3736,
|
| 3893 |
"##ease": 3737,
|
| 3894 |
-
"##
|
| 3895 |
-
"##
|
| 3896 |
-
"##
|
| 3897 |
-
"##
|
| 3898 |
-
"##
|
| 3899 |
-
"##
|
| 3900 |
-
"##
|
| 3901 |
-
"##
|
| 3902 |
-
"##
|
| 3903 |
-
"##
|
| 3904 |
-
"##
|
| 3905 |
-
"##
|
| 3906 |
-
"##
|
| 3907 |
-
"##
|
| 3908 |
-
"##
|
| 3909 |
"##va": 3753,
|
| 3910 |
"thing": 3754,
|
| 3911 |
"think": 3755,
|
|
@@ -4110,8 +4110,8 @@
|
|
| 4110 |
"33": 3954,
|
| 4111 |
"49": 3955,
|
| 4112 |
"46": 3956,
|
| 4113 |
-
"
|
| 4114 |
-
"
|
| 4115 |
"800": 3959,
|
| 4116 |
"96": 3960,
|
| 4117 |
"auction": 3961,
|
|
@@ -4154,28 +4154,28 @@
|
|
| 4154 |
"vod": 3998,
|
| 4155 |
"wm": 3999,
|
| 4156 |
"##ead": 4000,
|
| 4157 |
-
"##
|
| 4158 |
-
"##
|
| 4159 |
-
"##
|
| 4160 |
-
"##
|
| 4161 |
-
"##
|
| 4162 |
-
"##
|
| 4163 |
-
"##
|
| 4164 |
-
"##
|
| 4165 |
-
"##
|
| 4166 |
-
"##
|
| 4167 |
-
"##
|
| 4168 |
-
"##
|
| 4169 |
-
"##
|
| 4170 |
-
"##
|
| 4171 |
-
"##
|
| 4172 |
-
"##
|
| 4173 |
-
"##
|
| 4174 |
-
"##
|
| 4175 |
-
"##
|
| 4176 |
-
"##
|
| 4177 |
-
"##
|
| 4178 |
-
"##
|
| 4179 |
"##0s": 4023,
|
| 4180 |
"thom": 4024,
|
| 4181 |
"##oring": 4025,
|
|
@@ -4455,29 +4455,29 @@
|
|
| 4455 |
"wizards": 4299,
|
| 4456 |
"##ein": 4300,
|
| 4457 |
"##ever": 4301,
|
| 4458 |
-
"##
|
| 4459 |
-
"##
|
| 4460 |
-
"##
|
| 4461 |
-
"##
|
| 4462 |
-
"##
|
| 4463 |
-
"##
|
| 4464 |
-
"##
|
| 4465 |
-
"##
|
| 4466 |
-
"##
|
| 4467 |
-
"##
|
| 4468 |
-
"##
|
| 4469 |
-
"##
|
| 4470 |
-
"##
|
| 4471 |
-
"##
|
| 4472 |
-
"##
|
| 4473 |
-
"##
|
| 4474 |
-
"##
|
| 4475 |
-
"##
|
| 4476 |
-
"##
|
| 4477 |
-
"##
|
| 4478 |
-
"##
|
| 4479 |
-
"##
|
| 4480 |
-
"##
|
| 4481 |
"##ern": 4325,
|
| 4482 |
"##iny": 4326,
|
| 4483 |
"##inter": 4327,
|
|
@@ -4783,34 +4783,34 @@
|
|
| 4783 |
"wide": 4627,
|
| 4784 |
"yud": 4628,
|
| 4785 |
"##ew": 4629,
|
| 4786 |
-
"##
|
| 4787 |
-
"##
|
| 4788 |
-
"##
|
| 4789 |
-
"##
|
| 4790 |
-
"##
|
| 4791 |
-
"##
|
| 4792 |
-
"##
|
| 4793 |
-
"##
|
| 4794 |
-
"##
|
| 4795 |
-
"##
|
| 4796 |
-
"##
|
| 4797 |
-
"##
|
| 4798 |
-
"##
|
| 4799 |
-
"##
|
| 4800 |
-
"##
|
| 4801 |
-
"##
|
| 4802 |
-
"##
|
| 4803 |
-
"##
|
| 4804 |
-
"##
|
| 4805 |
-
"##
|
| 4806 |
-
"##
|
| 4807 |
-
"##
|
| 4808 |
-
"##
|
| 4809 |
-
"##
|
| 4810 |
-
"##
|
| 4811 |
-
"##
|
| 4812 |
-
"##
|
| 4813 |
-
"##
|
| 4814 |
"##ero": 4658,
|
| 4815 |
"##inet": 4659,
|
| 4816 |
"##ono": 4660,
|
|
@@ -5164,33 +5164,33 @@
|
|
| 5164 |
"yard": 5008,
|
| 5165 |
"zimb": 5009,
|
| 5166 |
"##eer": 5010,
|
| 5167 |
-
"##
|
| 5168 |
-
"##
|
| 5169 |
-
"##
|
| 5170 |
-
"##
|
| 5171 |
-
"##
|
| 5172 |
-
"##
|
| 5173 |
-
"##
|
| 5174 |
-
"##
|
| 5175 |
-
"##
|
| 5176 |
-
"##
|
| 5177 |
-
"##
|
| 5178 |
-
"##
|
| 5179 |
-
"##
|
| 5180 |
-
"##
|
| 5181 |
-
"##
|
| 5182 |
-
"##
|
| 5183 |
-
"##
|
| 5184 |
-
"##
|
| 5185 |
-
"##
|
| 5186 |
-
"##
|
| 5187 |
-
"##
|
| 5188 |
-
"##
|
| 5189 |
"##fc": 5033,
|
| 5190 |
-
"##
|
| 5191 |
-
"##
|
| 5192 |
-
"##
|
| 5193 |
-
"##
|
| 5194 |
"##inct": 5038,
|
| 5195 |
"##esco": 5039,
|
| 5196 |
"##orary": 5040,
|
|
@@ -5209,8 +5209,8 @@
|
|
| 5209 |
"anton": 5053,
|
| 5210 |
"##iled": 5054,
|
| 5211 |
"##ayan": 5055,
|
| 5212 |
-
"##
|
| 5213 |
-
"##
|
| 5214 |
"##outh": 5058,
|
| 5215 |
"##eline": 5059,
|
| 5216 |
"##omm": 5060,
|
|
@@ -5259,8 +5259,8 @@
|
|
| 5259 |
"altern": 5103,
|
| 5260 |
"##eman": 5104,
|
| 5261 |
"##emony": 5105,
|
| 5262 |
-
"##
|
| 5263 |
-
"##
|
| 5264 |
"##iana": 5108,
|
| 5265 |
"hass": 5109,
|
| 5266 |
"upset": 5110,
|
|
@@ -5572,8 +5572,8 @@
|
|
| 5572 |
"\"\\": 5416,
|
| 5573 |
"47": 5417,
|
| 5574 |
"43": 5418,
|
| 5575 |
-
"
|
| 5576 |
-
"
|
| 5577 |
"550": 5421,
|
| 5578 |
"64": 5422,
|
| 5579 |
"79": 5423,
|
|
@@ -5664,37 +5664,37 @@
|
|
| 5664 |
"zur": 5508,
|
| 5665 |
"##eim": 5509,
|
| 5666 |
"##eals": 5510,
|
| 5667 |
-
"##
|
| 5668 |
-
"##
|
| 5669 |
-
"##
|
| 5670 |
-
"##
|
| 5671 |
-
"##
|
| 5672 |
-
"##
|
| 5673 |
-
"##
|
| 5674 |
-
"##
|
| 5675 |
-
"##
|
| 5676 |
-
"##
|
| 5677 |
-
"##
|
| 5678 |
-
"##
|
| 5679 |
-
"##
|
| 5680 |
-
"##
|
| 5681 |
-
"##
|
| 5682 |
-
"##
|
| 5683 |
-
"##
|
| 5684 |
-
"##
|
| 5685 |
-
"##
|
| 5686 |
-
"##
|
| 5687 |
-
"##
|
| 5688 |
-
"##
|
| 5689 |
-
"##
|
| 5690 |
-
"##
|
| 5691 |
-
"##
|
| 5692 |
-
"##
|
| 5693 |
-
"##
|
| 5694 |
-
"##
|
| 5695 |
-
"##
|
| 5696 |
-
"##
|
| 5697 |
-
"##
|
| 5698 |
"##vic": 5542,
|
| 5699 |
"##40": 5543,
|
| 5700 |
"##erv": 5544,
|
|
@@ -5767,9 +5767,9 @@
|
|
| 5767 |
"##ocol": 5611,
|
| 5768 |
"concess": 5612,
|
| 5769 |
"conrad": 5613,
|
| 5770 |
-
"
|
| 5771 |
-
"
|
| 5772 |
-
"
|
| 5773 |
"units": 5617,
|
| 5774 |
"que": 5618,
|
| 5775 |
"quality": 5619,
|
|
@@ -6181,9 +6181,9 @@
|
|
| 6181 |
"37": 6025,
|
| 6182 |
"3rd": 6026,
|
| 6183 |
"59": 6027,
|
| 6184 |
-
"
|
| 6185 |
-
"
|
| 6186 |
-
"
|
| 6187 |
"71": 6031,
|
| 6188 |
"81": 6032,
|
| 6189 |
"88": 6033,
|
|
@@ -6213,9 +6213,9 @@
|
|
| 6213 |
"ele": 6057,
|
| 6214 |
"ech": 6058,
|
| 6215 |
"erupted": 6059,
|
| 6216 |
-
"
|
| 6217 |
-
"
|
| 6218 |
-
"
|
| 6219 |
"fan": 6063,
|
| 6220 |
"fash": 6064,
|
| 6221 |
"fals": 6065,
|
|
@@ -6232,8 +6232,8 @@
|
|
| 6232 |
"hart": 6076,
|
| 6233 |
"hok": 6077,
|
| 6234 |
"hiring": 6078,
|
| 6235 |
-
"
|
| 6236 |
-
"
|
| 6237 |
"ioc": 6081,
|
| 6238 |
"ill": 6082,
|
| 6239 |
"ji": 6083,
|
|
@@ -6256,8 +6256,8 @@
|
|
| 6256 |
"lacks": 6100,
|
| 6257 |
"lux": 6101,
|
| 6258 |
"lley": 6102,
|
| 6259 |
-
"
|
| 6260 |
-
"
|
| 6261 |
"mates": 6105,
|
| 6262 |
"moss": 6106,
|
| 6263 |
"mey": 6107,
|
|
@@ -6302,696 +6302,696 @@
|
|
| 6302 |
"wave": 6146,
|
| 6303 |
"woes": 6147,
|
| 6304 |
"##eason": 6148,
|
| 6305 |
-
"##
|
| 6306 |
-
"##
|
| 6307 |
-
"##
|
| 6308 |
-
"##
|
| 6309 |
-
"##
|
| 6310 |
-
"##
|
| 6311 |
-
"##
|
| 6312 |
-
"##
|
| 6313 |
-
"##
|
| 6314 |
-
"##
|
| 6315 |
-
"##
|
| 6316 |
-
"##
|
| 6317 |
-
"##
|
| 6318 |
-
"##
|
| 6319 |
-
"##
|
| 6320 |
-
"##
|
| 6321 |
-
"##
|
| 6322 |
-
"##
|
| 6323 |
-
"##
|
| 6324 |
-
"##
|
| 6325 |
-
"##
|
| 6326 |
-
"##
|
| 6327 |
-
"##
|
| 6328 |
-
"##
|
| 6329 |
-
"##
|
| 6330 |
-
"##
|
| 6331 |
-
"##
|
| 6332 |
-
"##
|
| 6333 |
-
"##
|
| 6334 |
-
"##
|
| 6335 |
-
"##
|
| 6336 |
-
"##
|
| 6337 |
-
"##
|
| 6338 |
-
"##
|
| 6339 |
-
"##
|
| 6340 |
-
"##
|
| 6341 |
-
"##
|
| 6342 |
-
"##
|
| 6343 |
-
"##
|
| 6344 |
-
"##
|
| 6345 |
-
"##
|
| 6346 |
-
"##
|
| 6347 |
-
"##
|
| 6348 |
-
"##
|
| 6349 |
-
"##
|
| 6350 |
-
"##
|
| 6351 |
-
"##
|
| 6352 |
-
"##
|
| 6353 |
-
"##
|
| 6354 |
-
"##
|
| 6355 |
"##--": 6199,
|
| 6356 |
-
"##
|
| 6357 |
-
"##
|
| 6358 |
-
"
|
| 6359 |
-
"
|
| 6360 |
-
"##
|
| 6361 |
-
"##
|
| 6362 |
"##oni": 6206,
|
| 6363 |
-
"##
|
| 6364 |
-
"##
|
| 6365 |
-
"##
|
| 6366 |
-
"##
|
| 6367 |
-
"##
|
| 6368 |
-
"##
|
| 6369 |
-
"##
|
| 6370 |
-
"##
|
| 6371 |
-
"##
|
| 6372 |
-
"##
|
| 6373 |
-
"##
|
| 6374 |
-
"##
|
| 6375 |
-
"##
|
| 6376 |
-
"##
|
| 6377 |
-
"##
|
| 6378 |
-
"##
|
| 6379 |
-
"##
|
| 6380 |
-
"##
|
| 6381 |
-
"##
|
| 6382 |
-
"##
|
| 6383 |
-
"##
|
| 6384 |
-
"##
|
| 6385 |
-
"##
|
| 6386 |
-
"##
|
| 6387 |
-
"##
|
| 6388 |
-
"##
|
| 6389 |
-
"##
|
| 6390 |
-
"##
|
| 6391 |
-
"##
|
| 6392 |
-
"##
|
| 6393 |
-
"##
|
| 6394 |
-
"##
|
| 6395 |
-
"##
|
| 6396 |
-
"##
|
| 6397 |
-
"##
|
| 6398 |
-
"##
|
| 6399 |
-
"##
|
| 6400 |
-
"
|
| 6401 |
-
"
|
| 6402 |
-
"
|
| 6403 |
-
"
|
| 6404 |
-
"
|
| 6405 |
-
"
|
| 6406 |
-
"
|
| 6407 |
-
"
|
| 6408 |
-
"
|
| 6409 |
-
"##
|
| 6410 |
-
"##
|
| 6411 |
-
"##
|
| 6412 |
-
"##
|
| 6413 |
-
"##
|
| 6414 |
-
"##
|
| 6415 |
-
"##
|
| 6416 |
-
"##
|
| 6417 |
-
"##
|
| 6418 |
-
"##
|
| 6419 |
-
"##
|
| 6420 |
-
"##
|
| 6421 |
-
"##
|
| 6422 |
-
"##
|
| 6423 |
-
"
|
| 6424 |
-
"
|
| 6425 |
-
"
|
| 6426 |
-
"
|
| 6427 |
-
"
|
| 6428 |
-
"##
|
| 6429 |
-
"##
|
| 6430 |
-
"##
|
| 6431 |
-
"##
|
| 6432 |
-
"
|
| 6433 |
-
"
|
| 6434 |
-
"
|
| 6435 |
-
"##
|
| 6436 |
-
"##
|
| 6437 |
-
"
|
| 6438 |
-
"
|
| 6439 |
-
"
|
| 6440 |
-
"##
|
| 6441 |
-
"
|
| 6442 |
-
"
|
| 6443 |
-
"##
|
| 6444 |
-
"##
|
| 6445 |
-
"
|
| 6446 |
-
"
|
| 6447 |
-
"
|
| 6448 |
-
"
|
| 6449 |
-
"
|
| 6450 |
-
"
|
| 6451 |
-
"
|
| 6452 |
-
"
|
| 6453 |
-
"
|
| 6454 |
-
"##
|
| 6455 |
-
"
|
| 6456 |
-
"
|
| 6457 |
-
"
|
| 6458 |
-
"
|
| 6459 |
-
"
|
| 6460 |
-
"
|
| 6461 |
-
"
|
| 6462 |
-
"
|
| 6463 |
-
"
|
| 6464 |
-
"
|
| 6465 |
-
"
|
| 6466 |
-
"
|
| 6467 |
-
"
|
| 6468 |
-
"
|
| 6469 |
-
"
|
| 6470 |
-
"
|
| 6471 |
-
"
|
| 6472 |
-
"
|
| 6473 |
-
"
|
| 6474 |
-
"
|
| 6475 |
-
"##
|
| 6476 |
-
"
|
| 6477 |
-
"
|
| 6478 |
-
"
|
| 6479 |
-
"
|
| 6480 |
-
"
|
| 6481 |
-
"
|
| 6482 |
-
"
|
| 6483 |
-
"
|
| 6484 |
-
"
|
| 6485 |
-
"
|
| 6486 |
-
"
|
| 6487 |
-
"
|
| 6488 |
-
"##
|
| 6489 |
-
"
|
| 6490 |
-
"
|
| 6491 |
-
"
|
| 6492 |
-
"
|
| 6493 |
-
"
|
| 6494 |
-
"
|
| 6495 |
-
"
|
| 6496 |
-
"
|
| 6497 |
-
"
|
| 6498 |
-
"
|
| 6499 |
-
"
|
| 6500 |
-
"
|
| 6501 |
-
"
|
| 6502 |
-
"
|
| 6503 |
-
"
|
| 6504 |
-
"##
|
| 6505 |
-
"##
|
| 6506 |
-
"
|
| 6507 |
-
"
|
| 6508 |
-
"
|
| 6509 |
-
"
|
| 6510 |
-
"
|
| 6511 |
-
"
|
| 6512 |
-
"
|
| 6513 |
-
"
|
| 6514 |
-
"
|
| 6515 |
-
"
|
| 6516 |
-
"
|
| 6517 |
-
"
|
| 6518 |
-
"
|
| 6519 |
-
"
|
| 6520 |
-
"
|
| 6521 |
-
"
|
| 6522 |
-
"
|
| 6523 |
-
"
|
| 6524 |
-
"
|
| 6525 |
-
"
|
| 6526 |
-
"
|
| 6527 |
-
"
|
| 6528 |
-
"
|
| 6529 |
-
"##
|
| 6530 |
-
"
|
| 6531 |
-
"
|
| 6532 |
-
"
|
| 6533 |
-
"
|
| 6534 |
-
"
|
| 6535 |
-
"
|
| 6536 |
-
"##
|
| 6537 |
-
"
|
| 6538 |
-
"
|
| 6539 |
-
"
|
| 6540 |
-
"
|
| 6541 |
-
"
|
| 6542 |
-
"##
|
| 6543 |
-
"
|
| 6544 |
-
"
|
| 6545 |
-
"
|
| 6546 |
-
"
|
| 6547 |
-
"
|
| 6548 |
-
"
|
| 6549 |
-
"
|
| 6550 |
-
"
|
| 6551 |
-
"
|
| 6552 |
-
"
|
| 6553 |
-
"
|
| 6554 |
-
"
|
| 6555 |
-
"
|
| 6556 |
-
"
|
| 6557 |
-
"
|
| 6558 |
-
"
|
| 6559 |
-
"
|
| 6560 |
-
"##
|
| 6561 |
-
"
|
| 6562 |
-
"
|
| 6563 |
-
"
|
| 6564 |
-
"
|
| 6565 |
-
"
|
| 6566 |
-
"
|
| 6567 |
-
"##
|
| 6568 |
-
"
|
| 6569 |
-
"
|
| 6570 |
-
"
|
| 6571 |
-
"
|
| 6572 |
-
"
|
| 6573 |
-
"
|
| 6574 |
-
"
|
| 6575 |
-
"
|
| 6576 |
-
"
|
| 6577 |
-
"
|
| 6578 |
-
"
|
| 6579 |
-
"##
|
| 6580 |
-
"
|
| 6581 |
-
"
|
| 6582 |
-
"
|
| 6583 |
-
"
|
| 6584 |
-
"
|
| 6585 |
-
"
|
| 6586 |
-
"
|
| 6587 |
-
"
|
| 6588 |
-
"
|
| 6589 |
-
"
|
| 6590 |
-
"
|
| 6591 |
-
"
|
| 6592 |
-
"
|
| 6593 |
-
"
|
| 6594 |
-
"
|
| 6595 |
-
"
|
| 6596 |
-
"
|
| 6597 |
-
"
|
| 6598 |
-
"
|
| 6599 |
-
"
|
| 6600 |
-
"
|
| 6601 |
-
"
|
| 6602 |
-
"
|
| 6603 |
-
"
|
| 6604 |
-
"
|
| 6605 |
-
"
|
| 6606 |
-
"
|
| 6607 |
-
"
|
| 6608 |
-
"
|
| 6609 |
-
"
|
| 6610 |
-
"
|
| 6611 |
-
"
|
| 6612 |
-
"
|
| 6613 |
-
"
|
| 6614 |
-
"
|
| 6615 |
-
"
|
| 6616 |
-
"
|
| 6617 |
-
"
|
| 6618 |
-
"
|
| 6619 |
-
"
|
| 6620 |
-
"
|
| 6621 |
-
"
|
| 6622 |
-
"
|
| 6623 |
-
"
|
| 6624 |
-
"
|
| 6625 |
-
"
|
| 6626 |
-
"
|
| 6627 |
-
"
|
| 6628 |
-
"
|
| 6629 |
-
"
|
| 6630 |
-
"
|
| 6631 |
-
"
|
| 6632 |
-
"
|
| 6633 |
-
"
|
| 6634 |
-
"
|
| 6635 |
-
"
|
| 6636 |
-
"
|
| 6637 |
-
"
|
| 6638 |
-
"
|
| 6639 |
-
"
|
| 6640 |
-
"
|
| 6641 |
-
"
|
| 6642 |
-
"
|
| 6643 |
-
"
|
| 6644 |
-
"
|
| 6645 |
-
"
|
| 6646 |
-
"
|
| 6647 |
-
"
|
| 6648 |
-
"
|
| 6649 |
-
"
|
| 6650 |
-
"
|
| 6651 |
-
"
|
| 6652 |
-
"
|
| 6653 |
-
"
|
| 6654 |
-
"
|
| 6655 |
-
"
|
| 6656 |
-
"
|
| 6657 |
-
"
|
| 6658 |
-
"
|
| 6659 |
-
"
|
| 6660 |
"update1": 6504,
|
| 6661 |
-
"
|
| 6662 |
-
"
|
| 6663 |
-
"
|
| 6664 |
-
"
|
| 6665 |
-
"
|
| 6666 |
-
"
|
| 6667 |
-
"
|
| 6668 |
-
"
|
| 6669 |
-
"
|
| 6670 |
-
"
|
| 6671 |
-
"
|
| 6672 |
-
"
|
| 6673 |
-
"
|
| 6674 |
-
"
|
| 6675 |
-
"
|
| 6676 |
-
"
|
| 6677 |
-
"
|
| 6678 |
-
"
|
| 6679 |
-
"
|
| 6680 |
-
"
|
| 6681 |
-
"
|
| 6682 |
-
"
|
| 6683 |
-
"
|
| 6684 |
-
"
|
| 6685 |
-
"
|
| 6686 |
-
"
|
| 6687 |
-
"
|
| 6688 |
-
"
|
| 6689 |
-
"
|
| 6690 |
-
"
|
| 6691 |
-
"
|
| 6692 |
-
"
|
| 6693 |
-
"
|
| 6694 |
-
"
|
| 6695 |
-
"
|
| 6696 |
-
"
|
| 6697 |
-
"
|
| 6698 |
-
"
|
| 6699 |
-
"
|
| 6700 |
-
"
|
| 6701 |
-
"
|
| 6702 |
-
"
|
| 6703 |
-
"
|
| 6704 |
-
"
|
| 6705 |
-
"
|
| 6706 |
-
"
|
| 6707 |
-
"
|
| 6708 |
-
"
|
| 6709 |
-
"
|
| 6710 |
-
"
|
| 6711 |
-
"
|
| 6712 |
-
"
|
| 6713 |
-
"
|
| 6714 |
-
"
|
| 6715 |
-
"
|
| 6716 |
-
"
|
| 6717 |
-
"
|
| 6718 |
-
"
|
| 6719 |
-
"
|
| 6720 |
-
"
|
| 6721 |
-
"
|
| 6722 |
-
"
|
| 6723 |
-
"
|
| 6724 |
-
"
|
| 6725 |
-
"
|
| 6726 |
-
"
|
| 6727 |
-
"
|
| 6728 |
-
"
|
| 6729 |
-
"
|
| 6730 |
-
"
|
| 6731 |
-
"
|
| 6732 |
-
"
|
| 6733 |
-
"
|
| 6734 |
-
"
|
| 6735 |
-
"
|
| 6736 |
-
"
|
| 6737 |
-
"
|
| 6738 |
-
"
|
| 6739 |
-
"
|
| 6740 |
-
"
|
| 6741 |
-
"
|
| 6742 |
-
"
|
| 6743 |
-
"
|
| 6744 |
-
"
|
| 6745 |
-
"
|
| 6746 |
-
"
|
| 6747 |
-
"
|
| 6748 |
-
"
|
| 6749 |
-
"
|
| 6750 |
-
"
|
| 6751 |
-
"
|
| 6752 |
-
"
|
| 6753 |
-
"
|
| 6754 |
-
"
|
| 6755 |
-
"
|
| 6756 |
-
"
|
| 6757 |
-
"
|
| 6758 |
-
"
|
| 6759 |
-
"
|
| 6760 |
-
"
|
| 6761 |
-
"
|
| 6762 |
-
"
|
| 6763 |
-
"
|
| 6764 |
-
"
|
| 6765 |
-
"
|
| 6766 |
-
"
|
| 6767 |
-
"
|
| 6768 |
-
"
|
| 6769 |
-
"
|
| 6770 |
-
"
|
| 6771 |
-
"
|
| 6772 |
-
"
|
| 6773 |
-
"
|
| 6774 |
-
"
|
| 6775 |
-
"
|
| 6776 |
-
"
|
| 6777 |
-
"
|
| 6778 |
-
"
|
| 6779 |
-
"
|
| 6780 |
-
"
|
| 6781 |
-
"
|
| 6782 |
-
"
|
| 6783 |
-
"
|
| 6784 |
-
"
|
| 6785 |
-
"
|
| 6786 |
-
"
|
| 6787 |
-
"
|
| 6788 |
-
"
|
| 6789 |
-
"
|
| 6790 |
-
"
|
| 6791 |
-
"
|
| 6792 |
-
"
|
| 6793 |
-
"
|
| 6794 |
-
"
|
| 6795 |
-
"
|
| 6796 |
-
"
|
| 6797 |
-
"
|
| 6798 |
-
"
|
| 6799 |
-
"
|
| 6800 |
-
"
|
| 6801 |
-
"
|
| 6802 |
-
"
|
| 6803 |
-
"
|
| 6804 |
-
"
|
| 6805 |
-
"
|
| 6806 |
-
"
|
| 6807 |
-
"
|
| 6808 |
-
"
|
| 6809 |
-
"
|
| 6810 |
-
"
|
| 6811 |
-
"
|
| 6812 |
-
"
|
| 6813 |
-
"
|
| 6814 |
-
"
|
| 6815 |
-
"
|
| 6816 |
-
"
|
| 6817 |
-
"
|
| 6818 |
-
"
|
| 6819 |
-
"
|
| 6820 |
-
"
|
| 6821 |
-
"
|
| 6822 |
-
"
|
| 6823 |
-
"
|
| 6824 |
-
"
|
| 6825 |
-
"
|
| 6826 |
-
"
|
| 6827 |
-
"
|
| 6828 |
-
"
|
| 6829 |
-
"
|
| 6830 |
-
"
|
| 6831 |
-
"
|
| 6832 |
-
"
|
| 6833 |
-
"
|
| 6834 |
-
"
|
| 6835 |
-
"
|
| 6836 |
-
"
|
| 6837 |
-
"
|
| 6838 |
-
"
|
| 6839 |
-
"
|
| 6840 |
-
"
|
| 6841 |
-
"
|
| 6842 |
-
"
|
| 6843 |
-
"
|
| 6844 |
-
"
|
| 6845 |
-
"
|
| 6846 |
-
"
|
| 6847 |
-
"
|
| 6848 |
-
"
|
| 6849 |
-
"
|
| 6850 |
-
"
|
| 6851 |
-
"
|
| 6852 |
-
"
|
| 6853 |
-
"
|
| 6854 |
-
"
|
| 6855 |
-
"
|
| 6856 |
-
"
|
| 6857 |
-
"
|
| 6858 |
-
"
|
| 6859 |
-
"
|
| 6860 |
-
"
|
| 6861 |
-
"
|
| 6862 |
-
"
|
| 6863 |
-
"
|
| 6864 |
-
"
|
| 6865 |
-
"
|
| 6866 |
-
"
|
| 6867 |
-
"
|
| 6868 |
-
"
|
| 6869 |
-
"
|
| 6870 |
-
"
|
| 6871 |
-
"
|
| 6872 |
-
"
|
| 6873 |
-
"
|
| 6874 |
-
"
|
| 6875 |
-
"
|
| 6876 |
-
"
|
| 6877 |
-
"
|
| 6878 |
-
"
|
| 6879 |
-
"
|
| 6880 |
-
"
|
| 6881 |
-
"
|
| 6882 |
-
"
|
| 6883 |
-
"
|
| 6884 |
-
"
|
| 6885 |
-
"
|
| 6886 |
-
"
|
| 6887 |
-
"
|
| 6888 |
-
"
|
| 6889 |
-
"
|
| 6890 |
-
"
|
| 6891 |
-
"
|
| 6892 |
-
"
|
| 6893 |
-
"
|
| 6894 |
-
"
|
| 6895 |
-
"
|
| 6896 |
-
"
|
| 6897 |
-
"
|
| 6898 |
-
"
|
| 6899 |
-
"
|
| 6900 |
-
"
|
| 6901 |
-
"
|
| 6902 |
-
"
|
| 6903 |
-
"
|
| 6904 |
-
"
|
| 6905 |
-
"
|
| 6906 |
-
"
|
| 6907 |
-
"
|
| 6908 |
-
"
|
| 6909 |
-
"
|
| 6910 |
-
"
|
| 6911 |
-
"
|
| 6912 |
-
"
|
| 6913 |
-
"
|
| 6914 |
-
"
|
| 6915 |
-
"
|
| 6916 |
-
"
|
| 6917 |
-
"
|
| 6918 |
-
"
|
| 6919 |
-
"
|
| 6920 |
-
"
|
| 6921 |
-
"
|
| 6922 |
-
"
|
| 6923 |
-
"
|
| 6924 |
-
"
|
| 6925 |
-
"
|
| 6926 |
-
"
|
| 6927 |
-
"
|
| 6928 |
-
"
|
| 6929 |
-
"
|
| 6930 |
-
"
|
| 6931 |
-
"
|
| 6932 |
-
"
|
| 6933 |
-
"
|
| 6934 |
-
"
|
| 6935 |
-
"
|
| 6936 |
-
"
|
| 6937 |
-
"
|
| 6938 |
-
"
|
| 6939 |
-
"
|
| 6940 |
-
"
|
| 6941 |
-
"
|
| 6942 |
-
"
|
| 6943 |
-
"
|
| 6944 |
-
"
|
| 6945 |
-
"
|
| 6946 |
-
"
|
| 6947 |
-
"
|
| 6948 |
-
"
|
| 6949 |
-
"
|
| 6950 |
-
"
|
| 6951 |
-
"
|
| 6952 |
-
"
|
| 6953 |
-
"
|
| 6954 |
-
"
|
| 6955 |
-
"
|
| 6956 |
-
"
|
| 6957 |
-
"
|
| 6958 |
-
"
|
| 6959 |
-
"
|
| 6960 |
-
"
|
| 6961 |
-
"
|
| 6962 |
-
"
|
| 6963 |
-
"
|
| 6964 |
-
"
|
| 6965 |
-
"
|
| 6966 |
-
"
|
| 6967 |
-
"
|
| 6968 |
-
"
|
| 6969 |
-
"
|
| 6970 |
-
"
|
| 6971 |
-
"
|
| 6972 |
-
"
|
| 6973 |
-
"
|
| 6974 |
-
"
|
| 6975 |
-
"
|
| 6976 |
-
"
|
| 6977 |
-
"
|
| 6978 |
-
"
|
| 6979 |
-
"
|
| 6980 |
-
"
|
| 6981 |
-
"
|
| 6982 |
-
"
|
| 6983 |
-
"
|
| 6984 |
-
"
|
| 6985 |
-
"
|
| 6986 |
-
"
|
| 6987 |
-
"
|
| 6988 |
-
"
|
| 6989 |
-
"
|
| 6990 |
-
"
|
| 6991 |
-
"
|
| 6992 |
-
"
|
| 6993 |
-
"
|
| 6994 |
-
"
|
| 6995 |
"##owledged": 6839,
|
| 6996 |
"chavez": 6840,
|
| 6997 |
"deutsche": 6841,
|
|
@@ -7020,12 +7020,12 @@
|
|
| 7020 |
"650": 6864,
|
| 7021 |
"7e": 6865,
|
| 7022 |
"77": 6866,
|
| 7023 |
-
"
|
| 7024 |
-
"
|
| 7025 |
"93": 6869,
|
| 7026 |
"950": 6870,
|
| 7027 |
-
"
|
| 7028 |
-
"
|
| 7029 |
"aet": 6873,
|
| 7030 |
"aven": 6874,
|
| 7031 |
"bug": 6875,
|
|
@@ -7107,8 +7107,8 @@
|
|
| 7107 |
"ol": 6951,
|
| 7108 |
"oce": 6952,
|
| 7109 |
"ori": 6953,
|
| 7110 |
-
"
|
| 7111 |
-
"
|
| 7112 |
"pad": 6956,
|
| 7113 |
"pest": 6957,
|
| 7114 |
"pist": 6958,
|
|
@@ -7139,8 +7139,8 @@
|
|
| 7139 |
"tying": 6983,
|
| 7140 |
"tumb": 6984,
|
| 7141 |
"tumble": 6985,
|
| 7142 |
-
"
|
| 7143 |
-
"
|
| 7144 |
"u2": 6988,
|
| 7145 |
"van": 6989,
|
| 7146 |
"vanc": 6990,
|
|
@@ -7160,64 +7160,64 @@
|
|
| 7160 |
"zid": 7004,
|
| 7161 |
"ziff": 7005,
|
| 7162 |
"##ean": 7006,
|
| 7163 |
-
"##
|
| 7164 |
-
"##
|
| 7165 |
-
"##
|
| 7166 |
-
"##
|
| 7167 |
-
"##
|
| 7168 |
-
"##
|
| 7169 |
-
"##
|
| 7170 |
-
"##
|
| 7171 |
-
"##
|
| 7172 |
-
"##
|
| 7173 |
-
"##
|
| 7174 |
-
"##
|
| 7175 |
-
"##
|
| 7176 |
-
"##
|
| 7177 |
-
"##
|
| 7178 |
-
"##
|
| 7179 |
-
"##
|
| 7180 |
-
"##
|
| 7181 |
-
"##
|
| 7182 |
-
"##
|
| 7183 |
-
"##
|
| 7184 |
-
"##
|
| 7185 |
-
"##
|
| 7186 |
-
"##
|
| 7187 |
-
"##
|
| 7188 |
-
"##
|
| 7189 |
-
"##
|
| 7190 |
-
"##
|
| 7191 |
-
"##
|
| 7192 |
-
"##
|
| 7193 |
-
"##
|
| 7194 |
-
"##
|
| 7195 |
-
"##
|
| 7196 |
-
"##
|
| 7197 |
-
"##
|
| 7198 |
-
"##
|
| 7199 |
-
"##
|
| 7200 |
-
"##
|
| 7201 |
-
"##
|
| 7202 |
-
"##
|
| 7203 |
-
"##
|
| 7204 |
-
"##
|
| 7205 |
-
"##
|
| 7206 |
-
"##
|
| 7207 |
-
"##
|
| 7208 |
-
"##
|
| 7209 |
-
"##
|
| 7210 |
-
"##
|
| 7211 |
-
"##
|
| 7212 |
-
"##
|
| 7213 |
-
"##
|
| 7214 |
-
"##
|
| 7215 |
-
"##
|
| 7216 |
-
"##
|
| 7217 |
-
"##
|
| 7218 |
-
"##
|
| 7219 |
-
"##
|
| 7220 |
-
"##
|
| 7221 |
"##xious": 7065,
|
| 7222 |
"##35": 7066,
|
| 7223 |
"##erious": 7067,
|
|
@@ -7393,8 +7393,8 @@
|
|
| 7393 |
"monetary": 7237,
|
| 7394 |
"haven": 7238,
|
| 7395 |
"haiti": 7239,
|
| 7396 |
-
"
|
| 7397 |
-
"
|
| 7398 |
"##ella": 7242,
|
| 7399 |
"amr": 7243,
|
| 7400 |
"amelie": 7244,
|
|
@@ -7648,9 +7648,9 @@
|
|
| 7648 |
"really": 7492,
|
| 7649 |
"realnetw": 7493,
|
| 7650 |
"147": 7494,
|
| 7651 |
-
"
|
| 7652 |
"140": 7496,
|
| 7653 |
-
"
|
| 7654 |
"household": 7498,
|
| 7655 |
"mcken": 7499,
|
| 7656 |
"visa": 7500,
|
|
@@ -7811,8 +7811,8 @@
|
|
| 7811 |
"focusing": 7655,
|
| 7812 |
"copper": 7656,
|
| 7813 |
"fixes": 7657,
|
| 7814 |
-
"##
|
| 7815 |
-
"##
|
| 7816 |
"towns": 7660,
|
| 7817 |
"suffering": 7661,
|
| 7818 |
"declares": 7662,
|
|
@@ -8045,8 +8045,8 @@
|
|
| 8045 |
"astronomers": 7889,
|
| 8046 |
"neighborhood": 7890,
|
| 8047 |
"dhaka": 7891,
|
| 8048 |
-
"
|
| 8049 |
-
"
|
| 8050 |
"false": 7894,
|
| 8051 |
"goran": 7895,
|
| 8052 |
"gurunet": 7896,
|
|
@@ -8145,8 +8145,8 @@
|
|
| 8145 |
"1b": 7989,
|
| 8146 |
"1st": 7990,
|
| 8147 |
"166": 7991,
|
| 8148 |
-
"
|
| 8149 |
-
"
|
| 8150 |
"92": 7994,
|
| 8151 |
"95": 7995,
|
| 8152 |
"900": 7996,
|
|
|
|
| 10 |
"added_tokens": [
|
| 11 |
{
|
| 12 |
"id": 0,
|
| 13 |
+
"content": "<redacted_PAD>",
|
| 14 |
"single_word": false,
|
| 15 |
"lstrip": false,
|
| 16 |
"rstrip": false,
|
|
|
|
| 19 |
},
|
| 20 |
{
|
| 21 |
"id": 1,
|
| 22 |
+
"content": "<redacted_UNK>",
|
| 23 |
"single_word": false,
|
| 24 |
"lstrip": false,
|
| 25 |
"rstrip": false,
|
|
|
|
| 149 |
"decoder": null,
|
| 150 |
"model": {
|
| 151 |
"type": "WordPiece",
|
| 152 |
+
"unk_token": "<redacted_UNK>",
|
| 153 |
"continuing_subword_prefix": "##",
|
| 154 |
"max_input_chars_per_word": 100,
|
| 155 |
"vocab": {
|
| 156 |
+
"<redacted_PAD>": 0,
|
| 157 |
+
"<redacted_UNK>": 1,
|
| 158 |
"[CLS]": 2,
|
| 159 |
"[SEP]": 3,
|
| 160 |
"[MASK]": 4,
|
|
|
|
| 214 |
"y": 58,
|
| 215 |
"z": 59,
|
| 216 |
"##e": 60,
|
| 217 |
+
"##c": 61,
|
| 218 |
+
"##q": 62,
|
| 219 |
+
"##u": 63,
|
| 220 |
+
"##z": 64,
|
| 221 |
+
"##o": 65,
|
| 222 |
+
"##n": 66,
|
| 223 |
+
"##d": 67,
|
| 224 |
+
"##r": 68,
|
| 225 |
+
"##t": 69,
|
| 226 |
+
"##i": 70,
|
| 227 |
+
"##s": 71,
|
| 228 |
+
"##j": 72,
|
| 229 |
+
"##g": 73,
|
| 230 |
+
"##y": 74,
|
| 231 |
+
"##a": 75,
|
| 232 |
+
"##k": 76,
|
| 233 |
"##h": 77,
|
| 234 |
+
"##l": 78,
|
| 235 |
+
"##p": 79,
|
| 236 |
+
"##w": 80,
|
| 237 |
"##f": 81,
|
| 238 |
+
"##\\": 82,
|
| 239 |
+
"##&": 83,
|
| 240 |
+
"##m": 84,
|
| 241 |
+
"##b": 85,
|
| 242 |
+
"##7": 86,
|
| 243 |
+
"##v": 87,
|
| 244 |
+
"##2": 88,
|
| 245 |
+
"##9": 89,
|
| 246 |
+
"##1": 90,
|
| 247 |
+
"##x": 91,
|
| 248 |
+
"##3": 92,
|
| 249 |
+
"##5": 93,
|
| 250 |
+
"##8": 94,
|
| 251 |
+
"##4": 95,
|
| 252 |
+
"##0": 96,
|
| 253 |
+
"##6": 97,
|
| 254 |
+
"##.": 98,
|
| 255 |
+
"##/": 99,
|
| 256 |
"##:": 100,
|
| 257 |
+
"##'": 101,
|
| 258 |
+
"##\"": 102,
|
| 259 |
"##,": 103,
|
| 260 |
+
"##-": 104,
|
| 261 |
+
"##*": 105,
|
| 262 |
+
"##$": 106,
|
| 263 |
+
"##)": 107,
|
| 264 |
+
"##(": 108,
|
| 265 |
"###": 109,
|
| 266 |
+
"##_": 110,
|
| 267 |
"##er": 111,
|
| 268 |
"th": 112,
|
| 269 |
"##in": 113,
|
|
|
|
| 690 |
"##ood": 534,
|
| 691 |
"li": 535,
|
| 692 |
"tech": 536,
|
| 693 |
+
"##duc": 537,
|
| 694 |
+
"##ged": 538,
|
| 695 |
"##yst": 539,
|
| 696 |
+
"##az": 540,
|
| 697 |
+
"##les": 541,
|
| 698 |
"week": 542,
|
| 699 |
"##ason": 543,
|
| 700 |
"##ounc": 544,
|
|
|
|
| 761 |
"##ely": 605,
|
| 762 |
"ass": 606,
|
| 763 |
"news": 607,
|
| 764 |
+
"##gr": 608,
|
| 765 |
+
"##land": 609,
|
| 766 |
"##orts": 610,
|
| 767 |
"afp": 611,
|
| 768 |
"milit": 612,
|
|
|
|
| 782 |
"stocks": 626,
|
| 783 |
"red": 627,
|
| 784 |
"ter": 628,
|
| 785 |
+
"##co": 629,
|
| 786 |
+
"##line": 630,
|
| 787 |
"fed": 631,
|
| 788 |
"par": 632,
|
| 789 |
"shar": 633,
|
|
|
|
| 890 |
"##ards": 734,
|
| 891 |
"years": 735,
|
| 892 |
"help": 736,
|
| 893 |
+
"##ct": 737,
|
| 894 |
+
"##ual": 738,
|
| 895 |
+
"##ger": 739,
|
| 896 |
+
"##ph": 740,
|
| 897 |
"near": 741,
|
| 898 |
"launch": 742,
|
| 899 |
"##int": 743,
|
|
|
|
| 914 |
"col": 758,
|
| 915 |
"day": 759,
|
| 916 |
"jap": 760,
|
| 917 |
+
"##ied": 761,
|
| 918 |
+
"##ms": 762,
|
| 919 |
"##ony": 763,
|
| 920 |
"champ": 764,
|
| 921 |
"aw": 765,
|
|
|
|
| 988 |
"killed": 832,
|
| 989 |
"home": 833,
|
| 990 |
"job": 834,
|
| 991 |
+
"##cer": 835,
|
| 992 |
+
"##ious": 836,
|
| 993 |
"##inian": 837,
|
| 994 |
"##orn": 838,
|
| 995 |
"##ures": 839,
|
|
|
|
| 998 |
"ca": 842,
|
| 999 |
"fall": 843,
|
| 1000 |
"tra": 844,
|
| 1001 |
+
"##uts": 845,
|
| 1002 |
+
"##bs": 846,
|
| 1003 |
"##ants": 847,
|
| 1004 |
"ins": 848,
|
| 1005 |
"plans": 849,
|
|
|
|
| 1111 |
"ed": 955,
|
| 1112 |
"loss": 956,
|
| 1113 |
"publ": 957,
|
| 1114 |
+
"##ium": 958,
|
| 1115 |
+
"##be": 959,
|
| 1116 |
"##ving": 960,
|
| 1117 |
"stre": 961,
|
| 1118 |
"##use": 962,
|
|
|
|
| 1136 |
"19": 980,
|
| 1137 |
"11": 981,
|
| 1138 |
"san": 982,
|
| 1139 |
+
"##ges": 983,
|
| 1140 |
+
"##lud": 984,
|
| 1141 |
+
"##bm": 985,
|
| 1142 |
"##ons": 986,
|
| 1143 |
"##ities": 987,
|
| 1144 |
"##eld": 988,
|
|
|
|
| 1150 |
"pakistan": 994,
|
| 1151 |
"her": 995,
|
| 1152 |
"way": 996,
|
| 1153 |
+
"##ned": 997,
|
| 1154 |
+
"##ling": 998,
|
| 1155 |
"##pr": 999,
|
| 1156 |
"stock": 1000,
|
| 1157 |
"leader": 1001,
|
|
|
|
| 1188 |
"tick": 1032,
|
| 1189 |
"##eb": 1033,
|
| 1190 |
"##eep": 1034,
|
| 1191 |
+
"##ces": 1035,
|
| 1192 |
+
"##ted": 1036,
|
| 1193 |
+
"##lin": 1037,
|
| 1194 |
+
"##let": 1038,
|
| 1195 |
"##ank": 1039,
|
| 1196 |
"##round": 1040,
|
| 1197 |
"##isco": 1041,
|
|
|
|
| 1225 |
"baghdad": 1069,
|
| 1226 |
"cust": 1070,
|
| 1227 |
"nas": 1071,
|
| 1228 |
+
"##ok": 1072,
|
| 1229 |
+
"##ty": 1073,
|
| 1230 |
"there": 1074,
|
| 1231 |
"##ects": 1075,
|
| 1232 |
"being": 1076,
|
|
|
|
| 1267 |
"gre": 1111,
|
| 1268 |
"make": 1112,
|
| 1269 |
"##eks": 1113,
|
| 1270 |
+
"##gy": 1114,
|
| 1271 |
+
"##fore": 1115,
|
| 1272 |
"##ility": 1116,
|
| 1273 |
"before": 1117,
|
| 1274 |
"dev": 1118,
|
|
|
|
| 1327 |
"mid": 1171,
|
| 1328 |
"riv": 1172,
|
| 1329 |
"sold": 1173,
|
| 1330 |
+
"##ov": 1174,
|
| 1331 |
+
"##over": 1175,
|
| 1332 |
+
"##se": 1176,
|
| 1333 |
"stud": 1177,
|
| 1334 |
"##ution": 1178,
|
| 1335 |
"prime": 1179,
|
|
|
|
| 1355 |
"many": 1199,
|
| 1356 |
"round": 1200,
|
| 1357 |
"ww": 1201,
|
| 1358 |
+
"##cl": 1202,
|
| 1359 |
+
"##ux": 1203,
|
| 1360 |
+
"##son": 1204,
|
| 1361 |
"##aw": 1205,
|
| 1362 |
+
"##loy": 1206,
|
| 1363 |
"##fat": 1207,
|
| 1364 |
"##ene": 1208,
|
| 1365 |
"##ication": 1209,
|
|
|
|
| 1460 |
"poss": 1304,
|
| 1461 |
"six": 1305,
|
| 1462 |
"tur": 1306,
|
| 1463 |
+
"##com": 1307,
|
| 1464 |
+
"##uel": 1308,
|
| 1465 |
"##ject": 1309,
|
| 1466 |
"##ind": 1310,
|
| 1467 |
"##elf": 1311,
|
|
|
|
| 1475 |
"num": 1319,
|
| 1476 |
"tim": 1320,
|
| 1477 |
"your": 1321,
|
| 1478 |
+
"##ne": 1322,
|
| 1479 |
"##ior": 1323,
|
| 1480 |
+
"##ave": 1324,
|
| 1481 |
"##ham": 1325,
|
| 1482 |
"##pite": 1326,
|
| 1483 |
"##erry": 1327,
|
|
|
|
| 1523 |
"lif": 1367,
|
| 1524 |
"past": 1368,
|
| 1525 |
"rul": 1369,
|
| 1526 |
+
"##iers": 1370,
|
| 1527 |
+
"##med": 1371,
|
| 1528 |
"##info": 1372,
|
| 1529 |
"##iting": 1373,
|
| 1530 |
"##ised": 1374,
|
|
|
|
| 1657 |
"sent": 1501,
|
| 1658 |
"soc": 1502,
|
| 1659 |
"##ev": 1503,
|
| 1660 |
+
"##oid": 1504,
|
| 1661 |
+
"##ners": 1505,
|
| 1662 |
+
"##ik": 1506,
|
| 1663 |
+
"##so": 1507,
|
| 1664 |
+
"##ws": 1508,
|
| 1665 |
+
"##min": 1509,
|
| 1666 |
+
"##back": 1510,
|
| 1667 |
"##ator": 1511,
|
| 1668 |
"##ida": 1512,
|
| 1669 |
"chr": 1513,
|
|
|
|
| 1718 |
"men": 1562,
|
| 1719 |
"match": 1563,
|
| 1720 |
"val": 1564,
|
| 1721 |
+
"##da": 1565,
|
| 1722 |
+
"##gan": 1566,
|
| 1723 |
+
"##port": 1567,
|
| 1724 |
"##van": 1568,
|
| 1725 |
"inf": 1569,
|
| 1726 |
"##ally": 1570,
|
|
|
|
| 1755 |
"lo": 1599,
|
| 1756 |
"mal": 1600,
|
| 1757 |
"ur": 1601,
|
| 1758 |
+
"##ns": 1602,
|
| 1759 |
+
"##ness": 1603,
|
| 1760 |
+
"##sh": 1604,
|
| 1761 |
+
"##ging": 1605,
|
| 1762 |
+
"##ai": 1606,
|
| 1763 |
+
"##ler": 1607,
|
| 1764 |
+
"##pe": 1608,
|
| 1765 |
+
"##fact": 1609,
|
| 1766 |
"##ered": 1610,
|
| 1767 |
"##ench": 1611,
|
| 1768 |
"##row": 1612,
|
|
|
|
| 1797 |
"vo": 1641,
|
| 1798 |
"want": 1642,
|
| 1799 |
"##ta": 1643,
|
| 1800 |
+
"##ause": 1644,
|
| 1801 |
+
"##lo": 1645,
|
| 1802 |
+
"##lier": 1646,
|
| 1803 |
+
"##ward": 1647,
|
| 1804 |
+
"##mber": 1648,
|
| 1805 |
"toky": 1649,
|
| 1806 |
"stop": 1650,
|
| 1807 |
"reven": 1651,
|
|
|
|
| 1839 |
"mail": 1683,
|
| 1840 |
"much": 1684,
|
| 1841 |
"outs": 1685,
|
| 1842 |
+
"##uj": 1686,
|
| 1843 |
+
"##uk": 1687,
|
| 1844 |
+
"##gers": 1688,
|
| 1845 |
+
"##pl": 1689,
|
| 1846 |
"##att": 1690,
|
| 1847 |
"anal": 1691,
|
| 1848 |
"##chester": 1692,
|
|
|
|
| 1884 |
"pur": 1728,
|
| 1885 |
"sn": 1729,
|
| 1886 |
"tv": 1730,
|
| 1887 |
+
"##off": 1731,
|
| 1888 |
+
"##red": 1732,
|
| 1889 |
+
"##af": 1733,
|
| 1890 |
+
"##ael": 1734,
|
| 1891 |
+
"##ked": 1735,
|
| 1892 |
+
"##ming": 1736,
|
| 1893 |
+
"##by": 1737,
|
| 1894 |
"##atic": 1738,
|
| 1895 |
"##ative": 1739,
|
| 1896 |
"inform": 1740,
|
|
|
|
| 1940 |
"rise": 1784,
|
| 1941 |
"##ex": 1785,
|
| 1942 |
"##eal": 1786,
|
| 1943 |
+
"##ress": 1787,
|
| 1944 |
+
"##iver": 1788,
|
| 1945 |
+
"##go": 1789,
|
| 1946 |
+
"##aign": 1790,
|
| 1947 |
+
"##ll": 1791,
|
| 1948 |
"##esh": 1792,
|
| 1949 |
+
"##eng": 1793,
|
| 1950 |
+
"##ena": 1794,
|
| 1951 |
"forces": 1795,
|
| 1952 |
"univers": 1796,
|
| 1953 |
"##rial": 1797,
|
|
|
|
| 1979 |
"rates": 1823,
|
| 1980 |
"rank": 1824,
|
| 1981 |
"xp": 1825,
|
| 1982 |
+
"##cy": 1826,
|
| 1983 |
+
"##cri": 1827,
|
| 1984 |
+
"##ny": 1828,
|
| 1985 |
+
"##ping": 1829,
|
| 1986 |
"##ink": 1830,
|
| 1987 |
"##ests": 1831,
|
| 1988 |
"##ater": 1832,
|
|
|
|
| 2103 |
"sil": 1947,
|
| 2104 |
"sim": 1948,
|
| 2105 |
"sum": 1949,
|
| 2106 |
+
"##de": 1950,
|
| 2107 |
+
"##lant": 1951,
|
| 2108 |
+
"##lines": 1952,
|
| 2109 |
"##enal": 1953,
|
| 2110 |
"##ale": 1954,
|
| 2111 |
"prison": 1955,
|
|
|
|
| 2158 |
"wound": 2002,
|
| 2159 |
"wild": 2003,
|
| 2160 |
"##eat": 2004,
|
| 2161 |
+
"##cc": 2005,
|
| 2162 |
+
"##ney": 2006,
|
| 2163 |
+
"##til": 2007,
|
| 2164 |
"##ij": 2008,
|
| 2165 |
"##ience": 2009,
|
| 2166 |
"##ket": 2010,
|
| 2167 |
+
"##mir": 2011,
|
| 2168 |
+
"##bur": 2012,
|
| 2169 |
"##ining": 2013,
|
| 2170 |
"##ately": 2014,
|
| 2171 |
"infl": 2015,
|
|
|
|
| 2275 |
"yards": 2119,
|
| 2276 |
"##ef": 2120,
|
| 2277 |
"##ees": 2121,
|
| 2278 |
+
"##gin": 2122,
|
| 2279 |
+
"##lam": 2123,
|
| 2280 |
+
"##less": 2124,
|
| 2281 |
+
"##bit": 2125,
|
| 2282 |
"##ert": 2126,
|
| 2283 |
"though": 2127,
|
| 2284 |
"##inal": 2128,
|
|
|
|
| 2332 |
"sir": 2176,
|
| 2333 |
"youn": 2177,
|
| 2334 |
"yasser": 2178,
|
| 2335 |
+
"##zil": 2179,
|
| 2336 |
+
"##hic": 2180,
|
| 2337 |
+
"##lad": 2181,
|
| 2338 |
"##ways": 2182,
|
| 2339 |
+
"##bc": 2183,
|
| 2340 |
+
"##band": 2184,
|
| 2341 |
"those": 2185,
|
| 2342 |
"##ined": 2186,
|
| 2343 |
"##orks": 2187,
|
|
|
|
| 2472 |
"rout": 2316,
|
| 2473 |
"vol": 2317,
|
| 2474 |
"wants": 2318,
|
| 2475 |
+
"##dle": 2319,
|
| 2476 |
+
"##ban": 2320,
|
| 2477 |
"##arm": 2321,
|
| 2478 |
"##ared": 2322,
|
| 2479 |
"##itness": 2323,
|
|
|
|
| 2530 |
"roy": 2374,
|
| 2531 |
"rising": 2375,
|
| 2532 |
"yah": 2376,
|
| 2533 |
+
"##oint": 2377,
|
| 2534 |
+
"##den": 2378,
|
| 2535 |
+
"##res": 2379,
|
| 2536 |
+
"##ren": 2380,
|
| 2537 |
+
"##iest": 2381,
|
| 2538 |
+
"##han": 2382,
|
| 2539 |
+
"##wh": 2383,
|
| 2540 |
+
"##mo": 2384,
|
| 2541 |
+
"##mar": 2385,
|
| 2542 |
+
"##br": 2386,
|
| 2543 |
"##ona": 2387,
|
| 2544 |
"town": 2388,
|
| 2545 |
"##icip": 2389,
|
|
|
|
| 2605 |
"penn": 2449,
|
| 2606 |
"rap": 2450,
|
| 2607 |
"witness": 2451,
|
| 2608 |
+
"##no": 2452,
|
| 2609 |
+
"##ds": 2453,
|
| 2610 |
+
"##set": 2454,
|
| 2611 |
+
"##sue": 2455,
|
| 2612 |
+
"##gage": 2456,
|
| 2613 |
+
"##bi": 2457,
|
| 2614 |
+
"##bed": 2458,
|
| 2615 |
"##val": 2459,
|
| 2616 |
"##vet": 2460,
|
| 2617 |
"##50": 2461,
|
|
|
|
| 2697 |
"same": 2541,
|
| 2698 |
"vill": 2542,
|
| 2699 |
"##ric": 2543,
|
| 2700 |
+
"##iw": 2544,
|
| 2701 |
+
"##ga": 2545,
|
| 2702 |
+
"##yl": 2546,
|
| 2703 |
+
"##yle": 2547,
|
| 2704 |
+
"##kins": 2548,
|
| 2705 |
+
"##pal": 2549,
|
| 2706 |
+
"##we": 2550,
|
| 2707 |
+
"##wards": 2551,
|
| 2708 |
+
"##mas": 2552,
|
| 2709 |
+
"##bo": 2553,
|
| 2710 |
"##xic": 2554,
|
| 2711 |
"##ino": 2555,
|
| 2712 |
"##ories": 2556,
|
|
|
|
| 2804 |
"vent": 2648,
|
| 2805 |
"vote": 2649,
|
| 2806 |
"western": 2650,
|
| 2807 |
+
"##ues": 2651,
|
| 2808 |
+
"##oot": 2652,
|
| 2809 |
+
"##rac": 2653,
|
| 2810 |
+
"##te": 2654,
|
| 2811 |
+
"##aff": 2655,
|
| 2812 |
+
"##mit": 2656,
|
| 2813 |
"##inc": 2657,
|
| 2814 |
"##ana": 2658,
|
| 2815 |
"##atory": 2659,
|
|
|
|
| 2897 |
"wid": 2741,
|
| 2898 |
"wood": 2742,
|
| 2899 |
"yuk": 2743,
|
| 2900 |
+
"##come": 2744,
|
| 2901 |
+
"##ufact": 2745,
|
| 2902 |
+
"##nes": 2746,
|
| 2903 |
+
"##rich": 2747,
|
| 2904 |
+
"##get": 2748,
|
| 2905 |
+
"##lt": 2749,
|
| 2906 |
+
"##liam": 2750,
|
| 2907 |
+
"##wide": 2751,
|
| 2908 |
+
"##ford": 2752,
|
| 2909 |
+
"##ba": 2753,
|
| 2910 |
+
"##bes": 2754,
|
| 2911 |
"thin": 2755,
|
| 2912 |
"##ann": 2756,
|
| 2913 |
"##ening": 2757,
|
|
|
|
| 3015 |
"size": 2859,
|
| 3016 |
"sites": 2860,
|
| 3017 |
"tem": 2861,
|
| 3018 |
+
"##ced": 2862,
|
| 3019 |
+
"##uation": 2863,
|
| 3020 |
+
"##uff": 2864,
|
| 3021 |
+
"##to": 2865,
|
| 3022 |
+
"##ss": 2866,
|
| 3023 |
+
"##yn": 2867,
|
| 3024 |
+
"##ya": 2868,
|
| 3025 |
"##aa": 2869,
|
| 3026 |
"##ait": 2870,
|
| 3027 |
+
"##la": 2871,
|
| 3028 |
+
"##ps": 2872,
|
| 3029 |
"##wood": 2873,
|
| 3030 |
+
"##men": 2874,
|
| 3031 |
+
"##mun": 2875,
|
| 3032 |
"##ery": 2876,
|
| 3033 |
"thail": 2877,
|
| 3034 |
"##onment": 2878,
|
|
|
|
| 3139 |
"view": 2983,
|
| 3140 |
"water": 2984,
|
| 3141 |
"##eg": 2985,
|
| 3142 |
+
"##cel": 2986,
|
| 3143 |
+
"##nel": 2987,
|
| 3144 |
+
"##ded": 2988,
|
| 3145 |
+
"##duce": 2989,
|
| 3146 |
+
"##ring": 2990,
|
| 3147 |
+
"##aj": 2991,
|
| 3148 |
"##pon": 2992,
|
| 3149 |
+
"##wal": 2993,
|
| 3150 |
+
"##fi": 2994,
|
| 3151 |
+
"##bn": 2995,
|
| 3152 |
+
"##bor": 2996,
|
| 3153 |
"##ville": 2997,
|
| 3154 |
"##erent": 2998,
|
| 3155 |
"then": 2999,
|
|
|
|
| 3288 |
"wel": 3132,
|
| 3289 |
"went": 3133,
|
| 3290 |
"##egr": 3134,
|
| 3291 |
+
"##cal": 3135,
|
| 3292 |
+
"##cow": 3136,
|
| 3293 |
+
"##cial": 3137,
|
| 3294 |
+
"##uit": 3138,
|
| 3295 |
+
"##uary": 3139,
|
| 3296 |
+
"##ris": 3140,
|
| 3297 |
+
"##tors": 3141,
|
| 3298 |
+
"##tles": 3142,
|
| 3299 |
+
"##yc": 3143,
|
| 3300 |
+
"##ax": 3144,
|
| 3301 |
+
"##ken": 3145,
|
| 3302 |
+
"##lish": 3146,
|
| 3303 |
"##inth": 3147,
|
| 3304 |
"theft": 3148,
|
| 3305 |
"##itz": 3149,
|
|
|
|
| 3425 |
".'": 3269,
|
| 3426 |
"70": 3270,
|
| 3427 |
"ba": 3271,
|
| 3428 |
+
"cz": 3272,
|
| 3429 |
+
"cp": 3273,
|
| 3430 |
"cat": 3274,
|
| 3431 |
"cro": 3275,
|
| 3432 |
"catch": 3276,
|
|
|
|
| 3459 |
"wrap": 3303,
|
| 3460 |
"zone": 3304,
|
| 3461 |
"zeal": 3305,
|
| 3462 |
+
"##zz": 3306,
|
| 3463 |
+
"##zn": 3307,
|
| 3464 |
+
"##na": 3308,
|
| 3465 |
+
"##do": 3309,
|
| 3466 |
+
"##dam": 3310,
|
| 3467 |
+
"##ders": 3311,
|
| 3468 |
+
"##dog": 3312,
|
| 3469 |
+
"##rill": 3313,
|
| 3470 |
+
"##rict": 3314,
|
| 3471 |
+
"##ties": 3315,
|
| 3472 |
+
"##ha": 3316,
|
| 3473 |
+
"##har": 3317,
|
| 3474 |
+
"##pers": 3318,
|
| 3475 |
+
"##post": 3319,
|
| 3476 |
+
"##makers": 3320,
|
| 3477 |
+
"##vent": 3321,
|
| 3478 |
"threw": 3322,
|
| 3479 |
"##ored": 3323,
|
| 3480 |
"##ati": 3324,
|
|
|
|
| 3641 |
"ways": 3485,
|
| 3642 |
"wond": 3486,
|
| 3643 |
"zar": 3487,
|
| 3644 |
+
"##car": 3488,
|
| 3645 |
+
"##cape": 3489,
|
| 3646 |
+
"##ox": 3490,
|
| 3647 |
+
"##night": 3491,
|
| 3648 |
"##rone": 3492,
|
| 3649 |
+
"##tions": 3493,
|
| 3650 |
+
"##sa": 3494,
|
| 3651 |
+
"##gu": 3495,
|
| 3652 |
+
"##gent": 3496,
|
| 3653 |
"##kes": 3497,
|
| 3654 |
+
"##lies": 3498,
|
| 3655 |
+
"##lah": 3499,
|
| 3656 |
+
"##west": 3500,
|
| 3657 |
"##field": 3501,
|
| 3658 |
+
"##mal": 3502,
|
| 3659 |
+
"##mond": 3503,
|
| 3660 |
"##xx": 3504,
|
| 3661 |
"##inos": 3505,
|
| 3662 |
"##anch": 3506,
|
|
|
|
| 3860 |
"dial": 3704,
|
| 3861 |
"done": 3705,
|
| 3862 |
"donald": 3706,
|
| 3863 |
+
"ec": 3707,
|
| 3864 |
+
"ep": 3708,
|
| 3865 |
"eth": 3709,
|
| 3866 |
"egy": 3710,
|
| 3867 |
"eastern": 3711,
|
|
|
|
| 3891 |
"##eas": 3735,
|
| 3892 |
"##east": 3736,
|
| 3893 |
"##ease": 3737,
|
| 3894 |
+
"##nn": 3738,
|
| 3895 |
+
"##die": 3739,
|
| 3896 |
+
"##rad": 3740,
|
| 3897 |
+
"##rum": 3741,
|
| 3898 |
+
"##ten": 3742,
|
| 3899 |
+
"##aver": 3743,
|
| 3900 |
+
"##hi": 3744,
|
| 3901 |
+
"##hib": 3745,
|
| 3902 |
+
"##haps": 3746,
|
| 3903 |
+
"##lan": 3747,
|
| 3904 |
+
"##lom": 3748,
|
| 3905 |
+
"##ption": 3749,
|
| 3906 |
+
"##wer": 3750,
|
| 3907 |
+
"##wich": 3751,
|
| 3908 |
+
"##ma": 3752,
|
| 3909 |
"##va": 3753,
|
| 3910 |
"thing": 3754,
|
| 3911 |
"think": 3755,
|
|
|
|
| 4110 |
"33": 3954,
|
| 4111 |
"49": 3955,
|
| 4112 |
"46": 3956,
|
| 4113 |
+
"52": 3957,
|
| 4114 |
+
"54": 3958,
|
| 4115 |
"800": 3959,
|
| 4116 |
"96": 3960,
|
| 4117 |
"auction": 3961,
|
|
|
|
| 4154 |
"vod": 3998,
|
| 4155 |
"wm": 3999,
|
| 4156 |
"##ead": 4000,
|
| 4157 |
+
"##cat": 4001,
|
| 4158 |
+
"##cle": 4002,
|
| 4159 |
+
"##ction": 4003,
|
| 4160 |
+
"##cats": 4004,
|
| 4161 |
+
"##craft": 4005,
|
| 4162 |
+
"##ua": 4006,
|
| 4163 |
+
"##ze": 4007,
|
| 4164 |
+
"##zona": 4008,
|
| 4165 |
+
"##oes": 4009,
|
| 4166 |
+
"##ift": 4010,
|
| 4167 |
+
"##ique": 4011,
|
| 4168 |
+
"##gn": 4012,
|
| 4169 |
+
"##gs": 4013,
|
| 4170 |
+
"##ym": 4014,
|
| 4171 |
+
"##yond": 4015,
|
| 4172 |
+
"##held": 4016,
|
| 4173 |
+
"##lig": 4017,
|
| 4174 |
+
"##py": 4018,
|
| 4175 |
+
"##pts": 4019,
|
| 4176 |
+
"##fort": 4020,
|
| 4177 |
+
"##mens": 4021,
|
| 4178 |
+
"##bod": 4022,
|
| 4179 |
"##0s": 4023,
|
| 4180 |
"thom": 4024,
|
| 4181 |
"##oring": 4025,
|
|
|
|
| 4455 |
"wizards": 4299,
|
| 4456 |
"##ein": 4300,
|
| 4457 |
"##ever": 4301,
|
| 4458 |
+
"##cing": 4302,
|
| 4459 |
+
"##col": 4303,
|
| 4460 |
+
"##za": 4304,
|
| 4461 |
+
"##nam": 4305,
|
| 4462 |
+
"##dick": 4306,
|
| 4463 |
+
"##dden": 4307,
|
| 4464 |
+
"##rd": 4308,
|
| 4465 |
+
"##ray": 4309,
|
| 4466 |
+
"##right": 4310,
|
| 4467 |
+
"##tom": 4311,
|
| 4468 |
+
"##ien": 4312,
|
| 4469 |
+
"##iro": 4313,
|
| 4470 |
+
"##iod": 4314,
|
| 4471 |
+
"##jay": 4315,
|
| 4472 |
+
"##gar": 4316,
|
| 4473 |
+
"##au": 4317,
|
| 4474 |
+
"##hran": 4318,
|
| 4475 |
+
"##lins": 4319,
|
| 4476 |
+
"##pm": 4320,
|
| 4477 |
+
"##pool": 4321,
|
| 4478 |
+
"##my": 4322,
|
| 4479 |
+
"##ml": 4323,
|
| 4480 |
+
"##mos": 4324,
|
| 4481 |
"##ern": 4325,
|
| 4482 |
"##iny": 4326,
|
| 4483 |
"##inter": 4327,
|
|
|
|
| 4783 |
"wide": 4627,
|
| 4784 |
"yud": 4628,
|
| 4785 |
"##ew": 4629,
|
| 4786 |
+
"##cus": 4630,
|
| 4787 |
+
"##cop": 4631,
|
| 4788 |
+
"##ule": 4632,
|
| 4789 |
+
"##oon": 4633,
|
| 4790 |
+
"##oom": 4634,
|
| 4791 |
+
"##dney": 4635,
|
| 4792 |
+
"##ril": 4636,
|
| 4793 |
+
"##ruit": 4637,
|
| 4794 |
+
"##iet": 4638,
|
| 4795 |
+
"##sf": 4639,
|
| 4796 |
+
"##sler": 4640,
|
| 4797 |
+
"##syl": 4641,
|
| 4798 |
+
"##gether": 4642,
|
| 4799 |
+
"##giving": 4643,
|
| 4800 |
+
"##ae": 4644,
|
| 4801 |
+
"##aur": 4645,
|
| 4802 |
+
"##ko": 4646,
|
| 4803 |
+
"##kn": 4647,
|
| 4804 |
+
"##ht": 4648,
|
| 4805 |
+
"##hy": 4649,
|
| 4806 |
+
"##hoy": 4650,
|
| 4807 |
+
"##wart": 4651,
|
| 4808 |
+
"##work": 4652,
|
| 4809 |
+
"##wait": 4653,
|
| 4810 |
+
"##fe": 4654,
|
| 4811 |
+
"##mers": 4655,
|
| 4812 |
+
"##burn": 4656,
|
| 4813 |
+
"##backs": 4657,
|
| 4814 |
"##ero": 4658,
|
| 4815 |
"##inet": 4659,
|
| 4816 |
"##ono": 4660,
|
|
|
|
| 5164 |
"yard": 5008,
|
| 5165 |
"zimb": 5009,
|
| 5166 |
"##eer": 5010,
|
| 5167 |
+
"##cos": 5011,
|
| 5168 |
+
"##cell": 5012,
|
| 5169 |
+
"##care": 5013,
|
| 5170 |
+
"##uan": 5014,
|
| 5171 |
+
"##ued": 5015,
|
| 5172 |
+
"##uite": 5016,
|
| 5173 |
+
"##zen": 5017,
|
| 5174 |
+
"##zai": 5018,
|
| 5175 |
+
"##of": 5019,
|
| 5176 |
+
"##tv": 5020,
|
| 5177 |
+
"##iation": 5021,
|
| 5178 |
+
"##jects": 5022,
|
| 5179 |
+
"##ground": 5023,
|
| 5180 |
+
"##ki": 5024,
|
| 5181 |
+
"##kel": 5025,
|
| 5182 |
+
"##hard": 5026,
|
| 5183 |
+
"##horn": 5027,
|
| 5184 |
+
"##lers": 5028,
|
| 5185 |
+
"##light": 5029,
|
| 5186 |
+
"##liest": 5030,
|
| 5187 |
+
"##pp": 5031,
|
| 5188 |
+
"##web": 5032,
|
| 5189 |
"##fc": 5033,
|
| 5190 |
+
"##me": 5034,
|
| 5191 |
+
"##mad": 5035,
|
| 5192 |
+
"##mand": 5036,
|
| 5193 |
+
"##bury": 5037,
|
| 5194 |
"##inct": 5038,
|
| 5195 |
"##esco": 5039,
|
| 5196 |
"##orary": 5040,
|
|
|
|
| 5209 |
"anton": 5053,
|
| 5210 |
"##iled": 5054,
|
| 5211 |
"##ayan": 5055,
|
| 5212 |
+
"##oud": 5056,
|
| 5213 |
+
"##oum": 5057,
|
| 5214 |
"##outh": 5058,
|
| 5215 |
"##eline": 5059,
|
| 5216 |
"##omm": 5060,
|
|
|
|
| 5259 |
"altern": 5103,
|
| 5260 |
"##eman": 5104,
|
| 5261 |
"##emony": 5105,
|
| 5262 |
+
"##umn": 5106,
|
| 5263 |
+
"##umi": 5107,
|
| 5264 |
"##iana": 5108,
|
| 5265 |
"hass": 5109,
|
| 5266 |
"upset": 5110,
|
|
|
|
| 5572 |
"\"\\": 5416,
|
| 5573 |
"47": 5417,
|
| 5574 |
"43": 5418,
|
| 5575 |
+
"53": 5419,
|
| 5576 |
+
"56": 5420,
|
| 5577 |
"550": 5421,
|
| 5578 |
"64": 5422,
|
| 5579 |
"79": 5423,
|
|
|
|
| 5664 |
"zur": 5508,
|
| 5665 |
"##eim": 5509,
|
| 5666 |
"##eals": 5510,
|
| 5667 |
+
"##cr": 5511,
|
| 5668 |
+
"##cling": 5512,
|
| 5669 |
+
"##ois": 5513,
|
| 5670 |
+
"##netw": 5514,
|
| 5671 |
+
"##dy": 5515,
|
| 5672 |
+
"##ror": 5516,
|
| 5673 |
+
"##rel": 5517,
|
| 5674 |
+
"##rate": 5518,
|
| 5675 |
+
"##rick": 5519,
|
| 5676 |
+
"##rating": 5520,
|
| 5677 |
+
"##iop": 5521,
|
| 5678 |
+
"##iem": 5522,
|
| 5679 |
+
"##gas": 5523,
|
| 5680 |
+
"##yg": 5524,
|
| 5681 |
+
"##yan": 5525,
|
| 5682 |
+
"##aq": 5526,
|
| 5683 |
+
"##aire": 5527,
|
| 5684 |
+
"##hen": 5528,
|
| 5685 |
+
"##hol": 5529,
|
| 5686 |
+
"##hood": 5530,
|
| 5687 |
+
"##house": 5531,
|
| 5688 |
+
"##lon": 5532,
|
| 5689 |
+
"##ple": 5533,
|
| 5690 |
+
"##pose": 5534,
|
| 5691 |
+
"##pread": 5535,
|
| 5692 |
+
"##wr": 5536,
|
| 5693 |
+
"##wom": 5537,
|
| 5694 |
+
"##well": 5538,
|
| 5695 |
+
"##maker": 5539,
|
| 5696 |
+
"##bus": 5540,
|
| 5697 |
+
"##break": 5541,
|
| 5698 |
"##vic": 5542,
|
| 5699 |
"##40": 5543,
|
| 5700 |
"##erv": 5544,
|
|
|
|
| 5767 |
"##ocol": 5611,
|
| 5768 |
"concess": 5612,
|
| 5769 |
"conrad": 5613,
|
| 5770 |
+
"unc": 5614,
|
| 5771 |
+
"und": 5615,
|
| 5772 |
+
"unw": 5616,
|
| 5773 |
"units": 5617,
|
| 5774 |
"que": 5618,
|
| 5775 |
"quality": 5619,
|
|
|
|
| 6181 |
"37": 6025,
|
| 6182 |
"3rd": 6026,
|
| 6183 |
"59": 6027,
|
| 6184 |
+
"63": 6028,
|
| 6185 |
+
"65": 6029,
|
| 6186 |
+
"66": 6030,
|
| 6187 |
"71": 6031,
|
| 6188 |
"81": 6032,
|
| 6189 |
"88": 6033,
|
|
|
|
| 6213 |
"ele": 6057,
|
| 6214 |
"ech": 6058,
|
| 6215 |
"erupted": 6059,
|
| 6216 |
+
"fd": 6060,
|
| 6217 |
+
"ft": 6061,
|
| 6218 |
+
"fm": 6062,
|
| 6219 |
"fan": 6063,
|
| 6220 |
"fash": 6064,
|
| 6221 |
"fals": 6065,
|
|
|
|
| 6232 |
"hart": 6076,
|
| 6233 |
"hok": 6077,
|
| 6234 |
"hiring": 6078,
|
| 6235 |
+
"ic": 6079,
|
| 6236 |
+
"ii": 6080,
|
| 6237 |
"ioc": 6081,
|
| 6238 |
"ill": 6082,
|
| 6239 |
"ji": 6083,
|
|
|
|
| 6256 |
"lacks": 6100,
|
| 6257 |
"lux": 6101,
|
| 6258 |
"lley": 6102,
|
| 6259 |
+
"mh": 6103,
|
| 6260 |
+
"ml": 6104,
|
| 6261 |
"mates": 6105,
|
| 6262 |
"moss": 6106,
|
| 6263 |
"mey": 6107,
|
|
|
|
| 6302 |
"wave": 6146,
|
| 6303 |
"woes": 6147,
|
| 6304 |
"##eason": 6148,
|
| 6305 |
+
"##ca": 6149,
|
| 6306 |
+
"##case": 6150,
|
| 6307 |
+
"##qt": 6151,
|
| 6308 |
+
"##zed": 6152,
|
| 6309 |
+
"##zie": 6153,
|
| 6310 |
+
"##zone": 6154,
|
| 6311 |
+
"##zuk": 6155,
|
| 6312 |
+
"##oit": 6156,
|
| 6313 |
+
"##ni": 6157,
|
| 6314 |
+
"##nic": 6158,
|
| 6315 |
+
"##ding": 6159,
|
| 6316 |
+
"##rim": 6160,
|
| 6317 |
+
"##rors": 6161,
|
| 6318 |
+
"##tar": 6162,
|
| 6319 |
+
"##town": 6163,
|
| 6320 |
+
"##iar": 6164,
|
| 6321 |
+
"##ias": 6165,
|
| 6322 |
+
"##ios": 6166,
|
| 6323 |
+
"##sin": 6167,
|
| 6324 |
+
"##jected": 6168,
|
| 6325 |
+
"##joy": 6169,
|
| 6326 |
+
"##yad": 6170,
|
| 6327 |
+
"##ao": 6171,
|
| 6328 |
+
"##kin": 6172,
|
| 6329 |
+
"##hill": 6173,
|
| 6330 |
+
"##hman": 6174,
|
| 6331 |
+
"##lor": 6175,
|
| 6332 |
+
"##lison": 6176,
|
| 6333 |
+
"##lana": 6177,
|
| 6334 |
+
"##po": 6178,
|
| 6335 |
+
"##pes": 6179,
|
| 6336 |
+
"##pass": 6180,
|
| 6337 |
+
"##pped": 6181,
|
| 6338 |
+
"##wag": 6182,
|
| 6339 |
+
"##western": 6183,
|
| 6340 |
+
"##wau": 6184,
|
| 6341 |
+
"##fall": 6185,
|
| 6342 |
+
"##\\\\": 6186,
|
| 6343 |
+
"##mes": 6187,
|
| 6344 |
+
"##mine": 6188,
|
| 6345 |
+
"##bon": 6189,
|
| 6346 |
+
"##bel": 6190,
|
| 6347 |
+
"##bos": 6191,
|
| 6348 |
+
"##bour": 6192,
|
| 6349 |
+
"##base": 6193,
|
| 6350 |
+
"##bek": 6194,
|
| 6351 |
+
"##boy": 6195,
|
| 6352 |
+
"##bank": 6196,
|
| 6353 |
+
"##body": 6197,
|
| 6354 |
+
"##vin": 6198,
|
| 6355 |
"##--": 6199,
|
| 6356 |
+
"##erate": 6200,
|
| 6357 |
+
"##erie": 6201,
|
| 6358 |
+
"these": 6202,
|
| 6359 |
+
"##iners": 6203,
|
| 6360 |
+
"##inters": 6204,
|
| 6361 |
+
"##onz": 6205,
|
| 6362 |
"##oni": 6206,
|
| 6363 |
+
"##oned": 6207,
|
| 6364 |
+
"##orox": 6208,
|
| 6365 |
+
"##anges": 6209,
|
| 6366 |
+
"##anova": 6210,
|
| 6367 |
+
"##arr": 6211,
|
| 6368 |
+
"##arus": 6212,
|
| 6369 |
+
"##enque": 6213,
|
| 6370 |
+
"##attered": 6214,
|
| 6371 |
+
"##atively": 6215,
|
| 6372 |
+
"##alo": 6216,
|
| 6373 |
+
"##alore": 6217,
|
| 6374 |
+
"##iture": 6218,
|
| 6375 |
+
"##itting": 6219,
|
| 6376 |
+
"##icts": 6220,
|
| 6377 |
+
"##icut": 6221,
|
| 6378 |
+
"##icate": 6222,
|
| 6379 |
+
"##ician": 6223,
|
| 6380 |
+
"##icits": 6224,
|
| 6381 |
+
"##stal": 6225,
|
| 6382 |
+
"##stream": 6226,
|
| 6383 |
+
"##roc": 6227,
|
| 6384 |
+
"##roll": 6228,
|
| 6385 |
+
"##ilo": 6229,
|
| 6386 |
+
"##ilit": 6230,
|
| 6387 |
+
"##ayed": 6231,
|
| 6388 |
+
"##ayers": 6232,
|
| 6389 |
+
"##asy": 6233,
|
| 6390 |
+
"##eling": 6234,
|
| 6391 |
+
"##elps": 6235,
|
| 6392 |
+
"##isk": 6236,
|
| 6393 |
+
"##isan": 6237,
|
| 6394 |
+
"##isign": 6238,
|
| 6395 |
+
"##eced": 6239,
|
| 6396 |
+
"##ecially": 6240,
|
| 6397 |
+
"##eton": 6241,
|
| 6398 |
+
"##idia": 6242,
|
| 6399 |
+
"##urers": 6243,
|
| 6400 |
+
"andrew": 6244,
|
| 6401 |
+
"##entication": 6245,
|
| 6402 |
+
"stab": 6246,
|
| 6403 |
+
"stays": 6247,
|
| 6404 |
+
"stations": 6248,
|
| 6405 |
+
"forest": 6249,
|
| 6406 |
+
"##rek": 6250,
|
| 6407 |
+
"revel": 6251,
|
| 6408 |
+
"##ading": 6252,
|
| 6409 |
+
"##irts": 6253,
|
| 6410 |
+
"##irut": 6254,
|
| 6411 |
+
"##iristan": 6255,
|
| 6412 |
+
"##ols": 6256,
|
| 6413 |
+
"##ola": 6257,
|
| 6414 |
+
"##olph": 6258,
|
| 6415 |
+
"##aming": 6259,
|
| 6416 |
+
"##ambi": 6260,
|
| 6417 |
+
"##utt": 6261,
|
| 6418 |
+
"##uty": 6262,
|
| 6419 |
+
"##utor": 6263,
|
| 6420 |
+
"##vement": 6264,
|
| 6421 |
+
"##chrysler": 6265,
|
| 6422 |
+
"##owled": 6266,
|
| 6423 |
+
"chec": 6267,
|
| 6424 |
+
"chess": 6268,
|
| 6425 |
+
"chave": 6269,
|
| 6426 |
+
"chances": 6270,
|
| 6427 |
+
"##rah": 6271,
|
| 6428 |
+
"##raib": 6272,
|
| 6429 |
+
"##ravel": 6273,
|
| 6430 |
+
"##imler": 6274,
|
| 6431 |
+
"##imming": 6275,
|
| 6432 |
+
"bear": 6276,
|
| 6433 |
+
"beirut": 6277,
|
| 6434 |
+
"##osh": 6278,
|
| 6435 |
+
"##osed": 6279,
|
| 6436 |
+
"##osys": 6280,
|
| 6437 |
+
"dement": 6281,
|
| 6438 |
+
"deuts": 6282,
|
| 6439 |
+
"##aka": 6283,
|
| 6440 |
+
"##earer": 6284,
|
| 6441 |
+
"newest": 6285,
|
| 6442 |
+
"##agers": 6286,
|
| 6443 |
+
"##ande": 6287,
|
| 6444 |
+
"##essary": 6288,
|
| 6445 |
+
"shy": 6289,
|
| 6446 |
+
"sher": 6290,
|
| 6447 |
+
"shake": 6291,
|
| 6448 |
+
"shape": 6292,
|
| 6449 |
+
"shrek": 6293,
|
| 6450 |
+
"shearer": 6294,
|
| 6451 |
+
"apart": 6295,
|
| 6452 |
+
"thatcher": 6296,
|
| 6453 |
+
"##ully": 6297,
|
| 6454 |
+
"##ocating": 6298,
|
| 6455 |
+
"conc": 6299,
|
| 6456 |
+
"constr": 6300,
|
| 6457 |
+
"unbeat": 6301,
|
| 6458 |
+
"unesco": 6302,
|
| 6459 |
+
"sab": 6303,
|
| 6460 |
+
"saving": 6304,
|
| 6461 |
+
"queen": 6305,
|
| 6462 |
+
"quiet": 6306,
|
| 6463 |
+
"##aine": 6307,
|
| 6464 |
+
"seym": 6308,
|
| 6465 |
+
"lew": 6309,
|
| 6466 |
+
"lehman": 6310,
|
| 6467 |
+
"placed": 6311,
|
| 6468 |
+
"itunes": 6312,
|
| 6469 |
+
"itanium": 6313,
|
| 6470 |
+
"ali": 6314,
|
| 6471 |
+
"##emn": 6315,
|
| 6472 |
+
"enable": 6316,
|
| 6473 |
+
"enjoy": 6317,
|
| 6474 |
+
"##umed": 6318,
|
| 6475 |
+
"##iant": 6319,
|
| 6476 |
+
"hasn": 6320,
|
| 6477 |
+
"sue": 6321,
|
| 6478 |
+
"suzuk": 6322,
|
| 6479 |
+
"upon": 6323,
|
| 6480 |
+
"upgrade": 6324,
|
| 6481 |
+
"worry": 6325,
|
| 6482 |
+
"clorox": 6326,
|
| 6483 |
+
"ackn": 6327,
|
| 6484 |
+
"wealth": 6328,
|
| 6485 |
+
"franch": 6329,
|
| 6486 |
+
"overwh": 6330,
|
| 6487 |
+
"##artoum": 6331,
|
| 6488 |
+
"##inea": 6332,
|
| 6489 |
+
"havan": 6333,
|
| 6490 |
+
"##ellar": 6334,
|
| 6491 |
+
"amster": 6335,
|
| 6492 |
+
"##ensions": 6336,
|
| 6493 |
+
"expensive": 6337,
|
| 6494 |
+
"opin": 6338,
|
| 6495 |
+
"opel": 6339,
|
| 6496 |
+
"opec": 6340,
|
| 6497 |
+
"fires": 6341,
|
| 6498 |
+
"income": 6342,
|
| 6499 |
+
"reporter": 6343,
|
| 6500 |
+
"marks": 6344,
|
| 6501 |
+
"marqu": 6345,
|
| 6502 |
+
"martha": 6346,
|
| 6503 |
+
"##ifts": 6347,
|
| 6504 |
+
"##abled": 6348,
|
| 6505 |
+
"##abeth": 6349,
|
| 6506 |
+
"resist": 6350,
|
| 6507 |
+
"intense": 6351,
|
| 6508 |
+
"twins": 6352,
|
| 6509 |
+
"serve": 6353,
|
| 6510 |
+
"serena": 6354,
|
| 6511 |
+
"outcome": 6355,
|
| 6512 |
+
"##anson": 6356,
|
| 6513 |
+
"winless": 6357,
|
| 6514 |
+
"sco": 6358,
|
| 6515 |
+
"scen": 6359,
|
| 6516 |
+
"scam": 6360,
|
| 6517 |
+
"scare": 6361,
|
| 6518 |
+
"scale": 6362,
|
| 6519 |
+
"orland": 6363,
|
| 6520 |
+
"blu": 6364,
|
| 6521 |
+
"blocks": 6365,
|
| 6522 |
+
"bloom": 6366,
|
| 6523 |
+
"##onduct": 6367,
|
| 6524 |
+
"aren": 6368,
|
| 6525 |
+
"arth": 6369,
|
| 6526 |
+
"argent": 6370,
|
| 6527 |
+
"coverage": 6371,
|
| 6528 |
+
"##achi": 6372,
|
| 6529 |
+
"##aching": 6373,
|
| 6530 |
+
"adam": 6374,
|
| 6531 |
+
"adap": 6375,
|
| 6532 |
+
"brid": 6376,
|
| 6533 |
+
"brings": 6377,
|
| 6534 |
+
"brink": 6378,
|
| 6535 |
+
"##kee": 6379,
|
| 6536 |
+
"##keys": 6380,
|
| 6537 |
+
"recruit": 6381,
|
| 6538 |
+
"trend": 6382,
|
| 6539 |
+
"true": 6383,
|
| 6540 |
+
"laur": 6384,
|
| 6541 |
+
"##olds": 6385,
|
| 6542 |
+
"##ograph": 6386,
|
| 6543 |
+
"button": 6387,
|
| 6544 |
+
"peru": 6388,
|
| 6545 |
+
"perform": 6389,
|
| 6546 |
+
"disk": 6390,
|
| 6547 |
+
"disaster": 6391,
|
| 6548 |
+
"##iction": 6392,
|
| 6549 |
+
"teens": 6393,
|
| 6550 |
+
"manned": 6394,
|
| 6551 |
+
"present": 6395,
|
| 6552 |
+
"presented": 6396,
|
| 6553 |
+
"preseason": 6397,
|
| 6554 |
+
"cancel": 6398,
|
| 6555 |
+
"appar": 6399,
|
| 6556 |
+
"appear": 6400,
|
| 6557 |
+
"appointment": 6401,
|
| 6558 |
+
"corr": 6402,
|
| 6559 |
+
"##ampton": 6403,
|
| 6560 |
+
"##active": 6404,
|
| 6561 |
+
"invit": 6405,
|
| 6562 |
+
"ellison": 6406,
|
| 6563 |
+
"accel": 6407,
|
| 6564 |
+
"relatives": 6408,
|
| 6565 |
+
"sunni": 6409,
|
| 6566 |
+
"##ashing": 6410,
|
| 6567 |
+
"##under": 6411,
|
| 6568 |
+
"phelps": 6412,
|
| 6569 |
+
"securing": 6413,
|
| 6570 |
+
"marketw": 6414,
|
| 6571 |
+
"milan": 6415,
|
| 6572 |
+
"milwau": 6416,
|
| 6573 |
+
"warplanes": 6417,
|
| 6574 |
+
"defence": 6418,
|
| 6575 |
+
"defends": 6419,
|
| 6576 |
+
"desper": 6420,
|
| 6577 |
+
"soars": 6421,
|
| 6578 |
+
"##azi": 6422,
|
| 6579 |
+
"##azin": 6423,
|
| 6580 |
+
"teaming": 6424,
|
| 6581 |
+
"carried": 6425,
|
| 6582 |
+
"considers": 6426,
|
| 6583 |
+
"joy": 6427,
|
| 6584 |
+
"slug": 6428,
|
| 6585 |
+
"surger": 6429,
|
| 6586 |
+
"assur": 6430,
|
| 6587 |
+
"assess": 6431,
|
| 6588 |
+
"militia": 6432,
|
| 6589 |
+
"quarterf": 6433,
|
| 6590 |
+
"caps": 6434,
|
| 6591 |
+
"capability": 6435,
|
| 6592 |
+
"redmond": 6436,
|
| 6593 |
+
"genoc": 6437,
|
| 6594 |
+
"regain": 6438,
|
| 6595 |
+
"101": 6439,
|
| 6596 |
+
"recording": 6440,
|
| 6597 |
+
"governments": 6441,
|
| 6598 |
+
"norway": 6442,
|
| 6599 |
+
"swing": 6443,
|
| 6600 |
+
"dealers": 6444,
|
| 6601 |
+
"briton": 6445,
|
| 6602 |
+
"searches": 6446,
|
| 6603 |
+
"producers": 6447,
|
| 6604 |
+
"talent": 6448,
|
| 6605 |
+
"impress": 6449,
|
| 6606 |
+
"barrier": 6450,
|
| 6607 |
+
"barrage": 6451,
|
| 6608 |
+
"billionair": 6452,
|
| 6609 |
+
"billionaire": 6453,
|
| 6610 |
+
"ministers": 6454,
|
| 6611 |
+
"seasons": 6455,
|
| 6612 |
+
"helping": 6456,
|
| 6613 |
+
"demonstr": 6457,
|
| 6614 |
+
"cola": 6458,
|
| 6615 |
+
"guinea": 6459,
|
| 6616 |
+
"youth": 6460,
|
| 6617 |
+
"smoot": 6461,
|
| 6618 |
+
"supplier": 6462,
|
| 6619 |
+
"remember": 6463,
|
| 6620 |
+
"##ront": 6464,
|
| 6621 |
+
"raf": 6465,
|
| 6622 |
+
"raids": 6466,
|
| 6623 |
+
"##ennial": 6467,
|
| 6624 |
+
"confusion": 6468,
|
| 6625 |
+
"bigley": 6469,
|
| 6626 |
+
"poised": 6470,
|
| 6627 |
+
"steady": 6471,
|
| 6628 |
+
"courts": 6472,
|
| 6629 |
+
"execution": 6473,
|
| 6630 |
+
"fallen": 6474,
|
| 6631 |
+
"trapped": 6475,
|
| 6632 |
+
"inside": 6476,
|
| 6633 |
+
"managers": 6477,
|
| 6634 |
+
"mobiles": 6478,
|
| 6635 |
+
"belarus": 6479,
|
| 6636 |
+
"israelis": 6480,
|
| 6637 |
+
"antitr": 6481,
|
| 6638 |
+
"evil": 6482,
|
| 6639 |
+
"##yss": 6483,
|
| 6640 |
+
"largely": 6484,
|
| 6641 |
+
"missile": 6485,
|
| 6642 |
+
"thrown": 6486,
|
| 6643 |
+
"throws": 6487,
|
| 6644 |
+
"targeted": 6488,
|
| 6645 |
+
"targeting": 6489,
|
| 6646 |
+
"developers": 6490,
|
| 6647 |
+
"industries": 6491,
|
| 6648 |
+
"older": 6492,
|
| 6649 |
+
"vienna": 6493,
|
| 6650 |
+
"depot": 6494,
|
| 6651 |
+
"filip": 6495,
|
| 6652 |
+
"coaching": 6496,
|
| 6653 |
+
"eddie": 6497,
|
| 6654 |
+
"streets": 6498,
|
| 6655 |
+
"batting": 6499,
|
| 6656 |
+
"196": 6500,
|
| 6657 |
+
"113": 6501,
|
| 6658 |
+
"##gests": 6502,
|
| 6659 |
+
"update2": 6503,
|
| 6660 |
"update1": 6504,
|
| 6661 |
+
"hernn": 6505,
|
| 6662 |
+
"beaten": 6506,
|
| 6663 |
+
"providing": 6507,
|
| 6664 |
+
"imm": 6508,
|
| 6665 |
+
"immun": 6509,
|
| 6666 |
+
"efficient": 6510,
|
| 6667 |
+
"verisign": 6511,
|
| 6668 |
+
"exploit": 6512,
|
| 6669 |
+
"loses": 6513,
|
| 6670 |
+
"approve": 6514,
|
| 6671 |
+
"approves": 6515,
|
| 6672 |
+
"grew": 6516,
|
| 6673 |
+
"write": 6517,
|
| 6674 |
+
"writing": 6518,
|
| 6675 |
+
"camps": 6519,
|
| 6676 |
+
"driving": 6520,
|
| 6677 |
+
"harring": 6521,
|
| 6678 |
+
"virenque": 6522,
|
| 6679 |
+
"legend": 6523,
|
| 6680 |
+
"legacy": 6524,
|
| 6681 |
+
"peacekeep": 6525,
|
| 6682 |
+
"draws": 6526,
|
| 6683 |
+
"midwest": 6527,
|
| 6684 |
+
"syn": 6528,
|
| 6685 |
+
"sybase": 6529,
|
| 6686 |
+
"acquired": 6530,
|
| 6687 |
+
"stronger": 6531,
|
| 6688 |
+
"stronghold": 6532,
|
| 6689 |
+
"radical": 6533,
|
| 6690 |
+
"visits": 6534,
|
| 6691 |
+
"followed": 6535,
|
| 6692 |
+
"idg": 6536,
|
| 6693 |
+
"videot": 6537,
|
| 6694 |
+
"actions": 6538,
|
| 6695 |
+
"scientist": 6539,
|
| 6696 |
+
"scientific": 6540,
|
| 6697 |
+
"lowered": 6541,
|
| 6698 |
+
"solve": 6542,
|
| 6699 |
+
"threatening": 6543,
|
| 6700 |
+
"severe": 6544,
|
| 6701 |
+
"homers": 6545,
|
| 6702 |
+
"speculation": 6546,
|
| 6703 |
+
"programme": 6547,
|
| 6704 |
+
"insurer": 6548,
|
| 6705 |
+
"hardware": 6549,
|
| 6706 |
+
"persist": 6550,
|
| 6707 |
+
"promising": 6551,
|
| 6708 |
+
"install": 6552,
|
| 6709 |
+
"instant": 6553,
|
| 6710 |
+
"250": 6554,
|
| 6711 |
+
"famous": 6555,
|
| 6712 |
+
"labs": 6556,
|
| 6713 |
+
"labour": 6557,
|
| 6714 |
+
"commissioner": 6558,
|
| 6715 |
+
"expert": 6559,
|
| 6716 |
+
"watching": 6560,
|
| 6717 |
+
"foreigners": 6561,
|
| 6718 |
+
"safer": 6562,
|
| 6719 |
+
"cypr": 6563,
|
| 6720 |
+
"equatorial": 6564,
|
| 6721 |
+
"demanding": 6565,
|
| 6722 |
+
"democrats": 6566,
|
| 6723 |
+
"maintain": 6567,
|
| 6724 |
+
"wells": 6568,
|
| 6725 |
+
"strained": 6569,
|
| 6726 |
+
"matchup": 6570,
|
| 6727 |
+
"infring": 6571,
|
| 6728 |
+
"exchanges": 6572,
|
| 6729 |
+
"crashes": 6573,
|
| 6730 |
+
"hamid": 6574,
|
| 6731 |
+
"humans": 6575,
|
| 6732 |
+
"loans": 6576,
|
| 6733 |
+
"malicious": 6577,
|
| 6734 |
+
"financing": 6578,
|
| 6735 |
+
"clears": 6579,
|
| 6736 |
+
"investigated": 6580,
|
| 6737 |
+
"investigators": 6581,
|
| 6738 |
+
"curb": 6582,
|
| 6739 |
+
"privat": 6583,
|
| 6740 |
+
"privacy": 6584,
|
| 6741 |
+
"authentication": 6585,
|
| 6742 |
+
"rivalry": 6586,
|
| 6743 |
+
"employers": 6587,
|
| 6744 |
+
"employee": 6588,
|
| 6745 |
+
"speedway": 6589,
|
| 6746 |
+
"meth": 6590,
|
| 6747 |
+
"mosul": 6591,
|
| 6748 |
+
"pilot": 6592,
|
| 6749 |
+
"communication": 6593,
|
| 6750 |
+
"pollution": 6594,
|
| 6751 |
+
"richest": 6595,
|
| 6752 |
+
"doubles": 6596,
|
| 6753 |
+
"clean": 6597,
|
| 6754 |
+
"cuba": 6598,
|
| 6755 |
+
"jumps": 6599,
|
| 6756 |
+
"trees": 6600,
|
| 6757 |
+
"prosp": 6601,
|
| 6758 |
+
"fifa": 6602,
|
| 6759 |
+
"martial": 6603,
|
| 6760 |
+
"multi": 6604,
|
| 6761 |
+
"silver": 6605,
|
| 6762 |
+
"summit": 6606,
|
| 6763 |
+
"##dez": 6607,
|
| 6764 |
+
"estim": 6608,
|
| 6765 |
+
"estimate": 6609,
|
| 6766 |
+
"establ": 6610,
|
| 6767 |
+
"factory": 6611,
|
| 6768 |
+
"maced": 6612,
|
| 6769 |
+
"tourists": 6613,
|
| 6770 |
+
"eurozone": 6614,
|
| 6771 |
+
"negotiators": 6615,
|
| 6772 |
+
"cheese": 6616,
|
| 6773 |
+
"respond": 6617,
|
| 6774 |
+
"chipset": 6618,
|
| 6775 |
+
"qaida": 6619,
|
| 6776 |
+
"blockade": 6620,
|
| 6777 |
+
"grounds": 6621,
|
| 6778 |
+
"hunt": 6622,
|
| 6779 |
+
"shoppers": 6623,
|
| 6780 |
+
"disputed": 6624,
|
| 6781 |
+
"feature": 6625,
|
| 6782 |
+
"featuring": 6626,
|
| 6783 |
+
"brazilian": 6627,
|
| 6784 |
+
"landed": 6628,
|
| 6785 |
+
"landing": 6629,
|
| 6786 |
+
"bangalore": 6630,
|
| 6787 |
+
"civilian": 6631,
|
| 6788 |
+
"facing": 6632,
|
| 6789 |
+
"happen": 6633,
|
| 6790 |
+
"locked": 6634,
|
| 6791 |
+
"volume": 6635,
|
| 6792 |
+
"suggests": 6636,
|
| 6793 |
+
"awarded": 6637,
|
| 6794 |
+
"calc": 6638,
|
| 6795 |
+
"calpers": 6639,
|
| 6796 |
+
"gained": 6640,
|
| 6797 |
+
"choose": 6641,
|
| 6798 |
+
"captors": 6642,
|
| 6799 |
+
"purchased": 6643,
|
| 6800 |
+
"purchases": 6644,
|
| 6801 |
+
"combined": 6645,
|
| 6802 |
+
"conditions": 6646,
|
| 6803 |
+
"climbing": 6647,
|
| 6804 |
+
"aboard": 6648,
|
| 6805 |
+
"professionals": 6649,
|
| 6806 |
+
"automakers": 6650,
|
| 6807 |
+
"dominated": 6651,
|
| 6808 |
+
"laboratory": 6652,
|
| 6809 |
+
"casino": 6653,
|
| 6810 |
+
"casinos": 6654,
|
| 6811 |
+
"gasol": 6655,
|
| 6812 |
+
"villanova": 6656,
|
| 6813 |
+
"reveal": 6657,
|
| 6814 |
+
"connection": 6658,
|
| 6815 |
+
"attempts": 6659,
|
| 6816 |
+
"travelers": 6660,
|
| 6817 |
+
"currency": 6661,
|
| 6818 |
+
"escaped": 6662,
|
| 6819 |
+
"biotech": 6663,
|
| 6820 |
+
"daimler": 6664,
|
| 6821 |
+
"initi": 6665,
|
| 6822 |
+
"responsibility": 6666,
|
| 6823 |
+
"tsb": 6667,
|
| 6824 |
+
"clients": 6668,
|
| 6825 |
+
"screens": 6669,
|
| 6826 |
+
"manufacturers": 6670,
|
| 6827 |
+
"knocked": 6671,
|
| 6828 |
+
"burns": 6672,
|
| 6829 |
+
"bullet": 6673,
|
| 6830 |
+
"faith": 6674,
|
| 6831 |
+
"fault": 6675,
|
| 6832 |
+
"figure": 6676,
|
| 6833 |
+
"khat": 6677,
|
| 6834 |
+
"khartoum": 6678,
|
| 6835 |
+
"occur": 6679,
|
| 6836 |
+
"punish": 6680,
|
| 6837 |
+
"staying": 6681,
|
| 6838 |
+
"clashes": 6682,
|
| 6839 |
+
"pleaded": 6683,
|
| 6840 |
+
"crowd": 6684,
|
| 6841 |
+
"overseas": 6685,
|
| 6842 |
+
"rubble": 6686,
|
| 6843 |
+
"##fielder": 6687,
|
| 6844 |
+
"plunge": 6688,
|
| 6845 |
+
"residents": 6689,
|
| 6846 |
+
"survival": 6690,
|
| 6847 |
+
"charlie": 6691,
|
| 6848 |
+
"introduces": 6692,
|
| 6849 |
+
"alexander": 6693,
|
| 6850 |
+
"learning": 6694,
|
| 6851 |
+
"learned": 6695,
|
| 6852 |
+
"quitting": 6696,
|
| 6853 |
+
"pledges": 6697,
|
| 6854 |
+
"cracking": 6698,
|
| 6855 |
+
"detainees": 6699,
|
| 6856 |
+
"belgium": 6700,
|
| 6857 |
+
"subscriber": 6701,
|
| 6858 |
+
"momentum": 6702,
|
| 6859 |
+
"destr": 6703,
|
| 6860 |
+
"integration": 6704,
|
| 6861 |
+
"celebrate": 6705,
|
| 6862 |
+
"celebrated": 6706,
|
| 6863 |
+
"brewer": 6707,
|
| 6864 |
+
"madison": 6708,
|
| 6865 |
+
"pacers": 6709,
|
| 6866 |
+
"spurrier": 6710,
|
| 6867 |
+
"lebanon": 6711,
|
| 6868 |
+
"mozambi": 6712,
|
| 6869 |
+
"described": 6713,
|
| 6870 |
+
"carrying": 6714,
|
| 6871 |
+
"swedish": 6715,
|
| 6872 |
+
"broadcasting": 6716,
|
| 6873 |
+
"roadside": 6717,
|
| 6874 |
+
"##bridge": 6718,
|
| 6875 |
+
"counterfe": 6719,
|
| 6876 |
+
"observ": 6720,
|
| 6877 |
+
"venezuela": 6721,
|
| 6878 |
+
"venezuelans": 6722,
|
| 6879 |
+
"bryant": 6723,
|
| 6880 |
+
"mystery": 6724,
|
| 6881 |
+
"randolph": 6725,
|
| 6882 |
+
"vaugh": 6726,
|
| 6883 |
+
"reasons": 6727,
|
| 6884 |
+
"split": 6728,
|
| 6885 |
+
"washed": 6729,
|
| 6886 |
+
"brokerage": 6730,
|
| 6887 |
+
"feeling": 6731,
|
| 6888 |
+
"granted": 6732,
|
| 6889 |
+
"astrona": 6733,
|
| 6890 |
+
"diplomats": 6734,
|
| 6891 |
+
"wmc": 6735,
|
| 6892 |
+
"beheaded": 6736,
|
| 6893 |
+
"property": 6737,
|
| 6894 |
+
"inventories": 6738,
|
| 6895 |
+
"slumping": 6739,
|
| 6896 |
+
"delivery": 6740,
|
| 6897 |
+
"guerrill": 6741,
|
| 6898 |
+
"wrongdo": 6742,
|
| 6899 |
+
"espn": 6743,
|
| 6900 |
+
"especially": 6744,
|
| 6901 |
+
"achie": 6745,
|
| 6902 |
+
"coca": 6746,
|
| 6903 |
+
"pieces": 6747,
|
| 6904 |
+
"penalty": 6748,
|
| 6905 |
+
"tackle": 6749,
|
| 6906 |
+
"tossed": 6750,
|
| 6907 |
+
"coalition": 6751,
|
| 6908 |
+
"phillips": 6752,
|
| 6909 |
+
"website": 6753,
|
| 6910 |
+
"removed": 6754,
|
| 6911 |
+
"throwing": 6755,
|
| 6912 |
+
"refugee": 6756,
|
| 6913 |
+
"citizens": 6757,
|
| 6914 |
+
"coughlin": 6758,
|
| 6915 |
+
"culture": 6759,
|
| 6916 |
+
"grants": 6760,
|
| 6917 |
+
"pedro": 6761,
|
| 6918 |
+
"sgi": 6762,
|
| 6919 |
+
"tipped": 6763,
|
| 6920 |
+
"degree": 6764,
|
| 6921 |
+
"admitted": 6765,
|
| 6922 |
+
"floods": 6766,
|
| 6923 |
+
"mohammad": 6767,
|
| 6924 |
+
"guidant": 6768,
|
| 6925 |
+
"trouble": 6769,
|
| 6926 |
+
"batteries": 6770,
|
| 6927 |
+
"copyright": 6771,
|
| 6928 |
+
"connecticut": 6772,
|
| 6929 |
+
"temporary": 6773,
|
| 6930 |
+
"favorite": 6774,
|
| 6931 |
+
"craig": 6775,
|
| 6932 |
+
"gibbs": 6776,
|
| 6933 |
+
"honda": 6777,
|
| 6934 |
+
"nvidia": 6778,
|
| 6935 |
+
"nedbank": 6779,
|
| 6936 |
+
"rwanda": 6780,
|
| 6937 |
+
"roster": 6781,
|
| 6938 |
+
"##mandu": 6782,
|
| 6939 |
+
"primary": 6783,
|
| 6940 |
+
"exclusive": 6784,
|
| 6941 |
+
"sponsored": 6785,
|
| 6942 |
+
"alternative": 6786,
|
| 6943 |
+
"clothing": 6787,
|
| 6944 |
+
"database": 6788,
|
| 6945 |
+
"telephony": 6789,
|
| 6946 |
+
"hammered": 6790,
|
| 6947 |
+
"ferrari": 6791,
|
| 6948 |
+
"pharmaceutical": 6792,
|
| 6949 |
+
"ghraib": 6793,
|
| 6950 |
+
"hughes": 6794,
|
| 6951 |
+
"nortel": 6795,
|
| 6952 |
+
"rossi": 6796,
|
| 6953 |
+
"veteran": 6797,
|
| 6954 |
+
"##standing": 6798,
|
| 6955 |
+
"anthony": 6799,
|
| 6956 |
+
"stroke": 6800,
|
| 6957 |
+
"proxy": 6801,
|
| 6958 |
+
"concessions": 6802,
|
| 6959 |
+
"queens": 6803,
|
| 6960 |
+
"enforcement": 6804,
|
| 6961 |
+
"freddie": 6805,
|
| 6962 |
+
"overcame": 6806,
|
| 6963 |
+
"serbia": 6807,
|
| 6964 |
+
"elsewhere": 6808,
|
| 6965 |
+
"cafes": 6809,
|
| 6966 |
+
"rebuild": 6810,
|
| 6967 |
+
"himalayan": 6811,
|
| 6968 |
+
"distraction": 6812,
|
| 6969 |
+
"experimental": 6813,
|
| 6970 |
+
"friendly": 6814,
|
| 6971 |
+
"overshadow": 6815,
|
| 6972 |
+
"cavaliers": 6816,
|
| 6973 |
+
"dallas": 6817,
|
| 6974 |
+
"daily": 6818,
|
| 6975 |
+
"fashion": 6819,
|
| 6976 |
+
"giambi": 6820,
|
| 6977 |
+
"hockey": 6821,
|
| 6978 |
+
"hartford": 6822,
|
| 6979 |
+
"hokies": 6823,
|
| 6980 |
+
"kazaa": 6824,
|
| 6981 |
+
"kathmandu": 6825,
|
| 6982 |
+
"karmazin": 6826,
|
| 6983 |
+
"loyal": 6827,
|
| 6984 |
+
"lleyton": 6828,
|
| 6985 |
+
"mhz": 6829,
|
| 6986 |
+
"meyer": 6830,
|
| 6987 |
+
"pfiz": 6831,
|
| 6988 |
+
"p2p": 6832,
|
| 6989 |
+
"ponting": 6833,
|
| 6990 |
+
"rfid": 6834,
|
| 6991 |
+
"svetlana": 6835,
|
| 6992 |
+
"waziristan": 6836,
|
| 6993 |
+
"wysiw": 6837,
|
| 6994 |
+
"##qtada": 6838,
|
| 6995 |
"##owledged": 6839,
|
| 6996 |
"chavez": 6840,
|
| 6997 |
"deutsche": 6841,
|
|
|
|
| 7020 |
"650": 6864,
|
| 7021 |
"7e": 6865,
|
| 7022 |
"77": 6866,
|
| 7023 |
+
"84": 6867,
|
| 7024 |
+
"86": 6868,
|
| 7025 |
"93": 6869,
|
| 7026 |
"950": 6870,
|
| 7027 |
+
"ak": 6871,
|
| 7028 |
+
"a9": 6872,
|
| 7029 |
"aet": 6873,
|
| 7030 |
"aven": 6874,
|
| 7031 |
"bug": 6875,
|
|
|
|
| 7107 |
"ol": 6951,
|
| 7108 |
"oce": 6952,
|
| 7109 |
"ori": 6953,
|
| 7110 |
+
"pd": 6954,
|
| 7111 |
+
"pk": 6955,
|
| 7112 |
"pad": 6956,
|
| 7113 |
"pest": 6957,
|
| 7114 |
"pist": 6958,
|
|
|
|
| 7139 |
"tying": 6983,
|
| 7140 |
"tumb": 6984,
|
| 7141 |
"tumble": 6985,
|
| 7142 |
+
"ug": 6986,
|
| 7143 |
+
"um": 6987,
|
| 7144 |
"u2": 6988,
|
| 7145 |
"van": 6989,
|
| 7146 |
"vanc": 6990,
|
|
|
|
| 7160 |
"zid": 7004,
|
| 7161 |
"ziff": 7005,
|
| 7162 |
"##ean": 7006,
|
| 7163 |
+
"##cu": 7007,
|
| 7164 |
+
"##cers": 7008,
|
| 7165 |
+
"##cair": 7009,
|
| 7166 |
+
"##crew": 7010,
|
| 7167 |
+
"##uals": 7011,
|
| 7168 |
+
"##uana": 7012,
|
| 7169 |
+
"##zer": 7013,
|
| 7170 |
+
"##zard": 7014,
|
| 7171 |
+
"##oin": 7015,
|
| 7172 |
+
"##oke": 7016,
|
| 7173 |
+
"##net": 7017,
|
| 7174 |
+
"##nom": 7018,
|
| 7175 |
+
"##nants": 7019,
|
| 7176 |
+
"##nology": 7020,
|
| 7177 |
+
"##due": 7021,
|
| 7178 |
+
"##dale": 7022,
|
| 7179 |
+
"##ression": 7023,
|
| 7180 |
+
"##render": 7024,
|
| 7181 |
+
"##iate": 7025,
|
| 7182 |
+
"##iber": 7026,
|
| 7183 |
+
"##iece": 7027,
|
| 7184 |
+
"##sm": 7028,
|
| 7185 |
+
"##sburg": 7029,
|
| 7186 |
+
"##gb": 7030,
|
| 7187 |
+
"##gom": 7031,
|
| 7188 |
+
"##gus": 7032,
|
| 7189 |
+
"##gard": 7033,
|
| 7190 |
+
"##gment": 7034,
|
| 7191 |
+
"##gart": 7035,
|
| 7192 |
+
"##greg": 7036,
|
| 7193 |
+
"##yton": 7037,
|
| 7194 |
+
"##aug": 7038,
|
| 7195 |
+
"##aware": 7039,
|
| 7196 |
+
"##kok": 7040,
|
| 7197 |
+
"##killer": 7041,
|
| 7198 |
+
"##hes": 7042,
|
| 7199 |
+
"##had": 7043,
|
| 7200 |
+
"##hocks": 7044,
|
| 7201 |
+
"##pin": 7045,
|
| 7202 |
+
"##pen": 7046,
|
| 7203 |
+
"##part": 7047,
|
| 7204 |
+
"##ports": 7048,
|
| 7205 |
+
"##pson": 7049,
|
| 7206 |
+
"##wl": 7050,
|
| 7207 |
+
"##wol": 7051,
|
| 7208 |
+
"##wire": 7052,
|
| 7209 |
+
"##water": 7053,
|
| 7210 |
+
"##waves": 7054,
|
| 7211 |
+
"##fa": 7055,
|
| 7212 |
+
"##function": 7056,
|
| 7213 |
+
"##mu": 7057,
|
| 7214 |
+
"##mare": 7058,
|
| 7215 |
+
"##mail": 7059,
|
| 7216 |
+
"##bar": 7060,
|
| 7217 |
+
"##bits": 7061,
|
| 7218 |
+
"##buster": 7062,
|
| 7219 |
+
"##bara": 7063,
|
| 7220 |
+
"##voc": 7064,
|
| 7221 |
"##xious": 7065,
|
| 7222 |
"##35": 7066,
|
| 7223 |
"##erious": 7067,
|
|
|
|
| 7393 |
"monetary": 7237,
|
| 7394 |
"haven": 7238,
|
| 7395 |
"haiti": 7239,
|
| 7396 |
+
"hazard": 7240,
|
| 7397 |
+
"havoc": 7241,
|
| 7398 |
"##ella": 7242,
|
| 7399 |
"amr": 7243,
|
| 7400 |
"amelie": 7244,
|
|
|
|
| 7648 |
"really": 7492,
|
| 7649 |
"realnetw": 7493,
|
| 7650 |
"147": 7494,
|
| 7651 |
+
"148": 7495,
|
| 7652 |
"140": 7496,
|
| 7653 |
+
"146": 7497,
|
| 7654 |
"household": 7498,
|
| 7655 |
"mcken": 7499,
|
| 7656 |
"visa": 7500,
|
|
|
|
| 7811 |
"focusing": 7655,
|
| 7812 |
"copper": 7656,
|
| 7813 |
"fixes": 7657,
|
| 7814 |
+
"##while": 7658,
|
| 7815 |
+
"##market": 7659,
|
| 7816 |
"towns": 7660,
|
| 7817 |
"suffering": 7661,
|
| 7818 |
"declares": 7662,
|
|
|
|
| 8045 |
"astronomers": 7889,
|
| 8046 |
"neighborhood": 7890,
|
| 8047 |
"dhaka": 7891,
|
| 8048 |
+
"fdx": 7892,
|
| 8049 |
+
"ftc": 7893,
|
| 8050 |
"false": 7894,
|
| 8051 |
"goran": 7895,
|
| 8052 |
"gurunet": 7896,
|
|
|
|
| 8145 |
"1b": 7989,
|
| 8146 |
"1st": 7990,
|
| 8147 |
"166": 7991,
|
| 8148 |
+
"72": 7992,
|
| 8149 |
+
"76": 7993,
|
| 8150 |
"92": 7994,
|
| 8151 |
"95": 7995,
|
| 8152 |
"900": 7996,
|
tokenizer_config.json
CHANGED
|
@@ -4,10 +4,10 @@
|
|
| 4 |
"do_lower_case": true,
|
| 5 |
"mask_token": "[MASK]",
|
| 6 |
"model_max_length": 1000000000000000019884624838656,
|
| 7 |
-
"pad_token": "
|
| 8 |
"sep_token": "[SEP]",
|
| 9 |
"strip_accents": null,
|
| 10 |
"tokenize_chinese_chars": true,
|
| 11 |
"tokenizer_class": "BertTokenizer",
|
| 12 |
-
"unk_token": "
|
| 13 |
}
|
|
|
|
| 4 |
"do_lower_case": true,
|
| 5 |
"mask_token": "[MASK]",
|
| 6 |
"model_max_length": 1000000000000000019884624838656,
|
| 7 |
+
"pad_token": "<redacted_PAD>",
|
| 8 |
"sep_token": "[SEP]",
|
| 9 |
"strip_accents": null,
|
| 10 |
"tokenize_chinese_chars": true,
|
| 11 |
"tokenizer_class": "BertTokenizer",
|
| 12 |
+
"unk_token": "<redacted_UNK>"
|
| 13 |
}
|